less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

52714 lines
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. }
  2011. //species
  2012. function getSpeciesInfo(speciesList) {
  2013. let result = new Set();
  2014. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2015. result.add(entry)
  2016. });
  2017. return Array.from(result);
  2018. };
  2019. function getSpeciesInfoHelper(species) {
  2020. if (!speciesData[species]) {
  2021. console.warn(species + " doesn't exist");
  2022. return [];
  2023. }
  2024. if (speciesData[species].parents) {
  2025. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2026. } else {
  2027. return [species];
  2028. }
  2029. }
  2030. characterMakers.push(() => makeCharacter(
  2031. {
  2032. name: "Fen",
  2033. species: ["crux"],
  2034. description: {
  2035. title: "Bio",
  2036. text: "Very furry. Sheds on everything."
  2037. },
  2038. tags: [
  2039. "anthro",
  2040. "goo"
  2041. ]
  2042. },
  2043. {
  2044. front: {
  2045. height: math.unit(12, "feet"),
  2046. weight: math.unit(2400, "lb"),
  2047. name: "Front",
  2048. image: {
  2049. source: "./media/characters/fen/front.svg",
  2050. extra: 1804/1562,
  2051. bottom: 205/2009
  2052. },
  2053. extraAttributes: {
  2054. pawSize: {
  2055. name: "Paw Size",
  2056. power: 2,
  2057. type: "area",
  2058. base: math.unit(0.35, "m^2")
  2059. }
  2060. }
  2061. },
  2062. diving: {
  2063. height: math.unit(4.9, "meters"),
  2064. weight: math.unit(2400, "lb"),
  2065. name: "Diving",
  2066. image: {
  2067. source: "./media/characters/fen/diving.svg"
  2068. }
  2069. },
  2070. goo: {
  2071. height: math.unit(12, "feet"),
  2072. weight: math.unit(3600, "lb"),
  2073. volume: math.unit(1000, "liters"),
  2074. preyCapacity: math.unit(6, "people"),
  2075. name: "Goo",
  2076. image: {
  2077. source: "./media/characters/fen/goo.svg",
  2078. extra: 1307/1071,
  2079. bottom: 134/1441
  2080. }
  2081. },
  2082. maw: {
  2083. height: math.unit(5.03, "feet"),
  2084. name: "Maw",
  2085. image: {
  2086. source: "./media/characters/fen/maw.svg"
  2087. }
  2088. },
  2089. gooCeiling: {
  2090. height: math.unit(6.6, "feet"),
  2091. weight: math.unit(3000, "lb"),
  2092. volume: math.unit(1000, "liters"),
  2093. preyCapacity: math.unit(6, "people"),
  2094. name: "Goo (Ceiling)",
  2095. image: {
  2096. source: "./media/characters/fen/goo-ceiling.svg"
  2097. }
  2098. },
  2099. paw: {
  2100. height: math.unit(3.77, "feet"),
  2101. name: "Paw",
  2102. image: {
  2103. source: "./media/characters/fen/paw.svg"
  2104. },
  2105. extraAttributes: {
  2106. "toeSize": {
  2107. name: "Toe Size",
  2108. power: 2,
  2109. type: "area",
  2110. base: math.unit(0.02875, "m^2")
  2111. },
  2112. "pawSize": {
  2113. name: "Paw Size",
  2114. power: 2,
  2115. type: "area",
  2116. base: math.unit(0.378, "m^2")
  2117. },
  2118. }
  2119. },
  2120. tail: {
  2121. height: math.unit(12.1, "feet"),
  2122. name: "Tail",
  2123. image: {
  2124. source: "./media/characters/fen/tail.svg"
  2125. }
  2126. },
  2127. tailFull: {
  2128. height: math.unit(12.1, "feet"),
  2129. name: "Full Tail",
  2130. image: {
  2131. source: "./media/characters/fen/tail-full.svg"
  2132. }
  2133. },
  2134. back: {
  2135. height: math.unit(12, "feet"),
  2136. weight: math.unit(2400, "lb"),
  2137. name: "Back",
  2138. image: {
  2139. source: "./media/characters/fen/back.svg",
  2140. },
  2141. info: {
  2142. description: {
  2143. mode: "append",
  2144. text: "\n\nHe is not currently looking at you."
  2145. }
  2146. }
  2147. },
  2148. full: {
  2149. height: math.unit(1.85, "meter"),
  2150. weight: math.unit(3200, "lb"),
  2151. name: "Full",
  2152. image: {
  2153. source: "./media/characters/fen/full.svg",
  2154. extra: 1133/859,
  2155. bottom: 145/1278
  2156. },
  2157. info: {
  2158. description: {
  2159. mode: "append",
  2160. text: "\n\nMunch."
  2161. }
  2162. }
  2163. },
  2164. gooLounging: {
  2165. height: math.unit(4.53, "feet"),
  2166. weight: math.unit(3000, "lb"),
  2167. preyCapacity: math.unit(6, "people"),
  2168. name: "Goo (Lounging)",
  2169. image: {
  2170. source: "./media/characters/fen/goo-lounging.svg",
  2171. bottom: 116 / 613
  2172. }
  2173. },
  2174. lounging: {
  2175. height: math.unit(10.52, "feet"),
  2176. weight: math.unit(2400, "lb"),
  2177. name: "Lounging",
  2178. image: {
  2179. source: "./media/characters/fen/lounging.svg"
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Small",
  2186. height: math.unit(2.2428, "meter")
  2187. },
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(12, "feet"),
  2191. default: true,
  2192. },
  2193. {
  2194. name: "Big",
  2195. height: math.unit(20, "feet")
  2196. },
  2197. {
  2198. name: "Minimacro",
  2199. height: math.unit(40, "feet"),
  2200. info: {
  2201. description: {
  2202. mode: "append",
  2203. text: "\n\nTOO DAMN BIG"
  2204. }
  2205. }
  2206. },
  2207. {
  2208. name: "Macro",
  2209. height: math.unit(100, "feet"),
  2210. info: {
  2211. description: {
  2212. mode: "append",
  2213. text: "\n\nTOO DAMN BIG"
  2214. }
  2215. }
  2216. },
  2217. {
  2218. name: "Megamacro",
  2219. height: math.unit(2, "miles")
  2220. },
  2221. {
  2222. name: "Gigamacro",
  2223. height: math.unit(10, "earths")
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2229. {
  2230. front: {
  2231. height: math.unit(183, "cm"),
  2232. weight: math.unit(80, "kg"),
  2233. name: "Front",
  2234. image: {
  2235. source: "./media/characters/sofia-fluttertail/front.svg",
  2236. bottom: 0.01,
  2237. extra: 2154 / 2081
  2238. }
  2239. },
  2240. frontAlt: {
  2241. height: math.unit(183, "cm"),
  2242. weight: math.unit(80, "kg"),
  2243. name: "Front (alt)",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2246. }
  2247. },
  2248. back: {
  2249. height: math.unit(183, "cm"),
  2250. weight: math.unit(80, "kg"),
  2251. name: "Back",
  2252. image: {
  2253. source: "./media/characters/sofia-fluttertail/back.svg"
  2254. }
  2255. },
  2256. kneeling: {
  2257. height: math.unit(125, "cm"),
  2258. weight: math.unit(80, "kg"),
  2259. name: "Kneeling",
  2260. image: {
  2261. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2262. extra: 1033 / 977,
  2263. bottom: 23.7 / 1057
  2264. }
  2265. },
  2266. maw: {
  2267. height: math.unit(183 / 5, "cm"),
  2268. name: "Maw",
  2269. image: {
  2270. source: "./media/characters/sofia-fluttertail/maw.svg"
  2271. }
  2272. },
  2273. mawcloseup: {
  2274. height: math.unit(183 / 5 * 0.41, "cm"),
  2275. name: "Maw (Closeup)",
  2276. image: {
  2277. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2278. }
  2279. },
  2280. paws: {
  2281. height: math.unit(1.17, "feet"),
  2282. name: "Paws",
  2283. image: {
  2284. source: "./media/characters/sofia-fluttertail/paws.svg",
  2285. extra: 851 / 851,
  2286. bottom: 17 / 868
  2287. }
  2288. },
  2289. },
  2290. [
  2291. {
  2292. name: "Normal",
  2293. height: math.unit(1.83, "meter")
  2294. },
  2295. {
  2296. name: "Size Thief",
  2297. height: math.unit(18, "feet")
  2298. },
  2299. {
  2300. name: "50 Foot Collie",
  2301. height: math.unit(50, "feet")
  2302. },
  2303. {
  2304. name: "Macro",
  2305. height: math.unit(96, "feet"),
  2306. default: true
  2307. },
  2308. {
  2309. name: "Megamerger",
  2310. height: math.unit(650, "feet")
  2311. },
  2312. ]
  2313. ))
  2314. characterMakers.push(() => makeCharacter(
  2315. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2316. {
  2317. front: {
  2318. height: math.unit(7, "feet"),
  2319. weight: math.unit(100, "kg"),
  2320. name: "Front",
  2321. image: {
  2322. source: "./media/characters/march/front.svg",
  2323. extra: 1992/1851,
  2324. bottom: 39/2031
  2325. }
  2326. },
  2327. foot: {
  2328. height: math.unit(0.9, "feet"),
  2329. name: "Foot",
  2330. image: {
  2331. source: "./media/characters/march/foot.svg"
  2332. }
  2333. },
  2334. },
  2335. [
  2336. {
  2337. name: "Normal",
  2338. height: math.unit(7.9, "feet")
  2339. },
  2340. {
  2341. name: "Macro",
  2342. height: math.unit(220, "meters")
  2343. },
  2344. {
  2345. name: "Megamacro",
  2346. height: math.unit(2.98, "km"),
  2347. default: true
  2348. },
  2349. {
  2350. name: "Gigamacro",
  2351. height: math.unit(15963, "km")
  2352. },
  2353. {
  2354. name: "Teramacro",
  2355. height: math.unit(2980000000, "km")
  2356. },
  2357. {
  2358. name: "Examacro",
  2359. height: math.unit(250, "parsecs")
  2360. },
  2361. ]
  2362. ))
  2363. characterMakers.push(() => makeCharacter(
  2364. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2365. {
  2366. front: {
  2367. height: math.unit(6, "feet"),
  2368. weight: math.unit(60, "kg"),
  2369. name: "Front",
  2370. image: {
  2371. source: "./media/characters/noir/front.svg",
  2372. extra: 1,
  2373. bottom: 0.032
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(6.6, "feet")
  2381. },
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(500, "feet")
  2385. },
  2386. {
  2387. name: "Megamacro",
  2388. height: math.unit(2.5, "km"),
  2389. default: true
  2390. },
  2391. {
  2392. name: "Gigamacro",
  2393. height: math.unit(22500, "km")
  2394. },
  2395. {
  2396. name: "Teramacro",
  2397. height: math.unit(2500000000, "km")
  2398. },
  2399. {
  2400. name: "Examacro",
  2401. height: math.unit(200, "parsecs")
  2402. },
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2407. {
  2408. front: {
  2409. height: math.unit(7, "feet"),
  2410. weight: math.unit(100, "kg"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/okuri/front.svg",
  2414. extra: 739/665,
  2415. bottom: 39/778
  2416. }
  2417. },
  2418. back: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Back",
  2422. image: {
  2423. source: "./media/characters/okuri/back.svg",
  2424. extra: 734/653,
  2425. bottom: 13/747
  2426. }
  2427. },
  2428. sitting: {
  2429. height: math.unit(2.95, "feet"),
  2430. weight: math.unit(100, "kg"),
  2431. name: "Sitting",
  2432. image: {
  2433. source: "./media/characters/okuri/sitting.svg",
  2434. extra: 370/318,
  2435. bottom: 99/469
  2436. }
  2437. },
  2438. },
  2439. [
  2440. {
  2441. name: "Smallest",
  2442. height: math.unit(5 + 2/12, "feet")
  2443. },
  2444. {
  2445. name: "Smaller",
  2446. height: math.unit(300, "feet")
  2447. },
  2448. {
  2449. name: "Small",
  2450. height: math.unit(1000, "feet")
  2451. },
  2452. {
  2453. name: "Macro",
  2454. height: math.unit(1, "mile")
  2455. },
  2456. {
  2457. name: "Mega Macro (Small)",
  2458. height: math.unit(20, "km")
  2459. },
  2460. {
  2461. name: "Mega Macro (Large)",
  2462. height: math.unit(600, "km")
  2463. },
  2464. {
  2465. name: "Giga Macro",
  2466. height: math.unit(10000, "km")
  2467. },
  2468. {
  2469. name: "Normal",
  2470. height: math.unit(577560, "km"),
  2471. default: true
  2472. },
  2473. {
  2474. name: "Large",
  2475. height: math.unit(4, "galaxies")
  2476. },
  2477. {
  2478. name: "Largest",
  2479. height: math.unit(15, "multiverses")
  2480. },
  2481. ]
  2482. ))
  2483. characterMakers.push(() => makeCharacter(
  2484. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2485. {
  2486. front: {
  2487. height: math.unit(7, "feet"),
  2488. weight: math.unit(100, "kg"),
  2489. name: "Front",
  2490. image: {
  2491. source: "./media/characters/manny/front.svg",
  2492. extra: 1,
  2493. bottom: 0.06
  2494. }
  2495. },
  2496. back: {
  2497. height: math.unit(7, "feet"),
  2498. weight: math.unit(100, "kg"),
  2499. name: "Back",
  2500. image: {
  2501. source: "./media/characters/manny/back.svg",
  2502. extra: 1,
  2503. bottom: 0.014
  2504. }
  2505. },
  2506. },
  2507. [
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(7, "feet"),
  2511. },
  2512. {
  2513. name: "Macro",
  2514. height: math.unit(78, "feet"),
  2515. default: true
  2516. },
  2517. {
  2518. name: "Macro+",
  2519. height: math.unit(300, "meters")
  2520. },
  2521. {
  2522. name: "Macro++",
  2523. height: math.unit(2400, "meters")
  2524. },
  2525. {
  2526. name: "Megamacro",
  2527. height: math.unit(5167, "meters")
  2528. },
  2529. {
  2530. name: "Gigamacro",
  2531. height: math.unit(41769, "miles")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(7, "feet"),
  2540. weight: math.unit(100, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/adake/front-1.svg"
  2544. }
  2545. },
  2546. frontAlt: {
  2547. height: math.unit(7, "feet"),
  2548. weight: math.unit(100, "kg"),
  2549. name: "Front (Alt)",
  2550. image: {
  2551. source: "./media/characters/adake/front-2.svg",
  2552. extra: 1,
  2553. bottom: 0.01
  2554. }
  2555. },
  2556. back: {
  2557. height: math.unit(7, "feet"),
  2558. weight: math.unit(100, "kg"),
  2559. name: "Back",
  2560. image: {
  2561. source: "./media/characters/adake/back.svg",
  2562. }
  2563. },
  2564. kneel: {
  2565. height: math.unit(5.385, "feet"),
  2566. weight: math.unit(100, "kg"),
  2567. name: "Kneeling",
  2568. image: {
  2569. source: "./media/characters/adake/kneel.svg",
  2570. bottom: 0.052
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(7, "feet"),
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(78, "feet"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro+",
  2586. height: math.unit(300, "meters")
  2587. },
  2588. {
  2589. name: "Macro++",
  2590. height: math.unit(2400, "meters")
  2591. },
  2592. {
  2593. name: "Megamacro",
  2594. height: math.unit(5167, "meters")
  2595. },
  2596. {
  2597. name: "Gigamacro",
  2598. height: math.unit(41769, "miles")
  2599. },
  2600. ]
  2601. ))
  2602. characterMakers.push(() => makeCharacter(
  2603. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2604. {
  2605. front: {
  2606. height: math.unit(1.65, "meters"),
  2607. weight: math.unit(50, "kg"),
  2608. name: "Front",
  2609. image: {
  2610. source: "./media/characters/elijah/front.svg",
  2611. extra: 858 / 830,
  2612. bottom: 95.5 / 953.8559
  2613. }
  2614. },
  2615. back: {
  2616. height: math.unit(1.65, "meters"),
  2617. weight: math.unit(50, "kg"),
  2618. name: "Back",
  2619. image: {
  2620. source: "./media/characters/elijah/back.svg",
  2621. extra: 895 / 850,
  2622. bottom: 5.3 / 897.956
  2623. }
  2624. },
  2625. frontNsfw: {
  2626. height: math.unit(1.65, "meters"),
  2627. weight: math.unit(50, "kg"),
  2628. name: "Front (NSFW)",
  2629. image: {
  2630. source: "./media/characters/elijah/front-nsfw.svg",
  2631. extra: 858 / 830,
  2632. bottom: 95.5 / 953.8559
  2633. }
  2634. },
  2635. backNsfw: {
  2636. height: math.unit(1.65, "meters"),
  2637. weight: math.unit(50, "kg"),
  2638. name: "Back (NSFW)",
  2639. image: {
  2640. source: "./media/characters/elijah/back-nsfw.svg",
  2641. extra: 895 / 850,
  2642. bottom: 5.3 / 897.956
  2643. }
  2644. },
  2645. dick: {
  2646. height: math.unit(1, "feet"),
  2647. name: "Dick",
  2648. image: {
  2649. source: "./media/characters/elijah/dick.svg"
  2650. }
  2651. },
  2652. beakOpen: {
  2653. height: math.unit(1.25, "feet"),
  2654. name: "Beak (Open)",
  2655. image: {
  2656. source: "./media/characters/elijah/beak-open.svg"
  2657. }
  2658. },
  2659. beakShut: {
  2660. height: math.unit(1.25, "feet"),
  2661. name: "Beak (Shut)",
  2662. image: {
  2663. source: "./media/characters/elijah/beak-shut.svg"
  2664. }
  2665. },
  2666. footFlexing: {
  2667. height: math.unit(1.61, "feet"),
  2668. name: "Foot (Flexing)",
  2669. image: {
  2670. source: "./media/characters/elijah/foot-flexing.svg"
  2671. }
  2672. },
  2673. footStepping: {
  2674. height: math.unit(1.44, "feet"),
  2675. name: "Foot (Stepping)",
  2676. image: {
  2677. source: "./media/characters/elijah/foot-stepping.svg"
  2678. }
  2679. },
  2680. plantigradeLeg: {
  2681. height: math.unit(2.34, "feet"),
  2682. name: "Plantigrade Leg",
  2683. image: {
  2684. source: "./media/characters/elijah/plantigrade-leg.svg"
  2685. }
  2686. },
  2687. plantigradeFootLeft: {
  2688. height: math.unit(0.9, "feet"),
  2689. name: "Plantigrade Foot (Left)",
  2690. image: {
  2691. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2692. }
  2693. },
  2694. plantigradeFootRight: {
  2695. height: math.unit(0.9, "feet"),
  2696. name: "Plantigrade Foot (Right)",
  2697. image: {
  2698. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2699. }
  2700. },
  2701. },
  2702. [
  2703. {
  2704. name: "Normal",
  2705. height: math.unit(1.65, "meters")
  2706. },
  2707. {
  2708. name: "Macro",
  2709. height: math.unit(55, "meters"),
  2710. default: true
  2711. },
  2712. {
  2713. name: "Macro+",
  2714. height: math.unit(105, "meters")
  2715. },
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2720. {
  2721. front: {
  2722. height: math.unit(7 + 2/12, "feet"),
  2723. weight: math.unit(320, "kg"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/rai/front.svg",
  2727. extra: 1802/1696,
  2728. bottom: 68/1870
  2729. }
  2730. },
  2731. frontDressed: {
  2732. height: math.unit(7 + 2/12, "feet"),
  2733. weight: math.unit(320, "kg"),
  2734. name: "Front (Dressed)",
  2735. image: {
  2736. source: "./media/characters/rai/front-dressed.svg",
  2737. extra: 1802/1696,
  2738. bottom: 68/1870
  2739. }
  2740. },
  2741. side: {
  2742. height: math.unit(7 + 2/12, "feet"),
  2743. weight: math.unit(320, "kg"),
  2744. name: "Side",
  2745. image: {
  2746. source: "./media/characters/rai/side.svg",
  2747. extra: 1789/1710,
  2748. bottom: 115/1904
  2749. }
  2750. },
  2751. back: {
  2752. height: math.unit(7 + 2/12, "feet"),
  2753. weight: math.unit(320, "kg"),
  2754. name: "Back",
  2755. image: {
  2756. source: "./media/characters/rai/back.svg",
  2757. extra: 1770/1707,
  2758. bottom: 28/1798
  2759. }
  2760. },
  2761. feral: {
  2762. height: math.unit(9.5, "feet"),
  2763. weight: math.unit(640, "kg"),
  2764. name: "Feral",
  2765. image: {
  2766. source: "./media/characters/rai/feral.svg",
  2767. extra: 945/553,
  2768. bottom: 176/1121
  2769. }
  2770. },
  2771. dragon: {
  2772. height: math.unit(23, "feet"),
  2773. weight: math.unit(50000, "lb"),
  2774. name: "Dragon",
  2775. image: {
  2776. source: "./media/characters/rai/dragon.svg",
  2777. extra: 2498 / 2030,
  2778. bottom: 85.2 / 2584
  2779. }
  2780. },
  2781. maw: {
  2782. height: math.unit(1.69, "feet"),
  2783. name: "Maw",
  2784. image: {
  2785. source: "./media/characters/rai/maw.svg"
  2786. }
  2787. },
  2788. },
  2789. [
  2790. {
  2791. name: "Normal",
  2792. height: math.unit(7 + 2/12, "feet")
  2793. },
  2794. {
  2795. name: "Big",
  2796. height: math.unit(11, "feet")
  2797. },
  2798. {
  2799. name: "Macro",
  2800. height: math.unit(302, "feet"),
  2801. default: true
  2802. },
  2803. ]
  2804. ))
  2805. characterMakers.push(() => makeCharacter(
  2806. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2807. {
  2808. frontDressed: {
  2809. height: math.unit(216, "feet"),
  2810. weight: math.unit(7000000, "lb"),
  2811. name: "Front (Dressed)",
  2812. image: {
  2813. source: "./media/characters/jazzy/front-dressed.svg",
  2814. extra: 2738 / 2651,
  2815. bottom: 41.8 / 2786
  2816. }
  2817. },
  2818. backDressed: {
  2819. height: math.unit(216, "feet"),
  2820. weight: math.unit(7000000, "lb"),
  2821. name: "Back (Dressed)",
  2822. image: {
  2823. source: "./media/characters/jazzy/back-dressed.svg",
  2824. extra: 2775 / 2673,
  2825. bottom: 36.8 / 2817
  2826. }
  2827. },
  2828. front: {
  2829. height: math.unit(216, "feet"),
  2830. weight: math.unit(7000000, "lb"),
  2831. name: "Front",
  2832. image: {
  2833. source: "./media/characters/jazzy/front.svg",
  2834. extra: 2738 / 2651,
  2835. bottom: 41.8 / 2786
  2836. }
  2837. },
  2838. back: {
  2839. height: math.unit(216, "feet"),
  2840. weight: math.unit(7000000, "lb"),
  2841. name: "Back",
  2842. image: {
  2843. source: "./media/characters/jazzy/back.svg",
  2844. extra: 2775 / 2673,
  2845. bottom: 36.8 / 2817
  2846. }
  2847. },
  2848. maw: {
  2849. height: math.unit(20, "feet"),
  2850. name: "Maw",
  2851. image: {
  2852. source: "./media/characters/jazzy/maw.svg"
  2853. }
  2854. },
  2855. paws: {
  2856. height: math.unit(27.5, "feet"),
  2857. name: "Paws",
  2858. image: {
  2859. source: "./media/characters/jazzy/paws.svg"
  2860. }
  2861. },
  2862. eye: {
  2863. height: math.unit(4.4, "feet"),
  2864. name: "Eye",
  2865. image: {
  2866. source: "./media/characters/jazzy/eye.svg"
  2867. }
  2868. },
  2869. droneOffense: {
  2870. height: math.unit(9.5, "inches"),
  2871. name: "Drone (Offense)",
  2872. image: {
  2873. source: "./media/characters/jazzy/drone-offense.svg"
  2874. }
  2875. },
  2876. droneRecon: {
  2877. height: math.unit(9.5, "inches"),
  2878. name: "Drone (Recon)",
  2879. image: {
  2880. source: "./media/characters/jazzy/drone-recon.svg"
  2881. }
  2882. },
  2883. droneDefense: {
  2884. height: math.unit(9.5, "inches"),
  2885. name: "Drone (Defense)",
  2886. image: {
  2887. source: "./media/characters/jazzy/drone-defense.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(216, "feet"),
  2895. default: true
  2896. },
  2897. ]
  2898. ))
  2899. characterMakers.push(() => makeCharacter(
  2900. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2901. {
  2902. front: {
  2903. height: math.unit(9 + 6/12, "feet"),
  2904. weight: math.unit(700, "lb"),
  2905. name: "Front",
  2906. image: {
  2907. source: "./media/characters/flamm/front.svg",
  2908. extra: 1751/1632,
  2909. bottom: 46/1797
  2910. }
  2911. },
  2912. buff: {
  2913. height: math.unit(9 + 6/12, "feet"),
  2914. weight: math.unit(950, "lb"),
  2915. name: "Buff",
  2916. image: {
  2917. source: "./media/characters/flamm/buff.svg",
  2918. extra: 3018/2874,
  2919. bottom: 221/3239
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(9.5, "feet")
  2927. },
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(200, "feet"),
  2931. default: true
  2932. },
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(5 + 3/12, "feet"),
  2940. weight: math.unit(60, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/zephiro/front.svg",
  2944. extra: 2309 / 2162,
  2945. bottom: 0.069
  2946. }
  2947. },
  2948. side: {
  2949. height: math.unit(5 + 3/12, "feet"),
  2950. weight: math.unit(60, "kg"),
  2951. name: "Side",
  2952. image: {
  2953. source: "./media/characters/zephiro/side.svg",
  2954. extra: 2403 / 2279,
  2955. bottom: 0.015
  2956. }
  2957. },
  2958. back: {
  2959. height: math.unit(5 + 3/12, "feet"),
  2960. weight: math.unit(60, "kg"),
  2961. name: "Back",
  2962. image: {
  2963. source: "./media/characters/zephiro/back.svg",
  2964. extra: 2373 / 2244,
  2965. bottom: 0.013
  2966. }
  2967. },
  2968. hand: {
  2969. height: math.unit(0.68, "feet"),
  2970. name: "Hand",
  2971. image: {
  2972. source: "./media/characters/zephiro/hand.svg"
  2973. }
  2974. },
  2975. paw: {
  2976. height: math.unit(1, "feet"),
  2977. name: "Paw",
  2978. image: {
  2979. source: "./media/characters/zephiro/paw.svg"
  2980. }
  2981. },
  2982. beans: {
  2983. height: math.unit(0.93, "feet"),
  2984. name: "Beans",
  2985. image: {
  2986. source: "./media/characters/zephiro/beans.svg"
  2987. }
  2988. },
  2989. },
  2990. [
  2991. {
  2992. name: "Micro",
  2993. height: math.unit(3, "inches")
  2994. },
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(5 + 3 / 12, "feet"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(118, "feet")
  3003. },
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(5, "feet"),
  3011. weight: math.unit(90, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/fory/front.svg",
  3015. extra: 2862 / 2674,
  3016. bottom: 180 / 3043.8
  3017. }
  3018. },
  3019. back: {
  3020. height: math.unit(5, "feet"),
  3021. weight: math.unit(90, "kg"),
  3022. name: "Back",
  3023. image: {
  3024. source: "./media/characters/fory/back.svg",
  3025. extra: 2962 / 2791,
  3026. bottom: 106 / 3071.8
  3027. }
  3028. },
  3029. foot: {
  3030. height: math.unit(2.14, "feet"),
  3031. name: "Foot",
  3032. image: {
  3033. source: "./media/characters/fory/foot.svg"
  3034. }
  3035. },
  3036. },
  3037. [
  3038. {
  3039. name: "Normal",
  3040. height: math.unit(5, "feet")
  3041. },
  3042. {
  3043. name: "Macro",
  3044. height: math.unit(50, "feet"),
  3045. default: true
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(10, "miles")
  3050. },
  3051. {
  3052. name: "Gigamacro",
  3053. height: math.unit(5, "earths")
  3054. },
  3055. ]
  3056. ))
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3059. {
  3060. front: {
  3061. height: math.unit(7, "feet"),
  3062. weight: math.unit(90, "kg"),
  3063. name: "Front",
  3064. image: {
  3065. source: "./media/characters/kurrikage/front.svg",
  3066. extra: 1845/1733,
  3067. bottom: 119/1964
  3068. }
  3069. },
  3070. back: {
  3071. height: math.unit(7, "feet"),
  3072. weight: math.unit(90, "kg"),
  3073. name: "Back",
  3074. image: {
  3075. source: "./media/characters/kurrikage/back.svg",
  3076. extra: 1790/1677,
  3077. bottom: 61/1851
  3078. }
  3079. },
  3080. dressed: {
  3081. height: math.unit(7, "feet"),
  3082. weight: math.unit(90, "kg"),
  3083. name: "Dressed",
  3084. image: {
  3085. source: "./media/characters/kurrikage/dressed.svg",
  3086. extra: 1845/1733,
  3087. bottom: 119/1964
  3088. }
  3089. },
  3090. foot: {
  3091. height: math.unit(1.5, "feet"),
  3092. name: "Foot",
  3093. image: {
  3094. source: "./media/characters/kurrikage/foot.svg"
  3095. }
  3096. },
  3097. staff: {
  3098. height: math.unit(6.7, "feet"),
  3099. name: "Staff",
  3100. image: {
  3101. source: "./media/characters/kurrikage/staff.svg"
  3102. }
  3103. },
  3104. peek: {
  3105. height: math.unit(1.05, "feet"),
  3106. name: "Peeking",
  3107. image: {
  3108. source: "./media/characters/kurrikage/peek.svg",
  3109. bottom: 0.08
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(12, "feet"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Big",
  3121. height: math.unit(20, "feet")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(500, "feet")
  3126. },
  3127. {
  3128. name: "Megamacro",
  3129. height: math.unit(20, "miles")
  3130. },
  3131. ]
  3132. ))
  3133. characterMakers.push(() => makeCharacter(
  3134. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3135. {
  3136. front: {
  3137. height: math.unit(6, "feet"),
  3138. weight: math.unit(75, "kg"),
  3139. name: "Front",
  3140. image: {
  3141. source: "./media/characters/shingo/front.svg",
  3142. extra: 1900/1825,
  3143. bottom: 82/1982
  3144. }
  3145. },
  3146. side: {
  3147. height: math.unit(6, "feet"),
  3148. weight: math.unit(75, "kg"),
  3149. name: "Side",
  3150. image: {
  3151. source: "./media/characters/shingo/side.svg",
  3152. extra: 1930/1865,
  3153. bottom: 16/1946
  3154. }
  3155. },
  3156. back: {
  3157. height: math.unit(6, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Back",
  3160. image: {
  3161. source: "./media/characters/shingo/back.svg",
  3162. extra: 1922/1852,
  3163. bottom: 16/1938
  3164. }
  3165. },
  3166. frontDressed: {
  3167. height: math.unit(6, "feet"),
  3168. weight: math.unit(150, "lb"),
  3169. name: "Front-dressed",
  3170. image: {
  3171. source: "./media/characters/shingo/front-dressed.svg",
  3172. extra: 1900/1825,
  3173. bottom: 82/1982
  3174. }
  3175. },
  3176. paw: {
  3177. height: math.unit(1.29, "feet"),
  3178. name: "Paw",
  3179. image: {
  3180. source: "./media/characters/shingo/paw.svg"
  3181. }
  3182. },
  3183. hand: {
  3184. height: math.unit(1.07, "feet"),
  3185. name: "Hand",
  3186. image: {
  3187. source: "./media/characters/shingo/hand.svg"
  3188. }
  3189. },
  3190. frontAlt: {
  3191. height: math.unit(6, "feet"),
  3192. weight: math.unit(75, "kg"),
  3193. name: "Front (Alt)",
  3194. image: {
  3195. source: "./media/characters/shingo/front-alt.svg",
  3196. extra: 3511 / 3338,
  3197. bottom: 0.005
  3198. }
  3199. },
  3200. frontAlt2: {
  3201. height: math.unit(6, "feet"),
  3202. weight: math.unit(75, "kg"),
  3203. name: "Front (Alt 2)",
  3204. image: {
  3205. source: "./media/characters/shingo/front-alt-2.svg",
  3206. extra: 706/681,
  3207. bottom: 11/717
  3208. }
  3209. },
  3210. pawAlt: {
  3211. height: math.unit(1, "feet"),
  3212. name: "Paw (Alt)",
  3213. image: {
  3214. source: "./media/characters/shingo/paw-alt.svg"
  3215. }
  3216. },
  3217. },
  3218. [
  3219. {
  3220. name: "Micro",
  3221. height: math.unit(4, "inches")
  3222. },
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(6, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Macro",
  3230. height: math.unit(108, "feet")
  3231. },
  3232. {
  3233. name: "Macro+",
  3234. height: math.unit(1500, "feet")
  3235. },
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3240. {
  3241. side: {
  3242. height: math.unit(6, "feet"),
  3243. weight: math.unit(75, "kg"),
  3244. name: "Side",
  3245. image: {
  3246. source: "./media/characters/aigey/side.svg"
  3247. }
  3248. },
  3249. },
  3250. [
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(200, "feet"),
  3254. default: true
  3255. },
  3256. {
  3257. name: "Megamacro",
  3258. height: math.unit(100, "miles")
  3259. },
  3260. ]
  3261. )
  3262. )
  3263. characterMakers.push(() => makeCharacter(
  3264. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3265. {
  3266. front: {
  3267. height: math.unit(5 + 5 / 12, "feet"),
  3268. weight: math.unit(75, "kg"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/natasha/front.svg",
  3272. extra: 859 / 824,
  3273. bottom: 23 / 879.6
  3274. }
  3275. },
  3276. frontNsfw: {
  3277. height: math.unit(5 + 5 / 12, "feet"),
  3278. weight: math.unit(75, "kg"),
  3279. name: "Front (NSFW)",
  3280. image: {
  3281. source: "./media/characters/natasha/front-nsfw.svg",
  3282. extra: 859 / 824,
  3283. bottom: 23 / 879.6
  3284. }
  3285. },
  3286. frontErect: {
  3287. height: math.unit(5 + 5 / 12, "feet"),
  3288. weight: math.unit(75, "kg"),
  3289. name: "Front (Erect)",
  3290. image: {
  3291. source: "./media/characters/natasha/front-erect.svg",
  3292. extra: 859 / 824,
  3293. bottom: 23 / 879.6
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(5 + 5 / 12, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/natasha/back.svg",
  3302. extra: 887.9 / 852.6,
  3303. bottom: 9.7 / 896.4
  3304. }
  3305. },
  3306. backAlt: {
  3307. height: math.unit(5 + 5 / 12, "feet"),
  3308. weight: math.unit(75, "kg"),
  3309. name: "Back (Alt)",
  3310. image: {
  3311. source: "./media/characters/natasha/back-alt.svg",
  3312. extra: 1236.7 / 1192,
  3313. bottom: 22.3 / 1258.2
  3314. }
  3315. },
  3316. dick: {
  3317. height: math.unit(1.772, "feet"),
  3318. name: "Dick",
  3319. image: {
  3320. source: "./media/characters/natasha/dick.svg"
  3321. }
  3322. },
  3323. paw: {
  3324. height: math.unit(0.250, "meters"),
  3325. name: "Paw",
  3326. image: {
  3327. source: "./media/characters/natasha/paw.svg"
  3328. },
  3329. extraAttributes: {
  3330. "toeSize": {
  3331. name: "Toe Size",
  3332. power: 2,
  3333. type: "area",
  3334. base: math.unit(0.0024, "m^2")
  3335. },
  3336. "padSize": {
  3337. name: "Pad Size",
  3338. power: 2,
  3339. type: "area",
  3340. base: math.unit(0.00889, "m^2")
  3341. },
  3342. "pawSize": {
  3343. name: "Paw Size",
  3344. power: 2,
  3345. type: "area",
  3346. base: math.unit(0.023667, "m^2")
  3347. },
  3348. }
  3349. },
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(5 + 5 / 12, "feet")
  3355. },
  3356. {
  3357. name: "Large",
  3358. height: math.unit(12, "feet")
  3359. },
  3360. {
  3361. name: "Macro",
  3362. height: math.unit(100, "feet"),
  3363. default: true
  3364. },
  3365. {
  3366. name: "Macro+",
  3367. height: math.unit(260, "feet")
  3368. },
  3369. {
  3370. name: "Macro++",
  3371. height: math.unit(1, "mile")
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(6, "feet"),
  3380. weight: math.unit(75, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/malik/front.svg",
  3384. extra: 1750/1561,
  3385. bottom: 80/1830
  3386. },
  3387. extraAttributes: {
  3388. "toeSize": {
  3389. name: "Toe Size",
  3390. power: 2,
  3391. type: "area",
  3392. base: math.unit(0.0159, "m^2")
  3393. },
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.09834, "m^2")
  3399. },
  3400. }
  3401. },
  3402. side: {
  3403. height: math.unit(6, "feet"),
  3404. weight: math.unit(75, "kg"),
  3405. name: "Side",
  3406. image: {
  3407. source: "./media/characters/malik/side.svg",
  3408. extra: 1802/1685,
  3409. bottom: 42/1844
  3410. },
  3411. extraAttributes: {
  3412. "toeSize": {
  3413. name: "Toe Size",
  3414. power: 2,
  3415. type: "area",
  3416. base: math.unit(0.0159, "m^2")
  3417. },
  3418. "pawSize": {
  3419. name: "Paw Size",
  3420. power: 2,
  3421. type: "area",
  3422. base: math.unit(0.09834, "m^2")
  3423. },
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(6, "feet"),
  3428. weight: math.unit(75, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/malik/back.svg",
  3432. extra: 1803/1607,
  3433. bottom: 33/1836
  3434. },
  3435. extraAttributes: {
  3436. "toeSize": {
  3437. name: "Toe Size",
  3438. power: 2,
  3439. type: "area",
  3440. base: math.unit(0.0159, "m^2")
  3441. },
  3442. "pawSize": {
  3443. name: "Paw Size",
  3444. power: 2,
  3445. type: "area",
  3446. base: math.unit(0.09834, "m^2")
  3447. },
  3448. }
  3449. },
  3450. },
  3451. [
  3452. {
  3453. name: "Macro",
  3454. height: math.unit(156, "feet"),
  3455. default: true
  3456. },
  3457. {
  3458. name: "Macro+",
  3459. height: math.unit(1188, "feet")
  3460. },
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(75, "kg"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/sefer/front.svg",
  3472. extra: 848 / 659,
  3473. bottom: 28.3 / 876.442
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(75, "kg"),
  3479. name: "Back",
  3480. image: {
  3481. source: "./media/characters/sefer/back.svg",
  3482. extra: 864 / 695,
  3483. bottom: 10 / 871
  3484. }
  3485. },
  3486. frontDressed: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(75, "kg"),
  3489. name: "Front (Dressed)",
  3490. image: {
  3491. source: "./media/characters/sefer/front-dressed.svg",
  3492. extra: 839 / 653,
  3493. bottom: 37.6 / 878
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(6, "feet"),
  3501. default: true
  3502. },
  3503. ]
  3504. ))
  3505. characterMakers.push(() => makeCharacter(
  3506. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3507. {
  3508. body: {
  3509. height: math.unit(2.2428, "meter"),
  3510. weight: math.unit(124.738, "kg"),
  3511. name: "Body",
  3512. image: {
  3513. extra: 1225 / 1050,
  3514. source: "./media/characters/north/front.svg"
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Micro",
  3521. height: math.unit(4, "inches")
  3522. },
  3523. {
  3524. name: "Macro",
  3525. height: math.unit(63, "meters")
  3526. },
  3527. {
  3528. name: "Megamacro",
  3529. height: math.unit(101, "miles"),
  3530. default: true
  3531. }
  3532. ]
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3536. {
  3537. angled: {
  3538. height: math.unit(4, "meter"),
  3539. weight: math.unit(150, "kg"),
  3540. name: "Angled",
  3541. image: {
  3542. source: "./media/characters/talan/angled-sfw.svg",
  3543. bottom: 29 / 3734
  3544. }
  3545. },
  3546. angledNsfw: {
  3547. height: math.unit(4, "meter"),
  3548. weight: math.unit(150, "kg"),
  3549. name: "Angled (NSFW)",
  3550. image: {
  3551. source: "./media/characters/talan/angled-nsfw.svg",
  3552. bottom: 29 / 3734
  3553. }
  3554. },
  3555. frontNsfw: {
  3556. height: math.unit(4, "meter"),
  3557. weight: math.unit(150, "kg"),
  3558. name: "Front (NSFW)",
  3559. image: {
  3560. source: "./media/characters/talan/front-nsfw.svg",
  3561. bottom: 29 / 3734
  3562. }
  3563. },
  3564. sideNsfw: {
  3565. height: math.unit(4, "meter"),
  3566. weight: math.unit(150, "kg"),
  3567. name: "Side (NSFW)",
  3568. image: {
  3569. source: "./media/characters/talan/side-nsfw.svg",
  3570. bottom: 29 / 3734
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(4, "meter"),
  3575. weight: math.unit(150, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/talan/back.svg"
  3579. }
  3580. },
  3581. dickBottom: {
  3582. height: math.unit(0.621, "meter"),
  3583. name: "Dick (Bottom)",
  3584. image: {
  3585. source: "./media/characters/talan/dick-bottom.svg"
  3586. }
  3587. },
  3588. dickTop: {
  3589. height: math.unit(0.621, "meter"),
  3590. name: "Dick (Top)",
  3591. image: {
  3592. source: "./media/characters/talan/dick-top.svg"
  3593. }
  3594. },
  3595. dickSide: {
  3596. height: math.unit(0.305, "meter"),
  3597. name: "Dick (Side)",
  3598. image: {
  3599. source: "./media/characters/talan/dick-side.svg"
  3600. }
  3601. },
  3602. dickFront: {
  3603. height: math.unit(0.305, "meter"),
  3604. name: "Dick (Front)",
  3605. image: {
  3606. source: "./media/characters/talan/dick-front.svg"
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Normal",
  3613. height: math.unit(4, "meters")
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(100, "meters")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(2, "miles"),
  3622. default: true
  3623. },
  3624. {
  3625. name: "Gigamacro",
  3626. height: math.unit(5000, "miles")
  3627. },
  3628. {
  3629. name: "Teramacro",
  3630. height: math.unit(100, "parsecs")
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(90, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/gael'rathus/front.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(2, "meter"),
  3647. weight: math.unit(90, "kg"),
  3648. name: "Front (alt)",
  3649. image: {
  3650. source: "./media/characters/gael'rathus/front-alt.svg"
  3651. }
  3652. },
  3653. frontAlt2: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(90, "kg"),
  3656. name: "Front (alt 2)",
  3657. image: {
  3658. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3659. }
  3660. }
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(9, "feet"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Large",
  3670. height: math.unit(25, "feet")
  3671. },
  3672. {
  3673. name: "Macro",
  3674. height: math.unit(0.25, "miles")
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(10, "miles")
  3679. }
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3684. {
  3685. side: {
  3686. height: math.unit(2, "meter"),
  3687. weight: math.unit(140, "kg"),
  3688. name: "Side",
  3689. image: {
  3690. source: "./media/characters/sosha/side.svg",
  3691. extra: 1170/1006,
  3692. bottom: 94/1264
  3693. }
  3694. },
  3695. maw: {
  3696. height: math.unit(2.87, "feet"),
  3697. name: "Maw",
  3698. image: {
  3699. source: "./media/characters/sosha/maw.svg",
  3700. extra: 966/865,
  3701. bottom: 0/966
  3702. }
  3703. },
  3704. cooch: {
  3705. height: math.unit(5.6, "feet"),
  3706. name: "Cooch",
  3707. image: {
  3708. source: "./media/characters/sosha/cooch.svg"
  3709. }
  3710. },
  3711. },
  3712. [
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(12, "feet"),
  3716. default: true
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3722. {
  3723. side: {
  3724. height: math.unit(5 + 5 / 12, "feet"),
  3725. weight: math.unit(170, "kg"),
  3726. name: "Side",
  3727. image: {
  3728. source: "./media/characters/runnola/side.svg",
  3729. extra: 741 / 448,
  3730. bottom: 0.05
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Small",
  3737. height: math.unit(3, "feet")
  3738. },
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(5 + 5 / 12, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Big",
  3746. height: math.unit(10, "feet")
  3747. },
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(50, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/kurribird/front.svg",
  3759. bottom: 0.015
  3760. }
  3761. },
  3762. frontAlt: {
  3763. height: math.unit(1.5, "meter"),
  3764. weight: math.unit(50, "kg"),
  3765. name: "Front (Alt)",
  3766. image: {
  3767. source: "./media/characters/kurribird/front-alt.svg",
  3768. extra: 1.45
  3769. }
  3770. },
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(7, "feet")
  3776. },
  3777. {
  3778. name: "Big",
  3779. height: math.unit(12, "feet"),
  3780. default: true
  3781. },
  3782. {
  3783. name: "Macro",
  3784. height: math.unit(1500, "feet")
  3785. },
  3786. {
  3787. name: "Megamacro",
  3788. height: math.unit(2, "miles")
  3789. }
  3790. ]
  3791. ))
  3792. characterMakers.push(() => makeCharacter(
  3793. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3794. {
  3795. front: {
  3796. height: math.unit(2, "meter"),
  3797. weight: math.unit(80, "kg"),
  3798. name: "Front",
  3799. image: {
  3800. source: "./media/characters/elbial/front.svg",
  3801. extra: 1643 / 1556,
  3802. bottom: 60.2 / 1696
  3803. }
  3804. },
  3805. side: {
  3806. height: math.unit(2, "meter"),
  3807. weight: math.unit(80, "kg"),
  3808. name: "Side",
  3809. image: {
  3810. source: "./media/characters/elbial/side.svg",
  3811. extra: 1601/1528,
  3812. bottom: 97/1698
  3813. }
  3814. },
  3815. back: {
  3816. height: math.unit(2, "meter"),
  3817. weight: math.unit(80, "kg"),
  3818. name: "Back",
  3819. image: {
  3820. source: "./media/characters/elbial/back.svg",
  3821. extra: 1653/1569,
  3822. bottom: 20/1673
  3823. }
  3824. },
  3825. frontDressed: {
  3826. height: math.unit(2, "meter"),
  3827. weight: math.unit(80, "kg"),
  3828. name: "Front (Dressed)",
  3829. image: {
  3830. source: "./media/characters/elbial/front-dressed.svg",
  3831. extra: 1638/1569,
  3832. bottom: 70/1708
  3833. }
  3834. },
  3835. genitals: {
  3836. height: math.unit(2 / 3.367, "meter"),
  3837. name: "Genitals",
  3838. image: {
  3839. source: "./media/characters/elbial/genitals.svg"
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Large",
  3846. height: math.unit(100, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(500, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Megamacro",
  3855. height: math.unit(10, "miles")
  3856. },
  3857. {
  3858. name: "Gigamacro",
  3859. height: math.unit(25000, "miles")
  3860. },
  3861. {
  3862. name: "Full-Size",
  3863. height: math.unit(8000000, "gigaparsecs")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(60, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/noah/front.svg"
  3876. }
  3877. },
  3878. talons: {
  3879. height: math.unit(0.315, "meter"),
  3880. name: "Talons",
  3881. image: {
  3882. source: "./media/characters/noah/talons.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Large",
  3889. height: math.unit(50, "feet")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(750, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Megamacro",
  3898. height: math.unit(50, "miles")
  3899. },
  3900. {
  3901. name: "Gigamacro",
  3902. height: math.unit(100000, "miles")
  3903. },
  3904. {
  3905. name: "Full-Size",
  3906. height: math.unit(3000000000, "miles")
  3907. }
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(2, "meter"),
  3915. weight: math.unit(80, "kg"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/natalya/front.svg"
  3919. }
  3920. },
  3921. back: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(80, "kg"),
  3924. name: "Back",
  3925. image: {
  3926. source: "./media/characters/natalya/back.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Normal",
  3933. height: math.unit(150, "feet"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Megamacro",
  3938. height: math.unit(5, "miles")
  3939. },
  3940. {
  3941. name: "Full-Size",
  3942. height: math.unit(600, "kiloparsecs")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(2, "meter"),
  3951. weight: math.unit(50, "kg"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/erestrebah/front.svg",
  3955. extra: 1262/1162,
  3956. bottom: 96/1358
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(2, "meter"),
  3961. weight: math.unit(50, "kg"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/erestrebah/back.svg",
  3965. extra: 1257/1139,
  3966. bottom: 13/1270
  3967. }
  3968. },
  3969. wing: {
  3970. height: math.unit(2, "meter"),
  3971. weight: math.unit(50, "kg"),
  3972. name: "Wing",
  3973. image: {
  3974. source: "./media/characters/erestrebah/wing.svg",
  3975. extra: 1262/1162,
  3976. bottom: 96/1358
  3977. }
  3978. },
  3979. mouth: {
  3980. height: math.unit(0.39, "feet"),
  3981. name: "Mouth",
  3982. image: {
  3983. source: "./media/characters/erestrebah/mouth.svg"
  3984. }
  3985. }
  3986. },
  3987. [
  3988. {
  3989. name: "Normal",
  3990. height: math.unit(10, "feet")
  3991. },
  3992. {
  3993. name: "Large",
  3994. height: math.unit(50, "feet"),
  3995. default: true
  3996. },
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(300, "feet")
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(750, "feet")
  4004. },
  4005. {
  4006. name: "Megamacro",
  4007. height: math.unit(3, "miles")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(80, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/jennifer/front.svg",
  4020. bottom: 0.11,
  4021. extra: 1.16
  4022. }
  4023. },
  4024. frontAlt: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(80, "kg"),
  4027. name: "Front (Alt)",
  4028. image: {
  4029. source: "./media/characters/jennifer/front-alt.svg"
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Canon Height",
  4036. height: math.unit(120, "feet"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Macro+",
  4041. height: math.unit(300, "feet")
  4042. },
  4043. {
  4044. name: "Megamacro",
  4045. height: math.unit(20000, "feet")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(50, "kg"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/kalista/front.svg",
  4058. extra: 1314/1145,
  4059. bottom: 101/1415
  4060. }
  4061. },
  4062. back: {
  4063. height: math.unit(2, "meter"),
  4064. weight: math.unit(50, "kg"),
  4065. name: "Back",
  4066. image: {
  4067. source: "./media/characters/kalista/back.svg",
  4068. extra: 1366 / 1156,
  4069. bottom: 33.9 / 1362.78
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Uncomfortably Small",
  4076. height: math.unit(10, "feet")
  4077. },
  4078. {
  4079. name: "Small",
  4080. height: math.unit(30, "feet")
  4081. },
  4082. {
  4083. name: "Macro",
  4084. height: math.unit(100, "feet"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Macro+",
  4089. height: math.unit(2000, "feet")
  4090. },
  4091. {
  4092. name: "True Form",
  4093. height: math.unit(8924, "miles")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(120, "kg"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/ggv/front.svg"
  4106. }
  4107. },
  4108. side: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(120, "kg"),
  4111. name: "Side",
  4112. image: {
  4113. source: "./media/characters/ggv/side.svg"
  4114. }
  4115. }
  4116. },
  4117. [
  4118. {
  4119. name: "Extremely Puny",
  4120. height: math.unit(9 + 5 / 12, "feet")
  4121. },
  4122. {
  4123. name: "Horribly Small",
  4124. height: math.unit(47.7, "miles"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Reasonably Sized",
  4129. height: math.unit(25000, "parsecs")
  4130. },
  4131. {
  4132. name: "Slightly Uncompressed",
  4133. height: math.unit(7.77e31, "parsecs")
  4134. },
  4135. {
  4136. name: "Omniversal",
  4137. height: math.unit(1e300, "meters")
  4138. },
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4143. {
  4144. front: {
  4145. height: math.unit(2, "meter"),
  4146. weight: math.unit(75, "lb"),
  4147. name: "Front",
  4148. image: {
  4149. source: "./media/characters/napalm/front.svg"
  4150. }
  4151. },
  4152. back: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(75, "lb"),
  4155. name: "Back",
  4156. image: {
  4157. source: "./media/characters/napalm/back.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Standard",
  4164. height: math.unit(55, "feet"),
  4165. default: true
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4171. {
  4172. front: {
  4173. height: math.unit(7 + 5 / 6, "feet"),
  4174. weight: math.unit(325, "lb"),
  4175. name: "Front",
  4176. image: {
  4177. source: "./media/characters/asana/front.svg",
  4178. extra: 1133 / 1060,
  4179. bottom: 15.2 / 1148.6
  4180. }
  4181. },
  4182. back: {
  4183. height: math.unit(7 + 5 / 6, "feet"),
  4184. weight: math.unit(325, "lb"),
  4185. name: "Back",
  4186. image: {
  4187. source: "./media/characters/asana/back.svg",
  4188. extra: 1114 / 1043,
  4189. bottom: 5 / 1120
  4190. }
  4191. },
  4192. dressedDark: {
  4193. height: math.unit(7 + 5 / 6, "feet"),
  4194. weight: math.unit(325, "lb"),
  4195. name: "Dressed (Dark)",
  4196. image: {
  4197. source: "./media/characters/asana/dressed-dark.svg",
  4198. extra: 1133 / 1060,
  4199. bottom: 15.2 / 1148.6
  4200. }
  4201. },
  4202. dressedLight: {
  4203. height: math.unit(7 + 5 / 6, "feet"),
  4204. weight: math.unit(325, "lb"),
  4205. name: "Dressed (Light)",
  4206. image: {
  4207. source: "./media/characters/asana/dressed-light.svg",
  4208. extra: 1133 / 1060,
  4209. bottom: 15.2 / 1148.6
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Standard",
  4216. height: math.unit(7 + 5 / 6, "feet"),
  4217. default: true
  4218. },
  4219. {
  4220. name: "Large",
  4221. height: math.unit(10, "meters")
  4222. },
  4223. {
  4224. name: "Macro",
  4225. height: math.unit(2500, "meters")
  4226. },
  4227. {
  4228. name: "Megamacro",
  4229. height: math.unit(5e6, "meters")
  4230. },
  4231. {
  4232. name: "Examacro",
  4233. height: math.unit(5e12, "lightyears")
  4234. },
  4235. {
  4236. name: "Max Size",
  4237. height: math.unit(1e31, "lightyears")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(60, "kg"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/ebony/front.svg",
  4250. bottom: 0.03,
  4251. extra: 1045 / 810 + 0.03
  4252. }
  4253. },
  4254. side: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(60, "kg"),
  4257. name: "Side",
  4258. image: {
  4259. source: "./media/characters/ebony/side.svg",
  4260. bottom: 0.03,
  4261. extra: 1045 / 810 + 0.03
  4262. }
  4263. },
  4264. back: {
  4265. height: math.unit(2, "meter"),
  4266. weight: math.unit(60, "kg"),
  4267. name: "Back",
  4268. image: {
  4269. source: "./media/characters/ebony/back.svg",
  4270. bottom: 0.01,
  4271. extra: 1045 / 810 + 0.01
  4272. }
  4273. },
  4274. },
  4275. [
  4276. // TODO check why I did this lol
  4277. {
  4278. name: "Standard",
  4279. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(200, "feet")
  4285. },
  4286. {
  4287. name: "Gigamacro",
  4288. height: math.unit(13000, "km")
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4294. {
  4295. front: {
  4296. height: math.unit(6, "feet"),
  4297. weight: math.unit(175, "lb"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/mountain/front.svg",
  4301. extra: 972 / 955,
  4302. bottom: 64 / 1036.6
  4303. }
  4304. },
  4305. back: {
  4306. height: math.unit(6, "feet"),
  4307. weight: math.unit(175, "lb"),
  4308. name: "Back",
  4309. image: {
  4310. source: "./media/characters/mountain/back.svg",
  4311. extra: 970 / 950,
  4312. bottom: 28.25 / 999
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Large",
  4319. height: math.unit(20, "meters")
  4320. },
  4321. {
  4322. name: "Macro",
  4323. height: math.unit(300, "meters")
  4324. },
  4325. {
  4326. name: "Gigamacro",
  4327. height: math.unit(10000, "km"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Examacro",
  4332. height: math.unit(10e9, "lightyears")
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4338. {
  4339. front: {
  4340. height: math.unit(8, "feet"),
  4341. weight: math.unit(500, "lb"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/rick/front.svg"
  4345. }
  4346. }
  4347. },
  4348. [
  4349. {
  4350. name: "Normal",
  4351. height: math.unit(8, "feet"),
  4352. default: true
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(5, "km")
  4357. }
  4358. ]
  4359. ))
  4360. characterMakers.push(() => makeCharacter(
  4361. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4362. {
  4363. front: {
  4364. height: math.unit(8, "feet"),
  4365. weight: math.unit(120, "lb"),
  4366. name: "Front",
  4367. image: {
  4368. source: "./media/characters/ona/front.svg"
  4369. }
  4370. },
  4371. frontAlt: {
  4372. height: math.unit(8, "feet"),
  4373. weight: math.unit(120, "lb"),
  4374. name: "Front (Alt)",
  4375. image: {
  4376. source: "./media/characters/ona/front-alt.svg"
  4377. }
  4378. },
  4379. back: {
  4380. height: math.unit(8, "feet"),
  4381. weight: math.unit(120, "lb"),
  4382. name: "Back",
  4383. image: {
  4384. source: "./media/characters/ona/back.svg"
  4385. }
  4386. },
  4387. foot: {
  4388. height: math.unit(1.1, "feet"),
  4389. name: "Foot",
  4390. image: {
  4391. source: "./media/characters/ona/foot.svg"
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Megamacro",
  4398. height: math.unit(70, "km"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(681818, "miles")
  4404. },
  4405. {
  4406. name: "Examacro",
  4407. height: math.unit(3800000, "lightyears")
  4408. },
  4409. ]
  4410. ))
  4411. characterMakers.push(() => makeCharacter(
  4412. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4413. {
  4414. front: {
  4415. height: math.unit(12, "feet"),
  4416. weight: math.unit(3000, "lb"),
  4417. name: "Front",
  4418. image: {
  4419. source: "./media/characters/mech/front.svg",
  4420. extra: 2900 / 2770,
  4421. bottom: 110 / 3010
  4422. }
  4423. },
  4424. back: {
  4425. height: math.unit(12, "feet"),
  4426. weight: math.unit(3000, "lb"),
  4427. name: "Back",
  4428. image: {
  4429. source: "./media/characters/mech/back.svg",
  4430. extra: 3011 / 2890,
  4431. bottom: 94 / 3105
  4432. }
  4433. },
  4434. maw: {
  4435. height: math.unit(3.07, "feet"),
  4436. name: "Maw",
  4437. image: {
  4438. source: "./media/characters/mech/maw.svg"
  4439. }
  4440. },
  4441. head: {
  4442. height: math.unit(3.07, "feet"),
  4443. name: "Head",
  4444. image: {
  4445. source: "./media/characters/mech/head.svg"
  4446. }
  4447. },
  4448. dick: {
  4449. height: math.unit(1.43, "feet"),
  4450. name: "Dick",
  4451. image: {
  4452. source: "./media/characters/mech/dick.svg"
  4453. }
  4454. },
  4455. },
  4456. [
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(12, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(300, "feet"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Macro+",
  4468. height: math.unit(1500, "feet")
  4469. },
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4474. {
  4475. front: {
  4476. height: math.unit(1.3, "meter"),
  4477. weight: math.unit(30, "kg"),
  4478. name: "Front",
  4479. image: {
  4480. source: "./media/characters/gregory/front.svg",
  4481. }
  4482. }
  4483. },
  4484. [
  4485. {
  4486. name: "Normal",
  4487. height: math.unit(1.3, "meter"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Macro",
  4492. height: math.unit(20, "meter")
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4498. {
  4499. front: {
  4500. height: math.unit(2.8, "meter"),
  4501. weight: math.unit(200, "kg"),
  4502. name: "Front",
  4503. image: {
  4504. source: "./media/characters/elory/front.svg",
  4505. }
  4506. }
  4507. },
  4508. [
  4509. {
  4510. name: "Normal",
  4511. height: math.unit(2.8, "meter"),
  4512. default: true
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(38, "meter")
  4517. }
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4522. {
  4523. front: {
  4524. height: math.unit(470, "feet"),
  4525. weight: math.unit(924, "tons"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/angelpatamon/front.svg",
  4529. }
  4530. }
  4531. },
  4532. [
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(470, "feet"),
  4536. default: true
  4537. },
  4538. {
  4539. name: "Deity Size I",
  4540. height: math.unit(28651.2, "km")
  4541. },
  4542. {
  4543. name: "Deity Size II",
  4544. height: math.unit(171907.2, "km")
  4545. }
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4550. {
  4551. side: {
  4552. height: math.unit(7.2, "meter"),
  4553. weight: math.unit(8.2, "tons"),
  4554. name: "Side",
  4555. image: {
  4556. source: "./media/characters/cryae/side.svg",
  4557. extra: 3500 / 1500
  4558. }
  4559. }
  4560. },
  4561. [
  4562. {
  4563. name: "Normal",
  4564. height: math.unit(7.2, "meter"),
  4565. default: true
  4566. }
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4571. {
  4572. front: {
  4573. height: math.unit(6, "feet"),
  4574. weight: math.unit(175, "lb"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/xera/front.svg",
  4578. extra: 2377 / 1972,
  4579. bottom: 75.5 / 2452
  4580. }
  4581. },
  4582. side: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(175, "lb"),
  4585. name: "Side",
  4586. image: {
  4587. source: "./media/characters/xera/side.svg",
  4588. extra: 2345 / 2019,
  4589. bottom: 39.7 / 2384
  4590. }
  4591. },
  4592. back: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(175, "lb"),
  4595. name: "Back",
  4596. image: {
  4597. source: "./media/characters/xera/back.svg",
  4598. extra: 2095 / 1984,
  4599. bottom: 67 / 2166
  4600. }
  4601. },
  4602. },
  4603. [
  4604. {
  4605. name: "Small",
  4606. height: math.unit(10, "feet")
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(500, "meters"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Macro+",
  4615. height: math.unit(10, "km")
  4616. },
  4617. {
  4618. name: "Gigamacro",
  4619. height: math.unit(25000, "km")
  4620. },
  4621. {
  4622. name: "Teramacro",
  4623. height: math.unit(3e6, "km")
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4629. {
  4630. front: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(175, "lb"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/nebula/front.svg",
  4636. extra: 2566 / 2362,
  4637. bottom: 81 / 2644
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Small",
  4644. height: math.unit(4.5, "meters")
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(1500, "meters"),
  4649. default: true
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(150, "km")
  4654. },
  4655. {
  4656. name: "Gigamacro",
  4657. height: math.unit(27000, "km")
  4658. }
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(225, "lb"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/abysgar/front.svg",
  4670. extra: 1739/1614,
  4671. bottom: 71/1810
  4672. }
  4673. },
  4674. frontNsfw: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(225, "lb"),
  4677. name: "Front (NSFW)",
  4678. image: {
  4679. source: "./media/characters/abysgar/front-nsfw.svg",
  4680. extra: 1739/1614,
  4681. bottom: 71/1810
  4682. }
  4683. },
  4684. back: {
  4685. height: math.unit(4.6, "feet"),
  4686. weight: math.unit(225, "lb"),
  4687. name: "Back",
  4688. image: {
  4689. source: "./media/characters/abysgar/back.svg",
  4690. extra: 1384/1327,
  4691. bottom: 0/1384
  4692. }
  4693. },
  4694. head: {
  4695. height: math.unit(1.25, "feet"),
  4696. name: "Head",
  4697. image: {
  4698. source: "./media/characters/abysgar/head.svg",
  4699. extra: 669/569,
  4700. bottom: 0/669
  4701. }
  4702. },
  4703. },
  4704. [
  4705. {
  4706. name: "Small",
  4707. height: math.unit(4.5, "meters")
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(1250, "meters"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Megamacro",
  4716. height: math.unit(125, "km")
  4717. },
  4718. {
  4719. name: "Gigamacro",
  4720. height: math.unit(26000, "km")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(180, "lb"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/yakuz/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Small",
  4739. height: math.unit(5, "meters")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(1500, "meters"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Megamacro",
  4748. height: math.unit(200, "km")
  4749. },
  4750. {
  4751. name: "Gigamacro",
  4752. height: math.unit(100000, "km")
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(175, "lb"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/mirova/front.svg",
  4765. extra: 3334 / 3071,
  4766. bottom: 42 / 3375.6
  4767. }
  4768. }
  4769. },
  4770. [
  4771. {
  4772. name: "Small",
  4773. height: math.unit(5, "meters")
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(900, "meters"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Megamacro",
  4782. height: math.unit(135, "km")
  4783. },
  4784. {
  4785. name: "Gigamacro",
  4786. height: math.unit(20000, "km")
  4787. }
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4792. {
  4793. side: {
  4794. height: math.unit(28.35, "feet"),
  4795. weight: math.unit(99.75, "tons"),
  4796. name: "Side",
  4797. image: {
  4798. source: "./media/characters/asana-mech/side.svg",
  4799. extra: 923 / 699,
  4800. bottom: 50 / 975
  4801. }
  4802. },
  4803. chaingun: {
  4804. height: math.unit(7, "feet"),
  4805. weight: math.unit(2400, "lb"),
  4806. name: "Chaingun",
  4807. image: {
  4808. source: "./media/characters/asana-mech/chaingun.svg"
  4809. }
  4810. },
  4811. laser: {
  4812. height: math.unit(7.12, "feet"),
  4813. weight: math.unit(2000, "lb"),
  4814. name: "Laser",
  4815. image: {
  4816. source: "./media/characters/asana-mech/laser.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(28.35, "feet"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Macro",
  4828. height: math.unit(2500, "feet")
  4829. },
  4830. {
  4831. name: "Megamacro",
  4832. height: math.unit(25, "miles")
  4833. },
  4834. {
  4835. name: "Examacro",
  4836. height: math.unit(6e8, "lightyears")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(5, "meters"),
  4845. weight: math.unit(1000, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/asche/front.svg",
  4849. extra: 1258 / 1190,
  4850. bottom: 47 / 1305
  4851. }
  4852. },
  4853. frontUnderwear: {
  4854. height: math.unit(5, "meters"),
  4855. weight: math.unit(1000, "kg"),
  4856. name: "Front (Underwear)",
  4857. image: {
  4858. source: "./media/characters/asche/front-underwear.svg",
  4859. extra: 1258 / 1190,
  4860. bottom: 47 / 1305
  4861. }
  4862. },
  4863. frontDressed: {
  4864. height: math.unit(5, "meters"),
  4865. weight: math.unit(1000, "kg"),
  4866. name: "Front (Dressed)",
  4867. image: {
  4868. source: "./media/characters/asche/front-dressed.svg",
  4869. extra: 1258 / 1190,
  4870. bottom: 47 / 1305
  4871. }
  4872. },
  4873. frontArmor: {
  4874. height: math.unit(5, "meters"),
  4875. weight: math.unit(1000, "kg"),
  4876. name: "Front (Armored)",
  4877. image: {
  4878. source: "./media/characters/asche/front-armored.svg",
  4879. extra: 1374 / 1308,
  4880. bottom: 23 / 1397
  4881. }
  4882. },
  4883. mp724: {
  4884. height: math.unit(0.96, "meters"),
  4885. weight: math.unit(38, "kg"),
  4886. name: "H&K MP724",
  4887. image: {
  4888. source: "./media/characters/asche/h&k-mp724.svg"
  4889. }
  4890. },
  4891. side: {
  4892. height: math.unit(5, "meters"),
  4893. weight: math.unit(1000, "kg"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/asche/side.svg",
  4897. extra: 1717 / 1609,
  4898. bottom: 0.005
  4899. }
  4900. },
  4901. back: {
  4902. height: math.unit(5, "meters"),
  4903. weight: math.unit(1000, "kg"),
  4904. name: "Back",
  4905. image: {
  4906. source: "./media/characters/asche/back.svg",
  4907. extra: 1570 / 1501
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "DEFCON 5",
  4914. height: math.unit(5, "meters")
  4915. },
  4916. {
  4917. name: "DEFCON 4",
  4918. height: math.unit(500, "meters"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "DEFCON 3",
  4923. height: math.unit(5, "km")
  4924. },
  4925. {
  4926. name: "DEFCON 2",
  4927. height: math.unit(500, "km")
  4928. },
  4929. {
  4930. name: "DEFCON 1",
  4931. height: math.unit(500000, "km")
  4932. },
  4933. {
  4934. name: "DEFCON 0",
  4935. height: math.unit(3, "gigaparsecs")
  4936. },
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(2, "meters"),
  4944. weight: math.unit(76, "kg"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/gale/front.svg"
  4948. }
  4949. },
  4950. frontAlt1: {
  4951. height: math.unit(2, "meters"),
  4952. weight: math.unit(76, "kg"),
  4953. name: "Front (Alt 1)",
  4954. image: {
  4955. source: "./media/characters/gale/front-alt-1.svg"
  4956. }
  4957. },
  4958. frontAlt2: {
  4959. height: math.unit(2, "meters"),
  4960. weight: math.unit(76, "kg"),
  4961. name: "Front (Alt 2)",
  4962. image: {
  4963. source: "./media/characters/gale/front-alt-2.svg"
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(7, "feet")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(150, "feet"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro+",
  4979. height: math.unit(300, "feet")
  4980. },
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(5 + 10/12, "feet"),
  4988. weight: math.unit(67, "kg"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/draylen/front.svg",
  4992. extra: 832/777,
  4993. bottom: 85/917
  4994. }
  4995. }
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(5 + 10/12, "feet")
  5001. },
  5002. {
  5003. name: "Macro",
  5004. height: math.unit(150, "feet"),
  5005. default: true
  5006. }
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5011. {
  5012. front: {
  5013. height: math.unit(7 + 9 / 12, "feet"),
  5014. weight: math.unit(379, "lbs"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/chez/front.svg"
  5018. }
  5019. },
  5020. side: {
  5021. height: math.unit(7 + 9 / 12, "feet"),
  5022. weight: math.unit(379, "lbs"),
  5023. name: "Side",
  5024. image: {
  5025. source: "./media/characters/chez/side.svg"
  5026. }
  5027. }
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(7 + 9 / 12, "feet"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "God King",
  5037. height: math.unit(9750000, "meters")
  5038. }
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(275, "lbs"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/kaylum/front.svg",
  5050. bottom: 0.01,
  5051. extra: 1166 / 1031
  5052. }
  5053. },
  5054. frontWingless: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(275, "lbs"),
  5057. name: "Front (Wingless)",
  5058. image: {
  5059. source: "./media/characters/kaylum/front-wingless.svg",
  5060. bottom: 0.01,
  5061. extra: 1117 / 1031
  5062. }
  5063. }
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(3.05, "meters")
  5069. },
  5070. {
  5071. name: "Master",
  5072. height: math.unit(5.5, "meters")
  5073. },
  5074. {
  5075. name: "Rampage",
  5076. height: math.unit(19, "meters")
  5077. },
  5078. {
  5079. name: "Macro Lite",
  5080. height: math.unit(37, "meters")
  5081. },
  5082. {
  5083. name: "Hyper Predator",
  5084. height: math.unit(61, "meters")
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(138, "meters"),
  5089. default: true
  5090. }
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5095. {
  5096. front: {
  5097. height: math.unit(5 + 5 / 12, "feet"),
  5098. weight: math.unit(120, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/geta/front.svg",
  5102. extra: 1003/933,
  5103. bottom: 21/1024
  5104. }
  5105. },
  5106. paw: {
  5107. height: math.unit(0.35, "feet"),
  5108. name: "Paw",
  5109. image: {
  5110. source: "./media/characters/geta/paw.svg"
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Micro",
  5117. height: math.unit(3, "inches"),
  5118. default: true
  5119. },
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(5 + 5 / 12, "feet")
  5123. }
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5128. {
  5129. front: {
  5130. height: math.unit(6, "feet"),
  5131. weight: math.unit(300, "lbs"),
  5132. name: "Front",
  5133. image: {
  5134. source: "./media/characters/tyrnn/front.svg"
  5135. }
  5136. }
  5137. },
  5138. [
  5139. {
  5140. name: "Main Height",
  5141. height: math.unit(355, "feet"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Fave. Height",
  5146. height: math.unit(2400, "feet")
  5147. }
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(6, "feet"),
  5155. weight: math.unit(300, "lbs"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/appledectomy/front.svg"
  5159. }
  5160. }
  5161. },
  5162. [
  5163. {
  5164. name: "Macro",
  5165. height: math.unit(2500, "feet")
  5166. },
  5167. {
  5168. name: "Megamacro",
  5169. height: math.unit(50, "miles"),
  5170. default: true
  5171. },
  5172. {
  5173. name: "Gigamacro",
  5174. height: math.unit(5000, "miles")
  5175. },
  5176. {
  5177. name: "Teramacro",
  5178. height: math.unit(250000, "miles")
  5179. },
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5184. {
  5185. front: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(200, "lbs"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/vulpes/front.svg",
  5191. extra: 573 / 543,
  5192. bottom: 0.033
  5193. }
  5194. },
  5195. side: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(200, "lbs"),
  5198. name: "Side",
  5199. image: {
  5200. source: "./media/characters/vulpes/side.svg",
  5201. extra: 577 / 549,
  5202. bottom: 11 / 588
  5203. }
  5204. },
  5205. back: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(200, "lbs"),
  5208. name: "Back",
  5209. image: {
  5210. source: "./media/characters/vulpes/back.svg",
  5211. extra: 573 / 549,
  5212. bottom: 20 / 593
  5213. }
  5214. },
  5215. feet: {
  5216. height: math.unit(1.276, "feet"),
  5217. name: "Feet",
  5218. image: {
  5219. source: "./media/characters/vulpes/feet.svg"
  5220. }
  5221. },
  5222. maw: {
  5223. height: math.unit(1.18, "feet"),
  5224. name: "Maw",
  5225. image: {
  5226. source: "./media/characters/vulpes/maw.svg"
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Micro",
  5233. height: math.unit(2, "inches")
  5234. },
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(6.3, "feet")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(850, "feet")
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(7500, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Gigamacro",
  5250. height: math.unit(570000, "miles")
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(210, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/rain-fallen/front.svg"
  5263. }
  5264. },
  5265. side: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(210, "lbs"),
  5268. name: "Side",
  5269. image: {
  5270. source: "./media/characters/rain-fallen/side.svg"
  5271. }
  5272. },
  5273. back: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(210, "lbs"),
  5276. name: "Back",
  5277. image: {
  5278. source: "./media/characters/rain-fallen/back.svg"
  5279. }
  5280. },
  5281. feral: {
  5282. height: math.unit(9, "feet"),
  5283. weight: math.unit(700, "lbs"),
  5284. name: "Feral",
  5285. image: {
  5286. source: "./media/characters/rain-fallen/feral.svg"
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Meddling with Mortals",
  5293. height: math.unit(8 + 8/12, "feet")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(5, "meter")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(150, "meter"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Megamacro",
  5306. height: math.unit(278e6, "meter")
  5307. },
  5308. {
  5309. name: "Gigamacro",
  5310. height: math.unit(2e9, "meter")
  5311. },
  5312. {
  5313. name: "Teramacro",
  5314. height: math.unit(8e12, "meter")
  5315. },
  5316. {
  5317. name: "Devourer",
  5318. height: math.unit(14, "zettameters")
  5319. },
  5320. {
  5321. name: "Scarlet King",
  5322. height: math.unit(18, "yottameters")
  5323. },
  5324. {
  5325. name: "Void",
  5326. height: math.unit(1e88, "yottameters")
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5332. {
  5333. standing: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(180, "lbs"),
  5336. name: "Standing",
  5337. image: {
  5338. source: "./media/characters/zaakira/standing.svg",
  5339. extra: 1599/1504,
  5340. bottom: 39/1638
  5341. }
  5342. },
  5343. laying: {
  5344. height: math.unit(3.3, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Laying",
  5347. image: {
  5348. source: "./media/characters/zaakira/laying.svg"
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(12, "feet")
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(279, "feet"),
  5360. default: true
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5366. {
  5367. femSfw: {
  5368. height: math.unit(8, "feet"),
  5369. weight: math.unit(350, "lb"),
  5370. name: "Fem",
  5371. image: {
  5372. source: "./media/characters/sigvald/fem-sfw.svg",
  5373. extra: 182 / 164,
  5374. bottom: 8.7 / 190.5
  5375. }
  5376. },
  5377. femNsfw: {
  5378. height: math.unit(8, "feet"),
  5379. weight: math.unit(350, "lb"),
  5380. name: "Fem (NSFW)",
  5381. image: {
  5382. source: "./media/characters/sigvald/fem-nsfw.svg",
  5383. extra: 182 / 164,
  5384. bottom: 8.7 / 190.5
  5385. }
  5386. },
  5387. maleNsfw: {
  5388. height: math.unit(8, "feet"),
  5389. weight: math.unit(350, "lb"),
  5390. name: "Male (NSFW)",
  5391. image: {
  5392. source: "./media/characters/sigvald/male-nsfw.svg",
  5393. extra: 182 / 164,
  5394. bottom: 8.7 / 190.5
  5395. }
  5396. },
  5397. hermNsfw: {
  5398. height: math.unit(8, "feet"),
  5399. weight: math.unit(350, "lb"),
  5400. name: "Herm (NSFW)",
  5401. image: {
  5402. source: "./media/characters/sigvald/herm-nsfw.svg",
  5403. extra: 182 / 164,
  5404. bottom: 8.7 / 190.5
  5405. }
  5406. },
  5407. dick: {
  5408. height: math.unit(2.36, "feet"),
  5409. name: "Dick",
  5410. image: {
  5411. source: "./media/characters/sigvald/dick.svg"
  5412. }
  5413. },
  5414. eye: {
  5415. height: math.unit(0.31, "feet"),
  5416. name: "Eye",
  5417. image: {
  5418. source: "./media/characters/sigvald/eye.svg"
  5419. }
  5420. },
  5421. mouth: {
  5422. height: math.unit(0.92, "feet"),
  5423. name: "Mouth",
  5424. image: {
  5425. source: "./media/characters/sigvald/mouth.svg"
  5426. }
  5427. },
  5428. paws: {
  5429. height: math.unit(2.2, "feet"),
  5430. name: "Paws",
  5431. image: {
  5432. source: "./media/characters/sigvald/paws.svg"
  5433. }
  5434. }
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(8, "feet")
  5440. },
  5441. {
  5442. name: "Large",
  5443. height: math.unit(12, "feet")
  5444. },
  5445. {
  5446. name: "Larger",
  5447. height: math.unit(20, "feet")
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(150, "feet")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(200, "feet"),
  5456. default: true
  5457. },
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5462. {
  5463. side: {
  5464. height: math.unit(12, "feet"),
  5465. weight: math.unit(2000, "kg"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/scott/side.svg",
  5469. extra: 754 / 724,
  5470. bottom: 0.069
  5471. }
  5472. },
  5473. upright: {
  5474. height: math.unit(12, "feet"),
  5475. weight: math.unit(2000, "kg"),
  5476. name: "Upright",
  5477. image: {
  5478. source: "./media/characters/scott/upright.svg",
  5479. extra: 3881 / 3722,
  5480. bottom: 0.05
  5481. }
  5482. },
  5483. },
  5484. [
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(12, "feet"),
  5488. default: true
  5489. },
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5494. {
  5495. side: {
  5496. height: math.unit(8, "meters"),
  5497. weight: math.unit(84755, "lbs"),
  5498. name: "Side",
  5499. image: {
  5500. source: "./media/characters/tobias/side.svg",
  5501. extra: 1474 / 1096,
  5502. bottom: 38.9 / 1513.1235
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(8, "meters"),
  5510. default: true
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5516. {
  5517. front: {
  5518. height: math.unit(5.5, "feet"),
  5519. weight: math.unit(400, "lbs"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/kieran/front.svg",
  5523. extra: 2694 / 2364,
  5524. bottom: 217 / 2908
  5525. }
  5526. },
  5527. side: {
  5528. height: math.unit(5.5, "feet"),
  5529. weight: math.unit(400, "lbs"),
  5530. name: "Side",
  5531. image: {
  5532. source: "./media/characters/kieran/side.svg",
  5533. extra: 875 / 777,
  5534. bottom: 84.6 / 959
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(5.5, "feet"),
  5542. default: true
  5543. },
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5548. {
  5549. side: {
  5550. height: math.unit(2, "meters"),
  5551. weight: math.unit(70, "kg"),
  5552. name: "Side",
  5553. image: {
  5554. source: "./media/characters/sanya/side.svg",
  5555. bottom: 0.02,
  5556. extra: 1.02
  5557. }
  5558. },
  5559. },
  5560. [
  5561. {
  5562. name: "Small",
  5563. height: math.unit(2, "meters")
  5564. },
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(3, "meters")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(16, "meters"),
  5572. default: true
  5573. },
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5578. {
  5579. front: {
  5580. height: math.unit(2, "meters"),
  5581. weight: math.unit(120, "kg"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/miranda/front.svg",
  5585. extra: 195 / 185,
  5586. bottom: 10.9 / 206.5
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(2, "meters"),
  5591. weight: math.unit(120, "kg"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/miranda/back.svg",
  5595. extra: 201 / 193,
  5596. bottom: 2.3 / 203.7
  5597. }
  5598. },
  5599. },
  5600. [
  5601. {
  5602. name: "Normal",
  5603. height: math.unit(10, "feet"),
  5604. default: true
  5605. }
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "James", species: ["deer"], tags: ["anthro"] },
  5610. {
  5611. side: {
  5612. height: math.unit(2, "meters"),
  5613. weight: math.unit(100, "kg"),
  5614. name: "Front",
  5615. image: {
  5616. source: "./media/characters/james/front.svg",
  5617. extra: 10 / 8.5
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(8.5, "feet"),
  5625. default: true
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5631. {
  5632. side: {
  5633. height: math.unit(9.5, "feet"),
  5634. weight: math.unit(2500, "lbs"),
  5635. name: "Side",
  5636. image: {
  5637. source: "./media/characters/heather/side.svg"
  5638. }
  5639. },
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(9.5, "feet"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5651. {
  5652. side: {
  5653. height: math.unit(6.5, "feet"),
  5654. weight: math.unit(400, "lbs"),
  5655. name: "Side",
  5656. image: {
  5657. source: "./media/characters/lukas/side.svg",
  5658. extra: 7.25 / 6.5
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(6.5, "feet"),
  5666. default: true
  5667. }
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5672. {
  5673. side: {
  5674. height: math.unit(5, "feet"),
  5675. weight: math.unit(3000, "lbs"),
  5676. name: "Side",
  5677. image: {
  5678. source: "./media/characters/louise/side.svg"
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Normal",
  5685. height: math.unit(5, "feet"),
  5686. default: true
  5687. }
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5692. {
  5693. side: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(150, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/ramona/side.svg",
  5699. extra: 871/854,
  5700. bottom: 41/912
  5701. }
  5702. },
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(5.3, "meters"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "Macro",
  5712. height: math.unit(20, "stories")
  5713. },
  5714. {
  5715. name: "Macro+",
  5716. height: math.unit(50, "stories")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5722. {
  5723. standing: {
  5724. height: math.unit(5.75, "feet"),
  5725. weight: math.unit(160, "lbs"),
  5726. name: "Standing",
  5727. image: {
  5728. source: "./media/characters/deerpuff/standing.svg",
  5729. extra: 682 / 624
  5730. }
  5731. },
  5732. sitting: {
  5733. height: math.unit(5.75 / 1.79, "feet"),
  5734. weight: math.unit(160, "lbs"),
  5735. name: "Sitting",
  5736. image: {
  5737. source: "./media/characters/deerpuff/sitting.svg",
  5738. bottom: 44 / 400,
  5739. extra: 1
  5740. }
  5741. },
  5742. taurLaying: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(400, "lbs"),
  5745. name: "Taur (Laying)",
  5746. image: {
  5747. source: "./media/characters/deerpuff/taur-laying.svg"
  5748. }
  5749. },
  5750. },
  5751. [
  5752. {
  5753. name: "Puffball",
  5754. height: math.unit(6, "inches")
  5755. },
  5756. {
  5757. name: "Normalpuff",
  5758. height: math.unit(5.75, "feet")
  5759. },
  5760. {
  5761. name: "Macropuff",
  5762. height: math.unit(1500, "feet"),
  5763. default: true
  5764. },
  5765. {
  5766. name: "Megapuff",
  5767. height: math.unit(500, "miles")
  5768. },
  5769. {
  5770. name: "Gigapuff",
  5771. height: math.unit(250000, "miles")
  5772. },
  5773. {
  5774. name: "Omegapuff",
  5775. height: math.unit(1000, "lightyears")
  5776. },
  5777. ]
  5778. ))
  5779. characterMakers.push(() => makeCharacter(
  5780. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5781. {
  5782. stomping: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(170, "lbs"),
  5785. name: "Stomping",
  5786. image: {
  5787. source: "./media/characters/vivian/stomping.svg"
  5788. }
  5789. },
  5790. sitting: {
  5791. height: math.unit(6 / 1.75, "feet"),
  5792. weight: math.unit(170, "lbs"),
  5793. name: "Sitting",
  5794. image: {
  5795. source: "./media/characters/vivian/sitting.svg",
  5796. bottom: 1 / 6.4,
  5797. extra: 1,
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(7, "feet"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(10, "stories")
  5810. },
  5811. {
  5812. name: "Macro+",
  5813. height: math.unit(30, "stories")
  5814. },
  5815. {
  5816. name: "Megamacro",
  5817. height: math.unit(10, "miles")
  5818. },
  5819. {
  5820. name: "Megamacro+",
  5821. height: math.unit(2750000, "meters")
  5822. },
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(6, "feet"),
  5830. weight: math.unit(160, "lbs"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/prince/front.svg",
  5834. extra: 3400 / 3000
  5835. }
  5836. },
  5837. jumping: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(160, "lbs"),
  5840. name: "Jumping",
  5841. image: {
  5842. source: "./media/characters/prince/jump.svg",
  5843. extra: 2555 / 2134
  5844. }
  5845. },
  5846. },
  5847. [
  5848. {
  5849. name: "Normal",
  5850. height: math.unit(7.75, "feet"),
  5851. default: true
  5852. },
  5853. {
  5854. name: "Not cute",
  5855. height: math.unit(17, "feet")
  5856. },
  5857. {
  5858. name: "I said NOT",
  5859. height: math.unit(91, "feet")
  5860. },
  5861. {
  5862. name: "Please stop",
  5863. height: math.unit(560, "feet")
  5864. },
  5865. {
  5866. name: "What have you done",
  5867. height: math.unit(2200, "feet")
  5868. },
  5869. {
  5870. name: "Deer God",
  5871. height: math.unit(3.6, "miles")
  5872. },
  5873. ]
  5874. ))
  5875. characterMakers.push(() => makeCharacter(
  5876. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5877. {
  5878. standing: {
  5879. height: math.unit(6, "feet"),
  5880. weight: math.unit(300, "lbs"),
  5881. name: "Standing",
  5882. image: {
  5883. source: "./media/characters/psymon/standing.svg",
  5884. extra: 1888 / 1810,
  5885. bottom: 0.05
  5886. }
  5887. },
  5888. slithering: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(300, "lbs"),
  5891. name: "Slithering",
  5892. image: {
  5893. source: "./media/characters/psymon/slithering.svg",
  5894. extra: 1330 / 1224
  5895. }
  5896. },
  5897. slitheringAlt: {
  5898. height: math.unit(6, "feet"),
  5899. weight: math.unit(300, "lbs"),
  5900. name: "Slithering (Alt)",
  5901. image: {
  5902. source: "./media/characters/psymon/slithering-alt.svg",
  5903. extra: 1330 / 1224
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(11.25, "feet"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Large",
  5915. height: math.unit(27, "feet")
  5916. },
  5917. {
  5918. name: "Giant",
  5919. height: math.unit(87, "feet")
  5920. },
  5921. {
  5922. name: "Macro",
  5923. height: math.unit(365, "feet")
  5924. },
  5925. {
  5926. name: "Megamacro",
  5927. height: math.unit(3, "miles")
  5928. },
  5929. {
  5930. name: "World Serpent",
  5931. height: math.unit(8000, "miles")
  5932. },
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(6, "feet"),
  5940. weight: math.unit(180, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/daimos/front.svg",
  5944. extra: 4160 / 3897,
  5945. bottom: 0.021
  5946. }
  5947. }
  5948. },
  5949. [
  5950. {
  5951. name: "Normal",
  5952. height: math.unit(8, "feet"),
  5953. default: true
  5954. },
  5955. {
  5956. name: "Big Dog",
  5957. height: math.unit(22, "feet")
  5958. },
  5959. {
  5960. name: "Macro",
  5961. height: math.unit(127, "feet")
  5962. },
  5963. {
  5964. name: "Megamacro",
  5965. height: math.unit(3600, "feet")
  5966. },
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5971. {
  5972. side: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(180, "lbs"),
  5975. name: "Side",
  5976. image: {
  5977. source: "./media/characters/blake/side.svg",
  5978. extra: 1212 / 1120,
  5979. bottom: 0.05
  5980. }
  5981. },
  5982. crouched: {
  5983. height: math.unit(6 * 0.57, "feet"),
  5984. weight: math.unit(180, "lbs"),
  5985. name: "Crouched",
  5986. image: {
  5987. source: "./media/characters/blake/crouched.svg",
  5988. extra: 840 / 587,
  5989. bottom: 0.04
  5990. }
  5991. },
  5992. bent: {
  5993. height: math.unit(6 * 0.75, "feet"),
  5994. weight: math.unit(180, "lbs"),
  5995. name: "Bent",
  5996. image: {
  5997. source: "./media/characters/blake/bent.svg",
  5998. extra: 592 / 544,
  5999. bottom: 0.035
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(8 + 1 / 6, "feet"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Big Backside",
  6011. height: math.unit(37, "feet")
  6012. },
  6013. {
  6014. name: "Subway Shredder",
  6015. height: math.unit(72, "feet")
  6016. },
  6017. {
  6018. name: "City Carver",
  6019. height: math.unit(1675, "feet")
  6020. },
  6021. {
  6022. name: "Tectonic Tweaker",
  6023. height: math.unit(2300, "miles")
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(6, "feet"),
  6032. weight: math.unit(180, "lbs"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/guisetto/front.svg",
  6036. extra: 856 / 817,
  6037. bottom: 0.06
  6038. }
  6039. },
  6040. airborne: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(180, "lbs"),
  6043. name: "Airborne",
  6044. image: {
  6045. source: "./media/characters/guisetto/airborne.svg",
  6046. extra: 584 / 525
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(10 + 11 / 12, "feet"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Large",
  6058. height: math.unit(35, "feet")
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(475, "feet")
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(180, "lbs"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/luxor/front.svg",
  6075. extra: 2940 / 2152
  6076. }
  6077. },
  6078. back: {
  6079. height: math.unit(6, "feet"),
  6080. weight: math.unit(180, "lbs"),
  6081. name: "Back",
  6082. image: {
  6083. source: "./media/characters/luxor/back.svg",
  6084. extra: 1083 / 960
  6085. }
  6086. },
  6087. },
  6088. [
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(5 + 5 / 6, "feet"),
  6092. default: true
  6093. },
  6094. {
  6095. name: "Lamp",
  6096. height: math.unit(50, "feet")
  6097. },
  6098. {
  6099. name: "Lämp",
  6100. height: math.unit(300, "feet")
  6101. },
  6102. {
  6103. name: "The sun is a lamp",
  6104. height: math.unit(250000, "miles")
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6110. {
  6111. front: {
  6112. height: math.unit(6, "feet"),
  6113. weight: math.unit(50, "lbs"),
  6114. name: "Front",
  6115. image: {
  6116. source: "./media/characters/huoyan/front.svg"
  6117. }
  6118. },
  6119. side: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(180, "lbs"),
  6122. name: "Side",
  6123. image: {
  6124. source: "./media/characters/huoyan/side.svg"
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Chef",
  6131. height: math.unit(9, "feet")
  6132. },
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(65, "feet"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Macro",
  6140. height: math.unit(780, "feet")
  6141. },
  6142. {
  6143. name: "Flaming Mountain",
  6144. height: math.unit(4.8, "miles")
  6145. },
  6146. {
  6147. name: "Celestial",
  6148. height: math.unit(765000, "miles")
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(5 + 3 / 4, "feet"),
  6157. weight: math.unit(120, "lbs"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/tails/front.svg"
  6161. }
  6162. }
  6163. },
  6164. [
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(5 + 3 / 4, "feet"),
  6168. default: true
  6169. }
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6174. {
  6175. front: {
  6176. height: math.unit(4, "feet"),
  6177. weight: math.unit(50, "lbs"),
  6178. name: "Front",
  6179. image: {
  6180. source: "./media/characters/rainy/front.svg"
  6181. }
  6182. }
  6183. },
  6184. [
  6185. {
  6186. name: "Macro",
  6187. height: math.unit(800, "feet"),
  6188. default: true
  6189. }
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(6, "feet"),
  6197. weight: math.unit(150, "lbs"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/rainier/front.svg"
  6201. }
  6202. }
  6203. },
  6204. [
  6205. {
  6206. name: "Micro",
  6207. height: math.unit(2, "mm"),
  6208. default: true
  6209. }
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(8 + 4/12, "feet"),
  6217. weight: math.unit(450, "kilograms"),
  6218. volume: math.unit(5, "cups"),
  6219. name: "Front",
  6220. image: {
  6221. source: "./media/characters/andy-renard/front.svg",
  6222. extra: 1839/1726,
  6223. bottom: 134/1973
  6224. }
  6225. },
  6226. back: {
  6227. height: math.unit(8 + 4/12, "feet"),
  6228. weight: math.unit(450, "kilograms"),
  6229. volume: math.unit(5, "cups"),
  6230. name: "Back",
  6231. image: {
  6232. source: "./media/characters/andy-renard/back.svg",
  6233. extra: 1838/1710,
  6234. bottom: 105/1943
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Tall",
  6241. height: math.unit(8 + 4/12, "feet")
  6242. },
  6243. {
  6244. name: "Mini Macro",
  6245. height: math.unit(15, "feet"),
  6246. default: true
  6247. },
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(100, "feet")
  6251. },
  6252. {
  6253. name: "Mega Macro",
  6254. height: math.unit(1000, "feet")
  6255. },
  6256. {
  6257. name: "Giga Macro",
  6258. height: math.unit(10, "miles")
  6259. },
  6260. {
  6261. name: "God Macro",
  6262. height: math.unit(1, "multiverse")
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6268. {
  6269. front: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(210, "lbs"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/cimmaron/front-sfw.svg",
  6275. extra: 701 / 676,
  6276. bottom: 0.046
  6277. }
  6278. },
  6279. back: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(210, "lbs"),
  6282. name: "Back",
  6283. image: {
  6284. source: "./media/characters/cimmaron/back-sfw.svg",
  6285. extra: 701 / 676,
  6286. bottom: 0.046
  6287. }
  6288. },
  6289. frontNsfw: {
  6290. height: math.unit(6, "feet"),
  6291. weight: math.unit(210, "lbs"),
  6292. name: "Front (NSFW)",
  6293. image: {
  6294. source: "./media/characters/cimmaron/front-nsfw.svg",
  6295. extra: 701 / 676,
  6296. bottom: 0.046
  6297. }
  6298. },
  6299. backNsfw: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(210, "lbs"),
  6302. name: "Back (NSFW)",
  6303. image: {
  6304. source: "./media/characters/cimmaron/back-nsfw.svg",
  6305. extra: 701 / 676,
  6306. bottom: 0.046
  6307. }
  6308. },
  6309. dick: {
  6310. height: math.unit(1.714, "feet"),
  6311. name: "Dick",
  6312. image: {
  6313. source: "./media/characters/cimmaron/dick.svg"
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Normal",
  6320. height: math.unit(6, "feet"),
  6321. default: true
  6322. },
  6323. {
  6324. name: "Macro Mayor",
  6325. height: math.unit(350, "meters")
  6326. },
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6331. {
  6332. front: {
  6333. height: math.unit(6, "feet"),
  6334. weight: math.unit(200, "lbs"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/akari/front.svg",
  6338. extra: 962 / 901,
  6339. bottom: 0.04
  6340. }
  6341. }
  6342. },
  6343. [
  6344. {
  6345. name: "Micro",
  6346. height: math.unit(5, "inches"),
  6347. default: true
  6348. },
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(7, "feet")
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6357. {
  6358. front: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(140, "lbs"),
  6361. name: "Front",
  6362. image: {
  6363. source: "./media/characters/cynosura/front.svg",
  6364. extra: 896 / 847
  6365. }
  6366. },
  6367. back: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(140, "lbs"),
  6370. name: "Back",
  6371. image: {
  6372. source: "./media/characters/cynosura/back.svg",
  6373. extra: 1365 / 1250
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Micro",
  6380. height: math.unit(4, "inches")
  6381. },
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(5.75, "feet"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Tall",
  6389. height: math.unit(10, "feet")
  6390. },
  6391. {
  6392. name: "Big",
  6393. height: math.unit(20, "feet")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(50, "feet")
  6398. },
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6403. {
  6404. front: {
  6405. height: math.unit(13 + 2/12, "feet"),
  6406. weight: math.unit(800, "kg"),
  6407. name: "Front",
  6408. image: {
  6409. source: "./media/characters/gin/front.svg",
  6410. extra: 1312/1191,
  6411. bottom: 45/1357
  6412. }
  6413. },
  6414. mouth: {
  6415. height: math.unit(2.39 * 1.8, "feet"),
  6416. name: "Mouth",
  6417. image: {
  6418. source: "./media/characters/gin/mouth.svg"
  6419. }
  6420. },
  6421. hand: {
  6422. height: math.unit(1.57 * 2.19, "feet"),
  6423. name: "Hand",
  6424. image: {
  6425. source: "./media/characters/gin/hand.svg"
  6426. }
  6427. },
  6428. foot: {
  6429. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6430. name: "Foot",
  6431. image: {
  6432. source: "./media/characters/gin/foot.svg"
  6433. }
  6434. },
  6435. sole: {
  6436. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6437. name: "Sole",
  6438. image: {
  6439. source: "./media/characters/gin/sole.svg"
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Very Small",
  6446. height: math.unit(13 + 2 / 12, "feet")
  6447. },
  6448. {
  6449. name: "Micro",
  6450. height: math.unit(600, "miles")
  6451. },
  6452. {
  6453. name: "Regular",
  6454. height: math.unit(20, "earths"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(2.2, "solarradii")
  6460. },
  6461. {
  6462. name: "Teramacro",
  6463. height: math.unit(1.2, "galaxies")
  6464. },
  6465. {
  6466. name: "Omegamacro",
  6467. height: math.unit(200, "universes")
  6468. },
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(6 + 1 / 6, "feet"),
  6476. weight: math.unit(178, "lbs"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/guy/front.svg"
  6480. }
  6481. }
  6482. },
  6483. [
  6484. {
  6485. name: "Normal",
  6486. height: math.unit(6 + 1 / 6, "feet"),
  6487. default: true
  6488. },
  6489. {
  6490. name: "Large",
  6491. height: math.unit(25 + 7 / 12, "feet")
  6492. },
  6493. {
  6494. name: "Macro",
  6495. height: math.unit(60 + 9 / 12, "feet")
  6496. },
  6497. {
  6498. name: "Macro+",
  6499. height: math.unit(246, "feet")
  6500. },
  6501. {
  6502. name: "Macro++",
  6503. height: math.unit(878, "feet")
  6504. }
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(9, "feet"),
  6512. weight: math.unit(800, "lbs"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/tiberius/front.svg",
  6516. extra: 2295 / 2071
  6517. }
  6518. },
  6519. back: {
  6520. height: math.unit(9, "feet"),
  6521. weight: math.unit(800, "lbs"),
  6522. name: "Back",
  6523. image: {
  6524. source: "./media/characters/tiberius/back.svg",
  6525. extra: 2373 / 2160
  6526. }
  6527. },
  6528. },
  6529. [
  6530. {
  6531. name: "Normal",
  6532. height: math.unit(9, "feet"),
  6533. default: true
  6534. }
  6535. ]
  6536. ))
  6537. characterMakers.push(() => makeCharacter(
  6538. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6539. {
  6540. front: {
  6541. height: math.unit(6, "feet"),
  6542. weight: math.unit(600, "lbs"),
  6543. name: "Front",
  6544. image: {
  6545. source: "./media/characters/surgo/front.svg",
  6546. extra: 3591 / 2227
  6547. }
  6548. },
  6549. back: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(600, "lbs"),
  6552. name: "Back",
  6553. image: {
  6554. source: "./media/characters/surgo/back.svg",
  6555. extra: 3557 / 2228
  6556. }
  6557. },
  6558. laying: {
  6559. height: math.unit(6 * 0.85, "feet"),
  6560. weight: math.unit(600, "lbs"),
  6561. name: "Laying",
  6562. image: {
  6563. source: "./media/characters/surgo/laying.svg"
  6564. }
  6565. },
  6566. },
  6567. [
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(6, "feet"),
  6571. default: true
  6572. }
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6577. {
  6578. side: {
  6579. height: math.unit(6, "feet"),
  6580. weight: math.unit(150, "lbs"),
  6581. name: "Side",
  6582. image: {
  6583. source: "./media/characters/cibus/side.svg",
  6584. extra: 800 / 400
  6585. }
  6586. },
  6587. },
  6588. [
  6589. {
  6590. name: "Normal",
  6591. height: math.unit(6, "feet"),
  6592. default: true
  6593. }
  6594. ]
  6595. ))
  6596. characterMakers.push(() => makeCharacter(
  6597. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6598. {
  6599. front: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(240, "lbs"),
  6602. name: "Front",
  6603. image: {
  6604. source: "./media/characters/nibbles/front.svg"
  6605. }
  6606. },
  6607. side: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(240, "lbs"),
  6610. name: "Side",
  6611. image: {
  6612. source: "./media/characters/nibbles/side.svg"
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(9, "feet"),
  6620. default: true
  6621. }
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6626. {
  6627. side: {
  6628. height: math.unit(5 + 1 / 6, "feet"),
  6629. weight: math.unit(130, "lbs"),
  6630. name: "Side",
  6631. image: {
  6632. source: "./media/characters/rikky/side.svg",
  6633. extra: 851 / 801
  6634. }
  6635. },
  6636. },
  6637. [
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(5 + 1 / 6, "feet")
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(152, "feet"),
  6645. default: true
  6646. },
  6647. {
  6648. name: "Megamacro",
  6649. height: math.unit(7, "miles")
  6650. }
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6655. {
  6656. side: {
  6657. height: math.unit(370, "cm"),
  6658. weight: math.unit(350, "lbs"),
  6659. name: "Side",
  6660. image: {
  6661. source: "./media/characters/malfressa/side.svg"
  6662. }
  6663. },
  6664. walking: {
  6665. height: math.unit(370, "cm"),
  6666. weight: math.unit(350, "lbs"),
  6667. name: "Walking",
  6668. image: {
  6669. source: "./media/characters/malfressa/walking.svg"
  6670. }
  6671. },
  6672. feral: {
  6673. height: math.unit(2500, "cm"),
  6674. weight: math.unit(100000, "lbs"),
  6675. name: "Feral",
  6676. image: {
  6677. source: "./media/characters/malfressa/feral.svg",
  6678. extra: 2108 / 837,
  6679. bottom: 0.02
  6680. }
  6681. },
  6682. },
  6683. [
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(370, "cm")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(300, "meters"),
  6691. default: true
  6692. }
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(6, "feet"),
  6700. weight: math.unit(60, "kg"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/jaro/front.svg",
  6704. extra: 845/817,
  6705. bottom: 45/890
  6706. }
  6707. },
  6708. back: {
  6709. height: math.unit(6, "feet"),
  6710. weight: math.unit(60, "kg"),
  6711. name: "Back",
  6712. image: {
  6713. source: "./media/characters/jaro/back.svg",
  6714. extra: 847/817,
  6715. bottom: 34/881
  6716. }
  6717. },
  6718. },
  6719. [
  6720. {
  6721. name: "Micro",
  6722. height: math.unit(7, "inches")
  6723. },
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(5.5, "feet"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "Minimacro",
  6731. height: math.unit(20, "feet")
  6732. },
  6733. {
  6734. name: "Macro",
  6735. height: math.unit(200, "meters")
  6736. }
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6741. {
  6742. front: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(195, "lb"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/rogue/front.svg"
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(90, "feet"),
  6755. default: true
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6761. {
  6762. standing: {
  6763. height: math.unit(5 + 8 / 12, "feet"),
  6764. weight: math.unit(140, "lb"),
  6765. name: "Standing",
  6766. image: {
  6767. source: "./media/characters/piper/standing.svg",
  6768. extra: 1440/1284,
  6769. bottom: 66/1506
  6770. }
  6771. },
  6772. running: {
  6773. height: math.unit(5 + 8 / 12, "feet"),
  6774. weight: math.unit(140, "lb"),
  6775. name: "Running",
  6776. image: {
  6777. source: "./media/characters/piper/running.svg",
  6778. extra: 3948/3655,
  6779. bottom: 0/3948
  6780. }
  6781. },
  6782. sole: {
  6783. height: math.unit(0.81, "feet"),
  6784. weight: math.unit(2, "kg"),
  6785. name: "Sole",
  6786. image: {
  6787. source: "./media/characters/piper/sole.svg"
  6788. }
  6789. },
  6790. nipple: {
  6791. height: math.unit(0.25, "feet"),
  6792. weight: math.unit(1.5, "lb"),
  6793. name: "Nipple",
  6794. image: {
  6795. source: "./media/characters/piper/nipple.svg"
  6796. }
  6797. },
  6798. head: {
  6799. height: math.unit(1.1, "feet"),
  6800. name: "Head",
  6801. image: {
  6802. source: "./media/characters/piper/head.svg"
  6803. }
  6804. },
  6805. },
  6806. [
  6807. {
  6808. name: "Micro",
  6809. height: math.unit(2, "inches")
  6810. },
  6811. {
  6812. name: "Normal",
  6813. height: math.unit(5 + 8 / 12, "feet")
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(250, "feet"),
  6818. default: true
  6819. },
  6820. {
  6821. name: "Megamacro",
  6822. height: math.unit(7, "miles")
  6823. },
  6824. ]
  6825. ))
  6826. characterMakers.push(() => makeCharacter(
  6827. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6828. {
  6829. front: {
  6830. height: math.unit(6, "feet"),
  6831. weight: math.unit(220, "lb"),
  6832. name: "Front",
  6833. image: {
  6834. source: "./media/characters/gemini/front.svg"
  6835. }
  6836. },
  6837. back: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(220, "lb"),
  6840. name: "Back",
  6841. image: {
  6842. source: "./media/characters/gemini/back.svg"
  6843. }
  6844. },
  6845. kneeling: {
  6846. height: math.unit(6 / 1.5, "feet"),
  6847. weight: math.unit(220, "lb"),
  6848. name: "Kneeling",
  6849. image: {
  6850. source: "./media/characters/gemini/kneeling.svg",
  6851. bottom: 0.02
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(300, "meters"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Megamacro",
  6863. height: math.unit(6900, "meters")
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6869. {
  6870. anthro: {
  6871. height: math.unit(2.35, "meters"),
  6872. weight: math.unit(73, "kg"),
  6873. name: "Anthro",
  6874. image: {
  6875. source: "./media/characters/alicia/anthro.svg",
  6876. extra: 2571 / 2385,
  6877. bottom: 75 / 2648
  6878. }
  6879. },
  6880. paw: {
  6881. height: math.unit(1.32, "feet"),
  6882. name: "Paw",
  6883. image: {
  6884. source: "./media/characters/alicia/paw.svg"
  6885. }
  6886. },
  6887. feral: {
  6888. height: math.unit(1.69, "meters"),
  6889. weight: math.unit(73, "kg"),
  6890. name: "Feral",
  6891. image: {
  6892. source: "./media/characters/alicia/feral.svg",
  6893. extra: 2123 / 1715,
  6894. bottom: 222 / 2349
  6895. }
  6896. },
  6897. },
  6898. [
  6899. {
  6900. name: "Normal",
  6901. height: math.unit(2.35, "meters")
  6902. },
  6903. {
  6904. name: "Macro",
  6905. height: math.unit(60, "meters"),
  6906. default: true
  6907. },
  6908. {
  6909. name: "Megamacro",
  6910. height: math.unit(10000, "kilometers")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(7, "feet"),
  6919. weight: math.unit(250, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/archy/front.svg"
  6923. }
  6924. }
  6925. },
  6926. [
  6927. {
  6928. name: "Micro",
  6929. height: math.unit(1, "inch")
  6930. },
  6931. {
  6932. name: "Shorty",
  6933. height: math.unit(5, "feet")
  6934. },
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(7, "feet")
  6938. },
  6939. {
  6940. name: "Macro",
  6941. height: math.unit(600, "meters"),
  6942. default: true
  6943. },
  6944. {
  6945. name: "Megamacro",
  6946. height: math.unit(1, "mile")
  6947. },
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6952. {
  6953. front: {
  6954. height: math.unit(1.65, "meters"),
  6955. weight: math.unit(74, "kg"),
  6956. name: "Front",
  6957. image: {
  6958. source: "./media/characters/berri/front.svg",
  6959. extra: 857 / 837,
  6960. bottom: 18 / 877
  6961. }
  6962. },
  6963. bum: {
  6964. height: math.unit(1.46, "feet"),
  6965. name: "Bum",
  6966. image: {
  6967. source: "./media/characters/berri/bum.svg"
  6968. }
  6969. },
  6970. mouth: {
  6971. height: math.unit(0.44, "feet"),
  6972. name: "Mouth",
  6973. image: {
  6974. source: "./media/characters/berri/mouth.svg"
  6975. }
  6976. },
  6977. paw: {
  6978. height: math.unit(0.826, "feet"),
  6979. name: "Paw",
  6980. image: {
  6981. source: "./media/characters/berri/paw.svg"
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Normal",
  6988. height: math.unit(1.65, "meters")
  6989. },
  6990. {
  6991. name: "Macro",
  6992. height: math.unit(60, "m"),
  6993. default: true
  6994. },
  6995. {
  6996. name: "Megamacro",
  6997. height: math.unit(9.213, "km")
  6998. },
  6999. {
  7000. name: "Planet Eater",
  7001. height: math.unit(489, "megameters")
  7002. },
  7003. {
  7004. name: "Teramacro",
  7005. height: math.unit(2471635000000, "meters")
  7006. },
  7007. {
  7008. name: "Examacro",
  7009. height: math.unit(8.0624e+26, "meters")
  7010. }
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7015. {
  7016. front: {
  7017. height: math.unit(1.72, "meters"),
  7018. weight: math.unit(68, "kg"),
  7019. name: "Front",
  7020. image: {
  7021. source: "./media/characters/lexi/front.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Very Smol",
  7028. height: math.unit(10, "mm")
  7029. },
  7030. {
  7031. name: "Micro",
  7032. height: math.unit(6.8, "cm"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Normal",
  7037. height: math.unit(1.72, "m")
  7038. }
  7039. ]
  7040. ))
  7041. characterMakers.push(() => makeCharacter(
  7042. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7043. {
  7044. front: {
  7045. height: math.unit(1.69, "meters"),
  7046. weight: math.unit(68, "kg"),
  7047. name: "Front",
  7048. image: {
  7049. source: "./media/characters/martin/front.svg",
  7050. extra: 596 / 581
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Micro",
  7057. height: math.unit(6.85, "cm"),
  7058. default: true
  7059. },
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(1.69, "m")
  7063. }
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7068. {
  7069. front: {
  7070. height: math.unit(1.69, "meters"),
  7071. weight: math.unit(68, "kg"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/juno/front.svg"
  7075. }
  7076. }
  7077. },
  7078. [
  7079. {
  7080. name: "Micro",
  7081. height: math.unit(7, "cm")
  7082. },
  7083. {
  7084. name: "Normal",
  7085. height: math.unit(1.89, "m")
  7086. },
  7087. {
  7088. name: "Macro",
  7089. height: math.unit(353, "meters"),
  7090. default: true
  7091. }
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(1.93, "meters"),
  7099. weight: math.unit(83, "kg"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/samantha/front.svg"
  7103. }
  7104. },
  7105. frontClothed: {
  7106. height: math.unit(1.93, "meters"),
  7107. weight: math.unit(83, "kg"),
  7108. name: "Front (Clothed)",
  7109. image: {
  7110. source: "./media/characters/samantha/front-clothed.svg"
  7111. }
  7112. },
  7113. back: {
  7114. height: math.unit(1.93, "meters"),
  7115. weight: math.unit(83, "kg"),
  7116. name: "Back",
  7117. image: {
  7118. source: "./media/characters/samantha/back.svg"
  7119. }
  7120. },
  7121. },
  7122. [
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(1.93, "m")
  7126. },
  7127. {
  7128. name: "Macro",
  7129. height: math.unit(74, "meters"),
  7130. default: true
  7131. },
  7132. {
  7133. name: "Macro+",
  7134. height: math.unit(223, "meters"),
  7135. },
  7136. {
  7137. name: "Megamacro",
  7138. height: math.unit(8381, "meters"),
  7139. },
  7140. {
  7141. name: "Megamacro+",
  7142. height: math.unit(12000, "kilometers")
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(1.92, "meters"),
  7151. weight: math.unit(80, "kg"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/dr-clay/front.svg"
  7155. }
  7156. },
  7157. frontClothed: {
  7158. height: math.unit(1.92, "meters"),
  7159. weight: math.unit(80, "kg"),
  7160. name: "Front (Clothed)",
  7161. image: {
  7162. source: "./media/characters/dr-clay/front-clothed.svg"
  7163. }
  7164. }
  7165. },
  7166. [
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(1.92, "m")
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(214, "meters"),
  7174. default: true
  7175. },
  7176. {
  7177. name: "Macro+",
  7178. height: math.unit(12.237, "meters"),
  7179. },
  7180. {
  7181. name: "Megamacro",
  7182. height: math.unit(557, "megameters"),
  7183. },
  7184. {
  7185. name: "Unimaginable",
  7186. height: math.unit(120e9, "lightyears")
  7187. },
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7192. {
  7193. front: {
  7194. height: math.unit(2, "meters"),
  7195. weight: math.unit(80, "kg"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7199. }
  7200. }
  7201. },
  7202. [
  7203. {
  7204. name: "Teramacro",
  7205. height: math.unit(500000, "lightyears"),
  7206. default: true
  7207. },
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7212. {
  7213. crux: {
  7214. height: math.unit(2, "meters"),
  7215. weight: math.unit(150, "kg"),
  7216. name: "Crux",
  7217. image: {
  7218. source: "./media/characters/vemus/crux.svg",
  7219. extra: 1074/936,
  7220. bottom: 23/1097
  7221. }
  7222. },
  7223. skunkTanuki: {
  7224. height: math.unit(2, "meters"),
  7225. weight: math.unit(150, "kg"),
  7226. name: "Skunk-Tanuki",
  7227. image: {
  7228. source: "./media/characters/vemus/skunk-tanuki.svg",
  7229. extra: 926/893,
  7230. bottom: 20/946
  7231. }
  7232. },
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(4, "meters"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Big",
  7242. height: math.unit(8, "meters")
  7243. },
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(100, "meters")
  7247. },
  7248. {
  7249. name: "Macro+",
  7250. height: math.unit(1500, "meters")
  7251. },
  7252. {
  7253. name: "Stellar",
  7254. height: math.unit(14e8, "meters")
  7255. },
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(2, "meters"),
  7263. weight: math.unit(70, "kg"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/beherit/front.svg",
  7267. extra: 1234/1109,
  7268. bottom: 55/1289
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Normal",
  7275. height: math.unit(6, "feet")
  7276. },
  7277. {
  7278. name: "Lorg",
  7279. height: math.unit(25, "feet"),
  7280. default: true
  7281. },
  7282. {
  7283. name: "Lorger",
  7284. height: math.unit(75, "feet")
  7285. },
  7286. {
  7287. name: "Macro",
  7288. height: math.unit(200, "meters")
  7289. },
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7294. {
  7295. front: {
  7296. height: math.unit(2, "meters"),
  7297. weight: math.unit(150, "kg"),
  7298. name: "Front",
  7299. image: {
  7300. source: "./media/characters/everett/front.svg",
  7301. extra: 1017/866,
  7302. bottom: 86/1103
  7303. }
  7304. },
  7305. paw: {
  7306. height: math.unit(2 / 3.6, "meters"),
  7307. name: "Paw",
  7308. image: {
  7309. source: "./media/characters/everett/paw.svg"
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(15, "feet"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Lorg",
  7321. height: math.unit(70, "feet"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Lorger",
  7326. height: math.unit(250, "feet")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(500, "meters")
  7331. },
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(2, "meters"),
  7339. weight: math.unit(86, "kg"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/rose/front.svg",
  7343. extra: 1785/1636,
  7344. bottom: 30/1815
  7345. },
  7346. form: "liom",
  7347. default: true
  7348. },
  7349. frontSporty: {
  7350. height: math.unit(2, "meters"),
  7351. weight: math.unit(86, "kg"),
  7352. name: "Front (Sporty)",
  7353. image: {
  7354. source: "./media/characters/rose/front-sporty.svg",
  7355. extra: 350/335,
  7356. bottom: 10/360
  7357. },
  7358. form: "liom"
  7359. },
  7360. frontAlt: {
  7361. height: math.unit(1.6, "meters"),
  7362. weight: math.unit(86, "kg"),
  7363. name: "Front (Alt)",
  7364. image: {
  7365. source: "./media/characters/rose/front-alt.svg",
  7366. extra: 299/283,
  7367. bottom: 3/302
  7368. },
  7369. form: "liom"
  7370. },
  7371. plush: {
  7372. height: math.unit(2, "meters"),
  7373. weight: math.unit(86/3, "kg"),
  7374. name: "Plush",
  7375. image: {
  7376. source: "./media/characters/rose/plush.svg",
  7377. extra: 361/337,
  7378. bottom: 11/372
  7379. },
  7380. form: "plush",
  7381. default: true
  7382. },
  7383. faeStanding: {
  7384. height: math.unit(10, "cm"),
  7385. weight: math.unit(10, "grams"),
  7386. name: "Standing",
  7387. image: {
  7388. source: "./media/characters/rose/fae-standing.svg",
  7389. extra: 1189/1060,
  7390. bottom: 27/1216
  7391. },
  7392. form: "fae",
  7393. default: true
  7394. },
  7395. faeSitting: {
  7396. height: math.unit(5, "cm"),
  7397. weight: math.unit(10, "grams"),
  7398. name: "Sitting",
  7399. image: {
  7400. source: "./media/characters/rose/fae-sitting.svg",
  7401. extra: 737/577,
  7402. bottom: 356/1093
  7403. },
  7404. form: "fae"
  7405. },
  7406. faePaw: {
  7407. height: math.unit(1.35, "cm"),
  7408. name: "Paw",
  7409. image: {
  7410. source: "./media/characters/rose/fae-paw.svg"
  7411. },
  7412. form: "fae"
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "True Micro",
  7418. height: math.unit(9, "cm"),
  7419. form: "liom"
  7420. },
  7421. {
  7422. name: "Micro",
  7423. height: math.unit(16, "cm"),
  7424. form: "liom"
  7425. },
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(1.85, "meters"),
  7429. default: true,
  7430. form: "liom"
  7431. },
  7432. {
  7433. name: "Mini-Macro",
  7434. height: math.unit(5, "meters"),
  7435. form: "liom"
  7436. },
  7437. {
  7438. name: "Macro",
  7439. height: math.unit(15, "meters"),
  7440. form: "liom"
  7441. },
  7442. {
  7443. name: "True Macro",
  7444. height: math.unit(40, "meters"),
  7445. form: "liom"
  7446. },
  7447. {
  7448. name: "City Scale",
  7449. height: math.unit(1, "km"),
  7450. form: "liom"
  7451. },
  7452. {
  7453. name: "Plushie",
  7454. height: math.unit(9, "cm"),
  7455. form: "plush",
  7456. default: true
  7457. },
  7458. {
  7459. name: "Fae",
  7460. height: math.unit(10, "cm"),
  7461. form: "fae",
  7462. default: true
  7463. },
  7464. ],
  7465. {
  7466. "liom": {
  7467. name: "Liom"
  7468. },
  7469. "plush": {
  7470. name: "Plush"
  7471. },
  7472. "fae": {
  7473. name: "Fae Fox",
  7474. default: true
  7475. }
  7476. }
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7480. {
  7481. front: {
  7482. height: math.unit(2, "meters"),
  7483. weight: math.unit(350, "lbs"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/regal/front.svg"
  7487. }
  7488. },
  7489. back: {
  7490. height: math.unit(2, "meters"),
  7491. weight: math.unit(350, "lbs"),
  7492. name: "Back",
  7493. image: {
  7494. source: "./media/characters/regal/back.svg"
  7495. }
  7496. },
  7497. },
  7498. [
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(350, "feet"),
  7502. default: true
  7503. }
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(4 + 11 / 12, "feet"),
  7511. weight: math.unit(100, "lbs"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/opal/front.svg"
  7515. }
  7516. },
  7517. frontAlt: {
  7518. height: math.unit(4 + 11 / 12, "feet"),
  7519. weight: math.unit(100, "lbs"),
  7520. name: "Front (Alt)",
  7521. image: {
  7522. source: "./media/characters/opal/front-alt.svg"
  7523. }
  7524. },
  7525. },
  7526. [
  7527. {
  7528. name: "Small",
  7529. height: math.unit(4 + 11 / 12, "feet")
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(20, "feet"),
  7534. default: true
  7535. },
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(120, "feet")
  7539. },
  7540. {
  7541. name: "Megamacro",
  7542. height: math.unit(80, "miles")
  7543. },
  7544. {
  7545. name: "True Size",
  7546. height: math.unit(100000, "lightyears")
  7547. },
  7548. ]
  7549. ))
  7550. characterMakers.push(() => makeCharacter(
  7551. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7552. {
  7553. front: {
  7554. height: math.unit(6, "feet"),
  7555. weight: math.unit(200, "lbs"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/vector-wuff/front.svg"
  7559. }
  7560. }
  7561. },
  7562. [
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(2.8, "meters")
  7566. },
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(450, "meters"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(15, "kilometers")
  7575. }
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(256, "lbs"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/dannik/front.svg"
  7587. }
  7588. }
  7589. },
  7590. [
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(69.57, "meters"),
  7594. default: true
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7600. {
  7601. front: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(120, "lbs"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/azura-saharah/front.svg"
  7607. }
  7608. },
  7609. back: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(120, "lbs"),
  7612. name: "Back",
  7613. image: {
  7614. source: "./media/characters/azura-saharah/back.svg"
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(100, "feet"),
  7622. default: true
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7628. {
  7629. side: {
  7630. height: math.unit(5 + 4 / 12, "feet"),
  7631. weight: math.unit(163, "lbs"),
  7632. name: "Side",
  7633. image: {
  7634. source: "./media/characters/kennedy/side.svg"
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Standard Doggo",
  7641. height: math.unit(5 + 4 / 12, "feet")
  7642. },
  7643. {
  7644. name: "Big Doggo",
  7645. height: math.unit(25 + 3 / 12, "feet"),
  7646. default: true
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(5 + 5/12, "feet"),
  7655. weight: math.unit(100, "lbs"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/odios-de-lunar/front.svg",
  7659. extra: 1468/1323,
  7660. bottom: 22/1490
  7661. }
  7662. }
  7663. },
  7664. [
  7665. {
  7666. name: "Micro",
  7667. height: math.unit(3, "inches")
  7668. },
  7669. {
  7670. name: "Normal",
  7671. height: math.unit(5.5, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(100, "feet")
  7677. },
  7678. ]
  7679. ))
  7680. characterMakers.push(() => makeCharacter(
  7681. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7682. {
  7683. back: {
  7684. height: math.unit(6, "feet"),
  7685. weight: math.unit(220, "lbs"),
  7686. name: "Back",
  7687. image: {
  7688. source: "./media/characters/mandake/back.svg"
  7689. }
  7690. }
  7691. },
  7692. [
  7693. {
  7694. name: "Normal",
  7695. height: math.unit(7, "feet"),
  7696. default: true
  7697. },
  7698. {
  7699. name: "Macro",
  7700. height: math.unit(78, "feet")
  7701. },
  7702. {
  7703. name: "Macro+",
  7704. height: math.unit(300, "meters")
  7705. },
  7706. {
  7707. name: "Macro++",
  7708. height: math.unit(2400, "feet")
  7709. },
  7710. {
  7711. name: "Megamacro",
  7712. height: math.unit(5167, "meters")
  7713. },
  7714. {
  7715. name: "Gigamacro",
  7716. height: math.unit(41769, "miles")
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7722. {
  7723. front: {
  7724. height: math.unit(6, "feet"),
  7725. weight: math.unit(120, "lbs"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/yozey/front.svg"
  7729. }
  7730. },
  7731. frontAlt: {
  7732. height: math.unit(6, "feet"),
  7733. weight: math.unit(120, "lbs"),
  7734. name: "Front (Alt)",
  7735. image: {
  7736. source: "./media/characters/yozey/front-alt.svg"
  7737. }
  7738. },
  7739. side: {
  7740. height: math.unit(6, "feet"),
  7741. weight: math.unit(120, "lbs"),
  7742. name: "Side",
  7743. image: {
  7744. source: "./media/characters/yozey/side.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Micro",
  7751. height: math.unit(3, "inches"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Normal",
  7756. height: math.unit(6, "feet")
  7757. }
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(6, "feet"),
  7765. weight: math.unit(103, "lbs"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/valeska-voss/front.svg"
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Mini-Sized Sub",
  7775. height: math.unit(3.1, "inches")
  7776. },
  7777. {
  7778. name: "Mid-Sized Sub",
  7779. height: math.unit(6.2, "inches")
  7780. },
  7781. {
  7782. name: "Full-Sized Sub",
  7783. height: math.unit(9.3, "inches")
  7784. },
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(5 + 2 / 12, "foot"),
  7788. default: true
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(160, "lbs"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/gene-zeta/front.svg",
  7801. extra: 3006 / 2826,
  7802. bottom: 182 / 3188
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Micro",
  7809. height: math.unit(6, "inches")
  7810. },
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(5 + 11 / 12, "foot"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Macro",
  7818. height: math.unit(140, "feet")
  7819. },
  7820. {
  7821. name: "Supercharged",
  7822. height: math.unit(2500, "feet")
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(6, "feet"),
  7831. weight: math.unit(350, "lbs"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/razinox/front.svg",
  7835. extra: 1686 / 1548,
  7836. bottom: 28.2 / 1868
  7837. }
  7838. },
  7839. back: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(350, "lbs"),
  7842. name: "Back",
  7843. image: {
  7844. source: "./media/characters/razinox/back.svg",
  7845. extra: 1660 / 1590,
  7846. bottom: 15 / 1665
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(10 + 8 / 12, "foot")
  7854. },
  7855. {
  7856. name: "Minimacro",
  7857. height: math.unit(15, "foot")
  7858. },
  7859. {
  7860. name: "Macro",
  7861. height: math.unit(60, "foot"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Megamacro",
  7866. height: math.unit(5, "miles")
  7867. },
  7868. {
  7869. name: "Gigamacro",
  7870. height: math.unit(6000, "miles")
  7871. },
  7872. ]
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7876. {
  7877. front: {
  7878. height: math.unit(6, "feet"),
  7879. weight: math.unit(150, "lbs"),
  7880. name: "Front",
  7881. image: {
  7882. source: "./media/characters/cobalt/front.svg"
  7883. }
  7884. }
  7885. },
  7886. [
  7887. {
  7888. name: "Normal",
  7889. height: math.unit(8 + 1 / 12, "foot")
  7890. },
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(111, "foot"),
  7894. default: true
  7895. },
  7896. {
  7897. name: "Supracosmic",
  7898. height: math.unit(1e42, "feet")
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(5, "inches"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/amanda/front.svg",
  7910. extra: 926/791,
  7911. bottom: 38/964
  7912. }
  7913. },
  7914. back: {
  7915. height: math.unit(5, "inches"),
  7916. name: "Back",
  7917. image: {
  7918. source: "./media/characters/amanda/back.svg",
  7919. extra: 909/805,
  7920. bottom: 43/952
  7921. }
  7922. },
  7923. },
  7924. [
  7925. {
  7926. name: "Micro",
  7927. height: math.unit(5, "inches"),
  7928. default: true
  7929. },
  7930. ]
  7931. ))
  7932. characterMakers.push(() => makeCharacter(
  7933. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7934. {
  7935. front: {
  7936. height: math.unit(2.75, "meters"),
  7937. weight: math.unit(1200, "lb"),
  7938. name: "Front",
  7939. image: {
  7940. source: "./media/characters/teal/front.svg",
  7941. extra: 2463 / 2320,
  7942. bottom: 166 / 2629
  7943. }
  7944. },
  7945. back: {
  7946. height: math.unit(2.75, "meters"),
  7947. weight: math.unit(1200, "lb"),
  7948. name: "Back",
  7949. image: {
  7950. source: "./media/characters/teal/back.svg",
  7951. extra: 2580 / 2489,
  7952. bottom: 151 / 2731
  7953. }
  7954. },
  7955. sitting: {
  7956. height: math.unit(1.9, "meters"),
  7957. weight: math.unit(1200, "lb"),
  7958. name: "Sitting",
  7959. image: {
  7960. source: "./media/characters/teal/sitting.svg",
  7961. extra: 623 / 590,
  7962. bottom: 121 / 744
  7963. }
  7964. },
  7965. standing: {
  7966. height: math.unit(2.75, "meters"),
  7967. weight: math.unit(1200, "lb"),
  7968. name: "Standing",
  7969. image: {
  7970. source: "./media/characters/teal/standing.svg",
  7971. extra: 923 / 893,
  7972. bottom: 60 / 983
  7973. }
  7974. },
  7975. stretching: {
  7976. height: math.unit(3.65, "meters"),
  7977. weight: math.unit(1200, "lb"),
  7978. name: "Stretching",
  7979. image: {
  7980. source: "./media/characters/teal/stretching.svg",
  7981. extra: 1276 / 1244,
  7982. bottom: 0 / 1276
  7983. }
  7984. },
  7985. legged: {
  7986. height: math.unit(1.3, "meters"),
  7987. weight: math.unit(100, "lb"),
  7988. name: "Legged",
  7989. image: {
  7990. source: "./media/characters/teal/legged.svg",
  7991. extra: 462 / 437,
  7992. bottom: 24 / 486
  7993. }
  7994. },
  7995. naga: {
  7996. height: math.unit(5.4, "meters"),
  7997. weight: math.unit(4000, "lb"),
  7998. name: "Naga",
  7999. image: {
  8000. source: "./media/characters/teal/naga.svg",
  8001. extra: 1902 / 1858,
  8002. bottom: 0 / 1902
  8003. }
  8004. },
  8005. hand: {
  8006. height: math.unit(0.52, "meters"),
  8007. name: "Hand",
  8008. image: {
  8009. source: "./media/characters/teal/hand.svg"
  8010. }
  8011. },
  8012. maw: {
  8013. height: math.unit(0.43, "meters"),
  8014. name: "Maw",
  8015. image: {
  8016. source: "./media/characters/teal/maw.svg"
  8017. }
  8018. },
  8019. slit: {
  8020. height: math.unit(0.25, "meters"),
  8021. name: "Slit",
  8022. image: {
  8023. source: "./media/characters/teal/slit.svg"
  8024. }
  8025. },
  8026. },
  8027. [
  8028. {
  8029. name: "Normal",
  8030. height: math.unit(2.75, "meters"),
  8031. default: true
  8032. },
  8033. {
  8034. name: "Macro",
  8035. height: math.unit(300, "feet")
  8036. },
  8037. {
  8038. name: "Macro+",
  8039. height: math.unit(2000, "feet")
  8040. },
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8045. {
  8046. frontCat: {
  8047. height: math.unit(6, "feet"),
  8048. weight: math.unit(180, "lbs"),
  8049. name: "Front (Cat)",
  8050. image: {
  8051. source: "./media/characters/ravin-amulet/front-cat.svg"
  8052. }
  8053. },
  8054. frontCatAlt: {
  8055. height: math.unit(6, "feet"),
  8056. weight: math.unit(180, "lbs"),
  8057. name: "Front (Alt, Cat)",
  8058. image: {
  8059. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8060. }
  8061. },
  8062. frontWerewolf: {
  8063. height: math.unit(6 * 1.2, "feet"),
  8064. weight: math.unit(225, "lbs"),
  8065. name: "Front (Werewolf)",
  8066. image: {
  8067. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8068. }
  8069. },
  8070. backWerewolf: {
  8071. height: math.unit(6 * 1.2, "feet"),
  8072. weight: math.unit(225, "lbs"),
  8073. name: "Back (Werewolf)",
  8074. image: {
  8075. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8076. }
  8077. },
  8078. },
  8079. [
  8080. {
  8081. name: "Nano",
  8082. height: math.unit(1, "micrometer")
  8083. },
  8084. {
  8085. name: "Micro",
  8086. height: math.unit(1, "inch")
  8087. },
  8088. {
  8089. name: "Normal",
  8090. height: math.unit(6, "feet"),
  8091. default: true
  8092. },
  8093. {
  8094. name: "Macro",
  8095. height: math.unit(60, "feet")
  8096. }
  8097. ]
  8098. ))
  8099. characterMakers.push(() => makeCharacter(
  8100. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8101. {
  8102. front: {
  8103. height: math.unit(6, "feet"),
  8104. weight: math.unit(165, "lbs"),
  8105. name: "Front",
  8106. image: {
  8107. source: "./media/characters/fluoresce/front.svg"
  8108. }
  8109. }
  8110. },
  8111. [
  8112. {
  8113. name: "Micro",
  8114. height: math.unit(6, "cm")
  8115. },
  8116. {
  8117. name: "Normal",
  8118. height: math.unit(5 + 7 / 12, "feet"),
  8119. default: true
  8120. },
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(56, "feet")
  8124. },
  8125. {
  8126. name: "Megamacro",
  8127. height: math.unit(1.9, "miles")
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(9 + 6 / 12, "feet"),
  8136. weight: math.unit(523, "lbs"),
  8137. name: "Side",
  8138. image: {
  8139. source: "./media/characters/aurora/side.svg"
  8140. }
  8141. }
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(9 + 6 / 12, "feet")
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(96, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Macro+",
  8155. height: math.unit(243, "feet")
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(194, "cm"),
  8164. weight: math.unit(90, "kg"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/ranek/front.svg",
  8168. extra: 1862/1791,
  8169. bottom: 80/1942
  8170. }
  8171. },
  8172. back: {
  8173. height: math.unit(194, "cm"),
  8174. weight: math.unit(90, "kg"),
  8175. name: "Back",
  8176. image: {
  8177. source: "./media/characters/ranek/back.svg",
  8178. extra: 1853/1787,
  8179. bottom: 74/1927
  8180. }
  8181. },
  8182. feral: {
  8183. height: math.unit(30, "cm"),
  8184. weight: math.unit(1.6, "lbs"),
  8185. name: "Feral",
  8186. image: {
  8187. source: "./media/characters/ranek/feral.svg",
  8188. extra: 990/631,
  8189. bottom: 29/1019
  8190. }
  8191. },
  8192. },
  8193. [
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(194, "cm"),
  8197. default: true
  8198. },
  8199. {
  8200. name: "Macro",
  8201. height: math.unit(100, "meters")
  8202. },
  8203. ]
  8204. ))
  8205. characterMakers.push(() => makeCharacter(
  8206. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8207. {
  8208. front: {
  8209. height: math.unit(5 + 6 / 12, "feet"),
  8210. weight: math.unit(153, "lbs"),
  8211. name: "Front",
  8212. image: {
  8213. source: "./media/characters/andrew-cooper/front.svg"
  8214. }
  8215. },
  8216. },
  8217. [
  8218. {
  8219. name: "Nano",
  8220. height: math.unit(1, "mm")
  8221. },
  8222. {
  8223. name: "Micro",
  8224. height: math.unit(2, "inches")
  8225. },
  8226. {
  8227. name: "Normal",
  8228. height: math.unit(5 + 6 / 12, "feet"),
  8229. default: true
  8230. }
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8235. {
  8236. front: {
  8237. height: math.unit(6, "feet"),
  8238. weight: math.unit(180, "lbs"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/akane-sato/front.svg",
  8242. extra: 1219 / 1140
  8243. }
  8244. },
  8245. back: {
  8246. height: math.unit(6, "feet"),
  8247. weight: math.unit(180, "lbs"),
  8248. name: "Back",
  8249. image: {
  8250. source: "./media/characters/akane-sato/back.svg",
  8251. extra: 1219 / 1170
  8252. }
  8253. },
  8254. },
  8255. [
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(2.5, "meters")
  8259. },
  8260. {
  8261. name: "Macro",
  8262. height: math.unit(250, "meters"),
  8263. default: true
  8264. },
  8265. {
  8266. name: "Megamacro",
  8267. height: math.unit(25, "km")
  8268. },
  8269. ]
  8270. ))
  8271. characterMakers.push(() => makeCharacter(
  8272. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8273. {
  8274. front: {
  8275. height: math.unit(6, "feet"),
  8276. weight: math.unit(65, "kg"),
  8277. name: "Front",
  8278. image: {
  8279. source: "./media/characters/rook/front.svg",
  8280. extra: 960 / 950
  8281. }
  8282. }
  8283. },
  8284. [
  8285. {
  8286. name: "Normal",
  8287. height: math.unit(8.8, "feet")
  8288. },
  8289. {
  8290. name: "Macro",
  8291. height: math.unit(88, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Megamacro",
  8296. height: math.unit(8, "miles")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(12 + 2 / 12, "feet"),
  8305. weight: math.unit(808, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/prodigy/front.svg"
  8309. }
  8310. }
  8311. },
  8312. [
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(12 + 2 / 12, "feet"),
  8316. default: true
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(143, "feet")
  8321. },
  8322. {
  8323. name: "Macro+",
  8324. height: math.unit(400, "feet")
  8325. },
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(6, "feet"),
  8333. weight: math.unit(225, "lbs"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/daniel/front.svg"
  8337. }
  8338. },
  8339. leaning: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(225, "lbs"),
  8342. name: "Leaning",
  8343. image: {
  8344. source: "./media/characters/daniel/leaning.svg"
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(1000, "feet"),
  8352. default: true
  8353. },
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(88, "lbs"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/chiros/front.svg",
  8365. extra: 306 / 226
  8366. }
  8367. },
  8368. side: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(88, "lbs"),
  8371. name: "Side",
  8372. image: {
  8373. source: "./media/characters/chiros/side.svg",
  8374. extra: 306 / 226
  8375. }
  8376. },
  8377. },
  8378. [
  8379. {
  8380. name: "Normal",
  8381. height: math.unit(6, "cm"),
  8382. default: true
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(100, "lbs"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/selka/front.svg",
  8395. extra: 947 / 887
  8396. }
  8397. }
  8398. },
  8399. [
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(5, "cm"),
  8403. default: true
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(8 + 3 / 12, "feet"),
  8412. weight: math.unit(424, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/verin/front.svg",
  8416. extra: 1845 / 1550
  8417. }
  8418. },
  8419. frontArmored: {
  8420. height: math.unit(8 + 3 / 12, "feet"),
  8421. weight: math.unit(424, "lbs"),
  8422. name: "Front (Armored)",
  8423. image: {
  8424. source: "./media/characters/verin/front-armor.svg",
  8425. extra: 1845 / 1550,
  8426. bottom: 0.01
  8427. }
  8428. },
  8429. back: {
  8430. height: math.unit(8 + 3 / 12, "feet"),
  8431. weight: math.unit(424, "lbs"),
  8432. name: "Back",
  8433. image: {
  8434. source: "./media/characters/verin/back.svg",
  8435. bottom: 0.1,
  8436. extra: 1
  8437. }
  8438. },
  8439. foot: {
  8440. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8441. name: "Foot",
  8442. image: {
  8443. source: "./media/characters/verin/foot.svg"
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(8 + 3 / 12, "feet")
  8451. },
  8452. {
  8453. name: "Minimacro",
  8454. height: math.unit(21, "feet"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Macro",
  8459. height: math.unit(626, "feet")
  8460. },
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(2.718, "meters"),
  8468. weight: math.unit(150, "lbs"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/sovrim-terraquian/front.svg",
  8472. extra: 1752/1689,
  8473. bottom: 36/1788
  8474. }
  8475. },
  8476. back: {
  8477. height: math.unit(2.718, "meters"),
  8478. weight: math.unit(150, "lbs"),
  8479. name: "Back",
  8480. image: {
  8481. source: "./media/characters/sovrim-terraquian/back.svg",
  8482. extra: 1698/1657,
  8483. bottom: 58/1756
  8484. }
  8485. },
  8486. tongue: {
  8487. height: math.unit(2.865, "feet"),
  8488. name: "Tongue",
  8489. image: {
  8490. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8491. }
  8492. },
  8493. hand: {
  8494. height: math.unit(1.61, "feet"),
  8495. name: "Hand",
  8496. image: {
  8497. source: "./media/characters/sovrim-terraquian/hand.svg"
  8498. }
  8499. },
  8500. foot: {
  8501. height: math.unit(1.05, "feet"),
  8502. name: "Foot",
  8503. image: {
  8504. source: "./media/characters/sovrim-terraquian/foot.svg"
  8505. }
  8506. },
  8507. footAlt: {
  8508. height: math.unit(0.88, "feet"),
  8509. name: "Foot (Alt)",
  8510. image: {
  8511. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Micro",
  8518. height: math.unit(2, "inches")
  8519. },
  8520. {
  8521. name: "Small",
  8522. height: math.unit(1, "meter")
  8523. },
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(Math.E, "meters"),
  8527. default: true
  8528. },
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(20, "meters")
  8532. },
  8533. {
  8534. name: "Macro+",
  8535. height: math.unit(400, "meters")
  8536. },
  8537. ]
  8538. ))
  8539. characterMakers.push(() => makeCharacter(
  8540. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8541. {
  8542. front: {
  8543. height: math.unit(7, "feet"),
  8544. weight: math.unit(489, "lbs"),
  8545. name: "Front",
  8546. image: {
  8547. source: "./media/characters/reece-silvermane/front.svg",
  8548. bottom: 0.02,
  8549. extra: 1
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Macro",
  8556. height: math.unit(1.5, "miles"),
  8557. default: true
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(78, "kg"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/kane/front.svg",
  8570. extra: 978 / 899
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(2.1, "m"),
  8578. },
  8579. {
  8580. name: "Macro",
  8581. height: math.unit(1, "km"),
  8582. default: true
  8583. },
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(6, "feet"),
  8591. weight: math.unit(200, "kg"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/tegon/front.svg",
  8595. bottom: 0.01,
  8596. extra: 1
  8597. }
  8598. },
  8599. },
  8600. [
  8601. {
  8602. name: "Micro",
  8603. height: math.unit(1, "inch")
  8604. },
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(6 + 3 / 12, "feet"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(300, "feet")
  8613. },
  8614. {
  8615. name: "Megamacro",
  8616. height: math.unit(69, "miles")
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8622. {
  8623. side: {
  8624. height: math.unit(6, "feet"),
  8625. weight: math.unit(2304, "lbs"),
  8626. name: "Side",
  8627. image: {
  8628. source: "./media/characters/arcturax/side.svg",
  8629. extra: 790 / 376,
  8630. bottom: 0.01
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Micro",
  8637. height: math.unit(2, "inch")
  8638. },
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(6, "feet")
  8642. },
  8643. {
  8644. name: "Macro",
  8645. height: math.unit(39, "feet"),
  8646. default: true
  8647. },
  8648. {
  8649. name: "Megamacro",
  8650. height: math.unit(7, "miles")
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8656. {
  8657. front: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(50, "lbs"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/sentri/front.svg",
  8663. extra: 1750 / 1570,
  8664. bottom: 0.025
  8665. }
  8666. },
  8667. frontAlt: {
  8668. height: math.unit(6, "feet"),
  8669. weight: math.unit(50, "lbs"),
  8670. name: "Front (Alt)",
  8671. image: {
  8672. source: "./media/characters/sentri/front-alt.svg",
  8673. extra: 1750 / 1570,
  8674. bottom: 0.025
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(15, "feet"),
  8682. default: true
  8683. },
  8684. {
  8685. name: "Macro",
  8686. height: math.unit(2500, "feet")
  8687. }
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(5 + 8 / 12, "feet"),
  8695. weight: math.unit(130, "lbs"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/corvin/front.svg",
  8699. extra: 1803 / 1629
  8700. }
  8701. },
  8702. frontShirt: {
  8703. height: math.unit(5 + 8 / 12, "feet"),
  8704. weight: math.unit(130, "lbs"),
  8705. name: "Front (Shirt)",
  8706. image: {
  8707. source: "./media/characters/corvin/front-shirt.svg",
  8708. extra: 1803 / 1629
  8709. }
  8710. },
  8711. frontPoncho: {
  8712. height: math.unit(5 + 8 / 12, "feet"),
  8713. weight: math.unit(130, "lbs"),
  8714. name: "Front (Poncho)",
  8715. image: {
  8716. source: "./media/characters/corvin/front-poncho.svg",
  8717. extra: 1803 / 1629
  8718. }
  8719. },
  8720. side: {
  8721. height: math.unit(5 + 8 / 12, "feet"),
  8722. weight: math.unit(130, "lbs"),
  8723. name: "Side",
  8724. image: {
  8725. source: "./media/characters/corvin/side.svg",
  8726. extra: 1012 / 945
  8727. }
  8728. },
  8729. back: {
  8730. height: math.unit(5 + 8 / 12, "feet"),
  8731. weight: math.unit(130, "lbs"),
  8732. name: "Back",
  8733. image: {
  8734. source: "./media/characters/corvin/back.svg",
  8735. extra: 1803 / 1629
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Micro",
  8742. height: math.unit(3, "inches")
  8743. },
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(5 + 8 / 12, "feet")
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(300, "feet"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Megamacro",
  8755. height: math.unit(500, "miles")
  8756. }
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(135, "lbs"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/q/front.svg",
  8768. extra: 854 / 752,
  8769. bottom: 0.005
  8770. }
  8771. },
  8772. back: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(130, "lbs"),
  8775. name: "Back",
  8776. image: {
  8777. source: "./media/characters/q/back.svg",
  8778. extra: 854 / 752
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Macro",
  8785. height: math.unit(90, "feet"),
  8786. default: true
  8787. },
  8788. {
  8789. name: "Extra Macro",
  8790. height: math.unit(300, "feet"),
  8791. },
  8792. {
  8793. name: "BIG WALF",
  8794. height: math.unit(750, "feet"),
  8795. },
  8796. ]
  8797. ))
  8798. characterMakers.push(() => makeCharacter(
  8799. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8800. {
  8801. front: {
  8802. height: math.unit(6, "feet"),
  8803. weight: math.unit(150, "lbs"),
  8804. name: "Front",
  8805. image: {
  8806. source: "./media/characters/carley/front.svg",
  8807. extra: 3927 / 3540,
  8808. bottom: 29.2 / 735
  8809. }
  8810. }
  8811. },
  8812. [
  8813. {
  8814. name: "Normal",
  8815. height: math.unit(6 + 3 / 12, "feet")
  8816. },
  8817. {
  8818. name: "Macro",
  8819. height: math.unit(185, "feet"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Megamacro",
  8824. height: math.unit(8, "miles"),
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8830. {
  8831. front: {
  8832. height: math.unit(3, "feet"),
  8833. weight: math.unit(28, "lbs"),
  8834. name: "Front",
  8835. image: {
  8836. source: "./media/characters/citrine/front.svg"
  8837. }
  8838. }
  8839. },
  8840. [
  8841. {
  8842. name: "Normal",
  8843. height: math.unit(3, "feet"),
  8844. default: true
  8845. }
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8850. {
  8851. front: {
  8852. height: math.unit(14, "feet"),
  8853. weight: math.unit(1450, "kg"),
  8854. preyCapacity: math.unit(15, "people"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/aura-starwind/front.svg",
  8858. extra: 1440/1327,
  8859. bottom: 11/1451
  8860. }
  8861. },
  8862. side: {
  8863. height: math.unit(14, "feet"),
  8864. weight: math.unit(1450, "kg"),
  8865. preyCapacity: math.unit(15, "people"),
  8866. name: "Side",
  8867. image: {
  8868. source: "./media/characters/aura-starwind/side.svg",
  8869. extra: 1654 / 1497
  8870. }
  8871. },
  8872. taur: {
  8873. height: math.unit(18, "feet"),
  8874. weight: math.unit(5500, "kg"),
  8875. preyCapacity: math.unit(50, "people"),
  8876. name: "Taur",
  8877. image: {
  8878. source: "./media/characters/aura-starwind/taur.svg",
  8879. extra: 1760 / 1650
  8880. }
  8881. },
  8882. feral: {
  8883. height: math.unit(46, "feet"),
  8884. weight: math.unit(25000, "kg"),
  8885. preyCapacity: math.unit(120, "people"),
  8886. name: "Feral",
  8887. image: {
  8888. source: "./media/characters/aura-starwind/feral.svg"
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(14, "feet"),
  8896. default: true
  8897. },
  8898. {
  8899. name: "Macro",
  8900. height: math.unit(50, "meters")
  8901. },
  8902. {
  8903. name: "Megamacro",
  8904. height: math.unit(5000, "meters")
  8905. },
  8906. {
  8907. name: "Gigamacro",
  8908. height: math.unit(100000, "kilometers")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(2 + 7 / 12, "feet"),
  8917. weight: math.unit(32, "lbs"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/rivet/front.svg",
  8921. extra: 1716 / 1658,
  8922. bottom: 0.03
  8923. }
  8924. },
  8925. foot: {
  8926. height: math.unit(0.551, "feet"),
  8927. name: "Rivet's Foot",
  8928. image: {
  8929. source: "./media/characters/rivet/foot.svg"
  8930. },
  8931. rename: true
  8932. }
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(1.5, "inches"),
  8938. },
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(2 + 7 / 12, "feet"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(85, "feet")
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(2.2, "km")
  8951. }
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(5 + 9 / 12, "feet"),
  8959. weight: math.unit(150, "lbs"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/coffee/front.svg",
  8963. extra: 3666 / 3032,
  8964. bottom: 0.04
  8965. }
  8966. },
  8967. foot: {
  8968. height: math.unit(1.29, "feet"),
  8969. name: "Foot",
  8970. image: {
  8971. source: "./media/characters/coffee/foot.svg"
  8972. }
  8973. },
  8974. },
  8975. [
  8976. {
  8977. name: "Micro",
  8978. height: math.unit(2, "inches"),
  8979. },
  8980. {
  8981. name: "Normal",
  8982. height: math.unit(5 + 9 / 12, "feet"),
  8983. default: true
  8984. },
  8985. {
  8986. name: "Macro",
  8987. height: math.unit(800, "feet")
  8988. },
  8989. {
  8990. name: "Megamacro",
  8991. height: math.unit(25, "miles")
  8992. }
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8997. {
  8998. front: {
  8999. height: math.unit(6, "feet"),
  9000. weight: math.unit(200, "lbs"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/chari-gal/front.svg",
  9004. extra: 1568 / 1385,
  9005. bottom: 0.047
  9006. }
  9007. },
  9008. gigantamax: {
  9009. height: math.unit(6 * 16, "feet"),
  9010. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9011. name: "Gigantamax",
  9012. image: {
  9013. source: "./media/characters/chari-gal/gigantamax.svg",
  9014. extra: 1124 / 888,
  9015. bottom: 0.03
  9016. }
  9017. },
  9018. },
  9019. [
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(5 + 7 / 12, "feet")
  9023. },
  9024. {
  9025. name: "Macro",
  9026. height: math.unit(200, "feet"),
  9027. default: true
  9028. }
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(6, "feet"),
  9036. weight: math.unit(150, "lbs"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/nova/front.svg",
  9040. extra: 5000 / 4722,
  9041. bottom: 0.02
  9042. }
  9043. }
  9044. },
  9045. [
  9046. {
  9047. name: "Micro-",
  9048. height: math.unit(0.8, "inches")
  9049. },
  9050. {
  9051. name: "Micro",
  9052. height: math.unit(2, "inches"),
  9053. default: true
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9059. {
  9060. front: {
  9061. height: math.unit(3 + 1 / 12, "feet"),
  9062. weight: math.unit(21.7, "lbs"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/argent/front.svg",
  9066. extra: 1471 / 1331,
  9067. bottom: 100.8 / 1575.5
  9068. }
  9069. }
  9070. },
  9071. [
  9072. {
  9073. name: "Micro",
  9074. height: math.unit(2, "inches")
  9075. },
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(3 + 1 / 12, "feet"),
  9079. default: true
  9080. },
  9081. {
  9082. name: "Macro",
  9083. height: math.unit(120, "feet")
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9089. {
  9090. lamp: {
  9091. height: math.unit(7 * 1559 / 989, "feet"),
  9092. name: "Magic Lamp",
  9093. image: {
  9094. source: "./media/characters/mira-al-cul/lamp.svg",
  9095. extra: 1617 / 1559
  9096. }
  9097. },
  9098. front: {
  9099. height: math.unit(7, "feet"),
  9100. name: "Front",
  9101. image: {
  9102. source: "./media/characters/mira-al-cul/front.svg",
  9103. extra: 1044 / 990
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Heavily Restricted",
  9110. height: math.unit(7 * 1559 / 989, "feet")
  9111. },
  9112. {
  9113. name: "Freshly Freed",
  9114. height: math.unit(50 * 1559 / 989, "feet")
  9115. },
  9116. {
  9117. name: "World Encompassing",
  9118. height: math.unit(10000 * 1559 / 989, "miles")
  9119. },
  9120. {
  9121. name: "Galactic",
  9122. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9123. },
  9124. {
  9125. name: "Palmed Universe",
  9126. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "Multiversal Matriarch",
  9131. height: math.unit(8.87e10, "yottameters")
  9132. },
  9133. {
  9134. name: "Void Mother",
  9135. height: math.unit(3.14e110, "yottaparsecs")
  9136. },
  9137. {
  9138. name: "Toying with Transcendence",
  9139. height: math.unit(1e307, "meters")
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9145. {
  9146. front: {
  9147. height: math.unit(17 + 1 / 12, "feet"),
  9148. weight: math.unit(476.2 * 5, "lbs"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/kuro-shi-uchū/front.svg",
  9152. extra: 2329 / 1835,
  9153. bottom: 0.02
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Micro",
  9160. height: math.unit(2, "inches")
  9161. },
  9162. {
  9163. name: "Normal",
  9164. height: math.unit(12, "meters")
  9165. },
  9166. {
  9167. name: "Planetary",
  9168. height: math.unit(0.00929, "AU"),
  9169. default: true
  9170. },
  9171. {
  9172. name: "Universal",
  9173. height: math.unit(20, "gigaparsecs")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(5 + 2 / 12, "feet"),
  9182. weight: math.unit(120, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/katherine/front.svg",
  9186. extra: 2075 / 1969
  9187. }
  9188. },
  9189. dress: {
  9190. height: math.unit(5 + 2 / 12, "feet"),
  9191. weight: math.unit(120, "lbs"),
  9192. name: "Dress",
  9193. image: {
  9194. source: "./media/characters/katherine/dress.svg",
  9195. extra: 2258 / 2064
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Micro",
  9202. height: math.unit(1, "inches"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(5 + 2 / 12, "feet")
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(100, "meters")
  9212. },
  9213. {
  9214. name: "Megamacro",
  9215. height: math.unit(80, "miles")
  9216. },
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(7 + 8 / 12, "feet"),
  9224. weight: math.unit(250, "lbs"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/yevis/front.svg",
  9228. extra: 1938 / 1755
  9229. }
  9230. }
  9231. },
  9232. [
  9233. {
  9234. name: "Mortal",
  9235. height: math.unit(7 + 8 / 12, "feet")
  9236. },
  9237. {
  9238. name: "Battle",
  9239. height: math.unit(25 + 11 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Wrath",
  9243. height: math.unit(1654 + 11 / 12, "feet")
  9244. },
  9245. {
  9246. name: "Planet Destroyer",
  9247. height: math.unit(12000, "miles")
  9248. },
  9249. {
  9250. name: "Galaxy Conqueror",
  9251. height: math.unit(1.45, "zettameters"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Universal War",
  9256. height: math.unit(184, "gigaparsecs")
  9257. },
  9258. {
  9259. name: "Eternity War",
  9260. height: math.unit(1.98e55, "yottaparsecs")
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(5 + 8 / 12, "feet"),
  9269. weight: math.unit(63, "kg"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/xavier/front.svg",
  9273. extra: 944 / 883
  9274. }
  9275. },
  9276. frontStretch: {
  9277. height: math.unit(5 + 8 / 12, "feet"),
  9278. weight: math.unit(63, "kg"),
  9279. name: "Stretching",
  9280. image: {
  9281. source: "./media/characters/xavier/front-stretch.svg",
  9282. extra: 962 / 820
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(5 + 8 / 12, "feet")
  9290. },
  9291. {
  9292. name: "Macro",
  9293. height: math.unit(100, "meters"),
  9294. default: true
  9295. },
  9296. {
  9297. name: "McLargeHuge",
  9298. height: math.unit(10, "miles")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(5 + 5 / 12, "feet"),
  9307. weight: math.unit(150, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/joshii/front.svg",
  9311. extra: 765 / 653,
  9312. bottom: 51 / 816
  9313. }
  9314. },
  9315. foot: {
  9316. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9317. name: "Foot",
  9318. image: {
  9319. source: "./media/characters/joshii/foot.svg"
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Micro",
  9326. height: math.unit(2, "inches"),
  9327. default: true
  9328. },
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(5 + 5 / 12, "feet")
  9332. },
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(785, "feet")
  9336. },
  9337. {
  9338. name: "Megamacro",
  9339. height: math.unit(24.5, "miles")
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(6, "feet"),
  9348. weight: math.unit(150, "lb"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/goddess-elizabeth/front.svg",
  9352. extra: 1800 / 1525,
  9353. bottom: 0.005
  9354. }
  9355. },
  9356. foot: {
  9357. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9358. name: "Foot",
  9359. image: {
  9360. source: "./media/characters/goddess-elizabeth/foot.svg"
  9361. }
  9362. },
  9363. mouth: {
  9364. height: math.unit(6, "feet"),
  9365. name: "Mouth",
  9366. image: {
  9367. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9368. }
  9369. },
  9370. },
  9371. [
  9372. {
  9373. name: "Micro",
  9374. height: math.unit(12, "feet")
  9375. },
  9376. {
  9377. name: "Normal",
  9378. height: math.unit(80, "miles"),
  9379. default: true
  9380. },
  9381. {
  9382. name: "Macro",
  9383. height: math.unit(15000, "parsecs")
  9384. },
  9385. ]
  9386. ))
  9387. characterMakers.push(() => makeCharacter(
  9388. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9389. {
  9390. front: {
  9391. height: math.unit(5 + 9 / 12, "feet"),
  9392. weight: math.unit(144, "lb"),
  9393. name: "Front",
  9394. image: {
  9395. source: "./media/characters/kara/front.svg"
  9396. }
  9397. },
  9398. feet: {
  9399. height: math.unit(6 / 6.765, "feet"),
  9400. name: "Kara's Feet",
  9401. rename: true,
  9402. image: {
  9403. source: "./media/characters/kara/feet.svg"
  9404. }
  9405. },
  9406. },
  9407. [
  9408. {
  9409. name: "Normal",
  9410. height: math.unit(5 + 9 / 12, "feet")
  9411. },
  9412. {
  9413. name: "Macro",
  9414. height: math.unit(174, "feet"),
  9415. default: true
  9416. },
  9417. ]
  9418. ))
  9419. characterMakers.push(() => makeCharacter(
  9420. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9421. {
  9422. front: {
  9423. height: math.unit(18, "feet"),
  9424. weight: math.unit(4050, "lb"),
  9425. name: "Front",
  9426. image: {
  9427. source: "./media/characters/tyrone/front.svg",
  9428. extra: 2405 / 2270,
  9429. bottom: 182 / 2587
  9430. }
  9431. },
  9432. },
  9433. [
  9434. {
  9435. name: "Normal",
  9436. height: math.unit(18, "feet"),
  9437. default: true
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(300, "feet")
  9442. },
  9443. {
  9444. name: "Megamacro",
  9445. height: math.unit(15, "km")
  9446. },
  9447. {
  9448. name: "Gigamacro",
  9449. height: math.unit(500, "km")
  9450. },
  9451. {
  9452. name: "Teramacro",
  9453. height: math.unit(0.5, "gigameters")
  9454. },
  9455. {
  9456. name: "Omnimacro",
  9457. height: math.unit(1e252, "yottauniverse")
  9458. },
  9459. ]
  9460. ))
  9461. characterMakers.push(() => makeCharacter(
  9462. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9463. {
  9464. front: {
  9465. height: math.unit(7 + 8 / 12, "feet"),
  9466. weight: math.unit(120, "lb"),
  9467. name: "Front",
  9468. image: {
  9469. source: "./media/characters/danny/front.svg",
  9470. extra: 1490 / 1350
  9471. }
  9472. },
  9473. back: {
  9474. height: math.unit(7 + 8 / 12, "feet"),
  9475. weight: math.unit(120, "lb"),
  9476. name: "Back",
  9477. image: {
  9478. source: "./media/characters/danny/back.svg",
  9479. extra: 1490 / 1350
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Normal",
  9486. height: math.unit(7 + 8 / 12, "feet"),
  9487. default: true
  9488. },
  9489. ]
  9490. ))
  9491. characterMakers.push(() => makeCharacter(
  9492. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9493. {
  9494. front: {
  9495. height: math.unit(3.5, "inches"),
  9496. weight: math.unit(19, "grams"),
  9497. name: "Front",
  9498. image: {
  9499. source: "./media/characters/mallow/front.svg",
  9500. extra: 471 / 431
  9501. }
  9502. },
  9503. back: {
  9504. height: math.unit(3.5, "inches"),
  9505. weight: math.unit(19, "grams"),
  9506. name: "Back",
  9507. image: {
  9508. source: "./media/characters/mallow/back.svg",
  9509. extra: 471 / 431
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(3.5, "inches"),
  9517. default: true
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(9, "feet"),
  9526. weight: math.unit(230, "kg"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/starry-aqua/front.svg"
  9530. }
  9531. },
  9532. back: {
  9533. height: math.unit(9, "feet"),
  9534. weight: math.unit(230, "kg"),
  9535. name: "Back",
  9536. image: {
  9537. source: "./media/characters/starry-aqua/back.svg"
  9538. }
  9539. },
  9540. hand: {
  9541. height: math.unit(9 * 0.1168, "feet"),
  9542. name: "Hand",
  9543. image: {
  9544. source: "./media/characters/starry-aqua/hand.svg"
  9545. }
  9546. },
  9547. foot: {
  9548. height: math.unit(9 * 0.18, "feet"),
  9549. name: "Foot",
  9550. image: {
  9551. source: "./media/characters/starry-aqua/foot.svg"
  9552. }
  9553. }
  9554. },
  9555. [
  9556. {
  9557. name: "Micro",
  9558. height: math.unit(3, "inches")
  9559. },
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(9, "feet")
  9563. },
  9564. {
  9565. name: "Macro",
  9566. height: math.unit(300, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Megamacro",
  9571. height: math.unit(3200, "feet")
  9572. }
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(15, "feet"),
  9580. weight: math.unit(5026, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/luka-towers/front.svg",
  9584. extra: 1269/1133,
  9585. bottom: 51/1320
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(15, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Minimacro",
  9597. height: math.unit(25, "feet")
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(320, "feet")
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(35000, "feet")
  9606. },
  9607. {
  9608. name: "Gigamacro",
  9609. height: math.unit(4000, "miles")
  9610. },
  9611. {
  9612. name: "Teramacro",
  9613. height: math.unit(15000, "miles")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(6, "feet"),
  9622. weight: math.unit(150, "lb"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/natalie-nightring/front.svg",
  9626. extra: 1,
  9627. bottom: 0.06
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Uh Oh",
  9634. height: math.unit(0.1, "mm")
  9635. },
  9636. {
  9637. name: "Small",
  9638. height: math.unit(3, "inches")
  9639. },
  9640. {
  9641. name: "Human Scale",
  9642. height: math.unit(6, "feet")
  9643. },
  9644. {
  9645. name: "Librarian",
  9646. height: math.unit(50, "feet"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Immense",
  9651. height: math.unit(200, "miles")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(180, "lbs"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/danni-rosie/front.svg",
  9664. extra: 1260 / 1128,
  9665. bottom: 0.022
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Micro",
  9672. height: math.unit(2, "inches"),
  9673. default: true
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(5 + 9 / 12, "feet"),
  9682. weight: math.unit(220, "lb"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/samantha-kruse/front.svg",
  9686. extra: (985 / 935),
  9687. bottom: 0.03
  9688. }
  9689. },
  9690. frontUndressed: {
  9691. height: math.unit(5 + 9 / 12, "feet"),
  9692. weight: math.unit(220, "lb"),
  9693. name: "Front (Undressed)",
  9694. image: {
  9695. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9696. extra: (973 / 923),
  9697. bottom: 0.025
  9698. }
  9699. },
  9700. fat: {
  9701. height: math.unit(5 + 9 / 12, "feet"),
  9702. weight: math.unit(900, "lb"),
  9703. name: "Front (Fat)",
  9704. image: {
  9705. source: "./media/characters/samantha-kruse/fat.svg",
  9706. extra: 2688 / 2561
  9707. }
  9708. },
  9709. },
  9710. [
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(5 + 9 / 12, "feet"),
  9714. default: true
  9715. }
  9716. ]
  9717. ))
  9718. characterMakers.push(() => makeCharacter(
  9719. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9720. {
  9721. back: {
  9722. height: math.unit(5 + 4 / 12, "feet"),
  9723. weight: math.unit(4963, "lb"),
  9724. name: "Back",
  9725. image: {
  9726. source: "./media/characters/amelia-rosie/back.svg",
  9727. extra: 1113 / 963,
  9728. bottom: 0.01
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Level 0",
  9735. height: math.unit(5 + 4 / 12, "feet")
  9736. },
  9737. {
  9738. name: "Level 1",
  9739. height: math.unit(164597, "feet"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Level 2",
  9744. height: math.unit(956243, "miles")
  9745. },
  9746. {
  9747. name: "Level 3",
  9748. height: math.unit(29421709423, "miles")
  9749. },
  9750. {
  9751. name: "Level 4",
  9752. height: math.unit(154, "lightyears")
  9753. },
  9754. {
  9755. name: "Level 5",
  9756. height: math.unit(4738272, "lightyears")
  9757. },
  9758. {
  9759. name: "Level 6",
  9760. height: math.unit(145787152896, "lightyears")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9766. {
  9767. front: {
  9768. height: math.unit(5 + 11 / 12, "feet"),
  9769. weight: math.unit(65, "kg"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/rook-kitara/front.svg",
  9773. extra: 1347 / 1274,
  9774. bottom: 0.005
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Totally Unfair",
  9781. height: math.unit(1.8, "mm")
  9782. },
  9783. {
  9784. name: "Lap Rookie",
  9785. height: math.unit(1.4, "feet")
  9786. },
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(5 + 11 / 12, "feet"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "How Did This Happen",
  9794. height: math.unit(80, "miles")
  9795. }
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(7, "feet"),
  9803. weight: math.unit(300, "lb"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/pisces/front.svg",
  9807. extra: 2255 / 2115,
  9808. bottom: 0.03
  9809. }
  9810. },
  9811. back: {
  9812. height: math.unit(7, "feet"),
  9813. weight: math.unit(300, "lb"),
  9814. name: "Back",
  9815. image: {
  9816. source: "./media/characters/pisces/back.svg",
  9817. extra: 2146 / 2055,
  9818. bottom: 0.04
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(7, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Swimming Pool",
  9830. height: math.unit(12.2, "meters")
  9831. },
  9832. {
  9833. name: "Olympic Swimming Pool",
  9834. height: math.unit(56.3, "meters")
  9835. },
  9836. {
  9837. name: "Lake Superior",
  9838. height: math.unit(93900, "meters")
  9839. },
  9840. {
  9841. name: "Mediterranean Sea",
  9842. height: math.unit(644457, "meters")
  9843. },
  9844. {
  9845. name: "World's Oceans",
  9846. height: math.unit(4567491, "meters")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(2.3, "meters"),
  9855. weight: math.unit(120, "kg"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/zelas/front.svg"
  9859. }
  9860. },
  9861. side: {
  9862. height: math.unit(2.3, "meters"),
  9863. weight: math.unit(120, "kg"),
  9864. name: "Side",
  9865. image: {
  9866. source: "./media/characters/zelas/side.svg"
  9867. }
  9868. },
  9869. back: {
  9870. height: math.unit(2.3, "meters"),
  9871. weight: math.unit(120, "kg"),
  9872. name: "Back",
  9873. image: {
  9874. source: "./media/characters/zelas/back.svg"
  9875. }
  9876. },
  9877. foot: {
  9878. height: math.unit(1.116, "feet"),
  9879. name: "Foot",
  9880. image: {
  9881. source: "./media/characters/zelas/foot.svg"
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(2.3, "meters")
  9889. },
  9890. {
  9891. name: "Macro",
  9892. height: math.unit(30, "meters"),
  9893. default: true
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9899. {
  9900. front: {
  9901. height: math.unit(1, "inch"),
  9902. weight: math.unit(0.21, "grams"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/talbot/front.svg",
  9906. extra: 594 / 544
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Micro",
  9913. height: math.unit(1, "inch"),
  9914. default: true
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9920. {
  9921. front: {
  9922. height: math.unit(3 + 3 / 12, "feet"),
  9923. weight: math.unit(51.8, "lb"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/fliss/front.svg",
  9927. extra: 840 / 640
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Teeny Tiny",
  9934. height: math.unit(1, "mm")
  9935. },
  9936. {
  9937. name: "Small",
  9938. height: math.unit(1, "inch"),
  9939. default: true
  9940. },
  9941. {
  9942. name: "Standard Sylveon",
  9943. height: math.unit(3 + 3 / 12, "feet")
  9944. },
  9945. {
  9946. name: "Large Nuisance",
  9947. height: math.unit(33, "feet")
  9948. },
  9949. {
  9950. name: "City Filler",
  9951. height: math.unit(3000, "feet")
  9952. },
  9953. {
  9954. name: "New Horizon",
  9955. height: math.unit(6000, "miles")
  9956. },
  9957. ]
  9958. ))
  9959. characterMakers.push(() => makeCharacter(
  9960. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9961. {
  9962. front: {
  9963. height: math.unit(5, "cm"),
  9964. weight: math.unit(1.94, "g"),
  9965. name: "Front",
  9966. image: {
  9967. source: "./media/characters/fleta/front.svg",
  9968. extra: 835 / 803
  9969. }
  9970. },
  9971. back: {
  9972. height: math.unit(5, "cm"),
  9973. weight: math.unit(1.94, "g"),
  9974. name: "Back",
  9975. image: {
  9976. source: "./media/characters/fleta/back.svg",
  9977. extra: 835 / 803
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Micro",
  9984. height: math.unit(5, "cm"),
  9985. default: true
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(225, "lb"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/dominic/front.svg",
  9998. extra: 1770 / 1620,
  9999. bottom: 0.025
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(225, "lb"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/dominic/back.svg",
  10008. extra: 1745 / 1620,
  10009. bottom: 0.065
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Nano",
  10016. height: math.unit(0.1, "mm")
  10017. },
  10018. {
  10019. name: "Micro-",
  10020. height: math.unit(1, "mm")
  10021. },
  10022. {
  10023. name: "Micro",
  10024. height: math.unit(4, "inches")
  10025. },
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(6 + 4 / 12, "feet"),
  10029. default: true
  10030. },
  10031. {
  10032. name: "Macro",
  10033. height: math.unit(115, "feet")
  10034. },
  10035. {
  10036. name: "Macro+",
  10037. height: math.unit(955, "feet")
  10038. },
  10039. {
  10040. name: "Megamacro",
  10041. height: math.unit(8990, "feet")
  10042. },
  10043. {
  10044. name: "Gigmacro",
  10045. height: math.unit(9310, "miles")
  10046. },
  10047. {
  10048. name: "Teramacro",
  10049. height: math.unit(1567005010, "miles")
  10050. },
  10051. {
  10052. name: "Examacro",
  10053. height: math.unit(1425, "parsecs")
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(400, "feet"),
  10062. weight: math.unit(44444444, "lb"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/major-colonel/front.svg"
  10066. }
  10067. },
  10068. back: {
  10069. height: math.unit(400, "feet"),
  10070. weight: math.unit(44444444, "lb"),
  10071. name: "Back",
  10072. image: {
  10073. source: "./media/characters/major-colonel/back.svg"
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Macro",
  10080. height: math.unit(400, "feet"),
  10081. default: true
  10082. },
  10083. ]
  10084. ))
  10085. characterMakers.push(() => makeCharacter(
  10086. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10087. {
  10088. catFront: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(120, "lb"),
  10091. name: "Front (Cat Side)",
  10092. image: {
  10093. source: "./media/characters/axel-lycan/cat-front.svg",
  10094. extra: 430 / 402,
  10095. bottom: 43 / 472.35
  10096. }
  10097. },
  10098. catBack: {
  10099. height: math.unit(6, "feet"),
  10100. weight: math.unit(120, "lb"),
  10101. name: "Back (Cat Side)",
  10102. image: {
  10103. source: "./media/characters/axel-lycan/cat-back.svg",
  10104. extra: 447 / 419,
  10105. bottom: 23.3 / 469
  10106. }
  10107. },
  10108. wolfFront: {
  10109. height: math.unit(6, "feet"),
  10110. weight: math.unit(120, "lb"),
  10111. name: "Front (Wolf Side)",
  10112. image: {
  10113. source: "./media/characters/axel-lycan/wolf-front.svg",
  10114. extra: 485 / 456,
  10115. bottom: 19 / 504
  10116. }
  10117. },
  10118. wolfBack: {
  10119. height: math.unit(6, "feet"),
  10120. weight: math.unit(120, "lb"),
  10121. name: "Back (Wolf Side)",
  10122. image: {
  10123. source: "./media/characters/axel-lycan/wolf-back.svg",
  10124. extra: 475 / 438,
  10125. bottom: 39.2 / 514
  10126. }
  10127. },
  10128. },
  10129. [
  10130. {
  10131. name: "Macro",
  10132. height: math.unit(1, "km"),
  10133. default: true
  10134. },
  10135. ]
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10139. {
  10140. front: {
  10141. height: math.unit(5 + 9 / 12, "feet"),
  10142. weight: math.unit(175, "lb"),
  10143. name: "Front",
  10144. image: {
  10145. source: "./media/characters/vanrel-hyena/front.svg",
  10146. extra: 1086 / 1010,
  10147. bottom: 0.04
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(5 + 9 / 12, "feet"),
  10155. default: true
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10161. {
  10162. front: {
  10163. height: math.unit(6, "feet"),
  10164. weight: math.unit(103, "lb"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/abbott-absol/front.svg",
  10168. extra: 2010 / 1842
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Megamicro",
  10175. height: math.unit(0.1, "mm")
  10176. },
  10177. {
  10178. name: "Micro",
  10179. height: math.unit(1, "inch")
  10180. },
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(6, "feet"),
  10184. default: true
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(264, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/hector/front.svg",
  10197. extra: 2280 / 2130,
  10198. bottom: 0.07
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(12.25, "foot"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(160, "feet")
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(6, "feet"),
  10219. weight: math.unit(150, "lb"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/sal/front.svg",
  10223. extra: 1846 / 1699,
  10224. bottom: 0.04
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(10, "miles"),
  10232. default: true
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10238. {
  10239. front: {
  10240. height: math.unit(3, "meters"),
  10241. weight: math.unit(450, "kg"),
  10242. name: "front",
  10243. image: {
  10244. source: "./media/characters/ranger/front.svg",
  10245. extra: 2401 / 2243,
  10246. bottom: 0.05
  10247. }
  10248. },
  10249. },
  10250. [
  10251. {
  10252. name: "Normal",
  10253. height: math.unit(3, "meters"),
  10254. default: true
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(14, "feet"),
  10263. weight: math.unit(800, "kg"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/theresa/front.svg",
  10267. extra: 3575 / 3346,
  10268. bottom: 0.03
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Normal",
  10275. height: math.unit(14, "feet"),
  10276. default: true
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10282. {
  10283. front: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(3, "kg"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/ine/front.svg",
  10289. extra: 678 / 539,
  10290. bottom: 0.023
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(2.265, "feet"),
  10298. default: true
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(5, "feet"),
  10307. weight: math.unit(30, "kg"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/vial/front.svg",
  10311. extra: 1365 / 1277,
  10312. bottom: 0.04
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(5, "feet"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10326. {
  10327. side: {
  10328. height: math.unit(3.4, "meters"),
  10329. weight: math.unit(1000, "lb"),
  10330. name: "Side",
  10331. image: {
  10332. source: "./media/characters/rovoska/side.svg",
  10333. extra: 4403 / 1515
  10334. }
  10335. },
  10336. },
  10337. [
  10338. {
  10339. name: "Normal",
  10340. height: math.unit(3.4, "meters"),
  10341. default: true
  10342. },
  10343. ]
  10344. ))
  10345. characterMakers.push(() => makeCharacter(
  10346. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10347. {
  10348. front: {
  10349. height: math.unit(8, "feet"),
  10350. weight: math.unit(315, "lb"),
  10351. name: "Front",
  10352. image: {
  10353. source: "./media/characters/gunner-rotthbauer/front.svg"
  10354. }
  10355. },
  10356. back: {
  10357. height: math.unit(8, "feet"),
  10358. weight: math.unit(315, "lb"),
  10359. name: "Back",
  10360. image: {
  10361. source: "./media/characters/gunner-rotthbauer/back.svg"
  10362. }
  10363. },
  10364. },
  10365. [
  10366. {
  10367. name: "Micro",
  10368. height: math.unit(3.5, "inches")
  10369. },
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(8, "feet"),
  10373. default: true
  10374. },
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(250, "feet")
  10378. },
  10379. {
  10380. name: "Megamacro",
  10381. height: math.unit(1, "AU")
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10387. {
  10388. front: {
  10389. height: math.unit(5 + 5 / 12, "feet"),
  10390. weight: math.unit(140, "lb"),
  10391. name: "Front",
  10392. image: {
  10393. source: "./media/characters/allatia/front.svg",
  10394. extra: 1227 / 1180,
  10395. bottom: 0.027
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Normal",
  10402. height: math.unit(5 + 5 / 12, "feet")
  10403. },
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(250, "feet"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Megamacro",
  10411. height: math.unit(8, "miles")
  10412. }
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10417. {
  10418. front: {
  10419. height: math.unit(6, "feet"),
  10420. weight: math.unit(120, "lb"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/tene/front.svg",
  10424. extra: 814/750,
  10425. bottom: 36/850
  10426. }
  10427. },
  10428. stomping: {
  10429. height: math.unit(2.025, "meters"),
  10430. weight: math.unit(120, "lb"),
  10431. name: "Stomping",
  10432. image: {
  10433. source: "./media/characters/tene/stomping.svg",
  10434. extra: 885/821,
  10435. bottom: 15/900
  10436. }
  10437. },
  10438. sitting: {
  10439. height: math.unit(1, "meter"),
  10440. weight: math.unit(120, "lb"),
  10441. name: "Sitting",
  10442. image: {
  10443. source: "./media/characters/tene/sitting.svg",
  10444. extra: 396/366,
  10445. bottom: 79/475
  10446. }
  10447. },
  10448. smiling: {
  10449. height: math.unit(1.2, "feet"),
  10450. name: "Smiling",
  10451. image: {
  10452. source: "./media/characters/tene/smiling.svg",
  10453. extra: 1364/1071,
  10454. bottom: 0/1364
  10455. }
  10456. },
  10457. smug: {
  10458. height: math.unit(1.3, "feet"),
  10459. name: "Smug",
  10460. image: {
  10461. source: "./media/characters/tene/smug.svg",
  10462. extra: 1323/1082,
  10463. bottom: 0/1323
  10464. }
  10465. },
  10466. feral: {
  10467. height: math.unit(3.9, "feet"),
  10468. weight: math.unit(250, "lb"),
  10469. name: "Feral",
  10470. image: {
  10471. source: "./media/characters/tene/feral.svg",
  10472. extra: 717 / 458,
  10473. bottom: 0.179
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Normal",
  10480. height: math.unit(6, "feet")
  10481. },
  10482. {
  10483. name: "Macro",
  10484. height: math.unit(300, "feet"),
  10485. default: true
  10486. },
  10487. {
  10488. name: "Megamacro",
  10489. height: math.unit(5, "miles")
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10495. {
  10496. side: {
  10497. height: math.unit(6, "feet"),
  10498. name: "Side",
  10499. image: {
  10500. source: "./media/characters/evander/side.svg",
  10501. extra: 877 / 477
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Normal",
  10508. height: math.unit(0.83, "meters"),
  10509. default: true
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10515. {
  10516. front: {
  10517. height: math.unit(12, "feet"),
  10518. weight: math.unit(1000, "lb"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10522. extra: 1762 / 1611
  10523. }
  10524. },
  10525. back: {
  10526. height: math.unit(12, "feet"),
  10527. weight: math.unit(1000, "lb"),
  10528. name: "Back",
  10529. image: {
  10530. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10531. extra: 1762 / 1611
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(12, "feet"),
  10539. default: true
  10540. },
  10541. {
  10542. name: "Kaiju",
  10543. height: math.unit(150, "feet")
  10544. },
  10545. ]
  10546. ))
  10547. characterMakers.push(() => makeCharacter(
  10548. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10549. {
  10550. front: {
  10551. height: math.unit(6, "feet"),
  10552. weight: math.unit(150, "lb"),
  10553. name: "Front",
  10554. image: {
  10555. source: "./media/characters/zero-alurus/front.svg"
  10556. }
  10557. },
  10558. back: {
  10559. height: math.unit(6, "feet"),
  10560. weight: math.unit(150, "lb"),
  10561. name: "Back",
  10562. image: {
  10563. source: "./media/characters/zero-alurus/back.svg"
  10564. }
  10565. },
  10566. },
  10567. [
  10568. {
  10569. name: "Normal",
  10570. height: math.unit(5 + 10 / 12, "feet")
  10571. },
  10572. {
  10573. name: "Macro",
  10574. height: math.unit(60, "feet"),
  10575. default: true
  10576. },
  10577. {
  10578. name: "Macro+",
  10579. height: math.unit(450, "feet")
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10585. {
  10586. front: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(200, "lb"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/mega-shi/front.svg",
  10592. extra: 1279 / 1250,
  10593. bottom: 0.02
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(200, "lb"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/mega-shi/back.svg",
  10602. extra: 1279 / 1250,
  10603. bottom: 0.02
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Micro",
  10610. height: math.unit(16 + 6 / 12, "feet")
  10611. },
  10612. {
  10613. name: "Third Dimension",
  10614. height: math.unit(40, "meters")
  10615. },
  10616. {
  10617. name: "Normal",
  10618. height: math.unit(660, "feet"),
  10619. default: true
  10620. },
  10621. {
  10622. name: "Megamacro",
  10623. height: math.unit(10, "miles")
  10624. },
  10625. {
  10626. name: "Planetary Launch",
  10627. height: math.unit(500, "miles")
  10628. },
  10629. {
  10630. name: "Interstellar",
  10631. height: math.unit(1e9, "miles")
  10632. },
  10633. {
  10634. name: "Leaving the Universe",
  10635. height: math.unit(1, "gigaparsec")
  10636. },
  10637. {
  10638. name: "Travelling Universes",
  10639. height: math.unit(30e15, "parsecs")
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10645. {
  10646. front: {
  10647. height: math.unit(5 + 4/12, "feet"),
  10648. weight: math.unit(120, "lb"),
  10649. name: "Front",
  10650. image: {
  10651. source: "./media/characters/odyssey/front.svg",
  10652. extra: 1747/1571,
  10653. bottom: 47/1794
  10654. }
  10655. },
  10656. side: {
  10657. height: math.unit(5.1, "feet"),
  10658. weight: math.unit(120, "lb"),
  10659. name: "Side",
  10660. image: {
  10661. source: "./media/characters/odyssey/side.svg",
  10662. extra: 1847/1619,
  10663. bottom: 47/1894
  10664. }
  10665. },
  10666. lounging: {
  10667. height: math.unit(1.464, "feet"),
  10668. weight: math.unit(120, "lb"),
  10669. name: "Lounging",
  10670. image: {
  10671. source: "./media/characters/odyssey/lounging.svg",
  10672. extra: 1235/837,
  10673. bottom: 551/1786
  10674. }
  10675. },
  10676. },
  10677. [
  10678. {
  10679. name: "Normal",
  10680. height: math.unit(5 + 4 / 12, "feet")
  10681. },
  10682. {
  10683. name: "Macro",
  10684. height: math.unit(1, "km")
  10685. },
  10686. {
  10687. name: "Megamacro",
  10688. height: math.unit(3000, "km")
  10689. },
  10690. {
  10691. name: "Gigamacro",
  10692. height: math.unit(1, "AU"),
  10693. default: true
  10694. },
  10695. {
  10696. name: "Omniversal",
  10697. height: math.unit(100e14, "lightyears")
  10698. },
  10699. ]
  10700. ))
  10701. characterMakers.push(() => makeCharacter(
  10702. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10703. {
  10704. front: {
  10705. height: math.unit(6, "feet"),
  10706. weight: math.unit(300, "lb"),
  10707. name: "Front",
  10708. image: {
  10709. source: "./media/characters/mekuto/front.svg",
  10710. extra: 921 / 832,
  10711. bottom: 0.03
  10712. }
  10713. },
  10714. hand: {
  10715. height: math.unit(6 / 10.24, "feet"),
  10716. name: "Hand",
  10717. image: {
  10718. source: "./media/characters/mekuto/hand.svg"
  10719. }
  10720. },
  10721. foot: {
  10722. height: math.unit(6 / 5.05, "feet"),
  10723. name: "Foot",
  10724. image: {
  10725. source: "./media/characters/mekuto/foot.svg"
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Minimicro",
  10732. height: math.unit(0.2, "inches")
  10733. },
  10734. {
  10735. name: "Micro",
  10736. height: math.unit(1.5, "inches")
  10737. },
  10738. {
  10739. name: "Normal",
  10740. height: math.unit(5 + 11 / 12, "feet"),
  10741. default: true
  10742. },
  10743. {
  10744. name: "Minimacro",
  10745. height: math.unit(17 + 9 / 12, "feet")
  10746. },
  10747. {
  10748. name: "Macro",
  10749. height: math.unit(177.5, "feet")
  10750. },
  10751. {
  10752. name: "Megamacro",
  10753. height: math.unit(152, "miles")
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6.5, "inches"),
  10762. weight: math.unit(13, "oz"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/dafydd-tomos/front.svg",
  10766. extra: 2990 / 2603,
  10767. bottom: 0.03
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Micro",
  10774. height: math.unit(6.5, "inches"),
  10775. default: true
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(150, "lb"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/splinter/front.svg",
  10788. extra: 2990 / 2882,
  10789. bottom: 0.04
  10790. }
  10791. },
  10792. back: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(150, "lb"),
  10795. name: "Back",
  10796. image: {
  10797. source: "./media/characters/splinter/back.svg",
  10798. extra: 2990 / 2882,
  10799. bottom: 0.04
  10800. }
  10801. },
  10802. },
  10803. [
  10804. {
  10805. name: "Normal",
  10806. height: math.unit(6, "feet")
  10807. },
  10808. {
  10809. name: "Macro",
  10810. height: math.unit(230, "meters"),
  10811. default: true
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(4 + 10 / 12, "feet"),
  10820. weight: math.unit(480, "lb"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/snow-gabumon/front.svg",
  10824. extra: 1140 / 963,
  10825. bottom: 0.058
  10826. }
  10827. },
  10828. back: {
  10829. height: math.unit(4 + 10 / 12, "feet"),
  10830. weight: math.unit(480, "lb"),
  10831. name: "Back",
  10832. image: {
  10833. source: "./media/characters/snow-gabumon/back.svg",
  10834. extra: 1115 / 962,
  10835. bottom: 0.041
  10836. }
  10837. },
  10838. frontUndresed: {
  10839. height: math.unit(4 + 10 / 12, "feet"),
  10840. weight: math.unit(480, "lb"),
  10841. name: "Front (Undressed)",
  10842. image: {
  10843. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10844. extra: 1061 / 960,
  10845. bottom: 0.045
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Micro",
  10852. height: math.unit(1, "inch")
  10853. },
  10854. {
  10855. name: "Normal",
  10856. height: math.unit(4 + 10 / 12, "feet"),
  10857. default: true
  10858. },
  10859. {
  10860. name: "Macro",
  10861. height: math.unit(200, "feet")
  10862. },
  10863. {
  10864. name: "Megamacro",
  10865. height: math.unit(120, "miles")
  10866. },
  10867. {
  10868. name: "Gigamacro",
  10869. height: math.unit(9800, "miles")
  10870. },
  10871. ]
  10872. ))
  10873. characterMakers.push(() => makeCharacter(
  10874. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10875. {
  10876. front: {
  10877. height: math.unit(1.7, "meters"),
  10878. weight: math.unit(140, "lb"),
  10879. name: "Front",
  10880. image: {
  10881. source: "./media/characters/moody/front.svg",
  10882. extra: 3226 / 3007,
  10883. bottom: 0.087
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(1, "mm")
  10891. },
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(1.7, "meters"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(80, "meters")
  10900. },
  10901. {
  10902. name: "Macro+",
  10903. height: math.unit(500, "meters")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(6, "feet"),
  10912. weight: math.unit(150, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/zyas/front.svg",
  10916. extra: 1180 / 1120,
  10917. bottom: 0.045
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(10, "feet"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Macro",
  10929. height: math.unit(500, "feet")
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(5, "miles")
  10934. },
  10935. {
  10936. name: "Teramacro",
  10937. height: math.unit(150000, "miles")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(150, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/cuon/front.svg",
  10950. extra: 1390 / 1320,
  10951. bottom: 0.008
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Micro",
  10958. height: math.unit(3, "inches")
  10959. },
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(18 + 9 / 12, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(360, "feet")
  10968. },
  10969. {
  10970. name: "Megamacro",
  10971. height: math.unit(360, "miles")
  10972. },
  10973. ]
  10974. ))
  10975. characterMakers.push(() => makeCharacter(
  10976. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10977. {
  10978. front: {
  10979. height: math.unit(2.4, "meters"),
  10980. weight: math.unit(70, "kg"),
  10981. name: "Front",
  10982. image: {
  10983. source: "./media/characters/nyanuxk/front.svg",
  10984. extra: 1172 / 1084,
  10985. bottom: 0.065
  10986. }
  10987. },
  10988. side: {
  10989. height: math.unit(2.4, "meters"),
  10990. weight: math.unit(70, "kg"),
  10991. name: "Side",
  10992. image: {
  10993. source: "./media/characters/nyanuxk/side.svg",
  10994. extra: 1190 / 1132,
  10995. bottom: 0.007
  10996. }
  10997. },
  10998. back: {
  10999. height: math.unit(2.4, "meters"),
  11000. weight: math.unit(70, "kg"),
  11001. name: "Back",
  11002. image: {
  11003. source: "./media/characters/nyanuxk/back.svg",
  11004. extra: 1200 / 1141,
  11005. bottom: 0.015
  11006. }
  11007. },
  11008. foot: {
  11009. height: math.unit(0.52, "meters"),
  11010. name: "Foot",
  11011. image: {
  11012. source: "./media/characters/nyanuxk/foot.svg"
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Micro",
  11019. height: math.unit(2, "cm")
  11020. },
  11021. {
  11022. name: "Normal",
  11023. height: math.unit(2.4, "meters"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Smaller Macro",
  11028. height: math.unit(120, "meters")
  11029. },
  11030. {
  11031. name: "Bigger Macro",
  11032. height: math.unit(1.2, "km")
  11033. },
  11034. {
  11035. name: "Megamacro",
  11036. height: math.unit(15, "kilometers")
  11037. },
  11038. {
  11039. name: "Gigamacro",
  11040. height: math.unit(2000, "km")
  11041. },
  11042. {
  11043. name: "Teramacro",
  11044. height: math.unit(500000, "km")
  11045. },
  11046. ]
  11047. ))
  11048. characterMakers.push(() => makeCharacter(
  11049. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11050. {
  11051. side: {
  11052. height: math.unit(6, "feet"),
  11053. name: "Side",
  11054. image: {
  11055. source: "./media/characters/ailbhe/side.svg",
  11056. extra: 757 / 464,
  11057. bottom: 0.041
  11058. }
  11059. },
  11060. },
  11061. [
  11062. {
  11063. name: "Normal",
  11064. height: math.unit(1.07, "meters"),
  11065. default: true
  11066. },
  11067. ]
  11068. ))
  11069. characterMakers.push(() => makeCharacter(
  11070. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11071. {
  11072. front: {
  11073. height: math.unit(6, "feet"),
  11074. weight: math.unit(120, "kg"),
  11075. name: "Front",
  11076. image: {
  11077. source: "./media/characters/zevulfius/front.svg",
  11078. extra: 965 / 903
  11079. }
  11080. },
  11081. side: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(120, "kg"),
  11084. name: "Side",
  11085. image: {
  11086. source: "./media/characters/zevulfius/side.svg",
  11087. extra: 939 / 900
  11088. }
  11089. },
  11090. back: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(120, "kg"),
  11093. name: "Back",
  11094. image: {
  11095. source: "./media/characters/zevulfius/back.svg",
  11096. extra: 918 / 854,
  11097. bottom: 0.005
  11098. }
  11099. },
  11100. foot: {
  11101. height: math.unit(6 / 3.72, "feet"),
  11102. name: "Foot",
  11103. image: {
  11104. source: "./media/characters/zevulfius/foot.svg"
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Macro",
  11111. height: math.unit(750, "meters")
  11112. },
  11113. {
  11114. name: "Megamacro",
  11115. height: math.unit(20, "km"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Gigamacro",
  11120. height: math.unit(2000, "km")
  11121. },
  11122. {
  11123. name: "Teramacro",
  11124. height: math.unit(250000, "km")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(100, "feet"),
  11133. weight: math.unit(350, "kg"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/rikes/front.svg",
  11137. extra: 1565 / 1483,
  11138. bottom: 0.017
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Macro",
  11145. height: math.unit(100, "feet"),
  11146. default: true
  11147. },
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11152. {
  11153. front: {
  11154. height: math.unit(8, "feet"),
  11155. weight: math.unit(356, "lb"),
  11156. name: "Front",
  11157. image: {
  11158. source: "./media/characters/adam-silver-mane/front.svg",
  11159. extra: 1036/937,
  11160. bottom: 63/1099
  11161. }
  11162. },
  11163. side: {
  11164. height: math.unit(8, "feet"),
  11165. weight: math.unit(356, "lb"),
  11166. name: "Side",
  11167. image: {
  11168. source: "./media/characters/adam-silver-mane/side.svg",
  11169. extra: 997/901,
  11170. bottom: 59/1056
  11171. }
  11172. },
  11173. frontNsfw: {
  11174. height: math.unit(8, "feet"),
  11175. weight: math.unit(356, "lb"),
  11176. name: "Front (NSFW)",
  11177. image: {
  11178. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11179. extra: 1036/937,
  11180. bottom: 63/1099
  11181. }
  11182. },
  11183. sideNsfw: {
  11184. height: math.unit(8, "feet"),
  11185. weight: math.unit(356, "lb"),
  11186. name: "Side (NSFW)",
  11187. image: {
  11188. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11189. extra: 997/901,
  11190. bottom: 59/1056
  11191. }
  11192. },
  11193. dick: {
  11194. height: math.unit(2.1, "feet"),
  11195. name: "Dick",
  11196. image: {
  11197. source: "./media/characters/adam-silver-mane/dick.svg"
  11198. }
  11199. },
  11200. taur: {
  11201. height: math.unit(16, "feet"),
  11202. weight: math.unit(1500, "kg"),
  11203. name: "Taur",
  11204. image: {
  11205. source: "./media/characters/adam-silver-mane/taur.svg",
  11206. extra: 1713 / 1571,
  11207. bottom: 0.01
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Normal",
  11214. height: math.unit(8, "feet")
  11215. },
  11216. {
  11217. name: "Minimacro",
  11218. height: math.unit(80, "feet")
  11219. },
  11220. {
  11221. name: "MDA",
  11222. height: math.unit(80, "meters")
  11223. },
  11224. {
  11225. name: "Macro",
  11226. height: math.unit(800, "feet"),
  11227. default: true
  11228. },
  11229. {
  11230. name: "Megamacro",
  11231. height: math.unit(8000, "feet")
  11232. },
  11233. {
  11234. name: "Gigamacro",
  11235. height: math.unit(800, "miles")
  11236. },
  11237. {
  11238. name: "Teramacro",
  11239. height: math.unit(80000, "miles")
  11240. },
  11241. {
  11242. name: "Celestial",
  11243. height: math.unit(8e6, "miles")
  11244. },
  11245. {
  11246. name: "Star Dragon",
  11247. height: math.unit(800000, "parsecs")
  11248. },
  11249. {
  11250. name: "Godly",
  11251. height: math.unit(800, "teraparsecs")
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(150, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/ky'owin/front.svg",
  11264. extra: 3888 / 3068,
  11265. bottom: 0.015
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(6 + 8 / 12, "feet")
  11273. },
  11274. {
  11275. name: "Large",
  11276. height: math.unit(68, "feet")
  11277. },
  11278. {
  11279. name: "Macro",
  11280. height: math.unit(132, "feet")
  11281. },
  11282. {
  11283. name: "Macro+",
  11284. height: math.unit(340, "feet")
  11285. },
  11286. {
  11287. name: "Macro++",
  11288. height: math.unit(680, "feet"),
  11289. default: true
  11290. },
  11291. {
  11292. name: "Megamacro",
  11293. height: math.unit(1, "mile")
  11294. },
  11295. {
  11296. name: "Megamacro+",
  11297. height: math.unit(10, "miles")
  11298. },
  11299. ]
  11300. ))
  11301. characterMakers.push(() => makeCharacter(
  11302. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11303. {
  11304. front: {
  11305. height: math.unit(4, "feet"),
  11306. weight: math.unit(50, "lb"),
  11307. name: "Front",
  11308. image: {
  11309. source: "./media/characters/mal/front.svg",
  11310. extra: 785 / 724,
  11311. bottom: 0.07
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Micro",
  11318. height: math.unit(4, "inches")
  11319. },
  11320. {
  11321. name: "Normal",
  11322. height: math.unit(4, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(200, "feet")
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11333. {
  11334. front: {
  11335. height: math.unit(6, "feet"),
  11336. weight: math.unit(150, "lb"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/jordan-deware/front.svg",
  11340. extra: 1191 / 1012
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Nano",
  11347. height: math.unit(0.01, "mm")
  11348. },
  11349. {
  11350. name: "Minimicro",
  11351. height: math.unit(1, "mm")
  11352. },
  11353. {
  11354. name: "Micro",
  11355. height: math.unit(0.5, "inches")
  11356. },
  11357. {
  11358. name: "Normal",
  11359. height: math.unit(4, "feet"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Minimacro",
  11364. height: math.unit(40, "meters")
  11365. },
  11366. {
  11367. name: "Small Macro",
  11368. height: math.unit(400, "meters")
  11369. },
  11370. {
  11371. name: "Macro",
  11372. height: math.unit(4, "miles")
  11373. },
  11374. {
  11375. name: "Megamacro",
  11376. height: math.unit(40, "miles")
  11377. },
  11378. {
  11379. name: "Megamacro+",
  11380. height: math.unit(400, "miles")
  11381. },
  11382. {
  11383. name: "Gigamacro",
  11384. height: math.unit(400000, "miles")
  11385. },
  11386. ]
  11387. ))
  11388. characterMakers.push(() => makeCharacter(
  11389. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11390. {
  11391. side: {
  11392. height: math.unit(6, "feet"),
  11393. weight: math.unit(150, "lb"),
  11394. name: "Side",
  11395. image: {
  11396. source: "./media/characters/kimiko/side.svg",
  11397. extra: 600 / 358
  11398. }
  11399. },
  11400. },
  11401. [
  11402. {
  11403. name: "Normal",
  11404. height: math.unit(15, "feet"),
  11405. default: true
  11406. },
  11407. {
  11408. name: "Macro",
  11409. height: math.unit(220, "feet")
  11410. },
  11411. {
  11412. name: "Macro+",
  11413. height: math.unit(1450, "feet")
  11414. },
  11415. {
  11416. name: "Megamacro",
  11417. height: math.unit(11500, "feet")
  11418. },
  11419. {
  11420. name: "Gigamacro",
  11421. height: math.unit(9500, "miles")
  11422. },
  11423. {
  11424. name: "Teramacro",
  11425. height: math.unit(2208005005, "miles")
  11426. },
  11427. {
  11428. name: "Examacro",
  11429. height: math.unit(2750, "parsecs")
  11430. },
  11431. {
  11432. name: "Zettamacro",
  11433. height: math.unit(101500, "parsecs")
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11439. {
  11440. front: {
  11441. height: math.unit(6, "feet"),
  11442. weight: math.unit(70, "kg"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/andrew-sleepy/front.svg"
  11446. }
  11447. },
  11448. side: {
  11449. height: math.unit(6, "feet"),
  11450. weight: math.unit(70, "kg"),
  11451. name: "Side",
  11452. image: {
  11453. source: "./media/characters/andrew-sleepy/side.svg"
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Micro",
  11460. height: math.unit(1, "mm"),
  11461. default: true
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11467. {
  11468. front: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/judio/front.svg",
  11474. extra: 1258 / 1110
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(5 + 6 / 12, "feet")
  11482. },
  11483. {
  11484. name: "Macro",
  11485. height: math.unit(1000, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Megamacro",
  11490. height: math.unit(10, "miles")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11496. {
  11497. frontDressed: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(68, "kg"),
  11500. name: "Front (Dressed)",
  11501. image: {
  11502. source: "./media/characters/nomaxice/front-dressed.svg",
  11503. extra: 1137/824,
  11504. bottom: 74/1211
  11505. }
  11506. },
  11507. frontShorts: {
  11508. height: math.unit(6, "feet"),
  11509. weight: math.unit(68, "kg"),
  11510. name: "Front (Shorts)",
  11511. image: {
  11512. source: "./media/characters/nomaxice/front-shorts.svg",
  11513. extra: 1137/824,
  11514. bottom: 74/1211
  11515. }
  11516. },
  11517. back: {
  11518. height: math.unit(6, "feet"),
  11519. weight: math.unit(68, "kg"),
  11520. name: "Back",
  11521. image: {
  11522. source: "./media/characters/nomaxice/back.svg",
  11523. extra: 822/786,
  11524. bottom: 39/861
  11525. }
  11526. },
  11527. hand: {
  11528. height: math.unit(0.565, "feet"),
  11529. name: "Hand",
  11530. image: {
  11531. source: "./media/characters/nomaxice/hand.svg"
  11532. }
  11533. },
  11534. foot: {
  11535. height: math.unit(1, "feet"),
  11536. name: "Foot",
  11537. image: {
  11538. source: "./media/characters/nomaxice/foot.svg"
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Micro",
  11545. height: math.unit(8, "cm")
  11546. },
  11547. {
  11548. name: "Norm",
  11549. height: math.unit(1.82, "m")
  11550. },
  11551. {
  11552. name: "Norm+",
  11553. height: math.unit(8.8, "feet"),
  11554. default: true
  11555. },
  11556. {
  11557. name: "Big",
  11558. height: math.unit(8, "meters")
  11559. },
  11560. {
  11561. name: "Macro",
  11562. height: math.unit(18, "meters")
  11563. },
  11564. {
  11565. name: "Macro+",
  11566. height: math.unit(88, "meters")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(12, "feet"),
  11575. weight: math.unit(1.5, "tons"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/dydros/front.svg",
  11579. extra: 863 / 800,
  11580. bottom: 0.015
  11581. }
  11582. },
  11583. back: {
  11584. height: math.unit(12, "feet"),
  11585. weight: math.unit(1.5, "tons"),
  11586. name: "Back",
  11587. image: {
  11588. source: "./media/characters/dydros/back.svg",
  11589. extra: 900 / 843,
  11590. bottom: 0.005
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(12, "feet"),
  11598. default: true
  11599. },
  11600. ]
  11601. ))
  11602. characterMakers.push(() => makeCharacter(
  11603. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11604. {
  11605. front: {
  11606. height: math.unit(6, "feet"),
  11607. weight: math.unit(100, "kg"),
  11608. name: "Front",
  11609. image: {
  11610. source: "./media/characters/riggi/front.svg",
  11611. extra: 5787 / 5303
  11612. }
  11613. },
  11614. hyper: {
  11615. height: math.unit(6 * 5 / 3, "feet"),
  11616. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11617. name: "Hyper",
  11618. image: {
  11619. source: "./media/characters/riggi/hyper.svg",
  11620. extra: 3595 / 3485
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Small Macro",
  11627. height: math.unit(50, "feet")
  11628. },
  11629. {
  11630. name: "Default",
  11631. height: math.unit(200, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Loom",
  11636. height: math.unit(10000, "feet")
  11637. },
  11638. {
  11639. name: "Cruising Altitude",
  11640. height: math.unit(30000, "feet")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(100, "miles")
  11645. },
  11646. {
  11647. name: "Continent Sized",
  11648. height: math.unit(2800, "miles")
  11649. },
  11650. {
  11651. name: "Earth Sized",
  11652. height: math.unit(8000, "miles")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(250, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/alexi/front.svg",
  11665. extra: 3483 / 3291,
  11666. bottom: 0.04
  11667. }
  11668. },
  11669. back: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(250, "lb"),
  11672. name: "Back",
  11673. image: {
  11674. source: "./media/characters/alexi/back.svg",
  11675. extra: 3533 / 3356,
  11676. bottom: 0.021
  11677. }
  11678. },
  11679. frontTransforming: {
  11680. height: math.unit(8.58, "feet"),
  11681. weight: math.unit(1300, "lb"),
  11682. name: "Transforming",
  11683. image: {
  11684. source: "./media/characters/alexi/front-transforming.svg",
  11685. extra: 437 / 409,
  11686. bottom: 19 / 458.66
  11687. }
  11688. },
  11689. frontTransformed: {
  11690. height: math.unit(12.5, "feet"),
  11691. weight: math.unit(4000, "lb"),
  11692. name: "Transformed",
  11693. image: {
  11694. source: "./media/characters/alexi/front-transformed.svg",
  11695. extra: 639 / 614,
  11696. bottom: 30.55 / 671
  11697. }
  11698. },
  11699. },
  11700. [
  11701. {
  11702. name: "Normal",
  11703. height: math.unit(14, "feet"),
  11704. default: true
  11705. },
  11706. {
  11707. name: "Minimacro",
  11708. height: math.unit(30, "meters")
  11709. },
  11710. {
  11711. name: "Macro",
  11712. height: math.unit(500, "meters")
  11713. },
  11714. {
  11715. name: "Megamacro",
  11716. height: math.unit(9000, "km")
  11717. },
  11718. {
  11719. name: "Teramacro",
  11720. height: math.unit(384000, "km")
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(6, "feet"),
  11729. weight: math.unit(150, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/kayroo/front.svg",
  11733. extra: 1153 / 1038,
  11734. bottom: 0.06
  11735. }
  11736. },
  11737. foot: {
  11738. height: math.unit(6, "feet"),
  11739. weight: math.unit(150, "lb"),
  11740. name: "Foot",
  11741. image: {
  11742. source: "./media/characters/kayroo/foot.svg"
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(8, "feet"),
  11750. default: true
  11751. },
  11752. {
  11753. name: "Minimacro",
  11754. height: math.unit(250, "feet")
  11755. },
  11756. {
  11757. name: "Macro",
  11758. height: math.unit(2800, "feet")
  11759. },
  11760. {
  11761. name: "Megamacro",
  11762. height: math.unit(5200, "feet")
  11763. },
  11764. {
  11765. name: "Gigamacro",
  11766. height: math.unit(27000, "feet")
  11767. },
  11768. {
  11769. name: "Omega",
  11770. height: math.unit(45000, "feet")
  11771. },
  11772. ]
  11773. ))
  11774. characterMakers.push(() => makeCharacter(
  11775. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11776. {
  11777. front: {
  11778. height: math.unit(18, "feet"),
  11779. weight: math.unit(5800, "lb"),
  11780. name: "Front",
  11781. image: {
  11782. source: "./media/characters/rhys/front.svg",
  11783. extra: 3386 / 3090,
  11784. bottom: 0.07
  11785. }
  11786. },
  11787. },
  11788. [
  11789. {
  11790. name: "Normal",
  11791. height: math.unit(18, "feet"),
  11792. default: true
  11793. },
  11794. {
  11795. name: "Working Size",
  11796. height: math.unit(200, "feet")
  11797. },
  11798. {
  11799. name: "Demolition Size",
  11800. height: math.unit(2000, "feet")
  11801. },
  11802. {
  11803. name: "Maximum Licensed Size",
  11804. height: math.unit(5, "miles")
  11805. },
  11806. {
  11807. name: "Maximum Observed Size",
  11808. height: math.unit(10, "yottameters")
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(6, "feet"),
  11817. weight: math.unit(250, "lb"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/toto/front.svg",
  11821. extra: 527 / 479,
  11822. bottom: 0.05
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Micro",
  11829. height: math.unit(3, "feet")
  11830. },
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(10, "feet")
  11834. },
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(150, "feet"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Megamacro",
  11842. height: math.unit(1200, "feet")
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "King", species: ["lion"], tags: ["anthro"] },
  11848. {
  11849. back: {
  11850. height: math.unit(6, "feet"),
  11851. weight: math.unit(150, "lb"),
  11852. name: "Back",
  11853. image: {
  11854. source: "./media/characters/king/back.svg"
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Micro",
  11861. height: math.unit(2, "inches")
  11862. },
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(8, "feet")
  11866. },
  11867. {
  11868. name: "Macro",
  11869. height: math.unit(200, "feet"),
  11870. default: true
  11871. },
  11872. {
  11873. name: "Megamacro",
  11874. height: math.unit(50, "miles")
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(11, "feet"),
  11883. weight: math.unit(1400, "lb"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/cordite/front.svg",
  11887. extra: 1919/1827,
  11888. bottom: 40/1959
  11889. }
  11890. },
  11891. side: {
  11892. height: math.unit(11, "feet"),
  11893. weight: math.unit(1400, "lb"),
  11894. name: "Side",
  11895. image: {
  11896. source: "./media/characters/cordite/side.svg",
  11897. extra: 1908/1793,
  11898. bottom: 38/1946
  11899. }
  11900. },
  11901. back: {
  11902. height: math.unit(11, "feet"),
  11903. weight: math.unit(1400, "lb"),
  11904. name: "Back",
  11905. image: {
  11906. source: "./media/characters/cordite/back.svg",
  11907. extra: 1938/1837,
  11908. bottom: 10/1948
  11909. }
  11910. },
  11911. feral: {
  11912. height: math.unit(2, "feet"),
  11913. weight: math.unit(90, "lb"),
  11914. name: "Feral",
  11915. image: {
  11916. source: "./media/characters/cordite/feral.svg",
  11917. extra: 1260 / 755,
  11918. bottom: 0.05
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(11, "feet"),
  11926. default: true
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11932. {
  11933. front: {
  11934. height: math.unit(6, "feet"),
  11935. weight: math.unit(150, "lb"),
  11936. name: "Front",
  11937. image: {
  11938. source: "./media/characters/pianostrong/front.svg",
  11939. extra: 6577 / 6254,
  11940. bottom: 0.02
  11941. }
  11942. },
  11943. side: {
  11944. height: math.unit(6, "feet"),
  11945. weight: math.unit(150, "lb"),
  11946. name: "Side",
  11947. image: {
  11948. source: "./media/characters/pianostrong/side.svg",
  11949. extra: 6106 / 5730
  11950. }
  11951. },
  11952. back: {
  11953. height: math.unit(6, "feet"),
  11954. weight: math.unit(150, "lb"),
  11955. name: "Back",
  11956. image: {
  11957. source: "./media/characters/pianostrong/back.svg",
  11958. extra: 6085 / 5733,
  11959. bottom: 0.01
  11960. }
  11961. },
  11962. },
  11963. [
  11964. {
  11965. name: "Macro",
  11966. height: math.unit(100, "feet")
  11967. },
  11968. {
  11969. name: "Macro+",
  11970. height: math.unit(300, "feet"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Macro++",
  11975. height: math.unit(1000, "feet")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(6, "feet"),
  11984. weight: math.unit(150, "lb"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/kona/front.svg",
  11988. extra: 2960 / 2629,
  11989. bottom: 0.005
  11990. }
  11991. },
  11992. },
  11993. [
  11994. {
  11995. name: "Normal",
  11996. height: math.unit(11 + 8 / 12, "feet")
  11997. },
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(850, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Macro+",
  12005. height: math.unit(1.5, "km"),
  12006. default: true
  12007. },
  12008. {
  12009. name: "Megamacro",
  12010. height: math.unit(80, "miles")
  12011. },
  12012. {
  12013. name: "Gigamacro",
  12014. height: math.unit(3500, "miles")
  12015. },
  12016. ]
  12017. ))
  12018. characterMakers.push(() => makeCharacter(
  12019. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12020. {
  12021. side: {
  12022. height: math.unit(1.9, "meters"),
  12023. weight: math.unit(326, "kg"),
  12024. name: "Side",
  12025. image: {
  12026. source: "./media/characters/levi/side.svg",
  12027. extra: 1704 / 1334,
  12028. bottom: 0.02
  12029. }
  12030. },
  12031. },
  12032. [
  12033. {
  12034. name: "Normal",
  12035. height: math.unit(1.9, "meters"),
  12036. default: true
  12037. },
  12038. {
  12039. name: "Macro",
  12040. height: math.unit(20, "meters")
  12041. },
  12042. {
  12043. name: "Macro+",
  12044. height: math.unit(200, "meters")
  12045. },
  12046. {
  12047. name: "Megamacro",
  12048. height: math.unit(2, "km")
  12049. },
  12050. {
  12051. name: "Megamacro+",
  12052. height: math.unit(20, "km")
  12053. },
  12054. {
  12055. name: "Gigamacro",
  12056. height: math.unit(2500, "km")
  12057. },
  12058. {
  12059. name: "Gigamacro+",
  12060. height: math.unit(120000, "km")
  12061. },
  12062. {
  12063. name: "Teramacro",
  12064. height: math.unit(7.77e6, "km")
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(6 + 4/12, "feet"),
  12073. weight: math.unit(190, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/bmc/front.svg",
  12077. extra: 1626/1472,
  12078. bottom: 79/1705
  12079. }
  12080. },
  12081. back: {
  12082. height: math.unit(6 + 4/12, "feet"),
  12083. weight: math.unit(190, "lb"),
  12084. name: "Back",
  12085. image: {
  12086. source: "./media/characters/bmc/back.svg",
  12087. extra: 1640/1479,
  12088. bottom: 45/1685
  12089. }
  12090. },
  12091. frontArmor: {
  12092. height: math.unit(6 + 4/12, "feet"),
  12093. weight: math.unit(190, "lb"),
  12094. name: "Front-armor",
  12095. image: {
  12096. source: "./media/characters/bmc/front-armor.svg",
  12097. extra: 1538/1468,
  12098. bottom: 79/1617
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Human-sized",
  12105. height: math.unit(6 + 4 / 12, "feet")
  12106. },
  12107. {
  12108. name: "Interactive Size",
  12109. height: math.unit(25, "feet")
  12110. },
  12111. {
  12112. name: "Small",
  12113. height: math.unit(250, "feet")
  12114. },
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(1250, "feet"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Good Day",
  12122. height: math.unit(88, "miles")
  12123. },
  12124. {
  12125. name: "Largest Measured Size",
  12126. height: math.unit(105.960, "galaxies")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(20, "feet"),
  12135. weight: math.unit(2016, "kg"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/sven-the-kaiju/front.svg",
  12139. extra: 1277/1250,
  12140. bottom: 35/1312
  12141. }
  12142. },
  12143. mouth: {
  12144. height: math.unit(1.85, "feet"),
  12145. name: "Mouth",
  12146. image: {
  12147. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Fairy",
  12154. height: math.unit(6, "inches")
  12155. },
  12156. {
  12157. name: "Normal",
  12158. height: math.unit(20, "feet"),
  12159. default: true
  12160. },
  12161. {
  12162. name: "Rampage",
  12163. height: math.unit(200, "feet")
  12164. },
  12165. {
  12166. name: "Archfey Forest Guardian",
  12167. height: math.unit(1, "mile")
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12173. {
  12174. front: {
  12175. height: math.unit(4, "meters"),
  12176. weight: math.unit(2, "tons"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/marik/front.svg",
  12180. extra: 1057 / 1003,
  12181. bottom: 0.08
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(4, "meters"),
  12189. default: true
  12190. },
  12191. {
  12192. name: "Macro",
  12193. height: math.unit(20, "meters")
  12194. },
  12195. {
  12196. name: "Megamacro",
  12197. height: math.unit(50, "km")
  12198. },
  12199. {
  12200. name: "Gigamacro",
  12201. height: math.unit(100, "km")
  12202. },
  12203. {
  12204. name: "Alpha Macro",
  12205. height: math.unit(7.88e7, "yottameters")
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(110, "lb"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/mel/front.svg",
  12218. extra: 736 / 617,
  12219. bottom: 0.017
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Pico",
  12226. height: math.unit(3, "pm")
  12227. },
  12228. {
  12229. name: "Nano",
  12230. height: math.unit(3, "nm")
  12231. },
  12232. {
  12233. name: "Micro",
  12234. height: math.unit(0.3, "mm"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Micro+",
  12239. height: math.unit(3, "mm")
  12240. },
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(5 + 10.5 / 12, "feet")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12249. {
  12250. kaiju: {
  12251. height: math.unit(1.75, "meters"),
  12252. weight: math.unit(55, "kg"),
  12253. name: "Kaiju",
  12254. image: {
  12255. source: "./media/characters/lykonous/kaiju.svg",
  12256. extra: 1055 / 946,
  12257. bottom: 0.135
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Normal",
  12264. height: math.unit(2.5, "meters"),
  12265. default: true
  12266. },
  12267. {
  12268. name: "Kaiju Dragon",
  12269. height: math.unit(60, "meters")
  12270. },
  12271. {
  12272. name: "Mega Kaiju",
  12273. height: math.unit(120, "km")
  12274. },
  12275. {
  12276. name: "Giga Kaiju",
  12277. height: math.unit(200, "megameters")
  12278. },
  12279. {
  12280. name: "Terra Kaiju",
  12281. height: math.unit(400, "gigameters")
  12282. },
  12283. {
  12284. name: "Kaiju Dragon God",
  12285. height: math.unit(13000, "exaparsecs")
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12291. {
  12292. front: {
  12293. height: math.unit(6, "feet"),
  12294. weight: math.unit(150, "lb"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/blü/front.svg",
  12298. extra: 1883 / 1564,
  12299. bottom: 0.031
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(13, "feet"),
  12307. default: true
  12308. },
  12309. {
  12310. name: "Big Boi",
  12311. height: math.unit(150, "meters")
  12312. },
  12313. {
  12314. name: "Mini Stomper",
  12315. height: math.unit(300, "meters")
  12316. },
  12317. {
  12318. name: "Macro",
  12319. height: math.unit(1000, "meters")
  12320. },
  12321. {
  12322. name: "Megamacro",
  12323. height: math.unit(11000, "meters")
  12324. },
  12325. {
  12326. name: "Gigamacro",
  12327. height: math.unit(11000, "km")
  12328. },
  12329. {
  12330. name: "Teramacro",
  12331. height: math.unit(420000, "km")
  12332. },
  12333. {
  12334. name: "Examacro",
  12335. height: math.unit(120, "parsecs")
  12336. },
  12337. {
  12338. name: "God Tho",
  12339. height: math.unit(98000000000, "parsecs")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12345. {
  12346. taurFront: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(200, "lb"),
  12349. name: "Taur (Front)",
  12350. image: {
  12351. source: "./media/characters/scales/taur-front.svg",
  12352. extra: 1,
  12353. bottom: 0.05
  12354. }
  12355. },
  12356. taurBack: {
  12357. height: math.unit(6, "feet"),
  12358. weight: math.unit(200, "lb"),
  12359. name: "Taur (Back)",
  12360. image: {
  12361. source: "./media/characters/scales/taur-back.svg",
  12362. extra: 1,
  12363. bottom: 0.08
  12364. }
  12365. },
  12366. anthro: {
  12367. height: math.unit(6 * 7 / 12, "feet"),
  12368. weight: math.unit(100, "lb"),
  12369. name: "Anthro",
  12370. image: {
  12371. source: "./media/characters/scales/anthro.svg",
  12372. extra: 1,
  12373. bottom: 0.06
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(12, "feet"),
  12381. default: true
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12387. {
  12388. front: {
  12389. height: math.unit(6, "feet"),
  12390. weight: math.unit(150, "lb"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/koragos/front.svg",
  12394. extra: 841 / 794,
  12395. bottom: 0.035
  12396. }
  12397. },
  12398. back: {
  12399. height: math.unit(6, "feet"),
  12400. weight: math.unit(150, "lb"),
  12401. name: "Back",
  12402. image: {
  12403. source: "./media/characters/koragos/back.svg",
  12404. extra: 841 / 810,
  12405. bottom: 0.022
  12406. }
  12407. },
  12408. },
  12409. [
  12410. {
  12411. name: "Normal",
  12412. height: math.unit(6 + 11 / 12, "feet"),
  12413. default: true
  12414. },
  12415. {
  12416. name: "Macro",
  12417. height: math.unit(490, "feet")
  12418. },
  12419. {
  12420. name: "Megamacro",
  12421. height: math.unit(10, "miles")
  12422. },
  12423. {
  12424. name: "Gigamacro",
  12425. height: math.unit(50, "miles")
  12426. },
  12427. ]
  12428. ))
  12429. characterMakers.push(() => makeCharacter(
  12430. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12431. {
  12432. front: {
  12433. height: math.unit(6, "feet"),
  12434. weight: math.unit(250, "lb"),
  12435. name: "Front",
  12436. image: {
  12437. source: "./media/characters/xylrem/front.svg",
  12438. extra: 3323 / 3050,
  12439. bottom: 0.065
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Micro",
  12446. height: math.unit(4, "feet")
  12447. },
  12448. {
  12449. name: "Normal",
  12450. height: math.unit(16, "feet"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(2720, "feet")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(25000, "miles")
  12460. },
  12461. ]
  12462. ))
  12463. characterMakers.push(() => makeCharacter(
  12464. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12465. {
  12466. front: {
  12467. height: math.unit(8, "feet"),
  12468. weight: math.unit(250, "kg"),
  12469. name: "Front",
  12470. image: {
  12471. source: "./media/characters/ikideru/front.svg",
  12472. extra: 930 / 870,
  12473. bottom: 0.087
  12474. }
  12475. },
  12476. back: {
  12477. height: math.unit(8, "feet"),
  12478. weight: math.unit(250, "kg"),
  12479. name: "Back",
  12480. image: {
  12481. source: "./media/characters/ikideru/back.svg",
  12482. extra: 919 / 852,
  12483. bottom: 0.055
  12484. }
  12485. },
  12486. },
  12487. [
  12488. {
  12489. name: "Rare",
  12490. height: math.unit(8, "feet"),
  12491. default: true
  12492. },
  12493. {
  12494. name: "Playful Loom",
  12495. height: math.unit(80, "feet")
  12496. },
  12497. {
  12498. name: "City Leaner",
  12499. height: math.unit(230, "feet")
  12500. },
  12501. {
  12502. name: "Megamacro",
  12503. height: math.unit(2500, "feet")
  12504. },
  12505. {
  12506. name: "Gigamacro",
  12507. height: math.unit(26400, "feet")
  12508. },
  12509. {
  12510. name: "Tectonic Shifter",
  12511. height: math.unit(1.7, "megameters")
  12512. },
  12513. {
  12514. name: "Planet Carer",
  12515. height: math.unit(21, "megameters")
  12516. },
  12517. {
  12518. name: "God",
  12519. height: math.unit(11157.22, "parsecs")
  12520. },
  12521. ]
  12522. ))
  12523. characterMakers.push(() => makeCharacter(
  12524. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12525. {
  12526. front: {
  12527. height: math.unit(6, "feet"),
  12528. weight: math.unit(120, "lb"),
  12529. name: "Front",
  12530. image: {
  12531. source: "./media/characters/neo/front.svg"
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Micro",
  12538. height: math.unit(2, "inches"),
  12539. default: true
  12540. },
  12541. {
  12542. name: "Human Size",
  12543. height: math.unit(5 + 8 / 12, "feet")
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12549. {
  12550. front: {
  12551. height: math.unit(13 + 10 / 12, "feet"),
  12552. weight: math.unit(5320, "lb"),
  12553. name: "Front",
  12554. image: {
  12555. source: "./media/characters/chauncey-chantz/front.svg",
  12556. extra: 1587 / 1435,
  12557. bottom: 0.02
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Normal",
  12564. height: math.unit(13 + 10 / 12, "feet"),
  12565. default: true
  12566. },
  12567. {
  12568. name: "Macro",
  12569. height: math.unit(45, "feet")
  12570. },
  12571. {
  12572. name: "Megamacro",
  12573. height: math.unit(250, "miles")
  12574. },
  12575. {
  12576. name: "Planetary",
  12577. height: math.unit(10000, "miles")
  12578. },
  12579. {
  12580. name: "Galactic",
  12581. height: math.unit(40000, "parsecs")
  12582. },
  12583. {
  12584. name: "Universal",
  12585. height: math.unit(1, "yottameter")
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12591. {
  12592. front: {
  12593. height: math.unit(6, "feet"),
  12594. weight: math.unit(150, "lb"),
  12595. name: "Front",
  12596. image: {
  12597. source: "./media/characters/epifox/front.svg",
  12598. extra: 1,
  12599. bottom: 0.075
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Micro",
  12606. height: math.unit(6, "inches")
  12607. },
  12608. {
  12609. name: "Normal",
  12610. height: math.unit(12, "feet"),
  12611. default: true
  12612. },
  12613. {
  12614. name: "Macro",
  12615. height: math.unit(3810, "feet")
  12616. },
  12617. {
  12618. name: "Megamacro",
  12619. height: math.unit(500, "miles")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12625. {
  12626. front: {
  12627. height: math.unit(1.8796, "m"),
  12628. weight: math.unit(230, "lb"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/colin-t/front.svg",
  12632. extra: 1272 / 1193,
  12633. bottom: 0.07
  12634. }
  12635. },
  12636. },
  12637. [
  12638. {
  12639. name: "Micro",
  12640. height: math.unit(0.571, "meters")
  12641. },
  12642. {
  12643. name: "Normal",
  12644. height: math.unit(1.8796, "meters"),
  12645. default: true
  12646. },
  12647. {
  12648. name: "Tall",
  12649. height: math.unit(4, "meters")
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(67.241, "meters")
  12654. },
  12655. {
  12656. name: "Megamacro",
  12657. height: math.unit(371.856, "meters")
  12658. },
  12659. {
  12660. name: "Planetary",
  12661. height: math.unit(12631.5689, "km")
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12667. {
  12668. front: {
  12669. height: math.unit(1.85, "meters"),
  12670. weight: math.unit(80, "kg"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/matvei/front.svg",
  12674. extra: 614 / 594,
  12675. bottom: 0.01
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Normal",
  12682. height: math.unit(1.85, "meters"),
  12683. default: true
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(5 + 9 / 12, "feet"),
  12692. weight: math.unit(70, "lb"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/quincy/front.svg",
  12696. extra: 3041 / 2751
  12697. }
  12698. },
  12699. back: {
  12700. height: math.unit(5 + 9 / 12, "feet"),
  12701. weight: math.unit(70, "lb"),
  12702. name: "Back",
  12703. image: {
  12704. source: "./media/characters/quincy/back.svg",
  12705. extra: 3041 / 2751
  12706. }
  12707. },
  12708. flying: {
  12709. height: math.unit(5 + 4 / 12, "feet"),
  12710. weight: math.unit(70, "lb"),
  12711. name: "Flying",
  12712. image: {
  12713. source: "./media/characters/quincy/flying.svg",
  12714. extra: 1044 / 930
  12715. }
  12716. },
  12717. },
  12718. [
  12719. {
  12720. name: "Micro",
  12721. height: math.unit(3, "cm")
  12722. },
  12723. {
  12724. name: "Normal",
  12725. height: math.unit(5 + 9 / 12, "feet")
  12726. },
  12727. {
  12728. name: "Macro",
  12729. height: math.unit(200, "meters"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Megamacro",
  12734. height: math.unit(1000, "meters")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(3 + 11/12, "feet"),
  12743. weight: math.unit(50, "lb"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/vanrel/front.svg",
  12747. extra: 1104/949,
  12748. bottom: 52/1156
  12749. }
  12750. },
  12751. back: {
  12752. height: math.unit(3 + 11/12, "feet"),
  12753. weight: math.unit(50, "lb"),
  12754. name: "Back",
  12755. image: {
  12756. source: "./media/characters/vanrel/back.svg",
  12757. extra: 1119/976,
  12758. bottom: 37/1156
  12759. }
  12760. },
  12761. tome: {
  12762. height: math.unit(1.35, "feet"),
  12763. weight: math.unit(10, "lb"),
  12764. name: "Vanrel's Tome",
  12765. rename: true,
  12766. image: {
  12767. source: "./media/characters/vanrel/tome.svg"
  12768. }
  12769. },
  12770. beans: {
  12771. height: math.unit(0.89, "feet"),
  12772. name: "Beans",
  12773. image: {
  12774. source: "./media/characters/vanrel/beans.svg"
  12775. }
  12776. },
  12777. },
  12778. [
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(3 + 11/12, "feet"),
  12782. default: true
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(7 + 5 / 12, "feet"),
  12791. name: "Front",
  12792. image: {
  12793. source: "./media/characters/kuiper-vanrel/front.svg",
  12794. extra: 1219/1169,
  12795. bottom: 69/1288
  12796. }
  12797. },
  12798. back: {
  12799. height: math.unit(7 + 5 / 12, "feet"),
  12800. name: "Back",
  12801. image: {
  12802. source: "./media/characters/kuiper-vanrel/back.svg",
  12803. extra: 1236/1193,
  12804. bottom: 27/1263
  12805. }
  12806. },
  12807. foot: {
  12808. height: math.unit(0.55, "meters"),
  12809. name: "Foot",
  12810. image: {
  12811. source: "./media/characters/kuiper-vanrel/foot.svg",
  12812. }
  12813. },
  12814. battle: {
  12815. height: math.unit(6.824, "feet"),
  12816. name: "Battle",
  12817. image: {
  12818. source: "./media/characters/kuiper-vanrel/battle.svg",
  12819. extra: 1466 / 1327,
  12820. bottom: 29 / 1492.5
  12821. }
  12822. },
  12823. meerkui: {
  12824. height: math.unit(18, "inches"),
  12825. name: "Meerkui",
  12826. image: {
  12827. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12828. extra: 1354/1289,
  12829. bottom: 69/1423
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(7 + 5 / 12, "feet"),
  12837. default: true
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(8 + 5 / 12, "feet"),
  12846. name: "Front",
  12847. image: {
  12848. source: "./media/characters/keset-vanrel/front.svg",
  12849. extra: 1231/1148,
  12850. bottom: 82/1313
  12851. }
  12852. },
  12853. back: {
  12854. height: math.unit(8 + 5 / 12, "feet"),
  12855. name: "Back",
  12856. image: {
  12857. source: "./media/characters/keset-vanrel/back.svg",
  12858. extra: 1240/1174,
  12859. bottom: 33/1273
  12860. }
  12861. },
  12862. hand: {
  12863. height: math.unit(0.6, "meters"),
  12864. name: "Hand",
  12865. image: {
  12866. source: "./media/characters/keset-vanrel/hand.svg"
  12867. }
  12868. },
  12869. foot: {
  12870. height: math.unit(0.94978, "meters"),
  12871. name: "Foot",
  12872. image: {
  12873. source: "./media/characters/keset-vanrel/foot.svg"
  12874. }
  12875. },
  12876. battle: {
  12877. height: math.unit(7.408, "feet"),
  12878. name: "Battle",
  12879. image: {
  12880. source: "./media/characters/keset-vanrel/battle.svg",
  12881. extra: 1890 / 1386,
  12882. bottom: 73.28 / 1970
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Normal",
  12889. height: math.unit(8 + 5 / 12, "feet"),
  12890. default: true
  12891. },
  12892. ]
  12893. ))
  12894. characterMakers.push(() => makeCharacter(
  12895. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12896. {
  12897. front: {
  12898. height: math.unit(6, "feet"),
  12899. weight: math.unit(150, "lb"),
  12900. name: "Front",
  12901. image: {
  12902. source: "./media/characters/neos/front.svg",
  12903. extra: 1696 / 992,
  12904. bottom: 0.14
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(54, "cm"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(100, "m")
  12917. },
  12918. {
  12919. name: "Megamacro",
  12920. height: math.unit(10, "km")
  12921. },
  12922. {
  12923. name: "Megamacro+",
  12924. height: math.unit(100, "km")
  12925. },
  12926. {
  12927. name: "Gigamacro",
  12928. height: math.unit(100, "Mm")
  12929. },
  12930. {
  12931. name: "Teramacro",
  12932. height: math.unit(100, "Gm")
  12933. },
  12934. {
  12935. name: "Examacro",
  12936. height: math.unit(100, "Em")
  12937. },
  12938. {
  12939. name: "Godly",
  12940. height: math.unit(10000, "Ym")
  12941. },
  12942. {
  12943. name: "Beyond Godly",
  12944. height: math.unit(25, "multiverses")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12950. {
  12951. feminine: {
  12952. height: math.unit(5, "feet"),
  12953. weight: math.unit(100, "lb"),
  12954. name: "Feminine",
  12955. image: {
  12956. source: "./media/characters/sammy-mouse/feminine.svg",
  12957. extra: 2526 / 2425,
  12958. bottom: 0.123
  12959. }
  12960. },
  12961. masculine: {
  12962. height: math.unit(5, "feet"),
  12963. weight: math.unit(100, "lb"),
  12964. name: "Masculine",
  12965. image: {
  12966. source: "./media/characters/sammy-mouse/masculine.svg",
  12967. extra: 2526 / 2425,
  12968. bottom: 0.123
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Micro",
  12975. height: math.unit(5, "inches")
  12976. },
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(5, "feet"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Macro",
  12984. height: math.unit(60, "feet")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12990. {
  12991. front: {
  12992. height: math.unit(4, "feet"),
  12993. weight: math.unit(50, "lb"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/kole/front.svg",
  12997. extra: 1423 / 1303,
  12998. bottom: 0.025
  12999. }
  13000. },
  13001. back: {
  13002. height: math.unit(4, "feet"),
  13003. weight: math.unit(50, "lb"),
  13004. name: "Back",
  13005. image: {
  13006. source: "./media/characters/kole/back.svg",
  13007. extra: 1426 / 1280,
  13008. bottom: 0.02
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Normal",
  13015. height: math.unit(4, "feet"),
  13016. default: true
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(2.5, "feet"),
  13025. weight: math.unit(32, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/rufran/front.svg",
  13029. extra: 1313/885,
  13030. bottom: 94/1407
  13031. }
  13032. },
  13033. side: {
  13034. height: math.unit(2.5, "feet"),
  13035. weight: math.unit(32, "lb"),
  13036. name: "Side",
  13037. image: {
  13038. source: "./media/characters/rufran/side.svg",
  13039. extra: 1109/852,
  13040. bottom: 118/1227
  13041. }
  13042. },
  13043. back: {
  13044. height: math.unit(2.5, "feet"),
  13045. weight: math.unit(32, "lb"),
  13046. name: "Back",
  13047. image: {
  13048. source: "./media/characters/rufran/back.svg",
  13049. extra: 1280/878,
  13050. bottom: 131/1411
  13051. }
  13052. },
  13053. mouth: {
  13054. height: math.unit(1.13, "feet"),
  13055. name: "Mouth",
  13056. image: {
  13057. source: "./media/characters/rufran/mouth.svg"
  13058. }
  13059. },
  13060. foot: {
  13061. height: math.unit(1.33, "feet"),
  13062. name: "Foot",
  13063. image: {
  13064. source: "./media/characters/rufran/foot.svg"
  13065. }
  13066. },
  13067. koboldFront: {
  13068. height: math.unit(2 + 6 / 12, "feet"),
  13069. weight: math.unit(20, "lb"),
  13070. name: "Front (Kobold)",
  13071. image: {
  13072. source: "./media/characters/rufran/kobold-front.svg",
  13073. extra: 2041 / 1839,
  13074. bottom: 0.055
  13075. }
  13076. },
  13077. koboldBack: {
  13078. height: math.unit(2 + 6 / 12, "feet"),
  13079. weight: math.unit(20, "lb"),
  13080. name: "Back (Kobold)",
  13081. image: {
  13082. source: "./media/characters/rufran/kobold-back.svg",
  13083. extra: 2054 / 1839,
  13084. bottom: 0.01
  13085. }
  13086. },
  13087. koboldHand: {
  13088. height: math.unit(0.2166, "meters"),
  13089. name: "Hand (Kobold)",
  13090. image: {
  13091. source: "./media/characters/rufran/kobold-hand.svg"
  13092. }
  13093. },
  13094. koboldFoot: {
  13095. height: math.unit(0.185, "meters"),
  13096. name: "Foot (Kobold)",
  13097. image: {
  13098. source: "./media/characters/rufran/kobold-foot.svg"
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Micro",
  13105. height: math.unit(1, "inch")
  13106. },
  13107. {
  13108. name: "Normal",
  13109. height: math.unit(2 + 6 / 12, "feet"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Big",
  13114. height: math.unit(60, "feet")
  13115. },
  13116. {
  13117. name: "Macro",
  13118. height: math.unit(325, "feet")
  13119. },
  13120. ]
  13121. ))
  13122. characterMakers.push(() => makeCharacter(
  13123. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13124. {
  13125. front: {
  13126. height: math.unit(0.3, "meters"),
  13127. weight: math.unit(3.5, "kg"),
  13128. name: "Front",
  13129. image: {
  13130. source: "./media/characters/chip/front.svg",
  13131. extra: 748 / 674
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Micro",
  13138. height: math.unit(1, "inch"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13145. {
  13146. side: {
  13147. height: math.unit(2.3, "meters"),
  13148. weight: math.unit(3500, "lb"),
  13149. name: "Side",
  13150. image: {
  13151. source: "./media/characters/torvid/side.svg",
  13152. extra: 1972 / 722,
  13153. bottom: 0.035
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Normal",
  13160. height: math.unit(2.3, "meters"),
  13161. default: true
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(2, "meters"),
  13170. weight: math.unit(150.5, "kg"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/susan/front.svg",
  13174. extra: 693 / 635,
  13175. bottom: 0.05
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Megamacro",
  13182. height: math.unit(505, "miles"),
  13183. default: true
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13189. {
  13190. front: {
  13191. height: math.unit(6, "feet"),
  13192. weight: math.unit(150, "lb"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/raindrops/front.svg",
  13196. extra: 2655 / 2461,
  13197. bottom: 49 / 2705
  13198. }
  13199. },
  13200. back: {
  13201. height: math.unit(6, "feet"),
  13202. weight: math.unit(150, "lb"),
  13203. name: "Back",
  13204. image: {
  13205. source: "./media/characters/raindrops/back.svg",
  13206. extra: 2574 / 2400,
  13207. bottom: 65 / 2634
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Micro",
  13214. height: math.unit(6, "inches")
  13215. },
  13216. {
  13217. name: "Normal",
  13218. height: math.unit(6 + 2 / 12, "feet")
  13219. },
  13220. {
  13221. name: "Macro",
  13222. height: math.unit(131, "feet"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Megamacro",
  13227. height: math.unit(15, "miles")
  13228. },
  13229. {
  13230. name: "Gigamacro",
  13231. height: math.unit(4000, "miles")
  13232. },
  13233. {
  13234. name: "Teramacro",
  13235. height: math.unit(315000, "miles")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(2.794, "meters"),
  13244. weight: math.unit(325, "kg"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/tezwa/front.svg",
  13248. extra: 2083 / 1906,
  13249. bottom: 0.031
  13250. }
  13251. },
  13252. foot: {
  13253. height: math.unit(0.687, "meters"),
  13254. name: "Foot",
  13255. image: {
  13256. source: "./media/characters/tezwa/foot.svg"
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Normal",
  13263. height: math.unit(9 + 2 / 12, "feet"),
  13264. default: true
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13270. {
  13271. front: {
  13272. height: math.unit(58, "feet"),
  13273. weight: math.unit(89000, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/typhus/front.svg",
  13277. extra: 816 / 800,
  13278. bottom: 0.065
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Macro",
  13285. height: math.unit(58, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(12, "feet"),
  13295. weight: math.unit(6, "tonnes"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/lyra-von-wulf/front.svg",
  13299. extra: 1,
  13300. bottom: 0.10
  13301. }
  13302. },
  13303. frontMecha: {
  13304. height: math.unit(12, "feet"),
  13305. weight: math.unit(12, "tonnes"),
  13306. name: "Front (Mecha)",
  13307. image: {
  13308. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13309. extra: 1,
  13310. bottom: 0.042
  13311. }
  13312. },
  13313. maw: {
  13314. height: math.unit(2.2, "feet"),
  13315. name: "Maw",
  13316. image: {
  13317. source: "./media/characters/lyra-von-wulf/maw.svg"
  13318. }
  13319. },
  13320. },
  13321. [
  13322. {
  13323. name: "Normal",
  13324. height: math.unit(12, "feet"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Classic",
  13329. height: math.unit(50, "feet")
  13330. },
  13331. {
  13332. name: "Macro",
  13333. height: math.unit(500, "feet")
  13334. },
  13335. {
  13336. name: "Megamacro",
  13337. height: math.unit(1, "mile")
  13338. },
  13339. {
  13340. name: "Gigamacro",
  13341. height: math.unit(400, "miles")
  13342. },
  13343. {
  13344. name: "Teramacro",
  13345. height: math.unit(22000, "miles")
  13346. },
  13347. {
  13348. name: "Solarmacro",
  13349. height: math.unit(8600000, "miles")
  13350. },
  13351. {
  13352. name: "Galactic",
  13353. height: math.unit(1057000, "lightyears")
  13354. },
  13355. ]
  13356. ))
  13357. characterMakers.push(() => makeCharacter(
  13358. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13359. {
  13360. front: {
  13361. height: math.unit(6 + 10 / 12, "feet"),
  13362. weight: math.unit(150, "lb"),
  13363. name: "Front",
  13364. image: {
  13365. source: "./media/characters/dixon/front.svg",
  13366. extra: 3361 / 3209,
  13367. bottom: 0.01
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Normal",
  13374. height: math.unit(6 + 10 / 12, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Big",
  13379. height: math.unit(12, "meters")
  13380. },
  13381. {
  13382. name: "Macro",
  13383. height: math.unit(500, "meters")
  13384. },
  13385. {
  13386. name: "Megamacro",
  13387. height: math.unit(2, "km")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13393. {
  13394. front: {
  13395. height: math.unit(185, "cm"),
  13396. weight: math.unit(68, "kg"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/kauko/front.svg",
  13400. extra: 1455 / 1421,
  13401. bottom: 0.03
  13402. }
  13403. },
  13404. back: {
  13405. height: math.unit(185, "cm"),
  13406. weight: math.unit(68, "kg"),
  13407. name: "Back",
  13408. image: {
  13409. source: "./media/characters/kauko/back.svg",
  13410. extra: 1455 / 1421,
  13411. bottom: 0.004
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(185, "cm"),
  13419. default: true
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(150, "kg"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/varg/front.svg",
  13432. extra: 1108 / 1018,
  13433. bottom: 0.0375
  13434. }
  13435. },
  13436. },
  13437. [
  13438. {
  13439. name: "Normal",
  13440. height: math.unit(5, "meters")
  13441. },
  13442. {
  13443. name: "Macro",
  13444. height: math.unit(200, "meters")
  13445. },
  13446. {
  13447. name: "Megamacro",
  13448. height: math.unit(20, "kilometers")
  13449. },
  13450. {
  13451. name: "True Size",
  13452. height: math.unit(211, "km"),
  13453. default: true
  13454. },
  13455. {
  13456. name: "Gigamacro",
  13457. height: math.unit(1000, "km")
  13458. },
  13459. {
  13460. name: "Gigamacro+",
  13461. height: math.unit(8000, "km")
  13462. },
  13463. {
  13464. name: "Teramacro",
  13465. height: math.unit(1000000, "km")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(7 + 7 / 12, "feet"),
  13474. weight: math.unit(267, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/dayza/front.svg",
  13478. extra: 1262 / 1200,
  13479. bottom: 0.035
  13480. }
  13481. },
  13482. side: {
  13483. height: math.unit(7 + 7 / 12, "feet"),
  13484. weight: math.unit(267, "lb"),
  13485. name: "Side",
  13486. image: {
  13487. source: "./media/characters/dayza/side.svg",
  13488. extra: 1295 / 1245,
  13489. bottom: 0.05
  13490. }
  13491. },
  13492. back: {
  13493. height: math.unit(7 + 7 / 12, "feet"),
  13494. weight: math.unit(267, "lb"),
  13495. name: "Back",
  13496. image: {
  13497. source: "./media/characters/dayza/back.svg",
  13498. extra: 1241 / 1170
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(7 + 7 / 12, "feet"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(155, "feet")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(6 + 5 / 12, "feet"),
  13519. weight: math.unit(160, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/xanthos/front.svg",
  13523. extra: 1,
  13524. bottom: 0.04
  13525. }
  13526. },
  13527. back: {
  13528. height: math.unit(6 + 5 / 12, "feet"),
  13529. weight: math.unit(160, "lb"),
  13530. name: "Back",
  13531. image: {
  13532. source: "./media/characters/xanthos/back.svg",
  13533. extra: 1,
  13534. bottom: 0.03
  13535. }
  13536. },
  13537. hand: {
  13538. height: math.unit(0.928, "feet"),
  13539. name: "Hand",
  13540. image: {
  13541. source: "./media/characters/xanthos/hand.svg"
  13542. }
  13543. },
  13544. foot: {
  13545. height: math.unit(1.286, "feet"),
  13546. name: "Foot",
  13547. image: {
  13548. source: "./media/characters/xanthos/foot.svg"
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Normal",
  13555. height: math.unit(6 + 5 / 12, "feet"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Normal+",
  13560. height: math.unit(6, "meters")
  13561. },
  13562. {
  13563. name: "Macro",
  13564. height: math.unit(40, "feet")
  13565. },
  13566. {
  13567. name: "Macro+",
  13568. height: math.unit(200, "meters")
  13569. },
  13570. {
  13571. name: "Megamacro",
  13572. height: math.unit(20, "km")
  13573. },
  13574. {
  13575. name: "Megamacro+",
  13576. height: math.unit(100, "km")
  13577. },
  13578. {
  13579. name: "Gigamacro",
  13580. height: math.unit(200, "megameters")
  13581. },
  13582. {
  13583. name: "Gigamacro+",
  13584. height: math.unit(1.5, "gigameters")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(6 + 3 / 12, "feet"),
  13593. weight: math.unit(215, "lb"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/grynn/front.svg",
  13597. extra: 4627 / 4209,
  13598. bottom: 0.047
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Micro",
  13605. height: math.unit(6, "inches")
  13606. },
  13607. {
  13608. name: "Normal",
  13609. height: math.unit(6 + 3 / 12, "feet"),
  13610. default: true
  13611. },
  13612. {
  13613. name: "Big",
  13614. height: math.unit(104, "feet")
  13615. },
  13616. {
  13617. name: "Macro",
  13618. height: math.unit(944, "feet")
  13619. },
  13620. {
  13621. name: "Macro+",
  13622. height: math.unit(9480, "feet")
  13623. },
  13624. {
  13625. name: "Megamacro",
  13626. height: math.unit(78752, "feet")
  13627. },
  13628. {
  13629. name: "Megamacro+",
  13630. height: math.unit(630128, "feet")
  13631. },
  13632. {
  13633. name: "Megamacro++",
  13634. height: math.unit(3150695, "feet")
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(7 + 5 / 12, "feet"),
  13643. weight: math.unit(450, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/mocha-aura/front.svg",
  13647. extra: 1907 / 1817,
  13648. bottom: 0.04
  13649. }
  13650. },
  13651. back: {
  13652. height: math.unit(7 + 5 / 12, "feet"),
  13653. weight: math.unit(450, "lb"),
  13654. name: "Back",
  13655. image: {
  13656. source: "./media/characters/mocha-aura/back.svg",
  13657. extra: 1900 / 1825,
  13658. bottom: 0.045
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Nano",
  13665. height: math.unit(1, "nm")
  13666. },
  13667. {
  13668. name: "Megamicro",
  13669. height: math.unit(1, "mm")
  13670. },
  13671. {
  13672. name: "Micro",
  13673. height: math.unit(3, "inches")
  13674. },
  13675. {
  13676. name: "Normal",
  13677. height: math.unit(7 + 5 / 12, "feet"),
  13678. default: true
  13679. },
  13680. {
  13681. name: "Macro",
  13682. height: math.unit(30, "feet")
  13683. },
  13684. {
  13685. name: "Megamacro",
  13686. height: math.unit(3500, "feet")
  13687. },
  13688. {
  13689. name: "Teramacro",
  13690. height: math.unit(500000, "miles")
  13691. },
  13692. {
  13693. name: "Petamacro",
  13694. height: math.unit(50000000000000000, "parsecs")
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(150, "lb"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/ilisha-devya/front.svg",
  13707. extra: 1053/1049,
  13708. bottom: 270/1323
  13709. }
  13710. },
  13711. back: {
  13712. height: math.unit(6, "feet"),
  13713. weight: math.unit(150, "lb"),
  13714. name: "Back",
  13715. image: {
  13716. source: "./media/characters/ilisha-devya/back.svg",
  13717. extra: 1131/1128,
  13718. bottom: 39/1170
  13719. }
  13720. },
  13721. },
  13722. [
  13723. {
  13724. name: "Macro",
  13725. height: math.unit(500, "feet"),
  13726. default: true
  13727. },
  13728. {
  13729. name: "Megamacro",
  13730. height: math.unit(10, "miles")
  13731. },
  13732. {
  13733. name: "Gigamacro",
  13734. height: math.unit(100000, "miles")
  13735. },
  13736. {
  13737. name: "Examacro",
  13738. height: math.unit(1e9, "lightyears")
  13739. },
  13740. {
  13741. name: "Omniversal",
  13742. height: math.unit(1e33, "lightyears")
  13743. },
  13744. {
  13745. name: "Beyond Infinite",
  13746. height: math.unit(1e100, "lightyears")
  13747. },
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13752. {
  13753. Side: {
  13754. height: math.unit(6, "feet"),
  13755. weight: math.unit(150, "lb"),
  13756. name: "Side",
  13757. image: {
  13758. source: "./media/characters/mira/side.svg",
  13759. extra: 900 / 799,
  13760. bottom: 0.02
  13761. }
  13762. },
  13763. },
  13764. [
  13765. {
  13766. name: "Human Size",
  13767. height: math.unit(6, "feet")
  13768. },
  13769. {
  13770. name: "Macro",
  13771. height: math.unit(100, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Megamacro",
  13776. height: math.unit(10, "miles")
  13777. },
  13778. {
  13779. name: "Gigamacro",
  13780. height: math.unit(25000, "miles")
  13781. },
  13782. {
  13783. name: "Teramacro",
  13784. height: math.unit(300, "AU")
  13785. },
  13786. {
  13787. name: "Full Size",
  13788. height: math.unit(4.5e10, "lightyears")
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(6, "feet"),
  13797. weight: math.unit(150, "lb"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/holly/front.svg",
  13801. extra: 639 / 606
  13802. }
  13803. },
  13804. back: {
  13805. height: math.unit(6, "feet"),
  13806. weight: math.unit(150, "lb"),
  13807. name: "Back",
  13808. image: {
  13809. source: "./media/characters/holly/back.svg",
  13810. extra: 623 / 598
  13811. }
  13812. },
  13813. frontWorking: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Front (Working)",
  13817. image: {
  13818. source: "./media/characters/holly/front-working.svg",
  13819. extra: 607 / 577,
  13820. bottom: 0.048
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Normal",
  13827. height: math.unit(12 + 3 / 12, "feet"),
  13828. default: true
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(6, "feet"),
  13837. weight: math.unit(150, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/porter/front.svg",
  13841. extra: 1,
  13842. bottom: 0.01
  13843. }
  13844. },
  13845. frontRobes: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Front (Robes)",
  13849. image: {
  13850. source: "./media/characters/porter/front-robes.svg",
  13851. extra: 1.01,
  13852. bottom: 0.01
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Normal",
  13859. height: math.unit(11 + 9 / 12, "feet"),
  13860. default: true
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13866. {
  13867. legendary: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Legendary",
  13871. image: {
  13872. source: "./media/characters/lucy/legendary.svg",
  13873. extra: 1355 / 1100,
  13874. bottom: 0.045
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Legendary",
  13881. height: math.unit(86882 * 2, "miles"),
  13882. default: true
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(6, "feet"),
  13891. weight: math.unit(150, "lb"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/drusilla/front.svg",
  13895. extra: 678 / 635,
  13896. bottom: 0.03
  13897. }
  13898. },
  13899. back: {
  13900. height: math.unit(6, "feet"),
  13901. weight: math.unit(150, "lb"),
  13902. name: "Back",
  13903. image: {
  13904. source: "./media/characters/drusilla/back.svg",
  13905. extra: 678 / 635,
  13906. bottom: 0.005
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Macro",
  13913. height: math.unit(100, "feet")
  13914. },
  13915. {
  13916. name: "Canon Height",
  13917. height: math.unit(2000, "feet"),
  13918. default: true
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(180, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/renard-thatch/front.svg",
  13931. extra: 2411 / 2275,
  13932. bottom: 0.01
  13933. }
  13934. },
  13935. frontPosing: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(180, "lb"),
  13938. name: "Front (Posing)",
  13939. image: {
  13940. source: "./media/characters/renard-thatch/front-posing.svg",
  13941. extra: 2381 / 2261,
  13942. bottom: 0.01
  13943. }
  13944. },
  13945. back: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(180, "lb"),
  13948. name: "Back",
  13949. image: {
  13950. source: "./media/characters/renard-thatch/back.svg",
  13951. extra: 2428 / 2288
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Micro",
  13958. height: math.unit(3, "inches")
  13959. },
  13960. {
  13961. name: "Default",
  13962. height: math.unit(6, "feet"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Macro",
  13967. height: math.unit(75, "feet")
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(1450, "feet"),
  13976. weight: math.unit(1.21e6, "tons"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/sekvra/front.svg",
  13980. extra: 1193/1190,
  13981. bottom: 78/1271
  13982. }
  13983. },
  13984. side: {
  13985. height: math.unit(1450, "feet"),
  13986. weight: math.unit(1.21e6, "tons"),
  13987. name: "Side",
  13988. image: {
  13989. source: "./media/characters/sekvra/side.svg",
  13990. extra: 1193/1190,
  13991. bottom: 52/1245
  13992. }
  13993. },
  13994. back: {
  13995. height: math.unit(1450, "feet"),
  13996. weight: math.unit(1.21e6, "tons"),
  13997. name: "Back",
  13998. image: {
  13999. source: "./media/characters/sekvra/back.svg",
  14000. extra: 1219/1216,
  14001. bottom: 21/1240
  14002. }
  14003. },
  14004. frontClothed: {
  14005. height: math.unit(1450, "feet"),
  14006. weight: math.unit(1.21e6, "tons"),
  14007. name: "Front (Clothed)",
  14008. image: {
  14009. source: "./media/characters/sekvra/front-clothed.svg",
  14010. extra: 1192/1189,
  14011. bottom: 79/1271
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Macro",
  14018. height: math.unit(1450, "feet"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Megamacro",
  14023. height: math.unit(15000, "feet")
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(6, "feet"),
  14032. weight: math.unit(150, "lb"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/carmine/front.svg",
  14036. extra: 1,
  14037. bottom: 0.035
  14038. }
  14039. },
  14040. frontArmor: {
  14041. height: math.unit(6, "feet"),
  14042. weight: math.unit(150, "lb"),
  14043. name: "Front (Armor)",
  14044. image: {
  14045. source: "./media/characters/carmine/front-armor.svg",
  14046. extra: 1,
  14047. bottom: 0.035
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Large",
  14054. height: math.unit(1, "mile")
  14055. },
  14056. {
  14057. name: "Huge",
  14058. height: math.unit(40, "miles"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Colossal",
  14063. height: math.unit(2500, "miles")
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14069. {
  14070. front: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/elyssia/front.svg",
  14076. extra: 2201 / 2035,
  14077. bottom: 0.05
  14078. }
  14079. },
  14080. frontClothed: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(150, "lb"),
  14083. name: "Front (Clothed)",
  14084. image: {
  14085. source: "./media/characters/elyssia/front-clothed.svg",
  14086. extra: 2201 / 2035,
  14087. bottom: 0.05
  14088. }
  14089. },
  14090. back: {
  14091. height: math.unit(6, "feet"),
  14092. weight: math.unit(150, "lb"),
  14093. name: "Back",
  14094. image: {
  14095. source: "./media/characters/elyssia/back.svg",
  14096. extra: 2201 / 2035,
  14097. bottom: 0.013
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Smaller",
  14104. height: math.unit(150, "feet")
  14105. },
  14106. {
  14107. name: "Standard",
  14108. height: math.unit(1400, "feet"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Distracted",
  14113. height: math.unit(15000, "feet")
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14119. {
  14120. front: {
  14121. height: math.unit(7 + 4/12, "feet"),
  14122. weight: math.unit(690, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/geno-maxwell/front.svg",
  14126. extra: 984/856,
  14127. bottom: 87/1071
  14128. }
  14129. },
  14130. back: {
  14131. height: math.unit(7 + 4/12, "feet"),
  14132. weight: math.unit(690, "lb"),
  14133. name: "Back",
  14134. image: {
  14135. source: "./media/characters/geno-maxwell/back.svg",
  14136. extra: 981/854,
  14137. bottom: 57/1038
  14138. }
  14139. },
  14140. frontCostume: {
  14141. height: math.unit(7 + 4/12, "feet"),
  14142. weight: math.unit(690, "lb"),
  14143. name: "Front (Costume)",
  14144. image: {
  14145. source: "./media/characters/geno-maxwell/front-costume.svg",
  14146. extra: 984/856,
  14147. bottom: 87/1071
  14148. }
  14149. },
  14150. backcostume: {
  14151. height: math.unit(7 + 4/12, "feet"),
  14152. weight: math.unit(690, "lb"),
  14153. name: "Back (Costume)",
  14154. image: {
  14155. source: "./media/characters/geno-maxwell/back-costume.svg",
  14156. extra: 981/854,
  14157. bottom: 57/1038
  14158. }
  14159. },
  14160. },
  14161. [
  14162. {
  14163. name: "Micro",
  14164. height: math.unit(3, "inches")
  14165. },
  14166. {
  14167. name: "Normal",
  14168. height: math.unit(7 + 4 / 12, "feet"),
  14169. default: true
  14170. },
  14171. {
  14172. name: "Macro",
  14173. height: math.unit(220, "feet")
  14174. },
  14175. {
  14176. name: "Megamacro",
  14177. height: math.unit(11, "miles")
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(7 + 4/12, "feet"),
  14186. weight: math.unit(750, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/regena-maxwell/front.svg",
  14190. extra: 984/856,
  14191. bottom: 87/1071
  14192. }
  14193. },
  14194. back: {
  14195. height: math.unit(7 + 4/12, "feet"),
  14196. weight: math.unit(750, "lb"),
  14197. name: "Back",
  14198. image: {
  14199. source: "./media/characters/regena-maxwell/back.svg",
  14200. extra: 981/854,
  14201. bottom: 57/1038
  14202. }
  14203. },
  14204. frontCostume: {
  14205. height: math.unit(7 + 4/12, "feet"),
  14206. weight: math.unit(750, "lb"),
  14207. name: "Front (Costume)",
  14208. image: {
  14209. source: "./media/characters/regena-maxwell/front-costume.svg",
  14210. extra: 984/856,
  14211. bottom: 87/1071
  14212. }
  14213. },
  14214. backcostume: {
  14215. height: math.unit(7 + 4/12, "feet"),
  14216. weight: math.unit(750, "lb"),
  14217. name: "Back (Costume)",
  14218. image: {
  14219. source: "./media/characters/regena-maxwell/back-costume.svg",
  14220. extra: 981/854,
  14221. bottom: 57/1038
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Normal",
  14228. height: math.unit(7 + 4 / 12, "feet"),
  14229. default: true
  14230. },
  14231. {
  14232. name: "Macro",
  14233. height: math.unit(220, "feet")
  14234. },
  14235. {
  14236. name: "Megamacro",
  14237. height: math.unit(11, "miles")
  14238. },
  14239. ]
  14240. ))
  14241. characterMakers.push(() => makeCharacter(
  14242. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14243. {
  14244. front: {
  14245. height: math.unit(6, "feet"),
  14246. weight: math.unit(150, "lb"),
  14247. name: "Front",
  14248. image: {
  14249. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14250. extra: 860 / 690,
  14251. bottom: 0.03
  14252. }
  14253. },
  14254. },
  14255. [
  14256. {
  14257. name: "Normal",
  14258. height: math.unit(1.7, "meters"),
  14259. default: true
  14260. },
  14261. ]
  14262. ))
  14263. characterMakers.push(() => makeCharacter(
  14264. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14265. {
  14266. front: {
  14267. height: math.unit(6, "feet"),
  14268. weight: math.unit(150, "lb"),
  14269. name: "Front",
  14270. image: {
  14271. source: "./media/characters/quilly/front.svg",
  14272. extra: 890 / 776
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Gigamacro",
  14279. height: math.unit(404090, "miles"),
  14280. default: true
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14286. {
  14287. front: {
  14288. height: math.unit(7 + 8 / 12, "feet"),
  14289. weight: math.unit(350, "lb"),
  14290. name: "Front",
  14291. image: {
  14292. source: "./media/characters/tempest/front.svg",
  14293. extra: 1175 / 1086,
  14294. bottom: 0.02
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(7 + 8 / 12, "feet"),
  14302. default: true
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14308. {
  14309. side: {
  14310. height: math.unit(4 + 5 / 12, "feet"),
  14311. weight: math.unit(80, "lb"),
  14312. name: "Side",
  14313. image: {
  14314. source: "./media/characters/rodger/side.svg",
  14315. extra: 1235 / 1118
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Micro",
  14322. height: math.unit(1, "inch")
  14323. },
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(4 + 5 / 12, "feet"),
  14327. default: true
  14328. },
  14329. {
  14330. name: "Macro",
  14331. height: math.unit(120, "feet")
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(6, "feet"),
  14340. weight: math.unit(150, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/danyel/front.svg",
  14344. extra: 1185 / 1123,
  14345. bottom: 0.05
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Shrunken",
  14352. height: math.unit(0.5, "mm")
  14353. },
  14354. {
  14355. name: "Micro",
  14356. height: math.unit(1, "mm"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Upsized",
  14361. height: math.unit(5 + 5 / 12, "feet")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(5 + 6 / 12, "feet"),
  14370. weight: math.unit(200, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/vivian-bijoux/front.svg",
  14374. extra: 1217/1209,
  14375. bottom: 76/1293
  14376. }
  14377. },
  14378. back: {
  14379. height: math.unit(5 + 6 / 12, "feet"),
  14380. weight: math.unit(200, "lb"),
  14381. name: "Back",
  14382. image: {
  14383. source: "./media/characters/vivian-bijoux/back.svg",
  14384. extra: 1214/1208,
  14385. bottom: 51/1265
  14386. }
  14387. },
  14388. dressed: {
  14389. height: math.unit(5 + 6 / 12, "feet"),
  14390. weight: math.unit(200, "lb"),
  14391. name: "Dressed",
  14392. image: {
  14393. source: "./media/characters/vivian-bijoux/dressed.svg",
  14394. extra: 1217/1209,
  14395. bottom: 76/1293
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(5 + 6 / 12, "feet"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Bad Dream",
  14407. height: math.unit(500, "feet")
  14408. },
  14409. {
  14410. name: "Nightmare",
  14411. height: math.unit(500, "miles")
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(6 + 1 / 12, "feet"),
  14420. weight: math.unit(260, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/zeta/front.svg",
  14424. extra: 1968 / 1889,
  14425. bottom: 0.06
  14426. }
  14427. },
  14428. back: {
  14429. height: math.unit(6 + 1 / 12, "feet"),
  14430. weight: math.unit(260, "lb"),
  14431. name: "Back",
  14432. image: {
  14433. source: "./media/characters/zeta/back.svg",
  14434. extra: 1944 / 1858,
  14435. bottom: 0.03
  14436. }
  14437. },
  14438. hand: {
  14439. height: math.unit(1.112, "feet"),
  14440. name: "Hand",
  14441. image: {
  14442. source: "./media/characters/zeta/hand.svg"
  14443. }
  14444. },
  14445. foot: {
  14446. height: math.unit(1.48, "feet"),
  14447. name: "Foot",
  14448. image: {
  14449. source: "./media/characters/zeta/foot.svg"
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Micro",
  14456. height: math.unit(6, "inches")
  14457. },
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(6 + 1 / 12, "feet"),
  14461. default: true
  14462. },
  14463. {
  14464. name: "Macro",
  14465. height: math.unit(20, "feet")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(150, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/jamie-larsen/front.svg",
  14478. extra: 962 / 933,
  14479. bottom: 0.02
  14480. }
  14481. },
  14482. back: {
  14483. height: math.unit(6, "feet"),
  14484. weight: math.unit(150, "lb"),
  14485. name: "Back",
  14486. image: {
  14487. source: "./media/characters/jamie-larsen/back.svg",
  14488. extra: 997 / 946
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(28 + 7 / 12, "feet"),
  14496. default: true
  14497. },
  14498. {
  14499. name: "Macro+",
  14500. height: math.unit(180, "feet")
  14501. },
  14502. {
  14503. name: "Megamacro",
  14504. height: math.unit(10, "miles")
  14505. },
  14506. {
  14507. name: "Gigamacro",
  14508. height: math.unit(200000, "miles")
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(6, "feet"),
  14517. weight: math.unit(120, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/vance/front.svg",
  14521. extra: 1980 / 1890,
  14522. bottom: 0.09
  14523. }
  14524. },
  14525. back: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(120, "lb"),
  14528. name: "Back",
  14529. image: {
  14530. source: "./media/characters/vance/back.svg",
  14531. extra: 2081 / 1994,
  14532. bottom: 0.014
  14533. }
  14534. },
  14535. hand: {
  14536. height: math.unit(0.88, "feet"),
  14537. name: "Hand",
  14538. image: {
  14539. source: "./media/characters/vance/hand.svg"
  14540. }
  14541. },
  14542. foot: {
  14543. height: math.unit(0.64, "feet"),
  14544. name: "Foot",
  14545. image: {
  14546. source: "./media/characters/vance/foot.svg"
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Small",
  14553. height: math.unit(90, "feet"),
  14554. default: true
  14555. },
  14556. {
  14557. name: "Macro",
  14558. height: math.unit(100, "meters")
  14559. },
  14560. {
  14561. name: "Megamacro",
  14562. height: math.unit(15, "miles")
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14568. {
  14569. front: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(180, "lb"),
  14572. name: "Front",
  14573. image: {
  14574. source: "./media/characters/xochitl/front.svg",
  14575. extra: 2297 / 2261,
  14576. bottom: 0.065
  14577. }
  14578. },
  14579. back: {
  14580. height: math.unit(6, "feet"),
  14581. weight: math.unit(180, "lb"),
  14582. name: "Back",
  14583. image: {
  14584. source: "./media/characters/xochitl/back.svg",
  14585. extra: 2386 / 2354,
  14586. bottom: 0.01
  14587. }
  14588. },
  14589. foot: {
  14590. height: math.unit(6 / 5 * 1.15, "feet"),
  14591. weight: math.unit(150, "lb"),
  14592. name: "Foot",
  14593. image: {
  14594. source: "./media/characters/xochitl/foot.svg"
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Macro",
  14601. height: math.unit(80, "feet")
  14602. },
  14603. {
  14604. name: "Macro+",
  14605. height: math.unit(400, "feet"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Gigamacro",
  14610. height: math.unit(80000, "miles")
  14611. },
  14612. {
  14613. name: "Gigamacro+",
  14614. height: math.unit(400000, "miles")
  14615. },
  14616. {
  14617. name: "Teramacro",
  14618. height: math.unit(300, "AU")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(6, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/vincent/front.svg",
  14631. extra: 1130 / 1080,
  14632. bottom: 0.055
  14633. }
  14634. },
  14635. beak: {
  14636. height: math.unit(6 * 0.1, "feet"),
  14637. name: "Beak",
  14638. image: {
  14639. source: "./media/characters/vincent/beak.svg"
  14640. }
  14641. },
  14642. hand: {
  14643. height: math.unit(6 * 0.85, "feet"),
  14644. weight: math.unit(150, "lb"),
  14645. name: "Hand",
  14646. image: {
  14647. source: "./media/characters/vincent/hand.svg"
  14648. }
  14649. },
  14650. foot: {
  14651. height: math.unit(6 * 0.19, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Foot",
  14654. image: {
  14655. source: "./media/characters/vincent/foot.svg"
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Base",
  14662. height: math.unit(6 + 5 / 12, "feet"),
  14663. default: true
  14664. },
  14665. {
  14666. name: "Macro",
  14667. height: math.unit(300, "feet")
  14668. },
  14669. {
  14670. name: "Megamacro",
  14671. height: math.unit(2, "miles")
  14672. },
  14673. {
  14674. name: "Gigamacro",
  14675. height: math.unit(1000, "miles")
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(2, "meters"),
  14684. weight: math.unit(500, "kg"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/coatl/front.svg",
  14688. extra: 3948 / 3500,
  14689. bottom: 0.082
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Normal",
  14696. height: math.unit(4, "meters")
  14697. },
  14698. {
  14699. name: "Macro",
  14700. height: math.unit(100, "meters"),
  14701. default: true
  14702. },
  14703. {
  14704. name: "Macro+",
  14705. height: math.unit(300, "meters")
  14706. },
  14707. {
  14708. name: "Megamacro",
  14709. height: math.unit(3, "gigameters")
  14710. },
  14711. {
  14712. name: "Megamacro+",
  14713. height: math.unit(300, "terameters")
  14714. },
  14715. {
  14716. name: "Megamacro++",
  14717. height: math.unit(3, "lightyears")
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(6, "feet"),
  14726. weight: math.unit(50, "kg"),
  14727. name: "front",
  14728. image: {
  14729. source: "./media/characters/shiroryu/front.svg",
  14730. extra: 1990 / 1935
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Mortal Mingling",
  14737. height: math.unit(3, "meters")
  14738. },
  14739. {
  14740. name: "Kaiju-ish",
  14741. height: math.unit(250, "meters")
  14742. },
  14743. {
  14744. name: "Somewhat Godly",
  14745. height: math.unit(400, "km"),
  14746. default: true
  14747. },
  14748. {
  14749. name: "Planetary",
  14750. height: math.unit(300, "megameters")
  14751. },
  14752. {
  14753. name: "Galaxy-dwarfing",
  14754. height: math.unit(450, "kiloparsecs")
  14755. },
  14756. {
  14757. name: "Universe Eater",
  14758. height: math.unit(150, "gigaparsecs")
  14759. },
  14760. {
  14761. name: "Almost Immeasurable",
  14762. height: math.unit(1.3e266, "yottaparsecs")
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(150, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/umeko/front.svg",
  14775. extra: 1,
  14776. bottom: 0.019
  14777. }
  14778. },
  14779. frontArmored: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(150, "lb"),
  14782. name: "Front (Armored)",
  14783. image: {
  14784. source: "./media/characters/umeko/front-armored.svg",
  14785. extra: 1,
  14786. bottom: 0.021
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Macro",
  14793. height: math.unit(220, "feet"),
  14794. default: true
  14795. },
  14796. {
  14797. name: "Guardian Dragon",
  14798. height: math.unit(50, "miles")
  14799. },
  14800. {
  14801. name: "Cosmic",
  14802. height: math.unit(800000, "miles")
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(150, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/cassidy/front.svg",
  14815. extra: 810/808,
  14816. bottom: 41/851
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Canon Height",
  14823. height: math.unit(120, "feet"),
  14824. default: true
  14825. },
  14826. {
  14827. name: "Macro+",
  14828. height: math.unit(400, "feet")
  14829. },
  14830. {
  14831. name: "Macro++",
  14832. height: math.unit(4000, "feet")
  14833. },
  14834. {
  14835. name: "Megamacro",
  14836. height: math.unit(3, "miles")
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/isaac/front.svg",
  14849. extra: 896 / 815,
  14850. bottom: 0.11
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Human Size",
  14857. height: math.unit(8, "feet"),
  14858. default: true
  14859. },
  14860. {
  14861. name: "Macro",
  14862. height: math.unit(400, "feet")
  14863. },
  14864. {
  14865. name: "Megamacro",
  14866. height: math.unit(50, "miles")
  14867. },
  14868. {
  14869. name: "Canon Height",
  14870. height: math.unit(200, "AU")
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(72, "kg"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/sleekit/front.svg",
  14883. extra: 4693 / 4487,
  14884. bottom: 0.012
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Minimum Height",
  14891. height: math.unit(10, "meters")
  14892. },
  14893. {
  14894. name: "Smaller",
  14895. height: math.unit(25, "meters")
  14896. },
  14897. {
  14898. name: "Larger",
  14899. height: math.unit(38, "meters"),
  14900. default: true
  14901. },
  14902. {
  14903. name: "Maximum height",
  14904. height: math.unit(100, "meters")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(150, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/nillia/front.svg",
  14917. extra: 2195 / 2037,
  14918. bottom: 0.005
  14919. }
  14920. },
  14921. back: {
  14922. height: math.unit(6, "feet"),
  14923. weight: math.unit(150, "lb"),
  14924. name: "Back",
  14925. image: {
  14926. source: "./media/characters/nillia/back.svg",
  14927. extra: 2195 / 2037,
  14928. bottom: 0.005
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Canon Height",
  14935. height: math.unit(489, "feet"),
  14936. default: true
  14937. }
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(6, "feet"),
  14945. weight: math.unit(150, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/mesmyriza/front.svg",
  14949. extra: 2067 / 1784,
  14950. bottom: 0.035
  14951. }
  14952. },
  14953. foot: {
  14954. height: math.unit(6 / (250 / 35), "feet"),
  14955. name: "Foot",
  14956. image: {
  14957. source: "./media/characters/mesmyriza/foot.svg"
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Macro",
  14964. height: math.unit(457, "meters"),
  14965. default: true
  14966. },
  14967. {
  14968. name: "Megamacro",
  14969. height: math.unit(8, "megameters")
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(250, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/saudade/front.svg",
  14982. extra: 1172 / 1139,
  14983. bottom: 0.035
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Micro",
  14990. height: math.unit(3, "inches")
  14991. },
  14992. {
  14993. name: "Normal",
  14994. height: math.unit(6, "feet"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Macro",
  14999. height: math.unit(50, "feet")
  15000. },
  15001. {
  15002. name: "Megamacro",
  15003. height: math.unit(2800, "feet")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(5 + 4 / 12, "feet"),
  15012. weight: math.unit(100, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/keireer/front.svg",
  15016. extra: 716 / 666,
  15017. bottom: 0.05
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(5 + 4 / 12, "feet"),
  15025. default: true
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(6, "feet"),
  15034. weight: math.unit(90, "kg"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/mirja/front.svg",
  15038. extra: 1789 / 1683,
  15039. bottom: 0.05
  15040. }
  15041. },
  15042. frontDressed: {
  15043. height: math.unit(6, "feet"),
  15044. weight: math.unit(90, "lb"),
  15045. name: "Front (Dressed)",
  15046. image: {
  15047. source: "./media/characters/mirja/front-dressed.svg",
  15048. extra: 1789 / 1683,
  15049. bottom: 0.05
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(6, "feet"),
  15054. weight: math.unit(90, "lb"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/mirja/back.svg",
  15058. extra: 953 / 917,
  15059. bottom: 0.017
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "\"Incognito\"",
  15066. height: math.unit(3, "meters")
  15067. },
  15068. {
  15069. name: "Strolling Size",
  15070. height: math.unit(15, "km")
  15071. },
  15072. {
  15073. name: "Larger Strolling Size",
  15074. height: math.unit(400, "km")
  15075. },
  15076. {
  15077. name: "Preferred Size",
  15078. height: math.unit(5000, "km")
  15079. },
  15080. {
  15081. name: "True Size",
  15082. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15083. default: true
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(15, "feet"),
  15092. weight: math.unit(880, "kg"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/nightraver/front.svg",
  15096. extra: 2444 / 2160,
  15097. bottom: 0.027
  15098. }
  15099. },
  15100. back: {
  15101. height: math.unit(15, "feet"),
  15102. weight: math.unit(880, "kg"),
  15103. name: "Back",
  15104. image: {
  15105. source: "./media/characters/nightraver/back.svg",
  15106. extra: 2309 / 2180,
  15107. bottom: 0.005
  15108. }
  15109. },
  15110. sole: {
  15111. height: math.unit(2.878, "feet"),
  15112. name: "Sole",
  15113. image: {
  15114. source: "./media/characters/nightraver/sole.svg"
  15115. }
  15116. },
  15117. foot: {
  15118. height: math.unit(2.285, "feet"),
  15119. name: "Foot",
  15120. image: {
  15121. source: "./media/characters/nightraver/foot.svg"
  15122. }
  15123. },
  15124. maw: {
  15125. height: math.unit(2.67, "feet"),
  15126. name: "Maw",
  15127. image: {
  15128. source: "./media/characters/nightraver/maw.svg"
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Micro",
  15135. height: math.unit(1, "cm")
  15136. },
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(15, "feet"),
  15140. default: true
  15141. },
  15142. {
  15143. name: "Macro",
  15144. height: math.unit(300, "feet")
  15145. },
  15146. {
  15147. name: "Megamacro",
  15148. height: math.unit(300, "miles")
  15149. },
  15150. {
  15151. name: "Gigamacro",
  15152. height: math.unit(10000, "miles")
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15158. {
  15159. side: {
  15160. height: math.unit(2, "inches"),
  15161. weight: math.unit(5, "grams"),
  15162. name: "Side",
  15163. image: {
  15164. source: "./media/characters/arc/side.svg"
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Micro",
  15171. height: math.unit(2, "inches"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15178. {
  15179. front: {
  15180. height: math.unit(1.1938, "meters"),
  15181. weight: math.unit(54, "kg"),
  15182. name: "Front",
  15183. image: {
  15184. source: "./media/characters/nebula-shahar/front.svg",
  15185. extra: 1642 / 1436,
  15186. bottom: 0.06
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Megamicro",
  15193. height: math.unit(0.3, "mm")
  15194. },
  15195. {
  15196. name: "Micro",
  15197. height: math.unit(3, "cm")
  15198. },
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(138, "cm"),
  15202. default: true
  15203. },
  15204. {
  15205. name: "Macro",
  15206. height: math.unit(30, "m")
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(5.24, "feet"),
  15215. weight: math.unit(150, "lb"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/shayla/front.svg",
  15219. extra: 1512 / 1414,
  15220. bottom: 0.01
  15221. }
  15222. },
  15223. back: {
  15224. height: math.unit(5.24, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Back",
  15227. image: {
  15228. source: "./media/characters/shayla/back.svg",
  15229. extra: 1512 / 1414
  15230. }
  15231. },
  15232. hand: {
  15233. height: math.unit(0.7781496062992126, "feet"),
  15234. name: "Hand",
  15235. image: {
  15236. source: "./media/characters/shayla/hand.svg"
  15237. }
  15238. },
  15239. foot: {
  15240. height: math.unit(1.4206036745406823, "feet"),
  15241. name: "Foot",
  15242. image: {
  15243. source: "./media/characters/shayla/foot.svg"
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Micro",
  15250. height: math.unit(0.32, "feet")
  15251. },
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(5.24, "feet"),
  15255. default: true
  15256. },
  15257. {
  15258. name: "Macro",
  15259. height: math.unit(492.12, "feet")
  15260. },
  15261. {
  15262. name: "Megamacro",
  15263. height: math.unit(186.41, "miles")
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(2.2, "m"),
  15272. weight: math.unit(120, "kg"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/pia-jr/front.svg",
  15276. extra: 1000 / 970,
  15277. bottom: 0.035
  15278. }
  15279. },
  15280. hand: {
  15281. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15282. name: "Hand",
  15283. image: {
  15284. source: "./media/characters/pia-jr/hand.svg"
  15285. }
  15286. },
  15287. paw: {
  15288. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15289. name: "Paw",
  15290. image: {
  15291. source: "./media/characters/pia-jr/paw.svg"
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Micro",
  15298. height: math.unit(1.2, "cm")
  15299. },
  15300. {
  15301. name: "Normal",
  15302. height: math.unit(2.2, "m"),
  15303. default: true
  15304. },
  15305. {
  15306. name: "Macro",
  15307. height: math.unit(180, "m")
  15308. },
  15309. {
  15310. name: "Megamacro",
  15311. height: math.unit(420, "km")
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(2, "m"),
  15320. weight: math.unit(115, "kg"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/pia-sr/front.svg",
  15324. extra: 760 / 730,
  15325. bottom: 0.015
  15326. }
  15327. },
  15328. back: {
  15329. height: math.unit(2, "m"),
  15330. weight: math.unit(115, "kg"),
  15331. name: "Back",
  15332. image: {
  15333. source: "./media/characters/pia-sr/back.svg",
  15334. extra: 760 / 730,
  15335. bottom: 0.01
  15336. }
  15337. },
  15338. hand: {
  15339. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15340. name: "Hand",
  15341. image: {
  15342. source: "./media/characters/pia-sr/hand.svg"
  15343. }
  15344. },
  15345. foot: {
  15346. height: math.unit(1.83, "feet"),
  15347. name: "Foot",
  15348. image: {
  15349. source: "./media/characters/pia-sr/foot.svg"
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Micro",
  15356. height: math.unit(88, "mm")
  15357. },
  15358. {
  15359. name: "Normal",
  15360. height: math.unit(2, "m"),
  15361. default: true
  15362. },
  15363. {
  15364. name: "Macro",
  15365. height: math.unit(200, "m")
  15366. },
  15367. {
  15368. name: "Megamacro",
  15369. height: math.unit(420, "km")
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(8 + 2 / 12, "feet"),
  15378. weight: math.unit(300, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/kibibyte/front.svg",
  15382. extra: 2221 / 2098,
  15383. bottom: 0.04
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(8 + 2 / 12, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Socialable Macro",
  15395. height: math.unit(50, "feet")
  15396. },
  15397. {
  15398. name: "Macro",
  15399. height: math.unit(300, "feet")
  15400. },
  15401. {
  15402. name: "Megamacro",
  15403. height: math.unit(500, "miles")
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(6, "feet"),
  15412. weight: math.unit(150, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/felix/front.svg",
  15416. extra: 762 / 722,
  15417. bottom: 0.02
  15418. }
  15419. },
  15420. frontClothed: {
  15421. height: math.unit(6, "feet"),
  15422. weight: math.unit(150, "lb"),
  15423. name: "Front (Clothed)",
  15424. image: {
  15425. source: "./media/characters/felix/front-clothed.svg",
  15426. extra: 762 / 722,
  15427. bottom: 0.02
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(6 + 8 / 12, "feet"),
  15435. default: true
  15436. },
  15437. {
  15438. name: "Macro",
  15439. height: math.unit(2600, "feet")
  15440. },
  15441. {
  15442. name: "Megamacro",
  15443. height: math.unit(450, "miles")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6 + 1 / 12, "feet"),
  15452. weight: math.unit(250, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/tobo/front.svg",
  15456. extra: 608 / 586,
  15457. bottom: 0.023
  15458. }
  15459. },
  15460. back: {
  15461. height: math.unit(6 + 1 / 12, "feet"),
  15462. weight: math.unit(250, "lb"),
  15463. name: "Back",
  15464. image: {
  15465. source: "./media/characters/tobo/back.svg",
  15466. extra: 608 / 586
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Nano",
  15473. height: math.unit(2, "nm")
  15474. },
  15475. {
  15476. name: "Megamicro",
  15477. height: math.unit(0.1, "mm")
  15478. },
  15479. {
  15480. name: "Micro",
  15481. height: math.unit(1, "inch"),
  15482. default: true
  15483. },
  15484. {
  15485. name: "Human-sized",
  15486. height: math.unit(6 + 1 / 12, "feet")
  15487. },
  15488. {
  15489. name: "Macro",
  15490. height: math.unit(250, "feet")
  15491. },
  15492. {
  15493. name: "Megamacro",
  15494. height: math.unit(75, "miles")
  15495. },
  15496. {
  15497. name: "Texas-sized",
  15498. height: math.unit(750, "miles")
  15499. },
  15500. {
  15501. name: "Teramacro",
  15502. height: math.unit(50000, "miles")
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15508. {
  15509. front: {
  15510. height: math.unit(6, "feet"),
  15511. weight: math.unit(269, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/danny-kapowsky/front.svg",
  15515. extra: 766 / 736,
  15516. bottom: 0.044
  15517. }
  15518. },
  15519. back: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(269, "lb"),
  15522. name: "Back",
  15523. image: {
  15524. source: "./media/characters/danny-kapowsky/back.svg",
  15525. extra: 797 / 760,
  15526. bottom: 0.025
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Macro",
  15533. height: math.unit(150, "feet"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Macro+",
  15538. height: math.unit(200, "feet")
  15539. },
  15540. {
  15541. name: "Macro++",
  15542. height: math.unit(300, "feet")
  15543. },
  15544. {
  15545. name: "Macro+++",
  15546. height: math.unit(400, "feet")
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15552. {
  15553. side: {
  15554. height: math.unit(6, "feet"),
  15555. weight: math.unit(170, "lb"),
  15556. name: "Side",
  15557. image: {
  15558. source: "./media/characters/finn/side.svg",
  15559. extra: 1953 / 1807,
  15560. bottom: 0.057
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Megamacro",
  15567. height: math.unit(14445, "feet"),
  15568. default: true
  15569. },
  15570. ]
  15571. ))
  15572. characterMakers.push(() => makeCharacter(
  15573. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15574. {
  15575. front: {
  15576. height: math.unit(5 + 6 / 12, "feet"),
  15577. weight: math.unit(125, "lb"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/roy/front.svg",
  15581. extra: 1,
  15582. bottom: 0.11
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Micro",
  15589. height: math.unit(3, "inches"),
  15590. default: true
  15591. },
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(5 + 6 / 12, "feet")
  15595. },
  15596. {
  15597. name: "Lesser Macro",
  15598. height: math.unit(60, "feet")
  15599. },
  15600. {
  15601. name: "Greater Macro",
  15602. height: math.unit(120, "feet")
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6, "feet"),
  15611. weight: math.unit(100, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/aevsivs/front.svg",
  15615. extra: 1,
  15616. bottom: 0.03
  15617. }
  15618. },
  15619. back: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(100, "lb"),
  15622. name: "Back",
  15623. image: {
  15624. source: "./media/characters/aevsivs/back.svg"
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Micro",
  15631. height: math.unit(2, "inches"),
  15632. default: true
  15633. },
  15634. {
  15635. name: "Normal",
  15636. height: math.unit(5, "feet")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(5 + 7 / 12, "feet"),
  15645. weight: math.unit(159, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/hildegard/front.svg",
  15649. extra: 289 / 269,
  15650. bottom: 7.63 / 297.8
  15651. }
  15652. },
  15653. back: {
  15654. height: math.unit(5 + 7 / 12, "feet"),
  15655. weight: math.unit(159, "lb"),
  15656. name: "Back",
  15657. image: {
  15658. source: "./media/characters/hildegard/back.svg",
  15659. extra: 280 / 260,
  15660. bottom: 2.3 / 282
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Normal",
  15667. height: math.unit(5 + 7 / 12, "feet"),
  15668. default: true
  15669. },
  15670. ]
  15671. ))
  15672. characterMakers.push(() => makeCharacter(
  15673. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15674. {
  15675. bernard: {
  15676. height: math.unit(2 + 7 / 12, "feet"),
  15677. weight: math.unit(66, "lb"),
  15678. name: "Bernard",
  15679. rename: true,
  15680. image: {
  15681. source: "./media/characters/bernard-wilder/bernard.svg",
  15682. extra: 192 / 128,
  15683. bottom: 0.05
  15684. }
  15685. },
  15686. wilder: {
  15687. height: math.unit(5 + 8 / 12, "feet"),
  15688. weight: math.unit(143, "lb"),
  15689. name: "Wilder",
  15690. rename: true,
  15691. image: {
  15692. source: "./media/characters/bernard-wilder/wilder.svg",
  15693. extra: 361 / 312,
  15694. bottom: 0.02
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(2 + 7 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15708. {
  15709. anthro: {
  15710. height: math.unit(6 + 1 / 12, "feet"),
  15711. weight: math.unit(155, "lb"),
  15712. name: "Anthro",
  15713. image: {
  15714. source: "./media/characters/hearth/anthro.svg",
  15715. extra: 1178/1136,
  15716. bottom: 28/1206
  15717. }
  15718. },
  15719. feral: {
  15720. height: math.unit(3.78, "feet"),
  15721. weight: math.unit(35, "kg"),
  15722. name: "Feral",
  15723. image: {
  15724. source: "./media/characters/hearth/feral.svg",
  15725. extra: 153 / 135,
  15726. bottom: 0.03
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(6 + 1 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(6, "feet"),
  15743. weight: math.unit(182, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/ingrid/front.svg",
  15747. extra: 294 / 268,
  15748. bottom: 0.027
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(6, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15762. {
  15763. eevee: {
  15764. height: math.unit(2 + 10 / 12, "feet"),
  15765. weight: math.unit(86, "lb"),
  15766. name: "Malgam",
  15767. image: {
  15768. source: "./media/characters/malgam/eevee.svg",
  15769. extra: 952/784,
  15770. bottom: 38/990
  15771. }
  15772. },
  15773. sylveon: {
  15774. height: math.unit(4, "feet"),
  15775. weight: math.unit(101, "lb"),
  15776. name: "Future Malgam",
  15777. rename: true,
  15778. image: {
  15779. source: "./media/characters/malgam/sylveon.svg",
  15780. extra: 371 / 325,
  15781. bottom: 0.015
  15782. }
  15783. },
  15784. gigantamax: {
  15785. height: math.unit(50, "feet"),
  15786. name: "Gigantamax Malgam",
  15787. rename: true,
  15788. image: {
  15789. source: "./media/characters/malgam/gigantamax.svg"
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Normal",
  15796. height: math.unit(2 + 10 / 12, "feet"),
  15797. default: true
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15803. {
  15804. front: {
  15805. height: math.unit(5 + 11 / 12, "feet"),
  15806. weight: math.unit(188, "lb"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/fleur/front.svg",
  15810. extra: 309 / 283,
  15811. bottom: 0.007
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(5 + 11 / 12, "feet"),
  15819. default: true
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(5 + 4 / 12, "feet"),
  15828. weight: math.unit(122, "lb"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/jude/front.svg",
  15832. extra: 288 / 273,
  15833. bottom: 0.03
  15834. }
  15835. },
  15836. },
  15837. [
  15838. {
  15839. name: "Normal",
  15840. height: math.unit(5 + 4 / 12, "feet"),
  15841. default: true
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15847. {
  15848. front: {
  15849. height: math.unit(5 + 11 / 12, "feet"),
  15850. weight: math.unit(190, "lb"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/seara/front.svg",
  15854. extra: 1,
  15855. bottom: 0.05
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Normal",
  15862. height: math.unit(5 + 11 / 12, "feet"),
  15863. default: true
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(16 + 5 / 12, "feet"),
  15872. weight: math.unit(524, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/caspian-lugia/front.svg",
  15876. extra: 1,
  15877. bottom: 0.04
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(16 + 5 / 12, "feet"),
  15885. default: true
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(5 + 7 / 12, "feet"),
  15894. weight: math.unit(170, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/mika/front.svg",
  15898. extra: 1,
  15899. bottom: 0.016
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(5 + 7 / 12, "feet"),
  15907. default: true
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15913. {
  15914. front: {
  15915. height: math.unit(6 + 2 / 12, "feet"),
  15916. weight: math.unit(268, "lb"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/sol/front.svg",
  15920. extra: 247 / 231,
  15921. bottom: 0.05
  15922. }
  15923. },
  15924. },
  15925. [
  15926. {
  15927. name: "Normal",
  15928. height: math.unit(6 + 2 / 12, "feet"),
  15929. default: true
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15935. {
  15936. buizel: {
  15937. height: math.unit(2 + 5 / 12, "feet"),
  15938. weight: math.unit(87, "lb"),
  15939. name: "Front",
  15940. image: {
  15941. source: "./media/characters/umiko/buizel.svg",
  15942. extra: 172 / 157,
  15943. bottom: 0.01
  15944. },
  15945. form: "buizel",
  15946. default: true
  15947. },
  15948. floatzel: {
  15949. height: math.unit(5 + 9 / 12, "feet"),
  15950. weight: math.unit(250, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/umiko/floatzel.svg",
  15954. extra: 1076/1006,
  15955. bottom: 15/1091
  15956. },
  15957. form: "floatzel",
  15958. default: true
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(2 + 5 / 12, "feet"),
  15965. form: "buizel",
  15966. default: true
  15967. },
  15968. {
  15969. name: "Normal",
  15970. height: math.unit(5 + 9 / 12, "feet"),
  15971. form: "floatzel",
  15972. default: true
  15973. },
  15974. ],
  15975. {
  15976. "buizel": {
  15977. name: "Buizel"
  15978. },
  15979. "floatzel": {
  15980. name: "Floatzel",
  15981. default: true
  15982. }
  15983. }
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15987. {
  15988. front: {
  15989. height: math.unit(6 + 2 / 12, "feet"),
  15990. weight: math.unit(146, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/iliac/front.svg",
  15994. extra: 389 / 365,
  15995. bottom: 0.035
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(6 + 2 / 12, "feet"),
  16003. default: true
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6, "feet"),
  16012. weight: math.unit(170, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/topaz/front.svg",
  16016. extra: 317 / 303,
  16017. bottom: 0.055
  16018. }
  16019. },
  16020. },
  16021. [
  16022. {
  16023. name: "Normal",
  16024. height: math.unit(6, "feet"),
  16025. default: true
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(5 + 11 / 12, "feet"),
  16034. weight: math.unit(144, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/gabriel/front.svg",
  16038. extra: 285 / 262,
  16039. bottom: 0.004
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(5 + 11 / 12, "feet"),
  16047. default: true
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16053. {
  16054. side: {
  16055. height: math.unit(6 + 5 / 12, "feet"),
  16056. weight: math.unit(300, "lb"),
  16057. name: "Side",
  16058. image: {
  16059. source: "./media/characters/tempest-suicune/side.svg",
  16060. extra: 195 / 154,
  16061. bottom: 0.04
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(6 + 5 / 12, "feet"),
  16069. default: true
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16075. {
  16076. front: {
  16077. height: math.unit(7 + 2 / 12, "feet"),
  16078. weight: math.unit(322, "lb"),
  16079. name: "Front",
  16080. image: {
  16081. source: "./media/characters/vulcan/front.svg",
  16082. extra: 154 / 147,
  16083. bottom: 0.04
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(7 + 2 / 12, "feet"),
  16091. default: true
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16097. {
  16098. front: {
  16099. height: math.unit(5 + 10 / 12, "feet"),
  16100. weight: math.unit(264, "lb"),
  16101. name: "Front",
  16102. image: {
  16103. source: "./media/characters/gault/front.svg",
  16104. extra: 161 / 140,
  16105. bottom: 0.028
  16106. }
  16107. },
  16108. },
  16109. [
  16110. {
  16111. name: "Normal",
  16112. height: math.unit(5 + 10 / 12, "feet"),
  16113. default: true
  16114. },
  16115. ]
  16116. ))
  16117. characterMakers.push(() => makeCharacter(
  16118. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16119. {
  16120. front: {
  16121. height: math.unit(6, "feet"),
  16122. weight: math.unit(150, "lb"),
  16123. name: "Front",
  16124. image: {
  16125. source: "./media/characters/shard/front.svg",
  16126. extra: 273 / 238,
  16127. bottom: 0.02
  16128. }
  16129. },
  16130. },
  16131. [
  16132. {
  16133. name: "Normal",
  16134. height: math.unit(3 + 6 / 12, "feet"),
  16135. default: true
  16136. },
  16137. ]
  16138. ))
  16139. characterMakers.push(() => makeCharacter(
  16140. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16141. {
  16142. front: {
  16143. height: math.unit(5 + 11 / 12, "feet"),
  16144. weight: math.unit(146, "lb"),
  16145. name: "Front",
  16146. image: {
  16147. source: "./media/characters/ashe/front.svg",
  16148. extra: 400 / 373,
  16149. bottom: 0.01
  16150. }
  16151. },
  16152. },
  16153. [
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(5 + 11 / 12, "feet"),
  16157. default: true
  16158. },
  16159. ]
  16160. ))
  16161. characterMakers.push(() => makeCharacter(
  16162. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16163. {
  16164. front: {
  16165. height: math.unit(5 + 5 / 12, "feet"),
  16166. weight: math.unit(135, "lb"),
  16167. name: "Front",
  16168. image: {
  16169. source: "./media/characters/beatrix/front.svg",
  16170. extra: 392 / 379,
  16171. bottom: 0.01
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(6, "feet"),
  16179. default: true
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16185. {
  16186. front: {
  16187. height: math.unit(6 + 2/12, "feet"),
  16188. weight: math.unit(135, "lb"),
  16189. name: "Front",
  16190. image: {
  16191. source: "./media/characters/ignatius/front.svg",
  16192. extra: 1380/1259,
  16193. bottom: 27/1407
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Normal",
  16200. height: math.unit(6 + 2/12, "feet"),
  16201. default: true
  16202. },
  16203. ]
  16204. ))
  16205. characterMakers.push(() => makeCharacter(
  16206. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16207. {
  16208. front: {
  16209. height: math.unit(6 + 2 / 12, "feet"),
  16210. weight: math.unit(138, "lb"),
  16211. name: "Front",
  16212. image: {
  16213. source: "./media/characters/mei-li/front.svg",
  16214. extra: 237 / 229,
  16215. bottom: 0.03
  16216. }
  16217. },
  16218. },
  16219. [
  16220. {
  16221. name: "Normal",
  16222. height: math.unit(6 + 2 / 12, "feet"),
  16223. default: true
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(2 + 4 / 12, "feet"),
  16232. weight: math.unit(62, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/puru/front.svg",
  16236. extra: 206 / 149,
  16237. bottom: 0.06
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(2 + 4 / 12, "feet"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16251. {
  16252. anthro: {
  16253. height: math.unit(5 + 8/12, "feet"),
  16254. weight: math.unit(200, "lb"),
  16255. energyNeed: math.unit(2000, "kcal"),
  16256. name: "Anthro",
  16257. image: {
  16258. source: "./media/characters/kee/anthro.svg",
  16259. extra: 3251/3184,
  16260. bottom: 250/3501
  16261. }
  16262. },
  16263. taur: {
  16264. height: math.unit(11, "feet"),
  16265. weight: math.unit(500, "lb"),
  16266. energyNeed: math.unit(5000, "kcal"),
  16267. name: "Taur",
  16268. image: {
  16269. source: "./media/characters/kee/taur.svg",
  16270. extra: 1362/1320,
  16271. bottom: 83/1445
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(5 + 8/12, "feet"),
  16279. default: true
  16280. },
  16281. {
  16282. name: "Macro",
  16283. height: math.unit(35, "feet")
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16289. {
  16290. anthro: {
  16291. height: math.unit(7, "feet"),
  16292. weight: math.unit(190, "lb"),
  16293. name: "Anthro",
  16294. image: {
  16295. source: "./media/characters/cobalt-dracha/anthro.svg",
  16296. extra: 231 / 225,
  16297. bottom: 0.04
  16298. }
  16299. },
  16300. feral: {
  16301. height: math.unit(9 + 7 / 12, "feet"),
  16302. weight: math.unit(294, "lb"),
  16303. name: "Feral",
  16304. image: {
  16305. source: "./media/characters/cobalt-dracha/feral.svg",
  16306. extra: 692 / 633,
  16307. bottom: 0.05
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Normal",
  16314. height: math.unit(7, "feet"),
  16315. default: true
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16321. {
  16322. fallen: {
  16323. height: math.unit(11 + 8 / 12, "feet"),
  16324. weight: math.unit(485, "lb"),
  16325. name: "Java (Fallen)",
  16326. rename: true,
  16327. image: {
  16328. source: "./media/characters/java/fallen.svg",
  16329. extra: 226 / 208,
  16330. bottom: 0.005
  16331. }
  16332. },
  16333. godkin: {
  16334. height: math.unit(10 + 6 / 12, "feet"),
  16335. weight: math.unit(328, "lb"),
  16336. name: "Java (Godkin)",
  16337. rename: true,
  16338. image: {
  16339. source: "./media/characters/java/godkin.svg",
  16340. extra: 1104/1068,
  16341. bottom: 36/1140
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(11 + 8 / 12, "feet"),
  16349. default: true
  16350. },
  16351. ]
  16352. ))
  16353. characterMakers.push(() => makeCharacter(
  16354. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16355. {
  16356. front: {
  16357. height: math.unit(5 + 9 / 12, "feet"),
  16358. weight: math.unit(170, "lb"),
  16359. name: "Front",
  16360. image: {
  16361. source: "./media/characters/purna/front.svg",
  16362. extra: 239 / 229,
  16363. bottom: 0.01
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(5 + 9 / 12, "feet"),
  16371. default: true
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16377. {
  16378. front: {
  16379. height: math.unit(5 + 9 / 12, "feet"),
  16380. weight: math.unit(142, "lb"),
  16381. name: "Front",
  16382. image: {
  16383. source: "./media/characters/kuva/front.svg",
  16384. extra: 281 / 271,
  16385. bottom: 0.006
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(5 + 9 / 12, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16399. {
  16400. anthro: {
  16401. height: math.unit(9 + 2 / 12, "feet"),
  16402. weight: math.unit(270, "lb"),
  16403. name: "Anthro",
  16404. image: {
  16405. source: "./media/characters/embra/anthro.svg",
  16406. extra: 200 / 187,
  16407. bottom: 0.02
  16408. }
  16409. },
  16410. feral: {
  16411. height: math.unit(18 + 8 / 12, "feet"),
  16412. weight: math.unit(576, "lb"),
  16413. name: "Feral",
  16414. image: {
  16415. source: "./media/characters/embra/feral.svg",
  16416. extra: 152 / 137,
  16417. bottom: 0.037
  16418. }
  16419. },
  16420. },
  16421. [
  16422. {
  16423. name: "Normal",
  16424. height: math.unit(9 + 2 / 12, "feet"),
  16425. default: true
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16431. {
  16432. anthro: {
  16433. height: math.unit(10 + 9 / 12, "feet"),
  16434. weight: math.unit(224, "lb"),
  16435. name: "Anthro",
  16436. image: {
  16437. source: "./media/characters/grottos/anthro.svg",
  16438. extra: 350 / 332,
  16439. bottom: 0.045
  16440. }
  16441. },
  16442. feral: {
  16443. height: math.unit(20 + 7 / 12, "feet"),
  16444. weight: math.unit(629, "lb"),
  16445. name: "Feral",
  16446. image: {
  16447. source: "./media/characters/grottos/feral.svg",
  16448. extra: 207 / 190,
  16449. bottom: 0.05
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Normal",
  16456. height: math.unit(10 + 9 / 12, "feet"),
  16457. default: true
  16458. },
  16459. ]
  16460. ))
  16461. characterMakers.push(() => makeCharacter(
  16462. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16463. {
  16464. anthro: {
  16465. height: math.unit(9 + 6 / 12, "feet"),
  16466. weight: math.unit(298, "lb"),
  16467. name: "Anthro",
  16468. image: {
  16469. source: "./media/characters/frifna/anthro.svg",
  16470. extra: 282 / 269,
  16471. bottom: 0.015
  16472. }
  16473. },
  16474. feral: {
  16475. height: math.unit(16 + 2 / 12, "feet"),
  16476. weight: math.unit(624, "lb"),
  16477. name: "Feral",
  16478. image: {
  16479. source: "./media/characters/frifna/feral.svg"
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(9 + 6 / 12, "feet"),
  16487. default: true
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16493. {
  16494. front: {
  16495. height: math.unit(6 + 2 / 12, "feet"),
  16496. weight: math.unit(168, "lb"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/elise/front.svg",
  16500. extra: 276 / 271
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(6 + 2 / 12, "feet"),
  16508. default: true
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16514. {
  16515. front: {
  16516. height: math.unit(5 + 10 / 12, "feet"),
  16517. weight: math.unit(210, "lb"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/glade/front.svg",
  16521. extra: 258 / 247,
  16522. bottom: 0.008
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Normal",
  16529. height: math.unit(5 + 10 / 12, "feet"),
  16530. default: true
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(5 + 10 / 12, "feet"),
  16539. weight: math.unit(129, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/rina/front.svg",
  16543. extra: 266 / 255,
  16544. bottom: 0.005
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(5 + 10 / 12, "feet"),
  16552. default: true
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(6 + 1 / 12, "feet"),
  16561. weight: math.unit(192, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/veronica/front.svg",
  16565. extra: 319 / 309,
  16566. bottom: 0.005
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(6 + 1 / 12, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(9 + 3 / 12, "feet"),
  16583. weight: math.unit(1100, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/braxton/front.svg",
  16587. extra: 1057 / 984,
  16588. bottom: 0.05
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(9 + 3 / 12, "feet")
  16596. },
  16597. {
  16598. name: "Giant",
  16599. height: math.unit(300, "feet"),
  16600. default: true
  16601. },
  16602. {
  16603. name: "Macro",
  16604. height: math.unit(700, "feet")
  16605. },
  16606. {
  16607. name: "Megamacro",
  16608. height: math.unit(6000, "feet")
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(6 + 7 / 12, "feet"),
  16617. weight: math.unit(150, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/blue-feyonics/front.svg",
  16621. extra: 1403 / 1306,
  16622. bottom: 0.047
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(6 + 7 / 12, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(1.8, "meters"),
  16639. weight: math.unit(60, "kg"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/maxwell/front.svg",
  16643. extra: 2060 / 1873
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Micro",
  16650. height: math.unit(1, "mm")
  16651. },
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(1.8, "meter"),
  16655. default: true
  16656. },
  16657. {
  16658. name: "Macro",
  16659. height: math.unit(30, "meters")
  16660. },
  16661. {
  16662. name: "Megamacro",
  16663. height: math.unit(10, "km")
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(6, "feet"),
  16672. weight: math.unit(150, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/jack/front.svg",
  16676. extra: 1754 / 1640,
  16677. bottom: 0.01
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(80000, "feet"),
  16685. default: true
  16686. },
  16687. {
  16688. name: "Max size",
  16689. height: math.unit(10, "lightyears")
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16695. {
  16696. urban: {
  16697. height: math.unit(5, "feet"),
  16698. weight: math.unit(240, "lb"),
  16699. name: "Urban",
  16700. image: {
  16701. source: "./media/characters/cafat/urban.svg",
  16702. extra: 1223/1126,
  16703. bottom: 205/1428
  16704. }
  16705. },
  16706. summer: {
  16707. height: math.unit(5, "feet"),
  16708. weight: math.unit(240, "lb"),
  16709. name: "Summer",
  16710. image: {
  16711. source: "./media/characters/cafat/summer.svg",
  16712. extra: 1223/1126,
  16713. bottom: 205/1428
  16714. }
  16715. },
  16716. winter: {
  16717. height: math.unit(5, "feet"),
  16718. weight: math.unit(240, "lb"),
  16719. name: "Winter",
  16720. image: {
  16721. source: "./media/characters/cafat/winter.svg",
  16722. extra: 1223/1126,
  16723. bottom: 205/1428
  16724. }
  16725. },
  16726. lingerie: {
  16727. height: math.unit(5, "feet"),
  16728. weight: math.unit(240, "lb"),
  16729. name: "Lingerie",
  16730. image: {
  16731. source: "./media/characters/cafat/lingerie.svg",
  16732. extra: 1223/1126,
  16733. bottom: 205/1428
  16734. }
  16735. },
  16736. upright: {
  16737. height: math.unit(6.3, "feet"),
  16738. weight: math.unit(240, "lb"),
  16739. name: "Upright",
  16740. image: {
  16741. source: "./media/characters/cafat/upright.svg",
  16742. bottom: 0.01
  16743. }
  16744. },
  16745. uprightFull: {
  16746. height: math.unit(6.3, "feet"),
  16747. weight: math.unit(240, "lb"),
  16748. name: "Upright (Full)",
  16749. image: {
  16750. source: "./media/characters/cafat/upright-full.svg",
  16751. bottom: 0.01
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Small",
  16758. height: math.unit(5, "feet"),
  16759. default: true
  16760. },
  16761. {
  16762. name: "Large",
  16763. height: math.unit(13, "feet")
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(6, "feet"),
  16772. weight: math.unit(150, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/verin-raharra/front.svg",
  16776. extra: 5019 / 4835,
  16777. bottom: 0.023
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(7 + 5 / 12, "feet"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Upsized",
  16789. height: math.unit(20, "feet")
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(7, "feet"),
  16798. weight: math.unit(230, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/nakata/front.svg",
  16802. extra: 1.005,
  16803. bottom: 0.01
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(7, "feet"),
  16811. default: true
  16812. },
  16813. {
  16814. name: "Big",
  16815. height: math.unit(14, "feet")
  16816. },
  16817. {
  16818. name: "Macro",
  16819. height: math.unit(400, "feet")
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(4.91, "feet"),
  16828. weight: math.unit(100, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/lily/front.svg",
  16832. extra: 1585 / 1415,
  16833. bottom: 0.02
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(4.91, "feet"),
  16841. default: true
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16847. {
  16848. laying: {
  16849. height: math.unit(4 + 4 / 12, "feet"),
  16850. weight: math.unit(600, "lb"),
  16851. name: "Laying",
  16852. image: {
  16853. source: "./media/characters/sheila/laying.svg",
  16854. extra: 1333 / 1265,
  16855. bottom: 0.16
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(4 + 4 / 12, "feet"),
  16863. default: true
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16869. {
  16870. front: {
  16871. height: math.unit(6, "feet"),
  16872. weight: math.unit(190, "lb"),
  16873. name: "Front",
  16874. image: {
  16875. source: "./media/characters/sax/front.svg",
  16876. extra: 1187 / 973,
  16877. bottom: 0.042
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Micro",
  16884. height: math.unit(4, "inches"),
  16885. default: true
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16891. {
  16892. front: {
  16893. height: math.unit(6, "feet"),
  16894. weight: math.unit(150, "lb"),
  16895. name: "Front",
  16896. image: {
  16897. source: "./media/characters/pandora/front.svg",
  16898. extra: 2720 / 2556,
  16899. bottom: 0.015
  16900. }
  16901. },
  16902. back: {
  16903. height: math.unit(6, "feet"),
  16904. weight: math.unit(150, "lb"),
  16905. name: "Back",
  16906. image: {
  16907. source: "./media/characters/pandora/back.svg",
  16908. extra: 2720 / 2556,
  16909. bottom: 0.01
  16910. }
  16911. },
  16912. beans: {
  16913. height: math.unit(6 / 8, "feet"),
  16914. name: "Beans",
  16915. image: {
  16916. source: "./media/characters/pandora/beans.svg"
  16917. }
  16918. },
  16919. collar: {
  16920. height: math.unit(0.31, "feet"),
  16921. name: "Collar",
  16922. image: {
  16923. source: "./media/characters/pandora/collar.svg"
  16924. }
  16925. },
  16926. skirt: {
  16927. height: math.unit(6, "feet"),
  16928. weight: math.unit(150, "lb"),
  16929. name: "Skirt",
  16930. image: {
  16931. source: "./media/characters/pandora/skirt.svg",
  16932. extra: 1622 / 1525,
  16933. bottom: 0.015
  16934. }
  16935. },
  16936. hoodie: {
  16937. height: math.unit(6, "feet"),
  16938. weight: math.unit(150, "lb"),
  16939. name: "Hoodie",
  16940. image: {
  16941. source: "./media/characters/pandora/hoodie.svg",
  16942. extra: 1622 / 1525,
  16943. bottom: 0.015
  16944. }
  16945. },
  16946. casual: {
  16947. height: math.unit(6, "feet"),
  16948. weight: math.unit(150, "lb"),
  16949. name: "Casual",
  16950. image: {
  16951. source: "./media/characters/pandora/casual.svg",
  16952. extra: 1622 / 1525,
  16953. bottom: 0.015
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(6, "feet")
  16961. },
  16962. {
  16963. name: "Big Steppy",
  16964. height: math.unit(1, "km"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Galactic Steppy",
  16969. height: math.unit(2, "gigameters")
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16975. {
  16976. side: {
  16977. height: math.unit(10, "feet"),
  16978. weight: math.unit(800, "kg"),
  16979. name: "Side",
  16980. image: {
  16981. source: "./media/characters/venio-darcony/side.svg",
  16982. extra: 1373 / 1003,
  16983. bottom: 0.037
  16984. }
  16985. },
  16986. front: {
  16987. height: math.unit(19, "feet"),
  16988. weight: math.unit(800, "kg"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/venio-darcony/front.svg"
  16992. }
  16993. },
  16994. back: {
  16995. height: math.unit(19, "feet"),
  16996. weight: math.unit(800, "kg"),
  16997. name: "Back",
  16998. image: {
  16999. source: "./media/characters/venio-darcony/back.svg"
  17000. }
  17001. },
  17002. sideNsfw: {
  17003. height: math.unit(10, "feet"),
  17004. weight: math.unit(800, "kg"),
  17005. name: "Side (NSFW)",
  17006. image: {
  17007. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17008. extra: 1373 / 1003,
  17009. bottom: 0.037
  17010. }
  17011. },
  17012. frontNsfw: {
  17013. height: math.unit(19, "feet"),
  17014. weight: math.unit(800, "kg"),
  17015. name: "Front (NSFW)",
  17016. image: {
  17017. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17018. }
  17019. },
  17020. backNsfw: {
  17021. height: math.unit(19, "feet"),
  17022. weight: math.unit(800, "kg"),
  17023. name: "Back (NSFW)",
  17024. image: {
  17025. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17026. }
  17027. },
  17028. sideArmored: {
  17029. height: math.unit(10, "feet"),
  17030. weight: math.unit(800, "kg"),
  17031. name: "Side (Armored)",
  17032. image: {
  17033. source: "./media/characters/venio-darcony/side-armored.svg",
  17034. extra: 1373 / 1003,
  17035. bottom: 0.037
  17036. }
  17037. },
  17038. frontArmored: {
  17039. height: math.unit(19, "feet"),
  17040. weight: math.unit(900, "kg"),
  17041. name: "Front (Armored)",
  17042. image: {
  17043. source: "./media/characters/venio-darcony/front-armored.svg"
  17044. }
  17045. },
  17046. backArmored: {
  17047. height: math.unit(19, "feet"),
  17048. weight: math.unit(900, "kg"),
  17049. name: "Back (Armored)",
  17050. image: {
  17051. source: "./media/characters/venio-darcony/back-armored.svg"
  17052. }
  17053. },
  17054. sword: {
  17055. height: math.unit(10, "feet"),
  17056. weight: math.unit(50, "lb"),
  17057. name: "Sword",
  17058. image: {
  17059. source: "./media/characters/venio-darcony/sword.svg"
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(10, "feet")
  17067. },
  17068. {
  17069. name: "Macro",
  17070. height: math.unit(130, "feet"),
  17071. default: true
  17072. },
  17073. {
  17074. name: "Macro+",
  17075. height: math.unit(240, "feet")
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(6, "feet"),
  17084. weight: math.unit(150, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/veski/front.svg",
  17088. extra: 1299 / 1225,
  17089. bottom: 0.04
  17090. }
  17091. },
  17092. back: {
  17093. height: math.unit(6, "feet"),
  17094. weight: math.unit(150, "lb"),
  17095. name: "Back",
  17096. image: {
  17097. source: "./media/characters/veski/back.svg",
  17098. extra: 1299 / 1225,
  17099. bottom: 0.008
  17100. }
  17101. },
  17102. maw: {
  17103. height: math.unit(1.5 * 1.21, "feet"),
  17104. name: "Maw",
  17105. image: {
  17106. source: "./media/characters/veski/maw.svg"
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Macro",
  17113. height: math.unit(2, "km"),
  17114. default: true
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17120. {
  17121. front: {
  17122. height: math.unit(5 + 7 / 12, "feet"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/isabelle/front.svg",
  17126. extra: 2130 / 1976,
  17127. bottom: 0.05
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Supermicro",
  17134. height: math.unit(10, "micrometers")
  17135. },
  17136. {
  17137. name: "Micro",
  17138. height: math.unit(1, "inch")
  17139. },
  17140. {
  17141. name: "Tiny",
  17142. height: math.unit(5, "inches")
  17143. },
  17144. {
  17145. name: "Standard",
  17146. height: math.unit(5 + 7 / 12, "inches")
  17147. },
  17148. {
  17149. name: "Macro",
  17150. height: math.unit(80, "meters"),
  17151. default: true
  17152. },
  17153. {
  17154. name: "Megamacro",
  17155. height: math.unit(250, "meters")
  17156. },
  17157. {
  17158. name: "Gigamacro",
  17159. height: math.unit(5, "km")
  17160. },
  17161. {
  17162. name: "Cosmic",
  17163. height: math.unit(2.5e6, "miles")
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17169. {
  17170. front: {
  17171. height: math.unit(6, "feet"),
  17172. weight: math.unit(150, "lb"),
  17173. name: "Front",
  17174. image: {
  17175. source: "./media/characters/hanzo/front.svg",
  17176. extra: 374 / 344,
  17177. bottom: 0.02
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(8, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(7, "feet"),
  17194. weight: math.unit(130, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/anna/front.svg",
  17198. extra: 169 / 145,
  17199. bottom: 0.06
  17200. }
  17201. },
  17202. full: {
  17203. height: math.unit(4.96, "feet"),
  17204. weight: math.unit(220, "lb"),
  17205. name: "Full",
  17206. image: {
  17207. source: "./media/characters/anna/full.svg",
  17208. extra: 138 / 114,
  17209. bottom: 0.15
  17210. }
  17211. },
  17212. tongue: {
  17213. height: math.unit(2.53, "feet"),
  17214. name: "Tongue",
  17215. image: {
  17216. source: "./media/characters/anna/tongue.svg"
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(7, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(7, "feet"),
  17233. weight: math.unit(150, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/ian-corvid/front.svg",
  17237. extra: 150 / 142,
  17238. bottom: 0.02
  17239. }
  17240. },
  17241. back: {
  17242. height: math.unit(7, "feet"),
  17243. weight: math.unit(150, "lb"),
  17244. name: "Back",
  17245. image: {
  17246. source: "./media/characters/ian-corvid/back.svg",
  17247. extra: 150 / 143,
  17248. bottom: 0.01
  17249. }
  17250. },
  17251. stomping: {
  17252. height: math.unit(7, "feet"),
  17253. weight: math.unit(150, "lb"),
  17254. name: "Stomping",
  17255. image: {
  17256. source: "./media/characters/ian-corvid/stomping.svg",
  17257. extra: 76 / 72
  17258. }
  17259. },
  17260. sitting: {
  17261. height: math.unit(7 / 1.8, "feet"),
  17262. weight: math.unit(150, "lb"),
  17263. name: "Sitting",
  17264. image: {
  17265. source: "./media/characters/ian-corvid/sitting.svg",
  17266. extra: 1400 / 1269,
  17267. bottom: 0.15
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Tiny Microw",
  17274. height: math.unit(1, "inch")
  17275. },
  17276. {
  17277. name: "Microw",
  17278. height: math.unit(6, "inches")
  17279. },
  17280. {
  17281. name: "Crow",
  17282. height: math.unit(7 + 1 / 12, "feet"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Macrow",
  17287. height: math.unit(176, "feet")
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(5 + 7 / 12, "feet"),
  17296. weight: math.unit(147, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/natalie-kellon/front.svg",
  17300. extra: 1214 / 1141,
  17301. bottom: 0.02
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Micro",
  17308. height: math.unit(1 / 16, "inch")
  17309. },
  17310. {
  17311. name: "Tiny",
  17312. height: math.unit(4, "inches")
  17313. },
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(5 + 7 / 12, "feet"),
  17317. default: true
  17318. },
  17319. {
  17320. name: "Amazon",
  17321. height: math.unit(12, "feet")
  17322. },
  17323. {
  17324. name: "Giantess",
  17325. height: math.unit(160, "meters")
  17326. },
  17327. {
  17328. name: "Titaness",
  17329. height: math.unit(800, "meters")
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17335. {
  17336. front: {
  17337. height: math.unit(6, "feet"),
  17338. weight: math.unit(150, "lb"),
  17339. name: "Front",
  17340. image: {
  17341. source: "./media/characters/alluria/front.svg",
  17342. extra: 806 / 738,
  17343. bottom: 0.01
  17344. }
  17345. },
  17346. side: {
  17347. height: math.unit(6, "feet"),
  17348. weight: math.unit(150, "lb"),
  17349. name: "Side",
  17350. image: {
  17351. source: "./media/characters/alluria/side.svg",
  17352. extra: 800 / 750,
  17353. }
  17354. },
  17355. back: {
  17356. height: math.unit(6, "feet"),
  17357. weight: math.unit(150, "lb"),
  17358. name: "Back",
  17359. image: {
  17360. source: "./media/characters/alluria/back.svg",
  17361. extra: 806 / 738,
  17362. }
  17363. },
  17364. frontMaid: {
  17365. height: math.unit(6, "feet"),
  17366. weight: math.unit(150, "lb"),
  17367. name: "Front (Maid)",
  17368. image: {
  17369. source: "./media/characters/alluria/front-maid.svg",
  17370. extra: 806 / 738,
  17371. bottom: 0.01
  17372. }
  17373. },
  17374. sideMaid: {
  17375. height: math.unit(6, "feet"),
  17376. weight: math.unit(150, "lb"),
  17377. name: "Side (Maid)",
  17378. image: {
  17379. source: "./media/characters/alluria/side-maid.svg",
  17380. extra: 800 / 750,
  17381. bottom: 0.005
  17382. }
  17383. },
  17384. backMaid: {
  17385. height: math.unit(6, "feet"),
  17386. weight: math.unit(150, "lb"),
  17387. name: "Back (Maid)",
  17388. image: {
  17389. source: "./media/characters/alluria/back-maid.svg",
  17390. extra: 806 / 738,
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Micro",
  17397. height: math.unit(6, "inches"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17404. {
  17405. front: {
  17406. height: math.unit(6, "feet"),
  17407. weight: math.unit(150, "lb"),
  17408. name: "Front",
  17409. image: {
  17410. source: "./media/characters/kyle/front.svg",
  17411. extra: 1069 / 962,
  17412. bottom: 77.228 / 1727.45
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Macro",
  17419. height: math.unit(150, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(6, "feet"),
  17429. weight: math.unit(300, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/duncan/front.svg",
  17433. extra: 1650 / 1482,
  17434. bottom: 0.05
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Macro",
  17441. height: math.unit(100, "feet"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(5 + 4 / 12, "feet"),
  17451. weight: math.unit(220, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/memory/front.svg",
  17455. extra: 3641 / 3545,
  17456. bottom: 0.03
  17457. }
  17458. },
  17459. back: {
  17460. height: math.unit(5 + 4 / 12, "feet"),
  17461. weight: math.unit(220, "lb"),
  17462. name: "Back",
  17463. image: {
  17464. source: "./media/characters/memory/back.svg",
  17465. extra: 3641 / 3545,
  17466. bottom: 0.025
  17467. }
  17468. },
  17469. frontSkirt: {
  17470. height: math.unit(5 + 4 / 12, "feet"),
  17471. weight: math.unit(220, "lb"),
  17472. name: "Front (Skirt)",
  17473. image: {
  17474. source: "./media/characters/memory/front-skirt.svg",
  17475. extra: 3641 / 3545,
  17476. bottom: 0.03
  17477. }
  17478. },
  17479. frontDress: {
  17480. height: math.unit(5 + 4 / 12, "feet"),
  17481. weight: math.unit(220, "lb"),
  17482. name: "Front (Dress)",
  17483. image: {
  17484. source: "./media/characters/memory/front-dress.svg",
  17485. extra: 3641 / 3545,
  17486. bottom: 0.03
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Micro",
  17493. height: math.unit(6, "inches"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(5 + 4 / 12, "feet")
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17504. {
  17505. front: {
  17506. height: math.unit(4 + 11 / 12, "feet"),
  17507. weight: math.unit(100, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/luno/front.svg",
  17511. extra: 1535 / 1487,
  17512. bottom: 0.03
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Micro",
  17519. height: math.unit(3, "inches")
  17520. },
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(4 + 11 / 12, "feet"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Macro",
  17528. height: math.unit(300, "feet")
  17529. },
  17530. {
  17531. name: "Megamacro",
  17532. height: math.unit(700, "miles")
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(6 + 2 / 12, "feet"),
  17541. weight: math.unit(170, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/jamesy/front.svg",
  17545. extra: 440 / 382,
  17546. bottom: 0.005
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Micro",
  17553. height: math.unit(3, "inches")
  17554. },
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(6 + 2 / 12, "feet"),
  17558. default: true
  17559. },
  17560. {
  17561. name: "Macro",
  17562. height: math.unit(300, "feet")
  17563. },
  17564. {
  17565. name: "Megamacro",
  17566. height: math.unit(700, "miles")
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(6, "feet"),
  17575. weight: math.unit(160, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/mark/front.svg",
  17579. extra: 3300 / 3100,
  17580. bottom: 136.42 / 3440.47
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(120, "meters")
  17588. },
  17589. {
  17590. name: "Bigger Macro",
  17591. height: math.unit(350, "meters")
  17592. },
  17593. {
  17594. name: "Megamacro",
  17595. height: math.unit(8, "km"),
  17596. default: true
  17597. },
  17598. {
  17599. name: "Continental",
  17600. height: math.unit(4550, "km")
  17601. },
  17602. {
  17603. name: "Planetary",
  17604. height: math.unit(65000, "km")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(6, "feet"),
  17613. weight: math.unit(400, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/mac/front.svg",
  17617. extra: 1048 / 987.7,
  17618. bottom: 60 / 1107.6,
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Macro",
  17625. height: math.unit(500, "feet"),
  17626. default: true
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(5 + 2 / 12, "feet"),
  17635. weight: math.unit(190, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/bari/front.svg",
  17639. extra: 3156 / 2880,
  17640. bottom: 0.03
  17641. }
  17642. },
  17643. back: {
  17644. height: math.unit(5 + 2 / 12, "feet"),
  17645. weight: math.unit(190, "lb"),
  17646. name: "Back",
  17647. image: {
  17648. source: "./media/characters/bari/back.svg",
  17649. extra: 3260 / 2834,
  17650. bottom: 0.025
  17651. }
  17652. },
  17653. frontPlush: {
  17654. height: math.unit(5 + 2 / 12, "feet"),
  17655. weight: math.unit(190, "lb"),
  17656. name: "Front (Plush)",
  17657. image: {
  17658. source: "./media/characters/bari/front-plush.svg",
  17659. extra: 1112 / 1061,
  17660. bottom: 0.002
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Micro",
  17667. height: math.unit(3, "inches")
  17668. },
  17669. {
  17670. name: "Normal",
  17671. height: math.unit(5 + 2 / 12, "feet"),
  17672. default: true
  17673. },
  17674. {
  17675. name: "Macro",
  17676. height: math.unit(20, "feet")
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17682. {
  17683. front: {
  17684. height: math.unit(6 + 1 / 12, "feet"),
  17685. weight: math.unit(275, "lb"),
  17686. name: "Front",
  17687. image: {
  17688. source: "./media/characters/hunter-misha-raven/front.svg"
  17689. }
  17690. },
  17691. },
  17692. [
  17693. {
  17694. name: "Mortal",
  17695. height: math.unit(6 + 1 / 12, "feet")
  17696. },
  17697. {
  17698. name: "Divine",
  17699. height: math.unit(1.12134e34, "parsecs"),
  17700. default: true
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17706. {
  17707. front: {
  17708. height: math.unit(6 + 3 / 12, "feet"),
  17709. weight: math.unit(220, "lb"),
  17710. name: "Front",
  17711. image: {
  17712. source: "./media/characters/max-calore/front.svg",
  17713. extra: 1700 / 1648,
  17714. bottom: 0.01
  17715. }
  17716. },
  17717. back: {
  17718. height: math.unit(6 + 3 / 12, "feet"),
  17719. weight: math.unit(220, "lb"),
  17720. name: "Back",
  17721. image: {
  17722. source: "./media/characters/max-calore/back.svg",
  17723. extra: 1700 / 1648,
  17724. bottom: 0.01
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(6 + 3 / 12, "feet"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17738. {
  17739. side: {
  17740. height: math.unit(2 + 8 / 12, "feet"),
  17741. weight: math.unit(99, "lb"),
  17742. name: "Side",
  17743. image: {
  17744. source: "./media/characters/aspen/side.svg",
  17745. extra: 152 / 138,
  17746. bottom: 0.032
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(2 + 8 / 12, "feet"),
  17754. default: true
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17760. {
  17761. side: {
  17762. height: math.unit(3 + 2 / 12, "feet"),
  17763. weight: math.unit(224, "lb"),
  17764. name: "Side",
  17765. image: {
  17766. source: "./media/characters/sheila-feral-wolf/side.svg",
  17767. extra: 179 / 166,
  17768. bottom: 0.03
  17769. }
  17770. },
  17771. },
  17772. [
  17773. {
  17774. name: "Normal",
  17775. height: math.unit(3 + 2 / 12, "feet"),
  17776. default: true
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17782. {
  17783. side: {
  17784. height: math.unit(1 + 9 / 12, "feet"),
  17785. weight: math.unit(38, "lb"),
  17786. name: "Side",
  17787. image: {
  17788. source: "./media/characters/michelle/side.svg",
  17789. extra: 147 / 136.7,
  17790. bottom: 0.03
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(1 + 9 / 12, "feet"),
  17798. default: true
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(1.54, "feet"),
  17807. weight: math.unit(50, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/nino/front.svg"
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(1.54, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17824. {
  17825. front: {
  17826. height: math.unit(1.49, "feet"),
  17827. weight: math.unit(45, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/viola/front.svg"
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(1.49, "feet"),
  17838. default: true
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17844. {
  17845. front: {
  17846. height: math.unit(6 + 5 / 12, "feet"),
  17847. weight: math.unit(580, "lb"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/atlas/front.svg",
  17851. extra: 298.5 / 290,
  17852. bottom: 0.015
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(6 + 5 / 12, "feet"),
  17860. default: true
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17866. {
  17867. side: {
  17868. height: math.unit(15.6, "inches"),
  17869. weight: math.unit(10, "lb"),
  17870. name: "Side",
  17871. image: {
  17872. source: "./media/characters/davy/side.svg",
  17873. extra: 200 / 170,
  17874. bottom: 0.01
  17875. }
  17876. },
  17877. },
  17878. [
  17879. {
  17880. name: "Normal",
  17881. height: math.unit(15.6, "inches"),
  17882. default: true
  17883. },
  17884. ]
  17885. ))
  17886. characterMakers.push(() => makeCharacter(
  17887. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17888. {
  17889. side: {
  17890. height: math.unit(4 + 8 / 12, "feet"),
  17891. weight: math.unit(166, "lb"),
  17892. name: "Side",
  17893. image: {
  17894. source: "./media/characters/fiona/side.svg",
  17895. extra: 232 / 220,
  17896. bottom: 0.03
  17897. }
  17898. },
  17899. },
  17900. [
  17901. {
  17902. name: "Normal",
  17903. height: math.unit(4 + 8 / 12, "feet"),
  17904. default: true
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17910. {
  17911. front: {
  17912. height: math.unit(26, "inches"),
  17913. weight: math.unit(35, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/lyla/front.svg",
  17917. bottom: 0.1
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(3, "feet"),
  17925. default: true
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17931. {
  17932. side: {
  17933. height: math.unit(1.8, "feet"),
  17934. weight: math.unit(44, "lb"),
  17935. name: "Side",
  17936. image: {
  17937. source: "./media/characters/perseus/side.svg",
  17938. bottom: 0.21
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(1.8, "feet"),
  17946. default: true
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17952. {
  17953. side: {
  17954. height: math.unit(4 + 2 / 12, "feet"),
  17955. weight: math.unit(20, "lb"),
  17956. name: "Side",
  17957. image: {
  17958. source: "./media/characters/remus/side.svg"
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(4 + 2 / 12, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17972. {
  17973. front: {
  17974. height: math.unit(4 + 11 / 12, "feet"),
  17975. weight: math.unit(114, "lb"),
  17976. name: "Front",
  17977. image: {
  17978. source: "./media/characters/raf/front.svg",
  17979. extra: 1504/1339,
  17980. bottom: 26/1530
  17981. }
  17982. },
  17983. side: {
  17984. height: math.unit(4 + 11 / 12, "feet"),
  17985. weight: math.unit(114, "lb"),
  17986. name: "Side",
  17987. image: {
  17988. source: "./media/characters/raf/side.svg",
  17989. extra: 1466/1316,
  17990. bottom: 29/1495
  17991. }
  17992. },
  17993. paw: {
  17994. height: math.unit(1.45, "feet"),
  17995. name: "Paw",
  17996. image: {
  17997. source: "./media/characters/raf/paw.svg"
  17998. },
  17999. extraAttributes: {
  18000. "toeSize": {
  18001. name: "Toe Size",
  18002. power: 2,
  18003. type: "area",
  18004. base: math.unit(0.004, "m^2")
  18005. },
  18006. "padSize": {
  18007. name: "Pad Size",
  18008. power: 2,
  18009. type: "area",
  18010. base: math.unit(0.04, "m^2")
  18011. },
  18012. "footSize": {
  18013. name: "Foot Size",
  18014. power: 2,
  18015. type: "area",
  18016. base: math.unit(0.08, "m^2")
  18017. },
  18018. }
  18019. },
  18020. },
  18021. [
  18022. {
  18023. name: "Micro",
  18024. height: math.unit(2, "inches")
  18025. },
  18026. {
  18027. name: "Normal",
  18028. height: math.unit(4 + 11 / 12, "feet"),
  18029. default: true
  18030. },
  18031. {
  18032. name: "Macro",
  18033. height: math.unit(70, "feet")
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18039. {
  18040. front: {
  18041. height: math.unit(1.5, "meters"),
  18042. weight: math.unit(68, "kg"),
  18043. name: "Front",
  18044. image: {
  18045. source: "./media/characters/liam-einarr/front.svg",
  18046. extra: 2822 / 2666
  18047. }
  18048. },
  18049. back: {
  18050. height: math.unit(1.5, "meters"),
  18051. weight: math.unit(68, "kg"),
  18052. name: "Back",
  18053. image: {
  18054. source: "./media/characters/liam-einarr/back.svg",
  18055. extra: 2822 / 2666,
  18056. bottom: 0.015
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(1.5, "meters"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Macro",
  18068. height: math.unit(150, "meters")
  18069. },
  18070. {
  18071. name: "Megamacro",
  18072. height: math.unit(35, "km")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(6, "feet"),
  18081. weight: math.unit(75, "kg"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/linda/front.svg",
  18085. extra: 930 / 874,
  18086. bottom: 0.004
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(6, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6 + 8 / 12, "feet"),
  18103. weight: math.unit(220, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/caylex/front.svg",
  18107. extra: 821 / 772,
  18108. bottom: 0.07
  18109. }
  18110. },
  18111. back: {
  18112. height: math.unit(6 + 8 / 12, "feet"),
  18113. weight: math.unit(220, "lb"),
  18114. name: "Back",
  18115. image: {
  18116. source: "./media/characters/caylex/back.svg",
  18117. extra: 821 / 772,
  18118. bottom: 0.022
  18119. }
  18120. },
  18121. hand: {
  18122. height: math.unit(1.25, "feet"),
  18123. name: "Hand",
  18124. image: {
  18125. source: "./media/characters/caylex/hand.svg"
  18126. }
  18127. },
  18128. foot: {
  18129. height: math.unit(1.6, "feet"),
  18130. name: "Foot",
  18131. image: {
  18132. source: "./media/characters/caylex/foot.svg"
  18133. }
  18134. },
  18135. armored: {
  18136. height: math.unit(6 + 8 / 12, "feet"),
  18137. weight: math.unit(250, "lb"),
  18138. name: "Armored",
  18139. image: {
  18140. source: "./media/characters/caylex/armored.svg",
  18141. extra: 1420 / 1310,
  18142. bottom: 0.045
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(6 + 8 / 12, "feet"),
  18150. default: true
  18151. },
  18152. {
  18153. name: "Normal+",
  18154. height: math.unit(12, "feet")
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(7 + 6 / 12, "feet"),
  18163. weight: math.unit(288, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/alana/front.svg",
  18167. extra: 679 / 653,
  18168. bottom: 22.5 / 701
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(7 + 6 / 12, "feet")
  18176. },
  18177. {
  18178. name: "Large",
  18179. height: math.unit(50, "feet")
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(100, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Macro+",
  18188. height: math.unit(200, "feet")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(6 + 1 / 12, "feet"),
  18197. weight: math.unit(210, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/hasani/front.svg",
  18201. extra: 244 / 232,
  18202. bottom: 0.01
  18203. }
  18204. },
  18205. back: {
  18206. height: math.unit(6 + 1 / 12, "feet"),
  18207. weight: math.unit(210, "lb"),
  18208. name: "Back",
  18209. image: {
  18210. source: "./media/characters/hasani/back.svg",
  18211. extra: 244 / 232,
  18212. bottom: 0.01
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(6 + 1 / 12, "feet")
  18220. },
  18221. {
  18222. name: "Macro",
  18223. height: math.unit(175, "feet"),
  18224. default: true
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(1.82, "meters"),
  18233. weight: math.unit(140, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/nita/front.svg",
  18237. extra: 2473 / 2363,
  18238. bottom: 0.01
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(1.82, "m")
  18246. },
  18247. {
  18248. name: "Macro",
  18249. height: math.unit(300, "m")
  18250. },
  18251. {
  18252. name: "Mistake Canon",
  18253. height: math.unit(0.5, "miles"),
  18254. default: true
  18255. },
  18256. {
  18257. name: "Big Mistake",
  18258. height: math.unit(13, "miles")
  18259. },
  18260. {
  18261. name: "Playing God",
  18262. height: math.unit(2450, "miles")
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(4, "feet"),
  18271. weight: math.unit(120, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/shiriko/front.svg",
  18275. extra: 970/934,
  18276. bottom: 5/975
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(4, "feet"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(6, "feet"),
  18293. name: "front",
  18294. image: {
  18295. source: "./media/characters/deja/front.svg",
  18296. extra: 926 / 840,
  18297. bottom: 0.07
  18298. }
  18299. },
  18300. },
  18301. [
  18302. {
  18303. name: "Planck Length",
  18304. height: math.unit(1.6e-35, "meters")
  18305. },
  18306. {
  18307. name: "Normal",
  18308. height: math.unit(30.48, "meters"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "Universal",
  18313. height: math.unit(8.8e26, "meters")
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18319. {
  18320. side: {
  18321. height: math.unit(8, "feet"),
  18322. weight: math.unit(6300, "lb"),
  18323. name: "Side",
  18324. image: {
  18325. source: "./media/characters/anima/side.svg",
  18326. bottom: 0.035
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(8, "feet"),
  18334. default: true
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(8, "feet"),
  18343. weight: math.unit(350, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/bianca/front.svg",
  18347. extra: 234 / 225,
  18348. bottom: 0.03
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(8, "feet"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(11 + 5/12, "feet"),
  18365. weight: math.unit(1200, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/adinia/front.svg",
  18369. extra: 1767/1641,
  18370. bottom: 44/1811
  18371. },
  18372. extraAttributes: {
  18373. "energyIntake": {
  18374. name: "Energy Intake",
  18375. power: 3,
  18376. type: "energy",
  18377. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18378. },
  18379. }
  18380. },
  18381. back: {
  18382. height: math.unit(11 + 5/12, "feet"),
  18383. weight: math.unit(1200, "lb"),
  18384. name: "Back",
  18385. image: {
  18386. source: "./media/characters/adinia/back.svg",
  18387. extra: 1834/1684,
  18388. bottom: 14/1848
  18389. },
  18390. extraAttributes: {
  18391. "energyIntake": {
  18392. name: "Energy Intake",
  18393. power: 3,
  18394. type: "energy",
  18395. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18396. },
  18397. }
  18398. },
  18399. maw: {
  18400. height: math.unit(3.79, "feet"),
  18401. name: "Maw",
  18402. image: {
  18403. source: "./media/characters/adinia/maw.svg"
  18404. }
  18405. },
  18406. rump: {
  18407. height: math.unit(4.6, "feet"),
  18408. name: "Rump",
  18409. image: {
  18410. source: "./media/characters/adinia/rump.svg"
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(11 + 5 / 12, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18424. {
  18425. front: {
  18426. height: math.unit(3, "meters"),
  18427. weight: math.unit(200, "kg"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/lykasa/front.svg",
  18431. extra: 1076 / 976,
  18432. bottom: 0.06
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Normal",
  18439. height: math.unit(3, "meters")
  18440. },
  18441. {
  18442. name: "Kaiju",
  18443. height: math.unit(120, "meters"),
  18444. default: true
  18445. },
  18446. {
  18447. name: "Mega Kaiju",
  18448. height: math.unit(240, "km")
  18449. },
  18450. {
  18451. name: "Giga Kaiju",
  18452. height: math.unit(400, "megameters")
  18453. },
  18454. {
  18455. name: "Tera Kaiju",
  18456. height: math.unit(800, "gigameters")
  18457. },
  18458. {
  18459. name: "Kaiju Dragon Goddess",
  18460. height: math.unit(26, "zettaparsecs")
  18461. },
  18462. ]
  18463. ))
  18464. characterMakers.push(() => makeCharacter(
  18465. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18466. {
  18467. side: {
  18468. height: math.unit(283 / 124 * 6, "feet"),
  18469. weight: math.unit(35000, "lb"),
  18470. name: "Side",
  18471. image: {
  18472. source: "./media/characters/malfaren/side.svg",
  18473. extra: 1310/529,
  18474. bottom: 24/1334
  18475. }
  18476. },
  18477. front: {
  18478. height: math.unit(22.36, "feet"),
  18479. weight: math.unit(35000, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/malfaren/front.svg",
  18483. extra: 1237/1115,
  18484. bottom: 32/1269
  18485. }
  18486. },
  18487. maw: {
  18488. height: math.unit(6.9, "feet"),
  18489. name: "Maw",
  18490. image: {
  18491. source: "./media/characters/malfaren/maw.svg"
  18492. }
  18493. },
  18494. dick: {
  18495. height: math.unit(6.19, "feet"),
  18496. name: "Dick",
  18497. image: {
  18498. source: "./media/characters/malfaren/dick.svg"
  18499. }
  18500. },
  18501. eye: {
  18502. height: math.unit(0.69, "feet"),
  18503. name: "Eye",
  18504. image: {
  18505. source: "./media/characters/malfaren/eye.svg"
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Big",
  18512. height: math.unit(283 / 162 * 6, "feet"),
  18513. },
  18514. {
  18515. name: "Bigger",
  18516. height: math.unit(283 / 124 * 6, "feet")
  18517. },
  18518. {
  18519. name: "Massive",
  18520. height: math.unit(283 / 92 * 6, "feet"),
  18521. default: true
  18522. },
  18523. {
  18524. name: "👀💦",
  18525. height: math.unit(283 / 73 * 6, "feet"),
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(1.7, "m"),
  18534. weight: math.unit(70, "kg"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/kernel/front.svg",
  18538. extra: 222 / 210,
  18539. bottom: 0.007
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Nano",
  18546. height: math.unit(17, "micrometers")
  18547. },
  18548. {
  18549. name: "Micro",
  18550. height: math.unit(1.7, "mm")
  18551. },
  18552. {
  18553. name: "Small",
  18554. height: math.unit(1.7, "cm")
  18555. },
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(1.7, "m"),
  18559. default: true
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18565. {
  18566. front: {
  18567. height: math.unit(1.75, "meters"),
  18568. weight: math.unit(65, "kg"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/jayne-folest/front.svg",
  18572. extra: 2115 / 2007,
  18573. bottom: 0.02
  18574. }
  18575. },
  18576. back: {
  18577. height: math.unit(1.75, "meters"),
  18578. weight: math.unit(65, "kg"),
  18579. name: "Back",
  18580. image: {
  18581. source: "./media/characters/jayne-folest/back.svg",
  18582. extra: 2115 / 2007,
  18583. bottom: 0.005
  18584. }
  18585. },
  18586. frontClothed: {
  18587. height: math.unit(1.75, "meters"),
  18588. weight: math.unit(65, "kg"),
  18589. name: "Front (Clothed)",
  18590. image: {
  18591. source: "./media/characters/jayne-folest/front-clothed.svg",
  18592. extra: 2115 / 2007,
  18593. bottom: 0.035
  18594. }
  18595. },
  18596. hand: {
  18597. height: math.unit(1 / 1.260, "feet"),
  18598. name: "Hand",
  18599. image: {
  18600. source: "./media/characters/jayne-folest/hand.svg"
  18601. }
  18602. },
  18603. foot: {
  18604. height: math.unit(1 / 0.918, "feet"),
  18605. name: "Foot",
  18606. image: {
  18607. source: "./media/characters/jayne-folest/foot.svg"
  18608. }
  18609. },
  18610. },
  18611. [
  18612. {
  18613. name: "Micro",
  18614. height: math.unit(4, "cm")
  18615. },
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(1.75, "meters")
  18619. },
  18620. {
  18621. name: "Macro",
  18622. height: math.unit(47.5, "meters"),
  18623. default: true
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18629. {
  18630. front: {
  18631. height: math.unit(180, "cm"),
  18632. weight: math.unit(70, "kg"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/algier/front.svg",
  18636. extra: 596 / 572,
  18637. bottom: 0.04
  18638. }
  18639. },
  18640. back: {
  18641. height: math.unit(180, "cm"),
  18642. weight: math.unit(70, "kg"),
  18643. name: "Back",
  18644. image: {
  18645. source: "./media/characters/algier/back.svg",
  18646. extra: 596 / 572,
  18647. bottom: 0.025
  18648. }
  18649. },
  18650. frontdressed: {
  18651. height: math.unit(180, "cm"),
  18652. weight: math.unit(150, "kg"),
  18653. name: "Front-dressed",
  18654. image: {
  18655. source: "./media/characters/algier/front-dressed.svg",
  18656. extra: 596 / 572,
  18657. bottom: 0.038
  18658. }
  18659. },
  18660. },
  18661. [
  18662. {
  18663. name: "Micro",
  18664. height: math.unit(5, "cm")
  18665. },
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(180, "cm"),
  18669. default: true
  18670. },
  18671. {
  18672. name: "Macro",
  18673. height: math.unit(64, "m")
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18679. {
  18680. upright: {
  18681. height: math.unit(7, "feet"),
  18682. weight: math.unit(300, "lb"),
  18683. name: "Upright",
  18684. image: {
  18685. source: "./media/characters/pretzel/upright.svg",
  18686. extra: 534 / 522,
  18687. bottom: 0.065
  18688. }
  18689. },
  18690. sprawling: {
  18691. height: math.unit(3.75, "feet"),
  18692. weight: math.unit(300, "lb"),
  18693. name: "Sprawling",
  18694. image: {
  18695. source: "./media/characters/pretzel/sprawling.svg",
  18696. extra: 314 / 281,
  18697. bottom: 0.1
  18698. }
  18699. },
  18700. tongue: {
  18701. height: math.unit(2, "feet"),
  18702. name: "Tongue",
  18703. image: {
  18704. source: "./media/characters/pretzel/tongue.svg"
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Normal",
  18711. height: math.unit(7, "feet"),
  18712. default: true
  18713. },
  18714. {
  18715. name: "Oversized",
  18716. height: math.unit(15, "feet")
  18717. },
  18718. {
  18719. name: "Huge",
  18720. height: math.unit(30, "feet")
  18721. },
  18722. {
  18723. name: "Macro",
  18724. height: math.unit(250, "feet")
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18730. {
  18731. sideFront: {
  18732. height: math.unit(5 + 2 / 12, "feet"),
  18733. weight: math.unit(120, "lb"),
  18734. name: "Front Side",
  18735. image: {
  18736. source: "./media/characters/roxi/side-front.svg",
  18737. extra: 2924 / 2717,
  18738. bottom: 0.08
  18739. }
  18740. },
  18741. sideBack: {
  18742. height: math.unit(5 + 2 / 12, "feet"),
  18743. weight: math.unit(120, "lb"),
  18744. name: "Back Side",
  18745. image: {
  18746. source: "./media/characters/roxi/side-back.svg",
  18747. extra: 2904 / 2693,
  18748. bottom: 0.06
  18749. }
  18750. },
  18751. front: {
  18752. height: math.unit(5 + 2 / 12, "feet"),
  18753. weight: math.unit(120, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/roxi/front.svg",
  18757. extra: 2028 / 1907,
  18758. bottom: 0.01
  18759. }
  18760. },
  18761. frontAlt: {
  18762. height: math.unit(5 + 2 / 12, "feet"),
  18763. weight: math.unit(120, "lb"),
  18764. name: "Front (Alt)",
  18765. image: {
  18766. source: "./media/characters/roxi/front-alt.svg",
  18767. extra: 1828 / 1798,
  18768. bottom: 0.01
  18769. }
  18770. },
  18771. sitting: {
  18772. height: math.unit(2.8, "feet"),
  18773. weight: math.unit(120, "lb"),
  18774. name: "Sitting",
  18775. image: {
  18776. source: "./media/characters/roxi/sitting.svg",
  18777. extra: 2660 / 2462,
  18778. bottom: 0.1
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Normal",
  18785. height: math.unit(5 + 2 / 12, "feet"),
  18786. default: true
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18792. {
  18793. side: {
  18794. height: math.unit(55, "feet"),
  18795. weight: math.unit(153, "tons"),
  18796. name: "Side",
  18797. image: {
  18798. source: "./media/characters/shadow/side.svg",
  18799. extra: 701 / 628,
  18800. bottom: 0.02
  18801. }
  18802. },
  18803. flying: {
  18804. height: math.unit(145, "feet"),
  18805. weight: math.unit(153, "tons"),
  18806. name: "Flying",
  18807. image: {
  18808. source: "./media/characters/shadow/flying.svg"
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(55, "feet"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(6, "feet"),
  18825. weight: math.unit(200, "lb"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/marcie/front.svg",
  18829. extra: 960 / 876,
  18830. bottom: 58 / 1017.87
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(1, "mile"),
  18838. default: true
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18844. {
  18845. front: {
  18846. height: math.unit(7, "feet"),
  18847. weight: math.unit(200, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/kachina/front.svg",
  18851. extra: 1290.68 / 1119,
  18852. bottom: 36.5 / 1327.18
  18853. }
  18854. },
  18855. },
  18856. [
  18857. {
  18858. name: "Normal",
  18859. height: math.unit(7, "feet"),
  18860. default: true
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18866. {
  18867. looking: {
  18868. height: math.unit(2, "meters"),
  18869. weight: math.unit(300, "kg"),
  18870. name: "Looking",
  18871. image: {
  18872. source: "./media/characters/kash/looking.svg",
  18873. extra: 474 / 344,
  18874. bottom: 0.03
  18875. }
  18876. },
  18877. side: {
  18878. height: math.unit(2, "meters"),
  18879. weight: math.unit(300, "kg"),
  18880. name: "Side",
  18881. image: {
  18882. source: "./media/characters/kash/side.svg",
  18883. extra: 302 / 251,
  18884. bottom: 0.03
  18885. }
  18886. },
  18887. front: {
  18888. height: math.unit(2, "meters"),
  18889. weight: math.unit(300, "kg"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/kash/front.svg",
  18893. extra: 495 / 360,
  18894. bottom: 0.015
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(2, "meters"),
  18902. default: true
  18903. },
  18904. {
  18905. name: "Big",
  18906. height: math.unit(3, "meters")
  18907. },
  18908. {
  18909. name: "Large",
  18910. height: math.unit(5, "meters")
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18916. {
  18917. feeding: {
  18918. height: math.unit(6.7, "feet"),
  18919. weight: math.unit(350, "lb"),
  18920. name: "Feeding",
  18921. image: {
  18922. source: "./media/characters/lalim/feeding.svg",
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(6.7, "feet"),
  18930. default: true
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(9.5, "feet"),
  18939. weight: math.unit(600, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/de'vout/front.svg",
  18943. extra: 1443 / 1328,
  18944. bottom: 0.025
  18945. }
  18946. },
  18947. back: {
  18948. height: math.unit(9.5, "feet"),
  18949. weight: math.unit(600, "lb"),
  18950. name: "Back",
  18951. image: {
  18952. source: "./media/characters/de'vout/back.svg",
  18953. extra: 1443 / 1328
  18954. }
  18955. },
  18956. frontDressed: {
  18957. height: math.unit(9.5, "feet"),
  18958. weight: math.unit(600, "lb"),
  18959. name: "Front (Dressed",
  18960. image: {
  18961. source: "./media/characters/de'vout/front-dressed.svg",
  18962. extra: 1443 / 1328,
  18963. bottom: 0.025
  18964. }
  18965. },
  18966. backDressed: {
  18967. height: math.unit(9.5, "feet"),
  18968. weight: math.unit(600, "lb"),
  18969. name: "Back (Dressed",
  18970. image: {
  18971. source: "./media/characters/de'vout/back-dressed.svg",
  18972. extra: 1443 / 1328
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Normal",
  18979. height: math.unit(9.5, "feet"),
  18980. default: true
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(8, "feet"),
  18989. weight: math.unit(225, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/talana/front.svg",
  18993. extra: 1410 / 1300,
  18994. bottom: 0.015
  18995. }
  18996. },
  18997. frontDressed: {
  18998. height: math.unit(8, "feet"),
  18999. weight: math.unit(225, "lb"),
  19000. name: "Front (Dressed",
  19001. image: {
  19002. source: "./media/characters/talana/front-dressed.svg",
  19003. extra: 1410 / 1300,
  19004. bottom: 0.015
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(8, "feet"),
  19012. default: true
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19018. {
  19019. side: {
  19020. height: math.unit(7.2, "feet"),
  19021. weight: math.unit(150, "lb"),
  19022. name: "Side",
  19023. image: {
  19024. source: "./media/characters/xeauvok/side.svg",
  19025. extra: 1975 / 1523,
  19026. bottom: 0.07
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(7.2, "feet"),
  19034. default: true
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19040. {
  19041. side: {
  19042. height: math.unit(4, "meters"),
  19043. weight: math.unit(2200, "kg"),
  19044. name: "Side",
  19045. image: {
  19046. source: "./media/characters/zara/side.svg",
  19047. extra: 765/744,
  19048. bottom: 156/921
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(4, "meters"),
  19056. default: true
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19062. {
  19063. side: {
  19064. height: math.unit(6, "feet"),
  19065. weight: math.unit(150, "lb"),
  19066. name: "Side",
  19067. image: {
  19068. source: "./media/characters/richard-dragon/side.svg",
  19069. extra: 845 / 340,
  19070. bottom: 0.017
  19071. }
  19072. },
  19073. maw: {
  19074. height: math.unit(2.97, "feet"),
  19075. name: "Maw",
  19076. image: {
  19077. source: "./media/characters/richard-dragon/maw.svg"
  19078. }
  19079. },
  19080. },
  19081. [
  19082. ]
  19083. ))
  19084. characterMakers.push(() => makeCharacter(
  19085. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19086. {
  19087. front: {
  19088. height: math.unit(4, "feet"),
  19089. weight: math.unit(100, "lb"),
  19090. name: "Front",
  19091. image: {
  19092. source: "./media/characters/richard-smeargle/front.svg",
  19093. extra: 2952 / 2820,
  19094. bottom: 0.028
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(4, "feet"),
  19102. default: true
  19103. },
  19104. {
  19105. name: "Dynamax",
  19106. height: math.unit(20, "meters")
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(6, "feet"),
  19115. weight: math.unit(110, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/klay/front.svg",
  19119. extra: 962 / 883,
  19120. bottom: 0.04
  19121. }
  19122. },
  19123. back: {
  19124. height: math.unit(6, "feet"),
  19125. weight: math.unit(110, "lb"),
  19126. name: "Back",
  19127. image: {
  19128. source: "./media/characters/klay/back.svg",
  19129. extra: 962 / 883
  19130. }
  19131. },
  19132. beans: {
  19133. height: math.unit(1.15, "feet"),
  19134. name: "Beans",
  19135. image: {
  19136. source: "./media/characters/klay/beans.svg"
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Micro",
  19143. height: math.unit(6, "inches")
  19144. },
  19145. {
  19146. name: "Mini",
  19147. height: math.unit(3, "feet")
  19148. },
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(6, "feet"),
  19152. default: true
  19153. },
  19154. {
  19155. name: "Big",
  19156. height: math.unit(25, "feet")
  19157. },
  19158. {
  19159. name: "Macro",
  19160. height: math.unit(100, "feet")
  19161. },
  19162. {
  19163. name: "Megamacro",
  19164. height: math.unit(400, "feet")
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(6, "feet"),
  19173. weight: math.unit(160, "lb"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/marcus/front.svg",
  19177. extra: 734 / 676,
  19178. bottom: 0.03
  19179. }
  19180. },
  19181. },
  19182. [
  19183. {
  19184. name: "Little",
  19185. height: math.unit(6, "feet")
  19186. },
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(110, "feet"),
  19190. default: true
  19191. },
  19192. {
  19193. name: "Macro",
  19194. height: math.unit(250, "feet")
  19195. },
  19196. {
  19197. name: "Megamacro",
  19198. height: math.unit(1000, "feet")
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19204. {
  19205. front: {
  19206. height: math.unit(7, "feet"),
  19207. weight: math.unit(275, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/claude-delroute/front.svg",
  19211. extra: 902/827,
  19212. bottom: 26/928
  19213. }
  19214. },
  19215. side: {
  19216. height: math.unit(7, "feet"),
  19217. weight: math.unit(275, "lb"),
  19218. name: "Side",
  19219. image: {
  19220. source: "./media/characters/claude-delroute/side.svg",
  19221. extra: 908/853,
  19222. bottom: 16/924
  19223. }
  19224. },
  19225. back: {
  19226. height: math.unit(7, "feet"),
  19227. weight: math.unit(275, "lb"),
  19228. name: "Back",
  19229. image: {
  19230. source: "./media/characters/claude-delroute/back.svg",
  19231. extra: 911/829,
  19232. bottom: 18/929
  19233. }
  19234. },
  19235. maw: {
  19236. height: math.unit(0.6407, "meters"),
  19237. name: "Maw",
  19238. image: {
  19239. source: "./media/characters/claude-delroute/maw.svg"
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(7, "feet"),
  19247. default: true
  19248. },
  19249. {
  19250. name: "Lorge",
  19251. height: math.unit(20, "feet")
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19257. {
  19258. front: {
  19259. height: math.unit(8 + 4 / 12, "feet"),
  19260. weight: math.unit(600, "lb"),
  19261. name: "Front",
  19262. image: {
  19263. source: "./media/characters/dragonien/front.svg",
  19264. extra: 100 / 94,
  19265. bottom: 3.3 / 103.3445
  19266. }
  19267. },
  19268. back: {
  19269. height: math.unit(8 + 4 / 12, "feet"),
  19270. weight: math.unit(600, "lb"),
  19271. name: "Back",
  19272. image: {
  19273. source: "./media/characters/dragonien/back.svg",
  19274. extra: 776 / 746,
  19275. bottom: 6.4 / 782.0616
  19276. }
  19277. },
  19278. foot: {
  19279. height: math.unit(1.54, "feet"),
  19280. name: "Foot",
  19281. image: {
  19282. source: "./media/characters/dragonien/foot.svg",
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(8 + 4 / 12, "feet"),
  19290. default: true
  19291. },
  19292. {
  19293. name: "Macro",
  19294. height: math.unit(200, "feet")
  19295. },
  19296. {
  19297. name: "Megamacro",
  19298. height: math.unit(1, "mile")
  19299. },
  19300. {
  19301. name: "Gigamacro",
  19302. height: math.unit(1000, "miles")
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(5 + 2 / 12, "feet"),
  19311. weight: math.unit(110, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/desta/front.svg",
  19315. extra: 767 / 726,
  19316. bottom: 11.7 / 779
  19317. }
  19318. },
  19319. back: {
  19320. height: math.unit(5 + 2 / 12, "feet"),
  19321. weight: math.unit(110, "lb"),
  19322. name: "Back",
  19323. image: {
  19324. source: "./media/characters/desta/back.svg",
  19325. extra: 777 / 728,
  19326. bottom: 6 / 784
  19327. }
  19328. },
  19329. frontAlt: {
  19330. height: math.unit(5 + 2 / 12, "feet"),
  19331. weight: math.unit(110, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/desta/front-alt.svg",
  19335. extra: 1482 / 1417
  19336. }
  19337. },
  19338. side: {
  19339. height: math.unit(5 + 2 / 12, "feet"),
  19340. weight: math.unit(110, "lb"),
  19341. name: "Side",
  19342. image: {
  19343. source: "./media/characters/desta/side.svg",
  19344. extra: 2579 / 2491,
  19345. bottom: 0.053
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Micro",
  19352. height: math.unit(6, "inches")
  19353. },
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(5 + 2 / 12, "feet"),
  19357. default: true
  19358. },
  19359. {
  19360. name: "Macro",
  19361. height: math.unit(62, "feet")
  19362. },
  19363. {
  19364. name: "Megamacro",
  19365. height: math.unit(1800, "feet")
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(10, "feet"),
  19374. weight: math.unit(700, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/storm-alystar/front.svg",
  19378. extra: 2112 / 1898,
  19379. bottom: 0.034
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Micro",
  19386. height: math.unit(3.5, "inches")
  19387. },
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(10, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(400, "feet")
  19396. },
  19397. {
  19398. name: "Deific",
  19399. height: math.unit(60, "miles")
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(2.35, "meters"),
  19408. weight: math.unit(119, "kg"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/ilia/front.svg",
  19412. extra: 1285 / 1255,
  19413. bottom: 0.06
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(2.35, "meters")
  19421. },
  19422. {
  19423. name: "Macro",
  19424. height: math.unit(140, "meters"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Megamacro",
  19429. height: math.unit(100, "miles")
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(6 + 5 / 12, "feet"),
  19438. weight: math.unit(190, "lb"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/kingdead/front.svg",
  19442. extra: 1228 / 1177
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Micro",
  19449. height: math.unit(7, "inches")
  19450. },
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(6 + 5 / 12, "feet")
  19454. },
  19455. {
  19456. name: "Macro",
  19457. height: math.unit(150, "feet"),
  19458. default: true
  19459. },
  19460. {
  19461. name: "Megamacro",
  19462. height: math.unit(200, "miles")
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(8, "feet"),
  19471. weight: math.unit(600, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/kyrehx/front.svg",
  19475. extra: 1195 / 1095,
  19476. bottom: 0.034
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Micro",
  19483. height: math.unit(2, "inches")
  19484. },
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(8, "feet"),
  19488. default: true
  19489. },
  19490. {
  19491. name: "Macro",
  19492. height: math.unit(255, "feet")
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19501. weight: math.unit(184, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/xang/front.svg",
  19505. extra: 845 / 755
  19506. }
  19507. },
  19508. },
  19509. [
  19510. {
  19511. name: "Normal",
  19512. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19513. default: true
  19514. },
  19515. {
  19516. name: "Macro",
  19517. height: math.unit(0.935 * 146, "feet")
  19518. },
  19519. {
  19520. name: "Megamacro",
  19521. height: math.unit(0.935 * 3, "miles")
  19522. },
  19523. ]
  19524. ))
  19525. characterMakers.push(() => makeCharacter(
  19526. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19527. {
  19528. frontDressed: {
  19529. height: math.unit(5 + 7 / 12, "feet"),
  19530. weight: math.unit(140, "lb"),
  19531. name: "Front (Dressed)",
  19532. image: {
  19533. source: "./media/characters/doc-weardno/front-dressed.svg",
  19534. extra: 263 / 234
  19535. }
  19536. },
  19537. backDressed: {
  19538. height: math.unit(5 + 7 / 12, "feet"),
  19539. weight: math.unit(140, "lb"),
  19540. name: "Back (Dressed)",
  19541. image: {
  19542. source: "./media/characters/doc-weardno/back-dressed.svg",
  19543. extra: 266 / 238
  19544. }
  19545. },
  19546. front: {
  19547. height: math.unit(5 + 7 / 12, "feet"),
  19548. weight: math.unit(140, "lb"),
  19549. name: "Front",
  19550. image: {
  19551. source: "./media/characters/doc-weardno/front.svg",
  19552. extra: 254 / 233
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Micro",
  19559. height: math.unit(3, "inches")
  19560. },
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(5 + 7 / 12, "feet"),
  19564. default: true
  19565. },
  19566. {
  19567. name: "Macro",
  19568. height: math.unit(25, "feet")
  19569. },
  19570. {
  19571. name: "Megamacro",
  19572. height: math.unit(2, "miles")
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(6 + 2 / 12, "feet"),
  19581. weight: math.unit(153, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/seth-whilst/front.svg",
  19585. bottom: 0.07
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Micro",
  19592. height: math.unit(5, "inches")
  19593. },
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(6 + 2 / 12, "feet"),
  19597. default: true
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19603. {
  19604. front: {
  19605. height: math.unit(3, "inches"),
  19606. weight: math.unit(8, "grams"),
  19607. name: "Front",
  19608. image: {
  19609. source: "./media/characters/pocket-jabari/front.svg",
  19610. extra: 1024 / 974,
  19611. bottom: 0.039
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Minimicro",
  19618. height: math.unit(8, "mm")
  19619. },
  19620. {
  19621. name: "Micro",
  19622. height: math.unit(3, "inches"),
  19623. default: true
  19624. },
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(3, "feet")
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19633. {
  19634. frontDressed: {
  19635. height: math.unit(15, "feet"),
  19636. weight: math.unit(3280, "lb"),
  19637. name: "Front (Dressed)",
  19638. image: {
  19639. source: "./media/characters/sapphy/front-dressed.svg",
  19640. extra: 1951/1654,
  19641. bottom: 194/2145
  19642. },
  19643. form: "anthro",
  19644. default: true
  19645. },
  19646. backDressed: {
  19647. height: math.unit(15, "feet"),
  19648. weight: math.unit(3280, "lb"),
  19649. name: "Back (Dressed)",
  19650. image: {
  19651. source: "./media/characters/sapphy/back-dressed.svg",
  19652. extra: 2058/1918,
  19653. bottom: 125/2183
  19654. },
  19655. form: "anthro"
  19656. },
  19657. frontNude: {
  19658. height: math.unit(15, "feet"),
  19659. weight: math.unit(3280, "lb"),
  19660. name: "Front (Nude)",
  19661. image: {
  19662. source: "./media/characters/sapphy/front-nude.svg",
  19663. extra: 1951/1654,
  19664. bottom: 194/2145
  19665. },
  19666. form: "anthro"
  19667. },
  19668. backNude: {
  19669. height: math.unit(15, "feet"),
  19670. weight: math.unit(3280, "lb"),
  19671. name: "Back (Nude)",
  19672. image: {
  19673. source: "./media/characters/sapphy/back-nude.svg",
  19674. extra: 2058/1918,
  19675. bottom: 125/2183
  19676. },
  19677. form: "anthro"
  19678. },
  19679. full: {
  19680. height: math.unit(15, "feet"),
  19681. weight: math.unit(3280, "lb"),
  19682. name: "Full",
  19683. image: {
  19684. source: "./media/characters/sapphy/full.svg",
  19685. extra: 1396/1317,
  19686. bottom: 44/1440
  19687. },
  19688. form: "anthro"
  19689. },
  19690. dick: {
  19691. height: math.unit(3.8, "feet"),
  19692. name: "Dick",
  19693. image: {
  19694. source: "./media/characters/sapphy/dick.svg"
  19695. },
  19696. form: "anthro"
  19697. },
  19698. feral: {
  19699. height: math.unit(35, "feet"),
  19700. weight: math.unit(160, "tons"),
  19701. name: "Feral",
  19702. image: {
  19703. source: "./media/characters/sapphy/feral.svg",
  19704. extra: 1050/573,
  19705. bottom: 60/1110
  19706. },
  19707. form: "feral",
  19708. default: true
  19709. },
  19710. },
  19711. [
  19712. {
  19713. name: "Normal",
  19714. height: math.unit(15, "feet"),
  19715. form: "anthro"
  19716. },
  19717. {
  19718. name: "Casual Macro",
  19719. height: math.unit(120, "feet"),
  19720. form: "anthro"
  19721. },
  19722. {
  19723. name: "Macro",
  19724. height: math.unit(2150, "feet"),
  19725. default: true,
  19726. form: "anthro"
  19727. },
  19728. {
  19729. name: "Megamacro",
  19730. height: math.unit(8, "miles"),
  19731. form: "anthro"
  19732. },
  19733. {
  19734. name: "Galaxy Mom",
  19735. height: math.unit(6, "megalightyears"),
  19736. form: "anthro"
  19737. },
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(35, "feet"),
  19741. form: "feral",
  19742. default: true
  19743. },
  19744. {
  19745. name: "Macro",
  19746. height: math.unit(300, "feet"),
  19747. form: "feral"
  19748. },
  19749. {
  19750. name: "Galaxy Mom",
  19751. height: math.unit(10, "megalightyears"),
  19752. form: "feral"
  19753. },
  19754. ],
  19755. {
  19756. "anthro": {
  19757. name: "Anthro",
  19758. default: true
  19759. },
  19760. "feral": {
  19761. name: "Feral"
  19762. }
  19763. }
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19767. {
  19768. front: {
  19769. height: math.unit(6, "feet"),
  19770. weight: math.unit(170, "lb"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/kiro/front.svg",
  19774. extra: 1064 / 1012,
  19775. bottom: 0.052
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Micro",
  19782. height: math.unit(6, "inches")
  19783. },
  19784. {
  19785. name: "Normal",
  19786. height: math.unit(6, "feet"),
  19787. default: true
  19788. },
  19789. {
  19790. name: "Macro",
  19791. height: math.unit(72, "feet")
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19797. {
  19798. front: {
  19799. height: math.unit(5 + 9 / 12, "feet"),
  19800. weight: math.unit(175, "lb"),
  19801. name: "Front",
  19802. image: {
  19803. source: "./media/characters/irishfox/front.svg",
  19804. extra: 1912 / 1680,
  19805. bottom: 0.02
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Nano",
  19812. height: math.unit(1, "mm")
  19813. },
  19814. {
  19815. name: "Micro",
  19816. height: math.unit(2, "inches")
  19817. },
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(5 + 9 / 12, "feet"),
  19821. default: true
  19822. },
  19823. {
  19824. name: "Macro",
  19825. height: math.unit(45, "feet")
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(6 + 1 / 12, "feet"),
  19834. weight: math.unit(75, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/aronai-sieyes/front.svg",
  19838. extra: 1532/1450,
  19839. bottom: 42/1574
  19840. }
  19841. },
  19842. side: {
  19843. height: math.unit(6 + 1 / 12, "feet"),
  19844. weight: math.unit(75, "lb"),
  19845. name: "Side",
  19846. image: {
  19847. source: "./media/characters/aronai-sieyes/side.svg",
  19848. extra: 1422/1365,
  19849. bottom: 148/1570
  19850. }
  19851. },
  19852. back: {
  19853. height: math.unit(6 + 1 / 12, "feet"),
  19854. weight: math.unit(75, "lb"),
  19855. name: "Back",
  19856. image: {
  19857. source: "./media/characters/aronai-sieyes/back.svg",
  19858. extra: 1526/1464,
  19859. bottom: 51/1577
  19860. }
  19861. },
  19862. dressed: {
  19863. height: math.unit(6 + 1 / 12, "feet"),
  19864. weight: math.unit(75, "lb"),
  19865. name: "Dressed",
  19866. image: {
  19867. source: "./media/characters/aronai-sieyes/dressed.svg",
  19868. extra: 1559/1483,
  19869. bottom: 39/1598
  19870. }
  19871. },
  19872. slit: {
  19873. height: math.unit(1.3, "feet"),
  19874. name: "Slit",
  19875. image: {
  19876. source: "./media/characters/aronai-sieyes/slit.svg"
  19877. }
  19878. },
  19879. slitSpread: {
  19880. height: math.unit(0.9, "feet"),
  19881. name: "Slit (Spread)",
  19882. image: {
  19883. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19884. }
  19885. },
  19886. rump: {
  19887. height: math.unit(1.3, "feet"),
  19888. name: "Rump",
  19889. image: {
  19890. source: "./media/characters/aronai-sieyes/rump.svg"
  19891. }
  19892. },
  19893. maw: {
  19894. height: math.unit(1.25, "feet"),
  19895. name: "Maw",
  19896. image: {
  19897. source: "./media/characters/aronai-sieyes/maw.svg"
  19898. }
  19899. },
  19900. feral: {
  19901. height: math.unit(18, "feet"),
  19902. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19903. name: "Feral",
  19904. image: {
  19905. source: "./media/characters/aronai-sieyes/feral.svg",
  19906. extra: 1530 / 1240,
  19907. bottom: 0.035
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Micro",
  19914. height: math.unit(2, "inches")
  19915. },
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(6 + 1 / 12, "feet"),
  19919. default: true
  19920. }
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19925. {
  19926. front: {
  19927. height: math.unit(12, "feet"),
  19928. weight: math.unit(410, "kg"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/xuna/front.svg",
  19932. extra: 2184 / 1980
  19933. }
  19934. },
  19935. side: {
  19936. height: math.unit(12, "feet"),
  19937. weight: math.unit(410, "kg"),
  19938. name: "Side",
  19939. image: {
  19940. source: "./media/characters/xuna/side.svg",
  19941. extra: 2184 / 1980
  19942. }
  19943. },
  19944. back: {
  19945. height: math.unit(12, "feet"),
  19946. weight: math.unit(410, "kg"),
  19947. name: "Back",
  19948. image: {
  19949. source: "./media/characters/xuna/back.svg",
  19950. extra: 2184 / 1980
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Nano glow",
  19957. height: math.unit(10, "nm")
  19958. },
  19959. {
  19960. name: "Micro floof",
  19961. height: math.unit(0.3, "m")
  19962. },
  19963. {
  19964. name: "Huggable softy boi",
  19965. height: math.unit(3.6576, "m"),
  19966. default: true
  19967. },
  19968. {
  19969. name: "Admirable floof",
  19970. height: math.unit(80, "meters")
  19971. },
  19972. {
  19973. name: "Gentle macro",
  19974. height: math.unit(300, "meters")
  19975. },
  19976. {
  19977. name: "Very careful floof",
  19978. height: math.unit(3200, "meters")
  19979. },
  19980. {
  19981. name: "The mega floof",
  19982. height: math.unit(36000, "meters")
  19983. },
  19984. {
  19985. name: "Giga-fur-Wicker",
  19986. height: math.unit(4800000, "meters")
  19987. },
  19988. {
  19989. name: "Licky world",
  19990. height: math.unit(20000000, "meters")
  19991. },
  19992. {
  19993. name: "Floofy cyan sun",
  19994. height: math.unit(1500000000, "meters")
  19995. },
  19996. {
  19997. name: "Milky Wicker",
  19998. height: math.unit(1000000000000000000000, "meters")
  19999. },
  20000. {
  20001. name: "The observing Wicker",
  20002. height: math.unit(999999999999999999999999999, "meters")
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(5 + 9 / 12, "feet"),
  20011. weight: math.unit(150, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/arokha-sieyes/front.svg",
  20015. extra: 1425 / 1284,
  20016. bottom: 0.05
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(5 + 9 / 12, "feet")
  20024. },
  20025. {
  20026. name: "Macro",
  20027. height: math.unit(30, "meters"),
  20028. default: true
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(6, "feet"),
  20037. weight: math.unit(180, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/arokh-sieyes/front.svg",
  20041. extra: 1830 / 1769,
  20042. bottom: 0.01
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(6, "feet")
  20050. },
  20051. {
  20052. name: "Macro",
  20053. height: math.unit(30, "meters"),
  20054. default: true
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20060. {
  20061. side: {
  20062. height: math.unit(13 + 1 / 12, "feet"),
  20063. weight: math.unit(8.5, "tonnes"),
  20064. name: "Side",
  20065. image: {
  20066. source: "./media/characters/goldeneye/side.svg",
  20067. extra: 1182 / 778,
  20068. bottom: 0.067
  20069. }
  20070. },
  20071. paw: {
  20072. height: math.unit(3.4, "feet"),
  20073. name: "Paw",
  20074. image: {
  20075. source: "./media/characters/goldeneye/paw.svg"
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(13 + 1 / 12, "feet"),
  20083. default: true
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20089. {
  20090. front: {
  20091. height: math.unit(6 + 1 / 12, "feet"),
  20092. weight: math.unit(210, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/leonardo-lycheborne/front.svg",
  20096. extra: 776/723,
  20097. bottom: 34/810
  20098. }
  20099. },
  20100. side: {
  20101. height: math.unit(6 + 1 / 12, "feet"),
  20102. weight: math.unit(210, "lb"),
  20103. name: "Side",
  20104. image: {
  20105. source: "./media/characters/leonardo-lycheborne/side.svg",
  20106. extra: 780/728,
  20107. bottom: 12/792
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(6 + 1 / 12, "feet"),
  20112. weight: math.unit(210, "lb"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/leonardo-lycheborne/back.svg",
  20116. extra: 775/721,
  20117. bottom: 17/792
  20118. }
  20119. },
  20120. hand: {
  20121. height: math.unit(1.08, "feet"),
  20122. name: "Hand",
  20123. image: {
  20124. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20125. }
  20126. },
  20127. foot: {
  20128. height: math.unit(1.32, "feet"),
  20129. name: "Foot",
  20130. image: {
  20131. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20132. }
  20133. },
  20134. maw: {
  20135. height: math.unit(1, "feet"),
  20136. name: "Maw",
  20137. image: {
  20138. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20139. }
  20140. },
  20141. were: {
  20142. height: math.unit(20, "feet"),
  20143. weight: math.unit(7800, "lb"),
  20144. name: "Were",
  20145. image: {
  20146. source: "./media/characters/leonardo-lycheborne/were.svg",
  20147. extra: 1224/1165,
  20148. bottom: 72/1296
  20149. }
  20150. },
  20151. feral: {
  20152. height: math.unit(7.5, "feet"),
  20153. weight: math.unit(600, "lb"),
  20154. name: "Feral",
  20155. image: {
  20156. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20157. extra: 797/702,
  20158. bottom: 139/936
  20159. }
  20160. },
  20161. taur: {
  20162. height: math.unit(11, "feet"),
  20163. weight: math.unit(3300, "lb"),
  20164. name: "Taur",
  20165. image: {
  20166. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20167. extra: 1271/1197,
  20168. bottom: 47/1318
  20169. }
  20170. },
  20171. barghest: {
  20172. height: math.unit(11, "feet"),
  20173. weight: math.unit(1300, "lb"),
  20174. name: "Barghest",
  20175. image: {
  20176. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20177. extra: 1291/1204,
  20178. bottom: 37/1328
  20179. }
  20180. },
  20181. dick: {
  20182. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20183. name: "Dick",
  20184. image: {
  20185. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20186. }
  20187. },
  20188. dickWere: {
  20189. height: math.unit((20) / 3.8, "feet"),
  20190. name: "Dick (Were)",
  20191. image: {
  20192. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(6 + 1 / 12, "feet"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20206. {
  20207. front: {
  20208. height: math.unit(10, "feet"),
  20209. weight: math.unit(350, "lb"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/jet/front.svg",
  20213. extra: 2050 / 1980,
  20214. bottom: 0.013
  20215. }
  20216. },
  20217. back: {
  20218. height: math.unit(10, "feet"),
  20219. weight: math.unit(350, "lb"),
  20220. name: "Back",
  20221. image: {
  20222. source: "./media/characters/jet/back.svg",
  20223. extra: 2050 / 1980,
  20224. bottom: 0.013
  20225. }
  20226. },
  20227. },
  20228. [
  20229. {
  20230. name: "Micro",
  20231. height: math.unit(6, "inches")
  20232. },
  20233. {
  20234. name: "Normal",
  20235. height: math.unit(10, "feet"),
  20236. default: true
  20237. },
  20238. {
  20239. name: "Macro",
  20240. height: math.unit(100, "feet")
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20246. {
  20247. front: {
  20248. height: math.unit(15, "feet"),
  20249. weight: math.unit(2800, "lb"),
  20250. name: "Front",
  20251. image: {
  20252. source: "./media/characters/tanarath/front.svg",
  20253. extra: 2392 / 2220,
  20254. bottom: 0.03
  20255. }
  20256. },
  20257. back: {
  20258. height: math.unit(15, "feet"),
  20259. weight: math.unit(2800, "lb"),
  20260. name: "Back",
  20261. image: {
  20262. source: "./media/characters/tanarath/back.svg",
  20263. extra: 2392 / 2220,
  20264. bottom: 0.03
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(15, "feet"),
  20272. default: true
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20278. {
  20279. front: {
  20280. height: math.unit(7 + 1 / 12, "feet"),
  20281. weight: math.unit(175, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/patty-cattybatty/front.svg",
  20285. extra: 908 / 874,
  20286. bottom: 0.025
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Micro",
  20293. height: math.unit(1, "inch")
  20294. },
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(7 + 1 / 12, "feet")
  20298. },
  20299. {
  20300. name: "Mini Macro",
  20301. height: math.unit(155, "feet")
  20302. },
  20303. {
  20304. name: "Macro",
  20305. height: math.unit(1077, "feet")
  20306. },
  20307. {
  20308. name: "Mega Macro",
  20309. height: math.unit(47650, "feet"),
  20310. default: true
  20311. },
  20312. {
  20313. name: "Giga Macro",
  20314. height: math.unit(440, "miles")
  20315. },
  20316. {
  20317. name: "Tera Macro",
  20318. height: math.unit(8700, "miles")
  20319. },
  20320. {
  20321. name: "Planetary Macro",
  20322. height: math.unit(32700, "miles")
  20323. },
  20324. {
  20325. name: "Solar Macro",
  20326. height: math.unit(550000, "miles")
  20327. },
  20328. {
  20329. name: "Celestial Macro",
  20330. height: math.unit(2.5, "AU")
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(4 + 5 / 12, "feet"),
  20339. weight: math.unit(90, "lb"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/cappu/front.svg",
  20343. extra: 1247 / 1152,
  20344. bottom: 0.012
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(4 + 5 / 12, "feet"),
  20352. default: true
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20358. {
  20359. frontDressed: {
  20360. height: math.unit(70, "cm"),
  20361. weight: math.unit(6, "kg"),
  20362. name: "Front (Dressed)",
  20363. image: {
  20364. source: "./media/characters/sebi/front-dressed.svg",
  20365. extra: 713.5 / 686.5,
  20366. bottom: 0.003
  20367. }
  20368. },
  20369. front: {
  20370. height: math.unit(70, "cm"),
  20371. weight: math.unit(5, "kg"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/sebi/front.svg",
  20375. extra: 713.5 / 686.5,
  20376. bottom: 0.003
  20377. }
  20378. }
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(70, "cm"),
  20384. default: true
  20385. },
  20386. {
  20387. name: "Macro",
  20388. height: math.unit(8, "meters")
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(6, "feet"),
  20397. weight: math.unit(150, "lb"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/typhek/front.svg",
  20401. extra: 1948 / 1929,
  20402. bottom: 0.025
  20403. }
  20404. },
  20405. side: {
  20406. height: math.unit(6, "feet"),
  20407. weight: math.unit(150, "lb"),
  20408. name: "Side",
  20409. image: {
  20410. source: "./media/characters/typhek/side.svg",
  20411. extra: 2034 / 2010,
  20412. bottom: 0.003
  20413. }
  20414. },
  20415. back: {
  20416. height: math.unit(6, "feet"),
  20417. weight: math.unit(150, "lb"),
  20418. name: "Back",
  20419. image: {
  20420. source: "./media/characters/typhek/back.svg",
  20421. extra: 2005 / 1978,
  20422. bottom: 0.004
  20423. }
  20424. },
  20425. palm: {
  20426. height: math.unit(1.2, "feet"),
  20427. name: "Palm",
  20428. image: {
  20429. source: "./media/characters/typhek/palm.svg"
  20430. }
  20431. },
  20432. fist: {
  20433. height: math.unit(1.1, "feet"),
  20434. name: "Fist",
  20435. image: {
  20436. source: "./media/characters/typhek/fist.svg"
  20437. }
  20438. },
  20439. foot: {
  20440. height: math.unit(1.57, "feet"),
  20441. name: "Foot",
  20442. image: {
  20443. source: "./media/characters/typhek/foot.svg"
  20444. }
  20445. },
  20446. sole: {
  20447. height: math.unit(2.05, "feet"),
  20448. name: "Sole",
  20449. image: {
  20450. source: "./media/characters/typhek/sole.svg"
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Macro",
  20457. height: math.unit(40, "stories"),
  20458. default: true
  20459. },
  20460. {
  20461. name: "Megamacro",
  20462. height: math.unit(1, "mile")
  20463. },
  20464. {
  20465. name: "Gigamacro",
  20466. height: math.unit(4000, "solarradii")
  20467. },
  20468. {
  20469. name: "Universal",
  20470. height: math.unit(1.1, "universes")
  20471. }
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20476. {
  20477. side: {
  20478. height: math.unit(5 + 7 / 12, "feet"),
  20479. weight: math.unit(150, "lb"),
  20480. name: "Side",
  20481. image: {
  20482. source: "./media/characters/kassy/side.svg",
  20483. extra: 1280 / 1225,
  20484. bottom: 0.002
  20485. }
  20486. },
  20487. front: {
  20488. height: math.unit(5 + 7 / 12, "feet"),
  20489. weight: math.unit(150, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/kassy/front.svg",
  20493. extra: 1280 / 1225,
  20494. bottom: 0.025
  20495. }
  20496. },
  20497. back: {
  20498. height: math.unit(5 + 7 / 12, "feet"),
  20499. weight: math.unit(150, "lb"),
  20500. name: "Back",
  20501. image: {
  20502. source: "./media/characters/kassy/back.svg",
  20503. extra: 1280 / 1225,
  20504. bottom: 0.002
  20505. }
  20506. },
  20507. foot: {
  20508. height: math.unit(1.266, "feet"),
  20509. name: "Foot",
  20510. image: {
  20511. source: "./media/characters/kassy/foot.svg"
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(5 + 7 / 12, "feet")
  20519. },
  20520. {
  20521. name: "Macro",
  20522. height: math.unit(137, "feet"),
  20523. default: true
  20524. },
  20525. {
  20526. name: "Megamacro",
  20527. height: math.unit(1, "mile")
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(6 + 1 / 12, "feet"),
  20536. weight: math.unit(200, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/neil/front.svg",
  20540. extra: 1326 / 1250,
  20541. bottom: 0.023
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(6 + 1 / 12, "feet"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Macro",
  20553. height: math.unit(200, "feet")
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(5 + 9 / 12, "feet"),
  20562. weight: math.unit(190, "lb"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/atticus/front.svg",
  20566. extra: 2934 / 2785,
  20567. bottom: 0.025
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(5 + 9 / 12, "feet"),
  20575. default: true
  20576. },
  20577. {
  20578. name: "Macro",
  20579. height: math.unit(180, "feet")
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20585. {
  20586. side: {
  20587. height: math.unit(9, "feet"),
  20588. weight: math.unit(650, "lb"),
  20589. name: "Side",
  20590. image: {
  20591. source: "./media/characters/milo/side.svg",
  20592. extra: 2644 / 2310,
  20593. bottom: 0.032
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(9, "feet"),
  20601. default: true
  20602. },
  20603. {
  20604. name: "Macro",
  20605. height: math.unit(300, "feet")
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20611. {
  20612. side: {
  20613. height: math.unit(8, "meters"),
  20614. weight: math.unit(90000, "kg"),
  20615. name: "Side",
  20616. image: {
  20617. source: "./media/characters/ijzer/side.svg",
  20618. extra: 2756 / 1600,
  20619. bottom: 0.01
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Small",
  20626. height: math.unit(3, "meters")
  20627. },
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(8, "meters"),
  20631. default: true
  20632. },
  20633. {
  20634. name: "Normal+",
  20635. height: math.unit(10, "meters")
  20636. },
  20637. {
  20638. name: "Bigger",
  20639. height: math.unit(24, "meters")
  20640. },
  20641. {
  20642. name: "Huge",
  20643. height: math.unit(80, "meters")
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(6 + 2 / 12, "feet"),
  20652. weight: math.unit(153, "lb"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/luca-cervicum/front.svg",
  20656. extra: 370 / 327,
  20657. bottom: 0.015
  20658. }
  20659. },
  20660. back: {
  20661. height: math.unit(6 + 2 / 12, "feet"),
  20662. weight: math.unit(153, "lb"),
  20663. name: "Back",
  20664. image: {
  20665. source: "./media/characters/luca-cervicum/back.svg",
  20666. extra: 367 / 333,
  20667. bottom: 0.005
  20668. }
  20669. },
  20670. frontGear: {
  20671. height: math.unit(6 + 2 / 12, "feet"),
  20672. weight: math.unit(173, "lb"),
  20673. name: "Front (Gear)",
  20674. image: {
  20675. source: "./media/characters/luca-cervicum/front-gear.svg",
  20676. extra: 377 / 333,
  20677. bottom: 0.006
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(6 + 2 / 12, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(6 + 1 / 12, "feet"),
  20694. weight: math.unit(304, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/oliver/front.svg",
  20698. extra: 157 / 143,
  20699. bottom: 0.08
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(6 + 1 / 12, "feet"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20713. {
  20714. front: {
  20715. height: math.unit(5 + 7 / 12, "feet"),
  20716. weight: math.unit(140, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/shane/front.svg",
  20720. extra: 304 / 289,
  20721. bottom: 0.005
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(5 + 7 / 12, "feet"),
  20729. default: true
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(5 + 9 / 12, "feet"),
  20738. weight: math.unit(178, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/shin/front.svg",
  20742. extra: 159 / 151,
  20743. bottom: 0.015
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(5 + 9 / 12, "feet"),
  20751. default: true
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20757. {
  20758. front: {
  20759. height: math.unit(5 + 10 / 12, "feet"),
  20760. weight: math.unit(168, "lb"),
  20761. name: "Front",
  20762. image: {
  20763. source: "./media/characters/xerxes/front.svg",
  20764. extra: 282 / 260,
  20765. bottom: 0.045
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(5 + 10 / 12, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20779. {
  20780. front: {
  20781. height: math.unit(6 + 7 / 12, "feet"),
  20782. weight: math.unit(208, "lb"),
  20783. name: "Front",
  20784. image: {
  20785. source: "./media/characters/chaska/front.svg",
  20786. extra: 332 / 319,
  20787. bottom: 0.015
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(6 + 7 / 12, "feet"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20801. {
  20802. front: {
  20803. height: math.unit(5 + 8 / 12, "feet"),
  20804. weight: math.unit(208, "lb"),
  20805. name: "Front",
  20806. image: {
  20807. source: "./media/characters/enuk/front.svg",
  20808. extra: 437 / 406,
  20809. bottom: 0.02
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(5 + 8 / 12, "feet"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20823. {
  20824. front: {
  20825. height: math.unit(5 + 10 / 12, "feet"),
  20826. weight: math.unit(252, "lb"),
  20827. name: "Front",
  20828. image: {
  20829. source: "./media/characters/bruun/front.svg",
  20830. extra: 197 / 187,
  20831. bottom: 0.012
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(5 + 10 / 12, "feet"),
  20839. default: true
  20840. },
  20841. ]
  20842. ))
  20843. characterMakers.push(() => makeCharacter(
  20844. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20845. {
  20846. front: {
  20847. height: math.unit(6 + 10 / 12, "feet"),
  20848. weight: math.unit(255, "lb"),
  20849. name: "Front",
  20850. image: {
  20851. source: "./media/characters/alexeev/front.svg",
  20852. extra: 213 / 200,
  20853. bottom: 0.05
  20854. }
  20855. },
  20856. },
  20857. [
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(6 + 10 / 12, "feet"),
  20861. default: true
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20867. {
  20868. front: {
  20869. height: math.unit(2 + 8 / 12, "feet"),
  20870. weight: math.unit(22, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/evelyn/front.svg",
  20874. extra: 208 / 180
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(2 + 8 / 12, "feet"),
  20882. default: true
  20883. },
  20884. ]
  20885. ))
  20886. characterMakers.push(() => makeCharacter(
  20887. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20888. {
  20889. front: {
  20890. height: math.unit(5 + 9 / 12, "feet"),
  20891. weight: math.unit(139, "lb"),
  20892. name: "Front",
  20893. image: {
  20894. source: "./media/characters/inca/front.svg",
  20895. extra: 294 / 291,
  20896. bottom: 0.03
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(5 + 9 / 12, "feet"),
  20904. default: true
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20910. {
  20911. front: {
  20912. height: math.unit(6 + 3 / 12, "feet"),
  20913. weight: math.unit(185, "lb"),
  20914. name: "Front",
  20915. image: {
  20916. source: "./media/characters/mera/front.svg",
  20917. extra: 291 / 277,
  20918. bottom: 0.03
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(6 + 3 / 12, "feet"),
  20926. default: true
  20927. },
  20928. ]
  20929. ))
  20930. characterMakers.push(() => makeCharacter(
  20931. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20932. {
  20933. front: {
  20934. height: math.unit(6 + 7 / 12, "feet"),
  20935. weight: math.unit(160, "lb"),
  20936. name: "Front",
  20937. image: {
  20938. source: "./media/characters/ceres/front.svg",
  20939. extra: 1023 / 950,
  20940. bottom: 0.027
  20941. }
  20942. },
  20943. back: {
  20944. height: math.unit(6 + 7 / 12, "feet"),
  20945. weight: math.unit(160, "lb"),
  20946. name: "Back",
  20947. image: {
  20948. source: "./media/characters/ceres/back.svg",
  20949. extra: 1023 / 950
  20950. }
  20951. },
  20952. },
  20953. [
  20954. {
  20955. name: "Normal",
  20956. height: math.unit(6 + 7 / 12, "feet"),
  20957. default: true
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20963. {
  20964. front: {
  20965. height: math.unit(5 + 10 / 12, "feet"),
  20966. weight: math.unit(150, "lb"),
  20967. name: "Front",
  20968. image: {
  20969. source: "./media/characters/kris/front.svg",
  20970. extra: 885 / 803,
  20971. bottom: 0.03
  20972. }
  20973. },
  20974. },
  20975. [
  20976. {
  20977. name: "Normal",
  20978. height: math.unit(5 + 10 / 12, "feet"),
  20979. default: true
  20980. },
  20981. ]
  20982. ))
  20983. characterMakers.push(() => makeCharacter(
  20984. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20985. {
  20986. front: {
  20987. height: math.unit(7, "feet"),
  20988. weight: math.unit(120, "kg"),
  20989. name: "Front",
  20990. image: {
  20991. source: "./media/characters/taluthus/front.svg",
  20992. extra: 903 / 833,
  20993. bottom: 0.015
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(7, "feet"),
  21001. default: true
  21002. },
  21003. {
  21004. name: "Macro",
  21005. height: math.unit(300, "feet")
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21011. {
  21012. front: {
  21013. height: math.unit(5 + 9 / 12, "feet"),
  21014. weight: math.unit(145, "lb"),
  21015. name: "Front",
  21016. image: {
  21017. source: "./media/characters/dawn/front.svg",
  21018. extra: 2094 / 2016,
  21019. bottom: 0.025
  21020. }
  21021. },
  21022. back: {
  21023. height: math.unit(5 + 9 / 12, "feet"),
  21024. weight: math.unit(160, "lb"),
  21025. name: "Back",
  21026. image: {
  21027. source: "./media/characters/dawn/back.svg",
  21028. extra: 2112 / 2080,
  21029. bottom: 0.005
  21030. }
  21031. },
  21032. },
  21033. [
  21034. {
  21035. name: "Normal",
  21036. height: math.unit(6 + 7 / 12, "feet"),
  21037. default: true
  21038. },
  21039. ]
  21040. ))
  21041. characterMakers.push(() => makeCharacter(
  21042. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21043. {
  21044. anthro: {
  21045. height: math.unit(8 + 3 / 12, "feet"),
  21046. weight: math.unit(450, "lb"),
  21047. name: "Anthro",
  21048. image: {
  21049. source: "./media/characters/arador/anthro.svg",
  21050. extra: 1835 / 1718,
  21051. bottom: 0.025
  21052. }
  21053. },
  21054. feral: {
  21055. height: math.unit(4, "feet"),
  21056. weight: math.unit(200, "lb"),
  21057. name: "Feral",
  21058. image: {
  21059. source: "./media/characters/arador/feral.svg",
  21060. extra: 1683 / 1514,
  21061. bottom: 0.07
  21062. }
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(8 + 3 / 12, "feet")
  21069. },
  21070. {
  21071. name: "Macro",
  21072. height: math.unit(82.5, "feet"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21079. {
  21080. front: {
  21081. height: math.unit(5 + 10 / 12, "feet"),
  21082. weight: math.unit(125, "lb"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/dharsi/front.svg",
  21086. extra: 716 / 630,
  21087. bottom: 0.035
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Nano",
  21094. height: math.unit(100, "nm")
  21095. },
  21096. {
  21097. name: "Micro",
  21098. height: math.unit(2, "inches")
  21099. },
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(5 + 10 / 12, "feet"),
  21103. default: true
  21104. },
  21105. {
  21106. name: "Macro",
  21107. height: math.unit(1000, "feet")
  21108. },
  21109. {
  21110. name: "Megamacro",
  21111. height: math.unit(10, "miles")
  21112. },
  21113. {
  21114. name: "Gigamacro",
  21115. height: math.unit(3000, "miles")
  21116. },
  21117. {
  21118. name: "Teramacro",
  21119. height: math.unit(500000, "miles")
  21120. },
  21121. {
  21122. name: "Teramacro+",
  21123. height: math.unit(30, "galaxies")
  21124. },
  21125. ]
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21129. {
  21130. front: {
  21131. height: math.unit(6, "feet"),
  21132. weight: math.unit(150, "lb"),
  21133. name: "Front",
  21134. image: {
  21135. source: "./media/characters/deathy/front.svg",
  21136. extra: 1552 / 1463,
  21137. bottom: 0.025
  21138. }
  21139. },
  21140. side: {
  21141. height: math.unit(6, "feet"),
  21142. weight: math.unit(150, "lb"),
  21143. name: "Side",
  21144. image: {
  21145. source: "./media/characters/deathy/side.svg",
  21146. extra: 1604 / 1455,
  21147. bottom: 0.025
  21148. }
  21149. },
  21150. back: {
  21151. height: math.unit(6, "feet"),
  21152. weight: math.unit(150, "lb"),
  21153. name: "Back",
  21154. image: {
  21155. source: "./media/characters/deathy/back.svg",
  21156. extra: 1580 / 1463,
  21157. bottom: 0.005
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Micro",
  21164. height: math.unit(5, "millimeters")
  21165. },
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(6 + 5 / 12, "feet"),
  21169. default: true
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21175. {
  21176. front: {
  21177. height: math.unit(16, "feet"),
  21178. weight: math.unit(4000, "lb"),
  21179. name: "Front",
  21180. image: {
  21181. source: "./media/characters/juniper/front.svg",
  21182. bottom: 0.04
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(16, "feet"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(6, "feet"),
  21199. weight: math.unit(150, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/hipster/front.svg",
  21203. extra: 1312 / 1209,
  21204. bottom: 0.025
  21205. }
  21206. },
  21207. back: {
  21208. height: math.unit(6, "feet"),
  21209. weight: math.unit(150, "lb"),
  21210. name: "Back",
  21211. image: {
  21212. source: "./media/characters/hipster/back.svg",
  21213. extra: 1281 / 1196,
  21214. bottom: 0.01
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Micro",
  21221. height: math.unit(1, "mm")
  21222. },
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(4, "inches"),
  21226. default: true
  21227. },
  21228. {
  21229. name: "Macro",
  21230. height: math.unit(500, "feet")
  21231. },
  21232. {
  21233. name: "Megamacro",
  21234. height: math.unit(1000, "miles")
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21240. {
  21241. front: {
  21242. height: math.unit(6, "feet"),
  21243. weight: math.unit(150, "lb"),
  21244. name: "Front",
  21245. image: {
  21246. source: "./media/characters/tendirmuldr/front.svg",
  21247. extra: 1878 / 1772,
  21248. bottom: 0.015
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Megamacro",
  21255. height: math.unit(1500, "miles"),
  21256. default: true
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21262. {
  21263. front: {
  21264. height: math.unit(14, "feet"),
  21265. weight: math.unit(12000, "lb"),
  21266. name: "Front",
  21267. image: {
  21268. source: "./media/characters/mort/front.svg",
  21269. extra: 365 / 318,
  21270. bottom: 0.01
  21271. }
  21272. },
  21273. side: {
  21274. height: math.unit(14, "feet"),
  21275. weight: math.unit(12000, "lb"),
  21276. name: "Side",
  21277. image: {
  21278. source: "./media/characters/mort/side.svg",
  21279. extra: 365 / 318,
  21280. bottom: 0.052
  21281. },
  21282. default: true
  21283. },
  21284. back: {
  21285. height: math.unit(14, "feet"),
  21286. weight: math.unit(12000, "lb"),
  21287. name: "Back",
  21288. image: {
  21289. source: "./media/characters/mort/back.svg",
  21290. extra: 371 / 332,
  21291. bottom: 0.18
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(14, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21305. {
  21306. front: {
  21307. height: math.unit(8, "feet"),
  21308. weight: math.unit(1, "ton"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/lycoa/front.svg",
  21312. extra: 1836/1728,
  21313. bottom: 81/1917
  21314. }
  21315. },
  21316. back: {
  21317. height: math.unit(8, "feet"),
  21318. weight: math.unit(1, "ton"),
  21319. name: "Back",
  21320. image: {
  21321. source: "./media/characters/lycoa/back.svg",
  21322. extra: 1785/1720,
  21323. bottom: 91/1876
  21324. }
  21325. },
  21326. head: {
  21327. height: math.unit(1.6243, "feet"),
  21328. name: "Head",
  21329. image: {
  21330. source: "./media/characters/lycoa/head.svg",
  21331. extra: 1011/782,
  21332. bottom: 0/1011
  21333. }
  21334. },
  21335. tailmaw: {
  21336. height: math.unit(1.9, "feet"),
  21337. name: "Tailmaw",
  21338. image: {
  21339. source: "./media/characters/lycoa/tailmaw.svg"
  21340. }
  21341. },
  21342. tentacles: {
  21343. height: math.unit(2.1, "feet"),
  21344. name: "Tentacles",
  21345. image: {
  21346. source: "./media/characters/lycoa/tentacles.svg"
  21347. }
  21348. },
  21349. dick: {
  21350. height: math.unit(1.73, "feet"),
  21351. name: "Dick",
  21352. image: {
  21353. source: "./media/characters/lycoa/dick.svg"
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Normal",
  21360. height: math.unit(8, "feet"),
  21361. default: true
  21362. },
  21363. {
  21364. name: "Macro",
  21365. height: math.unit(30, "feet")
  21366. },
  21367. ]
  21368. ))
  21369. characterMakers.push(() => makeCharacter(
  21370. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21371. {
  21372. front: {
  21373. height: math.unit(4 + 2 / 12, "feet"),
  21374. weight: math.unit(70, "lb"),
  21375. name: "Front",
  21376. image: {
  21377. source: "./media/characters/naldara/front.svg",
  21378. extra: 1664/1387,
  21379. bottom: 81/1745
  21380. },
  21381. form: "anthro",
  21382. default: true
  21383. },
  21384. naga: {
  21385. height: math.unit(20, "feet"),
  21386. weight: math.unit(15000, "kg"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/naldara/naga.svg",
  21390. extra: 1590/1396,
  21391. bottom: 285/1875
  21392. },
  21393. form: "naga",
  21394. default: true
  21395. },
  21396. },
  21397. [
  21398. {
  21399. name: "Normal",
  21400. height: math.unit(4 + 2 / 12, "feet"),
  21401. form: "anthro",
  21402. default: true
  21403. },
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(20, "feet"),
  21407. form: "naga",
  21408. default: true
  21409. },
  21410. ],
  21411. {
  21412. "anthro": {
  21413. name: "Anthro",
  21414. default: true
  21415. },
  21416. "naga": {
  21417. name: "Naga"
  21418. }
  21419. }
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(13 + 7 / 12, "feet"),
  21426. weight: math.unit(1500, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/briar/front.svg",
  21430. extra: 1223/1157,
  21431. bottom: 123/1346
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(13 + 7 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21445. {
  21446. side: {
  21447. height: math.unit(16, "feet"),
  21448. weight: math.unit(500, "lb"),
  21449. name: "Side",
  21450. image: {
  21451. source: "./media/characters/vanguard/side.svg",
  21452. extra: 1022/914,
  21453. bottom: 30/1052
  21454. }
  21455. },
  21456. sideAlt: {
  21457. height: math.unit(10, "feet"),
  21458. weight: math.unit(500, "lb"),
  21459. name: "Side (Alt)",
  21460. image: {
  21461. source: "./media/characters/vanguard/side-alt.svg",
  21462. extra: 502 / 425,
  21463. bottom: 0.087
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(17.71, "feet"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21477. {
  21478. front: {
  21479. height: math.unit(7.5, "feet"),
  21480. weight: math.unit(2, "lb"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/artemis/work-safe-front.svg",
  21484. extra: 1192 / 1075,
  21485. bottom: 0.07
  21486. },
  21487. form: "work-safe",
  21488. default: true
  21489. },
  21490. frontNsfw: {
  21491. height: math.unit(7.5, "feet"),
  21492. weight: math.unit(2, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/artemis/calibrating-front.svg",
  21496. extra: 1192 / 1075,
  21497. bottom: 0.07
  21498. },
  21499. form: "calibrating",
  21500. default: true
  21501. },
  21502. frontNsfwer: {
  21503. height: math.unit(7.5, "feet"),
  21504. weight: math.unit(2, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/artemis/oversize-load-front.svg",
  21508. extra: 1192 / 1075,
  21509. bottom: 0.07
  21510. },
  21511. form: "oversize-load",
  21512. default: true
  21513. },
  21514. side: {
  21515. height: math.unit(7.5, "feet"),
  21516. weight: math.unit(2, "lb"),
  21517. name: "Side",
  21518. image: {
  21519. source: "./media/characters/artemis/work-safe-side.svg",
  21520. extra: 1192 / 1075,
  21521. bottom: 0.07
  21522. },
  21523. form: "work-safe"
  21524. },
  21525. sideNsfw: {
  21526. height: math.unit(7.5, "feet"),
  21527. weight: math.unit(2, "lb"),
  21528. name: "Side",
  21529. image: {
  21530. source: "./media/characters/artemis/calibrating-side.svg",
  21531. extra: 1192 / 1075,
  21532. bottom: 0.07
  21533. },
  21534. form: "calibrating"
  21535. },
  21536. sideNsfwer: {
  21537. height: math.unit(7.5, "feet"),
  21538. weight: math.unit(2, "lb"),
  21539. name: "Side",
  21540. image: {
  21541. source: "./media/characters/artemis/oversize-load-side.svg",
  21542. extra: 1192 / 1075,
  21543. bottom: 0.07
  21544. },
  21545. form: "oversize-load"
  21546. },
  21547. maw: {
  21548. height: math.unit(1.1, "feet"),
  21549. name: "Maw",
  21550. image: {
  21551. source: "./media/characters/artemis/maw.svg"
  21552. },
  21553. form: "work-safe"
  21554. },
  21555. stomach: {
  21556. height: math.unit(0.95, "feet"),
  21557. name: "Stomach",
  21558. image: {
  21559. source: "./media/characters/artemis/stomach.svg"
  21560. },
  21561. form: "work-safe"
  21562. },
  21563. dickCanine: {
  21564. height: math.unit(1, "feet"),
  21565. name: "Dick (Canine)",
  21566. image: {
  21567. source: "./media/characters/artemis/dick-canine.svg"
  21568. },
  21569. form: "calibrating"
  21570. },
  21571. dickEquine: {
  21572. height: math.unit(0.85, "feet"),
  21573. name: "Dick (Equine)",
  21574. image: {
  21575. source: "./media/characters/artemis/dick-equine.svg"
  21576. },
  21577. form: "calibrating"
  21578. },
  21579. dickExotic: {
  21580. height: math.unit(0.85, "feet"),
  21581. name: "Dick (Exotic)",
  21582. image: {
  21583. source: "./media/characters/artemis/dick-exotic.svg"
  21584. },
  21585. form: "calibrating"
  21586. },
  21587. dickCanineBigger: {
  21588. height: math.unit(1 * 1.33, "feet"),
  21589. name: "Dick (Canine)",
  21590. image: {
  21591. source: "./media/characters/artemis/dick-canine.svg"
  21592. },
  21593. form: "oversize-load"
  21594. },
  21595. dickEquineBigger: {
  21596. height: math.unit(0.85 * 1.33, "feet"),
  21597. name: "Dick (Equine)",
  21598. image: {
  21599. source: "./media/characters/artemis/dick-equine.svg"
  21600. },
  21601. form: "oversize-load"
  21602. },
  21603. dickExoticBigger: {
  21604. height: math.unit(0.85 * 1.33, "feet"),
  21605. name: "Dick (Exotic)",
  21606. image: {
  21607. source: "./media/characters/artemis/dick-exotic.svg"
  21608. },
  21609. form: "oversize-load"
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(7.5, "feet"),
  21616. form: "work-safe",
  21617. default: true
  21618. },
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(7.5, "feet"),
  21622. form: "calibrating",
  21623. default: true
  21624. },
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(7.5, "feet"),
  21628. form: "oversize-load",
  21629. default: true
  21630. },
  21631. {
  21632. name: "Enlarged",
  21633. height: math.unit(12, "feet"),
  21634. form: "work-safe",
  21635. },
  21636. {
  21637. name: "Enlarged",
  21638. height: math.unit(12, "feet"),
  21639. form: "calibrating",
  21640. },
  21641. {
  21642. name: "Enlarged",
  21643. height: math.unit(12, "feet"),
  21644. form: "oversize-load",
  21645. },
  21646. ],
  21647. {
  21648. "work-safe": {
  21649. name: "Work-Safe",
  21650. default: true
  21651. },
  21652. "calibrating": {
  21653. name: "Calibrating"
  21654. },
  21655. "oversize-load": {
  21656. name: "Oversize Load"
  21657. }
  21658. }
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(5 + 3 / 12, "feet"),
  21665. weight: math.unit(160, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/kira/front.svg",
  21669. extra: 906 / 786,
  21670. bottom: 0.01
  21671. }
  21672. },
  21673. back: {
  21674. height: math.unit(5 + 3 / 12, "feet"),
  21675. weight: math.unit(160, "lb"),
  21676. name: "Back",
  21677. image: {
  21678. source: "./media/characters/kira/back.svg",
  21679. extra: 882 / 757,
  21680. bottom: 0.005
  21681. }
  21682. },
  21683. frontDressed: {
  21684. height: math.unit(5 + 3 / 12, "feet"),
  21685. weight: math.unit(160, "lb"),
  21686. name: "Front (Dressed)",
  21687. image: {
  21688. source: "./media/characters/kira/front-dressed.svg",
  21689. extra: 906 / 786,
  21690. bottom: 0.01
  21691. }
  21692. },
  21693. beans: {
  21694. height: math.unit(0.92, "feet"),
  21695. name: "Beans",
  21696. image: {
  21697. source: "./media/characters/kira/beans.svg"
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(5 + 3 / 12, "feet"),
  21705. default: true
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(5 + 4 / 12, "feet"),
  21714. weight: math.unit(145, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/scramble/front.svg",
  21718. extra: 763 / 727,
  21719. bottom: 0.05
  21720. }
  21721. },
  21722. back: {
  21723. height: math.unit(5 + 4 / 12, "feet"),
  21724. weight: math.unit(145, "lb"),
  21725. name: "Back",
  21726. image: {
  21727. source: "./media/characters/scramble/back.svg",
  21728. extra: 826 / 737,
  21729. bottom: 0.002
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Normal",
  21736. height: math.unit(5 + 4 / 12, "feet"),
  21737. default: true
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21743. {
  21744. side: {
  21745. height: math.unit(6 + 2 / 12, "feet"),
  21746. weight: math.unit(190, "lb"),
  21747. name: "Side",
  21748. image: {
  21749. source: "./media/characters/biscuit/side.svg",
  21750. extra: 858 / 791,
  21751. bottom: 0.044
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(6 + 2 / 12, "feet"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(5 + 2 / 12, "feet"),
  21768. weight: math.unit(120, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/poffin/front.svg",
  21772. extra: 786 / 680,
  21773. bottom: 0.005
  21774. }
  21775. },
  21776. },
  21777. [
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(5 + 2 / 12, "feet"),
  21781. default: true
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21787. {
  21788. front: {
  21789. height: math.unit(6 + 3 / 12, "feet"),
  21790. weight: math.unit(519, "lb"),
  21791. name: "Front",
  21792. image: {
  21793. source: "./media/characters/dhari/front.svg",
  21794. extra: 1048 / 946,
  21795. bottom: 0.015
  21796. }
  21797. },
  21798. back: {
  21799. height: math.unit(6 + 3 / 12, "feet"),
  21800. weight: math.unit(519, "lb"),
  21801. name: "Back",
  21802. image: {
  21803. source: "./media/characters/dhari/back.svg",
  21804. extra: 1048 / 931,
  21805. bottom: 0.005
  21806. }
  21807. },
  21808. frontDressed: {
  21809. height: math.unit(6 + 3 / 12, "feet"),
  21810. weight: math.unit(519, "lb"),
  21811. name: "Front (Dressed)",
  21812. image: {
  21813. source: "./media/characters/dhari/front-dressed.svg",
  21814. extra: 1713 / 1546,
  21815. bottom: 0.02
  21816. }
  21817. },
  21818. backDressed: {
  21819. height: math.unit(6 + 3 / 12, "feet"),
  21820. weight: math.unit(519, "lb"),
  21821. name: "Back (Dressed)",
  21822. image: {
  21823. source: "./media/characters/dhari/back-dressed.svg",
  21824. extra: 1699 / 1537,
  21825. bottom: 0.01
  21826. }
  21827. },
  21828. maw: {
  21829. height: math.unit(0.95, "feet"),
  21830. name: "Maw",
  21831. image: {
  21832. source: "./media/characters/dhari/maw.svg"
  21833. }
  21834. },
  21835. wereFront: {
  21836. height: math.unit(12 + 8 / 12, "feet"),
  21837. weight: math.unit(4000, "lb"),
  21838. name: "Front (Were)",
  21839. image: {
  21840. source: "./media/characters/dhari/were-front.svg",
  21841. extra: 1065 / 969,
  21842. bottom: 0.015
  21843. }
  21844. },
  21845. wereBack: {
  21846. height: math.unit(12 + 8 / 12, "feet"),
  21847. weight: math.unit(4000, "lb"),
  21848. name: "Back (Were)",
  21849. image: {
  21850. source: "./media/characters/dhari/were-back.svg",
  21851. extra: 1065 / 969,
  21852. bottom: 0.012
  21853. }
  21854. },
  21855. wereMaw: {
  21856. height: math.unit(0.625, "meters"),
  21857. name: "Maw (Were)",
  21858. image: {
  21859. source: "./media/characters/dhari/were-maw.svg"
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(6 + 3 / 12, "feet"),
  21867. default: true
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21873. {
  21874. anthro: {
  21875. height: math.unit(5 + 7 / 12, "feet"),
  21876. weight: math.unit(175, "lb"),
  21877. name: "Anthro",
  21878. image: {
  21879. source: "./media/characters/rena-dyne/anthro.svg",
  21880. extra: 1849 / 1785,
  21881. bottom: 0.005
  21882. }
  21883. },
  21884. taur: {
  21885. height: math.unit(15 + 6 / 12, "feet"),
  21886. weight: math.unit(8000, "lb"),
  21887. name: "Taur",
  21888. image: {
  21889. source: "./media/characters/rena-dyne/taur.svg",
  21890. extra: 2315 / 2234,
  21891. bottom: 0.033
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Normal",
  21898. height: math.unit(5 + 7 / 12, "feet"),
  21899. default: true
  21900. },
  21901. ]
  21902. ))
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(8, "feet"),
  21908. weight: math.unit(600, "lb"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/weremeep/front.svg",
  21912. extra: 970/849,
  21913. bottom: 7/977
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Normal",
  21920. height: math.unit(8, "feet"),
  21921. default: true
  21922. },
  21923. {
  21924. name: "Lorg",
  21925. height: math.unit(12, "feet")
  21926. },
  21927. {
  21928. name: "Oh Lawd She Comin'",
  21929. height: math.unit(20, "feet")
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21935. {
  21936. front: {
  21937. height: math.unit(4, "feet"),
  21938. weight: math.unit(90, "lb"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/reza/front.svg",
  21942. extra: 1183 / 1111,
  21943. bottom: 0.017
  21944. }
  21945. },
  21946. back: {
  21947. height: math.unit(4, "feet"),
  21948. weight: math.unit(90, "lb"),
  21949. name: "Back",
  21950. image: {
  21951. source: "./media/characters/reza/back.svg",
  21952. extra: 1183 / 1111,
  21953. bottom: 0.01
  21954. }
  21955. },
  21956. drake: {
  21957. height: math.unit(30, "feet"),
  21958. weight: math.unit(246960, "lb"),
  21959. name: "Drake",
  21960. image: {
  21961. source: "./media/characters/reza/drake.svg",
  21962. extra: 2350 / 2024,
  21963. bottom: 60.7 / 2403
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Normal",
  21970. height: math.unit(4, "feet"),
  21971. default: true
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21977. {
  21978. side: {
  21979. height: math.unit(15, "feet"),
  21980. weight: math.unit(14, "tons"),
  21981. name: "Side",
  21982. image: {
  21983. source: "./media/characters/athea/side.svg",
  21984. extra: 960 / 540,
  21985. bottom: 0.003
  21986. }
  21987. },
  21988. sitting: {
  21989. height: math.unit(6 * 2.85, "feet"),
  21990. weight: math.unit(14, "tons"),
  21991. name: "Sitting",
  21992. image: {
  21993. source: "./media/characters/athea/sitting.svg",
  21994. extra: 621 / 581,
  21995. bottom: 0.075
  21996. }
  21997. },
  21998. maw: {
  21999. height: math.unit(7.59498031496063, "feet"),
  22000. name: "Maw",
  22001. image: {
  22002. source: "./media/characters/athea/maw.svg"
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Lap Cat",
  22009. height: math.unit(2.5, "feet")
  22010. },
  22011. {
  22012. name: "Minimacro",
  22013. height: math.unit(15, "feet"),
  22014. default: true
  22015. },
  22016. {
  22017. name: "Macro",
  22018. height: math.unit(120, "feet")
  22019. },
  22020. {
  22021. name: "Macro+",
  22022. height: math.unit(640, "feet")
  22023. },
  22024. {
  22025. name: "Colossus",
  22026. height: math.unit(2.2, "miles")
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(8 + 8 / 12, "feet"),
  22035. weight: math.unit(130, "kg"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/seroko/front.svg",
  22039. extra: 1385 / 1280,
  22040. bottom: 0.025
  22041. }
  22042. },
  22043. back: {
  22044. height: math.unit(8 + 8 / 12, "feet"),
  22045. weight: math.unit(130, "kg"),
  22046. name: "Back",
  22047. image: {
  22048. source: "./media/characters/seroko/back.svg",
  22049. extra: 1369 / 1238,
  22050. bottom: 0.018
  22051. }
  22052. },
  22053. frontDressed: {
  22054. height: math.unit(8 + 8 / 12, "feet"),
  22055. weight: math.unit(130, "kg"),
  22056. name: "Front (Dressed)",
  22057. image: {
  22058. source: "./media/characters/seroko/front-dressed.svg",
  22059. extra: 1366 / 1275,
  22060. bottom: 0.03
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(8 + 8 / 12, "feet"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(5.5, "feet"),
  22077. weight: math.unit(160, "lb"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/quatzi/front.svg",
  22081. extra: 2346 / 2242,
  22082. bottom: 0.015
  22083. }
  22084. },
  22085. },
  22086. [
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(5.5, "feet"),
  22090. default: true
  22091. },
  22092. {
  22093. name: "Big",
  22094. height: math.unit(7.7, "feet")
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(5 + 11 / 12, "feet"),
  22103. weight: math.unit(180, "lb"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/sen/front.svg",
  22107. extra: 1321 / 1254,
  22108. bottom: 0.015
  22109. }
  22110. },
  22111. side: {
  22112. height: math.unit(5 + 11 / 12, "feet"),
  22113. weight: math.unit(180, "lb"),
  22114. name: "Side",
  22115. image: {
  22116. source: "./media/characters/sen/side.svg",
  22117. extra: 1321 / 1254,
  22118. bottom: 0.007
  22119. }
  22120. },
  22121. back: {
  22122. height: math.unit(5 + 11 / 12, "feet"),
  22123. weight: math.unit(180, "lb"),
  22124. name: "Back",
  22125. image: {
  22126. source: "./media/characters/sen/back.svg",
  22127. extra: 1321 / 1254
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(5 + 11 / 12, "feet"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(166.6, "cm"),
  22144. weight: math.unit(66.6, "kg"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/fruity/front.svg",
  22148. extra: 1510 / 1386,
  22149. bottom: 0.04
  22150. }
  22151. },
  22152. back: {
  22153. height: math.unit(166.6, "cm"),
  22154. weight: math.unit(66.6, "lb"),
  22155. name: "Back",
  22156. image: {
  22157. source: "./media/characters/fruity/back.svg",
  22158. extra: 1563 / 1435,
  22159. bottom: 0.005
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(166.6, "cm"),
  22167. default: true
  22168. },
  22169. {
  22170. name: "Demonic",
  22171. height: math.unit(166.6, "feet")
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22177. {
  22178. side: {
  22179. height: math.unit(10, "feet"),
  22180. weight: math.unit(500, "lb"),
  22181. name: "Side",
  22182. image: {
  22183. source: "./media/characters/zost/side.svg",
  22184. extra: 2870/2533,
  22185. bottom: 252/3122
  22186. }
  22187. },
  22188. mawFront: {
  22189. height: math.unit(1.08, "meters"),
  22190. name: "Maw (Front)",
  22191. image: {
  22192. source: "./media/characters/zost/maw-front.svg"
  22193. }
  22194. },
  22195. mawSide: {
  22196. height: math.unit(2.66, "feet"),
  22197. name: "Maw (Side)",
  22198. image: {
  22199. source: "./media/characters/zost/maw-side.svg"
  22200. }
  22201. },
  22202. wingspan: {
  22203. height: math.unit(7.4, "feet"),
  22204. name: "Wingspan",
  22205. image: {
  22206. source: "./media/characters/zost/wingspan.svg"
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Normal",
  22213. height: math.unit(10, "feet"),
  22214. default: true
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22220. {
  22221. front: {
  22222. height: math.unit(5 + 4 / 12, "feet"),
  22223. weight: math.unit(120, "lb"),
  22224. name: "Front",
  22225. image: {
  22226. source: "./media/characters/luci/front.svg",
  22227. extra: 1985 / 1884,
  22228. bottom: 0.04
  22229. }
  22230. },
  22231. back: {
  22232. height: math.unit(5 + 4 / 12, "feet"),
  22233. weight: math.unit(120, "lb"),
  22234. name: "Back",
  22235. image: {
  22236. source: "./media/characters/luci/back.svg",
  22237. extra: 1892 / 1791,
  22238. bottom: 0.002
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Normal",
  22245. height: math.unit(5 + 4 / 12, "feet"),
  22246. default: true
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22252. {
  22253. front: {
  22254. height: math.unit(1500, "feet"),
  22255. weight: math.unit(3.8e6, "tons"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/2th/front.svg",
  22259. extra: 3489 / 3350,
  22260. bottom: 0.1
  22261. }
  22262. },
  22263. foot: {
  22264. height: math.unit(461, "feet"),
  22265. name: "Foot",
  22266. image: {
  22267. source: "./media/characters/2th/foot.svg"
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "\"Micro\"",
  22274. height: math.unit(15 + 7 / 12, "feet")
  22275. },
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(1500, "feet"),
  22279. default: true
  22280. },
  22281. {
  22282. name: "Macro",
  22283. height: math.unit(5000, "feet")
  22284. },
  22285. {
  22286. name: "Megamacro",
  22287. height: math.unit(15, "miles")
  22288. },
  22289. {
  22290. name: "Gigamacro",
  22291. height: math.unit(4000, "miles")
  22292. },
  22293. {
  22294. name: "Galactic",
  22295. height: math.unit(50, "AU")
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22301. {
  22302. front: {
  22303. height: math.unit(5 + 6 / 12, "feet"),
  22304. weight: math.unit(220, "lb"),
  22305. name: "Front",
  22306. image: {
  22307. source: "./media/characters/amethyst/front.svg",
  22308. extra: 2078 / 2040,
  22309. bottom: 0.045
  22310. }
  22311. },
  22312. back: {
  22313. height: math.unit(5 + 6 / 12, "feet"),
  22314. weight: math.unit(220, "lb"),
  22315. name: "Back",
  22316. image: {
  22317. source: "./media/characters/amethyst/back.svg",
  22318. extra: 2021 / 1989,
  22319. bottom: 0.02
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(5 + 6 / 12, "feet"),
  22327. default: true
  22328. },
  22329. ]
  22330. ))
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22333. {
  22334. front: {
  22335. height: math.unit(4 + 11 / 12, "feet"),
  22336. weight: math.unit(120, "lb"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/yumi-akiyama/front.svg",
  22340. extra: 1327 / 1235,
  22341. bottom: 0.02
  22342. }
  22343. },
  22344. back: {
  22345. height: math.unit(4 + 11 / 12, "feet"),
  22346. weight: math.unit(120, "lb"),
  22347. name: "Back",
  22348. image: {
  22349. source: "./media/characters/yumi-akiyama/back.svg",
  22350. extra: 1287 / 1245,
  22351. bottom: 0.002
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Galactic",
  22358. height: math.unit(50, "galaxies"),
  22359. default: true
  22360. },
  22361. {
  22362. name: "Universal",
  22363. height: math.unit(100, "universes")
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22369. {
  22370. front: {
  22371. height: math.unit(8, "feet"),
  22372. weight: math.unit(500, "lb"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/rifter-yrmori/front.svg",
  22376. extra: 1180 / 1125,
  22377. bottom: 0.02
  22378. }
  22379. },
  22380. back: {
  22381. height: math.unit(8, "feet"),
  22382. weight: math.unit(500, "lb"),
  22383. name: "Back",
  22384. image: {
  22385. source: "./media/characters/rifter-yrmori/back.svg",
  22386. extra: 1190 / 1145,
  22387. bottom: 0.001
  22388. }
  22389. },
  22390. wings: {
  22391. height: math.unit(7.75, "feet"),
  22392. weight: math.unit(500, "lb"),
  22393. name: "Wings",
  22394. image: {
  22395. source: "./media/characters/rifter-yrmori/wings.svg",
  22396. extra: 1357 / 1285
  22397. }
  22398. },
  22399. maw: {
  22400. height: math.unit(0.8, "feet"),
  22401. name: "Maw",
  22402. image: {
  22403. source: "./media/characters/rifter-yrmori/maw.svg"
  22404. }
  22405. },
  22406. mawfront: {
  22407. height: math.unit(1.45, "feet"),
  22408. name: "Maw (Front)",
  22409. image: {
  22410. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Normal",
  22417. height: math.unit(8, "feet"),
  22418. default: true
  22419. },
  22420. {
  22421. name: "Macro",
  22422. height: math.unit(42, "meters")
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22428. {
  22429. were: {
  22430. height: math.unit(25 + 6 / 12, "feet"),
  22431. weight: math.unit(10000, "lb"),
  22432. name: "Were",
  22433. image: {
  22434. source: "./media/characters/tahajin/were.svg",
  22435. extra: 801 / 770,
  22436. bottom: 0.042
  22437. }
  22438. },
  22439. aquatic: {
  22440. height: math.unit(6 + 4 / 12, "feet"),
  22441. weight: math.unit(160, "lb"),
  22442. name: "Aquatic",
  22443. image: {
  22444. source: "./media/characters/tahajin/aquatic.svg",
  22445. extra: 572 / 542,
  22446. bottom: 0.04
  22447. }
  22448. },
  22449. chow: {
  22450. height: math.unit(8 + 11 / 12, "feet"),
  22451. weight: math.unit(450, "lb"),
  22452. name: "Chow",
  22453. image: {
  22454. source: "./media/characters/tahajin/chow.svg",
  22455. extra: 660 / 640,
  22456. bottom: 0.015
  22457. }
  22458. },
  22459. demiNaga: {
  22460. height: math.unit(6 + 8 / 12, "feet"),
  22461. weight: math.unit(300, "lb"),
  22462. name: "Demi Naga",
  22463. image: {
  22464. source: "./media/characters/tahajin/demi-naga.svg",
  22465. extra: 643 / 615,
  22466. bottom: 0.1
  22467. }
  22468. },
  22469. data: {
  22470. height: math.unit(5, "inches"),
  22471. weight: math.unit(0.1, "lb"),
  22472. name: "Data",
  22473. image: {
  22474. source: "./media/characters/tahajin/data.svg"
  22475. }
  22476. },
  22477. fluu: {
  22478. height: math.unit(5 + 7 / 12, "feet"),
  22479. weight: math.unit(140, "lb"),
  22480. name: "Fluu",
  22481. image: {
  22482. source: "./media/characters/tahajin/fluu.svg",
  22483. extra: 628 / 592,
  22484. bottom: 0.02
  22485. }
  22486. },
  22487. starWarrior: {
  22488. height: math.unit(4 + 5 / 12, "feet"),
  22489. weight: math.unit(50, "lb"),
  22490. name: "Star Warrior",
  22491. image: {
  22492. source: "./media/characters/tahajin/star-warrior.svg"
  22493. }
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Normal",
  22499. height: math.unit(25 + 6 / 12, "feet"),
  22500. default: true
  22501. },
  22502. ]
  22503. ))
  22504. characterMakers.push(() => makeCharacter(
  22505. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22506. {
  22507. front: {
  22508. height: math.unit(8, "feet"),
  22509. weight: math.unit(350, "lb"),
  22510. name: "Front",
  22511. image: {
  22512. source: "./media/characters/gabira/front.svg",
  22513. extra: 1261/1154,
  22514. bottom: 51/1312
  22515. }
  22516. },
  22517. back: {
  22518. height: math.unit(8, "feet"),
  22519. weight: math.unit(350, "lb"),
  22520. name: "Back",
  22521. image: {
  22522. source: "./media/characters/gabira/back.svg",
  22523. extra: 1265/1163,
  22524. bottom: 46/1311
  22525. }
  22526. },
  22527. head: {
  22528. height: math.unit(2.85, "feet"),
  22529. name: "Head",
  22530. image: {
  22531. source: "./media/characters/gabira/head.svg"
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(8, "feet"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(5 + 3 / 12, "feet"),
  22548. weight: math.unit(137, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/sasha-katraine/front.svg",
  22552. extra: 1745/1694,
  22553. bottom: 37/1782
  22554. }
  22555. },
  22556. back: {
  22557. height: math.unit(5 + 3 / 12, "feet"),
  22558. weight: math.unit(137, "lb"),
  22559. name: "Back",
  22560. image: {
  22561. source: "./media/characters/sasha-katraine/back.svg",
  22562. extra: 1776/1699,
  22563. bottom: 26/1802
  22564. }
  22565. },
  22566. },
  22567. [
  22568. {
  22569. name: "Micro",
  22570. height: math.unit(5, "inches")
  22571. },
  22572. {
  22573. name: "Normal",
  22574. height: math.unit(5 + 3 / 12, "feet"),
  22575. default: true
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22581. {
  22582. side: {
  22583. height: math.unit(4, "inches"),
  22584. weight: math.unit(200, "grams"),
  22585. name: "Side",
  22586. image: {
  22587. source: "./media/characters/der/side.svg",
  22588. extra: 719 / 400,
  22589. bottom: 30.6 / 749.9187
  22590. }
  22591. },
  22592. },
  22593. [
  22594. {
  22595. name: "Micro",
  22596. height: math.unit(4, "inches"),
  22597. default: true
  22598. },
  22599. ]
  22600. ))
  22601. characterMakers.push(() => makeCharacter(
  22602. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22603. {
  22604. side: {
  22605. height: math.unit(30, "meters"),
  22606. weight: math.unit(700, "tonnes"),
  22607. name: "Side",
  22608. image: {
  22609. source: "./media/characters/fixerdragon/side.svg",
  22610. extra: (1293.0514 - 116.03) / 1106.86,
  22611. bottom: 116.03 / 1293.0514
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Planck",
  22618. height: math.unit(1.6e-35, "meters")
  22619. },
  22620. {
  22621. name: "Micro",
  22622. height: math.unit(0.4, "meters")
  22623. },
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(30, "meters"),
  22627. default: true
  22628. },
  22629. {
  22630. name: "Megamacro",
  22631. height: math.unit(1.2, "megameters")
  22632. },
  22633. {
  22634. name: "Teramacro",
  22635. height: math.unit(130, "terameters")
  22636. },
  22637. {
  22638. name: "Yottamacro",
  22639. height: math.unit(6200, "yottameters")
  22640. },
  22641. ]
  22642. ));
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(8, "feet"),
  22648. weight: math.unit(250, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/kite/front.svg",
  22652. extra: 2796 / 2659,
  22653. bottom: 0.002
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(8, "feet"),
  22661. default: true
  22662. },
  22663. {
  22664. name: "Macro",
  22665. height: math.unit(360, "feet")
  22666. },
  22667. {
  22668. name: "Megamacro",
  22669. height: math.unit(1500, "feet")
  22670. },
  22671. ]
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22675. {
  22676. front: {
  22677. height: math.unit(5 + 11/12, "feet"),
  22678. weight: math.unit(170, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/poojawa-vynar/front.svg",
  22682. extra: 1735/1585,
  22683. bottom: 96/1831
  22684. }
  22685. },
  22686. back: {
  22687. height: math.unit(5 + 11/12, "feet"),
  22688. weight: math.unit(170, "lb"),
  22689. name: "Back",
  22690. image: {
  22691. source: "./media/characters/poojawa-vynar/back.svg",
  22692. extra: 1749/1607,
  22693. bottom: 28/1777
  22694. }
  22695. },
  22696. male: {
  22697. height: math.unit(5 + 11/12, "feet"),
  22698. weight: math.unit(170, "lb"),
  22699. name: "Male",
  22700. image: {
  22701. source: "./media/characters/poojawa-vynar/male.svg",
  22702. extra: 1855/1713,
  22703. bottom: 63/1918
  22704. }
  22705. },
  22706. taur: {
  22707. height: math.unit(5 + 11/12, "feet"),
  22708. weight: math.unit(170, "lb"),
  22709. name: "Taur",
  22710. image: {
  22711. source: "./media/characters/poojawa-vynar/taur.svg",
  22712. extra: 1151/1059,
  22713. bottom: 356/1507
  22714. }
  22715. },
  22716. frontDressed: {
  22717. height: math.unit(5 + 11/12, "feet"),
  22718. weight: math.unit(170, "lb"),
  22719. name: "Front (Dressed)",
  22720. image: {
  22721. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22722. extra: 1735/1585,
  22723. bottom: 96/1831
  22724. }
  22725. },
  22726. backDressed: {
  22727. height: math.unit(5 + 11/12, "feet"),
  22728. weight: math.unit(170, "lb"),
  22729. name: "Back (Dressed)",
  22730. image: {
  22731. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22732. extra: 1749/1607,
  22733. bottom: 28/1777
  22734. }
  22735. },
  22736. maleDressed: {
  22737. height: math.unit(5 + 11/12, "feet"),
  22738. weight: math.unit(170, "lb"),
  22739. name: "Male (Dressed)",
  22740. image: {
  22741. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22742. extra: 1855/1713,
  22743. bottom: 63/1918
  22744. }
  22745. },
  22746. taurDressed: {
  22747. height: math.unit(5 + 11/12, "feet"),
  22748. weight: math.unit(170, "lb"),
  22749. name: "Taur (Dressed)",
  22750. image: {
  22751. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22752. extra: 1151/1059,
  22753. bottom: 356/1507
  22754. }
  22755. },
  22756. maw: {
  22757. height: math.unit(1.46, "feet"),
  22758. name: "Maw",
  22759. image: {
  22760. source: "./media/characters/poojawa-vynar/maw.svg"
  22761. }
  22762. },
  22763. head: {
  22764. height: math.unit(2.34, "feet"),
  22765. name: "Head",
  22766. image: {
  22767. source: "./media/characters/poojawa-vynar/head.svg"
  22768. }
  22769. },
  22770. paw: {
  22771. height: math.unit(1.61, "feet"),
  22772. name: "Paw",
  22773. image: {
  22774. source: "./media/characters/poojawa-vynar/paw.svg"
  22775. }
  22776. },
  22777. pawToering: {
  22778. height: math.unit(1.72, "feet"),
  22779. name: "Paw (Toering)",
  22780. image: {
  22781. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22782. }
  22783. },
  22784. toering: {
  22785. height: math.unit(2.9, "inches"),
  22786. name: "Toering",
  22787. image: {
  22788. source: "./media/characters/poojawa-vynar/toering.svg"
  22789. }
  22790. },
  22791. shaft: {
  22792. height: math.unit(0.625, "feet"),
  22793. name: "Shaft",
  22794. image: {
  22795. source: "./media/characters/poojawa-vynar/shaft.svg"
  22796. }
  22797. },
  22798. spade: {
  22799. height: math.unit(0.42, "feet"),
  22800. name: "Spade",
  22801. image: {
  22802. source: "./media/characters/poojawa-vynar/spade.svg"
  22803. }
  22804. },
  22805. },
  22806. [
  22807. {
  22808. name: "Shortstack",
  22809. height: math.unit(4, "feet")
  22810. },
  22811. {
  22812. name: "Normal",
  22813. height: math.unit(5 + 11 / 12, "feet"),
  22814. default: true
  22815. },
  22816. {
  22817. name: "Tauric",
  22818. height: math.unit(4, "meters")
  22819. },
  22820. ]
  22821. ))
  22822. characterMakers.push(() => makeCharacter(
  22823. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22824. {
  22825. front: {
  22826. height: math.unit(293, "meters"),
  22827. weight: math.unit(70400, "tons"),
  22828. name: "Front",
  22829. image: {
  22830. source: "./media/characters/violette/front.svg",
  22831. extra: 1227 / 1180,
  22832. bottom: 0.005
  22833. }
  22834. },
  22835. back: {
  22836. height: math.unit(293, "meters"),
  22837. weight: math.unit(70400, "tons"),
  22838. name: "Back",
  22839. image: {
  22840. source: "./media/characters/violette/back.svg",
  22841. extra: 1227 / 1180,
  22842. bottom: 0.005
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Macro",
  22849. height: math.unit(293, "meters"),
  22850. default: true
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(1050, "feet"),
  22859. weight: math.unit(200000, "tons"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/alessandra/front.svg",
  22863. extra: 960 / 912,
  22864. bottom: 0.06
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Macro",
  22871. height: math.unit(1050, "feet")
  22872. },
  22873. {
  22874. name: "Macro+",
  22875. height: math.unit(900, "meters"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(5, "feet"),
  22885. weight: math.unit(187, "lb"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/person/front.svg",
  22889. extra: 3087 / 2945,
  22890. bottom: 91 / 3181
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Micro",
  22897. height: math.unit(3, "inches")
  22898. },
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(5, "feet"),
  22902. default: true
  22903. },
  22904. {
  22905. name: "Macro",
  22906. height: math.unit(90, "feet")
  22907. },
  22908. {
  22909. name: "Max Size",
  22910. height: math.unit(280, "feet")
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(4.5, "meters"),
  22919. weight: math.unit(3200, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/ty/front.svg",
  22923. extra: 1038 / 960,
  22924. bottom: 31.156 / 1068
  22925. }
  22926. },
  22927. back: {
  22928. height: math.unit(4.5, "meters"),
  22929. weight: math.unit(3200, "lb"),
  22930. name: "Back",
  22931. image: {
  22932. source: "./media/characters/ty/back.svg",
  22933. extra: 1044 / 966,
  22934. bottom: 7.48 / 1049
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(4.5, "meters"),
  22942. default: true
  22943. },
  22944. ]
  22945. ))
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22948. {
  22949. front: {
  22950. height: math.unit(5 + 4 / 12, "feet"),
  22951. weight: math.unit(115, "lb"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/rocky/front.svg",
  22955. extra: 1012 / 975,
  22956. bottom: 54 / 1066
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(5 + 4 / 12, "feet"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22970. {
  22971. upright: {
  22972. height: math.unit(6, "meters"),
  22973. weight: math.unit(4000, "kg"),
  22974. name: "Upright",
  22975. image: {
  22976. source: "./media/characters/ruin/upright.svg",
  22977. extra: 668 / 661,
  22978. bottom: 42 / 799.8396
  22979. }
  22980. },
  22981. },
  22982. [
  22983. {
  22984. name: "Normal",
  22985. height: math.unit(6, "meters"),
  22986. default: true
  22987. },
  22988. ]
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22992. {
  22993. front: {
  22994. height: math.unit(5, "feet"),
  22995. weight: math.unit(106, "lb"),
  22996. name: "Front",
  22997. image: {
  22998. source: "./media/characters/robin/front.svg",
  22999. extra: 862 / 799,
  23000. bottom: 42.4 / 914.8856
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Normal",
  23007. height: math.unit(5, "feet"),
  23008. default: true
  23009. },
  23010. ]
  23011. ))
  23012. characterMakers.push(() => makeCharacter(
  23013. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23014. {
  23015. side: {
  23016. height: math.unit(3, "feet"),
  23017. weight: math.unit(225, "lb"),
  23018. name: "Side",
  23019. image: {
  23020. source: "./media/characters/saian/side.svg",
  23021. extra: 566 / 356,
  23022. bottom: 79.7 / 643
  23023. }
  23024. },
  23025. maw: {
  23026. height: math.unit(2.85, "feet"),
  23027. name: "Maw",
  23028. image: {
  23029. source: "./media/characters/saian/maw.svg"
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(3, "feet"),
  23037. default: true
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23043. {
  23044. side: {
  23045. height: math.unit(8, "feet"),
  23046. weight: math.unit(300, "lb"),
  23047. name: "Side",
  23048. image: {
  23049. source: "./media/characters/equus-silvermane/side.svg",
  23050. extra: 2176 / 2050,
  23051. bottom: 65.7 / 2245
  23052. }
  23053. },
  23054. front: {
  23055. height: math.unit(8, "feet"),
  23056. weight: math.unit(300, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/equus-silvermane/front.svg",
  23060. extra: 4633 / 4400,
  23061. bottom: 71.3 / 4706.915
  23062. }
  23063. },
  23064. sideStepping: {
  23065. height: math.unit(8, "feet"),
  23066. weight: math.unit(300, "lb"),
  23067. name: "Side (Stepping)",
  23068. image: {
  23069. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23070. extra: 1968 / 1860,
  23071. bottom: 16.4 / 1989
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(8, "feet")
  23079. },
  23080. {
  23081. name: "Minimacro",
  23082. height: math.unit(75, "feet"),
  23083. default: true
  23084. },
  23085. {
  23086. name: "Macro",
  23087. height: math.unit(150, "feet")
  23088. },
  23089. {
  23090. name: "Macro+",
  23091. height: math.unit(1000, "feet")
  23092. },
  23093. {
  23094. name: "Megamacro",
  23095. height: math.unit(1, "mile")
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23101. {
  23102. side: {
  23103. height: math.unit(20, "feet"),
  23104. weight: math.unit(30000, "kg"),
  23105. name: "Side",
  23106. image: {
  23107. source: "./media/characters/windar/side.svg",
  23108. extra: 1491 / 1248,
  23109. bottom: 82.56 / 1568
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(20, "feet"),
  23117. default: true
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23123. {
  23124. side: {
  23125. height: math.unit(15.66, "feet"),
  23126. weight: math.unit(150, "lb"),
  23127. name: "Side",
  23128. image: {
  23129. source: "./media/characters/melody/side.svg",
  23130. extra: 1097 / 944,
  23131. bottom: 11.8 / 1109
  23132. }
  23133. },
  23134. sideOutfit: {
  23135. height: math.unit(15.66, "feet"),
  23136. weight: math.unit(150, "lb"),
  23137. name: "Side (Outfit)",
  23138. image: {
  23139. source: "./media/characters/melody/side-outfit.svg",
  23140. extra: 1097 / 944,
  23141. bottom: 11.8 / 1109
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Normal",
  23148. height: math.unit(15.66, "feet"),
  23149. default: true
  23150. },
  23151. ]
  23152. ))
  23153. characterMakers.push(() => makeCharacter(
  23154. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23155. {
  23156. armoredFront: {
  23157. height: math.unit(8, "feet"),
  23158. weight: math.unit(325, "lb"),
  23159. name: "Front",
  23160. image: {
  23161. source: "./media/characters/windera/armored-front.svg",
  23162. extra: 1830/1598,
  23163. bottom: 151/1981
  23164. },
  23165. form: "armored",
  23166. default: true
  23167. },
  23168. macroFront: {
  23169. height: math.unit(70, "feet"),
  23170. weight: math.unit(315453, "lb"),
  23171. name: "Front",
  23172. image: {
  23173. source: "./media/characters/windera/macro-front.svg",
  23174. extra: 963/883,
  23175. bottom: 23/986
  23176. },
  23177. form: "macro",
  23178. default: true
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Normal",
  23184. height: math.unit(8, "feet"),
  23185. default: true,
  23186. form: "armored"
  23187. },
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(70, "feet"),
  23191. default: true,
  23192. form: "macro"
  23193. },
  23194. ],
  23195. {
  23196. "armored": {
  23197. name: "Armored",
  23198. default: true
  23199. },
  23200. "macro": {
  23201. name: "Macro",
  23202. },
  23203. }
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23207. {
  23208. front: {
  23209. height: math.unit(28.75, "feet"),
  23210. weight: math.unit(2000, "kg"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/sonear/front.svg",
  23214. extra: 1041.1 / 964.9,
  23215. bottom: 53.7 / 1096.6
  23216. }
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Normal",
  23222. height: math.unit(28.75, "feet"),
  23223. default: true
  23224. },
  23225. ]
  23226. ))
  23227. characterMakers.push(() => makeCharacter(
  23228. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23229. {
  23230. side: {
  23231. height: math.unit(25.5, "feet"),
  23232. weight: math.unit(23000, "kg"),
  23233. name: "Side",
  23234. image: {
  23235. source: "./media/characters/kanara/side.svg"
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(25.5, "feet"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23249. {
  23250. side: {
  23251. height: math.unit(10, "feet"),
  23252. weight: math.unit(1000, "kg"),
  23253. name: "Side",
  23254. image: {
  23255. source: "./media/characters/ereus/side.svg",
  23256. extra: 1157 / 959,
  23257. bottom: 153 / 1312.5
  23258. }
  23259. },
  23260. },
  23261. [
  23262. {
  23263. name: "Normal",
  23264. height: math.unit(10, "feet"),
  23265. default: true
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23271. {
  23272. side: {
  23273. height: math.unit(4.5, "feet"),
  23274. weight: math.unit(500, "lb"),
  23275. name: "Side",
  23276. image: {
  23277. source: "./media/characters/e-ter/side.svg",
  23278. extra: 1550 / 1248,
  23279. bottom: 146 / 1694
  23280. }
  23281. },
  23282. },
  23283. [
  23284. {
  23285. name: "Normal",
  23286. height: math.unit(4.5, "feet"),
  23287. default: true
  23288. },
  23289. ]
  23290. ))
  23291. characterMakers.push(() => makeCharacter(
  23292. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23293. {
  23294. side: {
  23295. height: math.unit(9.7, "feet"),
  23296. weight: math.unit(4000, "kg"),
  23297. name: "Side",
  23298. image: {
  23299. source: "./media/characters/yamie/side.svg"
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(9.7, "feet"),
  23307. default: true
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23313. {
  23314. front: {
  23315. height: math.unit(50, "feet"),
  23316. weight: math.unit(50000, "kg"),
  23317. name: "Front",
  23318. image: {
  23319. source: "./media/characters/anders/front.svg",
  23320. extra: 570 / 539,
  23321. bottom: 14.7 / 586.7
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Large",
  23328. height: math.unit(50, "feet")
  23329. },
  23330. {
  23331. name: "Macro",
  23332. height: math.unit(2000, "feet"),
  23333. default: true
  23334. },
  23335. {
  23336. name: "Megamacro",
  23337. height: math.unit(12, "miles")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(7 + 2 / 12, "feet"),
  23346. weight: math.unit(300, "lb"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/reban/front.svg",
  23350. extra: 1287/1212,
  23351. bottom: 148/1435
  23352. }
  23353. },
  23354. head: {
  23355. height: math.unit(1.95, "feet"),
  23356. name: "Head",
  23357. image: {
  23358. source: "./media/characters/reban/head.svg"
  23359. }
  23360. },
  23361. maw: {
  23362. height: math.unit(0.95, "feet"),
  23363. name: "Maw",
  23364. image: {
  23365. source: "./media/characters/reban/maw.svg"
  23366. }
  23367. },
  23368. foot: {
  23369. height: math.unit(1.65, "feet"),
  23370. name: "Foot",
  23371. image: {
  23372. source: "./media/characters/reban/foot.svg"
  23373. }
  23374. },
  23375. dick: {
  23376. height: math.unit(7 / 5, "feet"),
  23377. name: "Dick",
  23378. image: {
  23379. source: "./media/characters/reban/dick.svg"
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Natural Height",
  23386. height: math.unit(7 + 2 / 12, "feet")
  23387. },
  23388. {
  23389. name: "Macro",
  23390. height: math.unit(500, "feet"),
  23391. default: true
  23392. },
  23393. {
  23394. name: "Canon Height",
  23395. height: math.unit(50, "AU")
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(6, "feet"),
  23404. weight: math.unit(150, "lb"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/terrance-keayes/front.svg",
  23408. extra: 1.005,
  23409. bottom: 151 / 1615
  23410. }
  23411. },
  23412. side: {
  23413. height: math.unit(6, "feet"),
  23414. weight: math.unit(150, "lb"),
  23415. name: "Side",
  23416. image: {
  23417. source: "./media/characters/terrance-keayes/side.svg",
  23418. extra: 1.005,
  23419. bottom: 129.4 / 1544
  23420. }
  23421. },
  23422. back: {
  23423. height: math.unit(6, "feet"),
  23424. weight: math.unit(150, "lb"),
  23425. name: "Back",
  23426. image: {
  23427. source: "./media/characters/terrance-keayes/back.svg",
  23428. extra: 1.005,
  23429. bottom: 58.4 / 1557.3
  23430. }
  23431. },
  23432. dick: {
  23433. height: math.unit(6 * 0.208, "feet"),
  23434. name: "Dick",
  23435. image: {
  23436. source: "./media/characters/terrance-keayes/dick.svg"
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Canon Height",
  23443. height: math.unit(35, "miles"),
  23444. default: true
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23450. {
  23451. front: {
  23452. height: math.unit(6, "feet"),
  23453. weight: math.unit(150, "lb"),
  23454. name: "Front",
  23455. image: {
  23456. source: "./media/characters/ofelia/front.svg",
  23457. extra: 1130/1117,
  23458. bottom: 91/1221
  23459. }
  23460. },
  23461. back: {
  23462. height: math.unit(6, "feet"),
  23463. weight: math.unit(150, "lb"),
  23464. name: "Back",
  23465. image: {
  23466. source: "./media/characters/ofelia/back.svg",
  23467. extra: 1172/1159,
  23468. bottom: 28/1200
  23469. }
  23470. },
  23471. maw: {
  23472. height: math.unit(1, "feet"),
  23473. name: "Maw",
  23474. image: {
  23475. source: "./media/characters/ofelia/maw.svg"
  23476. }
  23477. },
  23478. foot: {
  23479. height: math.unit(1.949, "feet"),
  23480. name: "Foot",
  23481. image: {
  23482. source: "./media/characters/ofelia/foot.svg"
  23483. }
  23484. },
  23485. },
  23486. [
  23487. {
  23488. name: "Canon Height",
  23489. height: math.unit(2000, "miles"),
  23490. default: true
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23496. {
  23497. front: {
  23498. height: math.unit(6, "feet"),
  23499. weight: math.unit(150, "lb"),
  23500. name: "Front",
  23501. image: {
  23502. source: "./media/characters/samuel/front.svg",
  23503. extra: 265 / 258,
  23504. bottom: 2 / 266.1566
  23505. }
  23506. },
  23507. },
  23508. [
  23509. {
  23510. name: "Macro",
  23511. height: math.unit(100, "feet"),
  23512. default: true
  23513. },
  23514. {
  23515. name: "Full Size",
  23516. height: math.unit(1000, "miles")
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23522. {
  23523. front: {
  23524. height: math.unit(6, "feet"),
  23525. weight: math.unit(300, "lb"),
  23526. name: "Front",
  23527. image: {
  23528. source: "./media/characters/beishir-kiel/front.svg",
  23529. extra: 569 / 547,
  23530. bottom: 41.9 / 609
  23531. }
  23532. },
  23533. maw: {
  23534. height: math.unit(6 * 0.202, "feet"),
  23535. name: "Maw",
  23536. image: {
  23537. source: "./media/characters/beishir-kiel/maw.svg"
  23538. }
  23539. },
  23540. },
  23541. [
  23542. {
  23543. name: "Macro",
  23544. height: math.unit(300, "feet"),
  23545. default: true
  23546. },
  23547. ]
  23548. ))
  23549. characterMakers.push(() => makeCharacter(
  23550. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23551. {
  23552. front: {
  23553. height: math.unit(5 + 7/12, "feet"),
  23554. weight: math.unit(120, "lb"),
  23555. name: "Front",
  23556. image: {
  23557. source: "./media/characters/logan-grey/front.svg",
  23558. extra: 1836/1738,
  23559. bottom: 108/1944
  23560. }
  23561. },
  23562. back: {
  23563. height: math.unit(5 + 7/12, "feet"),
  23564. weight: math.unit(120, "lb"),
  23565. name: "Back",
  23566. image: {
  23567. source: "./media/characters/logan-grey/back.svg",
  23568. extra: 1880/1794,
  23569. bottom: 24/1904
  23570. }
  23571. },
  23572. frontSfw: {
  23573. height: math.unit(5 + 7/12, "feet"),
  23574. weight: math.unit(120, "lb"),
  23575. name: "Front (SFW)",
  23576. image: {
  23577. source: "./media/characters/logan-grey/front-sfw.svg",
  23578. extra: 1836/1738,
  23579. bottom: 108/1944
  23580. }
  23581. },
  23582. backSfw: {
  23583. height: math.unit(5 + 7/12, "feet"),
  23584. weight: math.unit(120, "lb"),
  23585. name: "Back (SFW)",
  23586. image: {
  23587. source: "./media/characters/logan-grey/back-sfw.svg",
  23588. extra: 1880/1794,
  23589. bottom: 24/1904
  23590. }
  23591. },
  23592. hands: {
  23593. height: math.unit(0.84, "feet"),
  23594. name: "Hands",
  23595. image: {
  23596. source: "./media/characters/logan-grey/hands.svg"
  23597. }
  23598. },
  23599. paws: {
  23600. height: math.unit(0.72, "feet"),
  23601. name: "Paws",
  23602. image: {
  23603. source: "./media/characters/logan-grey/paws.svg"
  23604. }
  23605. },
  23606. cock: {
  23607. height: math.unit(1.45, "feet"),
  23608. name: "Cock",
  23609. image: {
  23610. source: "./media/characters/logan-grey/cock.svg"
  23611. }
  23612. },
  23613. cockAlt: {
  23614. height: math.unit(1.437, "feet"),
  23615. name: "Cock (alt)",
  23616. image: {
  23617. source: "./media/characters/logan-grey/cock-alt.svg"
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Normal",
  23624. height: math.unit(5 + 8 / 12, "feet")
  23625. },
  23626. {
  23627. name: "The 500 Foot Femboy",
  23628. height: math.unit(500, "feet"),
  23629. default: true
  23630. },
  23631. {
  23632. name: "Megmacro",
  23633. height: math.unit(20, "miles")
  23634. },
  23635. ]
  23636. ))
  23637. characterMakers.push(() => makeCharacter(
  23638. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23639. {
  23640. front: {
  23641. height: math.unit(8 + 2 / 12, "feet"),
  23642. weight: math.unit(275, "lb"),
  23643. name: "Front",
  23644. image: {
  23645. source: "./media/characters/draganta/front.svg",
  23646. extra: 1177 / 1135,
  23647. bottom: 33.46 / 1212.1
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(8 + 6 / 12, "feet"),
  23655. default: true
  23656. },
  23657. {
  23658. name: "Macro",
  23659. height: math.unit(150, "feet")
  23660. },
  23661. {
  23662. name: "Megamacro",
  23663. height: math.unit(1000, "miles")
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(1.72, "m"),
  23672. weight: math.unit(80, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/voski/front.svg",
  23676. extra: 2076.22 / 2022.4,
  23677. bottom: 102.7 / 2177.3866
  23678. }
  23679. },
  23680. frontFlaccid: {
  23681. height: math.unit(1.72, "m"),
  23682. weight: math.unit(80, "lb"),
  23683. name: "Front (Flaccid)",
  23684. image: {
  23685. source: "./media/characters/voski/front-flaccid.svg",
  23686. extra: 2076.22 / 2022.4,
  23687. bottom: 102.7 / 2177.3866
  23688. }
  23689. },
  23690. frontErect: {
  23691. height: math.unit(1.72, "m"),
  23692. weight: math.unit(80, "lb"),
  23693. name: "Front (Erect)",
  23694. image: {
  23695. source: "./media/characters/voski/front-erect.svg",
  23696. extra: 2076.22 / 2022.4,
  23697. bottom: 102.7 / 2177.3866
  23698. }
  23699. },
  23700. back: {
  23701. height: math.unit(1.72, "m"),
  23702. weight: math.unit(80, "lb"),
  23703. name: "Back",
  23704. image: {
  23705. source: "./media/characters/voski/back.svg",
  23706. extra: 2104 / 2051,
  23707. bottom: 10.45 / 2113.63
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(1.72, "m")
  23715. },
  23716. {
  23717. name: "Macro",
  23718. height: math.unit(55, "m"),
  23719. default: true
  23720. },
  23721. {
  23722. name: "Macro+",
  23723. height: math.unit(300, "m")
  23724. },
  23725. {
  23726. name: "Macro++",
  23727. height: math.unit(700, "m")
  23728. },
  23729. {
  23730. name: "Macro+++",
  23731. height: math.unit(4500, "m")
  23732. },
  23733. {
  23734. name: "Macro++++",
  23735. height: math.unit(45, "km")
  23736. },
  23737. {
  23738. name: "Macro+++++",
  23739. height: math.unit(1220, "km")
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23745. {
  23746. front: {
  23747. height: math.unit(2.3, "m"),
  23748. weight: math.unit(304, "kg"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/icowom-lee/front.svg",
  23752. extra: 985 / 955,
  23753. bottom: 25.4 / 1012
  23754. }
  23755. },
  23756. fronttentacles: {
  23757. height: math.unit(2.3, "m"),
  23758. weight: math.unit(304, "kg"),
  23759. name: "Front-tentacles",
  23760. image: {
  23761. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23762. extra: 985 / 955,
  23763. bottom: 25.4 / 1012
  23764. }
  23765. },
  23766. back: {
  23767. height: math.unit(2.3, "m"),
  23768. weight: math.unit(304, "kg"),
  23769. name: "Back",
  23770. image: {
  23771. source: "./media/characters/icowom-lee/back.svg",
  23772. extra: 975 / 954,
  23773. bottom: 9.5 / 985
  23774. }
  23775. },
  23776. backtentacles: {
  23777. height: math.unit(2.3, "m"),
  23778. weight: math.unit(304, "kg"),
  23779. name: "Back-tentacles",
  23780. image: {
  23781. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23782. extra: 975 / 954,
  23783. bottom: 9.5 / 985
  23784. }
  23785. },
  23786. frontDressed: {
  23787. height: math.unit(2.3, "m"),
  23788. weight: math.unit(304, "kg"),
  23789. name: "Front (Dressed)",
  23790. image: {
  23791. source: "./media/characters/icowom-lee/front-dressed.svg",
  23792. extra: 3076 / 2933,
  23793. bottom: 51.4 / 3125.1889
  23794. }
  23795. },
  23796. rump: {
  23797. height: math.unit(0.776, "meters"),
  23798. name: "Rump",
  23799. image: {
  23800. source: "./media/characters/icowom-lee/rump.svg"
  23801. }
  23802. },
  23803. genitals: {
  23804. height: math.unit(0.78, "meters"),
  23805. name: "Genitals",
  23806. image: {
  23807. source: "./media/characters/icowom-lee/genitals.svg"
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Normal",
  23814. height: math.unit(2.3, "meters"),
  23815. default: true
  23816. },
  23817. {
  23818. name: "Macro",
  23819. height: math.unit(94, "meters"),
  23820. default: true
  23821. },
  23822. ]
  23823. ))
  23824. characterMakers.push(() => makeCharacter(
  23825. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23826. {
  23827. front: {
  23828. height: math.unit(22, "meters"),
  23829. weight: math.unit(21000, "kg"),
  23830. name: "Front",
  23831. image: {
  23832. source: "./media/characters/shock-diamond/front.svg",
  23833. extra: 2204 / 2053,
  23834. bottom: 65 / 2239.47
  23835. }
  23836. },
  23837. frontNude: {
  23838. height: math.unit(22, "meters"),
  23839. weight: math.unit(21000, "kg"),
  23840. name: "Front (Nude)",
  23841. image: {
  23842. source: "./media/characters/shock-diamond/front-nude.svg",
  23843. extra: 2514 / 2285,
  23844. bottom: 13 / 2527.56
  23845. }
  23846. },
  23847. },
  23848. [
  23849. {
  23850. name: "Normal",
  23851. height: math.unit(3, "meters")
  23852. },
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(22, "meters"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(5 + 4 / 12, "feet"),
  23865. weight: math.unit(120, "lb"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/rory/front.svg",
  23869. extra: 1318/1241,
  23870. bottom: 42/1360
  23871. }
  23872. },
  23873. back: {
  23874. height: math.unit(5 + 4 / 12, "feet"),
  23875. weight: math.unit(120, "lb"),
  23876. name: "Back",
  23877. image: {
  23878. source: "./media/characters/rory/back.svg",
  23879. extra: 1318/1241,
  23880. bottom: 42/1360
  23881. }
  23882. },
  23883. butt: {
  23884. height: math.unit(1.74, "feet"),
  23885. name: "Butt",
  23886. image: {
  23887. source: "./media/characters/rory/butt.svg"
  23888. }
  23889. },
  23890. dick: {
  23891. height: math.unit(1.02, "feet"),
  23892. name: "Dick",
  23893. image: {
  23894. source: "./media/characters/rory/dick.svg"
  23895. }
  23896. },
  23897. paws: {
  23898. height: math.unit(1, "feet"),
  23899. name: "Paws",
  23900. image: {
  23901. source: "./media/characters/rory/paws.svg"
  23902. }
  23903. },
  23904. frontAlt: {
  23905. height: math.unit(5 + 4 / 12, "feet"),
  23906. weight: math.unit(120, "lb"),
  23907. name: "Front (Alt)",
  23908. image: {
  23909. source: "./media/characters/rory/front-alt.svg",
  23910. extra: 589 / 556,
  23911. bottom: 45.7 / 635.76
  23912. }
  23913. },
  23914. frontAltNude: {
  23915. height: math.unit(5 + 4 / 12, "feet"),
  23916. weight: math.unit(120, "lb"),
  23917. name: "Front (Alt, Nude)",
  23918. image: {
  23919. source: "./media/characters/rory/front-alt-nude.svg",
  23920. extra: 589 / 556,
  23921. bottom: 45.7 / 635.76
  23922. }
  23923. },
  23924. side: {
  23925. height: math.unit(5 + 4 / 12, "feet"),
  23926. weight: math.unit(120, "lb"),
  23927. name: "Side",
  23928. image: {
  23929. source: "./media/characters/rory/side.svg",
  23930. extra: 597 / 564,
  23931. bottom: 55 / 653
  23932. }
  23933. },
  23934. backAlt: {
  23935. height: math.unit(5 + 4 / 12, "feet"),
  23936. weight: math.unit(120, "lb"),
  23937. name: "Back (Alt)",
  23938. image: {
  23939. source: "./media/characters/rory/back-alt.svg",
  23940. extra: 620 / 585,
  23941. bottom: 8.86 / 630.43
  23942. }
  23943. },
  23944. dickAlt: {
  23945. height: math.unit(0.86, "feet"),
  23946. name: "Dick (Alt)",
  23947. image: {
  23948. source: "./media/characters/rory/dick-alt.svg"
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Normal",
  23955. height: math.unit(5 + 4 / 12, "feet"),
  23956. default: true
  23957. },
  23958. {
  23959. name: "Macro",
  23960. height: math.unit(100, "feet")
  23961. },
  23962. {
  23963. name: "Macro+",
  23964. height: math.unit(140, "feet")
  23965. },
  23966. {
  23967. name: "Macro++",
  23968. height: math.unit(300, "feet")
  23969. },
  23970. ]
  23971. ))
  23972. characterMakers.push(() => makeCharacter(
  23973. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23974. {
  23975. front: {
  23976. height: math.unit(5 + 9 / 12, "feet"),
  23977. weight: math.unit(190, "lb"),
  23978. name: "Front",
  23979. image: {
  23980. source: "./media/characters/sprisk/front.svg",
  23981. extra: 1225 / 1180,
  23982. bottom: 42.7 / 1266.4
  23983. }
  23984. },
  23985. frontNsfw: {
  23986. height: math.unit(5 + 9 / 12, "feet"),
  23987. weight: math.unit(190, "lb"),
  23988. name: "Front (NSFW)",
  23989. image: {
  23990. source: "./media/characters/sprisk/front-nsfw.svg",
  23991. extra: 1225 / 1180,
  23992. bottom: 42.7 / 1266.4
  23993. }
  23994. },
  23995. back: {
  23996. height: math.unit(5 + 9 / 12, "feet"),
  23997. weight: math.unit(190, "lb"),
  23998. name: "Back",
  23999. image: {
  24000. source: "./media/characters/sprisk/back.svg",
  24001. extra: 1247 / 1200,
  24002. bottom: 5.6 / 1253.04
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Tiny",
  24009. height: math.unit(2, "inches")
  24010. },
  24011. {
  24012. name: "Normal",
  24013. height: math.unit(5 + 9 / 12, "feet"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Mini Macro",
  24018. height: math.unit(18, "feet")
  24019. },
  24020. {
  24021. name: "Macro",
  24022. height: math.unit(100, "feet")
  24023. },
  24024. {
  24025. name: "MACRO",
  24026. height: math.unit(50, "miles")
  24027. },
  24028. {
  24029. name: "M A C R O",
  24030. height: math.unit(300, "miles")
  24031. },
  24032. ]
  24033. ))
  24034. characterMakers.push(() => makeCharacter(
  24035. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24036. {
  24037. side: {
  24038. height: math.unit(15.6, "meters"),
  24039. weight: math.unit(700000, "kg"),
  24040. name: "Side",
  24041. image: {
  24042. source: "./media/characters/bunsen/side.svg",
  24043. extra: 1644 / 358
  24044. }
  24045. },
  24046. foot: {
  24047. height: math.unit(1.611 * 1644 / 358, "meter"),
  24048. name: "Foot",
  24049. image: {
  24050. source: "./media/characters/bunsen/foot.svg"
  24051. }
  24052. },
  24053. },
  24054. [
  24055. {
  24056. name: "Small",
  24057. height: math.unit(10, "feet")
  24058. },
  24059. {
  24060. name: "Normal",
  24061. height: math.unit(15.6, "meters"),
  24062. default: true
  24063. },
  24064. ]
  24065. ))
  24066. characterMakers.push(() => makeCharacter(
  24067. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24068. {
  24069. front: {
  24070. height: math.unit(4 + 11 / 12, "feet"),
  24071. weight: math.unit(140, "lb"),
  24072. name: "Front",
  24073. image: {
  24074. source: "./media/characters/sesh/front.svg",
  24075. extra: 3420 / 3231,
  24076. bottom: 72 / 3949.5
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(4 + 11 / 12, "feet")
  24084. },
  24085. {
  24086. name: "Grown",
  24087. height: math.unit(15, "feet"),
  24088. default: true
  24089. },
  24090. {
  24091. name: "Macro",
  24092. height: math.unit(1500, "feet")
  24093. },
  24094. {
  24095. name: "Megamacro",
  24096. height: math.unit(30, "miles")
  24097. },
  24098. {
  24099. name: "Continental",
  24100. height: math.unit(3000, "miles")
  24101. },
  24102. {
  24103. name: "Gravity Mass",
  24104. height: math.unit(300000, "miles")
  24105. },
  24106. {
  24107. name: "Planet Buster",
  24108. height: math.unit(30000000, "miles")
  24109. },
  24110. {
  24111. name: "Big",
  24112. height: math.unit(3000000000, "miles")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(9, "feet"),
  24121. weight: math.unit(350, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/pepper/front.svg",
  24125. extra: 1448 / 1312,
  24126. bottom: 9.4 / 1457.88
  24127. }
  24128. },
  24129. back: {
  24130. height: math.unit(9, "feet"),
  24131. weight: math.unit(350, "lb"),
  24132. name: "Back",
  24133. image: {
  24134. source: "./media/characters/pepper/back.svg",
  24135. extra: 1423 / 1300,
  24136. bottom: 4.6 / 1429
  24137. }
  24138. },
  24139. maw: {
  24140. height: math.unit(0.932, "feet"),
  24141. name: "Maw",
  24142. image: {
  24143. source: "./media/characters/pepper/maw.svg"
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Normal",
  24150. height: math.unit(9, "feet"),
  24151. default: true
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24157. {
  24158. front: {
  24159. height: math.unit(6, "feet"),
  24160. weight: math.unit(150, "lb"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/maelstrom/front.svg",
  24164. extra: 2100 / 1883,
  24165. bottom: 94 / 2196.7
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Less Kaiju",
  24172. height: math.unit(200, "feet")
  24173. },
  24174. {
  24175. name: "Kaiju",
  24176. height: math.unit(400, "feet"),
  24177. default: true
  24178. },
  24179. {
  24180. name: "Kaiju-er",
  24181. height: math.unit(600, "feet")
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(6 + 5 / 12, "feet"),
  24190. weight: math.unit(180, "lb"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/lexir/front.svg",
  24194. extra: 180 / 172,
  24195. bottom: 12 / 192
  24196. }
  24197. },
  24198. back: {
  24199. height: math.unit(6 + 5 / 12, "feet"),
  24200. weight: math.unit(180, "lb"),
  24201. name: "Back",
  24202. image: {
  24203. source: "./media/characters/lexir/back.svg",
  24204. extra: 1273/1201,
  24205. bottom: 39/1312
  24206. }
  24207. },
  24208. },
  24209. [
  24210. {
  24211. name: "Very Smal",
  24212. height: math.unit(1, "nm")
  24213. },
  24214. {
  24215. name: "Normal",
  24216. height: math.unit(6 + 5 / 12, "feet"),
  24217. default: true
  24218. },
  24219. {
  24220. name: "Macro",
  24221. height: math.unit(1, "mile")
  24222. },
  24223. {
  24224. name: "Megamacro",
  24225. height: math.unit(50, "miles")
  24226. },
  24227. ]
  24228. ))
  24229. characterMakers.push(() => makeCharacter(
  24230. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24231. {
  24232. front: {
  24233. height: math.unit(1.5, "meters"),
  24234. weight: math.unit(100, "lb"),
  24235. name: "Front",
  24236. image: {
  24237. source: "./media/characters/maksio/front.svg",
  24238. extra: 1549 / 1531,
  24239. bottom: 123.7 / 1674.5429
  24240. }
  24241. },
  24242. back: {
  24243. height: math.unit(1.5, "meters"),
  24244. weight: math.unit(100, "lb"),
  24245. name: "Back",
  24246. image: {
  24247. source: "./media/characters/maksio/back.svg",
  24248. extra: 1541 / 1509,
  24249. bottom: 97 / 1639
  24250. }
  24251. },
  24252. hand: {
  24253. height: math.unit(0.621, "feet"),
  24254. name: "Hand",
  24255. image: {
  24256. source: "./media/characters/maksio/hand.svg"
  24257. }
  24258. },
  24259. foot: {
  24260. height: math.unit(1.611, "feet"),
  24261. name: "Foot",
  24262. image: {
  24263. source: "./media/characters/maksio/foot.svg"
  24264. }
  24265. },
  24266. },
  24267. [
  24268. {
  24269. name: "Shrunken",
  24270. height: math.unit(10, "cm")
  24271. },
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(150, "cm"),
  24275. default: true
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24281. {
  24282. front: {
  24283. height: math.unit(100, "feet"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/erza-bear/front.svg",
  24287. extra: 2449 / 2390,
  24288. bottom: 46 / 2494
  24289. }
  24290. },
  24291. back: {
  24292. height: math.unit(100, "feet"),
  24293. name: "Back",
  24294. image: {
  24295. source: "./media/characters/erza-bear/back.svg",
  24296. extra: 2489 / 2430,
  24297. bottom: 85.4 / 2480
  24298. }
  24299. },
  24300. tail: {
  24301. height: math.unit(42, "feet"),
  24302. name: "Tail",
  24303. image: {
  24304. source: "./media/characters/erza-bear/tail.svg"
  24305. }
  24306. },
  24307. tongue: {
  24308. height: math.unit(8, "feet"),
  24309. name: "Tongue",
  24310. image: {
  24311. source: "./media/characters/erza-bear/tongue.svg"
  24312. }
  24313. },
  24314. dick: {
  24315. height: math.unit(10.5, "feet"),
  24316. name: "Dick",
  24317. image: {
  24318. source: "./media/characters/erza-bear/dick.svg"
  24319. }
  24320. },
  24321. dickVertical: {
  24322. height: math.unit(16.9, "feet"),
  24323. name: "Dick (Vertical)",
  24324. image: {
  24325. source: "./media/characters/erza-bear/dick-vertical.svg"
  24326. }
  24327. },
  24328. },
  24329. [
  24330. {
  24331. name: "Macro",
  24332. height: math.unit(100, "feet"),
  24333. default: true
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24339. {
  24340. front: {
  24341. height: math.unit(172, "cm"),
  24342. weight: math.unit(73, "kg"),
  24343. name: "Front",
  24344. image: {
  24345. source: "./media/characters/violet-flor/front.svg",
  24346. extra: 1530 / 1442,
  24347. bottom: 61.9 / 1588.8
  24348. }
  24349. },
  24350. back: {
  24351. height: math.unit(180, "cm"),
  24352. weight: math.unit(73, "kg"),
  24353. name: "Back",
  24354. image: {
  24355. source: "./media/characters/violet-flor/back.svg",
  24356. extra: 1692 / 1630,
  24357. bottom: 20 / 1712
  24358. }
  24359. },
  24360. },
  24361. [
  24362. {
  24363. name: "Normal",
  24364. height: math.unit(172, "cm"),
  24365. default: true
  24366. },
  24367. ]
  24368. ))
  24369. characterMakers.push(() => makeCharacter(
  24370. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24371. {
  24372. front: {
  24373. height: math.unit(6, "feet"),
  24374. weight: math.unit(220, "lb"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/lynn-rhea/front.svg",
  24378. extra: 310 / 273
  24379. }
  24380. },
  24381. back: {
  24382. height: math.unit(6, "feet"),
  24383. weight: math.unit(220, "lb"),
  24384. name: "Back",
  24385. image: {
  24386. source: "./media/characters/lynn-rhea/back.svg",
  24387. extra: 310 / 273
  24388. }
  24389. },
  24390. dicks: {
  24391. height: math.unit(0.9, "feet"),
  24392. name: "Dicks",
  24393. image: {
  24394. source: "./media/characters/lynn-rhea/dicks.svg"
  24395. }
  24396. },
  24397. slit: {
  24398. height: math.unit(0.4, "feet"),
  24399. name: "Slit",
  24400. image: {
  24401. source: "./media/characters/lynn-rhea/slit.svg"
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Micro",
  24408. height: math.unit(1, "inch")
  24409. },
  24410. {
  24411. name: "Macro",
  24412. height: math.unit(60, "feet"),
  24413. default: true
  24414. },
  24415. {
  24416. name: "Megamacro",
  24417. height: math.unit(2, "miles")
  24418. },
  24419. {
  24420. name: "Gigamacro",
  24421. height: math.unit(3, "earths")
  24422. },
  24423. {
  24424. name: "Galactic",
  24425. height: math.unit(0.8, "galaxies")
  24426. },
  24427. ]
  24428. ))
  24429. characterMakers.push(() => makeCharacter(
  24430. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24431. {
  24432. front: {
  24433. height: math.unit(1600, "feet"),
  24434. weight: math.unit(85758785169, "kg"),
  24435. name: "Front",
  24436. image: {
  24437. source: "./media/characters/valathos/front.svg",
  24438. extra: 1451 / 1339
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Macro",
  24445. height: math.unit(1600, "feet"),
  24446. default: true
  24447. },
  24448. ]
  24449. ))
  24450. characterMakers.push(() => makeCharacter(
  24451. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24452. {
  24453. front: {
  24454. height: math.unit(7 + 5 / 12, "feet"),
  24455. weight: math.unit(300, "lb"),
  24456. name: "Front",
  24457. image: {
  24458. source: "./media/characters/azula/front.svg",
  24459. extra: 3208 / 2880,
  24460. bottom: 80.2 / 3277
  24461. }
  24462. },
  24463. back: {
  24464. height: math.unit(7 + 5 / 12, "feet"),
  24465. weight: math.unit(300, "lb"),
  24466. name: "Back",
  24467. image: {
  24468. source: "./media/characters/azula/back.svg",
  24469. extra: 3169 / 2822,
  24470. bottom: 150.6 / 3321
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Normal",
  24477. height: math.unit(7 + 5 / 12, "feet"),
  24478. default: true
  24479. },
  24480. {
  24481. name: "Big",
  24482. height: math.unit(20, "feet")
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(5 + 1 / 12, "feet"),
  24491. weight: math.unit(110, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/rupert/front.svg",
  24495. extra: 1549 / 1495,
  24496. bottom: 54.2 / 1604.4
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "Normal",
  24503. height: math.unit(5 + 1 / 12, "feet"),
  24504. default: true
  24505. },
  24506. ]
  24507. ))
  24508. characterMakers.push(() => makeCharacter(
  24509. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24510. {
  24511. front: {
  24512. height: math.unit(8 + 4 / 12, "feet"),
  24513. weight: math.unit(350, "lb"),
  24514. name: "Front",
  24515. image: {
  24516. source: "./media/characters/sheera-castellar/front.svg",
  24517. extra: 1957 / 1894,
  24518. bottom: 26.97 / 1975.017
  24519. }
  24520. },
  24521. side: {
  24522. height: math.unit(8 + 4 / 12, "feet"),
  24523. weight: math.unit(350, "lb"),
  24524. name: "Side",
  24525. image: {
  24526. source: "./media/characters/sheera-castellar/side.svg",
  24527. extra: 1957 / 1894
  24528. }
  24529. },
  24530. back: {
  24531. height: math.unit(8 + 4 / 12, "feet"),
  24532. weight: math.unit(350, "lb"),
  24533. name: "Back",
  24534. image: {
  24535. source: "./media/characters/sheera-castellar/back.svg",
  24536. extra: 1957 / 1894
  24537. }
  24538. },
  24539. angled: {
  24540. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24541. weight: math.unit(350, "lb"),
  24542. name: "Angled",
  24543. image: {
  24544. source: "./media/characters/sheera-castellar/angled.svg",
  24545. extra: 1807 / 1707,
  24546. bottom: 68 / 1875
  24547. }
  24548. },
  24549. genitals: {
  24550. height: math.unit(2.2, "feet"),
  24551. name: "Genitals",
  24552. image: {
  24553. source: "./media/characters/sheera-castellar/genitals.svg"
  24554. }
  24555. },
  24556. taur: {
  24557. height: math.unit(10 + 6/12, "feet"),
  24558. name: "Taur",
  24559. image: {
  24560. source: "./media/characters/sheera-castellar/taur.svg",
  24561. extra: 2017/1909,
  24562. bottom: 185/2202
  24563. }
  24564. },
  24565. },
  24566. [
  24567. {
  24568. name: "Normal",
  24569. height: math.unit(8 + 4 / 12, "feet")
  24570. },
  24571. {
  24572. name: "Macro",
  24573. height: math.unit(150, "feet"),
  24574. default: true
  24575. },
  24576. {
  24577. name: "Macro+",
  24578. height: math.unit(800, "feet")
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24584. {
  24585. front: {
  24586. height: math.unit(6, "feet"),
  24587. weight: math.unit(150, "lb"),
  24588. name: "Front",
  24589. image: {
  24590. source: "./media/characters/jaipur/front.svg",
  24591. extra: 3860 / 3731,
  24592. bottom: 287 / 4140
  24593. }
  24594. },
  24595. back: {
  24596. height: math.unit(6, "feet"),
  24597. weight: math.unit(150, "lb"),
  24598. name: "Back",
  24599. image: {
  24600. source: "./media/characters/jaipur/back.svg",
  24601. extra: 1637/1561,
  24602. bottom: 154/1791
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Normal",
  24609. height: math.unit(1.85, "meters"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Macro",
  24614. height: math.unit(150, "meters")
  24615. },
  24616. {
  24617. name: "Macro+",
  24618. height: math.unit(0.5, "miles")
  24619. },
  24620. {
  24621. name: "Macro++",
  24622. height: math.unit(2.5, "miles")
  24623. },
  24624. {
  24625. name: "Macro+++",
  24626. height: math.unit(12, "miles")
  24627. },
  24628. {
  24629. name: "Macro++++",
  24630. height: math.unit(120, "miles")
  24631. },
  24632. {
  24633. name: "Macro+++++",
  24634. height: math.unit(1200, "miles")
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24640. {
  24641. front: {
  24642. height: math.unit(6, "feet"),
  24643. weight: math.unit(150, "lb"),
  24644. name: "Front",
  24645. image: {
  24646. source: "./media/characters/sheila-wolf/front.svg",
  24647. extra: 1931 / 1808,
  24648. bottom: 29.5 / 1960
  24649. }
  24650. },
  24651. dick: {
  24652. height: math.unit(1.464, "feet"),
  24653. name: "Dick",
  24654. image: {
  24655. source: "./media/characters/sheila-wolf/dick.svg"
  24656. }
  24657. },
  24658. muzzle: {
  24659. height: math.unit(0.513, "feet"),
  24660. name: "Muzzle",
  24661. image: {
  24662. source: "./media/characters/sheila-wolf/muzzle.svg"
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Macro",
  24669. height: math.unit(70, "feet"),
  24670. default: true
  24671. },
  24672. ]
  24673. ))
  24674. characterMakers.push(() => makeCharacter(
  24675. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24676. {
  24677. front: {
  24678. height: math.unit(32, "meters"),
  24679. weight: math.unit(300000, "kg"),
  24680. name: "Front",
  24681. image: {
  24682. source: "./media/characters/almor/front.svg",
  24683. extra: 1408 / 1322,
  24684. bottom: 94.6 / 1506.5
  24685. }
  24686. },
  24687. },
  24688. [
  24689. {
  24690. name: "Macro",
  24691. height: math.unit(32, "meters"),
  24692. default: true
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24698. {
  24699. front: {
  24700. height: math.unit(7, "feet"),
  24701. weight: math.unit(200, "lb"),
  24702. name: "Front",
  24703. image: {
  24704. source: "./media/characters/silver/front.svg",
  24705. extra: 472.1 / 450.5,
  24706. bottom: 26.5 / 499.424
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Normal",
  24713. height: math.unit(7, "feet"),
  24714. default: true
  24715. },
  24716. {
  24717. name: "Macro",
  24718. height: math.unit(800, "feet")
  24719. },
  24720. {
  24721. name: "Megamacro",
  24722. height: math.unit(250, "miles")
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(6, "feet"),
  24731. weight: math.unit(150, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/pliskin/front.svg",
  24735. extra: 1469 / 1359,
  24736. bottom: 70 / 1540
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Micro",
  24743. height: math.unit(3, "inches")
  24744. },
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(5 + 11 / 12, "feet"),
  24748. default: true
  24749. },
  24750. {
  24751. name: "Macro",
  24752. height: math.unit(120, "feet")
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24758. {
  24759. front: {
  24760. height: math.unit(6, "feet"),
  24761. weight: math.unit(150, "lb"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/sammy/front.svg",
  24765. extra: 1193 / 1089,
  24766. bottom: 30.5 / 1226
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Macro",
  24773. height: math.unit(1700, "feet"),
  24774. default: true
  24775. },
  24776. {
  24777. name: "Examacro",
  24778. height: math.unit(2.5e9, "lightyears")
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24784. {
  24785. front: {
  24786. height: math.unit(21, "meters"),
  24787. weight: math.unit(12, "tonnes"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/kuru/front.svg",
  24791. extra: 4301 / 3785,
  24792. bottom: 371.3 / 4691
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(21, "meters"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(23, "meters"),
  24809. weight: math.unit(12.2, "tonnes"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/rakka/front.svg",
  24813. extra: 4670 / 4169,
  24814. bottom: 301 / 4968.7
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Macro",
  24821. height: math.unit(23, "meters"),
  24822. default: true
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24828. {
  24829. front: {
  24830. height: math.unit(6, "feet"),
  24831. weight: math.unit(150, "lb"),
  24832. name: "Front",
  24833. image: {
  24834. source: "./media/characters/rhys-feline/front.svg",
  24835. extra: 2488 / 2308,
  24836. bottom: 35.67 / 2519.19
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Really Small",
  24843. height: math.unit(1, "nm")
  24844. },
  24845. {
  24846. name: "Micro",
  24847. height: math.unit(4, "inches")
  24848. },
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(4 + 10 / 12, "feet"),
  24852. default: true
  24853. },
  24854. {
  24855. name: "Macro",
  24856. height: math.unit(100, "feet")
  24857. },
  24858. {
  24859. name: "Megamacto",
  24860. height: math.unit(50, "miles")
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24866. {
  24867. side: {
  24868. height: math.unit(30, "feet"),
  24869. weight: math.unit(35000, "kg"),
  24870. name: "Side",
  24871. image: {
  24872. source: "./media/characters/alydar/side.svg",
  24873. extra: 234 / 222,
  24874. bottom: 6.5 / 241
  24875. }
  24876. },
  24877. front: {
  24878. height: math.unit(30, "feet"),
  24879. weight: math.unit(35000, "kg"),
  24880. name: "Front",
  24881. image: {
  24882. source: "./media/characters/alydar/front.svg",
  24883. extra: 223.37 / 210.2,
  24884. bottom: 22.3 / 246.76
  24885. }
  24886. },
  24887. top: {
  24888. height: math.unit(64.54, "feet"),
  24889. weight: math.unit(35000, "kg"),
  24890. name: "Top",
  24891. image: {
  24892. source: "./media/characters/alydar/top.svg"
  24893. }
  24894. },
  24895. anthro: {
  24896. height: math.unit(30, "feet"),
  24897. weight: math.unit(9000, "kg"),
  24898. name: "Anthro",
  24899. image: {
  24900. source: "./media/characters/alydar/anthro.svg",
  24901. extra: 432 / 421,
  24902. bottom: 7.18 / 440
  24903. }
  24904. },
  24905. maw: {
  24906. height: math.unit(11.693, "feet"),
  24907. name: "Maw",
  24908. image: {
  24909. source: "./media/characters/alydar/maw.svg"
  24910. }
  24911. },
  24912. head: {
  24913. height: math.unit(11.693, "feet"),
  24914. name: "Head",
  24915. image: {
  24916. source: "./media/characters/alydar/head.svg"
  24917. }
  24918. },
  24919. headAlt: {
  24920. height: math.unit(12.861, "feet"),
  24921. name: "Head (Alt)",
  24922. image: {
  24923. source: "./media/characters/alydar/head-alt.svg"
  24924. }
  24925. },
  24926. wing: {
  24927. height: math.unit(20.712, "feet"),
  24928. name: "Wing",
  24929. image: {
  24930. source: "./media/characters/alydar/wing.svg"
  24931. }
  24932. },
  24933. wingFeather: {
  24934. height: math.unit(9.662, "feet"),
  24935. name: "Wing Feather",
  24936. image: {
  24937. source: "./media/characters/alydar/wing-feather.svg"
  24938. }
  24939. },
  24940. countourFeather: {
  24941. height: math.unit(4.154, "feet"),
  24942. name: "Contour Feather",
  24943. image: {
  24944. source: "./media/characters/alydar/contour-feather.svg"
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Diplomatic",
  24951. height: math.unit(13, "feet"),
  24952. default: true
  24953. },
  24954. {
  24955. name: "Small",
  24956. height: math.unit(30, "feet")
  24957. },
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(95, "feet"),
  24961. default: true
  24962. },
  24963. {
  24964. name: "Large",
  24965. height: math.unit(285, "feet")
  24966. },
  24967. {
  24968. name: "Incomprehensible",
  24969. height: math.unit(450, "megameters")
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24975. {
  24976. side: {
  24977. height: math.unit(11, "feet"),
  24978. weight: math.unit(1750, "kg"),
  24979. name: "Side",
  24980. image: {
  24981. source: "./media/characters/selicia/side.svg",
  24982. extra: 440 / 396,
  24983. bottom: 24.8 / 465.979
  24984. }
  24985. },
  24986. maw: {
  24987. height: math.unit(4.665, "feet"),
  24988. name: "Maw",
  24989. image: {
  24990. source: "./media/characters/selicia/maw.svg"
  24991. }
  24992. },
  24993. },
  24994. [
  24995. {
  24996. name: "Normal",
  24997. height: math.unit(11, "feet"),
  24998. default: true
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25004. {
  25005. side: {
  25006. height: math.unit(2 + 6 / 12, "feet"),
  25007. weight: math.unit(30, "lb"),
  25008. name: "Side",
  25009. image: {
  25010. source: "./media/characters/layla/side.svg",
  25011. extra: 244 / 188,
  25012. bottom: 18.2 / 262.1
  25013. }
  25014. },
  25015. back: {
  25016. height: math.unit(2 + 6 / 12, "feet"),
  25017. weight: math.unit(30, "lb"),
  25018. name: "Back",
  25019. image: {
  25020. source: "./media/characters/layla/back.svg",
  25021. extra: 308 / 241.5,
  25022. bottom: 8.9 / 316.8
  25023. }
  25024. },
  25025. cumming: {
  25026. height: math.unit(2 + 6 / 12, "feet"),
  25027. weight: math.unit(30, "lb"),
  25028. name: "Cumming",
  25029. image: {
  25030. source: "./media/characters/layla/cumming.svg",
  25031. extra: 342 / 279,
  25032. bottom: 595 / 938
  25033. }
  25034. },
  25035. dickFlaccid: {
  25036. height: math.unit(2.595, "feet"),
  25037. name: "Flaccid Genitals",
  25038. image: {
  25039. source: "./media/characters/layla/dick-flaccid.svg"
  25040. }
  25041. },
  25042. dickErect: {
  25043. height: math.unit(2.359, "feet"),
  25044. name: "Erect Genitals",
  25045. image: {
  25046. source: "./media/characters/layla/dick-erect.svg"
  25047. }
  25048. },
  25049. dragon: {
  25050. height: math.unit(40, "feet"),
  25051. name: "Dragon",
  25052. image: {
  25053. source: "./media/characters/layla/dragon.svg",
  25054. extra: 610/535,
  25055. bottom: 367/977
  25056. }
  25057. },
  25058. taur: {
  25059. height: math.unit(30, "feet"),
  25060. name: "Taur",
  25061. image: {
  25062. source: "./media/characters/layla/taur.svg",
  25063. extra: 1268/1199,
  25064. bottom: 112/1380
  25065. }
  25066. },
  25067. },
  25068. [
  25069. {
  25070. name: "Micro",
  25071. height: math.unit(1, "inch")
  25072. },
  25073. {
  25074. name: "Small",
  25075. height: math.unit(1, "foot")
  25076. },
  25077. {
  25078. name: "Normal",
  25079. height: math.unit(2 + 6 / 12, "feet"),
  25080. default: true
  25081. },
  25082. {
  25083. name: "Macro",
  25084. height: math.unit(200, "feet")
  25085. },
  25086. {
  25087. name: "Megamacro",
  25088. height: math.unit(1000, "miles")
  25089. },
  25090. {
  25091. name: "Planetary",
  25092. height: math.unit(8000, "miles")
  25093. },
  25094. {
  25095. name: "True Layla",
  25096. height: math.unit(200000 * 7, "multiverses")
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25102. {
  25103. back: {
  25104. height: math.unit(10.5, "feet"),
  25105. weight: math.unit(800, "lb"),
  25106. name: "Back",
  25107. image: {
  25108. source: "./media/characters/knox/back.svg",
  25109. extra: 1486 / 1089,
  25110. bottom: 107 / 1601.4
  25111. }
  25112. },
  25113. side: {
  25114. height: math.unit(10.5, "feet"),
  25115. weight: math.unit(800, "lb"),
  25116. name: "Side",
  25117. image: {
  25118. source: "./media/characters/knox/side.svg",
  25119. extra: 244 / 218,
  25120. bottom: 14 / 260
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Compact",
  25127. height: math.unit(10.5, "feet"),
  25128. default: true
  25129. },
  25130. {
  25131. name: "Dynamax",
  25132. height: math.unit(210, "feet")
  25133. },
  25134. {
  25135. name: "Full Macro",
  25136. height: math.unit(850, "feet")
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25142. {
  25143. front: {
  25144. height: math.unit(28, "feet"),
  25145. weight: math.unit(10500, "lb"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/kayda/front.svg",
  25149. extra: 1536 / 1428,
  25150. bottom: 68.7 / 1603
  25151. }
  25152. },
  25153. back: {
  25154. height: math.unit(28, "feet"),
  25155. weight: math.unit(10500, "lb"),
  25156. name: "Back",
  25157. image: {
  25158. source: "./media/characters/kayda/back.svg",
  25159. extra: 1557 / 1464,
  25160. bottom: 39.5 / 1597.49
  25161. }
  25162. },
  25163. dick: {
  25164. height: math.unit(3.858, "feet"),
  25165. name: "Dick",
  25166. image: {
  25167. source: "./media/characters/kayda/dick.svg"
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Macro",
  25174. height: math.unit(28, "feet"),
  25175. default: true
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25181. {
  25182. front: {
  25183. height: math.unit(10 + 11 / 12, "feet"),
  25184. weight: math.unit(1400, "lb"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/brian/front.svg",
  25188. extra: 737 / 692,
  25189. bottom: 55.4 / 785
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Normal",
  25196. height: math.unit(10 + 11 / 12, "feet"),
  25197. default: true
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25203. {
  25204. front: {
  25205. height: math.unit(5 + 8 / 12, "feet"),
  25206. weight: math.unit(140, "lb"),
  25207. name: "Front",
  25208. image: {
  25209. source: "./media/characters/khemri/front.svg",
  25210. extra: 4780 / 4059,
  25211. bottom: 80.1 / 4859.25
  25212. }
  25213. },
  25214. },
  25215. [
  25216. {
  25217. name: "Micro",
  25218. height: math.unit(6, "inches")
  25219. },
  25220. {
  25221. name: "Normal",
  25222. height: math.unit(5 + 8 / 12, "feet"),
  25223. default: true
  25224. },
  25225. ]
  25226. ))
  25227. characterMakers.push(() => makeCharacter(
  25228. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25229. {
  25230. front: {
  25231. height: math.unit(13, "feet"),
  25232. weight: math.unit(1700, "lb"),
  25233. name: "Front",
  25234. image: {
  25235. source: "./media/characters/felix-braveheart/front.svg",
  25236. extra: 1222 / 1157,
  25237. bottom: 53.2 / 1280
  25238. }
  25239. },
  25240. back: {
  25241. height: math.unit(13, "feet"),
  25242. weight: math.unit(1700, "lb"),
  25243. name: "Back",
  25244. image: {
  25245. source: "./media/characters/felix-braveheart/back.svg",
  25246. extra: 1277 / 1203,
  25247. bottom: 50.2 / 1327
  25248. }
  25249. },
  25250. feral: {
  25251. height: math.unit(6, "feet"),
  25252. weight: math.unit(400, "lb"),
  25253. name: "Feral",
  25254. image: {
  25255. source: "./media/characters/felix-braveheart/feral.svg",
  25256. extra: 682 / 625,
  25257. bottom: 6.9 / 688
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(13, "feet"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25271. {
  25272. side: {
  25273. height: math.unit(5 + 11 / 12, "feet"),
  25274. weight: math.unit(1400, "lb"),
  25275. name: "Side",
  25276. image: {
  25277. source: "./media/characters/shadow-blade/side.svg",
  25278. extra: 1726 / 1267,
  25279. bottom: 58.4 / 1785
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Normal",
  25286. height: math.unit(5 + 11 / 12, "feet"),
  25287. default: true
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25293. {
  25294. front: {
  25295. height: math.unit(1 + 6 / 12, "feet"),
  25296. weight: math.unit(25, "lb"),
  25297. name: "Front",
  25298. image: {
  25299. source: "./media/characters/karla-halldor/front.svg",
  25300. extra: 1459 / 1383,
  25301. bottom: 12 / 1472
  25302. }
  25303. },
  25304. },
  25305. [
  25306. {
  25307. name: "Normal",
  25308. height: math.unit(1 + 6 / 12, "feet"),
  25309. default: true
  25310. },
  25311. ]
  25312. ))
  25313. characterMakers.push(() => makeCharacter(
  25314. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25315. {
  25316. front: {
  25317. height: math.unit(6 + 2 / 12, "feet"),
  25318. weight: math.unit(160, "lb"),
  25319. name: "Front",
  25320. image: {
  25321. source: "./media/characters/ariam/front.svg",
  25322. extra: 1073/976,
  25323. bottom: 52/1125
  25324. }
  25325. },
  25326. back: {
  25327. height: math.unit(6 + 2/12, "feet"),
  25328. weight: math.unit(160, "lb"),
  25329. name: "Back",
  25330. image: {
  25331. source: "./media/characters/ariam/back.svg",
  25332. extra: 1103/1023,
  25333. bottom: 9/1112
  25334. }
  25335. },
  25336. dressed: {
  25337. height: math.unit(6 + 2/12, "feet"),
  25338. weight: math.unit(160, "lb"),
  25339. name: "Dressed",
  25340. image: {
  25341. source: "./media/characters/ariam/dressed.svg",
  25342. extra: 1099/1009,
  25343. bottom: 25/1124
  25344. }
  25345. },
  25346. squatting: {
  25347. height: math.unit(4.1, "feet"),
  25348. weight: math.unit(160, "lb"),
  25349. name: "Squatting",
  25350. image: {
  25351. source: "./media/characters/ariam/squatting.svg",
  25352. extra: 2617 / 2112,
  25353. bottom: 61.2 / 2681,
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(6 + 2 / 12, "feet"),
  25361. default: true
  25362. },
  25363. {
  25364. name: "Normal+",
  25365. height: math.unit(4, "meters")
  25366. },
  25367. {
  25368. name: "Macro",
  25369. height: math.unit(50, "meters")
  25370. },
  25371. {
  25372. name: "Macro+",
  25373. height: math.unit(100, "meters")
  25374. },
  25375. {
  25376. name: "Megamacro",
  25377. height: math.unit(20, "km")
  25378. },
  25379. {
  25380. name: "Caretaker",
  25381. height: math.unit(444, "megameters")
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(1.67, "meters"),
  25390. weight: math.unit(140, "lb"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25394. extra: 438 / 410,
  25395. bottom: 0.75 / 439
  25396. }
  25397. },
  25398. },
  25399. [
  25400. {
  25401. name: "Shrunken",
  25402. height: math.unit(7.6, "cm")
  25403. },
  25404. {
  25405. name: "Human Scale",
  25406. height: math.unit(1.67, "meters")
  25407. },
  25408. {
  25409. name: "Wolxi Scale",
  25410. height: math.unit(36.7, "meters"),
  25411. default: true
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25417. {
  25418. front: {
  25419. height: math.unit(1.73, "meters"),
  25420. weight: math.unit(240, "lb"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/izue-two-mothers/front.svg",
  25424. extra: 469 / 437,
  25425. bottom: 1.24 / 470.6
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Shrunken",
  25432. height: math.unit(7.86, "cm")
  25433. },
  25434. {
  25435. name: "Human Scale",
  25436. height: math.unit(1.73, "meters")
  25437. },
  25438. {
  25439. name: "Wolxi Scale",
  25440. height: math.unit(38, "meters"),
  25441. default: true
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(1.55, "meters"),
  25450. weight: math.unit(120, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/teeku-love-shack/front.svg",
  25454. extra: 387 / 362,
  25455. bottom: 1.51 / 388
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Shrunken",
  25462. height: math.unit(7, "cm")
  25463. },
  25464. {
  25465. name: "Human Scale",
  25466. height: math.unit(1.55, "meters")
  25467. },
  25468. {
  25469. name: "Wolxi Scale",
  25470. height: math.unit(34.1, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(1.83, "meters"),
  25480. weight: math.unit(135, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/dejma-the-red/front.svg",
  25484. extra: 480 / 458,
  25485. bottom: 1.8 / 482
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Shrunken",
  25492. height: math.unit(8.3, "cm")
  25493. },
  25494. {
  25495. name: "Human Scale",
  25496. height: math.unit(1.83, "meters")
  25497. },
  25498. {
  25499. name: "Wolxi Scale",
  25500. height: math.unit(40, "meters"),
  25501. default: true
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(1.78, "meters"),
  25510. weight: math.unit(65, "kg"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/aki/front.svg",
  25514. extra: 452 / 415
  25515. }
  25516. },
  25517. frontNsfw: {
  25518. height: math.unit(1.78, "meters"),
  25519. weight: math.unit(65, "kg"),
  25520. name: "Front (NSFW)",
  25521. image: {
  25522. source: "./media/characters/aki/front-nsfw.svg",
  25523. extra: 452 / 415
  25524. }
  25525. },
  25526. back: {
  25527. height: math.unit(1.78, "meters"),
  25528. weight: math.unit(65, "kg"),
  25529. name: "Back",
  25530. image: {
  25531. source: "./media/characters/aki/back.svg",
  25532. extra: 452 / 415
  25533. }
  25534. },
  25535. rump: {
  25536. height: math.unit(2.05, "feet"),
  25537. name: "Rump",
  25538. image: {
  25539. source: "./media/characters/aki/rump.svg"
  25540. }
  25541. },
  25542. dick: {
  25543. height: math.unit(0.95, "feet"),
  25544. name: "Dick",
  25545. image: {
  25546. source: "./media/characters/aki/dick.svg"
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Micro",
  25553. height: math.unit(15, "cm")
  25554. },
  25555. {
  25556. name: "Normal",
  25557. height: math.unit(178, "cm"),
  25558. default: true
  25559. },
  25560. {
  25561. name: "Macro",
  25562. height: math.unit(214, "m")
  25563. },
  25564. {
  25565. name: "Macro+",
  25566. height: math.unit(534, "m")
  25567. },
  25568. ]
  25569. ))
  25570. characterMakers.push(() => makeCharacter(
  25571. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25572. {
  25573. front: {
  25574. height: math.unit(5 + 5 / 12, "feet"),
  25575. weight: math.unit(120, "lb"),
  25576. name: "Front",
  25577. image: {
  25578. source: "./media/characters/ari/front.svg",
  25579. extra: 1550/1471,
  25580. bottom: 39/1589
  25581. }
  25582. },
  25583. },
  25584. [
  25585. {
  25586. name: "Normal",
  25587. height: math.unit(5 + 5 / 12, "feet")
  25588. },
  25589. {
  25590. name: "Macro",
  25591. height: math.unit(100, "feet"),
  25592. default: true
  25593. },
  25594. {
  25595. name: "Megamacro",
  25596. height: math.unit(100, "miles")
  25597. },
  25598. {
  25599. name: "Gigamacro",
  25600. height: math.unit(80000, "miles")
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25606. {
  25607. side: {
  25608. height: math.unit(9, "feet"),
  25609. weight: math.unit(400, "kg"),
  25610. name: "Side",
  25611. image: {
  25612. source: "./media/characters/bolt/side.svg",
  25613. extra: 1126 / 896,
  25614. bottom: 60 / 1187.3,
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Micro",
  25621. height: math.unit(5, "inches")
  25622. },
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(9, "feet"),
  25626. default: true
  25627. },
  25628. {
  25629. name: "Macro",
  25630. height: math.unit(700, "feet")
  25631. },
  25632. {
  25633. name: "Max Size",
  25634. height: math.unit(1.52e22, "yottameters")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(4.3, "meters"),
  25643. weight: math.unit(3, "tons"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/draekon-sylviar/front.svg",
  25647. extra: 2072/1512,
  25648. bottom: 74/2146
  25649. }
  25650. },
  25651. back: {
  25652. height: math.unit(4.3, "meters"),
  25653. weight: math.unit(3, "tons"),
  25654. name: "Back",
  25655. image: {
  25656. source: "./media/characters/draekon-sylviar/back.svg",
  25657. extra: 1639/1483,
  25658. bottom: 41/1680
  25659. }
  25660. },
  25661. feral: {
  25662. height: math.unit(1.15, "meters"),
  25663. weight: math.unit(3, "tons"),
  25664. name: "Feral",
  25665. image: {
  25666. source: "./media/characters/draekon-sylviar/feral.svg",
  25667. extra: 1033/395,
  25668. bottom: 130/1163
  25669. }
  25670. },
  25671. maw: {
  25672. height: math.unit(1.3, "meters"),
  25673. name: "Maw",
  25674. image: {
  25675. source: "./media/characters/draekon-sylviar/maw.svg"
  25676. }
  25677. },
  25678. mawSeparated: {
  25679. height: math.unit(1.53, "meters"),
  25680. name: "Separated Maw",
  25681. image: {
  25682. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25683. }
  25684. },
  25685. tail: {
  25686. height: math.unit(1.15, "meters"),
  25687. name: "Tail",
  25688. image: {
  25689. source: "./media/characters/draekon-sylviar/tail.svg"
  25690. }
  25691. },
  25692. tailDick: {
  25693. height: math.unit(1.15, "meters"),
  25694. name: "Tail (Dick)",
  25695. image: {
  25696. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25697. }
  25698. },
  25699. tailDickSeparated: {
  25700. height: math.unit(1.19, "meters"),
  25701. name: "Tail (Separated Dick)",
  25702. image: {
  25703. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25704. }
  25705. },
  25706. slit: {
  25707. height: math.unit(1, "meters"),
  25708. name: "Slit",
  25709. image: {
  25710. source: "./media/characters/draekon-sylviar/slit.svg"
  25711. }
  25712. },
  25713. dick: {
  25714. height: math.unit(1.15, "meters"),
  25715. name: "Dick",
  25716. image: {
  25717. source: "./media/characters/draekon-sylviar/dick.svg"
  25718. }
  25719. },
  25720. dickSeparated: {
  25721. height: math.unit(1.1, "meters"),
  25722. name: "Separated Dick",
  25723. image: {
  25724. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25725. }
  25726. },
  25727. sheath: {
  25728. height: math.unit(1.15, "meters"),
  25729. name: "Sheath",
  25730. image: {
  25731. source: "./media/characters/draekon-sylviar/sheath.svg"
  25732. }
  25733. },
  25734. },
  25735. [
  25736. {
  25737. name: "Small",
  25738. height: math.unit(4.53 / 2, "meters"),
  25739. default: true
  25740. },
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(4.53, "meters"),
  25744. default: true
  25745. },
  25746. {
  25747. name: "Large",
  25748. height: math.unit(4.53 * 2, "meters"),
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25754. {
  25755. front: {
  25756. height: math.unit(6 + 2 / 12, "feet"),
  25757. weight: math.unit(180, "lb"),
  25758. name: "Front",
  25759. image: {
  25760. source: "./media/characters/brawler/front.svg",
  25761. extra: 3301 / 3027,
  25762. bottom: 138 / 3439
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(6 + 2 / 12, "feet"),
  25770. default: true
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25776. {
  25777. front: {
  25778. height: math.unit(11, "feet"),
  25779. weight: math.unit(1000, "lb"),
  25780. name: "Front",
  25781. image: {
  25782. source: "./media/characters/alex/front.svg",
  25783. bottom: 44.5 / 620
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Micro",
  25790. height: math.unit(5, "inches")
  25791. },
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(11, "feet"),
  25795. default: true
  25796. },
  25797. {
  25798. name: "Macro",
  25799. height: math.unit(9.5e9, "feet")
  25800. },
  25801. {
  25802. name: "Max Size",
  25803. height: math.unit(1.4e283, "yottameters")
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25809. {
  25810. female: {
  25811. height: math.unit(29.9, "m"),
  25812. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25813. name: "Female",
  25814. image: {
  25815. source: "./media/characters/zenari/female.svg",
  25816. extra: 3281.6 / 3217,
  25817. bottom: 72.2 / 3353
  25818. }
  25819. },
  25820. male: {
  25821. height: math.unit(27.7, "m"),
  25822. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25823. name: "Male",
  25824. image: {
  25825. source: "./media/characters/zenari/male.svg",
  25826. extra: 3008 / 2991,
  25827. bottom: 54.6 / 3069
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(29.7, "meters"),
  25835. default: true
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25841. {
  25842. female: {
  25843. height: math.unit(23.8, "m"),
  25844. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25845. name: "Female",
  25846. image: {
  25847. source: "./media/characters/mactarian/female.svg",
  25848. extra: 2662 / 2569,
  25849. bottom: 73 / 2736
  25850. }
  25851. },
  25852. male: {
  25853. height: math.unit(23.8, "m"),
  25854. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25855. name: "Male",
  25856. image: {
  25857. source: "./media/characters/mactarian/male.svg",
  25858. extra: 2673 / 2600,
  25859. bottom: 76 / 2750
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Macro",
  25866. height: math.unit(23.8, "meters"),
  25867. default: true
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25873. {
  25874. female: {
  25875. height: math.unit(19.3, "m"),
  25876. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25877. name: "Female",
  25878. image: {
  25879. source: "./media/characters/umok/female.svg",
  25880. extra: 2186 / 2078,
  25881. bottom: 87 / 2277
  25882. }
  25883. },
  25884. male: {
  25885. height: math.unit(19.5, "m"),
  25886. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25887. name: "Male",
  25888. image: {
  25889. source: "./media/characters/umok/male.svg",
  25890. extra: 2233 / 2140,
  25891. bottom: 24.4 / 2258
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Macro",
  25898. height: math.unit(19.3, "meters"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25905. {
  25906. female: {
  25907. height: math.unit(26.15, "m"),
  25908. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25909. name: "Female",
  25910. image: {
  25911. source: "./media/characters/joraxian/female.svg",
  25912. extra: 2912 / 2824,
  25913. bottom: 36 / 2956
  25914. }
  25915. },
  25916. male: {
  25917. height: math.unit(25.4, "m"),
  25918. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25919. name: "Male",
  25920. image: {
  25921. source: "./media/characters/joraxian/male.svg",
  25922. extra: 2877 / 2721,
  25923. bottom: 82 / 2967
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Macro",
  25930. height: math.unit(26.15, "meters"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25937. {
  25938. female: {
  25939. height: math.unit(21.6, "m"),
  25940. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25941. name: "Female",
  25942. image: {
  25943. source: "./media/characters/sthara/female.svg",
  25944. extra: 2516 / 2347,
  25945. bottom: 21.5 / 2537
  25946. }
  25947. },
  25948. male: {
  25949. height: math.unit(24, "m"),
  25950. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25951. name: "Male",
  25952. image: {
  25953. source: "./media/characters/sthara/male.svg",
  25954. extra: 2732 / 2607,
  25955. bottom: 23 / 2732
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Macro",
  25962. height: math.unit(21.6, "meters"),
  25963. default: true
  25964. },
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25969. {
  25970. front: {
  25971. height: math.unit(6 + 4 / 12, "feet"),
  25972. weight: math.unit(175, "lb"),
  25973. name: "Front",
  25974. image: {
  25975. source: "./media/characters/luka-bryzant/front.svg",
  25976. extra: 311 / 289,
  25977. bottom: 4 / 315
  25978. }
  25979. },
  25980. back: {
  25981. height: math.unit(6 + 4 / 12, "feet"),
  25982. weight: math.unit(175, "lb"),
  25983. name: "Back",
  25984. image: {
  25985. source: "./media/characters/luka-bryzant/back.svg",
  25986. extra: 311 / 289,
  25987. bottom: 3.8 / 313.7
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Micro",
  25994. height: math.unit(10, "inches")
  25995. },
  25996. {
  25997. name: "Normal",
  25998. height: math.unit(6 + 4 / 12, "feet"),
  25999. default: true
  26000. },
  26001. {
  26002. name: "Large",
  26003. height: math.unit(12, "feet")
  26004. },
  26005. ]
  26006. ))
  26007. characterMakers.push(() => makeCharacter(
  26008. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26009. {
  26010. front: {
  26011. height: math.unit(5 + 7 / 12, "feet"),
  26012. weight: math.unit(185, "lb"),
  26013. name: "Front",
  26014. image: {
  26015. source: "./media/characters/aman-aquila/front.svg",
  26016. extra: 1013 / 976,
  26017. bottom: 45.6 / 1057
  26018. }
  26019. },
  26020. side: {
  26021. height: math.unit(5 + 7 / 12, "feet"),
  26022. weight: math.unit(185, "lb"),
  26023. name: "Side",
  26024. image: {
  26025. source: "./media/characters/aman-aquila/side.svg",
  26026. extra: 1054 / 1011,
  26027. bottom: 15 / 1070
  26028. }
  26029. },
  26030. back: {
  26031. height: math.unit(5 + 7 / 12, "feet"),
  26032. weight: math.unit(185, "lb"),
  26033. name: "Back",
  26034. image: {
  26035. source: "./media/characters/aman-aquila/back.svg",
  26036. extra: 1026 / 970,
  26037. bottom: 12 / 1039
  26038. }
  26039. },
  26040. head: {
  26041. height: math.unit(1.211, "feet"),
  26042. name: "Head",
  26043. image: {
  26044. source: "./media/characters/aman-aquila/head.svg",
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Minimicro",
  26051. height: math.unit(0.057, "inches")
  26052. },
  26053. {
  26054. name: "Micro",
  26055. height: math.unit(7, "inches")
  26056. },
  26057. {
  26058. name: "Mini",
  26059. height: math.unit(3 + 7 / 12, "feet")
  26060. },
  26061. {
  26062. name: "Normal",
  26063. height: math.unit(5 + 7 / 12, "feet"),
  26064. default: true
  26065. },
  26066. {
  26067. name: "Macro",
  26068. height: math.unit(157 + 7 / 12, "feet")
  26069. },
  26070. {
  26071. name: "Megamacro",
  26072. height: math.unit(1557 + 7 / 12, "feet")
  26073. },
  26074. {
  26075. name: "Gigamacro",
  26076. height: math.unit(15557 + 7 / 12, "feet")
  26077. },
  26078. ]
  26079. ))
  26080. characterMakers.push(() => makeCharacter(
  26081. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26082. {
  26083. front: {
  26084. height: math.unit(3 + 2 / 12, "inches"),
  26085. weight: math.unit(0.3, "ounces"),
  26086. name: "Front",
  26087. image: {
  26088. source: "./media/characters/hiphae/front.svg",
  26089. extra: 1931 / 1683,
  26090. bottom: 24 / 1955
  26091. }
  26092. },
  26093. },
  26094. [
  26095. {
  26096. name: "Normal",
  26097. height: math.unit(3 + 1 / 2, "inches"),
  26098. default: true
  26099. },
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26104. {
  26105. front: {
  26106. height: math.unit(5 + 10 / 12, "feet"),
  26107. weight: math.unit(165, "lb"),
  26108. name: "Front",
  26109. image: {
  26110. source: "./media/characters/nicky/front.svg",
  26111. extra: 3144 / 2886,
  26112. bottom: 45.6 / 3192
  26113. }
  26114. },
  26115. back: {
  26116. height: math.unit(5 + 10 / 12, "feet"),
  26117. weight: math.unit(165, "lb"),
  26118. name: "Back",
  26119. image: {
  26120. source: "./media/characters/nicky/back.svg",
  26121. extra: 3055 / 2804,
  26122. bottom: 28.4 / 3087
  26123. }
  26124. },
  26125. frontclothed: {
  26126. height: math.unit(5 + 10 / 12, "feet"),
  26127. weight: math.unit(165, "lb"),
  26128. name: "Front-clothed",
  26129. image: {
  26130. source: "./media/characters/nicky/front-clothed.svg",
  26131. extra: 3184.9 / 2926.9,
  26132. bottom: 86.5 / 3239.9
  26133. }
  26134. },
  26135. foot: {
  26136. height: math.unit(1.16, "feet"),
  26137. name: "Foot",
  26138. image: {
  26139. source: "./media/characters/nicky/foot.svg"
  26140. }
  26141. },
  26142. feet: {
  26143. height: math.unit(1.34, "feet"),
  26144. name: "Feet",
  26145. image: {
  26146. source: "./media/characters/nicky/feet.svg"
  26147. }
  26148. },
  26149. maw: {
  26150. height: math.unit(0.9, "feet"),
  26151. name: "Maw",
  26152. image: {
  26153. source: "./media/characters/nicky/maw.svg"
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(5 + 10 / 12, "feet"),
  26161. default: true
  26162. },
  26163. {
  26164. name: "Macro",
  26165. height: math.unit(60, "feet")
  26166. },
  26167. {
  26168. name: "Megamacro",
  26169. height: math.unit(1, "mile")
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26175. {
  26176. side: {
  26177. height: math.unit(10, "feet"),
  26178. weight: math.unit(600, "lb"),
  26179. name: "Side",
  26180. image: {
  26181. source: "./media/characters/blair/side.svg",
  26182. bottom: 16.6 / 475,
  26183. extra: 458 / 431
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Micro",
  26190. height: math.unit(8, "inches")
  26191. },
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(10, "feet"),
  26195. default: true
  26196. },
  26197. {
  26198. name: "Macro",
  26199. height: math.unit(180, "feet")
  26200. },
  26201. ]
  26202. ))
  26203. characterMakers.push(() => makeCharacter(
  26204. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26205. {
  26206. front: {
  26207. height: math.unit(5 + 4 / 12, "feet"),
  26208. weight: math.unit(125, "lb"),
  26209. name: "Front",
  26210. image: {
  26211. source: "./media/characters/fisher/front.svg",
  26212. extra: 444 / 390,
  26213. bottom: 2 / 444.8
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Micro",
  26220. height: math.unit(4, "inches")
  26221. },
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(5 + 4 / 12, "feet"),
  26225. default: true
  26226. },
  26227. {
  26228. name: "Macro",
  26229. height: math.unit(100, "feet")
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(6.71, "feet"),
  26238. weight: math.unit(200, "lb"),
  26239. preyCapacity: math.unit(1000000, "people"),
  26240. name: "Front",
  26241. image: {
  26242. source: "./media/characters/gliss/front.svg",
  26243. extra: 2347 / 2231,
  26244. bottom: 113 / 2462
  26245. }
  26246. },
  26247. hammerspaceSize: {
  26248. height: math.unit(6.71 * 717, "feet"),
  26249. weight: math.unit(200, "lb"),
  26250. preyCapacity: math.unit(1000000, "people"),
  26251. name: "Hammerspace Size",
  26252. image: {
  26253. source: "./media/characters/gliss/front.svg",
  26254. extra: 2347 / 2231,
  26255. bottom: 113 / 2462
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(6.71, "feet"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26269. {
  26270. side: {
  26271. height: math.unit(1.44, "m"),
  26272. weight: math.unit(80, "kg"),
  26273. name: "Side",
  26274. image: {
  26275. source: "./media/characters/dune-anderson/side.svg",
  26276. bottom: 49 / 1426
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Wolf-sized",
  26283. height: math.unit(1.44, "meters")
  26284. },
  26285. {
  26286. name: "Normal",
  26287. height: math.unit(5.05, "meters"),
  26288. default: true
  26289. },
  26290. {
  26291. name: "Big",
  26292. height: math.unit(14.4, "meters")
  26293. },
  26294. {
  26295. name: "Huge",
  26296. height: math.unit(144, "meters")
  26297. },
  26298. ]
  26299. ))
  26300. characterMakers.push(() => makeCharacter(
  26301. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26302. {
  26303. front: {
  26304. height: math.unit(7, "feet"),
  26305. weight: math.unit(425, "lb"),
  26306. name: "Front",
  26307. image: {
  26308. source: "./media/characters/hind/front.svg",
  26309. extra: 2091 / 1860,
  26310. bottom: 129 / 2220
  26311. }
  26312. },
  26313. back: {
  26314. height: math.unit(7, "feet"),
  26315. weight: math.unit(425, "lb"),
  26316. name: "Back",
  26317. image: {
  26318. source: "./media/characters/hind/back.svg",
  26319. extra: 2091 / 1860,
  26320. bottom: 24.6 / 2309
  26321. }
  26322. },
  26323. tail: {
  26324. height: math.unit(2.8, "feet"),
  26325. name: "Tail",
  26326. image: {
  26327. source: "./media/characters/hind/tail.svg"
  26328. }
  26329. },
  26330. head: {
  26331. height: math.unit(2.55, "feet"),
  26332. name: "Head",
  26333. image: {
  26334. source: "./media/characters/hind/head.svg"
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "XS",
  26341. height: math.unit(0.7, "feet")
  26342. },
  26343. {
  26344. name: "Normal",
  26345. height: math.unit(7, "feet"),
  26346. default: true
  26347. },
  26348. {
  26349. name: "XL",
  26350. height: math.unit(70, "feet")
  26351. },
  26352. ]
  26353. ))
  26354. characterMakers.push(() => makeCharacter(
  26355. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26356. {
  26357. front: {
  26358. height: math.unit(2.1, "meters"),
  26359. weight: math.unit(150, "lb"),
  26360. name: "Front",
  26361. image: {
  26362. source: "./media/characters/tharquench-sizestealer/front.svg",
  26363. extra: 1605/1470,
  26364. bottom: 36/1641
  26365. }
  26366. },
  26367. frontAlt: {
  26368. height: math.unit(2.1, "meters"),
  26369. weight: math.unit(150, "lb"),
  26370. name: "Front (Alt)",
  26371. image: {
  26372. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26373. extra: 2318 / 2063,
  26374. bottom: 93.4 / 2410
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Nano",
  26381. height: math.unit(1, "mm")
  26382. },
  26383. {
  26384. name: "Micro",
  26385. height: math.unit(1, "cm")
  26386. },
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(2.1, "meters"),
  26390. default: true
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26396. {
  26397. front: {
  26398. height: math.unit(7 + 5 / 12, "feet"),
  26399. weight: math.unit(357, "lb"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/solex-draconov/front.svg",
  26403. extra: 1993 / 1865,
  26404. bottom: 117 / 2111
  26405. }
  26406. },
  26407. },
  26408. [
  26409. {
  26410. name: "Natural Height",
  26411. height: math.unit(7 + 5 / 12, "feet"),
  26412. default: true
  26413. },
  26414. {
  26415. name: "Macro",
  26416. height: math.unit(350, "feet")
  26417. },
  26418. {
  26419. name: "Macro+",
  26420. height: math.unit(1000, "feet")
  26421. },
  26422. {
  26423. name: "Megamacro",
  26424. height: math.unit(20, "km")
  26425. },
  26426. {
  26427. name: "Megamacro+",
  26428. height: math.unit(1000, "km")
  26429. },
  26430. {
  26431. name: "Gigamacro",
  26432. height: math.unit(2.5, "Gm")
  26433. },
  26434. {
  26435. name: "Teramacro",
  26436. height: math.unit(15, "Tm")
  26437. },
  26438. {
  26439. name: "Galactic",
  26440. height: math.unit(30, "Zm")
  26441. },
  26442. {
  26443. name: "Universal",
  26444. height: math.unit(21000, "Ym")
  26445. },
  26446. {
  26447. name: "Omniversal",
  26448. height: math.unit(9.861e50, "Ym")
  26449. },
  26450. {
  26451. name: "Existential",
  26452. height: math.unit(1e300, "meters")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26458. {
  26459. side: {
  26460. height: math.unit(25, "feet"),
  26461. weight: math.unit(90000, "lb"),
  26462. name: "Side",
  26463. image: {
  26464. source: "./media/characters/mandarax/side.svg",
  26465. extra: 614 / 332,
  26466. bottom: 55 / 630
  26467. }
  26468. },
  26469. lounging: {
  26470. height: math.unit(15.4, "feet"),
  26471. weight: math.unit(90000, "lb"),
  26472. name: "Lounging",
  26473. image: {
  26474. source: "./media/characters/mandarax/lounging.svg",
  26475. extra: 817/609,
  26476. bottom: 685/1502
  26477. }
  26478. },
  26479. head: {
  26480. height: math.unit(11.4, "feet"),
  26481. name: "Head",
  26482. image: {
  26483. source: "./media/characters/mandarax/head.svg"
  26484. }
  26485. },
  26486. belly: {
  26487. height: math.unit(33, "feet"),
  26488. name: "Belly",
  26489. preyCapacity: math.unit(500, "people"),
  26490. image: {
  26491. source: "./media/characters/mandarax/belly.svg"
  26492. }
  26493. },
  26494. dick: {
  26495. height: math.unit(8.46, "feet"),
  26496. name: "Dick",
  26497. image: {
  26498. source: "./media/characters/mandarax/dick.svg"
  26499. }
  26500. },
  26501. top: {
  26502. height: math.unit(28, "meters"),
  26503. name: "Top",
  26504. image: {
  26505. source: "./media/characters/mandarax/top.svg"
  26506. }
  26507. },
  26508. },
  26509. [
  26510. {
  26511. name: "Normal",
  26512. height: math.unit(25, "feet"),
  26513. default: true
  26514. },
  26515. ]
  26516. ))
  26517. characterMakers.push(() => makeCharacter(
  26518. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26519. {
  26520. front: {
  26521. height: math.unit(5, "feet"),
  26522. weight: math.unit(90, "lb"),
  26523. name: "Front",
  26524. image: {
  26525. source: "./media/characters/pixil/front.svg",
  26526. extra: 2000 / 1618,
  26527. bottom: 12.3 / 2011
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(5, "feet"),
  26535. default: true
  26536. },
  26537. {
  26538. name: "Megamacro",
  26539. height: math.unit(10, "miles"),
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26545. {
  26546. front: {
  26547. height: math.unit(7 + 2 / 12, "feet"),
  26548. weight: math.unit(200, "lb"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/angel/front.svg",
  26552. extra: 1830 / 1737,
  26553. bottom: 22.6 / 1854,
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(7 + 2 / 12, "feet"),
  26561. default: true
  26562. },
  26563. {
  26564. name: "Macro",
  26565. height: math.unit(1000, "feet")
  26566. },
  26567. {
  26568. name: "Megamacro",
  26569. height: math.unit(2, "miles")
  26570. },
  26571. {
  26572. name: "Gigamacro",
  26573. height: math.unit(20, "earths")
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(5, "feet"),
  26582. weight: math.unit(180, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/mekana/front.svg",
  26586. extra: 1671 / 1605,
  26587. bottom: 3.5 / 1691
  26588. }
  26589. },
  26590. side: {
  26591. height: math.unit(5, "feet"),
  26592. weight: math.unit(180, "lb"),
  26593. name: "Side",
  26594. image: {
  26595. source: "./media/characters/mekana/side.svg",
  26596. extra: 1671 / 1605,
  26597. bottom: 3.5 / 1691
  26598. }
  26599. },
  26600. back: {
  26601. height: math.unit(5, "feet"),
  26602. weight: math.unit(180, "lb"),
  26603. name: "Back",
  26604. image: {
  26605. source: "./media/characters/mekana/back.svg",
  26606. extra: 1671 / 1605,
  26607. bottom: 3.5 / 1691
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(5, "feet"),
  26615. default: true
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26621. {
  26622. front: {
  26623. height: math.unit(4 + 6 / 12, "feet"),
  26624. weight: math.unit(80, "lb"),
  26625. name: "Front",
  26626. image: {
  26627. source: "./media/characters/pixie/front.svg",
  26628. extra: 1924 / 1825,
  26629. bottom: 22.4 / 1946
  26630. }
  26631. },
  26632. },
  26633. [
  26634. {
  26635. name: "Normal",
  26636. height: math.unit(4 + 6 / 12, "feet"),
  26637. default: true
  26638. },
  26639. {
  26640. name: "Macro",
  26641. height: math.unit(40, "feet")
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(2.1, "meters"),
  26650. weight: math.unit(200, "lb"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/the-lascivious/front.svg",
  26654. extra: 1 / 0.893,
  26655. bottom: 3.5 / 573.7
  26656. }
  26657. },
  26658. },
  26659. [
  26660. {
  26661. name: "Human Scale",
  26662. height: math.unit(2.1, "meters")
  26663. },
  26664. {
  26665. name: "Wolxi Scale",
  26666. height: math.unit(46.2, "m"),
  26667. default: true
  26668. },
  26669. {
  26670. name: "Boinker of Buildings",
  26671. height: math.unit(10, "km")
  26672. },
  26673. {
  26674. name: "Shagger of Skyscrapers",
  26675. height: math.unit(40, "km")
  26676. },
  26677. {
  26678. name: "Banger of Boroughs",
  26679. height: math.unit(4000, "km")
  26680. },
  26681. {
  26682. name: "Screwer of States",
  26683. height: math.unit(100000, "km")
  26684. },
  26685. {
  26686. name: "Pounder of Planets",
  26687. height: math.unit(2000000, "km")
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26693. {
  26694. front: {
  26695. height: math.unit(6, "feet"),
  26696. weight: math.unit(150, "lb"),
  26697. name: "Front",
  26698. image: {
  26699. source: "./media/characters/aj/front.svg",
  26700. extra: 2039 / 1562,
  26701. bottom: 40 / 2079
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Normal",
  26708. height: math.unit(11 + 6 / 12, "feet"),
  26709. default: true
  26710. },
  26711. {
  26712. name: "Megamacro",
  26713. height: math.unit(60, "megameters")
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26719. {
  26720. side: {
  26721. height: math.unit(31 + 8 / 12, "feet"),
  26722. weight: math.unit(75000, "kg"),
  26723. name: "Side",
  26724. image: {
  26725. source: "./media/characters/koros/side.svg",
  26726. extra: 1442 / 1297,
  26727. bottom: 122.7 / 1562
  26728. }
  26729. },
  26730. dicksKingsCrown: {
  26731. height: math.unit(6, "feet"),
  26732. name: "Dicks (King's Crown)",
  26733. image: {
  26734. source: "./media/characters/koros/dicks-kings-crown.svg"
  26735. }
  26736. },
  26737. dicksTailSet: {
  26738. height: math.unit(3, "feet"),
  26739. name: "Dicks (Tail Set)",
  26740. image: {
  26741. source: "./media/characters/koros/dicks-tail-set.svg"
  26742. }
  26743. },
  26744. dickCumming: {
  26745. height: math.unit(7.98, "feet"),
  26746. name: "Dick (Cumming)",
  26747. image: {
  26748. source: "./media/characters/koros/dick-cumming.svg"
  26749. }
  26750. },
  26751. dicksBack: {
  26752. height: math.unit(5.9, "feet"),
  26753. name: "Dicks (Back)",
  26754. image: {
  26755. source: "./media/characters/koros/dicks-back.svg"
  26756. }
  26757. },
  26758. dicksFront: {
  26759. height: math.unit(3.72, "feet"),
  26760. name: "Dicks (Front)",
  26761. image: {
  26762. source: "./media/characters/koros/dicks-front.svg"
  26763. }
  26764. },
  26765. dicksPeeking: {
  26766. height: math.unit(3.0, "feet"),
  26767. name: "Dicks (Peeking)",
  26768. image: {
  26769. source: "./media/characters/koros/dicks-peeking.svg"
  26770. }
  26771. },
  26772. eye: {
  26773. height: math.unit(1.7, "feet"),
  26774. name: "Eye",
  26775. image: {
  26776. source: "./media/characters/koros/eye.svg"
  26777. }
  26778. },
  26779. headFront: {
  26780. height: math.unit(11.69, "feet"),
  26781. name: "Head (Front)",
  26782. image: {
  26783. source: "./media/characters/koros/head-front.svg"
  26784. }
  26785. },
  26786. headSide: {
  26787. height: math.unit(14, "feet"),
  26788. name: "Head (Side)",
  26789. image: {
  26790. source: "./media/characters/koros/head-side.svg"
  26791. }
  26792. },
  26793. leg: {
  26794. height: math.unit(17, "feet"),
  26795. name: "Leg",
  26796. image: {
  26797. source: "./media/characters/koros/leg.svg"
  26798. }
  26799. },
  26800. mawSide: {
  26801. height: math.unit(12.8, "feet"),
  26802. name: "Maw (Side)",
  26803. image: {
  26804. source: "./media/characters/koros/maw-side.svg"
  26805. }
  26806. },
  26807. mawSpitting: {
  26808. height: math.unit(17, "feet"),
  26809. name: "Maw (Spitting)",
  26810. image: {
  26811. source: "./media/characters/koros/maw-spitting.svg"
  26812. }
  26813. },
  26814. slit: {
  26815. height: math.unit(2.8, "feet"),
  26816. name: "Slit",
  26817. image: {
  26818. source: "./media/characters/koros/slit.svg"
  26819. }
  26820. },
  26821. stomach: {
  26822. height: math.unit(6.8, "feet"),
  26823. preyCapacity: math.unit(20, "people"),
  26824. name: "Stomach",
  26825. image: {
  26826. source: "./media/characters/koros/stomach.svg"
  26827. }
  26828. },
  26829. wingspanBottom: {
  26830. height: math.unit(114, "feet"),
  26831. name: "Wingspan (Bottom)",
  26832. image: {
  26833. source: "./media/characters/koros/wingspan-bottom.svg"
  26834. }
  26835. },
  26836. wingspanTop: {
  26837. height: math.unit(104, "feet"),
  26838. name: "Wingspan (Top)",
  26839. image: {
  26840. source: "./media/characters/koros/wingspan-top.svg"
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Normal",
  26847. height: math.unit(31 + 8 / 12, "feet"),
  26848. default: true
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(18 + 5 / 12, "feet"),
  26857. weight: math.unit(3750, "kg"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/vexx/front.svg",
  26861. extra: 426 / 396,
  26862. bottom: 31.5 / 458
  26863. }
  26864. },
  26865. maw: {
  26866. height: math.unit(6, "feet"),
  26867. name: "Maw",
  26868. image: {
  26869. source: "./media/characters/vexx/maw.svg"
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Normal",
  26876. height: math.unit(18 + 5 / 12, "feet"),
  26877. default: true
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26883. {
  26884. front: {
  26885. height: math.unit(17 + 6 / 12, "feet"),
  26886. weight: math.unit(150, "lb"),
  26887. name: "Front",
  26888. image: {
  26889. source: "./media/characters/baadra/front.svg",
  26890. extra: 1694/1553,
  26891. bottom: 179/1873
  26892. }
  26893. },
  26894. frontAlt: {
  26895. height: math.unit(17 + 6 / 12, "feet"),
  26896. weight: math.unit(150, "lb"),
  26897. name: "Front (Alt)",
  26898. image: {
  26899. source: "./media/characters/baadra/front-alt.svg",
  26900. extra: 3137 / 2890,
  26901. bottom: 168.4 / 3305
  26902. }
  26903. },
  26904. back: {
  26905. height: math.unit(17 + 6 / 12, "feet"),
  26906. weight: math.unit(150, "lb"),
  26907. name: "Back",
  26908. image: {
  26909. source: "./media/characters/baadra/back.svg",
  26910. extra: 3142 / 2890,
  26911. bottom: 220 / 3371
  26912. }
  26913. },
  26914. head: {
  26915. height: math.unit(5.45, "feet"),
  26916. name: "Head",
  26917. image: {
  26918. source: "./media/characters/baadra/head.svg"
  26919. }
  26920. },
  26921. headAngry: {
  26922. height: math.unit(4.95, "feet"),
  26923. name: "Head (Angry)",
  26924. image: {
  26925. source: "./media/characters/baadra/head-angry.svg"
  26926. }
  26927. },
  26928. headOpen: {
  26929. height: math.unit(6, "feet"),
  26930. name: "Head (Open)",
  26931. image: {
  26932. source: "./media/characters/baadra/head-open.svg"
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Normal",
  26939. height: math.unit(17 + 6 / 12, "feet"),
  26940. default: true
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(7 + 3 / 12, "feet"),
  26949. weight: math.unit(180, "lb"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/juri/front.svg",
  26953. extra: 1401 / 1237,
  26954. bottom: 18.5 / 1418
  26955. }
  26956. },
  26957. side: {
  26958. height: math.unit(7 + 3 / 12, "feet"),
  26959. weight: math.unit(180, "lb"),
  26960. name: "Side",
  26961. image: {
  26962. source: "./media/characters/juri/side.svg",
  26963. extra: 1424 / 1242,
  26964. bottom: 18.5 / 1447
  26965. }
  26966. },
  26967. sitting: {
  26968. height: math.unit(6, "feet"),
  26969. weight: math.unit(180, "lb"),
  26970. name: "Sitting",
  26971. image: {
  26972. source: "./media/characters/juri/sitting.svg",
  26973. extra: 1270 / 1143,
  26974. bottom: 100 / 1343
  26975. }
  26976. },
  26977. back: {
  26978. height: math.unit(7 + 3 / 12, "feet"),
  26979. weight: math.unit(180, "lb"),
  26980. name: "Back",
  26981. image: {
  26982. source: "./media/characters/juri/back.svg",
  26983. extra: 1377 / 1240,
  26984. bottom: 23.7 / 1405
  26985. }
  26986. },
  26987. maw: {
  26988. height: math.unit(2.8, "feet"),
  26989. name: "Maw",
  26990. image: {
  26991. source: "./media/characters/juri/maw.svg"
  26992. }
  26993. },
  26994. stomach: {
  26995. height: math.unit(0.89, "feet"),
  26996. preyCapacity: math.unit(4, "liters"),
  26997. name: "Stomach",
  26998. image: {
  26999. source: "./media/characters/juri/stomach.svg"
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Normal",
  27006. height: math.unit(7 + 3 / 12, "feet"),
  27007. default: true
  27008. },
  27009. ]
  27010. ))
  27011. characterMakers.push(() => makeCharacter(
  27012. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27013. {
  27014. fox: {
  27015. height: math.unit(5 + 6 / 12, "feet"),
  27016. weight: math.unit(140, "lb"),
  27017. name: "Fox",
  27018. image: {
  27019. source: "./media/characters/maxene-sita/fox.svg",
  27020. extra: 146 / 138,
  27021. bottom: 2.1 / 148.19
  27022. }
  27023. },
  27024. foxLaying: {
  27025. height: math.unit(1.70, "feet"),
  27026. weight: math.unit(140, "lb"),
  27027. name: "Fox (Laying)",
  27028. image: {
  27029. source: "./media/characters/maxene-sita/fox-laying.svg",
  27030. extra: 910 / 572,
  27031. bottom: 71 / 981
  27032. }
  27033. },
  27034. kitsune: {
  27035. height: math.unit(10, "feet"),
  27036. weight: math.unit(800, "lb"),
  27037. name: "Kitsune",
  27038. image: {
  27039. source: "./media/characters/maxene-sita/kitsune.svg",
  27040. extra: 185 / 176,
  27041. bottom: 4.7 / 189.9
  27042. }
  27043. },
  27044. hellhound: {
  27045. height: math.unit(10, "feet"),
  27046. weight: math.unit(700, "lb"),
  27047. name: "Hellhound",
  27048. image: {
  27049. source: "./media/characters/maxene-sita/hellhound.svg",
  27050. extra: 1600 / 1545,
  27051. bottom: 81 / 1681
  27052. }
  27053. },
  27054. },
  27055. [
  27056. {
  27057. name: "Normal",
  27058. height: math.unit(5 + 6 / 12, "feet"),
  27059. default: true
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27065. {
  27066. front: {
  27067. height: math.unit(3 + 4 / 12, "feet"),
  27068. weight: math.unit(70, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/maia/front.svg",
  27072. extra: 227 / 219.5,
  27073. bottom: 40 / 267
  27074. }
  27075. },
  27076. back: {
  27077. height: math.unit(3 + 4 / 12, "feet"),
  27078. weight: math.unit(70, "lb"),
  27079. name: "Back",
  27080. image: {
  27081. source: "./media/characters/maia/back.svg",
  27082. extra: 237 / 225
  27083. }
  27084. },
  27085. },
  27086. [
  27087. {
  27088. name: "Normal",
  27089. height: math.unit(3 + 4 / 12, "feet"),
  27090. default: true
  27091. },
  27092. ]
  27093. ))
  27094. characterMakers.push(() => makeCharacter(
  27095. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27096. {
  27097. front: {
  27098. height: math.unit(5 + 10 / 12, "feet"),
  27099. weight: math.unit(197, "lb"),
  27100. name: "Front",
  27101. image: {
  27102. source: "./media/characters/jabaro/front.svg",
  27103. extra: 225 / 216,
  27104. bottom: 5.06 / 230
  27105. }
  27106. },
  27107. back: {
  27108. height: math.unit(5 + 10 / 12, "feet"),
  27109. weight: math.unit(197, "lb"),
  27110. name: "Back",
  27111. image: {
  27112. source: "./media/characters/jabaro/back.svg",
  27113. extra: 225 / 219,
  27114. bottom: 1.9 / 227
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(5 + 10 / 12, "feet"),
  27122. default: true
  27123. },
  27124. ]
  27125. ))
  27126. characterMakers.push(() => makeCharacter(
  27127. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27128. {
  27129. front: {
  27130. height: math.unit(5 + 8 / 12, "feet"),
  27131. weight: math.unit(139, "lb"),
  27132. name: "Front",
  27133. image: {
  27134. source: "./media/characters/risa/front.svg",
  27135. extra: 270 / 260,
  27136. bottom: 11.2 / 282
  27137. }
  27138. },
  27139. back: {
  27140. height: math.unit(5 + 8 / 12, "feet"),
  27141. weight: math.unit(139, "lb"),
  27142. name: "Back",
  27143. image: {
  27144. source: "./media/characters/risa/back.svg",
  27145. extra: 264 / 255,
  27146. bottom: 4 / 268
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(5 + 8 / 12, "feet"),
  27154. default: true
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(2 + 11 / 12, "feet"),
  27163. weight: math.unit(30, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/weatley/front.svg",
  27167. bottom: 10.7 / 414,
  27168. extra: 403.5 / 362
  27169. }
  27170. },
  27171. back: {
  27172. height: math.unit(2 + 11 / 12, "feet"),
  27173. weight: math.unit(30, "lb"),
  27174. name: "Back",
  27175. image: {
  27176. source: "./media/characters/weatley/back.svg",
  27177. bottom: 10.7 / 414,
  27178. extra: 403.5 / 362
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(2 + 11 / 12, "feet"),
  27186. default: true
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(5 + 2 / 12, "feet"),
  27195. weight: math.unit(50, "kg"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/mercury-crescent/front.svg",
  27199. extra: 1088 / 1033,
  27200. bottom: 18.9 / 1109
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(5 + 2 / 12, "feet"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(2, "feet"),
  27217. weight: math.unit(15, "kg"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/diamond-jones/front.svg",
  27221. extra: 727/723,
  27222. bottom: 46/773
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(2, "feet"),
  27230. default: true
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(3, "feet"),
  27239. weight: math.unit(30, "kg"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/sweet-bit/front.svg",
  27243. extra: 675 / 567,
  27244. bottom: 27.7 / 703
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Normal",
  27251. height: math.unit(3, "feet"),
  27252. default: true
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27258. {
  27259. side: {
  27260. height: math.unit(9.178, "feet"),
  27261. weight: math.unit(500, "lb"),
  27262. name: "Side",
  27263. image: {
  27264. source: "./media/characters/umbrazen/side.svg",
  27265. extra: 1730 / 1473,
  27266. bottom: 34.6 / 1765
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(9.178, "feet"),
  27274. default: true
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(10, "feet"),
  27283. weight: math.unit(750, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/arlist/front.svg",
  27287. extra: 961 / 778,
  27288. bottom: 6.2 / 986
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(10, "feet"),
  27296. default: true
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(5 + 1 / 12, "feet"),
  27305. weight: math.unit(110, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/aradel/front.svg",
  27309. extra: 324 / 303,
  27310. bottom: 3.6 / 329.4
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(5 + 1 / 12, "feet"),
  27318. default: true
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27324. {
  27325. dressed: {
  27326. height: math.unit(3 + 8 / 12, "feet"),
  27327. weight: math.unit(50, "lb"),
  27328. name: "Dressed",
  27329. image: {
  27330. source: "./media/characters/serryn/dressed.svg",
  27331. extra: 1792 / 1656,
  27332. bottom: 43.5 / 1840
  27333. }
  27334. },
  27335. nude: {
  27336. height: math.unit(3 + 8 / 12, "feet"),
  27337. weight: math.unit(50, "lb"),
  27338. name: "Nude",
  27339. image: {
  27340. source: "./media/characters/serryn/nude.svg",
  27341. extra: 1792 / 1656,
  27342. bottom: 43.5 / 1840
  27343. }
  27344. },
  27345. },
  27346. [
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(3 + 8 / 12, "feet"),
  27350. default: true
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27356. {
  27357. front: {
  27358. height: math.unit(7 + 10 / 12, "feet"),
  27359. weight: math.unit(255, "lb"),
  27360. name: "Front",
  27361. image: {
  27362. source: "./media/characters/xavier-thyme/front.svg",
  27363. extra: 3733 / 3642,
  27364. bottom: 131 / 3869
  27365. }
  27366. },
  27367. frontRaven: {
  27368. height: math.unit(7 + 10 / 12, "feet"),
  27369. weight: math.unit(255, "lb"),
  27370. name: "Front (Raven)",
  27371. image: {
  27372. source: "./media/characters/xavier-thyme/front-raven.svg",
  27373. extra: 4385 / 3642,
  27374. bottom: 131 / 4517
  27375. }
  27376. },
  27377. },
  27378. [
  27379. {
  27380. name: "Normal",
  27381. height: math.unit(7 + 10 / 12, "feet"),
  27382. default: true
  27383. },
  27384. ]
  27385. ))
  27386. characterMakers.push(() => makeCharacter(
  27387. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27388. {
  27389. front: {
  27390. height: math.unit(1.6, "m"),
  27391. weight: math.unit(50, "kg"),
  27392. name: "Front",
  27393. image: {
  27394. source: "./media/characters/kiki/front.svg",
  27395. extra: 4682 / 3610,
  27396. bottom: 115 / 4777
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(1.6, "meters"),
  27404. default: true
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27410. {
  27411. front: {
  27412. height: math.unit(50, "m"),
  27413. weight: math.unit(500, "tonnes"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/ryoko/front.svg",
  27417. extra: 4632 / 3926,
  27418. bottom: 193 / 4823
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(50, "meters"),
  27426. default: true
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27432. {
  27433. front: {
  27434. height: math.unit(30, "m"),
  27435. weight: math.unit(22, "tonnes"),
  27436. name: "Front",
  27437. image: {
  27438. source: "./media/characters/elio/front.svg",
  27439. extra: 4582 / 3720,
  27440. bottom: 236 / 4828
  27441. }
  27442. },
  27443. },
  27444. [
  27445. {
  27446. name: "Normal",
  27447. height: math.unit(30, "meters"),
  27448. default: true
  27449. },
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27454. {
  27455. front: {
  27456. height: math.unit(6 + 3 / 12, "feet"),
  27457. weight: math.unit(120, "lb"),
  27458. name: "Front",
  27459. image: {
  27460. source: "./media/characters/azura/front.svg",
  27461. extra: 1149 / 1135,
  27462. bottom: 45 / 1194
  27463. }
  27464. },
  27465. frontClothed: {
  27466. height: math.unit(6 + 3 / 12, "feet"),
  27467. weight: math.unit(120, "lb"),
  27468. name: "Front (Clothed)",
  27469. image: {
  27470. source: "./media/characters/azura/front-clothed.svg",
  27471. extra: 1149 / 1135,
  27472. bottom: 45 / 1194
  27473. }
  27474. },
  27475. },
  27476. [
  27477. {
  27478. name: "Normal",
  27479. height: math.unit(6 + 3 / 12, "feet"),
  27480. default: true
  27481. },
  27482. {
  27483. name: "Macro",
  27484. height: math.unit(20 + 6 / 12, "feet")
  27485. },
  27486. {
  27487. name: "Megamacro",
  27488. height: math.unit(12, "miles")
  27489. },
  27490. {
  27491. name: "Gigamacro",
  27492. height: math.unit(10000, "miles")
  27493. },
  27494. {
  27495. name: "Teramacro",
  27496. height: math.unit(900000, "miles")
  27497. },
  27498. ]
  27499. ))
  27500. characterMakers.push(() => makeCharacter(
  27501. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27502. {
  27503. front: {
  27504. height: math.unit(12, "feet"),
  27505. weight: math.unit(1, "ton"),
  27506. capacity: math.unit(660000, "gallons"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/zeus/front.svg",
  27510. extra: 5005 / 4717,
  27511. bottom: 363 / 5388
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Normal",
  27518. height: math.unit(12, "feet")
  27519. },
  27520. {
  27521. name: "Preferred Size",
  27522. height: math.unit(0.5, "miles"),
  27523. default: true
  27524. },
  27525. {
  27526. name: "Giga Horse",
  27527. height: math.unit(300, "miles")
  27528. },
  27529. {
  27530. name: "Riding Planets",
  27531. height: math.unit(30, "megameters")
  27532. },
  27533. {
  27534. name: "Cosmic Giant",
  27535. height: math.unit(3, "zettameters")
  27536. },
  27537. {
  27538. name: "Breeding God",
  27539. height: math.unit(9.92e22, "yottameters")
  27540. },
  27541. ]
  27542. ))
  27543. characterMakers.push(() => makeCharacter(
  27544. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27545. {
  27546. side: {
  27547. height: math.unit(9, "feet"),
  27548. weight: math.unit(1500, "kg"),
  27549. name: "Side",
  27550. image: {
  27551. source: "./media/characters/fang/side.svg",
  27552. extra: 924 / 866,
  27553. bottom: 47.5 / 972.3
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Normal",
  27560. height: math.unit(9, "feet"),
  27561. default: true
  27562. },
  27563. {
  27564. name: "Macro",
  27565. height: math.unit(75 + 6 / 12, "feet")
  27566. },
  27567. {
  27568. name: "Teramacro",
  27569. height: math.unit(50000, "miles")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27575. {
  27576. front: {
  27577. height: math.unit(10, "feet"),
  27578. weight: math.unit(2, "tons"),
  27579. name: "Front",
  27580. image: {
  27581. source: "./media/characters/rekhit/front.svg",
  27582. extra: 2796 / 2590,
  27583. bottom: 225 / 3022
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Normal",
  27590. height: math.unit(10, "feet"),
  27591. default: true
  27592. },
  27593. {
  27594. name: "Macro",
  27595. height: math.unit(500, "feet")
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(7 + 6.451 / 12, "feet"),
  27604. weight: math.unit(310, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/dahlia-verrick/front.svg",
  27608. extra: 1488 / 1365,
  27609. bottom: 6.2 / 1495
  27610. }
  27611. },
  27612. back: {
  27613. height: math.unit(7 + 6.451 / 12, "feet"),
  27614. weight: math.unit(310, "lb"),
  27615. name: "Back",
  27616. image: {
  27617. source: "./media/characters/dahlia-verrick/back.svg",
  27618. extra: 1472 / 1351,
  27619. bottom: 5.28 / 1477
  27620. }
  27621. },
  27622. frontBusiness: {
  27623. height: math.unit(7 + 6.451 / 12, "feet"),
  27624. weight: math.unit(200, "lb"),
  27625. name: "Front (Business)",
  27626. image: {
  27627. source: "./media/characters/dahlia-verrick/front-business.svg",
  27628. extra: 1478 / 1381,
  27629. bottom: 5.5 / 1484
  27630. }
  27631. },
  27632. frontCasual: {
  27633. height: math.unit(7 + 6.451 / 12, "feet"),
  27634. weight: math.unit(200, "lb"),
  27635. name: "Front (Casual)",
  27636. image: {
  27637. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27638. extra: 1478 / 1381,
  27639. bottom: 5.5 / 1484
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Travel-Sized",
  27646. height: math.unit(7.45, "inches")
  27647. },
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(7 + 6.451 / 12, "feet"),
  27651. default: true
  27652. },
  27653. {
  27654. name: "Hitting the Town",
  27655. height: math.unit(37 + 8 / 12, "feet")
  27656. },
  27657. {
  27658. name: "Stomp in the Suburbs",
  27659. height: math.unit(964 + 9.728 / 12, "feet")
  27660. },
  27661. {
  27662. name: "Sit on the City",
  27663. height: math.unit(61747 + 10.592 / 12, "feet")
  27664. },
  27665. {
  27666. name: "Glomp the Globe",
  27667. height: math.unit(252919327 + 4.832 / 12, "feet")
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27673. {
  27674. front: {
  27675. height: math.unit(6 + 4 / 12, "feet"),
  27676. weight: math.unit(320, "lb"),
  27677. name: "Front",
  27678. image: {
  27679. source: "./media/characters/balina-mahigan/front.svg",
  27680. extra: 447 / 428,
  27681. bottom: 18 / 466
  27682. }
  27683. },
  27684. back: {
  27685. height: math.unit(6 + 4 / 12, "feet"),
  27686. weight: math.unit(320, "lb"),
  27687. name: "Back",
  27688. image: {
  27689. source: "./media/characters/balina-mahigan/back.svg",
  27690. extra: 445 / 428,
  27691. bottom: 4.07 / 448
  27692. }
  27693. },
  27694. arm: {
  27695. height: math.unit(1.88, "feet"),
  27696. name: "Arm",
  27697. image: {
  27698. source: "./media/characters/balina-mahigan/arm.svg"
  27699. }
  27700. },
  27701. backPort: {
  27702. height: math.unit(0.685, "feet"),
  27703. name: "Back Port",
  27704. image: {
  27705. source: "./media/characters/balina-mahigan/back-port.svg"
  27706. }
  27707. },
  27708. hoofpaw: {
  27709. height: math.unit(1.41, "feet"),
  27710. name: "Hoofpaw",
  27711. image: {
  27712. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27713. }
  27714. },
  27715. leftHandBack: {
  27716. height: math.unit(0.938, "feet"),
  27717. name: "Left Hand (Back)",
  27718. image: {
  27719. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27720. }
  27721. },
  27722. leftHandFront: {
  27723. height: math.unit(0.938, "feet"),
  27724. name: "Left Hand (Front)",
  27725. image: {
  27726. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27727. }
  27728. },
  27729. rightHandBack: {
  27730. height: math.unit(0.95, "feet"),
  27731. name: "Right Hand (Back)",
  27732. image: {
  27733. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27734. }
  27735. },
  27736. rightHandFront: {
  27737. height: math.unit(0.95, "feet"),
  27738. name: "Right Hand (Front)",
  27739. image: {
  27740. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27741. }
  27742. },
  27743. },
  27744. [
  27745. {
  27746. name: "Normal",
  27747. height: math.unit(6 + 4 / 12, "feet"),
  27748. default: true
  27749. },
  27750. ]
  27751. ))
  27752. characterMakers.push(() => makeCharacter(
  27753. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27754. {
  27755. front: {
  27756. height: math.unit(6, "feet"),
  27757. weight: math.unit(320, "lb"),
  27758. name: "Front",
  27759. image: {
  27760. source: "./media/characters/balina-mejeri/front.svg",
  27761. extra: 517 / 488,
  27762. bottom: 44.2 / 561
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(6 + 4 / 12, "feet")
  27770. },
  27771. {
  27772. name: "Business",
  27773. height: math.unit(155, "feet"),
  27774. default: true
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27780. {
  27781. kneeling: {
  27782. height: math.unit(6 + 4 / 12, "feet"),
  27783. weight: math.unit(300 * 20, "lb"),
  27784. name: "Kneeling",
  27785. image: {
  27786. source: "./media/characters/balbarian/kneeling.svg",
  27787. extra: 922 / 862,
  27788. bottom: 42.4 / 965
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Normal",
  27795. height: math.unit(6 + 4 / 12, "feet")
  27796. },
  27797. {
  27798. name: "Treasured",
  27799. height: math.unit(18 + 9 / 12, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(900, "feet")
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(6 + 4 / 12, "feet"),
  27813. weight: math.unit(325, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/balina-amarini/front.svg",
  27817. extra: 415 / 403,
  27818. bottom: 19 / 433.4
  27819. }
  27820. },
  27821. back: {
  27822. height: math.unit(6 + 4 / 12, "feet"),
  27823. weight: math.unit(325, "lb"),
  27824. name: "Back",
  27825. image: {
  27826. source: "./media/characters/balina-amarini/back.svg",
  27827. extra: 415 / 403,
  27828. bottom: 13.5 / 432
  27829. }
  27830. },
  27831. overdrive: {
  27832. height: math.unit(6 + 4 / 12, "feet"),
  27833. weight: math.unit(400, "lb"),
  27834. name: "Overdrive",
  27835. image: {
  27836. source: "./media/characters/balina-amarini/overdrive.svg",
  27837. extra: 269 / 259,
  27838. bottom: 12 / 282
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Boom",
  27845. height: math.unit(9 + 10 / 12, "feet"),
  27846. default: true
  27847. },
  27848. {
  27849. name: "Macro",
  27850. height: math.unit(280, "feet")
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27856. {
  27857. goddess: {
  27858. height: math.unit(600, "feet"),
  27859. weight: math.unit(2000000, "tons"),
  27860. name: "Goddess",
  27861. image: {
  27862. source: "./media/characters/lady-kubwa/goddess.svg",
  27863. extra: 1240.5 / 1223,
  27864. bottom: 22 / 1263
  27865. }
  27866. },
  27867. goddesser: {
  27868. height: math.unit(900, "feet"),
  27869. weight: math.unit(20000000, "lb"),
  27870. name: "Goddess-er",
  27871. image: {
  27872. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27873. extra: 899 / 888,
  27874. bottom: 12.6 / 912
  27875. }
  27876. },
  27877. },
  27878. [
  27879. {
  27880. name: "Macro",
  27881. height: math.unit(600, "feet"),
  27882. default: true
  27883. },
  27884. {
  27885. name: "Megamacro",
  27886. height: math.unit(250, "miles")
  27887. },
  27888. ]
  27889. ))
  27890. characterMakers.push(() => makeCharacter(
  27891. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27892. {
  27893. front: {
  27894. height: math.unit(7 + 7 / 12, "feet"),
  27895. weight: math.unit(250, "lb"),
  27896. name: "Front",
  27897. image: {
  27898. source: "./media/characters/tala-grovehorn/front.svg",
  27899. extra: 2636 / 2525,
  27900. bottom: 147 / 2781
  27901. }
  27902. },
  27903. back: {
  27904. height: math.unit(7 + 7 / 12, "feet"),
  27905. weight: math.unit(250, "lb"),
  27906. name: "Back",
  27907. image: {
  27908. source: "./media/characters/tala-grovehorn/back.svg",
  27909. extra: 2635 / 2539,
  27910. bottom: 100 / 2732.8
  27911. }
  27912. },
  27913. mouth: {
  27914. height: math.unit(1.15, "feet"),
  27915. name: "Mouth",
  27916. image: {
  27917. source: "./media/characters/tala-grovehorn/mouth.svg"
  27918. }
  27919. },
  27920. dick: {
  27921. height: math.unit(2.36, "feet"),
  27922. name: "Dick",
  27923. image: {
  27924. source: "./media/characters/tala-grovehorn/dick.svg"
  27925. }
  27926. },
  27927. slit: {
  27928. height: math.unit(0.61, "feet"),
  27929. name: "Slit",
  27930. image: {
  27931. source: "./media/characters/tala-grovehorn/slit.svg"
  27932. }
  27933. },
  27934. },
  27935. [
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(7 + 7 / 12, "feet"),
  27943. weight: math.unit(225, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/epona/front.svg",
  27947. extra: 2445 / 2290,
  27948. bottom: 251 / 2696
  27949. }
  27950. },
  27951. back: {
  27952. height: math.unit(7 + 7 / 12, "feet"),
  27953. weight: math.unit(225, "lb"),
  27954. name: "Back",
  27955. image: {
  27956. source: "./media/characters/epona/back.svg",
  27957. extra: 2546 / 2408,
  27958. bottom: 44 / 2589
  27959. }
  27960. },
  27961. genitals: {
  27962. height: math.unit(1.5, "feet"),
  27963. name: "Genitals",
  27964. image: {
  27965. source: "./media/characters/epona/genitals.svg"
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Normal",
  27972. height: math.unit(7 + 7 / 12, "feet"),
  27973. default: true
  27974. },
  27975. ]
  27976. ))
  27977. characterMakers.push(() => makeCharacter(
  27978. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27979. {
  27980. front: {
  27981. height: math.unit(7, "feet"),
  27982. weight: math.unit(518, "lb"),
  27983. name: "Front",
  27984. image: {
  27985. source: "./media/characters/avia-bloodbourn/front.svg",
  27986. extra: 1466 / 1350,
  27987. bottom: 65 / 1527
  27988. }
  27989. },
  27990. },
  27991. [
  27992. ]
  27993. ))
  27994. characterMakers.push(() => makeCharacter(
  27995. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27996. {
  27997. front: {
  27998. height: math.unit(9.35, "feet"),
  27999. weight: math.unit(600, "lb"),
  28000. name: "Front",
  28001. image: {
  28002. source: "./media/characters/amera/front.svg",
  28003. extra: 891 / 818,
  28004. bottom: 30 / 922.7
  28005. }
  28006. },
  28007. back: {
  28008. height: math.unit(9.35, "feet"),
  28009. weight: math.unit(600, "lb"),
  28010. name: "Back",
  28011. image: {
  28012. source: "./media/characters/amera/back.svg",
  28013. extra: 876 / 824,
  28014. bottom: 6.8 / 884
  28015. }
  28016. },
  28017. dick: {
  28018. height: math.unit(2.14, "feet"),
  28019. name: "Dick",
  28020. image: {
  28021. source: "./media/characters/amera/dick.svg"
  28022. }
  28023. },
  28024. },
  28025. [
  28026. {
  28027. name: "Normal",
  28028. height: math.unit(9.35, "feet"),
  28029. default: true
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28035. {
  28036. kneeling: {
  28037. height: math.unit(3 + 4 / 12, "feet"),
  28038. weight: math.unit(90, "lb"),
  28039. name: "Kneeling",
  28040. image: {
  28041. source: "./media/characters/rosewen/kneeling.svg",
  28042. extra: 1835 / 1571,
  28043. bottom: 27.7 / 1862
  28044. }
  28045. },
  28046. },
  28047. [
  28048. {
  28049. name: "Normal",
  28050. height: math.unit(3 + 4 / 12, "feet"),
  28051. default: true
  28052. },
  28053. ]
  28054. ))
  28055. characterMakers.push(() => makeCharacter(
  28056. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28057. {
  28058. front: {
  28059. height: math.unit(5 + 10 / 12, "feet"),
  28060. weight: math.unit(200, "lb"),
  28061. name: "Front",
  28062. image: {
  28063. source: "./media/characters/sabah/front.svg",
  28064. extra: 849 / 763,
  28065. bottom: 33.9 / 881
  28066. }
  28067. },
  28068. },
  28069. [
  28070. {
  28071. name: "Normal",
  28072. height: math.unit(5 + 10 / 12, "feet"),
  28073. default: true
  28074. },
  28075. ]
  28076. ))
  28077. characterMakers.push(() => makeCharacter(
  28078. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28079. {
  28080. front: {
  28081. height: math.unit(3 + 5 / 12, "feet"),
  28082. weight: math.unit(40, "kg"),
  28083. name: "Front",
  28084. image: {
  28085. source: "./media/characters/purple-flame/front.svg",
  28086. extra: 1577 / 1412,
  28087. bottom: 97 / 1694
  28088. }
  28089. },
  28090. frontDressed: {
  28091. height: math.unit(3 + 5 / 12, "feet"),
  28092. weight: math.unit(40, "kg"),
  28093. name: "Front (Dressed)",
  28094. image: {
  28095. source: "./media/characters/purple-flame/front-dressed.svg",
  28096. extra: 1577 / 1412,
  28097. bottom: 97 / 1694
  28098. }
  28099. },
  28100. headphones: {
  28101. height: math.unit(0.85, "feet"),
  28102. name: "Headphones",
  28103. image: {
  28104. source: "./media/characters/purple-flame/headphones.svg"
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Really Small",
  28111. height: math.unit(5, "cm")
  28112. },
  28113. {
  28114. name: "Micro",
  28115. height: math.unit(1 + 5 / 12, "feet")
  28116. },
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(3 + 5 / 12, "feet"),
  28120. default: true
  28121. },
  28122. {
  28123. name: "Minimacro",
  28124. height: math.unit(125, "feet")
  28125. },
  28126. {
  28127. name: "Macro",
  28128. height: math.unit(0.5, "miles")
  28129. },
  28130. {
  28131. name: "Megamacro",
  28132. height: math.unit(50, "miles")
  28133. },
  28134. {
  28135. name: "Gigantic",
  28136. height: math.unit(750, "miles")
  28137. },
  28138. {
  28139. name: "Planetary",
  28140. height: math.unit(15000, "miles")
  28141. },
  28142. ]
  28143. ))
  28144. characterMakers.push(() => makeCharacter(
  28145. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28146. {
  28147. front: {
  28148. height: math.unit(14, "feet"),
  28149. weight: math.unit(959, "lb"),
  28150. name: "Front",
  28151. image: {
  28152. source: "./media/characters/arsenal/front.svg",
  28153. extra: 2357 / 2157,
  28154. bottom: 93 / 2458
  28155. }
  28156. },
  28157. },
  28158. [
  28159. {
  28160. name: "Normal",
  28161. height: math.unit(14, "feet"),
  28162. default: true
  28163. },
  28164. ]
  28165. ))
  28166. characterMakers.push(() => makeCharacter(
  28167. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28168. {
  28169. front: {
  28170. height: math.unit(6, "feet"),
  28171. weight: math.unit(150, "lb"),
  28172. name: "Front",
  28173. image: {
  28174. source: "./media/characters/adira/front.svg",
  28175. extra: 1078 / 1029,
  28176. bottom: 87 / 1166
  28177. }
  28178. },
  28179. },
  28180. [
  28181. {
  28182. name: "Micro",
  28183. height: math.unit(4, "inches"),
  28184. default: true
  28185. },
  28186. {
  28187. name: "Macro",
  28188. height: math.unit(50, "feet")
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28194. {
  28195. front: {
  28196. height: math.unit(16, "feet"),
  28197. weight: math.unit(1000, "lb"),
  28198. name: "Front",
  28199. image: {
  28200. source: "./media/characters/grim/front.svg",
  28201. extra: 622 / 614,
  28202. bottom: 18.1 / 642
  28203. }
  28204. },
  28205. back: {
  28206. height: math.unit(16, "feet"),
  28207. weight: math.unit(1000, "lb"),
  28208. name: "Back",
  28209. image: {
  28210. source: "./media/characters/grim/back.svg",
  28211. extra: 610.6 / 602,
  28212. bottom: 40.8 / 652
  28213. }
  28214. },
  28215. hunched: {
  28216. height: math.unit(9.75, "feet"),
  28217. weight: math.unit(1000, "lb"),
  28218. name: "Hunched",
  28219. image: {
  28220. source: "./media/characters/grim/hunched.svg",
  28221. extra: 304 / 297,
  28222. bottom: 35.4 / 394
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(16, "feet"),
  28230. default: true
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28236. {
  28237. front: {
  28238. height: math.unit(2.3, "meters"),
  28239. weight: math.unit(300, "lb"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/sinja/front-sfw.svg",
  28243. extra: 1393 / 1294,
  28244. bottom: 70 / 1463
  28245. }
  28246. },
  28247. frontNsfw: {
  28248. height: math.unit(2.3, "meters"),
  28249. weight: math.unit(300, "lb"),
  28250. name: "Front (NSFW)",
  28251. image: {
  28252. source: "./media/characters/sinja/front-nsfw.svg",
  28253. extra: 1393 / 1294,
  28254. bottom: 70 / 1463
  28255. }
  28256. },
  28257. back: {
  28258. height: math.unit(2.3, "meters"),
  28259. weight: math.unit(300, "lb"),
  28260. name: "Back",
  28261. image: {
  28262. source: "./media/characters/sinja/back.svg",
  28263. extra: 1393 / 1294,
  28264. bottom: 70 / 1463
  28265. }
  28266. },
  28267. head: {
  28268. height: math.unit(1.771, "feet"),
  28269. name: "Head",
  28270. image: {
  28271. source: "./media/characters/sinja/head.svg"
  28272. }
  28273. },
  28274. slit: {
  28275. height: math.unit(0.8, "feet"),
  28276. name: "Slit",
  28277. image: {
  28278. source: "./media/characters/sinja/slit.svg"
  28279. }
  28280. },
  28281. },
  28282. [
  28283. {
  28284. name: "Normal",
  28285. height: math.unit(2.3, "meters")
  28286. },
  28287. {
  28288. name: "Macro",
  28289. height: math.unit(91, "meters"),
  28290. default: true
  28291. },
  28292. {
  28293. name: "Megamacro",
  28294. height: math.unit(91440, "meters")
  28295. },
  28296. {
  28297. name: "Gigamacro",
  28298. height: math.unit(60960000, "meters")
  28299. },
  28300. {
  28301. name: "Teramacro",
  28302. height: math.unit(9144000000, "meters")
  28303. },
  28304. ]
  28305. ))
  28306. characterMakers.push(() => makeCharacter(
  28307. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28308. {
  28309. front: {
  28310. height: math.unit(1.7, "meters"),
  28311. weight: math.unit(130, "lb"),
  28312. name: "Front",
  28313. image: {
  28314. source: "./media/characters/kyu/front.svg",
  28315. extra: 415 / 395,
  28316. bottom: 5 / 420
  28317. }
  28318. },
  28319. head: {
  28320. height: math.unit(1.75, "feet"),
  28321. name: "Head",
  28322. image: {
  28323. source: "./media/characters/kyu/head.svg"
  28324. }
  28325. },
  28326. foot: {
  28327. height: math.unit(0.81, "feet"),
  28328. name: "Foot",
  28329. image: {
  28330. source: "./media/characters/kyu/foot.svg"
  28331. }
  28332. },
  28333. },
  28334. [
  28335. {
  28336. name: "Normal",
  28337. height: math.unit(1.7, "meters")
  28338. },
  28339. {
  28340. name: "Macro",
  28341. height: math.unit(131, "feet"),
  28342. default: true
  28343. },
  28344. {
  28345. name: "Megamacro",
  28346. height: math.unit(91440, "meters")
  28347. },
  28348. {
  28349. name: "Gigamacro",
  28350. height: math.unit(60960000, "meters")
  28351. },
  28352. {
  28353. name: "Teramacro",
  28354. height: math.unit(9144000000, "meters")
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28360. {
  28361. front: {
  28362. height: math.unit(7 + 1 / 12, "feet"),
  28363. weight: math.unit(250, "lb"),
  28364. name: "Front",
  28365. image: {
  28366. source: "./media/characters/joey/front.svg",
  28367. extra: 1791 / 1537,
  28368. bottom: 28 / 1816
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Micro",
  28375. height: math.unit(3, "inches")
  28376. },
  28377. {
  28378. name: "Normal",
  28379. height: math.unit(7 + 1 / 12, "feet"),
  28380. default: true
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(165, "cm"),
  28389. weight: math.unit(140, "lb"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/sam-evans/front.svg",
  28393. extra: 3417 / 3230,
  28394. bottom: 41.3 / 3417
  28395. }
  28396. },
  28397. frontSixTails: {
  28398. height: math.unit(165, "cm"),
  28399. weight: math.unit(140, "lb"),
  28400. name: "Front-six-tails",
  28401. image: {
  28402. source: "./media/characters/sam-evans/front-six-tails.svg",
  28403. extra: 3417 / 3230,
  28404. bottom: 41.3 / 3417
  28405. }
  28406. },
  28407. back: {
  28408. height: math.unit(165, "cm"),
  28409. weight: math.unit(140, "lb"),
  28410. name: "Back",
  28411. image: {
  28412. source: "./media/characters/sam-evans/back.svg",
  28413. extra: 3227 / 3032,
  28414. bottom: 6.8 / 3234
  28415. }
  28416. },
  28417. face: {
  28418. height: math.unit(0.68, "feet"),
  28419. name: "Face",
  28420. image: {
  28421. source: "./media/characters/sam-evans/face.svg"
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(165, "cm"),
  28429. default: true
  28430. },
  28431. {
  28432. name: "Macro",
  28433. height: math.unit(100, "meters")
  28434. },
  28435. {
  28436. name: "Macro+",
  28437. height: math.unit(800, "meters")
  28438. },
  28439. {
  28440. name: "Macro++",
  28441. height: math.unit(3, "km")
  28442. },
  28443. {
  28444. name: "Macro+++",
  28445. height: math.unit(30, "km")
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(10, "feet"),
  28454. weight: math.unit(750, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/juliet-a/front.svg",
  28458. extra: 1766 / 1720,
  28459. bottom: 43 / 1809
  28460. }
  28461. },
  28462. back: {
  28463. height: math.unit(10, "feet"),
  28464. weight: math.unit(750, "lb"),
  28465. name: "Back",
  28466. image: {
  28467. source: "./media/characters/juliet-a/back.svg",
  28468. extra: 1781 / 1734,
  28469. bottom: 35 / 1810,
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Normal",
  28476. height: math.unit(10, "feet"),
  28477. default: true
  28478. },
  28479. {
  28480. name: "Dragon Form",
  28481. height: math.unit(250, "feet")
  28482. },
  28483. {
  28484. name: "Macro",
  28485. height: math.unit(1000, "feet")
  28486. },
  28487. {
  28488. name: "Megamacro",
  28489. height: math.unit(10000, "feet")
  28490. }
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28495. {
  28496. regular: {
  28497. height: math.unit(7 + 3 / 12, "feet"),
  28498. weight: math.unit(260, "lb"),
  28499. name: "Regular",
  28500. image: {
  28501. source: "./media/characters/wild/regular.svg",
  28502. extra: 97.45 / 92,
  28503. bottom: 6.8 / 104.3
  28504. }
  28505. },
  28506. biggums: {
  28507. height: math.unit(8 + 6 / 12, "feet"),
  28508. weight: math.unit(425, "lb"),
  28509. name: "Biggums",
  28510. image: {
  28511. source: "./media/characters/wild/biggums.svg",
  28512. extra: 97.45 / 92,
  28513. bottom: 7.5 / 132.34
  28514. }
  28515. },
  28516. mawRegular: {
  28517. height: math.unit(1.24, "feet"),
  28518. name: "Maw (Regular)",
  28519. image: {
  28520. source: "./media/characters/wild/maw.svg"
  28521. }
  28522. },
  28523. mawBiggums: {
  28524. height: math.unit(1.47, "feet"),
  28525. name: "Maw (Biggums)",
  28526. image: {
  28527. source: "./media/characters/wild/maw.svg"
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(7 + 3 / 12, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28541. {
  28542. front: {
  28543. height: math.unit(2.5, "meters"),
  28544. weight: math.unit(200, "kg"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/vidar/front.svg",
  28548. extra: 2994 / 2795,
  28549. bottom: 56 / 3061
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(2.5, "meters"),
  28554. weight: math.unit(200, "kg"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/vidar/back.svg",
  28558. extra: 3131 / 2928,
  28559. bottom: 13.5 / 3141.5
  28560. }
  28561. },
  28562. feral: {
  28563. height: math.unit(2.5, "meters"),
  28564. weight: math.unit(2000, "kg"),
  28565. name: "Feral",
  28566. image: {
  28567. source: "./media/characters/vidar/feral.svg",
  28568. extra: 2790 / 1765,
  28569. bottom: 6 / 2796
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(2.5, "meters"),
  28577. default: true
  28578. },
  28579. {
  28580. name: "Macro",
  28581. height: math.unit(100, "meters")
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(5 + 9 / 12, "feet"),
  28590. weight: math.unit(120, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/ash/front.svg",
  28594. extra: 2189 / 1961,
  28595. bottom: 5.2 / 2194
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(5 + 9 / 12, "feet"),
  28603. default: true
  28604. },
  28605. ]
  28606. ))
  28607. characterMakers.push(() => makeCharacter(
  28608. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28609. {
  28610. front: {
  28611. height: math.unit(9, "feet"),
  28612. weight: math.unit(10000, "lb"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/gygabite/front.svg",
  28616. bottom: 31.7 / 537.8,
  28617. extra: 505 / 370
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Normal",
  28624. height: math.unit(9, "feet"),
  28625. default: true
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(12, "feet"),
  28634. weight: math.unit(4000, "lb"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/p0tat0/front.svg",
  28638. extra: 1065 / 921,
  28639. bottom: 55.7 / 1121.25
  28640. }
  28641. },
  28642. },
  28643. [
  28644. {
  28645. name: "Normal",
  28646. height: math.unit(12, "feet"),
  28647. default: true
  28648. },
  28649. ]
  28650. ))
  28651. characterMakers.push(() => makeCharacter(
  28652. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28653. {
  28654. side: {
  28655. height: math.unit(6.5, "feet"),
  28656. weight: math.unit(800, "lb"),
  28657. name: "Side",
  28658. image: {
  28659. source: "./media/characters/dusk/side.svg",
  28660. extra: 615 / 373,
  28661. bottom: 53 / 664
  28662. }
  28663. },
  28664. sitting: {
  28665. height: math.unit(7, "feet"),
  28666. weight: math.unit(800, "lb"),
  28667. name: "Sitting",
  28668. image: {
  28669. source: "./media/characters/dusk/sitting.svg",
  28670. extra: 753 / 425,
  28671. bottom: 33 / 774
  28672. }
  28673. },
  28674. head: {
  28675. height: math.unit(6.1, "feet"),
  28676. name: "Head",
  28677. image: {
  28678. source: "./media/characters/dusk/head.svg"
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Normal",
  28685. height: math.unit(7, "feet"),
  28686. default: true
  28687. },
  28688. ]
  28689. ))
  28690. characterMakers.push(() => makeCharacter(
  28691. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28692. {
  28693. front: {
  28694. height: math.unit(15, "feet"),
  28695. weight: math.unit(7000, "lb"),
  28696. name: "Front",
  28697. image: {
  28698. source: "./media/characters/jay-direwolf/front.svg",
  28699. extra: 1810 / 1732,
  28700. bottom: 66 / 1892
  28701. }
  28702. },
  28703. },
  28704. [
  28705. {
  28706. name: "Normal",
  28707. height: math.unit(15, "feet"),
  28708. default: true
  28709. },
  28710. ]
  28711. ))
  28712. characterMakers.push(() => makeCharacter(
  28713. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28714. {
  28715. front: {
  28716. height: math.unit(4 + 9 / 12, "feet"),
  28717. weight: math.unit(130, "lb"),
  28718. name: "Front",
  28719. image: {
  28720. source: "./media/characters/anchovie/front.svg",
  28721. extra: 382 / 350,
  28722. bottom: 25 / 409
  28723. }
  28724. },
  28725. back: {
  28726. height: math.unit(4 + 9 / 12, "feet"),
  28727. weight: math.unit(130, "lb"),
  28728. name: "Back",
  28729. image: {
  28730. source: "./media/characters/anchovie/back.svg",
  28731. extra: 385 / 352,
  28732. bottom: 16.6 / 402
  28733. }
  28734. },
  28735. frontDressed: {
  28736. height: math.unit(4 + 9 / 12, "feet"),
  28737. weight: math.unit(130, "lb"),
  28738. name: "Front (Dressed)",
  28739. image: {
  28740. source: "./media/characters/anchovie/front-dressed.svg",
  28741. extra: 382 / 350,
  28742. bottom: 25 / 409
  28743. }
  28744. },
  28745. backDressed: {
  28746. height: math.unit(4 + 9 / 12, "feet"),
  28747. weight: math.unit(130, "lb"),
  28748. name: "Back (Dressed)",
  28749. image: {
  28750. source: "./media/characters/anchovie/back-dressed.svg",
  28751. extra: 385 / 352,
  28752. bottom: 16.6 / 402
  28753. }
  28754. },
  28755. },
  28756. [
  28757. {
  28758. name: "Micro",
  28759. height: math.unit(6.4, "inches")
  28760. },
  28761. {
  28762. name: "Normal",
  28763. height: math.unit(4 + 9 / 12, "feet"),
  28764. default: true
  28765. },
  28766. ]
  28767. ))
  28768. characterMakers.push(() => makeCharacter(
  28769. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28770. {
  28771. front: {
  28772. height: math.unit(2, "meters"),
  28773. weight: math.unit(180, "lb"),
  28774. name: "Front",
  28775. image: {
  28776. source: "./media/characters/acidrenamon/front.svg",
  28777. extra: 987 / 890,
  28778. bottom: 22.8 / 1009
  28779. }
  28780. },
  28781. back: {
  28782. height: math.unit(2, "meters"),
  28783. weight: math.unit(180, "lb"),
  28784. name: "Back",
  28785. image: {
  28786. source: "./media/characters/acidrenamon/back.svg",
  28787. extra: 983 / 891,
  28788. bottom: 8.4 / 992
  28789. }
  28790. },
  28791. head: {
  28792. height: math.unit(1.92, "feet"),
  28793. name: "Head",
  28794. image: {
  28795. source: "./media/characters/acidrenamon/head.svg"
  28796. }
  28797. },
  28798. rump: {
  28799. height: math.unit(1.72, "feet"),
  28800. name: "Rump",
  28801. image: {
  28802. source: "./media/characters/acidrenamon/rump.svg"
  28803. }
  28804. },
  28805. tail: {
  28806. height: math.unit(4.2, "feet"),
  28807. name: "Tail",
  28808. image: {
  28809. source: "./media/characters/acidrenamon/tail.svg"
  28810. }
  28811. },
  28812. },
  28813. [
  28814. {
  28815. name: "Normal",
  28816. height: math.unit(2, "meters"),
  28817. default: true
  28818. },
  28819. {
  28820. name: "Minimacro",
  28821. height: math.unit(7, "meters")
  28822. },
  28823. {
  28824. name: "Macro",
  28825. height: math.unit(200, "meters")
  28826. },
  28827. {
  28828. name: "Gigamacro",
  28829. height: math.unit(0.2, "earths")
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(152, "feet"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/kenzie-lee/front.svg",
  28841. extra: 1869/1774,
  28842. bottom: 128/1997
  28843. }
  28844. },
  28845. side: {
  28846. height: math.unit(86, "feet"),
  28847. name: "Side",
  28848. image: {
  28849. source: "./media/characters/kenzie-lee/side.svg",
  28850. extra: 930/815,
  28851. bottom: 177/1107
  28852. }
  28853. },
  28854. paw: {
  28855. height: math.unit(15, "feet"),
  28856. name: "Paw",
  28857. image: {
  28858. source: "./media/characters/kenzie-lee/paw.svg"
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Kenzie Flea",
  28865. height: math.unit(2, "mm"),
  28866. default: true
  28867. },
  28868. {
  28869. name: "Micro",
  28870. height: math.unit(2, "inches")
  28871. },
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(152, "feet")
  28875. },
  28876. {
  28877. name: "Megamacro",
  28878. height: math.unit(7, "miles")
  28879. },
  28880. {
  28881. name: "Gigamacro",
  28882. height: math.unit(8000, "miles")
  28883. },
  28884. ]
  28885. ))
  28886. characterMakers.push(() => makeCharacter(
  28887. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28888. {
  28889. front: {
  28890. height: math.unit(6, "feet"),
  28891. name: "Front",
  28892. image: {
  28893. source: "./media/characters/withers/front.svg",
  28894. extra: 1935/1760,
  28895. bottom: 72/2007
  28896. }
  28897. },
  28898. back: {
  28899. height: math.unit(6, "feet"),
  28900. name: "Back",
  28901. image: {
  28902. source: "./media/characters/withers/back.svg",
  28903. extra: 1944/1792,
  28904. bottom: 12/1956
  28905. }
  28906. },
  28907. dressed: {
  28908. height: math.unit(6, "feet"),
  28909. name: "Dressed",
  28910. image: {
  28911. source: "./media/characters/withers/dressed.svg",
  28912. extra: 1937/1765,
  28913. bottom: 73/2010
  28914. }
  28915. },
  28916. phase1: {
  28917. height: math.unit(1.1, "feet"),
  28918. name: "Phase 1",
  28919. image: {
  28920. source: "./media/characters/withers/phase-1.svg",
  28921. extra: 1885/1232,
  28922. bottom: 0/1885
  28923. }
  28924. },
  28925. phase2: {
  28926. height: math.unit(1.05, "feet"),
  28927. name: "Phase 2",
  28928. image: {
  28929. source: "./media/characters/withers/phase-2.svg",
  28930. extra: 1792/1090,
  28931. bottom: 0/1792
  28932. }
  28933. },
  28934. partyWipe: {
  28935. height: math.unit(1.1, "feet"),
  28936. name: "Party Wipe",
  28937. image: {
  28938. source: "./media/characters/withers/party-wipe.svg",
  28939. extra: 1864/1207,
  28940. bottom: 0/1864
  28941. }
  28942. },
  28943. },
  28944. [
  28945. {
  28946. name: "Macro",
  28947. height: math.unit(167, "feet"),
  28948. default: true
  28949. },
  28950. {
  28951. name: "Megamacro",
  28952. height: math.unit(15, "miles")
  28953. }
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(6 + 7 / 12, "feet"),
  28961. weight: math.unit(250, "lb"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/nemoskii/front.svg",
  28965. extra: 2270 / 1734,
  28966. bottom: 86 / 2354
  28967. }
  28968. },
  28969. back: {
  28970. height: math.unit(6 + 7 / 12, "feet"),
  28971. weight: math.unit(250, "lb"),
  28972. name: "Back",
  28973. image: {
  28974. source: "./media/characters/nemoskii/back.svg",
  28975. extra: 1845 / 1788,
  28976. bottom: 10.5 / 1852
  28977. }
  28978. },
  28979. head: {
  28980. height: math.unit(1.31, "feet"),
  28981. name: "Head",
  28982. image: {
  28983. source: "./media/characters/nemoskii/head.svg"
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Micro",
  28990. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28991. },
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(6 + 7 / 12, "feet"),
  28995. default: true
  28996. },
  28997. {
  28998. name: "Macro",
  28999. height: math.unit((6 + 7 / 12) * 150, "feet")
  29000. },
  29001. {
  29002. name: "Macro+",
  29003. height: math.unit((6 + 7 / 12) * 500, "feet")
  29004. },
  29005. {
  29006. name: "Megamacro",
  29007. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29013. {
  29014. front: {
  29015. height: math.unit(1, "mile"),
  29016. weight: math.unit(265261.9, "lb"),
  29017. name: "Front",
  29018. image: {
  29019. source: "./media/characters/shui/front.svg",
  29020. extra: 1633 / 1564,
  29021. bottom: 91.5 / 1726
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Macro",
  29028. height: math.unit(1, "mile"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(12 + 6 / 12, "feet"),
  29038. weight: math.unit(1342, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/arokh-takakura/front.svg",
  29042. extra: 1089 / 1043,
  29043. bottom: 77.4 / 1176.7
  29044. }
  29045. },
  29046. back: {
  29047. height: math.unit(12 + 6 / 12, "feet"),
  29048. weight: math.unit(1342, "lb"),
  29049. name: "Back",
  29050. image: {
  29051. source: "./media/characters/arokh-takakura/back.svg",
  29052. extra: 1046 / 1019,
  29053. bottom: 102 / 1150
  29054. }
  29055. },
  29056. },
  29057. [
  29058. {
  29059. name: "Big",
  29060. height: math.unit(12 + 6 / 12, "feet"),
  29061. default: true
  29062. },
  29063. ]
  29064. ))
  29065. characterMakers.push(() => makeCharacter(
  29066. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29067. {
  29068. front: {
  29069. height: math.unit(5 + 6 / 12, "feet"),
  29070. weight: math.unit(150, "lb"),
  29071. name: "Front",
  29072. image: {
  29073. source: "./media/characters/theo/front.svg",
  29074. extra: 1184 / 1131,
  29075. bottom: 7.4 / 1191
  29076. }
  29077. },
  29078. },
  29079. [
  29080. {
  29081. name: "Micro",
  29082. height: math.unit(5, "inches")
  29083. },
  29084. {
  29085. name: "Normal",
  29086. height: math.unit(5 + 6 / 12, "feet"),
  29087. default: true
  29088. },
  29089. ]
  29090. ))
  29091. characterMakers.push(() => makeCharacter(
  29092. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29093. {
  29094. front: {
  29095. height: math.unit(5 + 9 / 12, "feet"),
  29096. weight: math.unit(130, "lb"),
  29097. name: "Front",
  29098. image: {
  29099. source: "./media/characters/cecelia-swift/front.svg",
  29100. extra: 502 / 484,
  29101. bottom: 23 / 523
  29102. }
  29103. },
  29104. back: {
  29105. height: math.unit(5 + 9 / 12, "feet"),
  29106. weight: math.unit(130, "lb"),
  29107. name: "Back",
  29108. image: {
  29109. source: "./media/characters/cecelia-swift/back.svg",
  29110. extra: 499 / 485,
  29111. bottom: 12 / 511
  29112. }
  29113. },
  29114. head: {
  29115. height: math.unit(0.90, "feet"),
  29116. name: "Head",
  29117. image: {
  29118. source: "./media/characters/cecelia-swift/head.svg"
  29119. }
  29120. },
  29121. rump: {
  29122. height: math.unit(1.75, "feet"),
  29123. name: "Rump",
  29124. image: {
  29125. source: "./media/characters/cecelia-swift/rump.svg"
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Normal",
  29132. height: math.unit(5 + 9 / 12, "feet"),
  29133. default: true
  29134. },
  29135. {
  29136. name: "Big",
  29137. height: math.unit(50, "feet")
  29138. },
  29139. {
  29140. name: "Macro",
  29141. height: math.unit(100, "feet")
  29142. },
  29143. {
  29144. name: "Macro+",
  29145. height: math.unit(500, "feet")
  29146. },
  29147. {
  29148. name: "Macro++",
  29149. height: math.unit(1000, "feet")
  29150. },
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29155. {
  29156. front: {
  29157. height: math.unit(6, "feet"),
  29158. weight: math.unit(150, "lb"),
  29159. name: "Front",
  29160. image: {
  29161. source: "./media/characters/kaunan/front.svg",
  29162. extra: 2890 / 2523,
  29163. bottom: 49 / 2939
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Macro",
  29170. height: math.unit(150, "feet"),
  29171. default: true
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29177. {
  29178. dressed: {
  29179. height: math.unit(175, "cm"),
  29180. weight: math.unit(60, "kg"),
  29181. name: "Dressed",
  29182. image: {
  29183. source: "./media/characters/fei/dressed.svg",
  29184. extra: 1402/1278,
  29185. bottom: 27/1429
  29186. }
  29187. },
  29188. nude: {
  29189. height: math.unit(175, "cm"),
  29190. weight: math.unit(60, "kg"),
  29191. name: "Nude",
  29192. image: {
  29193. source: "./media/characters/fei/nude.svg",
  29194. extra: 1402/1278,
  29195. bottom: 27/1429
  29196. }
  29197. },
  29198. heels: {
  29199. height: math.unit(0.466, "feet"),
  29200. name: "Heels",
  29201. image: {
  29202. source: "./media/characters/fei/heels.svg",
  29203. extra: 156/152,
  29204. bottom: 28/184
  29205. }
  29206. },
  29207. },
  29208. [
  29209. {
  29210. name: "Mortal",
  29211. height: math.unit(175, "cm")
  29212. },
  29213. {
  29214. name: "Normal",
  29215. height: math.unit(3500, "m")
  29216. },
  29217. {
  29218. name: "Stroll",
  29219. height: math.unit(18.4, "km"),
  29220. default: true
  29221. },
  29222. {
  29223. name: "Showoff",
  29224. height: math.unit(175, "km")
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29230. {
  29231. front: {
  29232. height: math.unit(7, "feet"),
  29233. weight: math.unit(1000, "kg"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/edrax/front.svg",
  29237. extra: 2838 / 2550,
  29238. bottom: 130 / 2968
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Small",
  29245. height: math.unit(7, "feet")
  29246. },
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(1500, "meters")
  29250. },
  29251. {
  29252. name: "Mega",
  29253. height: math.unit(12000000, "km"),
  29254. default: true
  29255. },
  29256. {
  29257. name: "Megamacro",
  29258. height: math.unit(10600000, "lightyears")
  29259. },
  29260. {
  29261. name: "Hypermacro",
  29262. height: math.unit(256, "yottameters")
  29263. },
  29264. ]
  29265. ))
  29266. characterMakers.push(() => makeCharacter(
  29267. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29268. {
  29269. front: {
  29270. height: math.unit(10, "feet"),
  29271. weight: math.unit(750, "lb"),
  29272. name: "Front",
  29273. image: {
  29274. source: "./media/characters/clove/front.svg",
  29275. extra: 1918/1751,
  29276. bottom: 52/1970
  29277. }
  29278. },
  29279. back: {
  29280. height: math.unit(10, "feet"),
  29281. weight: math.unit(750, "lb"),
  29282. name: "Back",
  29283. image: {
  29284. source: "./media/characters/clove/back.svg",
  29285. extra: 1912/1747,
  29286. bottom: 50/1962
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(10, "feet"),
  29294. default: true
  29295. },
  29296. ]
  29297. ))
  29298. characterMakers.push(() => makeCharacter(
  29299. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29300. {
  29301. front: {
  29302. height: math.unit(4, "feet"),
  29303. weight: math.unit(50, "lb"),
  29304. name: "Front",
  29305. image: {
  29306. source: "./media/characters/alex-rabbit/front.svg",
  29307. extra: 507 / 458,
  29308. bottom: 18.5 / 527
  29309. }
  29310. },
  29311. back: {
  29312. height: math.unit(4, "feet"),
  29313. weight: math.unit(50, "lb"),
  29314. name: "Back",
  29315. image: {
  29316. source: "./media/characters/alex-rabbit/back.svg",
  29317. extra: 502 / 460,
  29318. bottom: 18.9 / 521
  29319. }
  29320. },
  29321. },
  29322. [
  29323. {
  29324. name: "Normal",
  29325. height: math.unit(4, "feet"),
  29326. default: true
  29327. },
  29328. ]
  29329. ))
  29330. characterMakers.push(() => makeCharacter(
  29331. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29332. {
  29333. front: {
  29334. height: math.unit(1 + 3 / 12, "feet"),
  29335. weight: math.unit(80, "lb"),
  29336. name: "Front",
  29337. image: {
  29338. source: "./media/characters/zander-rose/front.svg",
  29339. extra: 916 / 797,
  29340. bottom: 17 / 933
  29341. }
  29342. },
  29343. back: {
  29344. height: math.unit(1 + 3 / 12, "feet"),
  29345. weight: math.unit(80, "lb"),
  29346. name: "Back",
  29347. image: {
  29348. source: "./media/characters/zander-rose/back.svg",
  29349. extra: 903 / 779,
  29350. bottom: 31 / 934
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(1 + 3 / 12, "feet"),
  29358. default: true
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29364. {
  29365. anthro: {
  29366. height: math.unit(6, "feet"),
  29367. weight: math.unit(150, "lb"),
  29368. name: "Anthro",
  29369. image: {
  29370. source: "./media/characters/razz/anthro.svg",
  29371. extra: 1437 / 1343,
  29372. bottom: 48 / 1485
  29373. }
  29374. },
  29375. feral: {
  29376. height: math.unit(6, "feet"),
  29377. weight: math.unit(150, "lb"),
  29378. name: "Feral",
  29379. image: {
  29380. source: "./media/characters/razz/feral.svg",
  29381. extra: 2569 / 1385,
  29382. bottom: 95 / 2664
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Normal",
  29389. height: math.unit(6, "feet"),
  29390. default: true
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(9 + 4 / 12, "feet"),
  29399. weight: math.unit(500, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/morrigan/front.svg",
  29403. extra: 2707 / 2579,
  29404. bottom: 156 / 2863
  29405. }
  29406. },
  29407. },
  29408. [
  29409. {
  29410. name: "Normal",
  29411. height: math.unit(9 + 4 / 12, "feet"),
  29412. default: true
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29418. {
  29419. front: {
  29420. height: math.unit(5, "stories"),
  29421. weight: math.unit(4000, "lb"),
  29422. name: "Front",
  29423. image: {
  29424. source: "./media/characters/jenene/front.svg",
  29425. extra: 1780 / 1710,
  29426. bottom: 57 / 1837
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(5, "stories"),
  29434. default: true
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29440. {
  29441. taurSfw: {
  29442. height: math.unit(10, "meters"),
  29443. weight: math.unit(17500, "kg"),
  29444. name: "Taur",
  29445. image: {
  29446. source: "./media/characters/faey/taur-sfw.svg",
  29447. extra: 1200 / 968,
  29448. bottom: 41 / 1241
  29449. }
  29450. },
  29451. chestmaw: {
  29452. height: math.unit(2.01, "meters"),
  29453. name: "Chestmaw",
  29454. image: {
  29455. source: "./media/characters/faey/chestmaw.svg"
  29456. }
  29457. },
  29458. foot: {
  29459. height: math.unit(2.43, "meters"),
  29460. name: "Foot",
  29461. image: {
  29462. source: "./media/characters/faey/foot.svg"
  29463. }
  29464. },
  29465. jaws: {
  29466. height: math.unit(1.66, "meters"),
  29467. name: "Jaws",
  29468. image: {
  29469. source: "./media/characters/faey/jaws.svg"
  29470. }
  29471. },
  29472. tongues: {
  29473. height: math.unit(2.01, "meters"),
  29474. name: "Tongues",
  29475. image: {
  29476. source: "./media/characters/faey/tongues.svg"
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Small",
  29483. height: math.unit(10, "meters"),
  29484. default: true
  29485. },
  29486. {
  29487. name: "Big",
  29488. height: math.unit(500000, "km")
  29489. },
  29490. ]
  29491. ))
  29492. characterMakers.push(() => makeCharacter(
  29493. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29494. {
  29495. front: {
  29496. height: math.unit(7, "feet"),
  29497. weight: math.unit(275, "lb"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/roku/front.svg",
  29501. extra: 903 / 878,
  29502. bottom: 37 / 940
  29503. }
  29504. },
  29505. },
  29506. [
  29507. {
  29508. name: "Normal",
  29509. height: math.unit(7, "feet"),
  29510. default: true
  29511. },
  29512. {
  29513. name: "Macro",
  29514. height: math.unit(500, "feet")
  29515. },
  29516. {
  29517. name: "Megamacro",
  29518. height: math.unit(200, "miles")
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(6 + 2 / 12, "feet"),
  29527. weight: math.unit(150, "lb"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/lira/front.svg",
  29531. extra: 1727 / 1605,
  29532. bottom: 26 / 1753
  29533. }
  29534. },
  29535. back: {
  29536. height: math.unit(6 + 2 / 12, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Back",
  29539. image: {
  29540. source: "./media/characters/lira/back.svg",
  29541. extra: 1713/1621,
  29542. bottom: 20/1733
  29543. }
  29544. },
  29545. hand: {
  29546. height: math.unit(0.75, "feet"),
  29547. name: "Hand",
  29548. image: {
  29549. source: "./media/characters/lira/hand.svg"
  29550. }
  29551. },
  29552. maw: {
  29553. height: math.unit(0.65, "feet"),
  29554. name: "Maw",
  29555. image: {
  29556. source: "./media/characters/lira/maw.svg"
  29557. }
  29558. },
  29559. pawDigi: {
  29560. height: math.unit(1.6, "feet"),
  29561. name: "Paw Digi",
  29562. image: {
  29563. source: "./media/characters/lira/paw-digi.svg"
  29564. }
  29565. },
  29566. pawPlanti: {
  29567. height: math.unit(1.4, "feet"),
  29568. name: "Paw Planti",
  29569. image: {
  29570. source: "./media/characters/lira/paw-planti.svg"
  29571. }
  29572. },
  29573. },
  29574. [
  29575. {
  29576. name: "Normal",
  29577. height: math.unit(6 + 2 / 12, "feet"),
  29578. default: true
  29579. },
  29580. {
  29581. name: "Macro",
  29582. height: math.unit(100, "feet")
  29583. },
  29584. {
  29585. name: "Macro²",
  29586. height: math.unit(1600, "feet")
  29587. },
  29588. {
  29589. name: "Planetary",
  29590. height: math.unit(20, "earths")
  29591. },
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29596. {
  29597. front: {
  29598. height: math.unit(6, "feet"),
  29599. weight: math.unit(150, "lb"),
  29600. name: "Front",
  29601. image: {
  29602. source: "./media/characters/hadjet/front.svg",
  29603. extra: 1480 / 1346,
  29604. bottom: 26 / 1506
  29605. }
  29606. },
  29607. frontNsfw: {
  29608. height: math.unit(6, "feet"),
  29609. weight: math.unit(150, "lb"),
  29610. name: "Front (NSFW)",
  29611. image: {
  29612. source: "./media/characters/hadjet/front-nsfw.svg",
  29613. extra: 1440 / 1358,
  29614. bottom: 52 / 1492
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Macro",
  29621. height: math.unit(10, "stories"),
  29622. default: true
  29623. },
  29624. {
  29625. name: "Megamacro",
  29626. height: math.unit(1.5, "miles")
  29627. },
  29628. {
  29629. name: "Megamacro+",
  29630. height: math.unit(5, "miles")
  29631. },
  29632. ]
  29633. ))
  29634. characterMakers.push(() => makeCharacter(
  29635. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29636. {
  29637. side: {
  29638. height: math.unit(106, "feet"),
  29639. weight: math.unit(500, "tonnes"),
  29640. name: "Side",
  29641. image: {
  29642. source: "./media/characters/kodran/side.svg",
  29643. extra: 553 / 480,
  29644. bottom: 33 / 586
  29645. }
  29646. },
  29647. front: {
  29648. height: math.unit(132, "feet"),
  29649. weight: math.unit(500, "tonnes"),
  29650. name: "Front",
  29651. image: {
  29652. source: "./media/characters/kodran/front.svg",
  29653. extra: 667 / 643,
  29654. bottom: 42 / 709
  29655. }
  29656. },
  29657. flying: {
  29658. height: math.unit(350, "feet"),
  29659. weight: math.unit(500, "tonnes"),
  29660. name: "Flying",
  29661. image: {
  29662. source: "./media/characters/kodran/flying.svg"
  29663. }
  29664. },
  29665. foot: {
  29666. height: math.unit(33, "feet"),
  29667. name: "Foot",
  29668. image: {
  29669. source: "./media/characters/kodran/foot.svg"
  29670. }
  29671. },
  29672. footFront: {
  29673. height: math.unit(19, "feet"),
  29674. name: "Foot (Front)",
  29675. image: {
  29676. source: "./media/characters/kodran/foot-front.svg",
  29677. extra: 261 / 261,
  29678. bottom: 91 / 352
  29679. }
  29680. },
  29681. headFront: {
  29682. height: math.unit(53, "feet"),
  29683. name: "Head (Front)",
  29684. image: {
  29685. source: "./media/characters/kodran/head-front.svg"
  29686. }
  29687. },
  29688. headSide: {
  29689. height: math.unit(65, "feet"),
  29690. name: "Head (Side)",
  29691. image: {
  29692. source: "./media/characters/kodran/head-side.svg"
  29693. }
  29694. },
  29695. throat: {
  29696. height: math.unit(79, "feet"),
  29697. name: "Throat",
  29698. image: {
  29699. source: "./media/characters/kodran/throat.svg"
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Large",
  29706. height: math.unit(106, "feet"),
  29707. default: true
  29708. },
  29709. ]
  29710. ))
  29711. characterMakers.push(() => makeCharacter(
  29712. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29713. {
  29714. side: {
  29715. height: math.unit(11, "feet"),
  29716. weight: math.unit(150, "lb"),
  29717. name: "Side",
  29718. image: {
  29719. source: "./media/characters/pyxaron/side.svg",
  29720. extra: 305 / 195,
  29721. bottom: 17 / 322
  29722. }
  29723. },
  29724. },
  29725. [
  29726. {
  29727. name: "Normal",
  29728. height: math.unit(11, "feet"),
  29729. default: true
  29730. },
  29731. ]
  29732. ))
  29733. characterMakers.push(() => makeCharacter(
  29734. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29735. {
  29736. front: {
  29737. height: math.unit(6, "feet"),
  29738. weight: math.unit(150, "lb"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/meep/front.svg",
  29742. extra: 88 / 80,
  29743. bottom: 6 / 94
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Fun Sized",
  29750. height: math.unit(2, "inches"),
  29751. default: true
  29752. },
  29753. {
  29754. name: "Friend Sized",
  29755. height: math.unit(8, "inches")
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29761. {
  29762. front: {
  29763. height: math.unit(15, "feet"),
  29764. weight: math.unit(2500, "lb"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/holly-rabbit/front.svg",
  29768. extra: 1433 / 1233,
  29769. bottom: 125 / 1558
  29770. }
  29771. },
  29772. dick: {
  29773. height: math.unit(4.6, "feet"),
  29774. name: "Dick",
  29775. image: {
  29776. source: "./media/characters/holly-rabbit/dick.svg"
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Normal",
  29783. height: math.unit(15, "feet"),
  29784. default: true
  29785. },
  29786. {
  29787. name: "Macro",
  29788. height: math.unit(250, "feet")
  29789. },
  29790. {
  29791. name: "Macro+",
  29792. height: math.unit(2500, "feet")
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29798. {
  29799. front: {
  29800. height: math.unit(3.02, "meters"),
  29801. weight: math.unit(500, "kg"),
  29802. name: "Front",
  29803. image: {
  29804. source: "./media/characters/drena/front.svg",
  29805. extra: 282 / 243,
  29806. bottom: 8 / 290
  29807. }
  29808. },
  29809. side: {
  29810. height: math.unit(3.02, "meters"),
  29811. weight: math.unit(500, "kg"),
  29812. name: "Side",
  29813. image: {
  29814. source: "./media/characters/drena/side.svg",
  29815. extra: 280 / 245,
  29816. bottom: 10 / 290
  29817. }
  29818. },
  29819. back: {
  29820. height: math.unit(3.02, "meters"),
  29821. weight: math.unit(500, "kg"),
  29822. name: "Back",
  29823. image: {
  29824. source: "./media/characters/drena/back.svg",
  29825. extra: 278 / 243,
  29826. bottom: 2 / 280
  29827. }
  29828. },
  29829. foot: {
  29830. height: math.unit(0.75, "meters"),
  29831. name: "Foot",
  29832. image: {
  29833. source: "./media/characters/drena/foot.svg"
  29834. }
  29835. },
  29836. maw: {
  29837. height: math.unit(0.82, "meters"),
  29838. name: "Maw",
  29839. image: {
  29840. source: "./media/characters/drena/maw.svg"
  29841. }
  29842. },
  29843. eating: {
  29844. height: math.unit(0.75, "meters"),
  29845. name: "Eating",
  29846. image: {
  29847. source: "./media/characters/drena/eating.svg"
  29848. }
  29849. },
  29850. rump: {
  29851. height: math.unit(0.93, "meters"),
  29852. name: "Rump",
  29853. image: {
  29854. source: "./media/characters/drena/rump.svg"
  29855. }
  29856. },
  29857. },
  29858. [
  29859. {
  29860. name: "Normal",
  29861. height: math.unit(3.02, "meters"),
  29862. default: true
  29863. },
  29864. ]
  29865. ))
  29866. characterMakers.push(() => makeCharacter(
  29867. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29868. {
  29869. front: {
  29870. height: math.unit(6 + 4 / 12, "feet"),
  29871. weight: math.unit(250, "lb"),
  29872. name: "Front",
  29873. image: {
  29874. source: "./media/characters/remmyzilla/front.svg",
  29875. extra: 4033 / 3588,
  29876. bottom: 123 / 4156
  29877. }
  29878. },
  29879. back: {
  29880. height: math.unit(6 + 4 / 12, "feet"),
  29881. weight: math.unit(250, "lb"),
  29882. name: "Back",
  29883. image: {
  29884. source: "./media/characters/remmyzilla/back.svg",
  29885. extra: 2687 / 2555,
  29886. bottom: 48 / 2735
  29887. }
  29888. },
  29889. paw: {
  29890. height: math.unit(1.73, "feet"),
  29891. name: "Paw",
  29892. image: {
  29893. source: "./media/characters/remmyzilla/paw.svg"
  29894. },
  29895. extraAttributes: {
  29896. "toeSize": {
  29897. name: "Toe Size",
  29898. power: 2,
  29899. type: "area",
  29900. base: math.unit(0.0035, "m^2")
  29901. },
  29902. "padSize": {
  29903. name: "Pad Size",
  29904. power: 2,
  29905. type: "area",
  29906. base: math.unit(0.015, "m^2")
  29907. },
  29908. "pawsize": {
  29909. name: "Paw Size",
  29910. power: 2,
  29911. type: "area",
  29912. base: math.unit(0.072, "m^2")
  29913. },
  29914. }
  29915. },
  29916. maw: {
  29917. height: math.unit(1.73, "feet"),
  29918. name: "Maw",
  29919. image: {
  29920. source: "./media/characters/remmyzilla/maw.svg"
  29921. }
  29922. },
  29923. },
  29924. [
  29925. {
  29926. name: "Normal",
  29927. height: math.unit(6 + 4 / 12, "feet")
  29928. },
  29929. {
  29930. name: "Minimacro",
  29931. height: math.unit(12 + 8 / 12, "feet")
  29932. },
  29933. {
  29934. name: "Normal",
  29935. height: math.unit(640, "feet"),
  29936. default: true
  29937. },
  29938. {
  29939. name: "Megamacro",
  29940. height: math.unit(6400, "feet")
  29941. },
  29942. {
  29943. name: "Gigamacro",
  29944. height: math.unit(64000, "miles")
  29945. },
  29946. ]
  29947. ))
  29948. characterMakers.push(() => makeCharacter(
  29949. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29950. {
  29951. front: {
  29952. height: math.unit(2.5, "meters"),
  29953. weight: math.unit(300, "lb"),
  29954. name: "Front",
  29955. image: {
  29956. source: "./media/characters/lawrence/front.svg",
  29957. extra: 357 / 335,
  29958. bottom: 30 / 387
  29959. }
  29960. },
  29961. back: {
  29962. height: math.unit(2.5, "meters"),
  29963. weight: math.unit(300, "lb"),
  29964. name: "Back",
  29965. image: {
  29966. source: "./media/characters/lawrence/back.svg",
  29967. extra: 357 / 338,
  29968. bottom: 16 / 373
  29969. }
  29970. },
  29971. head: {
  29972. height: math.unit(0.9, "meter"),
  29973. name: "Head",
  29974. image: {
  29975. source: "./media/characters/lawrence/head.svg"
  29976. }
  29977. },
  29978. maw: {
  29979. height: math.unit(0.7, "meter"),
  29980. name: "Maw",
  29981. image: {
  29982. source: "./media/characters/lawrence/maw.svg"
  29983. }
  29984. },
  29985. footBottom: {
  29986. height: math.unit(0.5, "meter"),
  29987. name: "Foot (Bottom)",
  29988. image: {
  29989. source: "./media/characters/lawrence/foot-bottom.svg"
  29990. }
  29991. },
  29992. footTop: {
  29993. height: math.unit(0.5, "meter"),
  29994. name: "Foot (Top)",
  29995. image: {
  29996. source: "./media/characters/lawrence/foot-top.svg"
  29997. }
  29998. },
  29999. },
  30000. [
  30001. {
  30002. name: "Normal",
  30003. height: math.unit(2.5, "meters"),
  30004. default: true
  30005. },
  30006. {
  30007. name: "Macro",
  30008. height: math.unit(95, "meters")
  30009. },
  30010. {
  30011. name: "Megamacro",
  30012. height: math.unit(150, "km")
  30013. },
  30014. ]
  30015. ))
  30016. characterMakers.push(() => makeCharacter(
  30017. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30018. {
  30019. front: {
  30020. height: math.unit(4.2, "meters"),
  30021. name: "Front",
  30022. image: {
  30023. source: "./media/characters/sydney/front.svg",
  30024. extra: 1323 / 1277,
  30025. bottom: 111 / 1434
  30026. }
  30027. },
  30028. },
  30029. [
  30030. {
  30031. name: "Normal",
  30032. height: math.unit(4.2, "meters"),
  30033. default: true
  30034. },
  30035. ]
  30036. ))
  30037. characterMakers.push(() => makeCharacter(
  30038. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30039. {
  30040. back: {
  30041. height: math.unit(201, "feet"),
  30042. name: "Back",
  30043. image: {
  30044. source: "./media/characters/jessica/back.svg",
  30045. extra: 273 / 259,
  30046. bottom: 7 / 280
  30047. }
  30048. },
  30049. },
  30050. [
  30051. {
  30052. name: "Normal",
  30053. height: math.unit(201, "feet"),
  30054. default: true
  30055. },
  30056. {
  30057. name: "Megamacro",
  30058. height: math.unit(8, "miles")
  30059. },
  30060. ]
  30061. ))
  30062. characterMakers.push(() => makeCharacter(
  30063. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30064. {
  30065. side: {
  30066. height: math.unit(5.6, "m"),
  30067. weight: math.unit(8000, "kg"),
  30068. name: "Side",
  30069. image: {
  30070. source: "./media/characters/victoria/side.svg",
  30071. extra: 1542/1229,
  30072. bottom: 124/1666
  30073. }
  30074. },
  30075. maw: {
  30076. height: math.unit(7.14, "feet"),
  30077. name: "Maw",
  30078. image: {
  30079. source: "./media/characters/victoria/maw.svg"
  30080. }
  30081. },
  30082. },
  30083. [
  30084. {
  30085. name: "Normal",
  30086. height: math.unit(5.6, "m"),
  30087. default: true
  30088. },
  30089. ]
  30090. ))
  30091. characterMakers.push(() => makeCharacter(
  30092. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30093. {
  30094. front: {
  30095. height: math.unit(5 + 6 / 12, "feet"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/cat/front.svg",
  30099. extra: 1449/1295,
  30100. bottom: 34/1483
  30101. },
  30102. form: "cat",
  30103. default: true
  30104. },
  30105. back: {
  30106. height: math.unit(5 + 6 / 12, "feet"),
  30107. name: "Back",
  30108. image: {
  30109. source: "./media/characters/cat/back.svg",
  30110. extra: 1466/1301,
  30111. bottom: 19/1485
  30112. },
  30113. form: "cat"
  30114. },
  30115. taur: {
  30116. height: math.unit(7, "feet"),
  30117. name: "Taur",
  30118. image: {
  30119. source: "./media/characters/cat/taur.svg",
  30120. extra: 1389/1233,
  30121. bottom: 83/1472
  30122. },
  30123. form: "taur",
  30124. default: true
  30125. },
  30126. lucarioFront: {
  30127. height: math.unit(4, "feet"),
  30128. name: "Lucario (Front)",
  30129. image: {
  30130. source: "./media/characters/cat/lucario-front.svg",
  30131. extra: 1149/1019,
  30132. bottom: 84/1233
  30133. },
  30134. form: "lucario",
  30135. default: true
  30136. },
  30137. lucarioBack: {
  30138. height: math.unit(4, "feet"),
  30139. name: "Lucario (Back)",
  30140. image: {
  30141. source: "./media/characters/cat/lucario-back.svg",
  30142. extra: 1190/1059,
  30143. bottom: 33/1223
  30144. },
  30145. form: "lucario"
  30146. },
  30147. megaLucario: {
  30148. height: math.unit(4, "feet"),
  30149. name: "Mega Lucario",
  30150. image: {
  30151. source: "./media/characters/cat/mega-lucario.svg",
  30152. extra: 1515 / 1319,
  30153. bottom: 63 / 1578
  30154. },
  30155. form: "lucario"
  30156. },
  30157. nickit: {
  30158. height: math.unit(2, "feet"),
  30159. name: "Nickit",
  30160. image: {
  30161. source: "./media/characters/cat/nickit.svg",
  30162. extra: 1980 / 1585,
  30163. bottom: 102 / 2082
  30164. },
  30165. form: "nickit",
  30166. default: true
  30167. },
  30168. lopunnyFront: {
  30169. height: math.unit(5, "feet"),
  30170. name: "Lopunny (Front)",
  30171. image: {
  30172. source: "./media/characters/cat/lopunny-front.svg",
  30173. extra: 1782 / 1469,
  30174. bottom: 38 / 1820
  30175. },
  30176. form: "lopunny",
  30177. default: true
  30178. },
  30179. lopunnyBack: {
  30180. height: math.unit(5, "feet"),
  30181. name: "Lopunny (Back)",
  30182. image: {
  30183. source: "./media/characters/cat/lopunny-back.svg",
  30184. extra: 1660 / 1490,
  30185. bottom: 25 / 1685
  30186. },
  30187. form: "lopunny"
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Really small",
  30193. height: math.unit(1, "nm")
  30194. },
  30195. {
  30196. name: "Micro",
  30197. height: math.unit(5, "inches")
  30198. },
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(5 + 6 / 12, "feet"),
  30202. default: true
  30203. },
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(50, "feet")
  30207. },
  30208. {
  30209. name: "Macro+",
  30210. height: math.unit(150, "feet")
  30211. },
  30212. {
  30213. name: "Megamacro",
  30214. height: math.unit(100, "miles")
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30220. {
  30221. front: {
  30222. height: math.unit(63.4, "meters"),
  30223. weight: math.unit(3.28349e+6, "kilograms"),
  30224. name: "Front",
  30225. image: {
  30226. source: "./media/characters/kirina-violet/front.svg",
  30227. extra: 2812 / 2725,
  30228. bottom: 0 / 2812
  30229. }
  30230. },
  30231. back: {
  30232. height: math.unit(63.4, "meters"),
  30233. weight: math.unit(3.28349e+6, "kilograms"),
  30234. name: "Back",
  30235. image: {
  30236. source: "./media/characters/kirina-violet/back.svg",
  30237. extra: 2812 / 2725,
  30238. bottom: 0 / 2812
  30239. }
  30240. },
  30241. mouth: {
  30242. height: math.unit(4.35, "meters"),
  30243. name: "Mouth",
  30244. image: {
  30245. source: "./media/characters/kirina-violet/mouth.svg"
  30246. }
  30247. },
  30248. paw: {
  30249. height: math.unit(5.6, "meters"),
  30250. name: "Paw",
  30251. image: {
  30252. source: "./media/characters/kirina-violet/paw.svg"
  30253. }
  30254. },
  30255. tail: {
  30256. height: math.unit(18, "meters"),
  30257. name: "Tail",
  30258. image: {
  30259. source: "./media/characters/kirina-violet/tail.svg"
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Macro",
  30266. height: math.unit(63.4, "meters"),
  30267. default: true
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30273. {
  30274. front: {
  30275. height: math.unit(75, "feet"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/cat-gigachu/front.svg",
  30279. extra: 1239/1027,
  30280. bottom: 32/1271
  30281. }
  30282. },
  30283. back: {
  30284. height: math.unit(75, "feet"),
  30285. name: "Back",
  30286. image: {
  30287. source: "./media/characters/cat-gigachu/back.svg",
  30288. extra: 1229/1030,
  30289. bottom: 9/1238
  30290. }
  30291. },
  30292. },
  30293. [
  30294. {
  30295. name: "Dynamax",
  30296. height: math.unit(75, "feet"),
  30297. default: true
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30303. {
  30304. front: {
  30305. height: math.unit(6, "feet"),
  30306. weight: math.unit(150, "lb"),
  30307. name: "Front",
  30308. image: {
  30309. source: "./media/characters/sfaiyan/front.svg",
  30310. extra: 999 / 978,
  30311. bottom: 5 / 1004
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Normal",
  30318. height: math.unit(1.82, "meters")
  30319. },
  30320. {
  30321. name: "Giant",
  30322. height: math.unit(2.27, "km"),
  30323. default: true
  30324. },
  30325. ]
  30326. ))
  30327. characterMakers.push(() => makeCharacter(
  30328. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30329. {
  30330. front: {
  30331. height: math.unit(179, "cm"),
  30332. weight: math.unit(100, "kg"),
  30333. name: "Front",
  30334. image: {
  30335. source: "./media/characters/raunehkeli/front.svg",
  30336. extra: 1934 / 1926,
  30337. bottom: 0 / 1934
  30338. }
  30339. },
  30340. },
  30341. [
  30342. {
  30343. name: "Normal",
  30344. height: math.unit(179, "cm")
  30345. },
  30346. {
  30347. name: "Maximum",
  30348. height: math.unit(575, "meters"),
  30349. default: true
  30350. },
  30351. ]
  30352. ))
  30353. characterMakers.push(() => makeCharacter(
  30354. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30355. {
  30356. front: {
  30357. height: math.unit(6, "feet"),
  30358. weight: math.unit(150, "lb"),
  30359. name: "Front",
  30360. image: {
  30361. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30362. extra: 2625 / 2518,
  30363. bottom: 60 / 2685
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(6 + 2 / 12, "feet")
  30371. },
  30372. {
  30373. name: "Macro",
  30374. height: math.unit(1180, "feet"),
  30375. default: true
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(5 + 6 / 12, "feet"),
  30384. weight: math.unit(108, "lb"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/lilith-zott/front.svg",
  30388. extra: 2510 / 2238,
  30389. bottom: 100 / 2610
  30390. }
  30391. },
  30392. frontDressed: {
  30393. height: math.unit(5 + 6 / 12, "feet"),
  30394. weight: math.unit(108, "lb"),
  30395. name: "Front (Dressed)",
  30396. image: {
  30397. source: "./media/characters/lilith-zott/front-dressed.svg",
  30398. extra: 2510 / 2238,
  30399. bottom: 100 / 2610
  30400. }
  30401. },
  30402. },
  30403. [
  30404. {
  30405. name: "Normal",
  30406. height: math.unit(5 + 6 / 12, "feet")
  30407. },
  30408. {
  30409. name: "Macro",
  30410. height: math.unit(1030, "feet"),
  30411. default: true
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30417. {
  30418. front: {
  30419. height: math.unit(6, "feet"),
  30420. weight: math.unit(150, "lb"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30424. extra: 2567 / 2435,
  30425. bottom: 39 / 2606
  30426. }
  30427. },
  30428. frontSuper: {
  30429. height: math.unit(6, "feet"),
  30430. name: "Front (Super)",
  30431. image: {
  30432. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30433. extra: 2567 / 2435,
  30434. bottom: 39 / 2606
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Normal",
  30441. height: math.unit(5 + 10 / 12, "feet")
  30442. },
  30443. {
  30444. name: "Macro",
  30445. height: math.unit(1100, "feet"),
  30446. default: true
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30452. {
  30453. front: {
  30454. height: math.unit(100, "miles"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/sona/front.svg",
  30458. extra: 2433 / 2201,
  30459. bottom: 53 / 2486
  30460. }
  30461. },
  30462. foot: {
  30463. height: math.unit(16.1, "miles"),
  30464. name: "Foot",
  30465. image: {
  30466. source: "./media/characters/sona/foot.svg"
  30467. }
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Macro",
  30473. height: math.unit(100, "miles"),
  30474. default: true
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30480. {
  30481. front: {
  30482. height: math.unit(6, "feet"),
  30483. weight: math.unit(150, "lb"),
  30484. name: "Front",
  30485. image: {
  30486. source: "./media/characters/bailey/front.svg",
  30487. extra: 1778 / 1724,
  30488. bottom: 30 / 1808
  30489. }
  30490. },
  30491. },
  30492. [
  30493. {
  30494. name: "Micro",
  30495. height: math.unit(4, "inches")
  30496. },
  30497. {
  30498. name: "Normal",
  30499. height: math.unit(5 + 5 / 12, "feet"),
  30500. default: true
  30501. },
  30502. {
  30503. name: "Macro",
  30504. height: math.unit(250, "feet")
  30505. },
  30506. {
  30507. name: "Megamacro",
  30508. height: math.unit(100, "miles")
  30509. },
  30510. ]
  30511. ))
  30512. characterMakers.push(() => makeCharacter(
  30513. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30514. {
  30515. front: {
  30516. height: math.unit(5 + 2 / 12, "feet"),
  30517. weight: math.unit(120, "lb"),
  30518. name: "Front",
  30519. image: {
  30520. source: "./media/characters/snaps/front.svg",
  30521. extra: 2370 / 2177,
  30522. bottom: 48 / 2418
  30523. }
  30524. },
  30525. back: {
  30526. height: math.unit(5 + 2 / 12, "feet"),
  30527. weight: math.unit(120, "lb"),
  30528. name: "Back",
  30529. image: {
  30530. source: "./media/characters/snaps/back.svg",
  30531. extra: 2408 / 2258,
  30532. bottom: 15 / 2423
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Micro",
  30539. height: math.unit(9, "inches")
  30540. },
  30541. {
  30542. name: "Normal",
  30543. height: math.unit(5 + 2 / 12, "feet"),
  30544. default: true
  30545. },
  30546. {
  30547. name: "Mini Macro",
  30548. height: math.unit(10, "feet")
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30554. {
  30555. front: {
  30556. height: math.unit(1.8, "meters"),
  30557. weight: math.unit(85, "kg"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/azteck/front.svg",
  30561. extra: 2815 / 2625,
  30562. bottom: 89 / 2904
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(1.8, "meters"),
  30567. weight: math.unit(85, "kg"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/azteck/back.svg",
  30571. extra: 2856 / 2648,
  30572. bottom: 85 / 2941
  30573. }
  30574. },
  30575. frontDressed: {
  30576. height: math.unit(1.8, "meters"),
  30577. weight: math.unit(85, "kg"),
  30578. name: "Front (Dressed)",
  30579. image: {
  30580. source: "./media/characters/azteck/front-dressed.svg",
  30581. extra: 2147 / 2003,
  30582. bottom: 68 / 2215
  30583. }
  30584. },
  30585. head: {
  30586. height: math.unit(0.47, "meters"),
  30587. weight: math.unit(85, "kg"),
  30588. name: "Head",
  30589. image: {
  30590. source: "./media/characters/azteck/head.svg"
  30591. }
  30592. },
  30593. },
  30594. [
  30595. {
  30596. name: "Bite sized",
  30597. height: math.unit(16, "cm")
  30598. },
  30599. {
  30600. name: "Normal",
  30601. height: math.unit(1.8, "meters"),
  30602. default: true
  30603. },
  30604. ]
  30605. ))
  30606. characterMakers.push(() => makeCharacter(
  30607. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30608. {
  30609. front: {
  30610. height: math.unit(6, "feet"),
  30611. weight: math.unit(150, "lb"),
  30612. name: "Front",
  30613. image: {
  30614. source: "./media/characters/pidge/front.svg",
  30615. extra: 1936/1820,
  30616. bottom: 0/1936
  30617. }
  30618. },
  30619. back: {
  30620. height: math.unit(6, "feet"),
  30621. weight: math.unit(150, "lb"),
  30622. name: "Back",
  30623. image: {
  30624. source: "./media/characters/pidge/back.svg",
  30625. extra: 1938/1843,
  30626. bottom: 0/1938
  30627. }
  30628. },
  30629. casual: {
  30630. height: math.unit(6, "feet"),
  30631. weight: math.unit(150, "lb"),
  30632. name: "Casual",
  30633. image: {
  30634. source: "./media/characters/pidge/casual.svg",
  30635. extra: 1936/1820,
  30636. bottom: 0/1936
  30637. }
  30638. },
  30639. tech: {
  30640. height: math.unit(6, "feet"),
  30641. weight: math.unit(150, "lb"),
  30642. name: "Tech",
  30643. image: {
  30644. source: "./media/characters/pidge/tech.svg",
  30645. extra: 1802/1682,
  30646. bottom: 0/1802
  30647. }
  30648. },
  30649. head: {
  30650. height: math.unit(1.61, "feet"),
  30651. name: "Head",
  30652. image: {
  30653. source: "./media/characters/pidge/head.svg"
  30654. }
  30655. },
  30656. collar: {
  30657. height: math.unit(0.82, "feet"),
  30658. name: "Collar",
  30659. image: {
  30660. source: "./media/characters/pidge/collar.svg"
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Macro",
  30667. height: math.unit(2, "mile"),
  30668. default: true
  30669. },
  30670. {
  30671. name: "PUPPY",
  30672. height: math.unit(20, "miles")
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30678. {
  30679. front: {
  30680. height: math.unit(6, "feet"),
  30681. weight: math.unit(150, "lb"),
  30682. name: "Front",
  30683. image: {
  30684. source: "./media/characters/en/front.svg",
  30685. extra: 1697 / 1563,
  30686. bottom: 103 / 1800
  30687. }
  30688. },
  30689. back: {
  30690. height: math.unit(6, "feet"),
  30691. weight: math.unit(150, "lb"),
  30692. name: "Back",
  30693. image: {
  30694. source: "./media/characters/en/back.svg",
  30695. extra: 1700 / 1570,
  30696. bottom: 51 / 1751
  30697. }
  30698. },
  30699. frontDressed: {
  30700. height: math.unit(6, "feet"),
  30701. weight: math.unit(150, "lb"),
  30702. name: "Front (Dressed)",
  30703. image: {
  30704. source: "./media/characters/en/front-dressed.svg",
  30705. extra: 1697 / 1563,
  30706. bottom: 103 / 1800
  30707. }
  30708. },
  30709. backDressed: {
  30710. height: math.unit(6, "feet"),
  30711. weight: math.unit(150, "lb"),
  30712. name: "Back (Dressed)",
  30713. image: {
  30714. source: "./media/characters/en/back-dressed.svg",
  30715. extra: 1700 / 1570,
  30716. bottom: 51 / 1751
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Macro",
  30723. height: math.unit(210, "feet"),
  30724. default: true
  30725. },
  30726. ]
  30727. ))
  30728. characterMakers.push(() => makeCharacter(
  30729. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30730. {
  30731. front: {
  30732. height: math.unit(6, "feet"),
  30733. weight: math.unit(150, "lb"),
  30734. name: "Front",
  30735. image: {
  30736. source: "./media/characters/haze-orris/front.svg",
  30737. extra: 3975 / 3525,
  30738. bottom: 137 / 4112
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Micro",
  30745. height: math.unit(150, "mm"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(6, "feet"),
  30755. weight: math.unit(150, "lb"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/casselene-yaro/front.svg",
  30759. extra: 4721 / 4541,
  30760. bottom: 82 / 4803
  30761. }
  30762. },
  30763. back: {
  30764. height: math.unit(6, "feet"),
  30765. weight: math.unit(150, "lb"),
  30766. name: "Back",
  30767. image: {
  30768. source: "./media/characters/casselene-yaro/back.svg",
  30769. extra: 4569 / 4377,
  30770. bottom: 69 / 4638
  30771. }
  30772. },
  30773. dressed: {
  30774. height: math.unit(6, "feet"),
  30775. weight: math.unit(150, "lb"),
  30776. name: "Dressed",
  30777. image: {
  30778. source: "./media/characters/casselene-yaro/dressed.svg",
  30779. extra: 4721 / 4541,
  30780. bottom: 82 / 4803
  30781. }
  30782. },
  30783. maw: {
  30784. height: math.unit(1, "feet"),
  30785. name: "Maw",
  30786. image: {
  30787. source: "./media/characters/casselene-yaro/maw.svg"
  30788. }
  30789. },
  30790. },
  30791. [
  30792. {
  30793. name: "Macro",
  30794. height: math.unit(190, "feet"),
  30795. default: true
  30796. },
  30797. ]
  30798. ))
  30799. characterMakers.push(() => makeCharacter(
  30800. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30801. {
  30802. front: {
  30803. height: math.unit(10, "feet"),
  30804. weight: math.unit(15015, "lb"),
  30805. name: "Front",
  30806. image: {
  30807. source: "./media/characters/platine/front.svg",
  30808. extra: 1428/1353,
  30809. bottom: 31/1459
  30810. }
  30811. },
  30812. },
  30813. [
  30814. {
  30815. name: "Normal",
  30816. height: math.unit(10, "feet"),
  30817. default: true
  30818. },
  30819. {
  30820. name: "Macro",
  30821. height: math.unit(100, "feet")
  30822. },
  30823. {
  30824. name: "Megamacro",
  30825. height: math.unit(1000, "feet")
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(15 + 5 / 12, "feet"),
  30834. weight: math.unit(4600, "lb"),
  30835. name: "Front",
  30836. image: {
  30837. source: "./media/characters/neapolitan-ananassa/front.svg",
  30838. extra: 2903 / 2736,
  30839. bottom: 0 / 2903
  30840. }
  30841. },
  30842. side: {
  30843. height: math.unit(15 + 5 / 12, "feet"),
  30844. weight: math.unit(4600, "lb"),
  30845. name: "Side",
  30846. image: {
  30847. source: "./media/characters/neapolitan-ananassa/side.svg",
  30848. extra: 2925 / 2719,
  30849. bottom: 0 / 2925
  30850. }
  30851. },
  30852. back: {
  30853. height: math.unit(15 + 5 / 12, "feet"),
  30854. weight: math.unit(4600, "lb"),
  30855. name: "Back",
  30856. image: {
  30857. source: "./media/characters/neapolitan-ananassa/back.svg",
  30858. extra: 2903 / 2736,
  30859. bottom: 0 / 2903
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(15 + 5 / 12, "feet"),
  30867. default: true
  30868. },
  30869. {
  30870. name: "Post-Millenium",
  30871. height: math.unit(35 + 5 / 12, "feet")
  30872. },
  30873. {
  30874. name: "Post-Era",
  30875. height: math.unit(450 + 5 / 12, "feet")
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30881. {
  30882. front: {
  30883. height: math.unit(300, "meters"),
  30884. weight: math.unit(125000, "tonnes"),
  30885. name: "Front",
  30886. image: {
  30887. source: "./media/characters/pazuzu/front.svg",
  30888. extra: 877 / 794,
  30889. bottom: 47 / 924
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Macro",
  30896. height: math.unit(300, "meters"),
  30897. default: true
  30898. },
  30899. ]
  30900. ))
  30901. characterMakers.push(() => makeCharacter(
  30902. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30903. {
  30904. side: {
  30905. height: math.unit(10 + 7 / 12, "feet"),
  30906. weight: math.unit(2.5, "tons"),
  30907. name: "Side",
  30908. image: {
  30909. source: "./media/characters/aasha/side.svg",
  30910. extra: 1345 / 1245,
  30911. bottom: 111 / 1456
  30912. }
  30913. },
  30914. back: {
  30915. height: math.unit(10 + 7 / 12, "feet"),
  30916. weight: math.unit(2.5, "tons"),
  30917. name: "Back",
  30918. image: {
  30919. source: "./media/characters/aasha/back.svg",
  30920. extra: 1133 / 1057,
  30921. bottom: 257 / 1390
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Normal",
  30928. height: math.unit(10 + 7 / 12, "feet"),
  30929. default: true
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30935. {
  30936. front: {
  30937. height: math.unit(6 + 3 / 12, "feet"),
  30938. name: "Front",
  30939. image: {
  30940. source: "./media/characters/nevan/front.svg",
  30941. extra: 704 / 704,
  30942. bottom: 28 / 732
  30943. }
  30944. },
  30945. back: {
  30946. height: math.unit(6 + 3 / 12, "feet"),
  30947. name: "Back",
  30948. image: {
  30949. source: "./media/characters/nevan/back.svg",
  30950. extra: 714 / 714,
  30951. bottom: 21 / 735
  30952. }
  30953. },
  30954. frontFlaccid: {
  30955. height: math.unit(6 + 3 / 12, "feet"),
  30956. name: "Front (Flaccid)",
  30957. image: {
  30958. source: "./media/characters/nevan/front-flaccid.svg",
  30959. extra: 704 / 704,
  30960. bottom: 28 / 732
  30961. }
  30962. },
  30963. frontErect: {
  30964. height: math.unit(6 + 3 / 12, "feet"),
  30965. name: "Front (Erect)",
  30966. image: {
  30967. source: "./media/characters/nevan/front-erect.svg",
  30968. extra: 704 / 704,
  30969. bottom: 28 / 732
  30970. }
  30971. },
  30972. backFlaccid: {
  30973. height: math.unit(6 + 3 / 12, "feet"),
  30974. name: "Back (Flaccid)",
  30975. image: {
  30976. source: "./media/characters/nevan/back-flaccid.svg",
  30977. extra: 714 / 714,
  30978. bottom: 21 / 735
  30979. }
  30980. },
  30981. },
  30982. [
  30983. {
  30984. name: "Normal",
  30985. height: math.unit(6 + 3 / 12, "feet"),
  30986. default: true
  30987. },
  30988. ]
  30989. ))
  30990. characterMakers.push(() => makeCharacter(
  30991. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30992. {
  30993. front: {
  30994. height: math.unit(4, "feet"),
  30995. name: "Front",
  30996. image: {
  30997. source: "./media/characters/arhan/front.svg",
  30998. extra: 3368 / 3133,
  30999. bottom: 0 / 3368
  31000. }
  31001. },
  31002. side: {
  31003. height: math.unit(4, "feet"),
  31004. name: "Side",
  31005. image: {
  31006. source: "./media/characters/arhan/side.svg",
  31007. extra: 3347 / 3105,
  31008. bottom: 0 / 3347
  31009. }
  31010. },
  31011. tongue: {
  31012. height: math.unit(1.42, "feet"),
  31013. name: "Tongue",
  31014. image: {
  31015. source: "./media/characters/arhan/tongue.svg"
  31016. }
  31017. },
  31018. head: {
  31019. height: math.unit(0.85, "feet"),
  31020. name: "Head",
  31021. image: {
  31022. source: "./media/characters/arhan/head.svg"
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(4, "feet"),
  31030. default: true
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(5 + 7.5 / 12, "feet"),
  31039. weight: math.unit(120, "lb"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/digi-duncan/front.svg",
  31043. extra: 330 / 326,
  31044. bottom: 16 / 346
  31045. }
  31046. },
  31047. side: {
  31048. height: math.unit(5 + 7.5 / 12, "feet"),
  31049. weight: math.unit(120, "lb"),
  31050. name: "Side",
  31051. image: {
  31052. source: "./media/characters/digi-duncan/side.svg",
  31053. extra: 341 / 337,
  31054. bottom: 1 / 342
  31055. }
  31056. },
  31057. back: {
  31058. height: math.unit(5 + 7.5 / 12, "feet"),
  31059. weight: math.unit(120, "lb"),
  31060. name: "Back",
  31061. image: {
  31062. source: "./media/characters/digi-duncan/back.svg",
  31063. extra: 330 / 326,
  31064. bottom: 12 / 342
  31065. }
  31066. },
  31067. },
  31068. [
  31069. {
  31070. name: "Speck",
  31071. height: math.unit(0.25, "mm")
  31072. },
  31073. {
  31074. name: "Micro",
  31075. height: math.unit(5, "mm")
  31076. },
  31077. {
  31078. name: "Tiny",
  31079. height: math.unit(0.5, "inches"),
  31080. default: true
  31081. },
  31082. {
  31083. name: "Human",
  31084. height: math.unit(5 + 7.5 / 12, "feet")
  31085. },
  31086. {
  31087. name: "Minigiant",
  31088. height: math.unit(8 + 5.25, "feet")
  31089. },
  31090. {
  31091. name: "Giant",
  31092. height: math.unit(2000, "feet")
  31093. },
  31094. {
  31095. name: "Mega",
  31096. height: math.unit(371.1, "miles")
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31102. {
  31103. front: {
  31104. height: math.unit(2, "meters"),
  31105. weight: math.unit(350, "kg"),
  31106. name: "Front",
  31107. image: {
  31108. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31109. extra: 898 / 838,
  31110. bottom: 9 / 907
  31111. }
  31112. },
  31113. },
  31114. [
  31115. {
  31116. name: "Micro",
  31117. height: math.unit(8, "meters")
  31118. },
  31119. {
  31120. name: "Normal",
  31121. height: math.unit(50, "meters"),
  31122. default: true
  31123. },
  31124. {
  31125. name: "Macro",
  31126. height: math.unit(500, "meters")
  31127. },
  31128. ]
  31129. ))
  31130. characterMakers.push(() => makeCharacter(
  31131. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31132. {
  31133. front: {
  31134. height: math.unit(6 + 6 / 12, "feet"),
  31135. name: "Front",
  31136. image: {
  31137. source: "./media/characters/khardesh/front.svg",
  31138. extra: 1788/1596,
  31139. bottom: 66/1854
  31140. }
  31141. },
  31142. back: {
  31143. height: math.unit(6 + 6 / 12, "feet"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/khardesh/back.svg",
  31147. extra: 1781/1584,
  31148. bottom: 68/1849
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(6 + 6 / 12, "feet"),
  31156. default: true
  31157. },
  31158. {
  31159. name: "Normal+",
  31160. height: math.unit(4, "meters")
  31161. },
  31162. {
  31163. name: "Macro",
  31164. height: math.unit(50, "meters")
  31165. },
  31166. {
  31167. name: "Macro+",
  31168. height: math.unit(100, "meters")
  31169. },
  31170. {
  31171. name: "Megamacro",
  31172. height: math.unit(20, "km")
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31178. {
  31179. front: {
  31180. height: math.unit(6, "feet"),
  31181. weight: math.unit(150, "lb"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/kosho/front.svg",
  31185. extra: 1847 / 1847,
  31186. bottom: 86 / 1933
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Second-stage micro",
  31193. height: math.unit(0.5, "inches")
  31194. },
  31195. {
  31196. name: "First-stage micro",
  31197. height: math.unit(6, "inches")
  31198. },
  31199. {
  31200. name: "Normal",
  31201. height: math.unit(6, "feet"),
  31202. default: true
  31203. },
  31204. {
  31205. name: "First-stage macro",
  31206. height: math.unit(72, "feet")
  31207. },
  31208. {
  31209. name: "Second-stage macro",
  31210. height: math.unit(864, "feet")
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31216. {
  31217. normal: {
  31218. height: math.unit(4 + 6 / 12, "feet"),
  31219. name: "Normal",
  31220. image: {
  31221. source: "./media/characters/hydra/normal.svg",
  31222. extra: 2833 / 2634,
  31223. bottom: 68 / 2901
  31224. }
  31225. },
  31226. smol: {
  31227. height: math.unit(0.705, "inches"),
  31228. name: "Smol",
  31229. image: {
  31230. source: "./media/characters/hydra/smol.svg",
  31231. extra: 2715 / 2540,
  31232. bottom: 0 / 2715
  31233. }
  31234. },
  31235. },
  31236. [
  31237. {
  31238. name: "Normal",
  31239. height: math.unit(4 + 6 / 12, "feet"),
  31240. default: true
  31241. }
  31242. ]
  31243. ))
  31244. characterMakers.push(() => makeCharacter(
  31245. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31246. {
  31247. front: {
  31248. height: math.unit(0.6, "cm"),
  31249. name: "Front",
  31250. image: {
  31251. source: "./media/characters/daz/front.svg",
  31252. extra: 1682 / 1164,
  31253. bottom: 42 / 1724
  31254. }
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(0.6, "cm"),
  31261. default: true
  31262. },
  31263. ]
  31264. ))
  31265. characterMakers.push(() => makeCharacter(
  31266. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31267. {
  31268. front: {
  31269. height: math.unit(6, "feet"),
  31270. weight: math.unit(235, "lb"),
  31271. name: "Front",
  31272. image: {
  31273. source: "./media/characters/theo-pangolin/front.svg",
  31274. extra: 1996 / 1969,
  31275. bottom: 115 / 2111
  31276. }
  31277. },
  31278. back: {
  31279. height: math.unit(6, "feet"),
  31280. weight: math.unit(235, "lb"),
  31281. name: "Back",
  31282. image: {
  31283. source: "./media/characters/theo-pangolin/back.svg",
  31284. extra: 1979 / 1979,
  31285. bottom: 40 / 2019
  31286. }
  31287. },
  31288. feral: {
  31289. height: math.unit(2, "feet"),
  31290. weight: math.unit(30, "lb"),
  31291. name: "Feral",
  31292. image: {
  31293. source: "./media/characters/theo-pangolin/feral.svg",
  31294. extra: 803 / 791,
  31295. bottom: 181 / 984
  31296. }
  31297. },
  31298. footFive: {
  31299. height: math.unit(1.43, "feet"),
  31300. name: "Foot (Five Toes)",
  31301. image: {
  31302. source: "./media/characters/theo-pangolin/foot-five.svg"
  31303. }
  31304. },
  31305. footFour: {
  31306. height: math.unit(1.43, "feet"),
  31307. name: "Foot (Four Toes)",
  31308. image: {
  31309. source: "./media/characters/theo-pangolin/foot-four.svg"
  31310. }
  31311. },
  31312. handFour: {
  31313. height: math.unit(0.81, "feet"),
  31314. name: "Hand (Four Fingers)",
  31315. image: {
  31316. source: "./media/characters/theo-pangolin/hand-four.svg"
  31317. }
  31318. },
  31319. handThree: {
  31320. height: math.unit(0.81, "feet"),
  31321. name: "Hand (Three Fingers)",
  31322. image: {
  31323. source: "./media/characters/theo-pangolin/hand-three.svg"
  31324. }
  31325. },
  31326. headFront: {
  31327. height: math.unit(1.37, "feet"),
  31328. name: "Head (Front)",
  31329. image: {
  31330. source: "./media/characters/theo-pangolin/head-front.svg"
  31331. }
  31332. },
  31333. headSide: {
  31334. height: math.unit(1.43, "feet"),
  31335. name: "Head (Side)",
  31336. image: {
  31337. source: "./media/characters/theo-pangolin/head-side.svg"
  31338. }
  31339. },
  31340. tongue: {
  31341. height: math.unit(2.29, "feet"),
  31342. name: "Tongue",
  31343. image: {
  31344. source: "./media/characters/theo-pangolin/tongue.svg"
  31345. }
  31346. },
  31347. },
  31348. [
  31349. {
  31350. name: "Normal",
  31351. height: math.unit(6, "feet")
  31352. },
  31353. {
  31354. name: "Macro",
  31355. height: math.unit(400, "feet"),
  31356. default: true
  31357. },
  31358. ]
  31359. ))
  31360. characterMakers.push(() => makeCharacter(
  31361. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31362. {
  31363. front: {
  31364. height: math.unit(6, "inches"),
  31365. weight: math.unit(0.036, "kg"),
  31366. name: "Front",
  31367. image: {
  31368. source: "./media/characters/renée/front.svg",
  31369. extra: 900 / 886,
  31370. bottom: 8 / 908
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Nano",
  31377. height: math.unit(1, "nm")
  31378. },
  31379. {
  31380. name: "Micro",
  31381. height: math.unit(1, "mm")
  31382. },
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(6, "inches")
  31386. },
  31387. {
  31388. name: "Macro",
  31389. height: math.unit(2000, "feet"),
  31390. default: true
  31391. },
  31392. {
  31393. name: "Megamacro",
  31394. height: math.unit(2, "km")
  31395. },
  31396. {
  31397. name: "Gigamacro",
  31398. height: math.unit(2000, "km")
  31399. },
  31400. {
  31401. name: "Teramacro",
  31402. height: math.unit(250000, "km")
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31408. {
  31409. front: {
  31410. height: math.unit(4, "meters"),
  31411. weight: math.unit(150, "kg"),
  31412. name: "Front",
  31413. image: {
  31414. source: "./media/characters/caledvwlch/front.svg",
  31415. extra: 1760 / 1551,
  31416. bottom: 28 / 1788
  31417. }
  31418. },
  31419. side: {
  31420. height: math.unit(4, "meters"),
  31421. weight: math.unit(150, "kg"),
  31422. name: "Side",
  31423. image: {
  31424. source: "./media/characters/caledvwlch/side.svg",
  31425. extra: 1605 / 1536,
  31426. bottom: 31 / 1636
  31427. }
  31428. },
  31429. back: {
  31430. height: math.unit(4, "meters"),
  31431. weight: math.unit(150, "kg"),
  31432. name: "Back",
  31433. image: {
  31434. source: "./media/characters/caledvwlch/back.svg",
  31435. extra: 1635 / 1565,
  31436. bottom: 27 / 1662
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "\"Incognito\"",
  31443. height: math.unit(4, "meters")
  31444. },
  31445. {
  31446. name: "Small rampage",
  31447. height: math.unit(600, "meters")
  31448. },
  31449. {
  31450. name: "Mega",
  31451. height: math.unit(30, "km")
  31452. },
  31453. {
  31454. name: "Home-size",
  31455. height: math.unit(50, "km"),
  31456. default: true
  31457. },
  31458. {
  31459. name: "Giga",
  31460. height: math.unit(300, "km")
  31461. },
  31462. {
  31463. name: "Lounging",
  31464. height: math.unit(11000, "km")
  31465. },
  31466. {
  31467. name: "Planet snacking",
  31468. height: math.unit(2000000, "km")
  31469. },
  31470. ]
  31471. ))
  31472. characterMakers.push(() => makeCharacter(
  31473. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31474. {
  31475. front: {
  31476. height: math.unit(6, "feet"),
  31477. weight: math.unit(215, "lb"),
  31478. name: "Front",
  31479. image: {
  31480. source: "./media/characters/sapphire-svell/front.svg",
  31481. extra: 495 / 455,
  31482. bottom: 20 / 515
  31483. }
  31484. },
  31485. back: {
  31486. height: math.unit(6, "feet"),
  31487. weight: math.unit(216, "lb"),
  31488. name: "Back",
  31489. image: {
  31490. source: "./media/characters/sapphire-svell/back.svg",
  31491. extra: 497 / 477,
  31492. bottom: 7 / 504
  31493. }
  31494. },
  31495. maw: {
  31496. height: math.unit(1.57, "feet"),
  31497. name: "Maw",
  31498. image: {
  31499. source: "./media/characters/sapphire-svell/maw.svg"
  31500. }
  31501. },
  31502. foot: {
  31503. height: math.unit(1.07, "feet"),
  31504. name: "Foot",
  31505. image: {
  31506. source: "./media/characters/sapphire-svell/foot.svg"
  31507. }
  31508. },
  31509. toering: {
  31510. height: math.unit(1.7, "inch"),
  31511. name: "Toering",
  31512. image: {
  31513. source: "./media/characters/sapphire-svell/toering.svg"
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Normal",
  31520. height: math.unit(300, "feet"),
  31521. default: true
  31522. },
  31523. {
  31524. name: "Augmented",
  31525. height: math.unit(1250, "feet")
  31526. },
  31527. {
  31528. name: "Unleashed",
  31529. height: math.unit(3000, "feet")
  31530. },
  31531. ]
  31532. ))
  31533. characterMakers.push(() => makeCharacter(
  31534. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31535. {
  31536. side: {
  31537. height: math.unit(2 + 3 / 12, "feet"),
  31538. weight: math.unit(110, "lb"),
  31539. name: "Side",
  31540. image: {
  31541. source: "./media/characters/glitch-flux/side.svg",
  31542. extra: 997 / 805,
  31543. bottom: 20 / 1017
  31544. }
  31545. },
  31546. },
  31547. [
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(2 + 3 / 12, "feet"),
  31551. default: true
  31552. },
  31553. ]
  31554. ))
  31555. characterMakers.push(() => makeCharacter(
  31556. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31557. {
  31558. front: {
  31559. height: math.unit(4, "meters"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/mid/front.svg",
  31563. extra: 507 / 476,
  31564. bottom: 17 / 524
  31565. }
  31566. },
  31567. back: {
  31568. height: math.unit(4, "meters"),
  31569. name: "Back",
  31570. image: {
  31571. source: "./media/characters/mid/back.svg",
  31572. extra: 519 / 487,
  31573. bottom: 7 / 526
  31574. }
  31575. },
  31576. stuck: {
  31577. height: math.unit(2.2, "meters"),
  31578. name: "Stuck",
  31579. image: {
  31580. source: "./media/characters/mid/stuck.svg",
  31581. extra: 1951 / 1869,
  31582. bottom: 88 / 2039
  31583. }
  31584. }
  31585. },
  31586. [
  31587. {
  31588. name: "Normal",
  31589. height: math.unit(4, "meters"),
  31590. default: true
  31591. },
  31592. {
  31593. name: "Big",
  31594. height: math.unit(10, "meters")
  31595. },
  31596. {
  31597. name: "Macro",
  31598. height: math.unit(800, "meters")
  31599. },
  31600. {
  31601. name: "Megamacro",
  31602. height: math.unit(100, "km")
  31603. },
  31604. {
  31605. name: "Overgrown",
  31606. height: math.unit(1, "parsec")
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31612. {
  31613. front: {
  31614. height: math.unit(2.5, "meters"),
  31615. weight: math.unit(225, "kg"),
  31616. name: "Front",
  31617. image: {
  31618. source: "./media/characters/iris/front.svg",
  31619. extra: 3348 / 3251,
  31620. bottom: 205 / 3553
  31621. }
  31622. },
  31623. maw: {
  31624. height: math.unit(0.56, "meter"),
  31625. name: "Maw",
  31626. image: {
  31627. source: "./media/characters/iris/maw.svg"
  31628. }
  31629. },
  31630. },
  31631. [
  31632. {
  31633. name: "Mewter cat",
  31634. height: math.unit(1.2, "meters")
  31635. },
  31636. {
  31637. name: "Minimacro",
  31638. height: math.unit(2.5, "meters"),
  31639. default: true
  31640. },
  31641. {
  31642. name: "Macro",
  31643. height: math.unit(180, "meters")
  31644. },
  31645. {
  31646. name: "Megamacro",
  31647. height: math.unit(2746, "meters")
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(6, "feet"),
  31656. weight: math.unit(135, "lb"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/axel/front.svg",
  31660. extra: 908 / 908,
  31661. bottom: 58 / 966
  31662. }
  31663. },
  31664. side: {
  31665. height: math.unit(6, "feet"),
  31666. weight: math.unit(135, "lb"),
  31667. name: "Side",
  31668. image: {
  31669. source: "./media/characters/axel/side.svg",
  31670. extra: 958 / 958,
  31671. bottom: 11 / 969
  31672. }
  31673. },
  31674. back: {
  31675. height: math.unit(6, "feet"),
  31676. weight: math.unit(135, "lb"),
  31677. name: "Back",
  31678. image: {
  31679. source: "./media/characters/axel/back.svg",
  31680. extra: 887 / 887,
  31681. bottom: 34 / 921
  31682. }
  31683. },
  31684. head: {
  31685. height: math.unit(1.07, "feet"),
  31686. name: "Head",
  31687. image: {
  31688. source: "./media/characters/axel/head.svg"
  31689. }
  31690. },
  31691. beak: {
  31692. height: math.unit(1.4, "feet"),
  31693. name: "Beak",
  31694. image: {
  31695. source: "./media/characters/axel/beak.svg"
  31696. }
  31697. },
  31698. beakSide: {
  31699. height: math.unit(1.4, "feet"),
  31700. name: "Beak Side",
  31701. image: {
  31702. source: "./media/characters/axel/beak-side.svg"
  31703. }
  31704. },
  31705. sheath: {
  31706. height: math.unit(0.5, "feet"),
  31707. name: "Sheath",
  31708. image: {
  31709. source: "./media/characters/axel/sheath.svg"
  31710. }
  31711. },
  31712. dick: {
  31713. height: math.unit(0.98, "feet"),
  31714. name: "Dick",
  31715. image: {
  31716. source: "./media/characters/axel/dick.svg"
  31717. }
  31718. },
  31719. },
  31720. [
  31721. {
  31722. name: "Macro",
  31723. height: math.unit(68, "meters"),
  31724. default: true
  31725. },
  31726. ]
  31727. ))
  31728. characterMakers.push(() => makeCharacter(
  31729. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31730. {
  31731. front: {
  31732. height: math.unit(3.5, "meters"),
  31733. weight: math.unit(1200, "kg"),
  31734. name: "Front",
  31735. image: {
  31736. source: "./media/characters/joanna/front.svg",
  31737. extra: 1596 / 1488,
  31738. bottom: 29 / 1625
  31739. }
  31740. },
  31741. back: {
  31742. height: math.unit(3.5, "meters"),
  31743. weight: math.unit(1200, "kg"),
  31744. name: "Back",
  31745. image: {
  31746. source: "./media/characters/joanna/back.svg",
  31747. extra: 1594 / 1495,
  31748. bottom: 26 / 1620
  31749. }
  31750. },
  31751. frontShorts: {
  31752. height: math.unit(3.5, "meters"),
  31753. weight: math.unit(1200, "kg"),
  31754. name: "Front (Shorts)",
  31755. image: {
  31756. source: "./media/characters/joanna/front-shorts.svg",
  31757. extra: 1596 / 1488,
  31758. bottom: 29 / 1625
  31759. }
  31760. },
  31761. frontBiker: {
  31762. height: math.unit(3.5, "meters"),
  31763. weight: math.unit(1200, "kg"),
  31764. name: "Front (Biker)",
  31765. image: {
  31766. source: "./media/characters/joanna/front-biker.svg",
  31767. extra: 1596 / 1488,
  31768. bottom: 29 / 1625
  31769. }
  31770. },
  31771. backBiker: {
  31772. height: math.unit(3.5, "meters"),
  31773. weight: math.unit(1200, "kg"),
  31774. name: "Back (Biker)",
  31775. image: {
  31776. source: "./media/characters/joanna/back-biker.svg",
  31777. extra: 1594 / 1495,
  31778. bottom: 88 / 1682
  31779. }
  31780. },
  31781. bikeLeft: {
  31782. height: math.unit(2.4, "meters"),
  31783. weight: math.unit(1600, "kg"),
  31784. name: "Bike (Left)",
  31785. image: {
  31786. source: "./media/characters/joanna/bike-left.svg",
  31787. extra: 720 / 720,
  31788. bottom: 8 / 728
  31789. }
  31790. },
  31791. bikeRight: {
  31792. height: math.unit(2.4, "meters"),
  31793. weight: math.unit(1600, "kg"),
  31794. name: "Bike (Right)",
  31795. image: {
  31796. source: "./media/characters/joanna/bike-right.svg",
  31797. extra: 720 / 720,
  31798. bottom: 8 / 728
  31799. }
  31800. },
  31801. },
  31802. [
  31803. {
  31804. name: "Incognito",
  31805. height: math.unit(3.5, "meters")
  31806. },
  31807. {
  31808. name: "Casual Big",
  31809. height: math.unit(200, "meters")
  31810. },
  31811. {
  31812. name: "Macro",
  31813. height: math.unit(600, "meters")
  31814. },
  31815. {
  31816. name: "Original",
  31817. height: math.unit(20, "km"),
  31818. default: true
  31819. },
  31820. {
  31821. name: "Giga",
  31822. height: math.unit(400, "km")
  31823. },
  31824. {
  31825. name: "Lounging",
  31826. height: math.unit(1500, "km")
  31827. },
  31828. {
  31829. name: "Planetary",
  31830. height: math.unit(200000, "km")
  31831. },
  31832. ]
  31833. ))
  31834. characterMakers.push(() => makeCharacter(
  31835. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31836. {
  31837. front: {
  31838. height: math.unit(6, "feet"),
  31839. weight: math.unit(150, "lb"),
  31840. name: "Front",
  31841. image: {
  31842. source: "./media/characters/hugo-sigil/front.svg",
  31843. extra: 522 / 500,
  31844. bottom: 2 / 524
  31845. }
  31846. },
  31847. back: {
  31848. height: math.unit(6, "feet"),
  31849. weight: math.unit(150, "lb"),
  31850. name: "Back",
  31851. image: {
  31852. source: "./media/characters/hugo-sigil/back.svg",
  31853. extra: 519 / 495,
  31854. bottom: 5 / 524
  31855. }
  31856. },
  31857. maw: {
  31858. height: math.unit(1.4, "feet"),
  31859. weight: math.unit(150, "lb"),
  31860. name: "Maw",
  31861. image: {
  31862. source: "./media/characters/hugo-sigil/maw.svg"
  31863. }
  31864. },
  31865. feet: {
  31866. height: math.unit(1.56, "feet"),
  31867. weight: math.unit(150, "lb"),
  31868. name: "Feet",
  31869. image: {
  31870. source: "./media/characters/hugo-sigil/feet.svg",
  31871. extra: 177 / 177,
  31872. bottom: 12 / 189
  31873. }
  31874. },
  31875. },
  31876. [
  31877. {
  31878. name: "Normal",
  31879. height: math.unit(6, "feet")
  31880. },
  31881. {
  31882. name: "Macro",
  31883. height: math.unit(200, "feet"),
  31884. default: true
  31885. },
  31886. ]
  31887. ))
  31888. characterMakers.push(() => makeCharacter(
  31889. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31890. {
  31891. front: {
  31892. height: math.unit(6, "feet"),
  31893. weight: math.unit(150, "lb"),
  31894. name: "Front",
  31895. image: {
  31896. source: "./media/characters/peri/front.svg",
  31897. extra: 2354 / 2233,
  31898. bottom: 49 / 2403
  31899. }
  31900. },
  31901. },
  31902. [
  31903. {
  31904. name: "Really Small",
  31905. height: math.unit(1, "nm")
  31906. },
  31907. {
  31908. name: "Micro",
  31909. height: math.unit(4, "inches")
  31910. },
  31911. {
  31912. name: "Normal",
  31913. height: math.unit(7, "inches"),
  31914. default: true
  31915. },
  31916. {
  31917. name: "Macro",
  31918. height: math.unit(400, "feet")
  31919. },
  31920. {
  31921. name: "Megamacro",
  31922. height: math.unit(100, "miles")
  31923. },
  31924. ]
  31925. ))
  31926. characterMakers.push(() => makeCharacter(
  31927. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31928. {
  31929. frontSlim: {
  31930. height: math.unit(7, "feet"),
  31931. name: "Front (Slim)",
  31932. image: {
  31933. source: "./media/characters/issilora/front-slim.svg",
  31934. extra: 529 / 449,
  31935. bottom: 53 / 582
  31936. }
  31937. },
  31938. sideSlim: {
  31939. height: math.unit(7, "feet"),
  31940. name: "Side (Slim)",
  31941. image: {
  31942. source: "./media/characters/issilora/side-slim.svg",
  31943. extra: 570 / 480,
  31944. bottom: 30 / 600
  31945. }
  31946. },
  31947. backSlim: {
  31948. height: math.unit(7, "feet"),
  31949. name: "Back (Slim)",
  31950. image: {
  31951. source: "./media/characters/issilora/back-slim.svg",
  31952. extra: 537 / 455,
  31953. bottom: 46 / 583
  31954. }
  31955. },
  31956. frontBuff: {
  31957. height: math.unit(7, "feet"),
  31958. name: "Front (Buff)",
  31959. image: {
  31960. source: "./media/characters/issilora/front-buff.svg",
  31961. extra: 2310 / 2035,
  31962. bottom: 335 / 2645
  31963. }
  31964. },
  31965. head: {
  31966. height: math.unit(1.94, "feet"),
  31967. name: "Head",
  31968. image: {
  31969. source: "./media/characters/issilora/head.svg"
  31970. }
  31971. },
  31972. },
  31973. [
  31974. {
  31975. name: "Minimum",
  31976. height: math.unit(7, "feet")
  31977. },
  31978. {
  31979. name: "Comfortable",
  31980. height: math.unit(17, "feet")
  31981. },
  31982. {
  31983. name: "Fun Size",
  31984. height: math.unit(47, "feet")
  31985. },
  31986. {
  31987. name: "Natural Macro",
  31988. height: math.unit(137, "feet"),
  31989. default: true
  31990. },
  31991. {
  31992. name: "Maximum Kaiju",
  31993. height: math.unit(397, "feet")
  31994. },
  31995. ]
  31996. ))
  31997. characterMakers.push(() => makeCharacter(
  31998. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31999. {
  32000. front: {
  32001. height: math.unit(50 + 9/12, "feet"),
  32002. weight: math.unit(32.8, "tons"),
  32003. name: "Front",
  32004. image: {
  32005. source: "./media/characters/irb'iiritaahn/front.svg",
  32006. extra: 1878/1826,
  32007. bottom: 326/2204
  32008. }
  32009. },
  32010. back: {
  32011. height: math.unit(50 + 9/12, "feet"),
  32012. weight: math.unit(32.8, "tons"),
  32013. name: "Back",
  32014. image: {
  32015. source: "./media/characters/irb'iiritaahn/back.svg",
  32016. extra: 2052/2018,
  32017. bottom: 152/2204
  32018. }
  32019. },
  32020. head: {
  32021. height: math.unit(12.86, "feet"),
  32022. name: "Head",
  32023. image: {
  32024. source: "./media/characters/irb'iiritaahn/head.svg"
  32025. }
  32026. },
  32027. maw: {
  32028. height: math.unit(9.66, "feet"),
  32029. name: "Maw",
  32030. image: {
  32031. source: "./media/characters/irb'iiritaahn/maw.svg"
  32032. }
  32033. },
  32034. frontDick: {
  32035. height: math.unit(8.78461, "feet"),
  32036. name: "Front Dick",
  32037. image: {
  32038. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32039. }
  32040. },
  32041. rearDick: {
  32042. height: math.unit(8.78461, "feet"),
  32043. name: "Rear Dick",
  32044. image: {
  32045. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32046. }
  32047. },
  32048. rearDickUnfolded: {
  32049. height: math.unit(8.78, "feet"),
  32050. name: "Rear Dick (Unfolded)",
  32051. image: {
  32052. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32053. }
  32054. },
  32055. wings: {
  32056. height: math.unit(43, "feet"),
  32057. name: "Wings",
  32058. image: {
  32059. source: "./media/characters/irb'iiritaahn/wings.svg"
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Macro",
  32066. height: math.unit(50 + 9/12, "feet"),
  32067. default: true
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32073. {
  32074. front: {
  32075. height: math.unit(205, "cm"),
  32076. weight: math.unit(102, "kg"),
  32077. name: "Front",
  32078. image: {
  32079. source: "./media/characters/irbisgreif/front.svg",
  32080. extra: 785/706,
  32081. bottom: 13/798
  32082. }
  32083. },
  32084. back: {
  32085. height: math.unit(205, "cm"),
  32086. weight: math.unit(102, "kg"),
  32087. name: "Back",
  32088. image: {
  32089. source: "./media/characters/irbisgreif/back.svg",
  32090. extra: 713/701,
  32091. bottom: 26/739
  32092. }
  32093. },
  32094. frontDressed: {
  32095. height: math.unit(216, "cm"),
  32096. weight: math.unit(102, "kg"),
  32097. name: "Front-dressed",
  32098. image: {
  32099. source: "./media/characters/irbisgreif/front-dressed.svg",
  32100. extra: 902/776,
  32101. bottom: 14/916
  32102. }
  32103. },
  32104. sideDressed: {
  32105. height: math.unit(195, "cm"),
  32106. weight: math.unit(102, "kg"),
  32107. name: "Side-dressed",
  32108. image: {
  32109. source: "./media/characters/irbisgreif/side-dressed.svg",
  32110. extra: 788/688,
  32111. bottom: 21/809
  32112. }
  32113. },
  32114. backDressed: {
  32115. height: math.unit(216, "cm"),
  32116. weight: math.unit(102, "kg"),
  32117. name: "Back-dressed",
  32118. image: {
  32119. source: "./media/characters/irbisgreif/back-dressed.svg",
  32120. extra: 901/783,
  32121. bottom: 10/911
  32122. }
  32123. },
  32124. dick: {
  32125. height: math.unit(0.49, "feet"),
  32126. name: "Dick",
  32127. image: {
  32128. source: "./media/characters/irbisgreif/dick.svg"
  32129. }
  32130. },
  32131. wingTop: {
  32132. height: math.unit(1.93 , "feet"),
  32133. name: "Wing-top",
  32134. image: {
  32135. source: "./media/characters/irbisgreif/wing-top.svg"
  32136. }
  32137. },
  32138. wingBottom: {
  32139. height: math.unit(1.93 , "feet"),
  32140. name: "Wing-bottom",
  32141. image: {
  32142. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32143. }
  32144. },
  32145. },
  32146. [
  32147. {
  32148. name: "Normal",
  32149. height: math.unit(216, "cm"),
  32150. default: true
  32151. },
  32152. ]
  32153. ))
  32154. characterMakers.push(() => makeCharacter(
  32155. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32156. {
  32157. front: {
  32158. height: math.unit(6, "feet"),
  32159. weight: math.unit(150, "lb"),
  32160. name: "Front",
  32161. image: {
  32162. source: "./media/characters/pride/front.svg",
  32163. extra: 1299/1230,
  32164. bottom: 18/1317
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Normal",
  32171. height: math.unit(7, "feet")
  32172. },
  32173. {
  32174. name: "Mini-macro",
  32175. height: math.unit(11, "feet")
  32176. },
  32177. {
  32178. name: "Macro",
  32179. height: math.unit(15, "meters"),
  32180. default: true
  32181. },
  32182. {
  32183. name: "Macro+",
  32184. height: math.unit(40, "meters")
  32185. },
  32186. ]
  32187. ))
  32188. characterMakers.push(() => makeCharacter(
  32189. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32190. {
  32191. front: {
  32192. height: math.unit(4 + 2 / 12, "feet"),
  32193. weight: math.unit(95, "lb"),
  32194. name: "Front",
  32195. image: {
  32196. source: "./media/characters/vaelophis-nyx/front.svg",
  32197. extra: 2532/2330,
  32198. bottom: 0/2532
  32199. }
  32200. },
  32201. back: {
  32202. height: math.unit(4 + 2 / 12, "feet"),
  32203. weight: math.unit(95, "lb"),
  32204. name: "Back",
  32205. image: {
  32206. source: "./media/characters/vaelophis-nyx/back.svg",
  32207. extra: 2484/2361,
  32208. bottom: 0/2484
  32209. }
  32210. },
  32211. feralSide: {
  32212. height: math.unit(2 + 1/12, "feet"),
  32213. weight: math.unit(20, "lb"),
  32214. name: "Feral (Side)",
  32215. image: {
  32216. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32217. extra: 1721/1581,
  32218. bottom: 70/1791
  32219. }
  32220. },
  32221. feralLazing: {
  32222. height: math.unit(1.08, "feet"),
  32223. weight: math.unit(20, "lb"),
  32224. name: "Feral (Lazing)",
  32225. image: {
  32226. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32227. extra: 822/822,
  32228. bottom: 248/1070
  32229. }
  32230. },
  32231. ear: {
  32232. height: math.unit(0.416, "feet"),
  32233. name: "Ear",
  32234. image: {
  32235. source: "./media/characters/vaelophis-nyx/ear.svg"
  32236. }
  32237. },
  32238. eye: {
  32239. height: math.unit(0.0748, "feet"),
  32240. name: "Eye",
  32241. image: {
  32242. source: "./media/characters/vaelophis-nyx/eye.svg"
  32243. }
  32244. },
  32245. mouth: {
  32246. height: math.unit(0.378, "feet"),
  32247. name: "Mouth",
  32248. image: {
  32249. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32250. }
  32251. },
  32252. spade: {
  32253. height: math.unit(0.55, "feet"),
  32254. name: "Spade",
  32255. image: {
  32256. source: "./media/characters/vaelophis-nyx/spade.svg"
  32257. }
  32258. },
  32259. },
  32260. [
  32261. {
  32262. name: "Normal",
  32263. height: math.unit(4 + 2/12, "feet"),
  32264. default: true
  32265. },
  32266. ]
  32267. ))
  32268. characterMakers.push(() => makeCharacter(
  32269. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32270. {
  32271. front: {
  32272. height: math.unit(7, "feet"),
  32273. weight: math.unit(231, "lb"),
  32274. name: "Front",
  32275. image: {
  32276. source: "./media/characters/flux/front.svg",
  32277. extra: 919/871,
  32278. bottom: 0/919
  32279. }
  32280. },
  32281. back: {
  32282. height: math.unit(7, "feet"),
  32283. weight: math.unit(231, "lb"),
  32284. name: "Back",
  32285. image: {
  32286. source: "./media/characters/flux/back.svg",
  32287. extra: 1040/992,
  32288. bottom: 0/1040
  32289. }
  32290. },
  32291. frontDressed: {
  32292. height: math.unit(7, "feet"),
  32293. weight: math.unit(231, "lb"),
  32294. name: "Front (Dressed)",
  32295. image: {
  32296. source: "./media/characters/flux/front-dressed.svg",
  32297. extra: 919/871,
  32298. bottom: 0/919
  32299. }
  32300. },
  32301. feralSide: {
  32302. height: math.unit(5, "feet"),
  32303. weight: math.unit(150, "lb"),
  32304. name: "Feral (Side)",
  32305. image: {
  32306. source: "./media/characters/flux/feral-side.svg",
  32307. extra: 598/528,
  32308. bottom: 28/626
  32309. }
  32310. },
  32311. head: {
  32312. height: math.unit(1.585, "feet"),
  32313. name: "Head",
  32314. image: {
  32315. source: "./media/characters/flux/head.svg"
  32316. }
  32317. },
  32318. headSide: {
  32319. height: math.unit(1.74, "feet"),
  32320. name: "Head (Side)",
  32321. image: {
  32322. source: "./media/characters/flux/head-side.svg"
  32323. }
  32324. },
  32325. headSideFire: {
  32326. height: math.unit(1.76, "feet"),
  32327. name: "Head (Side, Fire)",
  32328. image: {
  32329. source: "./media/characters/flux/head-side-fire.svg"
  32330. }
  32331. },
  32332. },
  32333. [
  32334. {
  32335. name: "Normal",
  32336. height: math.unit(7, "feet"),
  32337. default: true
  32338. },
  32339. ]
  32340. ))
  32341. characterMakers.push(() => makeCharacter(
  32342. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32343. {
  32344. front: {
  32345. height: math.unit(9, "feet"),
  32346. weight: math.unit(1012, "lb"),
  32347. name: "Front",
  32348. image: {
  32349. source: "./media/characters/ulfra-lupae/front.svg",
  32350. extra: 1083/1011,
  32351. bottom: 67/1150
  32352. }
  32353. },
  32354. },
  32355. [
  32356. {
  32357. name: "Micro",
  32358. height: math.unit(6, "inches")
  32359. },
  32360. {
  32361. name: "Socializing",
  32362. height: math.unit(6 + 5/12, "feet")
  32363. },
  32364. {
  32365. name: "Normal",
  32366. height: math.unit(9, "feet"),
  32367. default: true
  32368. },
  32369. {
  32370. name: "Macro",
  32371. height: math.unit(150, "feet")
  32372. },
  32373. ]
  32374. ))
  32375. characterMakers.push(() => makeCharacter(
  32376. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32377. {
  32378. front: {
  32379. height: math.unit(5 + 2/12, "feet"),
  32380. weight: math.unit(120, "lb"),
  32381. name: "Front",
  32382. image: {
  32383. source: "./media/characters/timber/front.svg",
  32384. extra: 2814/2705,
  32385. bottom: 181/2995
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(5 + 2/12, "feet"),
  32393. default: true
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32399. {
  32400. front: {
  32401. height: math.unit(9, "feet"),
  32402. name: "Front",
  32403. image: {
  32404. source: "./media/characters/nicki/front.svg",
  32405. extra: 1240/990,
  32406. bottom: 45/1285
  32407. },
  32408. form: "anthro",
  32409. default: true
  32410. },
  32411. side: {
  32412. height: math.unit(9, "feet"),
  32413. name: "Side",
  32414. image: {
  32415. source: "./media/characters/nicki/side.svg",
  32416. extra: 1047/973,
  32417. bottom: 61/1108
  32418. },
  32419. form: "anthro"
  32420. },
  32421. back: {
  32422. height: math.unit(9, "feet"),
  32423. name: "Back",
  32424. image: {
  32425. source: "./media/characters/nicki/back.svg",
  32426. extra: 1006/965,
  32427. bottom: 39/1045
  32428. },
  32429. form: "anthro"
  32430. },
  32431. taur: {
  32432. height: math.unit(15, "feet"),
  32433. name: "Taur",
  32434. image: {
  32435. source: "./media/characters/nicki/taur.svg",
  32436. extra: 1592/1347,
  32437. bottom: 0/1592
  32438. },
  32439. form: "taur",
  32440. default: true
  32441. },
  32442. },
  32443. [
  32444. {
  32445. name: "Normal",
  32446. height: math.unit(9, "feet"),
  32447. form: "anthro",
  32448. default: true
  32449. },
  32450. {
  32451. name: "Normal",
  32452. height: math.unit(15, "feet"),
  32453. form: "taur",
  32454. default: true
  32455. }
  32456. ],
  32457. {
  32458. "anthro": {
  32459. name: "Anthro",
  32460. default: true
  32461. },
  32462. "taur": {
  32463. name: "Taur"
  32464. }
  32465. }
  32466. ))
  32467. characterMakers.push(() => makeCharacter(
  32468. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32469. {
  32470. front: {
  32471. height: math.unit(7 + 10/12, "feet"),
  32472. weight: math.unit(3.5, "tons"),
  32473. name: "Front",
  32474. image: {
  32475. source: "./media/characters/lee/front.svg",
  32476. extra: 1773/1615,
  32477. bottom: 86/1859
  32478. }
  32479. },
  32480. hand: {
  32481. height: math.unit(1.78, "feet"),
  32482. name: "Hand",
  32483. image: {
  32484. source: "./media/characters/lee/hand.svg"
  32485. }
  32486. },
  32487. maw: {
  32488. height: math.unit(1.18, "feet"),
  32489. name: "Maw",
  32490. image: {
  32491. source: "./media/characters/lee/maw.svg"
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Normal",
  32498. height: math.unit(7 + 10/12, "feet"),
  32499. default: true
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32505. {
  32506. front: {
  32507. height: math.unit(9, "feet"),
  32508. name: "Front",
  32509. image: {
  32510. source: "./media/characters/guti/front.svg",
  32511. extra: 4551/4355,
  32512. bottom: 123/4674
  32513. }
  32514. },
  32515. tongue: {
  32516. height: math.unit(1, "feet"),
  32517. name: "Tongue",
  32518. image: {
  32519. source: "./media/characters/guti/tongue.svg"
  32520. }
  32521. },
  32522. paw: {
  32523. height: math.unit(1.18, "feet"),
  32524. name: "Paw",
  32525. image: {
  32526. source: "./media/characters/guti/paw.svg"
  32527. }
  32528. },
  32529. },
  32530. [
  32531. {
  32532. name: "Normal",
  32533. height: math.unit(9, "feet"),
  32534. default: true
  32535. },
  32536. ]
  32537. ))
  32538. characterMakers.push(() => makeCharacter(
  32539. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32540. {
  32541. side: {
  32542. height: math.unit(5, "meters"),
  32543. name: "Side",
  32544. image: {
  32545. source: "./media/characters/vesper/side.svg",
  32546. extra: 1605/1518,
  32547. bottom: 0/1605
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Small",
  32554. height: math.unit(5, "meters")
  32555. },
  32556. {
  32557. name: "Sage",
  32558. height: math.unit(100, "meters"),
  32559. default: true
  32560. },
  32561. {
  32562. name: "Fun Size",
  32563. height: math.unit(600, "meters")
  32564. },
  32565. {
  32566. name: "Goddess",
  32567. height: math.unit(20000, "km")
  32568. },
  32569. {
  32570. name: "Maximum",
  32571. height: math.unit(5, "galaxies")
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32577. {
  32578. front: {
  32579. height: math.unit(6 + 3/12, "feet"),
  32580. weight: math.unit(190, "lb"),
  32581. name: "Front",
  32582. image: {
  32583. source: "./media/characters/gawain/front.svg",
  32584. extra: 2222/2139,
  32585. bottom: 90/2312
  32586. }
  32587. },
  32588. back: {
  32589. height: math.unit(6 + 3/12, "feet"),
  32590. weight: math.unit(190, "lb"),
  32591. name: "Back",
  32592. image: {
  32593. source: "./media/characters/gawain/back.svg",
  32594. extra: 2199/2111,
  32595. bottom: 73/2272
  32596. }
  32597. },
  32598. },
  32599. [
  32600. {
  32601. name: "Normal",
  32602. height: math.unit(6 + 3/12, "feet"),
  32603. default: true
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32609. {
  32610. side: {
  32611. height: math.unit(3.5, "meters"),
  32612. weight: math.unit(16000, "lb"),
  32613. name: "Side",
  32614. image: {
  32615. source: "./media/characters/dascalti/side.svg",
  32616. extra: 392/273,
  32617. bottom: 47/439
  32618. }
  32619. },
  32620. breath: {
  32621. height: math.unit(7.4, "feet"),
  32622. name: "Breath",
  32623. image: {
  32624. source: "./media/characters/dascalti/breath.svg"
  32625. }
  32626. },
  32627. fed: {
  32628. height: math.unit(3.6, "meters"),
  32629. weight: math.unit(16000, "lb"),
  32630. name: "Fed",
  32631. image: {
  32632. source: "./media/characters/dascalti/fed.svg",
  32633. extra: 1419/820,
  32634. bottom: 95/1514
  32635. }
  32636. },
  32637. },
  32638. [
  32639. {
  32640. name: "Normal",
  32641. height: math.unit(3.5, "meters"),
  32642. default: true
  32643. },
  32644. ]
  32645. ))
  32646. characterMakers.push(() => makeCharacter(
  32647. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32648. {
  32649. front: {
  32650. height: math.unit(3 + 5/12, "feet"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/mauve/front.svg",
  32654. extra: 1126/1033,
  32655. bottom: 65/1191
  32656. }
  32657. },
  32658. side: {
  32659. height: math.unit(3 + 5/12, "feet"),
  32660. name: "Side",
  32661. image: {
  32662. source: "./media/characters/mauve/side.svg",
  32663. extra: 1089/1001,
  32664. bottom: 29/1118
  32665. }
  32666. },
  32667. back: {
  32668. height: math.unit(3 + 5/12, "feet"),
  32669. name: "Back",
  32670. image: {
  32671. source: "./media/characters/mauve/back.svg",
  32672. extra: 1173/1053,
  32673. bottom: 109/1282
  32674. }
  32675. },
  32676. },
  32677. [
  32678. {
  32679. name: "Normal",
  32680. height: math.unit(3 + 5/12, "feet"),
  32681. default: true
  32682. },
  32683. ]
  32684. ))
  32685. characterMakers.push(() => makeCharacter(
  32686. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32687. {
  32688. front: {
  32689. height: math.unit(6 + 3/12, "feet"),
  32690. weight: math.unit(430, "lb"),
  32691. name: "Front",
  32692. image: {
  32693. source: "./media/characters/carlos/front.svg",
  32694. extra: 1964/1913,
  32695. bottom: 70/2034
  32696. }
  32697. },
  32698. },
  32699. [
  32700. {
  32701. name: "Normal",
  32702. height: math.unit(6 + 3/12, "feet"),
  32703. default: true
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32709. {
  32710. back: {
  32711. height: math.unit(5 + 10/12, "feet"),
  32712. weight: math.unit(200, "lb"),
  32713. name: "Back",
  32714. image: {
  32715. source: "./media/characters/jax/back.svg",
  32716. extra: 764/739,
  32717. bottom: 25/789
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Normal",
  32724. height: math.unit(5 + 10/12, "feet"),
  32725. default: true
  32726. },
  32727. ]
  32728. ))
  32729. characterMakers.push(() => makeCharacter(
  32730. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32731. {
  32732. front: {
  32733. height: math.unit(8, "feet"),
  32734. weight: math.unit(250, "lb"),
  32735. name: "Front",
  32736. image: {
  32737. source: "./media/characters/eikthynir/front.svg",
  32738. extra: 1332/1166,
  32739. bottom: 82/1414
  32740. }
  32741. },
  32742. back: {
  32743. height: math.unit(8, "feet"),
  32744. weight: math.unit(250, "lb"),
  32745. name: "Back",
  32746. image: {
  32747. source: "./media/characters/eikthynir/back.svg",
  32748. extra: 1342/1190,
  32749. bottom: 19/1361
  32750. }
  32751. },
  32752. dick: {
  32753. height: math.unit(2.35, "feet"),
  32754. name: "Dick",
  32755. image: {
  32756. source: "./media/characters/eikthynir/dick.svg"
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(8, "feet"),
  32764. default: true
  32765. },
  32766. ]
  32767. ))
  32768. characterMakers.push(() => makeCharacter(
  32769. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32770. {
  32771. front: {
  32772. height: math.unit(99, "meters"),
  32773. weight: math.unit(13000, "tons"),
  32774. name: "Front",
  32775. image: {
  32776. source: "./media/characters/zlmos/front.svg",
  32777. extra: 2202/1992,
  32778. bottom: 315/2517
  32779. }
  32780. },
  32781. },
  32782. [
  32783. {
  32784. name: "Macro",
  32785. height: math.unit(99, "meters"),
  32786. default: true
  32787. },
  32788. ]
  32789. ))
  32790. characterMakers.push(() => makeCharacter(
  32791. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32792. {
  32793. front: {
  32794. height: math.unit(6 + 5/12, "feet"),
  32795. name: "Front",
  32796. image: {
  32797. source: "./media/characters/purri/front.svg",
  32798. extra: 1698/1610,
  32799. bottom: 32/1730
  32800. }
  32801. },
  32802. frontAlt: {
  32803. height: math.unit(6 + 5/12, "feet"),
  32804. name: "Front (Alt)",
  32805. image: {
  32806. source: "./media/characters/purri/front-alt.svg",
  32807. extra: 450/420,
  32808. bottom: 26/476
  32809. }
  32810. },
  32811. boots: {
  32812. height: math.unit(5.5, "feet"),
  32813. name: "Boots",
  32814. image: {
  32815. source: "./media/characters/purri/boots.svg",
  32816. extra: 905/853,
  32817. bottom: 18/923
  32818. }
  32819. },
  32820. lying: {
  32821. height: math.unit(2, "feet"),
  32822. name: "Lying",
  32823. image: {
  32824. source: "./media/characters/purri/lying.svg",
  32825. extra: 940/843,
  32826. bottom: 146/1086
  32827. }
  32828. },
  32829. devious: {
  32830. height: math.unit(1.77, "feet"),
  32831. name: "Devious",
  32832. image: {
  32833. source: "./media/characters/purri/devious.svg",
  32834. extra: 1440/1155,
  32835. bottom: 147/1587
  32836. }
  32837. },
  32838. bean: {
  32839. height: math.unit(1.94, "feet"),
  32840. name: "Bean",
  32841. image: {
  32842. source: "./media/characters/purri/bean.svg"
  32843. }
  32844. },
  32845. },
  32846. [
  32847. {
  32848. name: "Micro",
  32849. height: math.unit(1, "mm")
  32850. },
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(6 + 5/12, "feet"),
  32854. default: true
  32855. },
  32856. {
  32857. name: "Macro :3c",
  32858. height: math.unit(2, "miles")
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(6 + 2/12, "feet"),
  32867. weight: math.unit(250, "lb"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/moonlight/front.svg",
  32871. extra: 1044/908,
  32872. bottom: 56/1100
  32873. }
  32874. },
  32875. feral: {
  32876. height: math.unit(3 + 1/12, "feet"),
  32877. weight: math.unit(50, "kg"),
  32878. name: "Feral",
  32879. image: {
  32880. source: "./media/characters/moonlight/feral.svg",
  32881. extra: 3705/2791,
  32882. bottom: 145/3850
  32883. }
  32884. },
  32885. paw: {
  32886. height: math.unit(1, "feet"),
  32887. name: "Paw",
  32888. image: {
  32889. source: "./media/characters/moonlight/paw.svg"
  32890. }
  32891. },
  32892. paws: {
  32893. height: math.unit(0.98, "feet"),
  32894. name: "Paws",
  32895. image: {
  32896. source: "./media/characters/moonlight/paws.svg",
  32897. extra: 939/939,
  32898. bottom: 50/989
  32899. }
  32900. },
  32901. mouth: {
  32902. height: math.unit(0.48, "feet"),
  32903. name: "Mouth",
  32904. image: {
  32905. source: "./media/characters/moonlight/mouth.svg"
  32906. }
  32907. },
  32908. dick: {
  32909. height: math.unit(1.46, "feet"),
  32910. name: "Dick",
  32911. image: {
  32912. source: "./media/characters/moonlight/dick.svg"
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Normal",
  32919. height: math.unit(6 + 2/12, "feet"),
  32920. default: true
  32921. },
  32922. {
  32923. name: "Macro",
  32924. height: math.unit(300, "feet")
  32925. },
  32926. {
  32927. name: "Macro+",
  32928. height: math.unit(1, "mile")
  32929. },
  32930. {
  32931. name: "Mt. Moon",
  32932. height: math.unit(5, "miles")
  32933. },
  32934. {
  32935. name: "Megamacro",
  32936. height: math.unit(15, "miles")
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32942. {
  32943. back: {
  32944. height: math.unit(6, "feet"),
  32945. weight: math.unit(150, "lb"),
  32946. name: "Back",
  32947. image: {
  32948. source: "./media/characters/sylen/back.svg",
  32949. extra: 1335/1273,
  32950. bottom: 107/1442
  32951. }
  32952. },
  32953. },
  32954. [
  32955. {
  32956. name: "Normal",
  32957. height: math.unit(5 + 5/12, "feet")
  32958. },
  32959. {
  32960. name: "Megamacro",
  32961. height: math.unit(3, "miles"),
  32962. default: true
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32968. {
  32969. front: {
  32970. height: math.unit(6, "feet"),
  32971. weight: math.unit(190, "lb"),
  32972. name: "Front",
  32973. image: {
  32974. source: "./media/characters/huttser/front.svg",
  32975. extra: 1152/1058,
  32976. bottom: 23/1175
  32977. }
  32978. },
  32979. side: {
  32980. height: math.unit(6, "feet"),
  32981. weight: math.unit(190, "lb"),
  32982. name: "Side",
  32983. image: {
  32984. source: "./media/characters/huttser/side.svg",
  32985. extra: 1174/1065,
  32986. bottom: 18/1192
  32987. }
  32988. },
  32989. back: {
  32990. height: math.unit(6, "feet"),
  32991. weight: math.unit(190, "lb"),
  32992. name: "Back",
  32993. image: {
  32994. source: "./media/characters/huttser/back.svg",
  32995. extra: 1158/1056,
  32996. bottom: 12/1170
  32997. }
  32998. },
  32999. },
  33000. [
  33001. ]
  33002. ))
  33003. characterMakers.push(() => makeCharacter(
  33004. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33005. {
  33006. side: {
  33007. height: math.unit(12 + 9/12, "feet"),
  33008. weight: math.unit(15000, "lb"),
  33009. name: "Side",
  33010. image: {
  33011. source: "./media/characters/faan/side.svg",
  33012. extra: 2747/2697,
  33013. bottom: 0/2747
  33014. }
  33015. },
  33016. front: {
  33017. height: math.unit(12 + 9/12, "feet"),
  33018. weight: math.unit(15000, "lb"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/faan/front.svg",
  33022. extra: 607/571,
  33023. bottom: 24/631
  33024. }
  33025. },
  33026. head: {
  33027. height: math.unit(2.85, "feet"),
  33028. name: "Head",
  33029. image: {
  33030. source: "./media/characters/faan/head.svg"
  33031. }
  33032. },
  33033. headAlt: {
  33034. height: math.unit(3.13, "feet"),
  33035. name: "Head-alt",
  33036. image: {
  33037. source: "./media/characters/faan/head-alt.svg"
  33038. }
  33039. },
  33040. },
  33041. [
  33042. {
  33043. name: "Normal",
  33044. height: math.unit(12 + 9/12, "feet"),
  33045. default: true
  33046. },
  33047. ]
  33048. ))
  33049. characterMakers.push(() => makeCharacter(
  33050. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33051. {
  33052. front: {
  33053. height: math.unit(6, "feet"),
  33054. weight: math.unit(300, "lb"),
  33055. name: "Front",
  33056. image: {
  33057. source: "./media/characters/tanio/front.svg",
  33058. extra: 711/673,
  33059. bottom: 25/736
  33060. }
  33061. },
  33062. },
  33063. [
  33064. {
  33065. name: "Normal",
  33066. height: math.unit(6, "feet"),
  33067. default: true
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33073. {
  33074. front: {
  33075. height: math.unit(3, "inches"),
  33076. name: "Front",
  33077. image: {
  33078. source: "./media/characters/noboru/front.svg",
  33079. extra: 1039/932,
  33080. bottom: 18/1057
  33081. }
  33082. },
  33083. },
  33084. [
  33085. {
  33086. name: "Micro",
  33087. height: math.unit(3, "inches"),
  33088. default: true
  33089. },
  33090. ]
  33091. ))
  33092. characterMakers.push(() => makeCharacter(
  33093. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33094. {
  33095. front: {
  33096. height: math.unit(1.85, "meters"),
  33097. weight: math.unit(80, "kg"),
  33098. name: "Front",
  33099. image: {
  33100. source: "./media/characters/daniel-barrett/front.svg",
  33101. extra: 355/337,
  33102. bottom: 9/364
  33103. }
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Pico",
  33109. height: math.unit(0.0433, "mm")
  33110. },
  33111. {
  33112. name: "Nano",
  33113. height: math.unit(1.5, "mm")
  33114. },
  33115. {
  33116. name: "Micro",
  33117. height: math.unit(5.3, "cm"),
  33118. default: true
  33119. },
  33120. {
  33121. name: "Normal",
  33122. height: math.unit(1.85, "meters")
  33123. },
  33124. {
  33125. name: "Macro",
  33126. height: math.unit(64.7, "meters")
  33127. },
  33128. {
  33129. name: "Megamacro",
  33130. height: math.unit(2.26, "km")
  33131. },
  33132. {
  33133. name: "Gigamacro",
  33134. height: math.unit(79, "km")
  33135. },
  33136. {
  33137. name: "Teramacro",
  33138. height: math.unit(2765, "km")
  33139. },
  33140. {
  33141. name: "Petamacro",
  33142. height: math.unit(96678, "km")
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33148. {
  33149. front: {
  33150. height: math.unit(30, "meters"),
  33151. weight: math.unit(400, "tons"),
  33152. name: "Front",
  33153. image: {
  33154. source: "./media/characters/zeel/front.svg",
  33155. extra: 2599/2599,
  33156. bottom: 226/2825
  33157. }
  33158. },
  33159. },
  33160. [
  33161. {
  33162. name: "Macro",
  33163. height: math.unit(30, "meters"),
  33164. default: true
  33165. },
  33166. ]
  33167. ))
  33168. characterMakers.push(() => makeCharacter(
  33169. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33170. {
  33171. front: {
  33172. height: math.unit(6 + 7/12, "feet"),
  33173. weight: math.unit(210, "lb"),
  33174. name: "Front",
  33175. image: {
  33176. source: "./media/characters/tarn/front.svg",
  33177. extra: 3517/3220,
  33178. bottom: 91/3608
  33179. }
  33180. },
  33181. back: {
  33182. height: math.unit(6 + 7/12, "feet"),
  33183. weight: math.unit(210, "lb"),
  33184. name: "Back",
  33185. image: {
  33186. source: "./media/characters/tarn/back.svg",
  33187. extra: 3566/3241,
  33188. bottom: 34/3600
  33189. }
  33190. },
  33191. dick: {
  33192. height: math.unit(1.65, "feet"),
  33193. name: "Dick",
  33194. image: {
  33195. source: "./media/characters/tarn/dick.svg"
  33196. }
  33197. },
  33198. paw: {
  33199. height: math.unit(1.80, "feet"),
  33200. name: "Paw",
  33201. image: {
  33202. source: "./media/characters/tarn/paw.svg"
  33203. }
  33204. },
  33205. tongue: {
  33206. height: math.unit(0.97, "feet"),
  33207. name: "Tongue",
  33208. image: {
  33209. source: "./media/characters/tarn/tongue.svg"
  33210. }
  33211. },
  33212. },
  33213. [
  33214. {
  33215. name: "Micro",
  33216. height: math.unit(4, "inches")
  33217. },
  33218. {
  33219. name: "Normal",
  33220. height: math.unit(6 + 7/12, "feet"),
  33221. default: true
  33222. },
  33223. {
  33224. name: "Macro",
  33225. height: math.unit(300, "feet")
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33231. {
  33232. front: {
  33233. height: math.unit(5 + 7/12, "feet"),
  33234. weight: math.unit(80, "kg"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33238. extra: 3023/2865,
  33239. bottom: 33/3056
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(5 + 7/12, "feet"),
  33244. weight: math.unit(80, "kg"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33248. extra: 3020/2886,
  33249. bottom: 30/3050
  33250. }
  33251. },
  33252. dick: {
  33253. height: math.unit(0.98, "feet"),
  33254. name: "Dick",
  33255. image: {
  33256. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33257. }
  33258. },
  33259. anatomy: {
  33260. height: math.unit(2.86, "feet"),
  33261. name: "Anatomy",
  33262. image: {
  33263. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Really Small",
  33270. height: math.unit(2, "inches")
  33271. },
  33272. {
  33273. name: "Micro",
  33274. height: math.unit(5.583, "inches")
  33275. },
  33276. {
  33277. name: "Normal",
  33278. height: math.unit(5 + 7/12, "feet"),
  33279. default: true
  33280. },
  33281. {
  33282. name: "Macro",
  33283. height: math.unit(67, "feet")
  33284. },
  33285. {
  33286. name: "Megamacro",
  33287. height: math.unit(134, "feet")
  33288. },
  33289. ]
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33293. {
  33294. front: {
  33295. height: math.unit(9, "feet"),
  33296. weight: math.unit(120, "lb"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/sally/front.svg",
  33300. extra: 1506/1349,
  33301. bottom: 66/1572
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(9, "feet"),
  33309. default: true
  33310. },
  33311. ]
  33312. ))
  33313. characterMakers.push(() => makeCharacter(
  33314. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33315. {
  33316. front: {
  33317. height: math.unit(8, "feet"),
  33318. weight: math.unit(900, "lb"),
  33319. name: "Front",
  33320. image: {
  33321. source: "./media/characters/owen/front.svg",
  33322. extra: 1761/1657,
  33323. bottom: 74/1835
  33324. }
  33325. },
  33326. side: {
  33327. height: math.unit(8, "feet"),
  33328. weight: math.unit(900, "lb"),
  33329. name: "Side",
  33330. image: {
  33331. source: "./media/characters/owen/side.svg",
  33332. extra: 1797/1734,
  33333. bottom: 30/1827
  33334. }
  33335. },
  33336. back: {
  33337. height: math.unit(8, "feet"),
  33338. weight: math.unit(900, "lb"),
  33339. name: "Back",
  33340. image: {
  33341. source: "./media/characters/owen/back.svg",
  33342. extra: 1796/1706,
  33343. bottom: 59/1855
  33344. }
  33345. },
  33346. maw: {
  33347. height: math.unit(1.76, "feet"),
  33348. name: "Maw",
  33349. image: {
  33350. source: "./media/characters/owen/maw.svg"
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(8, "feet"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33364. {
  33365. front: {
  33366. height: math.unit(4, "feet"),
  33367. weight: math.unit(400, "lb"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/ryth/front.svg",
  33371. extra: 1920/1748,
  33372. bottom: 42/1962
  33373. }
  33374. },
  33375. back: {
  33376. height: math.unit(4, "feet"),
  33377. weight: math.unit(400, "lb"),
  33378. name: "Back",
  33379. image: {
  33380. source: "./media/characters/ryth/back.svg",
  33381. extra: 1897/1690,
  33382. bottom: 89/1986
  33383. }
  33384. },
  33385. mouth: {
  33386. height: math.unit(1.39, "feet"),
  33387. name: "Mouth",
  33388. image: {
  33389. source: "./media/characters/ryth/mouth.svg"
  33390. }
  33391. },
  33392. tailmaw: {
  33393. height: math.unit(1.23, "feet"),
  33394. name: "Tailmaw",
  33395. image: {
  33396. source: "./media/characters/ryth/tailmaw.svg"
  33397. }
  33398. },
  33399. goia: {
  33400. height: math.unit(4, "meters"),
  33401. weight: math.unit(10800, "lb"),
  33402. name: "Goia",
  33403. image: {
  33404. source: "./media/characters/ryth/goia.svg",
  33405. extra: 745/640,
  33406. bottom: 107/852
  33407. }
  33408. },
  33409. goiaFront: {
  33410. height: math.unit(4, "meters"),
  33411. weight: math.unit(10800, "lb"),
  33412. name: "Goia (Front)",
  33413. image: {
  33414. source: "./media/characters/ryth/goia-front.svg",
  33415. extra: 750/586,
  33416. bottom: 114/864
  33417. }
  33418. },
  33419. goiaMaw: {
  33420. height: math.unit(5.55, "feet"),
  33421. name: "Goia Maw",
  33422. image: {
  33423. source: "./media/characters/ryth/goia-maw.svg"
  33424. }
  33425. },
  33426. goiaForepaw: {
  33427. height: math.unit(3.5, "feet"),
  33428. name: "Goia Forepaw",
  33429. image: {
  33430. source: "./media/characters/ryth/goia-forepaw.svg"
  33431. }
  33432. },
  33433. goiaHindpaw: {
  33434. height: math.unit(5.55, "feet"),
  33435. name: "Goia Hindpaw",
  33436. image: {
  33437. source: "./media/characters/ryth/goia-hindpaw.svg"
  33438. }
  33439. },
  33440. },
  33441. [
  33442. {
  33443. name: "Normal",
  33444. height: math.unit(4, "feet"),
  33445. default: true
  33446. },
  33447. ]
  33448. ))
  33449. characterMakers.push(() => makeCharacter(
  33450. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33451. {
  33452. front: {
  33453. height: math.unit(7, "feet"),
  33454. weight: math.unit(180, "lb"),
  33455. name: "Front",
  33456. image: {
  33457. source: "./media/characters/necrolance/front.svg",
  33458. extra: 1062/947,
  33459. bottom: 41/1103
  33460. }
  33461. },
  33462. back: {
  33463. height: math.unit(7, "feet"),
  33464. weight: math.unit(180, "lb"),
  33465. name: "Back",
  33466. image: {
  33467. source: "./media/characters/necrolance/back.svg",
  33468. extra: 1045/984,
  33469. bottom: 14/1059
  33470. }
  33471. },
  33472. wing: {
  33473. height: math.unit(2.67, "feet"),
  33474. name: "Wing",
  33475. image: {
  33476. source: "./media/characters/necrolance/wing.svg"
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Normal",
  33483. height: math.unit(7, "feet"),
  33484. default: true
  33485. },
  33486. ]
  33487. ))
  33488. characterMakers.push(() => makeCharacter(
  33489. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33490. {
  33491. front: {
  33492. height: math.unit(76, "meters"),
  33493. weight: math.unit(30000, "tons"),
  33494. name: "Front",
  33495. image: {
  33496. source: "./media/characters/tyler/front.svg",
  33497. extra: 1640/1640,
  33498. bottom: 114/1754
  33499. }
  33500. },
  33501. },
  33502. [
  33503. {
  33504. name: "Macro",
  33505. height: math.unit(76, "meters"),
  33506. default: true
  33507. },
  33508. ]
  33509. ))
  33510. characterMakers.push(() => makeCharacter(
  33511. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33512. {
  33513. front: {
  33514. height: math.unit(4 + 11/12, "feet"),
  33515. weight: math.unit(132, "lb"),
  33516. name: "Front",
  33517. image: {
  33518. source: "./media/characters/icey/front.svg",
  33519. extra: 2750/2550,
  33520. bottom: 33/2783
  33521. }
  33522. },
  33523. back: {
  33524. height: math.unit(4 + 11/12, "feet"),
  33525. weight: math.unit(132, "lb"),
  33526. name: "Back",
  33527. image: {
  33528. source: "./media/characters/icey/back.svg",
  33529. extra: 2624/2481,
  33530. bottom: 35/2659
  33531. }
  33532. },
  33533. },
  33534. [
  33535. {
  33536. name: "Normal",
  33537. height: math.unit(4 + 11/12, "feet"),
  33538. default: true
  33539. },
  33540. ]
  33541. ))
  33542. characterMakers.push(() => makeCharacter(
  33543. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33544. {
  33545. front: {
  33546. height: math.unit(100, "feet"),
  33547. weight: math.unit(0, "lb"),
  33548. name: "Front",
  33549. image: {
  33550. source: "./media/characters/smile/front.svg",
  33551. extra: 2983/2912,
  33552. bottom: 162/3145
  33553. }
  33554. },
  33555. back: {
  33556. height: math.unit(100, "feet"),
  33557. weight: math.unit(0, "lb"),
  33558. name: "Back",
  33559. image: {
  33560. source: "./media/characters/smile/back.svg",
  33561. extra: 3143/3031,
  33562. bottom: 91/3234
  33563. }
  33564. },
  33565. head: {
  33566. height: math.unit(26.3, "feet"),
  33567. weight: math.unit(0, "lb"),
  33568. name: "Head",
  33569. image: {
  33570. source: "./media/characters/smile/head.svg"
  33571. }
  33572. },
  33573. collar: {
  33574. height: math.unit(5.3, "feet"),
  33575. weight: math.unit(0, "lb"),
  33576. name: "Collar",
  33577. image: {
  33578. source: "./media/characters/smile/collar.svg"
  33579. }
  33580. },
  33581. },
  33582. [
  33583. {
  33584. name: "Macro",
  33585. height: math.unit(100, "feet"),
  33586. default: true
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33592. {
  33593. dragon: {
  33594. height: math.unit(26, "feet"),
  33595. weight: math.unit(36, "tons"),
  33596. name: "Dragon",
  33597. image: {
  33598. source: "./media/characters/arimphae/dragon.svg",
  33599. extra: 1574/983,
  33600. bottom: 357/1931
  33601. }
  33602. },
  33603. drake: {
  33604. height: math.unit(9, "feet"),
  33605. weight: math.unit(1.5, "tons"),
  33606. name: "Drake",
  33607. image: {
  33608. source: "./media/characters/arimphae/drake.svg",
  33609. extra: 1120/925,
  33610. bottom: 435/1555
  33611. }
  33612. },
  33613. },
  33614. [
  33615. {
  33616. name: "Small",
  33617. height: math.unit(26*5/9, "feet")
  33618. },
  33619. {
  33620. name: "Normal",
  33621. height: math.unit(26, "feet"),
  33622. default: true
  33623. },
  33624. ]
  33625. ))
  33626. characterMakers.push(() => makeCharacter(
  33627. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33628. {
  33629. front: {
  33630. height: math.unit(8 + 9/12, "feet"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/xander/front.svg",
  33634. extra: 1237/974,
  33635. bottom: 94/1331
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(8 + 9/12, "feet"),
  33643. default: true
  33644. },
  33645. {
  33646. name: "Gaze Grabber",
  33647. height: math.unit(13 + 8/12, "feet")
  33648. },
  33649. {
  33650. name: "Jaw Dropper",
  33651. height: math.unit(27, "feet")
  33652. },
  33653. {
  33654. name: "Show Stopper",
  33655. height: math.unit(136, "feet")
  33656. },
  33657. {
  33658. name: "Superstar",
  33659. height: math.unit(1.9e6, "miles")
  33660. },
  33661. ]
  33662. ))
  33663. characterMakers.push(() => makeCharacter(
  33664. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33665. {
  33666. side: {
  33667. height: math.unit(2100, "feet"),
  33668. name: "Side",
  33669. image: {
  33670. source: "./media/characters/osiris/side.svg",
  33671. extra: 1105/939,
  33672. bottom: 167/1272
  33673. }
  33674. },
  33675. },
  33676. [
  33677. {
  33678. name: "Macro",
  33679. height: math.unit(2100, "feet"),
  33680. default: true
  33681. },
  33682. ]
  33683. ))
  33684. characterMakers.push(() => makeCharacter(
  33685. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33686. {
  33687. front: {
  33688. height: math.unit(6 + 8/12, "feet"),
  33689. weight: math.unit(225, "lb"),
  33690. name: "Front",
  33691. image: {
  33692. source: "./media/characters/rhys-londe/front.svg",
  33693. extra: 2258/2141,
  33694. bottom: 188/2446
  33695. }
  33696. },
  33697. back: {
  33698. height: math.unit(6 + 8/12, "feet"),
  33699. weight: math.unit(225, "lb"),
  33700. name: "Back",
  33701. image: {
  33702. source: "./media/characters/rhys-londe/back.svg",
  33703. extra: 2237/2137,
  33704. bottom: 63/2300
  33705. }
  33706. },
  33707. frontNsfw: {
  33708. height: math.unit(6 + 8/12, "feet"),
  33709. weight: math.unit(225, "lb"),
  33710. name: "Front (NSFW)",
  33711. image: {
  33712. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33713. extra: 2258/2141,
  33714. bottom: 188/2446
  33715. }
  33716. },
  33717. backNsfw: {
  33718. height: math.unit(6 + 8/12, "feet"),
  33719. weight: math.unit(225, "lb"),
  33720. name: "Back (NSFW)",
  33721. image: {
  33722. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33723. extra: 2237/2137,
  33724. bottom: 63/2300
  33725. }
  33726. },
  33727. dick: {
  33728. height: math.unit(30, "inches"),
  33729. name: "Dick",
  33730. image: {
  33731. source: "./media/characters/rhys-londe/dick.svg"
  33732. }
  33733. },
  33734. maw: {
  33735. height: math.unit(1.6, "feet"),
  33736. name: "Maw",
  33737. image: {
  33738. source: "./media/characters/rhys-londe/maw.svg"
  33739. }
  33740. },
  33741. },
  33742. [
  33743. {
  33744. name: "Normal",
  33745. height: math.unit(6 + 8/12, "feet"),
  33746. default: true
  33747. },
  33748. ]
  33749. ))
  33750. characterMakers.push(() => makeCharacter(
  33751. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33752. {
  33753. front: {
  33754. height: math.unit(3 + 10/12, "feet"),
  33755. weight: math.unit(90, "lb"),
  33756. name: "Front",
  33757. image: {
  33758. source: "./media/characters/taivas-ensim/front.svg",
  33759. extra: 1327/1216,
  33760. bottom: 96/1423
  33761. }
  33762. },
  33763. back: {
  33764. height: math.unit(3 + 10/12, "feet"),
  33765. weight: math.unit(90, "lb"),
  33766. name: "Back",
  33767. image: {
  33768. source: "./media/characters/taivas-ensim/back.svg",
  33769. extra: 1355/1247,
  33770. bottom: 11/1366
  33771. }
  33772. },
  33773. frontNsfw: {
  33774. height: math.unit(3 + 10/12, "feet"),
  33775. weight: math.unit(90, "lb"),
  33776. name: "Front (NSFW)",
  33777. image: {
  33778. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33779. extra: 1327/1216,
  33780. bottom: 96/1423
  33781. }
  33782. },
  33783. backNsfw: {
  33784. height: math.unit(3 + 10/12, "feet"),
  33785. weight: math.unit(90, "lb"),
  33786. name: "Back (NSFW)",
  33787. image: {
  33788. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33789. extra: 1355/1247,
  33790. bottom: 11/1366
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Normal",
  33797. height: math.unit(3 + 10/12, "feet"),
  33798. default: true
  33799. },
  33800. ]
  33801. ))
  33802. characterMakers.push(() => makeCharacter(
  33803. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33804. {
  33805. front: {
  33806. height: math.unit(9 + 6/12, "feet"),
  33807. weight: math.unit(940, "lb"),
  33808. name: "Front",
  33809. image: {
  33810. source: "./media/characters/byliss/front.svg",
  33811. extra: 1327/1290,
  33812. bottom: 82/1409
  33813. }
  33814. },
  33815. back: {
  33816. height: math.unit(9 + 6/12, "feet"),
  33817. weight: math.unit(940, "lb"),
  33818. name: "Back",
  33819. image: {
  33820. source: "./media/characters/byliss/back.svg",
  33821. extra: 1376/1349,
  33822. bottom: 9/1385
  33823. }
  33824. },
  33825. frontNsfw: {
  33826. height: math.unit(9 + 6/12, "feet"),
  33827. weight: math.unit(940, "lb"),
  33828. name: "Front (NSFW)",
  33829. image: {
  33830. source: "./media/characters/byliss/front-nsfw.svg",
  33831. extra: 1327/1290,
  33832. bottom: 82/1409
  33833. }
  33834. },
  33835. backNsfw: {
  33836. height: math.unit(9 + 6/12, "feet"),
  33837. weight: math.unit(940, "lb"),
  33838. name: "Back (NSFW)",
  33839. image: {
  33840. source: "./media/characters/byliss/back-nsfw.svg",
  33841. extra: 1376/1349,
  33842. bottom: 9/1385
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(9 + 6/12, "feet"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33856. {
  33857. front: {
  33858. height: math.unit(5 + 2/12, "feet"),
  33859. weight: math.unit(200, "lb"),
  33860. name: "Front",
  33861. image: {
  33862. source: "./media/characters/noraly/front.svg",
  33863. extra: 4985/4773,
  33864. bottom: 150/5135
  33865. }
  33866. },
  33867. full: {
  33868. height: math.unit(5 + 2/12, "feet"),
  33869. weight: math.unit(164, "lb"),
  33870. name: "Full",
  33871. image: {
  33872. source: "./media/characters/noraly/full.svg",
  33873. extra: 1114/1059,
  33874. bottom: 35/1149
  33875. }
  33876. },
  33877. fuller: {
  33878. height: math.unit(5 + 2/12, "feet"),
  33879. weight: math.unit(230, "lb"),
  33880. name: "Fuller",
  33881. image: {
  33882. source: "./media/characters/noraly/fuller.svg",
  33883. extra: 1114/1059,
  33884. bottom: 35/1149
  33885. }
  33886. },
  33887. fullest: {
  33888. height: math.unit(5 + 2/12, "feet"),
  33889. weight: math.unit(300, "lb"),
  33890. name: "Fullest",
  33891. image: {
  33892. source: "./media/characters/noraly/fullest.svg",
  33893. extra: 1114/1059,
  33894. bottom: 35/1149
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(5 + 2/12, "feet"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33908. {
  33909. front: {
  33910. height: math.unit(5 + 2/12, "feet"),
  33911. weight: math.unit(210, "lb"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/pera/front.svg",
  33915. extra: 1560/1531,
  33916. bottom: 165/1725
  33917. }
  33918. },
  33919. back: {
  33920. height: math.unit(5 + 2/12, "feet"),
  33921. weight: math.unit(210, "lb"),
  33922. name: "Back",
  33923. image: {
  33924. source: "./media/characters/pera/back.svg",
  33925. extra: 1523/1493,
  33926. bottom: 152/1675
  33927. }
  33928. },
  33929. dick: {
  33930. height: math.unit(2.4, "feet"),
  33931. name: "Dick",
  33932. image: {
  33933. source: "./media/characters/pera/dick.svg"
  33934. }
  33935. },
  33936. },
  33937. [
  33938. {
  33939. name: "Normal",
  33940. height: math.unit(5 + 2/12, "feet"),
  33941. default: true
  33942. },
  33943. ]
  33944. ))
  33945. characterMakers.push(() => makeCharacter(
  33946. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33947. {
  33948. front: {
  33949. height: math.unit(12, "feet"),
  33950. weight: math.unit(3200, "lb"),
  33951. name: "Front",
  33952. image: {
  33953. source: "./media/characters/julian/front.svg",
  33954. extra: 2962/2701,
  33955. bottom: 184/3146
  33956. }
  33957. },
  33958. maw: {
  33959. height: math.unit(5.35, "feet"),
  33960. name: "Maw",
  33961. image: {
  33962. source: "./media/characters/julian/maw.svg"
  33963. }
  33964. },
  33965. paw: {
  33966. height: math.unit(3.07, "feet"),
  33967. name: "Paw",
  33968. image: {
  33969. source: "./media/characters/julian/paw.svg"
  33970. }
  33971. },
  33972. },
  33973. [
  33974. {
  33975. name: "Default",
  33976. height: math.unit(12, "feet"),
  33977. default: true
  33978. },
  33979. {
  33980. name: "Big",
  33981. height: math.unit(50, "feet")
  33982. },
  33983. {
  33984. name: "Really Big",
  33985. height: math.unit(1, "mile")
  33986. },
  33987. {
  33988. name: "Extremely Big",
  33989. height: math.unit(100, "miles")
  33990. },
  33991. {
  33992. name: "Planet Hugger",
  33993. height: math.unit(200, "megameters")
  33994. },
  33995. {
  33996. name: "Unreasonably Big",
  33997. height: math.unit(1e300, "meters")
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34003. {
  34004. solgooleo: {
  34005. height: math.unit(4, "meters"),
  34006. weight: math.unit(6000*1.5, "kg"),
  34007. volume: math.unit(6000, "liters"),
  34008. name: "Solgooleo",
  34009. image: {
  34010. source: "./media/characters/pi/solgooleo.svg",
  34011. extra: 388/331,
  34012. bottom: 29/417
  34013. }
  34014. },
  34015. },
  34016. [
  34017. {
  34018. name: "Normal",
  34019. height: math.unit(4, "meters"),
  34020. default: true
  34021. },
  34022. ]
  34023. ))
  34024. characterMakers.push(() => makeCharacter(
  34025. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34026. {
  34027. front: {
  34028. height: math.unit(8, "feet"),
  34029. weight: math.unit(4, "tons"),
  34030. name: "Front",
  34031. image: {
  34032. source: "./media/characters/shaun/front.svg",
  34033. extra: 503/495,
  34034. bottom: 20/523
  34035. }
  34036. },
  34037. back: {
  34038. height: math.unit(8, "feet"),
  34039. weight: math.unit(4, "tons"),
  34040. name: "Back",
  34041. image: {
  34042. source: "./media/characters/shaun/back.svg",
  34043. extra: 487/480,
  34044. bottom: 20/507
  34045. }
  34046. },
  34047. },
  34048. [
  34049. {
  34050. name: "Lorg",
  34051. height: math.unit(8, "feet"),
  34052. default: true
  34053. },
  34054. ]
  34055. ))
  34056. characterMakers.push(() => makeCharacter(
  34057. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34058. {
  34059. frontAnthro: {
  34060. height: math.unit(7, "feet"),
  34061. name: "Front",
  34062. image: {
  34063. source: "./media/characters/sini/front-anthro.svg",
  34064. extra: 726/678,
  34065. bottom: 35/761
  34066. },
  34067. form: "anthro",
  34068. default: true
  34069. },
  34070. backAnthro: {
  34071. height: math.unit(7, "feet"),
  34072. name: "Back",
  34073. image: {
  34074. source: "./media/characters/sini/back-anthro.svg",
  34075. extra: 743/701,
  34076. bottom: 12/755
  34077. },
  34078. form: "anthro",
  34079. },
  34080. frontAnthroNsfw: {
  34081. height: math.unit(7, "feet"),
  34082. name: "Front (NSFW)",
  34083. image: {
  34084. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34085. extra: 726/678,
  34086. bottom: 35/761
  34087. },
  34088. form: "anthro"
  34089. },
  34090. backAnthroNsfw: {
  34091. height: math.unit(7, "feet"),
  34092. name: "Back (NSFW)",
  34093. image: {
  34094. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34095. extra: 743/701,
  34096. bottom: 12/755
  34097. },
  34098. form: "anthro",
  34099. },
  34100. mawAnthro: {
  34101. height: math.unit(2.14, "feet"),
  34102. name: "Maw",
  34103. image: {
  34104. source: "./media/characters/sini/maw-anthro.svg"
  34105. },
  34106. form: "anthro"
  34107. },
  34108. dick: {
  34109. height: math.unit(1.45, "feet"),
  34110. name: "Dick",
  34111. image: {
  34112. source: "./media/characters/sini/dick-anthro.svg"
  34113. },
  34114. form: "anthro"
  34115. },
  34116. feral: {
  34117. height: math.unit(16, "feet"),
  34118. name: "Feral",
  34119. image: {
  34120. source: "./media/characters/sini/feral.svg",
  34121. extra: 814/605,
  34122. bottom: 11/825
  34123. },
  34124. form: "feral",
  34125. default: true
  34126. },
  34127. feralNsfw: {
  34128. height: math.unit(16, "feet"),
  34129. name: "Feral (NSFW)",
  34130. image: {
  34131. source: "./media/characters/sini/feral-nsfw.svg",
  34132. extra: 814/605,
  34133. bottom: 11/825
  34134. },
  34135. form: "feral"
  34136. },
  34137. mawFeral: {
  34138. height: math.unit(5.66, "feet"),
  34139. name: "Maw",
  34140. image: {
  34141. source: "./media/characters/sini/maw-feral.svg"
  34142. },
  34143. form: "feral",
  34144. },
  34145. pawFeral: {
  34146. height: math.unit(5.17, "feet"),
  34147. name: "Paw",
  34148. image: {
  34149. source: "./media/characters/sini/paw-feral.svg"
  34150. },
  34151. form: "feral",
  34152. },
  34153. rumpFeral: {
  34154. height: math.unit(13.11, "feet"),
  34155. name: "Rump",
  34156. image: {
  34157. source: "./media/characters/sini/rump-feral.svg"
  34158. },
  34159. form: "feral",
  34160. },
  34161. dickFeral: {
  34162. height: math.unit(1, "feet"),
  34163. name: "Dick",
  34164. image: {
  34165. source: "./media/characters/sini/dick-feral.svg"
  34166. },
  34167. form: "feral",
  34168. },
  34169. eyeFeral: {
  34170. height: math.unit(1.23, "feet"),
  34171. name: "Eye",
  34172. image: {
  34173. source: "./media/characters/sini/eye-feral.svg"
  34174. },
  34175. form: "feral",
  34176. },
  34177. },
  34178. [
  34179. {
  34180. name: "Normal",
  34181. height: math.unit(7, "feet"),
  34182. default: true,
  34183. form: "anthro"
  34184. },
  34185. {
  34186. name: "Normal",
  34187. height: math.unit(16, "feet"),
  34188. default: true,
  34189. form: "feral"
  34190. },
  34191. ],
  34192. {
  34193. "anthro": {
  34194. name: "Anthro",
  34195. default: true
  34196. },
  34197. "feral": {
  34198. name: "Feral",
  34199. }
  34200. }
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34204. {
  34205. side: {
  34206. height: math.unit(47.2, "meters"),
  34207. weight: math.unit(10000, "tons"),
  34208. name: "Side",
  34209. image: {
  34210. source: "./media/characters/raylldo/side.svg",
  34211. extra: 2363/642,
  34212. bottom: 221/2584
  34213. }
  34214. },
  34215. top: {
  34216. height: math.unit(240, "meters"),
  34217. weight: math.unit(10000, "tons"),
  34218. name: "Top",
  34219. image: {
  34220. source: "./media/characters/raylldo/top.svg"
  34221. }
  34222. },
  34223. bottom: {
  34224. height: math.unit(240, "meters"),
  34225. weight: math.unit(10000, "tons"),
  34226. name: "Bottom",
  34227. image: {
  34228. source: "./media/characters/raylldo/bottom.svg"
  34229. }
  34230. },
  34231. head: {
  34232. height: math.unit(38.6, "meters"),
  34233. name: "Head",
  34234. image: {
  34235. source: "./media/characters/raylldo/head.svg",
  34236. extra: 1335/1112,
  34237. bottom: 0/1335
  34238. }
  34239. },
  34240. maw: {
  34241. height: math.unit(16.37, "meters"),
  34242. name: "Maw",
  34243. image: {
  34244. source: "./media/characters/raylldo/maw.svg",
  34245. extra: 883/660,
  34246. bottom: 0/883
  34247. },
  34248. extraAttributes: {
  34249. preyCapacity: {
  34250. name: "Capacity",
  34251. power: 3,
  34252. type: "volume",
  34253. base: math.unit(1000, "people")
  34254. },
  34255. tongueSize: {
  34256. name: "Tongue Size",
  34257. power: 2,
  34258. type: "area",
  34259. base: math.unit(21, "m^2")
  34260. }
  34261. }
  34262. },
  34263. forepaw: {
  34264. height: math.unit(18, "meters"),
  34265. name: "Forepaw",
  34266. image: {
  34267. source: "./media/characters/raylldo/forepaw.svg"
  34268. }
  34269. },
  34270. hindpaw: {
  34271. height: math.unit(23, "meters"),
  34272. name: "Hindpaw",
  34273. image: {
  34274. source: "./media/characters/raylldo/hindpaw.svg"
  34275. }
  34276. },
  34277. genitals: {
  34278. height: math.unit(42, "meters"),
  34279. name: "Genitals",
  34280. image: {
  34281. source: "./media/characters/raylldo/genitals.svg"
  34282. }
  34283. },
  34284. },
  34285. [
  34286. {
  34287. name: "Normal",
  34288. height: math.unit(47.2, "meters"),
  34289. default: true
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34295. {
  34296. anthroFront: {
  34297. height: math.unit(9, "feet"),
  34298. weight: math.unit(600, "lb"),
  34299. name: "Anthro (Front)",
  34300. image: {
  34301. source: "./media/characters/glint/anthro-front.svg",
  34302. extra: 1097/1018,
  34303. bottom: 28/1125
  34304. }
  34305. },
  34306. anthroBack: {
  34307. height: math.unit(9, "feet"),
  34308. weight: math.unit(600, "lb"),
  34309. name: "Anthro (Back)",
  34310. image: {
  34311. source: "./media/characters/glint/anthro-back.svg",
  34312. extra: 1154/997,
  34313. bottom: 36/1190
  34314. }
  34315. },
  34316. feral: {
  34317. height: math.unit(11, "feet"),
  34318. weight: math.unit(50000, "lb"),
  34319. name: "Feral",
  34320. image: {
  34321. source: "./media/characters/glint/feral.svg",
  34322. extra: 3035/1585,
  34323. bottom: 1169/4204
  34324. }
  34325. },
  34326. dickAnthro: {
  34327. height: math.unit(0.7, "meters"),
  34328. name: "Dick (Anthro)",
  34329. image: {
  34330. source: "./media/characters/glint/dick-anthro.svg"
  34331. }
  34332. },
  34333. dickFeral: {
  34334. height: math.unit(2.65, "meters"),
  34335. name: "Dick (Feral)",
  34336. image: {
  34337. source: "./media/characters/glint/dick-feral.svg"
  34338. }
  34339. },
  34340. slitHidden: {
  34341. height: math.unit(5.85, "meters"),
  34342. name: "Slit (Hidden)",
  34343. image: {
  34344. source: "./media/characters/glint/slit-hidden.svg"
  34345. }
  34346. },
  34347. slitErect: {
  34348. height: math.unit(5.85, "meters"),
  34349. name: "Slit (Erect)",
  34350. image: {
  34351. source: "./media/characters/glint/slit-erect.svg"
  34352. }
  34353. },
  34354. mawAnthro: {
  34355. height: math.unit(0.63, "meters"),
  34356. name: "Maw (Anthro)",
  34357. image: {
  34358. source: "./media/characters/glint/maw.svg"
  34359. }
  34360. },
  34361. mawFeral: {
  34362. height: math.unit(2.89, "meters"),
  34363. name: "Maw (Feral)",
  34364. image: {
  34365. source: "./media/characters/glint/maw.svg"
  34366. }
  34367. },
  34368. },
  34369. [
  34370. {
  34371. name: "Normal",
  34372. height: math.unit(9, "feet"),
  34373. default: true
  34374. },
  34375. ]
  34376. ))
  34377. characterMakers.push(() => makeCharacter(
  34378. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34379. {
  34380. side: {
  34381. height: math.unit(15, "feet"),
  34382. weight: math.unit(5000, "kg"),
  34383. name: "Side",
  34384. image: {
  34385. source: "./media/characters/kairne/side.svg",
  34386. extra: 979/811,
  34387. bottom: 13/992
  34388. }
  34389. },
  34390. front: {
  34391. height: math.unit(15, "feet"),
  34392. weight: math.unit(5000, "kg"),
  34393. name: "Front",
  34394. image: {
  34395. source: "./media/characters/kairne/front.svg",
  34396. extra: 908/814,
  34397. bottom: 26/934
  34398. }
  34399. },
  34400. sideNsfw: {
  34401. height: math.unit(15, "feet"),
  34402. weight: math.unit(5000, "kg"),
  34403. name: "Side (NSFW)",
  34404. image: {
  34405. source: "./media/characters/kairne/side-nsfw.svg",
  34406. extra: 979/811,
  34407. bottom: 13/992
  34408. }
  34409. },
  34410. frontNsfw: {
  34411. height: math.unit(15, "feet"),
  34412. weight: math.unit(5000, "kg"),
  34413. name: "Front (NSFW)",
  34414. image: {
  34415. source: "./media/characters/kairne/front-nsfw.svg",
  34416. extra: 908/814,
  34417. bottom: 26/934
  34418. }
  34419. },
  34420. dickCaged: {
  34421. height: math.unit(0.65, "meters"),
  34422. name: "Dick-caged",
  34423. image: {
  34424. source: "./media/characters/kairne/dick-caged.svg"
  34425. }
  34426. },
  34427. dick: {
  34428. height: math.unit(0.79, "meters"),
  34429. name: "Dick",
  34430. image: {
  34431. source: "./media/characters/kairne/dick.svg"
  34432. }
  34433. },
  34434. genitals: {
  34435. height: math.unit(1.29, "meters"),
  34436. name: "Genitals",
  34437. image: {
  34438. source: "./media/characters/kairne/genitals.svg"
  34439. }
  34440. },
  34441. maw: {
  34442. height: math.unit(1.73, "meters"),
  34443. name: "Maw",
  34444. image: {
  34445. source: "./media/characters/kairne/maw.svg"
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(15, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(5 + 8/12, "feet"),
  34462. weight: math.unit(139, "lb"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/biscuit-jackal/front.svg",
  34466. extra: 2106/1961,
  34467. bottom: 58/2164
  34468. }
  34469. },
  34470. back: {
  34471. height: math.unit(5 + 8/12, "feet"),
  34472. weight: math.unit(139, "lb"),
  34473. name: "Back",
  34474. image: {
  34475. source: "./media/characters/biscuit-jackal/back.svg",
  34476. extra: 2132/1976,
  34477. bottom: 57/2189
  34478. }
  34479. },
  34480. werejackal: {
  34481. height: math.unit(6 + 3/12, "feet"),
  34482. weight: math.unit(188, "lb"),
  34483. name: "Werejackal",
  34484. image: {
  34485. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34486. extra: 2373/2178,
  34487. bottom: 53/2426
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Normal",
  34494. height: math.unit(5 + 8/12, "feet"),
  34495. default: true
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34501. {
  34502. front: {
  34503. height: math.unit(140, "cm"),
  34504. weight: math.unit(45, "kg"),
  34505. name: "Front",
  34506. image: {
  34507. source: "./media/characters/tayra-white/front.svg",
  34508. extra: 2229/2192,
  34509. bottom: 75/2304
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(140, "cm"),
  34517. default: true
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(4 + 5/12, "feet"),
  34526. name: "Front",
  34527. image: {
  34528. source: "./media/characters/scoop/front.svg",
  34529. extra: 1257/1136,
  34530. bottom: 69/1326
  34531. }
  34532. },
  34533. back: {
  34534. height: math.unit(4 + 5/12, "feet"),
  34535. name: "Back",
  34536. image: {
  34537. source: "./media/characters/scoop/back.svg",
  34538. extra: 1321/1152,
  34539. bottom: 32/1353
  34540. }
  34541. },
  34542. maw: {
  34543. height: math.unit(0.68, "feet"),
  34544. name: "Maw",
  34545. image: {
  34546. source: "./media/characters/scoop/maw.svg"
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Really Small",
  34553. height: math.unit(1, "mm")
  34554. },
  34555. {
  34556. name: "Micro",
  34557. height: math.unit(1, "inch")
  34558. },
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(4 + 5/12, "feet"),
  34562. default: true
  34563. },
  34564. {
  34565. name: "Macro",
  34566. height: math.unit(200, "feet")
  34567. },
  34568. {
  34569. name: "Megamacro",
  34570. height: math.unit(3240, "feet")
  34571. },
  34572. {
  34573. name: "Teramacro",
  34574. height: math.unit(2500, "miles")
  34575. },
  34576. ]
  34577. ))
  34578. characterMakers.push(() => makeCharacter(
  34579. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34580. {
  34581. front: {
  34582. height: math.unit(15 + 7/12, "feet"),
  34583. weight: math.unit(1150, "tons"),
  34584. name: "Front",
  34585. image: {
  34586. source: "./media/characters/saphinara/front.svg",
  34587. extra: 1837/1643,
  34588. bottom: 84/1921
  34589. },
  34590. form: "normal",
  34591. default: true
  34592. },
  34593. side: {
  34594. height: math.unit(15 + 7/12, "feet"),
  34595. weight: math.unit(1150, "tons"),
  34596. name: "Side",
  34597. image: {
  34598. source: "./media/characters/saphinara/side.svg",
  34599. extra: 605/547,
  34600. bottom: 6/611
  34601. },
  34602. form: "normal"
  34603. },
  34604. back: {
  34605. height: math.unit(15 + 7/12, "feet"),
  34606. weight: math.unit(1150, "tons"),
  34607. name: "Back",
  34608. image: {
  34609. source: "./media/characters/saphinara/back.svg",
  34610. extra: 591/531,
  34611. bottom: 13/604
  34612. },
  34613. form: "normal"
  34614. },
  34615. frontTail: {
  34616. height: math.unit(15 + 7/12, "feet"),
  34617. weight: math.unit(1150, "tons"),
  34618. name: "Front (Full Tail)",
  34619. image: {
  34620. source: "./media/characters/saphinara/front-tail.svg",
  34621. extra: 2256/1630,
  34622. bottom: 261/2517
  34623. },
  34624. form: "normal"
  34625. },
  34626. insides: {
  34627. height: math.unit(11.92, "feet"),
  34628. name: "Insides",
  34629. image: {
  34630. source: "./media/characters/saphinara/insides.svg"
  34631. },
  34632. form: "normal"
  34633. },
  34634. head: {
  34635. height: math.unit(4.17, "feet"),
  34636. name: "Head",
  34637. image: {
  34638. source: "./media/characters/saphinara/head.svg"
  34639. },
  34640. form: "normal"
  34641. },
  34642. tongue: {
  34643. height: math.unit(4.60, "feet"),
  34644. name: "Tongue",
  34645. image: {
  34646. source: "./media/characters/saphinara/tongue.svg"
  34647. },
  34648. form: "normal"
  34649. },
  34650. headEnraged: {
  34651. height: math.unit(5.55, "feet"),
  34652. name: "Head (Enraged)",
  34653. image: {
  34654. source: "./media/characters/saphinara/head-enraged.svg"
  34655. },
  34656. form: "normal"
  34657. },
  34658. wings: {
  34659. height: math.unit(11.95, "feet"),
  34660. name: "Wings",
  34661. image: {
  34662. source: "./media/characters/saphinara/wings.svg"
  34663. },
  34664. form: "normal"
  34665. },
  34666. feathers: {
  34667. height: math.unit(8.92, "feet"),
  34668. name: "Feathers",
  34669. image: {
  34670. source: "./media/characters/saphinara/feathers.svg"
  34671. },
  34672. form: "normal"
  34673. },
  34674. shackles: {
  34675. height: math.unit(2, "feet"),
  34676. name: "Shackles",
  34677. image: {
  34678. source: "./media/characters/saphinara/shackles.svg"
  34679. },
  34680. form: "normal"
  34681. },
  34682. eyes: {
  34683. height: math.unit(1.331, "feet"),
  34684. name: "Eyes",
  34685. image: {
  34686. source: "./media/characters/saphinara/eyes.svg"
  34687. },
  34688. form: "normal"
  34689. },
  34690. eyesEnraged: {
  34691. height: math.unit(1.331, "feet"),
  34692. name: "Eyes (Enraged)",
  34693. image: {
  34694. source: "./media/characters/saphinara/eyes-enraged.svg"
  34695. },
  34696. form: "normal"
  34697. },
  34698. trueFormSide: {
  34699. height: math.unit(200, "feet"),
  34700. weight: math.unit(1e7, "tons"),
  34701. name: "Side",
  34702. image: {
  34703. source: "./media/characters/saphinara/true-form-side.svg",
  34704. extra: 1399/770,
  34705. bottom: 97/1496
  34706. },
  34707. form: "true-form",
  34708. default: true
  34709. },
  34710. trueFormMaw: {
  34711. height: math.unit(71.5, "feet"),
  34712. name: "Maw",
  34713. image: {
  34714. source: "./media/characters/saphinara/true-form-maw.svg",
  34715. extra: 2302/1453,
  34716. bottom: 0/2302
  34717. },
  34718. form: "true-form"
  34719. },
  34720. meowberusSide: {
  34721. height: math.unit(75, "feet"),
  34722. weight: math.unit(180000, "kg"),
  34723. preyCapacity: math.unit(50000, "people"),
  34724. name: "Side",
  34725. image: {
  34726. source: "./media/characters/saphinara/meowberus-side.svg",
  34727. extra: 1400/711,
  34728. bottom: 126/1526
  34729. },
  34730. form: "meowberus",
  34731. extraAttributes: {
  34732. "pawArea": {
  34733. name: "Paw Size",
  34734. power: 2,
  34735. type: "area",
  34736. base: math.unit(35, "m^2")
  34737. }
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(15 + 7/12, "feet"),
  34745. default: true,
  34746. form: "normal"
  34747. },
  34748. {
  34749. name: "Angry",
  34750. height: math.unit(30 + 6/12, "feet"),
  34751. form: "normal"
  34752. },
  34753. {
  34754. name: "Enraged",
  34755. height: math.unit(102 + 1/12, "feet"),
  34756. form: "normal"
  34757. },
  34758. {
  34759. name: "True",
  34760. height: math.unit(200, "feet"),
  34761. default: true,
  34762. form: "true-form"
  34763. },
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(75, "feet"),
  34767. default: true,
  34768. form: "meowberus"
  34769. },
  34770. ],
  34771. {
  34772. "normal": {
  34773. name: "Normal",
  34774. default: true
  34775. },
  34776. "true-form": {
  34777. name: "True Form"
  34778. },
  34779. "meowberus": {
  34780. name: "Meowberus",
  34781. },
  34782. }
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(6 + 8/12, "feet"),
  34789. weight: math.unit(300, "lb"),
  34790. name: "Front",
  34791. image: {
  34792. source: "./media/characters/jrain/front.svg",
  34793. extra: 3039/2865,
  34794. bottom: 399/3438
  34795. }
  34796. },
  34797. back: {
  34798. height: math.unit(6 + 8/12, "feet"),
  34799. weight: math.unit(300, "lb"),
  34800. name: "Back",
  34801. image: {
  34802. source: "./media/characters/jrain/back.svg",
  34803. extra: 3089/2938,
  34804. bottom: 172/3261
  34805. }
  34806. },
  34807. head: {
  34808. height: math.unit(2.14, "feet"),
  34809. name: "Head",
  34810. image: {
  34811. source: "./media/characters/jrain/head.svg"
  34812. }
  34813. },
  34814. maw: {
  34815. height: math.unit(1.77, "feet"),
  34816. name: "Maw",
  34817. image: {
  34818. source: "./media/characters/jrain/maw.svg"
  34819. }
  34820. },
  34821. leftHand: {
  34822. height: math.unit(1.1, "feet"),
  34823. name: "Left Hand",
  34824. image: {
  34825. source: "./media/characters/jrain/left-hand.svg"
  34826. }
  34827. },
  34828. rightHand: {
  34829. height: math.unit(1.1, "feet"),
  34830. name: "Right Hand",
  34831. image: {
  34832. source: "./media/characters/jrain/right-hand.svg"
  34833. }
  34834. },
  34835. eye: {
  34836. height: math.unit(0.35, "feet"),
  34837. name: "Eye",
  34838. image: {
  34839. source: "./media/characters/jrain/eye.svg"
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(6 + 8/12, "feet"),
  34847. default: true
  34848. },
  34849. {
  34850. name: "Casually Large",
  34851. height: math.unit(25, "feet")
  34852. },
  34853. {
  34854. name: "Giant",
  34855. height: math.unit(100, "feet")
  34856. },
  34857. {
  34858. name: "Kaiju",
  34859. height: math.unit(300, "feet")
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34865. {
  34866. dragon: {
  34867. height: math.unit(5, "meters"),
  34868. name: "Dragon",
  34869. image: {
  34870. source: "./media/characters/sabrina/dragon.svg",
  34871. extra: 3670 / 2365,
  34872. bottom: 333 / 4003
  34873. }
  34874. },
  34875. gryphon: {
  34876. height: math.unit(3, "meters"),
  34877. name: "Gryphon",
  34878. image: {
  34879. source: "./media/characters/sabrina/gryphon.svg",
  34880. extra: 1576 / 945,
  34881. bottom: 71 / 1647
  34882. }
  34883. },
  34884. snake: {
  34885. height: math.unit(12, "meters"),
  34886. name: "Snake",
  34887. image: {
  34888. source: "./media/characters/sabrina/snake.svg",
  34889. extra: 1758 / 1320,
  34890. bottom: 186 / 1944
  34891. }
  34892. },
  34893. collar: {
  34894. height: math.unit(1.86, "meters"),
  34895. name: "Collar",
  34896. image: {
  34897. source: "./media/characters/sabrina/collar.svg"
  34898. }
  34899. },
  34900. eye: {
  34901. height: math.unit(0.53, "meters"),
  34902. name: "Eye",
  34903. image: {
  34904. source: "./media/characters/sabrina/eye.svg"
  34905. }
  34906. },
  34907. foot: {
  34908. height: math.unit(1.86, "meters"),
  34909. name: "Foot",
  34910. image: {
  34911. source: "./media/characters/sabrina/foot.svg"
  34912. }
  34913. },
  34914. hand: {
  34915. height: math.unit(1.32, "meters"),
  34916. name: "Hand",
  34917. image: {
  34918. source: "./media/characters/sabrina/hand.svg"
  34919. }
  34920. },
  34921. head: {
  34922. height: math.unit(2.44, "meters"),
  34923. name: "Head",
  34924. image: {
  34925. source: "./media/characters/sabrina/head.svg"
  34926. }
  34927. },
  34928. headAngry: {
  34929. height: math.unit(2.44, "meters"),
  34930. name: "Head (Angry))",
  34931. image: {
  34932. source: "./media/characters/sabrina/head-angry.svg"
  34933. }
  34934. },
  34935. maw: {
  34936. height: math.unit(1.65, "meters"),
  34937. name: "Maw",
  34938. image: {
  34939. source: "./media/characters/sabrina/maw.svg"
  34940. }
  34941. },
  34942. spikes: {
  34943. height: math.unit(1.69, "meters"),
  34944. name: "Spikes",
  34945. image: {
  34946. source: "./media/characters/sabrina/spikes.svg"
  34947. }
  34948. },
  34949. stomach: {
  34950. height: math.unit(1.15, "meters"),
  34951. name: "Stomach",
  34952. image: {
  34953. source: "./media/characters/sabrina/stomach.svg"
  34954. }
  34955. },
  34956. tongue: {
  34957. height: math.unit(1.27, "meters"),
  34958. name: "Tongue",
  34959. image: {
  34960. source: "./media/characters/sabrina/tongue.svg"
  34961. }
  34962. },
  34963. wingDorsal: {
  34964. height: math.unit(4.85, "meters"),
  34965. name: "Wing (Dorsal)",
  34966. image: {
  34967. source: "./media/characters/sabrina/wing-dorsal.svg"
  34968. }
  34969. },
  34970. wingVentral: {
  34971. height: math.unit(4.85, "meters"),
  34972. name: "Wing (Ventral)",
  34973. image: {
  34974. source: "./media/characters/sabrina/wing-ventral.svg"
  34975. }
  34976. },
  34977. },
  34978. [
  34979. {
  34980. name: "Normal",
  34981. height: math.unit(5, "meters"),
  34982. default: true
  34983. },
  34984. ]
  34985. ))
  34986. characterMakers.push(() => makeCharacter(
  34987. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34988. {
  34989. frontMaid: {
  34990. height: math.unit(5 + 5/12, "feet"),
  34991. weight: math.unit(130, "lb"),
  34992. name: "Front (Maid)",
  34993. image: {
  34994. source: "./media/characters/midnight-tales/front-maid.svg",
  34995. extra: 489/454,
  34996. bottom: 61/550
  34997. }
  34998. },
  34999. frontFormal: {
  35000. height: math.unit(5 + 5/12, "feet"),
  35001. weight: math.unit(130, "lb"),
  35002. name: "Front (Formal)",
  35003. image: {
  35004. source: "./media/characters/midnight-tales/front-formal.svg",
  35005. extra: 489/454,
  35006. bottom: 61/550
  35007. }
  35008. },
  35009. back: {
  35010. height: math.unit(5 + 5/12, "feet"),
  35011. weight: math.unit(130, "lb"),
  35012. name: "Back",
  35013. image: {
  35014. source: "./media/characters/midnight-tales/back.svg",
  35015. extra: 498/456,
  35016. bottom: 33/531
  35017. }
  35018. },
  35019. frontBeast: {
  35020. height: math.unit(40, "feet"),
  35021. weight: math.unit(64000, "lb"),
  35022. name: "Front (Beast)",
  35023. image: {
  35024. source: "./media/characters/midnight-tales/front-beast.svg",
  35025. extra: 927/860,
  35026. bottom: 53/980
  35027. }
  35028. },
  35029. backBeast: {
  35030. height: math.unit(40, "feet"),
  35031. weight: math.unit(64000, "lb"),
  35032. name: "Back (Beast)",
  35033. image: {
  35034. source: "./media/characters/midnight-tales/back-beast.svg",
  35035. extra: 929/855,
  35036. bottom: 16/945
  35037. }
  35038. },
  35039. footBeast: {
  35040. height: math.unit(6.7, "feet"),
  35041. name: "Foot (Beast)",
  35042. image: {
  35043. source: "./media/characters/midnight-tales/foot-beast.svg"
  35044. }
  35045. },
  35046. headBeast: {
  35047. height: math.unit(8, "feet"),
  35048. name: "Head (Beast)",
  35049. image: {
  35050. source: "./media/characters/midnight-tales/head-beast.svg"
  35051. }
  35052. },
  35053. },
  35054. [
  35055. {
  35056. name: "Normal",
  35057. height: math.unit(5 + 5 / 12, "feet"),
  35058. default: true
  35059. },
  35060. {
  35061. name: "Macro",
  35062. height: math.unit(25, "feet")
  35063. },
  35064. ]
  35065. ))
  35066. characterMakers.push(() => makeCharacter(
  35067. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35068. {
  35069. front: {
  35070. height: math.unit(5 + 10/12, "feet"),
  35071. name: "Front",
  35072. image: {
  35073. source: "./media/characters/argon/front.svg",
  35074. extra: 2009/1935,
  35075. bottom: 118/2127
  35076. }
  35077. },
  35078. back: {
  35079. height: math.unit(5 + 10/12, "feet"),
  35080. name: "Back",
  35081. image: {
  35082. source: "./media/characters/argon/back.svg",
  35083. extra: 2047/1992,
  35084. bottom: 20/2067
  35085. }
  35086. },
  35087. frontDressed: {
  35088. height: math.unit(5 + 10/12, "feet"),
  35089. name: "Front (Dressed)",
  35090. image: {
  35091. source: "./media/characters/argon/front-dressed.svg",
  35092. extra: 2009/1935,
  35093. bottom: 118/2127
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Normal",
  35100. height: math.unit(5 + 10/12, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35107. {
  35108. front: {
  35109. height: math.unit(8 + 6/12, "feet"),
  35110. weight: math.unit(1150, "lb"),
  35111. name: "Front",
  35112. image: {
  35113. source: "./media/characters/kichi/front.svg",
  35114. extra: 1267/1164,
  35115. bottom: 61/1328
  35116. }
  35117. },
  35118. back: {
  35119. height: math.unit(8 + 6/12, "feet"),
  35120. weight: math.unit(1150, "lb"),
  35121. name: "Back",
  35122. image: {
  35123. source: "./media/characters/kichi/back.svg",
  35124. extra: 1273/1166,
  35125. bottom: 33/1306
  35126. }
  35127. },
  35128. },
  35129. [
  35130. {
  35131. name: "Normal",
  35132. height: math.unit(8 + 6/12, "feet"),
  35133. default: true
  35134. },
  35135. ]
  35136. ))
  35137. characterMakers.push(() => makeCharacter(
  35138. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35139. {
  35140. front: {
  35141. height: math.unit(6, "feet"),
  35142. weight: math.unit(210, "lb"),
  35143. name: "Front",
  35144. image: {
  35145. source: "./media/characters/manetel-greyscale/front.svg",
  35146. extra: 350/312,
  35147. bottom: 8/358
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Micro",
  35154. height: math.unit(2, "inches")
  35155. },
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(6, "feet"),
  35159. default: true
  35160. },
  35161. {
  35162. name: "Minimacro",
  35163. height: math.unit(17, "feet")
  35164. },
  35165. {
  35166. name: "Macro",
  35167. height: math.unit(117, "feet")
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35173. {
  35174. side: {
  35175. height: math.unit(5 + 1/12, "feet"),
  35176. weight: math.unit(418, "lb"),
  35177. name: "Side",
  35178. image: {
  35179. source: "./media/characters/softpurr/side.svg",
  35180. extra: 1993/1945,
  35181. bottom: 134/2127
  35182. }
  35183. },
  35184. front: {
  35185. height: math.unit(5 + 1/12, "feet"),
  35186. weight: math.unit(418, "lb"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/softpurr/front.svg",
  35190. extra: 1950/1856,
  35191. bottom: 174/2124
  35192. }
  35193. },
  35194. paw: {
  35195. height: math.unit(1, "feet"),
  35196. name: "Paw",
  35197. image: {
  35198. source: "./media/characters/softpurr/paw.svg"
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(5 + 1/12, "feet"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(260, "meters"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/anahita/front.svg",
  35218. extra: 665/635,
  35219. bottom: 89/754
  35220. }
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "Macro",
  35226. height: math.unit(260, "meters"),
  35227. default: true
  35228. },
  35229. ]
  35230. ))
  35231. characterMakers.push(() => makeCharacter(
  35232. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35233. {
  35234. front: {
  35235. height: math.unit(4 + 10/12, "feet"),
  35236. weight: math.unit(160, "lb"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/chip-mouse/front.svg",
  35240. extra: 3528/3408,
  35241. bottom: 0/3528
  35242. }
  35243. },
  35244. frontNsfw: {
  35245. height: math.unit(4 + 10/12, "feet"),
  35246. weight: math.unit(160, "lb"),
  35247. name: "Front (NSFW)",
  35248. image: {
  35249. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35250. extra: 3528/3408,
  35251. bottom: 0/3528
  35252. }
  35253. },
  35254. },
  35255. [
  35256. {
  35257. name: "Normal",
  35258. height: math.unit(4 + 10/12, "feet"),
  35259. default: true
  35260. },
  35261. ]
  35262. ))
  35263. characterMakers.push(() => makeCharacter(
  35264. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35265. {
  35266. side: {
  35267. height: math.unit(10, "feet"),
  35268. weight: math.unit(14000, "lb"),
  35269. name: "Side",
  35270. image: {
  35271. source: "./media/characters/kremm/side.svg",
  35272. extra: 1390/1053,
  35273. bottom: 90/1480
  35274. }
  35275. },
  35276. gut: {
  35277. height: math.unit(5.8, "feet"),
  35278. name: "Gut",
  35279. image: {
  35280. source: "./media/characters/kremm/gut.svg"
  35281. }
  35282. },
  35283. ass: {
  35284. height: math.unit(6.1, "feet"),
  35285. name: "Ass",
  35286. image: {
  35287. source: "./media/characters/kremm/ass.svg"
  35288. }
  35289. },
  35290. jaws: {
  35291. height: math.unit(2.2, "feet"),
  35292. name: "Jaws",
  35293. image: {
  35294. source: "./media/characters/kremm/jaws.svg"
  35295. }
  35296. },
  35297. dick: {
  35298. height: math.unit(4.26, "feet"),
  35299. name: "Dick",
  35300. image: {
  35301. source: "./media/characters/kremm/dick.svg"
  35302. }
  35303. },
  35304. },
  35305. [
  35306. {
  35307. name: "Normal",
  35308. height: math.unit(10, "feet"),
  35309. default: true
  35310. },
  35311. ]
  35312. ))
  35313. characterMakers.push(() => makeCharacter(
  35314. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35315. {
  35316. front: {
  35317. height: math.unit(30, "stories"),
  35318. name: "Front",
  35319. image: {
  35320. source: "./media/characters/kai/front.svg",
  35321. extra: 1892/1718,
  35322. bottom: 162/2054
  35323. }
  35324. },
  35325. },
  35326. [
  35327. {
  35328. name: "Macro",
  35329. height: math.unit(30, "stories"),
  35330. default: true
  35331. },
  35332. ]
  35333. ))
  35334. characterMakers.push(() => makeCharacter(
  35335. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35336. {
  35337. front: {
  35338. height: math.unit(6 + 4/12, "feet"),
  35339. weight: math.unit(145, "lb"),
  35340. name: "Front",
  35341. image: {
  35342. source: "./media/characters/sykes/front.svg",
  35343. extra: 1321 / 1187,
  35344. bottom: 66 / 1387
  35345. }
  35346. },
  35347. back: {
  35348. height: math.unit(6 + 4/12, "feet"),
  35349. weight: math.unit(145, "lb"),
  35350. name: "Back",
  35351. image: {
  35352. source: "./media/characters/sykes/back.svg",
  35353. extra: 1326/1181,
  35354. bottom: 31/1357
  35355. }
  35356. },
  35357. traditionalOutfit: {
  35358. height: math.unit(6 + 4/12, "feet"),
  35359. weight: math.unit(145, "lb"),
  35360. name: "Traditional Outfit",
  35361. image: {
  35362. source: "./media/characters/sykes/traditional-outfit.svg",
  35363. extra: 1321 / 1187,
  35364. bottom: 66 / 1387
  35365. }
  35366. },
  35367. adventureOutfit: {
  35368. height: math.unit(6 + 4/12, "feet"),
  35369. weight: math.unit(145, "lb"),
  35370. name: "Adventure Outfit",
  35371. image: {
  35372. source: "./media/characters/sykes/adventure-outfit.svg",
  35373. extra: 1321 / 1187,
  35374. bottom: 66 / 1387
  35375. }
  35376. },
  35377. handLeft: {
  35378. height: math.unit(0.9, "feet"),
  35379. name: "Hand (Left)",
  35380. image: {
  35381. source: "./media/characters/sykes/hand-left.svg"
  35382. }
  35383. },
  35384. handRight: {
  35385. height: math.unit(0.839, "feet"),
  35386. name: "Hand (Right)",
  35387. image: {
  35388. source: "./media/characters/sykes/hand-right.svg"
  35389. }
  35390. },
  35391. leftFoot: {
  35392. height: math.unit(1.2, "feet"),
  35393. name: "Foot (Left)",
  35394. image: {
  35395. source: "./media/characters/sykes/foot-left.svg"
  35396. }
  35397. },
  35398. rightFoot: {
  35399. height: math.unit(1.2, "feet"),
  35400. name: "Foot (Right)",
  35401. image: {
  35402. source: "./media/characters/sykes/foot-right.svg"
  35403. }
  35404. },
  35405. maw: {
  35406. height: math.unit(1.93, "feet"),
  35407. name: "Maw",
  35408. image: {
  35409. source: "./media/characters/sykes/maw.svg"
  35410. }
  35411. },
  35412. teeth: {
  35413. height: math.unit(0.51, "feet"),
  35414. name: "Teeth",
  35415. image: {
  35416. source: "./media/characters/sykes/teeth.svg"
  35417. }
  35418. },
  35419. tongue: {
  35420. height: math.unit(2.13, "feet"),
  35421. name: "Tongue",
  35422. image: {
  35423. source: "./media/characters/sykes/tongue.svg"
  35424. }
  35425. },
  35426. uvula: {
  35427. height: math.unit(0.16, "feet"),
  35428. name: "Uvula",
  35429. image: {
  35430. source: "./media/characters/sykes/uvula.svg"
  35431. }
  35432. },
  35433. collar: {
  35434. height: math.unit(0.287, "feet"),
  35435. name: "Collar",
  35436. image: {
  35437. source: "./media/characters/sykes/collar.svg"
  35438. }
  35439. },
  35440. tail: {
  35441. height: math.unit(3.8, "feet"),
  35442. name: "Tail",
  35443. image: {
  35444. source: "./media/characters/sykes/tail.svg"
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Shrunken",
  35451. height: math.unit(5, "inches")
  35452. },
  35453. {
  35454. name: "Normal",
  35455. height: math.unit(6 + 4 / 12, "feet"),
  35456. default: true
  35457. },
  35458. {
  35459. name: "Big",
  35460. height: math.unit(15, "feet")
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35466. {
  35467. front: {
  35468. height: math.unit(5 + 8/12, "feet"),
  35469. weight: math.unit(190, "lb"),
  35470. name: "Front",
  35471. image: {
  35472. source: "./media/characters/oven-otter/front.svg",
  35473. extra: 1809/1740,
  35474. bottom: 181/1990
  35475. }
  35476. },
  35477. back: {
  35478. height: math.unit(5 + 8/12, "feet"),
  35479. weight: math.unit(190, "lb"),
  35480. name: "Back",
  35481. image: {
  35482. source: "./media/characters/oven-otter/back.svg",
  35483. extra: 1709/1635,
  35484. bottom: 118/1827
  35485. }
  35486. },
  35487. hand: {
  35488. height: math.unit(1.07, "feet"),
  35489. name: "Hand",
  35490. image: {
  35491. source: "./media/characters/oven-otter/hand.svg"
  35492. }
  35493. },
  35494. beans: {
  35495. height: math.unit(1.74, "feet"),
  35496. name: "Beans",
  35497. image: {
  35498. source: "./media/characters/oven-otter/beans.svg"
  35499. }
  35500. },
  35501. },
  35502. [
  35503. {
  35504. name: "Micro",
  35505. height: math.unit(0.5, "inches")
  35506. },
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(5 + 8/12, "feet"),
  35510. default: true
  35511. },
  35512. {
  35513. name: "Macro",
  35514. height: math.unit(250, "feet")
  35515. },
  35516. {
  35517. name: "Really High",
  35518. height: math.unit(420, "feet")
  35519. },
  35520. ]
  35521. ))
  35522. characterMakers.push(() => makeCharacter(
  35523. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35524. {
  35525. front: {
  35526. height: math.unit(5, "meters"),
  35527. weight: math.unit(292000000000000, "kg"),
  35528. name: "Front",
  35529. image: {
  35530. source: "./media/characters/devourer/front.svg",
  35531. extra: 1800/1733,
  35532. bottom: 211/2011
  35533. }
  35534. },
  35535. maw: {
  35536. height: math.unit(1.1, "meter"),
  35537. name: "Maw",
  35538. image: {
  35539. source: "./media/characters/devourer/maw.svg"
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Small",
  35546. height: math.unit(3, "meters")
  35547. },
  35548. {
  35549. name: "Large",
  35550. height: math.unit(5, "meters"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35557. {
  35558. front: {
  35559. height: math.unit(6, "feet"),
  35560. weight: math.unit(400, "lb"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/ellarby/front.svg",
  35564. extra: 1909/1763,
  35565. bottom: 80/1989
  35566. }
  35567. },
  35568. back: {
  35569. height: math.unit(6, "feet"),
  35570. weight: math.unit(400, "lb"),
  35571. name: "Back",
  35572. image: {
  35573. source: "./media/characters/ellarby/back.svg",
  35574. extra: 1914/1784,
  35575. bottom: 172/2086
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Mischief",
  35582. height: math.unit(18, "inches")
  35583. },
  35584. {
  35585. name: "Trouble",
  35586. height: math.unit(12, "feet")
  35587. },
  35588. {
  35589. name: "Havoc",
  35590. height: math.unit(200, "feet"),
  35591. default: true
  35592. },
  35593. {
  35594. name: "Pandemonium",
  35595. height: math.unit(1, "mile")
  35596. },
  35597. {
  35598. name: "Catastrophe",
  35599. height: math.unit(100, "miles")
  35600. },
  35601. ]
  35602. ))
  35603. characterMakers.push(() => makeCharacter(
  35604. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35605. {
  35606. front: {
  35607. height: math.unit(4.7, "meters"),
  35608. weight: math.unit(6500, "kg"),
  35609. name: "Front",
  35610. image: {
  35611. source: "./media/characters/vex/front.svg",
  35612. extra: 1288/1140,
  35613. bottom: 100/1388
  35614. }
  35615. },
  35616. },
  35617. [
  35618. {
  35619. name: "Normal",
  35620. height: math.unit(4.7, "meters"),
  35621. default: true
  35622. },
  35623. ]
  35624. ))
  35625. characterMakers.push(() => makeCharacter(
  35626. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35627. {
  35628. normal: {
  35629. height: math.unit(6, "feet"),
  35630. weight: math.unit(350, "lb"),
  35631. name: "Normal",
  35632. image: {
  35633. source: "./media/characters/teshy/normal.svg",
  35634. extra: 1795/1735,
  35635. bottom: 16/1811
  35636. }
  35637. },
  35638. monsterFront: {
  35639. height: math.unit(12, "feet"),
  35640. weight: math.unit(4700, "lb"),
  35641. name: "Monster (Front)",
  35642. image: {
  35643. source: "./media/characters/teshy/monster-front.svg",
  35644. extra: 2042/2034,
  35645. bottom: 128/2170
  35646. }
  35647. },
  35648. monsterSide: {
  35649. height: math.unit(12, "feet"),
  35650. weight: math.unit(4700, "lb"),
  35651. name: "Monster (Side)",
  35652. image: {
  35653. source: "./media/characters/teshy/monster-side.svg",
  35654. extra: 2067/2056,
  35655. bottom: 70/2137
  35656. }
  35657. },
  35658. monsterBack: {
  35659. height: math.unit(12, "feet"),
  35660. weight: math.unit(4700, "lb"),
  35661. name: "Monster (Back)",
  35662. image: {
  35663. source: "./media/characters/teshy/monster-back.svg",
  35664. extra: 1921/1914,
  35665. bottom: 171/2092
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(6, "feet"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35679. {
  35680. front: {
  35681. height: math.unit(6, "feet"),
  35682. name: "Front",
  35683. image: {
  35684. source: "./media/characters/ramey/front.svg",
  35685. extra: 790/787,
  35686. bottom: 27/817
  35687. }
  35688. },
  35689. },
  35690. [
  35691. {
  35692. name: "Normal",
  35693. height: math.unit(6, "feet"),
  35694. default: true
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35700. {
  35701. front: {
  35702. height: math.unit(5 + 5/12, "feet"),
  35703. weight: math.unit(120, "lb"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/phirae/front.svg",
  35707. extra: 2491/2436,
  35708. bottom: 38/2529
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(5 + 5/12, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35722. {
  35723. front: {
  35724. height: math.unit(5 + 3/12, "feet"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/stagglas/front.svg",
  35728. extra: 962/882,
  35729. bottom: 53/1015
  35730. }
  35731. },
  35732. feral: {
  35733. height: math.unit(335, "cm"),
  35734. name: "Feral",
  35735. image: {
  35736. source: "./media/characters/stagglas/feral.svg",
  35737. extra: 1732/1090,
  35738. bottom: 48/1780
  35739. }
  35740. },
  35741. },
  35742. [
  35743. {
  35744. name: "Normal",
  35745. height: math.unit(5 + 3/12, "feet"),
  35746. default: true
  35747. },
  35748. ]
  35749. ))
  35750. characterMakers.push(() => makeCharacter(
  35751. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35752. {
  35753. front: {
  35754. height: math.unit(5 + 4/12, "feet"),
  35755. weight: math.unit(145, "lb"),
  35756. name: "Front",
  35757. image: {
  35758. source: "./media/characters/starra/front.svg",
  35759. extra: 1790/1691,
  35760. bottom: 91/1881
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(5 + 4/12, "feet"),
  35768. default: true
  35769. },
  35770. ]
  35771. ))
  35772. characterMakers.push(() => makeCharacter(
  35773. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35774. {
  35775. front: {
  35776. height: math.unit(2.2, "meters"),
  35777. name: "Front",
  35778. image: {
  35779. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35780. extra: 1194/1005,
  35781. bottom: 25/1219
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Normal",
  35788. height: math.unit(2.2, "meters"),
  35789. default: true
  35790. },
  35791. ]
  35792. ))
  35793. characterMakers.push(() => makeCharacter(
  35794. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35795. {
  35796. side: {
  35797. height: math.unit(8 + 2/12, "feet"),
  35798. weight: math.unit(1240, "lb"),
  35799. name: "Side",
  35800. image: {
  35801. source: "./media/characters/mika-valentine/side.svg",
  35802. extra: 2670/2501,
  35803. bottom: 250/2920
  35804. }
  35805. },
  35806. },
  35807. [
  35808. {
  35809. name: "Normal",
  35810. height: math.unit(8 + 2/12, "feet"),
  35811. default: true
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35817. {
  35818. front: {
  35819. height: math.unit(7 + 2/12, "feet"),
  35820. name: "Front",
  35821. image: {
  35822. source: "./media/characters/xoltol/front.svg",
  35823. extra: 2212/2124,
  35824. bottom: 84/2296
  35825. }
  35826. },
  35827. side: {
  35828. height: math.unit(7 + 2/12, "feet"),
  35829. name: "Side",
  35830. image: {
  35831. source: "./media/characters/xoltol/side.svg",
  35832. extra: 2273/2197,
  35833. bottom: 26/2299
  35834. }
  35835. },
  35836. hand: {
  35837. height: math.unit(2.5, "feet"),
  35838. name: "Hand",
  35839. image: {
  35840. source: "./media/characters/xoltol/hand.svg"
  35841. }
  35842. },
  35843. },
  35844. [
  35845. {
  35846. name: "Small-ish",
  35847. height: math.unit(5 + 11/12, "feet")
  35848. },
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(7 + 2/12, "feet")
  35852. },
  35853. {
  35854. name: "\"Macro\"",
  35855. height: math.unit(14 + 9/12, "feet"),
  35856. default: true
  35857. },
  35858. {
  35859. name: "Alternate Height",
  35860. height: math.unit(20, "feet")
  35861. },
  35862. {
  35863. name: "Actually Macro",
  35864. height: math.unit(100, "feet")
  35865. },
  35866. ]
  35867. ))
  35868. characterMakers.push(() => makeCharacter(
  35869. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35870. {
  35871. front: {
  35872. height: math.unit(5 + 2/12, "feet"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/kotetsu-redwood/front.svg",
  35876. extra: 1053/942,
  35877. bottom: 60/1113
  35878. }
  35879. },
  35880. },
  35881. [
  35882. {
  35883. name: "Normal",
  35884. height: math.unit(5 + 2/12, "feet"),
  35885. default: true
  35886. },
  35887. ]
  35888. ))
  35889. characterMakers.push(() => makeCharacter(
  35890. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35891. {
  35892. front: {
  35893. height: math.unit(2.4, "meters"),
  35894. weight: math.unit(125, "kg"),
  35895. name: "Front",
  35896. image: {
  35897. source: "./media/characters/lilith/front.svg",
  35898. extra: 1590/1513,
  35899. bottom: 203/1793
  35900. }
  35901. },
  35902. },
  35903. [
  35904. {
  35905. name: "Humanoid",
  35906. height: math.unit(2.4, "meters")
  35907. },
  35908. {
  35909. name: "Normal",
  35910. height: math.unit(6, "meters"),
  35911. default: true
  35912. },
  35913. {
  35914. name: "Largest",
  35915. height: math.unit(55, "meters")
  35916. },
  35917. ]
  35918. ))
  35919. characterMakers.push(() => makeCharacter(
  35920. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35921. {
  35922. front: {
  35923. height: math.unit(8 + 4/12, "feet"),
  35924. weight: math.unit(535, "lb"),
  35925. name: "Front",
  35926. image: {
  35927. source: "./media/characters/beh'kah-bolger/front.svg",
  35928. extra: 1660/1603,
  35929. bottom: 37/1697
  35930. }
  35931. },
  35932. },
  35933. [
  35934. {
  35935. name: "Normal",
  35936. height: math.unit(8 + 4/12, "feet"),
  35937. default: true
  35938. },
  35939. {
  35940. name: "Kaiju",
  35941. height: math.unit(250, "feet")
  35942. },
  35943. {
  35944. name: "Still Growing",
  35945. height: math.unit(10, "miles")
  35946. },
  35947. {
  35948. name: "Continental",
  35949. height: math.unit(5000, "miles")
  35950. },
  35951. {
  35952. name: "Final Form",
  35953. height: math.unit(2500000, "miles")
  35954. },
  35955. ]
  35956. ))
  35957. characterMakers.push(() => makeCharacter(
  35958. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35959. {
  35960. front: {
  35961. height: math.unit(7 + 2/12, "feet"),
  35962. weight: math.unit(230, "kg"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/tatyana-milewska/front.svg",
  35966. extra: 1199/1150,
  35967. bottom: 86/1285
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(7 + 2/12, "feet"),
  35975. default: true
  35976. },
  35977. {
  35978. name: "Big",
  35979. height: math.unit(12, "feet")
  35980. },
  35981. {
  35982. name: "Minimacro",
  35983. height: math.unit(20, "feet")
  35984. },
  35985. {
  35986. name: "Macro",
  35987. height: math.unit(120, "feet")
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35993. {
  35994. front: {
  35995. height: math.unit(7 + 8/12, "feet"),
  35996. weight: math.unit(152, "kg"),
  35997. name: "Front",
  35998. image: {
  35999. source: "./media/characters/helen-arri/front.svg",
  36000. extra: 440/423,
  36001. bottom: 14/454
  36002. }
  36003. },
  36004. back: {
  36005. height: math.unit(7 + 8/12, "feet"),
  36006. weight: math.unit(152, "kg"),
  36007. name: "Back",
  36008. image: {
  36009. source: "./media/characters/helen-arri/back.svg",
  36010. extra: 443/426,
  36011. bottom: 8/451
  36012. }
  36013. },
  36014. },
  36015. [
  36016. {
  36017. name: "Normal",
  36018. height: math.unit(7 + 8/12, "feet"),
  36019. default: true
  36020. },
  36021. {
  36022. name: "Big",
  36023. height: math.unit(14, "feet")
  36024. },
  36025. {
  36026. name: "Minimacro",
  36027. height: math.unit(24, "feet")
  36028. },
  36029. {
  36030. name: "Macro",
  36031. height: math.unit(140, "feet")
  36032. },
  36033. ]
  36034. ))
  36035. characterMakers.push(() => makeCharacter(
  36036. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36037. {
  36038. front: {
  36039. height: math.unit(6, "meters"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/ehanu-rehu/front.svg",
  36043. extra: 1800/1800,
  36044. bottom: 59/1859
  36045. }
  36046. },
  36047. },
  36048. [
  36049. {
  36050. name: "Normal",
  36051. height: math.unit(6, "meters"),
  36052. default: true
  36053. },
  36054. ]
  36055. ))
  36056. characterMakers.push(() => makeCharacter(
  36057. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36058. {
  36059. front: {
  36060. height: math.unit(7 + 3/12, "feet"),
  36061. name: "Front",
  36062. image: {
  36063. source: "./media/characters/renholder/front.svg",
  36064. extra: 3096/2960,
  36065. bottom: 250/3346
  36066. }
  36067. },
  36068. },
  36069. [
  36070. {
  36071. name: "Normal Bat",
  36072. height: math.unit(7 + 3/12, "feet"),
  36073. default: true
  36074. },
  36075. {
  36076. name: "Slightly Tall Bat",
  36077. height: math.unit(100, "feet")
  36078. },
  36079. {
  36080. name: "Big Bat",
  36081. height: math.unit(1000, "feet")
  36082. },
  36083. {
  36084. name: "City-Sized Bat",
  36085. height: math.unit(200000, "feet")
  36086. },
  36087. {
  36088. name: "Bigger Bat",
  36089. height: math.unit(10000, "miles")
  36090. },
  36091. {
  36092. name: "Solar Sized Bat",
  36093. height: math.unit(100, "AU")
  36094. },
  36095. {
  36096. name: "Galactic Bat",
  36097. height: math.unit(200000, "lightyears")
  36098. },
  36099. {
  36100. name: "Universally Known Bat",
  36101. height: math.unit(1, "universe")
  36102. },
  36103. ]
  36104. ))
  36105. characterMakers.push(() => makeCharacter(
  36106. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36107. {
  36108. front: {
  36109. height: math.unit(6 + 11/12, "feet"),
  36110. weight: math.unit(250, "lb"),
  36111. name: "Front",
  36112. image: {
  36113. source: "./media/characters/cookiecat/front.svg",
  36114. extra: 893/827,
  36115. bottom: 14/907
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Micro",
  36122. height: math.unit(3, "inches")
  36123. },
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(6 + 11/12, "feet"),
  36127. default: true
  36128. },
  36129. {
  36130. name: "Macro",
  36131. height: math.unit(100, "feet")
  36132. },
  36133. {
  36134. name: "Macro+",
  36135. height: math.unit(404, "feet")
  36136. },
  36137. {
  36138. name: "Megamacro",
  36139. height: math.unit(165, "miles")
  36140. },
  36141. {
  36142. name: "Planetary",
  36143. height: math.unit(4600, "miles")
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36149. {
  36150. front: {
  36151. height: math.unit(10 + 3/12, "feet"),
  36152. weight: math.unit(1500, "lb"),
  36153. name: "Front",
  36154. image: {
  36155. source: "./media/characters/tux-kusanagi/front.svg",
  36156. extra: 944/840,
  36157. bottom: 39/983
  36158. }
  36159. },
  36160. back: {
  36161. height: math.unit(10 + 3/12, "feet"),
  36162. weight: math.unit(1500, "lb"),
  36163. name: "Back",
  36164. image: {
  36165. source: "./media/characters/tux-kusanagi/back.svg",
  36166. extra: 941/842,
  36167. bottom: 28/969
  36168. }
  36169. },
  36170. rump: {
  36171. height: math.unit(5.25, "feet"),
  36172. name: "Rump",
  36173. image: {
  36174. source: "./media/characters/tux-kusanagi/rump.svg"
  36175. }
  36176. },
  36177. beak: {
  36178. height: math.unit(1.54, "feet"),
  36179. name: "Beak",
  36180. image: {
  36181. source: "./media/characters/tux-kusanagi/beak.svg"
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Normal",
  36188. height: math.unit(10 + 3/12, "feet"),
  36189. default: true
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(58, "feet"),
  36198. weight: math.unit(200, "tons"),
  36199. name: "Front",
  36200. image: {
  36201. source: "./media/characters/uzarmazari/front.svg",
  36202. extra: 1575/1455,
  36203. bottom: 152/1727
  36204. }
  36205. },
  36206. back: {
  36207. height: math.unit(58, "feet"),
  36208. weight: math.unit(200, "tons"),
  36209. name: "Back",
  36210. image: {
  36211. source: "./media/characters/uzarmazari/back.svg",
  36212. extra: 1585/1510,
  36213. bottom: 157/1742
  36214. }
  36215. },
  36216. head: {
  36217. height: math.unit(26, "feet"),
  36218. name: "Head",
  36219. image: {
  36220. source: "./media/characters/uzarmazari/head.svg"
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Normal",
  36227. height: math.unit(58, "feet"),
  36228. default: true
  36229. },
  36230. ]
  36231. ))
  36232. characterMakers.push(() => makeCharacter(
  36233. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36234. {
  36235. side: {
  36236. height: math.unit(15, "feet"),
  36237. name: "Side",
  36238. image: {
  36239. source: "./media/characters/akitu/side.svg",
  36240. extra: 1421/1321,
  36241. bottom: 157/1578
  36242. }
  36243. },
  36244. front: {
  36245. height: math.unit(15, "feet"),
  36246. name: "Front",
  36247. image: {
  36248. source: "./media/characters/akitu/front.svg",
  36249. extra: 1435/1326,
  36250. bottom: 232/1667
  36251. }
  36252. },
  36253. },
  36254. [
  36255. {
  36256. name: "Normal",
  36257. height: math.unit(15, "feet"),
  36258. default: true
  36259. },
  36260. ]
  36261. ))
  36262. characterMakers.push(() => makeCharacter(
  36263. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36264. {
  36265. front: {
  36266. height: math.unit(10 + 8/12, "feet"),
  36267. name: "Front",
  36268. image: {
  36269. source: "./media/characters/azalie-croixland/front.svg",
  36270. extra: 1972/1856,
  36271. bottom: 31/2003
  36272. }
  36273. },
  36274. },
  36275. [
  36276. {
  36277. name: "Original Height",
  36278. height: math.unit(5 + 4/12, "feet")
  36279. },
  36280. {
  36281. name: "Normal Height",
  36282. height: math.unit(10 + 8/12, "feet"),
  36283. default: true
  36284. },
  36285. ]
  36286. ))
  36287. characterMakers.push(() => makeCharacter(
  36288. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36289. {
  36290. side: {
  36291. height: math.unit(7 + 1/12, "feet"),
  36292. weight: math.unit(245, "lb"),
  36293. name: "Side",
  36294. image: {
  36295. source: "./media/characters/kavus-kazian/side.svg",
  36296. extra: 349/342,
  36297. bottom: 15/364
  36298. }
  36299. },
  36300. },
  36301. [
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(7 + 1/12, "feet"),
  36305. default: true
  36306. },
  36307. ]
  36308. ))
  36309. characterMakers.push(() => makeCharacter(
  36310. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36311. {
  36312. normalFront: {
  36313. height: math.unit(5 + 11/12, "feet"),
  36314. name: "Front",
  36315. image: {
  36316. source: "./media/characters/moonlight-rose/normal-front.svg",
  36317. extra: 1980/1825,
  36318. bottom: 18/1998
  36319. },
  36320. form: "normal",
  36321. default: true
  36322. },
  36323. normalBack: {
  36324. height: math.unit(5 + 11/12, "feet"),
  36325. name: "Back",
  36326. image: {
  36327. source: "./media/characters/moonlight-rose/normal-back.svg",
  36328. extra: 2010/1839,
  36329. bottom: 10/2020
  36330. },
  36331. form: "normal"
  36332. },
  36333. demonFront: {
  36334. height: math.unit(1.5, "earths"),
  36335. name: "Front",
  36336. image: {
  36337. source: "./media/characters/moonlight-rose/demon.svg",
  36338. extra: 1400/1294,
  36339. bottom: 45/1445
  36340. },
  36341. form: "demon",
  36342. default: true
  36343. },
  36344. terraFront: {
  36345. height: math.unit(1.5, "earths"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/moonlight-rose/terra.svg"
  36349. },
  36350. form: "terra",
  36351. default: true
  36352. },
  36353. jupiterFront: {
  36354. height: math.unit(69911*2, "km"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36358. extra: 1367/1286,
  36359. bottom: 55/1422
  36360. },
  36361. form: "jupiter",
  36362. default: true
  36363. },
  36364. neptuneFront: {
  36365. height: math.unit(24622*2, "feet"),
  36366. name: "Front",
  36367. image: {
  36368. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36369. extra: 1851/1712,
  36370. bottom: 0/1851
  36371. },
  36372. form: "neptune",
  36373. default: true
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "\"Natural\" Height",
  36379. height: math.unit(5 + 11/12, "feet"),
  36380. form: "normal"
  36381. },
  36382. {
  36383. name: "Smallest comfortable size",
  36384. height: math.unit(40, "meters"),
  36385. form: "normal"
  36386. },
  36387. {
  36388. name: "Common size",
  36389. height: math.unit(50, "km"),
  36390. form: "normal",
  36391. default: true
  36392. },
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(1.5, "earths"),
  36396. form: "demon",
  36397. default: true
  36398. },
  36399. {
  36400. name: "Universal",
  36401. height: math.unit(15, "universes"),
  36402. form: "demon"
  36403. },
  36404. {
  36405. name: "Earth",
  36406. height: math.unit(1.5, "earths"),
  36407. form: "terra",
  36408. default: true
  36409. },
  36410. {
  36411. name: "Super Earth",
  36412. height: math.unit(67.5, "earths"),
  36413. form: "terra"
  36414. },
  36415. {
  36416. name: "Doesn't fit in a solar system...",
  36417. height: math.unit(1, "galaxy"),
  36418. form: "terra"
  36419. },
  36420. {
  36421. name: "Saturn",
  36422. height: math.unit(58232*2, "km"),
  36423. form: "jupiter"
  36424. },
  36425. {
  36426. name: "Jupiter",
  36427. height: math.unit(69911*2, "km"),
  36428. form: "jupiter",
  36429. default: true
  36430. },
  36431. {
  36432. name: "HD 100546 b",
  36433. height: math.unit(482938, "km"),
  36434. form: "jupiter"
  36435. },
  36436. {
  36437. name: "Enceladus",
  36438. height: math.unit(513*2, "km"),
  36439. form: "neptune"
  36440. },
  36441. {
  36442. name: "Europe",
  36443. height: math.unit(1560*2, "km"),
  36444. form: "neptune"
  36445. },
  36446. {
  36447. name: "Neptune",
  36448. height: math.unit(24622*2, "km"),
  36449. form: "neptune",
  36450. default: true
  36451. },
  36452. {
  36453. name: "CoRoT-9b",
  36454. height: math.unit(75067*2, "km"),
  36455. form: "neptune"
  36456. },
  36457. ],
  36458. {
  36459. "normal": {
  36460. name: "Normal",
  36461. default: true
  36462. },
  36463. "demon": {
  36464. name: "Demon"
  36465. },
  36466. "terra": {
  36467. name: "Terra"
  36468. },
  36469. "jupiter": {
  36470. name: "Jupiter"
  36471. },
  36472. "neptune": {
  36473. name: "Neptune"
  36474. }
  36475. }
  36476. ))
  36477. characterMakers.push(() => makeCharacter(
  36478. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36479. {
  36480. front: {
  36481. height: math.unit(16, "feet"),
  36482. weight: math.unit(610, "kg"),
  36483. name: "Front",
  36484. image: {
  36485. source: "./media/characters/huckle/front.svg",
  36486. extra: 1731/1625,
  36487. bottom: 33/1764
  36488. }
  36489. },
  36490. back: {
  36491. height: math.unit(16, "feet"),
  36492. weight: math.unit(610, "kg"),
  36493. name: "Back",
  36494. image: {
  36495. source: "./media/characters/huckle/back.svg",
  36496. extra: 1738/1651,
  36497. bottom: 37/1775
  36498. }
  36499. },
  36500. laughing: {
  36501. height: math.unit(3.75, "feet"),
  36502. name: "Laughing",
  36503. image: {
  36504. source: "./media/characters/huckle/laughing.svg"
  36505. }
  36506. },
  36507. angry: {
  36508. height: math.unit(4.15, "feet"),
  36509. name: "Angry",
  36510. image: {
  36511. source: "./media/characters/huckle/angry.svg"
  36512. }
  36513. },
  36514. },
  36515. [
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(16, "feet"),
  36519. default: true
  36520. },
  36521. {
  36522. name: "Mini Macro",
  36523. height: math.unit(463, "feet")
  36524. },
  36525. {
  36526. name: "Macro",
  36527. height: math.unit(1680, "meters")
  36528. },
  36529. {
  36530. name: "Mega Macro",
  36531. height: math.unit(175, "km")
  36532. },
  36533. {
  36534. name: "Terra Macro",
  36535. height: math.unit(32, "gigameters")
  36536. },
  36537. {
  36538. name: "Multiverse+",
  36539. height: math.unit(2.56e23, "yottameters")
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(6 + 9/12, "feet"),
  36548. weight: math.unit(280, "lb"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/candy/front.svg",
  36552. extra: 234/217,
  36553. bottom: 11/245
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Really Small",
  36560. height: math.unit(0.1, "nm")
  36561. },
  36562. {
  36563. name: "Micro",
  36564. height: math.unit(2, "inches")
  36565. },
  36566. {
  36567. name: "Normal",
  36568. height: math.unit(6 + 9/12, "feet"),
  36569. default: true
  36570. },
  36571. {
  36572. name: "Small Macro",
  36573. height: math.unit(69, "feet")
  36574. },
  36575. {
  36576. name: "Macro",
  36577. height: math.unit(160, "feet")
  36578. },
  36579. {
  36580. name: "Megamacro",
  36581. height: math.unit(22000, "miles")
  36582. },
  36583. {
  36584. name: "Gigamacro",
  36585. height: math.unit(50000, "miles")
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(4, "feet"),
  36594. weight: math.unit(90, "lb"),
  36595. name: "Front",
  36596. image: {
  36597. source: "./media/characters/joey-mcdonald/front.svg",
  36598. extra: 1059/852,
  36599. bottom: 33/1092
  36600. }
  36601. },
  36602. back: {
  36603. height: math.unit(4, "feet"),
  36604. weight: math.unit(90, "lb"),
  36605. name: "Back",
  36606. image: {
  36607. source: "./media/characters/joey-mcdonald/back.svg",
  36608. extra: 1077/879,
  36609. bottom: 5/1082
  36610. }
  36611. },
  36612. frontKobold: {
  36613. height: math.unit(4, "feet"),
  36614. weight: math.unit(100, "lb"),
  36615. name: "Front-kobold",
  36616. image: {
  36617. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36618. extra: 1480/1367,
  36619. bottom: 0/1480
  36620. }
  36621. },
  36622. backKobold: {
  36623. height: math.unit(4, "feet"),
  36624. weight: math.unit(100, "lb"),
  36625. name: "Back-kobold",
  36626. image: {
  36627. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36628. extra: 1449/1361,
  36629. bottom: 0/1449
  36630. }
  36631. },
  36632. },
  36633. [
  36634. {
  36635. name: "Normal",
  36636. height: math.unit(4, "feet"),
  36637. default: true
  36638. },
  36639. ]
  36640. ))
  36641. characterMakers.push(() => makeCharacter(
  36642. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36643. {
  36644. front: {
  36645. height: math.unit(12 + 6/12, "feet"),
  36646. name: "Front",
  36647. image: {
  36648. source: "./media/characters/kass-lockheed/front.svg",
  36649. extra: 354/343,
  36650. bottom: 9/363
  36651. }
  36652. },
  36653. back: {
  36654. height: math.unit(12 + 6/12, "feet"),
  36655. name: "Back",
  36656. image: {
  36657. source: "./media/characters/kass-lockheed/back.svg",
  36658. extra: 364/352,
  36659. bottom: 3/367
  36660. }
  36661. },
  36662. dick: {
  36663. height: math.unit(3.12, "feet"),
  36664. name: "Dick",
  36665. image: {
  36666. source: "./media/characters/kass-lockheed/dick.svg"
  36667. }
  36668. },
  36669. head: {
  36670. height: math.unit(2.6, "feet"),
  36671. name: "Head",
  36672. image: {
  36673. source: "./media/characters/kass-lockheed/head.svg"
  36674. }
  36675. },
  36676. bleh: {
  36677. height: math.unit(2.85, "feet"),
  36678. name: "Bleh",
  36679. image: {
  36680. source: "./media/characters/kass-lockheed/bleh.svg"
  36681. }
  36682. },
  36683. smug: {
  36684. height: math.unit(2.85, "feet"),
  36685. name: "Smug",
  36686. image: {
  36687. source: "./media/characters/kass-lockheed/smug.svg"
  36688. }
  36689. },
  36690. },
  36691. [
  36692. {
  36693. name: "Normal",
  36694. height: math.unit(12 + 6/12, "feet"),
  36695. default: true
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(6 + 2/12, "feet"),
  36704. name: "Front",
  36705. image: {
  36706. source: "./media/characters/taylor/front.svg",
  36707. extra: 639/495,
  36708. bottom: 12/651
  36709. }
  36710. },
  36711. },
  36712. [
  36713. {
  36714. name: "Normal",
  36715. height: math.unit(6 + 2/12, "feet"),
  36716. default: true
  36717. },
  36718. {
  36719. name: "Big",
  36720. height: math.unit(15, "feet")
  36721. },
  36722. {
  36723. name: "Lorg",
  36724. height: math.unit(80, "feet")
  36725. },
  36726. {
  36727. name: "Too Lorg",
  36728. height: math.unit(120, "feet")
  36729. },
  36730. ]
  36731. ))
  36732. characterMakers.push(() => makeCharacter(
  36733. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36734. {
  36735. front: {
  36736. height: math.unit(15, "feet"),
  36737. name: "Front",
  36738. image: {
  36739. source: "./media/characters/kaizer/front.svg",
  36740. extra: 1612/1436,
  36741. bottom: 43/1655
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(15, "feet"),
  36749. default: true
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36755. {
  36756. front: {
  36757. height: math.unit(2, "feet"),
  36758. weight: math.unit(30, "lb"),
  36759. name: "Front",
  36760. image: {
  36761. source: "./media/characters/sandy/front.svg",
  36762. extra: 1439/1307,
  36763. bottom: 194/1633
  36764. }
  36765. },
  36766. },
  36767. [
  36768. {
  36769. name: "Normal",
  36770. height: math.unit(2, "feet"),
  36771. default: true
  36772. },
  36773. ]
  36774. ))
  36775. characterMakers.push(() => makeCharacter(
  36776. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36777. {
  36778. front: {
  36779. height: math.unit(3, "feet"),
  36780. name: "Front",
  36781. image: {
  36782. source: "./media/characters/mellvi/front.svg",
  36783. extra: 1831/1630,
  36784. bottom: 58/1889
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Normal",
  36791. height: math.unit(3, "feet"),
  36792. default: true
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36798. {
  36799. front: {
  36800. height: math.unit(5 + 11/12, "feet"),
  36801. weight: math.unit(200, "lb"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/shirou/front.svg",
  36805. extra: 2491/2383,
  36806. bottom: 189/2680
  36807. }
  36808. },
  36809. back: {
  36810. height: math.unit(5 + 11/12, "feet"),
  36811. weight: math.unit(200, "lb"),
  36812. name: "Back",
  36813. image: {
  36814. source: "./media/characters/shirou/back.svg",
  36815. extra: 2554/2450,
  36816. bottom: 76/2630
  36817. }
  36818. },
  36819. },
  36820. [
  36821. {
  36822. name: "Normal",
  36823. height: math.unit(5 + 11/12, "feet"),
  36824. default: true
  36825. },
  36826. ]
  36827. ))
  36828. characterMakers.push(() => makeCharacter(
  36829. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36830. {
  36831. front: {
  36832. height: math.unit(6 + 3/12, "feet"),
  36833. weight: math.unit(177, "lb"),
  36834. name: "Front",
  36835. image: {
  36836. source: "./media/characters/noryu/front.svg",
  36837. extra: 973/885,
  36838. bottom: 10/983
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(6 + 3/12, "feet"),
  36846. default: true
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36852. {
  36853. front: {
  36854. height: math.unit(5 + 6/12, "feet"),
  36855. weight: math.unit(170, "lb"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/mevolas-rubenido/front.svg",
  36859. extra: 2109/1901,
  36860. bottom: 96/2205
  36861. }
  36862. },
  36863. },
  36864. [
  36865. {
  36866. name: "Normal",
  36867. height: math.unit(5 + 6/12, "feet"),
  36868. default: true
  36869. },
  36870. ]
  36871. ))
  36872. characterMakers.push(() => makeCharacter(
  36873. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36874. {
  36875. front: {
  36876. height: math.unit(100, "feet"),
  36877. name: "Front",
  36878. image: {
  36879. source: "./media/characters/dee/front.svg",
  36880. extra: 2153/2036,
  36881. bottom: 59/2212
  36882. }
  36883. },
  36884. back: {
  36885. height: math.unit(100, "feet"),
  36886. name: "Back",
  36887. image: {
  36888. source: "./media/characters/dee/back.svg",
  36889. extra: 2183/2058,
  36890. bottom: 75/2258
  36891. }
  36892. },
  36893. foot: {
  36894. height: math.unit(19.43, "feet"),
  36895. name: "Foot",
  36896. image: {
  36897. source: "./media/characters/dee/foot.svg"
  36898. }
  36899. },
  36900. hoof: {
  36901. height: math.unit(20.6, "feet"),
  36902. name: "Hoof",
  36903. image: {
  36904. source: "./media/characters/dee/hoof.svg"
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Macro",
  36911. height: math.unit(100, "feet"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(5 + 6/12, "feet"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/teh/front.svg",
  36924. extra: 1002/847,
  36925. bottom: 62/1064
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(5 + 6/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36939. {
  36940. side: {
  36941. height: math.unit(6 + 1/12, "feet"),
  36942. weight: math.unit(204, "lb"),
  36943. name: "Side",
  36944. image: {
  36945. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36946. extra: 974/775,
  36947. bottom: 169/1143
  36948. }
  36949. },
  36950. sitting: {
  36951. height: math.unit(6 + 2/12, "feet"),
  36952. weight: math.unit(204, "lb"),
  36953. name: "Sitting",
  36954. image: {
  36955. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36956. extra: 1175/964,
  36957. bottom: 378/1553
  36958. }
  36959. },
  36960. },
  36961. [
  36962. {
  36963. name: "Normal",
  36964. height: math.unit(6 + 1/12, "feet"),
  36965. default: true
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36971. {
  36972. front: {
  36973. height: math.unit(6, "inches"),
  36974. name: "Front",
  36975. image: {
  36976. source: "./media/characters/tululi/front.svg",
  36977. extra: 1997/1876,
  36978. bottom: 20/2017
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Normal",
  36985. height: math.unit(6, "inches"),
  36986. default: true
  36987. },
  36988. ]
  36989. ))
  36990. characterMakers.push(() => makeCharacter(
  36991. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36992. {
  36993. front: {
  36994. height: math.unit(4 + 1/12, "feet"),
  36995. name: "Front",
  36996. image: {
  36997. source: "./media/characters/star/front.svg",
  36998. extra: 1493/1189,
  36999. bottom: 48/1541
  37000. }
  37001. },
  37002. },
  37003. [
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(4 + 1/12, "feet"),
  37007. default: true
  37008. },
  37009. ]
  37010. ))
  37011. characterMakers.push(() => makeCharacter(
  37012. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37013. {
  37014. front: {
  37015. height: math.unit(6 + 3/12, "feet"),
  37016. name: "Front",
  37017. image: {
  37018. source: "./media/characters/comet/front.svg",
  37019. extra: 1681/1462,
  37020. bottom: 26/1707
  37021. }
  37022. },
  37023. },
  37024. [
  37025. {
  37026. name: "Normal",
  37027. height: math.unit(6 + 3/12, "feet"),
  37028. default: true
  37029. },
  37030. ]
  37031. ))
  37032. characterMakers.push(() => makeCharacter(
  37033. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37034. {
  37035. front: {
  37036. height: math.unit(950, "feet"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/vortex/front.svg",
  37040. extra: 1497/1434,
  37041. bottom: 56/1553
  37042. }
  37043. },
  37044. maw: {
  37045. height: math.unit(285, "feet"),
  37046. name: "Maw",
  37047. image: {
  37048. source: "./media/characters/vortex/maw.svg"
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Macro",
  37055. height: math.unit(950, "feet"),
  37056. default: true
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(600, "feet"),
  37065. weight: math.unit(0.02, "grams"),
  37066. name: "Front",
  37067. image: {
  37068. source: "./media/characters/doodle/front.svg",
  37069. extra: 1578/1413,
  37070. bottom: 37/1615
  37071. }
  37072. },
  37073. },
  37074. [
  37075. {
  37076. name: "Macro",
  37077. height: math.unit(600, "feet"),
  37078. default: true
  37079. },
  37080. ]
  37081. ))
  37082. characterMakers.push(() => makeCharacter(
  37083. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37084. {
  37085. front: {
  37086. height: math.unit(6 + 6/12, "feet"),
  37087. name: "Front",
  37088. image: {
  37089. source: "./media/characters/jai/front.svg",
  37090. extra: 1645/1534,
  37091. bottom: 115/1760
  37092. }
  37093. },
  37094. },
  37095. [
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(6 + 6/12, "feet"),
  37099. default: true
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37105. {
  37106. front: {
  37107. height: math.unit(6 + 8/12, "feet"),
  37108. name: "Front",
  37109. image: {
  37110. source: "./media/characters/pixel/front.svg",
  37111. extra: 1900/1735,
  37112. bottom: 63/1963
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Normal",
  37119. height: math.unit(6 + 8/12, "feet"),
  37120. default: true
  37121. },
  37122. ]
  37123. ))
  37124. characterMakers.push(() => makeCharacter(
  37125. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37126. {
  37127. back: {
  37128. height: math.unit(4 + 1/12, "feet"),
  37129. weight: math.unit(75, "lb"),
  37130. name: "Back",
  37131. image: {
  37132. source: "./media/characters/rhett/back.svg",
  37133. extra: 930/878,
  37134. bottom: 25/955
  37135. }
  37136. },
  37137. front: {
  37138. height: math.unit(4 + 1/12, "feet"),
  37139. weight: math.unit(75, "lb"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/rhett/front.svg",
  37143. extra: 1682/1586,
  37144. bottom: 92/1774
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Micro",
  37151. height: math.unit(8, "inches")
  37152. },
  37153. {
  37154. name: "Tiny",
  37155. height: math.unit(2, "feet")
  37156. },
  37157. {
  37158. name: "Normal",
  37159. height: math.unit(4 + 1/12, "feet"),
  37160. default: true
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37166. {
  37167. front: {
  37168. height: math.unit(3 + 3/12, "feet"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/penny/front.svg",
  37172. extra: 1406/1311,
  37173. bottom: 26/1432
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Normal",
  37180. height: math.unit(3 + 3/12, "feet"),
  37181. default: true
  37182. },
  37183. ]
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37187. {
  37188. front: {
  37189. height: math.unit(4 + 11/12, "feet"),
  37190. name: "Front",
  37191. image: {
  37192. source: "./media/characters/monty/front.svg",
  37193. extra: 1479/1209,
  37194. bottom: 0/1479
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(4 + 11/12, "feet"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(8 + 4/12, "feet"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/sterling/front.svg",
  37214. extra: 1420/1236,
  37215. bottom: 27/1447
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(8 + 4/12, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(15, "feet"),
  37232. name: "Front",
  37233. image: {
  37234. source: "./media/characters/marble/front.svg",
  37235. extra: 973/937,
  37236. bottom: 32/1005
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Normal",
  37243. height: math.unit(15, "feet"),
  37244. default: true
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37250. {
  37251. front: {
  37252. height: math.unit(3, "inches"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/powder/front.svg",
  37256. extra: 1504/1334,
  37257. bottom: 518/2022
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(3, "inches"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(4 + 5/12, "feet"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/joey-raccoon/front.svg",
  37277. extra: 1273/1197,
  37278. bottom: 0/1273
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(4 + 5/12, "feet"),
  37286. default: true
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37292. {
  37293. front: {
  37294. height: math.unit(8 + 4/12, "feet"),
  37295. name: "Front",
  37296. image: {
  37297. source: "./media/characters/vick/front.svg",
  37298. extra: 2187/2118,
  37299. bottom: 47/2234
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(8 + 4/12, "feet"),
  37307. default: true
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(5 + 5/12, "feet"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/mitsy/front.svg",
  37319. extra: 1842/1695,
  37320. bottom: 0/1842
  37321. }
  37322. },
  37323. },
  37324. [
  37325. {
  37326. name: "Normal",
  37327. height: math.unit(5 + 5/12, "feet"),
  37328. default: true
  37329. },
  37330. ]
  37331. ))
  37332. characterMakers.push(() => makeCharacter(
  37333. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37334. {
  37335. front: {
  37336. height: math.unit(6 + 3/12, "feet"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/silvy/front.svg",
  37340. extra: 1995/1836,
  37341. bottom: 225/2220
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(6 + 3/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(3 + 8/12, "feet"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/rodney/front.svg",
  37361. extra: 1956/1747,
  37362. bottom: 31/1987
  37363. }
  37364. },
  37365. frontDressed: {
  37366. height: math.unit(2.9, "feet"),
  37367. name: "Front (Dressed)",
  37368. image: {
  37369. source: "./media/characters/rodney/front-dressed.svg",
  37370. extra: 1382/1241,
  37371. bottom: 385/1767
  37372. }
  37373. },
  37374. },
  37375. [
  37376. {
  37377. name: "Normal",
  37378. height: math.unit(3 + 8/12, "feet"),
  37379. default: true
  37380. },
  37381. ]
  37382. ))
  37383. characterMakers.push(() => makeCharacter(
  37384. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37385. {
  37386. front: {
  37387. height: math.unit(5 + 9/12, "feet"),
  37388. weight: math.unit(194, "lbs"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/zakail-sudekai/front.svg",
  37392. extra: 2696/2533,
  37393. bottom: 248/2944
  37394. }
  37395. },
  37396. maw: {
  37397. height: math.unit(1.35, "feet"),
  37398. name: "Maw",
  37399. image: {
  37400. source: "./media/characters/zakail-sudekai/maw.svg"
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Normal",
  37407. height: math.unit(5 + 9/12, "feet"),
  37408. default: true
  37409. },
  37410. ]
  37411. ))
  37412. characterMakers.push(() => makeCharacter(
  37413. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37414. {
  37415. front: {
  37416. height: math.unit(8 + 4/12, "feet"),
  37417. weight: math.unit(1200, "lb"),
  37418. name: "Front",
  37419. image: {
  37420. source: "./media/characters/eleanor/front.svg",
  37421. extra: 1226/1192,
  37422. bottom: 52/1278
  37423. }
  37424. },
  37425. back: {
  37426. height: math.unit(8 + 4/12, "feet"),
  37427. weight: math.unit(1200, "lb"),
  37428. name: "Back",
  37429. image: {
  37430. source: "./media/characters/eleanor/back.svg",
  37431. extra: 1242/1184,
  37432. bottom: 60/1302
  37433. }
  37434. },
  37435. head: {
  37436. height: math.unit(2.62, "feet"),
  37437. name: "Head",
  37438. image: {
  37439. source: "./media/characters/eleanor/head.svg"
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(8 + 4/12, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(8 + 4/12, "feet"),
  37456. weight: math.unit(750, "lb"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/tanya/front.svg",
  37460. extra: 1749/1615,
  37461. bottom: 33/1782
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(8 + 4/12, "feet"),
  37469. default: true
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37475. {
  37476. front: {
  37477. height: math.unit(5, "feet"),
  37478. weight: math.unit(225, "lb"),
  37479. name: "Front",
  37480. image: {
  37481. source: "./media/characters/cindy/front.svg",
  37482. extra: 1320/1250,
  37483. bottom: 42/1362
  37484. }
  37485. },
  37486. frontDressed: {
  37487. height: math.unit(5, "feet"),
  37488. weight: math.unit(225, "lb"),
  37489. name: "Front (Dressed)",
  37490. image: {
  37491. source: "./media/characters/cindy/front-dressed.svg",
  37492. extra: 1320/1250,
  37493. bottom: 42/1362
  37494. }
  37495. },
  37496. back: {
  37497. height: math.unit(5, "feet"),
  37498. weight: math.unit(225, "lb"),
  37499. name: "Back",
  37500. image: {
  37501. source: "./media/characters/cindy/back.svg",
  37502. extra: 1384/1346,
  37503. bottom: 14/1398
  37504. }
  37505. },
  37506. },
  37507. [
  37508. {
  37509. name: "Normal",
  37510. height: math.unit(5, "feet"),
  37511. default: true
  37512. },
  37513. ]
  37514. ))
  37515. characterMakers.push(() => makeCharacter(
  37516. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37517. {
  37518. front: {
  37519. height: math.unit(6 + 9/12, "feet"),
  37520. weight: math.unit(440, "lb"),
  37521. name: "Front",
  37522. image: {
  37523. source: "./media/characters/wilbur-owen/front.svg",
  37524. extra: 1575/1448,
  37525. bottom: 72/1647
  37526. }
  37527. },
  37528. back: {
  37529. height: math.unit(6 + 9/12, "feet"),
  37530. weight: math.unit(440, "lb"),
  37531. name: "Back",
  37532. image: {
  37533. source: "./media/characters/wilbur-owen/back.svg",
  37534. extra: 1578/1445,
  37535. bottom: 36/1614
  37536. }
  37537. },
  37538. },
  37539. [
  37540. {
  37541. name: "Normal",
  37542. height: math.unit(6 + 9/12, "feet"),
  37543. default: true
  37544. },
  37545. ]
  37546. ))
  37547. characterMakers.push(() => makeCharacter(
  37548. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37549. {
  37550. front: {
  37551. height: math.unit(6 + 5/12, "feet"),
  37552. weight: math.unit(650, "lb"),
  37553. name: "Front",
  37554. image: {
  37555. source: "./media/characters/keegan/front.svg",
  37556. extra: 2387/2198,
  37557. bottom: 33/2420
  37558. }
  37559. },
  37560. side: {
  37561. height: math.unit(6 + 5/12, "feet"),
  37562. weight: math.unit(650, "lb"),
  37563. name: "Side",
  37564. image: {
  37565. source: "./media/characters/keegan/side.svg",
  37566. extra: 2390/2202,
  37567. bottom: 47/2437
  37568. }
  37569. },
  37570. back: {
  37571. height: math.unit(6 + 5/12, "feet"),
  37572. weight: math.unit(650, "lb"),
  37573. name: "Back",
  37574. image: {
  37575. source: "./media/characters/keegan/back.svg",
  37576. extra: 2418/2268,
  37577. bottom: 15/2433
  37578. }
  37579. },
  37580. frontSfw: {
  37581. height: math.unit(6 + 5/12, "feet"),
  37582. weight: math.unit(650, "lb"),
  37583. name: "Front (SFW)",
  37584. image: {
  37585. source: "./media/characters/keegan/front-sfw.svg",
  37586. extra: 2387/2198,
  37587. bottom: 33/2420
  37588. }
  37589. },
  37590. beans: {
  37591. height: math.unit(1.85, "feet"),
  37592. name: "Beans",
  37593. image: {
  37594. source: "./media/characters/keegan/beans.svg"
  37595. }
  37596. },
  37597. },
  37598. [
  37599. {
  37600. name: "Normal",
  37601. height: math.unit(6 + 5/12, "feet"),
  37602. default: true
  37603. },
  37604. ]
  37605. ))
  37606. characterMakers.push(() => makeCharacter(
  37607. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37608. {
  37609. front: {
  37610. height: math.unit(9, "feet"),
  37611. name: "Front",
  37612. image: {
  37613. source: "./media/characters/colton/front.svg",
  37614. extra: 1589/1326,
  37615. bottom: 139/1728
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(9, "feet"),
  37623. default: true
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(2 + 9/12, "feet"),
  37632. name: "Front",
  37633. image: {
  37634. source: "./media/characters/bora/front.svg",
  37635. extra: 1265/1250,
  37636. bottom: 24/1289
  37637. }
  37638. },
  37639. },
  37640. [
  37641. {
  37642. name: "Normal",
  37643. height: math.unit(2 + 9/12, "feet"),
  37644. default: true
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(8, "feet"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/myu-myu/front.svg",
  37656. extra: 1949/1857,
  37657. bottom: 90/2039
  37658. }
  37659. },
  37660. },
  37661. [
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(8, "feet"),
  37665. default: true
  37666. },
  37667. {
  37668. name: "Big",
  37669. height: math.unit(15, "feet")
  37670. },
  37671. {
  37672. name: "BIG",
  37673. height: math.unit(25, "feet")
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37679. {
  37680. side: {
  37681. height: math.unit(7 + 5/12, "feet"),
  37682. weight: math.unit(2800, "lb"),
  37683. name: "Side",
  37684. image: {
  37685. source: "./media/characters/haloren/side.svg",
  37686. extra: 1793/409,
  37687. bottom: 59/1852
  37688. }
  37689. },
  37690. frontPaw: {
  37691. height: math.unit(2.36, "feet"),
  37692. name: "Front paw",
  37693. image: {
  37694. source: "./media/characters/haloren/front-paw.svg"
  37695. }
  37696. },
  37697. hindPaw: {
  37698. height: math.unit(3.18, "feet"),
  37699. name: "Hind paw",
  37700. image: {
  37701. source: "./media/characters/haloren/hind-paw.svg"
  37702. }
  37703. },
  37704. maw: {
  37705. height: math.unit(5.05, "feet"),
  37706. name: "Maw",
  37707. image: {
  37708. source: "./media/characters/haloren/maw.svg"
  37709. }
  37710. },
  37711. dick: {
  37712. height: math.unit(2.90, "feet"),
  37713. name: "Dick",
  37714. image: {
  37715. source: "./media/characters/haloren/dick.svg"
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(7 + 5/12, "feet"),
  37723. default: true
  37724. },
  37725. {
  37726. name: "Enhanced",
  37727. height: math.unit(14 + 3/12, "feet")
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37733. {
  37734. front: {
  37735. height: math.unit(171, "cm"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/kimmy/front.svg",
  37739. extra: 1491/1435,
  37740. bottom: 53/1544
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Small",
  37747. height: math.unit(9, "cm")
  37748. },
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(171, "cm"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(8, "feet"),
  37761. weight: math.unit(300, "lb"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/galeboomer/front.svg",
  37765. extra: 4651/4415,
  37766. bottom: 162/4813
  37767. }
  37768. },
  37769. back: {
  37770. height: math.unit(8, "feet"),
  37771. weight: math.unit(300, "lb"),
  37772. name: "Back",
  37773. image: {
  37774. source: "./media/characters/galeboomer/back.svg",
  37775. extra: 4544/4314,
  37776. bottom: 16/4560
  37777. }
  37778. },
  37779. frontAlt: {
  37780. height: math.unit(8, "feet"),
  37781. weight: math.unit(300, "lb"),
  37782. name: "Front (Alt)",
  37783. image: {
  37784. source: "./media/characters/galeboomer/front-alt.svg",
  37785. extra: 4458/4228,
  37786. bottom: 68/4526
  37787. }
  37788. },
  37789. maw: {
  37790. height: math.unit(1.2, "feet"),
  37791. name: "Maw",
  37792. image: {
  37793. source: "./media/characters/galeboomer/maw.svg"
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(8, "feet"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(5 + 9/12, "feet"),
  37810. weight: math.unit(120, "lb"),
  37811. name: "Front",
  37812. image: {
  37813. source: "./media/characters/chyr/front.svg",
  37814. extra: 1323/1254,
  37815. bottom: 63/1386
  37816. }
  37817. },
  37818. back: {
  37819. height: math.unit(5 + 9/12, "feet"),
  37820. weight: math.unit(120, "lb"),
  37821. name: "Back",
  37822. image: {
  37823. source: "./media/characters/chyr/back.svg",
  37824. extra: 1323/1252,
  37825. bottom: 48/1371
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Normal",
  37832. height: math.unit(5 + 9/12, "feet"),
  37833. default: true
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(7, "feet"),
  37842. weight: math.unit(310, "lb"),
  37843. name: "Front",
  37844. image: {
  37845. source: "./media/characters/solarus/front.svg",
  37846. extra: 2415/2021,
  37847. bottom: 103/2518
  37848. }
  37849. },
  37850. back: {
  37851. height: math.unit(7, "feet"),
  37852. weight: math.unit(310, "lb"),
  37853. name: "Back",
  37854. image: {
  37855. source: "./media/characters/solarus/back.svg",
  37856. extra: 2463/2089,
  37857. bottom: 79/2542
  37858. }
  37859. },
  37860. },
  37861. [
  37862. {
  37863. name: "Normal",
  37864. height: math.unit(7, "feet"),
  37865. default: true
  37866. },
  37867. ]
  37868. ))
  37869. characterMakers.push(() => makeCharacter(
  37870. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37871. {
  37872. front: {
  37873. height: math.unit(16, "feet"),
  37874. name: "Front",
  37875. image: {
  37876. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37877. extra: 1844/1780,
  37878. bottom: 58/1902
  37879. }
  37880. },
  37881. winterCoat: {
  37882. height: math.unit(16, "feet"),
  37883. name: "Winter Coat",
  37884. image: {
  37885. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37886. extra: 1807/1775,
  37887. bottom: 69/1876
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(16, "feet"),
  37895. default: true
  37896. },
  37897. {
  37898. name: "Chicago Size",
  37899. height: math.unit(560, "feet")
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(11 + 6/12, "feet"),
  37908. weight: math.unit(1366, "lb"),
  37909. name: "Front",
  37910. image: {
  37911. source: "./media/characters/lexor/front.svg",
  37912. extra: 1560/1481,
  37913. bottom: 211/1771
  37914. }
  37915. },
  37916. back: {
  37917. height: math.unit(11 + 6/12, "feet"),
  37918. weight: math.unit(1366, "lb"),
  37919. name: "Back",
  37920. image: {
  37921. source: "./media/characters/lexor/back.svg",
  37922. extra: 1614/1533,
  37923. bottom: 76/1690
  37924. }
  37925. },
  37926. maw: {
  37927. height: math.unit(3, "feet"),
  37928. name: "Maw",
  37929. image: {
  37930. source: "./media/characters/lexor/maw.svg"
  37931. }
  37932. },
  37933. dick: {
  37934. height: math.unit(2.59, "feet"),
  37935. name: "Dick",
  37936. image: {
  37937. source: "./media/characters/lexor/dick.svg"
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(11 + 6/12, "feet"),
  37945. default: true
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37951. {
  37952. front: {
  37953. height: math.unit(5 + 8/12, "feet"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/magnum/front.svg",
  37957. extra: 942/855,
  37958. bottom: 26/968
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Normal",
  37965. height: math.unit(5 + 8/12, "feet"),
  37966. default: true
  37967. },
  37968. ]
  37969. ))
  37970. characterMakers.push(() => makeCharacter(
  37971. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37972. {
  37973. front: {
  37974. height: math.unit(18 + 4/12, "feet"),
  37975. weight: math.unit(1500, "kg"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/solas-sharpsman/front.svg",
  37979. extra: 1698/1589,
  37980. bottom: 0/1698
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(18 + 4/12, "feet"),
  37988. default: true
  37989. },
  37990. ]
  37991. ))
  37992. characterMakers.push(() => makeCharacter(
  37993. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37994. {
  37995. front: {
  37996. height: math.unit(5 + 5/12, "feet"),
  37997. weight: math.unit(180, "lb"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/october/front.svg",
  38001. extra: 1800/1650,
  38002. bottom: 0/1800
  38003. }
  38004. },
  38005. frontNsfw: {
  38006. height: math.unit(5 + 5/12, "feet"),
  38007. weight: math.unit(180, "lb"),
  38008. name: "Front (NSFW)",
  38009. image: {
  38010. source: "./media/characters/october/front-nsfw.svg",
  38011. extra: 1392/1307,
  38012. bottom: 42/1434
  38013. }
  38014. },
  38015. },
  38016. [
  38017. {
  38018. name: "Normal",
  38019. height: math.unit(5 + 5/12, "feet"),
  38020. default: true
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(8 + 6/12, "feet"),
  38029. name: "Front",
  38030. image: {
  38031. source: "./media/characters/essynkardi/front.svg",
  38032. extra: 1914/1846,
  38033. bottom: 22/1936
  38034. }
  38035. },
  38036. },
  38037. [
  38038. {
  38039. name: "Normal",
  38040. height: math.unit(8 + 6/12, "feet"),
  38041. default: true
  38042. },
  38043. ]
  38044. ))
  38045. characterMakers.push(() => makeCharacter(
  38046. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38047. {
  38048. front: {
  38049. height: math.unit(6 + 6/12, "feet"),
  38050. weight: math.unit(7, "lb"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/icky/front.svg",
  38054. extra: 813/782,
  38055. bottom: 66/879
  38056. }
  38057. },
  38058. back: {
  38059. height: math.unit(6 + 6/12, "feet"),
  38060. weight: math.unit(7, "lb"),
  38061. name: "Back",
  38062. image: {
  38063. source: "./media/characters/icky/back.svg",
  38064. extra: 754/735,
  38065. bottom: 56/810
  38066. }
  38067. },
  38068. },
  38069. [
  38070. {
  38071. name: "Normal",
  38072. height: math.unit(6 + 6/12, "feet"),
  38073. default: true
  38074. },
  38075. ]
  38076. ))
  38077. characterMakers.push(() => makeCharacter(
  38078. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38079. {
  38080. front: {
  38081. height: math.unit(15, "feet"),
  38082. name: "Front",
  38083. image: {
  38084. source: "./media/characters/rojas/front.svg",
  38085. extra: 1462/1408,
  38086. bottom: 95/1557
  38087. }
  38088. },
  38089. back: {
  38090. height: math.unit(15, "feet"),
  38091. name: "Back",
  38092. image: {
  38093. source: "./media/characters/rojas/back.svg",
  38094. extra: 1023/954,
  38095. bottom: 28/1051
  38096. }
  38097. },
  38098. },
  38099. [
  38100. {
  38101. name: "Normal",
  38102. height: math.unit(15, "feet"),
  38103. default: true
  38104. },
  38105. ]
  38106. ))
  38107. characterMakers.push(() => makeCharacter(
  38108. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38109. {
  38110. frontHuman: {
  38111. height: math.unit(5 + 7/12, "feet"),
  38112. name: "Front (Human)",
  38113. image: {
  38114. source: "./media/characters/alek-dryagan/front-human.svg",
  38115. extra: 1687/1667,
  38116. bottom: 69/1756
  38117. }
  38118. },
  38119. backHuman: {
  38120. height: math.unit(5 + 7/12, "feet"),
  38121. name: "Back (Human)",
  38122. image: {
  38123. source: "./media/characters/alek-dryagan/back-human.svg",
  38124. extra: 1670/1649,
  38125. bottom: 65/1735
  38126. }
  38127. },
  38128. frontDemi: {
  38129. height: math.unit(65, "feet"),
  38130. name: "Front (Demi)",
  38131. image: {
  38132. source: "./media/characters/alek-dryagan/front-demi.svg",
  38133. extra: 1669/1642,
  38134. bottom: 49/1718
  38135. }
  38136. },
  38137. backDemi: {
  38138. height: math.unit(65, "feet"),
  38139. name: "Back (Demi)",
  38140. image: {
  38141. source: "./media/characters/alek-dryagan/back-demi.svg",
  38142. extra: 1658/1637,
  38143. bottom: 40/1698
  38144. }
  38145. },
  38146. mawHuman: {
  38147. height: math.unit(0.3, "feet"),
  38148. name: "Maw (Human)",
  38149. image: {
  38150. source: "./media/characters/alek-dryagan/maw-human.svg"
  38151. }
  38152. },
  38153. mawDemi: {
  38154. height: math.unit(3.8, "feet"),
  38155. name: "Maw (Demi)",
  38156. image: {
  38157. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38158. }
  38159. },
  38160. },
  38161. [
  38162. {
  38163. name: "Normal",
  38164. height: math.unit(5 + 7/12, "feet"),
  38165. default: true
  38166. },
  38167. ]
  38168. ))
  38169. characterMakers.push(() => makeCharacter(
  38170. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38171. {
  38172. frontHuman: {
  38173. height: math.unit(5 + 2/12, "feet"),
  38174. name: "Front (Human)",
  38175. image: {
  38176. source: "./media/characters/gen/front-human.svg",
  38177. extra: 1627/1538,
  38178. bottom: 71/1698
  38179. }
  38180. },
  38181. backHuman: {
  38182. height: math.unit(5 + 2/12, "feet"),
  38183. name: "Back (Human)",
  38184. image: {
  38185. source: "./media/characters/gen/back-human.svg",
  38186. extra: 1638/1548,
  38187. bottom: 69/1707
  38188. }
  38189. },
  38190. frontDemi: {
  38191. height: math.unit(5 + 2/12, "feet"),
  38192. name: "Front (Demi)",
  38193. image: {
  38194. source: "./media/characters/gen/front-demi.svg",
  38195. extra: 1627/1538,
  38196. bottom: 71/1698
  38197. }
  38198. },
  38199. backDemi: {
  38200. height: math.unit(5 + 2/12, "feet"),
  38201. name: "Back (Demi)",
  38202. image: {
  38203. source: "./media/characters/gen/back-demi.svg",
  38204. extra: 1638/1548,
  38205. bottom: 69/1707
  38206. }
  38207. },
  38208. },
  38209. [
  38210. {
  38211. name: "Normal",
  38212. height: math.unit(5 + 2/12, "feet"),
  38213. default: true
  38214. },
  38215. ]
  38216. ))
  38217. characterMakers.push(() => makeCharacter(
  38218. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38219. {
  38220. frontImp: {
  38221. height: math.unit(1 + 11/12, "feet"),
  38222. name: "Front (Imp)",
  38223. image: {
  38224. source: "./media/characters/max-kobold/front-imp.svg",
  38225. extra: 1238/1134,
  38226. bottom: 81/1319
  38227. }
  38228. },
  38229. backImp: {
  38230. height: math.unit(1 + 11/12, "feet"),
  38231. name: "Back (Imp)",
  38232. image: {
  38233. source: "./media/characters/max-kobold/back-imp.svg",
  38234. extra: 1334/1175,
  38235. bottom: 34/1368
  38236. }
  38237. },
  38238. frontDemi: {
  38239. height: math.unit(5 + 9/12, "feet"),
  38240. name: "Front (Demi)",
  38241. image: {
  38242. source: "./media/characters/max-kobold/front-demi.svg",
  38243. extra: 1715/1685,
  38244. bottom: 54/1769
  38245. }
  38246. },
  38247. backDemi: {
  38248. height: math.unit(5 + 9/12, "feet"),
  38249. name: "Back (Demi)",
  38250. image: {
  38251. source: "./media/characters/max-kobold/back-demi.svg",
  38252. extra: 1752/1729,
  38253. bottom: 41/1793
  38254. }
  38255. },
  38256. handImp: {
  38257. height: math.unit(0.45, "feet"),
  38258. name: "Hand (Imp)",
  38259. image: {
  38260. source: "./media/characters/max-kobold/hand.svg"
  38261. }
  38262. },
  38263. pawImp: {
  38264. height: math.unit(0.46, "feet"),
  38265. name: "Paw (Imp)",
  38266. image: {
  38267. source: "./media/characters/max-kobold/paw.svg"
  38268. }
  38269. },
  38270. handDemi: {
  38271. height: math.unit(0.80, "feet"),
  38272. name: "Hand (Demi)",
  38273. image: {
  38274. source: "./media/characters/max-kobold/hand.svg"
  38275. }
  38276. },
  38277. pawDemi: {
  38278. height: math.unit(1.1, "feet"),
  38279. name: "Paw (Demi)",
  38280. image: {
  38281. source: "./media/characters/max-kobold/paw.svg"
  38282. }
  38283. },
  38284. headImp: {
  38285. height: math.unit(1.33, "feet"),
  38286. name: "Head (Imp)",
  38287. image: {
  38288. source: "./media/characters/max-kobold/head-imp.svg"
  38289. }
  38290. },
  38291. mawImp: {
  38292. height: math.unit(0.75, "feet"),
  38293. name: "Maw (Imp)",
  38294. image: {
  38295. source: "./media/characters/max-kobold/maw-imp.svg"
  38296. }
  38297. },
  38298. mawDemi: {
  38299. height: math.unit(0.42, "feet"),
  38300. name: "Maw (Demi)",
  38301. image: {
  38302. source: "./media/characters/max-kobold/maw-demi.svg"
  38303. }
  38304. },
  38305. },
  38306. [
  38307. {
  38308. name: "Normal",
  38309. height: math.unit(1 + 11/12, "feet"),
  38310. default: true
  38311. },
  38312. ]
  38313. ))
  38314. characterMakers.push(() => makeCharacter(
  38315. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38316. {
  38317. front: {
  38318. height: math.unit(7 + 5/12, "feet"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/carbon/front.svg",
  38322. extra: 1754/1689,
  38323. bottom: 65/1819
  38324. }
  38325. },
  38326. back: {
  38327. height: math.unit(7 + 5/12, "feet"),
  38328. name: "Back",
  38329. image: {
  38330. source: "./media/characters/carbon/back.svg",
  38331. extra: 1762/1695,
  38332. bottom: 24/1786
  38333. }
  38334. },
  38335. frontGigantamax: {
  38336. height: math.unit(150, "feet"),
  38337. name: "Front (Gigantamax)",
  38338. image: {
  38339. source: "./media/characters/carbon/front-gigantamax.svg",
  38340. extra: 1826/1669,
  38341. bottom: 59/1885
  38342. }
  38343. },
  38344. backGigantamax: {
  38345. height: math.unit(150, "feet"),
  38346. name: "Back (Gigantamax)",
  38347. image: {
  38348. source: "./media/characters/carbon/back-gigantamax.svg",
  38349. extra: 1796/1653,
  38350. bottom: 53/1849
  38351. }
  38352. },
  38353. maw: {
  38354. height: math.unit(0.48, "feet"),
  38355. name: "Maw",
  38356. image: {
  38357. source: "./media/characters/carbon/maw.svg"
  38358. }
  38359. },
  38360. mawGigantamax: {
  38361. height: math.unit(7.5, "feet"),
  38362. name: "Maw (Gigantamax)",
  38363. image: {
  38364. source: "./media/characters/carbon/maw-gigantamax.svg"
  38365. }
  38366. },
  38367. },
  38368. [
  38369. {
  38370. name: "Normal",
  38371. height: math.unit(7 + 5/12, "feet"),
  38372. default: true
  38373. },
  38374. ]
  38375. ))
  38376. characterMakers.push(() => makeCharacter(
  38377. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38378. {
  38379. front: {
  38380. height: math.unit(6, "feet"),
  38381. name: "Front",
  38382. image: {
  38383. source: "./media/characters/maverick/front.svg",
  38384. extra: 1672/1661,
  38385. bottom: 85/1757
  38386. }
  38387. },
  38388. back: {
  38389. height: math.unit(6, "feet"),
  38390. name: "Back",
  38391. image: {
  38392. source: "./media/characters/maverick/back.svg",
  38393. extra: 1642/1631,
  38394. bottom: 38/1680
  38395. }
  38396. },
  38397. },
  38398. [
  38399. {
  38400. name: "Normal",
  38401. height: math.unit(6, "feet"),
  38402. default: true
  38403. },
  38404. ]
  38405. ))
  38406. characterMakers.push(() => makeCharacter(
  38407. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38408. {
  38409. front: {
  38410. height: math.unit(15, "feet"),
  38411. weight: math.unit(615, "lb"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/grockle/front.svg",
  38415. extra: 1535/1427,
  38416. bottom: 56/1591
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(15, "feet"),
  38424. default: true
  38425. },
  38426. {
  38427. name: "Large",
  38428. height: math.unit(150, "feet")
  38429. },
  38430. {
  38431. name: "Macro",
  38432. height: math.unit(1876, "feet")
  38433. },
  38434. {
  38435. name: "Mega Macro",
  38436. height: math.unit(121940, "feet")
  38437. },
  38438. {
  38439. name: "Giga Macro",
  38440. height: math.unit(750, "km")
  38441. },
  38442. {
  38443. name: "Tera Macro",
  38444. height: math.unit(750000, "km")
  38445. },
  38446. {
  38447. name: "Galactic",
  38448. height: math.unit(1.4e5, "km")
  38449. },
  38450. {
  38451. name: "Godlike",
  38452. height: math.unit(9.8e280, "galaxies")
  38453. },
  38454. ]
  38455. ))
  38456. characterMakers.push(() => makeCharacter(
  38457. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38458. {
  38459. front: {
  38460. height: math.unit(11, "meters"),
  38461. weight: math.unit(20, "tonnes"),
  38462. name: "Front",
  38463. image: {
  38464. source: "./media/characters/alistair/front.svg",
  38465. extra: 1265/1009,
  38466. bottom: 93/1358
  38467. }
  38468. },
  38469. },
  38470. [
  38471. {
  38472. name: "Normal",
  38473. height: math.unit(11, "meters"),
  38474. default: true
  38475. },
  38476. ]
  38477. ))
  38478. characterMakers.push(() => makeCharacter(
  38479. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38480. {
  38481. front: {
  38482. height: math.unit(5 + 8/12, "feet"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/haruka/front.svg",
  38486. extra: 2012/1952,
  38487. bottom: 0/2012
  38488. }
  38489. },
  38490. },
  38491. [
  38492. {
  38493. name: "Normal",
  38494. height: math.unit(5 + 8/12, "feet"),
  38495. default: true
  38496. },
  38497. ]
  38498. ))
  38499. characterMakers.push(() => makeCharacter(
  38500. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38501. {
  38502. back: {
  38503. height: math.unit(9, "feet"),
  38504. name: "Back",
  38505. image: {
  38506. source: "./media/characters/vivian-sylveon/back.svg",
  38507. extra: 1853/1714,
  38508. bottom: 0/1853
  38509. }
  38510. },
  38511. },
  38512. [
  38513. {
  38514. name: "Normal",
  38515. height: math.unit(9, "feet"),
  38516. default: true
  38517. },
  38518. {
  38519. name: "Macro",
  38520. height: math.unit(500, "feet")
  38521. },
  38522. {
  38523. name: "Megamacro",
  38524. height: math.unit(600, "miles")
  38525. },
  38526. {
  38527. name: "Gigamacro",
  38528. height: math.unit(30000, "miles")
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38534. {
  38535. anthro: {
  38536. height: math.unit(5 + 10/12, "feet"),
  38537. weight: math.unit(100, "lb"),
  38538. name: "Anthro",
  38539. image: {
  38540. source: "./media/characters/daiki/anthro.svg",
  38541. extra: 1115/1027,
  38542. bottom: 69/1184
  38543. }
  38544. },
  38545. feral: {
  38546. height: math.unit(200, "feet"),
  38547. name: "Feral",
  38548. image: {
  38549. source: "./media/characters/daiki/feral.svg",
  38550. extra: 1256/313,
  38551. bottom: 39/1295
  38552. }
  38553. },
  38554. feralHead: {
  38555. height: math.unit(171, "feet"),
  38556. name: "Feral Head",
  38557. image: {
  38558. source: "./media/characters/daiki/feral-head.svg"
  38559. }
  38560. },
  38561. manaDragon: {
  38562. height: math.unit(170, "meters"),
  38563. name: "Mana-dragon",
  38564. image: {
  38565. source: "./media/characters/daiki/mana-dragon.svg",
  38566. extra: 763/420,
  38567. bottom: 97/860
  38568. }
  38569. },
  38570. },
  38571. [
  38572. {
  38573. name: "Normal",
  38574. height: math.unit(5 + 10/12, "feet"),
  38575. default: true
  38576. },
  38577. ]
  38578. ))
  38579. characterMakers.push(() => makeCharacter(
  38580. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38581. {
  38582. fullyEquippedFront: {
  38583. height: math.unit(3 + 1/12, "feet"),
  38584. weight: math.unit(24, "lb"),
  38585. name: "Fully Equipped (Front)",
  38586. image: {
  38587. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38588. extra: 687/605,
  38589. bottom: 18/705
  38590. }
  38591. },
  38592. fullyEquippedBack: {
  38593. height: math.unit(3 + 1/12, "feet"),
  38594. weight: math.unit(24, "lb"),
  38595. name: "Fully Equipped (Back)",
  38596. image: {
  38597. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38598. extra: 689/590,
  38599. bottom: 18/707
  38600. }
  38601. },
  38602. dailyWear: {
  38603. height: math.unit(3 + 1/12, "feet"),
  38604. weight: math.unit(24, "lb"),
  38605. name: "Daily Wear",
  38606. image: {
  38607. source: "./media/characters/tea-spot/daily-wear.svg",
  38608. extra: 701/620,
  38609. bottom: 21/722
  38610. }
  38611. },
  38612. maidWork: {
  38613. height: math.unit(3 + 1/12, "feet"),
  38614. weight: math.unit(24, "lb"),
  38615. name: "Maid Work",
  38616. image: {
  38617. source: "./media/characters/tea-spot/maid-work.svg",
  38618. extra: 693/609,
  38619. bottom: 15/708
  38620. }
  38621. },
  38622. },
  38623. [
  38624. {
  38625. name: "Normal",
  38626. height: math.unit(3 + 1/12, "feet"),
  38627. default: true
  38628. },
  38629. ]
  38630. ))
  38631. characterMakers.push(() => makeCharacter(
  38632. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38633. {
  38634. front: {
  38635. height: math.unit(175, "cm"),
  38636. weight: math.unit(75, "kg"),
  38637. name: "Front",
  38638. image: {
  38639. source: "./media/characters/chee/front.svg",
  38640. extra: 1796/1740,
  38641. bottom: 40/1836
  38642. }
  38643. },
  38644. },
  38645. [
  38646. {
  38647. name: "Micro-Micro",
  38648. height: math.unit(1, "nm")
  38649. },
  38650. {
  38651. name: "Micro-erst",
  38652. height: math.unit(1, "micrometer")
  38653. },
  38654. {
  38655. name: "Micro-er",
  38656. height: math.unit(1, "cm")
  38657. },
  38658. {
  38659. name: "Normal",
  38660. height: math.unit(175, "cm"),
  38661. default: true
  38662. },
  38663. {
  38664. name: "Macro",
  38665. height: math.unit(100, "m")
  38666. },
  38667. {
  38668. name: "Macro-er",
  38669. height: math.unit(1, "km")
  38670. },
  38671. {
  38672. name: "Macro-erst",
  38673. height: math.unit(10, "km")
  38674. },
  38675. {
  38676. name: "Macro-Macro",
  38677. height: math.unit(100, "km")
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38683. {
  38684. front: {
  38685. height: math.unit(11 + 9/12, "feet"),
  38686. weight: math.unit(935, "lb"),
  38687. name: "Front",
  38688. image: {
  38689. source: "./media/characters/kingsley/front.svg",
  38690. extra: 1803/1674,
  38691. bottom: 127/1930
  38692. }
  38693. },
  38694. frontNude: {
  38695. height: math.unit(11 + 9/12, "feet"),
  38696. weight: math.unit(935, "lb"),
  38697. name: "Front (Nude)",
  38698. image: {
  38699. source: "./media/characters/kingsley/front-nude.svg",
  38700. extra: 1803/1674,
  38701. bottom: 127/1930
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(11 + 9/12, "feet"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38715. {
  38716. side: {
  38717. height: math.unit(9, "feet"),
  38718. name: "Side",
  38719. image: {
  38720. source: "./media/characters/rymel/side.svg",
  38721. extra: 792/469,
  38722. bottom: 121/913
  38723. }
  38724. },
  38725. maw: {
  38726. height: math.unit(2.4, "meters"),
  38727. name: "Maw",
  38728. image: {
  38729. source: "./media/characters/rymel/maw.svg"
  38730. }
  38731. },
  38732. },
  38733. [
  38734. {
  38735. name: "House Drake",
  38736. height: math.unit(2, "feet")
  38737. },
  38738. {
  38739. name: "Reduced",
  38740. height: math.unit(4.5, "feet")
  38741. },
  38742. {
  38743. name: "Normal",
  38744. height: math.unit(9, "feet"),
  38745. default: true
  38746. },
  38747. ]
  38748. ))
  38749. characterMakers.push(() => makeCharacter(
  38750. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38751. {
  38752. front: {
  38753. height: math.unit(1.74, "meters"),
  38754. weight: math.unit(55, "kg"),
  38755. name: "Front",
  38756. image: {
  38757. source: "./media/characters/rubus/front.svg",
  38758. extra: 1894/1742,
  38759. bottom: 44/1938
  38760. }
  38761. },
  38762. },
  38763. [
  38764. {
  38765. name: "Normal",
  38766. height: math.unit(1.74, "meters"),
  38767. default: true
  38768. },
  38769. ]
  38770. ))
  38771. characterMakers.push(() => makeCharacter(
  38772. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38773. {
  38774. front: {
  38775. height: math.unit(5 + 2/12, "feet"),
  38776. weight: math.unit(112, "lb"),
  38777. name: "Front",
  38778. image: {
  38779. source: "./media/characters/cassie-kingston/front.svg",
  38780. extra: 1438/1390,
  38781. bottom: 47/1485
  38782. }
  38783. },
  38784. },
  38785. [
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(5 + 2/12, "feet"),
  38789. default: true
  38790. },
  38791. {
  38792. name: "Macro",
  38793. height: math.unit(128, "feet")
  38794. },
  38795. {
  38796. name: "Megamacro",
  38797. height: math.unit(2.56, "miles")
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(7, "feet"),
  38806. name: "Front",
  38807. image: {
  38808. source: "./media/characters/fox/front.svg",
  38809. extra: 1798/1703,
  38810. bottom: 55/1853
  38811. }
  38812. },
  38813. back: {
  38814. height: math.unit(7, "feet"),
  38815. name: "Back",
  38816. image: {
  38817. source: "./media/characters/fox/back.svg",
  38818. extra: 1748/1649,
  38819. bottom: 32/1780
  38820. }
  38821. },
  38822. head: {
  38823. height: math.unit(1.95, "feet"),
  38824. name: "Head",
  38825. image: {
  38826. source: "./media/characters/fox/head.svg"
  38827. }
  38828. },
  38829. dick: {
  38830. height: math.unit(1.33, "feet"),
  38831. name: "Dick",
  38832. image: {
  38833. source: "./media/characters/fox/dick.svg"
  38834. }
  38835. },
  38836. foot: {
  38837. height: math.unit(1, "feet"),
  38838. name: "Foot",
  38839. image: {
  38840. source: "./media/characters/fox/foot.svg"
  38841. }
  38842. },
  38843. paw: {
  38844. height: math.unit(0.92, "feet"),
  38845. name: "Paw",
  38846. image: {
  38847. source: "./media/characters/fox/paw.svg"
  38848. }
  38849. },
  38850. },
  38851. [
  38852. {
  38853. name: "Small",
  38854. height: math.unit(3, "inches")
  38855. },
  38856. {
  38857. name: "\"Realistic\"",
  38858. height: math.unit(7, "feet")
  38859. },
  38860. {
  38861. name: "Normal",
  38862. height: math.unit(150, "feet"),
  38863. default: true
  38864. },
  38865. {
  38866. name: "BIG",
  38867. height: math.unit(1200, "feet")
  38868. },
  38869. {
  38870. name: "👀",
  38871. height: math.unit(5, "miles")
  38872. },
  38873. {
  38874. name: "👀👀👀",
  38875. height: math.unit(64, "miles")
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(625, "feet"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/asonja-rossa/front.svg",
  38887. extra: 1833/1686,
  38888. bottom: 24/1857
  38889. }
  38890. },
  38891. back: {
  38892. height: math.unit(625, "feet"),
  38893. name: "Back",
  38894. image: {
  38895. source: "./media/characters/asonja-rossa/back.svg",
  38896. extra: 1852/1753,
  38897. bottom: 26/1878
  38898. }
  38899. },
  38900. },
  38901. [
  38902. {
  38903. name: "Macro",
  38904. height: math.unit(625, "feet"),
  38905. default: true
  38906. },
  38907. ]
  38908. ))
  38909. characterMakers.push(() => makeCharacter(
  38910. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38911. {
  38912. side: {
  38913. height: math.unit(8, "feet"),
  38914. name: "Side",
  38915. image: {
  38916. source: "./media/characters/rezukii/side.svg",
  38917. extra: 979/542,
  38918. bottom: 87/1066
  38919. }
  38920. },
  38921. sitting: {
  38922. height: math.unit(14.6, "feet"),
  38923. name: "Sitting",
  38924. image: {
  38925. source: "./media/characters/rezukii/sitting.svg",
  38926. extra: 1023/813,
  38927. bottom: 45/1068
  38928. }
  38929. },
  38930. },
  38931. [
  38932. {
  38933. name: "Tiny",
  38934. height: math.unit(2, "feet")
  38935. },
  38936. {
  38937. name: "Smol",
  38938. height: math.unit(4, "feet")
  38939. },
  38940. {
  38941. name: "Normal",
  38942. height: math.unit(8, "feet"),
  38943. default: true
  38944. },
  38945. {
  38946. name: "Big",
  38947. height: math.unit(12, "feet")
  38948. },
  38949. {
  38950. name: "Macro",
  38951. height: math.unit(30, "feet")
  38952. },
  38953. ]
  38954. ))
  38955. characterMakers.push(() => makeCharacter(
  38956. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38957. {
  38958. front: {
  38959. height: math.unit(14, "feet"),
  38960. weight: math.unit(9.5, "tonnes"),
  38961. name: "Front",
  38962. image: {
  38963. source: "./media/characters/dawnheart/front.svg",
  38964. extra: 2792/2675,
  38965. bottom: 64/2856
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(14, "feet"),
  38973. default: true
  38974. },
  38975. ]
  38976. ))
  38977. characterMakers.push(() => makeCharacter(
  38978. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38979. {
  38980. front: {
  38981. height: math.unit(1.7, "m"),
  38982. name: "Front",
  38983. image: {
  38984. source: "./media/characters/gladi/front.svg",
  38985. extra: 1460/1362,
  38986. bottom: 19/1479
  38987. }
  38988. },
  38989. back: {
  38990. height: math.unit(1.7, "m"),
  38991. name: "Back",
  38992. image: {
  38993. source: "./media/characters/gladi/back.svg",
  38994. extra: 1459/1357,
  38995. bottom: 12/1471
  38996. }
  38997. },
  38998. feral: {
  38999. height: math.unit(2.05, "m"),
  39000. name: "Feral",
  39001. image: {
  39002. source: "./media/characters/gladi/feral.svg",
  39003. extra: 821/557,
  39004. bottom: 91/912
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Shortest",
  39011. height: math.unit(70, "cm")
  39012. },
  39013. {
  39014. name: "Normal",
  39015. height: math.unit(1.7, "m")
  39016. },
  39017. {
  39018. name: "Macro",
  39019. height: math.unit(10, "m"),
  39020. default: true
  39021. },
  39022. {
  39023. name: "Tallest",
  39024. height: math.unit(200, "m")
  39025. },
  39026. ]
  39027. ))
  39028. characterMakers.push(() => makeCharacter(
  39029. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39030. {
  39031. front: {
  39032. height: math.unit(5 + 7/12, "feet"),
  39033. weight: math.unit(2, "tons"),
  39034. name: "Front",
  39035. image: {
  39036. source: "./media/characters/erdno/front.svg",
  39037. extra: 1234/1129,
  39038. bottom: 35/1269
  39039. }
  39040. },
  39041. angled: {
  39042. height: math.unit(5 + 7/12, "feet"),
  39043. weight: math.unit(2, "tons"),
  39044. name: "Angled",
  39045. image: {
  39046. source: "./media/characters/erdno/angled.svg",
  39047. extra: 1185/1139,
  39048. bottom: 36/1221
  39049. }
  39050. },
  39051. side: {
  39052. height: math.unit(5 + 7/12, "feet"),
  39053. weight: math.unit(2, "tons"),
  39054. name: "Side",
  39055. image: {
  39056. source: "./media/characters/erdno/side.svg",
  39057. extra: 1191/1144,
  39058. bottom: 40/1231
  39059. }
  39060. },
  39061. back: {
  39062. height: math.unit(5 + 7/12, "feet"),
  39063. weight: math.unit(2, "tons"),
  39064. name: "Back",
  39065. image: {
  39066. source: "./media/characters/erdno/back.svg",
  39067. extra: 1202/1146,
  39068. bottom: 17/1219
  39069. }
  39070. },
  39071. frontNsfw: {
  39072. height: math.unit(5 + 7/12, "feet"),
  39073. weight: math.unit(2, "tons"),
  39074. name: "Front (NSFW)",
  39075. image: {
  39076. source: "./media/characters/erdno/front-nsfw.svg",
  39077. extra: 1234/1129,
  39078. bottom: 35/1269
  39079. }
  39080. },
  39081. angledNsfw: {
  39082. height: math.unit(5 + 7/12, "feet"),
  39083. weight: math.unit(2, "tons"),
  39084. name: "Angled (NSFW)",
  39085. image: {
  39086. source: "./media/characters/erdno/angled-nsfw.svg",
  39087. extra: 1185/1139,
  39088. bottom: 36/1221
  39089. }
  39090. },
  39091. sideNsfw: {
  39092. height: math.unit(5 + 7/12, "feet"),
  39093. weight: math.unit(2, "tons"),
  39094. name: "Side (NSFW)",
  39095. image: {
  39096. source: "./media/characters/erdno/side-nsfw.svg",
  39097. extra: 1191/1144,
  39098. bottom: 40/1231
  39099. }
  39100. },
  39101. backNsfw: {
  39102. height: math.unit(5 + 7/12, "feet"),
  39103. weight: math.unit(2, "tons"),
  39104. name: "Back (NSFW)",
  39105. image: {
  39106. source: "./media/characters/erdno/back-nsfw.svg",
  39107. extra: 1202/1146,
  39108. bottom: 17/1219
  39109. }
  39110. },
  39111. frontHyper: {
  39112. height: math.unit(5 + 7/12, "feet"),
  39113. weight: math.unit(2, "tons"),
  39114. name: "Front (Hyper)",
  39115. image: {
  39116. source: "./media/characters/erdno/front-hyper.svg",
  39117. extra: 1298/1136,
  39118. bottom: 35/1333
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(5 + 7/12, "feet"),
  39126. default: true
  39127. },
  39128. {
  39129. name: "Big",
  39130. height: math.unit(5.7, "meters")
  39131. },
  39132. {
  39133. name: "Macro",
  39134. height: math.unit(5.7, "kilometers")
  39135. },
  39136. {
  39137. name: "Megamacro",
  39138. height: math.unit(5.7, "earths")
  39139. },
  39140. ]
  39141. ))
  39142. characterMakers.push(() => makeCharacter(
  39143. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39144. {
  39145. front: {
  39146. height: math.unit(5 + 10/12, "feet"),
  39147. weight: math.unit(150, "lb"),
  39148. name: "Front",
  39149. image: {
  39150. source: "./media/characters/jamie/front.svg",
  39151. extra: 1908/1768,
  39152. bottom: 19/1927
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Minimum",
  39159. height: math.unit(2, "cm")
  39160. },
  39161. {
  39162. name: "Micro",
  39163. height: math.unit(3, "inches")
  39164. },
  39165. {
  39166. name: "Normal",
  39167. height: math.unit(5 + 10/12, "feet"),
  39168. default: true
  39169. },
  39170. {
  39171. name: "Macro",
  39172. height: math.unit(150, "feet")
  39173. },
  39174. {
  39175. name: "Megamacro",
  39176. height: math.unit(10000, "m")
  39177. },
  39178. ]
  39179. ))
  39180. characterMakers.push(() => makeCharacter(
  39181. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39182. {
  39183. front: {
  39184. height: math.unit(2, "meters"),
  39185. weight: math.unit(100, "kg"),
  39186. name: "Front",
  39187. image: {
  39188. source: "./media/characters/shiron/front.svg",
  39189. extra: 2103/1985,
  39190. bottom: 98/2201
  39191. }
  39192. },
  39193. back: {
  39194. height: math.unit(2, "meters"),
  39195. weight: math.unit(100, "kg"),
  39196. name: "Back",
  39197. image: {
  39198. source: "./media/characters/shiron/back.svg",
  39199. extra: 2110/2015,
  39200. bottom: 89/2199
  39201. }
  39202. },
  39203. hand: {
  39204. height: math.unit(0.96, "feet"),
  39205. name: "Hand",
  39206. image: {
  39207. source: "./media/characters/shiron/hand.svg"
  39208. }
  39209. },
  39210. foot: {
  39211. height: math.unit(1.464, "feet"),
  39212. name: "Foot",
  39213. image: {
  39214. source: "./media/characters/shiron/foot.svg"
  39215. }
  39216. },
  39217. },
  39218. [
  39219. {
  39220. name: "Normal",
  39221. height: math.unit(2, "meters")
  39222. },
  39223. {
  39224. name: "Macro",
  39225. height: math.unit(500, "meters"),
  39226. default: true
  39227. },
  39228. {
  39229. name: "Megamacro",
  39230. height: math.unit(20, "km")
  39231. },
  39232. ]
  39233. ))
  39234. characterMakers.push(() => makeCharacter(
  39235. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39236. {
  39237. front: {
  39238. height: math.unit(6, "feet"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/sam/front.svg",
  39242. extra: 849/826,
  39243. bottom: 19/868
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(6, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(8 + 4/12, "feet"),
  39260. weight: math.unit(122, "kg"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/namori-kurogawa/front.svg",
  39264. extra: 1894/1576,
  39265. bottom: 34/1928
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(8 + 4/12, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(9, "feet"),
  39282. weight: math.unit(621, "lb"),
  39283. name: "Front",
  39284. image: {
  39285. source: "./media/characters/unmru/front.svg",
  39286. extra: 1853/1747,
  39287. bottom: 73/1926
  39288. }
  39289. },
  39290. side: {
  39291. height: math.unit(9, "feet"),
  39292. weight: math.unit(621, "lb"),
  39293. name: "Side",
  39294. image: {
  39295. source: "./media/characters/unmru/side.svg",
  39296. extra: 1781/1671,
  39297. bottom: 127/1908
  39298. }
  39299. },
  39300. back: {
  39301. height: math.unit(9, "feet"),
  39302. weight: math.unit(621, "lb"),
  39303. name: "Back",
  39304. image: {
  39305. source: "./media/characters/unmru/back.svg",
  39306. extra: 1894/1765,
  39307. bottom: 75/1969
  39308. }
  39309. },
  39310. dick: {
  39311. height: math.unit(3, "feet"),
  39312. weight: math.unit(35, "lb"),
  39313. name: "Dick",
  39314. image: {
  39315. source: "./media/characters/unmru/dick.svg"
  39316. }
  39317. },
  39318. },
  39319. [
  39320. {
  39321. name: "Normal",
  39322. height: math.unit(9, "feet")
  39323. },
  39324. {
  39325. name: "Natural",
  39326. height: math.unit(27, "feet"),
  39327. default: true
  39328. },
  39329. {
  39330. name: "Giant",
  39331. height: math.unit(90, "feet")
  39332. },
  39333. {
  39334. name: "Kaiju",
  39335. height: math.unit(270, "feet")
  39336. },
  39337. {
  39338. name: "Macro",
  39339. height: math.unit(900, "feet")
  39340. },
  39341. {
  39342. name: "Macro+",
  39343. height: math.unit(2700, "feet")
  39344. },
  39345. {
  39346. name: "Megamacro",
  39347. height: math.unit(9000, "feet")
  39348. },
  39349. {
  39350. name: "City-Crushing",
  39351. height: math.unit(27000, "feet")
  39352. },
  39353. {
  39354. name: "Mountain-Mashing",
  39355. height: math.unit(90000, "feet")
  39356. },
  39357. {
  39358. name: "Earth-Eclipsing",
  39359. height: math.unit(2.7e8, "feet")
  39360. },
  39361. {
  39362. name: "Sol-Swallowing",
  39363. height: math.unit(9e10, "feet")
  39364. },
  39365. {
  39366. name: "Majoris-Munching",
  39367. height: math.unit(2.7e13, "feet")
  39368. },
  39369. ]
  39370. ))
  39371. characterMakers.push(() => makeCharacter(
  39372. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39373. {
  39374. front: {
  39375. height: math.unit(1, "inch"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/squeaks-mouse/front.svg",
  39379. extra: 352/308,
  39380. bottom: 25/377
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Micro",
  39387. height: math.unit(1, "inch"),
  39388. default: true
  39389. },
  39390. ]
  39391. ))
  39392. characterMakers.push(() => makeCharacter(
  39393. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39394. {
  39395. side: {
  39396. height: math.unit(35, "feet"),
  39397. name: "Side",
  39398. image: {
  39399. source: "./media/characters/sayko/side.svg",
  39400. extra: 1697/1021,
  39401. bottom: 82/1779
  39402. }
  39403. },
  39404. head: {
  39405. height: math.unit(16, "feet"),
  39406. name: "Head",
  39407. image: {
  39408. source: "./media/characters/sayko/head.svg"
  39409. }
  39410. },
  39411. forepaw: {
  39412. height: math.unit(7.85, "feet"),
  39413. name: "Forepaw",
  39414. image: {
  39415. source: "./media/characters/sayko/forepaw.svg"
  39416. }
  39417. },
  39418. hindpaw: {
  39419. height: math.unit(8.8, "feet"),
  39420. name: "Hindpaw",
  39421. image: {
  39422. source: "./media/characters/sayko/hindpaw.svg"
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(35, "feet"),
  39430. default: true
  39431. },
  39432. {
  39433. name: "Colossus",
  39434. height: math.unit(100, "meters")
  39435. },
  39436. {
  39437. name: "\"Small\" Deity",
  39438. height: math.unit(1, "km")
  39439. },
  39440. {
  39441. name: "\"Large\" Deity",
  39442. height: math.unit(15, "km")
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(6, "feet"),
  39451. weight: math.unit(250, "lb"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/mukiro/front.svg",
  39455. extra: 1368/1310,
  39456. bottom: 34/1402
  39457. }
  39458. },
  39459. },
  39460. [
  39461. {
  39462. name: "Normal",
  39463. height: math.unit(6, "feet"),
  39464. default: true
  39465. },
  39466. ]
  39467. ))
  39468. characterMakers.push(() => makeCharacter(
  39469. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39470. {
  39471. front: {
  39472. height: math.unit(12 + 4/12, "feet"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39476. extra: 1346/1311,
  39477. bottom: 65/1411
  39478. }
  39479. },
  39480. },
  39481. [
  39482. {
  39483. name: "Base",
  39484. height: math.unit(12 + 4/12, "feet"),
  39485. default: true
  39486. },
  39487. {
  39488. name: "Macro",
  39489. height: math.unit(150, "feet")
  39490. },
  39491. {
  39492. name: "Mega",
  39493. height: math.unit(2, "miles")
  39494. },
  39495. {
  39496. name: "Demi God",
  39497. height: math.unit(4, "AU")
  39498. },
  39499. {
  39500. name: "God Size",
  39501. height: math.unit(1, "universe")
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39507. {
  39508. front: {
  39509. height: math.unit(3 + 3/12, "feet"),
  39510. weight: math.unit(88, "lb"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/trey/front.svg",
  39514. extra: 1815/1509,
  39515. bottom: 60/1875
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Normal",
  39522. height: math.unit(3 + 3/12, "feet"),
  39523. default: true
  39524. },
  39525. ]
  39526. ))
  39527. characterMakers.push(() => makeCharacter(
  39528. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39529. {
  39530. front: {
  39531. height: math.unit(4, "meters"),
  39532. name: "Front",
  39533. image: {
  39534. source: "./media/characters/adelonda/front.svg",
  39535. extra: 1077/982,
  39536. bottom: 39/1116
  39537. }
  39538. },
  39539. back: {
  39540. height: math.unit(4, "meters"),
  39541. name: "Back",
  39542. image: {
  39543. source: "./media/characters/adelonda/back.svg",
  39544. extra: 1105/1003,
  39545. bottom: 25/1130
  39546. }
  39547. },
  39548. feral: {
  39549. height: math.unit(40/1.5, "meters"),
  39550. name: "Feral",
  39551. image: {
  39552. source: "./media/characters/adelonda/feral.svg",
  39553. extra: 597/271,
  39554. bottom: 387/984
  39555. }
  39556. },
  39557. },
  39558. [
  39559. {
  39560. name: "Normal",
  39561. height: math.unit(4, "meters"),
  39562. default: true
  39563. },
  39564. ]
  39565. ))
  39566. characterMakers.push(() => makeCharacter(
  39567. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39568. {
  39569. front: {
  39570. height: math.unit(8 + 4/12, "feet"),
  39571. weight: math.unit(670, "lb"),
  39572. name: "Front",
  39573. image: {
  39574. source: "./media/characters/acadiel/front.svg",
  39575. extra: 1901/1595,
  39576. bottom: 142/2043
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Normal",
  39583. height: math.unit(8 + 4/12, "feet"),
  39584. default: true
  39585. },
  39586. {
  39587. name: "Macro",
  39588. height: math.unit(200, "feet")
  39589. },
  39590. ]
  39591. ))
  39592. characterMakers.push(() => makeCharacter(
  39593. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39594. {
  39595. front: {
  39596. height: math.unit(6 + 2/12, "feet"),
  39597. weight: math.unit(185, "lb"),
  39598. name: "Front",
  39599. image: {
  39600. source: "./media/characters/kayne-ein/front.svg",
  39601. extra: 1780/1560,
  39602. bottom: 81/1861
  39603. }
  39604. },
  39605. },
  39606. [
  39607. {
  39608. name: "Normal",
  39609. height: math.unit(6 + 2/12, "feet"),
  39610. default: true
  39611. },
  39612. {
  39613. name: "Transformation Stage",
  39614. height: math.unit(15, "feet")
  39615. },
  39616. {
  39617. name: "Macro",
  39618. height: math.unit(150, "feet")
  39619. },
  39620. {
  39621. name: "Earth's Shadow",
  39622. height: math.unit(6200, "miles")
  39623. },
  39624. {
  39625. name: "Universal Demon",
  39626. height: math.unit(28e9, "parsecs")
  39627. },
  39628. {
  39629. name: "Multiverse God",
  39630. height: math.unit(3, "multiverses")
  39631. },
  39632. ]
  39633. ))
  39634. characterMakers.push(() => makeCharacter(
  39635. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39636. {
  39637. front: {
  39638. height: math.unit(5 + 5/12, "feet"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/fawn/front.svg",
  39642. extra: 1873/1731,
  39643. bottom: 95/1968
  39644. }
  39645. },
  39646. back: {
  39647. height: math.unit(5 + 5/12, "feet"),
  39648. name: "Back",
  39649. image: {
  39650. source: "./media/characters/fawn/back.svg",
  39651. extra: 1813/1700,
  39652. bottom: 14/1827
  39653. }
  39654. },
  39655. hoof: {
  39656. height: math.unit(1.45, "feet"),
  39657. name: "Hoof",
  39658. image: {
  39659. source: "./media/characters/fawn/hoof.svg"
  39660. }
  39661. },
  39662. },
  39663. [
  39664. {
  39665. name: "Normal",
  39666. height: math.unit(5 + 5/12, "feet"),
  39667. default: true
  39668. },
  39669. ]
  39670. ))
  39671. characterMakers.push(() => makeCharacter(
  39672. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39673. {
  39674. front: {
  39675. height: math.unit(2 + 5/12, "feet"),
  39676. name: "Front",
  39677. image: {
  39678. source: "./media/characters/orion/front.svg",
  39679. extra: 1366/1304,
  39680. bottom: 43/1409
  39681. }
  39682. },
  39683. paw: {
  39684. height: math.unit(0.52, "feet"),
  39685. name: "Paw",
  39686. image: {
  39687. source: "./media/characters/orion/paw.svg"
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(2 + 5/12, "feet"),
  39695. default: true
  39696. },
  39697. ]
  39698. ))
  39699. characterMakers.push(() => makeCharacter(
  39700. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39701. {
  39702. front: {
  39703. height: math.unit(5 + 10/12, "feet"),
  39704. name: "Front",
  39705. image: {
  39706. source: "./media/characters/vera/front.svg",
  39707. extra: 1680/1575,
  39708. bottom: 49/1729
  39709. }
  39710. },
  39711. back: {
  39712. height: math.unit(5 + 10/12, "feet"),
  39713. name: "Back",
  39714. image: {
  39715. source: "./media/characters/vera/back.svg",
  39716. extra: 1700/1588,
  39717. bottom: 18/1718
  39718. }
  39719. },
  39720. arcanine: {
  39721. height: math.unit(6 + 8/12, "feet"),
  39722. name: "Arcanine",
  39723. image: {
  39724. source: "./media/characters/vera/arcanine.svg",
  39725. extra: 1590/1511,
  39726. bottom: 71/1661
  39727. }
  39728. },
  39729. maw: {
  39730. height: math.unit(0.82, "feet"),
  39731. name: "Maw",
  39732. image: {
  39733. source: "./media/characters/vera/maw.svg"
  39734. }
  39735. },
  39736. mawArcanine: {
  39737. height: math.unit(0.97, "feet"),
  39738. name: "Maw (Arcanine)",
  39739. image: {
  39740. source: "./media/characters/vera/maw-arcanine.svg"
  39741. }
  39742. },
  39743. paw: {
  39744. height: math.unit(0.75, "feet"),
  39745. name: "Paw",
  39746. image: {
  39747. source: "./media/characters/vera/paw.svg"
  39748. }
  39749. },
  39750. pawprint: {
  39751. height: math.unit(0.52, "feet"),
  39752. name: "Pawprint",
  39753. image: {
  39754. source: "./media/characters/vera/pawprint.svg"
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Normal",
  39761. height: math.unit(5 + 10/12, "feet"),
  39762. default: true
  39763. },
  39764. {
  39765. name: "Macro",
  39766. height: math.unit(75, "feet")
  39767. },
  39768. ]
  39769. ))
  39770. characterMakers.push(() => makeCharacter(
  39771. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39772. {
  39773. front: {
  39774. height: math.unit(4, "feet"),
  39775. weight: math.unit(40, "lb"),
  39776. name: "Front",
  39777. image: {
  39778. source: "./media/characters/orvan-rabbit/front.svg",
  39779. extra: 1896/1642,
  39780. bottom: 29/1925
  39781. }
  39782. },
  39783. },
  39784. [
  39785. {
  39786. name: "Normal",
  39787. height: math.unit(4, "feet"),
  39788. default: true
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39794. {
  39795. front: {
  39796. height: math.unit(6, "feet"),
  39797. weight: math.unit(168, "lb"),
  39798. name: "Front",
  39799. image: {
  39800. source: "./media/characters/lisa/front.svg",
  39801. extra: 2065/1867,
  39802. bottom: 46/2111
  39803. }
  39804. },
  39805. back: {
  39806. height: math.unit(6, "feet"),
  39807. weight: math.unit(168, "lb"),
  39808. name: "Back",
  39809. image: {
  39810. source: "./media/characters/lisa/back.svg",
  39811. extra: 1982/1838,
  39812. bottom: 29/2011
  39813. }
  39814. },
  39815. maw: {
  39816. height: math.unit(0.81, "feet"),
  39817. name: "Maw",
  39818. image: {
  39819. source: "./media/characters/lisa/maw.svg"
  39820. }
  39821. },
  39822. paw: {
  39823. height: math.unit(0.9, "feet"),
  39824. name: "Paw",
  39825. image: {
  39826. source: "./media/characters/lisa/paw.svg"
  39827. }
  39828. },
  39829. caribousune: {
  39830. height: math.unit(7 + 2/12, "feet"),
  39831. weight: math.unit(268, "lb"),
  39832. name: "Caribousune",
  39833. image: {
  39834. source: "./media/characters/lisa/caribousune.svg",
  39835. extra: 1843/1633,
  39836. bottom: 29/1872
  39837. }
  39838. },
  39839. frontCaribousune: {
  39840. height: math.unit(7 + 2/12, "feet"),
  39841. weight: math.unit(268, "lb"),
  39842. name: "Front (Caribousune)",
  39843. image: {
  39844. source: "./media/characters/lisa/front-caribousune.svg",
  39845. extra: 1818/1638,
  39846. bottom: 52/1870
  39847. }
  39848. },
  39849. sideCaribousune: {
  39850. height: math.unit(7 + 2/12, "feet"),
  39851. weight: math.unit(268, "lb"),
  39852. name: "Side (Caribousune)",
  39853. image: {
  39854. source: "./media/characters/lisa/side-caribousune.svg",
  39855. extra: 1851/1635,
  39856. bottom: 16/1867
  39857. }
  39858. },
  39859. backCaribousune: {
  39860. height: math.unit(7 + 2/12, "feet"),
  39861. weight: math.unit(268, "lb"),
  39862. name: "Back (Caribousune)",
  39863. image: {
  39864. source: "./media/characters/lisa/back-caribousune.svg",
  39865. extra: 1801/1604,
  39866. bottom: 44/1845
  39867. }
  39868. },
  39869. caribou: {
  39870. height: math.unit(7 + 2/12, "feet"),
  39871. weight: math.unit(268, "lb"),
  39872. name: "Caribou",
  39873. image: {
  39874. source: "./media/characters/lisa/caribou.svg",
  39875. extra: 1843/1633,
  39876. bottom: 29/1872
  39877. }
  39878. },
  39879. frontCaribou: {
  39880. height: math.unit(7 + 2/12, "feet"),
  39881. weight: math.unit(268, "lb"),
  39882. name: "Front (Caribou)",
  39883. image: {
  39884. source: "./media/characters/lisa/front-caribou.svg",
  39885. extra: 1818/1638,
  39886. bottom: 52/1870
  39887. }
  39888. },
  39889. sideCaribou: {
  39890. height: math.unit(7 + 2/12, "feet"),
  39891. weight: math.unit(268, "lb"),
  39892. name: "Side (Caribou)",
  39893. image: {
  39894. source: "./media/characters/lisa/side-caribou.svg",
  39895. extra: 1851/1635,
  39896. bottom: 16/1867
  39897. }
  39898. },
  39899. backCaribou: {
  39900. height: math.unit(7 + 2/12, "feet"),
  39901. weight: math.unit(268, "lb"),
  39902. name: "Back (Caribou)",
  39903. image: {
  39904. source: "./media/characters/lisa/back-caribou.svg",
  39905. extra: 1801/1604,
  39906. bottom: 44/1845
  39907. }
  39908. },
  39909. mawCaribou: {
  39910. height: math.unit(1.45, "feet"),
  39911. name: "Maw (Caribou)",
  39912. image: {
  39913. source: "./media/characters/lisa/maw-caribou.svg"
  39914. }
  39915. },
  39916. mawCaribousune: {
  39917. height: math.unit(1.45, "feet"),
  39918. name: "Maw (Caribousune)",
  39919. image: {
  39920. source: "./media/characters/lisa/maw-caribousune.svg"
  39921. }
  39922. },
  39923. pawCaribousune: {
  39924. height: math.unit(1.61, "feet"),
  39925. name: "Paw (Caribou)",
  39926. image: {
  39927. source: "./media/characters/lisa/paw-caribousune.svg"
  39928. }
  39929. },
  39930. },
  39931. [
  39932. {
  39933. name: "Normal",
  39934. height: math.unit(6, "feet")
  39935. },
  39936. {
  39937. name: "God Size",
  39938. height: math.unit(72, "feet"),
  39939. default: true
  39940. },
  39941. {
  39942. name: "Towering",
  39943. height: math.unit(288, "feet")
  39944. },
  39945. {
  39946. name: "City Size",
  39947. height: math.unit(48384, "feet")
  39948. },
  39949. {
  39950. name: "Continental",
  39951. height: math.unit(4200, "miles")
  39952. },
  39953. {
  39954. name: "Planet Eater",
  39955. height: math.unit(42, "earths")
  39956. },
  39957. {
  39958. name: "Star Swallower",
  39959. height: math.unit(42, "solarradii")
  39960. },
  39961. {
  39962. name: "System Swallower",
  39963. height: math.unit(84000, "AU")
  39964. },
  39965. {
  39966. name: "Galaxy Gobbler",
  39967. height: math.unit(42, "galaxies")
  39968. },
  39969. {
  39970. name: "Universe Devourer",
  39971. height: math.unit(42, "universes")
  39972. },
  39973. {
  39974. name: "Multiverse Muncher",
  39975. height: math.unit(42, "multiverses")
  39976. },
  39977. ]
  39978. ))
  39979. characterMakers.push(() => makeCharacter(
  39980. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39981. {
  39982. front: {
  39983. height: math.unit(36, "feet"),
  39984. name: "Front",
  39985. image: {
  39986. source: "./media/characters/shadow-rat/front.svg",
  39987. extra: 1845/1758,
  39988. bottom: 83/1928
  39989. }
  39990. },
  39991. },
  39992. [
  39993. {
  39994. name: "Macro",
  39995. height: math.unit(36, "feet"),
  39996. default: true
  39997. },
  39998. ]
  39999. ))
  40000. characterMakers.push(() => makeCharacter(
  40001. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40002. {
  40003. side: {
  40004. height: math.unit(8, "feet"),
  40005. weight: math.unit(2630, "lb"),
  40006. name: "Side",
  40007. image: {
  40008. source: "./media/characters/torallia/side.svg",
  40009. extra: 2164/2021,
  40010. bottom: 371/2535
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Mortal Interaction",
  40017. height: math.unit(8, "feet")
  40018. },
  40019. {
  40020. name: "Natural",
  40021. height: math.unit(24, "feet"),
  40022. default: true
  40023. },
  40024. {
  40025. name: "Giant",
  40026. height: math.unit(80, "feet")
  40027. },
  40028. {
  40029. name: "Kaiju",
  40030. height: math.unit(240, "feet")
  40031. },
  40032. {
  40033. name: "Macro",
  40034. height: math.unit(800, "feet")
  40035. },
  40036. {
  40037. name: "Macro+",
  40038. height: math.unit(2400, "feet")
  40039. },
  40040. {
  40041. name: "Macro++",
  40042. height: math.unit(8000, "feet")
  40043. },
  40044. {
  40045. name: "City-Crushing",
  40046. height: math.unit(24000, "feet")
  40047. },
  40048. {
  40049. name: "Mountain-Mashing",
  40050. height: math.unit(80000, "feet")
  40051. },
  40052. {
  40053. name: "District Demolisher",
  40054. height: math.unit(240000, "feet")
  40055. },
  40056. {
  40057. name: "Tri-County Terror",
  40058. height: math.unit(800000, "feet")
  40059. },
  40060. {
  40061. name: "State Smasher",
  40062. height: math.unit(2.4e6, "feet")
  40063. },
  40064. {
  40065. name: "Nation Nemesis",
  40066. height: math.unit(8e6, "feet")
  40067. },
  40068. {
  40069. name: "Continent Cracker",
  40070. height: math.unit(2.4e7, "feet")
  40071. },
  40072. {
  40073. name: "Planet-Pillaging",
  40074. height: math.unit(8e7, "feet")
  40075. },
  40076. {
  40077. name: "Earth-Eclipsing",
  40078. height: math.unit(2.4e8, "feet")
  40079. },
  40080. {
  40081. name: "Jovian-Jostling",
  40082. height: math.unit(8e8, "feet")
  40083. },
  40084. {
  40085. name: "Gas Giant Gulper",
  40086. height: math.unit(2.4e9, "feet")
  40087. },
  40088. {
  40089. name: "Astral Annihilator",
  40090. height: math.unit(8e9, "feet")
  40091. },
  40092. {
  40093. name: "Celestial Conqueror",
  40094. height: math.unit(2.4e10, "feet")
  40095. },
  40096. {
  40097. name: "Sol-Swallowing",
  40098. height: math.unit(8e10, "feet")
  40099. },
  40100. {
  40101. name: "Hunter of the Heavens",
  40102. height: math.unit(2.4e13, "feet")
  40103. },
  40104. ]
  40105. ))
  40106. characterMakers.push(() => makeCharacter(
  40107. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40108. {
  40109. front: {
  40110. height: math.unit(6 + 8/12, "feet"),
  40111. weight: math.unit(250, "kilograms"),
  40112. volume: math.unit(28, "liters"),
  40113. name: "Front",
  40114. image: {
  40115. source: "./media/characters/rebecca-pawlson/front.svg",
  40116. extra: 1737/1596,
  40117. bottom: 107/1844
  40118. }
  40119. },
  40120. back: {
  40121. height: math.unit(6 + 8/12, "feet"),
  40122. weight: math.unit(250, "kilograms"),
  40123. volume: math.unit(28, "liters"),
  40124. name: "Back",
  40125. image: {
  40126. source: "./media/characters/rebecca-pawlson/back.svg",
  40127. extra: 1702/1523,
  40128. bottom: 86/1788
  40129. }
  40130. },
  40131. },
  40132. [
  40133. {
  40134. name: "Normal",
  40135. height: math.unit(6 + 8/12, "feet")
  40136. },
  40137. {
  40138. name: "Mini Macro",
  40139. height: math.unit(10, "feet"),
  40140. default: true
  40141. },
  40142. {
  40143. name: "Macro",
  40144. height: math.unit(100, "feet")
  40145. },
  40146. {
  40147. name: "Mega Macro",
  40148. height: math.unit(2500, "feet")
  40149. },
  40150. {
  40151. name: "Giga Macro",
  40152. height: math.unit(50, "miles")
  40153. },
  40154. ]
  40155. ))
  40156. characterMakers.push(() => makeCharacter(
  40157. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40158. {
  40159. front: {
  40160. height: math.unit(7 + 6/12, "feet"),
  40161. weight: math.unit(600, "lb"),
  40162. name: "Front",
  40163. image: {
  40164. source: "./media/characters/moxie-nova/front.svg",
  40165. extra: 1734/1652,
  40166. bottom: 41/1775
  40167. }
  40168. },
  40169. },
  40170. [
  40171. {
  40172. name: "Normal",
  40173. height: math.unit(7 + 6/12, "feet"),
  40174. default: true
  40175. },
  40176. ]
  40177. ))
  40178. characterMakers.push(() => makeCharacter(
  40179. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40180. {
  40181. goat: {
  40182. height: math.unit(4, "feet"),
  40183. weight: math.unit(180, "lb"),
  40184. name: "Goat",
  40185. image: {
  40186. source: "./media/characters/tiffany/goat.svg",
  40187. extra: 1845/1595,
  40188. bottom: 106/1951
  40189. }
  40190. },
  40191. front: {
  40192. height: math.unit(5, "feet"),
  40193. weight: math.unit(150, "lb"),
  40194. name: "Foxcoon",
  40195. image: {
  40196. source: "./media/characters/tiffany/foxcoon.svg",
  40197. extra: 1941/1845,
  40198. bottom: 58/1999
  40199. }
  40200. },
  40201. },
  40202. [
  40203. {
  40204. name: "Normal",
  40205. height: math.unit(5, "feet"),
  40206. default: true
  40207. },
  40208. ]
  40209. ))
  40210. characterMakers.push(() => makeCharacter(
  40211. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40212. {
  40213. front: {
  40214. height: math.unit(8, "feet"),
  40215. weight: math.unit(300, "lb"),
  40216. name: "Front",
  40217. image: {
  40218. source: "./media/characters/raxinath/front.svg",
  40219. extra: 1407/1309,
  40220. bottom: 39/1446
  40221. }
  40222. },
  40223. back: {
  40224. height: math.unit(8, "feet"),
  40225. weight: math.unit(300, "lb"),
  40226. name: "Back",
  40227. image: {
  40228. source: "./media/characters/raxinath/back.svg",
  40229. extra: 1405/1315,
  40230. bottom: 9/1414
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Speck",
  40237. height: math.unit(0.5, "nm")
  40238. },
  40239. {
  40240. name: "Micro",
  40241. height: math.unit(3, "inches")
  40242. },
  40243. {
  40244. name: "Kobold",
  40245. height: math.unit(3, "feet")
  40246. },
  40247. {
  40248. name: "Normal",
  40249. height: math.unit(8, "feet"),
  40250. default: true
  40251. },
  40252. {
  40253. name: "Giant",
  40254. height: math.unit(50, "feet")
  40255. },
  40256. {
  40257. name: "Macro",
  40258. height: math.unit(1000, "feet")
  40259. },
  40260. {
  40261. name: "Megamacro",
  40262. height: math.unit(1, "mile")
  40263. },
  40264. ]
  40265. ))
  40266. characterMakers.push(() => makeCharacter(
  40267. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40268. {
  40269. front: {
  40270. height: math.unit(10, "feet"),
  40271. weight: math.unit(1442, "lb"),
  40272. name: "Front",
  40273. image: {
  40274. source: "./media/characters/mal-dragon/front.svg",
  40275. extra: 1515/1444,
  40276. bottom: 113/1628
  40277. }
  40278. },
  40279. back: {
  40280. height: math.unit(10, "feet"),
  40281. weight: math.unit(1442, "lb"),
  40282. name: "Back",
  40283. image: {
  40284. source: "./media/characters/mal-dragon/back.svg",
  40285. extra: 1527/1434,
  40286. bottom: 25/1552
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Mortal Interaction",
  40293. height: math.unit(10, "feet"),
  40294. default: true
  40295. },
  40296. {
  40297. name: "Large",
  40298. height: math.unit(30, "feet")
  40299. },
  40300. {
  40301. name: "Kaiju",
  40302. height: math.unit(300, "feet")
  40303. },
  40304. {
  40305. name: "Megamacro",
  40306. height: math.unit(10000, "feet")
  40307. },
  40308. {
  40309. name: "Continent Cracker",
  40310. height: math.unit(30000000, "feet")
  40311. },
  40312. {
  40313. name: "Sol-Swallowing",
  40314. height: math.unit(1e11, "feet")
  40315. },
  40316. {
  40317. name: "Light Universal",
  40318. height: math.unit(5, "universes")
  40319. },
  40320. {
  40321. name: "Universe Atoms",
  40322. height: math.unit(1.829e9, "universes")
  40323. },
  40324. {
  40325. name: "Light Multiversal",
  40326. height: math.unit(5, "multiverses")
  40327. },
  40328. {
  40329. name: "Multiverse Atoms",
  40330. height: math.unit(1.829e9, "multiverses")
  40331. },
  40332. {
  40333. name: "Fabric of Time",
  40334. height: math.unit(1e262, "multiverses")
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(9, "feet"),
  40343. weight: math.unit(1050, "lb"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/tabitha/front.svg",
  40347. extra: 2083/1994,
  40348. bottom: 68/2151
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Baseline",
  40355. height: math.unit(9, "feet"),
  40356. default: true
  40357. },
  40358. {
  40359. name: "Giant",
  40360. height: math.unit(90, "feet")
  40361. },
  40362. {
  40363. name: "Macro",
  40364. height: math.unit(900, "feet")
  40365. },
  40366. {
  40367. name: "Megamacro",
  40368. height: math.unit(9000, "feet")
  40369. },
  40370. {
  40371. name: "City-Crushing",
  40372. height: math.unit(27000, "feet")
  40373. },
  40374. {
  40375. name: "Mountain-Mashing",
  40376. height: math.unit(90000, "feet")
  40377. },
  40378. {
  40379. name: "Nation Nemesis",
  40380. height: math.unit(9e6, "feet")
  40381. },
  40382. {
  40383. name: "Continent Cracker",
  40384. height: math.unit(27e6, "feet")
  40385. },
  40386. {
  40387. name: "Earth-Eclipsing",
  40388. height: math.unit(2.7e8, "feet")
  40389. },
  40390. {
  40391. name: "Gas Giant Gulper",
  40392. height: math.unit(2.7e9, "feet")
  40393. },
  40394. {
  40395. name: "Sol-Swallowing",
  40396. height: math.unit(9e10, "feet")
  40397. },
  40398. {
  40399. name: "Galaxy Gulper",
  40400. height: math.unit(9, "galaxies")
  40401. },
  40402. {
  40403. name: "Cosmos Churner",
  40404. height: math.unit(9, "universes")
  40405. },
  40406. ]
  40407. ))
  40408. characterMakers.push(() => makeCharacter(
  40409. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40410. {
  40411. front: {
  40412. height: math.unit(160, "cm"),
  40413. weight: math.unit(55, "kg"),
  40414. name: "Front",
  40415. image: {
  40416. source: "./media/characters/tow/front.svg",
  40417. extra: 1751/1722,
  40418. bottom: 74/1825
  40419. }
  40420. },
  40421. },
  40422. [
  40423. {
  40424. name: "Norm",
  40425. height: math.unit(160, "cm")
  40426. },
  40427. {
  40428. name: "Casual",
  40429. height: math.unit(3200, "m"),
  40430. default: true
  40431. },
  40432. {
  40433. name: "Show-Off",
  40434. height: math.unit(160, "km")
  40435. },
  40436. ]
  40437. ))
  40438. characterMakers.push(() => makeCharacter(
  40439. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40440. {
  40441. front: {
  40442. height: math.unit(7 + 11/12, "feet"),
  40443. weight: math.unit(342.8, "lb"),
  40444. name: "Front",
  40445. image: {
  40446. source: "./media/characters/vivian-orca-dragon/front.svg",
  40447. extra: 1890/1865,
  40448. bottom: 28/1918
  40449. }
  40450. },
  40451. },
  40452. [
  40453. {
  40454. name: "Micro",
  40455. height: math.unit(5, "inches")
  40456. },
  40457. {
  40458. name: "Normal",
  40459. height: math.unit(7 + 11/12, "feet"),
  40460. default: true
  40461. },
  40462. {
  40463. name: "Macro",
  40464. height: math.unit(395 + 7/12, "feet")
  40465. },
  40466. ]
  40467. ))
  40468. characterMakers.push(() => makeCharacter(
  40469. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40470. {
  40471. side: {
  40472. height: math.unit(10, "feet"),
  40473. weight: math.unit(1442, "lb"),
  40474. name: "Side",
  40475. image: {
  40476. source: "./media/characters/lotherakon/side.svg",
  40477. extra: 1604/1497,
  40478. bottom: 89/1693
  40479. }
  40480. },
  40481. },
  40482. [
  40483. {
  40484. name: "Mortal Interaction",
  40485. height: math.unit(10, "feet")
  40486. },
  40487. {
  40488. name: "Large",
  40489. height: math.unit(30, "feet"),
  40490. default: true
  40491. },
  40492. {
  40493. name: "Giant",
  40494. height: math.unit(100, "feet")
  40495. },
  40496. {
  40497. name: "Kaiju",
  40498. height: math.unit(300, "feet")
  40499. },
  40500. {
  40501. name: "Macro",
  40502. height: math.unit(1000, "feet")
  40503. },
  40504. {
  40505. name: "Macro+",
  40506. height: math.unit(3000, "feet")
  40507. },
  40508. {
  40509. name: "Megamacro",
  40510. height: math.unit(10000, "feet")
  40511. },
  40512. {
  40513. name: "City-Crushing",
  40514. height: math.unit(30000, "feet")
  40515. },
  40516. {
  40517. name: "Continent Cracker",
  40518. height: math.unit(30e6, "feet")
  40519. },
  40520. {
  40521. name: "Earth Eclipsing",
  40522. height: math.unit(3e8, "feet")
  40523. },
  40524. {
  40525. name: "Gas Giant Gulper",
  40526. height: math.unit(3e9, "feet")
  40527. },
  40528. {
  40529. name: "Sol-Swallowing",
  40530. height: math.unit(1e11, "feet")
  40531. },
  40532. {
  40533. name: "System Swallower",
  40534. height: math.unit(3e14, "feet")
  40535. },
  40536. {
  40537. name: "Galaxy Gulper",
  40538. height: math.unit(10, "galaxies")
  40539. },
  40540. {
  40541. name: "Light Universal",
  40542. height: math.unit(5, "universes")
  40543. },
  40544. {
  40545. name: "Universe Palm",
  40546. height: math.unit(20, "universes")
  40547. },
  40548. {
  40549. name: "Light Multiversal",
  40550. height: math.unit(5, "multiverses")
  40551. },
  40552. {
  40553. name: "Multiverse Palm",
  40554. height: math.unit(20, "multiverses")
  40555. },
  40556. {
  40557. name: "Inferno Incarnate",
  40558. height: math.unit(1e7, "multiverses")
  40559. },
  40560. ]
  40561. ))
  40562. characterMakers.push(() => makeCharacter(
  40563. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40564. {
  40565. front: {
  40566. height: math.unit(8, "feet"),
  40567. weight: math.unit(1200, "lb"),
  40568. name: "Front",
  40569. image: {
  40570. source: "./media/characters/malithee/front.svg",
  40571. extra: 1675/1640,
  40572. bottom: 162/1837
  40573. }
  40574. },
  40575. },
  40576. [
  40577. {
  40578. name: "Mortal Interaction",
  40579. height: math.unit(8, "feet"),
  40580. default: true
  40581. },
  40582. {
  40583. name: "Large",
  40584. height: math.unit(24, "feet")
  40585. },
  40586. {
  40587. name: "Kaiju",
  40588. height: math.unit(240, "feet")
  40589. },
  40590. {
  40591. name: "Megamacro",
  40592. height: math.unit(8000, "feet")
  40593. },
  40594. {
  40595. name: "Continent Cracker",
  40596. height: math.unit(24e6, "feet")
  40597. },
  40598. {
  40599. name: "Earth-Eclipsing",
  40600. height: math.unit(2.4e8, "feet")
  40601. },
  40602. {
  40603. name: "Sol-Swallowing",
  40604. height: math.unit(8e10, "feet")
  40605. },
  40606. {
  40607. name: "Galaxy Gulper",
  40608. height: math.unit(8, "galaxies")
  40609. },
  40610. {
  40611. name: "Light Universal",
  40612. height: math.unit(4, "universes")
  40613. },
  40614. {
  40615. name: "Universe Atoms",
  40616. height: math.unit(1.829e9, "universes")
  40617. },
  40618. {
  40619. name: "Light Multiversal",
  40620. height: math.unit(4, "multiverses")
  40621. },
  40622. {
  40623. name: "Multiverse Atoms",
  40624. height: math.unit(1.829e9, "multiverses")
  40625. },
  40626. {
  40627. name: "Nigh-Omnipresence",
  40628. height: math.unit(8e261, "multiverses")
  40629. },
  40630. ]
  40631. ))
  40632. characterMakers.push(() => makeCharacter(
  40633. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40634. {
  40635. front: {
  40636. height: math.unit(10, "feet"),
  40637. weight: math.unit(1500, "lb"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/miles-thestia/front.svg",
  40641. extra: 1812/1727,
  40642. bottom: 86/1898
  40643. }
  40644. },
  40645. back: {
  40646. height: math.unit(10, "feet"),
  40647. weight: math.unit(1500, "lb"),
  40648. name: "Back",
  40649. image: {
  40650. source: "./media/characters/miles-thestia/back.svg",
  40651. extra: 1799/1690,
  40652. bottom: 47/1846
  40653. }
  40654. },
  40655. frontNsfw: {
  40656. height: math.unit(10, "feet"),
  40657. weight: math.unit(1500, "lb"),
  40658. name: "Front (NSFW)",
  40659. image: {
  40660. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40661. extra: 1812/1727,
  40662. bottom: 86/1898
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "Mini-Macro",
  40669. height: math.unit(10, "feet"),
  40670. default: true
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(25, "feet"),
  40679. name: "Front",
  40680. image: {
  40681. source: "./media/characters/titan-s-wulf/front.svg",
  40682. extra: 1560/1484,
  40683. bottom: 76/1636
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Smallest",
  40690. height: math.unit(25, "feet"),
  40691. default: true
  40692. },
  40693. {
  40694. name: "Normal",
  40695. height: math.unit(200, "feet")
  40696. },
  40697. {
  40698. name: "Macro",
  40699. height: math.unit(200000, "feet")
  40700. },
  40701. {
  40702. name: "Multiversal Original",
  40703. height: math.unit(10000, "multiverses")
  40704. },
  40705. ]
  40706. ))
  40707. characterMakers.push(() => makeCharacter(
  40708. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40709. {
  40710. front: {
  40711. height: math.unit(8, "feet"),
  40712. weight: math.unit(553, "lb"),
  40713. name: "Front",
  40714. image: {
  40715. source: "./media/characters/tawendeh/front.svg",
  40716. extra: 2365/2268,
  40717. bottom: 83/2448
  40718. }
  40719. },
  40720. frontClothed: {
  40721. height: math.unit(8, "feet"),
  40722. weight: math.unit(553, "lb"),
  40723. name: "Front (Clothed)",
  40724. image: {
  40725. source: "./media/characters/tawendeh/front-clothed.svg",
  40726. extra: 2365/2268,
  40727. bottom: 83/2448
  40728. }
  40729. },
  40730. back: {
  40731. height: math.unit(8, "feet"),
  40732. weight: math.unit(553, "lb"),
  40733. name: "Back",
  40734. image: {
  40735. source: "./media/characters/tawendeh/back.svg",
  40736. extra: 2397/2294,
  40737. bottom: 42/2439
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Mortal Interaction",
  40744. height: math.unit(8, "feet"),
  40745. default: true
  40746. },
  40747. {
  40748. name: "Giant",
  40749. height: math.unit(80, "feet")
  40750. },
  40751. {
  40752. name: "Macro",
  40753. height: math.unit(800, "feet")
  40754. },
  40755. {
  40756. name: "Megamacro",
  40757. height: math.unit(8000, "feet")
  40758. },
  40759. {
  40760. name: "City-Crushing",
  40761. height: math.unit(24000, "feet")
  40762. },
  40763. {
  40764. name: "Mountain-Mashing",
  40765. height: math.unit(80000, "feet")
  40766. },
  40767. {
  40768. name: "Nation Nemesis",
  40769. height: math.unit(8e6, "feet")
  40770. },
  40771. {
  40772. name: "Continent Cracker",
  40773. height: math.unit(24e6, "feet")
  40774. },
  40775. {
  40776. name: "Earth-Eclipsing",
  40777. height: math.unit(2.4e8, "feet")
  40778. },
  40779. {
  40780. name: "Gas Giant Gulper",
  40781. height: math.unit(2.4e9, "feet")
  40782. },
  40783. {
  40784. name: "Sol-Swallowing",
  40785. height: math.unit(8e10, "feet")
  40786. },
  40787. {
  40788. name: "Galaxy Gulper",
  40789. height: math.unit(8, "galaxies")
  40790. },
  40791. {
  40792. name: "Cosmos Churner",
  40793. height: math.unit(8, "universes")
  40794. },
  40795. {
  40796. name: "Omnipotent Otter",
  40797. height: math.unit(80, "universes")
  40798. },
  40799. ]
  40800. ))
  40801. characterMakers.push(() => makeCharacter(
  40802. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40803. {
  40804. front: {
  40805. height: math.unit(2.6, "meters"),
  40806. weight: math.unit(900, "kg"),
  40807. name: "Front",
  40808. image: {
  40809. source: "./media/characters/neesha/front.svg",
  40810. extra: 1803/1653,
  40811. bottom: 128/1931
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(2.6, "meters"),
  40819. default: true
  40820. },
  40821. {
  40822. name: "Macro",
  40823. height: math.unit(50, "meters")
  40824. },
  40825. ]
  40826. ))
  40827. characterMakers.push(() => makeCharacter(
  40828. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40829. {
  40830. front: {
  40831. height: math.unit(5, "feet"),
  40832. weight: math.unit(185, "lb"),
  40833. name: "Front",
  40834. image: {
  40835. source: "./media/characters/kyera/front.svg",
  40836. extra: 1875/1790,
  40837. bottom: 96/1971
  40838. }
  40839. },
  40840. },
  40841. [
  40842. {
  40843. name: "Normal",
  40844. height: math.unit(5, "feet"),
  40845. default: true
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(7 + 6/12, "feet"),
  40854. weight: math.unit(540, "lb"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/yuko/front.svg",
  40858. extra: 1282/1222,
  40859. bottom: 101/1383
  40860. }
  40861. },
  40862. frontClothed: {
  40863. height: math.unit(7 + 6/12, "feet"),
  40864. weight: math.unit(540, "lb"),
  40865. name: "Front (Clothed)",
  40866. image: {
  40867. source: "./media/characters/yuko/front-clothed.svg",
  40868. extra: 1282/1222,
  40869. bottom: 101/1383
  40870. }
  40871. },
  40872. },
  40873. [
  40874. {
  40875. name: "Normal",
  40876. height: math.unit(7 + 6/12, "feet"),
  40877. default: true
  40878. },
  40879. {
  40880. name: "Macro",
  40881. height: math.unit(26 + 9/12, "feet")
  40882. },
  40883. {
  40884. name: "Megamacro",
  40885. height: math.unit(300, "feet")
  40886. },
  40887. {
  40888. name: "Gigamacro",
  40889. height: math.unit(5000, "feet")
  40890. },
  40891. {
  40892. name: "Planetary",
  40893. height: math.unit(10000, "miles")
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(8 + 2/12, "feet"),
  40902. weight: math.unit(600, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/deam-nitrel/front.svg",
  40906. extra: 1308/1234,
  40907. bottom: 125/1433
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(8 + 2/12, "feet"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(6.1, "feet"),
  40924. weight: math.unit(180, "lb"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/skyress/front.svg",
  40928. extra: 1045/915,
  40929. bottom: 28/1073
  40930. }
  40931. },
  40932. maw: {
  40933. height: math.unit(1, "feet"),
  40934. name: "Maw",
  40935. image: {
  40936. source: "./media/characters/skyress/maw.svg"
  40937. }
  40938. },
  40939. },
  40940. [
  40941. {
  40942. name: "Normal",
  40943. height: math.unit(6.1, "feet"),
  40944. default: true
  40945. },
  40946. {
  40947. name: "Macro",
  40948. height: math.unit(200, "feet")
  40949. },
  40950. ]
  40951. ))
  40952. characterMakers.push(() => makeCharacter(
  40953. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40954. {
  40955. front: {
  40956. height: math.unit(4 + 2/12, "feet"),
  40957. weight: math.unit(40, "kg"),
  40958. name: "Front",
  40959. image: {
  40960. source: "./media/characters/amethyst-jones/front.svg",
  40961. extra: 1220/1150,
  40962. bottom: 101/1321
  40963. }
  40964. },
  40965. },
  40966. [
  40967. {
  40968. name: "Normal",
  40969. height: math.unit(4 + 2/12, "feet"),
  40970. default: true
  40971. },
  40972. ]
  40973. ))
  40974. characterMakers.push(() => makeCharacter(
  40975. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40976. {
  40977. front: {
  40978. height: math.unit(1.7, "m"),
  40979. weight: math.unit(135, "lb"),
  40980. name: "Front",
  40981. image: {
  40982. source: "./media/characters/jade/front.svg",
  40983. extra: 1818/1767,
  40984. bottom: 32/1850
  40985. }
  40986. },
  40987. back: {
  40988. height: math.unit(1.7, "m"),
  40989. weight: math.unit(135, "lb"),
  40990. name: "Back",
  40991. image: {
  40992. source: "./media/characters/jade/back.svg",
  40993. extra: 1869/1809,
  40994. bottom: 35/1904
  40995. }
  40996. },
  40997. hand: {
  40998. height: math.unit(0.24, "m"),
  40999. name: "Hand",
  41000. image: {
  41001. source: "./media/characters/jade/hand.svg"
  41002. }
  41003. },
  41004. foot: {
  41005. height: math.unit(0.263, "m"),
  41006. name: "Foot",
  41007. image: {
  41008. source: "./media/characters/jade/foot.svg"
  41009. }
  41010. },
  41011. dick: {
  41012. height: math.unit(0.47, "m"),
  41013. name: "Dick",
  41014. image: {
  41015. source: "./media/characters/jade/dick.svg"
  41016. }
  41017. },
  41018. },
  41019. [
  41020. {
  41021. name: "Micro",
  41022. height: math.unit(22, "cm")
  41023. },
  41024. {
  41025. name: "Normal",
  41026. height: math.unit(1.7, "m"),
  41027. default: true
  41028. },
  41029. {
  41030. name: "Macro",
  41031. height: math.unit(152, "m")
  41032. },
  41033. ]
  41034. ))
  41035. characterMakers.push(() => makeCharacter(
  41036. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41037. {
  41038. front: {
  41039. height: math.unit(100, "miles"),
  41040. weight: math.unit(20000, "tons"),
  41041. name: "Front",
  41042. image: {
  41043. source: "./media/characters/cookie/front.svg",
  41044. extra: 1125/1070,
  41045. bottom: 30/1155
  41046. }
  41047. },
  41048. },
  41049. [
  41050. {
  41051. name: "Big",
  41052. height: math.unit(50, "feet")
  41053. },
  41054. {
  41055. name: "Macro",
  41056. height: math.unit(100, "miles"),
  41057. default: true
  41058. },
  41059. {
  41060. name: "Megamacro",
  41061. height: math.unit(90000, "miles")
  41062. },
  41063. ]
  41064. ))
  41065. characterMakers.push(() => makeCharacter(
  41066. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41067. {
  41068. front: {
  41069. height: math.unit(6, "feet"),
  41070. weight: math.unit(145, "lb"),
  41071. name: "Front",
  41072. image: {
  41073. source: "./media/characters/farzian/front.svg",
  41074. extra: 1902/1693,
  41075. bottom: 108/2010
  41076. }
  41077. },
  41078. },
  41079. [
  41080. {
  41081. name: "Macro",
  41082. height: math.unit(500, "feet"),
  41083. default: true
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41089. {
  41090. front: {
  41091. height: math.unit(3 + 6/12, "feet"),
  41092. weight: math.unit(50, "lb"),
  41093. name: "Front",
  41094. image: {
  41095. source: "./media/characters/kimberly-tilson/front.svg",
  41096. extra: 1400/1322,
  41097. bottom: 36/1436
  41098. }
  41099. },
  41100. back: {
  41101. height: math.unit(3 + 6/12, "feet"),
  41102. weight: math.unit(50, "lb"),
  41103. name: "Back",
  41104. image: {
  41105. source: "./media/characters/kimberly-tilson/back.svg",
  41106. extra: 1370/1307,
  41107. bottom: 20/1390
  41108. }
  41109. },
  41110. },
  41111. [
  41112. {
  41113. name: "Normal",
  41114. height: math.unit(3 + 6/12, "feet"),
  41115. default: true
  41116. },
  41117. ]
  41118. ))
  41119. characterMakers.push(() => makeCharacter(
  41120. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41121. {
  41122. front: {
  41123. height: math.unit(1148, "feet"),
  41124. weight: math.unit(34057, "lb"),
  41125. name: "Front",
  41126. image: {
  41127. source: "./media/characters/harthos/front.svg",
  41128. extra: 1391/1339,
  41129. bottom: 13/1404
  41130. }
  41131. },
  41132. },
  41133. [
  41134. {
  41135. name: "Macro",
  41136. height: math.unit(1148, "feet"),
  41137. default: true
  41138. },
  41139. ]
  41140. ))
  41141. characterMakers.push(() => makeCharacter(
  41142. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41143. {
  41144. front: {
  41145. height: math.unit(15, "feet"),
  41146. name: "Front",
  41147. image: {
  41148. source: "./media/characters/hypatia/front.svg",
  41149. extra: 1653/1591,
  41150. bottom: 79/1732
  41151. }
  41152. },
  41153. },
  41154. [
  41155. {
  41156. name: "Normal",
  41157. height: math.unit(15, "feet")
  41158. },
  41159. {
  41160. name: "Small",
  41161. height: math.unit(300, "feet")
  41162. },
  41163. {
  41164. name: "Macro",
  41165. height: math.unit(2500, "feet"),
  41166. default: true
  41167. },
  41168. {
  41169. name: "Mega Macro",
  41170. height: math.unit(1500, "miles")
  41171. },
  41172. {
  41173. name: "Giga Macro",
  41174. height: math.unit(1.5e6, "miles")
  41175. },
  41176. ]
  41177. ))
  41178. characterMakers.push(() => makeCharacter(
  41179. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41180. {
  41181. front: {
  41182. height: math.unit(6, "feet"),
  41183. weight: math.unit(200, "lb"),
  41184. name: "Front",
  41185. image: {
  41186. source: "./media/characters/wulver/front.svg",
  41187. extra: 1724/1632,
  41188. bottom: 130/1854
  41189. }
  41190. },
  41191. frontNsfw: {
  41192. height: math.unit(6, "feet"),
  41193. weight: math.unit(200, "lb"),
  41194. name: "Front (NSFW)",
  41195. image: {
  41196. source: "./media/characters/wulver/front-nsfw.svg",
  41197. extra: 1724/1632,
  41198. bottom: 130/1854
  41199. }
  41200. },
  41201. },
  41202. [
  41203. {
  41204. name: "Human-Sized",
  41205. height: math.unit(6, "feet")
  41206. },
  41207. {
  41208. name: "Normal",
  41209. height: math.unit(4, "meters"),
  41210. default: true
  41211. },
  41212. {
  41213. name: "Large",
  41214. height: math.unit(6, "m")
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41220. {
  41221. front: {
  41222. height: math.unit(7, "feet"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/maru/front.svg",
  41226. extra: 1595/1570,
  41227. bottom: 0/1595
  41228. }
  41229. },
  41230. },
  41231. [
  41232. {
  41233. name: "Normal",
  41234. height: math.unit(7, "feet"),
  41235. default: true
  41236. },
  41237. {
  41238. name: "Macro",
  41239. height: math.unit(700, "feet")
  41240. },
  41241. {
  41242. name: "Mega Macro",
  41243. height: math.unit(25, "miles")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(6, "feet"),
  41252. weight: math.unit(170, "lb"),
  41253. name: "Front",
  41254. image: {
  41255. source: "./media/characters/xenon/front.svg",
  41256. extra: 1376/1305,
  41257. bottom: 56/1432
  41258. }
  41259. },
  41260. back: {
  41261. height: math.unit(6, "feet"),
  41262. weight: math.unit(170, "lb"),
  41263. name: "Back",
  41264. image: {
  41265. source: "./media/characters/xenon/back.svg",
  41266. extra: 1328/1259,
  41267. bottom: 95/1423
  41268. }
  41269. },
  41270. maw: {
  41271. height: math.unit(0.52, "feet"),
  41272. name: "Maw",
  41273. image: {
  41274. source: "./media/characters/xenon/maw.svg"
  41275. }
  41276. },
  41277. hand: {
  41278. height: math.unit(0.82, "feet"),
  41279. name: "Hand",
  41280. image: {
  41281. source: "./media/characters/xenon/hand.svg"
  41282. }
  41283. },
  41284. foot: {
  41285. height: math.unit(1.13, "feet"),
  41286. name: "Foot",
  41287. image: {
  41288. source: "./media/characters/xenon/foot.svg"
  41289. }
  41290. },
  41291. },
  41292. [
  41293. {
  41294. name: "Micro",
  41295. height: math.unit(0.8, "inches")
  41296. },
  41297. {
  41298. name: "Normal",
  41299. height: math.unit(6, "feet")
  41300. },
  41301. {
  41302. name: "Macro",
  41303. height: math.unit(50, "feet"),
  41304. default: true
  41305. },
  41306. {
  41307. name: "Macro+",
  41308. height: math.unit(250, "feet")
  41309. },
  41310. {
  41311. name: "Megamacro",
  41312. height: math.unit(1500, "feet")
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(7 + 5/12, "feet"),
  41321. name: "Front",
  41322. image: {
  41323. source: "./media/characters/zane/front.svg",
  41324. extra: 1260/1203,
  41325. bottom: 94/1354
  41326. }
  41327. },
  41328. back: {
  41329. height: math.unit(5.05, "feet"),
  41330. name: "Back",
  41331. image: {
  41332. source: "./media/characters/zane/back.svg",
  41333. extra: 893/829,
  41334. bottom: 30/923
  41335. }
  41336. },
  41337. werewolf: {
  41338. height: math.unit(11, "feet"),
  41339. name: "Werewolf",
  41340. image: {
  41341. source: "./media/characters/zane/werewolf.svg",
  41342. extra: 1383/1323,
  41343. bottom: 89/1472
  41344. }
  41345. },
  41346. foot: {
  41347. height: math.unit(1.46, "feet"),
  41348. name: "Foot",
  41349. image: {
  41350. source: "./media/characters/zane/foot.svg"
  41351. }
  41352. },
  41353. footFront: {
  41354. height: math.unit(0.784, "feet"),
  41355. name: "Foot (Front)",
  41356. image: {
  41357. source: "./media/characters/zane/foot-front.svg"
  41358. }
  41359. },
  41360. dick: {
  41361. height: math.unit(1.95, "feet"),
  41362. name: "Dick",
  41363. image: {
  41364. source: "./media/characters/zane/dick.svg"
  41365. }
  41366. },
  41367. dickWerewolf: {
  41368. height: math.unit(3.77, "feet"),
  41369. name: "Dick (Werewolf)",
  41370. image: {
  41371. source: "./media/characters/zane/dick.svg"
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Normal",
  41378. height: math.unit(7 + 5/12, "feet"),
  41379. default: true
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41385. {
  41386. front: {
  41387. height: math.unit(6 + 2/12, "feet"),
  41388. weight: math.unit(284, "lb"),
  41389. name: "Front",
  41390. image: {
  41391. source: "./media/characters/benni-desparque/front.svg",
  41392. extra: 1353/1126,
  41393. bottom: 69/1422
  41394. }
  41395. },
  41396. },
  41397. [
  41398. {
  41399. name: "Civilian",
  41400. height: math.unit(6 + 2/12, "feet")
  41401. },
  41402. {
  41403. name: "Normal",
  41404. height: math.unit(98, "feet"),
  41405. default: true
  41406. },
  41407. {
  41408. name: "Kaiju Fighter",
  41409. height: math.unit(268, "feet")
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(5, "feet"),
  41418. weight: math.unit(105, "lb"),
  41419. name: "Front",
  41420. image: {
  41421. source: "./media/characters/maxine/front.svg",
  41422. extra: 1386/1250,
  41423. bottom: 71/1457
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Normal",
  41430. height: math.unit(5, "feet"),
  41431. default: true
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(11 + 7/12, "feet"),
  41440. weight: math.unit(9576, "lb"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/scaly/front.svg",
  41444. extra: 888/867,
  41445. bottom: 36/924
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(11 + 7/12, "feet"),
  41453. default: true
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41459. {
  41460. front: {
  41461. height: math.unit(6 + 3/12, "feet"),
  41462. name: "Front",
  41463. image: {
  41464. source: "./media/characters/saelria/front.svg",
  41465. extra: 1243/1138,
  41466. bottom: 46/1289
  41467. }
  41468. },
  41469. },
  41470. [
  41471. {
  41472. name: "Micro",
  41473. height: math.unit(6, "inches"),
  41474. },
  41475. {
  41476. name: "Normal",
  41477. height: math.unit(6 + 3/12, "feet"),
  41478. default: true
  41479. },
  41480. {
  41481. name: "Macro",
  41482. height: math.unit(25, "feet")
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41488. {
  41489. front: {
  41490. height: math.unit(80, "meters"),
  41491. weight: math.unit(7000, "tonnes"),
  41492. name: "Front",
  41493. image: {
  41494. source: "./media/characters/tef/front.svg",
  41495. extra: 2036/1991,
  41496. bottom: 54/2090
  41497. }
  41498. },
  41499. back: {
  41500. height: math.unit(80, "meters"),
  41501. weight: math.unit(7000, "tonnes"),
  41502. name: "Back",
  41503. image: {
  41504. source: "./media/characters/tef/back.svg",
  41505. extra: 2036/1991,
  41506. bottom: 54/2090
  41507. }
  41508. },
  41509. },
  41510. [
  41511. {
  41512. name: "Macro",
  41513. height: math.unit(80, "meters"),
  41514. default: true
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(13, "feet"),
  41523. weight: math.unit(6, "tons"),
  41524. name: "Front",
  41525. image: {
  41526. source: "./media/characters/rover/front.svg",
  41527. extra: 1233/1156,
  41528. bottom: 50/1283
  41529. }
  41530. },
  41531. back: {
  41532. height: math.unit(13, "feet"),
  41533. weight: math.unit(6, "tons"),
  41534. name: "Back",
  41535. image: {
  41536. source: "./media/characters/rover/back.svg",
  41537. extra: 1327/1258,
  41538. bottom: 39/1366
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(13, "feet"),
  41546. default: true
  41547. },
  41548. {
  41549. name: "Macro",
  41550. height: math.unit(1300, "feet")
  41551. },
  41552. {
  41553. name: "Megamacro",
  41554. height: math.unit(1300, "miles")
  41555. },
  41556. {
  41557. name: "Gigamacro",
  41558. height: math.unit(1300000, "miles")
  41559. },
  41560. ]
  41561. ))
  41562. characterMakers.push(() => makeCharacter(
  41563. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41564. {
  41565. front: {
  41566. height: math.unit(6, "feet"),
  41567. weight: math.unit(150, "lb"),
  41568. name: "Front",
  41569. image: {
  41570. source: "./media/characters/ariz/front.svg",
  41571. extra: 1401/1346,
  41572. bottom: 5/1406
  41573. }
  41574. },
  41575. },
  41576. [
  41577. {
  41578. name: "Normal",
  41579. height: math.unit(10, "feet"),
  41580. default: true
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41586. {
  41587. front: {
  41588. height: math.unit(6, "feet"),
  41589. weight: math.unit(140, "lb"),
  41590. name: "Front",
  41591. image: {
  41592. source: "./media/characters/sigrun/front.svg",
  41593. extra: 1418/1359,
  41594. bottom: 27/1445
  41595. }
  41596. },
  41597. },
  41598. [
  41599. {
  41600. name: "Macro",
  41601. height: math.unit(35, "feet"),
  41602. default: true
  41603. },
  41604. ]
  41605. ))
  41606. characterMakers.push(() => makeCharacter(
  41607. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41608. {
  41609. front: {
  41610. height: math.unit(6, "feet"),
  41611. weight: math.unit(150, "lb"),
  41612. name: "Front",
  41613. image: {
  41614. source: "./media/characters/numin/front.svg",
  41615. extra: 1433/1388,
  41616. bottom: 12/1445
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Macro",
  41623. height: math.unit(21.5, "km"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(6, "feet"),
  41633. weight: math.unit(463, "lb"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/melwa/front.svg",
  41637. extra: 1307/1248,
  41638. bottom: 93/1400
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(50, "meters"),
  41646. default: true
  41647. },
  41648. ]
  41649. ))
  41650. characterMakers.push(() => makeCharacter(
  41651. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41652. {
  41653. front: {
  41654. height: math.unit(325, "feet"),
  41655. name: "Front",
  41656. image: {
  41657. source: "./media/characters/zorkaiju/front.svg",
  41658. extra: 1955/1814,
  41659. bottom: 40/1995
  41660. }
  41661. },
  41662. frontExtended: {
  41663. height: math.unit(325, "feet"),
  41664. name: "Front (Extended)",
  41665. image: {
  41666. source: "./media/characters/zorkaiju/front-extended.svg",
  41667. extra: 1955/1814,
  41668. bottom: 40/1995
  41669. }
  41670. },
  41671. side: {
  41672. height: math.unit(325, "feet"),
  41673. name: "Side",
  41674. image: {
  41675. source: "./media/characters/zorkaiju/side.svg",
  41676. extra: 1495/1396,
  41677. bottom: 17/1512
  41678. }
  41679. },
  41680. sideExtended: {
  41681. height: math.unit(325, "feet"),
  41682. name: "Side (Extended)",
  41683. image: {
  41684. source: "./media/characters/zorkaiju/side-extended.svg",
  41685. extra: 1495/1396,
  41686. bottom: 17/1512
  41687. }
  41688. },
  41689. back: {
  41690. height: math.unit(325, "feet"),
  41691. name: "Back",
  41692. image: {
  41693. source: "./media/characters/zorkaiju/back.svg",
  41694. extra: 1959/1821,
  41695. bottom: 31/1990
  41696. }
  41697. },
  41698. backExtended: {
  41699. height: math.unit(325, "feet"),
  41700. name: "Back (Extended)",
  41701. image: {
  41702. source: "./media/characters/zorkaiju/back-extended.svg",
  41703. extra: 1959/1821,
  41704. bottom: 31/1990
  41705. }
  41706. },
  41707. hand: {
  41708. height: math.unit(58.4, "feet"),
  41709. name: "Hand",
  41710. image: {
  41711. source: "./media/characters/zorkaiju/hand.svg"
  41712. }
  41713. },
  41714. handExtended: {
  41715. height: math.unit(61.4, "feet"),
  41716. name: "Hand (Extended)",
  41717. image: {
  41718. source: "./media/characters/zorkaiju/hand-extended.svg"
  41719. }
  41720. },
  41721. foot: {
  41722. height: math.unit(95, "feet"),
  41723. name: "Foot",
  41724. image: {
  41725. source: "./media/characters/zorkaiju/foot.svg"
  41726. }
  41727. },
  41728. leftArm: {
  41729. height: math.unit(59, "feet"),
  41730. name: "Left Arm",
  41731. image: {
  41732. source: "./media/characters/zorkaiju/left-arm.svg"
  41733. }
  41734. },
  41735. rightArm: {
  41736. height: math.unit(59, "feet"),
  41737. name: "Right Arm",
  41738. image: {
  41739. source: "./media/characters/zorkaiju/right-arm.svg"
  41740. }
  41741. },
  41742. leftArmExtended: {
  41743. height: math.unit(59 * 1.033546, "feet"),
  41744. name: "Left Arm (Extended)",
  41745. image: {
  41746. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41747. }
  41748. },
  41749. rightArmExtended: {
  41750. height: math.unit(59 * 1.0496, "feet"),
  41751. name: "Right Arm (Extended)",
  41752. image: {
  41753. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41754. }
  41755. },
  41756. tail: {
  41757. height: math.unit(104, "feet"),
  41758. name: "Tail",
  41759. image: {
  41760. source: "./media/characters/zorkaiju/tail.svg"
  41761. }
  41762. },
  41763. tailExtended: {
  41764. height: math.unit(104, "feet"),
  41765. name: "Tail (Extended)",
  41766. image: {
  41767. source: "./media/characters/zorkaiju/tail-extended.svg"
  41768. }
  41769. },
  41770. tailBottom: {
  41771. height: math.unit(104, "feet"),
  41772. name: "Tail Bottom",
  41773. image: {
  41774. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41775. }
  41776. },
  41777. crystal: {
  41778. height: math.unit(27.54, "feet"),
  41779. name: "Crystal",
  41780. image: {
  41781. source: "./media/characters/zorkaiju/crystal.svg"
  41782. }
  41783. },
  41784. },
  41785. [
  41786. {
  41787. name: "Kaiju",
  41788. height: math.unit(325, "feet"),
  41789. default: true
  41790. },
  41791. ]
  41792. ))
  41793. characterMakers.push(() => makeCharacter(
  41794. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41795. {
  41796. front: {
  41797. height: math.unit(6 + 1/12, "feet"),
  41798. weight: math.unit(115, "lb"),
  41799. name: "Front",
  41800. image: {
  41801. source: "./media/characters/bailey-belfry/front.svg",
  41802. extra: 1240/1121,
  41803. bottom: 101/1341
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Normal",
  41810. height: math.unit(6 + 1/12, "feet"),
  41811. default: true
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41817. {
  41818. side: {
  41819. height: math.unit(4, "meters"),
  41820. weight: math.unit(250, "kg"),
  41821. name: "Side",
  41822. image: {
  41823. source: "./media/characters/blacky/side.svg",
  41824. extra: 1027/919,
  41825. bottom: 43/1070
  41826. }
  41827. },
  41828. maw: {
  41829. height: math.unit(1, "meters"),
  41830. name: "Maw",
  41831. image: {
  41832. source: "./media/characters/blacky/maw.svg"
  41833. }
  41834. },
  41835. paw: {
  41836. height: math.unit(1, "meters"),
  41837. name: "Paw",
  41838. image: {
  41839. source: "./media/characters/blacky/paw.svg"
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(4, "meters"),
  41847. default: true
  41848. },
  41849. ]
  41850. ))
  41851. characterMakers.push(() => makeCharacter(
  41852. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41853. {
  41854. front: {
  41855. height: math.unit(170, "cm"),
  41856. weight: math.unit(66, "kg"),
  41857. name: "Front",
  41858. image: {
  41859. source: "./media/characters/thux-ei/front.svg",
  41860. extra: 1109/1011,
  41861. bottom: 8/1117
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Normal",
  41868. height: math.unit(170, "cm"),
  41869. default: true
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41875. {
  41876. front: {
  41877. height: math.unit(5, "feet"),
  41878. weight: math.unit(120, "lb"),
  41879. name: "Front",
  41880. image: {
  41881. source: "./media/characters/roxanne-voltaire/front.svg",
  41882. extra: 1901/1779,
  41883. bottom: 53/1954
  41884. }
  41885. },
  41886. },
  41887. [
  41888. {
  41889. name: "Normal",
  41890. height: math.unit(5, "feet"),
  41891. default: true
  41892. },
  41893. {
  41894. name: "Giant",
  41895. height: math.unit(50, "feet")
  41896. },
  41897. {
  41898. name: "Titan",
  41899. height: math.unit(500, "feet")
  41900. },
  41901. {
  41902. name: "Macro",
  41903. height: math.unit(5000, "feet")
  41904. },
  41905. {
  41906. name: "Megamacro",
  41907. height: math.unit(50000, "feet")
  41908. },
  41909. {
  41910. name: "Gigamacro",
  41911. height: math.unit(500000, "feet")
  41912. },
  41913. {
  41914. name: "Teramacro",
  41915. height: math.unit(5e6, "feet")
  41916. },
  41917. ]
  41918. ))
  41919. characterMakers.push(() => makeCharacter(
  41920. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41921. {
  41922. front: {
  41923. height: math.unit(6 + 2/12, "feet"),
  41924. name: "Front",
  41925. image: {
  41926. source: "./media/characters/squeaks/front.svg",
  41927. extra: 1823/1768,
  41928. bottom: 138/1961
  41929. }
  41930. },
  41931. },
  41932. [
  41933. {
  41934. name: "Micro",
  41935. height: math.unit(0.5, "inches")
  41936. },
  41937. {
  41938. name: "Normal",
  41939. height: math.unit(6 + 2/12, "feet"),
  41940. default: true
  41941. },
  41942. {
  41943. name: "Macro",
  41944. height: math.unit(600, "feet")
  41945. },
  41946. ]
  41947. ))
  41948. characterMakers.push(() => makeCharacter(
  41949. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41950. {
  41951. front: {
  41952. height: math.unit(1.72, "meters"),
  41953. name: "Front",
  41954. image: {
  41955. source: "./media/characters/archinger/front.svg",
  41956. extra: 1861/1675,
  41957. bottom: 125/1986
  41958. }
  41959. },
  41960. back: {
  41961. height: math.unit(1.72, "meters"),
  41962. name: "Back",
  41963. image: {
  41964. source: "./media/characters/archinger/back.svg",
  41965. extra: 1844/1701,
  41966. bottom: 104/1948
  41967. }
  41968. },
  41969. cock: {
  41970. height: math.unit(0.59, "feet"),
  41971. name: "Cock",
  41972. image: {
  41973. source: "./media/characters/archinger/cock.svg"
  41974. }
  41975. },
  41976. },
  41977. [
  41978. {
  41979. name: "Normal",
  41980. height: math.unit(1.72, "meters"),
  41981. default: true
  41982. },
  41983. {
  41984. name: "Macro",
  41985. height: math.unit(84, "meters")
  41986. },
  41987. {
  41988. name: "Macro+",
  41989. height: math.unit(112, "meters")
  41990. },
  41991. {
  41992. name: "Macro++",
  41993. height: math.unit(960, "meters")
  41994. },
  41995. {
  41996. name: "Macro+++",
  41997. height: math.unit(4, "km")
  41998. },
  41999. {
  42000. name: "Macro++++",
  42001. height: math.unit(48, "km")
  42002. },
  42003. {
  42004. name: "Macro+++++",
  42005. height: math.unit(4500, "km")
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(5 + 5/12, "feet"),
  42014. name: "Front",
  42015. image: {
  42016. source: "./media/characters/alsnapz/front.svg",
  42017. extra: 1157/1065,
  42018. bottom: 42/1199
  42019. }
  42020. },
  42021. },
  42022. [
  42023. {
  42024. name: "Normal",
  42025. height: math.unit(5 + 5/12, "feet"),
  42026. default: true
  42027. },
  42028. ]
  42029. ))
  42030. characterMakers.push(() => makeCharacter(
  42031. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42032. {
  42033. side: {
  42034. height: math.unit(3.2, "earths"),
  42035. name: "Side",
  42036. image: {
  42037. source: "./media/characters/mag/side.svg",
  42038. extra: 1331/1008,
  42039. bottom: 52/1383
  42040. }
  42041. },
  42042. wing: {
  42043. height: math.unit(1.94, "earths"),
  42044. name: "Wing",
  42045. image: {
  42046. source: "./media/characters/mag/wing.svg"
  42047. }
  42048. },
  42049. dick: {
  42050. height: math.unit(1.8, "earths"),
  42051. name: "Dick",
  42052. image: {
  42053. source: "./media/characters/mag/dick.svg"
  42054. }
  42055. },
  42056. ass: {
  42057. height: math.unit(1.33, "earths"),
  42058. name: "Ass",
  42059. image: {
  42060. source: "./media/characters/mag/ass.svg"
  42061. }
  42062. },
  42063. head: {
  42064. height: math.unit(1.1, "earths"),
  42065. name: "Head",
  42066. image: {
  42067. source: "./media/characters/mag/head.svg"
  42068. }
  42069. },
  42070. maw: {
  42071. height: math.unit(1.62, "earths"),
  42072. name: "Maw",
  42073. image: {
  42074. source: "./media/characters/mag/maw.svg"
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Small",
  42081. height: math.unit(162, "feet")
  42082. },
  42083. {
  42084. name: "Normal",
  42085. height: math.unit(3.2, "earths"),
  42086. default: true
  42087. },
  42088. ]
  42089. ))
  42090. characterMakers.push(() => makeCharacter(
  42091. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42092. {
  42093. front: {
  42094. height: math.unit(512, "feet"),
  42095. weight: math.unit(63509, "tonnes"),
  42096. name: "Front",
  42097. image: {
  42098. source: "./media/characters/vorrel-harroc/front.svg",
  42099. extra: 1075/1063,
  42100. bottom: 62/1137
  42101. }
  42102. },
  42103. },
  42104. [
  42105. {
  42106. name: "Normal",
  42107. height: math.unit(10, "feet")
  42108. },
  42109. {
  42110. name: "Macro",
  42111. height: math.unit(512, "feet"),
  42112. default: true
  42113. },
  42114. {
  42115. name: "Megamacro",
  42116. height: math.unit(256, "miles")
  42117. },
  42118. {
  42119. name: "Gigamacro",
  42120. height: math.unit(4096, "miles")
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42126. {
  42127. side: {
  42128. height: math.unit(50, "feet"),
  42129. name: "Side",
  42130. image: {
  42131. source: "./media/characters/froimar/side.svg",
  42132. extra: 855/638,
  42133. bottom: 99/954
  42134. }
  42135. },
  42136. },
  42137. [
  42138. {
  42139. name: "Macro",
  42140. height: math.unit(50, "feet"),
  42141. default: true
  42142. },
  42143. ]
  42144. ))
  42145. characterMakers.push(() => makeCharacter(
  42146. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42147. {
  42148. front: {
  42149. height: math.unit(210, "miles"),
  42150. name: "Front",
  42151. image: {
  42152. source: "./media/characters/timothy/front.svg",
  42153. extra: 1007/943,
  42154. bottom: 62/1069
  42155. }
  42156. },
  42157. frontSkirt: {
  42158. height: math.unit(210, "miles"),
  42159. name: "Front (Skirt)",
  42160. image: {
  42161. source: "./media/characters/timothy/front-skirt.svg",
  42162. extra: 1007/943,
  42163. bottom: 62/1069
  42164. }
  42165. },
  42166. frontCoat: {
  42167. height: math.unit(210, "miles"),
  42168. name: "Front (Coat)",
  42169. image: {
  42170. source: "./media/characters/timothy/front-coat.svg",
  42171. extra: 1007/943,
  42172. bottom: 62/1069
  42173. }
  42174. },
  42175. },
  42176. [
  42177. {
  42178. name: "Macro",
  42179. height: math.unit(210, "miles"),
  42180. default: true
  42181. },
  42182. {
  42183. name: "Megamacro",
  42184. height: math.unit(210000, "miles")
  42185. },
  42186. ]
  42187. ))
  42188. characterMakers.push(() => makeCharacter(
  42189. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42190. {
  42191. front: {
  42192. height: math.unit(188, "feet"),
  42193. name: "Front",
  42194. image: {
  42195. source: "./media/characters/pyotr/front.svg",
  42196. extra: 1912/1826,
  42197. bottom: 18/1930
  42198. }
  42199. },
  42200. },
  42201. [
  42202. {
  42203. name: "Macro",
  42204. height: math.unit(188, "feet"),
  42205. default: true
  42206. },
  42207. {
  42208. name: "Megamacro",
  42209. height: math.unit(8, "miles")
  42210. },
  42211. ]
  42212. ))
  42213. characterMakers.push(() => makeCharacter(
  42214. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42215. {
  42216. side: {
  42217. height: math.unit(10, "feet"),
  42218. weight: math.unit(4500, "lb"),
  42219. name: "Side",
  42220. image: {
  42221. source: "./media/characters/ackart/side.svg",
  42222. extra: 1776/1668,
  42223. bottom: 116/1892
  42224. }
  42225. },
  42226. },
  42227. [
  42228. {
  42229. name: "Normal",
  42230. height: math.unit(10, "feet"),
  42231. default: true
  42232. },
  42233. ]
  42234. ))
  42235. characterMakers.push(() => makeCharacter(
  42236. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42237. {
  42238. side: {
  42239. height: math.unit(21, "feet"),
  42240. name: "Side",
  42241. image: {
  42242. source: "./media/characters/nolow/side.svg",
  42243. extra: 1484/1434,
  42244. bottom: 85/1569
  42245. }
  42246. },
  42247. sideErect: {
  42248. height: math.unit(21, "feet"),
  42249. name: "Side-erect",
  42250. image: {
  42251. source: "./media/characters/nolow/side-erect.svg",
  42252. extra: 1484/1434,
  42253. bottom: 85/1569
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Regular",
  42260. height: math.unit(12, "feet")
  42261. },
  42262. {
  42263. name: "Big Chee",
  42264. height: math.unit(21, "feet"),
  42265. default: true
  42266. },
  42267. ]
  42268. ))
  42269. characterMakers.push(() => makeCharacter(
  42270. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42271. {
  42272. front: {
  42273. height: math.unit(7, "feet"),
  42274. weight: math.unit(250, "lb"),
  42275. name: "Front",
  42276. image: {
  42277. source: "./media/characters/nines/front.svg",
  42278. extra: 1741/1607,
  42279. bottom: 41/1782
  42280. }
  42281. },
  42282. side: {
  42283. height: math.unit(7, "feet"),
  42284. weight: math.unit(250, "lb"),
  42285. name: "Side",
  42286. image: {
  42287. source: "./media/characters/nines/side.svg",
  42288. extra: 1854/1735,
  42289. bottom: 93/1947
  42290. }
  42291. },
  42292. back: {
  42293. height: math.unit(7, "feet"),
  42294. weight: math.unit(250, "lb"),
  42295. name: "Back",
  42296. image: {
  42297. source: "./media/characters/nines/back.svg",
  42298. extra: 1748/1615,
  42299. bottom: 20/1768
  42300. }
  42301. },
  42302. },
  42303. [
  42304. {
  42305. name: "Megamacro",
  42306. height: math.unit(99, "km"),
  42307. default: true
  42308. },
  42309. ]
  42310. ))
  42311. characterMakers.push(() => makeCharacter(
  42312. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42313. {
  42314. front: {
  42315. height: math.unit(5 + 10/12, "feet"),
  42316. weight: math.unit(210, "lb"),
  42317. name: "Front",
  42318. image: {
  42319. source: "./media/characters/zenith/front.svg",
  42320. extra: 1531/1452,
  42321. bottom: 198/1729
  42322. }
  42323. },
  42324. back: {
  42325. height: math.unit(5 + 10/12, "feet"),
  42326. weight: math.unit(210, "lb"),
  42327. name: "Back",
  42328. image: {
  42329. source: "./media/characters/zenith/back.svg",
  42330. extra: 1571/1487,
  42331. bottom: 75/1646
  42332. }
  42333. },
  42334. },
  42335. [
  42336. {
  42337. name: "Normal",
  42338. height: math.unit(5 + 10/12, "feet"),
  42339. default: true
  42340. }
  42341. ]
  42342. ))
  42343. characterMakers.push(() => makeCharacter(
  42344. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42345. {
  42346. front: {
  42347. height: math.unit(4, "feet"),
  42348. weight: math.unit(60, "lb"),
  42349. name: "Front",
  42350. image: {
  42351. source: "./media/characters/jasper/front.svg",
  42352. extra: 1450/1379,
  42353. bottom: 19/1469
  42354. }
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(4, "feet"),
  42361. default: true
  42362. },
  42363. ]
  42364. ))
  42365. characterMakers.push(() => makeCharacter(
  42366. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42367. {
  42368. front: {
  42369. height: math.unit(6 + 5/12, "feet"),
  42370. weight: math.unit(290, "lb"),
  42371. name: "Front",
  42372. image: {
  42373. source: "./media/characters/tiberius-thyben/front.svg",
  42374. extra: 757/739,
  42375. bottom: 39/796
  42376. }
  42377. },
  42378. },
  42379. [
  42380. {
  42381. name: "Micro",
  42382. height: math.unit(1.5, "inches")
  42383. },
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(6 + 5/12, "feet"),
  42387. default: true
  42388. },
  42389. {
  42390. name: "Macro",
  42391. height: math.unit(300, "feet")
  42392. },
  42393. ]
  42394. ))
  42395. characterMakers.push(() => makeCharacter(
  42396. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42397. {
  42398. front: {
  42399. height: math.unit(5 + 6/12, "feet"),
  42400. weight: math.unit(60, "kg"),
  42401. name: "Front",
  42402. image: {
  42403. source: "./media/characters/sabre/front.svg",
  42404. extra: 738/671,
  42405. bottom: 27/765
  42406. }
  42407. },
  42408. },
  42409. [
  42410. {
  42411. name: "Teeny",
  42412. height: math.unit(2, "inches")
  42413. },
  42414. {
  42415. name: "Smol",
  42416. height: math.unit(8, "inches")
  42417. },
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(5 + 6/12, "feet"),
  42421. default: true
  42422. },
  42423. {
  42424. name: "Mini-Macro",
  42425. height: math.unit(15, "feet")
  42426. },
  42427. {
  42428. name: "Macro",
  42429. height: math.unit(50, "feet")
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42435. {
  42436. front: {
  42437. height: math.unit(6 + 4/12, "feet"),
  42438. weight: math.unit(170, "lb"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/charlie/front.svg",
  42442. extra: 1348/1228,
  42443. bottom: 15/1363
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Macro",
  42450. height: math.unit(1700, "meters"),
  42451. default: true
  42452. },
  42453. {
  42454. name: "MegaMacro",
  42455. height: math.unit(20400, "meters")
  42456. },
  42457. ]
  42458. ))
  42459. characterMakers.push(() => makeCharacter(
  42460. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42461. {
  42462. front: {
  42463. height: math.unit(6 + 3/12, "feet"),
  42464. weight: math.unit(185, "lb"),
  42465. name: "Front",
  42466. image: {
  42467. source: "./media/characters/susan-grant/front.svg",
  42468. extra: 1351/1327,
  42469. bottom: 26/1377
  42470. }
  42471. },
  42472. },
  42473. [
  42474. {
  42475. name: "Normal",
  42476. height: math.unit(6 + 3/12, "feet"),
  42477. default: true
  42478. },
  42479. {
  42480. name: "Macro",
  42481. height: math.unit(225, "feet")
  42482. },
  42483. {
  42484. name: "Macro+",
  42485. height: math.unit(900, "feet")
  42486. },
  42487. {
  42488. name: "MegaMacro",
  42489. height: math.unit(14400, "feet")
  42490. },
  42491. ]
  42492. ))
  42493. characterMakers.push(() => makeCharacter(
  42494. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42495. {
  42496. front: {
  42497. height: math.unit(5 + 4/12, "feet"),
  42498. weight: math.unit(110, "lb"),
  42499. name: "Front",
  42500. image: {
  42501. source: "./media/characters/axel-isanov/front.svg",
  42502. extra: 1096/1065,
  42503. bottom: 13/1109
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Normal",
  42510. height: math.unit(5 + 4/12, "feet"),
  42511. default: true
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(9, "feet"),
  42520. weight: math.unit(467, "lb"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/necahual/front.svg",
  42524. extra: 920/873,
  42525. bottom: 26/946
  42526. }
  42527. },
  42528. back: {
  42529. height: math.unit(9, "feet"),
  42530. weight: math.unit(467, "lb"),
  42531. name: "Back",
  42532. image: {
  42533. source: "./media/characters/necahual/back.svg",
  42534. extra: 930/884,
  42535. bottom: 16/946
  42536. }
  42537. },
  42538. frontUnderwear: {
  42539. height: math.unit(9, "feet"),
  42540. weight: math.unit(467, "lb"),
  42541. name: "Front (Underwear)",
  42542. image: {
  42543. source: "./media/characters/necahual/front-underwear.svg",
  42544. extra: 920/873,
  42545. bottom: 26/946
  42546. }
  42547. },
  42548. frontDressed: {
  42549. height: math.unit(9, "feet"),
  42550. weight: math.unit(467, "lb"),
  42551. name: "Front (Dressed)",
  42552. image: {
  42553. source: "./media/characters/necahual/front-dressed.svg",
  42554. extra: 920/873,
  42555. bottom: 26/946
  42556. }
  42557. },
  42558. },
  42559. [
  42560. {
  42561. name: "Comprsesed",
  42562. height: math.unit(9, "feet")
  42563. },
  42564. {
  42565. name: "Natural",
  42566. height: math.unit(15, "feet"),
  42567. default: true
  42568. },
  42569. {
  42570. name: "Boosted",
  42571. height: math.unit(50, "feet")
  42572. },
  42573. {
  42574. name: "Boosted+",
  42575. height: math.unit(150, "feet")
  42576. },
  42577. {
  42578. name: "Max",
  42579. height: math.unit(500, "feet")
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42585. {
  42586. front: {
  42587. height: math.unit(22 + 1/12, "feet"),
  42588. weight: math.unit(3200, "lb"),
  42589. name: "Front",
  42590. image: {
  42591. source: "./media/characters/theo-acacia/front.svg",
  42592. extra: 1796/1741,
  42593. bottom: 83/1879
  42594. }
  42595. },
  42596. frontUnderwear: {
  42597. height: math.unit(22 + 1/12, "feet"),
  42598. weight: math.unit(3200, "lb"),
  42599. name: "Front (Underwear)",
  42600. image: {
  42601. source: "./media/characters/theo-acacia/front-underwear.svg",
  42602. extra: 1796/1741,
  42603. bottom: 83/1879
  42604. }
  42605. },
  42606. frontNude: {
  42607. height: math.unit(22 + 1/12, "feet"),
  42608. weight: math.unit(3200, "lb"),
  42609. name: "Front (Nude)",
  42610. image: {
  42611. source: "./media/characters/theo-acacia/front-nude.svg",
  42612. extra: 1796/1741,
  42613. bottom: 83/1879
  42614. }
  42615. },
  42616. },
  42617. [
  42618. {
  42619. name: "Normal",
  42620. height: math.unit(22 + 1/12, "feet"),
  42621. default: true
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42627. {
  42628. front: {
  42629. height: math.unit(20, "feet"),
  42630. name: "Front",
  42631. image: {
  42632. source: "./media/characters/astra/front.svg",
  42633. extra: 1850/1714,
  42634. bottom: 106/1956
  42635. }
  42636. },
  42637. frontUndressed: {
  42638. height: math.unit(20, "feet"),
  42639. name: "Front (Undressed)",
  42640. image: {
  42641. source: "./media/characters/astra/front-undressed.svg",
  42642. extra: 1926/1749,
  42643. bottom: 0/1926
  42644. }
  42645. },
  42646. hand: {
  42647. height: math.unit(1.53, "feet"),
  42648. name: "Hand",
  42649. image: {
  42650. source: "./media/characters/astra/hand.svg"
  42651. }
  42652. },
  42653. paw: {
  42654. height: math.unit(1.53, "feet"),
  42655. name: "Paw",
  42656. image: {
  42657. source: "./media/characters/astra/paw.svg"
  42658. }
  42659. },
  42660. },
  42661. [
  42662. {
  42663. name: "Smallest",
  42664. height: math.unit(20, "feet")
  42665. },
  42666. {
  42667. name: "Normal",
  42668. height: math.unit(1e9, "miles"),
  42669. default: true
  42670. },
  42671. {
  42672. name: "Larger",
  42673. height: math.unit(5, "multiverses")
  42674. },
  42675. {
  42676. name: "Largest",
  42677. height: math.unit(1e9, "multiverses")
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(8, "feet"),
  42686. name: "Front",
  42687. image: {
  42688. source: "./media/characters/breanna/front.svg",
  42689. extra: 1912/1632,
  42690. bottom: 33/1945
  42691. }
  42692. },
  42693. },
  42694. [
  42695. {
  42696. name: "Smallest",
  42697. height: math.unit(8, "feet")
  42698. },
  42699. {
  42700. name: "Normal",
  42701. height: math.unit(1, "mile"),
  42702. default: true
  42703. },
  42704. {
  42705. name: "Maximum",
  42706. height: math.unit(1500000000000, "lightyears")
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42712. {
  42713. front: {
  42714. height: math.unit(5 + 11/12, "feet"),
  42715. weight: math.unit(155, "lb"),
  42716. name: "Front",
  42717. image: {
  42718. source: "./media/characters/cai/front.svg",
  42719. extra: 1823/1702,
  42720. bottom: 32/1855
  42721. }
  42722. },
  42723. back: {
  42724. height: math.unit(5 + 11/12, "feet"),
  42725. weight: math.unit(155, "lb"),
  42726. name: "Back",
  42727. image: {
  42728. source: "./media/characters/cai/back.svg",
  42729. extra: 1809/1708,
  42730. bottom: 31/1840
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Normal",
  42737. height: math.unit(5 + 11/12, "feet"),
  42738. default: true
  42739. },
  42740. {
  42741. name: "Big",
  42742. height: math.unit(15, "feet")
  42743. },
  42744. {
  42745. name: "Macro",
  42746. height: math.unit(200, "feet")
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(5 + 6/12, "feet"),
  42755. weight: math.unit(160, "lb"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42759. extra: 1227/1174,
  42760. bottom: 37/1264
  42761. }
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Macro",
  42767. height: math.unit(444, "meters"),
  42768. default: true
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42774. {
  42775. front: {
  42776. height: math.unit(18 + 7/12, "feet"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/rex/front.svg",
  42780. extra: 1941/1807,
  42781. bottom: 66/2007
  42782. }
  42783. },
  42784. back: {
  42785. height: math.unit(18 + 7/12, "feet"),
  42786. name: "Back",
  42787. image: {
  42788. source: "./media/characters/rex/back.svg",
  42789. extra: 1937/1822,
  42790. bottom: 42/1979
  42791. }
  42792. },
  42793. boot: {
  42794. height: math.unit(3.45, "feet"),
  42795. name: "Boot",
  42796. image: {
  42797. source: "./media/characters/rex/boot.svg"
  42798. }
  42799. },
  42800. paw: {
  42801. height: math.unit(4.17, "feet"),
  42802. name: "Paw",
  42803. image: {
  42804. source: "./media/characters/rex/paw.svg"
  42805. }
  42806. },
  42807. head: {
  42808. height: math.unit(6.728, "feet"),
  42809. name: "Head",
  42810. image: {
  42811. source: "./media/characters/rex/head.svg"
  42812. }
  42813. },
  42814. },
  42815. [
  42816. {
  42817. name: "Nano",
  42818. height: math.unit(18 + 7/12, "feet")
  42819. },
  42820. {
  42821. name: "Micro",
  42822. height: math.unit(1.5, "megameters")
  42823. },
  42824. {
  42825. name: "Normal",
  42826. height: math.unit(440, "megameters"),
  42827. default: true
  42828. },
  42829. {
  42830. name: "Macro",
  42831. height: math.unit(2.5, "gigameters")
  42832. },
  42833. {
  42834. name: "Gigamacro",
  42835. height: math.unit(2, "galaxies")
  42836. },
  42837. ]
  42838. ))
  42839. characterMakers.push(() => makeCharacter(
  42840. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42841. {
  42842. side: {
  42843. height: math.unit(32, "feet"),
  42844. weight: math.unit(250000, "lb"),
  42845. name: "Side",
  42846. image: {
  42847. source: "./media/characters/silverwing/side.svg",
  42848. extra: 1100/1019,
  42849. bottom: 204/1304
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Normal",
  42856. height: math.unit(32, "feet"),
  42857. default: true
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42863. {
  42864. front: {
  42865. height: math.unit(6 + 6/12, "feet"),
  42866. weight: math.unit(350, "lb"),
  42867. name: "Front",
  42868. image: {
  42869. source: "./media/characters/tristan-hawthorne/front.svg",
  42870. extra: 1159/1124,
  42871. bottom: 37/1196
  42872. },
  42873. form: "labrador",
  42874. default: true
  42875. },
  42876. skunkFront: {
  42877. height: math.unit(4 + 6/12, "feet"),
  42878. weight: math.unit(120, "lb"),
  42879. name: "Front",
  42880. image: {
  42881. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42882. extra: 1609/1551,
  42883. bottom: 169/1778
  42884. },
  42885. form: "skunk",
  42886. default: true
  42887. },
  42888. },
  42889. [
  42890. {
  42891. name: "Normal",
  42892. height: math.unit(6 + 6/12, "feet"),
  42893. form: "labrador",
  42894. default: true
  42895. },
  42896. {
  42897. name: "Normal",
  42898. height: math.unit(4 + 6/12, "feet"),
  42899. form: "skunk",
  42900. default: true
  42901. },
  42902. ],
  42903. {
  42904. "labrador": {
  42905. name: "Labrador",
  42906. default: true
  42907. },
  42908. "skunk": {
  42909. name: "Skunk"
  42910. }
  42911. }
  42912. ))
  42913. characterMakers.push(() => makeCharacter(
  42914. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42915. {
  42916. front: {
  42917. height: math.unit(5 + 11/12, "feet"),
  42918. weight: math.unit(190, "lb"),
  42919. name: "Front",
  42920. image: {
  42921. source: "./media/characters/mizu/front.svg",
  42922. extra: 1988/1788,
  42923. bottom: 14/2002
  42924. }
  42925. },
  42926. },
  42927. [
  42928. {
  42929. name: "Normal",
  42930. height: math.unit(5 + 11/12, "feet"),
  42931. default: true
  42932. },
  42933. ]
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42937. {
  42938. front: {
  42939. height: math.unit(1.7, "feet"),
  42940. weight: math.unit(50, "lb"),
  42941. name: "Front",
  42942. image: {
  42943. source: "./media/characters/dechroma/front.svg",
  42944. extra: 1095/859,
  42945. bottom: 64/1159
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(1.7, "feet"),
  42953. default: true
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42959. {
  42960. side: {
  42961. height: math.unit(30, "feet"),
  42962. name: "Side",
  42963. image: {
  42964. source: "./media/characters/veluren-thanazel/side.svg",
  42965. extra: 1611/633,
  42966. bottom: 118/1729
  42967. }
  42968. },
  42969. front: {
  42970. height: math.unit(30, "feet"),
  42971. name: "Front",
  42972. image: {
  42973. source: "./media/characters/veluren-thanazel/front.svg",
  42974. extra: 1486/636,
  42975. bottom: 238/1724
  42976. }
  42977. },
  42978. head: {
  42979. height: math.unit(21.4, "feet"),
  42980. name: "Head",
  42981. image: {
  42982. source: "./media/characters/veluren-thanazel/head.svg"
  42983. }
  42984. },
  42985. genitals: {
  42986. height: math.unit(19.4, "feet"),
  42987. name: "Genitals",
  42988. image: {
  42989. source: "./media/characters/veluren-thanazel/genitals.svg"
  42990. }
  42991. },
  42992. },
  42993. [
  42994. {
  42995. name: "Social",
  42996. height: math.unit(6, "feet")
  42997. },
  42998. {
  42999. name: "Play",
  43000. height: math.unit(12, "feet")
  43001. },
  43002. {
  43003. name: "True",
  43004. height: math.unit(30, "feet"),
  43005. default: true
  43006. },
  43007. ]
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43011. {
  43012. front: {
  43013. height: math.unit(7 + 6/12, "feet"),
  43014. weight: math.unit(500, "kg"),
  43015. name: "Front",
  43016. image: {
  43017. source: "./media/characters/arcturas/front.svg",
  43018. extra: 1700/1500,
  43019. bottom: 145/1845
  43020. }
  43021. },
  43022. },
  43023. [
  43024. {
  43025. name: "Normal",
  43026. height: math.unit(7 + 6/12, "feet"),
  43027. default: true
  43028. },
  43029. ]
  43030. ))
  43031. characterMakers.push(() => makeCharacter(
  43032. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43033. {
  43034. side: {
  43035. height: math.unit(6, "feet"),
  43036. weight: math.unit(2, "tons"),
  43037. name: "Side",
  43038. image: {
  43039. source: "./media/characters/vitaen/side.svg",
  43040. extra: 1157/617,
  43041. bottom: 122/1279
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Normal",
  43048. height: math.unit(6, "feet"),
  43049. default: true
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(19, "feet"),
  43058. name: "Front",
  43059. image: {
  43060. source: "./media/characters/fia-dreamweaver/front.svg",
  43061. extra: 1630/1504,
  43062. bottom: 25/1655
  43063. }
  43064. },
  43065. },
  43066. [
  43067. {
  43068. name: "Normal",
  43069. height: math.unit(19, "feet"),
  43070. default: true
  43071. },
  43072. ]
  43073. ))
  43074. characterMakers.push(() => makeCharacter(
  43075. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43076. {
  43077. front: {
  43078. height: math.unit(5 + 4/12, "feet"),
  43079. name: "Front",
  43080. image: {
  43081. source: "./media/characters/artan/front.svg",
  43082. extra: 1618/1535,
  43083. bottom: 46/1664
  43084. }
  43085. },
  43086. back: {
  43087. height: math.unit(5 + 4/12, "feet"),
  43088. name: "Back",
  43089. image: {
  43090. source: "./media/characters/artan/back.svg",
  43091. extra: 1618/1543,
  43092. bottom: 31/1649
  43093. }
  43094. },
  43095. },
  43096. [
  43097. {
  43098. name: "Normal",
  43099. height: math.unit(5 + 4/12, "feet"),
  43100. default: true
  43101. },
  43102. ]
  43103. ))
  43104. characterMakers.push(() => makeCharacter(
  43105. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43106. {
  43107. side: {
  43108. height: math.unit(182, "cm"),
  43109. weight: math.unit(1000, "lb"),
  43110. name: "Side",
  43111. image: {
  43112. source: "./media/characters/silver-dragon/side.svg",
  43113. extra: 710/287,
  43114. bottom: 88/798
  43115. }
  43116. },
  43117. },
  43118. [
  43119. {
  43120. name: "Normal",
  43121. height: math.unit(182, "cm"),
  43122. default: true
  43123. },
  43124. ]
  43125. ))
  43126. characterMakers.push(() => makeCharacter(
  43127. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43128. {
  43129. side: {
  43130. height: math.unit(6 + 6/12, "feet"),
  43131. weight: math.unit(1.5, "tons"),
  43132. name: "Side",
  43133. image: {
  43134. source: "./media/characters/zephyr/side.svg",
  43135. extra: 1433/586,
  43136. bottom: 109/1542
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(6 + 6/12, "feet"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43150. {
  43151. side: {
  43152. height: math.unit(1, "feet"),
  43153. name: "Side",
  43154. image: {
  43155. source: "./media/characters/vixye/side.svg",
  43156. extra: 632/541,
  43157. bottom: 0/632
  43158. }
  43159. },
  43160. },
  43161. [
  43162. {
  43163. name: "Normal",
  43164. height: math.unit(1, "feet"),
  43165. default: true
  43166. },
  43167. {
  43168. name: "True",
  43169. height: math.unit(1e15, "multiverses")
  43170. },
  43171. ]
  43172. ))
  43173. characterMakers.push(() => makeCharacter(
  43174. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43175. {
  43176. front: {
  43177. height: math.unit(8 + 2/12, "feet"),
  43178. weight: math.unit(650, "lb"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43182. extra: 1174/1137,
  43183. bottom: 82/1256
  43184. }
  43185. },
  43186. back: {
  43187. height: math.unit(8 + 2/12, "feet"),
  43188. weight: math.unit(650, "lb"),
  43189. name: "Back",
  43190. image: {
  43191. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43192. extra: 1204/1157,
  43193. bottom: 46/1250
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Wildform",
  43200. height: math.unit(8 + 2/12, "feet"),
  43201. default: true
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43207. {
  43208. front: {
  43209. height: math.unit(18, "feet"),
  43210. name: "Front",
  43211. image: {
  43212. source: "./media/characters/cyphin/front.svg",
  43213. extra: 970/886,
  43214. bottom: 42/1012
  43215. }
  43216. },
  43217. back: {
  43218. height: math.unit(18, "feet"),
  43219. name: "Back",
  43220. image: {
  43221. source: "./media/characters/cyphin/back.svg",
  43222. extra: 1009/894,
  43223. bottom: 24/1033
  43224. }
  43225. },
  43226. head: {
  43227. height: math.unit(5.05, "feet"),
  43228. name: "Head",
  43229. image: {
  43230. source: "./media/characters/cyphin/head.svg"
  43231. }
  43232. },
  43233. tailbud: {
  43234. height: math.unit(5, "feet"),
  43235. name: "Tailbud",
  43236. image: {
  43237. source: "./media/characters/cyphin/tailbud.svg"
  43238. }
  43239. },
  43240. },
  43241. [
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43246. {
  43247. side: {
  43248. height: math.unit(10, "feet"),
  43249. weight: math.unit(6, "tons"),
  43250. name: "Side",
  43251. image: {
  43252. source: "./media/characters/raijin/side.svg",
  43253. extra: 1529/613,
  43254. bottom: 337/1866
  43255. }
  43256. },
  43257. },
  43258. [
  43259. {
  43260. name: "Normal",
  43261. height: math.unit(10, "feet"),
  43262. default: true
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43268. {
  43269. side: {
  43270. height: math.unit(9, "feet"),
  43271. name: "Side",
  43272. image: {
  43273. source: "./media/characters/nilghais/side.svg",
  43274. extra: 1047/744,
  43275. bottom: 91/1138
  43276. }
  43277. },
  43278. head: {
  43279. height: math.unit(3.14, "feet"),
  43280. name: "Head",
  43281. image: {
  43282. source: "./media/characters/nilghais/head.svg"
  43283. }
  43284. },
  43285. mouth: {
  43286. height: math.unit(4.6, "feet"),
  43287. name: "Mouth",
  43288. image: {
  43289. source: "./media/characters/nilghais/mouth.svg"
  43290. }
  43291. },
  43292. wings: {
  43293. height: math.unit(24, "feet"),
  43294. name: "Wings",
  43295. image: {
  43296. source: "./media/characters/nilghais/wings.svg"
  43297. }
  43298. },
  43299. ass: {
  43300. height: math.unit(6.12, "feet"),
  43301. name: "Ass",
  43302. image: {
  43303. source: "./media/characters/nilghais/ass.svg"
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(9, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43317. {
  43318. regular: {
  43319. height: math.unit(16 + 2/12, "feet"),
  43320. weight: math.unit(2300, "lb"),
  43321. name: "Regular",
  43322. image: {
  43323. source: "./media/characters/zolgar/regular.svg",
  43324. extra: 1246/1004,
  43325. bottom: 124/1370
  43326. }
  43327. },
  43328. boxers: {
  43329. height: math.unit(16 + 2/12, "feet"),
  43330. weight: math.unit(2300, "lb"),
  43331. name: "Boxers",
  43332. image: {
  43333. source: "./media/characters/zolgar/boxers.svg",
  43334. extra: 1246/1004,
  43335. bottom: 124/1370
  43336. }
  43337. },
  43338. armored: {
  43339. height: math.unit(16 + 2/12, "feet"),
  43340. weight: math.unit(2300, "lb"),
  43341. name: "Armored",
  43342. image: {
  43343. source: "./media/characters/zolgar/armored.svg",
  43344. extra: 1246/1004,
  43345. bottom: 124/1370
  43346. }
  43347. },
  43348. goth: {
  43349. height: math.unit(16 + 2/12, "feet"),
  43350. weight: math.unit(2300, "lb"),
  43351. name: "Goth",
  43352. image: {
  43353. source: "./media/characters/zolgar/goth.svg",
  43354. extra: 1246/1004,
  43355. bottom: 124/1370
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Shrunken Down",
  43362. height: math.unit(9 + 2/12, "feet")
  43363. },
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(16 + 2/12, "feet"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(6, "feet"),
  43376. weight: math.unit(168, "lb"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/luca/front.svg",
  43380. extra: 841/667,
  43381. bottom: 102/943
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(6, "feet"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43395. {
  43396. side: {
  43397. height: math.unit(7 + 3/12, "feet"),
  43398. weight: math.unit(312, "lb"),
  43399. name: "Side",
  43400. image: {
  43401. source: "./media/characters/zezo/side.svg",
  43402. extra: 1192/1067,
  43403. bottom: 63/1255
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(7 + 3/12, "feet"),
  43411. default: true
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(5 + 5/12, "feet"),
  43420. weight: math.unit(170, "lb"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/mayso/front.svg",
  43424. extra: 1215/1108,
  43425. bottom: 16/1231
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(5 + 5/12, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(4 + 3/12, "feet"),
  43442. weight: math.unit(80, "lb"),
  43443. name: "Front",
  43444. image: {
  43445. source: "./media/characters/hess/front.svg",
  43446. extra: 1200/1123,
  43447. bottom: 16/1216
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Normal",
  43454. height: math.unit(4 + 3/12, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43461. {
  43462. front: {
  43463. height: math.unit(1.9, "meters"),
  43464. name: "Front",
  43465. image: {
  43466. source: "./media/characters/ashgar/front.svg",
  43467. extra: 1177/1146,
  43468. bottom: 99/1276
  43469. }
  43470. },
  43471. back: {
  43472. height: math.unit(1.9, "meters"),
  43473. name: "Back",
  43474. image: {
  43475. source: "./media/characters/ashgar/back.svg",
  43476. extra: 1201/1183,
  43477. bottom: 53/1254
  43478. }
  43479. },
  43480. feral: {
  43481. height: math.unit(1.4, "meters"),
  43482. name: "Feral",
  43483. image: {
  43484. source: "./media/characters/ashgar/feral.svg",
  43485. extra: 370/345,
  43486. bottom: 45/415
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Normal",
  43493. height: math.unit(1.9, "meters"),
  43494. default: true
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43500. {
  43501. regular: {
  43502. height: math.unit(6, "feet"),
  43503. weight: math.unit(220, "lb"),
  43504. name: "Regular",
  43505. image: {
  43506. source: "./media/characters/phillip/regular.svg",
  43507. extra: 1373/1277,
  43508. bottom: 75/1448
  43509. }
  43510. },
  43511. dressed: {
  43512. height: math.unit(6, "feet"),
  43513. weight: math.unit(220, "lb"),
  43514. name: "Dressed",
  43515. image: {
  43516. source: "./media/characters/phillip/dressed.svg",
  43517. extra: 1373/1277,
  43518. bottom: 75/1448
  43519. }
  43520. },
  43521. paw: {
  43522. height: math.unit(1.44, "feet"),
  43523. name: "Paw",
  43524. image: {
  43525. source: "./media/characters/phillip/paw.svg"
  43526. }
  43527. },
  43528. },
  43529. [
  43530. {
  43531. name: "Normal",
  43532. height: math.unit(6, "feet"),
  43533. default: true
  43534. },
  43535. ]
  43536. ))
  43537. characterMakers.push(() => makeCharacter(
  43538. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43539. {
  43540. side: {
  43541. height: math.unit(42, "feet"),
  43542. name: "Side",
  43543. image: {
  43544. source: "./media/characters/uvula/side.svg",
  43545. extra: 683/586,
  43546. bottom: 60/743
  43547. }
  43548. },
  43549. front: {
  43550. height: math.unit(42, "feet"),
  43551. name: "Front",
  43552. image: {
  43553. source: "./media/characters/uvula/front.svg",
  43554. extra: 705/613,
  43555. bottom: 54/759
  43556. }
  43557. },
  43558. maw: {
  43559. height: math.unit(23.5, "feet"),
  43560. name: "Maw",
  43561. image: {
  43562. source: "./media/characters/uvula/maw.svg"
  43563. }
  43564. },
  43565. },
  43566. [
  43567. {
  43568. name: "Original Size",
  43569. height: math.unit(14, "inches")
  43570. },
  43571. {
  43572. name: "Human Size",
  43573. height: math.unit(6, "feet")
  43574. },
  43575. {
  43576. name: "Big",
  43577. height: math.unit(42, "feet"),
  43578. default: true
  43579. },
  43580. {
  43581. name: "Bigger",
  43582. height: math.unit(100, "feet")
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43588. {
  43589. front: {
  43590. height: math.unit(5 + 11/12, "feet"),
  43591. name: "Front",
  43592. image: {
  43593. source: "./media/characters/lannah/front.svg",
  43594. extra: 1208/1113,
  43595. bottom: 97/1305
  43596. }
  43597. },
  43598. },
  43599. [
  43600. {
  43601. name: "Normal",
  43602. height: math.unit(5 + 11/12, "feet"),
  43603. default: true
  43604. },
  43605. ]
  43606. ))
  43607. characterMakers.push(() => makeCharacter(
  43608. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43609. {
  43610. front: {
  43611. height: math.unit(6 + 3/12, "feet"),
  43612. weight: math.unit(3.5, "tons"),
  43613. name: "Front",
  43614. image: {
  43615. source: "./media/characters/emberflame/front.svg",
  43616. extra: 1198/672,
  43617. bottom: 82/1280
  43618. }
  43619. },
  43620. side: {
  43621. height: math.unit(6 + 3/12, "feet"),
  43622. weight: math.unit(3.5, "tons"),
  43623. name: "Side",
  43624. image: {
  43625. source: "./media/characters/emberflame/side.svg",
  43626. extra: 938/527,
  43627. bottom: 56/994
  43628. }
  43629. },
  43630. },
  43631. [
  43632. {
  43633. name: "Normal",
  43634. height: math.unit(6 + 3/12, "feet"),
  43635. default: true
  43636. },
  43637. ]
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43641. {
  43642. side: {
  43643. height: math.unit(17.5, "feet"),
  43644. weight: math.unit(35, "tons"),
  43645. name: "Side",
  43646. image: {
  43647. source: "./media/characters/sophie-ambrose/side.svg",
  43648. extra: 1573/1242,
  43649. bottom: 71/1644
  43650. }
  43651. },
  43652. maw: {
  43653. height: math.unit(7.4, "feet"),
  43654. name: "Maw",
  43655. image: {
  43656. source: "./media/characters/sophie-ambrose/maw.svg"
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Normal",
  43663. height: math.unit(17.5, "feet"),
  43664. default: true
  43665. },
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43670. {
  43671. front: {
  43672. height: math.unit(280, "feet"),
  43673. weight: math.unit(550, "tons"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/king-mugi/front.svg",
  43677. extra: 1102/947,
  43678. bottom: 104/1206
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "King Mugi",
  43685. height: math.unit(280, "feet"),
  43686. default: true
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43692. {
  43693. front: {
  43694. height: math.unit(64, "meters"),
  43695. name: "Front",
  43696. image: {
  43697. source: "./media/characters/nova-fox/front.svg",
  43698. extra: 1310/1246,
  43699. bottom: 65/1375
  43700. }
  43701. },
  43702. },
  43703. [
  43704. {
  43705. name: "Macro",
  43706. height: math.unit(64, "meters"),
  43707. default: true
  43708. },
  43709. ]
  43710. ))
  43711. characterMakers.push(() => makeCharacter(
  43712. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43713. {
  43714. front: {
  43715. height: math.unit(6 + 3/12, "feet"),
  43716. weight: math.unit(170, "lb"),
  43717. name: "Front",
  43718. image: {
  43719. source: "./media/characters/sam-bat/front.svg",
  43720. extra: 1601/1411,
  43721. bottom: 125/1726
  43722. }
  43723. },
  43724. back: {
  43725. height: math.unit(6 + 3/12, "feet"),
  43726. weight: math.unit(170, "lb"),
  43727. name: "Back",
  43728. image: {
  43729. source: "./media/characters/sam-bat/back.svg",
  43730. extra: 1577/1405,
  43731. bottom: 58/1635
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Normal",
  43738. height: math.unit(6 + 3/12, "feet"),
  43739. default: true
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43745. {
  43746. front: {
  43747. height: math.unit(59, "feet"),
  43748. weight: math.unit(40000, "lb"),
  43749. name: "Front",
  43750. image: {
  43751. source: "./media/characters/inari/front.svg",
  43752. extra: 1884/1350,
  43753. bottom: 95/1979
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Gigantamax",
  43760. height: math.unit(59, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43767. {
  43768. front: {
  43769. height: math.unit(5 + 8/12, "feet"),
  43770. name: "Front",
  43771. image: {
  43772. source: "./media/characters/elizabeth/front.svg",
  43773. extra: 1395/1298,
  43774. bottom: 54/1449
  43775. }
  43776. },
  43777. mouth: {
  43778. height: math.unit(1.97, "feet"),
  43779. name: "Mouth",
  43780. image: {
  43781. source: "./media/characters/elizabeth/mouth.svg"
  43782. }
  43783. },
  43784. foot: {
  43785. height: math.unit(1.17, "feet"),
  43786. name: "Foot",
  43787. image: {
  43788. source: "./media/characters/elizabeth/foot.svg"
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Normal",
  43795. height: math.unit(5 + 8/12, "feet"),
  43796. default: true
  43797. },
  43798. {
  43799. name: "Minimacro",
  43800. height: math.unit(18, "feet")
  43801. },
  43802. {
  43803. name: "Macro",
  43804. height: math.unit(180, "feet")
  43805. },
  43806. ]
  43807. ))
  43808. characterMakers.push(() => makeCharacter(
  43809. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43810. {
  43811. front: {
  43812. height: math.unit(5 + 2/12, "feet"),
  43813. name: "Front",
  43814. image: {
  43815. source: "./media/characters/october-gossamer/front.svg",
  43816. extra: 505/454,
  43817. bottom: 7/512
  43818. }
  43819. },
  43820. back: {
  43821. height: math.unit(5 + 2/12, "feet"),
  43822. name: "Back",
  43823. image: {
  43824. source: "./media/characters/october-gossamer/back.svg",
  43825. extra: 501/454,
  43826. bottom: 11/512
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(5 + 2/12, "feet"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43840. {
  43841. front: {
  43842. height: math.unit(5, "feet"),
  43843. name: "Front",
  43844. image: {
  43845. source: "./media/characters/epiglottis/front.svg",
  43846. extra: 923/849,
  43847. bottom: 17/940
  43848. }
  43849. },
  43850. },
  43851. [
  43852. {
  43853. name: "Original Size",
  43854. height: math.unit(10, "inches")
  43855. },
  43856. {
  43857. name: "Human Size",
  43858. height: math.unit(5, "feet"),
  43859. default: true
  43860. },
  43861. {
  43862. name: "Big",
  43863. height: math.unit(25, "feet")
  43864. },
  43865. {
  43866. name: "Bigger",
  43867. height: math.unit(50, "feet")
  43868. },
  43869. {
  43870. name: "oh lawd",
  43871. height: math.unit(75, "feet")
  43872. },
  43873. ]
  43874. ))
  43875. characterMakers.push(() => makeCharacter(
  43876. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43877. {
  43878. front: {
  43879. height: math.unit(2 + 4/12, "feet"),
  43880. weight: math.unit(60, "lb"),
  43881. name: "Front",
  43882. image: {
  43883. source: "./media/characters/lerm/front.svg",
  43884. extra: 796/790,
  43885. bottom: 79/875
  43886. }
  43887. },
  43888. },
  43889. [
  43890. {
  43891. name: "Normal",
  43892. height: math.unit(2 + 4/12, "feet"),
  43893. default: true
  43894. },
  43895. ]
  43896. ))
  43897. characterMakers.push(() => makeCharacter(
  43898. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43899. {
  43900. front: {
  43901. height: math.unit(5.5, "feet"),
  43902. weight: math.unit(130, "lb"),
  43903. name: "Front",
  43904. image: {
  43905. source: "./media/characters/xena-nebadon/front.svg",
  43906. extra: 1828/1730,
  43907. bottom: 79/1907
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "Tiny Puppy",
  43914. height: math.unit(3, "inches")
  43915. },
  43916. {
  43917. name: "Normal",
  43918. height: math.unit(5.5, "feet"),
  43919. default: true
  43920. },
  43921. {
  43922. name: "Lotta Lady",
  43923. height: math.unit(12, "feet")
  43924. },
  43925. {
  43926. name: "Pretty Big",
  43927. height: math.unit(100, "feet")
  43928. },
  43929. {
  43930. name: "Big",
  43931. height: math.unit(500, "feet")
  43932. },
  43933. {
  43934. name: "Skyscraper Toys",
  43935. height: math.unit(2500, "feet")
  43936. },
  43937. {
  43938. name: "Plane Catcher",
  43939. height: math.unit(8, "miles")
  43940. },
  43941. {
  43942. name: "Planet Toys",
  43943. height: math.unit(15, "earths")
  43944. },
  43945. {
  43946. name: "Stardust",
  43947. height: math.unit(0.25, "galaxies")
  43948. },
  43949. {
  43950. name: "Snacks",
  43951. height: math.unit(70, "universes")
  43952. },
  43953. ]
  43954. ))
  43955. characterMakers.push(() => makeCharacter(
  43956. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43957. {
  43958. front: {
  43959. height: math.unit(1.6, "meters"),
  43960. weight: math.unit(60, "kg"),
  43961. name: "Front",
  43962. image: {
  43963. source: "./media/characters/bounty/front.svg",
  43964. extra: 1426/1308,
  43965. bottom: 15/1441
  43966. }
  43967. },
  43968. back: {
  43969. height: math.unit(1.6, "meters"),
  43970. weight: math.unit(60, "kg"),
  43971. name: "Back",
  43972. image: {
  43973. source: "./media/characters/bounty/back.svg",
  43974. extra: 1417/1307,
  43975. bottom: 8/1425
  43976. }
  43977. },
  43978. },
  43979. [
  43980. {
  43981. name: "Normal",
  43982. height: math.unit(1.6, "meters"),
  43983. default: true
  43984. },
  43985. {
  43986. name: "Macro",
  43987. height: math.unit(300, "meters")
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43993. {
  43994. front: {
  43995. height: math.unit(2 + 8/12, "feet"),
  43996. weight: math.unit(15, "lb"),
  43997. name: "Front",
  43998. image: {
  43999. source: "./media/characters/mochi/front.svg",
  44000. extra: 1022/852,
  44001. bottom: 435/1457
  44002. }
  44003. },
  44004. back: {
  44005. height: math.unit(2 + 8/12, "feet"),
  44006. weight: math.unit(15, "lb"),
  44007. name: "Back",
  44008. image: {
  44009. source: "./media/characters/mochi/back.svg",
  44010. extra: 1335/1119,
  44011. bottom: 39/1374
  44012. }
  44013. },
  44014. bird: {
  44015. height: math.unit(2 + 8/12, "feet"),
  44016. weight: math.unit(15, "lb"),
  44017. name: "Bird",
  44018. image: {
  44019. source: "./media/characters/mochi/bird.svg",
  44020. extra: 1251/1113,
  44021. bottom: 178/1429
  44022. }
  44023. },
  44024. kaiju: {
  44025. height: math.unit(154, "feet"),
  44026. weight: math.unit(1e7, "lb"),
  44027. name: "Kaiju",
  44028. image: {
  44029. source: "./media/characters/mochi/kaiju.svg",
  44030. extra: 460/324,
  44031. bottom: 40/500
  44032. }
  44033. },
  44034. head: {
  44035. height: math.unit(1.21, "feet"),
  44036. name: "Head",
  44037. image: {
  44038. source: "./media/characters/mochi/head.svg"
  44039. }
  44040. },
  44041. alternateTail: {
  44042. height: math.unit(2 + 8/12, "feet"),
  44043. weight: math.unit(45, "lb"),
  44044. name: "Alternate Tail",
  44045. image: {
  44046. source: "./media/characters/mochi/alternate-tail.svg",
  44047. extra: 139/76,
  44048. bottom: 45/184
  44049. }
  44050. },
  44051. },
  44052. [
  44053. {
  44054. name: "Micro",
  44055. height: math.unit(2, "inches")
  44056. },
  44057. {
  44058. name: "Normal",
  44059. height: math.unit(2 + 8/12, "feet"),
  44060. default: true
  44061. },
  44062. {
  44063. name: "Macro",
  44064. height: math.unit(106, "feet")
  44065. },
  44066. ]
  44067. ))
  44068. characterMakers.push(() => makeCharacter(
  44069. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44070. {
  44071. front: {
  44072. height: math.unit(5.67, "feet"),
  44073. weight: math.unit(135, "lb"),
  44074. name: "Front",
  44075. image: {
  44076. source: "./media/characters/sarel/front.svg",
  44077. extra: 865/788,
  44078. bottom: 97/962
  44079. }
  44080. },
  44081. back: {
  44082. height: math.unit(5.67, "feet"),
  44083. weight: math.unit(135, "lb"),
  44084. name: "Back",
  44085. image: {
  44086. source: "./media/characters/sarel/back.svg",
  44087. extra: 857/777,
  44088. bottom: 32/889
  44089. }
  44090. },
  44091. chozoan: {
  44092. height: math.unit(5.67, "feet"),
  44093. weight: math.unit(135, "lb"),
  44094. name: "Chozoan",
  44095. image: {
  44096. source: "./media/characters/sarel/chozoan.svg",
  44097. extra: 865/788,
  44098. bottom: 97/962
  44099. }
  44100. },
  44101. current: {
  44102. height: math.unit(5.67, "feet"),
  44103. weight: math.unit(135, "lb"),
  44104. name: "Current",
  44105. image: {
  44106. source: "./media/characters/sarel/current.svg",
  44107. extra: 865/788,
  44108. bottom: 97/962
  44109. }
  44110. },
  44111. head: {
  44112. height: math.unit(1.77, "feet"),
  44113. name: "Head",
  44114. image: {
  44115. source: "./media/characters/sarel/head.svg"
  44116. }
  44117. },
  44118. claws: {
  44119. height: math.unit(1.8, "feet"),
  44120. name: "Claws",
  44121. image: {
  44122. source: "./media/characters/sarel/claws.svg"
  44123. }
  44124. },
  44125. clawsAlt: {
  44126. height: math.unit(1.8, "feet"),
  44127. name: "Claws-alt",
  44128. image: {
  44129. source: "./media/characters/sarel/claws-alt.svg"
  44130. }
  44131. },
  44132. },
  44133. [
  44134. {
  44135. name: "Normal",
  44136. height: math.unit(5.67, "feet"),
  44137. default: true
  44138. },
  44139. ]
  44140. ))
  44141. characterMakers.push(() => makeCharacter(
  44142. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44143. {
  44144. front: {
  44145. height: math.unit(5500, "feet"),
  44146. name: "Front",
  44147. image: {
  44148. source: "./media/characters/alyonia/front.svg",
  44149. extra: 1200/1135,
  44150. bottom: 29/1229
  44151. }
  44152. },
  44153. back: {
  44154. height: math.unit(5500, "feet"),
  44155. name: "Back",
  44156. image: {
  44157. source: "./media/characters/alyonia/back.svg",
  44158. extra: 1205/1138,
  44159. bottom: 10/1215
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Small",
  44166. height: math.unit(10, "feet")
  44167. },
  44168. {
  44169. name: "Macro",
  44170. height: math.unit(500, "feet")
  44171. },
  44172. {
  44173. name: "Mega Macro",
  44174. height: math.unit(5500, "feet"),
  44175. default: true
  44176. },
  44177. {
  44178. name: "Mega Macro+",
  44179. height: math.unit(500000, "feet")
  44180. },
  44181. {
  44182. name: "Giga Macro",
  44183. height: math.unit(3000, "miles")
  44184. },
  44185. {
  44186. name: "Tera Macro",
  44187. height: math.unit(2.8e6, "miles")
  44188. },
  44189. {
  44190. name: "Galactic",
  44191. height: math.unit(120000, "lightyears")
  44192. },
  44193. ]
  44194. ))
  44195. characterMakers.push(() => makeCharacter(
  44196. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44197. {
  44198. werewolf: {
  44199. height: math.unit(8, "feet"),
  44200. weight: math.unit(425, "lb"),
  44201. name: "Werewolf",
  44202. image: {
  44203. source: "./media/characters/autumn/werewolf.svg",
  44204. extra: 2154/2031,
  44205. bottom: 160/2314
  44206. }
  44207. },
  44208. human: {
  44209. height: math.unit(5 + 8/12, "feet"),
  44210. weight: math.unit(150, "lb"),
  44211. name: "Human",
  44212. image: {
  44213. source: "./media/characters/autumn/human.svg",
  44214. extra: 1200/1149,
  44215. bottom: 30/1230
  44216. }
  44217. },
  44218. },
  44219. [
  44220. {
  44221. name: "Normal",
  44222. height: math.unit(8, "feet"),
  44223. default: true
  44224. },
  44225. ]
  44226. ))
  44227. characterMakers.push(() => makeCharacter(
  44228. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44229. {
  44230. front: {
  44231. height: math.unit(8 + 5/12, "feet"),
  44232. weight: math.unit(825, "lb"),
  44233. name: "Front",
  44234. image: {
  44235. source: "./media/characters/cobalt-charizard/front.svg",
  44236. extra: 1268/1155,
  44237. bottom: 122/1390
  44238. }
  44239. },
  44240. side: {
  44241. height: math.unit(8 + 5/12, "feet"),
  44242. weight: math.unit(825, "lb"),
  44243. name: "Side",
  44244. image: {
  44245. source: "./media/characters/cobalt-charizard/side.svg",
  44246. extra: 1348/1257,
  44247. bottom: 58/1406
  44248. }
  44249. },
  44250. gMax: {
  44251. height: math.unit(134 + 11/12, "feet"),
  44252. name: "G-Max",
  44253. image: {
  44254. source: "./media/characters/cobalt-charizard/g-max.svg",
  44255. extra: 1835/1541,
  44256. bottom: 151/1986
  44257. }
  44258. },
  44259. },
  44260. [
  44261. {
  44262. name: "Normal",
  44263. height: math.unit(8 + 5/12, "feet"),
  44264. default: true
  44265. },
  44266. ]
  44267. ))
  44268. characterMakers.push(() => makeCharacter(
  44269. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44270. {
  44271. front: {
  44272. height: math.unit(6 + 3/12, "feet"),
  44273. weight: math.unit(210, "lb"),
  44274. name: "Front",
  44275. image: {
  44276. source: "./media/characters/stella/front.svg",
  44277. extra: 3549/3335,
  44278. bottom: 51/3600
  44279. }
  44280. },
  44281. },
  44282. [
  44283. {
  44284. name: "Normal",
  44285. height: math.unit(6 + 3/12, "feet"),
  44286. default: true
  44287. },
  44288. ]
  44289. ))
  44290. characterMakers.push(() => makeCharacter(
  44291. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44292. {
  44293. front: {
  44294. height: math.unit(5, "feet"),
  44295. weight: math.unit(90, "lb"),
  44296. name: "Front",
  44297. image: {
  44298. source: "./media/characters/riley-bishop/front.svg",
  44299. extra: 1450/1428,
  44300. bottom: 152/1602
  44301. }
  44302. },
  44303. },
  44304. [
  44305. {
  44306. name: "Normal",
  44307. height: math.unit(5, "feet"),
  44308. default: true
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44314. {
  44315. side: {
  44316. height: math.unit(8 + 2/12, "feet"),
  44317. weight: math.unit(500, "kg"),
  44318. name: "Side",
  44319. image: {
  44320. source: "./media/characters/theo-arcanine/side.svg",
  44321. extra: 1342/1074,
  44322. bottom: 111/1453
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Normal",
  44329. height: math.unit(8 + 2/12, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44336. {
  44337. front: {
  44338. height: math.unit(4, "feet"),
  44339. name: "Front",
  44340. image: {
  44341. source: "./media/characters/kali/front.svg",
  44342. extra: 1921/1357,
  44343. bottom: 70/1991
  44344. }
  44345. },
  44346. },
  44347. [
  44348. {
  44349. name: "Normal",
  44350. height: math.unit(4, "feet"),
  44351. default: true
  44352. },
  44353. {
  44354. name: "Macro",
  44355. height: math.unit(32, "meters")
  44356. },
  44357. {
  44358. name: "Macro+",
  44359. height: math.unit(150, "meters")
  44360. },
  44361. {
  44362. name: "Megamacro",
  44363. height: math.unit(7500, "meters")
  44364. },
  44365. {
  44366. name: "Megamacro+",
  44367. height: math.unit(80, "kilometers")
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44373. {
  44374. side: {
  44375. height: math.unit(5 + 11/12, "feet"),
  44376. weight: math.unit(236, "lb"),
  44377. name: "Side",
  44378. image: {
  44379. source: "./media/characters/gapp/side.svg",
  44380. extra: 775/340,
  44381. bottom: 58/833
  44382. }
  44383. },
  44384. mouth: {
  44385. height: math.unit(2.98, "feet"),
  44386. name: "Mouth",
  44387. image: {
  44388. source: "./media/characters/gapp/mouth.svg"
  44389. }
  44390. },
  44391. },
  44392. [
  44393. {
  44394. name: "Normal",
  44395. height: math.unit(5 + 1/12, "feet"),
  44396. default: true
  44397. },
  44398. ]
  44399. ))
  44400. characterMakers.push(() => makeCharacter(
  44401. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44402. {
  44403. front: {
  44404. height: math.unit(6, "feet"),
  44405. name: "Front",
  44406. image: {
  44407. source: "./media/characters/persephone/front.svg",
  44408. extra: 1895/1717,
  44409. bottom: 96/1991
  44410. }
  44411. },
  44412. back: {
  44413. height: math.unit(6, "feet"),
  44414. name: "Back",
  44415. image: {
  44416. source: "./media/characters/persephone/back.svg",
  44417. extra: 1868/1679,
  44418. bottom: 26/1894
  44419. }
  44420. },
  44421. casual: {
  44422. height: math.unit(6, "feet"),
  44423. name: "Casual",
  44424. image: {
  44425. source: "./media/characters/persephone/casual.svg",
  44426. extra: 1713/1541,
  44427. bottom: 76/1789
  44428. }
  44429. },
  44430. },
  44431. [
  44432. {
  44433. name: "Human Size",
  44434. height: math.unit(6, "feet")
  44435. },
  44436. {
  44437. name: "Big Steppy",
  44438. height: math.unit(600, "meters"),
  44439. default: true
  44440. },
  44441. {
  44442. name: "Galaxy Brain",
  44443. height: math.unit(1, "zettameter")
  44444. },
  44445. ]
  44446. ))
  44447. characterMakers.push(() => makeCharacter(
  44448. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44449. {
  44450. front: {
  44451. height: math.unit(1.85, "meters"),
  44452. name: "Front",
  44453. image: {
  44454. source: "./media/characters/riley-foxthing/front.svg",
  44455. extra: 1495/1354,
  44456. bottom: 122/1617
  44457. }
  44458. },
  44459. frontAlt: {
  44460. height: math.unit(1.85, "meters"),
  44461. name: "Front (Alt)",
  44462. image: {
  44463. source: "./media/characters/riley-foxthing/front-alt.svg",
  44464. extra: 1572/1389,
  44465. bottom: 116/1688
  44466. }
  44467. },
  44468. },
  44469. [
  44470. {
  44471. name: "Normal Sized",
  44472. height: math.unit(1.85, "meters"),
  44473. default: true
  44474. },
  44475. {
  44476. name: "Quite Sizable",
  44477. height: math.unit(5, "meters")
  44478. },
  44479. {
  44480. name: "Rather Large",
  44481. height: math.unit(20, "meters")
  44482. },
  44483. {
  44484. name: "Macro",
  44485. height: math.unit(450, "meters")
  44486. },
  44487. {
  44488. name: "Giga",
  44489. height: math.unit(5, "km")
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44495. {
  44496. front: {
  44497. height: math.unit(6, "feet"),
  44498. weight: math.unit(200, "lb"),
  44499. name: "Front",
  44500. image: {
  44501. source: "./media/characters/blizzard/front.svg",
  44502. extra: 1136/990,
  44503. bottom: 136/1272
  44504. }
  44505. },
  44506. back: {
  44507. height: math.unit(6, "feet"),
  44508. weight: math.unit(200, "lb"),
  44509. name: "Back",
  44510. image: {
  44511. source: "./media/characters/blizzard/back.svg",
  44512. extra: 1175/1034,
  44513. bottom: 97/1272
  44514. }
  44515. },
  44516. sitting: {
  44517. height: math.unit(3.725, "feet"),
  44518. weight: math.unit(200, "lb"),
  44519. name: "Sitting",
  44520. image: {
  44521. source: "./media/characters/blizzard/sitting.svg",
  44522. extra: 581/485,
  44523. bottom: 90/671
  44524. }
  44525. },
  44526. frontWizard: {
  44527. height: math.unit(7.9, "feet"),
  44528. weight: math.unit(200, "lb"),
  44529. name: "Front (Wizard)",
  44530. image: {
  44531. source: "./media/characters/blizzard/front-wizard.svg"
  44532. }
  44533. },
  44534. backWizard: {
  44535. height: math.unit(7.9, "feet"),
  44536. weight: math.unit(200, "lb"),
  44537. name: "Back (Wizard)",
  44538. image: {
  44539. source: "./media/characters/blizzard/back-wizard.svg"
  44540. }
  44541. },
  44542. frontNsfw: {
  44543. height: math.unit(6, "feet"),
  44544. weight: math.unit(200, "lb"),
  44545. name: "Front (NSFW)",
  44546. image: {
  44547. source: "./media/characters/blizzard/front-nsfw.svg",
  44548. extra: 1136/990,
  44549. bottom: 136/1272
  44550. }
  44551. },
  44552. backNsfw: {
  44553. height: math.unit(6, "feet"),
  44554. weight: math.unit(200, "lb"),
  44555. name: "Back (NSFW)",
  44556. image: {
  44557. source: "./media/characters/blizzard/back-nsfw.svg",
  44558. extra: 1175/1034,
  44559. bottom: 97/1272
  44560. }
  44561. },
  44562. sittingNsfw: {
  44563. height: math.unit(3.725, "feet"),
  44564. weight: math.unit(200, "lb"),
  44565. name: "Sitting (NSFW)",
  44566. image: {
  44567. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44568. extra: 581/485,
  44569. bottom: 90/671
  44570. }
  44571. },
  44572. wizardFrontNsfw: {
  44573. height: math.unit(7.9, "feet"),
  44574. weight: math.unit(200, "lb"),
  44575. name: "Wizard (Front, NSFW)",
  44576. image: {
  44577. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44578. }
  44579. },
  44580. },
  44581. [
  44582. {
  44583. name: "Normal",
  44584. height: math.unit(6, "feet"),
  44585. default: true
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(5 + 2/12, "feet"),
  44594. name: "Front",
  44595. image: {
  44596. source: "./media/characters/lumi/front.svg",
  44597. extra: 1328/1268,
  44598. bottom: 103/1431
  44599. }
  44600. },
  44601. back: {
  44602. height: math.unit(5 + 2/12, "feet"),
  44603. name: "Back",
  44604. image: {
  44605. source: "./media/characters/lumi/back.svg",
  44606. extra: 1381/1327,
  44607. bottom: 43/1424
  44608. }
  44609. },
  44610. },
  44611. [
  44612. {
  44613. name: "Normal",
  44614. height: math.unit(5 + 2/12, "feet"),
  44615. default: true
  44616. },
  44617. ]
  44618. ))
  44619. characterMakers.push(() => makeCharacter(
  44620. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44621. {
  44622. front: {
  44623. height: math.unit(5 + 9/12, "feet"),
  44624. name: "Front",
  44625. image: {
  44626. source: "./media/characters/aliya-cotton/front.svg",
  44627. extra: 577/564,
  44628. bottom: 29/606
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(5 + 9/12, "feet"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(2.7, "meters"),
  44645. weight: math.unit(25000, "lb"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/noah-luxray/front.svg",
  44649. extra: 1644/825,
  44650. bottom: 339/1983
  44651. }
  44652. },
  44653. side: {
  44654. height: math.unit(2.97, "meters"),
  44655. weight: math.unit(25000, "lb"),
  44656. name: "Side",
  44657. image: {
  44658. source: "./media/characters/noah-luxray/side.svg",
  44659. extra: 1319/650,
  44660. bottom: 163/1482
  44661. }
  44662. },
  44663. dick: {
  44664. height: math.unit(7.4, "feet"),
  44665. weight: math.unit(2500, "lb"),
  44666. name: "Dick",
  44667. image: {
  44668. source: "./media/characters/noah-luxray/dick.svg"
  44669. }
  44670. },
  44671. dickAlt: {
  44672. height: math.unit(10.83, "feet"),
  44673. weight: math.unit(2500, "lb"),
  44674. name: "Dick-alt",
  44675. image: {
  44676. source: "./media/characters/noah-luxray/dick-alt.svg"
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "BIG",
  44683. height: math.unit(2.7, "meters"),
  44684. default: true
  44685. },
  44686. ]
  44687. ))
  44688. characterMakers.push(() => makeCharacter(
  44689. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44690. {
  44691. standing: {
  44692. height: math.unit(183, "cm"),
  44693. weight: math.unit(68, "kg"),
  44694. name: "Standing",
  44695. image: {
  44696. source: "./media/characters/arion/standing.svg",
  44697. extra: 1869/1807,
  44698. bottom: 93/1962
  44699. }
  44700. },
  44701. reclining: {
  44702. height: math.unit(70.5, "cm"),
  44703. weight: math.unit(68, "lb"),
  44704. name: "Reclining",
  44705. image: {
  44706. source: "./media/characters/arion/reclining.svg",
  44707. extra: 937/870,
  44708. bottom: 63/1000
  44709. }
  44710. },
  44711. },
  44712. [
  44713. {
  44714. name: "Colossus Size, Low",
  44715. height: math.unit(33, "meters"),
  44716. default: true
  44717. },
  44718. {
  44719. name: "Colossus Size, Mid",
  44720. height: math.unit(52, "meters")
  44721. },
  44722. {
  44723. name: "Colossus Size, High",
  44724. height: math.unit(60, "meters")
  44725. },
  44726. {
  44727. name: "Titan Size, Low",
  44728. height: math.unit(91, "meters"),
  44729. },
  44730. {
  44731. name: "Titan Size, Mid",
  44732. height: math.unit(122, "meters")
  44733. },
  44734. {
  44735. name: "Titan Size, High",
  44736. height: math.unit(162, "meters")
  44737. },
  44738. ]
  44739. ))
  44740. characterMakers.push(() => makeCharacter(
  44741. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44742. {
  44743. front: {
  44744. height: math.unit(53, "meters"),
  44745. name: "Front",
  44746. image: {
  44747. source: "./media/characters/stellar-marbey/front.svg",
  44748. extra: 1913/1805,
  44749. bottom: 92/2005
  44750. }
  44751. },
  44752. back: {
  44753. height: math.unit(53, "meters"),
  44754. name: "Back",
  44755. image: {
  44756. source: "./media/characters/stellar-marbey/back.svg",
  44757. extra: 1960/1851,
  44758. bottom: 28/1988
  44759. }
  44760. },
  44761. mouth: {
  44762. height: math.unit(3.5, "meters"),
  44763. name: "Mouth",
  44764. image: {
  44765. source: "./media/characters/stellar-marbey/mouth.svg"
  44766. }
  44767. },
  44768. },
  44769. [
  44770. {
  44771. name: "Macro",
  44772. height: math.unit(53, "meters"),
  44773. default: true
  44774. },
  44775. ]
  44776. ))
  44777. characterMakers.push(() => makeCharacter(
  44778. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44779. {
  44780. front: {
  44781. height: math.unit(8 + 1/12, "feet"),
  44782. weight: math.unit(233, "lb"),
  44783. name: "Front",
  44784. image: {
  44785. source: "./media/characters/matsu/front.svg",
  44786. extra: 832/772,
  44787. bottom: 40/872
  44788. }
  44789. },
  44790. back: {
  44791. height: math.unit(8 + 1/12, "feet"),
  44792. weight: math.unit(233, "lb"),
  44793. name: "Back",
  44794. image: {
  44795. source: "./media/characters/matsu/back.svg",
  44796. extra: 839/780,
  44797. bottom: 47/886
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(8 + 1/12, "feet"),
  44805. default: true
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44811. {
  44812. front: {
  44813. height: math.unit(4, "feet"),
  44814. weight: math.unit(148, "lb"),
  44815. name: "Front",
  44816. image: {
  44817. source: "./media/characters/thiz/front.svg",
  44818. extra: 1913/1748,
  44819. bottom: 62/1975
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Normal",
  44826. height: math.unit(4, "feet"),
  44827. default: true
  44828. },
  44829. ]
  44830. ))
  44831. characterMakers.push(() => makeCharacter(
  44832. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44833. {
  44834. front: {
  44835. height: math.unit(7 + 6/12, "feet"),
  44836. weight: math.unit(267, "lb"),
  44837. name: "Front",
  44838. image: {
  44839. source: "./media/characters/marcel/front.svg",
  44840. extra: 1221/1096,
  44841. bottom: 76/1297
  44842. }
  44843. },
  44844. },
  44845. [
  44846. {
  44847. name: "Normal",
  44848. height: math.unit(7 + 6/12, "feet"),
  44849. default: true
  44850. },
  44851. ]
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44855. {
  44856. side: {
  44857. height: math.unit(42, "meters"),
  44858. name: "Side",
  44859. image: {
  44860. source: "./media/characters/flake/side.svg",
  44861. extra: 1525/1306,
  44862. bottom: 209/1734
  44863. }
  44864. },
  44865. },
  44866. [
  44867. {
  44868. name: "Normal",
  44869. height: math.unit(42, "meters"),
  44870. default: true
  44871. },
  44872. ]
  44873. ))
  44874. characterMakers.push(() => makeCharacter(
  44875. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44876. {
  44877. dressed: {
  44878. height: math.unit(6 + 4/12, "feet"),
  44879. weight: math.unit(520, "lb"),
  44880. name: "Dressed",
  44881. image: {
  44882. source: "./media/characters/someonne/dressed.svg",
  44883. extra: 1020/1010,
  44884. bottom: 178/1198
  44885. }
  44886. },
  44887. undressed: {
  44888. height: math.unit(6 + 4/12, "feet"),
  44889. weight: math.unit(520, "lb"),
  44890. name: "Undressed",
  44891. image: {
  44892. source: "./media/characters/someonne/undressed.svg",
  44893. extra: 1019/1014,
  44894. bottom: 169/1188
  44895. }
  44896. },
  44897. },
  44898. [
  44899. {
  44900. name: "Normal",
  44901. height: math.unit(6 + 4/12, "feet"),
  44902. default: true
  44903. },
  44904. ]
  44905. ))
  44906. characterMakers.push(() => makeCharacter(
  44907. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44908. {
  44909. front: {
  44910. height: math.unit(3, "feet"),
  44911. weight: math.unit(30, "lb"),
  44912. name: "Front",
  44913. image: {
  44914. source: "./media/characters/till/front.svg",
  44915. extra: 892/823,
  44916. bottom: 55/947
  44917. }
  44918. },
  44919. },
  44920. [
  44921. {
  44922. name: "Normal",
  44923. height: math.unit(3, "feet"),
  44924. default: true
  44925. },
  44926. ]
  44927. ))
  44928. characterMakers.push(() => makeCharacter(
  44929. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44930. {
  44931. front: {
  44932. height: math.unit(9 + 8/12, "feet"),
  44933. weight: math.unit(800, "lb"),
  44934. name: "Front",
  44935. image: {
  44936. source: "./media/characters/sydney-heki/front.svg",
  44937. extra: 1360/1300,
  44938. bottom: 22/1382
  44939. }
  44940. },
  44941. back: {
  44942. height: math.unit(9 + 8/12, "feet"),
  44943. weight: math.unit(800, "lb"),
  44944. name: "Back",
  44945. image: {
  44946. source: "./media/characters/sydney-heki/back.svg",
  44947. extra: 1356/1293,
  44948. bottom: 12/1368
  44949. }
  44950. },
  44951. frontDressed: {
  44952. height: math.unit(9 + 8/12, "feet"),
  44953. weight: math.unit(800, "lb"),
  44954. name: "Front-dressed",
  44955. image: {
  44956. source: "./media/characters/sydney-heki/front-dressed.svg",
  44957. extra: 1360/1300,
  44958. bottom: 22/1382
  44959. }
  44960. },
  44961. },
  44962. [
  44963. {
  44964. name: "Normal",
  44965. height: math.unit(9 + 8/12, "feet"),
  44966. default: true
  44967. },
  44968. {
  44969. name: "Macro",
  44970. height: math.unit(500, "feet")
  44971. },
  44972. {
  44973. name: "Megamacro",
  44974. height: math.unit(3.6, "miles")
  44975. },
  44976. ]
  44977. ))
  44978. characterMakers.push(() => makeCharacter(
  44979. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44980. {
  44981. front: {
  44982. height: math.unit(200, "cm"),
  44983. weight: math.unit(250, "lb"),
  44984. name: "Front",
  44985. image: {
  44986. source: "./media/characters/fowler-karlsson/front.svg",
  44987. extra: 897/845,
  44988. bottom: 123/1020
  44989. }
  44990. },
  44991. back: {
  44992. height: math.unit(200, "cm"),
  44993. weight: math.unit(250, "lb"),
  44994. name: "Back",
  44995. image: {
  44996. source: "./media/characters/fowler-karlsson/back.svg",
  44997. extra: 999/944,
  44998. bottom: 26/1025
  44999. }
  45000. },
  45001. dick: {
  45002. height: math.unit(1.92, "feet"),
  45003. weight: math.unit(150, "lb"),
  45004. name: "Dick",
  45005. image: {
  45006. source: "./media/characters/fowler-karlsson/dick.svg"
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(200, "cm"),
  45014. default: true
  45015. },
  45016. {
  45017. name: "Smaller Macro",
  45018. height: math.unit(90, "m")
  45019. },
  45020. {
  45021. name: "Macro",
  45022. height: math.unit(150, "m")
  45023. },
  45024. {
  45025. name: "Bigger Macro",
  45026. height: math.unit(300, "m")
  45027. },
  45028. ]
  45029. ))
  45030. characterMakers.push(() => makeCharacter(
  45031. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45032. {
  45033. side: {
  45034. height: math.unit(8 + 2/12, "feet"),
  45035. weight: math.unit(1, "tonne"),
  45036. name: "Side",
  45037. image: {
  45038. source: "./media/characters/rylide/side.svg",
  45039. extra: 1318/1034,
  45040. bottom: 106/1424
  45041. }
  45042. },
  45043. sitting: {
  45044. height: math.unit(303, "cm"),
  45045. weight: math.unit(1, "tonne"),
  45046. name: "Sitting",
  45047. image: {
  45048. source: "./media/characters/rylide/sitting.svg",
  45049. extra: 1303/1103,
  45050. bottom: 36/1339
  45051. }
  45052. },
  45053. },
  45054. [
  45055. {
  45056. name: "Normal",
  45057. height: math.unit(8 + 2/12, "feet"),
  45058. default: true
  45059. },
  45060. ]
  45061. ))
  45062. characterMakers.push(() => makeCharacter(
  45063. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45064. {
  45065. front: {
  45066. height: math.unit(5 + 10/12, "feet"),
  45067. weight: math.unit(160, "lb"),
  45068. name: "Front",
  45069. image: {
  45070. source: "./media/characters/pudask/front.svg",
  45071. extra: 1616/1590,
  45072. bottom: 161/1777
  45073. }
  45074. },
  45075. },
  45076. [
  45077. {
  45078. name: "Ferret Height",
  45079. height: math.unit(2 + 5/12, "feet")
  45080. },
  45081. {
  45082. name: "Canon Height",
  45083. height: math.unit(5 + 10/12, "feet"),
  45084. default: true
  45085. },
  45086. ]
  45087. ))
  45088. characterMakers.push(() => makeCharacter(
  45089. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45090. {
  45091. front: {
  45092. height: math.unit(3 + 6/12, "feet"),
  45093. weight: math.unit(60, "lb"),
  45094. name: "Front",
  45095. image: {
  45096. source: "./media/characters/ramita/front.svg",
  45097. extra: 1402/1232,
  45098. bottom: 62/1464
  45099. }
  45100. },
  45101. dressed: {
  45102. height: math.unit(3 + 6/12, "feet"),
  45103. weight: math.unit(60, "lb"),
  45104. name: "Dressed",
  45105. image: {
  45106. source: "./media/characters/ramita/dressed.svg",
  45107. extra: 1534/1249,
  45108. bottom: 50/1584
  45109. }
  45110. },
  45111. },
  45112. [
  45113. {
  45114. name: "Normal",
  45115. height: math.unit(3 + 6/12, "feet"),
  45116. default: true
  45117. },
  45118. ]
  45119. ))
  45120. characterMakers.push(() => makeCharacter(
  45121. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45122. {
  45123. front: {
  45124. height: math.unit(8, "feet"),
  45125. name: "Front",
  45126. image: {
  45127. source: "./media/characters/ark/front.svg",
  45128. extra: 772/693,
  45129. bottom: 45/817
  45130. }
  45131. },
  45132. },
  45133. [
  45134. {
  45135. name: "Normal",
  45136. height: math.unit(8, "feet"),
  45137. default: true
  45138. },
  45139. ]
  45140. ))
  45141. characterMakers.push(() => makeCharacter(
  45142. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45143. {
  45144. front: {
  45145. height: math.unit(6, "feet"),
  45146. weight: math.unit(250, "lb"),
  45147. volume: math.unit(5/8, "gallons"),
  45148. name: "Front",
  45149. image: {
  45150. source: "./media/characters/ludwig-horn/front.svg",
  45151. extra: 1782/1635,
  45152. bottom: 96/1878
  45153. }
  45154. },
  45155. back: {
  45156. height: math.unit(6, "feet"),
  45157. weight: math.unit(250, "lb"),
  45158. volume: math.unit(5/8, "gallons"),
  45159. name: "Back",
  45160. image: {
  45161. source: "./media/characters/ludwig-horn/back.svg",
  45162. extra: 1874/1729,
  45163. bottom: 27/1901
  45164. }
  45165. },
  45166. dick: {
  45167. height: math.unit(1.05, "feet"),
  45168. weight: math.unit(15, "lb"),
  45169. volume: math.unit(5/8, "gallons"),
  45170. name: "Dick",
  45171. image: {
  45172. source: "./media/characters/ludwig-horn/dick.svg"
  45173. }
  45174. },
  45175. },
  45176. [
  45177. {
  45178. name: "Small",
  45179. height: math.unit(6, "feet")
  45180. },
  45181. {
  45182. name: "Typical",
  45183. height: math.unit(12, "feet"),
  45184. default: true
  45185. },
  45186. {
  45187. name: "Building",
  45188. height: math.unit(80, "feet")
  45189. },
  45190. {
  45191. name: "Town",
  45192. height: math.unit(800, "feet")
  45193. },
  45194. {
  45195. name: "Kingdom",
  45196. height: math.unit(80000, "feet")
  45197. },
  45198. {
  45199. name: "Planet",
  45200. height: math.unit(8000000, "feet")
  45201. },
  45202. {
  45203. name: "Universe",
  45204. height: math.unit(8000000000, "feet")
  45205. },
  45206. {
  45207. name: "Transcended",
  45208. height: math.unit(8e27, "feet")
  45209. },
  45210. ]
  45211. ))
  45212. characterMakers.push(() => makeCharacter(
  45213. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45214. {
  45215. front: {
  45216. height: math.unit(5, "feet"),
  45217. weight: math.unit(50, "kg"),
  45218. name: "Front",
  45219. image: {
  45220. source: "./media/characters/biot-avery/front.svg",
  45221. extra: 1295/1232,
  45222. bottom: 86/1381
  45223. }
  45224. },
  45225. },
  45226. [
  45227. {
  45228. name: "Normal",
  45229. height: math.unit(5, "feet"),
  45230. default: true
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45236. {
  45237. front: {
  45238. height: math.unit(6, "feet"),
  45239. name: "Front",
  45240. image: {
  45241. source: "./media/characters/kitsune-kiro/front.svg",
  45242. extra: 1270/1158,
  45243. bottom: 42/1312
  45244. }
  45245. },
  45246. frontAlt: {
  45247. height: math.unit(6, "feet"),
  45248. name: "Front-alt",
  45249. image: {
  45250. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45251. extra: 1130/1081,
  45252. bottom: 36/1166
  45253. }
  45254. },
  45255. },
  45256. [
  45257. {
  45258. name: "Smol",
  45259. height: math.unit(3, "feet")
  45260. },
  45261. {
  45262. name: "Normal",
  45263. height: math.unit(6, "feet"),
  45264. default: true
  45265. },
  45266. ]
  45267. ))
  45268. characterMakers.push(() => makeCharacter(
  45269. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45270. {
  45271. front: {
  45272. height: math.unit(6, "feet"),
  45273. weight: math.unit(125, "lb"),
  45274. name: "Front",
  45275. image: {
  45276. source: "./media/characters/jack-thatcher/front.svg",
  45277. extra: 1474/1370,
  45278. bottom: 26/1500
  45279. }
  45280. },
  45281. back: {
  45282. height: math.unit(6, "feet"),
  45283. weight: math.unit(125, "lb"),
  45284. name: "Back",
  45285. image: {
  45286. source: "./media/characters/jack-thatcher/back.svg",
  45287. extra: 1489/1384,
  45288. bottom: 18/1507
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(6, "feet"),
  45296. default: true
  45297. },
  45298. {
  45299. name: "Macro",
  45300. height: math.unit(75, "feet")
  45301. },
  45302. {
  45303. name: "Macro-er",
  45304. height: math.unit(250, "feet")
  45305. },
  45306. ]
  45307. ))
  45308. characterMakers.push(() => makeCharacter(
  45309. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45310. {
  45311. front: {
  45312. height: math.unit(7, "feet"),
  45313. weight: math.unit(110, "kg"),
  45314. name: "Front",
  45315. image: {
  45316. source: "./media/characters/max-hyper/front.svg",
  45317. extra: 1969/1881,
  45318. bottom: 49/2018
  45319. }
  45320. },
  45321. },
  45322. [
  45323. {
  45324. name: "Normal",
  45325. height: math.unit(7, "feet"),
  45326. default: true
  45327. },
  45328. ]
  45329. ))
  45330. characterMakers.push(() => makeCharacter(
  45331. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45332. {
  45333. front: {
  45334. height: math.unit(5 + 5/12, "feet"),
  45335. weight: math.unit(160, "lb"),
  45336. name: "Front",
  45337. image: {
  45338. source: "./media/characters/spook/front.svg",
  45339. extra: 794/791,
  45340. bottom: 54/848
  45341. }
  45342. },
  45343. back: {
  45344. height: math.unit(5 + 5/12, "feet"),
  45345. weight: math.unit(160, "lb"),
  45346. name: "Back",
  45347. image: {
  45348. source: "./media/characters/spook/back.svg",
  45349. extra: 812/798,
  45350. bottom: 32/844
  45351. }
  45352. },
  45353. },
  45354. [
  45355. {
  45356. name: "Normal",
  45357. height: math.unit(5 + 5/12, "feet"),
  45358. default: true
  45359. },
  45360. ]
  45361. ))
  45362. characterMakers.push(() => makeCharacter(
  45363. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45364. {
  45365. front: {
  45366. height: math.unit(18, "feet"),
  45367. name: "Front",
  45368. image: {
  45369. source: "./media/characters/xeaduulix/front.svg",
  45370. extra: 1380/1166,
  45371. bottom: 110/1490
  45372. }
  45373. },
  45374. back: {
  45375. height: math.unit(18, "feet"),
  45376. name: "Back",
  45377. image: {
  45378. source: "./media/characters/xeaduulix/back.svg",
  45379. extra: 1592/1170,
  45380. bottom: 128/1720
  45381. }
  45382. },
  45383. frontNsfw: {
  45384. height: math.unit(18, "feet"),
  45385. name: "Front (NSFW)",
  45386. image: {
  45387. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45388. extra: 1380/1166,
  45389. bottom: 110/1490
  45390. }
  45391. },
  45392. backNsfw: {
  45393. height: math.unit(18, "feet"),
  45394. name: "Back (NSFW)",
  45395. image: {
  45396. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45397. extra: 1592/1170,
  45398. bottom: 128/1720
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "Normal",
  45405. height: math.unit(18, "feet"),
  45406. default: true
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45412. {
  45413. spreadWings: {
  45414. height: math.unit(20, "feet"),
  45415. name: "Spread Wings",
  45416. image: {
  45417. source: "./media/characters/fledge/spread-wings.svg",
  45418. extra: 693/635,
  45419. bottom: 26/719
  45420. }
  45421. },
  45422. front: {
  45423. height: math.unit(20, "feet"),
  45424. name: "Front",
  45425. image: {
  45426. source: "./media/characters/fledge/front.svg",
  45427. extra: 684/637,
  45428. bottom: 18/702
  45429. }
  45430. },
  45431. frontAlt: {
  45432. height: math.unit(20, "feet"),
  45433. name: "Front (Alt)",
  45434. image: {
  45435. source: "./media/characters/fledge/front-alt.svg",
  45436. extra: 708/664,
  45437. bottom: 13/721
  45438. }
  45439. },
  45440. back: {
  45441. height: math.unit(20, "feet"),
  45442. name: "Back",
  45443. image: {
  45444. source: "./media/characters/fledge/back.svg",
  45445. extra: 718/634,
  45446. bottom: 22/740
  45447. }
  45448. },
  45449. head: {
  45450. height: math.unit(5.55, "feet"),
  45451. name: "Head",
  45452. image: {
  45453. source: "./media/characters/fledge/head.svg"
  45454. }
  45455. },
  45456. headAlt: {
  45457. height: math.unit(5.1, "feet"),
  45458. name: "Head (Alt)",
  45459. image: {
  45460. source: "./media/characters/fledge/head-alt.svg"
  45461. }
  45462. },
  45463. },
  45464. [
  45465. {
  45466. name: "Small",
  45467. height: math.unit(6 + 2/12, "feet")
  45468. },
  45469. {
  45470. name: "Big",
  45471. height: math.unit(20, "feet"),
  45472. default: true
  45473. },
  45474. {
  45475. name: "Giant",
  45476. height: math.unit(100, "feet")
  45477. },
  45478. {
  45479. name: "Macro",
  45480. height: math.unit(200, "feet")
  45481. },
  45482. ]
  45483. ))
  45484. characterMakers.push(() => makeCharacter(
  45485. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45486. {
  45487. front: {
  45488. height: math.unit(1, "meter"),
  45489. name: "Front",
  45490. image: {
  45491. source: "./media/characters/atlas-morenai/front.svg",
  45492. extra: 1275/1043,
  45493. bottom: 19/1294
  45494. }
  45495. },
  45496. back: {
  45497. height: math.unit(1, "meter"),
  45498. name: "Back",
  45499. image: {
  45500. source: "./media/characters/atlas-morenai/back.svg",
  45501. extra: 1141/1001,
  45502. bottom: 25/1166
  45503. }
  45504. },
  45505. },
  45506. [
  45507. {
  45508. name: "Normal",
  45509. height: math.unit(1, "meter"),
  45510. default: true
  45511. },
  45512. {
  45513. name: "Magic-Infused",
  45514. height: math.unit(5, "meters")
  45515. },
  45516. ]
  45517. ))
  45518. characterMakers.push(() => makeCharacter(
  45519. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45520. {
  45521. front: {
  45522. height: math.unit(5, "meters"),
  45523. name: "Front",
  45524. image: {
  45525. source: "./media/characters/cintia/front.svg",
  45526. extra: 1312/1228,
  45527. bottom: 38/1350
  45528. }
  45529. },
  45530. back: {
  45531. height: math.unit(5, "meters"),
  45532. name: "Back",
  45533. image: {
  45534. source: "./media/characters/cintia/back.svg",
  45535. extra: 1260/1166,
  45536. bottom: 98/1358
  45537. }
  45538. },
  45539. frontDick: {
  45540. height: math.unit(5, "meters"),
  45541. name: "Front (Dick)",
  45542. image: {
  45543. source: "./media/characters/cintia/front-dick.svg",
  45544. extra: 1312/1228,
  45545. bottom: 38/1350
  45546. }
  45547. },
  45548. backDick: {
  45549. height: math.unit(5, "meters"),
  45550. name: "Back (Dick)",
  45551. image: {
  45552. source: "./media/characters/cintia/back-dick.svg",
  45553. extra: 1260/1166,
  45554. bottom: 98/1358
  45555. }
  45556. },
  45557. bust: {
  45558. height: math.unit(1.97, "meters"),
  45559. name: "Bust",
  45560. image: {
  45561. source: "./media/characters/cintia/bust.svg",
  45562. extra: 617/565,
  45563. bottom: 0/617
  45564. }
  45565. },
  45566. },
  45567. [
  45568. {
  45569. name: "Normal",
  45570. height: math.unit(5, "meters"),
  45571. default: true
  45572. },
  45573. ]
  45574. ))
  45575. characterMakers.push(() => makeCharacter(
  45576. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45577. {
  45578. side: {
  45579. height: math.unit(100, "feet"),
  45580. name: "Side",
  45581. image: {
  45582. source: "./media/characters/denora/side.svg",
  45583. extra: 875/803,
  45584. bottom: 9/884
  45585. }
  45586. },
  45587. },
  45588. [
  45589. {
  45590. name: "Standard",
  45591. height: math.unit(100, "feet"),
  45592. default: true
  45593. },
  45594. {
  45595. name: "Grand",
  45596. height: math.unit(1000, "feet")
  45597. },
  45598. {
  45599. name: "Conquering",
  45600. height: math.unit(10000, "feet")
  45601. },
  45602. ]
  45603. ))
  45604. characterMakers.push(() => makeCharacter(
  45605. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45606. {
  45607. dressed: {
  45608. height: math.unit(8 + 5/12, "feet"),
  45609. weight: math.unit(700, "lb"),
  45610. name: "Dressed",
  45611. image: {
  45612. source: "./media/characters/kiva/dressed.svg",
  45613. extra: 1102/1055,
  45614. bottom: 60/1162
  45615. }
  45616. },
  45617. nude: {
  45618. height: math.unit(8 + 5/12, "feet"),
  45619. weight: math.unit(700, "lb"),
  45620. name: "Nude",
  45621. image: {
  45622. source: "./media/characters/kiva/nude.svg",
  45623. extra: 1102/1055,
  45624. bottom: 60/1162
  45625. }
  45626. },
  45627. },
  45628. [
  45629. {
  45630. name: "Base Height",
  45631. height: math.unit(8 + 5/12, "feet"),
  45632. default: true
  45633. },
  45634. {
  45635. name: "Macro",
  45636. height: math.unit(100, "feet")
  45637. },
  45638. {
  45639. name: "Max",
  45640. height: math.unit(3280, "feet")
  45641. },
  45642. ]
  45643. ))
  45644. characterMakers.push(() => makeCharacter(
  45645. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45646. {
  45647. front: {
  45648. height: math.unit(6 + 8/12, "feet"),
  45649. weight: math.unit(250, "lb"),
  45650. name: "Front",
  45651. image: {
  45652. source: "./media/characters/ztragon/front.svg",
  45653. extra: 1825/1684,
  45654. bottom: 98/1923
  45655. }
  45656. },
  45657. },
  45658. [
  45659. {
  45660. name: "Normal",
  45661. height: math.unit(6 + 8/12, "feet"),
  45662. default: true
  45663. },
  45664. {
  45665. name: "Macro",
  45666. height: math.unit(80, "feet")
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45672. {
  45673. front: {
  45674. height: math.unit(10.4, "feet"),
  45675. weight: math.unit(2, "tons"),
  45676. name: "Front",
  45677. image: {
  45678. source: "./media/characters/yesenia/front.svg",
  45679. extra: 1479/1474,
  45680. bottom: 233/1712
  45681. }
  45682. },
  45683. },
  45684. [
  45685. {
  45686. name: "Normal",
  45687. height: math.unit(10.4, "feet"),
  45688. default: true
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45694. {
  45695. normal: {
  45696. height: math.unit(6 + 1/12, "feet"),
  45697. weight: math.unit(180, "lb"),
  45698. name: "Normal",
  45699. image: {
  45700. source: "./media/characters/leanne-lycheborne/normal.svg",
  45701. extra: 1748/1660,
  45702. bottom: 98/1846
  45703. }
  45704. },
  45705. were: {
  45706. height: math.unit(12, "feet"),
  45707. weight: math.unit(1600, "lb"),
  45708. name: "Were",
  45709. image: {
  45710. source: "./media/characters/leanne-lycheborne/were.svg",
  45711. extra: 1485/1432,
  45712. bottom: 66/1551
  45713. }
  45714. },
  45715. },
  45716. [
  45717. {
  45718. name: "Normal",
  45719. height: math.unit(6 + 1/12, "feet"),
  45720. default: true
  45721. },
  45722. ]
  45723. ))
  45724. characterMakers.push(() => makeCharacter(
  45725. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45726. {
  45727. side: {
  45728. height: math.unit(13, "feet"),
  45729. name: "Side",
  45730. image: {
  45731. source: "./media/characters/kira-tyler/side.svg",
  45732. extra: 693/393,
  45733. bottom: 58/751
  45734. }
  45735. },
  45736. },
  45737. [
  45738. {
  45739. name: "Normal",
  45740. height: math.unit(13, "feet"),
  45741. default: true
  45742. },
  45743. ]
  45744. ))
  45745. characterMakers.push(() => makeCharacter(
  45746. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45747. {
  45748. front: {
  45749. height: math.unit(10.3, "feet"),
  45750. weight: math.unit(150, "lb"),
  45751. name: "Front",
  45752. image: {
  45753. source: "./media/characters/blaze/front.svg",
  45754. extra: 1378/1286,
  45755. bottom: 172/1550
  45756. }
  45757. },
  45758. },
  45759. [
  45760. {
  45761. name: "Normal",
  45762. height: math.unit(10.3, "feet"),
  45763. default: true
  45764. },
  45765. ]
  45766. ))
  45767. characterMakers.push(() => makeCharacter(
  45768. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45769. {
  45770. side: {
  45771. height: math.unit(2, "meters"),
  45772. weight: math.unit(400, "kg"),
  45773. name: "Side",
  45774. image: {
  45775. source: "./media/characters/anu/side.svg",
  45776. extra: 506/394,
  45777. bottom: 18/524
  45778. }
  45779. },
  45780. },
  45781. [
  45782. {
  45783. name: "Humanoid",
  45784. height: math.unit(2, "meters")
  45785. },
  45786. {
  45787. name: "Normal",
  45788. height: math.unit(5, "meters"),
  45789. default: true
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(5 + 5/12, "feet"),
  45798. weight: math.unit(170, "lb"),
  45799. name: "Front",
  45800. image: {
  45801. source: "./media/characters/synx-the-lynx/front.svg",
  45802. extra: 1893/1745,
  45803. bottom: 17/1910
  45804. }
  45805. },
  45806. side: {
  45807. height: math.unit(5 + 5/12, "feet"),
  45808. weight: math.unit(170, "lb"),
  45809. name: "Side",
  45810. image: {
  45811. source: "./media/characters/synx-the-lynx/side.svg",
  45812. extra: 1884/1740,
  45813. bottom: 39/1923
  45814. }
  45815. },
  45816. back: {
  45817. height: math.unit(5 + 5/12, "feet"),
  45818. weight: math.unit(170, "lb"),
  45819. name: "Back",
  45820. image: {
  45821. source: "./media/characters/synx-the-lynx/back.svg",
  45822. extra: 1903/1755,
  45823. bottom: 14/1917
  45824. }
  45825. },
  45826. },
  45827. [
  45828. {
  45829. name: "Normal",
  45830. height: math.unit(5 + 5/12, "feet"),
  45831. default: true
  45832. },
  45833. ]
  45834. ))
  45835. characterMakers.push(() => makeCharacter(
  45836. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45837. {
  45838. back: {
  45839. height: math.unit(15, "feet"),
  45840. name: "Back",
  45841. image: {
  45842. source: "./media/characters/nadezda-fex/back.svg",
  45843. extra: 1695/1481,
  45844. bottom: 25/1720
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Normal",
  45851. height: math.unit(15, "feet"),
  45852. default: true
  45853. },
  45854. {
  45855. name: "Macro",
  45856. height: math.unit(2.5, "miles")
  45857. },
  45858. {
  45859. name: "Goddess",
  45860. height: math.unit(2, "multiverses")
  45861. },
  45862. ]
  45863. ))
  45864. characterMakers.push(() => makeCharacter(
  45865. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45866. {
  45867. front: {
  45868. height: math.unit(216, "cm"),
  45869. name: "Front",
  45870. image: {
  45871. source: "./media/characters/lev/front.svg",
  45872. extra: 1728/1670,
  45873. bottom: 82/1810
  45874. }
  45875. },
  45876. back: {
  45877. height: math.unit(216, "cm"),
  45878. name: "Back",
  45879. image: {
  45880. source: "./media/characters/lev/back.svg",
  45881. extra: 1738/1675,
  45882. bottom: 24/1762
  45883. }
  45884. },
  45885. dressed: {
  45886. height: math.unit(216, "cm"),
  45887. name: "Dressed",
  45888. image: {
  45889. source: "./media/characters/lev/dressed.svg",
  45890. extra: 1397/1351,
  45891. bottom: 73/1470
  45892. }
  45893. },
  45894. head: {
  45895. height: math.unit(0.51, "meter"),
  45896. name: "Head",
  45897. image: {
  45898. source: "./media/characters/lev/head.svg"
  45899. }
  45900. },
  45901. },
  45902. [
  45903. {
  45904. name: "Normal",
  45905. height: math.unit(216, "cm"),
  45906. default: true
  45907. },
  45908. {
  45909. name: "Relatively Macro",
  45910. height: math.unit(80, "meters")
  45911. },
  45912. {
  45913. name: "Megamacro",
  45914. height: math.unit(21600, "meters")
  45915. },
  45916. {
  45917. name: "Megamacro+",
  45918. height: math.unit(64800, "meters")
  45919. },
  45920. ]
  45921. ))
  45922. characterMakers.push(() => makeCharacter(
  45923. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45924. {
  45925. front: {
  45926. height: math.unit(2, "meters"),
  45927. weight: math.unit(80, "kg"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/moka/front.svg",
  45931. extra: 1337/1255,
  45932. bottom: 58/1395
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Micro",
  45939. height: math.unit(15, "cm")
  45940. },
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(2, "meters"),
  45944. default: true
  45945. },
  45946. {
  45947. name: "Macro",
  45948. height: math.unit(20, "meters"),
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45954. {
  45955. front: {
  45956. height: math.unit(9, "feet"),
  45957. weight: math.unit(240, "lb"),
  45958. name: "Front",
  45959. image: {
  45960. source: "./media/characters/kuzco/front.svg",
  45961. extra: 1593/1487,
  45962. bottom: 32/1625
  45963. }
  45964. },
  45965. side: {
  45966. height: math.unit(9, "feet"),
  45967. weight: math.unit(240, "lb"),
  45968. name: "Side",
  45969. image: {
  45970. source: "./media/characters/kuzco/side.svg",
  45971. extra: 1575/1485,
  45972. bottom: 30/1605
  45973. }
  45974. },
  45975. back: {
  45976. height: math.unit(9, "feet"),
  45977. weight: math.unit(240, "lb"),
  45978. name: "Back",
  45979. image: {
  45980. source: "./media/characters/kuzco/back.svg",
  45981. extra: 1603/1514,
  45982. bottom: 14/1617
  45983. }
  45984. },
  45985. },
  45986. [
  45987. {
  45988. name: "Normal",
  45989. height: math.unit(9, "feet"),
  45990. default: true
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45996. {
  45997. side: {
  45998. height: math.unit(2, "meters"),
  45999. weight: math.unit(300, "kg"),
  46000. name: "Side",
  46001. image: {
  46002. source: "./media/characters/ceruleus/side.svg",
  46003. extra: 1068/974,
  46004. bottom: 126/1194
  46005. }
  46006. },
  46007. },
  46008. [
  46009. {
  46010. name: "Normal",
  46011. height: math.unit(16, "meters"),
  46012. default: true
  46013. },
  46014. ]
  46015. ))
  46016. characterMakers.push(() => makeCharacter(
  46017. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46018. {
  46019. front: {
  46020. height: math.unit(9, "feet"),
  46021. weight: math.unit(500, "kg"),
  46022. name: "Front",
  46023. image: {
  46024. source: "./media/characters/acouya/front.svg",
  46025. extra: 1660/1473,
  46026. bottom: 28/1688
  46027. }
  46028. },
  46029. },
  46030. [
  46031. {
  46032. name: "Normal",
  46033. height: math.unit(9, "feet"),
  46034. default: true
  46035. },
  46036. ]
  46037. ))
  46038. characterMakers.push(() => makeCharacter(
  46039. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46040. {
  46041. front: {
  46042. height: math.unit(5 + 6/12, "feet"),
  46043. weight: math.unit(195, "lb"),
  46044. name: "Front",
  46045. image: {
  46046. source: "./media/characters/vant/front.svg",
  46047. extra: 1396/1320,
  46048. bottom: 20/1416
  46049. }
  46050. },
  46051. back: {
  46052. height: math.unit(5 + 6/12, "feet"),
  46053. weight: math.unit(195, "lb"),
  46054. name: "Back",
  46055. image: {
  46056. source: "./media/characters/vant/back.svg",
  46057. extra: 1396/1320,
  46058. bottom: 20/1416
  46059. }
  46060. },
  46061. maw: {
  46062. height: math.unit(0.75, "feet"),
  46063. name: "Maw",
  46064. image: {
  46065. source: "./media/characters/vant/maw.svg"
  46066. }
  46067. },
  46068. paw: {
  46069. height: math.unit(1.07, "feet"),
  46070. name: "Paw",
  46071. image: {
  46072. source: "./media/characters/vant/paw.svg"
  46073. }
  46074. },
  46075. },
  46076. [
  46077. {
  46078. name: "Micro",
  46079. height: math.unit(0.25, "inches")
  46080. },
  46081. {
  46082. name: "Normal",
  46083. height: math.unit(5 + 6/12, "feet"),
  46084. default: true
  46085. },
  46086. {
  46087. name: "Macro",
  46088. height: math.unit(75, "feet")
  46089. },
  46090. ]
  46091. ))
  46092. characterMakers.push(() => makeCharacter(
  46093. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46094. {
  46095. front: {
  46096. height: math.unit(30, "meters"),
  46097. weight: math.unit(363, "tons"),
  46098. name: "Front",
  46099. image: {
  46100. source: "./media/characters/ahra/front.svg",
  46101. extra: 1914/1814,
  46102. bottom: 46/1960
  46103. }
  46104. },
  46105. },
  46106. [
  46107. {
  46108. name: "Macro",
  46109. height: math.unit(30, "meters"),
  46110. default: true
  46111. },
  46112. ]
  46113. ))
  46114. characterMakers.push(() => makeCharacter(
  46115. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46116. {
  46117. undressed: {
  46118. height: math.unit(2, "m"),
  46119. weight: math.unit(250, "kg"),
  46120. name: "Undressed",
  46121. image: {
  46122. source: "./media/characters/coriander/undressed.svg",
  46123. extra: 1757/1606,
  46124. bottom: 107/1864
  46125. }
  46126. },
  46127. dressed: {
  46128. height: math.unit(2, "m"),
  46129. weight: math.unit(250, "kg"),
  46130. name: "Dressed",
  46131. image: {
  46132. source: "./media/characters/coriander/dressed.svg",
  46133. extra: 1757/1606,
  46134. bottom: 107/1864
  46135. }
  46136. },
  46137. },
  46138. [
  46139. {
  46140. name: "Normal",
  46141. height: math.unit(4, "meters"),
  46142. default: true
  46143. },
  46144. {
  46145. name: "XL",
  46146. height: math.unit(6, "meters")
  46147. },
  46148. {
  46149. name: "XXL",
  46150. height: math.unit(8, "meters")
  46151. },
  46152. ]
  46153. ))
  46154. characterMakers.push(() => makeCharacter(
  46155. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46156. {
  46157. front: {
  46158. height: math.unit(6, "feet"),
  46159. name: "Front",
  46160. image: {
  46161. source: "./media/characters/syrinx/front.svg",
  46162. extra: 1557/1259,
  46163. bottom: 171/1728
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(6 + 3/12, "feet"),
  46171. default: true
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46177. {
  46178. front: {
  46179. height: math.unit(11 + 6/12, "feet"),
  46180. weight: math.unit(1.5, "tons"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/bor/front.svg",
  46184. extra: 1189/1109,
  46185. bottom: 170/1359
  46186. }
  46187. },
  46188. },
  46189. [
  46190. {
  46191. name: "Normal",
  46192. height: math.unit(11 + 6/12, "feet"),
  46193. default: true
  46194. },
  46195. {
  46196. name: "Macro",
  46197. height: math.unit(32 + 9/12, "feet")
  46198. },
  46199. ]
  46200. ))
  46201. characterMakers.push(() => makeCharacter(
  46202. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46203. {
  46204. anthro: {
  46205. height: math.unit(9, "feet"),
  46206. weight: math.unit(2076, "lb"),
  46207. name: "Anthro",
  46208. image: {
  46209. source: "./media/characters/abacus/anthro.svg",
  46210. extra: 1540/1494,
  46211. bottom: 233/1773
  46212. }
  46213. },
  46214. pigeon: {
  46215. height: math.unit(1, "feet"),
  46216. name: "Pigeon",
  46217. image: {
  46218. source: "./media/characters/abacus/pigeon.svg",
  46219. extra: 528/525,
  46220. bottom: 46/574
  46221. }
  46222. },
  46223. },
  46224. [
  46225. {
  46226. name: "Normal",
  46227. height: math.unit(9, "feet"),
  46228. default: true
  46229. },
  46230. ]
  46231. ))
  46232. characterMakers.push(() => makeCharacter(
  46233. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46234. {
  46235. side: {
  46236. height: math.unit(6, "feet"),
  46237. name: "Side",
  46238. image: {
  46239. source: "./media/characters/delkhan/side.svg",
  46240. extra: 1884/1786,
  46241. bottom: 308/2192
  46242. }
  46243. },
  46244. head: {
  46245. height: math.unit(3.38, "feet"),
  46246. name: "Head",
  46247. image: {
  46248. source: "./media/characters/delkhan/head.svg"
  46249. }
  46250. },
  46251. },
  46252. [
  46253. {
  46254. name: "Normal",
  46255. height: math.unit(72, "feet"),
  46256. default: true
  46257. },
  46258. {
  46259. name: "Giant",
  46260. height: math.unit(172, "feet")
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46266. {
  46267. standing: {
  46268. height: math.unit(6, "feet"),
  46269. name: "Standing",
  46270. image: {
  46271. source: "./media/characters/euchidat/standing.svg",
  46272. extra: 1612/1553,
  46273. bottom: 116/1728
  46274. }
  46275. },
  46276. leaning: {
  46277. height: math.unit(6, "feet"),
  46278. name: "Leaning",
  46279. image: {
  46280. source: "./media/characters/euchidat/leaning.svg",
  46281. extra: 1719/1674,
  46282. bottom: 27/1746
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(175, "feet"),
  46290. default: true
  46291. },
  46292. {
  46293. name: "Megamacro",
  46294. height: math.unit(190, "miles")
  46295. },
  46296. {
  46297. name: "Gigamacro",
  46298. height: math.unit(190000, "miles")
  46299. },
  46300. ]
  46301. ))
  46302. characterMakers.push(() => makeCharacter(
  46303. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46304. {
  46305. front: {
  46306. height: math.unit(6, "feet"),
  46307. weight: math.unit(150, "lb"),
  46308. name: "Front",
  46309. image: {
  46310. source: "./media/characters/rebecca-stack/front.svg",
  46311. extra: 1256/1201,
  46312. bottom: 18/1274
  46313. }
  46314. },
  46315. },
  46316. [
  46317. {
  46318. name: "Normal",
  46319. height: math.unit(5 + 8/12, "feet"),
  46320. default: true
  46321. },
  46322. {
  46323. name: "Demolitionist",
  46324. height: math.unit(200, "feet")
  46325. },
  46326. {
  46327. name: "Out of Control",
  46328. height: math.unit(2, "miles")
  46329. },
  46330. {
  46331. name: "Giga",
  46332. height: math.unit(7200, "miles")
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46338. {
  46339. front: {
  46340. height: math.unit(6, "feet"),
  46341. weight: math.unit(150, "lb"),
  46342. name: "Front",
  46343. image: {
  46344. source: "./media/characters/jenny-cartwright/front.svg",
  46345. extra: 1384/1376,
  46346. bottom: 58/1442
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Normal",
  46353. height: math.unit(6 + 7/12, "feet"),
  46354. default: true
  46355. },
  46356. {
  46357. name: "Librarian",
  46358. height: math.unit(55, "feet")
  46359. },
  46360. {
  46361. name: "Sightseer",
  46362. height: math.unit(50, "miles")
  46363. },
  46364. {
  46365. name: "Giga",
  46366. height: math.unit(30000, "miles")
  46367. },
  46368. ]
  46369. ))
  46370. characterMakers.push(() => makeCharacter(
  46371. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46372. {
  46373. nude: {
  46374. height: math.unit(8, "feet"),
  46375. weight: math.unit(225, "lb"),
  46376. name: "Nude",
  46377. image: {
  46378. source: "./media/characters/marvy/nude.svg",
  46379. extra: 1900/1683,
  46380. bottom: 89/1989
  46381. }
  46382. },
  46383. dressed: {
  46384. height: math.unit(8, "feet"),
  46385. weight: math.unit(225, "lb"),
  46386. name: "Dressed",
  46387. image: {
  46388. source: "./media/characters/marvy/dressed.svg",
  46389. extra: 1900/1683,
  46390. bottom: 89/1989
  46391. }
  46392. },
  46393. head: {
  46394. height: math.unit(2.85, "feet"),
  46395. name: "Head",
  46396. image: {
  46397. source: "./media/characters/marvy/head.svg"
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal",
  46404. height: math.unit(8, "feet"),
  46405. default: true
  46406. },
  46407. ]
  46408. ))
  46409. characterMakers.push(() => makeCharacter(
  46410. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46411. {
  46412. front: {
  46413. height: math.unit(8, "feet"),
  46414. weight: math.unit(250, "lb"),
  46415. name: "Front",
  46416. image: {
  46417. source: "./media/characters/leah/front.svg",
  46418. extra: 1257/1149,
  46419. bottom: 109/1366
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal",
  46426. height: math.unit(8, "feet"),
  46427. default: true
  46428. },
  46429. {
  46430. name: "Minimacro",
  46431. height: math.unit(40, "feet")
  46432. },
  46433. {
  46434. name: "Macro",
  46435. height: math.unit(124, "feet")
  46436. },
  46437. {
  46438. name: "Megamacro",
  46439. height: math.unit(850, "feet")
  46440. },
  46441. ]
  46442. ))
  46443. characterMakers.push(() => makeCharacter(
  46444. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46445. {
  46446. side: {
  46447. height: math.unit(13 + 6/12, "feet"),
  46448. weight: math.unit(3200, "lb"),
  46449. name: "Side",
  46450. image: {
  46451. source: "./media/characters/alvir/side.svg",
  46452. extra: 896/589,
  46453. bottom: 26/922
  46454. }
  46455. },
  46456. },
  46457. [
  46458. {
  46459. name: "Normal",
  46460. height: math.unit(13 + 6/12, "feet"),
  46461. default: true
  46462. },
  46463. ]
  46464. ))
  46465. characterMakers.push(() => makeCharacter(
  46466. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46467. {
  46468. front: {
  46469. height: math.unit(5 + 4/12, "feet"),
  46470. weight: math.unit(236, "lb"),
  46471. name: "Front",
  46472. image: {
  46473. source: "./media/characters/zaina-khalil/front.svg",
  46474. extra: 1533/1485,
  46475. bottom: 94/1627
  46476. }
  46477. },
  46478. side: {
  46479. height: math.unit(5 + 4/12, "feet"),
  46480. weight: math.unit(236, "lb"),
  46481. name: "Side",
  46482. image: {
  46483. source: "./media/characters/zaina-khalil/side.svg",
  46484. extra: 1537/1498,
  46485. bottom: 66/1603
  46486. }
  46487. },
  46488. back: {
  46489. height: math.unit(5 + 4/12, "feet"),
  46490. weight: math.unit(236, "lb"),
  46491. name: "Back",
  46492. image: {
  46493. source: "./media/characters/zaina-khalil/back.svg",
  46494. extra: 1546/1494,
  46495. bottom: 89/1635
  46496. }
  46497. },
  46498. },
  46499. [
  46500. {
  46501. name: "Normal",
  46502. height: math.unit(5 + 4/12, "feet"),
  46503. default: true
  46504. },
  46505. ]
  46506. ))
  46507. characterMakers.push(() => makeCharacter(
  46508. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46509. {
  46510. side: {
  46511. height: math.unit(12, "feet"),
  46512. weight: math.unit(4000, "lb"),
  46513. name: "Side",
  46514. image: {
  46515. source: "./media/characters/terry/side.svg",
  46516. extra: 1518/1439,
  46517. bottom: 149/1667
  46518. }
  46519. },
  46520. },
  46521. [
  46522. {
  46523. name: "Normal",
  46524. height: math.unit(12, "feet"),
  46525. default: true
  46526. },
  46527. ]
  46528. ))
  46529. characterMakers.push(() => makeCharacter(
  46530. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46531. {
  46532. front: {
  46533. height: math.unit(12, "feet"),
  46534. weight: math.unit(1500, "lb"),
  46535. name: "Front",
  46536. image: {
  46537. source: "./media/characters/kahea/front.svg",
  46538. extra: 1722/1617,
  46539. bottom: 179/1901
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Normal",
  46546. height: math.unit(12, "feet"),
  46547. default: true
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46553. {
  46554. demonFront: {
  46555. height: math.unit(36, "feet"),
  46556. name: "Front",
  46557. image: {
  46558. source: "./media/characters/alex-xuria/demon-front.svg",
  46559. extra: 1705/1673,
  46560. bottom: 198/1903
  46561. },
  46562. form: "demon",
  46563. default: true
  46564. },
  46565. demonBack: {
  46566. height: math.unit(36, "feet"),
  46567. name: "Back",
  46568. image: {
  46569. source: "./media/characters/alex-xuria/demon-back.svg",
  46570. extra: 1725/1693,
  46571. bottom: 70/1795
  46572. },
  46573. form: "demon"
  46574. },
  46575. demonHead: {
  46576. height: math.unit(2.14, "meters"),
  46577. name: "Head",
  46578. image: {
  46579. source: "./media/characters/alex-xuria/demon-head.svg"
  46580. },
  46581. form: "demon"
  46582. },
  46583. demonHand: {
  46584. height: math.unit(1.61, "meters"),
  46585. name: "Hand",
  46586. image: {
  46587. source: "./media/characters/alex-xuria/demon-hand.svg"
  46588. },
  46589. form: "demon"
  46590. },
  46591. demonPaw: {
  46592. height: math.unit(1.35, "meters"),
  46593. name: "Paw",
  46594. image: {
  46595. source: "./media/characters/alex-xuria/demon-paw.svg"
  46596. },
  46597. form: "demon"
  46598. },
  46599. demonFoot: {
  46600. height: math.unit(2.2, "meters"),
  46601. name: "Foot",
  46602. image: {
  46603. source: "./media/characters/alex-xuria/demon-foot.svg"
  46604. },
  46605. form: "demon"
  46606. },
  46607. demonCock: {
  46608. height: math.unit(1.74, "meters"),
  46609. name: "Cock",
  46610. image: {
  46611. source: "./media/characters/alex-xuria/demon-cock.svg"
  46612. },
  46613. form: "demon"
  46614. },
  46615. demonTailClosed: {
  46616. height: math.unit(1.47, "meters"),
  46617. name: "Tail (Closed)",
  46618. image: {
  46619. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46620. },
  46621. form: "demon"
  46622. },
  46623. demonTailOpen: {
  46624. height: math.unit(2.85, "meters"),
  46625. name: "Tail (Open)",
  46626. image: {
  46627. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46628. },
  46629. form: "demon"
  46630. },
  46631. incubusFront: {
  46632. height: math.unit(12, "feet"),
  46633. name: "Front",
  46634. image: {
  46635. source: "./media/characters/alex-xuria/incubus-front.svg",
  46636. extra: 1754/1677,
  46637. bottom: 125/1879
  46638. },
  46639. form: "incubus",
  46640. default: true
  46641. },
  46642. incubusBack: {
  46643. height: math.unit(12, "feet"),
  46644. name: "Back",
  46645. image: {
  46646. source: "./media/characters/alex-xuria/incubus-back.svg",
  46647. extra: 1702/1647,
  46648. bottom: 30/1732
  46649. },
  46650. form: "incubus"
  46651. },
  46652. incubusHead: {
  46653. height: math.unit(3.45, "feet"),
  46654. name: "Head",
  46655. image: {
  46656. source: "./media/characters/alex-xuria/incubus-head.svg"
  46657. },
  46658. form: "incubus"
  46659. },
  46660. rabbitFront: {
  46661. height: math.unit(6, "feet"),
  46662. name: "Front",
  46663. image: {
  46664. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46665. extra: 1369/1349,
  46666. bottom: 45/1414
  46667. },
  46668. form: "rabbit",
  46669. default: true
  46670. },
  46671. rabbitSide: {
  46672. height: math.unit(6, "feet"),
  46673. name: "Side",
  46674. image: {
  46675. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46676. extra: 1370/1356,
  46677. bottom: 37/1407
  46678. },
  46679. form: "rabbit"
  46680. },
  46681. rabbitBack: {
  46682. height: math.unit(6, "feet"),
  46683. name: "Back",
  46684. image: {
  46685. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46686. extra: 1375/1358,
  46687. bottom: 43/1418
  46688. },
  46689. form: "rabbit"
  46690. },
  46691. },
  46692. [
  46693. {
  46694. name: "Normal",
  46695. height: math.unit(6, "feet"),
  46696. default: true,
  46697. form: "rabbit"
  46698. },
  46699. {
  46700. name: "Incubus",
  46701. height: math.unit(12, "feet"),
  46702. default: true,
  46703. form: "incubus"
  46704. },
  46705. {
  46706. name: "Demon",
  46707. height: math.unit(36, "feet"),
  46708. default: true,
  46709. form: "demon"
  46710. }
  46711. ],
  46712. {
  46713. "demon": {
  46714. name: "Demon",
  46715. default: true
  46716. },
  46717. "incubus": {
  46718. name: "Incubus",
  46719. },
  46720. "rabbit": {
  46721. name: "Rabbit"
  46722. }
  46723. }
  46724. ))
  46725. characterMakers.push(() => makeCharacter(
  46726. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46727. {
  46728. front: {
  46729. height: math.unit(7 + 5/12, "feet"),
  46730. weight: math.unit(510, "lb"),
  46731. name: "Front",
  46732. image: {
  46733. source: "./media/characters/syrup/front.svg",
  46734. extra: 932/916,
  46735. bottom: 26/958
  46736. }
  46737. },
  46738. },
  46739. [
  46740. {
  46741. name: "Normal",
  46742. height: math.unit(7 + 5/12, "feet"),
  46743. default: true
  46744. },
  46745. {
  46746. name: "Big",
  46747. height: math.unit(50, "feet")
  46748. },
  46749. {
  46750. name: "Macro",
  46751. height: math.unit(300, "feet")
  46752. },
  46753. {
  46754. name: "Megamacro",
  46755. height: math.unit(1, "mile")
  46756. },
  46757. ]
  46758. ))
  46759. characterMakers.push(() => makeCharacter(
  46760. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46761. {
  46762. front: {
  46763. height: math.unit(6 + 9/12, "feet"),
  46764. name: "Front",
  46765. image: {
  46766. source: "./media/characters/zeimne/front.svg",
  46767. extra: 1969/1806,
  46768. bottom: 53/2022
  46769. }
  46770. },
  46771. },
  46772. [
  46773. {
  46774. name: "Normal",
  46775. height: math.unit(6 + 9/12, "feet"),
  46776. default: true
  46777. },
  46778. {
  46779. name: "Giant",
  46780. height: math.unit(550, "feet")
  46781. },
  46782. {
  46783. name: "Mega",
  46784. height: math.unit(3, "miles")
  46785. },
  46786. {
  46787. name: "Giga",
  46788. height: math.unit(250, "miles")
  46789. },
  46790. {
  46791. name: "Tera",
  46792. height: math.unit(1, "AU")
  46793. },
  46794. ]
  46795. ))
  46796. characterMakers.push(() => makeCharacter(
  46797. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46798. {
  46799. front: {
  46800. height: math.unit(5 + 2/12, "feet"),
  46801. name: "Front",
  46802. image: {
  46803. source: "./media/characters/grar/front.svg",
  46804. extra: 1331/1119,
  46805. bottom: 60/1391
  46806. }
  46807. },
  46808. back: {
  46809. height: math.unit(5 + 2/12, "feet"),
  46810. name: "Back",
  46811. image: {
  46812. source: "./media/characters/grar/back.svg",
  46813. extra: 1385/1169,
  46814. bottom: 23/1408
  46815. }
  46816. },
  46817. },
  46818. [
  46819. {
  46820. name: "Normal",
  46821. height: math.unit(5 + 2/12, "feet"),
  46822. default: true
  46823. },
  46824. ]
  46825. ))
  46826. characterMakers.push(() => makeCharacter(
  46827. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46828. {
  46829. front: {
  46830. height: math.unit(13 + 7/12, "feet"),
  46831. weight: math.unit(2200, "lb"),
  46832. name: "Front",
  46833. image: {
  46834. source: "./media/characters/endraya/front.svg",
  46835. extra: 1289/1215,
  46836. bottom: 50/1339
  46837. }
  46838. },
  46839. nude: {
  46840. height: math.unit(13 + 7/12, "feet"),
  46841. weight: math.unit(2200, "lb"),
  46842. name: "Nude",
  46843. image: {
  46844. source: "./media/characters/endraya/nude.svg",
  46845. extra: 1247/1171,
  46846. bottom: 40/1287
  46847. }
  46848. },
  46849. head: {
  46850. height: math.unit(2.6, "feet"),
  46851. name: "Head",
  46852. image: {
  46853. source: "./media/characters/endraya/head.svg"
  46854. }
  46855. },
  46856. slit: {
  46857. height: math.unit(3.4, "feet"),
  46858. name: "Slit",
  46859. image: {
  46860. source: "./media/characters/endraya/slit.svg"
  46861. }
  46862. },
  46863. },
  46864. [
  46865. {
  46866. name: "Normal",
  46867. height: math.unit(13 + 7/12, "feet"),
  46868. default: true
  46869. },
  46870. {
  46871. name: "Macro",
  46872. height: math.unit(200, "feet")
  46873. },
  46874. ]
  46875. ))
  46876. characterMakers.push(() => makeCharacter(
  46877. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46878. {
  46879. front: {
  46880. height: math.unit(1.81, "meters"),
  46881. weight: math.unit(69, "kg"),
  46882. name: "Front",
  46883. image: {
  46884. source: "./media/characters/rodryana/front.svg",
  46885. extra: 2002/1921,
  46886. bottom: 53/2055
  46887. }
  46888. },
  46889. back: {
  46890. height: math.unit(1.81, "meters"),
  46891. weight: math.unit(69, "kg"),
  46892. name: "Back",
  46893. image: {
  46894. source: "./media/characters/rodryana/back.svg",
  46895. extra: 1993/1926,
  46896. bottom: 48/2041
  46897. }
  46898. },
  46899. maw: {
  46900. height: math.unit(0.19769417475, "meters"),
  46901. name: "Maw",
  46902. image: {
  46903. source: "./media/characters/rodryana/maw.svg"
  46904. }
  46905. },
  46906. slit: {
  46907. height: math.unit(0.31631067961, "meters"),
  46908. name: "Slit",
  46909. image: {
  46910. source: "./media/characters/rodryana/slit.svg"
  46911. }
  46912. },
  46913. },
  46914. [
  46915. {
  46916. name: "Normal",
  46917. height: math.unit(1.81, "meters")
  46918. },
  46919. {
  46920. name: "Mini Macro",
  46921. height: math.unit(181, "meters")
  46922. },
  46923. {
  46924. name: "Macro",
  46925. height: math.unit(452, "meters"),
  46926. default: true
  46927. },
  46928. {
  46929. name: "Mega Macro",
  46930. height: math.unit(1.375, "km")
  46931. },
  46932. {
  46933. name: "Giga Macro",
  46934. height: math.unit(13.575, "km")
  46935. },
  46936. ]
  46937. ))
  46938. characterMakers.push(() => makeCharacter(
  46939. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46940. {
  46941. front: {
  46942. height: math.unit(6, "feet"),
  46943. weight: math.unit(1000, "lb"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/asaya/front.svg",
  46947. extra: 1460/1200,
  46948. bottom: 71/1531
  46949. }
  46950. },
  46951. },
  46952. [
  46953. {
  46954. name: "Normal",
  46955. height: math.unit(8, "km"),
  46956. default: true
  46957. },
  46958. ]
  46959. ))
  46960. characterMakers.push(() => makeCharacter(
  46961. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46962. {
  46963. front: {
  46964. height: math.unit(3.5, "meters"),
  46965. name: "Front",
  46966. image: {
  46967. source: "./media/characters/sarzu-and-israz/front.svg",
  46968. extra: 1570/1558,
  46969. bottom: 150/1720
  46970. },
  46971. },
  46972. back: {
  46973. height: math.unit(3.5, "meters"),
  46974. name: "Back",
  46975. image: {
  46976. source: "./media/characters/sarzu-and-israz/back.svg",
  46977. extra: 1523/1509,
  46978. bottom: 132/1655
  46979. },
  46980. },
  46981. frontFemale: {
  46982. height: math.unit(3.5, "meters"),
  46983. name: "Front (Female)",
  46984. image: {
  46985. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46986. extra: 1570/1558,
  46987. bottom: 150/1720
  46988. },
  46989. },
  46990. frontHerm: {
  46991. height: math.unit(3.5, "meters"),
  46992. name: "Front (Herm)",
  46993. image: {
  46994. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46995. extra: 1570/1558,
  46996. bottom: 150/1720
  46997. },
  46998. },
  46999. },
  47000. [
  47001. {
  47002. name: "Normal",
  47003. height: math.unit(3.5, "meters"),
  47004. default: true,
  47005. },
  47006. {
  47007. name: "Macro",
  47008. height: math.unit(65.5, "meters"),
  47009. },
  47010. ],
  47011. ))
  47012. characterMakers.push(() => makeCharacter(
  47013. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47014. {
  47015. front: {
  47016. height: math.unit(6, "feet"),
  47017. weight: math.unit(250, "lb"),
  47018. name: "Front",
  47019. image: {
  47020. source: "./media/characters/zenimma/front.svg",
  47021. extra: 1346/1320,
  47022. bottom: 58/1404
  47023. }
  47024. },
  47025. back: {
  47026. height: math.unit(6, "feet"),
  47027. weight: math.unit(250, "lb"),
  47028. name: "Back",
  47029. image: {
  47030. source: "./media/characters/zenimma/back.svg",
  47031. extra: 1324/1308,
  47032. bottom: 44/1368
  47033. }
  47034. },
  47035. dick: {
  47036. height: math.unit(1.44, "feet"),
  47037. name: "Dick",
  47038. image: {
  47039. source: "./media/characters/zenimma/dick.svg"
  47040. }
  47041. },
  47042. },
  47043. [
  47044. {
  47045. name: "Canon Height",
  47046. height: math.unit(66, "miles"),
  47047. default: true
  47048. },
  47049. ]
  47050. ))
  47051. characterMakers.push(() => makeCharacter(
  47052. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47053. {
  47054. nude: {
  47055. height: math.unit(6, "feet"),
  47056. weight: math.unit(150, "lb"),
  47057. name: "Nude",
  47058. image: {
  47059. source: "./media/characters/shavon/nude.svg",
  47060. extra: 1242/1096,
  47061. bottom: 98/1340
  47062. }
  47063. },
  47064. dressed: {
  47065. height: math.unit(6, "feet"),
  47066. weight: math.unit(150, "lb"),
  47067. name: "Dressed",
  47068. image: {
  47069. source: "./media/characters/shavon/dressed.svg",
  47070. extra: 1242/1096,
  47071. bottom: 98/1340
  47072. }
  47073. },
  47074. },
  47075. [
  47076. {
  47077. name: "Macro",
  47078. height: math.unit(255, "feet"),
  47079. default: true
  47080. },
  47081. ]
  47082. ))
  47083. characterMakers.push(() => makeCharacter(
  47084. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47085. {
  47086. front: {
  47087. height: math.unit(6, "feet"),
  47088. name: "Front",
  47089. image: {
  47090. source: "./media/characters/steph/front.svg",
  47091. extra: 1430/1330,
  47092. bottom: 54/1484
  47093. }
  47094. },
  47095. },
  47096. [
  47097. {
  47098. name: "Normal",
  47099. height: math.unit(6, "feet"),
  47100. default: true
  47101. },
  47102. ]
  47103. ))
  47104. characterMakers.push(() => makeCharacter(
  47105. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47106. {
  47107. front: {
  47108. height: math.unit(9, "feet"),
  47109. weight: math.unit(400, "lb"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/kil'aman/front.svg",
  47113. extra: 1210/1159,
  47114. bottom: 109/1319
  47115. }
  47116. },
  47117. head: {
  47118. height: math.unit(2.14, "feet"),
  47119. name: "Head",
  47120. image: {
  47121. source: "./media/characters/kil'aman/head.svg"
  47122. }
  47123. },
  47124. maw: {
  47125. height: math.unit(1.21, "feet"),
  47126. name: "Maw",
  47127. image: {
  47128. source: "./media/characters/kil'aman/maw.svg"
  47129. }
  47130. },
  47131. foot: {
  47132. height: math.unit(1.7, "feet"),
  47133. name: "Foot",
  47134. image: {
  47135. source: "./media/characters/kil'aman/foot.svg"
  47136. }
  47137. },
  47138. dick: {
  47139. height: math.unit(2.1, "feet"),
  47140. name: "Dick",
  47141. image: {
  47142. source: "./media/characters/kil'aman/dick.svg"
  47143. }
  47144. },
  47145. },
  47146. [
  47147. {
  47148. name: "Normal",
  47149. height: math.unit(9, "feet")
  47150. },
  47151. {
  47152. name: "Canon Height",
  47153. height: math.unit(10, "miles"),
  47154. default: true
  47155. },
  47156. {
  47157. name: "Maximum",
  47158. height: math.unit(6e9, "miles")
  47159. },
  47160. ]
  47161. ))
  47162. characterMakers.push(() => makeCharacter(
  47163. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47164. {
  47165. front: {
  47166. height: math.unit(90, "feet"),
  47167. weight: math.unit(675000, "lb"),
  47168. name: "Front",
  47169. image: {
  47170. source: "./media/characters/qadan/front.svg",
  47171. extra: 1012/1004,
  47172. bottom: 78/1090
  47173. }
  47174. },
  47175. back: {
  47176. height: math.unit(90, "feet"),
  47177. weight: math.unit(675000, "lb"),
  47178. name: "Back",
  47179. image: {
  47180. source: "./media/characters/qadan/back.svg",
  47181. extra: 1042/1031,
  47182. bottom: 55/1097
  47183. }
  47184. },
  47185. armored: {
  47186. height: math.unit(90, "feet"),
  47187. weight: math.unit(675000, "lb"),
  47188. name: "Armored",
  47189. image: {
  47190. source: "./media/characters/qadan/armored.svg",
  47191. extra: 1047/1037,
  47192. bottom: 48/1095
  47193. }
  47194. },
  47195. },
  47196. [
  47197. {
  47198. name: "Normal",
  47199. height: math.unit(90, "feet"),
  47200. default: true
  47201. },
  47202. ]
  47203. ))
  47204. characterMakers.push(() => makeCharacter(
  47205. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47206. {
  47207. front: {
  47208. height: math.unit(6, "feet"),
  47209. weight: math.unit(225, "lb"),
  47210. name: "Front",
  47211. image: {
  47212. source: "./media/characters/brooke/front.svg",
  47213. extra: 1050/1010,
  47214. bottom: 66/1116
  47215. }
  47216. },
  47217. back: {
  47218. height: math.unit(6, "feet"),
  47219. weight: math.unit(225, "lb"),
  47220. name: "Back",
  47221. image: {
  47222. source: "./media/characters/brooke/back.svg",
  47223. extra: 1053/1013,
  47224. bottom: 41/1094
  47225. }
  47226. },
  47227. dressed: {
  47228. height: math.unit(6, "feet"),
  47229. weight: math.unit(225, "lb"),
  47230. name: "Dressed",
  47231. image: {
  47232. source: "./media/characters/brooke/dressed.svg",
  47233. extra: 1050/1010,
  47234. bottom: 66/1116
  47235. }
  47236. },
  47237. },
  47238. [
  47239. {
  47240. name: "Canon Height",
  47241. height: math.unit(500, "miles"),
  47242. default: true
  47243. },
  47244. ]
  47245. ))
  47246. characterMakers.push(() => makeCharacter(
  47247. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47248. {
  47249. front: {
  47250. height: math.unit(6 + 2/12, "feet"),
  47251. weight: math.unit(210, "lb"),
  47252. name: "Front",
  47253. image: {
  47254. source: "./media/characters/wubs/front.svg",
  47255. extra: 1345/1325,
  47256. bottom: 70/1415
  47257. }
  47258. },
  47259. back: {
  47260. height: math.unit(6 + 2/12, "feet"),
  47261. weight: math.unit(210, "lb"),
  47262. name: "Back",
  47263. image: {
  47264. source: "./media/characters/wubs/back.svg",
  47265. extra: 1296/1275,
  47266. bottom: 58/1354
  47267. }
  47268. },
  47269. },
  47270. [
  47271. {
  47272. name: "Normal",
  47273. height: math.unit(6 + 2/12, "feet"),
  47274. default: true
  47275. },
  47276. {
  47277. name: "Macro",
  47278. height: math.unit(1000, "feet")
  47279. },
  47280. {
  47281. name: "Megamacro",
  47282. height: math.unit(1, "mile")
  47283. },
  47284. ]
  47285. ))
  47286. characterMakers.push(() => makeCharacter(
  47287. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47288. {
  47289. front: {
  47290. height: math.unit(4, "feet"),
  47291. weight: math.unit(120, "lb"),
  47292. name: "Front",
  47293. image: {
  47294. source: "./media/characters/blue/front.svg",
  47295. extra: 1636/1525,
  47296. bottom: 43/1679
  47297. }
  47298. },
  47299. back: {
  47300. height: math.unit(4, "feet"),
  47301. weight: math.unit(120, "lb"),
  47302. name: "Back",
  47303. image: {
  47304. source: "./media/characters/blue/back.svg",
  47305. extra: 1660/1560,
  47306. bottom: 57/1717
  47307. }
  47308. },
  47309. paws: {
  47310. height: math.unit(0.826, "feet"),
  47311. name: "Paws",
  47312. image: {
  47313. source: "./media/characters/blue/paws.svg"
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Micro",
  47320. height: math.unit(3, "inches")
  47321. },
  47322. {
  47323. name: "Normal",
  47324. height: math.unit(4, "feet"),
  47325. default: true
  47326. },
  47327. {
  47328. name: "Femenine Form",
  47329. height: math.unit(14, "feet")
  47330. },
  47331. {
  47332. name: "Werebat Form",
  47333. height: math.unit(18, "feet")
  47334. },
  47335. ]
  47336. ))
  47337. characterMakers.push(() => makeCharacter(
  47338. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47339. {
  47340. female: {
  47341. height: math.unit(7 + 4/12, "feet"),
  47342. weight: math.unit(243, "lb"),
  47343. name: "Female",
  47344. image: {
  47345. source: "./media/characters/kaya/female.svg",
  47346. extra: 975/898,
  47347. bottom: 34/1009
  47348. }
  47349. },
  47350. herm: {
  47351. height: math.unit(7 + 4/12, "feet"),
  47352. weight: math.unit(243, "lb"),
  47353. name: "Herm",
  47354. image: {
  47355. source: "./media/characters/kaya/herm.svg",
  47356. extra: 975/898,
  47357. bottom: 34/1009
  47358. }
  47359. },
  47360. },
  47361. [
  47362. {
  47363. name: "Normal",
  47364. height: math.unit(7 + 4/12, "feet"),
  47365. default: true
  47366. },
  47367. ]
  47368. ))
  47369. characterMakers.push(() => makeCharacter(
  47370. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47371. {
  47372. female: {
  47373. height: math.unit(9 + 4/12, "feet"),
  47374. weight: math.unit(398, "lb"),
  47375. name: "Female",
  47376. image: {
  47377. source: "./media/characters/kassandra/female.svg",
  47378. extra: 908/839,
  47379. bottom: 61/969
  47380. }
  47381. },
  47382. intersex: {
  47383. height: math.unit(9 + 4/12, "feet"),
  47384. weight: math.unit(398, "lb"),
  47385. name: "Intersex",
  47386. image: {
  47387. source: "./media/characters/kassandra/intersex.svg",
  47388. extra: 908/839,
  47389. bottom: 61/969
  47390. }
  47391. },
  47392. },
  47393. [
  47394. {
  47395. name: "Normal",
  47396. height: math.unit(9 + 4/12, "feet"),
  47397. default: true
  47398. },
  47399. ]
  47400. ))
  47401. characterMakers.push(() => makeCharacter(
  47402. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47403. {
  47404. front: {
  47405. height: math.unit(3, "meters"),
  47406. name: "Front",
  47407. image: {
  47408. source: "./media/characters/amy/front.svg",
  47409. extra: 1380/1343,
  47410. bottom: 70/1450
  47411. }
  47412. },
  47413. back: {
  47414. height: math.unit(3, "meters"),
  47415. name: "Back",
  47416. image: {
  47417. source: "./media/characters/amy/back.svg",
  47418. extra: 1380/1347,
  47419. bottom: 66/1446
  47420. }
  47421. },
  47422. },
  47423. [
  47424. {
  47425. name: "Normal",
  47426. height: math.unit(3, "meters"),
  47427. default: true
  47428. },
  47429. ]
  47430. ))
  47431. characterMakers.push(() => makeCharacter(
  47432. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47433. {
  47434. side: {
  47435. height: math.unit(47, "cm"),
  47436. weight: math.unit(10.8, "kg"),
  47437. name: "Side",
  47438. image: {
  47439. source: "./media/characters/alphaschakal/side.svg",
  47440. extra: 1058/568,
  47441. bottom: 62/1120
  47442. }
  47443. },
  47444. back: {
  47445. height: math.unit(78, "cm"),
  47446. weight: math.unit(10.8, "kg"),
  47447. name: "Back",
  47448. image: {
  47449. source: "./media/characters/alphaschakal/back.svg",
  47450. extra: 1102/942,
  47451. bottom: 185/1287
  47452. }
  47453. },
  47454. head: {
  47455. height: math.unit(28, "cm"),
  47456. name: "Head",
  47457. image: {
  47458. source: "./media/characters/alphaschakal/head.svg",
  47459. extra: 696/508,
  47460. bottom: 0/696
  47461. }
  47462. },
  47463. paw: {
  47464. height: math.unit(16, "cm"),
  47465. name: "Paw",
  47466. image: {
  47467. source: "./media/characters/alphaschakal/paw.svg"
  47468. }
  47469. },
  47470. },
  47471. [
  47472. {
  47473. name: "Normal",
  47474. height: math.unit(47, "cm"),
  47475. default: true
  47476. },
  47477. {
  47478. name: "Macro",
  47479. height: math.unit(340, "cm")
  47480. },
  47481. ]
  47482. ))
  47483. characterMakers.push(() => makeCharacter(
  47484. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47485. {
  47486. front: {
  47487. height: math.unit(36, "earths"),
  47488. name: "Front",
  47489. image: {
  47490. source: "./media/characters/ecobyss/front.svg",
  47491. extra: 1282/1215,
  47492. bottom: 11/1293
  47493. }
  47494. },
  47495. back: {
  47496. height: math.unit(36, "earths"),
  47497. name: "Back",
  47498. image: {
  47499. source: "./media/characters/ecobyss/back.svg",
  47500. extra: 1291/1222,
  47501. bottom: 8/1299
  47502. }
  47503. },
  47504. },
  47505. [
  47506. {
  47507. name: "Normal",
  47508. height: math.unit(36, "earths"),
  47509. default: true
  47510. },
  47511. ]
  47512. ))
  47513. characterMakers.push(() => makeCharacter(
  47514. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47515. {
  47516. front: {
  47517. height: math.unit(12, "feet"),
  47518. name: "Front",
  47519. image: {
  47520. source: "./media/characters/vasuk/front.svg",
  47521. extra: 1326/1207,
  47522. bottom: 64/1390
  47523. }
  47524. },
  47525. },
  47526. [
  47527. {
  47528. name: "Normal",
  47529. height: math.unit(12, "feet"),
  47530. default: true
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47536. {
  47537. side: {
  47538. height: math.unit(100, "feet"),
  47539. name: "Side",
  47540. image: {
  47541. source: "./media/characters/linneaus/side.svg",
  47542. extra: 987/807,
  47543. bottom: 47/1034
  47544. }
  47545. },
  47546. },
  47547. [
  47548. {
  47549. name: "Macro",
  47550. height: math.unit(100, "feet"),
  47551. default: true
  47552. },
  47553. ]
  47554. ))
  47555. characterMakers.push(() => makeCharacter(
  47556. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47557. {
  47558. front: {
  47559. height: math.unit(8, "feet"),
  47560. weight: math.unit(1200, "lb"),
  47561. name: "Front",
  47562. image: {
  47563. source: "./media/characters/nyterious-daligdig/front.svg",
  47564. extra: 1284/1094,
  47565. bottom: 84/1368
  47566. }
  47567. },
  47568. back: {
  47569. height: math.unit(8, "feet"),
  47570. weight: math.unit(1200, "lb"),
  47571. name: "Back",
  47572. image: {
  47573. source: "./media/characters/nyterious-daligdig/back.svg",
  47574. extra: 1301/1121,
  47575. bottom: 129/1430
  47576. }
  47577. },
  47578. mouth: {
  47579. height: math.unit(1.464, "feet"),
  47580. name: "Mouth",
  47581. image: {
  47582. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47583. }
  47584. },
  47585. },
  47586. [
  47587. {
  47588. name: "Small",
  47589. height: math.unit(8, "feet"),
  47590. default: true
  47591. },
  47592. {
  47593. name: "Normal",
  47594. height: math.unit(15, "feet")
  47595. },
  47596. {
  47597. name: "Macro",
  47598. height: math.unit(90, "feet")
  47599. },
  47600. ]
  47601. ))
  47602. characterMakers.push(() => makeCharacter(
  47603. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47604. {
  47605. front: {
  47606. height: math.unit(7 + 4/12, "feet"),
  47607. weight: math.unit(252, "lb"),
  47608. name: "Front",
  47609. image: {
  47610. source: "./media/characters/bandel/front.svg",
  47611. extra: 1946/1775,
  47612. bottom: 26/1972
  47613. }
  47614. },
  47615. back: {
  47616. height: math.unit(7 + 4/12, "feet"),
  47617. weight: math.unit(252, "lb"),
  47618. name: "Back",
  47619. image: {
  47620. source: "./media/characters/bandel/back.svg",
  47621. extra: 1940/1770,
  47622. bottom: 25/1965
  47623. }
  47624. },
  47625. maw: {
  47626. height: math.unit(2.15, "feet"),
  47627. name: "Maw",
  47628. image: {
  47629. source: "./media/characters/bandel/maw.svg"
  47630. }
  47631. },
  47632. stomach: {
  47633. height: math.unit(1.95, "feet"),
  47634. name: "Stomach",
  47635. image: {
  47636. source: "./media/characters/bandel/stomach.svg"
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(7 + 4/12, "feet"),
  47644. default: true
  47645. },
  47646. ]
  47647. ))
  47648. characterMakers.push(() => makeCharacter(
  47649. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47650. {
  47651. front: {
  47652. height: math.unit(10 + 5/12, "feet"),
  47653. weight: math.unit(773.5, "kg"),
  47654. name: "Front",
  47655. image: {
  47656. source: "./media/characters/zed/front.svg",
  47657. extra: 987/941,
  47658. bottom: 52/1039
  47659. }
  47660. },
  47661. },
  47662. [
  47663. {
  47664. name: "Short",
  47665. height: math.unit(5 + 4/12, "feet")
  47666. },
  47667. {
  47668. name: "Average",
  47669. height: math.unit(10 + 5/12, "feet"),
  47670. default: true
  47671. },
  47672. {
  47673. name: "Mini-Macro",
  47674. height: math.unit(24 + 9/12, "feet")
  47675. },
  47676. {
  47677. name: "Macro",
  47678. height: math.unit(249, "feet")
  47679. },
  47680. {
  47681. name: "Mega-Macro",
  47682. height: math.unit(12490, "feet")
  47683. },
  47684. {
  47685. name: "Giga-Macro",
  47686. height: math.unit(24.9, "miles")
  47687. },
  47688. {
  47689. name: "Tera-Macro",
  47690. height: math.unit(24900, "miles")
  47691. },
  47692. {
  47693. name: "Cosmic Scale",
  47694. height: math.unit(38.9, "lightyears")
  47695. },
  47696. {
  47697. name: "Universal Scale",
  47698. height: math.unit(138e12, "lightyears")
  47699. },
  47700. ]
  47701. ))
  47702. characterMakers.push(() => makeCharacter(
  47703. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47704. {
  47705. front: {
  47706. height: math.unit(1561, "inches"),
  47707. name: "Front",
  47708. image: {
  47709. source: "./media/characters/ivan/front.svg",
  47710. extra: 1126/1071,
  47711. bottom: 26/1152
  47712. }
  47713. },
  47714. back: {
  47715. height: math.unit(1561, "inches"),
  47716. name: "Back",
  47717. image: {
  47718. source: "./media/characters/ivan/back.svg",
  47719. extra: 1134/1079,
  47720. bottom: 30/1164
  47721. }
  47722. },
  47723. },
  47724. [
  47725. {
  47726. name: "Normal",
  47727. height: math.unit(1561, "inches"),
  47728. default: true
  47729. },
  47730. ]
  47731. ))
  47732. characterMakers.push(() => makeCharacter(
  47733. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47734. {
  47735. front: {
  47736. height: math.unit(5 + 7/12, "feet"),
  47737. weight: math.unit(150, "lb"),
  47738. name: "Front",
  47739. image: {
  47740. source: "./media/characters/robin-arctic-hare/front.svg",
  47741. extra: 1148/974,
  47742. bottom: 20/1168
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Normal",
  47749. height: math.unit(5 + 7/12, "feet"),
  47750. default: true
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47756. {
  47757. side: {
  47758. height: math.unit(5, "feet"),
  47759. name: "Side",
  47760. image: {
  47761. source: "./media/characters/birch/side.svg",
  47762. extra: 985/796,
  47763. bottom: 111/1096
  47764. }
  47765. },
  47766. },
  47767. [
  47768. {
  47769. name: "Normal",
  47770. height: math.unit(5, "feet"),
  47771. default: true
  47772. },
  47773. ]
  47774. ))
  47775. characterMakers.push(() => makeCharacter(
  47776. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47777. {
  47778. front: {
  47779. height: math.unit(4, "feet"),
  47780. name: "Front",
  47781. image: {
  47782. source: "./media/characters/rasp/front.svg",
  47783. extra: 561/478,
  47784. bottom: 74/635
  47785. }
  47786. },
  47787. },
  47788. [
  47789. {
  47790. name: "Normal",
  47791. height: math.unit(4, "feet"),
  47792. default: true
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47798. {
  47799. front: {
  47800. height: math.unit(4 + 6/12, "feet"),
  47801. name: "Front",
  47802. image: {
  47803. source: "./media/characters/agatha/front.svg",
  47804. extra: 947/933,
  47805. bottom: 42/989
  47806. }
  47807. },
  47808. back: {
  47809. height: math.unit(4 + 6/12, "feet"),
  47810. name: "Back",
  47811. image: {
  47812. source: "./media/characters/agatha/back.svg",
  47813. extra: 935/922,
  47814. bottom: 48/983
  47815. }
  47816. },
  47817. },
  47818. [
  47819. {
  47820. name: "Normal",
  47821. height: math.unit(4 + 6 /12, "feet"),
  47822. default: true
  47823. },
  47824. {
  47825. name: "Max Size",
  47826. height: math.unit(500, "feet")
  47827. },
  47828. ]
  47829. ))
  47830. characterMakers.push(() => makeCharacter(
  47831. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47832. {
  47833. side: {
  47834. height: math.unit(30, "feet"),
  47835. name: "Side",
  47836. image: {
  47837. source: "./media/characters/roggy/side.svg",
  47838. extra: 909/643,
  47839. bottom: 63/972
  47840. }
  47841. },
  47842. lounging: {
  47843. height: math.unit(20, "feet"),
  47844. name: "Lounging",
  47845. image: {
  47846. source: "./media/characters/roggy/lounging.svg",
  47847. extra: 643/479,
  47848. bottom: 145/788
  47849. }
  47850. },
  47851. handpaw: {
  47852. height: math.unit(13.1, "feet"),
  47853. name: "Handpaw",
  47854. image: {
  47855. source: "./media/characters/roggy/handpaw.svg"
  47856. }
  47857. },
  47858. footpaw: {
  47859. height: math.unit(15.8, "feet"),
  47860. name: "Footpaw",
  47861. image: {
  47862. source: "./media/characters/roggy/footpaw.svg"
  47863. }
  47864. },
  47865. },
  47866. [
  47867. {
  47868. name: "Menacing",
  47869. height: math.unit(30, "feet"),
  47870. default: true
  47871. },
  47872. ]
  47873. ))
  47874. characterMakers.push(() => makeCharacter(
  47875. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47876. {
  47877. front: {
  47878. height: math.unit(5 + 7/12, "feet"),
  47879. weight: math.unit(135, "lb"),
  47880. name: "Front",
  47881. image: {
  47882. source: "./media/characters/naomi/front.svg",
  47883. extra: 1209/1154,
  47884. bottom: 129/1338
  47885. }
  47886. },
  47887. back: {
  47888. height: math.unit(5 + 7/12, "feet"),
  47889. weight: math.unit(135, "lb"),
  47890. name: "Back",
  47891. image: {
  47892. source: "./media/characters/naomi/back.svg",
  47893. extra: 1252/1190,
  47894. bottom: 23/1275
  47895. }
  47896. },
  47897. },
  47898. [
  47899. {
  47900. name: "Normal",
  47901. height: math.unit(5 + 7 /12, "feet"),
  47902. default: true
  47903. },
  47904. ]
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47908. {
  47909. side: {
  47910. height: math.unit(35, "meters"),
  47911. name: "Side",
  47912. image: {
  47913. source: "./media/characters/kimpi/side.svg",
  47914. extra: 419/382,
  47915. bottom: 63/482
  47916. }
  47917. },
  47918. hand: {
  47919. height: math.unit(8.96, "meters"),
  47920. name: "Hand",
  47921. image: {
  47922. source: "./media/characters/kimpi/hand.svg"
  47923. }
  47924. },
  47925. },
  47926. [
  47927. {
  47928. name: "Normal",
  47929. height: math.unit(35, "meters"),
  47930. default: true
  47931. },
  47932. ]
  47933. ))
  47934. characterMakers.push(() => makeCharacter(
  47935. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47936. {
  47937. front: {
  47938. height: math.unit(4 + 4/12, "feet"),
  47939. name: "Front",
  47940. image: {
  47941. source: "./media/characters/pepper-purrloin/front.svg",
  47942. extra: 1141/1024,
  47943. bottom: 21/1162
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Normal",
  47950. height: math.unit(4 + 4/12, "feet"),
  47951. default: true
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(6 + 2/12, "feet"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/raphael/front.svg",
  47963. extra: 1101/962,
  47964. bottom: 59/1160
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(6 + 2/12, "feet"),
  47972. default: true
  47973. },
  47974. ]
  47975. ))
  47976. characterMakers.push(() => makeCharacter(
  47977. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47978. {
  47979. front: {
  47980. height: math.unit(6, "feet"),
  47981. weight: math.unit(150, "lb"),
  47982. name: "Front",
  47983. image: {
  47984. source: "./media/characters/victor-williams/front.svg",
  47985. extra: 1894/1825,
  47986. bottom: 67/1961
  47987. }
  47988. },
  47989. },
  47990. [
  47991. {
  47992. name: "Normal",
  47993. height: math.unit(6, "feet"),
  47994. default: true
  47995. },
  47996. ]
  47997. ))
  47998. characterMakers.push(() => makeCharacter(
  47999. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48000. {
  48001. front: {
  48002. height: math.unit(5 + 8/12, "feet"),
  48003. weight: math.unit(150, "lb"),
  48004. name: "Front",
  48005. image: {
  48006. source: "./media/characters/rachel/front.svg",
  48007. extra: 1902/1787,
  48008. bottom: 46/1948
  48009. }
  48010. },
  48011. },
  48012. [
  48013. {
  48014. name: "Base Height",
  48015. height: math.unit(5 + 8/12, "feet"),
  48016. default: true
  48017. },
  48018. {
  48019. name: "Macro",
  48020. height: math.unit(200, "feet")
  48021. },
  48022. {
  48023. name: "Mega Macro",
  48024. height: math.unit(1, "mile")
  48025. },
  48026. {
  48027. name: "Giga Macro",
  48028. height: math.unit(1500, "miles")
  48029. },
  48030. {
  48031. name: "Tera Macro",
  48032. height: math.unit(8000, "miles")
  48033. },
  48034. {
  48035. name: "Tera Macro+",
  48036. height: math.unit(2e5, "miles")
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48042. {
  48043. front: {
  48044. height: math.unit(6.5, "feet"),
  48045. name: "Front",
  48046. image: {
  48047. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48048. extra: 860/819,
  48049. bottom: 307/1167
  48050. }
  48051. },
  48052. back: {
  48053. height: math.unit(6.5, "feet"),
  48054. name: "Back",
  48055. image: {
  48056. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48057. extra: 880/837,
  48058. bottom: 395/1275
  48059. }
  48060. },
  48061. sleeping: {
  48062. height: math.unit(2.79, "feet"),
  48063. name: "Sleeping",
  48064. image: {
  48065. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48066. extra: 465/383,
  48067. bottom: 263/728
  48068. }
  48069. },
  48070. maw: {
  48071. height: math.unit(2.52, "feet"),
  48072. name: "Maw",
  48073. image: {
  48074. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48075. }
  48076. },
  48077. },
  48078. [
  48079. {
  48080. name: "Normal",
  48081. height: math.unit(6.5, "feet"),
  48082. default: true
  48083. },
  48084. ]
  48085. ))
  48086. characterMakers.push(() => makeCharacter(
  48087. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48088. {
  48089. front: {
  48090. height: math.unit(5, "feet"),
  48091. name: "Front",
  48092. image: {
  48093. source: "./media/characters/nova-nerium/front.svg",
  48094. extra: 1548/1392,
  48095. bottom: 374/1922
  48096. }
  48097. },
  48098. back: {
  48099. height: math.unit(5, "feet"),
  48100. name: "Back",
  48101. image: {
  48102. source: "./media/characters/nova-nerium/back.svg",
  48103. extra: 1658/1468,
  48104. bottom: 257/1915
  48105. }
  48106. },
  48107. },
  48108. [
  48109. {
  48110. name: "Normal",
  48111. height: math.unit(5, "feet"),
  48112. default: true
  48113. },
  48114. ]
  48115. ))
  48116. characterMakers.push(() => makeCharacter(
  48117. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48118. {
  48119. front: {
  48120. height: math.unit(5 + 4/12, "feet"),
  48121. name: "Front",
  48122. image: {
  48123. source: "./media/characters/ashe-pyriph/front.svg",
  48124. extra: 1935/1747,
  48125. bottom: 60/1995
  48126. }
  48127. },
  48128. },
  48129. [
  48130. {
  48131. name: "Normal",
  48132. height: math.unit(5 + 4/12, "feet"),
  48133. default: true
  48134. },
  48135. ]
  48136. ))
  48137. characterMakers.push(() => makeCharacter(
  48138. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48139. {
  48140. front: {
  48141. height: math.unit(8.7, "feet"),
  48142. name: "Front",
  48143. image: {
  48144. source: "./media/characters/flicker-wisp/front.svg",
  48145. extra: 1835/1613,
  48146. bottom: 449/2284
  48147. }
  48148. },
  48149. side: {
  48150. height: math.unit(8.7, "feet"),
  48151. name: "Side",
  48152. image: {
  48153. source: "./media/characters/flicker-wisp/side.svg",
  48154. extra: 1841/1642,
  48155. bottom: 336/2177
  48156. },
  48157. default: true
  48158. },
  48159. maw: {
  48160. height: math.unit(3.35, "feet"),
  48161. name: "Maw",
  48162. image: {
  48163. source: "./media/characters/flicker-wisp/maw.svg",
  48164. extra: 2338/1506,
  48165. bottom: 0/2338
  48166. }
  48167. },
  48168. ovipositor: {
  48169. height: math.unit(4.95, "feet"),
  48170. name: "Ovipositor",
  48171. image: {
  48172. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48173. }
  48174. },
  48175. egg: {
  48176. height: math.unit(0.385, "feet"),
  48177. weight: math.unit(2, "lb"),
  48178. name: "Egg",
  48179. image: {
  48180. source: "./media/characters/flicker-wisp/egg.svg"
  48181. }
  48182. },
  48183. },
  48184. [
  48185. {
  48186. name: "Normal",
  48187. height: math.unit(8.7, "feet"),
  48188. default: true
  48189. },
  48190. ]
  48191. ))
  48192. characterMakers.push(() => makeCharacter(
  48193. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48194. {
  48195. side: {
  48196. height: math.unit(11, "feet"),
  48197. name: "Side",
  48198. image: {
  48199. source: "./media/characters/faefnul/side.svg",
  48200. extra: 1100/1007,
  48201. bottom: 0/1100
  48202. }
  48203. },
  48204. },
  48205. [
  48206. {
  48207. name: "Normal",
  48208. height: math.unit(11, "feet"),
  48209. default: true
  48210. },
  48211. ]
  48212. ))
  48213. characterMakers.push(() => makeCharacter(
  48214. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48215. {
  48216. front: {
  48217. height: math.unit(6 + 2/12, "feet"),
  48218. name: "Front",
  48219. image: {
  48220. source: "./media/characters/shady/front.svg",
  48221. extra: 502/461,
  48222. bottom: 9/511
  48223. }
  48224. },
  48225. kneeling: {
  48226. height: math.unit(4.6, "feet"),
  48227. name: "Kneeling",
  48228. image: {
  48229. source: "./media/characters/shady/kneeling.svg",
  48230. extra: 1328/1219,
  48231. bottom: 117/1445
  48232. }
  48233. },
  48234. maw: {
  48235. height: math.unit(2, "feet"),
  48236. name: "Maw",
  48237. image: {
  48238. source: "./media/characters/shady/maw.svg"
  48239. }
  48240. },
  48241. },
  48242. [
  48243. {
  48244. name: "Nano",
  48245. height: math.unit(1, "mm")
  48246. },
  48247. {
  48248. name: "Micro",
  48249. height: math.unit(12, "mm")
  48250. },
  48251. {
  48252. name: "Tiny",
  48253. height: math.unit(3, "inches")
  48254. },
  48255. {
  48256. name: "Normal",
  48257. height: math.unit(6 + 2/12, "feet"),
  48258. default: true
  48259. },
  48260. {
  48261. name: "Big",
  48262. height: math.unit(15, "feet")
  48263. },
  48264. {
  48265. name: "Macro",
  48266. height: math.unit(150, "feet")
  48267. },
  48268. {
  48269. name: "Titanic",
  48270. height: math.unit(500, "feet")
  48271. },
  48272. ]
  48273. ))
  48274. characterMakers.push(() => makeCharacter(
  48275. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48276. {
  48277. front: {
  48278. height: math.unit(12, "feet"),
  48279. name: "Front",
  48280. image: {
  48281. source: "./media/characters/fenrir/front.svg",
  48282. extra: 968/875,
  48283. bottom: 22/990
  48284. }
  48285. },
  48286. },
  48287. [
  48288. {
  48289. name: "Big",
  48290. height: math.unit(12, "feet"),
  48291. default: true
  48292. },
  48293. ]
  48294. ))
  48295. characterMakers.push(() => makeCharacter(
  48296. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48297. {
  48298. front: {
  48299. height: math.unit(5 + 4/12, "feet"),
  48300. name: "Front",
  48301. image: {
  48302. source: "./media/characters/makar/front.svg",
  48303. extra: 1181/1112,
  48304. bottom: 78/1259
  48305. }
  48306. },
  48307. },
  48308. [
  48309. {
  48310. name: "Normal",
  48311. height: math.unit(5 + 4/12, "feet"),
  48312. default: true
  48313. },
  48314. ]
  48315. ))
  48316. characterMakers.push(() => makeCharacter(
  48317. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48318. {
  48319. front: {
  48320. height: math.unit(5 + 7/12, "feet"),
  48321. name: "Front",
  48322. image: {
  48323. source: "./media/characters/callow/front.svg",
  48324. extra: 1482/1304,
  48325. bottom: 23/1505
  48326. }
  48327. },
  48328. back: {
  48329. height: math.unit(5 + 7/12, "feet"),
  48330. name: "Back",
  48331. image: {
  48332. source: "./media/characters/callow/back.svg",
  48333. extra: 1484/1296,
  48334. bottom: 25/1509
  48335. }
  48336. },
  48337. },
  48338. [
  48339. {
  48340. name: "Micro",
  48341. height: math.unit(3, "inches"),
  48342. default: true
  48343. },
  48344. {
  48345. name: "Normal",
  48346. height: math.unit(5 + 7/12, "feet")
  48347. },
  48348. ]
  48349. ))
  48350. characterMakers.push(() => makeCharacter(
  48351. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48352. {
  48353. front: {
  48354. height: math.unit(6 + 2/12, "feet"),
  48355. name: "Front",
  48356. image: {
  48357. source: "./media/characters/natel/front.svg",
  48358. extra: 1833/1692,
  48359. bottom: 166/1999
  48360. }
  48361. },
  48362. },
  48363. [
  48364. {
  48365. name: "Normal",
  48366. height: math.unit(6 + 2/12, "feet"),
  48367. default: true
  48368. },
  48369. ]
  48370. ))
  48371. characterMakers.push(() => makeCharacter(
  48372. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48373. {
  48374. front: {
  48375. height: math.unit(1.75, "meters"),
  48376. name: "Front",
  48377. image: {
  48378. source: "./media/characters/misu/front.svg",
  48379. extra: 1690/1558,
  48380. bottom: 234/1924
  48381. }
  48382. },
  48383. back: {
  48384. height: math.unit(1.75, "meters"),
  48385. name: "Back",
  48386. image: {
  48387. source: "./media/characters/misu/back.svg",
  48388. extra: 1762/1618,
  48389. bottom: 146/1908
  48390. }
  48391. },
  48392. frontNude: {
  48393. height: math.unit(1.75, "meters"),
  48394. name: "Front (Nude)",
  48395. image: {
  48396. source: "./media/characters/misu/front-nude.svg",
  48397. extra: 1690/1558,
  48398. bottom: 234/1924
  48399. }
  48400. },
  48401. backNude: {
  48402. height: math.unit(1.75, "meters"),
  48403. name: "Back (Nude)",
  48404. image: {
  48405. source: "./media/characters/misu/back-nude.svg",
  48406. extra: 1762/1618,
  48407. bottom: 146/1908
  48408. }
  48409. },
  48410. frontErect: {
  48411. height: math.unit(1.75, "meters"),
  48412. name: "Front (Erect)",
  48413. image: {
  48414. source: "./media/characters/misu/front-erect.svg",
  48415. extra: 1690/1558,
  48416. bottom: 234/1924
  48417. }
  48418. },
  48419. maw: {
  48420. height: math.unit(0.47, "meters"),
  48421. name: "Maw",
  48422. image: {
  48423. source: "./media/characters/misu/maw.svg"
  48424. }
  48425. },
  48426. head: {
  48427. height: math.unit(0.35, "meters"),
  48428. name: "Head",
  48429. image: {
  48430. source: "./media/characters/misu/head.svg"
  48431. }
  48432. },
  48433. rear: {
  48434. height: math.unit(0.47, "meters"),
  48435. name: "Rear",
  48436. image: {
  48437. source: "./media/characters/misu/rear.svg"
  48438. }
  48439. },
  48440. },
  48441. [
  48442. {
  48443. name: "Normal",
  48444. height: math.unit(1.75, "meters")
  48445. },
  48446. {
  48447. name: "Not good for the people",
  48448. height: math.unit(42, "meters")
  48449. },
  48450. {
  48451. name: "Not good for the neighborhood",
  48452. height: math.unit(135, "meters")
  48453. },
  48454. {
  48455. name: "Bit bigger problem",
  48456. height: math.unit(380, "meters"),
  48457. default: true
  48458. },
  48459. {
  48460. name: "Not good for the city",
  48461. height: math.unit(1.5, "km")
  48462. },
  48463. {
  48464. name: "Not good for the county",
  48465. height: math.unit(5.5, "km")
  48466. },
  48467. {
  48468. name: "Not good for the state",
  48469. height: math.unit(25, "km")
  48470. },
  48471. {
  48472. name: "Not good for the country",
  48473. height: math.unit(125, "km")
  48474. },
  48475. {
  48476. name: "Not good for the continent",
  48477. height: math.unit(2100, "km")
  48478. },
  48479. {
  48480. name: "Not good for the planet",
  48481. height: math.unit(35000, "km")
  48482. },
  48483. {
  48484. name: "Just no",
  48485. height: math.unit(8.5e18, "km")
  48486. },
  48487. ]
  48488. ))
  48489. characterMakers.push(() => makeCharacter(
  48490. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48491. {
  48492. front: {
  48493. height: math.unit(6.5, "feet"),
  48494. name: "Front",
  48495. image: {
  48496. source: "./media/characters/poppy/front.svg",
  48497. extra: 1878/1812,
  48498. bottom: 43/1921
  48499. }
  48500. },
  48501. feet: {
  48502. height: math.unit(1.06, "feet"),
  48503. name: "Feet",
  48504. image: {
  48505. source: "./media/characters/poppy/feet.svg",
  48506. extra: 1083/1083,
  48507. bottom: 87/1170
  48508. }
  48509. },
  48510. },
  48511. [
  48512. {
  48513. name: "Human",
  48514. height: math.unit(6.5, "feet")
  48515. },
  48516. {
  48517. name: "Default",
  48518. height: math.unit(300, "feet"),
  48519. default: true
  48520. },
  48521. {
  48522. name: "Huge",
  48523. height: math.unit(850, "feet")
  48524. },
  48525. {
  48526. name: "Mega",
  48527. height: math.unit(8000, "feet")
  48528. },
  48529. {
  48530. name: "Giga",
  48531. height: math.unit(300, "miles")
  48532. },
  48533. ]
  48534. ))
  48535. characterMakers.push(() => makeCharacter(
  48536. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48537. {
  48538. bipedal: {
  48539. height: math.unit(7, "feet"),
  48540. name: "Bipedal",
  48541. image: {
  48542. source: "./media/characters/zener/bipedal.svg",
  48543. extra: 874/805,
  48544. bottom: 109/983
  48545. }
  48546. },
  48547. quadrupedal: {
  48548. height: math.unit(4.64, "feet"),
  48549. name: "Quadrupedal",
  48550. image: {
  48551. source: "./media/characters/zener/quadrupedal.svg",
  48552. extra: 638/507,
  48553. bottom: 190/828
  48554. }
  48555. },
  48556. cock: {
  48557. height: math.unit(18, "inches"),
  48558. name: "Cock",
  48559. image: {
  48560. source: "./media/characters/zener/cock.svg"
  48561. }
  48562. },
  48563. },
  48564. [
  48565. {
  48566. name: "Normal",
  48567. height: math.unit(7, "feet"),
  48568. default: true
  48569. },
  48570. ]
  48571. ))
  48572. characterMakers.push(() => makeCharacter(
  48573. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48574. {
  48575. nude: {
  48576. height: math.unit(5 + 6/12, "feet"),
  48577. name: "Nude",
  48578. image: {
  48579. source: "./media/characters/charlie-dog/nude.svg",
  48580. extra: 768/734,
  48581. bottom: 26/794
  48582. }
  48583. },
  48584. dressed: {
  48585. height: math.unit(5 + 6/12, "feet"),
  48586. name: "Dressed",
  48587. image: {
  48588. source: "./media/characters/charlie-dog/dressed.svg",
  48589. extra: 768/734,
  48590. bottom: 26/794
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(5 + 6/12, "feet"),
  48598. default: true
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48604. {
  48605. front: {
  48606. height: math.unit(6 + 4/12, "feet"),
  48607. name: "Front",
  48608. image: {
  48609. source: "./media/characters/ir'istrasz/front.svg",
  48610. extra: 1014/977,
  48611. bottom: 65/1079
  48612. }
  48613. },
  48614. back: {
  48615. height: math.unit(6 + 4/12, "feet"),
  48616. name: "Back",
  48617. image: {
  48618. source: "./media/characters/ir'istrasz/back.svg",
  48619. extra: 1024/992,
  48620. bottom: 34/1058
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(6 + 4/12, "feet"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48634. {
  48635. front: {
  48636. height: math.unit(5 + 8/12, "feet"),
  48637. name: "Front",
  48638. image: {
  48639. source: "./media/characters/dee-ditto/front.svg",
  48640. extra: 1874/1785,
  48641. bottom: 68/1942
  48642. }
  48643. },
  48644. back: {
  48645. height: math.unit(5 + 8/12, "feet"),
  48646. name: "Back",
  48647. image: {
  48648. source: "./media/characters/dee-ditto/back.svg",
  48649. extra: 1870/1783,
  48650. bottom: 77/1947
  48651. }
  48652. },
  48653. },
  48654. [
  48655. {
  48656. name: "Normal",
  48657. height: math.unit(5 + 8/12, "feet"),
  48658. default: true
  48659. },
  48660. ]
  48661. ))
  48662. characterMakers.push(() => makeCharacter(
  48663. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48664. {
  48665. front: {
  48666. height: math.unit(7 + 6/12, "feet"),
  48667. name: "Front",
  48668. image: {
  48669. source: "./media/characters/fey/front.svg",
  48670. extra: 995/979,
  48671. bottom: 30/1025
  48672. }
  48673. },
  48674. back: {
  48675. height: math.unit(7 + 6/12, "feet"),
  48676. name: "Back",
  48677. image: {
  48678. source: "./media/characters/fey/back.svg",
  48679. extra: 1079/1008,
  48680. bottom: 5/1084
  48681. }
  48682. },
  48683. dressed: {
  48684. height: math.unit(7 + 6/12, "feet"),
  48685. name: "Dressed",
  48686. image: {
  48687. source: "./media/characters/fey/dressed.svg",
  48688. extra: 995/979,
  48689. bottom: 30/1025
  48690. }
  48691. },
  48692. },
  48693. [
  48694. {
  48695. name: "Normal",
  48696. height: math.unit(7 + 6/12, "feet"),
  48697. default: true
  48698. },
  48699. ]
  48700. ))
  48701. characterMakers.push(() => makeCharacter(
  48702. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48703. {
  48704. standing: {
  48705. height: math.unit(17, "feet"),
  48706. name: "Standing",
  48707. image: {
  48708. source: "./media/characters/aster/standing.svg",
  48709. extra: 1798/1598,
  48710. bottom: 117/1915
  48711. }
  48712. },
  48713. },
  48714. [
  48715. {
  48716. name: "Normal",
  48717. height: math.unit(17, "feet"),
  48718. default: true
  48719. },
  48720. {
  48721. name: "Homewrecker",
  48722. height: math.unit(95, "feet")
  48723. },
  48724. {
  48725. name: "Planet Devourer",
  48726. height: math.unit(1008000, "miles")
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48732. {
  48733. front: {
  48734. height: math.unit(6 + 5/12, "feet"),
  48735. weight: math.unit(265, "lb"),
  48736. name: "Front",
  48737. image: {
  48738. source: "./media/characters/devon-childs/front.svg",
  48739. extra: 1795/1721,
  48740. bottom: 41/1836
  48741. }
  48742. },
  48743. side: {
  48744. height: math.unit(6 + 5/12, "feet"),
  48745. weight: math.unit(265, "lb"),
  48746. name: "Side",
  48747. image: {
  48748. source: "./media/characters/devon-childs/side.svg",
  48749. extra: 1812/1738,
  48750. bottom: 30/1842
  48751. }
  48752. },
  48753. back: {
  48754. height: math.unit(6 + 5/12, "feet"),
  48755. weight: math.unit(265, "lb"),
  48756. name: "Back",
  48757. image: {
  48758. source: "./media/characters/devon-childs/back.svg",
  48759. extra: 1808/1735,
  48760. bottom: 23/1831
  48761. }
  48762. },
  48763. hand: {
  48764. height: math.unit(1.464, "feet"),
  48765. name: "Hand",
  48766. image: {
  48767. source: "./media/characters/devon-childs/hand.svg"
  48768. }
  48769. },
  48770. foot: {
  48771. height: math.unit(1.6, "feet"),
  48772. name: "Foot",
  48773. image: {
  48774. source: "./media/characters/devon-childs/foot.svg"
  48775. }
  48776. },
  48777. },
  48778. [
  48779. {
  48780. name: "Micro",
  48781. height: math.unit(7, "cm")
  48782. },
  48783. {
  48784. name: "Normal",
  48785. height: math.unit(6 + 5/12, "feet"),
  48786. default: true
  48787. },
  48788. {
  48789. name: "Macro",
  48790. height: math.unit(154, "feet")
  48791. },
  48792. ]
  48793. ))
  48794. characterMakers.push(() => makeCharacter(
  48795. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48796. {
  48797. front: {
  48798. height: math.unit(6, "feet"),
  48799. weight: math.unit(180, "lb"),
  48800. name: "Front",
  48801. image: {
  48802. source: "./media/characters/lydemox-vir/front.svg",
  48803. extra: 1632/1435,
  48804. bottom: 58/1690
  48805. }
  48806. },
  48807. frontSFW: {
  48808. height: math.unit(6, "feet"),
  48809. weight: math.unit(180, "lb"),
  48810. name: "Front (SFW)",
  48811. image: {
  48812. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48813. extra: 1632/1435,
  48814. bottom: 58/1690
  48815. }
  48816. },
  48817. back: {
  48818. height: math.unit(6, "feet"),
  48819. weight: math.unit(180, "lb"),
  48820. name: "Back",
  48821. image: {
  48822. source: "./media/characters/lydemox-vir/back.svg",
  48823. extra: 1593/1408,
  48824. bottom: 31/1624
  48825. }
  48826. },
  48827. paw: {
  48828. height: math.unit(1.85, "feet"),
  48829. name: "Paw",
  48830. image: {
  48831. source: "./media/characters/lydemox-vir/paw.svg"
  48832. }
  48833. },
  48834. dick: {
  48835. height: math.unit(1.8, "feet"),
  48836. name: "Dick",
  48837. image: {
  48838. source: "./media/characters/lydemox-vir/dick.svg"
  48839. }
  48840. },
  48841. },
  48842. [
  48843. {
  48844. name: "Macro",
  48845. height: math.unit(100, "feet"),
  48846. default: true
  48847. },
  48848. {
  48849. name: "Teramacro",
  48850. height: math.unit(1, "earth")
  48851. },
  48852. {
  48853. name: "Planetary",
  48854. height: math.unit(20, "earths")
  48855. },
  48856. ]
  48857. ))
  48858. characterMakers.push(() => makeCharacter(
  48859. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48860. {
  48861. front: {
  48862. height: math.unit(15 + 8/12, "feet"),
  48863. weight: math.unit(1237, "kg"),
  48864. name: "Front",
  48865. image: {
  48866. source: "./media/characters/mia/front.svg",
  48867. extra: 1573/1446,
  48868. bottom: 58/1631
  48869. }
  48870. },
  48871. },
  48872. [
  48873. {
  48874. name: "Small",
  48875. height: math.unit(9 + 5/12, "feet")
  48876. },
  48877. {
  48878. name: "Normal",
  48879. height: math.unit(15 + 8/12, "feet"),
  48880. default: true
  48881. },
  48882. ]
  48883. ))
  48884. characterMakers.push(() => makeCharacter(
  48885. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48886. {
  48887. front: {
  48888. height: math.unit(10 + 6/12, "feet"),
  48889. weight: math.unit(1.3, "tons"),
  48890. name: "Front",
  48891. image: {
  48892. source: "./media/characters/mr-graves/front.svg",
  48893. extra: 1779/1695,
  48894. bottom: 198/1977
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(10 + 6 /12, "feet"),
  48902. default: true
  48903. },
  48904. ]
  48905. ))
  48906. characterMakers.push(() => makeCharacter(
  48907. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48908. {
  48909. dressedFront: {
  48910. height: math.unit(5 + 8/12, "feet"),
  48911. weight: math.unit(125, "lb"),
  48912. name: "Dressed (Front)",
  48913. image: {
  48914. source: "./media/characters/jess/dressed-front.svg",
  48915. extra: 1176/1152,
  48916. bottom: 42/1218
  48917. }
  48918. },
  48919. dressedSide: {
  48920. height: math.unit(5 + 8/12, "feet"),
  48921. weight: math.unit(125, "lb"),
  48922. name: "Dressed (Side)",
  48923. image: {
  48924. source: "./media/characters/jess/dressed-side.svg",
  48925. extra: 1204/1190,
  48926. bottom: 6/1210
  48927. }
  48928. },
  48929. nudeFront: {
  48930. height: math.unit(5 + 8/12, "feet"),
  48931. weight: math.unit(125, "lb"),
  48932. name: "Nude (Front)",
  48933. image: {
  48934. source: "./media/characters/jess/nude-front.svg",
  48935. extra: 1176/1152,
  48936. bottom: 42/1218
  48937. }
  48938. },
  48939. nudeSide: {
  48940. height: math.unit(5 + 8/12, "feet"),
  48941. weight: math.unit(125, "lb"),
  48942. name: "Nude (Side)",
  48943. image: {
  48944. source: "./media/characters/jess/nude-side.svg",
  48945. extra: 1204/1190,
  48946. bottom: 6/1210
  48947. }
  48948. },
  48949. organsFront: {
  48950. height: math.unit(2.83799342105, "feet"),
  48951. name: "Organs (Front)",
  48952. image: {
  48953. source: "./media/characters/jess/organs-front.svg"
  48954. }
  48955. },
  48956. organsSide: {
  48957. height: math.unit(2.64225290474, "feet"),
  48958. name: "Organs (Side)",
  48959. image: {
  48960. source: "./media/characters/jess/organs-side.svg"
  48961. }
  48962. },
  48963. digestiveTractFront: {
  48964. height: math.unit(2.8106580871, "feet"),
  48965. name: "Digestive Tract (Front)",
  48966. image: {
  48967. source: "./media/characters/jess/digestive-tract-front.svg"
  48968. }
  48969. },
  48970. digestiveTractSide: {
  48971. height: math.unit(2.54365045014, "feet"),
  48972. name: "Digestive Tract (Side)",
  48973. image: {
  48974. source: "./media/characters/jess/digestive-tract-side.svg"
  48975. }
  48976. },
  48977. respiratorySystemFront: {
  48978. height: math.unit(1.11196233456, "feet"),
  48979. name: "Respiratory System (Front)",
  48980. image: {
  48981. source: "./media/characters/jess/respiratory-system-front.svg"
  48982. }
  48983. },
  48984. respiratorySystemSide: {
  48985. height: math.unit(0.89327966297, "feet"),
  48986. name: "Respiratory System (Side)",
  48987. image: {
  48988. source: "./media/characters/jess/respiratory-system-side.svg"
  48989. }
  48990. },
  48991. urinaryTractFront: {
  48992. height: math.unit(1.16126356186, "feet"),
  48993. name: "Urinary Tract (Front)",
  48994. image: {
  48995. source: "./media/characters/jess/urinary-tract-front.svg"
  48996. }
  48997. },
  48998. urinaryTractSide: {
  48999. height: math.unit(1.20910039627, "feet"),
  49000. name: "Urinary Tract (Side)",
  49001. image: {
  49002. source: "./media/characters/jess/urinary-tract-side.svg"
  49003. }
  49004. },
  49005. reproductiveOrgansFront: {
  49006. height: math.unit(0.48422591566, "feet"),
  49007. name: "Reproductive Organs (Front)",
  49008. image: {
  49009. source: "./media/characters/jess/reproductive-organs-front.svg"
  49010. }
  49011. },
  49012. reproductiveOrgansSide: {
  49013. height: math.unit(0.61553314481, "feet"),
  49014. name: "Reproductive Organs (Side)",
  49015. image: {
  49016. source: "./media/characters/jess/reproductive-organs-side.svg"
  49017. }
  49018. },
  49019. breastsFront: {
  49020. height: math.unit(0.47690395121, "feet"),
  49021. name: "Breasts (Front)",
  49022. image: {
  49023. source: "./media/characters/jess/breasts-front.svg"
  49024. }
  49025. },
  49026. breastsSide: {
  49027. height: math.unit(0.30556998307, "feet"),
  49028. name: "Breasts (Side)",
  49029. image: {
  49030. source: "./media/characters/jess/breasts-side.svg"
  49031. }
  49032. },
  49033. heartFront: {
  49034. height: math.unit(0.53011022622, "feet"),
  49035. name: "Heart (Front)",
  49036. image: {
  49037. source: "./media/characters/jess/heart-front.svg"
  49038. }
  49039. },
  49040. heartSide: {
  49041. height: math.unit(0.51790695213, "feet"),
  49042. name: "Heart (Side)",
  49043. image: {
  49044. source: "./media/characters/jess/heart-side.svg"
  49045. }
  49046. },
  49047. earsAndNoseFront: {
  49048. height: math.unit(0.29385483995, "feet"),
  49049. name: "Ears and Nose (Front)",
  49050. image: {
  49051. source: "./media/characters/jess/ears-and-nose-front.svg"
  49052. }
  49053. },
  49054. earsAndNoseSide: {
  49055. height: math.unit(0.18109658741, "feet"),
  49056. name: "Ears and Nose (Side)",
  49057. image: {
  49058. source: "./media/characters/jess/ears-and-nose-side.svg"
  49059. }
  49060. },
  49061. },
  49062. [
  49063. {
  49064. name: "Normal",
  49065. height: math.unit(5 + 8/12, "feet"),
  49066. default: true
  49067. },
  49068. ]
  49069. ))
  49070. characterMakers.push(() => makeCharacter(
  49071. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49072. {
  49073. front: {
  49074. height: math.unit(6, "feet"),
  49075. weight: math.unit(6.64467e-7, "grams"),
  49076. name: "Front",
  49077. image: {
  49078. source: "./media/characters/wimpering/front.svg",
  49079. extra: 597/587,
  49080. bottom: 34/631
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Micro",
  49087. height: math.unit(0.4, "mm"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(5 + 2/12, "feet"),
  49097. weight: math.unit(110, "lb"),
  49098. name: "Front",
  49099. image: {
  49100. source: "./media/characters/keltre/front.svg",
  49101. extra: 1099/1057,
  49102. bottom: 22/1121
  49103. }
  49104. },
  49105. back: {
  49106. height: math.unit(5 + 2/12, "feet"),
  49107. weight: math.unit(110, "lb"),
  49108. name: "Back",
  49109. image: {
  49110. source: "./media/characters/keltre/back.svg",
  49111. extra: 1095/1053,
  49112. bottom: 17/1112
  49113. }
  49114. },
  49115. dressed: {
  49116. height: math.unit(5 + 2/12, "feet"),
  49117. weight: math.unit(110, "lb"),
  49118. name: "Dressed",
  49119. image: {
  49120. source: "./media/characters/keltre/dressed.svg",
  49121. extra: 1099/1057,
  49122. bottom: 22/1121
  49123. }
  49124. },
  49125. winter: {
  49126. height: math.unit(5 + 2/12, "feet"),
  49127. weight: math.unit(110, "lb"),
  49128. name: "Winter",
  49129. image: {
  49130. source: "./media/characters/keltre/winter.svg",
  49131. extra: 1099/1057,
  49132. bottom: 22/1121
  49133. }
  49134. },
  49135. head: {
  49136. height: math.unit(1.61 * 0.86, "feet"),
  49137. name: "Head",
  49138. image: {
  49139. source: "./media/characters/keltre/head.svg",
  49140. extra: 534/421,
  49141. bottom: 0/534
  49142. }
  49143. },
  49144. hand: {
  49145. height: math.unit(1.3 * 0.86, "feet"),
  49146. name: "Hand",
  49147. image: {
  49148. source: "./media/characters/keltre/hand.svg"
  49149. }
  49150. },
  49151. foot: {
  49152. height: math.unit(1.8 * 0.86, "feet"),
  49153. name: "Foot",
  49154. image: {
  49155. source: "./media/characters/keltre/foot.svg"
  49156. }
  49157. },
  49158. },
  49159. [
  49160. {
  49161. name: "Fine",
  49162. height: math.unit(1, "inch")
  49163. },
  49164. {
  49165. name: "Dimnutive",
  49166. height: math.unit(4, "inches")
  49167. },
  49168. {
  49169. name: "Tiny",
  49170. height: math.unit(1, "foot")
  49171. },
  49172. {
  49173. name: "Small",
  49174. height: math.unit(3, "feet")
  49175. },
  49176. {
  49177. name: "Normal",
  49178. height: math.unit(5 + 2/12, "feet"),
  49179. default: true
  49180. },
  49181. ]
  49182. ))
  49183. characterMakers.push(() => makeCharacter(
  49184. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49185. {
  49186. front: {
  49187. height: math.unit(6 + 2/12, "feet"),
  49188. name: "Front",
  49189. image: {
  49190. source: "./media/characters/nox/front.svg",
  49191. extra: 1917/1830,
  49192. bottom: 74/1991
  49193. }
  49194. },
  49195. back: {
  49196. height: math.unit(6 + 2/12, "feet"),
  49197. name: "Back",
  49198. image: {
  49199. source: "./media/characters/nox/back.svg",
  49200. extra: 1896/1815,
  49201. bottom: 21/1917
  49202. }
  49203. },
  49204. head: {
  49205. height: math.unit(1.1, "feet"),
  49206. name: "Head",
  49207. image: {
  49208. source: "./media/characters/nox/head.svg",
  49209. extra: 874/704,
  49210. bottom: 0/874
  49211. }
  49212. },
  49213. tattoo: {
  49214. height: math.unit(0.729, "feet"),
  49215. name: "Tattoo",
  49216. image: {
  49217. source: "./media/characters/nox/tattoo.svg"
  49218. }
  49219. },
  49220. },
  49221. [
  49222. {
  49223. name: "Normal",
  49224. height: math.unit(6 + 2/12, "feet")
  49225. },
  49226. {
  49227. name: "Gigamacro",
  49228. height: math.unit(2, "earths"),
  49229. default: true
  49230. },
  49231. {
  49232. name: "Cosmic",
  49233. height: math.unit(867, "yottameters")
  49234. },
  49235. ]
  49236. ))
  49237. characterMakers.push(() => makeCharacter(
  49238. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49239. {
  49240. front: {
  49241. height: math.unit(6, "feet"),
  49242. weight: math.unit(150, "lb"),
  49243. name: "Front",
  49244. image: {
  49245. source: "./media/characters/caspian/front.svg",
  49246. extra: 1443/1359,
  49247. bottom: 0/1443
  49248. }
  49249. },
  49250. back: {
  49251. height: math.unit(6, "feet"),
  49252. weight: math.unit(150, "lb"),
  49253. name: "Back",
  49254. image: {
  49255. source: "./media/characters/caspian/back.svg",
  49256. extra: 1379/1309,
  49257. bottom: 0/1379
  49258. }
  49259. },
  49260. head: {
  49261. height: math.unit(0.9, "feet"),
  49262. name: "Head",
  49263. image: {
  49264. source: "./media/characters/caspian/head.svg",
  49265. extra: 692/492,
  49266. bottom: 0/692
  49267. }
  49268. },
  49269. headAlt: {
  49270. height: math.unit(0.95, "feet"),
  49271. name: "Head (Alt)",
  49272. image: {
  49273. source: "./media/characters/caspian/head-alt.svg",
  49274. extra: 668/508,
  49275. bottom: 0/668
  49276. }
  49277. },
  49278. hand: {
  49279. height: math.unit(0.8, "feet"),
  49280. name: "Hand",
  49281. image: {
  49282. source: "./media/characters/caspian/hand.svg"
  49283. }
  49284. },
  49285. paw: {
  49286. height: math.unit(0.95, "feet"),
  49287. name: "Paw",
  49288. image: {
  49289. source: "./media/characters/caspian/paw.svg"
  49290. }
  49291. },
  49292. },
  49293. [
  49294. {
  49295. name: "Normal",
  49296. height: math.unit(162, "feet"),
  49297. default: true
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49303. {
  49304. front: {
  49305. height: math.unit(6, "feet"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/myra-aisling/front.svg",
  49309. extra: 1268/1166,
  49310. bottom: 73/1341
  49311. }
  49312. },
  49313. back: {
  49314. height: math.unit(6, "feet"),
  49315. name: "Back",
  49316. image: {
  49317. source: "./media/characters/myra-aisling/back.svg",
  49318. extra: 1249/1149,
  49319. bottom: 79/1328
  49320. }
  49321. },
  49322. dressed: {
  49323. height: math.unit(6, "feet"),
  49324. name: "Dressed",
  49325. image: {
  49326. source: "./media/characters/myra-aisling/dressed.svg",
  49327. extra: 1290/1189,
  49328. bottom: 47/1337
  49329. }
  49330. },
  49331. hand: {
  49332. height: math.unit(1.1, "feet"),
  49333. name: "Hand",
  49334. image: {
  49335. source: "./media/characters/myra-aisling/hand.svg"
  49336. }
  49337. },
  49338. paw: {
  49339. height: math.unit(1.23, "feet"),
  49340. name: "Paw",
  49341. image: {
  49342. source: "./media/characters/myra-aisling/paw.svg"
  49343. }
  49344. },
  49345. },
  49346. [
  49347. {
  49348. name: "Normal",
  49349. height: math.unit(160, "feet"),
  49350. default: true
  49351. },
  49352. ]
  49353. ))
  49354. characterMakers.push(() => makeCharacter(
  49355. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49356. {
  49357. front: {
  49358. height: math.unit(6, "feet"),
  49359. name: "Front",
  49360. image: {
  49361. source: "./media/characters/tenley-sidero/front.svg",
  49362. extra: 1365/1276,
  49363. bottom: 47/1412
  49364. }
  49365. },
  49366. back: {
  49367. height: math.unit(6, "feet"),
  49368. name: "Back",
  49369. image: {
  49370. source: "./media/characters/tenley-sidero/back.svg",
  49371. extra: 1383/1283,
  49372. bottom: 35/1418
  49373. }
  49374. },
  49375. dressed: {
  49376. height: math.unit(6, "feet"),
  49377. name: "Dressed",
  49378. image: {
  49379. source: "./media/characters/tenley-sidero/dressed.svg",
  49380. extra: 1364/1275,
  49381. bottom: 42/1406
  49382. }
  49383. },
  49384. head: {
  49385. height: math.unit(1.47, "feet"),
  49386. name: "Head",
  49387. image: {
  49388. source: "./media/characters/tenley-sidero/head.svg",
  49389. extra: 610/490,
  49390. bottom: 0/610
  49391. }
  49392. },
  49393. },
  49394. [
  49395. {
  49396. name: "Normal",
  49397. height: math.unit(154, "feet"),
  49398. default: true
  49399. },
  49400. ]
  49401. ))
  49402. characterMakers.push(() => makeCharacter(
  49403. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49404. {
  49405. front: {
  49406. height: math.unit(5, "inches"),
  49407. name: "Front",
  49408. image: {
  49409. source: "./media/characters/mallory/front.svg",
  49410. extra: 1919/1678,
  49411. bottom: 29/1948
  49412. }
  49413. },
  49414. hand: {
  49415. height: math.unit(0.73, "inches"),
  49416. name: "Hand",
  49417. image: {
  49418. source: "./media/characters/mallory/hand.svg"
  49419. }
  49420. },
  49421. paw: {
  49422. height: math.unit(0.68, "inches"),
  49423. name: "Paw",
  49424. image: {
  49425. source: "./media/characters/mallory/paw.svg"
  49426. }
  49427. },
  49428. },
  49429. [
  49430. {
  49431. name: "Small",
  49432. height: math.unit(5, "inches"),
  49433. default: true
  49434. },
  49435. ]
  49436. ))
  49437. characterMakers.push(() => makeCharacter(
  49438. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49439. {
  49440. naked: {
  49441. height: math.unit(6, "feet"),
  49442. name: "Naked",
  49443. image: {
  49444. source: "./media/characters/mab/naked.svg",
  49445. extra: 1855/1757,
  49446. bottom: 208/2063
  49447. }
  49448. },
  49449. outside: {
  49450. height: math.unit(6, "feet"),
  49451. name: "Outside",
  49452. image: {
  49453. source: "./media/characters/mab/outside.svg",
  49454. extra: 1855/1757,
  49455. bottom: 208/2063
  49456. }
  49457. },
  49458. party: {
  49459. height: math.unit(6, "feet"),
  49460. name: "Party",
  49461. image: {
  49462. source: "./media/characters/mab/party.svg",
  49463. extra: 1855/1757,
  49464. bottom: 208/2063
  49465. }
  49466. },
  49467. },
  49468. [
  49469. {
  49470. name: "Normal",
  49471. height: math.unit(165, "feet"),
  49472. default: true
  49473. },
  49474. ]
  49475. ))
  49476. characterMakers.push(() => makeCharacter(
  49477. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49478. {
  49479. front: {
  49480. height: math.unit(12, "feet"),
  49481. weight: math.unit(4000, "lb"),
  49482. name: "Front",
  49483. image: {
  49484. source: "./media/characters/winter/front.svg",
  49485. extra: 1286/943,
  49486. bottom: 112/1398
  49487. }
  49488. },
  49489. frontNsfw: {
  49490. height: math.unit(12, "feet"),
  49491. weight: math.unit(4000, "lb"),
  49492. name: "Front (NSFW)",
  49493. image: {
  49494. source: "./media/characters/winter/front-nsfw.svg",
  49495. extra: 1286/943,
  49496. bottom: 112/1398
  49497. }
  49498. },
  49499. dick: {
  49500. height: math.unit(3.79, "feet"),
  49501. name: "Dick",
  49502. image: {
  49503. source: "./media/characters/winter/dick.svg"
  49504. }
  49505. },
  49506. },
  49507. [
  49508. {
  49509. name: "Big",
  49510. height: math.unit(12, "feet"),
  49511. default: true
  49512. },
  49513. ]
  49514. ))
  49515. characterMakers.push(() => makeCharacter(
  49516. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49517. {
  49518. front: {
  49519. height: math.unit(4.1, "inches"),
  49520. name: "Front",
  49521. image: {
  49522. source: "./media/characters/alto/front.svg",
  49523. extra: 736/627,
  49524. bottom: 90/826
  49525. }
  49526. },
  49527. },
  49528. [
  49529. {
  49530. name: "Normal",
  49531. height: math.unit(4.1, "inches"),
  49532. default: true
  49533. },
  49534. ]
  49535. ))
  49536. characterMakers.push(() => makeCharacter(
  49537. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49538. {
  49539. sitting: {
  49540. height: math.unit(3, "feet"),
  49541. name: "Sitting",
  49542. image: {
  49543. source: "./media/characters/ratstrid-v/sitting.svg",
  49544. extra: 355/310,
  49545. bottom: 136/491
  49546. }
  49547. },
  49548. },
  49549. [
  49550. {
  49551. name: "Normal",
  49552. height: math.unit(3, "feet"),
  49553. default: true
  49554. },
  49555. ]
  49556. ))
  49557. characterMakers.push(() => makeCharacter(
  49558. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49559. {
  49560. back: {
  49561. height: math.unit(6, "feet"),
  49562. weight: math.unit(350, "lb"),
  49563. name: "Back",
  49564. image: {
  49565. source: "./media/characters/siz/back.svg",
  49566. extra: 1449/1274,
  49567. bottom: 13/1462
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Over-Overcompressed",
  49574. height: math.unit(8, "feet")
  49575. },
  49576. {
  49577. name: "Overcompressed",
  49578. height: math.unit(32, "feet")
  49579. },
  49580. {
  49581. name: "Compressed",
  49582. height: math.unit(128, "feet"),
  49583. default: true
  49584. },
  49585. {
  49586. name: "Half-Compressed",
  49587. height: math.unit(512, "feet")
  49588. },
  49589. {
  49590. name: "Quarter-Compressed",
  49591. height: math.unit(2048, "feet")
  49592. },
  49593. {
  49594. name: "Uncompressed?",
  49595. height: math.unit(8192, "feet")
  49596. },
  49597. ]
  49598. ))
  49599. characterMakers.push(() => makeCharacter(
  49600. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49601. {
  49602. front: {
  49603. height: math.unit(5 + 9/12, "feet"),
  49604. weight: math.unit(150, "lb"),
  49605. name: "Front",
  49606. image: {
  49607. source: "./media/characters/ven/front.svg",
  49608. extra: 1372/1320,
  49609. bottom: 73/1445
  49610. }
  49611. },
  49612. side: {
  49613. height: math.unit(5 + 9/12, "feet"),
  49614. weight: math.unit(1150, "lb"),
  49615. name: "Side",
  49616. image: {
  49617. source: "./media/characters/ven/side.svg",
  49618. extra: 1119/1070,
  49619. bottom: 42/1161
  49620. },
  49621. default: true
  49622. },
  49623. },
  49624. [
  49625. {
  49626. name: "Normal",
  49627. height: math.unit(5 + 9/12, "feet"),
  49628. default: true
  49629. },
  49630. ]
  49631. ))
  49632. characterMakers.push(() => makeCharacter(
  49633. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49634. {
  49635. front: {
  49636. height: math.unit(12, "feet"),
  49637. weight: math.unit(1000, "kg"),
  49638. name: "Front",
  49639. image: {
  49640. source: "./media/characters/maple/front.svg",
  49641. extra: 1193/1081,
  49642. bottom: 22/1215
  49643. }
  49644. },
  49645. },
  49646. [
  49647. {
  49648. name: "Compressed",
  49649. height: math.unit(7, "feet")
  49650. },
  49651. {
  49652. name: "Normal",
  49653. height: math.unit(12, "feet"),
  49654. default: true
  49655. },
  49656. ]
  49657. ))
  49658. characterMakers.push(() => makeCharacter(
  49659. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49660. {
  49661. front: {
  49662. height: math.unit(9, "feet"),
  49663. weight: math.unit(1500, "lb"),
  49664. name: "Front",
  49665. image: {
  49666. source: "./media/characters/nora/front.svg",
  49667. extra: 1348/1286,
  49668. bottom: 218/1566
  49669. }
  49670. },
  49671. erect: {
  49672. height: math.unit(9, "feet"),
  49673. weight: math.unit(11500, "lb"),
  49674. name: "Erect",
  49675. image: {
  49676. source: "./media/characters/nora/erect.svg",
  49677. extra: 1488/1433,
  49678. bottom: 133/1621
  49679. }
  49680. },
  49681. },
  49682. [
  49683. {
  49684. name: "Normal",
  49685. height: math.unit(9, "feet"),
  49686. default: true
  49687. },
  49688. ]
  49689. ))
  49690. characterMakers.push(() => makeCharacter(
  49691. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49692. {
  49693. front: {
  49694. height: math.unit(25, "feet"),
  49695. weight: math.unit(27500, "lb"),
  49696. name: "Front",
  49697. image: {
  49698. source: "./media/characters/north-caudin/front.svg",
  49699. extra: 1184/1082,
  49700. bottom: 23/1207
  49701. }
  49702. },
  49703. },
  49704. [
  49705. {
  49706. name: "Compressed",
  49707. height: math.unit(10, "feet")
  49708. },
  49709. {
  49710. name: "Normal",
  49711. height: math.unit(25, "feet"),
  49712. default: true
  49713. },
  49714. ]
  49715. ))
  49716. characterMakers.push(() => makeCharacter(
  49717. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49718. {
  49719. front: {
  49720. height: math.unit(9, "feet"),
  49721. weight: math.unit(1250, "lb"),
  49722. name: "Front",
  49723. image: {
  49724. source: "./media/characters/merrian/front.svg",
  49725. extra: 2393/2304,
  49726. bottom: 40/2433
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(9, "feet"),
  49734. default: true
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49740. {
  49741. front: {
  49742. height: math.unit(9, "feet"),
  49743. weight: math.unit(1000, "lb"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/hazel/front.svg",
  49747. extra: 2351/2298,
  49748. bottom: 38/2389
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(9, "feet"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(13, "feet"),
  49765. weight: math.unit(3200, "lb"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/emma/front.svg",
  49769. extra: 2263/2029,
  49770. bottom: 68/2331
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Normal",
  49777. height: math.unit(13, "feet"),
  49778. default: true
  49779. },
  49780. ]
  49781. ))
  49782. characterMakers.push(() => makeCharacter(
  49783. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49784. {
  49785. front: {
  49786. height: math.unit(11 + 9/12, "feet"),
  49787. weight: math.unit(2500, "lb"),
  49788. name: "Front",
  49789. image: {
  49790. source: "./media/characters/ilumina/front.svg",
  49791. extra: 2248/2209,
  49792. bottom: 164/2412
  49793. }
  49794. },
  49795. },
  49796. [
  49797. {
  49798. name: "Normal",
  49799. height: math.unit(11 + 9/12, "feet"),
  49800. default: true
  49801. },
  49802. ]
  49803. ))
  49804. characterMakers.push(() => makeCharacter(
  49805. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49806. {
  49807. front: {
  49808. height: math.unit(8 + 10/12, "feet"),
  49809. weight: math.unit(1350, "lb"),
  49810. name: "Front",
  49811. image: {
  49812. source: "./media/characters/moonshine/front.svg",
  49813. extra: 2395/2288,
  49814. bottom: 40/2435
  49815. }
  49816. },
  49817. },
  49818. [
  49819. {
  49820. name: "Normal",
  49821. height: math.unit(8 + 10/12, "feet"),
  49822. default: true
  49823. },
  49824. ]
  49825. ))
  49826. characterMakers.push(() => makeCharacter(
  49827. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49828. {
  49829. front: {
  49830. height: math.unit(14, "feet"),
  49831. weight: math.unit(3400, "lb"),
  49832. name: "Front",
  49833. image: {
  49834. source: "./media/characters/aletia/front.svg",
  49835. extra: 1185/1052,
  49836. bottom: 21/1206
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Compressed",
  49843. height: math.unit(8, "feet")
  49844. },
  49845. {
  49846. name: "Normal",
  49847. height: math.unit(14, "feet"),
  49848. default: true
  49849. },
  49850. ]
  49851. ))
  49852. characterMakers.push(() => makeCharacter(
  49853. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49854. {
  49855. front: {
  49856. height: math.unit(17, "feet"),
  49857. weight: math.unit(6500, "lb"),
  49858. name: "Front",
  49859. image: {
  49860. source: "./media/characters/deidra/front.svg",
  49861. extra: 1201/1081,
  49862. bottom: 16/1217
  49863. }
  49864. },
  49865. },
  49866. [
  49867. {
  49868. name: "Compressed",
  49869. height: math.unit(9 + 6/12, "feet")
  49870. },
  49871. {
  49872. name: "Normal",
  49873. height: math.unit(17, "feet"),
  49874. default: true
  49875. },
  49876. ]
  49877. ))
  49878. characterMakers.push(() => makeCharacter(
  49879. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49880. {
  49881. front: {
  49882. height: math.unit(7 + 4/12, "feet"),
  49883. weight: math.unit(280, "lb"),
  49884. name: "Front",
  49885. image: {
  49886. source: "./media/characters/freki-yrmori/front.svg",
  49887. extra: 1286/1182,
  49888. bottom: 29/1315
  49889. }
  49890. },
  49891. maw: {
  49892. height: math.unit(0.9, "feet"),
  49893. name: "Maw",
  49894. image: {
  49895. source: "./media/characters/freki-yrmori/maw.svg"
  49896. }
  49897. },
  49898. },
  49899. [
  49900. {
  49901. name: "Normal",
  49902. height: math.unit(7 + 4/12, "feet"),
  49903. default: true
  49904. },
  49905. {
  49906. name: "Macro",
  49907. height: math.unit(38.5, "meters")
  49908. },
  49909. ]
  49910. ))
  49911. characterMakers.push(() => makeCharacter(
  49912. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49913. {
  49914. side: {
  49915. height: math.unit(47.2, "meters"),
  49916. weight: math.unit(10000, "tons"),
  49917. name: "Side",
  49918. image: {
  49919. source: "./media/characters/aetherios/side.svg",
  49920. extra: 2363/642,
  49921. bottom: 221/2584
  49922. }
  49923. },
  49924. top: {
  49925. height: math.unit(240, "meters"),
  49926. weight: math.unit(10000, "tons"),
  49927. name: "Top",
  49928. image: {
  49929. source: "./media/characters/aetherios/top.svg"
  49930. }
  49931. },
  49932. bottom: {
  49933. height: math.unit(240, "meters"),
  49934. weight: math.unit(10000, "tons"),
  49935. name: "Bottom",
  49936. image: {
  49937. source: "./media/characters/aetherios/bottom.svg"
  49938. }
  49939. },
  49940. head: {
  49941. height: math.unit(38.6, "meters"),
  49942. name: "Head",
  49943. image: {
  49944. source: "./media/characters/aetherios/head.svg",
  49945. extra: 1335/1112,
  49946. bottom: 0/1335
  49947. }
  49948. },
  49949. front: {
  49950. height: math.unit(29, "meters"),
  49951. name: "Front",
  49952. image: {
  49953. source: "./media/characters/aetherios/front.svg",
  49954. extra: 1266/953,
  49955. bottom: 158/1424
  49956. }
  49957. },
  49958. maw: {
  49959. height: math.unit(16.37, "meters"),
  49960. name: "Maw",
  49961. image: {
  49962. source: "./media/characters/aetherios/maw.svg",
  49963. extra: 748/637,
  49964. bottom: 0/748
  49965. },
  49966. extraAttributes: {
  49967. preyCapacity: {
  49968. name: "Capacity",
  49969. power: 3,
  49970. type: "volume",
  49971. base: math.unit(1000, "people")
  49972. },
  49973. tongueSize: {
  49974. name: "Tongue Size",
  49975. power: 2,
  49976. type: "area",
  49977. base: math.unit(21, "m^2")
  49978. }
  49979. }
  49980. },
  49981. forepaw: {
  49982. height: math.unit(18, "meters"),
  49983. name: "Forepaw",
  49984. image: {
  49985. source: "./media/characters/aetherios/forepaw.svg"
  49986. }
  49987. },
  49988. hindpaw: {
  49989. height: math.unit(23, "meters"),
  49990. name: "Hindpaw",
  49991. image: {
  49992. source: "./media/characters/aetherios/hindpaw.svg"
  49993. }
  49994. },
  49995. genitals: {
  49996. height: math.unit(42, "meters"),
  49997. name: "Genitals",
  49998. image: {
  49999. source: "./media/characters/aetherios/genitals.svg"
  50000. }
  50001. },
  50002. },
  50003. [
  50004. {
  50005. name: "Normal",
  50006. height: math.unit(47.2, "meters"),
  50007. default: true
  50008. },
  50009. {
  50010. name: "Macro",
  50011. height: math.unit(160, "meters")
  50012. },
  50013. {
  50014. name: "Mega",
  50015. height: math.unit(1.87, "km")
  50016. },
  50017. {
  50018. name: "Giga",
  50019. height: math.unit(40000, "km")
  50020. },
  50021. {
  50022. name: "Stellar",
  50023. height: math.unit(158000000, "km")
  50024. },
  50025. {
  50026. name: "Cosmic",
  50027. height: math.unit(9.46e12, "km")
  50028. },
  50029. ]
  50030. ))
  50031. characterMakers.push(() => makeCharacter(
  50032. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50033. {
  50034. front: {
  50035. height: math.unit(5 + 4/12, "feet"),
  50036. weight: math.unit(80, "lb"),
  50037. name: "Front",
  50038. image: {
  50039. source: "./media/characters/mizu-gieeg/front.svg",
  50040. extra: 850/709,
  50041. bottom: 52/902
  50042. }
  50043. },
  50044. back: {
  50045. height: math.unit(5 + 4/12, "feet"),
  50046. weight: math.unit(80, "lb"),
  50047. name: "Back",
  50048. image: {
  50049. source: "./media/characters/mizu-gieeg/back.svg",
  50050. extra: 882/745,
  50051. bottom: 25/907
  50052. }
  50053. },
  50054. },
  50055. [
  50056. {
  50057. name: "Normal",
  50058. height: math.unit(5 + 4/12, "feet"),
  50059. default: true
  50060. },
  50061. ]
  50062. ))
  50063. characterMakers.push(() => makeCharacter(
  50064. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50065. {
  50066. front: {
  50067. height: math.unit(6, "feet"),
  50068. name: "Front",
  50069. image: {
  50070. source: "./media/characters/roselle-st-papier/front.svg",
  50071. extra: 1430/1280,
  50072. bottom: 37/1467
  50073. }
  50074. },
  50075. back: {
  50076. height: math.unit(6, "feet"),
  50077. name: "Back",
  50078. image: {
  50079. source: "./media/characters/roselle-st-papier/back.svg",
  50080. extra: 1491/1296,
  50081. bottom: 23/1514
  50082. }
  50083. },
  50084. ear: {
  50085. height: math.unit(1.26, "feet"),
  50086. name: "Ear",
  50087. image: {
  50088. source: "./media/characters/roselle-st-papier/ear.svg"
  50089. }
  50090. },
  50091. },
  50092. [
  50093. {
  50094. name: "Normal",
  50095. height: math.unit(150, "feet"),
  50096. default: true
  50097. },
  50098. ]
  50099. ))
  50100. characterMakers.push(() => makeCharacter(
  50101. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50102. {
  50103. front: {
  50104. height: math.unit(1, "inches"),
  50105. name: "Front",
  50106. image: {
  50107. source: "./media/characters/valargent/front.svg",
  50108. extra: 1825/1694,
  50109. bottom: 62/1887
  50110. }
  50111. },
  50112. back: {
  50113. height: math.unit(1, "inches"),
  50114. name: "Back",
  50115. image: {
  50116. source: "./media/characters/valargent/back.svg",
  50117. extra: 1775/1682,
  50118. bottom: 88/1863
  50119. }
  50120. },
  50121. },
  50122. [
  50123. {
  50124. name: "Micro",
  50125. height: math.unit(1, "inch"),
  50126. default: true
  50127. },
  50128. ]
  50129. ))
  50130. characterMakers.push(() => makeCharacter(
  50131. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50132. {
  50133. front: {
  50134. height: math.unit(3.4, "meters"),
  50135. name: "Front",
  50136. image: {
  50137. source: "./media/characters/zarina/front.svg",
  50138. extra: 1733/1425,
  50139. bottom: 93/1826
  50140. }
  50141. },
  50142. squatting: {
  50143. height: math.unit(2.14, "meters"),
  50144. name: "Squatting",
  50145. image: {
  50146. source: "./media/characters/zarina/squatting.svg",
  50147. extra: 1073/788,
  50148. bottom: 63/1136
  50149. }
  50150. },
  50151. back: {
  50152. height: math.unit(2.14, "meters"),
  50153. name: "Back",
  50154. image: {
  50155. source: "./media/characters/zarina/back.svg",
  50156. extra: 1128/885,
  50157. bottom: 0/1128
  50158. }
  50159. },
  50160. },
  50161. [
  50162. {
  50163. name: "Normal",
  50164. height: math.unit(3.4, "meters"),
  50165. default: true
  50166. },
  50167. {
  50168. name: "Big",
  50169. height: math.unit(5, "meters")
  50170. },
  50171. {
  50172. name: "Macro",
  50173. height: math.unit(110, "meters")
  50174. },
  50175. ]
  50176. ))
  50177. characterMakers.push(() => makeCharacter(
  50178. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50179. {
  50180. front: {
  50181. height: math.unit(7, "feet"),
  50182. name: "Front",
  50183. image: {
  50184. source: "./media/characters/ventus-astro-fox/front.svg",
  50185. extra: 1792/1623,
  50186. bottom: 28/1820
  50187. }
  50188. },
  50189. back: {
  50190. height: math.unit(7, "feet"),
  50191. name: "Back",
  50192. image: {
  50193. source: "./media/characters/ventus-astro-fox/back.svg",
  50194. extra: 1789/1620,
  50195. bottom: 31/1820
  50196. }
  50197. },
  50198. outfit: {
  50199. height: math.unit(7, "feet"),
  50200. name: "Outfit",
  50201. image: {
  50202. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50203. extra: 1054/925,
  50204. bottom: 15/1069
  50205. }
  50206. },
  50207. head: {
  50208. height: math.unit(1.12, "feet"),
  50209. name: "Head",
  50210. image: {
  50211. source: "./media/characters/ventus-astro-fox/head.svg",
  50212. extra: 866/504,
  50213. bottom: 0/866
  50214. }
  50215. },
  50216. hand: {
  50217. height: math.unit(1, "feet"),
  50218. name: "Hand",
  50219. image: {
  50220. source: "./media/characters/ventus-astro-fox/hand.svg"
  50221. }
  50222. },
  50223. paw: {
  50224. height: math.unit(1.5, "feet"),
  50225. name: "Paw",
  50226. image: {
  50227. source: "./media/characters/ventus-astro-fox/paw.svg"
  50228. }
  50229. },
  50230. },
  50231. [
  50232. {
  50233. name: "Normal",
  50234. height: math.unit(7, "feet"),
  50235. default: true
  50236. },
  50237. {
  50238. name: "Macro",
  50239. height: math.unit(200, "feet")
  50240. },
  50241. {
  50242. name: "Cosmic",
  50243. height: math.unit(3, "universes")
  50244. },
  50245. ]
  50246. ))
  50247. characterMakers.push(() => makeCharacter(
  50248. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50249. {
  50250. front: {
  50251. height: math.unit(3, "meters"),
  50252. weight: math.unit(7000, "lb"),
  50253. name: "Front",
  50254. image: {
  50255. source: "./media/characters/core-t/front.svg",
  50256. extra: 5729/4941,
  50257. bottom: 1129/6858
  50258. }
  50259. },
  50260. },
  50261. [
  50262. {
  50263. name: "Big",
  50264. height: math.unit(3, "meters"),
  50265. default: true
  50266. },
  50267. ]
  50268. ))
  50269. characterMakers.push(() => makeCharacter(
  50270. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50271. {
  50272. normal: {
  50273. height: math.unit(6 + 6/12, "feet"),
  50274. weight: math.unit(275, "lb"),
  50275. name: "Front",
  50276. image: {
  50277. source: "./media/characters/cadbunny/normal.svg",
  50278. extra: 1129/947,
  50279. bottom: 93/1222
  50280. },
  50281. default: true,
  50282. form: "normal"
  50283. },
  50284. gigantamax: {
  50285. height: math.unit(26, "feet"),
  50286. weight: math.unit(16000, "lb"),
  50287. name: "Front",
  50288. image: {
  50289. source: "./media/characters/cadbunny/gigantamax.svg",
  50290. extra: 1133/944,
  50291. bottom: 90/1223
  50292. },
  50293. default: true,
  50294. form: "gigantamax"
  50295. },
  50296. },
  50297. [
  50298. {
  50299. name: "Normal",
  50300. height: math.unit(6 + 6/12, "feet"),
  50301. default: true,
  50302. form: "normal"
  50303. },
  50304. {
  50305. name: "Small",
  50306. height: math.unit(26, "feet"),
  50307. default: true,
  50308. form: "gigantamax"
  50309. },
  50310. {
  50311. name: "Large",
  50312. height: math.unit(78, "feet"),
  50313. form: "gigantamax"
  50314. },
  50315. ],
  50316. {
  50317. "normal": {
  50318. name: "Normal",
  50319. default: true
  50320. },
  50321. "gigantamax": {
  50322. name: "Gigantamax"
  50323. }
  50324. }
  50325. ))
  50326. characterMakers.push(() => makeCharacter(
  50327. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50328. {
  50329. anthroFront: {
  50330. height: math.unit(8, "feet"),
  50331. weight: math.unit(300, "lb"),
  50332. name: "Front",
  50333. image: {
  50334. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50335. extra: 1272/1176,
  50336. bottom: 53/1325
  50337. },
  50338. form: "anthro",
  50339. default: true
  50340. },
  50341. feralSide: {
  50342. height: math.unit(4, "feet"),
  50343. weight: math.unit(250, "lb"),
  50344. name: "Side",
  50345. image: {
  50346. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50347. extra: 731/621,
  50348. bottom: 0/731
  50349. },
  50350. form: "feral",
  50351. default: true
  50352. },
  50353. },
  50354. [
  50355. {
  50356. name: "Regular",
  50357. height: math.unit(8, "feet"),
  50358. form: "anthro"
  50359. },
  50360. {
  50361. name: "Macro",
  50362. height: math.unit(250, "feet"),
  50363. form: "anthro",
  50364. default: true
  50365. },
  50366. {
  50367. name: "Regular",
  50368. height: math.unit(4, "feet"),
  50369. form: "feral"
  50370. },
  50371. {
  50372. name: "Macro",
  50373. height: math.unit(125, "feet"),
  50374. form: "feral",
  50375. default: true
  50376. },
  50377. ],
  50378. {
  50379. "anthro": {
  50380. name: "Anthro",
  50381. default: true
  50382. },
  50383. "feral": {
  50384. name: "Feral",
  50385. },
  50386. }
  50387. ))
  50388. characterMakers.push(() => makeCharacter(
  50389. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50390. {
  50391. front: {
  50392. height: math.unit(11 + 10/12, "feet"),
  50393. weight: math.unit(1587, "kg"),
  50394. name: "Front",
  50395. image: {
  50396. source: "./media/characters/maple-javira-dragon/front.svg",
  50397. extra: 1136/744,
  50398. bottom: 73/1209
  50399. }
  50400. },
  50401. side: {
  50402. height: math.unit(11 + 10/12, "feet"),
  50403. weight: math.unit(1587, "kg"),
  50404. name: "Side",
  50405. image: {
  50406. source: "./media/characters/maple-javira-dragon/side.svg",
  50407. extra: 712/505,
  50408. bottom: 17/729
  50409. }
  50410. },
  50411. head: {
  50412. height: math.unit(8.05, "feet"),
  50413. name: "Head",
  50414. image: {
  50415. source: "./media/characters/maple-javira-dragon/head.svg",
  50416. extra: 1420/1344,
  50417. bottom: 0/1420
  50418. }
  50419. },
  50420. },
  50421. [
  50422. {
  50423. name: "Normal",
  50424. height: math.unit(11 + 10/12, "feet"),
  50425. default: true
  50426. },
  50427. ]
  50428. ))
  50429. characterMakers.push(() => makeCharacter(
  50430. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50431. {
  50432. front: {
  50433. height: math.unit(117, "cm"),
  50434. weight: math.unit(50, "kg"),
  50435. name: "Front",
  50436. image: {
  50437. source: "./media/characters/sonia-wyverntail/front.svg",
  50438. extra: 708/592,
  50439. bottom: 25/733
  50440. }
  50441. },
  50442. },
  50443. [
  50444. {
  50445. name: "Normal",
  50446. height: math.unit(117, "cm"),
  50447. default: true
  50448. },
  50449. ]
  50450. ))
  50451. characterMakers.push(() => makeCharacter(
  50452. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50453. {
  50454. front: {
  50455. height: math.unit(6 + 5/12, "feet"),
  50456. name: "Front",
  50457. image: {
  50458. source: "./media/characters/micah/front.svg",
  50459. extra: 1758/1546,
  50460. bottom: 214/1972
  50461. }
  50462. },
  50463. },
  50464. [
  50465. {
  50466. name: "Normal",
  50467. height: math.unit(6 + 5/12, "feet"),
  50468. default: true
  50469. },
  50470. ]
  50471. ))
  50472. characterMakers.push(() => makeCharacter(
  50473. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50474. {
  50475. front: {
  50476. height: math.unit(5 + 10/12, "feet"),
  50477. weight: math.unit(220, "lb"),
  50478. name: "Front",
  50479. image: {
  50480. source: "./media/characters/zarya/front.svg",
  50481. extra: 593/572,
  50482. bottom: 50/643
  50483. }
  50484. },
  50485. back: {
  50486. height: math.unit(5 + 10/12, "feet"),
  50487. weight: math.unit(220, "lb"),
  50488. name: "Back",
  50489. image: {
  50490. source: "./media/characters/zarya/back.svg",
  50491. extra: 603/582,
  50492. bottom: 38/641
  50493. }
  50494. },
  50495. },
  50496. [
  50497. {
  50498. name: "Normal",
  50499. height: math.unit(5 + 10/12, "feet"),
  50500. default: true
  50501. },
  50502. ]
  50503. ))
  50504. characterMakers.push(() => makeCharacter(
  50505. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50506. {
  50507. front: {
  50508. height: math.unit(7.5, "feet"),
  50509. name: "Front",
  50510. image: {
  50511. source: "./media/characters/sven-hatisson/front.svg",
  50512. extra: 917/857,
  50513. bottom: 42/959
  50514. }
  50515. },
  50516. back: {
  50517. height: math.unit(7.5, "feet"),
  50518. name: "Back",
  50519. image: {
  50520. source: "./media/characters/sven-hatisson/back.svg",
  50521. extra: 903/856,
  50522. bottom: 15/918
  50523. }
  50524. },
  50525. },
  50526. [
  50527. {
  50528. name: "Base Height",
  50529. height: math.unit(7.5, "feet")
  50530. },
  50531. {
  50532. name: "Usual Height",
  50533. height: math.unit(13.5, "feet"),
  50534. default: true
  50535. },
  50536. {
  50537. name: "Smaller Macro",
  50538. height: math.unit(85, "feet")
  50539. },
  50540. {
  50541. name: "Moderate Macro",
  50542. height: math.unit(320, "feet")
  50543. },
  50544. {
  50545. name: "Large Macro",
  50546. height: math.unit(1000, "feet")
  50547. },
  50548. {
  50549. name: "Largest Size",
  50550. height: math.unit(2, "miles")
  50551. },
  50552. ]
  50553. ))
  50554. characterMakers.push(() => makeCharacter(
  50555. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50556. {
  50557. side: {
  50558. height: math.unit(1.8, "meters"),
  50559. weight: math.unit(275, "kg"),
  50560. name: "Side",
  50561. image: {
  50562. source: "./media/characters/terra/side.svg",
  50563. extra: 1273/1147,
  50564. bottom: 0/1273
  50565. }
  50566. },
  50567. },
  50568. [
  50569. {
  50570. name: "Normal",
  50571. height: math.unit(16.2, "meters"),
  50572. default: true
  50573. },
  50574. ]
  50575. ))
  50576. characterMakers.push(() => makeCharacter(
  50577. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50578. {
  50579. borzoiFront: {
  50580. height: math.unit(6 + 9/12, "feet"),
  50581. name: "Front",
  50582. image: {
  50583. source: "./media/characters/rae/borzoi-front.svg",
  50584. extra: 1161/1098,
  50585. bottom: 31/1192
  50586. },
  50587. form: "borzoi",
  50588. default: true
  50589. },
  50590. werewolfFront: {
  50591. height: math.unit(8 + 7/12, "feet"),
  50592. name: "Front",
  50593. image: {
  50594. source: "./media/characters/rae/werewolf-front.svg",
  50595. extra: 1411/1334,
  50596. bottom: 127/1538
  50597. },
  50598. form: "werewolf",
  50599. default: true
  50600. },
  50601. },
  50602. [
  50603. {
  50604. name: "Normal",
  50605. height: math.unit(6 + 9/12, "feet"),
  50606. default: true,
  50607. form: "borzoi"
  50608. },
  50609. {
  50610. name: "Normal",
  50611. height: math.unit(8 + 7/12, "feet"),
  50612. default: true,
  50613. form: "werewolf"
  50614. },
  50615. ],
  50616. {
  50617. "borzoi": {
  50618. name: "Borzoi",
  50619. default: true
  50620. },
  50621. "werewolf": {
  50622. name: "Werewolf",
  50623. },
  50624. }
  50625. ))
  50626. characterMakers.push(() => makeCharacter(
  50627. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50628. {
  50629. front: {
  50630. height: math.unit(8 + 7/12, "feet"),
  50631. weight: math.unit(482, "lb"),
  50632. name: "Front",
  50633. image: {
  50634. source: "./media/characters/kit/front.svg",
  50635. extra: 1247/1103,
  50636. bottom: 41/1288
  50637. }
  50638. },
  50639. back: {
  50640. height: math.unit(8 + 7/12, "feet"),
  50641. weight: math.unit(482, "lb"),
  50642. name: "Back",
  50643. image: {
  50644. source: "./media/characters/kit/back.svg",
  50645. extra: 1252/1123,
  50646. bottom: 21/1273
  50647. }
  50648. },
  50649. paw: {
  50650. height: math.unit(1.46, "feet"),
  50651. name: "Paw",
  50652. image: {
  50653. source: "./media/characters/kit/paw.svg"
  50654. }
  50655. },
  50656. },
  50657. [
  50658. {
  50659. name: "Normal",
  50660. height: math.unit(2.61, "meters"),
  50661. default: true
  50662. },
  50663. {
  50664. name: "\"Tall\"",
  50665. height: math.unit(8.21, "meters")
  50666. },
  50667. {
  50668. name: "Tall",
  50669. height: math.unit(19.6, "meters")
  50670. },
  50671. {
  50672. name: "Very Tall",
  50673. height: math.unit(57.91, "meters")
  50674. },
  50675. {
  50676. name: "Semi-Macro",
  50677. height: math.unit(138.64, "meters")
  50678. },
  50679. {
  50680. name: "Macro",
  50681. height: math.unit(831.99, "meters")
  50682. },
  50683. {
  50684. name: "EX-Macro",
  50685. height: math.unit(96451121, "meters")
  50686. },
  50687. {
  50688. name: "S1-Omnipotent",
  50689. height: math.unit(4.42074e+9, "meters")
  50690. },
  50691. {
  50692. name: "S2-Omnipotent",
  50693. height: math.unit(9.42074e+17, "meters")
  50694. },
  50695. {
  50696. name: "Omnipotent",
  50697. height: math.unit(4.23112e+24, "meters")
  50698. },
  50699. {
  50700. name: "Hypergod",
  50701. height: math.unit(5.05176e+27, "meters")
  50702. },
  50703. {
  50704. name: "Hypergod-EX",
  50705. height: math.unit(9.45532e+49, "meters")
  50706. },
  50707. {
  50708. name: "Hypergod-SP",
  50709. height: math.unit(9.45532e+195, "meters")
  50710. },
  50711. ]
  50712. ))
  50713. characterMakers.push(() => makeCharacter(
  50714. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50715. {
  50716. side: {
  50717. height: math.unit(0.6, "meters"),
  50718. weight: math.unit(24, "kg"),
  50719. name: "Side",
  50720. image: {
  50721. source: "./media/characters/celeste/side.svg",
  50722. extra: 810/517,
  50723. bottom: 53/863
  50724. }
  50725. },
  50726. },
  50727. [
  50728. {
  50729. name: "Velociraptor",
  50730. height: math.unit(0.6, "meters"),
  50731. default: true
  50732. },
  50733. {
  50734. name: "Utahraptor",
  50735. height: math.unit(1.8, "meters")
  50736. },
  50737. {
  50738. name: "Gallimimus",
  50739. height: math.unit(4.0, "meters")
  50740. },
  50741. {
  50742. name: "Large",
  50743. height: math.unit(20, "meters")
  50744. },
  50745. {
  50746. name: "Planetary",
  50747. height: math.unit(50, "megameters")
  50748. },
  50749. {
  50750. name: "Stellar",
  50751. height: math.unit(1.5, "gigameters")
  50752. },
  50753. {
  50754. name: "Galactic",
  50755. height: math.unit(100, "exameters")
  50756. },
  50757. ]
  50758. ))
  50759. characterMakers.push(() => makeCharacter(
  50760. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50761. {
  50762. front: {
  50763. height: math.unit(6, "feet"),
  50764. weight: math.unit(210, "lb"),
  50765. name: "Front",
  50766. image: {
  50767. source: "./media/characters/glacia/front.svg",
  50768. extra: 958/901,
  50769. bottom: 45/1003
  50770. }
  50771. },
  50772. },
  50773. [
  50774. {
  50775. name: "Macro",
  50776. height: math.unit(1000, "meters"),
  50777. default: true
  50778. },
  50779. ]
  50780. ))
  50781. characterMakers.push(() => makeCharacter(
  50782. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50783. {
  50784. front: {
  50785. height: math.unit(4, "meters"),
  50786. name: "Front",
  50787. image: {
  50788. source: "./media/characters/giri/front.svg",
  50789. extra: 966/894,
  50790. bottom: 21/987
  50791. }
  50792. },
  50793. },
  50794. [
  50795. {
  50796. name: "Normal",
  50797. height: math.unit(4, "meters"),
  50798. default: true
  50799. },
  50800. ]
  50801. ))
  50802. characterMakers.push(() => makeCharacter(
  50803. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50804. {
  50805. back: {
  50806. height: math.unit(4, "feet"),
  50807. weight: math.unit(37, "lb"),
  50808. name: "Back",
  50809. image: {
  50810. source: "./media/characters/tin/back.svg",
  50811. extra: 845/780,
  50812. bottom: 28/873
  50813. }
  50814. },
  50815. },
  50816. [
  50817. {
  50818. name: "Normal",
  50819. height: math.unit(4, "feet"),
  50820. default: true
  50821. },
  50822. ]
  50823. ))
  50824. characterMakers.push(() => makeCharacter(
  50825. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50826. {
  50827. front: {
  50828. height: math.unit(25, "feet"),
  50829. name: "Front",
  50830. image: {
  50831. source: "./media/characters/cadenza-vivace/front.svg",
  50832. extra: 1842/1578,
  50833. bottom: 30/1872
  50834. }
  50835. },
  50836. },
  50837. [
  50838. {
  50839. name: "Macro",
  50840. height: math.unit(25, "feet"),
  50841. default: true
  50842. },
  50843. ]
  50844. ))
  50845. characterMakers.push(() => makeCharacter(
  50846. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50847. {
  50848. front: {
  50849. height: math.unit(10, "feet"),
  50850. weight: math.unit(625, "kg"),
  50851. name: "Front",
  50852. image: {
  50853. source: "./media/characters/zain/front.svg",
  50854. extra: 1682/1498,
  50855. bottom: 223/1905
  50856. }
  50857. },
  50858. back: {
  50859. height: math.unit(10, "feet"),
  50860. weight: math.unit(625, "kg"),
  50861. name: "Back",
  50862. image: {
  50863. source: "./media/characters/zain/back.svg",
  50864. extra: 1814/1657,
  50865. bottom: 152/1966
  50866. }
  50867. },
  50868. head: {
  50869. height: math.unit(10, "feet"),
  50870. weight: math.unit(625, "kg"),
  50871. name: "Head",
  50872. image: {
  50873. source: "./media/characters/zain/head.svg",
  50874. extra: 1059/762,
  50875. bottom: 0/1059
  50876. }
  50877. },
  50878. },
  50879. [
  50880. {
  50881. name: "Normal",
  50882. height: math.unit(10, "feet"),
  50883. default: true
  50884. },
  50885. ]
  50886. ))
  50887. characterMakers.push(() => makeCharacter(
  50888. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50889. {
  50890. front: {
  50891. height: math.unit(6 + 5/12, "feet"),
  50892. weight: math.unit(750, "lb"),
  50893. name: "Front",
  50894. image: {
  50895. source: "./media/characters/ruchex/front.svg",
  50896. extra: 877/820,
  50897. bottom: 17/894
  50898. },
  50899. extraAttributes: {
  50900. "width": {
  50901. name: "Width",
  50902. power: 1,
  50903. type: "length",
  50904. base: math.unit(4.757, "feet")
  50905. },
  50906. }
  50907. },
  50908. },
  50909. [
  50910. {
  50911. name: "Normal",
  50912. height: math.unit(6 + 5/12, "feet"),
  50913. default: true
  50914. },
  50915. ]
  50916. ))
  50917. characterMakers.push(() => makeCharacter(
  50918. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50919. {
  50920. dressedFront: {
  50921. height: math.unit(191, "cm"),
  50922. weight: math.unit(80, "kg"),
  50923. name: "Front",
  50924. image: {
  50925. source: "./media/characters/buster/dressed-front.svg",
  50926. extra: 1022/973,
  50927. bottom: 69/1091
  50928. }
  50929. },
  50930. dressedBack: {
  50931. height: math.unit(191, "cm"),
  50932. weight: math.unit(80, "kg"),
  50933. name: "Back",
  50934. image: {
  50935. source: "./media/characters/buster/dressed-back.svg",
  50936. extra: 1018/970,
  50937. bottom: 55/1073
  50938. }
  50939. },
  50940. nudeFront: {
  50941. height: math.unit(191, "cm"),
  50942. weight: math.unit(80, "kg"),
  50943. name: "Front (Nude)",
  50944. image: {
  50945. source: "./media/characters/buster/nude-front.svg",
  50946. extra: 1022/973,
  50947. bottom: 69/1091
  50948. }
  50949. },
  50950. nudeBack: {
  50951. height: math.unit(191, "cm"),
  50952. weight: math.unit(80, "kg"),
  50953. name: "Back (Nude)",
  50954. image: {
  50955. source: "./media/characters/buster/nude-back.svg",
  50956. extra: 1018/970,
  50957. bottom: 55/1073
  50958. }
  50959. },
  50960. dick: {
  50961. height: math.unit(2.59, "feet"),
  50962. name: "Dick",
  50963. image: {
  50964. source: "./media/characters/buster/dick.svg"
  50965. }
  50966. },
  50967. ass: {
  50968. height: math.unit(1.2, "feet"),
  50969. name: "Ass",
  50970. image: {
  50971. source: "./media/characters/buster/ass.svg"
  50972. }
  50973. },
  50974. },
  50975. [
  50976. {
  50977. name: "Normal",
  50978. height: math.unit(191, "cm"),
  50979. default: true
  50980. },
  50981. ]
  50982. ))
  50983. characterMakers.push(() => makeCharacter(
  50984. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50985. {
  50986. side: {
  50987. height: math.unit(8.1, "feet"),
  50988. weight: math.unit(3500, "lb"),
  50989. name: "Side",
  50990. image: {
  50991. source: "./media/characters/sonya/side.svg",
  50992. extra: 1730/1317,
  50993. bottom: 86/1816
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(8.1, "feet"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51007. {
  51008. front: {
  51009. height: math.unit(6, "feet"),
  51010. weight: math.unit(150, "lb"),
  51011. name: "Front",
  51012. image: {
  51013. source: "./media/characters/cadence-andrysiak/front.svg",
  51014. extra: 1164/1121,
  51015. bottom: 60/1224
  51016. }
  51017. },
  51018. back: {
  51019. height: math.unit(6, "feet"),
  51020. weight: math.unit(150, "lb"),
  51021. name: "Back",
  51022. image: {
  51023. source: "./media/characters/cadence-andrysiak/back.svg",
  51024. extra: 1200/1165,
  51025. bottom: 9/1209
  51026. }
  51027. },
  51028. dressed: {
  51029. height: math.unit(6, "feet"),
  51030. weight: math.unit(150, "lb"),
  51031. name: "Dressed",
  51032. image: {
  51033. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51034. extra: 1164/1121,
  51035. bottom: 60/1224
  51036. }
  51037. },
  51038. },
  51039. [
  51040. {
  51041. name: "Micro",
  51042. height: math.unit(1, "mm")
  51043. },
  51044. {
  51045. name: "Normal",
  51046. height: math.unit(6, "feet"),
  51047. default: true
  51048. },
  51049. ]
  51050. ))
  51051. characterMakers.push(() => makeCharacter(
  51052. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51053. {
  51054. front: {
  51055. height: math.unit(60, "inches"),
  51056. weight: math.unit(16, "lb"),
  51057. preyCapacity: math.unit(80, "liters"),
  51058. name: "Front",
  51059. image: {
  51060. source: "./media/characters/penny-lynx/front.svg",
  51061. extra: 1959/1769,
  51062. bottom: 49/2008
  51063. }
  51064. },
  51065. },
  51066. [
  51067. {
  51068. name: "Nokia",
  51069. height: math.unit(2, "inches")
  51070. },
  51071. {
  51072. name: "Desktop",
  51073. height: math.unit(24, "inches")
  51074. },
  51075. {
  51076. name: "TV",
  51077. height: math.unit(60, "inches")
  51078. },
  51079. {
  51080. name: "Jumbotron",
  51081. height: math.unit(12, "feet")
  51082. },
  51083. {
  51084. name: "Billboard",
  51085. height: math.unit(48, "feet"),
  51086. default: true
  51087. },
  51088. {
  51089. name: "IMAX",
  51090. height: math.unit(96, "feet")
  51091. },
  51092. {
  51093. name: "SINGULARITY",
  51094. height: math.unit(864938, "miles")
  51095. },
  51096. ]
  51097. ))
  51098. characterMakers.push(() => makeCharacter(
  51099. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51100. {
  51101. front: {
  51102. height: math.unit(5 + 4/12, "feet"),
  51103. weight: math.unit(230, "lb"),
  51104. name: "Front",
  51105. image: {
  51106. source: "./media/characters/sukebe/front.svg",
  51107. extra: 2130/2038,
  51108. bottom: 90/2220
  51109. }
  51110. },
  51111. back: {
  51112. height: math.unit(3.48, "feet"),
  51113. weight: math.unit(230, "lb"),
  51114. name: "Back",
  51115. image: {
  51116. source: "./media/characters/sukebe/back.svg",
  51117. extra: 1670/1604,
  51118. bottom: 0/1670
  51119. }
  51120. },
  51121. },
  51122. [
  51123. {
  51124. name: "Normal",
  51125. height: math.unit(5 + 4/12, "feet"),
  51126. default: true
  51127. },
  51128. ]
  51129. ))
  51130. characterMakers.push(() => makeCharacter(
  51131. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51132. {
  51133. front: {
  51134. height: math.unit(6, "feet"),
  51135. name: "Front",
  51136. image: {
  51137. source: "./media/characters/nylla/front.svg",
  51138. extra: 1868/1699,
  51139. bottom: 97/1965
  51140. }
  51141. },
  51142. back: {
  51143. height: math.unit(6, "feet"),
  51144. name: "Back",
  51145. image: {
  51146. source: "./media/characters/nylla/back.svg",
  51147. extra: 1889/1712,
  51148. bottom: 93/1982
  51149. }
  51150. },
  51151. frontNsfw: {
  51152. height: math.unit(6, "feet"),
  51153. name: "Front (NSFW)",
  51154. image: {
  51155. source: "./media/characters/nylla/front-nsfw.svg",
  51156. extra: 1868/1699,
  51157. bottom: 97/1965
  51158. },
  51159. extraAttributes: {
  51160. "dickLength": {
  51161. name: "Dick Length",
  51162. power: 1,
  51163. type: "length",
  51164. base: math.unit(1.4, "feet")
  51165. },
  51166. "cumVolume": {
  51167. name: "Cum Volume",
  51168. power: 3,
  51169. type: "volume",
  51170. base: math.unit(100, "mL")
  51171. },
  51172. }
  51173. },
  51174. backNsfw: {
  51175. height: math.unit(6, "feet"),
  51176. name: "Back (NSFW)",
  51177. image: {
  51178. source: "./media/characters/nylla/back-nsfw.svg",
  51179. extra: 1889/1712,
  51180. bottom: 93/1982
  51181. }
  51182. },
  51183. maw: {
  51184. height: math.unit(2.10, "feet"),
  51185. name: "Maw",
  51186. image: {
  51187. source: "./media/characters/nylla/maw.svg"
  51188. }
  51189. },
  51190. paws: {
  51191. height: math.unit(2.06, "feet"),
  51192. name: "Paws",
  51193. image: {
  51194. source: "./media/characters/nylla/paws.svg"
  51195. }
  51196. },
  51197. muzzle: {
  51198. height: math.unit(0.61, "feet"),
  51199. name: "Muzzle",
  51200. image: {
  51201. source: "./media/characters/nylla/muzzle.svg"
  51202. }
  51203. },
  51204. sheath: {
  51205. height: math.unit(1.305, "feet"),
  51206. name: "Sheath",
  51207. image: {
  51208. source: "./media/characters/nylla/sheath.svg"
  51209. }
  51210. },
  51211. },
  51212. [
  51213. {
  51214. name: "Micro",
  51215. height: math.unit(7.5, "inches")
  51216. },
  51217. {
  51218. name: "Normal",
  51219. height: math.unit(7, "feet"),
  51220. default: true
  51221. },
  51222. {
  51223. name: "Macro",
  51224. height: math.unit(60, "feet")
  51225. },
  51226. {
  51227. name: "Mega",
  51228. height: math.unit(200, "feet")
  51229. },
  51230. ]
  51231. ))
  51232. characterMakers.push(() => makeCharacter(
  51233. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51234. {
  51235. front: {
  51236. height: math.unit(10, "feet"),
  51237. weight: math.unit(2300, "lb"),
  51238. name: "Front",
  51239. image: {
  51240. source: "./media/characters/hunt3r/front.svg",
  51241. extra: 1909/1742,
  51242. bottom: 46/1955
  51243. }
  51244. },
  51245. },
  51246. [
  51247. {
  51248. name: "Normal",
  51249. height: math.unit(10, "feet"),
  51250. default: true
  51251. },
  51252. ]
  51253. ))
  51254. characterMakers.push(() => makeCharacter(
  51255. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51256. {
  51257. dressed: {
  51258. height: math.unit(11, "feet"),
  51259. weight: math.unit(18500, "lb"),
  51260. preyCapacity: math.unit(9, "people"),
  51261. name: "Dressed",
  51262. image: {
  51263. source: "./media/characters/cylphis/dressed.svg",
  51264. extra: 1028/1003,
  51265. bottom: 75/1103
  51266. },
  51267. },
  51268. undressed: {
  51269. height: math.unit(11, "feet"),
  51270. weight: math.unit(18500, "lb"),
  51271. preyCapacity: math.unit(9, "people"),
  51272. name: "Undressed",
  51273. image: {
  51274. source: "./media/characters/cylphis/undressed.svg",
  51275. extra: 1028/1003,
  51276. bottom: 75/1103
  51277. }
  51278. },
  51279. full: {
  51280. height: math.unit(11, "feet"),
  51281. weight: math.unit(18500 + 150*9, "lb"),
  51282. preyCapacity: math.unit(9, "people"),
  51283. name: "Full",
  51284. image: {
  51285. source: "./media/characters/cylphis/full.svg",
  51286. extra: 1028/1003,
  51287. bottom: 75/1103
  51288. }
  51289. },
  51290. },
  51291. [
  51292. {
  51293. name: "Small",
  51294. height: math.unit(8, "feet")
  51295. },
  51296. {
  51297. name: "Normal",
  51298. height: math.unit(11, "feet"),
  51299. default: true
  51300. },
  51301. ]
  51302. ))
  51303. characterMakers.push(() => makeCharacter(
  51304. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51305. {
  51306. front: {
  51307. height: math.unit(2 + 7/12, "feet"),
  51308. name: "Front",
  51309. image: {
  51310. source: "./media/characters/orishan/front.svg",
  51311. extra: 1058/1023,
  51312. bottom: 23/1081
  51313. }
  51314. },
  51315. back: {
  51316. height: math.unit(2 + 7/12, "feet"),
  51317. name: "Back",
  51318. image: {
  51319. source: "./media/characters/orishan/back.svg",
  51320. extra: 1058/1023,
  51321. bottom: 23/1081
  51322. }
  51323. },
  51324. },
  51325. [
  51326. {
  51327. name: "Micro",
  51328. height: math.unit(2, "cm")
  51329. },
  51330. {
  51331. name: "Normal",
  51332. height: math.unit(2 + 7/12, "feet"),
  51333. default: true
  51334. },
  51335. ]
  51336. ))
  51337. characterMakers.push(() => makeCharacter(
  51338. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51339. {
  51340. front: {
  51341. height: math.unit(3, "meters"),
  51342. weight: math.unit(508, "kg"),
  51343. name: "Front",
  51344. image: {
  51345. source: "./media/characters/seranis/front.svg",
  51346. extra: 1478/1454,
  51347. bottom: 41/1519
  51348. }
  51349. },
  51350. },
  51351. [
  51352. {
  51353. name: "Normal",
  51354. height: math.unit(3, "meters"),
  51355. default: true
  51356. },
  51357. {
  51358. name: "Macro",
  51359. height: math.unit(108, "meters")
  51360. },
  51361. {
  51362. name: "Megamacro",
  51363. height: math.unit(1250, "meters")
  51364. },
  51365. ]
  51366. ))
  51367. characterMakers.push(() => makeCharacter(
  51368. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51369. {
  51370. undressed: {
  51371. height: math.unit(5 + 3/12, "feet"),
  51372. name: "Undressed",
  51373. image: {
  51374. source: "./media/characters/ankou/undressed.svg",
  51375. extra: 1301/1213,
  51376. bottom: 87/1388
  51377. }
  51378. },
  51379. dressed: {
  51380. height: math.unit(5 + 3/12, "feet"),
  51381. name: "Dressed",
  51382. image: {
  51383. source: "./media/characters/ankou/dressed.svg",
  51384. extra: 1301/1213,
  51385. bottom: 87/1388
  51386. }
  51387. },
  51388. head: {
  51389. height: math.unit(1.61, "feet"),
  51390. name: "Head",
  51391. image: {
  51392. source: "./media/characters/ankou/head.svg"
  51393. }
  51394. },
  51395. },
  51396. [
  51397. {
  51398. name: "Normal",
  51399. height: math.unit(5 + 3/12, "feet"),
  51400. default: true
  51401. },
  51402. ]
  51403. ))
  51404. characterMakers.push(() => makeCharacter(
  51405. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51406. {
  51407. side: {
  51408. height: math.unit(6 + 3/12, "feet"),
  51409. weight: math.unit(200, "kg"),
  51410. name: "Side",
  51411. image: {
  51412. source: "./media/characters/juniper-skunktaur/side.svg",
  51413. extra: 1574/1229,
  51414. bottom: 38/1612
  51415. }
  51416. },
  51417. front: {
  51418. height: math.unit(6 + 3/12, "feet"),
  51419. weight: math.unit(200, "kg"),
  51420. name: "Front",
  51421. image: {
  51422. source: "./media/characters/juniper-skunktaur/front.svg",
  51423. extra: 1337/1278,
  51424. bottom: 22/1359
  51425. }
  51426. },
  51427. back: {
  51428. height: math.unit(6 + 3/12, "feet"),
  51429. weight: math.unit(200, "kg"),
  51430. name: "Back",
  51431. image: {
  51432. source: "./media/characters/juniper-skunktaur/back.svg",
  51433. extra: 1618/1273,
  51434. bottom: 13/1631
  51435. }
  51436. },
  51437. top: {
  51438. height: math.unit(2.62, "feet"),
  51439. weight: math.unit(200, "kg"),
  51440. name: "Top",
  51441. image: {
  51442. source: "./media/characters/juniper-skunktaur/top.svg"
  51443. }
  51444. },
  51445. },
  51446. [
  51447. {
  51448. name: "Normal",
  51449. height: math.unit(6 + 3/12, "feet"),
  51450. default: true
  51451. },
  51452. ]
  51453. ))
  51454. //characters
  51455. function makeCharacters() {
  51456. const results = [];
  51457. characterMakers.forEach(character => {
  51458. results.push(character());
  51459. });
  51460. return results;
  51461. }