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.
 
 
 

52775 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: "Shortstack",
  3354. height: math.unit(3, "feet"),
  3355. default: true
  3356. },
  3357. {
  3358. name: "Normal",
  3359. height: math.unit(5 + 5 / 12, "feet")
  3360. },
  3361. {
  3362. name: "Large",
  3363. height: math.unit(12, "feet")
  3364. },
  3365. {
  3366. name: "Macro",
  3367. height: math.unit(100, "feet")
  3368. },
  3369. {
  3370. name: "Macro+",
  3371. height: math.unit(260, "feet")
  3372. },
  3373. {
  3374. name: "Macro++",
  3375. height: math.unit(1, "mile")
  3376. },
  3377. ]
  3378. ))
  3379. characterMakers.push(() => makeCharacter(
  3380. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3381. {
  3382. front: {
  3383. height: math.unit(6, "feet"),
  3384. weight: math.unit(75, "kg"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/malik/front.svg",
  3388. extra: 1750/1561,
  3389. bottom: 80/1830
  3390. },
  3391. extraAttributes: {
  3392. "toeSize": {
  3393. name: "Toe Size",
  3394. power: 2,
  3395. type: "area",
  3396. base: math.unit(0.0159, "m^2")
  3397. },
  3398. "pawSize": {
  3399. name: "Paw Size",
  3400. power: 2,
  3401. type: "area",
  3402. base: math.unit(0.09834, "m^2")
  3403. },
  3404. }
  3405. },
  3406. side: {
  3407. height: math.unit(6, "feet"),
  3408. weight: math.unit(75, "kg"),
  3409. name: "Side",
  3410. image: {
  3411. source: "./media/characters/malik/side.svg",
  3412. extra: 1802/1685,
  3413. bottom: 42/1844
  3414. },
  3415. extraAttributes: {
  3416. "toeSize": {
  3417. name: "Toe Size",
  3418. power: 2,
  3419. type: "area",
  3420. base: math.unit(0.0159, "m^2")
  3421. },
  3422. "pawSize": {
  3423. name: "Paw Size",
  3424. power: 2,
  3425. type: "area",
  3426. base: math.unit(0.09834, "m^2")
  3427. },
  3428. }
  3429. },
  3430. back: {
  3431. height: math.unit(6, "feet"),
  3432. weight: math.unit(75, "kg"),
  3433. name: "Back",
  3434. image: {
  3435. source: "./media/characters/malik/back.svg",
  3436. extra: 1803/1607,
  3437. bottom: 33/1836
  3438. },
  3439. extraAttributes: {
  3440. "toeSize": {
  3441. name: "Toe Size",
  3442. power: 2,
  3443. type: "area",
  3444. base: math.unit(0.0159, "m^2")
  3445. },
  3446. "pawSize": {
  3447. name: "Paw Size",
  3448. power: 2,
  3449. type: "area",
  3450. base: math.unit(0.09834, "m^2")
  3451. },
  3452. }
  3453. },
  3454. },
  3455. [
  3456. {
  3457. name: "Macro",
  3458. height: math.unit(156, "feet"),
  3459. default: true
  3460. },
  3461. {
  3462. name: "Macro+",
  3463. height: math.unit(1188, "feet")
  3464. },
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(6, "feet"),
  3472. weight: math.unit(75, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/sefer/front.svg",
  3476. extra: 848 / 659,
  3477. bottom: 28.3 / 876.442
  3478. }
  3479. },
  3480. back: {
  3481. height: math.unit(6, "feet"),
  3482. weight: math.unit(75, "kg"),
  3483. name: "Back",
  3484. image: {
  3485. source: "./media/characters/sefer/back.svg",
  3486. extra: 864 / 695,
  3487. bottom: 10 / 871
  3488. }
  3489. },
  3490. frontDressed: {
  3491. height: math.unit(6, "feet"),
  3492. weight: math.unit(75, "kg"),
  3493. name: "Front (Dressed)",
  3494. image: {
  3495. source: "./media/characters/sefer/front-dressed.svg",
  3496. extra: 839 / 653,
  3497. bottom: 37.6 / 878
  3498. }
  3499. },
  3500. },
  3501. [
  3502. {
  3503. name: "Normal",
  3504. height: math.unit(6, "feet"),
  3505. default: true
  3506. },
  3507. ]
  3508. ))
  3509. characterMakers.push(() => makeCharacter(
  3510. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3511. {
  3512. body: {
  3513. height: math.unit(2.2428, "meter"),
  3514. weight: math.unit(124.738, "kg"),
  3515. name: "Body",
  3516. image: {
  3517. extra: 1225 / 1050,
  3518. source: "./media/characters/north/front.svg"
  3519. }
  3520. }
  3521. },
  3522. [
  3523. {
  3524. name: "Micro",
  3525. height: math.unit(4, "inches")
  3526. },
  3527. {
  3528. name: "Macro",
  3529. height: math.unit(63, "meters")
  3530. },
  3531. {
  3532. name: "Megamacro",
  3533. height: math.unit(101, "miles"),
  3534. default: true
  3535. }
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3540. {
  3541. angled: {
  3542. height: math.unit(4, "meter"),
  3543. weight: math.unit(150, "kg"),
  3544. name: "Angled",
  3545. image: {
  3546. source: "./media/characters/talan/angled-sfw.svg",
  3547. bottom: 29 / 3734
  3548. }
  3549. },
  3550. angledNsfw: {
  3551. height: math.unit(4, "meter"),
  3552. weight: math.unit(150, "kg"),
  3553. name: "Angled (NSFW)",
  3554. image: {
  3555. source: "./media/characters/talan/angled-nsfw.svg",
  3556. bottom: 29 / 3734
  3557. }
  3558. },
  3559. frontNsfw: {
  3560. height: math.unit(4, "meter"),
  3561. weight: math.unit(150, "kg"),
  3562. name: "Front (NSFW)",
  3563. image: {
  3564. source: "./media/characters/talan/front-nsfw.svg",
  3565. bottom: 29 / 3734
  3566. }
  3567. },
  3568. sideNsfw: {
  3569. height: math.unit(4, "meter"),
  3570. weight: math.unit(150, "kg"),
  3571. name: "Side (NSFW)",
  3572. image: {
  3573. source: "./media/characters/talan/side-nsfw.svg",
  3574. bottom: 29 / 3734
  3575. }
  3576. },
  3577. back: {
  3578. height: math.unit(4, "meter"),
  3579. weight: math.unit(150, "kg"),
  3580. name: "Back",
  3581. image: {
  3582. source: "./media/characters/talan/back.svg"
  3583. }
  3584. },
  3585. dickBottom: {
  3586. height: math.unit(0.621, "meter"),
  3587. name: "Dick (Bottom)",
  3588. image: {
  3589. source: "./media/characters/talan/dick-bottom.svg"
  3590. }
  3591. },
  3592. dickTop: {
  3593. height: math.unit(0.621, "meter"),
  3594. name: "Dick (Top)",
  3595. image: {
  3596. source: "./media/characters/talan/dick-top.svg"
  3597. }
  3598. },
  3599. dickSide: {
  3600. height: math.unit(0.305, "meter"),
  3601. name: "Dick (Side)",
  3602. image: {
  3603. source: "./media/characters/talan/dick-side.svg"
  3604. }
  3605. },
  3606. dickFront: {
  3607. height: math.unit(0.305, "meter"),
  3608. name: "Dick (Front)",
  3609. image: {
  3610. source: "./media/characters/talan/dick-front.svg"
  3611. }
  3612. },
  3613. },
  3614. [
  3615. {
  3616. name: "Normal",
  3617. height: math.unit(4, "meters")
  3618. },
  3619. {
  3620. name: "Macro",
  3621. height: math.unit(100, "meters")
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(2, "miles"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Gigamacro",
  3630. height: math.unit(5000, "miles")
  3631. },
  3632. {
  3633. name: "Teramacro",
  3634. height: math.unit(100, "parsecs")
  3635. }
  3636. ]
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3640. {
  3641. front: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(90, "kg"),
  3644. name: "Front",
  3645. image: {
  3646. source: "./media/characters/gael'rathus/front.svg"
  3647. }
  3648. },
  3649. frontAlt: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(90, "kg"),
  3652. name: "Front (alt)",
  3653. image: {
  3654. source: "./media/characters/gael'rathus/front-alt.svg"
  3655. }
  3656. },
  3657. frontAlt2: {
  3658. height: math.unit(2, "meter"),
  3659. weight: math.unit(90, "kg"),
  3660. name: "Front (alt 2)",
  3661. image: {
  3662. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3663. }
  3664. }
  3665. },
  3666. [
  3667. {
  3668. name: "Normal",
  3669. height: math.unit(9, "feet"),
  3670. default: true
  3671. },
  3672. {
  3673. name: "Large",
  3674. height: math.unit(25, "feet")
  3675. },
  3676. {
  3677. name: "Macro",
  3678. height: math.unit(0.25, "miles")
  3679. },
  3680. {
  3681. name: "Megamacro",
  3682. height: math.unit(10, "miles")
  3683. }
  3684. ]
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3688. {
  3689. side: {
  3690. height: math.unit(2, "meter"),
  3691. weight: math.unit(140, "kg"),
  3692. name: "Side",
  3693. image: {
  3694. source: "./media/characters/sosha/side.svg",
  3695. extra: 1170/1006,
  3696. bottom: 94/1264
  3697. }
  3698. },
  3699. maw: {
  3700. height: math.unit(2.87, "feet"),
  3701. name: "Maw",
  3702. image: {
  3703. source: "./media/characters/sosha/maw.svg",
  3704. extra: 966/865,
  3705. bottom: 0/966
  3706. }
  3707. },
  3708. cooch: {
  3709. height: math.unit(5.6, "feet"),
  3710. name: "Cooch",
  3711. image: {
  3712. source: "./media/characters/sosha/cooch.svg"
  3713. }
  3714. },
  3715. },
  3716. [
  3717. {
  3718. name: "Normal",
  3719. height: math.unit(12, "feet"),
  3720. default: true
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3726. {
  3727. side: {
  3728. height: math.unit(5 + 5 / 12, "feet"),
  3729. weight: math.unit(170, "kg"),
  3730. name: "Side",
  3731. image: {
  3732. source: "./media/characters/runnola/side.svg",
  3733. extra: 741 / 448,
  3734. bottom: 0.05
  3735. }
  3736. },
  3737. },
  3738. [
  3739. {
  3740. name: "Small",
  3741. height: math.unit(3, "feet")
  3742. },
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(5 + 5 / 12, "feet"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Big",
  3750. height: math.unit(10, "feet")
  3751. },
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(50, "kg"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/kurribird/front.svg",
  3763. bottom: 0.015
  3764. }
  3765. },
  3766. frontAlt: {
  3767. height: math.unit(1.5, "meter"),
  3768. weight: math.unit(50, "kg"),
  3769. name: "Front (Alt)",
  3770. image: {
  3771. source: "./media/characters/kurribird/front-alt.svg",
  3772. extra: 1.45
  3773. }
  3774. },
  3775. },
  3776. [
  3777. {
  3778. name: "Normal",
  3779. height: math.unit(7, "feet")
  3780. },
  3781. {
  3782. name: "Big",
  3783. height: math.unit(12, "feet"),
  3784. default: true
  3785. },
  3786. {
  3787. name: "Macro",
  3788. height: math.unit(1500, "feet")
  3789. },
  3790. {
  3791. name: "Megamacro",
  3792. height: math.unit(2, "miles")
  3793. }
  3794. ]
  3795. ))
  3796. characterMakers.push(() => makeCharacter(
  3797. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3798. {
  3799. front: {
  3800. height: math.unit(2, "meter"),
  3801. weight: math.unit(80, "kg"),
  3802. name: "Front",
  3803. image: {
  3804. source: "./media/characters/elbial/front.svg",
  3805. extra: 1643 / 1556,
  3806. bottom: 60.2 / 1696
  3807. }
  3808. },
  3809. side: {
  3810. height: math.unit(2, "meter"),
  3811. weight: math.unit(80, "kg"),
  3812. name: "Side",
  3813. image: {
  3814. source: "./media/characters/elbial/side.svg",
  3815. extra: 1601/1528,
  3816. bottom: 97/1698
  3817. }
  3818. },
  3819. back: {
  3820. height: math.unit(2, "meter"),
  3821. weight: math.unit(80, "kg"),
  3822. name: "Back",
  3823. image: {
  3824. source: "./media/characters/elbial/back.svg",
  3825. extra: 1653/1569,
  3826. bottom: 20/1673
  3827. }
  3828. },
  3829. frontDressed: {
  3830. height: math.unit(2, "meter"),
  3831. weight: math.unit(80, "kg"),
  3832. name: "Front (Dressed)",
  3833. image: {
  3834. source: "./media/characters/elbial/front-dressed.svg",
  3835. extra: 1638/1569,
  3836. bottom: 70/1708
  3837. }
  3838. },
  3839. genitals: {
  3840. height: math.unit(2 / 3.367, "meter"),
  3841. name: "Genitals",
  3842. image: {
  3843. source: "./media/characters/elbial/genitals.svg"
  3844. }
  3845. },
  3846. },
  3847. [
  3848. {
  3849. name: "Large",
  3850. height: math.unit(100, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(500, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Megamacro",
  3859. height: math.unit(10, "miles")
  3860. },
  3861. {
  3862. name: "Gigamacro",
  3863. height: math.unit(25000, "miles")
  3864. },
  3865. {
  3866. name: "Full-Size",
  3867. height: math.unit(8000000, "gigaparsecs")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(60, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/noah/front.svg"
  3880. }
  3881. },
  3882. talons: {
  3883. height: math.unit(0.315, "meter"),
  3884. name: "Talons",
  3885. image: {
  3886. source: "./media/characters/noah/talons.svg"
  3887. }
  3888. }
  3889. },
  3890. [
  3891. {
  3892. name: "Large",
  3893. height: math.unit(50, "feet")
  3894. },
  3895. {
  3896. name: "Macro",
  3897. height: math.unit(750, "feet"),
  3898. default: true
  3899. },
  3900. {
  3901. name: "Megamacro",
  3902. height: math.unit(50, "miles")
  3903. },
  3904. {
  3905. name: "Gigamacro",
  3906. height: math.unit(100000, "miles")
  3907. },
  3908. {
  3909. name: "Full-Size",
  3910. height: math.unit(3000000000, "miles")
  3911. }
  3912. ]
  3913. ))
  3914. characterMakers.push(() => makeCharacter(
  3915. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3916. {
  3917. front: {
  3918. height: math.unit(2, "meter"),
  3919. weight: math.unit(80, "kg"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/natalya/front.svg"
  3923. }
  3924. },
  3925. back: {
  3926. height: math.unit(2, "meter"),
  3927. weight: math.unit(80, "kg"),
  3928. name: "Back",
  3929. image: {
  3930. source: "./media/characters/natalya/back.svg"
  3931. }
  3932. }
  3933. },
  3934. [
  3935. {
  3936. name: "Normal",
  3937. height: math.unit(150, "feet"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Megamacro",
  3942. height: math.unit(5, "miles")
  3943. },
  3944. {
  3945. name: "Full-Size",
  3946. height: math.unit(600, "kiloparsecs")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(2, "meter"),
  3955. weight: math.unit(50, "kg"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/erestrebah/front.svg",
  3959. extra: 1262/1162,
  3960. bottom: 96/1358
  3961. }
  3962. },
  3963. back: {
  3964. height: math.unit(2, "meter"),
  3965. weight: math.unit(50, "kg"),
  3966. name: "Back",
  3967. image: {
  3968. source: "./media/characters/erestrebah/back.svg",
  3969. extra: 1257/1139,
  3970. bottom: 13/1270
  3971. }
  3972. },
  3973. wing: {
  3974. height: math.unit(2, "meter"),
  3975. weight: math.unit(50, "kg"),
  3976. name: "Wing",
  3977. image: {
  3978. source: "./media/characters/erestrebah/wing.svg",
  3979. extra: 1262/1162,
  3980. bottom: 96/1358
  3981. }
  3982. },
  3983. mouth: {
  3984. height: math.unit(0.39, "feet"),
  3985. name: "Mouth",
  3986. image: {
  3987. source: "./media/characters/erestrebah/mouth.svg"
  3988. }
  3989. }
  3990. },
  3991. [
  3992. {
  3993. name: "Normal",
  3994. height: math.unit(10, "feet")
  3995. },
  3996. {
  3997. name: "Large",
  3998. height: math.unit(50, "feet"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Macro",
  4003. height: math.unit(300, "feet")
  4004. },
  4005. {
  4006. name: "Macro+",
  4007. height: math.unit(750, "feet")
  4008. },
  4009. {
  4010. name: "Megamacro",
  4011. height: math.unit(3, "miles")
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(2, "meter"),
  4020. weight: math.unit(80, "kg"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/jennifer/front.svg",
  4024. bottom: 0.11,
  4025. extra: 1.16
  4026. }
  4027. },
  4028. frontAlt: {
  4029. height: math.unit(2, "meter"),
  4030. weight: math.unit(80, "kg"),
  4031. name: "Front (Alt)",
  4032. image: {
  4033. source: "./media/characters/jennifer/front-alt.svg"
  4034. }
  4035. }
  4036. },
  4037. [
  4038. {
  4039. name: "Canon Height",
  4040. height: math.unit(120, "feet"),
  4041. default: true
  4042. },
  4043. {
  4044. name: "Macro+",
  4045. height: math.unit(300, "feet")
  4046. },
  4047. {
  4048. name: "Megamacro",
  4049. height: math.unit(20000, "feet")
  4050. }
  4051. ]
  4052. ))
  4053. characterMakers.push(() => makeCharacter(
  4054. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4055. {
  4056. front: {
  4057. height: math.unit(2, "meter"),
  4058. weight: math.unit(50, "kg"),
  4059. name: "Front",
  4060. image: {
  4061. source: "./media/characters/kalista/front.svg",
  4062. extra: 1314/1145,
  4063. bottom: 101/1415
  4064. }
  4065. },
  4066. back: {
  4067. height: math.unit(2, "meter"),
  4068. weight: math.unit(50, "kg"),
  4069. name: "Back",
  4070. image: {
  4071. source: "./media/characters/kalista/back.svg",
  4072. extra: 1366 / 1156,
  4073. bottom: 33.9 / 1362.78
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Uncomfortably Small",
  4080. height: math.unit(10, "feet")
  4081. },
  4082. {
  4083. name: "Small",
  4084. height: math.unit(30, "feet")
  4085. },
  4086. {
  4087. name: "Macro",
  4088. height: math.unit(100, "feet"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Macro+",
  4093. height: math.unit(2000, "feet")
  4094. },
  4095. {
  4096. name: "True Form",
  4097. height: math.unit(8924, "miles")
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4103. {
  4104. front: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(120, "kg"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/ggv/front.svg"
  4110. }
  4111. },
  4112. side: {
  4113. height: math.unit(2, "meter"),
  4114. weight: math.unit(120, "kg"),
  4115. name: "Side",
  4116. image: {
  4117. source: "./media/characters/ggv/side.svg"
  4118. }
  4119. }
  4120. },
  4121. [
  4122. {
  4123. name: "Extremely Puny",
  4124. height: math.unit(9 + 5 / 12, "feet")
  4125. },
  4126. {
  4127. name: "Horribly Small",
  4128. height: math.unit(47.7, "miles"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Reasonably Sized",
  4133. height: math.unit(25000, "parsecs")
  4134. },
  4135. {
  4136. name: "Slightly Uncompressed",
  4137. height: math.unit(7.77e31, "parsecs")
  4138. },
  4139. {
  4140. name: "Omniversal",
  4141. height: math.unit(1e300, "meters")
  4142. },
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4147. {
  4148. front: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(75, "lb"),
  4151. name: "Front",
  4152. image: {
  4153. source: "./media/characters/napalm/front.svg"
  4154. }
  4155. },
  4156. back: {
  4157. height: math.unit(2, "meter"),
  4158. weight: math.unit(75, "lb"),
  4159. name: "Back",
  4160. image: {
  4161. source: "./media/characters/napalm/back.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Standard",
  4168. height: math.unit(55, "feet"),
  4169. default: true
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4175. {
  4176. front: {
  4177. height: math.unit(7 + 5 / 6, "feet"),
  4178. weight: math.unit(325, "lb"),
  4179. name: "Front",
  4180. image: {
  4181. source: "./media/characters/asana/front.svg",
  4182. extra: 1133 / 1060,
  4183. bottom: 15.2 / 1148.6
  4184. }
  4185. },
  4186. back: {
  4187. height: math.unit(7 + 5 / 6, "feet"),
  4188. weight: math.unit(325, "lb"),
  4189. name: "Back",
  4190. image: {
  4191. source: "./media/characters/asana/back.svg",
  4192. extra: 1114 / 1043,
  4193. bottom: 5 / 1120
  4194. }
  4195. },
  4196. dressedDark: {
  4197. height: math.unit(7 + 5 / 6, "feet"),
  4198. weight: math.unit(325, "lb"),
  4199. name: "Dressed (Dark)",
  4200. image: {
  4201. source: "./media/characters/asana/dressed-dark.svg",
  4202. extra: 1133 / 1060,
  4203. bottom: 15.2 / 1148.6
  4204. }
  4205. },
  4206. dressedLight: {
  4207. height: math.unit(7 + 5 / 6, "feet"),
  4208. weight: math.unit(325, "lb"),
  4209. name: "Dressed (Light)",
  4210. image: {
  4211. source: "./media/characters/asana/dressed-light.svg",
  4212. extra: 1133 / 1060,
  4213. bottom: 15.2 / 1148.6
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "Standard",
  4220. height: math.unit(7 + 5 / 6, "feet"),
  4221. default: true
  4222. },
  4223. {
  4224. name: "Large",
  4225. height: math.unit(10, "meters")
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(2500, "meters")
  4230. },
  4231. {
  4232. name: "Megamacro",
  4233. height: math.unit(5e6, "meters")
  4234. },
  4235. {
  4236. name: "Examacro",
  4237. height: math.unit(5e12, "lightyears")
  4238. },
  4239. {
  4240. name: "Max Size",
  4241. height: math.unit(1e31, "lightyears")
  4242. }
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4247. {
  4248. front: {
  4249. height: math.unit(2, "meter"),
  4250. weight: math.unit(60, "kg"),
  4251. name: "Front",
  4252. image: {
  4253. source: "./media/characters/ebony/front.svg",
  4254. bottom: 0.03,
  4255. extra: 1045 / 810 + 0.03
  4256. }
  4257. },
  4258. side: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(60, "kg"),
  4261. name: "Side",
  4262. image: {
  4263. source: "./media/characters/ebony/side.svg",
  4264. bottom: 0.03,
  4265. extra: 1045 / 810 + 0.03
  4266. }
  4267. },
  4268. back: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(60, "kg"),
  4271. name: "Back",
  4272. image: {
  4273. source: "./media/characters/ebony/back.svg",
  4274. bottom: 0.01,
  4275. extra: 1045 / 810 + 0.01
  4276. }
  4277. },
  4278. },
  4279. [
  4280. // TODO check why I did this lol
  4281. {
  4282. name: "Standard",
  4283. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4284. default: true
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(200, "feet")
  4289. },
  4290. {
  4291. name: "Gigamacro",
  4292. height: math.unit(13000, "km")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(175, "lb"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/mountain/front.svg",
  4305. extra: 972 / 955,
  4306. bottom: 64 / 1036.6
  4307. }
  4308. },
  4309. back: {
  4310. height: math.unit(6, "feet"),
  4311. weight: math.unit(175, "lb"),
  4312. name: "Back",
  4313. image: {
  4314. source: "./media/characters/mountain/back.svg",
  4315. extra: 970 / 950,
  4316. bottom: 28.25 / 999
  4317. }
  4318. },
  4319. },
  4320. [
  4321. {
  4322. name: "Large",
  4323. height: math.unit(20, "meters")
  4324. },
  4325. {
  4326. name: "Macro",
  4327. height: math.unit(300, "meters")
  4328. },
  4329. {
  4330. name: "Gigamacro",
  4331. height: math.unit(10000, "km"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Examacro",
  4336. height: math.unit(10e9, "lightyears")
  4337. }
  4338. ]
  4339. ))
  4340. characterMakers.push(() => makeCharacter(
  4341. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4342. {
  4343. front: {
  4344. height: math.unit(8, "feet"),
  4345. weight: math.unit(500, "lb"),
  4346. name: "Front",
  4347. image: {
  4348. source: "./media/characters/rick/front.svg"
  4349. }
  4350. }
  4351. },
  4352. [
  4353. {
  4354. name: "Normal",
  4355. height: math.unit(8, "feet"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(5, "km")
  4361. }
  4362. ]
  4363. ))
  4364. characterMakers.push(() => makeCharacter(
  4365. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4366. {
  4367. front: {
  4368. height: math.unit(8, "feet"),
  4369. weight: math.unit(120, "lb"),
  4370. name: "Front",
  4371. image: {
  4372. source: "./media/characters/ona/front.svg"
  4373. }
  4374. },
  4375. frontAlt: {
  4376. height: math.unit(8, "feet"),
  4377. weight: math.unit(120, "lb"),
  4378. name: "Front (Alt)",
  4379. image: {
  4380. source: "./media/characters/ona/front-alt.svg"
  4381. }
  4382. },
  4383. back: {
  4384. height: math.unit(8, "feet"),
  4385. weight: math.unit(120, "lb"),
  4386. name: "Back",
  4387. image: {
  4388. source: "./media/characters/ona/back.svg"
  4389. }
  4390. },
  4391. foot: {
  4392. height: math.unit(1.1, "feet"),
  4393. name: "Foot",
  4394. image: {
  4395. source: "./media/characters/ona/foot.svg"
  4396. }
  4397. }
  4398. },
  4399. [
  4400. {
  4401. name: "Megamacro",
  4402. height: math.unit(70, "km"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Gigamacro",
  4407. height: math.unit(681818, "miles")
  4408. },
  4409. {
  4410. name: "Examacro",
  4411. height: math.unit(3800000, "lightyears")
  4412. },
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(12, "feet"),
  4420. weight: math.unit(3000, "lb"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/mech/front.svg",
  4424. extra: 2900 / 2770,
  4425. bottom: 110 / 3010
  4426. }
  4427. },
  4428. back: {
  4429. height: math.unit(12, "feet"),
  4430. weight: math.unit(3000, "lb"),
  4431. name: "Back",
  4432. image: {
  4433. source: "./media/characters/mech/back.svg",
  4434. extra: 3011 / 2890,
  4435. bottom: 94 / 3105
  4436. }
  4437. },
  4438. maw: {
  4439. height: math.unit(3.07, "feet"),
  4440. name: "Maw",
  4441. image: {
  4442. source: "./media/characters/mech/maw.svg"
  4443. }
  4444. },
  4445. head: {
  4446. height: math.unit(3.07, "feet"),
  4447. name: "Head",
  4448. image: {
  4449. source: "./media/characters/mech/head.svg"
  4450. }
  4451. },
  4452. dick: {
  4453. height: math.unit(1.43, "feet"),
  4454. name: "Dick",
  4455. image: {
  4456. source: "./media/characters/mech/dick.svg"
  4457. }
  4458. },
  4459. },
  4460. [
  4461. {
  4462. name: "Normal",
  4463. height: math.unit(12, "feet")
  4464. },
  4465. {
  4466. name: "Macro",
  4467. height: math.unit(300, "feet"),
  4468. default: true
  4469. },
  4470. {
  4471. name: "Macro+",
  4472. height: math.unit(1500, "feet")
  4473. },
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4478. {
  4479. front: {
  4480. height: math.unit(1.3, "meter"),
  4481. weight: math.unit(30, "kg"),
  4482. name: "Front",
  4483. image: {
  4484. source: "./media/characters/gregory/front.svg",
  4485. }
  4486. }
  4487. },
  4488. [
  4489. {
  4490. name: "Normal",
  4491. height: math.unit(1.3, "meter"),
  4492. default: true
  4493. },
  4494. {
  4495. name: "Macro",
  4496. height: math.unit(20, "meter")
  4497. }
  4498. ]
  4499. ))
  4500. characterMakers.push(() => makeCharacter(
  4501. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4502. {
  4503. front: {
  4504. height: math.unit(2.8, "meter"),
  4505. weight: math.unit(200, "kg"),
  4506. name: "Front",
  4507. image: {
  4508. source: "./media/characters/elory/front.svg",
  4509. }
  4510. }
  4511. },
  4512. [
  4513. {
  4514. name: "Normal",
  4515. height: math.unit(2.8, "meter"),
  4516. default: true
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(38, "meter")
  4521. }
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4526. {
  4527. front: {
  4528. height: math.unit(470, "feet"),
  4529. weight: math.unit(924, "tons"),
  4530. name: "Front",
  4531. image: {
  4532. source: "./media/characters/angelpatamon/front.svg",
  4533. }
  4534. }
  4535. },
  4536. [
  4537. {
  4538. name: "Normal",
  4539. height: math.unit(470, "feet"),
  4540. default: true
  4541. },
  4542. {
  4543. name: "Deity Size I",
  4544. height: math.unit(28651.2, "km")
  4545. },
  4546. {
  4547. name: "Deity Size II",
  4548. height: math.unit(171907.2, "km")
  4549. }
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4554. {
  4555. side: {
  4556. height: math.unit(7.2, "meter"),
  4557. weight: math.unit(8.2, "tons"),
  4558. name: "Side",
  4559. image: {
  4560. source: "./media/characters/cryae/side.svg",
  4561. extra: 3500 / 1500
  4562. }
  4563. }
  4564. },
  4565. [
  4566. {
  4567. name: "Normal",
  4568. height: math.unit(7.2, "meter"),
  4569. default: true
  4570. }
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4575. {
  4576. front: {
  4577. height: math.unit(6, "feet"),
  4578. weight: math.unit(175, "lb"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/xera/front.svg",
  4582. extra: 2377 / 1972,
  4583. bottom: 75.5 / 2452
  4584. }
  4585. },
  4586. side: {
  4587. height: math.unit(6, "feet"),
  4588. weight: math.unit(175, "lb"),
  4589. name: "Side",
  4590. image: {
  4591. source: "./media/characters/xera/side.svg",
  4592. extra: 2345 / 2019,
  4593. bottom: 39.7 / 2384
  4594. }
  4595. },
  4596. back: {
  4597. height: math.unit(6, "feet"),
  4598. weight: math.unit(175, "lb"),
  4599. name: "Back",
  4600. image: {
  4601. source: "./media/characters/xera/back.svg",
  4602. extra: 2095 / 1984,
  4603. bottom: 67 / 2166
  4604. }
  4605. },
  4606. },
  4607. [
  4608. {
  4609. name: "Small",
  4610. height: math.unit(10, "feet")
  4611. },
  4612. {
  4613. name: "Macro",
  4614. height: math.unit(500, "meters"),
  4615. default: true
  4616. },
  4617. {
  4618. name: "Macro+",
  4619. height: math.unit(10, "km")
  4620. },
  4621. {
  4622. name: "Gigamacro",
  4623. height: math.unit(25000, "km")
  4624. },
  4625. {
  4626. name: "Teramacro",
  4627. height: math.unit(3e6, "km")
  4628. }
  4629. ]
  4630. ))
  4631. characterMakers.push(() => makeCharacter(
  4632. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4633. {
  4634. front: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(175, "lb"),
  4637. name: "Front",
  4638. image: {
  4639. source: "./media/characters/nebula/front.svg",
  4640. extra: 2566 / 2362,
  4641. bottom: 81 / 2644
  4642. }
  4643. }
  4644. },
  4645. [
  4646. {
  4647. name: "Small",
  4648. height: math.unit(4.5, "meters")
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(1500, "meters"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Megamacro",
  4657. height: math.unit(150, "km")
  4658. },
  4659. {
  4660. name: "Gigamacro",
  4661. height: math.unit(27000, "km")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(225, "lb"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/abysgar/front.svg",
  4674. extra: 1739/1614,
  4675. bottom: 71/1810
  4676. }
  4677. },
  4678. frontNsfw: {
  4679. height: math.unit(6, "feet"),
  4680. weight: math.unit(225, "lb"),
  4681. name: "Front (NSFW)",
  4682. image: {
  4683. source: "./media/characters/abysgar/front-nsfw.svg",
  4684. extra: 1739/1614,
  4685. bottom: 71/1810
  4686. }
  4687. },
  4688. back: {
  4689. height: math.unit(4.6, "feet"),
  4690. weight: math.unit(225, "lb"),
  4691. name: "Back",
  4692. image: {
  4693. source: "./media/characters/abysgar/back.svg",
  4694. extra: 1384/1327,
  4695. bottom: 0/1384
  4696. }
  4697. },
  4698. head: {
  4699. height: math.unit(1.25, "feet"),
  4700. name: "Head",
  4701. image: {
  4702. source: "./media/characters/abysgar/head.svg",
  4703. extra: 669/569,
  4704. bottom: 0/669
  4705. }
  4706. },
  4707. },
  4708. [
  4709. {
  4710. name: "Small",
  4711. height: math.unit(4.5, "meters")
  4712. },
  4713. {
  4714. name: "Macro",
  4715. height: math.unit(1250, "meters"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Megamacro",
  4720. height: math.unit(125, "km")
  4721. },
  4722. {
  4723. name: "Gigamacro",
  4724. height: math.unit(26000, "km")
  4725. }
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(6, "feet"),
  4733. weight: math.unit(180, "lb"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/yakuz/front.svg"
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Small",
  4743. height: math.unit(5, "meters")
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(1500, "meters"),
  4748. default: true
  4749. },
  4750. {
  4751. name: "Megamacro",
  4752. height: math.unit(200, "km")
  4753. },
  4754. {
  4755. name: "Gigamacro",
  4756. height: math.unit(100000, "km")
  4757. }
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(175, "lb"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/mirova/front.svg",
  4769. extra: 3334 / 3071,
  4770. bottom: 42 / 3375.6
  4771. }
  4772. }
  4773. },
  4774. [
  4775. {
  4776. name: "Small",
  4777. height: math.unit(5, "meters")
  4778. },
  4779. {
  4780. name: "Macro",
  4781. height: math.unit(900, "meters"),
  4782. default: true
  4783. },
  4784. {
  4785. name: "Megamacro",
  4786. height: math.unit(135, "km")
  4787. },
  4788. {
  4789. name: "Gigamacro",
  4790. height: math.unit(20000, "km")
  4791. }
  4792. ]
  4793. ))
  4794. characterMakers.push(() => makeCharacter(
  4795. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4796. {
  4797. side: {
  4798. height: math.unit(28.35, "feet"),
  4799. weight: math.unit(99.75, "tons"),
  4800. name: "Side",
  4801. image: {
  4802. source: "./media/characters/asana-mech/side.svg",
  4803. extra: 923 / 699,
  4804. bottom: 50 / 975
  4805. }
  4806. },
  4807. chaingun: {
  4808. height: math.unit(7, "feet"),
  4809. weight: math.unit(2400, "lb"),
  4810. name: "Chaingun",
  4811. image: {
  4812. source: "./media/characters/asana-mech/chaingun.svg"
  4813. }
  4814. },
  4815. laser: {
  4816. height: math.unit(7.12, "feet"),
  4817. weight: math.unit(2000, "lb"),
  4818. name: "Laser",
  4819. image: {
  4820. source: "./media/characters/asana-mech/laser.svg"
  4821. }
  4822. },
  4823. },
  4824. [
  4825. {
  4826. name: "Normal",
  4827. height: math.unit(28.35, "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro",
  4832. height: math.unit(2500, "feet")
  4833. },
  4834. {
  4835. name: "Megamacro",
  4836. height: math.unit(25, "miles")
  4837. },
  4838. {
  4839. name: "Examacro",
  4840. height: math.unit(6e8, "lightyears")
  4841. },
  4842. ]
  4843. ))
  4844. characterMakers.push(() => makeCharacter(
  4845. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4846. {
  4847. front: {
  4848. height: math.unit(5, "meters"),
  4849. weight: math.unit(1000, "kg"),
  4850. name: "Front",
  4851. image: {
  4852. source: "./media/characters/asche/front.svg",
  4853. extra: 1258 / 1190,
  4854. bottom: 47 / 1305
  4855. }
  4856. },
  4857. frontUnderwear: {
  4858. height: math.unit(5, "meters"),
  4859. weight: math.unit(1000, "kg"),
  4860. name: "Front (Underwear)",
  4861. image: {
  4862. source: "./media/characters/asche/front-underwear.svg",
  4863. extra: 1258 / 1190,
  4864. bottom: 47 / 1305
  4865. }
  4866. },
  4867. frontDressed: {
  4868. height: math.unit(5, "meters"),
  4869. weight: math.unit(1000, "kg"),
  4870. name: "Front (Dressed)",
  4871. image: {
  4872. source: "./media/characters/asche/front-dressed.svg",
  4873. extra: 1258 / 1190,
  4874. bottom: 47 / 1305
  4875. }
  4876. },
  4877. frontArmor: {
  4878. height: math.unit(5, "meters"),
  4879. weight: math.unit(1000, "kg"),
  4880. name: "Front (Armored)",
  4881. image: {
  4882. source: "./media/characters/asche/front-armored.svg",
  4883. extra: 1374 / 1308,
  4884. bottom: 23 / 1397
  4885. }
  4886. },
  4887. mp724: {
  4888. height: math.unit(0.96, "meters"),
  4889. weight: math.unit(38, "kg"),
  4890. name: "H&K MP724",
  4891. image: {
  4892. source: "./media/characters/asche/h&k-mp724.svg"
  4893. }
  4894. },
  4895. side: {
  4896. height: math.unit(5, "meters"),
  4897. weight: math.unit(1000, "kg"),
  4898. name: "Side",
  4899. image: {
  4900. source: "./media/characters/asche/side.svg",
  4901. extra: 1717 / 1609,
  4902. bottom: 0.005
  4903. }
  4904. },
  4905. back: {
  4906. height: math.unit(5, "meters"),
  4907. weight: math.unit(1000, "kg"),
  4908. name: "Back",
  4909. image: {
  4910. source: "./media/characters/asche/back.svg",
  4911. extra: 1570 / 1501
  4912. }
  4913. },
  4914. },
  4915. [
  4916. {
  4917. name: "DEFCON 5",
  4918. height: math.unit(5, "meters")
  4919. },
  4920. {
  4921. name: "DEFCON 4",
  4922. height: math.unit(500, "meters"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "DEFCON 3",
  4927. height: math.unit(5, "km")
  4928. },
  4929. {
  4930. name: "DEFCON 2",
  4931. height: math.unit(500, "km")
  4932. },
  4933. {
  4934. name: "DEFCON 1",
  4935. height: math.unit(500000, "km")
  4936. },
  4937. {
  4938. name: "DEFCON 0",
  4939. height: math.unit(3, "gigaparsecs")
  4940. },
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(2, "meters"),
  4948. weight: math.unit(76, "kg"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/gale/front.svg"
  4952. }
  4953. },
  4954. frontAlt1: {
  4955. height: math.unit(2, "meters"),
  4956. weight: math.unit(76, "kg"),
  4957. name: "Front (Alt 1)",
  4958. image: {
  4959. source: "./media/characters/gale/front-alt-1.svg"
  4960. }
  4961. },
  4962. frontAlt2: {
  4963. height: math.unit(2, "meters"),
  4964. weight: math.unit(76, "kg"),
  4965. name: "Front (Alt 2)",
  4966. image: {
  4967. source: "./media/characters/gale/front-alt-2.svg"
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(7, "feet")
  4975. },
  4976. {
  4977. name: "Macro",
  4978. height: math.unit(150, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Macro+",
  4983. height: math.unit(300, "feet")
  4984. },
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(5 + 10/12, "feet"),
  4992. weight: math.unit(67, "kg"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/draylen/front.svg",
  4996. extra: 832/777,
  4997. bottom: 85/917
  4998. }
  4999. }
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(5 + 10/12, "feet")
  5005. },
  5006. {
  5007. name: "Macro",
  5008. height: math.unit(150, "feet"),
  5009. default: true
  5010. }
  5011. ]
  5012. ))
  5013. characterMakers.push(() => makeCharacter(
  5014. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5015. {
  5016. front: {
  5017. height: math.unit(7 + 9 / 12, "feet"),
  5018. weight: math.unit(379, "lbs"),
  5019. name: "Front",
  5020. image: {
  5021. source: "./media/characters/chez/front.svg"
  5022. }
  5023. },
  5024. side: {
  5025. height: math.unit(7 + 9 / 12, "feet"),
  5026. weight: math.unit(379, "lbs"),
  5027. name: "Side",
  5028. image: {
  5029. source: "./media/characters/chez/side.svg"
  5030. }
  5031. }
  5032. },
  5033. [
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(7 + 9 / 12, "feet"),
  5037. default: true
  5038. },
  5039. {
  5040. name: "God King",
  5041. height: math.unit(9750000, "meters")
  5042. }
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5047. {
  5048. front: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(275, "lbs"),
  5051. name: "Front",
  5052. image: {
  5053. source: "./media/characters/kaylum/front.svg",
  5054. bottom: 0.01,
  5055. extra: 1166 / 1031
  5056. }
  5057. },
  5058. frontWingless: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(275, "lbs"),
  5061. name: "Front (Wingless)",
  5062. image: {
  5063. source: "./media/characters/kaylum/front-wingless.svg",
  5064. bottom: 0.01,
  5065. extra: 1117 / 1031
  5066. }
  5067. }
  5068. },
  5069. [
  5070. {
  5071. name: "Normal",
  5072. height: math.unit(3.05, "meters")
  5073. },
  5074. {
  5075. name: "Master",
  5076. height: math.unit(5.5, "meters")
  5077. },
  5078. {
  5079. name: "Rampage",
  5080. height: math.unit(19, "meters")
  5081. },
  5082. {
  5083. name: "Macro Lite",
  5084. height: math.unit(37, "meters")
  5085. },
  5086. {
  5087. name: "Hyper Predator",
  5088. height: math.unit(61, "meters")
  5089. },
  5090. {
  5091. name: "Macro",
  5092. height: math.unit(138, "meters"),
  5093. default: true
  5094. }
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5099. {
  5100. front: {
  5101. height: math.unit(5 + 5 / 12, "feet"),
  5102. weight: math.unit(120, "lbs"),
  5103. name: "Front",
  5104. image: {
  5105. source: "./media/characters/geta/front.svg",
  5106. extra: 1003/933,
  5107. bottom: 21/1024
  5108. }
  5109. },
  5110. paw: {
  5111. height: math.unit(0.35, "feet"),
  5112. name: "Paw",
  5113. image: {
  5114. source: "./media/characters/geta/paw.svg"
  5115. }
  5116. },
  5117. },
  5118. [
  5119. {
  5120. name: "Micro",
  5121. height: math.unit(3, "inches"),
  5122. default: true
  5123. },
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(5 + 5 / 12, "feet")
  5127. }
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5132. {
  5133. front: {
  5134. height: math.unit(6, "feet"),
  5135. weight: math.unit(300, "lbs"),
  5136. name: "Front",
  5137. image: {
  5138. source: "./media/characters/tyrnn/front.svg"
  5139. }
  5140. }
  5141. },
  5142. [
  5143. {
  5144. name: "Main Height",
  5145. height: math.unit(355, "feet"),
  5146. default: true
  5147. },
  5148. {
  5149. name: "Fave. Height",
  5150. height: math.unit(2400, "feet")
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5156. {
  5157. front: {
  5158. height: math.unit(6, "feet"),
  5159. weight: math.unit(300, "lbs"),
  5160. name: "Front",
  5161. image: {
  5162. source: "./media/characters/appledectomy/front.svg"
  5163. }
  5164. }
  5165. },
  5166. [
  5167. {
  5168. name: "Macro",
  5169. height: math.unit(2500, "feet")
  5170. },
  5171. {
  5172. name: "Megamacro",
  5173. height: math.unit(50, "miles"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Gigamacro",
  5178. height: math.unit(5000, "miles")
  5179. },
  5180. {
  5181. name: "Teramacro",
  5182. height: math.unit(250000, "miles")
  5183. },
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5188. {
  5189. front: {
  5190. height: math.unit(6, "feet"),
  5191. weight: math.unit(200, "lbs"),
  5192. name: "Front",
  5193. image: {
  5194. source: "./media/characters/vulpes/front.svg",
  5195. extra: 573 / 543,
  5196. bottom: 0.033
  5197. }
  5198. },
  5199. side: {
  5200. height: math.unit(6, "feet"),
  5201. weight: math.unit(200, "lbs"),
  5202. name: "Side",
  5203. image: {
  5204. source: "./media/characters/vulpes/side.svg",
  5205. extra: 577 / 549,
  5206. bottom: 11 / 588
  5207. }
  5208. },
  5209. back: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(200, "lbs"),
  5212. name: "Back",
  5213. image: {
  5214. source: "./media/characters/vulpes/back.svg",
  5215. extra: 573 / 549,
  5216. bottom: 20 / 593
  5217. }
  5218. },
  5219. feet: {
  5220. height: math.unit(1.276, "feet"),
  5221. name: "Feet",
  5222. image: {
  5223. source: "./media/characters/vulpes/feet.svg"
  5224. }
  5225. },
  5226. maw: {
  5227. height: math.unit(1.18, "feet"),
  5228. name: "Maw",
  5229. image: {
  5230. source: "./media/characters/vulpes/maw.svg"
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Micro",
  5237. height: math.unit(2, "inches")
  5238. },
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(6.3, "feet")
  5242. },
  5243. {
  5244. name: "Macro",
  5245. height: math.unit(850, "feet")
  5246. },
  5247. {
  5248. name: "Megamacro",
  5249. height: math.unit(7500, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Gigamacro",
  5254. height: math.unit(570000, "miles")
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5260. {
  5261. front: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(210, "lbs"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/rain-fallen/front.svg"
  5267. }
  5268. },
  5269. side: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(210, "lbs"),
  5272. name: "Side",
  5273. image: {
  5274. source: "./media/characters/rain-fallen/side.svg"
  5275. }
  5276. },
  5277. back: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(210, "lbs"),
  5280. name: "Back",
  5281. image: {
  5282. source: "./media/characters/rain-fallen/back.svg"
  5283. }
  5284. },
  5285. feral: {
  5286. height: math.unit(9, "feet"),
  5287. weight: math.unit(700, "lbs"),
  5288. name: "Feral",
  5289. image: {
  5290. source: "./media/characters/rain-fallen/feral.svg"
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Meddling with Mortals",
  5297. height: math.unit(8 + 8/12, "feet")
  5298. },
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(5, "meter")
  5302. },
  5303. {
  5304. name: "Macro",
  5305. height: math.unit(150, "meter"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "Megamacro",
  5310. height: math.unit(278e6, "meter")
  5311. },
  5312. {
  5313. name: "Gigamacro",
  5314. height: math.unit(2e9, "meter")
  5315. },
  5316. {
  5317. name: "Teramacro",
  5318. height: math.unit(8e12, "meter")
  5319. },
  5320. {
  5321. name: "Devourer",
  5322. height: math.unit(14, "zettameters")
  5323. },
  5324. {
  5325. name: "Scarlet King",
  5326. height: math.unit(18, "yottameters")
  5327. },
  5328. {
  5329. name: "Void",
  5330. height: math.unit(1e88, "yottameters")
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5336. {
  5337. standing: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(180, "lbs"),
  5340. name: "Standing",
  5341. image: {
  5342. source: "./media/characters/zaakira/standing.svg",
  5343. extra: 1599/1504,
  5344. bottom: 39/1638
  5345. }
  5346. },
  5347. laying: {
  5348. height: math.unit(3.3, "feet"),
  5349. weight: math.unit(180, "lbs"),
  5350. name: "Laying",
  5351. image: {
  5352. source: "./media/characters/zaakira/laying.svg"
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(12, "feet")
  5360. },
  5361. {
  5362. name: "Macro",
  5363. height: math.unit(279, "feet"),
  5364. default: true
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5370. {
  5371. femSfw: {
  5372. height: math.unit(8, "feet"),
  5373. weight: math.unit(350, "lb"),
  5374. name: "Fem",
  5375. image: {
  5376. source: "./media/characters/sigvald/fem-sfw.svg",
  5377. extra: 182 / 164,
  5378. bottom: 8.7 / 190.5
  5379. }
  5380. },
  5381. femNsfw: {
  5382. height: math.unit(8, "feet"),
  5383. weight: math.unit(350, "lb"),
  5384. name: "Fem (NSFW)",
  5385. image: {
  5386. source: "./media/characters/sigvald/fem-nsfw.svg",
  5387. extra: 182 / 164,
  5388. bottom: 8.7 / 190.5
  5389. }
  5390. },
  5391. maleNsfw: {
  5392. height: math.unit(8, "feet"),
  5393. weight: math.unit(350, "lb"),
  5394. name: "Male (NSFW)",
  5395. image: {
  5396. source: "./media/characters/sigvald/male-nsfw.svg",
  5397. extra: 182 / 164,
  5398. bottom: 8.7 / 190.5
  5399. }
  5400. },
  5401. hermNsfw: {
  5402. height: math.unit(8, "feet"),
  5403. weight: math.unit(350, "lb"),
  5404. name: "Herm (NSFW)",
  5405. image: {
  5406. source: "./media/characters/sigvald/herm-nsfw.svg",
  5407. extra: 182 / 164,
  5408. bottom: 8.7 / 190.5
  5409. }
  5410. },
  5411. dick: {
  5412. height: math.unit(2.36, "feet"),
  5413. name: "Dick",
  5414. image: {
  5415. source: "./media/characters/sigvald/dick.svg"
  5416. }
  5417. },
  5418. eye: {
  5419. height: math.unit(0.31, "feet"),
  5420. name: "Eye",
  5421. image: {
  5422. source: "./media/characters/sigvald/eye.svg"
  5423. }
  5424. },
  5425. mouth: {
  5426. height: math.unit(0.92, "feet"),
  5427. name: "Mouth",
  5428. image: {
  5429. source: "./media/characters/sigvald/mouth.svg"
  5430. }
  5431. },
  5432. paws: {
  5433. height: math.unit(2.2, "feet"),
  5434. name: "Paws",
  5435. image: {
  5436. source: "./media/characters/sigvald/paws.svg"
  5437. }
  5438. }
  5439. },
  5440. [
  5441. {
  5442. name: "Normal",
  5443. height: math.unit(8, "feet")
  5444. },
  5445. {
  5446. name: "Large",
  5447. height: math.unit(12, "feet")
  5448. },
  5449. {
  5450. name: "Larger",
  5451. height: math.unit(20, "feet")
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(150, "feet")
  5456. },
  5457. {
  5458. name: "Macro+",
  5459. height: math.unit(200, "feet"),
  5460. default: true
  5461. },
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5466. {
  5467. side: {
  5468. height: math.unit(12, "feet"),
  5469. weight: math.unit(2000, "kg"),
  5470. name: "Side",
  5471. image: {
  5472. source: "./media/characters/scott/side.svg",
  5473. extra: 754 / 724,
  5474. bottom: 0.069
  5475. }
  5476. },
  5477. upright: {
  5478. height: math.unit(12, "feet"),
  5479. weight: math.unit(2000, "kg"),
  5480. name: "Upright",
  5481. image: {
  5482. source: "./media/characters/scott/upright.svg",
  5483. extra: 3881 / 3722,
  5484. bottom: 0.05
  5485. }
  5486. },
  5487. },
  5488. [
  5489. {
  5490. name: "Normal",
  5491. height: math.unit(12, "feet"),
  5492. default: true
  5493. },
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5498. {
  5499. side: {
  5500. height: math.unit(8, "meters"),
  5501. weight: math.unit(84755, "lbs"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/tobias/side.svg",
  5505. extra: 1474 / 1096,
  5506. bottom: 38.9 / 1513.1235
  5507. }
  5508. },
  5509. },
  5510. [
  5511. {
  5512. name: "Normal",
  5513. height: math.unit(8, "meters"),
  5514. default: true
  5515. },
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5520. {
  5521. front: {
  5522. height: math.unit(5.5, "feet"),
  5523. weight: math.unit(400, "lbs"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/kieran/front.svg",
  5527. extra: 2694 / 2364,
  5528. bottom: 217 / 2908
  5529. }
  5530. },
  5531. side: {
  5532. height: math.unit(5.5, "feet"),
  5533. weight: math.unit(400, "lbs"),
  5534. name: "Side",
  5535. image: {
  5536. source: "./media/characters/kieran/side.svg",
  5537. extra: 875 / 777,
  5538. bottom: 84.6 / 959
  5539. }
  5540. },
  5541. },
  5542. [
  5543. {
  5544. name: "Normal",
  5545. height: math.unit(5.5, "feet"),
  5546. default: true
  5547. },
  5548. ]
  5549. ))
  5550. characterMakers.push(() => makeCharacter(
  5551. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5552. {
  5553. side: {
  5554. height: math.unit(2, "meters"),
  5555. weight: math.unit(70, "kg"),
  5556. name: "Side",
  5557. image: {
  5558. source: "./media/characters/sanya/side.svg",
  5559. bottom: 0.02,
  5560. extra: 1.02
  5561. }
  5562. },
  5563. },
  5564. [
  5565. {
  5566. name: "Small",
  5567. height: math.unit(2, "meters")
  5568. },
  5569. {
  5570. name: "Normal",
  5571. height: math.unit(3, "meters")
  5572. },
  5573. {
  5574. name: "Macro",
  5575. height: math.unit(16, "meters"),
  5576. default: true
  5577. },
  5578. ]
  5579. ))
  5580. characterMakers.push(() => makeCharacter(
  5581. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5582. {
  5583. front: {
  5584. height: math.unit(2, "meters"),
  5585. weight: math.unit(120, "kg"),
  5586. name: "Front",
  5587. image: {
  5588. source: "./media/characters/miranda/front.svg",
  5589. extra: 195 / 185,
  5590. bottom: 10.9 / 206.5
  5591. }
  5592. },
  5593. back: {
  5594. height: math.unit(2, "meters"),
  5595. weight: math.unit(120, "kg"),
  5596. name: "Back",
  5597. image: {
  5598. source: "./media/characters/miranda/back.svg",
  5599. extra: 201 / 193,
  5600. bottom: 2.3 / 203.7
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(10, "feet"),
  5608. default: true
  5609. }
  5610. ]
  5611. ))
  5612. characterMakers.push(() => makeCharacter(
  5613. { name: "James", species: ["deer"], tags: ["anthro"] },
  5614. {
  5615. side: {
  5616. height: math.unit(2, "meters"),
  5617. weight: math.unit(100, "kg"),
  5618. name: "Front",
  5619. image: {
  5620. source: "./media/characters/james/front.svg",
  5621. extra: 10 / 8.5
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(8.5, "feet"),
  5629. default: true
  5630. }
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5635. {
  5636. side: {
  5637. height: math.unit(9.5, "feet"),
  5638. weight: math.unit(2500, "lbs"),
  5639. name: "Side",
  5640. image: {
  5641. source: "./media/characters/heather/side.svg"
  5642. }
  5643. },
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(9.5, "feet"),
  5649. default: true
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5655. {
  5656. side: {
  5657. height: math.unit(6.5, "feet"),
  5658. weight: math.unit(400, "lbs"),
  5659. name: "Side",
  5660. image: {
  5661. source: "./media/characters/lukas/side.svg",
  5662. extra: 7.25 / 6.5
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(6.5, "feet"),
  5670. default: true
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5676. {
  5677. side: {
  5678. height: math.unit(5, "feet"),
  5679. weight: math.unit(3000, "lbs"),
  5680. name: "Side",
  5681. image: {
  5682. source: "./media/characters/louise/side.svg"
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Normal",
  5689. height: math.unit(5, "feet"),
  5690. default: true
  5691. }
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5696. {
  5697. side: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(150, "lbs"),
  5700. name: "Side",
  5701. image: {
  5702. source: "./media/characters/ramona/side.svg",
  5703. extra: 871/854,
  5704. bottom: 41/912
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(6 + 4/12, "feet")
  5712. },
  5713. {
  5714. name: "Minimacro",
  5715. height: math.unit(5.3, "meters"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(20, "stories")
  5721. },
  5722. {
  5723. name: "Macro+",
  5724. height: math.unit(50, "stories")
  5725. },
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5730. {
  5731. standing: {
  5732. height: math.unit(5.75, "feet"),
  5733. weight: math.unit(160, "lbs"),
  5734. name: "Standing",
  5735. image: {
  5736. source: "./media/characters/deerpuff/standing.svg",
  5737. extra: 682 / 624
  5738. }
  5739. },
  5740. sitting: {
  5741. height: math.unit(5.75 / 1.79, "feet"),
  5742. weight: math.unit(160, "lbs"),
  5743. name: "Sitting",
  5744. image: {
  5745. source: "./media/characters/deerpuff/sitting.svg",
  5746. bottom: 44 / 400,
  5747. extra: 1
  5748. }
  5749. },
  5750. taurLaying: {
  5751. height: math.unit(6, "feet"),
  5752. weight: math.unit(400, "lbs"),
  5753. name: "Taur (Laying)",
  5754. image: {
  5755. source: "./media/characters/deerpuff/taur-laying.svg"
  5756. }
  5757. },
  5758. },
  5759. [
  5760. {
  5761. name: "Puffball",
  5762. height: math.unit(6, "inches")
  5763. },
  5764. {
  5765. name: "Normalpuff",
  5766. height: math.unit(5.75, "feet")
  5767. },
  5768. {
  5769. name: "Macropuff",
  5770. height: math.unit(1500, "feet"),
  5771. default: true
  5772. },
  5773. {
  5774. name: "Megapuff",
  5775. height: math.unit(500, "miles")
  5776. },
  5777. {
  5778. name: "Gigapuff",
  5779. height: math.unit(250000, "miles")
  5780. },
  5781. {
  5782. name: "Omegapuff",
  5783. height: math.unit(1000, "lightyears")
  5784. },
  5785. ]
  5786. ))
  5787. characterMakers.push(() => makeCharacter(
  5788. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5789. {
  5790. stomping: {
  5791. height: math.unit(6, "feet"),
  5792. weight: math.unit(170, "lbs"),
  5793. name: "Stomping",
  5794. image: {
  5795. source: "./media/characters/vivian/stomping.svg"
  5796. }
  5797. },
  5798. sitting: {
  5799. height: math.unit(6 / 1.75, "feet"),
  5800. weight: math.unit(170, "lbs"),
  5801. name: "Sitting",
  5802. image: {
  5803. source: "./media/characters/vivian/sitting.svg",
  5804. bottom: 1 / 6.4,
  5805. extra: 1,
  5806. }
  5807. },
  5808. },
  5809. [
  5810. {
  5811. name: "Normal",
  5812. height: math.unit(7, "feet"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Macro",
  5817. height: math.unit(10, "stories")
  5818. },
  5819. {
  5820. name: "Macro+",
  5821. height: math.unit(30, "stories")
  5822. },
  5823. {
  5824. name: "Megamacro",
  5825. height: math.unit(10, "miles")
  5826. },
  5827. {
  5828. name: "Megamacro+",
  5829. height: math.unit(2750000, "meters")
  5830. },
  5831. ]
  5832. ))
  5833. characterMakers.push(() => makeCharacter(
  5834. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5835. {
  5836. front: {
  5837. height: math.unit(6, "feet"),
  5838. weight: math.unit(160, "lbs"),
  5839. name: "Front",
  5840. image: {
  5841. source: "./media/characters/prince/front.svg",
  5842. extra: 3400 / 3000
  5843. }
  5844. },
  5845. jumping: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(160, "lbs"),
  5848. name: "Jumping",
  5849. image: {
  5850. source: "./media/characters/prince/jump.svg",
  5851. extra: 2555 / 2134
  5852. }
  5853. },
  5854. },
  5855. [
  5856. {
  5857. name: "Normal",
  5858. height: math.unit(7.75, "feet"),
  5859. default: true
  5860. },
  5861. {
  5862. name: "Not cute",
  5863. height: math.unit(17, "feet")
  5864. },
  5865. {
  5866. name: "I said NOT",
  5867. height: math.unit(91, "feet")
  5868. },
  5869. {
  5870. name: "Please stop",
  5871. height: math.unit(560, "feet")
  5872. },
  5873. {
  5874. name: "What have you done",
  5875. height: math.unit(2200, "feet")
  5876. },
  5877. {
  5878. name: "Deer God",
  5879. height: math.unit(3.6, "miles")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5885. {
  5886. standing: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(300, "lbs"),
  5889. name: "Standing",
  5890. image: {
  5891. source: "./media/characters/psymon/standing.svg",
  5892. extra: 1888 / 1810,
  5893. bottom: 0.05
  5894. }
  5895. },
  5896. slithering: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(300, "lbs"),
  5899. name: "Slithering",
  5900. image: {
  5901. source: "./media/characters/psymon/slithering.svg",
  5902. extra: 1330 / 1224
  5903. }
  5904. },
  5905. slitheringAlt: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(300, "lbs"),
  5908. name: "Slithering (Alt)",
  5909. image: {
  5910. source: "./media/characters/psymon/slithering-alt.svg",
  5911. extra: 1330 / 1224
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(11.25, "feet"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Large",
  5923. height: math.unit(27, "feet")
  5924. },
  5925. {
  5926. name: "Giant",
  5927. height: math.unit(87, "feet")
  5928. },
  5929. {
  5930. name: "Macro",
  5931. height: math.unit(365, "feet")
  5932. },
  5933. {
  5934. name: "Megamacro",
  5935. height: math.unit(3, "miles")
  5936. },
  5937. {
  5938. name: "World Serpent",
  5939. height: math.unit(8000, "miles")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(180, "lbs"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/daimos/front.svg",
  5952. extra: 4160 / 3897,
  5953. bottom: 0.021
  5954. }
  5955. }
  5956. },
  5957. [
  5958. {
  5959. name: "Normal",
  5960. height: math.unit(8, "feet"),
  5961. default: true
  5962. },
  5963. {
  5964. name: "Big Dog",
  5965. height: math.unit(22, "feet")
  5966. },
  5967. {
  5968. name: "Macro",
  5969. height: math.unit(127, "feet")
  5970. },
  5971. {
  5972. name: "Megamacro",
  5973. height: math.unit(3600, "feet")
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5979. {
  5980. side: {
  5981. height: math.unit(6, "feet"),
  5982. weight: math.unit(180, "lbs"),
  5983. name: "Side",
  5984. image: {
  5985. source: "./media/characters/blake/side.svg",
  5986. extra: 1212 / 1120,
  5987. bottom: 0.05
  5988. }
  5989. },
  5990. crouched: {
  5991. height: math.unit(6 * 0.57, "feet"),
  5992. weight: math.unit(180, "lbs"),
  5993. name: "Crouched",
  5994. image: {
  5995. source: "./media/characters/blake/crouched.svg",
  5996. extra: 840 / 587,
  5997. bottom: 0.04
  5998. }
  5999. },
  6000. bent: {
  6001. height: math.unit(6 * 0.75, "feet"),
  6002. weight: math.unit(180, "lbs"),
  6003. name: "Bent",
  6004. image: {
  6005. source: "./media/characters/blake/bent.svg",
  6006. extra: 592 / 544,
  6007. bottom: 0.035
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(8 + 1 / 6, "feet"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Big Backside",
  6019. height: math.unit(37, "feet")
  6020. },
  6021. {
  6022. name: "Subway Shredder",
  6023. height: math.unit(72, "feet")
  6024. },
  6025. {
  6026. name: "City Carver",
  6027. height: math.unit(1675, "feet")
  6028. },
  6029. {
  6030. name: "Tectonic Tweaker",
  6031. height: math.unit(2300, "miles")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(180, "lbs"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/guisetto/front.svg",
  6044. extra: 856 / 817,
  6045. bottom: 0.06
  6046. }
  6047. },
  6048. airborne: {
  6049. height: math.unit(6, "feet"),
  6050. weight: math.unit(180, "lbs"),
  6051. name: "Airborne",
  6052. image: {
  6053. source: "./media/characters/guisetto/airborne.svg",
  6054. extra: 584 / 525
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(10 + 11 / 12, "feet"),
  6062. default: true
  6063. },
  6064. {
  6065. name: "Large",
  6066. height: math.unit(35, "feet")
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(475, "feet")
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(6, "feet"),
  6079. weight: math.unit(180, "lbs"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/luxor/front.svg",
  6083. extra: 2940 / 2152
  6084. }
  6085. },
  6086. back: {
  6087. height: math.unit(6, "feet"),
  6088. weight: math.unit(180, "lbs"),
  6089. name: "Back",
  6090. image: {
  6091. source: "./media/characters/luxor/back.svg",
  6092. extra: 1083 / 960
  6093. }
  6094. },
  6095. },
  6096. [
  6097. {
  6098. name: "Normal",
  6099. height: math.unit(5 + 5 / 6, "feet"),
  6100. default: true
  6101. },
  6102. {
  6103. name: "Lamp",
  6104. height: math.unit(50, "feet")
  6105. },
  6106. {
  6107. name: "Lämp",
  6108. height: math.unit(300, "feet")
  6109. },
  6110. {
  6111. name: "The sun is a lamp",
  6112. height: math.unit(250000, "miles")
  6113. },
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6118. {
  6119. front: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(50, "lbs"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/huoyan/front.svg"
  6125. }
  6126. },
  6127. side: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(180, "lbs"),
  6130. name: "Side",
  6131. image: {
  6132. source: "./media/characters/huoyan/side.svg"
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Chef",
  6139. height: math.unit(9, "feet")
  6140. },
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(65, "feet"),
  6144. default: true
  6145. },
  6146. {
  6147. name: "Macro",
  6148. height: math.unit(780, "feet")
  6149. },
  6150. {
  6151. name: "Flaming Mountain",
  6152. height: math.unit(4.8, "miles")
  6153. },
  6154. {
  6155. name: "Celestial",
  6156. height: math.unit(765000, "miles")
  6157. },
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(5 + 3 / 4, "feet"),
  6165. weight: math.unit(120, "lbs"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/tails/front.svg"
  6169. }
  6170. }
  6171. },
  6172. [
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(5 + 3 / 4, "feet"),
  6176. default: true
  6177. }
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(4, "feet"),
  6185. weight: math.unit(50, "lbs"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/rainy/front.svg"
  6189. }
  6190. }
  6191. },
  6192. [
  6193. {
  6194. name: "Macro",
  6195. height: math.unit(800, "feet"),
  6196. default: true
  6197. }
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(150, "lbs"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/rainier/front.svg"
  6209. }
  6210. }
  6211. },
  6212. [
  6213. {
  6214. name: "Micro",
  6215. height: math.unit(2, "mm"),
  6216. default: true
  6217. }
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(8 + 4/12, "feet"),
  6225. weight: math.unit(450, "kilograms"),
  6226. volume: math.unit(5, "cups"),
  6227. name: "Front",
  6228. image: {
  6229. source: "./media/characters/andy-renard/front.svg",
  6230. extra: 1839/1726,
  6231. bottom: 134/1973
  6232. }
  6233. },
  6234. back: {
  6235. height: math.unit(8 + 4/12, "feet"),
  6236. weight: math.unit(450, "kilograms"),
  6237. volume: math.unit(5, "cups"),
  6238. name: "Back",
  6239. image: {
  6240. source: "./media/characters/andy-renard/back.svg",
  6241. extra: 1838/1710,
  6242. bottom: 105/1943
  6243. }
  6244. },
  6245. },
  6246. [
  6247. {
  6248. name: "Tall",
  6249. height: math.unit(8 + 4/12, "feet")
  6250. },
  6251. {
  6252. name: "Mini Macro",
  6253. height: math.unit(15, "feet"),
  6254. default: true
  6255. },
  6256. {
  6257. name: "Macro",
  6258. height: math.unit(100, "feet")
  6259. },
  6260. {
  6261. name: "Mega Macro",
  6262. height: math.unit(1000, "feet")
  6263. },
  6264. {
  6265. name: "Giga Macro",
  6266. height: math.unit(10, "miles")
  6267. },
  6268. {
  6269. name: "God Macro",
  6270. height: math.unit(1, "multiverse")
  6271. },
  6272. ]
  6273. ))
  6274. characterMakers.push(() => makeCharacter(
  6275. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6276. {
  6277. front: {
  6278. height: math.unit(6, "feet"),
  6279. weight: math.unit(210, "lbs"),
  6280. name: "Front",
  6281. image: {
  6282. source: "./media/characters/cimmaron/front-sfw.svg",
  6283. extra: 701 / 676,
  6284. bottom: 0.046
  6285. }
  6286. },
  6287. back: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(210, "lbs"),
  6290. name: "Back",
  6291. image: {
  6292. source: "./media/characters/cimmaron/back-sfw.svg",
  6293. extra: 701 / 676,
  6294. bottom: 0.046
  6295. }
  6296. },
  6297. frontNsfw: {
  6298. height: math.unit(6, "feet"),
  6299. weight: math.unit(210, "lbs"),
  6300. name: "Front (NSFW)",
  6301. image: {
  6302. source: "./media/characters/cimmaron/front-nsfw.svg",
  6303. extra: 701 / 676,
  6304. bottom: 0.046
  6305. }
  6306. },
  6307. backNsfw: {
  6308. height: math.unit(6, "feet"),
  6309. weight: math.unit(210, "lbs"),
  6310. name: "Back (NSFW)",
  6311. image: {
  6312. source: "./media/characters/cimmaron/back-nsfw.svg",
  6313. extra: 701 / 676,
  6314. bottom: 0.046
  6315. }
  6316. },
  6317. dick: {
  6318. height: math.unit(1.714, "feet"),
  6319. name: "Dick",
  6320. image: {
  6321. source: "./media/characters/cimmaron/dick.svg"
  6322. }
  6323. },
  6324. },
  6325. [
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(6, "feet"),
  6329. default: true
  6330. },
  6331. {
  6332. name: "Macro Mayor",
  6333. height: math.unit(350, "meters")
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(200, "lbs"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/akari/front.svg",
  6346. extra: 962 / 901,
  6347. bottom: 0.04
  6348. }
  6349. }
  6350. },
  6351. [
  6352. {
  6353. name: "Micro",
  6354. height: math.unit(5, "inches"),
  6355. default: true
  6356. },
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(7, "feet")
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6365. {
  6366. front: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(140, "lbs"),
  6369. name: "Front",
  6370. image: {
  6371. source: "./media/characters/cynosura/front.svg",
  6372. extra: 896 / 847
  6373. }
  6374. },
  6375. back: {
  6376. height: math.unit(6, "feet"),
  6377. weight: math.unit(140, "lbs"),
  6378. name: "Back",
  6379. image: {
  6380. source: "./media/characters/cynosura/back.svg",
  6381. extra: 1365 / 1250
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Micro",
  6388. height: math.unit(4, "inches")
  6389. },
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(5.75, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Tall",
  6397. height: math.unit(10, "feet")
  6398. },
  6399. {
  6400. name: "Big",
  6401. height: math.unit(20, "feet")
  6402. },
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(50, "feet")
  6406. },
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(13 + 2/12, "feet"),
  6414. weight: math.unit(800, "kg"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/gin/front.svg",
  6418. extra: 1312/1191,
  6419. bottom: 45/1357
  6420. }
  6421. },
  6422. mouth: {
  6423. height: math.unit(2.39 * 1.8, "feet"),
  6424. name: "Mouth",
  6425. image: {
  6426. source: "./media/characters/gin/mouth.svg"
  6427. }
  6428. },
  6429. hand: {
  6430. height: math.unit(1.57 * 2.19, "feet"),
  6431. name: "Hand",
  6432. image: {
  6433. source: "./media/characters/gin/hand.svg"
  6434. }
  6435. },
  6436. foot: {
  6437. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6438. name: "Foot",
  6439. image: {
  6440. source: "./media/characters/gin/foot.svg"
  6441. }
  6442. },
  6443. sole: {
  6444. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6445. name: "Sole",
  6446. image: {
  6447. source: "./media/characters/gin/sole.svg"
  6448. }
  6449. },
  6450. },
  6451. [
  6452. {
  6453. name: "Very Small",
  6454. height: math.unit(13 + 2 / 12, "feet")
  6455. },
  6456. {
  6457. name: "Micro",
  6458. height: math.unit(600, "miles")
  6459. },
  6460. {
  6461. name: "Regular",
  6462. height: math.unit(20, "earths"),
  6463. default: true
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(2.2, "solarradii")
  6468. },
  6469. {
  6470. name: "Teramacro",
  6471. height: math.unit(1.2, "galaxies")
  6472. },
  6473. {
  6474. name: "Omegamacro",
  6475. height: math.unit(200, "universes")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(6 + 1 / 6, "feet"),
  6484. weight: math.unit(178, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/guy/front.svg"
  6488. }
  6489. }
  6490. },
  6491. [
  6492. {
  6493. name: "Normal",
  6494. height: math.unit(6 + 1 / 6, "feet"),
  6495. default: true
  6496. },
  6497. {
  6498. name: "Large",
  6499. height: math.unit(25 + 7 / 12, "feet")
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(60 + 9 / 12, "feet")
  6504. },
  6505. {
  6506. name: "Macro+",
  6507. height: math.unit(246, "feet")
  6508. },
  6509. {
  6510. name: "Macro++",
  6511. height: math.unit(878, "feet")
  6512. }
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(9, "feet"),
  6520. weight: math.unit(800, "lbs"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/tiberius/front.svg",
  6524. extra: 2295 / 2071
  6525. }
  6526. },
  6527. back: {
  6528. height: math.unit(9, "feet"),
  6529. weight: math.unit(800, "lbs"),
  6530. name: "Back",
  6531. image: {
  6532. source: "./media/characters/tiberius/back.svg",
  6533. extra: 2373 / 2160
  6534. }
  6535. },
  6536. },
  6537. [
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(9, "feet"),
  6541. default: true
  6542. }
  6543. ]
  6544. ))
  6545. characterMakers.push(() => makeCharacter(
  6546. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6547. {
  6548. front: {
  6549. height: math.unit(6, "feet"),
  6550. weight: math.unit(600, "lbs"),
  6551. name: "Front",
  6552. image: {
  6553. source: "./media/characters/surgo/front.svg",
  6554. extra: 3591 / 2227
  6555. }
  6556. },
  6557. back: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(600, "lbs"),
  6560. name: "Back",
  6561. image: {
  6562. source: "./media/characters/surgo/back.svg",
  6563. extra: 3557 / 2228
  6564. }
  6565. },
  6566. laying: {
  6567. height: math.unit(6 * 0.85, "feet"),
  6568. weight: math.unit(600, "lbs"),
  6569. name: "Laying",
  6570. image: {
  6571. source: "./media/characters/surgo/laying.svg"
  6572. }
  6573. },
  6574. },
  6575. [
  6576. {
  6577. name: "Normal",
  6578. height: math.unit(6, "feet"),
  6579. default: true
  6580. }
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6585. {
  6586. side: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(150, "lbs"),
  6589. name: "Side",
  6590. image: {
  6591. source: "./media/characters/cibus/side.svg",
  6592. extra: 800 / 400
  6593. }
  6594. },
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(6, "feet"),
  6600. default: true
  6601. }
  6602. ]
  6603. ))
  6604. characterMakers.push(() => makeCharacter(
  6605. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6606. {
  6607. front: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(240, "lbs"),
  6610. name: "Front",
  6611. image: {
  6612. source: "./media/characters/nibbles/front.svg"
  6613. }
  6614. },
  6615. side: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(240, "lbs"),
  6618. name: "Side",
  6619. image: {
  6620. source: "./media/characters/nibbles/side.svg"
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(9, "feet"),
  6628. default: true
  6629. }
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6634. {
  6635. side: {
  6636. height: math.unit(5 + 1 / 6, "feet"),
  6637. weight: math.unit(130, "lbs"),
  6638. name: "Side",
  6639. image: {
  6640. source: "./media/characters/rikky/side.svg",
  6641. extra: 851 / 801
  6642. }
  6643. },
  6644. },
  6645. [
  6646. {
  6647. name: "Normal",
  6648. height: math.unit(5 + 1 / 6, "feet")
  6649. },
  6650. {
  6651. name: "Macro",
  6652. height: math.unit(152, "feet"),
  6653. default: true
  6654. },
  6655. {
  6656. name: "Megamacro",
  6657. height: math.unit(7, "miles")
  6658. }
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6663. {
  6664. side: {
  6665. height: math.unit(370, "cm"),
  6666. weight: math.unit(350, "lbs"),
  6667. name: "Side",
  6668. image: {
  6669. source: "./media/characters/malfressa/side.svg"
  6670. }
  6671. },
  6672. walking: {
  6673. height: math.unit(370, "cm"),
  6674. weight: math.unit(350, "lbs"),
  6675. name: "Walking",
  6676. image: {
  6677. source: "./media/characters/malfressa/walking.svg"
  6678. }
  6679. },
  6680. feral: {
  6681. height: math.unit(2500, "cm"),
  6682. weight: math.unit(100000, "lbs"),
  6683. name: "Feral",
  6684. image: {
  6685. source: "./media/characters/malfressa/feral.svg",
  6686. extra: 2108 / 837,
  6687. bottom: 0.02
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(370, "cm")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(300, "meters"),
  6699. default: true
  6700. }
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(6, "feet"),
  6708. weight: math.unit(60, "kg"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/jaro/front.svg",
  6712. extra: 845/817,
  6713. bottom: 45/890
  6714. }
  6715. },
  6716. back: {
  6717. height: math.unit(6, "feet"),
  6718. weight: math.unit(60, "kg"),
  6719. name: "Back",
  6720. image: {
  6721. source: "./media/characters/jaro/back.svg",
  6722. extra: 847/817,
  6723. bottom: 34/881
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Micro",
  6730. height: math.unit(7, "inches")
  6731. },
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(5.5, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Minimacro",
  6739. height: math.unit(20, "feet")
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(200, "meters")
  6744. }
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(195, "lb"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/rogue/front.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(90, "feet"),
  6763. default: true
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6769. {
  6770. standing: {
  6771. height: math.unit(5 + 8 / 12, "feet"),
  6772. weight: math.unit(140, "lb"),
  6773. name: "Standing",
  6774. image: {
  6775. source: "./media/characters/piper/standing.svg",
  6776. extra: 1440/1284,
  6777. bottom: 66/1506
  6778. }
  6779. },
  6780. running: {
  6781. height: math.unit(5 + 8 / 12, "feet"),
  6782. weight: math.unit(140, "lb"),
  6783. name: "Running",
  6784. image: {
  6785. source: "./media/characters/piper/running.svg",
  6786. extra: 3948/3655,
  6787. bottom: 0/3948
  6788. }
  6789. },
  6790. sole: {
  6791. height: math.unit(0.81, "feet"),
  6792. weight: math.unit(2, "kg"),
  6793. name: "Sole",
  6794. image: {
  6795. source: "./media/characters/piper/sole.svg"
  6796. }
  6797. },
  6798. nipple: {
  6799. height: math.unit(0.25, "feet"),
  6800. weight: math.unit(1.5, "lb"),
  6801. name: "Nipple",
  6802. image: {
  6803. source: "./media/characters/piper/nipple.svg"
  6804. }
  6805. },
  6806. head: {
  6807. height: math.unit(1.1, "feet"),
  6808. name: "Head",
  6809. image: {
  6810. source: "./media/characters/piper/head.svg"
  6811. }
  6812. },
  6813. },
  6814. [
  6815. {
  6816. name: "Micro",
  6817. height: math.unit(2, "inches")
  6818. },
  6819. {
  6820. name: "Normal",
  6821. height: math.unit(5 + 8 / 12, "feet")
  6822. },
  6823. {
  6824. name: "Macro",
  6825. height: math.unit(250, "feet"),
  6826. default: true
  6827. },
  6828. {
  6829. name: "Megamacro",
  6830. height: math.unit(7, "miles")
  6831. },
  6832. ]
  6833. ))
  6834. characterMakers.push(() => makeCharacter(
  6835. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6836. {
  6837. front: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(220, "lb"),
  6840. name: "Front",
  6841. image: {
  6842. source: "./media/characters/gemini/front.svg"
  6843. }
  6844. },
  6845. back: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(220, "lb"),
  6848. name: "Back",
  6849. image: {
  6850. source: "./media/characters/gemini/back.svg"
  6851. }
  6852. },
  6853. kneeling: {
  6854. height: math.unit(6 / 1.5, "feet"),
  6855. weight: math.unit(220, "lb"),
  6856. name: "Kneeling",
  6857. image: {
  6858. source: "./media/characters/gemini/kneeling.svg",
  6859. bottom: 0.02
  6860. }
  6861. },
  6862. },
  6863. [
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(300, "meters"),
  6867. default: true
  6868. },
  6869. {
  6870. name: "Megamacro",
  6871. height: math.unit(6900, "meters")
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6877. {
  6878. anthro: {
  6879. height: math.unit(2.35, "meters"),
  6880. weight: math.unit(73, "kg"),
  6881. name: "Anthro",
  6882. image: {
  6883. source: "./media/characters/alicia/anthro.svg",
  6884. extra: 2571 / 2385,
  6885. bottom: 75 / 2648
  6886. }
  6887. },
  6888. paw: {
  6889. height: math.unit(1.32, "feet"),
  6890. name: "Paw",
  6891. image: {
  6892. source: "./media/characters/alicia/paw.svg"
  6893. }
  6894. },
  6895. feral: {
  6896. height: math.unit(1.69, "meters"),
  6897. weight: math.unit(73, "kg"),
  6898. name: "Feral",
  6899. image: {
  6900. source: "./media/characters/alicia/feral.svg",
  6901. extra: 2123 / 1715,
  6902. bottom: 222 / 2349
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(2.35, "meters")
  6910. },
  6911. {
  6912. name: "Macro",
  6913. height: math.unit(60, "meters"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Megamacro",
  6918. height: math.unit(10000, "kilometers")
  6919. },
  6920. ]
  6921. ))
  6922. characterMakers.push(() => makeCharacter(
  6923. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6924. {
  6925. front: {
  6926. height: math.unit(7, "feet"),
  6927. weight: math.unit(250, "lbs"),
  6928. name: "Front",
  6929. image: {
  6930. source: "./media/characters/archy/front.svg"
  6931. }
  6932. }
  6933. },
  6934. [
  6935. {
  6936. name: "Micro",
  6937. height: math.unit(1, "inch")
  6938. },
  6939. {
  6940. name: "Shorty",
  6941. height: math.unit(5, "feet")
  6942. },
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(7, "feet")
  6946. },
  6947. {
  6948. name: "Macro",
  6949. height: math.unit(600, "meters"),
  6950. default: true
  6951. },
  6952. {
  6953. name: "Megamacro",
  6954. height: math.unit(1, "mile")
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6960. {
  6961. front: {
  6962. height: math.unit(1.65, "meters"),
  6963. weight: math.unit(74, "kg"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/berri/front.svg",
  6967. extra: 857 / 837,
  6968. bottom: 18 / 877
  6969. }
  6970. },
  6971. bum: {
  6972. height: math.unit(1.46, "feet"),
  6973. name: "Bum",
  6974. image: {
  6975. source: "./media/characters/berri/bum.svg"
  6976. }
  6977. },
  6978. mouth: {
  6979. height: math.unit(0.44, "feet"),
  6980. name: "Mouth",
  6981. image: {
  6982. source: "./media/characters/berri/mouth.svg"
  6983. }
  6984. },
  6985. paw: {
  6986. height: math.unit(0.826, "feet"),
  6987. name: "Paw",
  6988. image: {
  6989. source: "./media/characters/berri/paw.svg"
  6990. }
  6991. },
  6992. },
  6993. [
  6994. {
  6995. name: "Normal",
  6996. height: math.unit(1.65, "meters")
  6997. },
  6998. {
  6999. name: "Macro",
  7000. height: math.unit(60, "m"),
  7001. default: true
  7002. },
  7003. {
  7004. name: "Megamacro",
  7005. height: math.unit(9.213, "km")
  7006. },
  7007. {
  7008. name: "Planet Eater",
  7009. height: math.unit(489, "megameters")
  7010. },
  7011. {
  7012. name: "Teramacro",
  7013. height: math.unit(2471635000000, "meters")
  7014. },
  7015. {
  7016. name: "Examacro",
  7017. height: math.unit(8.0624e+26, "meters")
  7018. }
  7019. ]
  7020. ))
  7021. characterMakers.push(() => makeCharacter(
  7022. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7023. {
  7024. front: {
  7025. height: math.unit(1.72, "meters"),
  7026. weight: math.unit(68, "kg"),
  7027. name: "Front",
  7028. image: {
  7029. source: "./media/characters/lexi/front.svg"
  7030. }
  7031. }
  7032. },
  7033. [
  7034. {
  7035. name: "Very Smol",
  7036. height: math.unit(10, "mm")
  7037. },
  7038. {
  7039. name: "Micro",
  7040. height: math.unit(6.8, "cm"),
  7041. default: true
  7042. },
  7043. {
  7044. name: "Normal",
  7045. height: math.unit(1.72, "m")
  7046. }
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(1.69, "meters"),
  7054. weight: math.unit(68, "kg"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/martin/front.svg",
  7058. extra: 596 / 581
  7059. }
  7060. }
  7061. },
  7062. [
  7063. {
  7064. name: "Micro",
  7065. height: math.unit(6.85, "cm"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(1.69, "m")
  7071. }
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(1.69, "meters"),
  7079. weight: math.unit(68, "kg"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/juno/front.svg"
  7083. }
  7084. }
  7085. },
  7086. [
  7087. {
  7088. name: "Micro",
  7089. height: math.unit(7, "cm")
  7090. },
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(1.89, "m")
  7094. },
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(353, "meters"),
  7098. default: true
  7099. }
  7100. ]
  7101. ))
  7102. characterMakers.push(() => makeCharacter(
  7103. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7104. {
  7105. front: {
  7106. height: math.unit(1.93, "meters"),
  7107. weight: math.unit(83, "kg"),
  7108. name: "Front",
  7109. image: {
  7110. source: "./media/characters/samantha/front.svg"
  7111. }
  7112. },
  7113. frontClothed: {
  7114. height: math.unit(1.93, "meters"),
  7115. weight: math.unit(83, "kg"),
  7116. name: "Front (Clothed)",
  7117. image: {
  7118. source: "./media/characters/samantha/front-clothed.svg"
  7119. }
  7120. },
  7121. back: {
  7122. height: math.unit(1.93, "meters"),
  7123. weight: math.unit(83, "kg"),
  7124. name: "Back",
  7125. image: {
  7126. source: "./media/characters/samantha/back.svg"
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(1.93, "m")
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(74, "meters"),
  7138. default: true
  7139. },
  7140. {
  7141. name: "Macro+",
  7142. height: math.unit(223, "meters"),
  7143. },
  7144. {
  7145. name: "Megamacro",
  7146. height: math.unit(8381, "meters"),
  7147. },
  7148. {
  7149. name: "Megamacro+",
  7150. height: math.unit(12000, "kilometers")
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(1.92, "meters"),
  7159. weight: math.unit(80, "kg"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/dr-clay/front.svg"
  7163. }
  7164. },
  7165. frontClothed: {
  7166. height: math.unit(1.92, "meters"),
  7167. weight: math.unit(80, "kg"),
  7168. name: "Front (Clothed)",
  7169. image: {
  7170. source: "./media/characters/dr-clay/front-clothed.svg"
  7171. }
  7172. }
  7173. },
  7174. [
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(1.92, "m")
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(214, "meters"),
  7182. default: true
  7183. },
  7184. {
  7185. name: "Macro+",
  7186. height: math.unit(12.237, "meters"),
  7187. },
  7188. {
  7189. name: "Megamacro",
  7190. height: math.unit(557, "megameters"),
  7191. },
  7192. {
  7193. name: "Unimaginable",
  7194. height: math.unit(120e9, "lightyears")
  7195. },
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(2, "meters"),
  7203. weight: math.unit(80, "kg"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7207. }
  7208. }
  7209. },
  7210. [
  7211. {
  7212. name: "Teramacro",
  7213. height: math.unit(500000, "lightyears"),
  7214. default: true
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7220. {
  7221. crux: {
  7222. height: math.unit(2, "meters"),
  7223. weight: math.unit(150, "kg"),
  7224. name: "Crux",
  7225. image: {
  7226. source: "./media/characters/vemus/crux.svg",
  7227. extra: 1074/936,
  7228. bottom: 23/1097
  7229. }
  7230. },
  7231. skunkTanuki: {
  7232. height: math.unit(2, "meters"),
  7233. weight: math.unit(150, "kg"),
  7234. name: "Skunk-Tanuki",
  7235. image: {
  7236. source: "./media/characters/vemus/skunk-tanuki.svg",
  7237. extra: 926/893,
  7238. bottom: 20/946
  7239. }
  7240. },
  7241. },
  7242. [
  7243. {
  7244. name: "Normal",
  7245. height: math.unit(4, "meters"),
  7246. default: true
  7247. },
  7248. {
  7249. name: "Big",
  7250. height: math.unit(8, "meters")
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(100, "meters")
  7255. },
  7256. {
  7257. name: "Macro+",
  7258. height: math.unit(1500, "meters")
  7259. },
  7260. {
  7261. name: "Stellar",
  7262. height: math.unit(14e8, "meters")
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7268. {
  7269. front: {
  7270. height: math.unit(2, "meters"),
  7271. weight: math.unit(70, "kg"),
  7272. name: "Front",
  7273. image: {
  7274. source: "./media/characters/beherit/front.svg",
  7275. extra: 1234/1109,
  7276. bottom: 55/1289
  7277. }
  7278. }
  7279. },
  7280. [
  7281. {
  7282. name: "Normal",
  7283. height: math.unit(6, "feet")
  7284. },
  7285. {
  7286. name: "Lorg",
  7287. height: math.unit(25, "feet"),
  7288. default: true
  7289. },
  7290. {
  7291. name: "Lorger",
  7292. height: math.unit(75, "feet")
  7293. },
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(200, "meters")
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(2, "meters"),
  7305. weight: math.unit(150, "kg"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/everett/front.svg",
  7309. extra: 1017/866,
  7310. bottom: 86/1103
  7311. }
  7312. },
  7313. paw: {
  7314. height: math.unit(2 / 3.6, "meters"),
  7315. name: "Paw",
  7316. image: {
  7317. source: "./media/characters/everett/paw.svg"
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(15, "feet"),
  7325. default: true
  7326. },
  7327. {
  7328. name: "Lorg",
  7329. height: math.unit(70, "feet"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Lorger",
  7334. height: math.unit(250, "feet")
  7335. },
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(500, "meters")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(2, "meters"),
  7347. weight: math.unit(86, "kg"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/rose/front.svg",
  7351. extra: 1785/1636,
  7352. bottom: 30/1815
  7353. },
  7354. form: "liom",
  7355. default: true
  7356. },
  7357. frontSporty: {
  7358. height: math.unit(2, "meters"),
  7359. weight: math.unit(86, "kg"),
  7360. name: "Front (Sporty)",
  7361. image: {
  7362. source: "./media/characters/rose/front-sporty.svg",
  7363. extra: 350/335,
  7364. bottom: 10/360
  7365. },
  7366. form: "liom"
  7367. },
  7368. frontAlt: {
  7369. height: math.unit(1.6, "meters"),
  7370. weight: math.unit(86, "kg"),
  7371. name: "Front (Alt)",
  7372. image: {
  7373. source: "./media/characters/rose/front-alt.svg",
  7374. extra: 299/283,
  7375. bottom: 3/302
  7376. },
  7377. form: "liom"
  7378. },
  7379. plush: {
  7380. height: math.unit(2, "meters"),
  7381. weight: math.unit(86/3, "kg"),
  7382. name: "Plush",
  7383. image: {
  7384. source: "./media/characters/rose/plush.svg",
  7385. extra: 361/337,
  7386. bottom: 11/372
  7387. },
  7388. form: "plush",
  7389. default: true
  7390. },
  7391. faeStanding: {
  7392. height: math.unit(10, "cm"),
  7393. weight: math.unit(10, "grams"),
  7394. name: "Standing",
  7395. image: {
  7396. source: "./media/characters/rose/fae-standing.svg",
  7397. extra: 1189/1060,
  7398. bottom: 27/1216
  7399. },
  7400. form: "fae",
  7401. default: true
  7402. },
  7403. faeSitting: {
  7404. height: math.unit(5, "cm"),
  7405. weight: math.unit(10, "grams"),
  7406. name: "Sitting",
  7407. image: {
  7408. source: "./media/characters/rose/fae-sitting.svg",
  7409. extra: 737/577,
  7410. bottom: 356/1093
  7411. },
  7412. form: "fae"
  7413. },
  7414. faePaw: {
  7415. height: math.unit(1.35, "cm"),
  7416. name: "Paw",
  7417. image: {
  7418. source: "./media/characters/rose/fae-paw.svg"
  7419. },
  7420. form: "fae"
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "True Micro",
  7426. height: math.unit(9, "cm"),
  7427. form: "liom"
  7428. },
  7429. {
  7430. name: "Micro",
  7431. height: math.unit(16, "cm"),
  7432. form: "liom"
  7433. },
  7434. {
  7435. name: "Normal",
  7436. height: math.unit(1.85, "meters"),
  7437. default: true,
  7438. form: "liom"
  7439. },
  7440. {
  7441. name: "Mini-Macro",
  7442. height: math.unit(5, "meters"),
  7443. form: "liom"
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(15, "meters"),
  7448. form: "liom"
  7449. },
  7450. {
  7451. name: "True Macro",
  7452. height: math.unit(40, "meters"),
  7453. form: "liom"
  7454. },
  7455. {
  7456. name: "City Scale",
  7457. height: math.unit(1, "km"),
  7458. form: "liom"
  7459. },
  7460. {
  7461. name: "Plushie",
  7462. height: math.unit(9, "cm"),
  7463. form: "plush",
  7464. default: true
  7465. },
  7466. {
  7467. name: "Fae",
  7468. height: math.unit(10, "cm"),
  7469. form: "fae",
  7470. default: true
  7471. },
  7472. ],
  7473. {
  7474. "liom": {
  7475. name: "Liom"
  7476. },
  7477. "plush": {
  7478. name: "Plush"
  7479. },
  7480. "fae": {
  7481. name: "Fae Fox",
  7482. default: true
  7483. }
  7484. }
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(2, "meters"),
  7491. weight: math.unit(350, "lbs"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/regal/front.svg"
  7495. }
  7496. },
  7497. back: {
  7498. height: math.unit(2, "meters"),
  7499. weight: math.unit(350, "lbs"),
  7500. name: "Back",
  7501. image: {
  7502. source: "./media/characters/regal/back.svg"
  7503. }
  7504. },
  7505. },
  7506. [
  7507. {
  7508. name: "Macro",
  7509. height: math.unit(350, "feet"),
  7510. default: true
  7511. }
  7512. ]
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7516. {
  7517. front: {
  7518. height: math.unit(4 + 11 / 12, "feet"),
  7519. weight: math.unit(100, "lbs"),
  7520. name: "Front",
  7521. image: {
  7522. source: "./media/characters/opal/front.svg"
  7523. }
  7524. },
  7525. frontAlt: {
  7526. height: math.unit(4 + 11 / 12, "feet"),
  7527. weight: math.unit(100, "lbs"),
  7528. name: "Front (Alt)",
  7529. image: {
  7530. source: "./media/characters/opal/front-alt.svg"
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Small",
  7537. height: math.unit(4 + 11 / 12, "feet")
  7538. },
  7539. {
  7540. name: "Normal",
  7541. height: math.unit(20, "feet"),
  7542. default: true
  7543. },
  7544. {
  7545. name: "Macro",
  7546. height: math.unit(120, "feet")
  7547. },
  7548. {
  7549. name: "Megamacro",
  7550. height: math.unit(80, "miles")
  7551. },
  7552. {
  7553. name: "True Size",
  7554. height: math.unit(100000, "lightyears")
  7555. },
  7556. ]
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7560. {
  7561. front: {
  7562. height: math.unit(6, "feet"),
  7563. weight: math.unit(200, "lbs"),
  7564. name: "Front",
  7565. image: {
  7566. source: "./media/characters/vector-wuff/front.svg"
  7567. }
  7568. }
  7569. },
  7570. [
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(2.8, "meters")
  7574. },
  7575. {
  7576. name: "Macro",
  7577. height: math.unit(450, "meters"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Megamacro",
  7582. height: math.unit(15, "kilometers")
  7583. }
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(256, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/dannik/front.svg"
  7595. }
  7596. }
  7597. },
  7598. [
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(69.57, "meters"),
  7602. default: true
  7603. },
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(120, "lbs"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/azura-saharah/front.svg"
  7615. }
  7616. },
  7617. back: {
  7618. height: math.unit(6, "feet"),
  7619. weight: math.unit(120, "lbs"),
  7620. name: "Back",
  7621. image: {
  7622. source: "./media/characters/azura-saharah/back.svg"
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(100, "feet"),
  7630. default: true
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7636. {
  7637. side: {
  7638. height: math.unit(5 + 4 / 12, "feet"),
  7639. weight: math.unit(163, "lbs"),
  7640. name: "Side",
  7641. image: {
  7642. source: "./media/characters/kennedy/side.svg"
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Standard Doggo",
  7649. height: math.unit(5 + 4 / 12, "feet")
  7650. },
  7651. {
  7652. name: "Big Doggo",
  7653. height: math.unit(25 + 3 / 12, "feet"),
  7654. default: true
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(5 + 5/12, "feet"),
  7663. weight: math.unit(100, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/odios-de-lunar/front.svg",
  7667. extra: 1468/1323,
  7668. bottom: 22/1490
  7669. }
  7670. }
  7671. },
  7672. [
  7673. {
  7674. name: "Micro",
  7675. height: math.unit(3, "inches")
  7676. },
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(5.5, "feet"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(100, "feet")
  7685. },
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7690. {
  7691. back: {
  7692. height: math.unit(6, "feet"),
  7693. weight: math.unit(220, "lbs"),
  7694. name: "Back",
  7695. image: {
  7696. source: "./media/characters/mandake/back.svg"
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Normal",
  7703. height: math.unit(7, "feet"),
  7704. default: true
  7705. },
  7706. {
  7707. name: "Macro",
  7708. height: math.unit(78, "feet")
  7709. },
  7710. {
  7711. name: "Macro+",
  7712. height: math.unit(300, "meters")
  7713. },
  7714. {
  7715. name: "Macro++",
  7716. height: math.unit(2400, "feet")
  7717. },
  7718. {
  7719. name: "Megamacro",
  7720. height: math.unit(5167, "meters")
  7721. },
  7722. {
  7723. name: "Gigamacro",
  7724. height: math.unit(41769, "miles")
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7730. {
  7731. front: {
  7732. height: math.unit(6, "feet"),
  7733. weight: math.unit(120, "lbs"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/yozey/front.svg"
  7737. }
  7738. },
  7739. frontAlt: {
  7740. height: math.unit(6, "feet"),
  7741. weight: math.unit(120, "lbs"),
  7742. name: "Front (Alt)",
  7743. image: {
  7744. source: "./media/characters/yozey/front-alt.svg"
  7745. }
  7746. },
  7747. side: {
  7748. height: math.unit(6, "feet"),
  7749. weight: math.unit(120, "lbs"),
  7750. name: "Side",
  7751. image: {
  7752. source: "./media/characters/yozey/side.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Micro",
  7759. height: math.unit(3, "inches"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Normal",
  7764. height: math.unit(6, "feet")
  7765. }
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(103, "lbs"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/valeska-voss/front.svg"
  7777. }
  7778. }
  7779. },
  7780. [
  7781. {
  7782. name: "Mini-Sized Sub",
  7783. height: math.unit(3.1, "inches")
  7784. },
  7785. {
  7786. name: "Mid-Sized Sub",
  7787. height: math.unit(6.2, "inches")
  7788. },
  7789. {
  7790. name: "Full-Sized Sub",
  7791. height: math.unit(9.3, "inches")
  7792. },
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(5 + 2 / 12, "foot"),
  7796. default: true
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(160, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/gene-zeta/front.svg",
  7809. extra: 3006 / 2826,
  7810. bottom: 182 / 3188
  7811. }
  7812. }
  7813. },
  7814. [
  7815. {
  7816. name: "Micro",
  7817. height: math.unit(6, "inches")
  7818. },
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(5 + 11 / 12, "foot"),
  7822. default: true
  7823. },
  7824. {
  7825. name: "Macro",
  7826. height: math.unit(140, "feet")
  7827. },
  7828. {
  7829. name: "Supercharged",
  7830. height: math.unit(2500, "feet")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(6, "feet"),
  7839. weight: math.unit(350, "lbs"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/razinox/front.svg",
  7843. extra: 1686 / 1548,
  7844. bottom: 28.2 / 1868
  7845. }
  7846. },
  7847. back: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(350, "lbs"),
  7850. name: "Back",
  7851. image: {
  7852. source: "./media/characters/razinox/back.svg",
  7853. extra: 1660 / 1590,
  7854. bottom: 15 / 1665
  7855. }
  7856. },
  7857. },
  7858. [
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(10 + 8 / 12, "foot")
  7862. },
  7863. {
  7864. name: "Minimacro",
  7865. height: math.unit(15, "foot")
  7866. },
  7867. {
  7868. name: "Macro",
  7869. height: math.unit(60, "foot"),
  7870. default: true
  7871. },
  7872. {
  7873. name: "Megamacro",
  7874. height: math.unit(5, "miles")
  7875. },
  7876. {
  7877. name: "Gigamacro",
  7878. height: math.unit(6000, "miles")
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(150, "lbs"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/cobalt/front.svg"
  7891. }
  7892. }
  7893. },
  7894. [
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(8 + 1 / 12, "foot")
  7898. },
  7899. {
  7900. name: "Macro",
  7901. height: math.unit(111, "foot"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Supracosmic",
  7906. height: math.unit(1e42, "feet")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(5, "inches"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/amanda/front.svg",
  7918. extra: 926/791,
  7919. bottom: 38/964
  7920. }
  7921. },
  7922. back: {
  7923. height: math.unit(5, "inches"),
  7924. name: "Back",
  7925. image: {
  7926. source: "./media/characters/amanda/back.svg",
  7927. extra: 909/805,
  7928. bottom: 43/952
  7929. }
  7930. },
  7931. },
  7932. [
  7933. {
  7934. name: "Micro",
  7935. height: math.unit(5, "inches"),
  7936. default: true
  7937. },
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7942. {
  7943. front: {
  7944. height: math.unit(2.75, "meters"),
  7945. weight: math.unit(1200, "lb"),
  7946. name: "Front",
  7947. image: {
  7948. source: "./media/characters/teal/front.svg",
  7949. extra: 2463 / 2320,
  7950. bottom: 166 / 2629
  7951. }
  7952. },
  7953. back: {
  7954. height: math.unit(2.75, "meters"),
  7955. weight: math.unit(1200, "lb"),
  7956. name: "Back",
  7957. image: {
  7958. source: "./media/characters/teal/back.svg",
  7959. extra: 2580 / 2489,
  7960. bottom: 151 / 2731
  7961. }
  7962. },
  7963. sitting: {
  7964. height: math.unit(1.9, "meters"),
  7965. weight: math.unit(1200, "lb"),
  7966. name: "Sitting",
  7967. image: {
  7968. source: "./media/characters/teal/sitting.svg",
  7969. extra: 623 / 590,
  7970. bottom: 121 / 744
  7971. }
  7972. },
  7973. standing: {
  7974. height: math.unit(2.75, "meters"),
  7975. weight: math.unit(1200, "lb"),
  7976. name: "Standing",
  7977. image: {
  7978. source: "./media/characters/teal/standing.svg",
  7979. extra: 923 / 893,
  7980. bottom: 60 / 983
  7981. }
  7982. },
  7983. stretching: {
  7984. height: math.unit(3.65, "meters"),
  7985. weight: math.unit(1200, "lb"),
  7986. name: "Stretching",
  7987. image: {
  7988. source: "./media/characters/teal/stretching.svg",
  7989. extra: 1276 / 1244,
  7990. bottom: 0 / 1276
  7991. }
  7992. },
  7993. legged: {
  7994. height: math.unit(1.3, "meters"),
  7995. weight: math.unit(100, "lb"),
  7996. name: "Legged",
  7997. image: {
  7998. source: "./media/characters/teal/legged.svg",
  7999. extra: 462 / 437,
  8000. bottom: 24 / 486
  8001. }
  8002. },
  8003. naga: {
  8004. height: math.unit(5.4, "meters"),
  8005. weight: math.unit(4000, "lb"),
  8006. name: "Naga",
  8007. image: {
  8008. source: "./media/characters/teal/naga.svg",
  8009. extra: 1902 / 1858,
  8010. bottom: 0 / 1902
  8011. }
  8012. },
  8013. hand: {
  8014. height: math.unit(0.52, "meters"),
  8015. name: "Hand",
  8016. image: {
  8017. source: "./media/characters/teal/hand.svg"
  8018. }
  8019. },
  8020. maw: {
  8021. height: math.unit(0.43, "meters"),
  8022. name: "Maw",
  8023. image: {
  8024. source: "./media/characters/teal/maw.svg"
  8025. }
  8026. },
  8027. slit: {
  8028. height: math.unit(0.25, "meters"),
  8029. name: "Slit",
  8030. image: {
  8031. source: "./media/characters/teal/slit.svg"
  8032. }
  8033. },
  8034. },
  8035. [
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(2.75, "meters"),
  8039. default: true
  8040. },
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(300, "feet")
  8044. },
  8045. {
  8046. name: "Macro+",
  8047. height: math.unit(2000, "feet")
  8048. },
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8053. {
  8054. frontCat: {
  8055. height: math.unit(6, "feet"),
  8056. weight: math.unit(180, "lbs"),
  8057. name: "Front (Cat)",
  8058. image: {
  8059. source: "./media/characters/ravin-amulet/front-cat.svg"
  8060. }
  8061. },
  8062. frontCatAlt: {
  8063. height: math.unit(6, "feet"),
  8064. weight: math.unit(180, "lbs"),
  8065. name: "Front (Alt, Cat)",
  8066. image: {
  8067. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8068. }
  8069. },
  8070. frontWerewolf: {
  8071. height: math.unit(6 * 1.2, "feet"),
  8072. weight: math.unit(225, "lbs"),
  8073. name: "Front (Werewolf)",
  8074. image: {
  8075. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8076. }
  8077. },
  8078. backWerewolf: {
  8079. height: math.unit(6 * 1.2, "feet"),
  8080. weight: math.unit(225, "lbs"),
  8081. name: "Back (Werewolf)",
  8082. image: {
  8083. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8084. }
  8085. },
  8086. },
  8087. [
  8088. {
  8089. name: "Nano",
  8090. height: math.unit(1, "micrometer")
  8091. },
  8092. {
  8093. name: "Micro",
  8094. height: math.unit(1, "inch")
  8095. },
  8096. {
  8097. name: "Normal",
  8098. height: math.unit(6, "feet"),
  8099. default: true
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(60, "feet")
  8104. }
  8105. ]
  8106. ))
  8107. characterMakers.push(() => makeCharacter(
  8108. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8109. {
  8110. front: {
  8111. height: math.unit(6, "feet"),
  8112. weight: math.unit(165, "lbs"),
  8113. name: "Front",
  8114. image: {
  8115. source: "./media/characters/fluoresce/front.svg"
  8116. }
  8117. }
  8118. },
  8119. [
  8120. {
  8121. name: "Micro",
  8122. height: math.unit(6, "cm")
  8123. },
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(5 + 7 / 12, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(56, "feet")
  8132. },
  8133. {
  8134. name: "Megamacro",
  8135. height: math.unit(1.9, "miles")
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8141. {
  8142. front: {
  8143. height: math.unit(9 + 6 / 12, "feet"),
  8144. weight: math.unit(523, "lbs"),
  8145. name: "Side",
  8146. image: {
  8147. source: "./media/characters/aurora/side.svg"
  8148. }
  8149. }
  8150. },
  8151. [
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(9 + 6 / 12, "feet")
  8155. },
  8156. {
  8157. name: "Macro",
  8158. height: math.unit(96, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro+",
  8163. height: math.unit(243, "feet")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(194, "cm"),
  8172. weight: math.unit(90, "kg"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/ranek/front.svg",
  8176. extra: 1862/1791,
  8177. bottom: 80/1942
  8178. }
  8179. },
  8180. back: {
  8181. height: math.unit(194, "cm"),
  8182. weight: math.unit(90, "kg"),
  8183. name: "Back",
  8184. image: {
  8185. source: "./media/characters/ranek/back.svg",
  8186. extra: 1853/1787,
  8187. bottom: 74/1927
  8188. }
  8189. },
  8190. feral: {
  8191. height: math.unit(30, "cm"),
  8192. weight: math.unit(1.6, "lbs"),
  8193. name: "Feral",
  8194. image: {
  8195. source: "./media/characters/ranek/feral.svg",
  8196. extra: 990/631,
  8197. bottom: 29/1019
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(194, "cm"),
  8205. default: true
  8206. },
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(100, "meters")
  8210. },
  8211. ]
  8212. ))
  8213. characterMakers.push(() => makeCharacter(
  8214. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8215. {
  8216. front: {
  8217. height: math.unit(5 + 6 / 12, "feet"),
  8218. weight: math.unit(153, "lbs"),
  8219. name: "Front",
  8220. image: {
  8221. source: "./media/characters/andrew-cooper/front.svg"
  8222. }
  8223. },
  8224. },
  8225. [
  8226. {
  8227. name: "Nano",
  8228. height: math.unit(1, "mm")
  8229. },
  8230. {
  8231. name: "Micro",
  8232. height: math.unit(2, "inches")
  8233. },
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(5 + 6 / 12, "feet"),
  8237. default: true
  8238. }
  8239. ]
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8243. {
  8244. front: {
  8245. height: math.unit(6, "feet"),
  8246. weight: math.unit(180, "lbs"),
  8247. name: "Front",
  8248. image: {
  8249. source: "./media/characters/akane-sato/front.svg",
  8250. extra: 1219 / 1140
  8251. }
  8252. },
  8253. back: {
  8254. height: math.unit(6, "feet"),
  8255. weight: math.unit(180, "lbs"),
  8256. name: "Back",
  8257. image: {
  8258. source: "./media/characters/akane-sato/back.svg",
  8259. extra: 1219 / 1170
  8260. }
  8261. },
  8262. },
  8263. [
  8264. {
  8265. name: "Normal",
  8266. height: math.unit(2.5, "meters")
  8267. },
  8268. {
  8269. name: "Macro",
  8270. height: math.unit(250, "meters"),
  8271. default: true
  8272. },
  8273. {
  8274. name: "Megamacro",
  8275. height: math.unit(25, "km")
  8276. },
  8277. ]
  8278. ))
  8279. characterMakers.push(() => makeCharacter(
  8280. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8281. {
  8282. front: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(65, "kg"),
  8285. name: "Front",
  8286. image: {
  8287. source: "./media/characters/rook/front.svg",
  8288. extra: 960 / 950
  8289. }
  8290. }
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(8.8, "feet")
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(88, "feet"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(8, "miles")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(12 + 2 / 12, "feet"),
  8313. weight: math.unit(808, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/prodigy/front.svg"
  8317. }
  8318. }
  8319. },
  8320. [
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(12 + 2 / 12, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(143, "feet")
  8329. },
  8330. {
  8331. name: "Macro+",
  8332. height: math.unit(400, "feet")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(225, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/daniel/front.svg"
  8345. }
  8346. },
  8347. leaning: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(225, "lbs"),
  8350. name: "Leaning",
  8351. image: {
  8352. source: "./media/characters/daniel/leaning.svg"
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(1000, "feet"),
  8360. default: true
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(88, "lbs"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/chiros/front.svg",
  8373. extra: 306 / 226
  8374. }
  8375. },
  8376. side: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(88, "lbs"),
  8379. name: "Side",
  8380. image: {
  8381. source: "./media/characters/chiros/side.svg",
  8382. extra: 306 / 226
  8383. }
  8384. },
  8385. },
  8386. [
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(6, "cm"),
  8390. default: true
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8396. {
  8397. front: {
  8398. height: math.unit(6, "feet"),
  8399. weight: math.unit(100, "lbs"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/selka/front.svg",
  8403. extra: 947 / 887
  8404. }
  8405. }
  8406. },
  8407. [
  8408. {
  8409. name: "Normal",
  8410. height: math.unit(5, "cm"),
  8411. default: true
  8412. },
  8413. ]
  8414. ))
  8415. characterMakers.push(() => makeCharacter(
  8416. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8417. {
  8418. front: {
  8419. height: math.unit(8 + 3 / 12, "feet"),
  8420. weight: math.unit(424, "lbs"),
  8421. name: "Front",
  8422. image: {
  8423. source: "./media/characters/verin/front.svg",
  8424. extra: 1845 / 1550
  8425. }
  8426. },
  8427. frontArmored: {
  8428. height: math.unit(8 + 3 / 12, "feet"),
  8429. weight: math.unit(424, "lbs"),
  8430. name: "Front (Armored)",
  8431. image: {
  8432. source: "./media/characters/verin/front-armor.svg",
  8433. extra: 1845 / 1550,
  8434. bottom: 0.01
  8435. }
  8436. },
  8437. back: {
  8438. height: math.unit(8 + 3 / 12, "feet"),
  8439. weight: math.unit(424, "lbs"),
  8440. name: "Back",
  8441. image: {
  8442. source: "./media/characters/verin/back.svg",
  8443. bottom: 0.1,
  8444. extra: 1
  8445. }
  8446. },
  8447. foot: {
  8448. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8449. name: "Foot",
  8450. image: {
  8451. source: "./media/characters/verin/foot.svg"
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(8 + 3 / 12, "feet")
  8459. },
  8460. {
  8461. name: "Minimacro",
  8462. height: math.unit(21, "feet"),
  8463. default: true
  8464. },
  8465. {
  8466. name: "Macro",
  8467. height: math.unit(626, "feet")
  8468. },
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(2.718, "meters"),
  8476. weight: math.unit(150, "lbs"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/sovrim-terraquian/front.svg",
  8480. extra: 1752/1689,
  8481. bottom: 36/1788
  8482. }
  8483. },
  8484. back: {
  8485. height: math.unit(2.718, "meters"),
  8486. weight: math.unit(150, "lbs"),
  8487. name: "Back",
  8488. image: {
  8489. source: "./media/characters/sovrim-terraquian/back.svg",
  8490. extra: 1698/1657,
  8491. bottom: 58/1756
  8492. }
  8493. },
  8494. tongue: {
  8495. height: math.unit(2.865, "feet"),
  8496. name: "Tongue",
  8497. image: {
  8498. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8499. }
  8500. },
  8501. hand: {
  8502. height: math.unit(1.61, "feet"),
  8503. name: "Hand",
  8504. image: {
  8505. source: "./media/characters/sovrim-terraquian/hand.svg"
  8506. }
  8507. },
  8508. foot: {
  8509. height: math.unit(1.05, "feet"),
  8510. name: "Foot",
  8511. image: {
  8512. source: "./media/characters/sovrim-terraquian/foot.svg"
  8513. }
  8514. },
  8515. footAlt: {
  8516. height: math.unit(0.88, "feet"),
  8517. name: "Foot (Alt)",
  8518. image: {
  8519. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8520. }
  8521. },
  8522. },
  8523. [
  8524. {
  8525. name: "Micro",
  8526. height: math.unit(2, "inches")
  8527. },
  8528. {
  8529. name: "Small",
  8530. height: math.unit(1, "meter")
  8531. },
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(Math.E, "meters"),
  8535. default: true
  8536. },
  8537. {
  8538. name: "Macro",
  8539. height: math.unit(20, "meters")
  8540. },
  8541. {
  8542. name: "Macro+",
  8543. height: math.unit(400, "meters")
  8544. },
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8549. {
  8550. front: {
  8551. height: math.unit(7, "feet"),
  8552. weight: math.unit(489, "lbs"),
  8553. name: "Front",
  8554. image: {
  8555. source: "./media/characters/reece-silvermane/front.svg",
  8556. bottom: 0.02,
  8557. extra: 1
  8558. }
  8559. },
  8560. },
  8561. [
  8562. {
  8563. name: "Macro",
  8564. height: math.unit(1.5, "miles"),
  8565. default: true
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(6, "feet"),
  8574. weight: math.unit(78, "kg"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/kane/front.svg",
  8578. extra: 978 / 899
  8579. }
  8580. },
  8581. },
  8582. [
  8583. {
  8584. name: "Normal",
  8585. height: math.unit(2.1, "m"),
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(1, "km"),
  8590. default: true
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(200, "kg"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/tegon/front.svg",
  8603. bottom: 0.01,
  8604. extra: 1
  8605. }
  8606. },
  8607. },
  8608. [
  8609. {
  8610. name: "Micro",
  8611. height: math.unit(1, "inch")
  8612. },
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(6 + 3 / 12, "feet"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(300, "feet")
  8621. },
  8622. {
  8623. name: "Megamacro",
  8624. height: math.unit(69, "miles")
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8630. {
  8631. side: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(2304, "lbs"),
  8634. name: "Side",
  8635. image: {
  8636. source: "./media/characters/arcturax/side.svg",
  8637. extra: 790 / 376,
  8638. bottom: 0.01
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Micro",
  8645. height: math.unit(2, "inch")
  8646. },
  8647. {
  8648. name: "Normal",
  8649. height: math.unit(6, "feet")
  8650. },
  8651. {
  8652. name: "Macro",
  8653. height: math.unit(39, "feet"),
  8654. default: true
  8655. },
  8656. {
  8657. name: "Megamacro",
  8658. height: math.unit(7, "miles")
  8659. },
  8660. ]
  8661. ))
  8662. characterMakers.push(() => makeCharacter(
  8663. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8664. {
  8665. front: {
  8666. height: math.unit(6, "feet"),
  8667. weight: math.unit(50, "lbs"),
  8668. name: "Front",
  8669. image: {
  8670. source: "./media/characters/sentri/front.svg",
  8671. extra: 1750 / 1570,
  8672. bottom: 0.025
  8673. }
  8674. },
  8675. frontAlt: {
  8676. height: math.unit(6, "feet"),
  8677. weight: math.unit(50, "lbs"),
  8678. name: "Front (Alt)",
  8679. image: {
  8680. source: "./media/characters/sentri/front-alt.svg",
  8681. extra: 1750 / 1570,
  8682. bottom: 0.025
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(15, "feet"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(2500, "feet")
  8695. }
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(5 + 8 / 12, "feet"),
  8703. weight: math.unit(130, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/corvin/front.svg",
  8707. extra: 1803 / 1629
  8708. }
  8709. },
  8710. frontShirt: {
  8711. height: math.unit(5 + 8 / 12, "feet"),
  8712. weight: math.unit(130, "lbs"),
  8713. name: "Front (Shirt)",
  8714. image: {
  8715. source: "./media/characters/corvin/front-shirt.svg",
  8716. extra: 1803 / 1629
  8717. }
  8718. },
  8719. frontPoncho: {
  8720. height: math.unit(5 + 8 / 12, "feet"),
  8721. weight: math.unit(130, "lbs"),
  8722. name: "Front (Poncho)",
  8723. image: {
  8724. source: "./media/characters/corvin/front-poncho.svg",
  8725. extra: 1803 / 1629
  8726. }
  8727. },
  8728. side: {
  8729. height: math.unit(5 + 8 / 12, "feet"),
  8730. weight: math.unit(130, "lbs"),
  8731. name: "Side",
  8732. image: {
  8733. source: "./media/characters/corvin/side.svg",
  8734. extra: 1012 / 945
  8735. }
  8736. },
  8737. back: {
  8738. height: math.unit(5 + 8 / 12, "feet"),
  8739. weight: math.unit(130, "lbs"),
  8740. name: "Back",
  8741. image: {
  8742. source: "./media/characters/corvin/back.svg",
  8743. extra: 1803 / 1629
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Micro",
  8750. height: math.unit(3, "inches")
  8751. },
  8752. {
  8753. name: "Normal",
  8754. height: math.unit(5 + 8 / 12, "feet")
  8755. },
  8756. {
  8757. name: "Macro",
  8758. height: math.unit(300, "feet"),
  8759. default: true
  8760. },
  8761. {
  8762. name: "Megamacro",
  8763. height: math.unit(500, "miles")
  8764. }
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(6, "feet"),
  8772. weight: math.unit(135, "lbs"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/q/front.svg",
  8776. extra: 854 / 752,
  8777. bottom: 0.005
  8778. }
  8779. },
  8780. back: {
  8781. height: math.unit(6, "feet"),
  8782. weight: math.unit(130, "lbs"),
  8783. name: "Back",
  8784. image: {
  8785. source: "./media/characters/q/back.svg",
  8786. extra: 854 / 752
  8787. }
  8788. },
  8789. },
  8790. [
  8791. {
  8792. name: "Macro",
  8793. height: math.unit(90, "feet"),
  8794. default: true
  8795. },
  8796. {
  8797. name: "Extra Macro",
  8798. height: math.unit(300, "feet"),
  8799. },
  8800. {
  8801. name: "BIG WALF",
  8802. height: math.unit(750, "feet"),
  8803. },
  8804. ]
  8805. ))
  8806. characterMakers.push(() => makeCharacter(
  8807. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8808. {
  8809. front: {
  8810. height: math.unit(6, "feet"),
  8811. weight: math.unit(150, "lbs"),
  8812. name: "Front",
  8813. image: {
  8814. source: "./media/characters/carley/front.svg",
  8815. extra: 3927 / 3540,
  8816. bottom: 29.2 / 735
  8817. }
  8818. }
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(6 + 3 / 12, "feet")
  8824. },
  8825. {
  8826. name: "Macro",
  8827. height: math.unit(185, "feet"),
  8828. default: true
  8829. },
  8830. {
  8831. name: "Megamacro",
  8832. height: math.unit(8, "miles"),
  8833. },
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8838. {
  8839. front: {
  8840. height: math.unit(3, "feet"),
  8841. weight: math.unit(28, "lbs"),
  8842. name: "Front",
  8843. image: {
  8844. source: "./media/characters/citrine/front.svg"
  8845. }
  8846. }
  8847. },
  8848. [
  8849. {
  8850. name: "Normal",
  8851. height: math.unit(3, "feet"),
  8852. default: true
  8853. }
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8858. {
  8859. front: {
  8860. height: math.unit(14, "feet"),
  8861. weight: math.unit(1450, "kg"),
  8862. preyCapacity: math.unit(15, "people"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/aura-starwind/front.svg",
  8866. extra: 1440/1327,
  8867. bottom: 11/1451
  8868. }
  8869. },
  8870. side: {
  8871. height: math.unit(14, "feet"),
  8872. weight: math.unit(1450, "kg"),
  8873. preyCapacity: math.unit(15, "people"),
  8874. name: "Side",
  8875. image: {
  8876. source: "./media/characters/aura-starwind/side.svg",
  8877. extra: 1654 / 1497
  8878. }
  8879. },
  8880. taur: {
  8881. height: math.unit(18, "feet"),
  8882. weight: math.unit(5500, "kg"),
  8883. preyCapacity: math.unit(50, "people"),
  8884. name: "Taur",
  8885. image: {
  8886. source: "./media/characters/aura-starwind/taur.svg",
  8887. extra: 1760 / 1650
  8888. }
  8889. },
  8890. feral: {
  8891. height: math.unit(46, "feet"),
  8892. weight: math.unit(25000, "kg"),
  8893. preyCapacity: math.unit(120, "people"),
  8894. name: "Feral",
  8895. image: {
  8896. source: "./media/characters/aura-starwind/feral.svg"
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(14, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Macro",
  8908. height: math.unit(50, "meters")
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(5000, "meters")
  8913. },
  8914. {
  8915. name: "Gigamacro",
  8916. height: math.unit(100000, "kilometers")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(2 + 7 / 12, "feet"),
  8925. weight: math.unit(32, "lbs"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/rivet/front.svg",
  8929. extra: 1716 / 1658,
  8930. bottom: 0.03
  8931. }
  8932. },
  8933. foot: {
  8934. height: math.unit(0.551, "feet"),
  8935. name: "Rivet's Foot",
  8936. image: {
  8937. source: "./media/characters/rivet/foot.svg"
  8938. },
  8939. rename: true
  8940. }
  8941. },
  8942. [
  8943. {
  8944. name: "Micro",
  8945. height: math.unit(1.5, "inches"),
  8946. },
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(2 + 7 / 12, "feet"),
  8950. default: true
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(85, "feet")
  8955. },
  8956. {
  8957. name: "Megamacro",
  8958. height: math.unit(2.2, "km")
  8959. }
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(5 + 9 / 12, "feet"),
  8967. weight: math.unit(150, "lbs"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/coffee/front.svg",
  8971. extra: 3666 / 3032,
  8972. bottom: 0.04
  8973. }
  8974. },
  8975. foot: {
  8976. height: math.unit(1.29, "feet"),
  8977. name: "Foot",
  8978. image: {
  8979. source: "./media/characters/coffee/foot.svg"
  8980. }
  8981. },
  8982. },
  8983. [
  8984. {
  8985. name: "Micro",
  8986. height: math.unit(2, "inches"),
  8987. },
  8988. {
  8989. name: "Normal",
  8990. height: math.unit(5 + 9 / 12, "feet"),
  8991. default: true
  8992. },
  8993. {
  8994. name: "Macro",
  8995. height: math.unit(800, "feet")
  8996. },
  8997. {
  8998. name: "Megamacro",
  8999. height: math.unit(25, "miles")
  9000. }
  9001. ]
  9002. ))
  9003. characterMakers.push(() => makeCharacter(
  9004. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9005. {
  9006. front: {
  9007. height: math.unit(6, "feet"),
  9008. weight: math.unit(200, "lbs"),
  9009. name: "Front",
  9010. image: {
  9011. source: "./media/characters/chari-gal/front.svg",
  9012. extra: 1568 / 1385,
  9013. bottom: 0.047
  9014. }
  9015. },
  9016. gigantamax: {
  9017. height: math.unit(6 * 16, "feet"),
  9018. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9019. name: "Gigantamax",
  9020. image: {
  9021. source: "./media/characters/chari-gal/gigantamax.svg",
  9022. extra: 1124 / 888,
  9023. bottom: 0.03
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(5 + 7 / 12, "feet")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(200, "feet"),
  9035. default: true
  9036. }
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9041. {
  9042. front: {
  9043. height: math.unit(6, "feet"),
  9044. weight: math.unit(150, "lbs"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/nova/front.svg",
  9048. extra: 5000 / 4722,
  9049. bottom: 0.02
  9050. }
  9051. }
  9052. },
  9053. [
  9054. {
  9055. name: "Micro-",
  9056. height: math.unit(0.8, "inches")
  9057. },
  9058. {
  9059. name: "Micro",
  9060. height: math.unit(2, "inches"),
  9061. default: true
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(3 + 1 / 12, "feet"),
  9070. weight: math.unit(21.7, "lbs"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/argent/front.svg",
  9074. extra: 1471 / 1331,
  9075. bottom: 100.8 / 1575.5
  9076. }
  9077. }
  9078. },
  9079. [
  9080. {
  9081. name: "Micro",
  9082. height: math.unit(2, "inches")
  9083. },
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(3 + 1 / 12, "feet"),
  9087. default: true
  9088. },
  9089. {
  9090. name: "Macro",
  9091. height: math.unit(120, "feet")
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9097. {
  9098. lamp: {
  9099. height: math.unit(7 * 1559 / 989, "feet"),
  9100. name: "Magic Lamp",
  9101. image: {
  9102. source: "./media/characters/mira-al-cul/lamp.svg",
  9103. extra: 1617 / 1559
  9104. }
  9105. },
  9106. front: {
  9107. height: math.unit(7, "feet"),
  9108. name: "Front",
  9109. image: {
  9110. source: "./media/characters/mira-al-cul/front.svg",
  9111. extra: 1044 / 990
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Heavily Restricted",
  9118. height: math.unit(7 * 1559 / 989, "feet")
  9119. },
  9120. {
  9121. name: "Freshly Freed",
  9122. height: math.unit(50 * 1559 / 989, "feet")
  9123. },
  9124. {
  9125. name: "World Encompassing",
  9126. height: math.unit(10000 * 1559 / 989, "miles")
  9127. },
  9128. {
  9129. name: "Galactic",
  9130. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9131. },
  9132. {
  9133. name: "Palmed Universe",
  9134. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9135. default: true
  9136. },
  9137. {
  9138. name: "Multiversal Matriarch",
  9139. height: math.unit(8.87e10, "yottameters")
  9140. },
  9141. {
  9142. name: "Void Mother",
  9143. height: math.unit(3.14e110, "yottaparsecs")
  9144. },
  9145. {
  9146. name: "Toying with Transcendence",
  9147. height: math.unit(1e307, "meters")
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9153. {
  9154. front: {
  9155. height: math.unit(17 + 1 / 12, "feet"),
  9156. weight: math.unit(476.2 * 5, "lbs"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/kuro-shi-uchū/front.svg",
  9160. extra: 2329 / 1835,
  9161. bottom: 0.02
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Micro",
  9168. height: math.unit(2, "inches")
  9169. },
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(12, "meters")
  9173. },
  9174. {
  9175. name: "Planetary",
  9176. height: math.unit(0.00929, "AU"),
  9177. default: true
  9178. },
  9179. {
  9180. name: "Universal",
  9181. height: math.unit(20, "gigaparsecs")
  9182. },
  9183. ]
  9184. ))
  9185. characterMakers.push(() => makeCharacter(
  9186. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9187. {
  9188. front: {
  9189. height: math.unit(5 + 2 / 12, "feet"),
  9190. weight: math.unit(120, "lbs"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/katherine/front.svg",
  9194. extra: 2075 / 1969
  9195. }
  9196. },
  9197. dress: {
  9198. height: math.unit(5 + 2 / 12, "feet"),
  9199. weight: math.unit(120, "lbs"),
  9200. name: "Dress",
  9201. image: {
  9202. source: "./media/characters/katherine/dress.svg",
  9203. extra: 2258 / 2064
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Micro",
  9210. height: math.unit(1, "inches"),
  9211. default: true
  9212. },
  9213. {
  9214. name: "Normal",
  9215. height: math.unit(5 + 2 / 12, "feet")
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(100, "meters")
  9220. },
  9221. {
  9222. name: "Megamacro",
  9223. height: math.unit(80, "miles")
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(7 + 8 / 12, "feet"),
  9232. weight: math.unit(250, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/yevis/front.svg",
  9236. extra: 1938 / 1755
  9237. }
  9238. }
  9239. },
  9240. [
  9241. {
  9242. name: "Mortal",
  9243. height: math.unit(7 + 8 / 12, "feet")
  9244. },
  9245. {
  9246. name: "Battle",
  9247. height: math.unit(25 + 11 / 12, "feet")
  9248. },
  9249. {
  9250. name: "Wrath",
  9251. height: math.unit(1654 + 11 / 12, "feet")
  9252. },
  9253. {
  9254. name: "Planet Destroyer",
  9255. height: math.unit(12000, "miles")
  9256. },
  9257. {
  9258. name: "Galaxy Conqueror",
  9259. height: math.unit(1.45, "zettameters"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Universal War",
  9264. height: math.unit(184, "gigaparsecs")
  9265. },
  9266. {
  9267. name: "Eternity War",
  9268. height: math.unit(1.98e55, "yottaparsecs")
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9274. {
  9275. front: {
  9276. height: math.unit(5 + 8 / 12, "feet"),
  9277. weight: math.unit(63, "kg"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/xavier/front.svg",
  9281. extra: 944 / 883
  9282. }
  9283. },
  9284. frontStretch: {
  9285. height: math.unit(5 + 8 / 12, "feet"),
  9286. weight: math.unit(63, "kg"),
  9287. name: "Stretching",
  9288. image: {
  9289. source: "./media/characters/xavier/front-stretch.svg",
  9290. extra: 962 / 820
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(5 + 8 / 12, "feet")
  9298. },
  9299. {
  9300. name: "Macro",
  9301. height: math.unit(100, "meters"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "McLargeHuge",
  9306. height: math.unit(10, "miles")
  9307. },
  9308. ]
  9309. ))
  9310. characterMakers.push(() => makeCharacter(
  9311. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9312. {
  9313. front: {
  9314. height: math.unit(5 + 5 / 12, "feet"),
  9315. weight: math.unit(150, "lb"),
  9316. name: "Front",
  9317. image: {
  9318. source: "./media/characters/joshii/front.svg",
  9319. extra: 765 / 653,
  9320. bottom: 51 / 816
  9321. }
  9322. },
  9323. foot: {
  9324. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9325. name: "Foot",
  9326. image: {
  9327. source: "./media/characters/joshii/foot.svg"
  9328. }
  9329. },
  9330. },
  9331. [
  9332. {
  9333. name: "Micro",
  9334. height: math.unit(2, "inches"),
  9335. default: true
  9336. },
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(5 + 5 / 12, "feet")
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(785, "feet")
  9344. },
  9345. {
  9346. name: "Megamacro",
  9347. height: math.unit(24.5, "miles")
  9348. },
  9349. ]
  9350. ))
  9351. characterMakers.push(() => makeCharacter(
  9352. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9353. {
  9354. front: {
  9355. height: math.unit(6, "feet"),
  9356. weight: math.unit(150, "lb"),
  9357. name: "Front",
  9358. image: {
  9359. source: "./media/characters/goddess-elizabeth/front.svg",
  9360. extra: 1800 / 1525,
  9361. bottom: 0.005
  9362. }
  9363. },
  9364. foot: {
  9365. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9366. name: "Foot",
  9367. image: {
  9368. source: "./media/characters/goddess-elizabeth/foot.svg"
  9369. }
  9370. },
  9371. mouth: {
  9372. height: math.unit(6, "feet"),
  9373. name: "Mouth",
  9374. image: {
  9375. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Micro",
  9382. height: math.unit(12, "feet")
  9383. },
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(80, "miles"),
  9387. default: true
  9388. },
  9389. {
  9390. name: "Macro",
  9391. height: math.unit(15000, "parsecs")
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(5 + 9 / 12, "feet"),
  9400. weight: math.unit(144, "lb"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/kara/front.svg"
  9404. }
  9405. },
  9406. feet: {
  9407. height: math.unit(6 / 6.765, "feet"),
  9408. name: "Kara's Feet",
  9409. rename: true,
  9410. image: {
  9411. source: "./media/characters/kara/feet.svg"
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Normal",
  9418. height: math.unit(5 + 9 / 12, "feet")
  9419. },
  9420. {
  9421. name: "Macro",
  9422. height: math.unit(174, "feet"),
  9423. default: true
  9424. },
  9425. ]
  9426. ))
  9427. characterMakers.push(() => makeCharacter(
  9428. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9429. {
  9430. front: {
  9431. height: math.unit(18, "feet"),
  9432. weight: math.unit(4050, "lb"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/tyrone/front.svg",
  9436. extra: 2405 / 2270,
  9437. bottom: 182 / 2587
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(18, "feet"),
  9445. default: true
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(300, "feet")
  9450. },
  9451. {
  9452. name: "Megamacro",
  9453. height: math.unit(15, "km")
  9454. },
  9455. {
  9456. name: "Gigamacro",
  9457. height: math.unit(500, "km")
  9458. },
  9459. {
  9460. name: "Teramacro",
  9461. height: math.unit(0.5, "gigameters")
  9462. },
  9463. {
  9464. name: "Omnimacro",
  9465. height: math.unit(1e252, "yottauniverse")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(7 + 8 / 12, "feet"),
  9474. weight: math.unit(120, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/danny/front.svg",
  9478. extra: 1490 / 1350
  9479. }
  9480. },
  9481. back: {
  9482. height: math.unit(7 + 8 / 12, "feet"),
  9483. weight: math.unit(120, "lb"),
  9484. name: "Back",
  9485. image: {
  9486. source: "./media/characters/danny/back.svg",
  9487. extra: 1490 / 1350
  9488. }
  9489. },
  9490. },
  9491. [
  9492. {
  9493. name: "Normal",
  9494. height: math.unit(7 + 8 / 12, "feet"),
  9495. default: true
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(3.5, "inches"),
  9504. weight: math.unit(19, "grams"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/mallow/front.svg",
  9508. extra: 471 / 431
  9509. }
  9510. },
  9511. back: {
  9512. height: math.unit(3.5, "inches"),
  9513. weight: math.unit(19, "grams"),
  9514. name: "Back",
  9515. image: {
  9516. source: "./media/characters/mallow/back.svg",
  9517. extra: 471 / 431
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(3.5, "inches"),
  9525. default: true
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(9, "feet"),
  9534. weight: math.unit(230, "kg"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/starry-aqua/front.svg"
  9538. }
  9539. },
  9540. back: {
  9541. height: math.unit(9, "feet"),
  9542. weight: math.unit(230, "kg"),
  9543. name: "Back",
  9544. image: {
  9545. source: "./media/characters/starry-aqua/back.svg"
  9546. }
  9547. },
  9548. hand: {
  9549. height: math.unit(9 * 0.1168, "feet"),
  9550. name: "Hand",
  9551. image: {
  9552. source: "./media/characters/starry-aqua/hand.svg"
  9553. }
  9554. },
  9555. foot: {
  9556. height: math.unit(9 * 0.18, "feet"),
  9557. name: "Foot",
  9558. image: {
  9559. source: "./media/characters/starry-aqua/foot.svg"
  9560. }
  9561. }
  9562. },
  9563. [
  9564. {
  9565. name: "Micro",
  9566. height: math.unit(3, "inches")
  9567. },
  9568. {
  9569. name: "Normal",
  9570. height: math.unit(9, "feet")
  9571. },
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(300, "feet"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Megamacro",
  9579. height: math.unit(3200, "feet")
  9580. }
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(15, "feet"),
  9588. weight: math.unit(5026, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/luka-towers/front.svg",
  9592. extra: 1269/1133,
  9593. bottom: 51/1320
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(15, "feet"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Minimacro",
  9605. height: math.unit(25, "feet")
  9606. },
  9607. {
  9608. name: "Macro",
  9609. height: math.unit(320, "feet")
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(35000, "feet")
  9614. },
  9615. {
  9616. name: "Gigamacro",
  9617. height: math.unit(4000, "miles")
  9618. },
  9619. {
  9620. name: "Teramacro",
  9621. height: math.unit(15000, "miles")
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(6, "feet"),
  9630. weight: math.unit(150, "lb"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/natalie-nightring/front.svg",
  9634. extra: 1,
  9635. bottom: 0.06
  9636. }
  9637. },
  9638. },
  9639. [
  9640. {
  9641. name: "Uh Oh",
  9642. height: math.unit(0.1, "mm")
  9643. },
  9644. {
  9645. name: "Small",
  9646. height: math.unit(3, "inches")
  9647. },
  9648. {
  9649. name: "Human Scale",
  9650. height: math.unit(6, "feet")
  9651. },
  9652. {
  9653. name: "Librarian",
  9654. height: math.unit(50, "feet"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "Immense",
  9659. height: math.unit(200, "miles")
  9660. },
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9665. {
  9666. front: {
  9667. height: math.unit(6, "feet"),
  9668. weight: math.unit(180, "lbs"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/danni-rosie/front.svg",
  9672. extra: 1260 / 1128,
  9673. bottom: 0.022
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Micro",
  9680. height: math.unit(2, "inches"),
  9681. default: true
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(5 + 9 / 12, "feet"),
  9690. weight: math.unit(220, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/samantha-kruse/front.svg",
  9694. extra: (985 / 935),
  9695. bottom: 0.03
  9696. }
  9697. },
  9698. frontUndressed: {
  9699. height: math.unit(5 + 9 / 12, "feet"),
  9700. weight: math.unit(220, "lb"),
  9701. name: "Front (Undressed)",
  9702. image: {
  9703. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9704. extra: (973 / 923),
  9705. bottom: 0.025
  9706. }
  9707. },
  9708. fat: {
  9709. height: math.unit(5 + 9 / 12, "feet"),
  9710. weight: math.unit(900, "lb"),
  9711. name: "Front (Fat)",
  9712. image: {
  9713. source: "./media/characters/samantha-kruse/fat.svg",
  9714. extra: 2688 / 2561
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(5 + 9 / 12, "feet"),
  9722. default: true
  9723. }
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9728. {
  9729. back: {
  9730. height: math.unit(5 + 4 / 12, "feet"),
  9731. weight: math.unit(4963, "lb"),
  9732. name: "Back",
  9733. image: {
  9734. source: "./media/characters/amelia-rosie/back.svg",
  9735. extra: 1113 / 963,
  9736. bottom: 0.01
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Level 0",
  9743. height: math.unit(5 + 4 / 12, "feet")
  9744. },
  9745. {
  9746. name: "Level 1",
  9747. height: math.unit(164597, "feet"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Level 2",
  9752. height: math.unit(956243, "miles")
  9753. },
  9754. {
  9755. name: "Level 3",
  9756. height: math.unit(29421709423, "miles")
  9757. },
  9758. {
  9759. name: "Level 4",
  9760. height: math.unit(154, "lightyears")
  9761. },
  9762. {
  9763. name: "Level 5",
  9764. height: math.unit(4738272, "lightyears")
  9765. },
  9766. {
  9767. name: "Level 6",
  9768. height: math.unit(145787152896, "lightyears")
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(5 + 11 / 12, "feet"),
  9777. weight: math.unit(65, "kg"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/rook-kitara/front.svg",
  9781. extra: 1347 / 1274,
  9782. bottom: 0.005
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Totally Unfair",
  9789. height: math.unit(1.8, "mm")
  9790. },
  9791. {
  9792. name: "Lap Rookie",
  9793. height: math.unit(1.4, "feet")
  9794. },
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(5 + 11 / 12, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "How Did This Happen",
  9802. height: math.unit(80, "miles")
  9803. }
  9804. ]
  9805. ))
  9806. characterMakers.push(() => makeCharacter(
  9807. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9808. {
  9809. front: {
  9810. height: math.unit(7, "feet"),
  9811. weight: math.unit(300, "lb"),
  9812. name: "Front",
  9813. image: {
  9814. source: "./media/characters/pisces/front.svg",
  9815. extra: 2255 / 2115,
  9816. bottom: 0.03
  9817. }
  9818. },
  9819. back: {
  9820. height: math.unit(7, "feet"),
  9821. weight: math.unit(300, "lb"),
  9822. name: "Back",
  9823. image: {
  9824. source: "./media/characters/pisces/back.svg",
  9825. extra: 2146 / 2055,
  9826. bottom: 0.04
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(7, "feet"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Swimming Pool",
  9838. height: math.unit(12.2, "meters")
  9839. },
  9840. {
  9841. name: "Olympic Swimming Pool",
  9842. height: math.unit(56.3, "meters")
  9843. },
  9844. {
  9845. name: "Lake Superior",
  9846. height: math.unit(93900, "meters")
  9847. },
  9848. {
  9849. name: "Mediterranean Sea",
  9850. height: math.unit(644457, "meters")
  9851. },
  9852. {
  9853. name: "World's Oceans",
  9854. height: math.unit(4567491, "meters")
  9855. },
  9856. ]
  9857. ))
  9858. characterMakers.push(() => makeCharacter(
  9859. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9860. {
  9861. front: {
  9862. height: math.unit(2.3, "meters"),
  9863. weight: math.unit(120, "kg"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/zelas/front.svg"
  9867. }
  9868. },
  9869. side: {
  9870. height: math.unit(2.3, "meters"),
  9871. weight: math.unit(120, "kg"),
  9872. name: "Side",
  9873. image: {
  9874. source: "./media/characters/zelas/side.svg"
  9875. }
  9876. },
  9877. back: {
  9878. height: math.unit(2.3, "meters"),
  9879. weight: math.unit(120, "kg"),
  9880. name: "Back",
  9881. image: {
  9882. source: "./media/characters/zelas/back.svg"
  9883. }
  9884. },
  9885. foot: {
  9886. height: math.unit(1.116, "feet"),
  9887. name: "Foot",
  9888. image: {
  9889. source: "./media/characters/zelas/foot.svg"
  9890. }
  9891. },
  9892. },
  9893. [
  9894. {
  9895. name: "Normal",
  9896. height: math.unit(2.3, "meters")
  9897. },
  9898. {
  9899. name: "Macro",
  9900. height: math.unit(30, "meters"),
  9901. default: true
  9902. },
  9903. ]
  9904. ))
  9905. characterMakers.push(() => makeCharacter(
  9906. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9907. {
  9908. front: {
  9909. height: math.unit(1, "inch"),
  9910. weight: math.unit(0.21, "grams"),
  9911. name: "Front",
  9912. image: {
  9913. source: "./media/characters/talbot/front.svg",
  9914. extra: 594 / 544
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Micro",
  9921. height: math.unit(1, "inch"),
  9922. default: true
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9928. {
  9929. front: {
  9930. height: math.unit(3 + 3 / 12, "feet"),
  9931. weight: math.unit(51.8, "lb"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/fliss/front.svg",
  9935. extra: 840 / 640
  9936. }
  9937. },
  9938. },
  9939. [
  9940. {
  9941. name: "Teeny Tiny",
  9942. height: math.unit(1, "mm")
  9943. },
  9944. {
  9945. name: "Small",
  9946. height: math.unit(1, "inch"),
  9947. default: true
  9948. },
  9949. {
  9950. name: "Standard Sylveon",
  9951. height: math.unit(3 + 3 / 12, "feet")
  9952. },
  9953. {
  9954. name: "Large Nuisance",
  9955. height: math.unit(33, "feet")
  9956. },
  9957. {
  9958. name: "City Filler",
  9959. height: math.unit(3000, "feet")
  9960. },
  9961. {
  9962. name: "New Horizon",
  9963. height: math.unit(6000, "miles")
  9964. },
  9965. ]
  9966. ))
  9967. characterMakers.push(() => makeCharacter(
  9968. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9969. {
  9970. front: {
  9971. height: math.unit(5, "cm"),
  9972. weight: math.unit(1.94, "g"),
  9973. name: "Front",
  9974. image: {
  9975. source: "./media/characters/fleta/front.svg",
  9976. extra: 835 / 803
  9977. }
  9978. },
  9979. back: {
  9980. height: math.unit(5, "cm"),
  9981. weight: math.unit(1.94, "g"),
  9982. name: "Back",
  9983. image: {
  9984. source: "./media/characters/fleta/back.svg",
  9985. extra: 835 / 803
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Micro",
  9992. height: math.unit(5, "cm"),
  9993. default: true
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(6, "feet"),
  10002. weight: math.unit(225, "lb"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/dominic/front.svg",
  10006. extra: 1770 / 1620,
  10007. bottom: 0.025
  10008. }
  10009. },
  10010. back: {
  10011. height: math.unit(6, "feet"),
  10012. weight: math.unit(225, "lb"),
  10013. name: "Back",
  10014. image: {
  10015. source: "./media/characters/dominic/back.svg",
  10016. extra: 1745 / 1620,
  10017. bottom: 0.065
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Nano",
  10024. height: math.unit(0.1, "mm")
  10025. },
  10026. {
  10027. name: "Micro-",
  10028. height: math.unit(1, "mm")
  10029. },
  10030. {
  10031. name: "Micro",
  10032. height: math.unit(4, "inches")
  10033. },
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(6 + 4 / 12, "feet"),
  10037. default: true
  10038. },
  10039. {
  10040. name: "Macro",
  10041. height: math.unit(115, "feet")
  10042. },
  10043. {
  10044. name: "Macro+",
  10045. height: math.unit(955, "feet")
  10046. },
  10047. {
  10048. name: "Megamacro",
  10049. height: math.unit(8990, "feet")
  10050. },
  10051. {
  10052. name: "Gigmacro",
  10053. height: math.unit(9310, "miles")
  10054. },
  10055. {
  10056. name: "Teramacro",
  10057. height: math.unit(1567005010, "miles")
  10058. },
  10059. {
  10060. name: "Examacro",
  10061. height: math.unit(1425, "parsecs")
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(400, "feet"),
  10070. weight: math.unit(44444444, "lb"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/major-colonel/front.svg"
  10074. }
  10075. },
  10076. back: {
  10077. height: math.unit(400, "feet"),
  10078. weight: math.unit(44444444, "lb"),
  10079. name: "Back",
  10080. image: {
  10081. source: "./media/characters/major-colonel/back.svg"
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Macro",
  10088. height: math.unit(400, "feet"),
  10089. default: true
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10095. {
  10096. catFront: {
  10097. height: math.unit(6, "feet"),
  10098. weight: math.unit(120, "lb"),
  10099. name: "Front (Cat Side)",
  10100. image: {
  10101. source: "./media/characters/axel-lycan/cat-front.svg",
  10102. extra: 430 / 402,
  10103. bottom: 43 / 472.35
  10104. }
  10105. },
  10106. catBack: {
  10107. height: math.unit(6, "feet"),
  10108. weight: math.unit(120, "lb"),
  10109. name: "Back (Cat Side)",
  10110. image: {
  10111. source: "./media/characters/axel-lycan/cat-back.svg",
  10112. extra: 447 / 419,
  10113. bottom: 23.3 / 469
  10114. }
  10115. },
  10116. wolfFront: {
  10117. height: math.unit(6, "feet"),
  10118. weight: math.unit(120, "lb"),
  10119. name: "Front (Wolf Side)",
  10120. image: {
  10121. source: "./media/characters/axel-lycan/wolf-front.svg",
  10122. extra: 485 / 456,
  10123. bottom: 19 / 504
  10124. }
  10125. },
  10126. wolfBack: {
  10127. height: math.unit(6, "feet"),
  10128. weight: math.unit(120, "lb"),
  10129. name: "Back (Wolf Side)",
  10130. image: {
  10131. source: "./media/characters/axel-lycan/wolf-back.svg",
  10132. extra: 475 / 438,
  10133. bottom: 39.2 / 514
  10134. }
  10135. },
  10136. },
  10137. [
  10138. {
  10139. name: "Macro",
  10140. height: math.unit(1, "km"),
  10141. default: true
  10142. },
  10143. ]
  10144. ))
  10145. characterMakers.push(() => makeCharacter(
  10146. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10147. {
  10148. front: {
  10149. height: math.unit(5 + 9 / 12, "feet"),
  10150. weight: math.unit(175, "lb"),
  10151. name: "Front",
  10152. image: {
  10153. source: "./media/characters/vanrel-hyena/front.svg",
  10154. extra: 1086 / 1010,
  10155. bottom: 0.04
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Normal",
  10162. height: math.unit(5 + 9 / 12, "feet"),
  10163. default: true
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(6, "feet"),
  10172. weight: math.unit(103, "lb"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/abbott-absol/front.svg",
  10176. extra: 2010 / 1842
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Megamicro",
  10183. height: math.unit(0.1, "mm")
  10184. },
  10185. {
  10186. name: "Micro",
  10187. height: math.unit(1, "inch")
  10188. },
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(6, "feet"),
  10192. default: true
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(6, "feet"),
  10201. weight: math.unit(264, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/hector/front.svg",
  10205. extra: 2280 / 2130,
  10206. bottom: 0.07
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(12.25, "foot"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Macro",
  10218. height: math.unit(160, "feet")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(150, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/sal/front.svg",
  10231. extra: 1846 / 1699,
  10232. bottom: 0.04
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Megamacro",
  10239. height: math.unit(10, "miles"),
  10240. default: true
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10246. {
  10247. front: {
  10248. height: math.unit(3, "meters"),
  10249. weight: math.unit(450, "kg"),
  10250. name: "front",
  10251. image: {
  10252. source: "./media/characters/ranger/front.svg",
  10253. extra: 2401 / 2243,
  10254. bottom: 0.05
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(3, "meters"),
  10262. default: true
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(14, "feet"),
  10271. weight: math.unit(800, "kg"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/theresa/front.svg",
  10275. extra: 3575 / 3346,
  10276. bottom: 0.03
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(14, "feet"),
  10284. default: true
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10290. {
  10291. front: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(3, "kg"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/ine/front.svg",
  10297. extra: 678 / 539,
  10298. bottom: 0.023
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(2.265, "feet"),
  10306. default: true
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(5, "feet"),
  10315. weight: math.unit(30, "kg"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/vial/front.svg",
  10319. extra: 1365 / 1277,
  10320. bottom: 0.04
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(5, "feet"),
  10328. default: true
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10334. {
  10335. side: {
  10336. height: math.unit(3.4, "meters"),
  10337. weight: math.unit(1000, "lb"),
  10338. name: "Side",
  10339. image: {
  10340. source: "./media/characters/rovoska/side.svg",
  10341. extra: 4403 / 1515
  10342. }
  10343. },
  10344. },
  10345. [
  10346. {
  10347. name: "Normal",
  10348. height: math.unit(3.4, "meters"),
  10349. default: true
  10350. },
  10351. ]
  10352. ))
  10353. characterMakers.push(() => makeCharacter(
  10354. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10355. {
  10356. front: {
  10357. height: math.unit(8, "feet"),
  10358. weight: math.unit(315, "lb"),
  10359. name: "Front",
  10360. image: {
  10361. source: "./media/characters/gunner-rotthbauer/front.svg"
  10362. }
  10363. },
  10364. back: {
  10365. height: math.unit(8, "feet"),
  10366. weight: math.unit(315, "lb"),
  10367. name: "Back",
  10368. image: {
  10369. source: "./media/characters/gunner-rotthbauer/back.svg"
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Micro",
  10376. height: math.unit(3.5, "inches")
  10377. },
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(8, "feet"),
  10381. default: true
  10382. },
  10383. {
  10384. name: "Macro",
  10385. height: math.unit(250, "feet")
  10386. },
  10387. {
  10388. name: "Megamacro",
  10389. height: math.unit(1, "AU")
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10395. {
  10396. front: {
  10397. height: math.unit(5 + 5 / 12, "feet"),
  10398. weight: math.unit(140, "lb"),
  10399. name: "Front",
  10400. image: {
  10401. source: "./media/characters/allatia/front.svg",
  10402. extra: 1227 / 1180,
  10403. bottom: 0.027
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(5 + 5 / 12, "feet")
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(250, "feet"),
  10415. default: true
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(8, "miles")
  10420. }
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10425. {
  10426. front: {
  10427. height: math.unit(6, "feet"),
  10428. weight: math.unit(120, "lb"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/tene/front.svg",
  10432. extra: 814/750,
  10433. bottom: 36/850
  10434. }
  10435. },
  10436. stomping: {
  10437. height: math.unit(2.025, "meters"),
  10438. weight: math.unit(120, "lb"),
  10439. name: "Stomping",
  10440. image: {
  10441. source: "./media/characters/tene/stomping.svg",
  10442. extra: 885/821,
  10443. bottom: 15/900
  10444. }
  10445. },
  10446. sitting: {
  10447. height: math.unit(1, "meter"),
  10448. weight: math.unit(120, "lb"),
  10449. name: "Sitting",
  10450. image: {
  10451. source: "./media/characters/tene/sitting.svg",
  10452. extra: 396/366,
  10453. bottom: 79/475
  10454. }
  10455. },
  10456. smiling: {
  10457. height: math.unit(1.2, "feet"),
  10458. name: "Smiling",
  10459. image: {
  10460. source: "./media/characters/tene/smiling.svg",
  10461. extra: 1364/1071,
  10462. bottom: 0/1364
  10463. }
  10464. },
  10465. smug: {
  10466. height: math.unit(1.3, "feet"),
  10467. name: "Smug",
  10468. image: {
  10469. source: "./media/characters/tene/smug.svg",
  10470. extra: 1323/1082,
  10471. bottom: 0/1323
  10472. }
  10473. },
  10474. feral: {
  10475. height: math.unit(3.9, "feet"),
  10476. weight: math.unit(250, "lb"),
  10477. name: "Feral",
  10478. image: {
  10479. source: "./media/characters/tene/feral.svg",
  10480. extra: 717 / 458,
  10481. bottom: 0.179
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Normal",
  10488. height: math.unit(6, "feet")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(300, "feet"),
  10493. default: true
  10494. },
  10495. {
  10496. name: "Megamacro",
  10497. height: math.unit(5, "miles")
  10498. },
  10499. ]
  10500. ))
  10501. characterMakers.push(() => makeCharacter(
  10502. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10503. {
  10504. side: {
  10505. height: math.unit(6, "feet"),
  10506. name: "Side",
  10507. image: {
  10508. source: "./media/characters/evander/side.svg",
  10509. extra: 877 / 477
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(0.83, "meters"),
  10517. default: true
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(12, "feet"),
  10526. weight: math.unit(1000, "lb"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10530. extra: 1762 / 1611
  10531. }
  10532. },
  10533. back: {
  10534. height: math.unit(12, "feet"),
  10535. weight: math.unit(1000, "lb"),
  10536. name: "Back",
  10537. image: {
  10538. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10539. extra: 1762 / 1611
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(12, "feet"),
  10547. default: true
  10548. },
  10549. {
  10550. name: "Kaiju",
  10551. height: math.unit(150, "feet")
  10552. },
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10557. {
  10558. front: {
  10559. height: math.unit(6, "feet"),
  10560. weight: math.unit(150, "lb"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/zero-alurus/front.svg"
  10564. }
  10565. },
  10566. back: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(150, "lb"),
  10569. name: "Back",
  10570. image: {
  10571. source: "./media/characters/zero-alurus/back.svg"
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(5 + 10 / 12, "feet")
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(60, "feet"),
  10583. default: true
  10584. },
  10585. {
  10586. name: "Macro+",
  10587. height: math.unit(450, "feet")
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(6, "feet"),
  10596. weight: math.unit(200, "lb"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/mega-shi/front.svg",
  10600. extra: 1279 / 1250,
  10601. bottom: 0.02
  10602. }
  10603. },
  10604. back: {
  10605. height: math.unit(6, "feet"),
  10606. weight: math.unit(200, "lb"),
  10607. name: "Back",
  10608. image: {
  10609. source: "./media/characters/mega-shi/back.svg",
  10610. extra: 1279 / 1250,
  10611. bottom: 0.02
  10612. }
  10613. },
  10614. },
  10615. [
  10616. {
  10617. name: "Micro",
  10618. height: math.unit(16 + 6 / 12, "feet")
  10619. },
  10620. {
  10621. name: "Third Dimension",
  10622. height: math.unit(40, "meters")
  10623. },
  10624. {
  10625. name: "Normal",
  10626. height: math.unit(660, "feet"),
  10627. default: true
  10628. },
  10629. {
  10630. name: "Megamacro",
  10631. height: math.unit(10, "miles")
  10632. },
  10633. {
  10634. name: "Planetary Launch",
  10635. height: math.unit(500, "miles")
  10636. },
  10637. {
  10638. name: "Interstellar",
  10639. height: math.unit(1e9, "miles")
  10640. },
  10641. {
  10642. name: "Leaving the Universe",
  10643. height: math.unit(1, "gigaparsec")
  10644. },
  10645. {
  10646. name: "Travelling Universes",
  10647. height: math.unit(30e15, "parsecs")
  10648. },
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10653. {
  10654. front: {
  10655. height: math.unit(5 + 4/12, "feet"),
  10656. weight: math.unit(120, "lb"),
  10657. name: "Front",
  10658. image: {
  10659. source: "./media/characters/odyssey/front.svg",
  10660. extra: 1747/1571,
  10661. bottom: 47/1794
  10662. }
  10663. },
  10664. side: {
  10665. height: math.unit(5.1, "feet"),
  10666. weight: math.unit(120, "lb"),
  10667. name: "Side",
  10668. image: {
  10669. source: "./media/characters/odyssey/side.svg",
  10670. extra: 1847/1619,
  10671. bottom: 47/1894
  10672. }
  10673. },
  10674. lounging: {
  10675. height: math.unit(1.464, "feet"),
  10676. weight: math.unit(120, "lb"),
  10677. name: "Lounging",
  10678. image: {
  10679. source: "./media/characters/odyssey/lounging.svg",
  10680. extra: 1235/837,
  10681. bottom: 551/1786
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Normal",
  10688. height: math.unit(5 + 4 / 12, "feet")
  10689. },
  10690. {
  10691. name: "Macro",
  10692. height: math.unit(1, "km")
  10693. },
  10694. {
  10695. name: "Megamacro",
  10696. height: math.unit(3000, "km")
  10697. },
  10698. {
  10699. name: "Gigamacro",
  10700. height: math.unit(1, "AU"),
  10701. default: true
  10702. },
  10703. {
  10704. name: "Omniversal",
  10705. height: math.unit(100e14, "lightyears")
  10706. },
  10707. ]
  10708. ))
  10709. characterMakers.push(() => makeCharacter(
  10710. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10711. {
  10712. front: {
  10713. height: math.unit(6, "feet"),
  10714. weight: math.unit(300, "lb"),
  10715. name: "Front",
  10716. image: {
  10717. source: "./media/characters/mekuto/front.svg",
  10718. extra: 921 / 832,
  10719. bottom: 0.03
  10720. }
  10721. },
  10722. hand: {
  10723. height: math.unit(6 / 10.24, "feet"),
  10724. name: "Hand",
  10725. image: {
  10726. source: "./media/characters/mekuto/hand.svg"
  10727. }
  10728. },
  10729. foot: {
  10730. height: math.unit(6 / 5.05, "feet"),
  10731. name: "Foot",
  10732. image: {
  10733. source: "./media/characters/mekuto/foot.svg"
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Minimicro",
  10740. height: math.unit(0.2, "inches")
  10741. },
  10742. {
  10743. name: "Micro",
  10744. height: math.unit(1.5, "inches")
  10745. },
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(5 + 11 / 12, "feet"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Minimacro",
  10753. height: math.unit(17 + 9 / 12, "feet")
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(177.5, "feet")
  10758. },
  10759. {
  10760. name: "Megamacro",
  10761. height: math.unit(152, "miles")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(6.5, "inches"),
  10770. weight: math.unit(13, "oz"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/dafydd-tomos/front.svg",
  10774. extra: 2990 / 2603,
  10775. bottom: 0.03
  10776. }
  10777. },
  10778. },
  10779. [
  10780. {
  10781. name: "Micro",
  10782. height: math.unit(6.5, "inches"),
  10783. default: true
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(6, "feet"),
  10792. weight: math.unit(150, "lb"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/splinter/front.svg",
  10796. extra: 2990 / 2882,
  10797. bottom: 0.04
  10798. }
  10799. },
  10800. back: {
  10801. height: math.unit(6, "feet"),
  10802. weight: math.unit(150, "lb"),
  10803. name: "Back",
  10804. image: {
  10805. source: "./media/characters/splinter/back.svg",
  10806. extra: 2990 / 2882,
  10807. bottom: 0.04
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Normal",
  10814. height: math.unit(6, "feet")
  10815. },
  10816. {
  10817. name: "Macro",
  10818. height: math.unit(230, "meters"),
  10819. default: true
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(4 + 10 / 12, "feet"),
  10828. weight: math.unit(480, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/snow-gabumon/front.svg",
  10832. extra: 1140 / 963,
  10833. bottom: 0.058
  10834. }
  10835. },
  10836. back: {
  10837. height: math.unit(4 + 10 / 12, "feet"),
  10838. weight: math.unit(480, "lb"),
  10839. name: "Back",
  10840. image: {
  10841. source: "./media/characters/snow-gabumon/back.svg",
  10842. extra: 1115 / 962,
  10843. bottom: 0.041
  10844. }
  10845. },
  10846. frontUndresed: {
  10847. height: math.unit(4 + 10 / 12, "feet"),
  10848. weight: math.unit(480, "lb"),
  10849. name: "Front (Undressed)",
  10850. image: {
  10851. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10852. extra: 1061 / 960,
  10853. bottom: 0.045
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Micro",
  10860. height: math.unit(1, "inch")
  10861. },
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(4 + 10 / 12, "feet"),
  10865. default: true
  10866. },
  10867. {
  10868. name: "Macro",
  10869. height: math.unit(200, "feet")
  10870. },
  10871. {
  10872. name: "Megamacro",
  10873. height: math.unit(120, "miles")
  10874. },
  10875. {
  10876. name: "Gigamacro",
  10877. height: math.unit(9800, "miles")
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(1.7, "meters"),
  10886. weight: math.unit(140, "lb"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/moody/front.svg",
  10890. extra: 3226 / 3007,
  10891. bottom: 0.087
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Micro",
  10898. height: math.unit(1, "mm")
  10899. },
  10900. {
  10901. name: "Normal",
  10902. height: math.unit(1.7, "meters"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Macro",
  10907. height: math.unit(80, "meters")
  10908. },
  10909. {
  10910. name: "Macro+",
  10911. height: math.unit(500, "meters")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/zyas/front.svg",
  10924. extra: 1180 / 1120,
  10925. bottom: 0.045
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(10, "feet"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Macro",
  10937. height: math.unit(500, "feet")
  10938. },
  10939. {
  10940. name: "Megamacro",
  10941. height: math.unit(5, "miles")
  10942. },
  10943. {
  10944. name: "Teramacro",
  10945. height: math.unit(150000, "miles")
  10946. },
  10947. ]
  10948. ))
  10949. characterMakers.push(() => makeCharacter(
  10950. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10951. {
  10952. front: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Front",
  10956. image: {
  10957. source: "./media/characters/cuon/front.svg",
  10958. extra: 1390 / 1320,
  10959. bottom: 0.008
  10960. }
  10961. },
  10962. },
  10963. [
  10964. {
  10965. name: "Micro",
  10966. height: math.unit(3, "inches")
  10967. },
  10968. {
  10969. name: "Normal",
  10970. height: math.unit(18 + 9 / 12, "feet"),
  10971. default: true
  10972. },
  10973. {
  10974. name: "Macro",
  10975. height: math.unit(360, "feet")
  10976. },
  10977. {
  10978. name: "Megamacro",
  10979. height: math.unit(360, "miles")
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(2.4, "meters"),
  10988. weight: math.unit(70, "kg"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/nyanuxk/front.svg",
  10992. extra: 1172 / 1084,
  10993. bottom: 0.065
  10994. }
  10995. },
  10996. side: {
  10997. height: math.unit(2.4, "meters"),
  10998. weight: math.unit(70, "kg"),
  10999. name: "Side",
  11000. image: {
  11001. source: "./media/characters/nyanuxk/side.svg",
  11002. extra: 1190 / 1132,
  11003. bottom: 0.007
  11004. }
  11005. },
  11006. back: {
  11007. height: math.unit(2.4, "meters"),
  11008. weight: math.unit(70, "kg"),
  11009. name: "Back",
  11010. image: {
  11011. source: "./media/characters/nyanuxk/back.svg",
  11012. extra: 1200 / 1141,
  11013. bottom: 0.015
  11014. }
  11015. },
  11016. foot: {
  11017. height: math.unit(0.52, "meters"),
  11018. name: "Foot",
  11019. image: {
  11020. source: "./media/characters/nyanuxk/foot.svg"
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Micro",
  11027. height: math.unit(2, "cm")
  11028. },
  11029. {
  11030. name: "Normal",
  11031. height: math.unit(2.4, "meters"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Smaller Macro",
  11036. height: math.unit(120, "meters")
  11037. },
  11038. {
  11039. name: "Bigger Macro",
  11040. height: math.unit(1.2, "km")
  11041. },
  11042. {
  11043. name: "Megamacro",
  11044. height: math.unit(15, "kilometers")
  11045. },
  11046. {
  11047. name: "Gigamacro",
  11048. height: math.unit(2000, "km")
  11049. },
  11050. {
  11051. name: "Teramacro",
  11052. height: math.unit(500000, "km")
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11058. {
  11059. side: {
  11060. height: math.unit(6, "feet"),
  11061. name: "Side",
  11062. image: {
  11063. source: "./media/characters/ailbhe/side.svg",
  11064. extra: 757 / 464,
  11065. bottom: 0.041
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(1.07, "meters"),
  11073. default: true
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(6, "feet"),
  11082. weight: math.unit(120, "kg"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/zevulfius/front.svg",
  11086. extra: 965 / 903
  11087. }
  11088. },
  11089. side: {
  11090. height: math.unit(6, "feet"),
  11091. weight: math.unit(120, "kg"),
  11092. name: "Side",
  11093. image: {
  11094. source: "./media/characters/zevulfius/side.svg",
  11095. extra: 939 / 900
  11096. }
  11097. },
  11098. back: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(120, "kg"),
  11101. name: "Back",
  11102. image: {
  11103. source: "./media/characters/zevulfius/back.svg",
  11104. extra: 918 / 854,
  11105. bottom: 0.005
  11106. }
  11107. },
  11108. foot: {
  11109. height: math.unit(6 / 3.72, "feet"),
  11110. name: "Foot",
  11111. image: {
  11112. source: "./media/characters/zevulfius/foot.svg"
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Macro",
  11119. height: math.unit(750, "meters")
  11120. },
  11121. {
  11122. name: "Megamacro",
  11123. height: math.unit(20, "km"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Gigamacro",
  11128. height: math.unit(2000, "km")
  11129. },
  11130. {
  11131. name: "Teramacro",
  11132. height: math.unit(250000, "km")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(100, "feet"),
  11141. weight: math.unit(350, "kg"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/rikes/front.svg",
  11145. extra: 1565 / 1483,
  11146. bottom: 0.017
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Macro",
  11153. height: math.unit(100, "feet"),
  11154. default: true
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(8, "feet"),
  11163. weight: math.unit(356, "lb"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/adam-silver-mane/front.svg",
  11167. extra: 1036/937,
  11168. bottom: 63/1099
  11169. }
  11170. },
  11171. side: {
  11172. height: math.unit(8, "feet"),
  11173. weight: math.unit(356, "lb"),
  11174. name: "Side",
  11175. image: {
  11176. source: "./media/characters/adam-silver-mane/side.svg",
  11177. extra: 997/901,
  11178. bottom: 59/1056
  11179. }
  11180. },
  11181. frontNsfw: {
  11182. height: math.unit(8, "feet"),
  11183. weight: math.unit(356, "lb"),
  11184. name: "Front (NSFW)",
  11185. image: {
  11186. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11187. extra: 1036/937,
  11188. bottom: 63/1099
  11189. }
  11190. },
  11191. sideNsfw: {
  11192. height: math.unit(8, "feet"),
  11193. weight: math.unit(356, "lb"),
  11194. name: "Side (NSFW)",
  11195. image: {
  11196. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11197. extra: 997/901,
  11198. bottom: 59/1056
  11199. }
  11200. },
  11201. dick: {
  11202. height: math.unit(2.1, "feet"),
  11203. name: "Dick",
  11204. image: {
  11205. source: "./media/characters/adam-silver-mane/dick.svg"
  11206. }
  11207. },
  11208. taur: {
  11209. height: math.unit(16, "feet"),
  11210. weight: math.unit(1500, "kg"),
  11211. name: "Taur",
  11212. image: {
  11213. source: "./media/characters/adam-silver-mane/taur.svg",
  11214. extra: 1713 / 1571,
  11215. bottom: 0.01
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(8, "feet")
  11223. },
  11224. {
  11225. name: "Minimacro",
  11226. height: math.unit(80, "feet")
  11227. },
  11228. {
  11229. name: "MDA",
  11230. height: math.unit(80, "meters")
  11231. },
  11232. {
  11233. name: "Macro",
  11234. height: math.unit(800, "feet"),
  11235. default: true
  11236. },
  11237. {
  11238. name: "Megamacro",
  11239. height: math.unit(8000, "feet")
  11240. },
  11241. {
  11242. name: "Gigamacro",
  11243. height: math.unit(800, "miles")
  11244. },
  11245. {
  11246. name: "Teramacro",
  11247. height: math.unit(80000, "miles")
  11248. },
  11249. {
  11250. name: "Celestial",
  11251. height: math.unit(8e6, "miles")
  11252. },
  11253. {
  11254. name: "Star Dragon",
  11255. height: math.unit(800000, "parsecs")
  11256. },
  11257. {
  11258. name: "Godly",
  11259. height: math.unit(800, "teraparsecs")
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(6, "feet"),
  11268. weight: math.unit(150, "lb"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/ky'owin/front.svg",
  11272. extra: 3888 / 3068,
  11273. bottom: 0.015
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(6 + 8 / 12, "feet")
  11281. },
  11282. {
  11283. name: "Large",
  11284. height: math.unit(68, "feet")
  11285. },
  11286. {
  11287. name: "Macro",
  11288. height: math.unit(132, "feet")
  11289. },
  11290. {
  11291. name: "Macro+",
  11292. height: math.unit(340, "feet")
  11293. },
  11294. {
  11295. name: "Macro++",
  11296. height: math.unit(680, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Megamacro",
  11301. height: math.unit(1, "mile")
  11302. },
  11303. {
  11304. name: "Megamacro+",
  11305. height: math.unit(10, "miles")
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11311. {
  11312. front: {
  11313. height: math.unit(4, "feet"),
  11314. weight: math.unit(50, "lb"),
  11315. name: "Front",
  11316. image: {
  11317. source: "./media/characters/mal/front.svg",
  11318. extra: 785 / 724,
  11319. bottom: 0.07
  11320. }
  11321. },
  11322. },
  11323. [
  11324. {
  11325. name: "Micro",
  11326. height: math.unit(4, "inches")
  11327. },
  11328. {
  11329. name: "Normal",
  11330. height: math.unit(4, "feet"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(200, "feet")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(150, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/jordan-deware/front.svg",
  11348. extra: 1191 / 1012
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Nano",
  11355. height: math.unit(0.01, "mm")
  11356. },
  11357. {
  11358. name: "Minimicro",
  11359. height: math.unit(1, "mm")
  11360. },
  11361. {
  11362. name: "Micro",
  11363. height: math.unit(0.5, "inches")
  11364. },
  11365. {
  11366. name: "Normal",
  11367. height: math.unit(4, "feet"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Minimacro",
  11372. height: math.unit(40, "meters")
  11373. },
  11374. {
  11375. name: "Small Macro",
  11376. height: math.unit(400, "meters")
  11377. },
  11378. {
  11379. name: "Macro",
  11380. height: math.unit(4, "miles")
  11381. },
  11382. {
  11383. name: "Megamacro",
  11384. height: math.unit(40, "miles")
  11385. },
  11386. {
  11387. name: "Megamacro+",
  11388. height: math.unit(400, "miles")
  11389. },
  11390. {
  11391. name: "Gigamacro",
  11392. height: math.unit(400000, "miles")
  11393. },
  11394. ]
  11395. ))
  11396. characterMakers.push(() => makeCharacter(
  11397. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11398. {
  11399. side: {
  11400. height: math.unit(6, "feet"),
  11401. weight: math.unit(150, "lb"),
  11402. name: "Side",
  11403. image: {
  11404. source: "./media/characters/kimiko/side.svg",
  11405. extra: 600 / 358
  11406. }
  11407. },
  11408. },
  11409. [
  11410. {
  11411. name: "Normal",
  11412. height: math.unit(15, "feet"),
  11413. default: true
  11414. },
  11415. {
  11416. name: "Macro",
  11417. height: math.unit(220, "feet")
  11418. },
  11419. {
  11420. name: "Macro+",
  11421. height: math.unit(1450, "feet")
  11422. },
  11423. {
  11424. name: "Megamacro",
  11425. height: math.unit(11500, "feet")
  11426. },
  11427. {
  11428. name: "Gigamacro",
  11429. height: math.unit(9500, "miles")
  11430. },
  11431. {
  11432. name: "Teramacro",
  11433. height: math.unit(2208005005, "miles")
  11434. },
  11435. {
  11436. name: "Examacro",
  11437. height: math.unit(2750, "parsecs")
  11438. },
  11439. {
  11440. name: "Zettamacro",
  11441. height: math.unit(101500, "parsecs")
  11442. },
  11443. ]
  11444. ))
  11445. characterMakers.push(() => makeCharacter(
  11446. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11447. {
  11448. front: {
  11449. height: math.unit(6, "feet"),
  11450. weight: math.unit(70, "kg"),
  11451. name: "Front",
  11452. image: {
  11453. source: "./media/characters/andrew-sleepy/front.svg"
  11454. }
  11455. },
  11456. side: {
  11457. height: math.unit(6, "feet"),
  11458. weight: math.unit(70, "kg"),
  11459. name: "Side",
  11460. image: {
  11461. source: "./media/characters/andrew-sleepy/side.svg"
  11462. }
  11463. },
  11464. },
  11465. [
  11466. {
  11467. name: "Micro",
  11468. height: math.unit(1, "mm"),
  11469. default: true
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11475. {
  11476. front: {
  11477. height: math.unit(6, "feet"),
  11478. weight: math.unit(150, "lb"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/judio/front.svg",
  11482. extra: 1258 / 1110
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(5 + 6 / 12, "feet")
  11490. },
  11491. {
  11492. name: "Macro",
  11493. height: math.unit(1000, "feet"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(10, "miles")
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11504. {
  11505. frontDressed: {
  11506. height: math.unit(6, "feet"),
  11507. weight: math.unit(68, "kg"),
  11508. name: "Front (Dressed)",
  11509. image: {
  11510. source: "./media/characters/nomaxice/front-dressed.svg",
  11511. extra: 1137/824,
  11512. bottom: 74/1211
  11513. }
  11514. },
  11515. frontShorts: {
  11516. height: math.unit(6, "feet"),
  11517. weight: math.unit(68, "kg"),
  11518. name: "Front (Shorts)",
  11519. image: {
  11520. source: "./media/characters/nomaxice/front-shorts.svg",
  11521. extra: 1137/824,
  11522. bottom: 74/1211
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(68, "kg"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/nomaxice/back.svg",
  11531. extra: 822/786,
  11532. bottom: 39/861
  11533. }
  11534. },
  11535. hand: {
  11536. height: math.unit(0.565, "feet"),
  11537. name: "Hand",
  11538. image: {
  11539. source: "./media/characters/nomaxice/hand.svg"
  11540. }
  11541. },
  11542. foot: {
  11543. height: math.unit(1, "feet"),
  11544. name: "Foot",
  11545. image: {
  11546. source: "./media/characters/nomaxice/foot.svg"
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Micro",
  11553. height: math.unit(8, "cm")
  11554. },
  11555. {
  11556. name: "Norm",
  11557. height: math.unit(1.82, "m")
  11558. },
  11559. {
  11560. name: "Norm+",
  11561. height: math.unit(8.8, "feet"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Big",
  11566. height: math.unit(8, "meters")
  11567. },
  11568. {
  11569. name: "Macro",
  11570. height: math.unit(18, "meters")
  11571. },
  11572. {
  11573. name: "Macro+",
  11574. height: math.unit(88, "meters")
  11575. },
  11576. ]
  11577. ))
  11578. characterMakers.push(() => makeCharacter(
  11579. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11580. {
  11581. front: {
  11582. height: math.unit(12, "feet"),
  11583. weight: math.unit(1.5, "tons"),
  11584. name: "Front",
  11585. image: {
  11586. source: "./media/characters/dydros/front.svg",
  11587. extra: 863 / 800,
  11588. bottom: 0.015
  11589. }
  11590. },
  11591. back: {
  11592. height: math.unit(12, "feet"),
  11593. weight: math.unit(1.5, "tons"),
  11594. name: "Back",
  11595. image: {
  11596. source: "./media/characters/dydros/back.svg",
  11597. extra: 900 / 843,
  11598. bottom: 0.005
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(12, "feet"),
  11606. default: true
  11607. },
  11608. ]
  11609. ))
  11610. characterMakers.push(() => makeCharacter(
  11611. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11612. {
  11613. front: {
  11614. height: math.unit(6, "feet"),
  11615. weight: math.unit(100, "kg"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/riggi/front.svg",
  11619. extra: 5787 / 5303
  11620. }
  11621. },
  11622. hyper: {
  11623. height: math.unit(6 * 5 / 3, "feet"),
  11624. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11625. name: "Hyper",
  11626. image: {
  11627. source: "./media/characters/riggi/hyper.svg",
  11628. extra: 3595 / 3485
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Small Macro",
  11635. height: math.unit(50, "feet")
  11636. },
  11637. {
  11638. name: "Default",
  11639. height: math.unit(200, "feet"),
  11640. default: true
  11641. },
  11642. {
  11643. name: "Loom",
  11644. height: math.unit(10000, "feet")
  11645. },
  11646. {
  11647. name: "Cruising Altitude",
  11648. height: math.unit(30000, "feet")
  11649. },
  11650. {
  11651. name: "Megamacro",
  11652. height: math.unit(100, "miles")
  11653. },
  11654. {
  11655. name: "Continent Sized",
  11656. height: math.unit(2800, "miles")
  11657. },
  11658. {
  11659. name: "Earth Sized",
  11660. height: math.unit(8000, "miles")
  11661. },
  11662. ]
  11663. ))
  11664. characterMakers.push(() => makeCharacter(
  11665. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11666. {
  11667. front: {
  11668. height: math.unit(6, "feet"),
  11669. weight: math.unit(250, "lb"),
  11670. name: "Front",
  11671. image: {
  11672. source: "./media/characters/alexi/front.svg",
  11673. extra: 3483 / 3291,
  11674. bottom: 0.04
  11675. }
  11676. },
  11677. back: {
  11678. height: math.unit(6, "feet"),
  11679. weight: math.unit(250, "lb"),
  11680. name: "Back",
  11681. image: {
  11682. source: "./media/characters/alexi/back.svg",
  11683. extra: 3533 / 3356,
  11684. bottom: 0.021
  11685. }
  11686. },
  11687. frontTransforming: {
  11688. height: math.unit(8.58, "feet"),
  11689. weight: math.unit(1300, "lb"),
  11690. name: "Transforming",
  11691. image: {
  11692. source: "./media/characters/alexi/front-transforming.svg",
  11693. extra: 437 / 409,
  11694. bottom: 19 / 458.66
  11695. }
  11696. },
  11697. frontTransformed: {
  11698. height: math.unit(12.5, "feet"),
  11699. weight: math.unit(4000, "lb"),
  11700. name: "Transformed",
  11701. image: {
  11702. source: "./media/characters/alexi/front-transformed.svg",
  11703. extra: 639 / 614,
  11704. bottom: 30.55 / 671
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(14, "feet"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Minimacro",
  11716. height: math.unit(30, "meters")
  11717. },
  11718. {
  11719. name: "Macro",
  11720. height: math.unit(500, "meters")
  11721. },
  11722. {
  11723. name: "Megamacro",
  11724. height: math.unit(9000, "km")
  11725. },
  11726. {
  11727. name: "Teramacro",
  11728. height: math.unit(384000, "km")
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(6, "feet"),
  11737. weight: math.unit(150, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/kayroo/front.svg",
  11741. extra: 1153 / 1038,
  11742. bottom: 0.06
  11743. }
  11744. },
  11745. foot: {
  11746. height: math.unit(6, "feet"),
  11747. weight: math.unit(150, "lb"),
  11748. name: "Foot",
  11749. image: {
  11750. source: "./media/characters/kayroo/foot.svg"
  11751. }
  11752. },
  11753. },
  11754. [
  11755. {
  11756. name: "Normal",
  11757. height: math.unit(8, "feet"),
  11758. default: true
  11759. },
  11760. {
  11761. name: "Minimacro",
  11762. height: math.unit(250, "feet")
  11763. },
  11764. {
  11765. name: "Macro",
  11766. height: math.unit(2800, "feet")
  11767. },
  11768. {
  11769. name: "Megamacro",
  11770. height: math.unit(5200, "feet")
  11771. },
  11772. {
  11773. name: "Gigamacro",
  11774. height: math.unit(27000, "feet")
  11775. },
  11776. {
  11777. name: "Omega",
  11778. height: math.unit(45000, "feet")
  11779. },
  11780. ]
  11781. ))
  11782. characterMakers.push(() => makeCharacter(
  11783. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11784. {
  11785. front: {
  11786. height: math.unit(18, "feet"),
  11787. weight: math.unit(5800, "lb"),
  11788. name: "Front",
  11789. image: {
  11790. source: "./media/characters/rhys/front.svg",
  11791. extra: 3386 / 3090,
  11792. bottom: 0.07
  11793. }
  11794. },
  11795. },
  11796. [
  11797. {
  11798. name: "Normal",
  11799. height: math.unit(18, "feet"),
  11800. default: true
  11801. },
  11802. {
  11803. name: "Working Size",
  11804. height: math.unit(200, "feet")
  11805. },
  11806. {
  11807. name: "Demolition Size",
  11808. height: math.unit(2000, "feet")
  11809. },
  11810. {
  11811. name: "Maximum Licensed Size",
  11812. height: math.unit(5, "miles")
  11813. },
  11814. {
  11815. name: "Maximum Observed Size",
  11816. height: math.unit(10, "yottameters")
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(6, "feet"),
  11825. weight: math.unit(250, "lb"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/toto/front.svg",
  11829. extra: 527 / 479,
  11830. bottom: 0.05
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Micro",
  11837. height: math.unit(3, "feet")
  11838. },
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(10, "feet")
  11842. },
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(150, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(1200, "feet")
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "King", species: ["lion"], tags: ["anthro"] },
  11856. {
  11857. back: {
  11858. height: math.unit(6, "feet"),
  11859. weight: math.unit(150, "lb"),
  11860. name: "Back",
  11861. image: {
  11862. source: "./media/characters/king/back.svg"
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Micro",
  11869. height: math.unit(2, "inches")
  11870. },
  11871. {
  11872. name: "Normal",
  11873. height: math.unit(8, "feet")
  11874. },
  11875. {
  11876. name: "Macro",
  11877. height: math.unit(200, "feet"),
  11878. default: true
  11879. },
  11880. {
  11881. name: "Megamacro",
  11882. height: math.unit(50, "miles")
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(11, "feet"),
  11891. weight: math.unit(1400, "lb"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/cordite/front.svg",
  11895. extra: 1919/1827,
  11896. bottom: 40/1959
  11897. }
  11898. },
  11899. side: {
  11900. height: math.unit(11, "feet"),
  11901. weight: math.unit(1400, "lb"),
  11902. name: "Side",
  11903. image: {
  11904. source: "./media/characters/cordite/side.svg",
  11905. extra: 1908/1793,
  11906. bottom: 38/1946
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(11, "feet"),
  11911. weight: math.unit(1400, "lb"),
  11912. name: "Back",
  11913. image: {
  11914. source: "./media/characters/cordite/back.svg",
  11915. extra: 1938/1837,
  11916. bottom: 10/1948
  11917. }
  11918. },
  11919. feral: {
  11920. height: math.unit(2, "feet"),
  11921. weight: math.unit(90, "lb"),
  11922. name: "Feral",
  11923. image: {
  11924. source: "./media/characters/cordite/feral.svg",
  11925. extra: 1260 / 755,
  11926. bottom: 0.05
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Normal",
  11933. height: math.unit(11, "feet"),
  11934. default: true
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11940. {
  11941. front: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(150, "lb"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/pianostrong/front.svg",
  11947. extra: 6577 / 6254,
  11948. bottom: 0.02
  11949. }
  11950. },
  11951. side: {
  11952. height: math.unit(6, "feet"),
  11953. weight: math.unit(150, "lb"),
  11954. name: "Side",
  11955. image: {
  11956. source: "./media/characters/pianostrong/side.svg",
  11957. extra: 6106 / 5730
  11958. }
  11959. },
  11960. back: {
  11961. height: math.unit(6, "feet"),
  11962. weight: math.unit(150, "lb"),
  11963. name: "Back",
  11964. image: {
  11965. source: "./media/characters/pianostrong/back.svg",
  11966. extra: 6085 / 5733,
  11967. bottom: 0.01
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Macro",
  11974. height: math.unit(100, "feet")
  11975. },
  11976. {
  11977. name: "Macro+",
  11978. height: math.unit(300, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Macro++",
  11983. height: math.unit(1000, "feet")
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/kona/front.svg",
  11996. extra: 2960 / 2629,
  11997. bottom: 0.005
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Normal",
  12004. height: math.unit(11 + 8 / 12, "feet")
  12005. },
  12006. {
  12007. name: "Macro",
  12008. height: math.unit(850, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Macro+",
  12013. height: math.unit(1.5, "km"),
  12014. default: true
  12015. },
  12016. {
  12017. name: "Megamacro",
  12018. height: math.unit(80, "miles")
  12019. },
  12020. {
  12021. name: "Gigamacro",
  12022. height: math.unit(3500, "miles")
  12023. },
  12024. ]
  12025. ))
  12026. characterMakers.push(() => makeCharacter(
  12027. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12028. {
  12029. side: {
  12030. height: math.unit(1.9, "meters"),
  12031. weight: math.unit(326, "kg"),
  12032. name: "Side",
  12033. image: {
  12034. source: "./media/characters/levi/side.svg",
  12035. extra: 1704 / 1334,
  12036. bottom: 0.02
  12037. }
  12038. },
  12039. },
  12040. [
  12041. {
  12042. name: "Normal",
  12043. height: math.unit(1.9, "meters"),
  12044. default: true
  12045. },
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(20, "meters")
  12049. },
  12050. {
  12051. name: "Macro+",
  12052. height: math.unit(200, "meters")
  12053. },
  12054. {
  12055. name: "Megamacro",
  12056. height: math.unit(2, "km")
  12057. },
  12058. {
  12059. name: "Megamacro+",
  12060. height: math.unit(20, "km")
  12061. },
  12062. {
  12063. name: "Gigamacro",
  12064. height: math.unit(2500, "km")
  12065. },
  12066. {
  12067. name: "Gigamacro+",
  12068. height: math.unit(120000, "km")
  12069. },
  12070. {
  12071. name: "Teramacro",
  12072. height: math.unit(7.77e6, "km")
  12073. },
  12074. ]
  12075. ))
  12076. characterMakers.push(() => makeCharacter(
  12077. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12078. {
  12079. front: {
  12080. height: math.unit(6 + 4/12, "feet"),
  12081. weight: math.unit(190, "lb"),
  12082. name: "Front",
  12083. image: {
  12084. source: "./media/characters/bmc/front.svg",
  12085. extra: 1626/1472,
  12086. bottom: 79/1705
  12087. }
  12088. },
  12089. back: {
  12090. height: math.unit(6 + 4/12, "feet"),
  12091. weight: math.unit(190, "lb"),
  12092. name: "Back",
  12093. image: {
  12094. source: "./media/characters/bmc/back.svg",
  12095. extra: 1640/1479,
  12096. bottom: 45/1685
  12097. }
  12098. },
  12099. frontArmor: {
  12100. height: math.unit(6 + 4/12, "feet"),
  12101. weight: math.unit(190, "lb"),
  12102. name: "Front-armor",
  12103. image: {
  12104. source: "./media/characters/bmc/front-armor.svg",
  12105. extra: 1538/1468,
  12106. bottom: 79/1617
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Human-sized",
  12113. height: math.unit(6 + 4 / 12, "feet")
  12114. },
  12115. {
  12116. name: "Interactive Size",
  12117. height: math.unit(25, "feet")
  12118. },
  12119. {
  12120. name: "Small",
  12121. height: math.unit(250, "feet")
  12122. },
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(1250, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Good Day",
  12130. height: math.unit(88, "miles")
  12131. },
  12132. {
  12133. name: "Largest Measured Size",
  12134. height: math.unit(105.960, "galaxies")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(20, "feet"),
  12143. weight: math.unit(2016, "kg"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/sven-the-kaiju/front.svg",
  12147. extra: 1277/1250,
  12148. bottom: 35/1312
  12149. }
  12150. },
  12151. mouth: {
  12152. height: math.unit(1.85, "feet"),
  12153. name: "Mouth",
  12154. image: {
  12155. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Fairy",
  12162. height: math.unit(6, "inches")
  12163. },
  12164. {
  12165. name: "Normal",
  12166. height: math.unit(20, "feet"),
  12167. default: true
  12168. },
  12169. {
  12170. name: "Rampage",
  12171. height: math.unit(200, "feet")
  12172. },
  12173. {
  12174. name: "Archfey Forest Guardian",
  12175. height: math.unit(1, "mile")
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12181. {
  12182. front: {
  12183. height: math.unit(4, "meters"),
  12184. weight: math.unit(2, "tons"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/marik/front.svg",
  12188. extra: 1057 / 1003,
  12189. bottom: 0.08
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(4, "meters"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Macro",
  12201. height: math.unit(20, "meters")
  12202. },
  12203. {
  12204. name: "Megamacro",
  12205. height: math.unit(50, "km")
  12206. },
  12207. {
  12208. name: "Gigamacro",
  12209. height: math.unit(100, "km")
  12210. },
  12211. {
  12212. name: "Alpha Macro",
  12213. height: math.unit(7.88e7, "yottameters")
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(6, "feet"),
  12222. weight: math.unit(110, "lb"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/mel/front.svg",
  12226. extra: 736 / 617,
  12227. bottom: 0.017
  12228. }
  12229. },
  12230. },
  12231. [
  12232. {
  12233. name: "Pico",
  12234. height: math.unit(3, "pm")
  12235. },
  12236. {
  12237. name: "Nano",
  12238. height: math.unit(3, "nm")
  12239. },
  12240. {
  12241. name: "Micro",
  12242. height: math.unit(0.3, "mm"),
  12243. default: true
  12244. },
  12245. {
  12246. name: "Micro+",
  12247. height: math.unit(3, "mm")
  12248. },
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(5 + 10.5 / 12, "feet")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12257. {
  12258. kaiju: {
  12259. height: math.unit(1.75, "meters"),
  12260. weight: math.unit(55, "kg"),
  12261. name: "Kaiju",
  12262. image: {
  12263. source: "./media/characters/lykonous/kaiju.svg",
  12264. extra: 1055 / 946,
  12265. bottom: 0.135
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(2.5, "meters"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Kaiju Dragon",
  12277. height: math.unit(60, "meters")
  12278. },
  12279. {
  12280. name: "Mega Kaiju",
  12281. height: math.unit(120, "km")
  12282. },
  12283. {
  12284. name: "Giga Kaiju",
  12285. height: math.unit(200, "megameters")
  12286. },
  12287. {
  12288. name: "Terra Kaiju",
  12289. height: math.unit(400, "gigameters")
  12290. },
  12291. {
  12292. name: "Kaiju Dragon God",
  12293. height: math.unit(13000, "exaparsecs")
  12294. },
  12295. ]
  12296. ))
  12297. characterMakers.push(() => makeCharacter(
  12298. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12299. {
  12300. front: {
  12301. height: math.unit(6, "feet"),
  12302. weight: math.unit(150, "lb"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/blü/front.svg",
  12306. extra: 1883 / 1564,
  12307. bottom: 0.031
  12308. }
  12309. },
  12310. },
  12311. [
  12312. {
  12313. name: "Normal",
  12314. height: math.unit(13, "feet"),
  12315. default: true
  12316. },
  12317. {
  12318. name: "Big Boi",
  12319. height: math.unit(150, "meters")
  12320. },
  12321. {
  12322. name: "Mini Stomper",
  12323. height: math.unit(300, "meters")
  12324. },
  12325. {
  12326. name: "Macro",
  12327. height: math.unit(1000, "meters")
  12328. },
  12329. {
  12330. name: "Megamacro",
  12331. height: math.unit(11000, "meters")
  12332. },
  12333. {
  12334. name: "Gigamacro",
  12335. height: math.unit(11000, "km")
  12336. },
  12337. {
  12338. name: "Teramacro",
  12339. height: math.unit(420000, "km")
  12340. },
  12341. {
  12342. name: "Examacro",
  12343. height: math.unit(120, "parsecs")
  12344. },
  12345. {
  12346. name: "God Tho",
  12347. height: math.unit(98000000000, "parsecs")
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12353. {
  12354. taurFront: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(200, "lb"),
  12357. name: "Taur (Front)",
  12358. image: {
  12359. source: "./media/characters/scales/taur-front.svg",
  12360. extra: 1,
  12361. bottom: 0.05
  12362. }
  12363. },
  12364. taurBack: {
  12365. height: math.unit(6, "feet"),
  12366. weight: math.unit(200, "lb"),
  12367. name: "Taur (Back)",
  12368. image: {
  12369. source: "./media/characters/scales/taur-back.svg",
  12370. extra: 1,
  12371. bottom: 0.08
  12372. }
  12373. },
  12374. anthro: {
  12375. height: math.unit(6 * 7 / 12, "feet"),
  12376. weight: math.unit(100, "lb"),
  12377. name: "Anthro",
  12378. image: {
  12379. source: "./media/characters/scales/anthro.svg",
  12380. extra: 1,
  12381. bottom: 0.06
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(12, "feet"),
  12389. default: true
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12395. {
  12396. front: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(150, "lb"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/koragos/front.svg",
  12402. extra: 841 / 794,
  12403. bottom: 0.035
  12404. }
  12405. },
  12406. back: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(150, "lb"),
  12409. name: "Back",
  12410. image: {
  12411. source: "./media/characters/koragos/back.svg",
  12412. extra: 841 / 810,
  12413. bottom: 0.022
  12414. }
  12415. },
  12416. },
  12417. [
  12418. {
  12419. name: "Normal",
  12420. height: math.unit(6 + 11 / 12, "feet"),
  12421. default: true
  12422. },
  12423. {
  12424. name: "Macro",
  12425. height: math.unit(490, "feet")
  12426. },
  12427. {
  12428. name: "Megamacro",
  12429. height: math.unit(10, "miles")
  12430. },
  12431. {
  12432. name: "Gigamacro",
  12433. height: math.unit(50, "miles")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(250, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/xylrem/front.svg",
  12446. extra: 3323 / 3050,
  12447. bottom: 0.065
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Micro",
  12454. height: math.unit(4, "feet")
  12455. },
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(16, "feet"),
  12459. default: true
  12460. },
  12461. {
  12462. name: "Macro",
  12463. height: math.unit(2720, "feet")
  12464. },
  12465. {
  12466. name: "Megamacro",
  12467. height: math.unit(25000, "miles")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(8, "feet"),
  12476. weight: math.unit(250, "kg"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/ikideru/front.svg",
  12480. extra: 930 / 870,
  12481. bottom: 0.087
  12482. }
  12483. },
  12484. back: {
  12485. height: math.unit(8, "feet"),
  12486. weight: math.unit(250, "kg"),
  12487. name: "Back",
  12488. image: {
  12489. source: "./media/characters/ikideru/back.svg",
  12490. extra: 919 / 852,
  12491. bottom: 0.055
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Rare",
  12498. height: math.unit(8, "feet"),
  12499. default: true
  12500. },
  12501. {
  12502. name: "Playful Loom",
  12503. height: math.unit(80, "feet")
  12504. },
  12505. {
  12506. name: "City Leaner",
  12507. height: math.unit(230, "feet")
  12508. },
  12509. {
  12510. name: "Megamacro",
  12511. height: math.unit(2500, "feet")
  12512. },
  12513. {
  12514. name: "Gigamacro",
  12515. height: math.unit(26400, "feet")
  12516. },
  12517. {
  12518. name: "Tectonic Shifter",
  12519. height: math.unit(1.7, "megameters")
  12520. },
  12521. {
  12522. name: "Planet Carer",
  12523. height: math.unit(21, "megameters")
  12524. },
  12525. {
  12526. name: "God",
  12527. height: math.unit(11157.22, "parsecs")
  12528. },
  12529. ]
  12530. ))
  12531. characterMakers.push(() => makeCharacter(
  12532. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12533. {
  12534. front: {
  12535. height: math.unit(6, "feet"),
  12536. weight: math.unit(120, "lb"),
  12537. name: "Front",
  12538. image: {
  12539. source: "./media/characters/neo/front.svg"
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Micro",
  12546. height: math.unit(2, "inches"),
  12547. default: true
  12548. },
  12549. {
  12550. name: "Human Size",
  12551. height: math.unit(5 + 8 / 12, "feet")
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(13 + 10 / 12, "feet"),
  12560. weight: math.unit(5320, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/chauncey-chantz/front.svg",
  12564. extra: 1587 / 1435,
  12565. bottom: 0.02
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(13 + 10 / 12, "feet"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Macro",
  12577. height: math.unit(45, "feet")
  12578. },
  12579. {
  12580. name: "Megamacro",
  12581. height: math.unit(250, "miles")
  12582. },
  12583. {
  12584. name: "Planetary",
  12585. height: math.unit(10000, "miles")
  12586. },
  12587. {
  12588. name: "Galactic",
  12589. height: math.unit(40000, "parsecs")
  12590. },
  12591. {
  12592. name: "Universal",
  12593. height: math.unit(1, "yottameter")
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12599. {
  12600. front: {
  12601. height: math.unit(6, "feet"),
  12602. weight: math.unit(150, "lb"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/epifox/front.svg",
  12606. extra: 1,
  12607. bottom: 0.075
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Micro",
  12614. height: math.unit(6, "inches")
  12615. },
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(12, "feet"),
  12619. default: true
  12620. },
  12621. {
  12622. name: "Macro",
  12623. height: math.unit(3810, "feet")
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(500, "miles")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(1.8796, "m"),
  12636. weight: math.unit(230, "lb"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/colin-t/front.svg",
  12640. extra: 1272 / 1193,
  12641. bottom: 0.07
  12642. }
  12643. },
  12644. },
  12645. [
  12646. {
  12647. name: "Micro",
  12648. height: math.unit(0.571, "meters")
  12649. },
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(1.8796, "meters"),
  12653. default: true
  12654. },
  12655. {
  12656. name: "Tall",
  12657. height: math.unit(4, "meters")
  12658. },
  12659. {
  12660. name: "Macro",
  12661. height: math.unit(67.241, "meters")
  12662. },
  12663. {
  12664. name: "Megamacro",
  12665. height: math.unit(371.856, "meters")
  12666. },
  12667. {
  12668. name: "Planetary",
  12669. height: math.unit(12631.5689, "km")
  12670. },
  12671. ]
  12672. ))
  12673. characterMakers.push(() => makeCharacter(
  12674. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12675. {
  12676. front: {
  12677. height: math.unit(1.85, "meters"),
  12678. weight: math.unit(80, "kg"),
  12679. name: "Front",
  12680. image: {
  12681. source: "./media/characters/matvei/front.svg",
  12682. extra: 614 / 594,
  12683. bottom: 0.01
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Normal",
  12690. height: math.unit(1.85, "meters"),
  12691. default: true
  12692. },
  12693. ]
  12694. ))
  12695. characterMakers.push(() => makeCharacter(
  12696. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12697. {
  12698. front: {
  12699. height: math.unit(5 + 9 / 12, "feet"),
  12700. weight: math.unit(70, "lb"),
  12701. name: "Front",
  12702. image: {
  12703. source: "./media/characters/quincy/front.svg",
  12704. extra: 3041 / 2751
  12705. }
  12706. },
  12707. back: {
  12708. height: math.unit(5 + 9 / 12, "feet"),
  12709. weight: math.unit(70, "lb"),
  12710. name: "Back",
  12711. image: {
  12712. source: "./media/characters/quincy/back.svg",
  12713. extra: 3041 / 2751
  12714. }
  12715. },
  12716. flying: {
  12717. height: math.unit(5 + 4 / 12, "feet"),
  12718. weight: math.unit(70, "lb"),
  12719. name: "Flying",
  12720. image: {
  12721. source: "./media/characters/quincy/flying.svg",
  12722. extra: 1044 / 930
  12723. }
  12724. },
  12725. },
  12726. [
  12727. {
  12728. name: "Micro",
  12729. height: math.unit(3, "cm")
  12730. },
  12731. {
  12732. name: "Normal",
  12733. height: math.unit(5 + 9 / 12, "feet")
  12734. },
  12735. {
  12736. name: "Macro",
  12737. height: math.unit(200, "meters"),
  12738. default: true
  12739. },
  12740. {
  12741. name: "Megamacro",
  12742. height: math.unit(1000, "meters")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12748. {
  12749. front: {
  12750. height: math.unit(3 + 11/12, "feet"),
  12751. weight: math.unit(50, "lb"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/vanrel/front.svg",
  12755. extra: 1104/949,
  12756. bottom: 52/1156
  12757. }
  12758. },
  12759. back: {
  12760. height: math.unit(3 + 11/12, "feet"),
  12761. weight: math.unit(50, "lb"),
  12762. name: "Back",
  12763. image: {
  12764. source: "./media/characters/vanrel/back.svg",
  12765. extra: 1119/976,
  12766. bottom: 37/1156
  12767. }
  12768. },
  12769. tome: {
  12770. height: math.unit(1.35, "feet"),
  12771. weight: math.unit(10, "lb"),
  12772. name: "Vanrel's Tome",
  12773. rename: true,
  12774. image: {
  12775. source: "./media/characters/vanrel/tome.svg"
  12776. }
  12777. },
  12778. beans: {
  12779. height: math.unit(0.89, "feet"),
  12780. name: "Beans",
  12781. image: {
  12782. source: "./media/characters/vanrel/beans.svg"
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Normal",
  12789. height: math.unit(3 + 11/12, "feet"),
  12790. default: true
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(7 + 5 / 12, "feet"),
  12799. name: "Front",
  12800. image: {
  12801. source: "./media/characters/kuiper-vanrel/front.svg",
  12802. extra: 1219/1169,
  12803. bottom: 69/1288
  12804. }
  12805. },
  12806. back: {
  12807. height: math.unit(7 + 5 / 12, "feet"),
  12808. name: "Back",
  12809. image: {
  12810. source: "./media/characters/kuiper-vanrel/back.svg",
  12811. extra: 1236/1193,
  12812. bottom: 27/1263
  12813. }
  12814. },
  12815. foot: {
  12816. height: math.unit(0.55, "meters"),
  12817. name: "Foot",
  12818. image: {
  12819. source: "./media/characters/kuiper-vanrel/foot.svg",
  12820. }
  12821. },
  12822. battle: {
  12823. height: math.unit(6.824, "feet"),
  12824. name: "Battle",
  12825. image: {
  12826. source: "./media/characters/kuiper-vanrel/battle.svg",
  12827. extra: 1466 / 1327,
  12828. bottom: 29 / 1492.5
  12829. }
  12830. },
  12831. meerkui: {
  12832. height: math.unit(18, "inches"),
  12833. name: "Meerkui",
  12834. image: {
  12835. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12836. extra: 1354/1289,
  12837. bottom: 69/1423
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Normal",
  12844. height: math.unit(7 + 5 / 12, "feet"),
  12845. default: true
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(8 + 5 / 12, "feet"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/keset-vanrel/front.svg",
  12857. extra: 1231/1148,
  12858. bottom: 82/1313
  12859. }
  12860. },
  12861. back: {
  12862. height: math.unit(8 + 5 / 12, "feet"),
  12863. name: "Back",
  12864. image: {
  12865. source: "./media/characters/keset-vanrel/back.svg",
  12866. extra: 1240/1174,
  12867. bottom: 33/1273
  12868. }
  12869. },
  12870. hand: {
  12871. height: math.unit(0.6, "meters"),
  12872. name: "Hand",
  12873. image: {
  12874. source: "./media/characters/keset-vanrel/hand.svg"
  12875. }
  12876. },
  12877. foot: {
  12878. height: math.unit(0.94978, "meters"),
  12879. name: "Foot",
  12880. image: {
  12881. source: "./media/characters/keset-vanrel/foot.svg"
  12882. }
  12883. },
  12884. battle: {
  12885. height: math.unit(7.408, "feet"),
  12886. name: "Battle",
  12887. image: {
  12888. source: "./media/characters/keset-vanrel/battle.svg",
  12889. extra: 1890 / 1386,
  12890. bottom: 73.28 / 1970
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Normal",
  12897. height: math.unit(8 + 5 / 12, "feet"),
  12898. default: true
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(150, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/neos/front.svg",
  12911. extra: 1696 / 992,
  12912. bottom: 0.14
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Normal",
  12919. height: math.unit(54, "cm"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Macro",
  12924. height: math.unit(100, "m")
  12925. },
  12926. {
  12927. name: "Megamacro",
  12928. height: math.unit(10, "km")
  12929. },
  12930. {
  12931. name: "Megamacro+",
  12932. height: math.unit(100, "km")
  12933. },
  12934. {
  12935. name: "Gigamacro",
  12936. height: math.unit(100, "Mm")
  12937. },
  12938. {
  12939. name: "Teramacro",
  12940. height: math.unit(100, "Gm")
  12941. },
  12942. {
  12943. name: "Examacro",
  12944. height: math.unit(100, "Em")
  12945. },
  12946. {
  12947. name: "Godly",
  12948. height: math.unit(10000, "Ym")
  12949. },
  12950. {
  12951. name: "Beyond Godly",
  12952. height: math.unit(25, "multiverses")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12958. {
  12959. feminine: {
  12960. height: math.unit(5, "feet"),
  12961. weight: math.unit(100, "lb"),
  12962. name: "Feminine",
  12963. image: {
  12964. source: "./media/characters/sammy-mouse/feminine.svg",
  12965. extra: 2526 / 2425,
  12966. bottom: 0.123
  12967. }
  12968. },
  12969. masculine: {
  12970. height: math.unit(5, "feet"),
  12971. weight: math.unit(100, "lb"),
  12972. name: "Masculine",
  12973. image: {
  12974. source: "./media/characters/sammy-mouse/masculine.svg",
  12975. extra: 2526 / 2425,
  12976. bottom: 0.123
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Micro",
  12983. height: math.unit(5, "inches")
  12984. },
  12985. {
  12986. name: "Normal",
  12987. height: math.unit(5, "feet"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Macro",
  12992. height: math.unit(60, "feet")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(4, "feet"),
  13001. weight: math.unit(50, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/kole/front.svg",
  13005. extra: 1423 / 1303,
  13006. bottom: 0.025
  13007. }
  13008. },
  13009. back: {
  13010. height: math.unit(4, "feet"),
  13011. weight: math.unit(50, "lb"),
  13012. name: "Back",
  13013. image: {
  13014. source: "./media/characters/kole/back.svg",
  13015. extra: 1426 / 1280,
  13016. bottom: 0.02
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(4, "feet"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(2.5, "feet"),
  13033. weight: math.unit(32, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/rufran/front.svg",
  13037. extra: 1313/885,
  13038. bottom: 94/1407
  13039. }
  13040. },
  13041. side: {
  13042. height: math.unit(2.5, "feet"),
  13043. weight: math.unit(32, "lb"),
  13044. name: "Side",
  13045. image: {
  13046. source: "./media/characters/rufran/side.svg",
  13047. extra: 1109/852,
  13048. bottom: 118/1227
  13049. }
  13050. },
  13051. back: {
  13052. height: math.unit(2.5, "feet"),
  13053. weight: math.unit(32, "lb"),
  13054. name: "Back",
  13055. image: {
  13056. source: "./media/characters/rufran/back.svg",
  13057. extra: 1280/878,
  13058. bottom: 131/1411
  13059. }
  13060. },
  13061. mouth: {
  13062. height: math.unit(1.13, "feet"),
  13063. name: "Mouth",
  13064. image: {
  13065. source: "./media/characters/rufran/mouth.svg"
  13066. }
  13067. },
  13068. foot: {
  13069. height: math.unit(1.33, "feet"),
  13070. name: "Foot",
  13071. image: {
  13072. source: "./media/characters/rufran/foot.svg"
  13073. }
  13074. },
  13075. koboldFront: {
  13076. height: math.unit(2 + 6 / 12, "feet"),
  13077. weight: math.unit(20, "lb"),
  13078. name: "Front (Kobold)",
  13079. image: {
  13080. source: "./media/characters/rufran/kobold-front.svg",
  13081. extra: 2041 / 1839,
  13082. bottom: 0.055
  13083. }
  13084. },
  13085. koboldBack: {
  13086. height: math.unit(2 + 6 / 12, "feet"),
  13087. weight: math.unit(20, "lb"),
  13088. name: "Back (Kobold)",
  13089. image: {
  13090. source: "./media/characters/rufran/kobold-back.svg",
  13091. extra: 2054 / 1839,
  13092. bottom: 0.01
  13093. }
  13094. },
  13095. koboldHand: {
  13096. height: math.unit(0.2166, "meters"),
  13097. name: "Hand (Kobold)",
  13098. image: {
  13099. source: "./media/characters/rufran/kobold-hand.svg"
  13100. }
  13101. },
  13102. koboldFoot: {
  13103. height: math.unit(0.185, "meters"),
  13104. name: "Foot (Kobold)",
  13105. image: {
  13106. source: "./media/characters/rufran/kobold-foot.svg"
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Micro",
  13113. height: math.unit(1, "inch")
  13114. },
  13115. {
  13116. name: "Normal",
  13117. height: math.unit(2 + 6 / 12, "feet"),
  13118. default: true
  13119. },
  13120. {
  13121. name: "Big",
  13122. height: math.unit(60, "feet")
  13123. },
  13124. {
  13125. name: "Macro",
  13126. height: math.unit(325, "feet")
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(0.3, "meters"),
  13135. weight: math.unit(3.5, "kg"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/chip/front.svg",
  13139. extra: 748 / 674
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Micro",
  13146. height: math.unit(1, "inch"),
  13147. default: true
  13148. },
  13149. ]
  13150. ))
  13151. characterMakers.push(() => makeCharacter(
  13152. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13153. {
  13154. side: {
  13155. height: math.unit(2.3, "meters"),
  13156. weight: math.unit(3500, "lb"),
  13157. name: "Side",
  13158. image: {
  13159. source: "./media/characters/torvid/side.svg",
  13160. extra: 1972 / 722,
  13161. bottom: 0.035
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Normal",
  13168. height: math.unit(2.3, "meters"),
  13169. default: true
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(2, "meters"),
  13178. weight: math.unit(150.5, "kg"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/susan/front.svg",
  13182. extra: 693 / 635,
  13183. bottom: 0.05
  13184. }
  13185. },
  13186. },
  13187. [
  13188. {
  13189. name: "Megamacro",
  13190. height: math.unit(505, "miles"),
  13191. default: true
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13197. {
  13198. front: {
  13199. height: math.unit(6, "feet"),
  13200. weight: math.unit(150, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/raindrops/front.svg",
  13204. extra: 2655 / 2461,
  13205. bottom: 49 / 2705
  13206. }
  13207. },
  13208. back: {
  13209. height: math.unit(6, "feet"),
  13210. weight: math.unit(150, "lb"),
  13211. name: "Back",
  13212. image: {
  13213. source: "./media/characters/raindrops/back.svg",
  13214. extra: 2574 / 2400,
  13215. bottom: 65 / 2634
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Micro",
  13222. height: math.unit(6, "inches")
  13223. },
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(6 + 2 / 12, "feet")
  13227. },
  13228. {
  13229. name: "Macro",
  13230. height: math.unit(131, "feet"),
  13231. default: true
  13232. },
  13233. {
  13234. name: "Megamacro",
  13235. height: math.unit(15, "miles")
  13236. },
  13237. {
  13238. name: "Gigamacro",
  13239. height: math.unit(4000, "miles")
  13240. },
  13241. {
  13242. name: "Teramacro",
  13243. height: math.unit(315000, "miles")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(2.794, "meters"),
  13252. weight: math.unit(325, "kg"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/tezwa/front.svg",
  13256. extra: 2083 / 1906,
  13257. bottom: 0.031
  13258. }
  13259. },
  13260. foot: {
  13261. height: math.unit(0.687, "meters"),
  13262. name: "Foot",
  13263. image: {
  13264. source: "./media/characters/tezwa/foot.svg"
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(9 + 2 / 12, "feet"),
  13272. default: true
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(58, "feet"),
  13281. weight: math.unit(89000, "lb"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/typhus/front.svg",
  13285. extra: 816 / 800,
  13286. bottom: 0.065
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(58, "feet"),
  13294. default: true
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13300. {
  13301. front: {
  13302. height: math.unit(12, "feet"),
  13303. weight: math.unit(6, "tonnes"),
  13304. name: "Front",
  13305. image: {
  13306. source: "./media/characters/lyra-von-wulf/front.svg",
  13307. extra: 1,
  13308. bottom: 0.10
  13309. }
  13310. },
  13311. frontMecha: {
  13312. height: math.unit(12, "feet"),
  13313. weight: math.unit(12, "tonnes"),
  13314. name: "Front (Mecha)",
  13315. image: {
  13316. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13317. extra: 1,
  13318. bottom: 0.042
  13319. }
  13320. },
  13321. maw: {
  13322. height: math.unit(2.2, "feet"),
  13323. name: "Maw",
  13324. image: {
  13325. source: "./media/characters/lyra-von-wulf/maw.svg"
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(12, "feet"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Classic",
  13337. height: math.unit(50, "feet")
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(500, "feet")
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(1, "mile")
  13346. },
  13347. {
  13348. name: "Gigamacro",
  13349. height: math.unit(400, "miles")
  13350. },
  13351. {
  13352. name: "Teramacro",
  13353. height: math.unit(22000, "miles")
  13354. },
  13355. {
  13356. name: "Solarmacro",
  13357. height: math.unit(8600000, "miles")
  13358. },
  13359. {
  13360. name: "Galactic",
  13361. height: math.unit(1057000, "lightyears")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(6 + 10 / 12, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/dixon/front.svg",
  13374. extra: 3361 / 3209,
  13375. bottom: 0.01
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Normal",
  13382. height: math.unit(6 + 10 / 12, "feet"),
  13383. default: true
  13384. },
  13385. {
  13386. name: "Big",
  13387. height: math.unit(12, "meters")
  13388. },
  13389. {
  13390. name: "Macro",
  13391. height: math.unit(500, "meters")
  13392. },
  13393. {
  13394. name: "Megamacro",
  13395. height: math.unit(2, "km")
  13396. },
  13397. ]
  13398. ))
  13399. characterMakers.push(() => makeCharacter(
  13400. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13401. {
  13402. front: {
  13403. height: math.unit(185, "cm"),
  13404. weight: math.unit(68, "kg"),
  13405. name: "Front",
  13406. image: {
  13407. source: "./media/characters/kauko/front.svg",
  13408. extra: 1455 / 1421,
  13409. bottom: 0.03
  13410. }
  13411. },
  13412. back: {
  13413. height: math.unit(185, "cm"),
  13414. weight: math.unit(68, "kg"),
  13415. name: "Back",
  13416. image: {
  13417. source: "./media/characters/kauko/back.svg",
  13418. extra: 1455 / 1421,
  13419. bottom: 0.004
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Normal",
  13426. height: math.unit(185, "cm"),
  13427. default: true
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13433. {
  13434. front: {
  13435. height: math.unit(6, "feet"),
  13436. weight: math.unit(150, "kg"),
  13437. name: "Front",
  13438. image: {
  13439. source: "./media/characters/varg/front.svg",
  13440. extra: 1108 / 1018,
  13441. bottom: 0.0375
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Normal",
  13448. height: math.unit(5, "meters")
  13449. },
  13450. {
  13451. name: "Macro",
  13452. height: math.unit(200, "meters")
  13453. },
  13454. {
  13455. name: "Megamacro",
  13456. height: math.unit(20, "kilometers")
  13457. },
  13458. {
  13459. name: "True Size",
  13460. height: math.unit(211, "km"),
  13461. default: true
  13462. },
  13463. {
  13464. name: "Gigamacro",
  13465. height: math.unit(1000, "km")
  13466. },
  13467. {
  13468. name: "Gigamacro+",
  13469. height: math.unit(8000, "km")
  13470. },
  13471. {
  13472. name: "Teramacro",
  13473. height: math.unit(1000000, "km")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(7 + 7 / 12, "feet"),
  13482. weight: math.unit(267, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/dayza/front.svg",
  13486. extra: 1262 / 1200,
  13487. bottom: 0.035
  13488. }
  13489. },
  13490. side: {
  13491. height: math.unit(7 + 7 / 12, "feet"),
  13492. weight: math.unit(267, "lb"),
  13493. name: "Side",
  13494. image: {
  13495. source: "./media/characters/dayza/side.svg",
  13496. extra: 1295 / 1245,
  13497. bottom: 0.05
  13498. }
  13499. },
  13500. back: {
  13501. height: math.unit(7 + 7 / 12, "feet"),
  13502. weight: math.unit(267, "lb"),
  13503. name: "Back",
  13504. image: {
  13505. source: "./media/characters/dayza/back.svg",
  13506. extra: 1241 / 1170
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Normal",
  13513. height: math.unit(7 + 7 / 12, "feet"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(155, "feet")
  13519. },
  13520. ]
  13521. ))
  13522. characterMakers.push(() => makeCharacter(
  13523. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13524. {
  13525. front: {
  13526. height: math.unit(6 + 5 / 12, "feet"),
  13527. weight: math.unit(160, "lb"),
  13528. name: "Front",
  13529. image: {
  13530. source: "./media/characters/xanthos/front.svg",
  13531. extra: 1,
  13532. bottom: 0.04
  13533. }
  13534. },
  13535. back: {
  13536. height: math.unit(6 + 5 / 12, "feet"),
  13537. weight: math.unit(160, "lb"),
  13538. name: "Back",
  13539. image: {
  13540. source: "./media/characters/xanthos/back.svg",
  13541. extra: 1,
  13542. bottom: 0.03
  13543. }
  13544. },
  13545. hand: {
  13546. height: math.unit(0.928, "feet"),
  13547. name: "Hand",
  13548. image: {
  13549. source: "./media/characters/xanthos/hand.svg"
  13550. }
  13551. },
  13552. foot: {
  13553. height: math.unit(1.286, "feet"),
  13554. name: "Foot",
  13555. image: {
  13556. source: "./media/characters/xanthos/foot.svg"
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(6 + 5 / 12, "feet"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Normal+",
  13568. height: math.unit(6, "meters")
  13569. },
  13570. {
  13571. name: "Macro",
  13572. height: math.unit(40, "feet")
  13573. },
  13574. {
  13575. name: "Macro+",
  13576. height: math.unit(200, "meters")
  13577. },
  13578. {
  13579. name: "Megamacro",
  13580. height: math.unit(20, "km")
  13581. },
  13582. {
  13583. name: "Megamacro+",
  13584. height: math.unit(100, "km")
  13585. },
  13586. {
  13587. name: "Gigamacro",
  13588. height: math.unit(200, "megameters")
  13589. },
  13590. {
  13591. name: "Gigamacro+",
  13592. height: math.unit(1.5, "gigameters")
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6 + 3 / 12, "feet"),
  13601. weight: math.unit(215, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/grynn/front.svg",
  13605. extra: 4627 / 4209,
  13606. bottom: 0.047
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Micro",
  13613. height: math.unit(6, "inches")
  13614. },
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(6 + 3 / 12, "feet"),
  13618. default: true
  13619. },
  13620. {
  13621. name: "Big",
  13622. height: math.unit(104, "feet")
  13623. },
  13624. {
  13625. name: "Macro",
  13626. height: math.unit(944, "feet")
  13627. },
  13628. {
  13629. name: "Macro+",
  13630. height: math.unit(9480, "feet")
  13631. },
  13632. {
  13633. name: "Megamacro",
  13634. height: math.unit(78752, "feet")
  13635. },
  13636. {
  13637. name: "Megamacro+",
  13638. height: math.unit(630128, "feet")
  13639. },
  13640. {
  13641. name: "Megamacro++",
  13642. height: math.unit(3150695, "feet")
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(7 + 5 / 12, "feet"),
  13651. weight: math.unit(450, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/mocha-aura/front.svg",
  13655. extra: 1907 / 1817,
  13656. bottom: 0.04
  13657. }
  13658. },
  13659. back: {
  13660. height: math.unit(7 + 5 / 12, "feet"),
  13661. weight: math.unit(450, "lb"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/mocha-aura/back.svg",
  13665. extra: 1900 / 1825,
  13666. bottom: 0.045
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Nano",
  13673. height: math.unit(1, "nm")
  13674. },
  13675. {
  13676. name: "Megamicro",
  13677. height: math.unit(1, "mm")
  13678. },
  13679. {
  13680. name: "Micro",
  13681. height: math.unit(3, "inches")
  13682. },
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(7 + 5 / 12, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Macro",
  13690. height: math.unit(30, "feet")
  13691. },
  13692. {
  13693. name: "Megamacro",
  13694. height: math.unit(3500, "feet")
  13695. },
  13696. {
  13697. name: "Teramacro",
  13698. height: math.unit(500000, "miles")
  13699. },
  13700. {
  13701. name: "Petamacro",
  13702. height: math.unit(50000000000000000, "parsecs")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/ilisha-devya/front.svg",
  13715. extra: 1053/1049,
  13716. bottom: 270/1323
  13717. }
  13718. },
  13719. back: {
  13720. height: math.unit(6, "feet"),
  13721. weight: math.unit(150, "lb"),
  13722. name: "Back",
  13723. image: {
  13724. source: "./media/characters/ilisha-devya/back.svg",
  13725. extra: 1131/1128,
  13726. bottom: 39/1170
  13727. }
  13728. },
  13729. },
  13730. [
  13731. {
  13732. name: "Macro",
  13733. height: math.unit(500, "feet"),
  13734. default: true
  13735. },
  13736. {
  13737. name: "Megamacro",
  13738. height: math.unit(10, "miles")
  13739. },
  13740. {
  13741. name: "Gigamacro",
  13742. height: math.unit(100000, "miles")
  13743. },
  13744. {
  13745. name: "Examacro",
  13746. height: math.unit(1e9, "lightyears")
  13747. },
  13748. {
  13749. name: "Omniversal",
  13750. height: math.unit(1e33, "lightyears")
  13751. },
  13752. {
  13753. name: "Beyond Infinite",
  13754. height: math.unit(1e100, "lightyears")
  13755. },
  13756. ]
  13757. ))
  13758. characterMakers.push(() => makeCharacter(
  13759. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13760. {
  13761. Side: {
  13762. height: math.unit(6, "feet"),
  13763. weight: math.unit(150, "lb"),
  13764. name: "Side",
  13765. image: {
  13766. source: "./media/characters/mira/side.svg",
  13767. extra: 900 / 799,
  13768. bottom: 0.02
  13769. }
  13770. },
  13771. },
  13772. [
  13773. {
  13774. name: "Human Size",
  13775. height: math.unit(6, "feet")
  13776. },
  13777. {
  13778. name: "Macro",
  13779. height: math.unit(100, "feet"),
  13780. default: true
  13781. },
  13782. {
  13783. name: "Megamacro",
  13784. height: math.unit(10, "miles")
  13785. },
  13786. {
  13787. name: "Gigamacro",
  13788. height: math.unit(25000, "miles")
  13789. },
  13790. {
  13791. name: "Teramacro",
  13792. height: math.unit(300, "AU")
  13793. },
  13794. {
  13795. name: "Full Size",
  13796. height: math.unit(4.5e10, "lightyears")
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/holly/front.svg",
  13809. extra: 639 / 606
  13810. }
  13811. },
  13812. back: {
  13813. height: math.unit(6, "feet"),
  13814. weight: math.unit(150, "lb"),
  13815. name: "Back",
  13816. image: {
  13817. source: "./media/characters/holly/back.svg",
  13818. extra: 623 / 598
  13819. }
  13820. },
  13821. frontWorking: {
  13822. height: math.unit(6, "feet"),
  13823. weight: math.unit(150, "lb"),
  13824. name: "Front (Working)",
  13825. image: {
  13826. source: "./media/characters/holly/front-working.svg",
  13827. extra: 607 / 577,
  13828. bottom: 0.048
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(12 + 3 / 12, "feet"),
  13836. default: true
  13837. },
  13838. ]
  13839. ))
  13840. characterMakers.push(() => makeCharacter(
  13841. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13842. {
  13843. front: {
  13844. height: math.unit(6, "feet"),
  13845. weight: math.unit(150, "lb"),
  13846. name: "Front",
  13847. image: {
  13848. source: "./media/characters/porter/front.svg",
  13849. extra: 1,
  13850. bottom: 0.01
  13851. }
  13852. },
  13853. frontRobes: {
  13854. height: math.unit(6, "feet"),
  13855. weight: math.unit(150, "lb"),
  13856. name: "Front (Robes)",
  13857. image: {
  13858. source: "./media/characters/porter/front-robes.svg",
  13859. extra: 1.01,
  13860. bottom: 0.01
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Normal",
  13867. height: math.unit(11 + 9 / 12, "feet"),
  13868. default: true
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13874. {
  13875. legendary: {
  13876. height: math.unit(6, "feet"),
  13877. weight: math.unit(150, "lb"),
  13878. name: "Legendary",
  13879. image: {
  13880. source: "./media/characters/lucy/legendary.svg",
  13881. extra: 1355 / 1100,
  13882. bottom: 0.045
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Legendary",
  13889. height: math.unit(86882 * 2, "miles"),
  13890. default: true
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(150, "lb"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/drusilla/front.svg",
  13903. extra: 678 / 635,
  13904. bottom: 0.03
  13905. }
  13906. },
  13907. back: {
  13908. height: math.unit(6, "feet"),
  13909. weight: math.unit(150, "lb"),
  13910. name: "Back",
  13911. image: {
  13912. source: "./media/characters/drusilla/back.svg",
  13913. extra: 678 / 635,
  13914. bottom: 0.005
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Macro",
  13921. height: math.unit(100, "feet")
  13922. },
  13923. {
  13924. name: "Canon Height",
  13925. height: math.unit(2000, "feet"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13932. {
  13933. front: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(180, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/renard-thatch/front.svg",
  13939. extra: 2411 / 2275,
  13940. bottom: 0.01
  13941. }
  13942. },
  13943. frontPosing: {
  13944. height: math.unit(6, "feet"),
  13945. weight: math.unit(180, "lb"),
  13946. name: "Front (Posing)",
  13947. image: {
  13948. source: "./media/characters/renard-thatch/front-posing.svg",
  13949. extra: 2381 / 2261,
  13950. bottom: 0.01
  13951. }
  13952. },
  13953. back: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(180, "lb"),
  13956. name: "Back",
  13957. image: {
  13958. source: "./media/characters/renard-thatch/back.svg",
  13959. extra: 2428 / 2288
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Micro",
  13966. height: math.unit(3, "inches")
  13967. },
  13968. {
  13969. name: "Default",
  13970. height: math.unit(6, "feet"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Macro",
  13975. height: math.unit(75, "feet")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(1450, "feet"),
  13984. weight: math.unit(1.21e6, "tons"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/sekvra/front.svg",
  13988. extra: 1193/1190,
  13989. bottom: 78/1271
  13990. }
  13991. },
  13992. side: {
  13993. height: math.unit(1450, "feet"),
  13994. weight: math.unit(1.21e6, "tons"),
  13995. name: "Side",
  13996. image: {
  13997. source: "./media/characters/sekvra/side.svg",
  13998. extra: 1193/1190,
  13999. bottom: 52/1245
  14000. }
  14001. },
  14002. back: {
  14003. height: math.unit(1450, "feet"),
  14004. weight: math.unit(1.21e6, "tons"),
  14005. name: "Back",
  14006. image: {
  14007. source: "./media/characters/sekvra/back.svg",
  14008. extra: 1219/1216,
  14009. bottom: 21/1240
  14010. }
  14011. },
  14012. frontClothed: {
  14013. height: math.unit(1450, "feet"),
  14014. weight: math.unit(1.21e6, "tons"),
  14015. name: "Front (Clothed)",
  14016. image: {
  14017. source: "./media/characters/sekvra/front-clothed.svg",
  14018. extra: 1192/1189,
  14019. bottom: 79/1271
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(1450, "feet"),
  14027. default: true
  14028. },
  14029. {
  14030. name: "Megamacro",
  14031. height: math.unit(15000, "feet")
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14037. {
  14038. front: {
  14039. height: math.unit(6, "feet"),
  14040. weight: math.unit(150, "lb"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/carmine/front.svg",
  14044. extra: 1,
  14045. bottom: 0.035
  14046. }
  14047. },
  14048. frontArmor: {
  14049. height: math.unit(6, "feet"),
  14050. weight: math.unit(150, "lb"),
  14051. name: "Front (Armor)",
  14052. image: {
  14053. source: "./media/characters/carmine/front-armor.svg",
  14054. extra: 1,
  14055. bottom: 0.035
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Large",
  14062. height: math.unit(1, "mile")
  14063. },
  14064. {
  14065. name: "Huge",
  14066. height: math.unit(40, "miles"),
  14067. default: true
  14068. },
  14069. {
  14070. name: "Colossal",
  14071. height: math.unit(2500, "miles")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(150, "lb"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/elyssia/front.svg",
  14084. extra: 2201 / 2035,
  14085. bottom: 0.05
  14086. }
  14087. },
  14088. frontClothed: {
  14089. height: math.unit(6, "feet"),
  14090. weight: math.unit(150, "lb"),
  14091. name: "Front (Clothed)",
  14092. image: {
  14093. source: "./media/characters/elyssia/front-clothed.svg",
  14094. extra: 2201 / 2035,
  14095. bottom: 0.05
  14096. }
  14097. },
  14098. back: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(150, "lb"),
  14101. name: "Back",
  14102. image: {
  14103. source: "./media/characters/elyssia/back.svg",
  14104. extra: 2201 / 2035,
  14105. bottom: 0.013
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Smaller",
  14112. height: math.unit(150, "feet")
  14113. },
  14114. {
  14115. name: "Standard",
  14116. height: math.unit(1400, "feet"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Distracted",
  14121. height: math.unit(15000, "feet")
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(7 + 4/12, "feet"),
  14130. weight: math.unit(690, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/geno-maxwell/front.svg",
  14134. extra: 984/856,
  14135. bottom: 87/1071
  14136. }
  14137. },
  14138. back: {
  14139. height: math.unit(7 + 4/12, "feet"),
  14140. weight: math.unit(690, "lb"),
  14141. name: "Back",
  14142. image: {
  14143. source: "./media/characters/geno-maxwell/back.svg",
  14144. extra: 981/854,
  14145. bottom: 57/1038
  14146. }
  14147. },
  14148. frontCostume: {
  14149. height: math.unit(7 + 4/12, "feet"),
  14150. weight: math.unit(690, "lb"),
  14151. name: "Front (Costume)",
  14152. image: {
  14153. source: "./media/characters/geno-maxwell/front-costume.svg",
  14154. extra: 984/856,
  14155. bottom: 87/1071
  14156. }
  14157. },
  14158. backcostume: {
  14159. height: math.unit(7 + 4/12, "feet"),
  14160. weight: math.unit(690, "lb"),
  14161. name: "Back (Costume)",
  14162. image: {
  14163. source: "./media/characters/geno-maxwell/back-costume.svg",
  14164. extra: 981/854,
  14165. bottom: 57/1038
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Micro",
  14172. height: math.unit(3, "inches")
  14173. },
  14174. {
  14175. name: "Normal",
  14176. height: math.unit(7 + 4 / 12, "feet"),
  14177. default: true
  14178. },
  14179. {
  14180. name: "Macro",
  14181. height: math.unit(220, "feet")
  14182. },
  14183. {
  14184. name: "Megamacro",
  14185. height: math.unit(11, "miles")
  14186. },
  14187. ]
  14188. ))
  14189. characterMakers.push(() => makeCharacter(
  14190. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14191. {
  14192. front: {
  14193. height: math.unit(7 + 4/12, "feet"),
  14194. weight: math.unit(750, "lb"),
  14195. name: "Front",
  14196. image: {
  14197. source: "./media/characters/regena-maxwell/front.svg",
  14198. extra: 984/856,
  14199. bottom: 87/1071
  14200. }
  14201. },
  14202. back: {
  14203. height: math.unit(7 + 4/12, "feet"),
  14204. weight: math.unit(750, "lb"),
  14205. name: "Back",
  14206. image: {
  14207. source: "./media/characters/regena-maxwell/back.svg",
  14208. extra: 981/854,
  14209. bottom: 57/1038
  14210. }
  14211. },
  14212. frontCostume: {
  14213. height: math.unit(7 + 4/12, "feet"),
  14214. weight: math.unit(750, "lb"),
  14215. name: "Front (Costume)",
  14216. image: {
  14217. source: "./media/characters/regena-maxwell/front-costume.svg",
  14218. extra: 984/856,
  14219. bottom: 87/1071
  14220. }
  14221. },
  14222. backcostume: {
  14223. height: math.unit(7 + 4/12, "feet"),
  14224. weight: math.unit(750, "lb"),
  14225. name: "Back (Costume)",
  14226. image: {
  14227. source: "./media/characters/regena-maxwell/back-costume.svg",
  14228. extra: 981/854,
  14229. bottom: 57/1038
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(7 + 4 / 12, "feet"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(220, "feet")
  14242. },
  14243. {
  14244. name: "Megamacro",
  14245. height: math.unit(11, "miles")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(150, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14258. extra: 860 / 690,
  14259. bottom: 0.03
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(1.7, "meters"),
  14267. default: true
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(6, "feet"),
  14276. weight: math.unit(150, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/quilly/front.svg",
  14280. extra: 890 / 776
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Gigamacro",
  14287. height: math.unit(404090, "miles"),
  14288. default: true
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(7 + 8 / 12, "feet"),
  14297. weight: math.unit(350, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/tempest/front.svg",
  14301. extra: 1175 / 1086,
  14302. bottom: 0.02
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(7 + 8 / 12, "feet"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14316. {
  14317. side: {
  14318. height: math.unit(4 + 5 / 12, "feet"),
  14319. weight: math.unit(80, "lb"),
  14320. name: "Side",
  14321. image: {
  14322. source: "./media/characters/rodger/side.svg",
  14323. extra: 1235 / 1118
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Micro",
  14330. height: math.unit(1, "inch")
  14331. },
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(4 + 5 / 12, "feet"),
  14335. default: true
  14336. },
  14337. {
  14338. name: "Macro",
  14339. height: math.unit(120, "feet")
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(6, "feet"),
  14348. weight: math.unit(150, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/danyel/front.svg",
  14352. extra: 1185 / 1123,
  14353. bottom: 0.05
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Shrunken",
  14360. height: math.unit(0.5, "mm")
  14361. },
  14362. {
  14363. name: "Micro",
  14364. height: math.unit(1, "mm"),
  14365. default: true
  14366. },
  14367. {
  14368. name: "Upsized",
  14369. height: math.unit(5 + 5 / 12, "feet")
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14375. {
  14376. front: {
  14377. height: math.unit(5 + 6 / 12, "feet"),
  14378. weight: math.unit(200, "lb"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/vivian-bijoux/front.svg",
  14382. extra: 1217/1209,
  14383. bottom: 76/1293
  14384. }
  14385. },
  14386. back: {
  14387. height: math.unit(5 + 6 / 12, "feet"),
  14388. weight: math.unit(200, "lb"),
  14389. name: "Back",
  14390. image: {
  14391. source: "./media/characters/vivian-bijoux/back.svg",
  14392. extra: 1214/1208,
  14393. bottom: 51/1265
  14394. }
  14395. },
  14396. dressed: {
  14397. height: math.unit(5 + 6 / 12, "feet"),
  14398. weight: math.unit(200, "lb"),
  14399. name: "Dressed",
  14400. image: {
  14401. source: "./media/characters/vivian-bijoux/dressed.svg",
  14402. extra: 1217/1209,
  14403. bottom: 76/1293
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Normal",
  14410. height: math.unit(5 + 6 / 12, "feet"),
  14411. default: true
  14412. },
  14413. {
  14414. name: "Bad Dream",
  14415. height: math.unit(500, "feet")
  14416. },
  14417. {
  14418. name: "Nightmare",
  14419. height: math.unit(500, "miles")
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(6 + 1 / 12, "feet"),
  14428. weight: math.unit(260, "lb"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/zeta/front.svg",
  14432. extra: 1968 / 1889,
  14433. bottom: 0.06
  14434. }
  14435. },
  14436. back: {
  14437. height: math.unit(6 + 1 / 12, "feet"),
  14438. weight: math.unit(260, "lb"),
  14439. name: "Back",
  14440. image: {
  14441. source: "./media/characters/zeta/back.svg",
  14442. extra: 1944 / 1858,
  14443. bottom: 0.03
  14444. }
  14445. },
  14446. hand: {
  14447. height: math.unit(1.112, "feet"),
  14448. name: "Hand",
  14449. image: {
  14450. source: "./media/characters/zeta/hand.svg"
  14451. }
  14452. },
  14453. foot: {
  14454. height: math.unit(1.48, "feet"),
  14455. name: "Foot",
  14456. image: {
  14457. source: "./media/characters/zeta/foot.svg"
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Micro",
  14464. height: math.unit(6, "inches")
  14465. },
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(6 + 1 / 12, "feet"),
  14469. default: true
  14470. },
  14471. {
  14472. name: "Macro",
  14473. height: math.unit(20, "feet")
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(6, "feet"),
  14482. weight: math.unit(150, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/jamie-larsen/front.svg",
  14486. extra: 962 / 933,
  14487. bottom: 0.02
  14488. }
  14489. },
  14490. back: {
  14491. height: math.unit(6, "feet"),
  14492. weight: math.unit(150, "lb"),
  14493. name: "Back",
  14494. image: {
  14495. source: "./media/characters/jamie-larsen/back.svg",
  14496. extra: 997 / 946
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Macro",
  14503. height: math.unit(28 + 7 / 12, "feet"),
  14504. default: true
  14505. },
  14506. {
  14507. name: "Macro+",
  14508. height: math.unit(180, "feet")
  14509. },
  14510. {
  14511. name: "Megamacro",
  14512. height: math.unit(10, "miles")
  14513. },
  14514. {
  14515. name: "Gigamacro",
  14516. height: math.unit(200000, "miles")
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(6, "feet"),
  14525. weight: math.unit(120, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/vance/front.svg",
  14529. extra: 1980 / 1890,
  14530. bottom: 0.09
  14531. }
  14532. },
  14533. back: {
  14534. height: math.unit(6, "feet"),
  14535. weight: math.unit(120, "lb"),
  14536. name: "Back",
  14537. image: {
  14538. source: "./media/characters/vance/back.svg",
  14539. extra: 2081 / 1994,
  14540. bottom: 0.014
  14541. }
  14542. },
  14543. hand: {
  14544. height: math.unit(0.88, "feet"),
  14545. name: "Hand",
  14546. image: {
  14547. source: "./media/characters/vance/hand.svg"
  14548. }
  14549. },
  14550. foot: {
  14551. height: math.unit(0.64, "feet"),
  14552. name: "Foot",
  14553. image: {
  14554. source: "./media/characters/vance/foot.svg"
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Small",
  14561. height: math.unit(90, "feet"),
  14562. default: true
  14563. },
  14564. {
  14565. name: "Macro",
  14566. height: math.unit(100, "meters")
  14567. },
  14568. {
  14569. name: "Megamacro",
  14570. height: math.unit(15, "miles")
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(180, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/xochitl/front.svg",
  14583. extra: 2297 / 2261,
  14584. bottom: 0.065
  14585. }
  14586. },
  14587. back: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(180, "lb"),
  14590. name: "Back",
  14591. image: {
  14592. source: "./media/characters/xochitl/back.svg",
  14593. extra: 2386 / 2354,
  14594. bottom: 0.01
  14595. }
  14596. },
  14597. foot: {
  14598. height: math.unit(6 / 5 * 1.15, "feet"),
  14599. weight: math.unit(150, "lb"),
  14600. name: "Foot",
  14601. image: {
  14602. source: "./media/characters/xochitl/foot.svg"
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Macro",
  14609. height: math.unit(80, "feet")
  14610. },
  14611. {
  14612. name: "Macro+",
  14613. height: math.unit(400, "feet"),
  14614. default: true
  14615. },
  14616. {
  14617. name: "Gigamacro",
  14618. height: math.unit(80000, "miles")
  14619. },
  14620. {
  14621. name: "Gigamacro+",
  14622. height: math.unit(400000, "miles")
  14623. },
  14624. {
  14625. name: "Teramacro",
  14626. height: math.unit(300, "AU")
  14627. },
  14628. ]
  14629. ))
  14630. characterMakers.push(() => makeCharacter(
  14631. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14632. {
  14633. front: {
  14634. height: math.unit(6, "feet"),
  14635. weight: math.unit(150, "lb"),
  14636. name: "Front",
  14637. image: {
  14638. source: "./media/characters/vincent/front.svg",
  14639. extra: 1130 / 1080,
  14640. bottom: 0.055
  14641. }
  14642. },
  14643. beak: {
  14644. height: math.unit(6 * 0.1, "feet"),
  14645. name: "Beak",
  14646. image: {
  14647. source: "./media/characters/vincent/beak.svg"
  14648. }
  14649. },
  14650. hand: {
  14651. height: math.unit(6 * 0.85, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Hand",
  14654. image: {
  14655. source: "./media/characters/vincent/hand.svg"
  14656. }
  14657. },
  14658. foot: {
  14659. height: math.unit(6 * 0.19, "feet"),
  14660. weight: math.unit(150, "lb"),
  14661. name: "Foot",
  14662. image: {
  14663. source: "./media/characters/vincent/foot.svg"
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Base",
  14670. height: math.unit(6 + 5 / 12, "feet"),
  14671. default: true
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(300, "feet")
  14676. },
  14677. {
  14678. name: "Megamacro",
  14679. height: math.unit(2, "miles")
  14680. },
  14681. {
  14682. name: "Gigamacro",
  14683. height: math.unit(1000, "miles")
  14684. },
  14685. ]
  14686. ))
  14687. characterMakers.push(() => makeCharacter(
  14688. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14689. {
  14690. front: {
  14691. height: math.unit(2, "meters"),
  14692. weight: math.unit(500, "kg"),
  14693. name: "Front",
  14694. image: {
  14695. source: "./media/characters/coatl/front.svg",
  14696. extra: 3948 / 3500,
  14697. bottom: 0.082
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Normal",
  14704. height: math.unit(4, "meters")
  14705. },
  14706. {
  14707. name: "Macro",
  14708. height: math.unit(100, "meters"),
  14709. default: true
  14710. },
  14711. {
  14712. name: "Macro+",
  14713. height: math.unit(300, "meters")
  14714. },
  14715. {
  14716. name: "Megamacro",
  14717. height: math.unit(3, "gigameters")
  14718. },
  14719. {
  14720. name: "Megamacro+",
  14721. height: math.unit(300, "terameters")
  14722. },
  14723. {
  14724. name: "Megamacro++",
  14725. height: math.unit(3, "lightyears")
  14726. },
  14727. ]
  14728. ))
  14729. characterMakers.push(() => makeCharacter(
  14730. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14731. {
  14732. front: {
  14733. height: math.unit(6, "feet"),
  14734. weight: math.unit(50, "kg"),
  14735. name: "front",
  14736. image: {
  14737. source: "./media/characters/shiroryu/front.svg",
  14738. extra: 1990 / 1935
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Mortal Mingling",
  14745. height: math.unit(3, "meters")
  14746. },
  14747. {
  14748. name: "Kaiju-ish",
  14749. height: math.unit(250, "meters")
  14750. },
  14751. {
  14752. name: "Somewhat Godly",
  14753. height: math.unit(400, "km"),
  14754. default: true
  14755. },
  14756. {
  14757. name: "Planetary",
  14758. height: math.unit(300, "megameters")
  14759. },
  14760. {
  14761. name: "Galaxy-dwarfing",
  14762. height: math.unit(450, "kiloparsecs")
  14763. },
  14764. {
  14765. name: "Universe Eater",
  14766. height: math.unit(150, "gigaparsecs")
  14767. },
  14768. {
  14769. name: "Almost Immeasurable",
  14770. height: math.unit(1.3e266, "yottaparsecs")
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(6, "feet"),
  14779. weight: math.unit(150, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/umeko/front.svg",
  14783. extra: 1,
  14784. bottom: 0.019
  14785. }
  14786. },
  14787. frontArmored: {
  14788. height: math.unit(6, "feet"),
  14789. weight: math.unit(150, "lb"),
  14790. name: "Front (Armored)",
  14791. image: {
  14792. source: "./media/characters/umeko/front-armored.svg",
  14793. extra: 1,
  14794. bottom: 0.021
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(220, "feet"),
  14802. default: true
  14803. },
  14804. {
  14805. name: "Guardian Dragon",
  14806. height: math.unit(50, "miles")
  14807. },
  14808. {
  14809. name: "Cosmic",
  14810. height: math.unit(800000, "miles")
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14816. {
  14817. front: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(150, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/cassidy/front.svg",
  14823. extra: 810/808,
  14824. bottom: 41/851
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Canon Height",
  14831. height: math.unit(120, "feet"),
  14832. default: true
  14833. },
  14834. {
  14835. name: "Macro+",
  14836. height: math.unit(400, "feet")
  14837. },
  14838. {
  14839. name: "Macro++",
  14840. height: math.unit(4000, "feet")
  14841. },
  14842. {
  14843. name: "Megamacro",
  14844. height: math.unit(3, "miles")
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(6, "feet"),
  14853. weight: math.unit(150, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/isaac/front.svg",
  14857. extra: 896 / 815,
  14858. bottom: 0.11
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Human Size",
  14865. height: math.unit(8, "feet"),
  14866. default: true
  14867. },
  14868. {
  14869. name: "Macro",
  14870. height: math.unit(400, "feet")
  14871. },
  14872. {
  14873. name: "Megamacro",
  14874. height: math.unit(50, "miles")
  14875. },
  14876. {
  14877. name: "Canon Height",
  14878. height: math.unit(200, "AU")
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(72, "kg"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/sleekit/front.svg",
  14891. extra: 4693 / 4487,
  14892. bottom: 0.012
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Minimum Height",
  14899. height: math.unit(10, "meters")
  14900. },
  14901. {
  14902. name: "Smaller",
  14903. height: math.unit(25, "meters")
  14904. },
  14905. {
  14906. name: "Larger",
  14907. height: math.unit(38, "meters"),
  14908. default: true
  14909. },
  14910. {
  14911. name: "Maximum height",
  14912. height: math.unit(100, "meters")
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14918. {
  14919. front: {
  14920. height: math.unit(6, "feet"),
  14921. weight: math.unit(150, "lb"),
  14922. name: "Front",
  14923. image: {
  14924. source: "./media/characters/nillia/front.svg",
  14925. extra: 2195 / 2037,
  14926. bottom: 0.005
  14927. }
  14928. },
  14929. back: {
  14930. height: math.unit(6, "feet"),
  14931. weight: math.unit(150, "lb"),
  14932. name: "Back",
  14933. image: {
  14934. source: "./media/characters/nillia/back.svg",
  14935. extra: 2195 / 2037,
  14936. bottom: 0.005
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Canon Height",
  14943. height: math.unit(489, "feet"),
  14944. default: true
  14945. }
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14950. {
  14951. front: {
  14952. height: math.unit(6, "feet"),
  14953. weight: math.unit(150, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/mesmyriza/front.svg",
  14957. extra: 2067 / 1784,
  14958. bottom: 0.035
  14959. }
  14960. },
  14961. foot: {
  14962. height: math.unit(6 / (250 / 35), "feet"),
  14963. name: "Foot",
  14964. image: {
  14965. source: "./media/characters/mesmyriza/foot.svg"
  14966. }
  14967. },
  14968. },
  14969. [
  14970. {
  14971. name: "Macro",
  14972. height: math.unit(457, "meters"),
  14973. default: true
  14974. },
  14975. {
  14976. name: "Megamacro",
  14977. height: math.unit(8, "megameters")
  14978. },
  14979. ]
  14980. ))
  14981. characterMakers.push(() => makeCharacter(
  14982. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14983. {
  14984. front: {
  14985. height: math.unit(6, "feet"),
  14986. weight: math.unit(250, "lb"),
  14987. name: "Front",
  14988. image: {
  14989. source: "./media/characters/saudade/front.svg",
  14990. extra: 1172 / 1139,
  14991. bottom: 0.035
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Micro",
  14998. height: math.unit(3, "inches")
  14999. },
  15000. {
  15001. name: "Normal",
  15002. height: math.unit(6, "feet"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Macro",
  15007. height: math.unit(50, "feet")
  15008. },
  15009. {
  15010. name: "Megamacro",
  15011. height: math.unit(2800, "feet")
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15017. {
  15018. front: {
  15019. height: math.unit(5 + 4 / 12, "feet"),
  15020. weight: math.unit(100, "lb"),
  15021. name: "Front",
  15022. image: {
  15023. source: "./media/characters/keireer/front.svg",
  15024. extra: 716 / 666,
  15025. bottom: 0.05
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Normal",
  15032. height: math.unit(5 + 4 / 12, "feet"),
  15033. default: true
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15039. {
  15040. front: {
  15041. height: math.unit(6, "feet"),
  15042. weight: math.unit(90, "kg"),
  15043. name: "Front",
  15044. image: {
  15045. source: "./media/characters/mirja/front.svg",
  15046. extra: 1789 / 1683,
  15047. bottom: 0.05
  15048. }
  15049. },
  15050. frontDressed: {
  15051. height: math.unit(6, "feet"),
  15052. weight: math.unit(90, "lb"),
  15053. name: "Front (Dressed)",
  15054. image: {
  15055. source: "./media/characters/mirja/front-dressed.svg",
  15056. extra: 1789 / 1683,
  15057. bottom: 0.05
  15058. }
  15059. },
  15060. back: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(90, "lb"),
  15063. name: "Back",
  15064. image: {
  15065. source: "./media/characters/mirja/back.svg",
  15066. extra: 953 / 917,
  15067. bottom: 0.017
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "\"Incognito\"",
  15074. height: math.unit(3, "meters")
  15075. },
  15076. {
  15077. name: "Strolling Size",
  15078. height: math.unit(15, "km")
  15079. },
  15080. {
  15081. name: "Larger Strolling Size",
  15082. height: math.unit(400, "km")
  15083. },
  15084. {
  15085. name: "Preferred Size",
  15086. height: math.unit(5000, "km")
  15087. },
  15088. {
  15089. name: "True Size",
  15090. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15091. default: true
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(15, "feet"),
  15100. weight: math.unit(880, "kg"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/nightraver/front.svg",
  15104. extra: 2444 / 2160,
  15105. bottom: 0.027
  15106. }
  15107. },
  15108. back: {
  15109. height: math.unit(15, "feet"),
  15110. weight: math.unit(880, "kg"),
  15111. name: "Back",
  15112. image: {
  15113. source: "./media/characters/nightraver/back.svg",
  15114. extra: 2309 / 2180,
  15115. bottom: 0.005
  15116. }
  15117. },
  15118. sole: {
  15119. height: math.unit(2.878, "feet"),
  15120. name: "Sole",
  15121. image: {
  15122. source: "./media/characters/nightraver/sole.svg"
  15123. }
  15124. },
  15125. foot: {
  15126. height: math.unit(2.285, "feet"),
  15127. name: "Foot",
  15128. image: {
  15129. source: "./media/characters/nightraver/foot.svg"
  15130. }
  15131. },
  15132. maw: {
  15133. height: math.unit(2.67, "feet"),
  15134. name: "Maw",
  15135. image: {
  15136. source: "./media/characters/nightraver/maw.svg"
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Micro",
  15143. height: math.unit(1, "cm")
  15144. },
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(15, "feet"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Macro",
  15152. height: math.unit(300, "feet")
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(300, "miles")
  15157. },
  15158. {
  15159. name: "Gigamacro",
  15160. height: math.unit(10000, "miles")
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15166. {
  15167. side: {
  15168. height: math.unit(2, "inches"),
  15169. weight: math.unit(5, "grams"),
  15170. name: "Side",
  15171. image: {
  15172. source: "./media/characters/arc/side.svg"
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Micro",
  15179. height: math.unit(2, "inches"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(1.1938, "meters"),
  15189. weight: math.unit(54, "kg"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/nebula-shahar/front.svg",
  15193. extra: 1642 / 1436,
  15194. bottom: 0.06
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Megamicro",
  15201. height: math.unit(0.3, "mm")
  15202. },
  15203. {
  15204. name: "Micro",
  15205. height: math.unit(3, "cm")
  15206. },
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(138, "cm"),
  15210. default: true
  15211. },
  15212. {
  15213. name: "Macro",
  15214. height: math.unit(30, "m")
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15220. {
  15221. front: {
  15222. height: math.unit(5.24, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Front",
  15225. image: {
  15226. source: "./media/characters/shayla/front.svg",
  15227. extra: 1512 / 1414,
  15228. bottom: 0.01
  15229. }
  15230. },
  15231. back: {
  15232. height: math.unit(5.24, "feet"),
  15233. weight: math.unit(150, "lb"),
  15234. name: "Back",
  15235. image: {
  15236. source: "./media/characters/shayla/back.svg",
  15237. extra: 1512 / 1414
  15238. }
  15239. },
  15240. hand: {
  15241. height: math.unit(0.7781496062992126, "feet"),
  15242. name: "Hand",
  15243. image: {
  15244. source: "./media/characters/shayla/hand.svg"
  15245. }
  15246. },
  15247. foot: {
  15248. height: math.unit(1.4206036745406823, "feet"),
  15249. name: "Foot",
  15250. image: {
  15251. source: "./media/characters/shayla/foot.svg"
  15252. }
  15253. },
  15254. },
  15255. [
  15256. {
  15257. name: "Micro",
  15258. height: math.unit(0.32, "feet")
  15259. },
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(5.24, "feet"),
  15263. default: true
  15264. },
  15265. {
  15266. name: "Macro",
  15267. height: math.unit(492.12, "feet")
  15268. },
  15269. {
  15270. name: "Megamacro",
  15271. height: math.unit(186.41, "miles")
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(2.2, "m"),
  15280. weight: math.unit(120, "kg"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/pia-jr/front.svg",
  15284. extra: 1000 / 970,
  15285. bottom: 0.035
  15286. }
  15287. },
  15288. hand: {
  15289. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15290. name: "Hand",
  15291. image: {
  15292. source: "./media/characters/pia-jr/hand.svg"
  15293. }
  15294. },
  15295. paw: {
  15296. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15297. name: "Paw",
  15298. image: {
  15299. source: "./media/characters/pia-jr/paw.svg"
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Micro",
  15306. height: math.unit(1.2, "cm")
  15307. },
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(2.2, "m"),
  15311. default: true
  15312. },
  15313. {
  15314. name: "Macro",
  15315. height: math.unit(180, "m")
  15316. },
  15317. {
  15318. name: "Megamacro",
  15319. height: math.unit(420, "km")
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(2, "m"),
  15328. weight: math.unit(115, "kg"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/pia-sr/front.svg",
  15332. extra: 760 / 730,
  15333. bottom: 0.015
  15334. }
  15335. },
  15336. back: {
  15337. height: math.unit(2, "m"),
  15338. weight: math.unit(115, "kg"),
  15339. name: "Back",
  15340. image: {
  15341. source: "./media/characters/pia-sr/back.svg",
  15342. extra: 760 / 730,
  15343. bottom: 0.01
  15344. }
  15345. },
  15346. hand: {
  15347. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15348. name: "Hand",
  15349. image: {
  15350. source: "./media/characters/pia-sr/hand.svg"
  15351. }
  15352. },
  15353. foot: {
  15354. height: math.unit(1.83, "feet"),
  15355. name: "Foot",
  15356. image: {
  15357. source: "./media/characters/pia-sr/foot.svg"
  15358. }
  15359. },
  15360. },
  15361. [
  15362. {
  15363. name: "Micro",
  15364. height: math.unit(88, "mm")
  15365. },
  15366. {
  15367. name: "Normal",
  15368. height: math.unit(2, "m"),
  15369. default: true
  15370. },
  15371. {
  15372. name: "Macro",
  15373. height: math.unit(200, "m")
  15374. },
  15375. {
  15376. name: "Megamacro",
  15377. height: math.unit(420, "km")
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15383. {
  15384. front: {
  15385. height: math.unit(8 + 2 / 12, "feet"),
  15386. weight: math.unit(300, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/kibibyte/front.svg",
  15390. extra: 2221 / 2098,
  15391. bottom: 0.04
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(8 + 2 / 12, "feet"),
  15399. default: true
  15400. },
  15401. {
  15402. name: "Socialable Macro",
  15403. height: math.unit(50, "feet")
  15404. },
  15405. {
  15406. name: "Macro",
  15407. height: math.unit(300, "feet")
  15408. },
  15409. {
  15410. name: "Megamacro",
  15411. height: math.unit(500, "miles")
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(6, "feet"),
  15420. weight: math.unit(150, "lb"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/felix/front.svg",
  15424. extra: 762 / 722,
  15425. bottom: 0.02
  15426. }
  15427. },
  15428. frontClothed: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Front (Clothed)",
  15432. image: {
  15433. source: "./media/characters/felix/front-clothed.svg",
  15434. extra: 762 / 722,
  15435. bottom: 0.02
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Normal",
  15442. height: math.unit(6 + 8 / 12, "feet"),
  15443. default: true
  15444. },
  15445. {
  15446. name: "Macro",
  15447. height: math.unit(2600, "feet")
  15448. },
  15449. {
  15450. name: "Megamacro",
  15451. height: math.unit(450, "miles")
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(6 + 1 / 12, "feet"),
  15460. weight: math.unit(250, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/tobo/front.svg",
  15464. extra: 608 / 586,
  15465. bottom: 0.023
  15466. }
  15467. },
  15468. back: {
  15469. height: math.unit(6 + 1 / 12, "feet"),
  15470. weight: math.unit(250, "lb"),
  15471. name: "Back",
  15472. image: {
  15473. source: "./media/characters/tobo/back.svg",
  15474. extra: 608 / 586
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Nano",
  15481. height: math.unit(2, "nm")
  15482. },
  15483. {
  15484. name: "Megamicro",
  15485. height: math.unit(0.1, "mm")
  15486. },
  15487. {
  15488. name: "Micro",
  15489. height: math.unit(1, "inch"),
  15490. default: true
  15491. },
  15492. {
  15493. name: "Human-sized",
  15494. height: math.unit(6 + 1 / 12, "feet")
  15495. },
  15496. {
  15497. name: "Macro",
  15498. height: math.unit(250, "feet")
  15499. },
  15500. {
  15501. name: "Megamacro",
  15502. height: math.unit(75, "miles")
  15503. },
  15504. {
  15505. name: "Texas-sized",
  15506. height: math.unit(750, "miles")
  15507. },
  15508. {
  15509. name: "Teramacro",
  15510. height: math.unit(50000, "miles")
  15511. },
  15512. ]
  15513. ))
  15514. characterMakers.push(() => makeCharacter(
  15515. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15516. {
  15517. front: {
  15518. height: math.unit(6, "feet"),
  15519. weight: math.unit(269, "lb"),
  15520. name: "Front",
  15521. image: {
  15522. source: "./media/characters/danny-kapowsky/front.svg",
  15523. extra: 766 / 736,
  15524. bottom: 0.044
  15525. }
  15526. },
  15527. back: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(269, "lb"),
  15530. name: "Back",
  15531. image: {
  15532. source: "./media/characters/danny-kapowsky/back.svg",
  15533. extra: 797 / 760,
  15534. bottom: 0.025
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Macro",
  15541. height: math.unit(150, "feet"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Macro+",
  15546. height: math.unit(200, "feet")
  15547. },
  15548. {
  15549. name: "Macro++",
  15550. height: math.unit(300, "feet")
  15551. },
  15552. {
  15553. name: "Macro+++",
  15554. height: math.unit(400, "feet")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15560. {
  15561. side: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(170, "lb"),
  15564. name: "Side",
  15565. image: {
  15566. source: "./media/characters/finn/side.svg",
  15567. extra: 1953 / 1807,
  15568. bottom: 0.057
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Megamacro",
  15575. height: math.unit(14445, "feet"),
  15576. default: true
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(5 + 6 / 12, "feet"),
  15585. weight: math.unit(125, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/roy/front.svg",
  15589. extra: 1,
  15590. bottom: 0.11
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Micro",
  15597. height: math.unit(3, "inches"),
  15598. default: true
  15599. },
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(5 + 6 / 12, "feet")
  15603. },
  15604. {
  15605. name: "Lesser Macro",
  15606. height: math.unit(60, "feet")
  15607. },
  15608. {
  15609. name: "Greater Macro",
  15610. height: math.unit(120, "feet")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(100, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/aevsivs/front.svg",
  15623. extra: 1,
  15624. bottom: 0.03
  15625. }
  15626. },
  15627. back: {
  15628. height: math.unit(6, "feet"),
  15629. weight: math.unit(100, "lb"),
  15630. name: "Back",
  15631. image: {
  15632. source: "./media/characters/aevsivs/back.svg"
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Micro",
  15639. height: math.unit(2, "inches"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(5, "feet")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(5 + 7 / 12, "feet"),
  15653. weight: math.unit(159, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/hildegard/front.svg",
  15657. extra: 289 / 269,
  15658. bottom: 7.63 / 297.8
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(5 + 7 / 12, "feet"),
  15663. weight: math.unit(159, "lb"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/hildegard/back.svg",
  15667. extra: 280 / 260,
  15668. bottom: 2.3 / 282
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Normal",
  15675. height: math.unit(5 + 7 / 12, "feet"),
  15676. default: true
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15682. {
  15683. bernard: {
  15684. height: math.unit(2 + 7 / 12, "feet"),
  15685. weight: math.unit(66, "lb"),
  15686. name: "Bernard",
  15687. rename: true,
  15688. image: {
  15689. source: "./media/characters/bernard-wilder/bernard.svg",
  15690. extra: 192 / 128,
  15691. bottom: 0.05
  15692. }
  15693. },
  15694. wilder: {
  15695. height: math.unit(5 + 8 / 12, "feet"),
  15696. weight: math.unit(143, "lb"),
  15697. name: "Wilder",
  15698. rename: true,
  15699. image: {
  15700. source: "./media/characters/bernard-wilder/wilder.svg",
  15701. extra: 361 / 312,
  15702. bottom: 0.02
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(2 + 7 / 12, "feet"),
  15710. default: true
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15716. {
  15717. anthro: {
  15718. height: math.unit(6 + 1 / 12, "feet"),
  15719. weight: math.unit(155, "lb"),
  15720. name: "Anthro",
  15721. image: {
  15722. source: "./media/characters/hearth/anthro.svg",
  15723. extra: 1178/1136,
  15724. bottom: 28/1206
  15725. }
  15726. },
  15727. feral: {
  15728. height: math.unit(3.78, "feet"),
  15729. weight: math.unit(35, "kg"),
  15730. name: "Feral",
  15731. image: {
  15732. source: "./media/characters/hearth/feral.svg",
  15733. extra: 153 / 135,
  15734. bottom: 0.03
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(6 + 1 / 12, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15748. {
  15749. front: {
  15750. height: math.unit(6, "feet"),
  15751. weight: math.unit(182, "lb"),
  15752. name: "Front",
  15753. image: {
  15754. source: "./media/characters/ingrid/front.svg",
  15755. extra: 294 / 268,
  15756. bottom: 0.027
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(6, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15770. {
  15771. eevee: {
  15772. height: math.unit(2 + 10 / 12, "feet"),
  15773. weight: math.unit(86, "lb"),
  15774. name: "Malgam",
  15775. image: {
  15776. source: "./media/characters/malgam/eevee.svg",
  15777. extra: 952/784,
  15778. bottom: 38/990
  15779. }
  15780. },
  15781. sylveon: {
  15782. height: math.unit(4, "feet"),
  15783. weight: math.unit(101, "lb"),
  15784. name: "Future Malgam",
  15785. rename: true,
  15786. image: {
  15787. source: "./media/characters/malgam/sylveon.svg",
  15788. extra: 371 / 325,
  15789. bottom: 0.015
  15790. }
  15791. },
  15792. gigantamax: {
  15793. height: math.unit(50, "feet"),
  15794. name: "Gigantamax Malgam",
  15795. rename: true,
  15796. image: {
  15797. source: "./media/characters/malgam/gigantamax.svg"
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(2 + 10 / 12, "feet"),
  15805. default: true
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15811. {
  15812. front: {
  15813. height: math.unit(5 + 11 / 12, "feet"),
  15814. weight: math.unit(188, "lb"),
  15815. name: "Front",
  15816. image: {
  15817. source: "./media/characters/fleur/front.svg",
  15818. extra: 309 / 283,
  15819. bottom: 0.007
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(5 + 11 / 12, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(5 + 4 / 12, "feet"),
  15836. weight: math.unit(122, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/jude/front.svg",
  15840. extra: 288 / 273,
  15841. bottom: 0.03
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(5 + 4 / 12, "feet"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(5 + 11 / 12, "feet"),
  15858. weight: math.unit(190, "lb"),
  15859. name: "Front",
  15860. image: {
  15861. source: "./media/characters/seara/front.svg",
  15862. extra: 1,
  15863. bottom: 0.05
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(5 + 11 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(16 + 5 / 12, "feet"),
  15880. weight: math.unit(524, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/caspian-lugia/front.svg",
  15884. extra: 1,
  15885. bottom: 0.04
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(16 + 5 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(5 + 7 / 12, "feet"),
  15902. weight: math.unit(170, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/mika/front.svg",
  15906. extra: 1,
  15907. bottom: 0.016
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 7 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(6 + 2 / 12, "feet"),
  15924. weight: math.unit(268, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/sol/front.svg",
  15928. extra: 247 / 231,
  15929. bottom: 0.05
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(6 + 2 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15943. {
  15944. buizel: {
  15945. height: math.unit(2 + 5 / 12, "feet"),
  15946. weight: math.unit(87, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/umiko/buizel.svg",
  15950. extra: 172 / 157,
  15951. bottom: 0.01
  15952. },
  15953. form: "buizel",
  15954. default: true
  15955. },
  15956. floatzel: {
  15957. height: math.unit(5 + 9 / 12, "feet"),
  15958. weight: math.unit(250, "lb"),
  15959. name: "Front",
  15960. image: {
  15961. source: "./media/characters/umiko/floatzel.svg",
  15962. extra: 1076/1006,
  15963. bottom: 15/1091
  15964. },
  15965. form: "floatzel",
  15966. default: true
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Normal",
  15972. height: math.unit(2 + 5 / 12, "feet"),
  15973. form: "buizel",
  15974. default: true
  15975. },
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(5 + 9 / 12, "feet"),
  15979. form: "floatzel",
  15980. default: true
  15981. },
  15982. ],
  15983. {
  15984. "buizel": {
  15985. name: "Buizel"
  15986. },
  15987. "floatzel": {
  15988. name: "Floatzel",
  15989. default: true
  15990. }
  15991. }
  15992. ))
  15993. characterMakers.push(() => makeCharacter(
  15994. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15995. {
  15996. front: {
  15997. height: math.unit(6 + 2 / 12, "feet"),
  15998. weight: math.unit(146, "lb"),
  15999. name: "Front",
  16000. image: {
  16001. source: "./media/characters/iliac/front.svg",
  16002. extra: 389 / 365,
  16003. bottom: 0.035
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Normal",
  16010. height: math.unit(6 + 2 / 12, "feet"),
  16011. default: true
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(6, "feet"),
  16020. weight: math.unit(170, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/topaz/front.svg",
  16024. extra: 317 / 303,
  16025. bottom: 0.055
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(6, "feet"),
  16033. default: true
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(5 + 11 / 12, "feet"),
  16042. weight: math.unit(144, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/gabriel/front.svg",
  16046. extra: 285 / 262,
  16047. bottom: 0.004
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(5 + 11 / 12, "feet"),
  16055. default: true
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16061. {
  16062. side: {
  16063. height: math.unit(6 + 5 / 12, "feet"),
  16064. weight: math.unit(300, "lb"),
  16065. name: "Side",
  16066. image: {
  16067. source: "./media/characters/tempest-suicune/side.svg",
  16068. extra: 195 / 154,
  16069. bottom: 0.04
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(6 + 5 / 12, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(7 + 2 / 12, "feet"),
  16086. weight: math.unit(322, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/vulcan/front.svg",
  16090. extra: 154 / 147,
  16091. bottom: 0.04
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(7 + 2 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(5 + 10 / 12, "feet"),
  16108. weight: math.unit(264, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/gault/front.svg",
  16112. extra: 161 / 140,
  16113. bottom: 0.028
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(5 + 10 / 12, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(6, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/shard/front.svg",
  16134. extra: 273 / 238,
  16135. bottom: 0.02
  16136. }
  16137. },
  16138. },
  16139. [
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(3 + 6 / 12, "feet"),
  16143. default: true
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16149. {
  16150. front: {
  16151. height: math.unit(5 + 11 / 12, "feet"),
  16152. weight: math.unit(146, "lb"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/ashe/front.svg",
  16156. extra: 400 / 373,
  16157. bottom: 0.01
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(5 + 11 / 12, "feet"),
  16165. default: true
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(5 + 5 / 12, "feet"),
  16174. weight: math.unit(135, "lb"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/beatrix/front.svg",
  16178. extra: 392 / 379,
  16179. bottom: 0.01
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(6, "feet"),
  16187. default: true
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(6 + 2/12, "feet"),
  16196. weight: math.unit(135, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/ignatius/front.svg",
  16200. extra: 1380/1259,
  16201. bottom: 27/1407
  16202. }
  16203. },
  16204. },
  16205. [
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(6 + 2/12, "feet"),
  16209. default: true
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(6 + 2 / 12, "feet"),
  16218. weight: math.unit(138, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/mei-li/front.svg",
  16222. extra: 237 / 229,
  16223. bottom: 0.03
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(6 + 2 / 12, "feet"),
  16231. default: true
  16232. },
  16233. ]
  16234. ))
  16235. characterMakers.push(() => makeCharacter(
  16236. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16237. {
  16238. front: {
  16239. height: math.unit(2 + 4 / 12, "feet"),
  16240. weight: math.unit(62, "lb"),
  16241. name: "Front",
  16242. image: {
  16243. source: "./media/characters/puru/front.svg",
  16244. extra: 206 / 149,
  16245. bottom: 0.06
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(2 + 4 / 12, "feet"),
  16253. default: true
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16259. {
  16260. anthro: {
  16261. height: math.unit(5 + 8/12, "feet"),
  16262. weight: math.unit(200, "lb"),
  16263. energyNeed: math.unit(2000, "kcal"),
  16264. name: "Anthro",
  16265. image: {
  16266. source: "./media/characters/kee/anthro.svg",
  16267. extra: 3251/3184,
  16268. bottom: 250/3501
  16269. }
  16270. },
  16271. taur: {
  16272. height: math.unit(11, "feet"),
  16273. weight: math.unit(500, "lb"),
  16274. energyNeed: math.unit(5000, "kcal"),
  16275. name: "Taur",
  16276. image: {
  16277. source: "./media/characters/kee/taur.svg",
  16278. extra: 1362/1320,
  16279. bottom: 83/1445
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Normal",
  16286. height: math.unit(5 + 8/12, "feet"),
  16287. default: true
  16288. },
  16289. {
  16290. name: "Macro",
  16291. height: math.unit(35, "feet")
  16292. },
  16293. ]
  16294. ))
  16295. characterMakers.push(() => makeCharacter(
  16296. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16297. {
  16298. anthro: {
  16299. height: math.unit(7, "feet"),
  16300. weight: math.unit(190, "lb"),
  16301. name: "Anthro",
  16302. image: {
  16303. source: "./media/characters/cobalt-dracha/anthro.svg",
  16304. extra: 231 / 225,
  16305. bottom: 0.04
  16306. }
  16307. },
  16308. feral: {
  16309. height: math.unit(9 + 7 / 12, "feet"),
  16310. weight: math.unit(294, "lb"),
  16311. name: "Feral",
  16312. image: {
  16313. source: "./media/characters/cobalt-dracha/feral.svg",
  16314. extra: 692 / 633,
  16315. bottom: 0.05
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Normal",
  16322. height: math.unit(7, "feet"),
  16323. default: true
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16329. {
  16330. fallen: {
  16331. height: math.unit(11 + 8 / 12, "feet"),
  16332. weight: math.unit(485, "lb"),
  16333. name: "Java (Fallen)",
  16334. rename: true,
  16335. image: {
  16336. source: "./media/characters/java/fallen.svg",
  16337. extra: 226 / 208,
  16338. bottom: 0.005
  16339. }
  16340. },
  16341. godkin: {
  16342. height: math.unit(10 + 6 / 12, "feet"),
  16343. weight: math.unit(328, "lb"),
  16344. name: "Java (Godkin)",
  16345. rename: true,
  16346. image: {
  16347. source: "./media/characters/java/godkin.svg",
  16348. extra: 1104/1068,
  16349. bottom: 36/1140
  16350. }
  16351. },
  16352. },
  16353. [
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(11 + 8 / 12, "feet"),
  16357. default: true
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16363. {
  16364. front: {
  16365. height: math.unit(5 + 9 / 12, "feet"),
  16366. weight: math.unit(170, "lb"),
  16367. name: "Front",
  16368. image: {
  16369. source: "./media/characters/purna/front.svg",
  16370. extra: 239 / 229,
  16371. bottom: 0.01
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(5 + 9 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(5 + 9 / 12, "feet"),
  16388. weight: math.unit(142, "lb"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/kuva/front.svg",
  16392. extra: 281 / 271,
  16393. bottom: 0.006
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(5 + 9 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16407. {
  16408. anthro: {
  16409. height: math.unit(9 + 2 / 12, "feet"),
  16410. weight: math.unit(270, "lb"),
  16411. name: "Anthro",
  16412. image: {
  16413. source: "./media/characters/embra/anthro.svg",
  16414. extra: 200 / 187,
  16415. bottom: 0.02
  16416. }
  16417. },
  16418. feral: {
  16419. height: math.unit(18 + 8 / 12, "feet"),
  16420. weight: math.unit(576, "lb"),
  16421. name: "Feral",
  16422. image: {
  16423. source: "./media/characters/embra/feral.svg",
  16424. extra: 152 / 137,
  16425. bottom: 0.037
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(9 + 2 / 12, "feet"),
  16433. default: true
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16439. {
  16440. anthro: {
  16441. height: math.unit(10 + 9 / 12, "feet"),
  16442. weight: math.unit(224, "lb"),
  16443. name: "Anthro",
  16444. image: {
  16445. source: "./media/characters/grottos/anthro.svg",
  16446. extra: 350 / 332,
  16447. bottom: 0.045
  16448. }
  16449. },
  16450. feral: {
  16451. height: math.unit(20 + 7 / 12, "feet"),
  16452. weight: math.unit(629, "lb"),
  16453. name: "Feral",
  16454. image: {
  16455. source: "./media/characters/grottos/feral.svg",
  16456. extra: 207 / 190,
  16457. bottom: 0.05
  16458. }
  16459. },
  16460. },
  16461. [
  16462. {
  16463. name: "Normal",
  16464. height: math.unit(10 + 9 / 12, "feet"),
  16465. default: true
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16471. {
  16472. anthro: {
  16473. height: math.unit(9 + 6 / 12, "feet"),
  16474. weight: math.unit(298, "lb"),
  16475. name: "Anthro",
  16476. image: {
  16477. source: "./media/characters/frifna/anthro.svg",
  16478. extra: 282 / 269,
  16479. bottom: 0.015
  16480. }
  16481. },
  16482. feral: {
  16483. height: math.unit(16 + 2 / 12, "feet"),
  16484. weight: math.unit(624, "lb"),
  16485. name: "Feral",
  16486. image: {
  16487. source: "./media/characters/frifna/feral.svg"
  16488. }
  16489. },
  16490. },
  16491. [
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(9 + 6 / 12, "feet"),
  16495. default: true
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(6 + 2 / 12, "feet"),
  16504. weight: math.unit(168, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/elise/front.svg",
  16508. extra: 276 / 271
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(6 + 2 / 12, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(5 + 10 / 12, "feet"),
  16525. weight: math.unit(210, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/glade/front.svg",
  16529. extra: 258 / 247,
  16530. bottom: 0.008
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(5 + 10 / 12, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(5 + 10 / 12, "feet"),
  16547. weight: math.unit(129, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/rina/front.svg",
  16551. extra: 266 / 255,
  16552. bottom: 0.005
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(5 + 10 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(6 + 1 / 12, "feet"),
  16569. weight: math.unit(192, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/veronica/front.svg",
  16573. extra: 319 / 309,
  16574. bottom: 0.005
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(6 + 1 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(9 + 3 / 12, "feet"),
  16591. weight: math.unit(1100, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/braxton/front.svg",
  16595. extra: 1057 / 984,
  16596. bottom: 0.05
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(9 + 3 / 12, "feet")
  16604. },
  16605. {
  16606. name: "Giant",
  16607. height: math.unit(300, "feet"),
  16608. default: true
  16609. },
  16610. {
  16611. name: "Macro",
  16612. height: math.unit(700, "feet")
  16613. },
  16614. {
  16615. name: "Megamacro",
  16616. height: math.unit(6000, "feet")
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(6 + 7 / 12, "feet"),
  16625. weight: math.unit(150, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/blue-feyonics/front.svg",
  16629. extra: 1403 / 1306,
  16630. bottom: 0.047
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(6 + 7 / 12, "feet"),
  16638. default: true
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16644. {
  16645. front: {
  16646. height: math.unit(1.8, "meters"),
  16647. weight: math.unit(60, "kg"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/maxwell/front.svg",
  16651. extra: 2060 / 1873
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Micro",
  16658. height: math.unit(1, "mm")
  16659. },
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(1.8, "meter"),
  16663. default: true
  16664. },
  16665. {
  16666. name: "Macro",
  16667. height: math.unit(30, "meters")
  16668. },
  16669. {
  16670. name: "Megamacro",
  16671. height: math.unit(10, "km")
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16677. {
  16678. front: {
  16679. height: math.unit(6, "feet"),
  16680. weight: math.unit(150, "lb"),
  16681. name: "Front",
  16682. image: {
  16683. source: "./media/characters/jack/front.svg",
  16684. extra: 1754 / 1640,
  16685. bottom: 0.01
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(80000, "feet"),
  16693. default: true
  16694. },
  16695. {
  16696. name: "Max size",
  16697. height: math.unit(10, "lightyears")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16703. {
  16704. urban: {
  16705. height: math.unit(5, "feet"),
  16706. weight: math.unit(240, "lb"),
  16707. name: "Urban",
  16708. image: {
  16709. source: "./media/characters/cafat/urban.svg",
  16710. extra: 1223/1126,
  16711. bottom: 205/1428
  16712. }
  16713. },
  16714. summer: {
  16715. height: math.unit(5, "feet"),
  16716. weight: math.unit(240, "lb"),
  16717. name: "Summer",
  16718. image: {
  16719. source: "./media/characters/cafat/summer.svg",
  16720. extra: 1223/1126,
  16721. bottom: 205/1428
  16722. }
  16723. },
  16724. winter: {
  16725. height: math.unit(5, "feet"),
  16726. weight: math.unit(240, "lb"),
  16727. name: "Winter",
  16728. image: {
  16729. source: "./media/characters/cafat/winter.svg",
  16730. extra: 1223/1126,
  16731. bottom: 205/1428
  16732. }
  16733. },
  16734. lingerie: {
  16735. height: math.unit(5, "feet"),
  16736. weight: math.unit(240, "lb"),
  16737. name: "Lingerie",
  16738. image: {
  16739. source: "./media/characters/cafat/lingerie.svg",
  16740. extra: 1223/1126,
  16741. bottom: 205/1428
  16742. }
  16743. },
  16744. upright: {
  16745. height: math.unit(6.3, "feet"),
  16746. weight: math.unit(240, "lb"),
  16747. name: "Upright",
  16748. image: {
  16749. source: "./media/characters/cafat/upright.svg",
  16750. bottom: 0.01
  16751. }
  16752. },
  16753. uprightFull: {
  16754. height: math.unit(6.3, "feet"),
  16755. weight: math.unit(240, "lb"),
  16756. name: "Upright (Full)",
  16757. image: {
  16758. source: "./media/characters/cafat/upright-full.svg",
  16759. bottom: 0.01
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Small",
  16766. height: math.unit(5, "feet"),
  16767. default: true
  16768. },
  16769. {
  16770. name: "Large",
  16771. height: math.unit(13, "feet")
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6, "feet"),
  16780. weight: math.unit(150, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/verin-raharra/front.svg",
  16784. extra: 5019 / 4835,
  16785. bottom: 0.023
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(7 + 5 / 12, "feet"),
  16793. default: true
  16794. },
  16795. {
  16796. name: "Upsized",
  16797. height: math.unit(20, "feet")
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(7, "feet"),
  16806. weight: math.unit(230, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/nakata/front.svg",
  16810. extra: 1.005,
  16811. bottom: 0.01
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(7, "feet"),
  16819. default: true
  16820. },
  16821. {
  16822. name: "Big",
  16823. height: math.unit(14, "feet")
  16824. },
  16825. {
  16826. name: "Macro",
  16827. height: math.unit(400, "feet")
  16828. },
  16829. ]
  16830. ))
  16831. characterMakers.push(() => makeCharacter(
  16832. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16833. {
  16834. front: {
  16835. height: math.unit(4.91, "feet"),
  16836. weight: math.unit(100, "lb"),
  16837. name: "Front",
  16838. image: {
  16839. source: "./media/characters/lily/front.svg",
  16840. extra: 1585 / 1415,
  16841. bottom: 0.02
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(4.91, "feet"),
  16849. default: true
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16855. {
  16856. laying: {
  16857. height: math.unit(4 + 4 / 12, "feet"),
  16858. weight: math.unit(600, "lb"),
  16859. name: "Laying",
  16860. image: {
  16861. source: "./media/characters/sheila/laying.svg",
  16862. extra: 1333 / 1265,
  16863. bottom: 0.16
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(4 + 4 / 12, "feet"),
  16871. default: true
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(6, "feet"),
  16880. weight: math.unit(190, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/sax/front.svg",
  16884. extra: 1187 / 973,
  16885. bottom: 0.042
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Micro",
  16892. height: math.unit(4, "inches"),
  16893. default: true
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(6, "feet"),
  16902. weight: math.unit(150, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/pandora/front.svg",
  16906. extra: 2720 / 2556,
  16907. bottom: 0.015
  16908. }
  16909. },
  16910. back: {
  16911. height: math.unit(6, "feet"),
  16912. weight: math.unit(150, "lb"),
  16913. name: "Back",
  16914. image: {
  16915. source: "./media/characters/pandora/back.svg",
  16916. extra: 2720 / 2556,
  16917. bottom: 0.01
  16918. }
  16919. },
  16920. beans: {
  16921. height: math.unit(6 / 8, "feet"),
  16922. name: "Beans",
  16923. image: {
  16924. source: "./media/characters/pandora/beans.svg"
  16925. }
  16926. },
  16927. collar: {
  16928. height: math.unit(0.31, "feet"),
  16929. name: "Collar",
  16930. image: {
  16931. source: "./media/characters/pandora/collar.svg"
  16932. }
  16933. },
  16934. skirt: {
  16935. height: math.unit(6, "feet"),
  16936. weight: math.unit(150, "lb"),
  16937. name: "Skirt",
  16938. image: {
  16939. source: "./media/characters/pandora/skirt.svg",
  16940. extra: 1622 / 1525,
  16941. bottom: 0.015
  16942. }
  16943. },
  16944. hoodie: {
  16945. height: math.unit(6, "feet"),
  16946. weight: math.unit(150, "lb"),
  16947. name: "Hoodie",
  16948. image: {
  16949. source: "./media/characters/pandora/hoodie.svg",
  16950. extra: 1622 / 1525,
  16951. bottom: 0.015
  16952. }
  16953. },
  16954. casual: {
  16955. height: math.unit(6, "feet"),
  16956. weight: math.unit(150, "lb"),
  16957. name: "Casual",
  16958. image: {
  16959. source: "./media/characters/pandora/casual.svg",
  16960. extra: 1622 / 1525,
  16961. bottom: 0.015
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(6, "feet")
  16969. },
  16970. {
  16971. name: "Big Steppy",
  16972. height: math.unit(1, "km"),
  16973. default: true
  16974. },
  16975. {
  16976. name: "Galactic Steppy",
  16977. height: math.unit(2, "gigameters")
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16983. {
  16984. side: {
  16985. height: math.unit(10, "feet"),
  16986. weight: math.unit(800, "kg"),
  16987. name: "Side",
  16988. image: {
  16989. source: "./media/characters/venio-darcony/side.svg",
  16990. extra: 1373 / 1003,
  16991. bottom: 0.037
  16992. }
  16993. },
  16994. front: {
  16995. height: math.unit(19, "feet"),
  16996. weight: math.unit(800, "kg"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/venio-darcony/front.svg"
  17000. }
  17001. },
  17002. back: {
  17003. height: math.unit(19, "feet"),
  17004. weight: math.unit(800, "kg"),
  17005. name: "Back",
  17006. image: {
  17007. source: "./media/characters/venio-darcony/back.svg"
  17008. }
  17009. },
  17010. sideNsfw: {
  17011. height: math.unit(10, "feet"),
  17012. weight: math.unit(800, "kg"),
  17013. name: "Side (NSFW)",
  17014. image: {
  17015. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17016. extra: 1373 / 1003,
  17017. bottom: 0.037
  17018. }
  17019. },
  17020. frontNsfw: {
  17021. height: math.unit(19, "feet"),
  17022. weight: math.unit(800, "kg"),
  17023. name: "Front (NSFW)",
  17024. image: {
  17025. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17026. }
  17027. },
  17028. backNsfw: {
  17029. height: math.unit(19, "feet"),
  17030. weight: math.unit(800, "kg"),
  17031. name: "Back (NSFW)",
  17032. image: {
  17033. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17034. }
  17035. },
  17036. sideArmored: {
  17037. height: math.unit(10, "feet"),
  17038. weight: math.unit(800, "kg"),
  17039. name: "Side (Armored)",
  17040. image: {
  17041. source: "./media/characters/venio-darcony/side-armored.svg",
  17042. extra: 1373 / 1003,
  17043. bottom: 0.037
  17044. }
  17045. },
  17046. frontArmored: {
  17047. height: math.unit(19, "feet"),
  17048. weight: math.unit(900, "kg"),
  17049. name: "Front (Armored)",
  17050. image: {
  17051. source: "./media/characters/venio-darcony/front-armored.svg"
  17052. }
  17053. },
  17054. backArmored: {
  17055. height: math.unit(19, "feet"),
  17056. weight: math.unit(900, "kg"),
  17057. name: "Back (Armored)",
  17058. image: {
  17059. source: "./media/characters/venio-darcony/back-armored.svg"
  17060. }
  17061. },
  17062. sword: {
  17063. height: math.unit(10, "feet"),
  17064. weight: math.unit(50, "lb"),
  17065. name: "Sword",
  17066. image: {
  17067. source: "./media/characters/venio-darcony/sword.svg"
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(10, "feet")
  17075. },
  17076. {
  17077. name: "Macro",
  17078. height: math.unit(130, "feet"),
  17079. default: true
  17080. },
  17081. {
  17082. name: "Macro+",
  17083. height: math.unit(240, "feet")
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(6, "feet"),
  17092. weight: math.unit(150, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/veski/front.svg",
  17096. extra: 1299 / 1225,
  17097. bottom: 0.04
  17098. }
  17099. },
  17100. back: {
  17101. height: math.unit(6, "feet"),
  17102. weight: math.unit(150, "lb"),
  17103. name: "Back",
  17104. image: {
  17105. source: "./media/characters/veski/back.svg",
  17106. extra: 1299 / 1225,
  17107. bottom: 0.008
  17108. }
  17109. },
  17110. maw: {
  17111. height: math.unit(1.5 * 1.21, "feet"),
  17112. name: "Maw",
  17113. image: {
  17114. source: "./media/characters/veski/maw.svg"
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Macro",
  17121. height: math.unit(2, "km"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(5 + 7 / 12, "feet"),
  17131. name: "Front",
  17132. image: {
  17133. source: "./media/characters/isabelle/front.svg",
  17134. extra: 2130 / 1976,
  17135. bottom: 0.05
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Supermicro",
  17142. height: math.unit(10, "micrometers")
  17143. },
  17144. {
  17145. name: "Micro",
  17146. height: math.unit(1, "inch")
  17147. },
  17148. {
  17149. name: "Tiny",
  17150. height: math.unit(5, "inches")
  17151. },
  17152. {
  17153. name: "Standard",
  17154. height: math.unit(5 + 7 / 12, "inches")
  17155. },
  17156. {
  17157. name: "Macro",
  17158. height: math.unit(80, "meters"),
  17159. default: true
  17160. },
  17161. {
  17162. name: "Megamacro",
  17163. height: math.unit(250, "meters")
  17164. },
  17165. {
  17166. name: "Gigamacro",
  17167. height: math.unit(5, "km")
  17168. },
  17169. {
  17170. name: "Cosmic",
  17171. height: math.unit(2.5e6, "miles")
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(6, "feet"),
  17180. weight: math.unit(150, "lb"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/hanzo/front.svg",
  17184. extra: 374 / 344,
  17185. bottom: 0.02
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(8, "feet"),
  17193. default: true
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17199. {
  17200. front: {
  17201. height: math.unit(7, "feet"),
  17202. weight: math.unit(130, "lb"),
  17203. name: "Front",
  17204. image: {
  17205. source: "./media/characters/anna/front.svg",
  17206. extra: 169 / 145,
  17207. bottom: 0.06
  17208. }
  17209. },
  17210. full: {
  17211. height: math.unit(4.96, "feet"),
  17212. weight: math.unit(220, "lb"),
  17213. name: "Full",
  17214. image: {
  17215. source: "./media/characters/anna/full.svg",
  17216. extra: 138 / 114,
  17217. bottom: 0.15
  17218. }
  17219. },
  17220. tongue: {
  17221. height: math.unit(2.53, "feet"),
  17222. name: "Tongue",
  17223. image: {
  17224. source: "./media/characters/anna/tongue.svg"
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(7, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(7, "feet"),
  17241. weight: math.unit(150, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/ian-corvid/front.svg",
  17245. extra: 150 / 142,
  17246. bottom: 0.02
  17247. }
  17248. },
  17249. back: {
  17250. height: math.unit(7, "feet"),
  17251. weight: math.unit(150, "lb"),
  17252. name: "Back",
  17253. image: {
  17254. source: "./media/characters/ian-corvid/back.svg",
  17255. extra: 150 / 143,
  17256. bottom: 0.01
  17257. }
  17258. },
  17259. stomping: {
  17260. height: math.unit(7, "feet"),
  17261. weight: math.unit(150, "lb"),
  17262. name: "Stomping",
  17263. image: {
  17264. source: "./media/characters/ian-corvid/stomping.svg",
  17265. extra: 76 / 72
  17266. }
  17267. },
  17268. sitting: {
  17269. height: math.unit(7 / 1.8, "feet"),
  17270. weight: math.unit(150, "lb"),
  17271. name: "Sitting",
  17272. image: {
  17273. source: "./media/characters/ian-corvid/sitting.svg",
  17274. extra: 1400 / 1269,
  17275. bottom: 0.15
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Tiny Microw",
  17282. height: math.unit(1, "inch")
  17283. },
  17284. {
  17285. name: "Microw",
  17286. height: math.unit(6, "inches")
  17287. },
  17288. {
  17289. name: "Crow",
  17290. height: math.unit(7 + 1 / 12, "feet"),
  17291. default: true
  17292. },
  17293. {
  17294. name: "Macrow",
  17295. height: math.unit(176, "feet")
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(5 + 7 / 12, "feet"),
  17304. weight: math.unit(147, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/natalie-kellon/front.svg",
  17308. extra: 1214 / 1141,
  17309. bottom: 0.02
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Micro",
  17316. height: math.unit(1 / 16, "inch")
  17317. },
  17318. {
  17319. name: "Tiny",
  17320. height: math.unit(4, "inches")
  17321. },
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(5 + 7 / 12, "feet"),
  17325. default: true
  17326. },
  17327. {
  17328. name: "Amazon",
  17329. height: math.unit(12, "feet")
  17330. },
  17331. {
  17332. name: "Giantess",
  17333. height: math.unit(160, "meters")
  17334. },
  17335. {
  17336. name: "Titaness",
  17337. height: math.unit(800, "meters")
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17343. {
  17344. front: {
  17345. height: math.unit(6, "feet"),
  17346. weight: math.unit(150, "lb"),
  17347. name: "Front",
  17348. image: {
  17349. source: "./media/characters/alluria/front.svg",
  17350. extra: 806 / 738,
  17351. bottom: 0.01
  17352. }
  17353. },
  17354. side: {
  17355. height: math.unit(6, "feet"),
  17356. weight: math.unit(150, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/alluria/side.svg",
  17360. extra: 800 / 750,
  17361. }
  17362. },
  17363. back: {
  17364. height: math.unit(6, "feet"),
  17365. weight: math.unit(150, "lb"),
  17366. name: "Back",
  17367. image: {
  17368. source: "./media/characters/alluria/back.svg",
  17369. extra: 806 / 738,
  17370. }
  17371. },
  17372. frontMaid: {
  17373. height: math.unit(6, "feet"),
  17374. weight: math.unit(150, "lb"),
  17375. name: "Front (Maid)",
  17376. image: {
  17377. source: "./media/characters/alluria/front-maid.svg",
  17378. extra: 806 / 738,
  17379. bottom: 0.01
  17380. }
  17381. },
  17382. sideMaid: {
  17383. height: math.unit(6, "feet"),
  17384. weight: math.unit(150, "lb"),
  17385. name: "Side (Maid)",
  17386. image: {
  17387. source: "./media/characters/alluria/side-maid.svg",
  17388. extra: 800 / 750,
  17389. bottom: 0.005
  17390. }
  17391. },
  17392. backMaid: {
  17393. height: math.unit(6, "feet"),
  17394. weight: math.unit(150, "lb"),
  17395. name: "Back (Maid)",
  17396. image: {
  17397. source: "./media/characters/alluria/back-maid.svg",
  17398. extra: 806 / 738,
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Micro",
  17405. height: math.unit(6, "inches"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17412. {
  17413. front: {
  17414. height: math.unit(6, "feet"),
  17415. weight: math.unit(150, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/kyle/front.svg",
  17419. extra: 1069 / 962,
  17420. bottom: 77.228 / 1727.45
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Macro",
  17427. height: math.unit(150, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(6, "feet"),
  17437. weight: math.unit(300, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/duncan/front.svg",
  17441. extra: 1650 / 1482,
  17442. bottom: 0.05
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Macro",
  17449. height: math.unit(100, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(5 + 4 / 12, "feet"),
  17459. weight: math.unit(220, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/memory/front.svg",
  17463. extra: 3641 / 3545,
  17464. bottom: 0.03
  17465. }
  17466. },
  17467. back: {
  17468. height: math.unit(5 + 4 / 12, "feet"),
  17469. weight: math.unit(220, "lb"),
  17470. name: "Back",
  17471. image: {
  17472. source: "./media/characters/memory/back.svg",
  17473. extra: 3641 / 3545,
  17474. bottom: 0.025
  17475. }
  17476. },
  17477. frontSkirt: {
  17478. height: math.unit(5 + 4 / 12, "feet"),
  17479. weight: math.unit(220, "lb"),
  17480. name: "Front (Skirt)",
  17481. image: {
  17482. source: "./media/characters/memory/front-skirt.svg",
  17483. extra: 3641 / 3545,
  17484. bottom: 0.03
  17485. }
  17486. },
  17487. frontDress: {
  17488. height: math.unit(5 + 4 / 12, "feet"),
  17489. weight: math.unit(220, "lb"),
  17490. name: "Front (Dress)",
  17491. image: {
  17492. source: "./media/characters/memory/front-dress.svg",
  17493. extra: 3641 / 3545,
  17494. bottom: 0.03
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Micro",
  17501. height: math.unit(6, "inches"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(5 + 4 / 12, "feet")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(4 + 11 / 12, "feet"),
  17515. weight: math.unit(100, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/luno/front.svg",
  17519. extra: 1535 / 1487,
  17520. bottom: 0.03
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Micro",
  17527. height: math.unit(3, "inches")
  17528. },
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(4 + 11 / 12, "feet"),
  17532. default: true
  17533. },
  17534. {
  17535. name: "Macro",
  17536. height: math.unit(300, "feet")
  17537. },
  17538. {
  17539. name: "Megamacro",
  17540. height: math.unit(700, "miles")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(6 + 2 / 12, "feet"),
  17549. weight: math.unit(170, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/jamesy/front.svg",
  17553. extra: 440 / 382,
  17554. bottom: 0.005
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Micro",
  17561. height: math.unit(3, "inches")
  17562. },
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(6 + 2 / 12, "feet"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Macro",
  17570. height: math.unit(300, "feet")
  17571. },
  17572. {
  17573. name: "Megamacro",
  17574. height: math.unit(700, "miles")
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17580. {
  17581. front: {
  17582. height: math.unit(6, "feet"),
  17583. weight: math.unit(160, "lb"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/mark/front.svg",
  17587. extra: 3300 / 3100,
  17588. bottom: 136.42 / 3440.47
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Macro",
  17595. height: math.unit(120, "meters")
  17596. },
  17597. {
  17598. name: "Bigger Macro",
  17599. height: math.unit(350, "meters")
  17600. },
  17601. {
  17602. name: "Megamacro",
  17603. height: math.unit(8, "km"),
  17604. default: true
  17605. },
  17606. {
  17607. name: "Continental",
  17608. height: math.unit(4550, "km")
  17609. },
  17610. {
  17611. name: "Planetary",
  17612. height: math.unit(65000, "km")
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17618. {
  17619. front: {
  17620. height: math.unit(6, "feet"),
  17621. weight: math.unit(400, "lb"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/mac/front.svg",
  17625. extra: 1048 / 987.7,
  17626. bottom: 60 / 1107.6,
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Macro",
  17633. height: math.unit(500, "feet"),
  17634. default: true
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(5 + 2 / 12, "feet"),
  17643. weight: math.unit(190, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/bari/front.svg",
  17647. extra: 3156 / 2880,
  17648. bottom: 0.03
  17649. }
  17650. },
  17651. back: {
  17652. height: math.unit(5 + 2 / 12, "feet"),
  17653. weight: math.unit(190, "lb"),
  17654. name: "Back",
  17655. image: {
  17656. source: "./media/characters/bari/back.svg",
  17657. extra: 3260 / 2834,
  17658. bottom: 0.025
  17659. }
  17660. },
  17661. frontPlush: {
  17662. height: math.unit(5 + 2 / 12, "feet"),
  17663. weight: math.unit(190, "lb"),
  17664. name: "Front (Plush)",
  17665. image: {
  17666. source: "./media/characters/bari/front-plush.svg",
  17667. extra: 1112 / 1061,
  17668. bottom: 0.002
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Micro",
  17675. height: math.unit(3, "inches")
  17676. },
  17677. {
  17678. name: "Normal",
  17679. height: math.unit(5 + 2 / 12, "feet"),
  17680. default: true
  17681. },
  17682. {
  17683. name: "Macro",
  17684. height: math.unit(20, "feet")
  17685. },
  17686. ]
  17687. ))
  17688. characterMakers.push(() => makeCharacter(
  17689. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17690. {
  17691. front: {
  17692. height: math.unit(6 + 1 / 12, "feet"),
  17693. weight: math.unit(275, "lb"),
  17694. name: "Front",
  17695. image: {
  17696. source: "./media/characters/hunter-misha-raven/front.svg"
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Mortal",
  17703. height: math.unit(6 + 1 / 12, "feet")
  17704. },
  17705. {
  17706. name: "Divine",
  17707. height: math.unit(1.12134e34, "parsecs"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17714. {
  17715. front: {
  17716. height: math.unit(6 + 3 / 12, "feet"),
  17717. weight: math.unit(220, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/max-calore/front.svg",
  17721. extra: 1700 / 1648,
  17722. bottom: 0.01
  17723. }
  17724. },
  17725. back: {
  17726. height: math.unit(6 + 3 / 12, "feet"),
  17727. weight: math.unit(220, "lb"),
  17728. name: "Back",
  17729. image: {
  17730. source: "./media/characters/max-calore/back.svg",
  17731. extra: 1700 / 1648,
  17732. bottom: 0.01
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(6 + 3 / 12, "feet"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17746. {
  17747. side: {
  17748. height: math.unit(2 + 8 / 12, "feet"),
  17749. weight: math.unit(99, "lb"),
  17750. name: "Side",
  17751. image: {
  17752. source: "./media/characters/aspen/side.svg",
  17753. extra: 152 / 138,
  17754. bottom: 0.032
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(2 + 8 / 12, "feet"),
  17762. default: true
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17768. {
  17769. side: {
  17770. height: math.unit(3 + 2 / 12, "feet"),
  17771. weight: math.unit(224, "lb"),
  17772. name: "Side",
  17773. image: {
  17774. source: "./media/characters/sheila-feral-wolf/side.svg",
  17775. extra: 179 / 166,
  17776. bottom: 0.03
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(3 + 2 / 12, "feet"),
  17784. default: true
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17790. {
  17791. side: {
  17792. height: math.unit(1 + 9 / 12, "feet"),
  17793. weight: math.unit(38, "lb"),
  17794. name: "Side",
  17795. image: {
  17796. source: "./media/characters/michelle/side.svg",
  17797. extra: 147 / 136.7,
  17798. bottom: 0.03
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(1 + 9 / 12, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(1.54, "feet"),
  17815. weight: math.unit(50, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/nino/front.svg"
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(1.54, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(1.49, "feet"),
  17835. weight: math.unit(45, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/viola/front.svg"
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Normal",
  17845. height: math.unit(1.49, "feet"),
  17846. default: true
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(6 + 5 / 12, "feet"),
  17855. weight: math.unit(580, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/atlas/front.svg",
  17859. extra: 298.5 / 290,
  17860. bottom: 0.015
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(6 + 5 / 12, "feet"),
  17868. default: true
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17874. {
  17875. side: {
  17876. height: math.unit(15.6, "inches"),
  17877. weight: math.unit(10, "lb"),
  17878. name: "Side",
  17879. image: {
  17880. source: "./media/characters/davy/side.svg",
  17881. extra: 200 / 170,
  17882. bottom: 0.01
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(15.6, "inches"),
  17890. default: true
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17896. {
  17897. side: {
  17898. height: math.unit(4 + 8 / 12, "feet"),
  17899. weight: math.unit(166, "lb"),
  17900. name: "Side",
  17901. image: {
  17902. source: "./media/characters/fiona/side.svg",
  17903. extra: 232 / 220,
  17904. bottom: 0.03
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(4 + 8 / 12, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17918. {
  17919. front: {
  17920. height: math.unit(26, "inches"),
  17921. weight: math.unit(35, "lb"),
  17922. name: "Front",
  17923. image: {
  17924. source: "./media/characters/lyla/front.svg",
  17925. bottom: 0.1
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(3, "feet"),
  17933. default: true
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17939. {
  17940. side: {
  17941. height: math.unit(1.8, "feet"),
  17942. weight: math.unit(44, "lb"),
  17943. name: "Side",
  17944. image: {
  17945. source: "./media/characters/perseus/side.svg",
  17946. bottom: 0.21
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Normal",
  17953. height: math.unit(1.8, "feet"),
  17954. default: true
  17955. },
  17956. ]
  17957. ))
  17958. characterMakers.push(() => makeCharacter(
  17959. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17960. {
  17961. side: {
  17962. height: math.unit(4 + 2 / 12, "feet"),
  17963. weight: math.unit(20, "lb"),
  17964. name: "Side",
  17965. image: {
  17966. source: "./media/characters/remus/side.svg"
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(4 + 2 / 12, "feet"),
  17974. default: true
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17980. {
  17981. front: {
  17982. height: math.unit(4 + 11 / 12, "feet"),
  17983. weight: math.unit(114, "lb"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/raf/front.svg",
  17987. extra: 1504/1339,
  17988. bottom: 26/1530
  17989. }
  17990. },
  17991. side: {
  17992. height: math.unit(4 + 11 / 12, "feet"),
  17993. weight: math.unit(114, "lb"),
  17994. name: "Side",
  17995. image: {
  17996. source: "./media/characters/raf/side.svg",
  17997. extra: 1466/1316,
  17998. bottom: 29/1495
  17999. }
  18000. },
  18001. paw: {
  18002. height: math.unit(1.45, "feet"),
  18003. name: "Paw",
  18004. image: {
  18005. source: "./media/characters/raf/paw.svg"
  18006. },
  18007. extraAttributes: {
  18008. "toeSize": {
  18009. name: "Toe Size",
  18010. power: 2,
  18011. type: "area",
  18012. base: math.unit(0.004, "m^2")
  18013. },
  18014. "padSize": {
  18015. name: "Pad Size",
  18016. power: 2,
  18017. type: "area",
  18018. base: math.unit(0.04, "m^2")
  18019. },
  18020. "footSize": {
  18021. name: "Foot Size",
  18022. power: 2,
  18023. type: "area",
  18024. base: math.unit(0.08, "m^2")
  18025. },
  18026. }
  18027. },
  18028. },
  18029. [
  18030. {
  18031. name: "Micro",
  18032. height: math.unit(2, "inches")
  18033. },
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(4 + 11 / 12, "feet"),
  18037. default: true
  18038. },
  18039. {
  18040. name: "Macro",
  18041. height: math.unit(70, "feet")
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(1.5, "meters"),
  18050. weight: math.unit(68, "kg"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/liam-einarr/front.svg",
  18054. extra: 2822 / 2666
  18055. }
  18056. },
  18057. back: {
  18058. height: math.unit(1.5, "meters"),
  18059. weight: math.unit(68, "kg"),
  18060. name: "Back",
  18061. image: {
  18062. source: "./media/characters/liam-einarr/back.svg",
  18063. extra: 2822 / 2666,
  18064. bottom: 0.015
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(1.5, "meters"),
  18072. default: true
  18073. },
  18074. {
  18075. name: "Macro",
  18076. height: math.unit(150, "meters")
  18077. },
  18078. {
  18079. name: "Megamacro",
  18080. height: math.unit(35, "km")
  18081. },
  18082. ]
  18083. ))
  18084. characterMakers.push(() => makeCharacter(
  18085. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18086. {
  18087. front: {
  18088. height: math.unit(6, "feet"),
  18089. weight: math.unit(75, "kg"),
  18090. name: "Front",
  18091. image: {
  18092. source: "./media/characters/linda/front.svg",
  18093. extra: 930 / 874,
  18094. bottom: 0.004
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Normal",
  18101. height: math.unit(6, "feet"),
  18102. default: true
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6 + 8 / 12, "feet"),
  18111. weight: math.unit(220, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/caylex/front.svg",
  18115. extra: 821 / 772,
  18116. bottom: 0.07
  18117. }
  18118. },
  18119. back: {
  18120. height: math.unit(6 + 8 / 12, "feet"),
  18121. weight: math.unit(220, "lb"),
  18122. name: "Back",
  18123. image: {
  18124. source: "./media/characters/caylex/back.svg",
  18125. extra: 821 / 772,
  18126. bottom: 0.022
  18127. }
  18128. },
  18129. hand: {
  18130. height: math.unit(1.25, "feet"),
  18131. name: "Hand",
  18132. image: {
  18133. source: "./media/characters/caylex/hand.svg"
  18134. }
  18135. },
  18136. foot: {
  18137. height: math.unit(1.6, "feet"),
  18138. name: "Foot",
  18139. image: {
  18140. source: "./media/characters/caylex/foot.svg"
  18141. }
  18142. },
  18143. armored: {
  18144. height: math.unit(6 + 8 / 12, "feet"),
  18145. weight: math.unit(250, "lb"),
  18146. name: "Armored",
  18147. image: {
  18148. source: "./media/characters/caylex/armored.svg",
  18149. extra: 1420 / 1310,
  18150. bottom: 0.045
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Normal",
  18157. height: math.unit(6 + 8 / 12, "feet"),
  18158. default: true
  18159. },
  18160. {
  18161. name: "Normal+",
  18162. height: math.unit(12, "feet")
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(7 + 6 / 12, "feet"),
  18171. weight: math.unit(288, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/alana/front.svg",
  18175. extra: 679 / 653,
  18176. bottom: 22.5 / 701
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(7 + 6 / 12, "feet")
  18184. },
  18185. {
  18186. name: "Large",
  18187. height: math.unit(50, "feet")
  18188. },
  18189. {
  18190. name: "Macro",
  18191. height: math.unit(100, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Macro+",
  18196. height: math.unit(200, "feet")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(6 + 1 / 12, "feet"),
  18205. weight: math.unit(210, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/hasani/front.svg",
  18209. extra: 244 / 232,
  18210. bottom: 0.01
  18211. }
  18212. },
  18213. back: {
  18214. height: math.unit(6 + 1 / 12, "feet"),
  18215. weight: math.unit(210, "lb"),
  18216. name: "Back",
  18217. image: {
  18218. source: "./media/characters/hasani/back.svg",
  18219. extra: 244 / 232,
  18220. bottom: 0.01
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(6 + 1 / 12, "feet")
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(175, "feet"),
  18232. default: true
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18238. {
  18239. front: {
  18240. height: math.unit(1.82, "meters"),
  18241. weight: math.unit(140, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/nita/front.svg",
  18245. extra: 2473 / 2363,
  18246. bottom: 0.01
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Normal",
  18253. height: math.unit(1.82, "m")
  18254. },
  18255. {
  18256. name: "Macro",
  18257. height: math.unit(300, "m")
  18258. },
  18259. {
  18260. name: "Mistake Canon",
  18261. height: math.unit(0.5, "miles"),
  18262. default: true
  18263. },
  18264. {
  18265. name: "Big Mistake",
  18266. height: math.unit(13, "miles")
  18267. },
  18268. {
  18269. name: "Playing God",
  18270. height: math.unit(2450, "miles")
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(4, "feet"),
  18279. weight: math.unit(120, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/shiriko/front.svg",
  18283. extra: 970/934,
  18284. bottom: 5/975
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(4, "feet"),
  18292. default: true
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(6, "feet"),
  18301. name: "front",
  18302. image: {
  18303. source: "./media/characters/deja/front.svg",
  18304. extra: 926 / 840,
  18305. bottom: 0.07
  18306. }
  18307. },
  18308. },
  18309. [
  18310. {
  18311. name: "Planck Length",
  18312. height: math.unit(1.6e-35, "meters")
  18313. },
  18314. {
  18315. name: "Normal",
  18316. height: math.unit(30.48, "meters"),
  18317. default: true
  18318. },
  18319. {
  18320. name: "Universal",
  18321. height: math.unit(8.8e26, "meters")
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18327. {
  18328. side: {
  18329. height: math.unit(8, "feet"),
  18330. weight: math.unit(6300, "lb"),
  18331. name: "Side",
  18332. image: {
  18333. source: "./media/characters/anima/side.svg",
  18334. bottom: 0.035
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Normal",
  18341. height: math.unit(8, "feet"),
  18342. default: true
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(8, "feet"),
  18351. weight: math.unit(350, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/bianca/front.svg",
  18355. extra: 234 / 225,
  18356. bottom: 0.03
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(8, "feet"),
  18364. default: true
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(11 + 5/12, "feet"),
  18373. weight: math.unit(1200, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/adinia/front.svg",
  18377. extra: 1767/1641,
  18378. bottom: 44/1811
  18379. },
  18380. extraAttributes: {
  18381. "energyIntake": {
  18382. name: "Energy Intake",
  18383. power: 3,
  18384. type: "energy",
  18385. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18386. },
  18387. }
  18388. },
  18389. back: {
  18390. height: math.unit(11 + 5/12, "feet"),
  18391. weight: math.unit(1200, "lb"),
  18392. name: "Back",
  18393. image: {
  18394. source: "./media/characters/adinia/back.svg",
  18395. extra: 1834/1684,
  18396. bottom: 14/1848
  18397. },
  18398. extraAttributes: {
  18399. "energyIntake": {
  18400. name: "Energy Intake",
  18401. power: 3,
  18402. type: "energy",
  18403. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18404. },
  18405. }
  18406. },
  18407. maw: {
  18408. height: math.unit(3.79, "feet"),
  18409. name: "Maw",
  18410. image: {
  18411. source: "./media/characters/adinia/maw.svg"
  18412. }
  18413. },
  18414. rump: {
  18415. height: math.unit(4.6, "feet"),
  18416. name: "Rump",
  18417. image: {
  18418. source: "./media/characters/adinia/rump.svg"
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(11 + 5 / 12, "feet"),
  18426. default: true
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18432. {
  18433. front: {
  18434. height: math.unit(3, "meters"),
  18435. weight: math.unit(200, "kg"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/lykasa/front.svg",
  18439. extra: 1076 / 976,
  18440. bottom: 0.06
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(3, "meters")
  18448. },
  18449. {
  18450. name: "Kaiju",
  18451. height: math.unit(120, "meters"),
  18452. default: true
  18453. },
  18454. {
  18455. name: "Mega Kaiju",
  18456. height: math.unit(240, "km")
  18457. },
  18458. {
  18459. name: "Giga Kaiju",
  18460. height: math.unit(400, "megameters")
  18461. },
  18462. {
  18463. name: "Tera Kaiju",
  18464. height: math.unit(800, "gigameters")
  18465. },
  18466. {
  18467. name: "Kaiju Dragon Goddess",
  18468. height: math.unit(26, "zettaparsecs")
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18474. {
  18475. side: {
  18476. height: math.unit(283 / 124 * 6, "feet"),
  18477. weight: math.unit(35000, "lb"),
  18478. name: "Side",
  18479. image: {
  18480. source: "./media/characters/malfaren/side.svg",
  18481. extra: 1310/529,
  18482. bottom: 24/1334
  18483. }
  18484. },
  18485. front: {
  18486. height: math.unit(22.36, "feet"),
  18487. weight: math.unit(35000, "lb"),
  18488. name: "Front",
  18489. image: {
  18490. source: "./media/characters/malfaren/front.svg",
  18491. extra: 1237/1115,
  18492. bottom: 32/1269
  18493. }
  18494. },
  18495. maw: {
  18496. height: math.unit(6.9, "feet"),
  18497. name: "Maw",
  18498. image: {
  18499. source: "./media/characters/malfaren/maw.svg"
  18500. }
  18501. },
  18502. dick: {
  18503. height: math.unit(6.19, "feet"),
  18504. name: "Dick",
  18505. image: {
  18506. source: "./media/characters/malfaren/dick.svg"
  18507. }
  18508. },
  18509. eye: {
  18510. height: math.unit(0.69, "feet"),
  18511. name: "Eye",
  18512. image: {
  18513. source: "./media/characters/malfaren/eye.svg"
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Big",
  18520. height: math.unit(283 / 162 * 6, "feet"),
  18521. },
  18522. {
  18523. name: "Bigger",
  18524. height: math.unit(283 / 124 * 6, "feet")
  18525. },
  18526. {
  18527. name: "Massive",
  18528. height: math.unit(283 / 92 * 6, "feet"),
  18529. default: true
  18530. },
  18531. {
  18532. name: "👀💦",
  18533. height: math.unit(283 / 73 * 6, "feet"),
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18539. {
  18540. front: {
  18541. height: math.unit(1.7, "m"),
  18542. weight: math.unit(70, "kg"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/kernel/front.svg",
  18546. extra: 222 / 210,
  18547. bottom: 0.007
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Nano",
  18554. height: math.unit(17, "micrometers")
  18555. },
  18556. {
  18557. name: "Micro",
  18558. height: math.unit(1.7, "mm")
  18559. },
  18560. {
  18561. name: "Small",
  18562. height: math.unit(1.7, "cm")
  18563. },
  18564. {
  18565. name: "Normal",
  18566. height: math.unit(1.7, "m"),
  18567. default: true
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18573. {
  18574. front: {
  18575. height: math.unit(1.75, "meters"),
  18576. weight: math.unit(65, "kg"),
  18577. name: "Front",
  18578. image: {
  18579. source: "./media/characters/jayne-folest/front.svg",
  18580. extra: 2115 / 2007,
  18581. bottom: 0.02
  18582. }
  18583. },
  18584. back: {
  18585. height: math.unit(1.75, "meters"),
  18586. weight: math.unit(65, "kg"),
  18587. name: "Back",
  18588. image: {
  18589. source: "./media/characters/jayne-folest/back.svg",
  18590. extra: 2115 / 2007,
  18591. bottom: 0.005
  18592. }
  18593. },
  18594. frontClothed: {
  18595. height: math.unit(1.75, "meters"),
  18596. weight: math.unit(65, "kg"),
  18597. name: "Front (Clothed)",
  18598. image: {
  18599. source: "./media/characters/jayne-folest/front-clothed.svg",
  18600. extra: 2115 / 2007,
  18601. bottom: 0.035
  18602. }
  18603. },
  18604. hand: {
  18605. height: math.unit(1 / 1.260, "feet"),
  18606. name: "Hand",
  18607. image: {
  18608. source: "./media/characters/jayne-folest/hand.svg"
  18609. }
  18610. },
  18611. foot: {
  18612. height: math.unit(1 / 0.918, "feet"),
  18613. name: "Foot",
  18614. image: {
  18615. source: "./media/characters/jayne-folest/foot.svg"
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Micro",
  18622. height: math.unit(4, "cm")
  18623. },
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(1.75, "meters")
  18627. },
  18628. {
  18629. name: "Macro",
  18630. height: math.unit(47.5, "meters"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18637. {
  18638. front: {
  18639. height: math.unit(180, "cm"),
  18640. weight: math.unit(70, "kg"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/algier/front.svg",
  18644. extra: 596 / 572,
  18645. bottom: 0.04
  18646. }
  18647. },
  18648. back: {
  18649. height: math.unit(180, "cm"),
  18650. weight: math.unit(70, "kg"),
  18651. name: "Back",
  18652. image: {
  18653. source: "./media/characters/algier/back.svg",
  18654. extra: 596 / 572,
  18655. bottom: 0.025
  18656. }
  18657. },
  18658. frontdressed: {
  18659. height: math.unit(180, "cm"),
  18660. weight: math.unit(150, "kg"),
  18661. name: "Front-dressed",
  18662. image: {
  18663. source: "./media/characters/algier/front-dressed.svg",
  18664. extra: 596 / 572,
  18665. bottom: 0.038
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Micro",
  18672. height: math.unit(5, "cm")
  18673. },
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(180, "cm"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Macro",
  18681. height: math.unit(64, "m")
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18687. {
  18688. upright: {
  18689. height: math.unit(7, "feet"),
  18690. weight: math.unit(300, "lb"),
  18691. name: "Upright",
  18692. image: {
  18693. source: "./media/characters/pretzel/upright.svg",
  18694. extra: 534 / 522,
  18695. bottom: 0.065
  18696. }
  18697. },
  18698. sprawling: {
  18699. height: math.unit(3.75, "feet"),
  18700. weight: math.unit(300, "lb"),
  18701. name: "Sprawling",
  18702. image: {
  18703. source: "./media/characters/pretzel/sprawling.svg",
  18704. extra: 314 / 281,
  18705. bottom: 0.1
  18706. }
  18707. },
  18708. tongue: {
  18709. height: math.unit(2, "feet"),
  18710. name: "Tongue",
  18711. image: {
  18712. source: "./media/characters/pretzel/tongue.svg"
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(7, "feet"),
  18720. default: true
  18721. },
  18722. {
  18723. name: "Oversized",
  18724. height: math.unit(15, "feet")
  18725. },
  18726. {
  18727. name: "Huge",
  18728. height: math.unit(30, "feet")
  18729. },
  18730. {
  18731. name: "Macro",
  18732. height: math.unit(250, "feet")
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18738. {
  18739. sideFront: {
  18740. height: math.unit(5 + 2 / 12, "feet"),
  18741. weight: math.unit(120, "lb"),
  18742. name: "Front Side",
  18743. image: {
  18744. source: "./media/characters/roxi/side-front.svg",
  18745. extra: 2924 / 2717,
  18746. bottom: 0.08
  18747. }
  18748. },
  18749. sideBack: {
  18750. height: math.unit(5 + 2 / 12, "feet"),
  18751. weight: math.unit(120, "lb"),
  18752. name: "Back Side",
  18753. image: {
  18754. source: "./media/characters/roxi/side-back.svg",
  18755. extra: 2904 / 2693,
  18756. bottom: 0.06
  18757. }
  18758. },
  18759. front: {
  18760. height: math.unit(5 + 2 / 12, "feet"),
  18761. weight: math.unit(120, "lb"),
  18762. name: "Front",
  18763. image: {
  18764. source: "./media/characters/roxi/front.svg",
  18765. extra: 2028 / 1907,
  18766. bottom: 0.01
  18767. }
  18768. },
  18769. frontAlt: {
  18770. height: math.unit(5 + 2 / 12, "feet"),
  18771. weight: math.unit(120, "lb"),
  18772. name: "Front (Alt)",
  18773. image: {
  18774. source: "./media/characters/roxi/front-alt.svg",
  18775. extra: 1828 / 1798,
  18776. bottom: 0.01
  18777. }
  18778. },
  18779. sitting: {
  18780. height: math.unit(2.8, "feet"),
  18781. weight: math.unit(120, "lb"),
  18782. name: "Sitting",
  18783. image: {
  18784. source: "./media/characters/roxi/sitting.svg",
  18785. extra: 2660 / 2462,
  18786. bottom: 0.1
  18787. }
  18788. },
  18789. },
  18790. [
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(5 + 2 / 12, "feet"),
  18794. default: true
  18795. },
  18796. ]
  18797. ))
  18798. characterMakers.push(() => makeCharacter(
  18799. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18800. {
  18801. side: {
  18802. height: math.unit(55, "feet"),
  18803. weight: math.unit(153, "tons"),
  18804. name: "Side",
  18805. image: {
  18806. source: "./media/characters/shadow/side.svg",
  18807. extra: 701 / 628,
  18808. bottom: 0.02
  18809. }
  18810. },
  18811. flying: {
  18812. height: math.unit(145, "feet"),
  18813. weight: math.unit(153, "tons"),
  18814. name: "Flying",
  18815. image: {
  18816. source: "./media/characters/shadow/flying.svg"
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(55, "feet"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(6, "feet"),
  18833. weight: math.unit(200, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/marcie/front.svg",
  18837. extra: 960 / 876,
  18838. bottom: 58 / 1017.87
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(1, "mile"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(7, "feet"),
  18855. weight: math.unit(200, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/kachina/front.svg",
  18859. extra: 1290.68 / 1119,
  18860. bottom: 36.5 / 1327.18
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(7, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18874. {
  18875. looking: {
  18876. height: math.unit(2, "meters"),
  18877. weight: math.unit(300, "kg"),
  18878. name: "Looking",
  18879. image: {
  18880. source: "./media/characters/kash/looking.svg",
  18881. extra: 474 / 344,
  18882. bottom: 0.03
  18883. }
  18884. },
  18885. side: {
  18886. height: math.unit(2, "meters"),
  18887. weight: math.unit(300, "kg"),
  18888. name: "Side",
  18889. image: {
  18890. source: "./media/characters/kash/side.svg",
  18891. extra: 302 / 251,
  18892. bottom: 0.03
  18893. }
  18894. },
  18895. front: {
  18896. height: math.unit(2, "meters"),
  18897. weight: math.unit(300, "kg"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/kash/front.svg",
  18901. extra: 495 / 360,
  18902. bottom: 0.015
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Normal",
  18909. height: math.unit(2, "meters"),
  18910. default: true
  18911. },
  18912. {
  18913. name: "Big",
  18914. height: math.unit(3, "meters")
  18915. },
  18916. {
  18917. name: "Large",
  18918. height: math.unit(5, "meters")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18924. {
  18925. feeding: {
  18926. height: math.unit(6.7, "feet"),
  18927. weight: math.unit(350, "lb"),
  18928. name: "Feeding",
  18929. image: {
  18930. source: "./media/characters/lalim/feeding.svg",
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(6.7, "feet"),
  18938. default: true
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18944. {
  18945. front: {
  18946. height: math.unit(9.5, "feet"),
  18947. weight: math.unit(600, "lb"),
  18948. name: "Front",
  18949. image: {
  18950. source: "./media/characters/de'vout/front.svg",
  18951. extra: 1443 / 1328,
  18952. bottom: 0.025
  18953. }
  18954. },
  18955. back: {
  18956. height: math.unit(9.5, "feet"),
  18957. weight: math.unit(600, "lb"),
  18958. name: "Back",
  18959. image: {
  18960. source: "./media/characters/de'vout/back.svg",
  18961. extra: 1443 / 1328
  18962. }
  18963. },
  18964. frontDressed: {
  18965. height: math.unit(9.5, "feet"),
  18966. weight: math.unit(600, "lb"),
  18967. name: "Front (Dressed",
  18968. image: {
  18969. source: "./media/characters/de'vout/front-dressed.svg",
  18970. extra: 1443 / 1328,
  18971. bottom: 0.025
  18972. }
  18973. },
  18974. backDressed: {
  18975. height: math.unit(9.5, "feet"),
  18976. weight: math.unit(600, "lb"),
  18977. name: "Back (Dressed",
  18978. image: {
  18979. source: "./media/characters/de'vout/back-dressed.svg",
  18980. extra: 1443 / 1328
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(9.5, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(8, "feet"),
  18997. weight: math.unit(225, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/talana/front.svg",
  19001. extra: 1410 / 1300,
  19002. bottom: 0.015
  19003. }
  19004. },
  19005. frontDressed: {
  19006. height: math.unit(8, "feet"),
  19007. weight: math.unit(225, "lb"),
  19008. name: "Front (Dressed",
  19009. image: {
  19010. source: "./media/characters/talana/front-dressed.svg",
  19011. extra: 1410 / 1300,
  19012. bottom: 0.015
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(8, "feet"),
  19020. default: true
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19026. {
  19027. side: {
  19028. height: math.unit(7.2, "feet"),
  19029. weight: math.unit(150, "lb"),
  19030. name: "Side",
  19031. image: {
  19032. source: "./media/characters/xeauvok/side.svg",
  19033. extra: 1975 / 1523,
  19034. bottom: 0.07
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(7.2, "feet"),
  19042. default: true
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19048. {
  19049. side: {
  19050. height: math.unit(4, "meters"),
  19051. weight: math.unit(2200, "kg"),
  19052. name: "Side",
  19053. image: {
  19054. source: "./media/characters/zara/side.svg",
  19055. extra: 765/744,
  19056. bottom: 156/921
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(4, "meters"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19070. {
  19071. side: {
  19072. height: math.unit(6, "feet"),
  19073. weight: math.unit(150, "lb"),
  19074. name: "Side",
  19075. image: {
  19076. source: "./media/characters/richard-dragon/side.svg",
  19077. extra: 845 / 340,
  19078. bottom: 0.017
  19079. }
  19080. },
  19081. maw: {
  19082. height: math.unit(2.97, "feet"),
  19083. name: "Maw",
  19084. image: {
  19085. source: "./media/characters/richard-dragon/maw.svg"
  19086. }
  19087. },
  19088. },
  19089. [
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(4, "feet"),
  19097. weight: math.unit(100, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/richard-smeargle/front.svg",
  19101. extra: 2952 / 2820,
  19102. bottom: 0.028
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(4, "feet"),
  19110. default: true
  19111. },
  19112. {
  19113. name: "Dynamax",
  19114. height: math.unit(20, "meters")
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(6, "feet"),
  19123. weight: math.unit(110, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/klay/front.svg",
  19127. extra: 962 / 883,
  19128. bottom: 0.04
  19129. }
  19130. },
  19131. back: {
  19132. height: math.unit(6, "feet"),
  19133. weight: math.unit(110, "lb"),
  19134. name: "Back",
  19135. image: {
  19136. source: "./media/characters/klay/back.svg",
  19137. extra: 962 / 883
  19138. }
  19139. },
  19140. beans: {
  19141. height: math.unit(1.15, "feet"),
  19142. name: "Beans",
  19143. image: {
  19144. source: "./media/characters/klay/beans.svg"
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Micro",
  19151. height: math.unit(6, "inches")
  19152. },
  19153. {
  19154. name: "Mini",
  19155. height: math.unit(3, "feet")
  19156. },
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(6, "feet"),
  19160. default: true
  19161. },
  19162. {
  19163. name: "Big",
  19164. height: math.unit(25, "feet")
  19165. },
  19166. {
  19167. name: "Macro",
  19168. height: math.unit(100, "feet")
  19169. },
  19170. {
  19171. name: "Megamacro",
  19172. height: math.unit(400, "feet")
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(6, "feet"),
  19181. weight: math.unit(160, "lb"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/marcus/front.svg",
  19185. extra: 734 / 676,
  19186. bottom: 0.03
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Little",
  19193. height: math.unit(6, "feet")
  19194. },
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(110, "feet"),
  19198. default: true
  19199. },
  19200. {
  19201. name: "Macro",
  19202. height: math.unit(250, "feet")
  19203. },
  19204. {
  19205. name: "Megamacro",
  19206. height: math.unit(1000, "feet")
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(7, "feet"),
  19215. weight: math.unit(275, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/claude-delroute/front.svg",
  19219. extra: 902/827,
  19220. bottom: 26/928
  19221. }
  19222. },
  19223. side: {
  19224. height: math.unit(7, "feet"),
  19225. weight: math.unit(275, "lb"),
  19226. name: "Side",
  19227. image: {
  19228. source: "./media/characters/claude-delroute/side.svg",
  19229. extra: 908/853,
  19230. bottom: 16/924
  19231. }
  19232. },
  19233. back: {
  19234. height: math.unit(7, "feet"),
  19235. weight: math.unit(275, "lb"),
  19236. name: "Back",
  19237. image: {
  19238. source: "./media/characters/claude-delroute/back.svg",
  19239. extra: 911/829,
  19240. bottom: 18/929
  19241. }
  19242. },
  19243. maw: {
  19244. height: math.unit(0.6407, "meters"),
  19245. name: "Maw",
  19246. image: {
  19247. source: "./media/characters/claude-delroute/maw.svg"
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Normal",
  19254. height: math.unit(7, "feet"),
  19255. default: true
  19256. },
  19257. {
  19258. name: "Lorge",
  19259. height: math.unit(20, "feet")
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19265. {
  19266. front: {
  19267. height: math.unit(8 + 4 / 12, "feet"),
  19268. weight: math.unit(600, "lb"),
  19269. name: "Front",
  19270. image: {
  19271. source: "./media/characters/dragonien/front.svg",
  19272. extra: 100 / 94,
  19273. bottom: 3.3 / 103.3445
  19274. }
  19275. },
  19276. back: {
  19277. height: math.unit(8 + 4 / 12, "feet"),
  19278. weight: math.unit(600, "lb"),
  19279. name: "Back",
  19280. image: {
  19281. source: "./media/characters/dragonien/back.svg",
  19282. extra: 776 / 746,
  19283. bottom: 6.4 / 782.0616
  19284. }
  19285. },
  19286. foot: {
  19287. height: math.unit(1.54, "feet"),
  19288. name: "Foot",
  19289. image: {
  19290. source: "./media/characters/dragonien/foot.svg",
  19291. }
  19292. },
  19293. },
  19294. [
  19295. {
  19296. name: "Normal",
  19297. height: math.unit(8 + 4 / 12, "feet"),
  19298. default: true
  19299. },
  19300. {
  19301. name: "Macro",
  19302. height: math.unit(200, "feet")
  19303. },
  19304. {
  19305. name: "Megamacro",
  19306. height: math.unit(1, "mile")
  19307. },
  19308. {
  19309. name: "Gigamacro",
  19310. height: math.unit(1000, "miles")
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(5 + 2 / 12, "feet"),
  19319. weight: math.unit(110, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/desta/front.svg",
  19323. extra: 767 / 726,
  19324. bottom: 11.7 / 779
  19325. }
  19326. },
  19327. back: {
  19328. height: math.unit(5 + 2 / 12, "feet"),
  19329. weight: math.unit(110, "lb"),
  19330. name: "Back",
  19331. image: {
  19332. source: "./media/characters/desta/back.svg",
  19333. extra: 777 / 728,
  19334. bottom: 6 / 784
  19335. }
  19336. },
  19337. frontAlt: {
  19338. height: math.unit(5 + 2 / 12, "feet"),
  19339. weight: math.unit(110, "lb"),
  19340. name: "Front",
  19341. image: {
  19342. source: "./media/characters/desta/front-alt.svg",
  19343. extra: 1482 / 1417
  19344. }
  19345. },
  19346. side: {
  19347. height: math.unit(5 + 2 / 12, "feet"),
  19348. weight: math.unit(110, "lb"),
  19349. name: "Side",
  19350. image: {
  19351. source: "./media/characters/desta/side.svg",
  19352. extra: 2579 / 2491,
  19353. bottom: 0.053
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Micro",
  19360. height: math.unit(6, "inches")
  19361. },
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(5 + 2 / 12, "feet"),
  19365. default: true
  19366. },
  19367. {
  19368. name: "Macro",
  19369. height: math.unit(62, "feet")
  19370. },
  19371. {
  19372. name: "Megamacro",
  19373. height: math.unit(1800, "feet")
  19374. },
  19375. ]
  19376. ))
  19377. characterMakers.push(() => makeCharacter(
  19378. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19379. {
  19380. front: {
  19381. height: math.unit(10, "feet"),
  19382. weight: math.unit(700, "lb"),
  19383. name: "Front",
  19384. image: {
  19385. source: "./media/characters/storm-alystar/front.svg",
  19386. extra: 2112 / 1898,
  19387. bottom: 0.034
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Micro",
  19394. height: math.unit(3.5, "inches")
  19395. },
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(10, "feet"),
  19399. default: true
  19400. },
  19401. {
  19402. name: "Macro",
  19403. height: math.unit(400, "feet")
  19404. },
  19405. {
  19406. name: "Deific",
  19407. height: math.unit(60, "miles")
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19413. {
  19414. front: {
  19415. height: math.unit(2.35, "meters"),
  19416. weight: math.unit(119, "kg"),
  19417. name: "Front",
  19418. image: {
  19419. source: "./media/characters/ilia/front.svg",
  19420. extra: 1285 / 1255,
  19421. bottom: 0.06
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Normal",
  19428. height: math.unit(2.35, "meters")
  19429. },
  19430. {
  19431. name: "Macro",
  19432. height: math.unit(140, "meters"),
  19433. default: true
  19434. },
  19435. {
  19436. name: "Megamacro",
  19437. height: math.unit(100, "miles")
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(6 + 5 / 12, "feet"),
  19446. weight: math.unit(190, "lb"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/kingdead/front.svg",
  19450. extra: 1228 / 1177
  19451. }
  19452. },
  19453. },
  19454. [
  19455. {
  19456. name: "Micro",
  19457. height: math.unit(7, "inches")
  19458. },
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(6 + 5 / 12, "feet")
  19462. },
  19463. {
  19464. name: "Macro",
  19465. height: math.unit(150, "feet"),
  19466. default: true
  19467. },
  19468. {
  19469. name: "Megamacro",
  19470. height: math.unit(200, "miles")
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19476. {
  19477. front: {
  19478. height: math.unit(8, "feet"),
  19479. weight: math.unit(600, "lb"),
  19480. name: "Front",
  19481. image: {
  19482. source: "./media/characters/kyrehx/front.svg",
  19483. extra: 1195 / 1095,
  19484. bottom: 0.034
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Micro",
  19491. height: math.unit(2, "inches")
  19492. },
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(8, "feet"),
  19496. default: true
  19497. },
  19498. {
  19499. name: "Macro",
  19500. height: math.unit(255, "feet")
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19506. {
  19507. front: {
  19508. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19509. weight: math.unit(184, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/xang/front.svg",
  19513. extra: 845 / 755
  19514. }
  19515. },
  19516. },
  19517. [
  19518. {
  19519. name: "Normal",
  19520. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19521. default: true
  19522. },
  19523. {
  19524. name: "Macro",
  19525. height: math.unit(0.935 * 146, "feet")
  19526. },
  19527. {
  19528. name: "Megamacro",
  19529. height: math.unit(0.935 * 3, "miles")
  19530. },
  19531. ]
  19532. ))
  19533. characterMakers.push(() => makeCharacter(
  19534. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19535. {
  19536. frontDressed: {
  19537. height: math.unit(5 + 7 / 12, "feet"),
  19538. weight: math.unit(140, "lb"),
  19539. name: "Front (Dressed)",
  19540. image: {
  19541. source: "./media/characters/doc-weardno/front-dressed.svg",
  19542. extra: 263 / 234
  19543. }
  19544. },
  19545. backDressed: {
  19546. height: math.unit(5 + 7 / 12, "feet"),
  19547. weight: math.unit(140, "lb"),
  19548. name: "Back (Dressed)",
  19549. image: {
  19550. source: "./media/characters/doc-weardno/back-dressed.svg",
  19551. extra: 266 / 238
  19552. }
  19553. },
  19554. front: {
  19555. height: math.unit(5 + 7 / 12, "feet"),
  19556. weight: math.unit(140, "lb"),
  19557. name: "Front",
  19558. image: {
  19559. source: "./media/characters/doc-weardno/front.svg",
  19560. extra: 254 / 233
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Micro",
  19567. height: math.unit(3, "inches")
  19568. },
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(5 + 7 / 12, "feet"),
  19572. default: true
  19573. },
  19574. {
  19575. name: "Macro",
  19576. height: math.unit(25, "feet")
  19577. },
  19578. {
  19579. name: "Megamacro",
  19580. height: math.unit(2, "miles")
  19581. },
  19582. ]
  19583. ))
  19584. characterMakers.push(() => makeCharacter(
  19585. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19586. {
  19587. front: {
  19588. height: math.unit(6 + 2 / 12, "feet"),
  19589. weight: math.unit(153, "lb"),
  19590. name: "Front",
  19591. image: {
  19592. source: "./media/characters/seth-whilst/front.svg",
  19593. bottom: 0.07
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Micro",
  19600. height: math.unit(5, "inches")
  19601. },
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(6 + 2 / 12, "feet"),
  19605. default: true
  19606. },
  19607. ]
  19608. ))
  19609. characterMakers.push(() => makeCharacter(
  19610. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19611. {
  19612. front: {
  19613. height: math.unit(3, "inches"),
  19614. weight: math.unit(8, "grams"),
  19615. name: "Front",
  19616. image: {
  19617. source: "./media/characters/pocket-jabari/front.svg",
  19618. extra: 1024 / 974,
  19619. bottom: 0.039
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Minimicro",
  19626. height: math.unit(8, "mm")
  19627. },
  19628. {
  19629. name: "Micro",
  19630. height: math.unit(3, "inches"),
  19631. default: true
  19632. },
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(3, "feet")
  19636. },
  19637. ]
  19638. ))
  19639. characterMakers.push(() => makeCharacter(
  19640. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19641. {
  19642. frontDressed: {
  19643. height: math.unit(15, "feet"),
  19644. weight: math.unit(3280, "lb"),
  19645. name: "Front (Dressed)",
  19646. image: {
  19647. source: "./media/characters/sapphy/front-dressed.svg",
  19648. extra: 1951/1654,
  19649. bottom: 194/2145
  19650. },
  19651. form: "anthro",
  19652. default: true
  19653. },
  19654. backDressed: {
  19655. height: math.unit(15, "feet"),
  19656. weight: math.unit(3280, "lb"),
  19657. name: "Back (Dressed)",
  19658. image: {
  19659. source: "./media/characters/sapphy/back-dressed.svg",
  19660. extra: 2058/1918,
  19661. bottom: 125/2183
  19662. },
  19663. form: "anthro"
  19664. },
  19665. frontNude: {
  19666. height: math.unit(15, "feet"),
  19667. weight: math.unit(3280, "lb"),
  19668. name: "Front (Nude)",
  19669. image: {
  19670. source: "./media/characters/sapphy/front-nude.svg",
  19671. extra: 1951/1654,
  19672. bottom: 194/2145
  19673. },
  19674. form: "anthro"
  19675. },
  19676. backNude: {
  19677. height: math.unit(15, "feet"),
  19678. weight: math.unit(3280, "lb"),
  19679. name: "Back (Nude)",
  19680. image: {
  19681. source: "./media/characters/sapphy/back-nude.svg",
  19682. extra: 2058/1918,
  19683. bottom: 125/2183
  19684. },
  19685. form: "anthro"
  19686. },
  19687. full: {
  19688. height: math.unit(15, "feet"),
  19689. weight: math.unit(3280, "lb"),
  19690. name: "Full",
  19691. image: {
  19692. source: "./media/characters/sapphy/full.svg",
  19693. extra: 1396/1317,
  19694. bottom: 44/1440
  19695. },
  19696. form: "anthro"
  19697. },
  19698. dick: {
  19699. height: math.unit(3.8, "feet"),
  19700. name: "Dick",
  19701. image: {
  19702. source: "./media/characters/sapphy/dick.svg"
  19703. },
  19704. form: "anthro"
  19705. },
  19706. feral: {
  19707. height: math.unit(35, "feet"),
  19708. weight: math.unit(160, "tons"),
  19709. name: "Feral",
  19710. image: {
  19711. source: "./media/characters/sapphy/feral.svg",
  19712. extra: 1050/573,
  19713. bottom: 60/1110
  19714. },
  19715. form: "feral",
  19716. default: true
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Normal",
  19722. height: math.unit(15, "feet"),
  19723. form: "anthro"
  19724. },
  19725. {
  19726. name: "Casual Macro",
  19727. height: math.unit(120, "feet"),
  19728. form: "anthro"
  19729. },
  19730. {
  19731. name: "Macro",
  19732. height: math.unit(2150, "feet"),
  19733. default: true,
  19734. form: "anthro"
  19735. },
  19736. {
  19737. name: "Megamacro",
  19738. height: math.unit(8, "miles"),
  19739. form: "anthro"
  19740. },
  19741. {
  19742. name: "Galaxy Mom",
  19743. height: math.unit(6, "megalightyears"),
  19744. form: "anthro"
  19745. },
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(35, "feet"),
  19749. form: "feral",
  19750. default: true
  19751. },
  19752. {
  19753. name: "Macro",
  19754. height: math.unit(300, "feet"),
  19755. form: "feral"
  19756. },
  19757. {
  19758. name: "Galaxy Mom",
  19759. height: math.unit(10, "megalightyears"),
  19760. form: "feral"
  19761. },
  19762. ],
  19763. {
  19764. "anthro": {
  19765. name: "Anthro",
  19766. default: true
  19767. },
  19768. "feral": {
  19769. name: "Feral"
  19770. }
  19771. }
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(6, "feet"),
  19778. weight: math.unit(170, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/kiro/front.svg",
  19782. extra: 1064 / 1012,
  19783. bottom: 0.052
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Micro",
  19790. height: math.unit(6, "inches")
  19791. },
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(6, "feet"),
  19795. default: true
  19796. },
  19797. {
  19798. name: "Macro",
  19799. height: math.unit(72, "feet")
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19805. {
  19806. front: {
  19807. height: math.unit(5 + 9 / 12, "feet"),
  19808. weight: math.unit(175, "lb"),
  19809. name: "Front",
  19810. image: {
  19811. source: "./media/characters/irishfox/front.svg",
  19812. extra: 1912 / 1680,
  19813. bottom: 0.02
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Nano",
  19820. height: math.unit(1, "mm")
  19821. },
  19822. {
  19823. name: "Micro",
  19824. height: math.unit(2, "inches")
  19825. },
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(5 + 9 / 12, "feet"),
  19829. default: true
  19830. },
  19831. {
  19832. name: "Macro",
  19833. height: math.unit(45, "feet")
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19839. {
  19840. front: {
  19841. height: math.unit(6 + 1 / 12, "feet"),
  19842. weight: math.unit(75, "lb"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/aronai-sieyes/front.svg",
  19846. extra: 1532/1450,
  19847. bottom: 42/1574
  19848. }
  19849. },
  19850. side: {
  19851. height: math.unit(6 + 1 / 12, "feet"),
  19852. weight: math.unit(75, "lb"),
  19853. name: "Side",
  19854. image: {
  19855. source: "./media/characters/aronai-sieyes/side.svg",
  19856. extra: 1422/1365,
  19857. bottom: 148/1570
  19858. }
  19859. },
  19860. back: {
  19861. height: math.unit(6 + 1 / 12, "feet"),
  19862. weight: math.unit(75, "lb"),
  19863. name: "Back",
  19864. image: {
  19865. source: "./media/characters/aronai-sieyes/back.svg",
  19866. extra: 1526/1464,
  19867. bottom: 51/1577
  19868. }
  19869. },
  19870. dressed: {
  19871. height: math.unit(6 + 1 / 12, "feet"),
  19872. weight: math.unit(75, "lb"),
  19873. name: "Dressed",
  19874. image: {
  19875. source: "./media/characters/aronai-sieyes/dressed.svg",
  19876. extra: 1559/1483,
  19877. bottom: 39/1598
  19878. }
  19879. },
  19880. slit: {
  19881. height: math.unit(1.3, "feet"),
  19882. name: "Slit",
  19883. image: {
  19884. source: "./media/characters/aronai-sieyes/slit.svg"
  19885. }
  19886. },
  19887. slitSpread: {
  19888. height: math.unit(0.9, "feet"),
  19889. name: "Slit (Spread)",
  19890. image: {
  19891. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19892. }
  19893. },
  19894. rump: {
  19895. height: math.unit(1.3, "feet"),
  19896. name: "Rump",
  19897. image: {
  19898. source: "./media/characters/aronai-sieyes/rump.svg"
  19899. }
  19900. },
  19901. maw: {
  19902. height: math.unit(1.25, "feet"),
  19903. name: "Maw",
  19904. image: {
  19905. source: "./media/characters/aronai-sieyes/maw.svg"
  19906. }
  19907. },
  19908. feral: {
  19909. height: math.unit(18, "feet"),
  19910. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19911. name: "Feral",
  19912. image: {
  19913. source: "./media/characters/aronai-sieyes/feral.svg",
  19914. extra: 1530 / 1240,
  19915. bottom: 0.035
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Micro",
  19922. height: math.unit(2, "inches")
  19923. },
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(6 + 1 / 12, "feet"),
  19927. default: true
  19928. }
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19933. {
  19934. front: {
  19935. height: math.unit(12, "feet"),
  19936. weight: math.unit(410, "kg"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/xuna/front.svg",
  19940. extra: 2184 / 1980
  19941. }
  19942. },
  19943. side: {
  19944. height: math.unit(12, "feet"),
  19945. weight: math.unit(410, "kg"),
  19946. name: "Side",
  19947. image: {
  19948. source: "./media/characters/xuna/side.svg",
  19949. extra: 2184 / 1980
  19950. }
  19951. },
  19952. back: {
  19953. height: math.unit(12, "feet"),
  19954. weight: math.unit(410, "kg"),
  19955. name: "Back",
  19956. image: {
  19957. source: "./media/characters/xuna/back.svg",
  19958. extra: 2184 / 1980
  19959. }
  19960. },
  19961. },
  19962. [
  19963. {
  19964. name: "Nano glow",
  19965. height: math.unit(10, "nm")
  19966. },
  19967. {
  19968. name: "Micro floof",
  19969. height: math.unit(0.3, "m")
  19970. },
  19971. {
  19972. name: "Huggable softy boi",
  19973. height: math.unit(3.6576, "m"),
  19974. default: true
  19975. },
  19976. {
  19977. name: "Admirable floof",
  19978. height: math.unit(80, "meters")
  19979. },
  19980. {
  19981. name: "Gentle macro",
  19982. height: math.unit(300, "meters")
  19983. },
  19984. {
  19985. name: "Very careful floof",
  19986. height: math.unit(3200, "meters")
  19987. },
  19988. {
  19989. name: "The mega floof",
  19990. height: math.unit(36000, "meters")
  19991. },
  19992. {
  19993. name: "Giga-fur-Wicker",
  19994. height: math.unit(4800000, "meters")
  19995. },
  19996. {
  19997. name: "Licky world",
  19998. height: math.unit(20000000, "meters")
  19999. },
  20000. {
  20001. name: "Floofy cyan sun",
  20002. height: math.unit(1500000000, "meters")
  20003. },
  20004. {
  20005. name: "Milky Wicker",
  20006. height: math.unit(1000000000000000000000, "meters")
  20007. },
  20008. {
  20009. name: "The observing Wicker",
  20010. height: math.unit(999999999999999999999999999, "meters")
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20016. {
  20017. front: {
  20018. height: math.unit(5 + 9 / 12, "feet"),
  20019. weight: math.unit(150, "lb"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/arokha-sieyes/front.svg",
  20023. extra: 1425 / 1284,
  20024. bottom: 0.05
  20025. }
  20026. },
  20027. },
  20028. [
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(5 + 9 / 12, "feet")
  20032. },
  20033. {
  20034. name: "Macro",
  20035. height: math.unit(30, "meters"),
  20036. default: true
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(6, "feet"),
  20045. weight: math.unit(180, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/arokh-sieyes/front.svg",
  20049. extra: 1830 / 1769,
  20050. bottom: 0.01
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(6, "feet")
  20058. },
  20059. {
  20060. name: "Macro",
  20061. height: math.unit(30, "meters"),
  20062. default: true
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20068. {
  20069. side: {
  20070. height: math.unit(13 + 1 / 12, "feet"),
  20071. weight: math.unit(8.5, "tonnes"),
  20072. name: "Side",
  20073. image: {
  20074. source: "./media/characters/goldeneye/side.svg",
  20075. extra: 1182 / 778,
  20076. bottom: 0.067
  20077. }
  20078. },
  20079. paw: {
  20080. height: math.unit(3.4, "feet"),
  20081. name: "Paw",
  20082. image: {
  20083. source: "./media/characters/goldeneye/paw.svg"
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(13 + 1 / 12, "feet"),
  20091. default: true
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20097. {
  20098. front: {
  20099. height: math.unit(6 + 1 / 12, "feet"),
  20100. weight: math.unit(210, "lb"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/leonardo-lycheborne/front.svg",
  20104. extra: 776/723,
  20105. bottom: 34/810
  20106. }
  20107. },
  20108. side: {
  20109. height: math.unit(6 + 1 / 12, "feet"),
  20110. weight: math.unit(210, "lb"),
  20111. name: "Side",
  20112. image: {
  20113. source: "./media/characters/leonardo-lycheborne/side.svg",
  20114. extra: 780/728,
  20115. bottom: 12/792
  20116. }
  20117. },
  20118. back: {
  20119. height: math.unit(6 + 1 / 12, "feet"),
  20120. weight: math.unit(210, "lb"),
  20121. name: "Back",
  20122. image: {
  20123. source: "./media/characters/leonardo-lycheborne/back.svg",
  20124. extra: 775/721,
  20125. bottom: 17/792
  20126. }
  20127. },
  20128. hand: {
  20129. height: math.unit(1.08, "feet"),
  20130. name: "Hand",
  20131. image: {
  20132. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20133. }
  20134. },
  20135. foot: {
  20136. height: math.unit(1.32, "feet"),
  20137. name: "Foot",
  20138. image: {
  20139. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20140. }
  20141. },
  20142. maw: {
  20143. height: math.unit(1, "feet"),
  20144. name: "Maw",
  20145. image: {
  20146. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20147. }
  20148. },
  20149. were: {
  20150. height: math.unit(20, "feet"),
  20151. weight: math.unit(7800, "lb"),
  20152. name: "Were",
  20153. image: {
  20154. source: "./media/characters/leonardo-lycheborne/were.svg",
  20155. extra: 1224/1165,
  20156. bottom: 72/1296
  20157. }
  20158. },
  20159. feral: {
  20160. height: math.unit(7.5, "feet"),
  20161. weight: math.unit(600, "lb"),
  20162. name: "Feral",
  20163. image: {
  20164. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20165. extra: 797/702,
  20166. bottom: 139/936
  20167. }
  20168. },
  20169. taur: {
  20170. height: math.unit(11, "feet"),
  20171. weight: math.unit(3300, "lb"),
  20172. name: "Taur",
  20173. image: {
  20174. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20175. extra: 1271/1197,
  20176. bottom: 47/1318
  20177. }
  20178. },
  20179. barghest: {
  20180. height: math.unit(11, "feet"),
  20181. weight: math.unit(1300, "lb"),
  20182. name: "Barghest",
  20183. image: {
  20184. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20185. extra: 1291/1204,
  20186. bottom: 37/1328
  20187. }
  20188. },
  20189. dick: {
  20190. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20191. name: "Dick",
  20192. image: {
  20193. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20194. }
  20195. },
  20196. dickWere: {
  20197. height: math.unit((20) / 3.8, "feet"),
  20198. name: "Dick (Were)",
  20199. image: {
  20200. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20201. }
  20202. },
  20203. },
  20204. [
  20205. {
  20206. name: "Normal",
  20207. height: math.unit(6 + 1 / 12, "feet"),
  20208. default: true
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(10, "feet"),
  20217. weight: math.unit(350, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/jet/front.svg",
  20221. extra: 2050 / 1980,
  20222. bottom: 0.013
  20223. }
  20224. },
  20225. back: {
  20226. height: math.unit(10, "feet"),
  20227. weight: math.unit(350, "lb"),
  20228. name: "Back",
  20229. image: {
  20230. source: "./media/characters/jet/back.svg",
  20231. extra: 2050 / 1980,
  20232. bottom: 0.013
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Micro",
  20239. height: math.unit(6, "inches")
  20240. },
  20241. {
  20242. name: "Normal",
  20243. height: math.unit(10, "feet"),
  20244. default: true
  20245. },
  20246. {
  20247. name: "Macro",
  20248. height: math.unit(100, "feet")
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20254. {
  20255. front: {
  20256. height: math.unit(15, "feet"),
  20257. weight: math.unit(2800, "lb"),
  20258. name: "Front",
  20259. image: {
  20260. source: "./media/characters/tanarath/front.svg",
  20261. extra: 2392 / 2220,
  20262. bottom: 0.03
  20263. }
  20264. },
  20265. back: {
  20266. height: math.unit(15, "feet"),
  20267. weight: math.unit(2800, "lb"),
  20268. name: "Back",
  20269. image: {
  20270. source: "./media/characters/tanarath/back.svg",
  20271. extra: 2392 / 2220,
  20272. bottom: 0.03
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(15, "feet"),
  20280. default: true
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20286. {
  20287. front: {
  20288. height: math.unit(7 + 1 / 12, "feet"),
  20289. weight: math.unit(175, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/patty-cattybatty/front.svg",
  20293. extra: 908 / 874,
  20294. bottom: 0.025
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Micro",
  20301. height: math.unit(1, "inch")
  20302. },
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(7 + 1 / 12, "feet")
  20306. },
  20307. {
  20308. name: "Mini Macro",
  20309. height: math.unit(155, "feet")
  20310. },
  20311. {
  20312. name: "Macro",
  20313. height: math.unit(1077, "feet")
  20314. },
  20315. {
  20316. name: "Mega Macro",
  20317. height: math.unit(47650, "feet"),
  20318. default: true
  20319. },
  20320. {
  20321. name: "Giga Macro",
  20322. height: math.unit(440, "miles")
  20323. },
  20324. {
  20325. name: "Tera Macro",
  20326. height: math.unit(8700, "miles")
  20327. },
  20328. {
  20329. name: "Planetary Macro",
  20330. height: math.unit(32700, "miles")
  20331. },
  20332. {
  20333. name: "Solar Macro",
  20334. height: math.unit(550000, "miles")
  20335. },
  20336. {
  20337. name: "Celestial Macro",
  20338. height: math.unit(2.5, "AU")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(4 + 5 / 12, "feet"),
  20347. weight: math.unit(90, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/cappu/front.svg",
  20351. extra: 1247 / 1152,
  20352. bottom: 0.012
  20353. }
  20354. },
  20355. },
  20356. [
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(4 + 5 / 12, "feet"),
  20360. default: true
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20366. {
  20367. frontDressed: {
  20368. height: math.unit(70, "cm"),
  20369. weight: math.unit(6, "kg"),
  20370. name: "Front (Dressed)",
  20371. image: {
  20372. source: "./media/characters/sebi/front-dressed.svg",
  20373. extra: 713.5 / 686.5,
  20374. bottom: 0.003
  20375. }
  20376. },
  20377. front: {
  20378. height: math.unit(70, "cm"),
  20379. weight: math.unit(5, "kg"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/sebi/front.svg",
  20383. extra: 713.5 / 686.5,
  20384. bottom: 0.003
  20385. }
  20386. }
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(70, "cm"),
  20392. default: true
  20393. },
  20394. {
  20395. name: "Macro",
  20396. height: math.unit(8, "meters")
  20397. },
  20398. ]
  20399. ))
  20400. characterMakers.push(() => makeCharacter(
  20401. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20402. {
  20403. front: {
  20404. height: math.unit(6, "feet"),
  20405. weight: math.unit(150, "lb"),
  20406. name: "Front",
  20407. image: {
  20408. source: "./media/characters/typhek/front.svg",
  20409. extra: 1948 / 1929,
  20410. bottom: 0.025
  20411. }
  20412. },
  20413. side: {
  20414. height: math.unit(6, "feet"),
  20415. weight: math.unit(150, "lb"),
  20416. name: "Side",
  20417. image: {
  20418. source: "./media/characters/typhek/side.svg",
  20419. extra: 2034 / 2010,
  20420. bottom: 0.003
  20421. }
  20422. },
  20423. back: {
  20424. height: math.unit(6, "feet"),
  20425. weight: math.unit(150, "lb"),
  20426. name: "Back",
  20427. image: {
  20428. source: "./media/characters/typhek/back.svg",
  20429. extra: 2005 / 1978,
  20430. bottom: 0.004
  20431. }
  20432. },
  20433. palm: {
  20434. height: math.unit(1.2, "feet"),
  20435. name: "Palm",
  20436. image: {
  20437. source: "./media/characters/typhek/palm.svg"
  20438. }
  20439. },
  20440. fist: {
  20441. height: math.unit(1.1, "feet"),
  20442. name: "Fist",
  20443. image: {
  20444. source: "./media/characters/typhek/fist.svg"
  20445. }
  20446. },
  20447. foot: {
  20448. height: math.unit(1.57, "feet"),
  20449. name: "Foot",
  20450. image: {
  20451. source: "./media/characters/typhek/foot.svg"
  20452. }
  20453. },
  20454. sole: {
  20455. height: math.unit(2.05, "feet"),
  20456. name: "Sole",
  20457. image: {
  20458. source: "./media/characters/typhek/sole.svg"
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Macro",
  20465. height: math.unit(40, "stories"),
  20466. default: true
  20467. },
  20468. {
  20469. name: "Megamacro",
  20470. height: math.unit(1, "mile")
  20471. },
  20472. {
  20473. name: "Gigamacro",
  20474. height: math.unit(4000, "solarradii")
  20475. },
  20476. {
  20477. name: "Universal",
  20478. height: math.unit(1.1, "universes")
  20479. }
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20484. {
  20485. side: {
  20486. height: math.unit(5 + 7 / 12, "feet"),
  20487. weight: math.unit(150, "lb"),
  20488. name: "Side",
  20489. image: {
  20490. source: "./media/characters/kassy/side.svg",
  20491. extra: 1280 / 1225,
  20492. bottom: 0.002
  20493. }
  20494. },
  20495. front: {
  20496. height: math.unit(5 + 7 / 12, "feet"),
  20497. weight: math.unit(150, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/kassy/front.svg",
  20501. extra: 1280 / 1225,
  20502. bottom: 0.025
  20503. }
  20504. },
  20505. back: {
  20506. height: math.unit(5 + 7 / 12, "feet"),
  20507. weight: math.unit(150, "lb"),
  20508. name: "Back",
  20509. image: {
  20510. source: "./media/characters/kassy/back.svg",
  20511. extra: 1280 / 1225,
  20512. bottom: 0.002
  20513. }
  20514. },
  20515. foot: {
  20516. height: math.unit(1.266, "feet"),
  20517. name: "Foot",
  20518. image: {
  20519. source: "./media/characters/kassy/foot.svg"
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(5 + 7 / 12, "feet")
  20527. },
  20528. {
  20529. name: "Macro",
  20530. height: math.unit(137, "feet"),
  20531. default: true
  20532. },
  20533. {
  20534. name: "Megamacro",
  20535. height: math.unit(1, "mile")
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20541. {
  20542. front: {
  20543. height: math.unit(6 + 1 / 12, "feet"),
  20544. weight: math.unit(200, "lb"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/neil/front.svg",
  20548. extra: 1326 / 1250,
  20549. bottom: 0.023
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(6 + 1 / 12, "feet"),
  20557. default: true
  20558. },
  20559. {
  20560. name: "Macro",
  20561. height: math.unit(200, "feet")
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(5 + 9 / 12, "feet"),
  20570. weight: math.unit(190, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/atticus/front.svg",
  20574. extra: 2934 / 2785,
  20575. bottom: 0.025
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 9 / 12, "feet"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Macro",
  20587. height: math.unit(180, "feet")
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20593. {
  20594. side: {
  20595. height: math.unit(9, "feet"),
  20596. weight: math.unit(650, "lb"),
  20597. name: "Side",
  20598. image: {
  20599. source: "./media/characters/milo/side.svg",
  20600. extra: 2644 / 2310,
  20601. bottom: 0.032
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(9, "feet"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Macro",
  20613. height: math.unit(300, "feet")
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20619. {
  20620. side: {
  20621. height: math.unit(8, "meters"),
  20622. weight: math.unit(90000, "kg"),
  20623. name: "Side",
  20624. image: {
  20625. source: "./media/characters/ijzer/side.svg",
  20626. extra: 2756 / 1600,
  20627. bottom: 0.01
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Small",
  20634. height: math.unit(3, "meters")
  20635. },
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(8, "meters"),
  20639. default: true
  20640. },
  20641. {
  20642. name: "Normal+",
  20643. height: math.unit(10, "meters")
  20644. },
  20645. {
  20646. name: "Bigger",
  20647. height: math.unit(24, "meters")
  20648. },
  20649. {
  20650. name: "Huge",
  20651. height: math.unit(80, "meters")
  20652. },
  20653. ]
  20654. ))
  20655. characterMakers.push(() => makeCharacter(
  20656. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20657. {
  20658. front: {
  20659. height: math.unit(6 + 2 / 12, "feet"),
  20660. weight: math.unit(153, "lb"),
  20661. name: "Front",
  20662. image: {
  20663. source: "./media/characters/luca-cervicum/front.svg",
  20664. extra: 370 / 327,
  20665. bottom: 0.015
  20666. }
  20667. },
  20668. back: {
  20669. height: math.unit(6 + 2 / 12, "feet"),
  20670. weight: math.unit(153, "lb"),
  20671. name: "Back",
  20672. image: {
  20673. source: "./media/characters/luca-cervicum/back.svg",
  20674. extra: 367 / 333,
  20675. bottom: 0.005
  20676. }
  20677. },
  20678. frontGear: {
  20679. height: math.unit(6 + 2 / 12, "feet"),
  20680. weight: math.unit(173, "lb"),
  20681. name: "Front (Gear)",
  20682. image: {
  20683. source: "./media/characters/luca-cervicum/front-gear.svg",
  20684. extra: 377 / 333,
  20685. bottom: 0.006
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Normal",
  20692. height: math.unit(6 + 2 / 12, "feet"),
  20693. default: true
  20694. },
  20695. ]
  20696. ))
  20697. characterMakers.push(() => makeCharacter(
  20698. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20699. {
  20700. front: {
  20701. height: math.unit(6 + 1 / 12, "feet"),
  20702. weight: math.unit(304, "lb"),
  20703. name: "Front",
  20704. image: {
  20705. source: "./media/characters/oliver/front.svg",
  20706. extra: 157 / 143,
  20707. bottom: 0.08
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(6 + 1 / 12, "feet"),
  20715. default: true
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20721. {
  20722. front: {
  20723. height: math.unit(5 + 7 / 12, "feet"),
  20724. weight: math.unit(140, "lb"),
  20725. name: "Front",
  20726. image: {
  20727. source: "./media/characters/shane/front.svg",
  20728. extra: 304 / 289,
  20729. bottom: 0.005
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(5 + 7 / 12, "feet"),
  20737. default: true
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(5 + 9 / 12, "feet"),
  20746. weight: math.unit(178, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/shin/front.svg",
  20750. extra: 159 / 151,
  20751. bottom: 0.015
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(5 + 9 / 12, "feet"),
  20759. default: true
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(5 + 10 / 12, "feet"),
  20768. weight: math.unit(168, "lb"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/xerxes/front.svg",
  20772. extra: 282 / 260,
  20773. bottom: 0.045
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Normal",
  20780. height: math.unit(5 + 10 / 12, "feet"),
  20781. default: true
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20787. {
  20788. front: {
  20789. height: math.unit(6 + 7 / 12, "feet"),
  20790. weight: math.unit(208, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/chaska/front.svg",
  20794. extra: 332 / 319,
  20795. bottom: 0.015
  20796. }
  20797. },
  20798. },
  20799. [
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(6 + 7 / 12, "feet"),
  20803. default: true
  20804. },
  20805. ]
  20806. ))
  20807. characterMakers.push(() => makeCharacter(
  20808. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20809. {
  20810. front: {
  20811. height: math.unit(5 + 8 / 12, "feet"),
  20812. weight: math.unit(208, "lb"),
  20813. name: "Front",
  20814. image: {
  20815. source: "./media/characters/enuk/front.svg",
  20816. extra: 437 / 406,
  20817. bottom: 0.02
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Normal",
  20824. height: math.unit(5 + 8 / 12, "feet"),
  20825. default: true
  20826. },
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20831. {
  20832. front: {
  20833. height: math.unit(5 + 10 / 12, "feet"),
  20834. weight: math.unit(252, "lb"),
  20835. name: "Front",
  20836. image: {
  20837. source: "./media/characters/bruun/front.svg",
  20838. extra: 197 / 187,
  20839. bottom: 0.012
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(5 + 10 / 12, "feet"),
  20847. default: true
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(6 + 10 / 12, "feet"),
  20856. weight: math.unit(255, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/alexeev/front.svg",
  20860. extra: 213 / 200,
  20861. bottom: 0.05
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(6 + 10 / 12, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(2 + 8 / 12, "feet"),
  20878. weight: math.unit(22, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/evelyn/front.svg",
  20882. extra: 208 / 180
  20883. }
  20884. },
  20885. },
  20886. [
  20887. {
  20888. name: "Normal",
  20889. height: math.unit(2 + 8 / 12, "feet"),
  20890. default: true
  20891. },
  20892. ]
  20893. ))
  20894. characterMakers.push(() => makeCharacter(
  20895. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20896. {
  20897. front: {
  20898. height: math.unit(5 + 9 / 12, "feet"),
  20899. weight: math.unit(139, "lb"),
  20900. name: "Front",
  20901. image: {
  20902. source: "./media/characters/inca/front.svg",
  20903. extra: 294 / 291,
  20904. bottom: 0.03
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(5 + 9 / 12, "feet"),
  20912. default: true
  20913. },
  20914. ]
  20915. ))
  20916. characterMakers.push(() => makeCharacter(
  20917. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20918. {
  20919. front: {
  20920. height: math.unit(6 + 3 / 12, "feet"),
  20921. weight: math.unit(185, "lb"),
  20922. name: "Front",
  20923. image: {
  20924. source: "./media/characters/mera/front.svg",
  20925. extra: 291 / 277,
  20926. bottom: 0.03
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(6 + 3 / 12, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(6 + 7 / 12, "feet"),
  20943. weight: math.unit(160, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/ceres/front.svg",
  20947. extra: 1023 / 950,
  20948. bottom: 0.027
  20949. }
  20950. },
  20951. back: {
  20952. height: math.unit(6 + 7 / 12, "feet"),
  20953. weight: math.unit(160, "lb"),
  20954. name: "Back",
  20955. image: {
  20956. source: "./media/characters/ceres/back.svg",
  20957. extra: 1023 / 950
  20958. }
  20959. },
  20960. },
  20961. [
  20962. {
  20963. name: "Normal",
  20964. height: math.unit(6 + 7 / 12, "feet"),
  20965. default: true
  20966. },
  20967. ]
  20968. ))
  20969. characterMakers.push(() => makeCharacter(
  20970. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20971. {
  20972. front: {
  20973. height: math.unit(5 + 10 / 12, "feet"),
  20974. weight: math.unit(150, "lb"),
  20975. name: "Front",
  20976. image: {
  20977. source: "./media/characters/kris/front.svg",
  20978. extra: 885 / 803,
  20979. bottom: 0.03
  20980. }
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Normal",
  20986. height: math.unit(5 + 10 / 12, "feet"),
  20987. default: true
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20993. {
  20994. front: {
  20995. height: math.unit(7, "feet"),
  20996. weight: math.unit(120, "kg"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/taluthus/front.svg",
  21000. extra: 903 / 833,
  21001. bottom: 0.015
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(7, "feet"),
  21009. default: true
  21010. },
  21011. {
  21012. name: "Macro",
  21013. height: math.unit(300, "feet")
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(5 + 9 / 12, "feet"),
  21022. weight: math.unit(145, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/dawn/front.svg",
  21026. extra: 2094 / 2016,
  21027. bottom: 0.025
  21028. }
  21029. },
  21030. back: {
  21031. height: math.unit(5 + 9 / 12, "feet"),
  21032. weight: math.unit(160, "lb"),
  21033. name: "Back",
  21034. image: {
  21035. source: "./media/characters/dawn/back.svg",
  21036. extra: 2112 / 2080,
  21037. bottom: 0.005
  21038. }
  21039. },
  21040. },
  21041. [
  21042. {
  21043. name: "Normal",
  21044. height: math.unit(6 + 7 / 12, "feet"),
  21045. default: true
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21051. {
  21052. anthro: {
  21053. height: math.unit(8 + 3 / 12, "feet"),
  21054. weight: math.unit(450, "lb"),
  21055. name: "Anthro",
  21056. image: {
  21057. source: "./media/characters/arador/anthro.svg",
  21058. extra: 1835 / 1718,
  21059. bottom: 0.025
  21060. }
  21061. },
  21062. feral: {
  21063. height: math.unit(4, "feet"),
  21064. weight: math.unit(200, "lb"),
  21065. name: "Feral",
  21066. image: {
  21067. source: "./media/characters/arador/feral.svg",
  21068. extra: 1683 / 1514,
  21069. bottom: 0.07
  21070. }
  21071. },
  21072. },
  21073. [
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(8 + 3 / 12, "feet")
  21077. },
  21078. {
  21079. name: "Macro",
  21080. height: math.unit(82.5, "feet"),
  21081. default: true
  21082. },
  21083. ]
  21084. ))
  21085. characterMakers.push(() => makeCharacter(
  21086. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21087. {
  21088. front: {
  21089. height: math.unit(5 + 10 / 12, "feet"),
  21090. weight: math.unit(125, "lb"),
  21091. name: "Front",
  21092. image: {
  21093. source: "./media/characters/dharsi/front.svg",
  21094. extra: 716 / 630,
  21095. bottom: 0.035
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Nano",
  21102. height: math.unit(100, "nm")
  21103. },
  21104. {
  21105. name: "Micro",
  21106. height: math.unit(2, "inches")
  21107. },
  21108. {
  21109. name: "Normal",
  21110. height: math.unit(5 + 10 / 12, "feet"),
  21111. default: true
  21112. },
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(1000, "feet")
  21116. },
  21117. {
  21118. name: "Megamacro",
  21119. height: math.unit(10, "miles")
  21120. },
  21121. {
  21122. name: "Gigamacro",
  21123. height: math.unit(3000, "miles")
  21124. },
  21125. {
  21126. name: "Teramacro",
  21127. height: math.unit(500000, "miles")
  21128. },
  21129. {
  21130. name: "Teramacro+",
  21131. height: math.unit(30, "galaxies")
  21132. },
  21133. ]
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21137. {
  21138. front: {
  21139. height: math.unit(6, "feet"),
  21140. weight: math.unit(150, "lb"),
  21141. name: "Front",
  21142. image: {
  21143. source: "./media/characters/deathy/front.svg",
  21144. extra: 1552 / 1463,
  21145. bottom: 0.025
  21146. }
  21147. },
  21148. side: {
  21149. height: math.unit(6, "feet"),
  21150. weight: math.unit(150, "lb"),
  21151. name: "Side",
  21152. image: {
  21153. source: "./media/characters/deathy/side.svg",
  21154. extra: 1604 / 1455,
  21155. bottom: 0.025
  21156. }
  21157. },
  21158. back: {
  21159. height: math.unit(6, "feet"),
  21160. weight: math.unit(150, "lb"),
  21161. name: "Back",
  21162. image: {
  21163. source: "./media/characters/deathy/back.svg",
  21164. extra: 1580 / 1463,
  21165. bottom: 0.005
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Micro",
  21172. height: math.unit(5, "millimeters")
  21173. },
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(6 + 5 / 12, "feet"),
  21177. default: true
  21178. },
  21179. ]
  21180. ))
  21181. characterMakers.push(() => makeCharacter(
  21182. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21183. {
  21184. front: {
  21185. height: math.unit(16, "feet"),
  21186. weight: math.unit(4000, "lb"),
  21187. name: "Front",
  21188. image: {
  21189. source: "./media/characters/juniper/front.svg",
  21190. bottom: 0.04
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Normal",
  21197. height: math.unit(16, "feet"),
  21198. default: true
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(6, "feet"),
  21207. weight: math.unit(150, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/hipster/front.svg",
  21211. extra: 1312 / 1209,
  21212. bottom: 0.025
  21213. }
  21214. },
  21215. back: {
  21216. height: math.unit(6, "feet"),
  21217. weight: math.unit(150, "lb"),
  21218. name: "Back",
  21219. image: {
  21220. source: "./media/characters/hipster/back.svg",
  21221. extra: 1281 / 1196,
  21222. bottom: 0.01
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Micro",
  21229. height: math.unit(1, "mm")
  21230. },
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(4, "inches"),
  21234. default: true
  21235. },
  21236. {
  21237. name: "Macro",
  21238. height: math.unit(500, "feet")
  21239. },
  21240. {
  21241. name: "Megamacro",
  21242. height: math.unit(1000, "miles")
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21248. {
  21249. front: {
  21250. height: math.unit(6, "feet"),
  21251. weight: math.unit(150, "lb"),
  21252. name: "Front",
  21253. image: {
  21254. source: "./media/characters/tendirmuldr/front.svg",
  21255. extra: 1878 / 1772,
  21256. bottom: 0.015
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Megamacro",
  21263. height: math.unit(1500, "miles"),
  21264. default: true
  21265. },
  21266. ]
  21267. ))
  21268. characterMakers.push(() => makeCharacter(
  21269. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21270. {
  21271. front: {
  21272. height: math.unit(14, "feet"),
  21273. weight: math.unit(12000, "lb"),
  21274. name: "Front",
  21275. image: {
  21276. source: "./media/characters/mort/front.svg",
  21277. extra: 365 / 318,
  21278. bottom: 0.01
  21279. }
  21280. },
  21281. side: {
  21282. height: math.unit(14, "feet"),
  21283. weight: math.unit(12000, "lb"),
  21284. name: "Side",
  21285. image: {
  21286. source: "./media/characters/mort/side.svg",
  21287. extra: 365 / 318,
  21288. bottom: 0.052
  21289. },
  21290. default: true
  21291. },
  21292. back: {
  21293. height: math.unit(14, "feet"),
  21294. weight: math.unit(12000, "lb"),
  21295. name: "Back",
  21296. image: {
  21297. source: "./media/characters/mort/back.svg",
  21298. extra: 371 / 332,
  21299. bottom: 0.18
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(14, "feet"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21313. {
  21314. front: {
  21315. height: math.unit(8, "feet"),
  21316. weight: math.unit(1, "ton"),
  21317. name: "Front",
  21318. image: {
  21319. source: "./media/characters/lycoa/front.svg",
  21320. extra: 1836/1728,
  21321. bottom: 81/1917
  21322. }
  21323. },
  21324. back: {
  21325. height: math.unit(8, "feet"),
  21326. weight: math.unit(1, "ton"),
  21327. name: "Back",
  21328. image: {
  21329. source: "./media/characters/lycoa/back.svg",
  21330. extra: 1785/1720,
  21331. bottom: 91/1876
  21332. }
  21333. },
  21334. head: {
  21335. height: math.unit(1.6243, "feet"),
  21336. name: "Head",
  21337. image: {
  21338. source: "./media/characters/lycoa/head.svg",
  21339. extra: 1011/782,
  21340. bottom: 0/1011
  21341. }
  21342. },
  21343. tailmaw: {
  21344. height: math.unit(1.9, "feet"),
  21345. name: "Tailmaw",
  21346. image: {
  21347. source: "./media/characters/lycoa/tailmaw.svg"
  21348. }
  21349. },
  21350. tentacles: {
  21351. height: math.unit(2.1, "feet"),
  21352. name: "Tentacles",
  21353. image: {
  21354. source: "./media/characters/lycoa/tentacles.svg"
  21355. }
  21356. },
  21357. dick: {
  21358. height: math.unit(1.73, "feet"),
  21359. name: "Dick",
  21360. image: {
  21361. source: "./media/characters/lycoa/dick.svg"
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(8, "feet"),
  21369. default: true
  21370. },
  21371. {
  21372. name: "Macro",
  21373. height: math.unit(30, "feet")
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21379. {
  21380. front: {
  21381. height: math.unit(4 + 2 / 12, "feet"),
  21382. weight: math.unit(70, "lb"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/naldara/front.svg",
  21386. extra: 1664/1387,
  21387. bottom: 81/1745
  21388. },
  21389. form: "anthro",
  21390. default: true
  21391. },
  21392. naga: {
  21393. height: math.unit(20, "feet"),
  21394. weight: math.unit(15000, "kg"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/naldara/naga.svg",
  21398. extra: 1590/1396,
  21399. bottom: 285/1875
  21400. },
  21401. form: "naga",
  21402. default: true
  21403. },
  21404. },
  21405. [
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(4 + 2 / 12, "feet"),
  21409. form: "anthro",
  21410. default: true
  21411. },
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(20, "feet"),
  21415. form: "naga",
  21416. default: true
  21417. },
  21418. ],
  21419. {
  21420. "anthro": {
  21421. name: "Anthro",
  21422. default: true
  21423. },
  21424. "naga": {
  21425. name: "Naga"
  21426. }
  21427. }
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21431. {
  21432. front: {
  21433. height: math.unit(13 + 7 / 12, "feet"),
  21434. weight: math.unit(1500, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/briar/front.svg",
  21438. extra: 1223/1157,
  21439. bottom: 123/1346
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(13 + 7 / 12, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21453. {
  21454. side: {
  21455. height: math.unit(16, "feet"),
  21456. weight: math.unit(500, "lb"),
  21457. name: "Side",
  21458. image: {
  21459. source: "./media/characters/vanguard/side.svg",
  21460. extra: 1022/914,
  21461. bottom: 30/1052
  21462. }
  21463. },
  21464. sideAlt: {
  21465. height: math.unit(10, "feet"),
  21466. weight: math.unit(500, "lb"),
  21467. name: "Side (Alt)",
  21468. image: {
  21469. source: "./media/characters/vanguard/side-alt.svg",
  21470. extra: 502 / 425,
  21471. bottom: 0.087
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(17.71, "feet"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(7.5, "feet"),
  21488. weight: math.unit(2, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/artemis/work-safe-front.svg",
  21492. extra: 1192 / 1075,
  21493. bottom: 0.07
  21494. },
  21495. form: "work-safe",
  21496. default: true
  21497. },
  21498. frontNsfw: {
  21499. height: math.unit(7.5, "feet"),
  21500. weight: math.unit(2, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/artemis/calibrating-front.svg",
  21504. extra: 1192 / 1075,
  21505. bottom: 0.07
  21506. },
  21507. form: "calibrating",
  21508. default: true
  21509. },
  21510. frontNsfwer: {
  21511. height: math.unit(7.5, "feet"),
  21512. weight: math.unit(2, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/artemis/oversize-load-front.svg",
  21516. extra: 1192 / 1075,
  21517. bottom: 0.07
  21518. },
  21519. form: "oversize-load",
  21520. default: true
  21521. },
  21522. side: {
  21523. height: math.unit(7.5, "feet"),
  21524. weight: math.unit(2, "lb"),
  21525. name: "Side",
  21526. image: {
  21527. source: "./media/characters/artemis/work-safe-side.svg",
  21528. extra: 1192 / 1075,
  21529. bottom: 0.07
  21530. },
  21531. form: "work-safe"
  21532. },
  21533. sideNsfw: {
  21534. height: math.unit(7.5, "feet"),
  21535. weight: math.unit(2, "lb"),
  21536. name: "Side",
  21537. image: {
  21538. source: "./media/characters/artemis/calibrating-side.svg",
  21539. extra: 1192 / 1075,
  21540. bottom: 0.07
  21541. },
  21542. form: "calibrating"
  21543. },
  21544. sideNsfwer: {
  21545. height: math.unit(7.5, "feet"),
  21546. weight: math.unit(2, "lb"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/artemis/oversize-load-side.svg",
  21550. extra: 1192 / 1075,
  21551. bottom: 0.07
  21552. },
  21553. form: "oversize-load"
  21554. },
  21555. maw: {
  21556. height: math.unit(1.1, "feet"),
  21557. name: "Maw",
  21558. image: {
  21559. source: "./media/characters/artemis/maw.svg"
  21560. },
  21561. form: "work-safe"
  21562. },
  21563. stomach: {
  21564. height: math.unit(0.95, "feet"),
  21565. name: "Stomach",
  21566. image: {
  21567. source: "./media/characters/artemis/stomach.svg"
  21568. },
  21569. form: "work-safe"
  21570. },
  21571. dickCanine: {
  21572. height: math.unit(1, "feet"),
  21573. name: "Dick (Canine)",
  21574. image: {
  21575. source: "./media/characters/artemis/dick-canine.svg"
  21576. },
  21577. form: "calibrating"
  21578. },
  21579. dickEquine: {
  21580. height: math.unit(0.85, "feet"),
  21581. name: "Dick (Equine)",
  21582. image: {
  21583. source: "./media/characters/artemis/dick-equine.svg"
  21584. },
  21585. form: "calibrating"
  21586. },
  21587. dickExotic: {
  21588. height: math.unit(0.85, "feet"),
  21589. name: "Dick (Exotic)",
  21590. image: {
  21591. source: "./media/characters/artemis/dick-exotic.svg"
  21592. },
  21593. form: "calibrating"
  21594. },
  21595. dickCanineBigger: {
  21596. height: math.unit(1 * 1.33, "feet"),
  21597. name: "Dick (Canine)",
  21598. image: {
  21599. source: "./media/characters/artemis/dick-canine.svg"
  21600. },
  21601. form: "oversize-load"
  21602. },
  21603. dickEquineBigger: {
  21604. height: math.unit(0.85 * 1.33, "feet"),
  21605. name: "Dick (Equine)",
  21606. image: {
  21607. source: "./media/characters/artemis/dick-equine.svg"
  21608. },
  21609. form: "oversize-load"
  21610. },
  21611. dickExoticBigger: {
  21612. height: math.unit(0.85 * 1.33, "feet"),
  21613. name: "Dick (Exotic)",
  21614. image: {
  21615. source: "./media/characters/artemis/dick-exotic.svg"
  21616. },
  21617. form: "oversize-load"
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(7.5, "feet"),
  21624. form: "work-safe",
  21625. default: true
  21626. },
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(7.5, "feet"),
  21630. form: "calibrating",
  21631. default: true
  21632. },
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(7.5, "feet"),
  21636. form: "oversize-load",
  21637. default: true
  21638. },
  21639. {
  21640. name: "Enlarged",
  21641. height: math.unit(12, "feet"),
  21642. form: "work-safe",
  21643. },
  21644. {
  21645. name: "Enlarged",
  21646. height: math.unit(12, "feet"),
  21647. form: "calibrating",
  21648. },
  21649. {
  21650. name: "Enlarged",
  21651. height: math.unit(12, "feet"),
  21652. form: "oversize-load",
  21653. },
  21654. ],
  21655. {
  21656. "work-safe": {
  21657. name: "Work-Safe",
  21658. default: true
  21659. },
  21660. "calibrating": {
  21661. name: "Calibrating"
  21662. },
  21663. "oversize-load": {
  21664. name: "Oversize Load"
  21665. }
  21666. }
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21670. {
  21671. front: {
  21672. height: math.unit(5 + 3 / 12, "feet"),
  21673. weight: math.unit(160, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/kira/front.svg",
  21677. extra: 906 / 786,
  21678. bottom: 0.01
  21679. }
  21680. },
  21681. back: {
  21682. height: math.unit(5 + 3 / 12, "feet"),
  21683. weight: math.unit(160, "lb"),
  21684. name: "Back",
  21685. image: {
  21686. source: "./media/characters/kira/back.svg",
  21687. extra: 882 / 757,
  21688. bottom: 0.005
  21689. }
  21690. },
  21691. frontDressed: {
  21692. height: math.unit(5 + 3 / 12, "feet"),
  21693. weight: math.unit(160, "lb"),
  21694. name: "Front (Dressed)",
  21695. image: {
  21696. source: "./media/characters/kira/front-dressed.svg",
  21697. extra: 906 / 786,
  21698. bottom: 0.01
  21699. }
  21700. },
  21701. beans: {
  21702. height: math.unit(0.92, "feet"),
  21703. name: "Beans",
  21704. image: {
  21705. source: "./media/characters/kira/beans.svg"
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(5 + 3 / 12, "feet"),
  21713. default: true
  21714. },
  21715. ]
  21716. ))
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21719. {
  21720. front: {
  21721. height: math.unit(5 + 4 / 12, "feet"),
  21722. weight: math.unit(145, "lb"),
  21723. name: "Front",
  21724. image: {
  21725. source: "./media/characters/scramble/front.svg",
  21726. extra: 763 / 727,
  21727. bottom: 0.05
  21728. }
  21729. },
  21730. back: {
  21731. height: math.unit(5 + 4 / 12, "feet"),
  21732. weight: math.unit(145, "lb"),
  21733. name: "Back",
  21734. image: {
  21735. source: "./media/characters/scramble/back.svg",
  21736. extra: 826 / 737,
  21737. bottom: 0.002
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(5 + 4 / 12, "feet"),
  21745. default: true
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21751. {
  21752. side: {
  21753. height: math.unit(6 + 2 / 12, "feet"),
  21754. weight: math.unit(190, "lb"),
  21755. name: "Side",
  21756. image: {
  21757. source: "./media/characters/biscuit/side.svg",
  21758. extra: 858 / 791,
  21759. bottom: 0.044
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(6 + 2 / 12, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21773. {
  21774. front: {
  21775. height: math.unit(5 + 2 / 12, "feet"),
  21776. weight: math.unit(120, "lb"),
  21777. name: "Front",
  21778. image: {
  21779. source: "./media/characters/poffin/front.svg",
  21780. extra: 786 / 680,
  21781. bottom: 0.005
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(5 + 2 / 12, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(6 + 3 / 12, "feet"),
  21798. weight: math.unit(519, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/dhari/front.svg",
  21802. extra: 1048 / 946,
  21803. bottom: 0.015
  21804. }
  21805. },
  21806. back: {
  21807. height: math.unit(6 + 3 / 12, "feet"),
  21808. weight: math.unit(519, "lb"),
  21809. name: "Back",
  21810. image: {
  21811. source: "./media/characters/dhari/back.svg",
  21812. extra: 1048 / 931,
  21813. bottom: 0.005
  21814. }
  21815. },
  21816. frontDressed: {
  21817. height: math.unit(6 + 3 / 12, "feet"),
  21818. weight: math.unit(519, "lb"),
  21819. name: "Front (Dressed)",
  21820. image: {
  21821. source: "./media/characters/dhari/front-dressed.svg",
  21822. extra: 1713 / 1546,
  21823. bottom: 0.02
  21824. }
  21825. },
  21826. backDressed: {
  21827. height: math.unit(6 + 3 / 12, "feet"),
  21828. weight: math.unit(519, "lb"),
  21829. name: "Back (Dressed)",
  21830. image: {
  21831. source: "./media/characters/dhari/back-dressed.svg",
  21832. extra: 1699 / 1537,
  21833. bottom: 0.01
  21834. }
  21835. },
  21836. maw: {
  21837. height: math.unit(0.95, "feet"),
  21838. name: "Maw",
  21839. image: {
  21840. source: "./media/characters/dhari/maw.svg"
  21841. }
  21842. },
  21843. wereFront: {
  21844. height: math.unit(12 + 8 / 12, "feet"),
  21845. weight: math.unit(4000, "lb"),
  21846. name: "Front (Were)",
  21847. image: {
  21848. source: "./media/characters/dhari/were-front.svg",
  21849. extra: 1065 / 969,
  21850. bottom: 0.015
  21851. }
  21852. },
  21853. wereBack: {
  21854. height: math.unit(12 + 8 / 12, "feet"),
  21855. weight: math.unit(4000, "lb"),
  21856. name: "Back (Were)",
  21857. image: {
  21858. source: "./media/characters/dhari/were-back.svg",
  21859. extra: 1065 / 969,
  21860. bottom: 0.012
  21861. }
  21862. },
  21863. wereMaw: {
  21864. height: math.unit(0.625, "meters"),
  21865. name: "Maw (Were)",
  21866. image: {
  21867. source: "./media/characters/dhari/were-maw.svg"
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Normal",
  21874. height: math.unit(6 + 3 / 12, "feet"),
  21875. default: true
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21881. {
  21882. anthro: {
  21883. height: math.unit(5 + 7 / 12, "feet"),
  21884. weight: math.unit(175, "lb"),
  21885. name: "Anthro",
  21886. image: {
  21887. source: "./media/characters/rena-dyne/anthro.svg",
  21888. extra: 1849 / 1785,
  21889. bottom: 0.005
  21890. }
  21891. },
  21892. taur: {
  21893. height: math.unit(15 + 6 / 12, "feet"),
  21894. weight: math.unit(8000, "lb"),
  21895. name: "Taur",
  21896. image: {
  21897. source: "./media/characters/rena-dyne/taur.svg",
  21898. extra: 2315 / 2234,
  21899. bottom: 0.033
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(5 + 7 / 12, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21913. {
  21914. front: {
  21915. height: math.unit(8, "feet"),
  21916. weight: math.unit(600, "lb"),
  21917. name: "Front",
  21918. image: {
  21919. source: "./media/characters/weremeep/front.svg",
  21920. extra: 970/849,
  21921. bottom: 7/977
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(8, "feet"),
  21929. default: true
  21930. },
  21931. {
  21932. name: "Lorg",
  21933. height: math.unit(12, "feet")
  21934. },
  21935. {
  21936. name: "Oh Lawd She Comin'",
  21937. height: math.unit(20, "feet")
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21943. {
  21944. front: {
  21945. height: math.unit(4, "feet"),
  21946. weight: math.unit(90, "lb"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/reza/front.svg",
  21950. extra: 1183 / 1111,
  21951. bottom: 0.017
  21952. }
  21953. },
  21954. back: {
  21955. height: math.unit(4, "feet"),
  21956. weight: math.unit(90, "lb"),
  21957. name: "Back",
  21958. image: {
  21959. source: "./media/characters/reza/back.svg",
  21960. extra: 1183 / 1111,
  21961. bottom: 0.01
  21962. }
  21963. },
  21964. drake: {
  21965. height: math.unit(30, "feet"),
  21966. weight: math.unit(246960, "lb"),
  21967. name: "Drake",
  21968. image: {
  21969. source: "./media/characters/reza/drake.svg",
  21970. extra: 2350 / 2024,
  21971. bottom: 60.7 / 2403
  21972. }
  21973. },
  21974. },
  21975. [
  21976. {
  21977. name: "Normal",
  21978. height: math.unit(4, "feet"),
  21979. default: true
  21980. },
  21981. ]
  21982. ))
  21983. characterMakers.push(() => makeCharacter(
  21984. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21985. {
  21986. side: {
  21987. height: math.unit(15, "feet"),
  21988. weight: math.unit(14, "tons"),
  21989. name: "Side",
  21990. image: {
  21991. source: "./media/characters/athea/side.svg",
  21992. extra: 960 / 540,
  21993. bottom: 0.003
  21994. }
  21995. },
  21996. sitting: {
  21997. height: math.unit(6 * 2.85, "feet"),
  21998. weight: math.unit(14, "tons"),
  21999. name: "Sitting",
  22000. image: {
  22001. source: "./media/characters/athea/sitting.svg",
  22002. extra: 621 / 581,
  22003. bottom: 0.075
  22004. }
  22005. },
  22006. maw: {
  22007. height: math.unit(7.59498031496063, "feet"),
  22008. name: "Maw",
  22009. image: {
  22010. source: "./media/characters/athea/maw.svg"
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Lap Cat",
  22017. height: math.unit(2.5, "feet")
  22018. },
  22019. {
  22020. name: "Minimacro",
  22021. height: math.unit(15, "feet"),
  22022. default: true
  22023. },
  22024. {
  22025. name: "Macro",
  22026. height: math.unit(120, "feet")
  22027. },
  22028. {
  22029. name: "Macro+",
  22030. height: math.unit(640, "feet")
  22031. },
  22032. {
  22033. name: "Colossus",
  22034. height: math.unit(2.2, "miles")
  22035. },
  22036. ]
  22037. ))
  22038. characterMakers.push(() => makeCharacter(
  22039. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22040. {
  22041. front: {
  22042. height: math.unit(8 + 8 / 12, "feet"),
  22043. weight: math.unit(130, "kg"),
  22044. name: "Front",
  22045. image: {
  22046. source: "./media/characters/seroko/front.svg",
  22047. extra: 1385 / 1280,
  22048. bottom: 0.025
  22049. }
  22050. },
  22051. back: {
  22052. height: math.unit(8 + 8 / 12, "feet"),
  22053. weight: math.unit(130, "kg"),
  22054. name: "Back",
  22055. image: {
  22056. source: "./media/characters/seroko/back.svg",
  22057. extra: 1369 / 1238,
  22058. bottom: 0.018
  22059. }
  22060. },
  22061. frontDressed: {
  22062. height: math.unit(8 + 8 / 12, "feet"),
  22063. weight: math.unit(130, "kg"),
  22064. name: "Front (Dressed)",
  22065. image: {
  22066. source: "./media/characters/seroko/front-dressed.svg",
  22067. extra: 1366 / 1275,
  22068. bottom: 0.03
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(8 + 8 / 12, "feet"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(5.5, "feet"),
  22085. weight: math.unit(160, "lb"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/quatzi/front.svg",
  22089. extra: 2346 / 2242,
  22090. bottom: 0.015
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(5.5, "feet"),
  22098. default: true
  22099. },
  22100. {
  22101. name: "Big",
  22102. height: math.unit(7.7, "feet")
  22103. },
  22104. ]
  22105. ))
  22106. characterMakers.push(() => makeCharacter(
  22107. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22108. {
  22109. front: {
  22110. height: math.unit(5 + 11 / 12, "feet"),
  22111. weight: math.unit(180, "lb"),
  22112. name: "Front",
  22113. image: {
  22114. source: "./media/characters/sen/front.svg",
  22115. extra: 1321 / 1254,
  22116. bottom: 0.015
  22117. }
  22118. },
  22119. side: {
  22120. height: math.unit(5 + 11 / 12, "feet"),
  22121. weight: math.unit(180, "lb"),
  22122. name: "Side",
  22123. image: {
  22124. source: "./media/characters/sen/side.svg",
  22125. extra: 1321 / 1254,
  22126. bottom: 0.007
  22127. }
  22128. },
  22129. back: {
  22130. height: math.unit(5 + 11 / 12, "feet"),
  22131. weight: math.unit(180, "lb"),
  22132. name: "Back",
  22133. image: {
  22134. source: "./media/characters/sen/back.svg",
  22135. extra: 1321 / 1254
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Normal",
  22142. height: math.unit(5 + 11 / 12, "feet"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22149. {
  22150. front: {
  22151. height: math.unit(166.6, "cm"),
  22152. weight: math.unit(66.6, "kg"),
  22153. name: "Front",
  22154. image: {
  22155. source: "./media/characters/fruity/front.svg",
  22156. extra: 1510 / 1386,
  22157. bottom: 0.04
  22158. }
  22159. },
  22160. back: {
  22161. height: math.unit(166.6, "cm"),
  22162. weight: math.unit(66.6, "lb"),
  22163. name: "Back",
  22164. image: {
  22165. source: "./media/characters/fruity/back.svg",
  22166. extra: 1563 / 1435,
  22167. bottom: 0.005
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(166.6, "cm"),
  22175. default: true
  22176. },
  22177. {
  22178. name: "Demonic",
  22179. height: math.unit(166.6, "feet")
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22185. {
  22186. side: {
  22187. height: math.unit(10, "feet"),
  22188. weight: math.unit(500, "lb"),
  22189. name: "Side",
  22190. image: {
  22191. source: "./media/characters/zost/side.svg",
  22192. extra: 2870/2533,
  22193. bottom: 252/3122
  22194. }
  22195. },
  22196. mawFront: {
  22197. height: math.unit(1.08, "meters"),
  22198. name: "Maw (Front)",
  22199. image: {
  22200. source: "./media/characters/zost/maw-front.svg"
  22201. }
  22202. },
  22203. mawSide: {
  22204. height: math.unit(2.66, "feet"),
  22205. name: "Maw (Side)",
  22206. image: {
  22207. source: "./media/characters/zost/maw-side.svg"
  22208. }
  22209. },
  22210. wingspan: {
  22211. height: math.unit(7.4, "feet"),
  22212. name: "Wingspan",
  22213. image: {
  22214. source: "./media/characters/zost/wingspan.svg"
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Normal",
  22221. height: math.unit(10, "feet"),
  22222. default: true
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22228. {
  22229. front: {
  22230. height: math.unit(5 + 4 / 12, "feet"),
  22231. weight: math.unit(120, "lb"),
  22232. name: "Front",
  22233. image: {
  22234. source: "./media/characters/luci/front.svg",
  22235. extra: 1985 / 1884,
  22236. bottom: 0.04
  22237. }
  22238. },
  22239. back: {
  22240. height: math.unit(5 + 4 / 12, "feet"),
  22241. weight: math.unit(120, "lb"),
  22242. name: "Back",
  22243. image: {
  22244. source: "./media/characters/luci/back.svg",
  22245. extra: 1892 / 1791,
  22246. bottom: 0.002
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(5 + 4 / 12, "feet"),
  22254. default: true
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22260. {
  22261. front: {
  22262. height: math.unit(1500, "feet"),
  22263. weight: math.unit(3.8e6, "tons"),
  22264. name: "Front",
  22265. image: {
  22266. source: "./media/characters/2th/front.svg",
  22267. extra: 3489 / 3350,
  22268. bottom: 0.1
  22269. }
  22270. },
  22271. foot: {
  22272. height: math.unit(461, "feet"),
  22273. name: "Foot",
  22274. image: {
  22275. source: "./media/characters/2th/foot.svg"
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "\"Micro\"",
  22282. height: math.unit(15 + 7 / 12, "feet")
  22283. },
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(1500, "feet"),
  22287. default: true
  22288. },
  22289. {
  22290. name: "Macro",
  22291. height: math.unit(5000, "feet")
  22292. },
  22293. {
  22294. name: "Megamacro",
  22295. height: math.unit(15, "miles")
  22296. },
  22297. {
  22298. name: "Gigamacro",
  22299. height: math.unit(4000, "miles")
  22300. },
  22301. {
  22302. name: "Galactic",
  22303. height: math.unit(50, "AU")
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22309. {
  22310. front: {
  22311. height: math.unit(5 + 6 / 12, "feet"),
  22312. weight: math.unit(220, "lb"),
  22313. name: "Front",
  22314. image: {
  22315. source: "./media/characters/amethyst/front.svg",
  22316. extra: 2078 / 2040,
  22317. bottom: 0.045
  22318. }
  22319. },
  22320. back: {
  22321. height: math.unit(5 + 6 / 12, "feet"),
  22322. weight: math.unit(220, "lb"),
  22323. name: "Back",
  22324. image: {
  22325. source: "./media/characters/amethyst/back.svg",
  22326. extra: 2021 / 1989,
  22327. bottom: 0.02
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Normal",
  22334. height: math.unit(5 + 6 / 12, "feet"),
  22335. default: true
  22336. },
  22337. ]
  22338. ))
  22339. characterMakers.push(() => makeCharacter(
  22340. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22341. {
  22342. front: {
  22343. height: math.unit(4 + 11 / 12, "feet"),
  22344. weight: math.unit(120, "lb"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/yumi-akiyama/front.svg",
  22348. extra: 1327 / 1235,
  22349. bottom: 0.02
  22350. }
  22351. },
  22352. back: {
  22353. height: math.unit(4 + 11 / 12, "feet"),
  22354. weight: math.unit(120, "lb"),
  22355. name: "Back",
  22356. image: {
  22357. source: "./media/characters/yumi-akiyama/back.svg",
  22358. extra: 1287 / 1245,
  22359. bottom: 0.002
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Galactic",
  22366. height: math.unit(50, "galaxies"),
  22367. default: true
  22368. },
  22369. {
  22370. name: "Universal",
  22371. height: math.unit(100, "universes")
  22372. },
  22373. ]
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(8, "feet"),
  22380. weight: math.unit(500, "lb"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/rifter-yrmori/front.svg",
  22384. extra: 1180 / 1125,
  22385. bottom: 0.02
  22386. }
  22387. },
  22388. back: {
  22389. height: math.unit(8, "feet"),
  22390. weight: math.unit(500, "lb"),
  22391. name: "Back",
  22392. image: {
  22393. source: "./media/characters/rifter-yrmori/back.svg",
  22394. extra: 1190 / 1145,
  22395. bottom: 0.001
  22396. }
  22397. },
  22398. wings: {
  22399. height: math.unit(7.75, "feet"),
  22400. weight: math.unit(500, "lb"),
  22401. name: "Wings",
  22402. image: {
  22403. source: "./media/characters/rifter-yrmori/wings.svg",
  22404. extra: 1357 / 1285
  22405. }
  22406. },
  22407. maw: {
  22408. height: math.unit(0.8, "feet"),
  22409. name: "Maw",
  22410. image: {
  22411. source: "./media/characters/rifter-yrmori/maw.svg"
  22412. }
  22413. },
  22414. mawfront: {
  22415. height: math.unit(1.45, "feet"),
  22416. name: "Maw (Front)",
  22417. image: {
  22418. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(8, "feet"),
  22426. default: true
  22427. },
  22428. {
  22429. name: "Macro",
  22430. height: math.unit(42, "meters")
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22436. {
  22437. were: {
  22438. height: math.unit(25 + 6 / 12, "feet"),
  22439. weight: math.unit(10000, "lb"),
  22440. name: "Were",
  22441. image: {
  22442. source: "./media/characters/tahajin/were.svg",
  22443. extra: 801 / 770,
  22444. bottom: 0.042
  22445. }
  22446. },
  22447. aquatic: {
  22448. height: math.unit(6 + 4 / 12, "feet"),
  22449. weight: math.unit(160, "lb"),
  22450. name: "Aquatic",
  22451. image: {
  22452. source: "./media/characters/tahajin/aquatic.svg",
  22453. extra: 572 / 542,
  22454. bottom: 0.04
  22455. }
  22456. },
  22457. chow: {
  22458. height: math.unit(8 + 11 / 12, "feet"),
  22459. weight: math.unit(450, "lb"),
  22460. name: "Chow",
  22461. image: {
  22462. source: "./media/characters/tahajin/chow.svg",
  22463. extra: 660 / 640,
  22464. bottom: 0.015
  22465. }
  22466. },
  22467. demiNaga: {
  22468. height: math.unit(6 + 8 / 12, "feet"),
  22469. weight: math.unit(300, "lb"),
  22470. name: "Demi Naga",
  22471. image: {
  22472. source: "./media/characters/tahajin/demi-naga.svg",
  22473. extra: 643 / 615,
  22474. bottom: 0.1
  22475. }
  22476. },
  22477. data: {
  22478. height: math.unit(5, "inches"),
  22479. weight: math.unit(0.1, "lb"),
  22480. name: "Data",
  22481. image: {
  22482. source: "./media/characters/tahajin/data.svg"
  22483. }
  22484. },
  22485. fluu: {
  22486. height: math.unit(5 + 7 / 12, "feet"),
  22487. weight: math.unit(140, "lb"),
  22488. name: "Fluu",
  22489. image: {
  22490. source: "./media/characters/tahajin/fluu.svg",
  22491. extra: 628 / 592,
  22492. bottom: 0.02
  22493. }
  22494. },
  22495. starWarrior: {
  22496. height: math.unit(4 + 5 / 12, "feet"),
  22497. weight: math.unit(50, "lb"),
  22498. name: "Star Warrior",
  22499. image: {
  22500. source: "./media/characters/tahajin/star-warrior.svg"
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(25 + 6 / 12, "feet"),
  22508. default: true
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(8, "feet"),
  22517. weight: math.unit(350, "lb"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/gabira/front.svg",
  22521. extra: 1261/1154,
  22522. bottom: 51/1312
  22523. }
  22524. },
  22525. back: {
  22526. height: math.unit(8, "feet"),
  22527. weight: math.unit(350, "lb"),
  22528. name: "Back",
  22529. image: {
  22530. source: "./media/characters/gabira/back.svg",
  22531. extra: 1265/1163,
  22532. bottom: 46/1311
  22533. }
  22534. },
  22535. head: {
  22536. height: math.unit(2.85, "feet"),
  22537. name: "Head",
  22538. image: {
  22539. source: "./media/characters/gabira/head.svg"
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Normal",
  22546. height: math.unit(8, "feet"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(5 + 3 / 12, "feet"),
  22556. weight: math.unit(137, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/sasha-katraine/front.svg",
  22560. extra: 1745/1694,
  22561. bottom: 37/1782
  22562. }
  22563. },
  22564. back: {
  22565. height: math.unit(5 + 3 / 12, "feet"),
  22566. weight: math.unit(137, "lb"),
  22567. name: "Back",
  22568. image: {
  22569. source: "./media/characters/sasha-katraine/back.svg",
  22570. extra: 1776/1699,
  22571. bottom: 26/1802
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Micro",
  22578. height: math.unit(5, "inches")
  22579. },
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(5 + 3 / 12, "feet"),
  22583. default: true
  22584. },
  22585. ]
  22586. ))
  22587. characterMakers.push(() => makeCharacter(
  22588. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22589. {
  22590. side: {
  22591. height: math.unit(4, "inches"),
  22592. weight: math.unit(200, "grams"),
  22593. name: "Side",
  22594. image: {
  22595. source: "./media/characters/der/side.svg",
  22596. extra: 719 / 400,
  22597. bottom: 30.6 / 749.9187
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Micro",
  22604. height: math.unit(4, "inches"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22611. {
  22612. side: {
  22613. height: math.unit(30, "meters"),
  22614. weight: math.unit(700, "tonnes"),
  22615. name: "Side",
  22616. image: {
  22617. source: "./media/characters/fixerdragon/side.svg",
  22618. extra: (1293.0514 - 116.03) / 1106.86,
  22619. bottom: 116.03 / 1293.0514
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Planck",
  22626. height: math.unit(1.6e-35, "meters")
  22627. },
  22628. {
  22629. name: "Micro",
  22630. height: math.unit(0.4, "meters")
  22631. },
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(30, "meters"),
  22635. default: true
  22636. },
  22637. {
  22638. name: "Megamacro",
  22639. height: math.unit(1.2, "megameters")
  22640. },
  22641. {
  22642. name: "Teramacro",
  22643. height: math.unit(130, "terameters")
  22644. },
  22645. {
  22646. name: "Yottamacro",
  22647. height: math.unit(6200, "yottameters")
  22648. },
  22649. ]
  22650. ));
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22653. {
  22654. front: {
  22655. height: math.unit(8, "feet"),
  22656. weight: math.unit(250, "lb"),
  22657. name: "Front",
  22658. image: {
  22659. source: "./media/characters/kite/front.svg",
  22660. extra: 2796 / 2659,
  22661. bottom: 0.002
  22662. }
  22663. },
  22664. },
  22665. [
  22666. {
  22667. name: "Normal",
  22668. height: math.unit(8, "feet"),
  22669. default: true
  22670. },
  22671. {
  22672. name: "Macro",
  22673. height: math.unit(360, "feet")
  22674. },
  22675. {
  22676. name: "Megamacro",
  22677. height: math.unit(1500, "feet")
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22683. {
  22684. front: {
  22685. height: math.unit(5 + 11/12, "feet"),
  22686. weight: math.unit(170, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/poojawa-vynar/front.svg",
  22690. extra: 1735/1585,
  22691. bottom: 96/1831
  22692. }
  22693. },
  22694. back: {
  22695. height: math.unit(5 + 11/12, "feet"),
  22696. weight: math.unit(170, "lb"),
  22697. name: "Back",
  22698. image: {
  22699. source: "./media/characters/poojawa-vynar/back.svg",
  22700. extra: 1749/1607,
  22701. bottom: 28/1777
  22702. }
  22703. },
  22704. male: {
  22705. height: math.unit(5 + 11/12, "feet"),
  22706. weight: math.unit(170, "lb"),
  22707. name: "Male",
  22708. image: {
  22709. source: "./media/characters/poojawa-vynar/male.svg",
  22710. extra: 1855/1713,
  22711. bottom: 63/1918
  22712. }
  22713. },
  22714. taur: {
  22715. height: math.unit(5 + 11/12, "feet"),
  22716. weight: math.unit(170, "lb"),
  22717. name: "Taur",
  22718. image: {
  22719. source: "./media/characters/poojawa-vynar/taur.svg",
  22720. extra: 1151/1059,
  22721. bottom: 356/1507
  22722. }
  22723. },
  22724. frontDressed: {
  22725. height: math.unit(5 + 11/12, "feet"),
  22726. weight: math.unit(170, "lb"),
  22727. name: "Front (Dressed)",
  22728. image: {
  22729. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22730. extra: 1735/1585,
  22731. bottom: 96/1831
  22732. }
  22733. },
  22734. backDressed: {
  22735. height: math.unit(5 + 11/12, "feet"),
  22736. weight: math.unit(170, "lb"),
  22737. name: "Back (Dressed)",
  22738. image: {
  22739. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22740. extra: 1749/1607,
  22741. bottom: 28/1777
  22742. }
  22743. },
  22744. maleDressed: {
  22745. height: math.unit(5 + 11/12, "feet"),
  22746. weight: math.unit(170, "lb"),
  22747. name: "Male (Dressed)",
  22748. image: {
  22749. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22750. extra: 1855/1713,
  22751. bottom: 63/1918
  22752. }
  22753. },
  22754. taurDressed: {
  22755. height: math.unit(5 + 11/12, "feet"),
  22756. weight: math.unit(170, "lb"),
  22757. name: "Taur (Dressed)",
  22758. image: {
  22759. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22760. extra: 1151/1059,
  22761. bottom: 356/1507
  22762. }
  22763. },
  22764. maw: {
  22765. height: math.unit(1.46, "feet"),
  22766. name: "Maw",
  22767. image: {
  22768. source: "./media/characters/poojawa-vynar/maw.svg"
  22769. }
  22770. },
  22771. head: {
  22772. height: math.unit(2.34, "feet"),
  22773. name: "Head",
  22774. image: {
  22775. source: "./media/characters/poojawa-vynar/head.svg"
  22776. }
  22777. },
  22778. paw: {
  22779. height: math.unit(1.61, "feet"),
  22780. name: "Paw",
  22781. image: {
  22782. source: "./media/characters/poojawa-vynar/paw.svg"
  22783. }
  22784. },
  22785. pawToering: {
  22786. height: math.unit(1.72, "feet"),
  22787. name: "Paw (Toering)",
  22788. image: {
  22789. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22790. }
  22791. },
  22792. toering: {
  22793. height: math.unit(2.9, "inches"),
  22794. name: "Toering",
  22795. image: {
  22796. source: "./media/characters/poojawa-vynar/toering.svg"
  22797. }
  22798. },
  22799. shaft: {
  22800. height: math.unit(0.625, "feet"),
  22801. name: "Shaft",
  22802. image: {
  22803. source: "./media/characters/poojawa-vynar/shaft.svg"
  22804. }
  22805. },
  22806. spade: {
  22807. height: math.unit(0.42, "feet"),
  22808. name: "Spade",
  22809. image: {
  22810. source: "./media/characters/poojawa-vynar/spade.svg"
  22811. }
  22812. },
  22813. },
  22814. [
  22815. {
  22816. name: "Shortstack",
  22817. height: math.unit(4, "feet")
  22818. },
  22819. {
  22820. name: "Normal",
  22821. height: math.unit(5 + 11 / 12, "feet"),
  22822. default: true
  22823. },
  22824. {
  22825. name: "Tauric",
  22826. height: math.unit(4, "meters")
  22827. },
  22828. ]
  22829. ))
  22830. characterMakers.push(() => makeCharacter(
  22831. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22832. {
  22833. front: {
  22834. height: math.unit(293, "meters"),
  22835. weight: math.unit(70400, "tons"),
  22836. name: "Front",
  22837. image: {
  22838. source: "./media/characters/violette/front.svg",
  22839. extra: 1227 / 1180,
  22840. bottom: 0.005
  22841. }
  22842. },
  22843. back: {
  22844. height: math.unit(293, "meters"),
  22845. weight: math.unit(70400, "tons"),
  22846. name: "Back",
  22847. image: {
  22848. source: "./media/characters/violette/back.svg",
  22849. extra: 1227 / 1180,
  22850. bottom: 0.005
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Macro",
  22857. height: math.unit(293, "meters"),
  22858. default: true
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22864. {
  22865. front: {
  22866. height: math.unit(1050, "feet"),
  22867. weight: math.unit(200000, "tons"),
  22868. name: "Front",
  22869. image: {
  22870. source: "./media/characters/alessandra/front.svg",
  22871. extra: 960 / 912,
  22872. bottom: 0.06
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Macro",
  22879. height: math.unit(1050, "feet")
  22880. },
  22881. {
  22882. name: "Macro+",
  22883. height: math.unit(900, "meters"),
  22884. default: true
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22890. {
  22891. front: {
  22892. height: math.unit(5, "feet"),
  22893. weight: math.unit(187, "lb"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/person/front.svg",
  22897. extra: 3087 / 2945,
  22898. bottom: 91 / 3181
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Micro",
  22905. height: math.unit(3, "inches")
  22906. },
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(5, "feet"),
  22910. default: true
  22911. },
  22912. {
  22913. name: "Macro",
  22914. height: math.unit(90, "feet")
  22915. },
  22916. {
  22917. name: "Max Size",
  22918. height: math.unit(280, "feet")
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(4.5, "meters"),
  22927. weight: math.unit(3200, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/ty/front.svg",
  22931. extra: 1038 / 960,
  22932. bottom: 31.156 / 1068
  22933. }
  22934. },
  22935. back: {
  22936. height: math.unit(4.5, "meters"),
  22937. weight: math.unit(3200, "lb"),
  22938. name: "Back",
  22939. image: {
  22940. source: "./media/characters/ty/back.svg",
  22941. extra: 1044 / 966,
  22942. bottom: 7.48 / 1049
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(4.5, "meters"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(5 + 4 / 12, "feet"),
  22959. weight: math.unit(115, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/rocky/front.svg",
  22963. extra: 1012 / 975,
  22964. bottom: 54 / 1066
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Normal",
  22971. height: math.unit(5 + 4 / 12, "feet"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22978. {
  22979. upright: {
  22980. height: math.unit(6, "meters"),
  22981. weight: math.unit(4000, "kg"),
  22982. name: "Upright",
  22983. image: {
  22984. source: "./media/characters/ruin/upright.svg",
  22985. extra: 668 / 661,
  22986. bottom: 42 / 799.8396
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(6, "meters"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(5, "feet"),
  23003. weight: math.unit(106, "lb"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/robin/front.svg",
  23007. extra: 862 / 799,
  23008. bottom: 42.4 / 914.8856
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(5, "feet"),
  23016. default: true
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23022. {
  23023. side: {
  23024. height: math.unit(3, "feet"),
  23025. weight: math.unit(225, "lb"),
  23026. name: "Side",
  23027. image: {
  23028. source: "./media/characters/saian/side.svg",
  23029. extra: 566 / 356,
  23030. bottom: 79.7 / 643
  23031. }
  23032. },
  23033. maw: {
  23034. height: math.unit(2.85, "feet"),
  23035. name: "Maw",
  23036. image: {
  23037. source: "./media/characters/saian/maw.svg"
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Normal",
  23044. height: math.unit(3, "feet"),
  23045. default: true
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23051. {
  23052. side: {
  23053. height: math.unit(8, "feet"),
  23054. weight: math.unit(300, "lb"),
  23055. name: "Side",
  23056. image: {
  23057. source: "./media/characters/equus-silvermane/side.svg",
  23058. extra: 2176 / 2050,
  23059. bottom: 65.7 / 2245
  23060. }
  23061. },
  23062. front: {
  23063. height: math.unit(8, "feet"),
  23064. weight: math.unit(300, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/equus-silvermane/front.svg",
  23068. extra: 4633 / 4400,
  23069. bottom: 71.3 / 4706.915
  23070. }
  23071. },
  23072. sideStepping: {
  23073. height: math.unit(8, "feet"),
  23074. weight: math.unit(300, "lb"),
  23075. name: "Side (Stepping)",
  23076. image: {
  23077. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23078. extra: 1968 / 1860,
  23079. bottom: 16.4 / 1989
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(8, "feet")
  23087. },
  23088. {
  23089. name: "Minimacro",
  23090. height: math.unit(75, "feet"),
  23091. default: true
  23092. },
  23093. {
  23094. name: "Macro",
  23095. height: math.unit(150, "feet")
  23096. },
  23097. {
  23098. name: "Macro+",
  23099. height: math.unit(1000, "feet")
  23100. },
  23101. {
  23102. name: "Megamacro",
  23103. height: math.unit(1, "mile")
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23109. {
  23110. side: {
  23111. height: math.unit(20, "feet"),
  23112. weight: math.unit(30000, "kg"),
  23113. name: "Side",
  23114. image: {
  23115. source: "./media/characters/windar/side.svg",
  23116. extra: 1491 / 1248,
  23117. bottom: 82.56 / 1568
  23118. }
  23119. },
  23120. },
  23121. [
  23122. {
  23123. name: "Normal",
  23124. height: math.unit(20, "feet"),
  23125. default: true
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23131. {
  23132. side: {
  23133. height: math.unit(15.66, "feet"),
  23134. weight: math.unit(150, "lb"),
  23135. name: "Side",
  23136. image: {
  23137. source: "./media/characters/melody/side.svg",
  23138. extra: 1097 / 944,
  23139. bottom: 11.8 / 1109
  23140. }
  23141. },
  23142. sideOutfit: {
  23143. height: math.unit(15.66, "feet"),
  23144. weight: math.unit(150, "lb"),
  23145. name: "Side (Outfit)",
  23146. image: {
  23147. source: "./media/characters/melody/side-outfit.svg",
  23148. extra: 1097 / 944,
  23149. bottom: 11.8 / 1109
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(15.66, "feet"),
  23157. default: true
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23163. {
  23164. armoredFront: {
  23165. height: math.unit(8, "feet"),
  23166. weight: math.unit(325, "lb"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/windera/armored-front.svg",
  23170. extra: 1830/1598,
  23171. bottom: 151/1981
  23172. },
  23173. form: "armored",
  23174. default: true
  23175. },
  23176. macroFront: {
  23177. height: math.unit(70, "feet"),
  23178. weight: math.unit(315453, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/windera/macro-front.svg",
  23182. extra: 963/883,
  23183. bottom: 23/986
  23184. },
  23185. form: "macro",
  23186. default: true
  23187. },
  23188. },
  23189. [
  23190. {
  23191. name: "Normal",
  23192. height: math.unit(8, "feet"),
  23193. default: true,
  23194. form: "armored"
  23195. },
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(70, "feet"),
  23199. default: true,
  23200. form: "macro"
  23201. },
  23202. ],
  23203. {
  23204. "armored": {
  23205. name: "Armored",
  23206. default: true
  23207. },
  23208. "macro": {
  23209. name: "Macro",
  23210. },
  23211. }
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23215. {
  23216. front: {
  23217. height: math.unit(28.75, "feet"),
  23218. weight: math.unit(2000, "kg"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/sonear/front.svg",
  23222. extra: 1041.1 / 964.9,
  23223. bottom: 53.7 / 1096.6
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(28.75, "feet"),
  23231. default: true
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23237. {
  23238. side: {
  23239. height: math.unit(25.5, "feet"),
  23240. weight: math.unit(23000, "kg"),
  23241. name: "Side",
  23242. image: {
  23243. source: "./media/characters/kanara/side.svg"
  23244. }
  23245. },
  23246. },
  23247. [
  23248. {
  23249. name: "Normal",
  23250. height: math.unit(25.5, "feet"),
  23251. default: true
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23257. {
  23258. side: {
  23259. height: math.unit(10, "feet"),
  23260. weight: math.unit(1000, "kg"),
  23261. name: "Side",
  23262. image: {
  23263. source: "./media/characters/ereus/side.svg",
  23264. extra: 1157 / 959,
  23265. bottom: 153 / 1312.5
  23266. }
  23267. },
  23268. },
  23269. [
  23270. {
  23271. name: "Normal",
  23272. height: math.unit(10, "feet"),
  23273. default: true
  23274. },
  23275. ]
  23276. ))
  23277. characterMakers.push(() => makeCharacter(
  23278. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23279. {
  23280. side: {
  23281. height: math.unit(4.5, "feet"),
  23282. weight: math.unit(500, "lb"),
  23283. name: "Side",
  23284. image: {
  23285. source: "./media/characters/e-ter/side.svg",
  23286. extra: 1550 / 1248,
  23287. bottom: 146 / 1694
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(4.5, "feet"),
  23295. default: true
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23301. {
  23302. side: {
  23303. height: math.unit(9.7, "feet"),
  23304. weight: math.unit(4000, "kg"),
  23305. name: "Side",
  23306. image: {
  23307. source: "./media/characters/yamie/side.svg"
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(9.7, "feet"),
  23315. default: true
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(50, "feet"),
  23324. weight: math.unit(50000, "kg"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/anders/front.svg",
  23328. extra: 570 / 539,
  23329. bottom: 14.7 / 586.7
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Large",
  23336. height: math.unit(50, "feet")
  23337. },
  23338. {
  23339. name: "Macro",
  23340. height: math.unit(2000, "feet"),
  23341. default: true
  23342. },
  23343. {
  23344. name: "Megamacro",
  23345. height: math.unit(12, "miles")
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(7 + 2 / 12, "feet"),
  23354. weight: math.unit(300, "lb"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/reban/front.svg",
  23358. extra: 1287/1212,
  23359. bottom: 148/1435
  23360. }
  23361. },
  23362. head: {
  23363. height: math.unit(1.95, "feet"),
  23364. name: "Head",
  23365. image: {
  23366. source: "./media/characters/reban/head.svg"
  23367. }
  23368. },
  23369. maw: {
  23370. height: math.unit(0.95, "feet"),
  23371. name: "Maw",
  23372. image: {
  23373. source: "./media/characters/reban/maw.svg"
  23374. }
  23375. },
  23376. foot: {
  23377. height: math.unit(1.65, "feet"),
  23378. name: "Foot",
  23379. image: {
  23380. source: "./media/characters/reban/foot.svg"
  23381. }
  23382. },
  23383. dick: {
  23384. height: math.unit(7 / 5, "feet"),
  23385. name: "Dick",
  23386. image: {
  23387. source: "./media/characters/reban/dick.svg"
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Natural Height",
  23394. height: math.unit(7 + 2 / 12, "feet")
  23395. },
  23396. {
  23397. name: "Macro",
  23398. height: math.unit(500, "feet"),
  23399. default: true
  23400. },
  23401. {
  23402. name: "Canon Height",
  23403. height: math.unit(50, "AU")
  23404. },
  23405. ]
  23406. ))
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23409. {
  23410. front: {
  23411. height: math.unit(6, "feet"),
  23412. weight: math.unit(150, "lb"),
  23413. name: "Front",
  23414. image: {
  23415. source: "./media/characters/terrance-keayes/front.svg",
  23416. extra: 1.005,
  23417. bottom: 151 / 1615
  23418. }
  23419. },
  23420. side: {
  23421. height: math.unit(6, "feet"),
  23422. weight: math.unit(150, "lb"),
  23423. name: "Side",
  23424. image: {
  23425. source: "./media/characters/terrance-keayes/side.svg",
  23426. extra: 1.005,
  23427. bottom: 129.4 / 1544
  23428. }
  23429. },
  23430. back: {
  23431. height: math.unit(6, "feet"),
  23432. weight: math.unit(150, "lb"),
  23433. name: "Back",
  23434. image: {
  23435. source: "./media/characters/terrance-keayes/back.svg",
  23436. extra: 1.005,
  23437. bottom: 58.4 / 1557.3
  23438. }
  23439. },
  23440. dick: {
  23441. height: math.unit(6 * 0.208, "feet"),
  23442. name: "Dick",
  23443. image: {
  23444. source: "./media/characters/terrance-keayes/dick.svg"
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Canon Height",
  23451. height: math.unit(35, "miles"),
  23452. default: true
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23458. {
  23459. front: {
  23460. height: math.unit(6, "feet"),
  23461. weight: math.unit(150, "lb"),
  23462. name: "Front",
  23463. image: {
  23464. source: "./media/characters/ofelia/front.svg",
  23465. extra: 1130/1117,
  23466. bottom: 91/1221
  23467. }
  23468. },
  23469. back: {
  23470. height: math.unit(6, "feet"),
  23471. weight: math.unit(150, "lb"),
  23472. name: "Back",
  23473. image: {
  23474. source: "./media/characters/ofelia/back.svg",
  23475. extra: 1172/1159,
  23476. bottom: 28/1200
  23477. }
  23478. },
  23479. maw: {
  23480. height: math.unit(1, "feet"),
  23481. name: "Maw",
  23482. image: {
  23483. source: "./media/characters/ofelia/maw.svg"
  23484. }
  23485. },
  23486. foot: {
  23487. height: math.unit(1.949, "feet"),
  23488. name: "Foot",
  23489. image: {
  23490. source: "./media/characters/ofelia/foot.svg"
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Canon Height",
  23497. height: math.unit(2000, "miles"),
  23498. default: true
  23499. },
  23500. ]
  23501. ))
  23502. characterMakers.push(() => makeCharacter(
  23503. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23504. {
  23505. front: {
  23506. height: math.unit(6, "feet"),
  23507. weight: math.unit(150, "lb"),
  23508. name: "Front",
  23509. image: {
  23510. source: "./media/characters/samuel/front.svg",
  23511. extra: 265 / 258,
  23512. bottom: 2 / 266.1566
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Macro",
  23519. height: math.unit(100, "feet"),
  23520. default: true
  23521. },
  23522. {
  23523. name: "Full Size",
  23524. height: math.unit(1000, "miles")
  23525. },
  23526. ]
  23527. ))
  23528. characterMakers.push(() => makeCharacter(
  23529. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23530. {
  23531. front: {
  23532. height: math.unit(6, "feet"),
  23533. weight: math.unit(300, "lb"),
  23534. name: "Front",
  23535. image: {
  23536. source: "./media/characters/beishir-kiel/front.svg",
  23537. extra: 569 / 547,
  23538. bottom: 41.9 / 609
  23539. }
  23540. },
  23541. maw: {
  23542. height: math.unit(6 * 0.202, "feet"),
  23543. name: "Maw",
  23544. image: {
  23545. source: "./media/characters/beishir-kiel/maw.svg"
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(300, "feet"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(5 + 7/12, "feet"),
  23562. weight: math.unit(120, "lb"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/logan-grey/front.svg",
  23566. extra: 1836/1738,
  23567. bottom: 108/1944
  23568. }
  23569. },
  23570. back: {
  23571. height: math.unit(5 + 7/12, "feet"),
  23572. weight: math.unit(120, "lb"),
  23573. name: "Back",
  23574. image: {
  23575. source: "./media/characters/logan-grey/back.svg",
  23576. extra: 1880/1794,
  23577. bottom: 24/1904
  23578. }
  23579. },
  23580. frontSfw: {
  23581. height: math.unit(5 + 7/12, "feet"),
  23582. weight: math.unit(120, "lb"),
  23583. name: "Front (SFW)",
  23584. image: {
  23585. source: "./media/characters/logan-grey/front-sfw.svg",
  23586. extra: 1836/1738,
  23587. bottom: 108/1944
  23588. }
  23589. },
  23590. backSfw: {
  23591. height: math.unit(5 + 7/12, "feet"),
  23592. weight: math.unit(120, "lb"),
  23593. name: "Back (SFW)",
  23594. image: {
  23595. source: "./media/characters/logan-grey/back-sfw.svg",
  23596. extra: 1880/1794,
  23597. bottom: 24/1904
  23598. }
  23599. },
  23600. hands: {
  23601. height: math.unit(0.84, "feet"),
  23602. name: "Hands",
  23603. image: {
  23604. source: "./media/characters/logan-grey/hands.svg"
  23605. }
  23606. },
  23607. paws: {
  23608. height: math.unit(0.72, "feet"),
  23609. name: "Paws",
  23610. image: {
  23611. source: "./media/characters/logan-grey/paws.svg"
  23612. }
  23613. },
  23614. cock: {
  23615. height: math.unit(1.45, "feet"),
  23616. name: "Cock",
  23617. image: {
  23618. source: "./media/characters/logan-grey/cock.svg"
  23619. }
  23620. },
  23621. cockAlt: {
  23622. height: math.unit(1.437, "feet"),
  23623. name: "Cock (alt)",
  23624. image: {
  23625. source: "./media/characters/logan-grey/cock-alt.svg"
  23626. }
  23627. },
  23628. },
  23629. [
  23630. {
  23631. name: "Normal",
  23632. height: math.unit(5 + 8 / 12, "feet")
  23633. },
  23634. {
  23635. name: "The 500 Foot Femboy",
  23636. height: math.unit(500, "feet"),
  23637. default: true
  23638. },
  23639. {
  23640. name: "Megmacro",
  23641. height: math.unit(20, "miles")
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(8 + 2 / 12, "feet"),
  23650. weight: math.unit(275, "lb"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/draganta/front.svg",
  23654. extra: 1177 / 1135,
  23655. bottom: 33.46 / 1212.1
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(8 + 6 / 12, "feet"),
  23663. default: true
  23664. },
  23665. {
  23666. name: "Macro",
  23667. height: math.unit(150, "feet")
  23668. },
  23669. {
  23670. name: "Megamacro",
  23671. height: math.unit(1000, "miles")
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(1.72, "m"),
  23680. weight: math.unit(80, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/voski/front.svg",
  23684. extra: 2076.22 / 2022.4,
  23685. bottom: 102.7 / 2177.3866
  23686. }
  23687. },
  23688. frontFlaccid: {
  23689. height: math.unit(1.72, "m"),
  23690. weight: math.unit(80, "lb"),
  23691. name: "Front (Flaccid)",
  23692. image: {
  23693. source: "./media/characters/voski/front-flaccid.svg",
  23694. extra: 2076.22 / 2022.4,
  23695. bottom: 102.7 / 2177.3866
  23696. }
  23697. },
  23698. frontErect: {
  23699. height: math.unit(1.72, "m"),
  23700. weight: math.unit(80, "lb"),
  23701. name: "Front (Erect)",
  23702. image: {
  23703. source: "./media/characters/voski/front-erect.svg",
  23704. extra: 2076.22 / 2022.4,
  23705. bottom: 102.7 / 2177.3866
  23706. }
  23707. },
  23708. back: {
  23709. height: math.unit(1.72, "m"),
  23710. weight: math.unit(80, "lb"),
  23711. name: "Back",
  23712. image: {
  23713. source: "./media/characters/voski/back.svg",
  23714. extra: 2104 / 2051,
  23715. bottom: 10.45 / 2113.63
  23716. }
  23717. },
  23718. },
  23719. [
  23720. {
  23721. name: "Normal",
  23722. height: math.unit(1.72, "m")
  23723. },
  23724. {
  23725. name: "Macro",
  23726. height: math.unit(55, "m"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Macro+",
  23731. height: math.unit(300, "m")
  23732. },
  23733. {
  23734. name: "Macro++",
  23735. height: math.unit(700, "m")
  23736. },
  23737. {
  23738. name: "Macro+++",
  23739. height: math.unit(4500, "m")
  23740. },
  23741. {
  23742. name: "Macro++++",
  23743. height: math.unit(45, "km")
  23744. },
  23745. {
  23746. name: "Macro+++++",
  23747. height: math.unit(1220, "km")
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(2.3, "m"),
  23756. weight: math.unit(304, "kg"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/icowom-lee/front.svg",
  23760. extra: 985 / 955,
  23761. bottom: 25.4 / 1012
  23762. }
  23763. },
  23764. fronttentacles: {
  23765. height: math.unit(2.3, "m"),
  23766. weight: math.unit(304, "kg"),
  23767. name: "Front-tentacles",
  23768. image: {
  23769. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23770. extra: 985 / 955,
  23771. bottom: 25.4 / 1012
  23772. }
  23773. },
  23774. back: {
  23775. height: math.unit(2.3, "m"),
  23776. weight: math.unit(304, "kg"),
  23777. name: "Back",
  23778. image: {
  23779. source: "./media/characters/icowom-lee/back.svg",
  23780. extra: 975 / 954,
  23781. bottom: 9.5 / 985
  23782. }
  23783. },
  23784. backtentacles: {
  23785. height: math.unit(2.3, "m"),
  23786. weight: math.unit(304, "kg"),
  23787. name: "Back-tentacles",
  23788. image: {
  23789. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23790. extra: 975 / 954,
  23791. bottom: 9.5 / 985
  23792. }
  23793. },
  23794. frontDressed: {
  23795. height: math.unit(2.3, "m"),
  23796. weight: math.unit(304, "kg"),
  23797. name: "Front (Dressed)",
  23798. image: {
  23799. source: "./media/characters/icowom-lee/front-dressed.svg",
  23800. extra: 3076 / 2933,
  23801. bottom: 51.4 / 3125.1889
  23802. }
  23803. },
  23804. rump: {
  23805. height: math.unit(0.776, "meters"),
  23806. name: "Rump",
  23807. image: {
  23808. source: "./media/characters/icowom-lee/rump.svg"
  23809. }
  23810. },
  23811. genitals: {
  23812. height: math.unit(0.78, "meters"),
  23813. name: "Genitals",
  23814. image: {
  23815. source: "./media/characters/icowom-lee/genitals.svg"
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Normal",
  23822. height: math.unit(2.3, "meters"),
  23823. default: true
  23824. },
  23825. {
  23826. name: "Macro",
  23827. height: math.unit(94, "meters"),
  23828. default: true
  23829. },
  23830. ]
  23831. ))
  23832. characterMakers.push(() => makeCharacter(
  23833. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23834. {
  23835. front: {
  23836. height: math.unit(22, "meters"),
  23837. weight: math.unit(21000, "kg"),
  23838. name: "Front",
  23839. image: {
  23840. source: "./media/characters/shock-diamond/front.svg",
  23841. extra: 2204 / 2053,
  23842. bottom: 65 / 2239.47
  23843. }
  23844. },
  23845. frontNude: {
  23846. height: math.unit(22, "meters"),
  23847. weight: math.unit(21000, "kg"),
  23848. name: "Front (Nude)",
  23849. image: {
  23850. source: "./media/characters/shock-diamond/front-nude.svg",
  23851. extra: 2514 / 2285,
  23852. bottom: 13 / 2527.56
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Normal",
  23859. height: math.unit(3, "meters")
  23860. },
  23861. {
  23862. name: "Macro",
  23863. height: math.unit(22, "meters"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23870. {
  23871. front: {
  23872. height: math.unit(5 + 4 / 12, "feet"),
  23873. weight: math.unit(120, "lb"),
  23874. name: "Front",
  23875. image: {
  23876. source: "./media/characters/rory/front.svg",
  23877. extra: 1318/1241,
  23878. bottom: 42/1360
  23879. }
  23880. },
  23881. back: {
  23882. height: math.unit(5 + 4 / 12, "feet"),
  23883. weight: math.unit(120, "lb"),
  23884. name: "Back",
  23885. image: {
  23886. source: "./media/characters/rory/back.svg",
  23887. extra: 1318/1241,
  23888. bottom: 42/1360
  23889. }
  23890. },
  23891. butt: {
  23892. height: math.unit(1.74, "feet"),
  23893. name: "Butt",
  23894. image: {
  23895. source: "./media/characters/rory/butt.svg"
  23896. }
  23897. },
  23898. dick: {
  23899. height: math.unit(1.02, "feet"),
  23900. name: "Dick",
  23901. image: {
  23902. source: "./media/characters/rory/dick.svg"
  23903. }
  23904. },
  23905. paws: {
  23906. height: math.unit(1, "feet"),
  23907. name: "Paws",
  23908. image: {
  23909. source: "./media/characters/rory/paws.svg"
  23910. }
  23911. },
  23912. frontAlt: {
  23913. height: math.unit(5 + 4 / 12, "feet"),
  23914. weight: math.unit(120, "lb"),
  23915. name: "Front (Alt)",
  23916. image: {
  23917. source: "./media/characters/rory/front-alt.svg",
  23918. extra: 589 / 556,
  23919. bottom: 45.7 / 635.76
  23920. }
  23921. },
  23922. frontAltNude: {
  23923. height: math.unit(5 + 4 / 12, "feet"),
  23924. weight: math.unit(120, "lb"),
  23925. name: "Front (Alt, Nude)",
  23926. image: {
  23927. source: "./media/characters/rory/front-alt-nude.svg",
  23928. extra: 589 / 556,
  23929. bottom: 45.7 / 635.76
  23930. }
  23931. },
  23932. side: {
  23933. height: math.unit(5 + 4 / 12, "feet"),
  23934. weight: math.unit(120, "lb"),
  23935. name: "Side",
  23936. image: {
  23937. source: "./media/characters/rory/side.svg",
  23938. extra: 597 / 564,
  23939. bottom: 55 / 653
  23940. }
  23941. },
  23942. backAlt: {
  23943. height: math.unit(5 + 4 / 12, "feet"),
  23944. weight: math.unit(120, "lb"),
  23945. name: "Back (Alt)",
  23946. image: {
  23947. source: "./media/characters/rory/back-alt.svg",
  23948. extra: 620 / 585,
  23949. bottom: 8.86 / 630.43
  23950. }
  23951. },
  23952. dickAlt: {
  23953. height: math.unit(0.86, "feet"),
  23954. name: "Dick (Alt)",
  23955. image: {
  23956. source: "./media/characters/rory/dick-alt.svg"
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(5 + 4 / 12, "feet"),
  23964. default: true
  23965. },
  23966. {
  23967. name: "Macro",
  23968. height: math.unit(100, "feet")
  23969. },
  23970. {
  23971. name: "Macro+",
  23972. height: math.unit(140, "feet")
  23973. },
  23974. {
  23975. name: "Macro++",
  23976. height: math.unit(300, "feet")
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23982. {
  23983. front: {
  23984. height: math.unit(5 + 9 / 12, "feet"),
  23985. weight: math.unit(190, "lb"),
  23986. name: "Front",
  23987. image: {
  23988. source: "./media/characters/sprisk/front.svg",
  23989. extra: 1225 / 1180,
  23990. bottom: 42.7 / 1266.4
  23991. }
  23992. },
  23993. frontNsfw: {
  23994. height: math.unit(5 + 9 / 12, "feet"),
  23995. weight: math.unit(190, "lb"),
  23996. name: "Front (NSFW)",
  23997. image: {
  23998. source: "./media/characters/sprisk/front-nsfw.svg",
  23999. extra: 1225 / 1180,
  24000. bottom: 42.7 / 1266.4
  24001. }
  24002. },
  24003. back: {
  24004. height: math.unit(5 + 9 / 12, "feet"),
  24005. weight: math.unit(190, "lb"),
  24006. name: "Back",
  24007. image: {
  24008. source: "./media/characters/sprisk/back.svg",
  24009. extra: 1247 / 1200,
  24010. bottom: 5.6 / 1253.04
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Tiny",
  24017. height: math.unit(2, "inches")
  24018. },
  24019. {
  24020. name: "Normal",
  24021. height: math.unit(5 + 9 / 12, "feet"),
  24022. default: true
  24023. },
  24024. {
  24025. name: "Mini Macro",
  24026. height: math.unit(18, "feet")
  24027. },
  24028. {
  24029. name: "Macro",
  24030. height: math.unit(100, "feet")
  24031. },
  24032. {
  24033. name: "MACRO",
  24034. height: math.unit(50, "miles")
  24035. },
  24036. {
  24037. name: "M A C R O",
  24038. height: math.unit(300, "miles")
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24044. {
  24045. side: {
  24046. height: math.unit(15.6, "meters"),
  24047. weight: math.unit(700000, "kg"),
  24048. name: "Side",
  24049. image: {
  24050. source: "./media/characters/bunsen/side.svg",
  24051. extra: 1644 / 358
  24052. }
  24053. },
  24054. foot: {
  24055. height: math.unit(1.611 * 1644 / 358, "meter"),
  24056. name: "Foot",
  24057. image: {
  24058. source: "./media/characters/bunsen/foot.svg"
  24059. }
  24060. },
  24061. },
  24062. [
  24063. {
  24064. name: "Small",
  24065. height: math.unit(10, "feet")
  24066. },
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(15.6, "meters"),
  24070. default: true
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24076. {
  24077. front: {
  24078. height: math.unit(4 + 11 / 12, "feet"),
  24079. weight: math.unit(140, "lb"),
  24080. name: "Front",
  24081. image: {
  24082. source: "./media/characters/sesh/front.svg",
  24083. extra: 3420 / 3231,
  24084. bottom: 72 / 3949.5
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Normal",
  24091. height: math.unit(4 + 11 / 12, "feet")
  24092. },
  24093. {
  24094. name: "Grown",
  24095. height: math.unit(15, "feet"),
  24096. default: true
  24097. },
  24098. {
  24099. name: "Macro",
  24100. height: math.unit(1500, "feet")
  24101. },
  24102. {
  24103. name: "Megamacro",
  24104. height: math.unit(30, "miles")
  24105. },
  24106. {
  24107. name: "Continental",
  24108. height: math.unit(3000, "miles")
  24109. },
  24110. {
  24111. name: "Gravity Mass",
  24112. height: math.unit(300000, "miles")
  24113. },
  24114. {
  24115. name: "Planet Buster",
  24116. height: math.unit(30000000, "miles")
  24117. },
  24118. {
  24119. name: "Big",
  24120. height: math.unit(3000000000, "miles")
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24126. {
  24127. front: {
  24128. height: math.unit(9, "feet"),
  24129. weight: math.unit(350, "lb"),
  24130. name: "Front",
  24131. image: {
  24132. source: "./media/characters/pepper/front.svg",
  24133. extra: 1448 / 1312,
  24134. bottom: 9.4 / 1457.88
  24135. }
  24136. },
  24137. back: {
  24138. height: math.unit(9, "feet"),
  24139. weight: math.unit(350, "lb"),
  24140. name: "Back",
  24141. image: {
  24142. source: "./media/characters/pepper/back.svg",
  24143. extra: 1423 / 1300,
  24144. bottom: 4.6 / 1429
  24145. }
  24146. },
  24147. maw: {
  24148. height: math.unit(0.932, "feet"),
  24149. name: "Maw",
  24150. image: {
  24151. source: "./media/characters/pepper/maw.svg"
  24152. }
  24153. },
  24154. },
  24155. [
  24156. {
  24157. name: "Normal",
  24158. height: math.unit(9, "feet"),
  24159. default: true
  24160. },
  24161. ]
  24162. ))
  24163. characterMakers.push(() => makeCharacter(
  24164. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24165. {
  24166. front: {
  24167. height: math.unit(6, "feet"),
  24168. weight: math.unit(150, "lb"),
  24169. name: "Front",
  24170. image: {
  24171. source: "./media/characters/maelstrom/front.svg",
  24172. extra: 2100 / 1883,
  24173. bottom: 94 / 2196.7
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Less Kaiju",
  24180. height: math.unit(200, "feet")
  24181. },
  24182. {
  24183. name: "Kaiju",
  24184. height: math.unit(400, "feet"),
  24185. default: true
  24186. },
  24187. {
  24188. name: "Kaiju-er",
  24189. height: math.unit(600, "feet")
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(6 + 5 / 12, "feet"),
  24198. weight: math.unit(180, "lb"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/lexir/front.svg",
  24202. extra: 180 / 172,
  24203. bottom: 12 / 192
  24204. }
  24205. },
  24206. back: {
  24207. height: math.unit(6 + 5 / 12, "feet"),
  24208. weight: math.unit(180, "lb"),
  24209. name: "Back",
  24210. image: {
  24211. source: "./media/characters/lexir/back.svg",
  24212. extra: 1273/1201,
  24213. bottom: 39/1312
  24214. }
  24215. },
  24216. },
  24217. [
  24218. {
  24219. name: "Very Smal",
  24220. height: math.unit(1, "nm")
  24221. },
  24222. {
  24223. name: "Normal",
  24224. height: math.unit(6 + 5 / 12, "feet"),
  24225. default: true
  24226. },
  24227. {
  24228. name: "Macro",
  24229. height: math.unit(1, "mile")
  24230. },
  24231. {
  24232. name: "Megamacro",
  24233. height: math.unit(50, "miles")
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(1.5, "meters"),
  24242. weight: math.unit(100, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/maksio/front.svg",
  24246. extra: 1549 / 1531,
  24247. bottom: 123.7 / 1674.5429
  24248. }
  24249. },
  24250. back: {
  24251. height: math.unit(1.5, "meters"),
  24252. weight: math.unit(100, "lb"),
  24253. name: "Back",
  24254. image: {
  24255. source: "./media/characters/maksio/back.svg",
  24256. extra: 1541 / 1509,
  24257. bottom: 97 / 1639
  24258. }
  24259. },
  24260. hand: {
  24261. height: math.unit(0.621, "feet"),
  24262. name: "Hand",
  24263. image: {
  24264. source: "./media/characters/maksio/hand.svg"
  24265. }
  24266. },
  24267. foot: {
  24268. height: math.unit(1.611, "feet"),
  24269. name: "Foot",
  24270. image: {
  24271. source: "./media/characters/maksio/foot.svg"
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Shrunken",
  24278. height: math.unit(10, "cm")
  24279. },
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(150, "cm"),
  24283. default: true
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(100, "feet"),
  24292. name: "Front",
  24293. image: {
  24294. source: "./media/characters/erza-bear/front.svg",
  24295. extra: 2449 / 2390,
  24296. bottom: 46 / 2494
  24297. }
  24298. },
  24299. back: {
  24300. height: math.unit(100, "feet"),
  24301. name: "Back",
  24302. image: {
  24303. source: "./media/characters/erza-bear/back.svg",
  24304. extra: 2489 / 2430,
  24305. bottom: 85.4 / 2480
  24306. }
  24307. },
  24308. tail: {
  24309. height: math.unit(42, "feet"),
  24310. name: "Tail",
  24311. image: {
  24312. source: "./media/characters/erza-bear/tail.svg"
  24313. }
  24314. },
  24315. tongue: {
  24316. height: math.unit(8, "feet"),
  24317. name: "Tongue",
  24318. image: {
  24319. source: "./media/characters/erza-bear/tongue.svg"
  24320. }
  24321. },
  24322. dick: {
  24323. height: math.unit(10.5, "feet"),
  24324. name: "Dick",
  24325. image: {
  24326. source: "./media/characters/erza-bear/dick.svg"
  24327. }
  24328. },
  24329. dickVertical: {
  24330. height: math.unit(16.9, "feet"),
  24331. name: "Dick (Vertical)",
  24332. image: {
  24333. source: "./media/characters/erza-bear/dick-vertical.svg"
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Macro",
  24340. height: math.unit(100, "feet"),
  24341. default: true
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24347. {
  24348. front: {
  24349. height: math.unit(172, "cm"),
  24350. weight: math.unit(73, "kg"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/violet-flor/front.svg",
  24354. extra: 1530 / 1442,
  24355. bottom: 61.9 / 1588.8
  24356. }
  24357. },
  24358. back: {
  24359. height: math.unit(180, "cm"),
  24360. weight: math.unit(73, "kg"),
  24361. name: "Back",
  24362. image: {
  24363. source: "./media/characters/violet-flor/back.svg",
  24364. extra: 1692 / 1630,
  24365. bottom: 20 / 1712
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(172, "cm"),
  24373. default: true
  24374. },
  24375. ]
  24376. ))
  24377. characterMakers.push(() => makeCharacter(
  24378. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24379. {
  24380. front: {
  24381. height: math.unit(6, "feet"),
  24382. weight: math.unit(220, "lb"),
  24383. name: "Front",
  24384. image: {
  24385. source: "./media/characters/lynn-rhea/front.svg",
  24386. extra: 310 / 273
  24387. }
  24388. },
  24389. back: {
  24390. height: math.unit(6, "feet"),
  24391. weight: math.unit(220, "lb"),
  24392. name: "Back",
  24393. image: {
  24394. source: "./media/characters/lynn-rhea/back.svg",
  24395. extra: 310 / 273
  24396. }
  24397. },
  24398. dicks: {
  24399. height: math.unit(0.9, "feet"),
  24400. name: "Dicks",
  24401. image: {
  24402. source: "./media/characters/lynn-rhea/dicks.svg"
  24403. }
  24404. },
  24405. slit: {
  24406. height: math.unit(0.4, "feet"),
  24407. name: "Slit",
  24408. image: {
  24409. source: "./media/characters/lynn-rhea/slit.svg"
  24410. }
  24411. },
  24412. },
  24413. [
  24414. {
  24415. name: "Micro",
  24416. height: math.unit(1, "inch")
  24417. },
  24418. {
  24419. name: "Macro",
  24420. height: math.unit(60, "feet"),
  24421. default: true
  24422. },
  24423. {
  24424. name: "Megamacro",
  24425. height: math.unit(2, "miles")
  24426. },
  24427. {
  24428. name: "Gigamacro",
  24429. height: math.unit(3, "earths")
  24430. },
  24431. {
  24432. name: "Galactic",
  24433. height: math.unit(0.8, "galaxies")
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24439. {
  24440. front: {
  24441. height: math.unit(1600, "feet"),
  24442. weight: math.unit(85758785169, "kg"),
  24443. name: "Front",
  24444. image: {
  24445. source: "./media/characters/valathos/front.svg",
  24446. extra: 1451 / 1339
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Macro",
  24453. height: math.unit(1600, "feet"),
  24454. default: true
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24460. {
  24461. front: {
  24462. height: math.unit(7 + 5 / 12, "feet"),
  24463. weight: math.unit(300, "lb"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/azula/front.svg",
  24467. extra: 3208 / 2880,
  24468. bottom: 80.2 / 3277
  24469. }
  24470. },
  24471. back: {
  24472. height: math.unit(7 + 5 / 12, "feet"),
  24473. weight: math.unit(300, "lb"),
  24474. name: "Back",
  24475. image: {
  24476. source: "./media/characters/azula/back.svg",
  24477. extra: 3169 / 2822,
  24478. bottom: 150.6 / 3321
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Normal",
  24485. height: math.unit(7 + 5 / 12, "feet"),
  24486. default: true
  24487. },
  24488. {
  24489. name: "Big",
  24490. height: math.unit(20, "feet")
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(5 + 1 / 12, "feet"),
  24499. weight: math.unit(110, "lb"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/rupert/front.svg",
  24503. extra: 1549 / 1495,
  24504. bottom: 54.2 / 1604.4
  24505. }
  24506. },
  24507. },
  24508. [
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(5 + 1 / 12, "feet"),
  24512. default: true
  24513. },
  24514. ]
  24515. ))
  24516. characterMakers.push(() => makeCharacter(
  24517. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24518. {
  24519. front: {
  24520. height: math.unit(8 + 4 / 12, "feet"),
  24521. weight: math.unit(350, "lb"),
  24522. name: "Front",
  24523. image: {
  24524. source: "./media/characters/sheera-castellar/front.svg",
  24525. extra: 1957 / 1894,
  24526. bottom: 26.97 / 1975.017
  24527. }
  24528. },
  24529. side: {
  24530. height: math.unit(8 + 4 / 12, "feet"),
  24531. weight: math.unit(350, "lb"),
  24532. name: "Side",
  24533. image: {
  24534. source: "./media/characters/sheera-castellar/side.svg",
  24535. extra: 1957 / 1894
  24536. }
  24537. },
  24538. back: {
  24539. height: math.unit(8 + 4 / 12, "feet"),
  24540. weight: math.unit(350, "lb"),
  24541. name: "Back",
  24542. image: {
  24543. source: "./media/characters/sheera-castellar/back.svg",
  24544. extra: 1957 / 1894
  24545. }
  24546. },
  24547. angled: {
  24548. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24549. weight: math.unit(350, "lb"),
  24550. name: "Angled",
  24551. image: {
  24552. source: "./media/characters/sheera-castellar/angled.svg",
  24553. extra: 1807 / 1707,
  24554. bottom: 68 / 1875
  24555. }
  24556. },
  24557. genitals: {
  24558. height: math.unit(2.2, "feet"),
  24559. name: "Genitals",
  24560. image: {
  24561. source: "./media/characters/sheera-castellar/genitals.svg"
  24562. }
  24563. },
  24564. taur: {
  24565. height: math.unit(10 + 6/12, "feet"),
  24566. name: "Taur",
  24567. image: {
  24568. source: "./media/characters/sheera-castellar/taur.svg",
  24569. extra: 2017/1909,
  24570. bottom: 185/2202
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Normal",
  24577. height: math.unit(8 + 4 / 12, "feet")
  24578. },
  24579. {
  24580. name: "Macro",
  24581. height: math.unit(150, "feet"),
  24582. default: true
  24583. },
  24584. {
  24585. name: "Macro+",
  24586. height: math.unit(800, "feet")
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24592. {
  24593. front: {
  24594. height: math.unit(6, "feet"),
  24595. weight: math.unit(150, "lb"),
  24596. name: "Front",
  24597. image: {
  24598. source: "./media/characters/jaipur/front.svg",
  24599. extra: 3860 / 3731,
  24600. bottom: 287 / 4140
  24601. }
  24602. },
  24603. back: {
  24604. height: math.unit(6, "feet"),
  24605. weight: math.unit(150, "lb"),
  24606. name: "Back",
  24607. image: {
  24608. source: "./media/characters/jaipur/back.svg",
  24609. extra: 1637/1561,
  24610. bottom: 154/1791
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Normal",
  24617. height: math.unit(1.85, "meters"),
  24618. default: true
  24619. },
  24620. {
  24621. name: "Macro",
  24622. height: math.unit(150, "meters")
  24623. },
  24624. {
  24625. name: "Macro+",
  24626. height: math.unit(0.5, "miles")
  24627. },
  24628. {
  24629. name: "Macro++",
  24630. height: math.unit(2.5, "miles")
  24631. },
  24632. {
  24633. name: "Macro+++",
  24634. height: math.unit(12, "miles")
  24635. },
  24636. {
  24637. name: "Macro++++",
  24638. height: math.unit(120, "miles")
  24639. },
  24640. {
  24641. name: "Macro+++++",
  24642. height: math.unit(1200, "miles")
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24648. {
  24649. front: {
  24650. height: math.unit(6, "feet"),
  24651. weight: math.unit(150, "lb"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/sheila-wolf/front.svg",
  24655. extra: 1931 / 1808,
  24656. bottom: 29.5 / 1960
  24657. }
  24658. },
  24659. dick: {
  24660. height: math.unit(1.464, "feet"),
  24661. name: "Dick",
  24662. image: {
  24663. source: "./media/characters/sheila-wolf/dick.svg"
  24664. }
  24665. },
  24666. muzzle: {
  24667. height: math.unit(0.513, "feet"),
  24668. name: "Muzzle",
  24669. image: {
  24670. source: "./media/characters/sheila-wolf/muzzle.svg"
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Macro",
  24677. height: math.unit(70, "feet"),
  24678. default: true
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24684. {
  24685. front: {
  24686. height: math.unit(32, "meters"),
  24687. weight: math.unit(300000, "kg"),
  24688. name: "Front",
  24689. image: {
  24690. source: "./media/characters/almor/front.svg",
  24691. extra: 1408 / 1322,
  24692. bottom: 94.6 / 1506.5
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Macro",
  24699. height: math.unit(32, "meters"),
  24700. default: true
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(7, "feet"),
  24709. weight: math.unit(200, "lb"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/silver/front.svg",
  24713. extra: 472.1 / 450.5,
  24714. bottom: 26.5 / 499.424
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(7, "feet"),
  24722. default: true
  24723. },
  24724. {
  24725. name: "Macro",
  24726. height: math.unit(800, "feet")
  24727. },
  24728. {
  24729. name: "Megamacro",
  24730. height: math.unit(250, "miles")
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24736. {
  24737. front: {
  24738. height: math.unit(6, "feet"),
  24739. weight: math.unit(150, "lb"),
  24740. name: "Front",
  24741. image: {
  24742. source: "./media/characters/pliskin/front.svg",
  24743. extra: 1469 / 1359,
  24744. bottom: 70 / 1540
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Micro",
  24751. height: math.unit(3, "inches")
  24752. },
  24753. {
  24754. name: "Normal",
  24755. height: math.unit(5 + 11 / 12, "feet"),
  24756. default: true
  24757. },
  24758. {
  24759. name: "Macro",
  24760. height: math.unit(120, "feet")
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24766. {
  24767. front: {
  24768. height: math.unit(6, "feet"),
  24769. weight: math.unit(150, "lb"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/sammy/front.svg",
  24773. extra: 1193 / 1089,
  24774. bottom: 30.5 / 1226
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Macro",
  24781. height: math.unit(1700, "feet"),
  24782. default: true
  24783. },
  24784. {
  24785. name: "Examacro",
  24786. height: math.unit(2.5e9, "lightyears")
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(21, "meters"),
  24795. weight: math.unit(12, "tonnes"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/kuru/front.svg",
  24799. extra: 4301 / 3785,
  24800. bottom: 371.3 / 4691
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Macro",
  24807. height: math.unit(21, "meters"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(23, "meters"),
  24817. weight: math.unit(12.2, "tonnes"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/rakka/front.svg",
  24821. extra: 4670 / 4169,
  24822. bottom: 301 / 4968.7
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(23, "meters"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(6, "feet"),
  24839. weight: math.unit(150, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/rhys-feline/front.svg",
  24843. extra: 2488 / 2308,
  24844. bottom: 35.67 / 2519.19
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Really Small",
  24851. height: math.unit(1, "nm")
  24852. },
  24853. {
  24854. name: "Micro",
  24855. height: math.unit(4, "inches")
  24856. },
  24857. {
  24858. name: "Normal",
  24859. height: math.unit(4 + 10 / 12, "feet"),
  24860. default: true
  24861. },
  24862. {
  24863. name: "Macro",
  24864. height: math.unit(100, "feet")
  24865. },
  24866. {
  24867. name: "Megamacto",
  24868. height: math.unit(50, "miles")
  24869. },
  24870. ]
  24871. ))
  24872. characterMakers.push(() => makeCharacter(
  24873. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24874. {
  24875. side: {
  24876. height: math.unit(30, "feet"),
  24877. weight: math.unit(35000, "kg"),
  24878. name: "Side",
  24879. image: {
  24880. source: "./media/characters/alydar/side.svg",
  24881. extra: 234 / 222,
  24882. bottom: 6.5 / 241
  24883. }
  24884. },
  24885. front: {
  24886. height: math.unit(30, "feet"),
  24887. weight: math.unit(35000, "kg"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/alydar/front.svg",
  24891. extra: 223.37 / 210.2,
  24892. bottom: 22.3 / 246.76
  24893. }
  24894. },
  24895. top: {
  24896. height: math.unit(64.54, "feet"),
  24897. weight: math.unit(35000, "kg"),
  24898. name: "Top",
  24899. image: {
  24900. source: "./media/characters/alydar/top.svg"
  24901. }
  24902. },
  24903. anthro: {
  24904. height: math.unit(30, "feet"),
  24905. weight: math.unit(9000, "kg"),
  24906. name: "Anthro",
  24907. image: {
  24908. source: "./media/characters/alydar/anthro.svg",
  24909. extra: 432 / 421,
  24910. bottom: 7.18 / 440
  24911. }
  24912. },
  24913. maw: {
  24914. height: math.unit(11.693, "feet"),
  24915. name: "Maw",
  24916. image: {
  24917. source: "./media/characters/alydar/maw.svg"
  24918. }
  24919. },
  24920. head: {
  24921. height: math.unit(11.693, "feet"),
  24922. name: "Head",
  24923. image: {
  24924. source: "./media/characters/alydar/head.svg"
  24925. }
  24926. },
  24927. headAlt: {
  24928. height: math.unit(12.861, "feet"),
  24929. name: "Head (Alt)",
  24930. image: {
  24931. source: "./media/characters/alydar/head-alt.svg"
  24932. }
  24933. },
  24934. wing: {
  24935. height: math.unit(20.712, "feet"),
  24936. name: "Wing",
  24937. image: {
  24938. source: "./media/characters/alydar/wing.svg"
  24939. }
  24940. },
  24941. wingFeather: {
  24942. height: math.unit(9.662, "feet"),
  24943. name: "Wing Feather",
  24944. image: {
  24945. source: "./media/characters/alydar/wing-feather.svg"
  24946. }
  24947. },
  24948. countourFeather: {
  24949. height: math.unit(4.154, "feet"),
  24950. name: "Contour Feather",
  24951. image: {
  24952. source: "./media/characters/alydar/contour-feather.svg"
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Diplomatic",
  24959. height: math.unit(13, "feet"),
  24960. default: true
  24961. },
  24962. {
  24963. name: "Small",
  24964. height: math.unit(30, "feet")
  24965. },
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(95, "feet"),
  24969. default: true
  24970. },
  24971. {
  24972. name: "Large",
  24973. height: math.unit(285, "feet")
  24974. },
  24975. {
  24976. name: "Incomprehensible",
  24977. height: math.unit(450, "megameters")
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24983. {
  24984. side: {
  24985. height: math.unit(11, "feet"),
  24986. weight: math.unit(1750, "kg"),
  24987. name: "Side",
  24988. image: {
  24989. source: "./media/characters/selicia/side.svg",
  24990. extra: 440 / 396,
  24991. bottom: 24.8 / 465.979
  24992. }
  24993. },
  24994. maw: {
  24995. height: math.unit(4.665, "feet"),
  24996. name: "Maw",
  24997. image: {
  24998. source: "./media/characters/selicia/maw.svg"
  24999. }
  25000. },
  25001. },
  25002. [
  25003. {
  25004. name: "Normal",
  25005. height: math.unit(11, "feet"),
  25006. default: true
  25007. },
  25008. ]
  25009. ))
  25010. characterMakers.push(() => makeCharacter(
  25011. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25012. {
  25013. side: {
  25014. height: math.unit(2 + 6 / 12, "feet"),
  25015. weight: math.unit(30, "lb"),
  25016. name: "Side",
  25017. image: {
  25018. source: "./media/characters/layla/side.svg",
  25019. extra: 244 / 188,
  25020. bottom: 18.2 / 262.1
  25021. }
  25022. },
  25023. back: {
  25024. height: math.unit(2 + 6 / 12, "feet"),
  25025. weight: math.unit(30, "lb"),
  25026. name: "Back",
  25027. image: {
  25028. source: "./media/characters/layla/back.svg",
  25029. extra: 308 / 241.5,
  25030. bottom: 8.9 / 316.8
  25031. }
  25032. },
  25033. cumming: {
  25034. height: math.unit(2 + 6 / 12, "feet"),
  25035. weight: math.unit(30, "lb"),
  25036. name: "Cumming",
  25037. image: {
  25038. source: "./media/characters/layla/cumming.svg",
  25039. extra: 342 / 279,
  25040. bottom: 595 / 938
  25041. }
  25042. },
  25043. dickFlaccid: {
  25044. height: math.unit(2.595, "feet"),
  25045. name: "Flaccid Genitals",
  25046. image: {
  25047. source: "./media/characters/layla/dick-flaccid.svg"
  25048. }
  25049. },
  25050. dickErect: {
  25051. height: math.unit(2.359, "feet"),
  25052. name: "Erect Genitals",
  25053. image: {
  25054. source: "./media/characters/layla/dick-erect.svg"
  25055. }
  25056. },
  25057. dragon: {
  25058. height: math.unit(40, "feet"),
  25059. name: "Dragon",
  25060. image: {
  25061. source: "./media/characters/layla/dragon.svg",
  25062. extra: 610/535,
  25063. bottom: 367/977
  25064. }
  25065. },
  25066. taur: {
  25067. height: math.unit(30, "feet"),
  25068. name: "Taur",
  25069. image: {
  25070. source: "./media/characters/layla/taur.svg",
  25071. extra: 1268/1199,
  25072. bottom: 112/1380
  25073. }
  25074. },
  25075. },
  25076. [
  25077. {
  25078. name: "Micro",
  25079. height: math.unit(1, "inch")
  25080. },
  25081. {
  25082. name: "Small",
  25083. height: math.unit(1, "foot")
  25084. },
  25085. {
  25086. name: "Normal",
  25087. height: math.unit(2 + 6 / 12, "feet"),
  25088. default: true
  25089. },
  25090. {
  25091. name: "Macro",
  25092. height: math.unit(200, "feet")
  25093. },
  25094. {
  25095. name: "Megamacro",
  25096. height: math.unit(1000, "miles")
  25097. },
  25098. {
  25099. name: "Planetary",
  25100. height: math.unit(8000, "miles")
  25101. },
  25102. {
  25103. name: "True Layla",
  25104. height: math.unit(200000 * 7, "multiverses")
  25105. },
  25106. ]
  25107. ))
  25108. characterMakers.push(() => makeCharacter(
  25109. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25110. {
  25111. back: {
  25112. height: math.unit(10.5, "feet"),
  25113. weight: math.unit(800, "lb"),
  25114. name: "Back",
  25115. image: {
  25116. source: "./media/characters/knox/back.svg",
  25117. extra: 1486 / 1089,
  25118. bottom: 107 / 1601.4
  25119. }
  25120. },
  25121. side: {
  25122. height: math.unit(10.5, "feet"),
  25123. weight: math.unit(800, "lb"),
  25124. name: "Side",
  25125. image: {
  25126. source: "./media/characters/knox/side.svg",
  25127. extra: 244 / 218,
  25128. bottom: 14 / 260
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Compact",
  25135. height: math.unit(10.5, "feet"),
  25136. default: true
  25137. },
  25138. {
  25139. name: "Dynamax",
  25140. height: math.unit(210, "feet")
  25141. },
  25142. {
  25143. name: "Full Macro",
  25144. height: math.unit(850, "feet")
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(28, "feet"),
  25153. weight: math.unit(10500, "lb"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/kayda/front.svg",
  25157. extra: 1536 / 1428,
  25158. bottom: 68.7 / 1603
  25159. }
  25160. },
  25161. back: {
  25162. height: math.unit(28, "feet"),
  25163. weight: math.unit(10500, "lb"),
  25164. name: "Back",
  25165. image: {
  25166. source: "./media/characters/kayda/back.svg",
  25167. extra: 1557 / 1464,
  25168. bottom: 39.5 / 1597.49
  25169. }
  25170. },
  25171. dick: {
  25172. height: math.unit(3.858, "feet"),
  25173. name: "Dick",
  25174. image: {
  25175. source: "./media/characters/kayda/dick.svg"
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Macro",
  25182. height: math.unit(28, "feet"),
  25183. default: true
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(10 + 11 / 12, "feet"),
  25192. weight: math.unit(1400, "lb"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/brian/front.svg",
  25196. extra: 737 / 692,
  25197. bottom: 55.4 / 785
  25198. }
  25199. },
  25200. },
  25201. [
  25202. {
  25203. name: "Normal",
  25204. height: math.unit(10 + 11 / 12, "feet"),
  25205. default: true
  25206. },
  25207. ]
  25208. ))
  25209. characterMakers.push(() => makeCharacter(
  25210. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25211. {
  25212. front: {
  25213. height: math.unit(5 + 8 / 12, "feet"),
  25214. weight: math.unit(140, "lb"),
  25215. name: "Front",
  25216. image: {
  25217. source: "./media/characters/khemri/front.svg",
  25218. extra: 4780 / 4059,
  25219. bottom: 80.1 / 4859.25
  25220. }
  25221. },
  25222. },
  25223. [
  25224. {
  25225. name: "Micro",
  25226. height: math.unit(6, "inches")
  25227. },
  25228. {
  25229. name: "Normal",
  25230. height: math.unit(5 + 8 / 12, "feet"),
  25231. default: true
  25232. },
  25233. ]
  25234. ))
  25235. characterMakers.push(() => makeCharacter(
  25236. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25237. {
  25238. front: {
  25239. height: math.unit(13, "feet"),
  25240. weight: math.unit(1700, "lb"),
  25241. name: "Front",
  25242. image: {
  25243. source: "./media/characters/felix-braveheart/front.svg",
  25244. extra: 1222 / 1157,
  25245. bottom: 53.2 / 1280
  25246. }
  25247. },
  25248. back: {
  25249. height: math.unit(13, "feet"),
  25250. weight: math.unit(1700, "lb"),
  25251. name: "Back",
  25252. image: {
  25253. source: "./media/characters/felix-braveheart/back.svg",
  25254. extra: 1277 / 1203,
  25255. bottom: 50.2 / 1327
  25256. }
  25257. },
  25258. feral: {
  25259. height: math.unit(6, "feet"),
  25260. weight: math.unit(400, "lb"),
  25261. name: "Feral",
  25262. image: {
  25263. source: "./media/characters/felix-braveheart/feral.svg",
  25264. extra: 682 / 625,
  25265. bottom: 6.9 / 688
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(13, "feet"),
  25273. default: true
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25279. {
  25280. side: {
  25281. height: math.unit(5 + 11 / 12, "feet"),
  25282. weight: math.unit(1400, "lb"),
  25283. name: "Side",
  25284. image: {
  25285. source: "./media/characters/shadow-blade/side.svg",
  25286. extra: 1726 / 1267,
  25287. bottom: 58.4 / 1785
  25288. }
  25289. },
  25290. },
  25291. [
  25292. {
  25293. name: "Normal",
  25294. height: math.unit(5 + 11 / 12, "feet"),
  25295. default: true
  25296. },
  25297. ]
  25298. ))
  25299. characterMakers.push(() => makeCharacter(
  25300. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25301. {
  25302. front: {
  25303. height: math.unit(1 + 6 / 12, "feet"),
  25304. weight: math.unit(25, "lb"),
  25305. name: "Front",
  25306. image: {
  25307. source: "./media/characters/karla-halldor/front.svg",
  25308. extra: 1459 / 1383,
  25309. bottom: 12 / 1472
  25310. }
  25311. },
  25312. },
  25313. [
  25314. {
  25315. name: "Normal",
  25316. height: math.unit(1 + 6 / 12, "feet"),
  25317. default: true
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(6 + 2 / 12, "feet"),
  25326. weight: math.unit(160, "lb"),
  25327. name: "Front",
  25328. image: {
  25329. source: "./media/characters/ariam/front.svg",
  25330. extra: 1073/976,
  25331. bottom: 52/1125
  25332. }
  25333. },
  25334. back: {
  25335. height: math.unit(6 + 2/12, "feet"),
  25336. weight: math.unit(160, "lb"),
  25337. name: "Back",
  25338. image: {
  25339. source: "./media/characters/ariam/back.svg",
  25340. extra: 1103/1023,
  25341. bottom: 9/1112
  25342. }
  25343. },
  25344. dressed: {
  25345. height: math.unit(6 + 2/12, "feet"),
  25346. weight: math.unit(160, "lb"),
  25347. name: "Dressed",
  25348. image: {
  25349. source: "./media/characters/ariam/dressed.svg",
  25350. extra: 1099/1009,
  25351. bottom: 25/1124
  25352. }
  25353. },
  25354. squatting: {
  25355. height: math.unit(4.1, "feet"),
  25356. weight: math.unit(160, "lb"),
  25357. name: "Squatting",
  25358. image: {
  25359. source: "./media/characters/ariam/squatting.svg",
  25360. extra: 2617 / 2112,
  25361. bottom: 61.2 / 2681,
  25362. }
  25363. },
  25364. },
  25365. [
  25366. {
  25367. name: "Normal",
  25368. height: math.unit(6 + 2 / 12, "feet"),
  25369. default: true
  25370. },
  25371. {
  25372. name: "Normal+",
  25373. height: math.unit(4, "meters")
  25374. },
  25375. {
  25376. name: "Macro",
  25377. height: math.unit(50, "meters")
  25378. },
  25379. {
  25380. name: "Macro+",
  25381. height: math.unit(100, "meters")
  25382. },
  25383. {
  25384. name: "Megamacro",
  25385. height: math.unit(20, "km")
  25386. },
  25387. {
  25388. name: "Caretaker",
  25389. height: math.unit(444, "megameters")
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(1.67, "meters"),
  25398. weight: math.unit(140, "lb"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25402. extra: 438 / 410,
  25403. bottom: 0.75 / 439
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Shrunken",
  25410. height: math.unit(7.6, "cm")
  25411. },
  25412. {
  25413. name: "Human Scale",
  25414. height: math.unit(1.67, "meters")
  25415. },
  25416. {
  25417. name: "Wolxi Scale",
  25418. height: math.unit(36.7, "meters"),
  25419. default: true
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(1.73, "meters"),
  25428. weight: math.unit(240, "lb"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/izue-two-mothers/front.svg",
  25432. extra: 469 / 437,
  25433. bottom: 1.24 / 470.6
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Shrunken",
  25440. height: math.unit(7.86, "cm")
  25441. },
  25442. {
  25443. name: "Human Scale",
  25444. height: math.unit(1.73, "meters")
  25445. },
  25446. {
  25447. name: "Wolxi Scale",
  25448. height: math.unit(38, "meters"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(1.55, "meters"),
  25458. weight: math.unit(120, "lb"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/teeku-love-shack/front.svg",
  25462. extra: 387 / 362,
  25463. bottom: 1.51 / 388
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Shrunken",
  25470. height: math.unit(7, "cm")
  25471. },
  25472. {
  25473. name: "Human Scale",
  25474. height: math.unit(1.55, "meters")
  25475. },
  25476. {
  25477. name: "Wolxi Scale",
  25478. height: math.unit(34.1, "meters"),
  25479. default: true
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(1.83, "meters"),
  25488. weight: math.unit(135, "lb"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/dejma-the-red/front.svg",
  25492. extra: 480 / 458,
  25493. bottom: 1.8 / 482
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Shrunken",
  25500. height: math.unit(8.3, "cm")
  25501. },
  25502. {
  25503. name: "Human Scale",
  25504. height: math.unit(1.83, "meters")
  25505. },
  25506. {
  25507. name: "Wolxi Scale",
  25508. height: math.unit(40, "meters"),
  25509. default: true
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(1.78, "meters"),
  25518. weight: math.unit(65, "kg"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/aki/front.svg",
  25522. extra: 452 / 415
  25523. }
  25524. },
  25525. frontNsfw: {
  25526. height: math.unit(1.78, "meters"),
  25527. weight: math.unit(65, "kg"),
  25528. name: "Front (NSFW)",
  25529. image: {
  25530. source: "./media/characters/aki/front-nsfw.svg",
  25531. extra: 452 / 415
  25532. }
  25533. },
  25534. back: {
  25535. height: math.unit(1.78, "meters"),
  25536. weight: math.unit(65, "kg"),
  25537. name: "Back",
  25538. image: {
  25539. source: "./media/characters/aki/back.svg",
  25540. extra: 452 / 415
  25541. }
  25542. },
  25543. rump: {
  25544. height: math.unit(2.05, "feet"),
  25545. name: "Rump",
  25546. image: {
  25547. source: "./media/characters/aki/rump.svg"
  25548. }
  25549. },
  25550. dick: {
  25551. height: math.unit(0.95, "feet"),
  25552. name: "Dick",
  25553. image: {
  25554. source: "./media/characters/aki/dick.svg"
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Micro",
  25561. height: math.unit(15, "cm")
  25562. },
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(178, "cm"),
  25566. default: true
  25567. },
  25568. {
  25569. name: "Macro",
  25570. height: math.unit(214, "m")
  25571. },
  25572. {
  25573. name: "Macro+",
  25574. height: math.unit(534, "m")
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25580. {
  25581. front: {
  25582. height: math.unit(5 + 5 / 12, "feet"),
  25583. weight: math.unit(120, "lb"),
  25584. name: "Front",
  25585. image: {
  25586. source: "./media/characters/ari/front.svg",
  25587. extra: 1550/1471,
  25588. bottom: 39/1589
  25589. }
  25590. },
  25591. },
  25592. [
  25593. {
  25594. name: "Normal",
  25595. height: math.unit(5 + 5 / 12, "feet")
  25596. },
  25597. {
  25598. name: "Macro",
  25599. height: math.unit(100, "feet"),
  25600. default: true
  25601. },
  25602. {
  25603. name: "Megamacro",
  25604. height: math.unit(100, "miles")
  25605. },
  25606. {
  25607. name: "Gigamacro",
  25608. height: math.unit(80000, "miles")
  25609. },
  25610. ]
  25611. ))
  25612. characterMakers.push(() => makeCharacter(
  25613. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25614. {
  25615. side: {
  25616. height: math.unit(9, "feet"),
  25617. weight: math.unit(400, "kg"),
  25618. name: "Side",
  25619. image: {
  25620. source: "./media/characters/bolt/side.svg",
  25621. extra: 1126 / 896,
  25622. bottom: 60 / 1187.3,
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Micro",
  25629. height: math.unit(5, "inches")
  25630. },
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(9, "feet"),
  25634. default: true
  25635. },
  25636. {
  25637. name: "Macro",
  25638. height: math.unit(700, "feet")
  25639. },
  25640. {
  25641. name: "Max Size",
  25642. height: math.unit(1.52e22, "yottameters")
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25648. {
  25649. front: {
  25650. height: math.unit(4.3, "meters"),
  25651. weight: math.unit(3, "tons"),
  25652. name: "Front",
  25653. image: {
  25654. source: "./media/characters/draekon-sylviar/front.svg",
  25655. extra: 2072/1512,
  25656. bottom: 74/2146
  25657. }
  25658. },
  25659. back: {
  25660. height: math.unit(4.3, "meters"),
  25661. weight: math.unit(3, "tons"),
  25662. name: "Back",
  25663. image: {
  25664. source: "./media/characters/draekon-sylviar/back.svg",
  25665. extra: 1639/1483,
  25666. bottom: 41/1680
  25667. }
  25668. },
  25669. feral: {
  25670. height: math.unit(1.15, "meters"),
  25671. weight: math.unit(3, "tons"),
  25672. name: "Feral",
  25673. image: {
  25674. source: "./media/characters/draekon-sylviar/feral.svg",
  25675. extra: 1033/395,
  25676. bottom: 130/1163
  25677. }
  25678. },
  25679. maw: {
  25680. height: math.unit(1.3, "meters"),
  25681. name: "Maw",
  25682. image: {
  25683. source: "./media/characters/draekon-sylviar/maw.svg"
  25684. }
  25685. },
  25686. mawSeparated: {
  25687. height: math.unit(1.53, "meters"),
  25688. name: "Separated Maw",
  25689. image: {
  25690. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25691. }
  25692. },
  25693. tail: {
  25694. height: math.unit(1.15, "meters"),
  25695. name: "Tail",
  25696. image: {
  25697. source: "./media/characters/draekon-sylviar/tail.svg"
  25698. }
  25699. },
  25700. tailDick: {
  25701. height: math.unit(1.15, "meters"),
  25702. name: "Tail (Dick)",
  25703. image: {
  25704. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25705. }
  25706. },
  25707. tailDickSeparated: {
  25708. height: math.unit(1.19, "meters"),
  25709. name: "Tail (Separated Dick)",
  25710. image: {
  25711. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25712. }
  25713. },
  25714. slit: {
  25715. height: math.unit(1, "meters"),
  25716. name: "Slit",
  25717. image: {
  25718. source: "./media/characters/draekon-sylviar/slit.svg"
  25719. }
  25720. },
  25721. dick: {
  25722. height: math.unit(1.15, "meters"),
  25723. name: "Dick",
  25724. image: {
  25725. source: "./media/characters/draekon-sylviar/dick.svg"
  25726. }
  25727. },
  25728. dickSeparated: {
  25729. height: math.unit(1.1, "meters"),
  25730. name: "Separated Dick",
  25731. image: {
  25732. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25733. }
  25734. },
  25735. sheath: {
  25736. height: math.unit(1.15, "meters"),
  25737. name: "Sheath",
  25738. image: {
  25739. source: "./media/characters/draekon-sylviar/sheath.svg"
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Small",
  25746. height: math.unit(4.53 / 2, "meters"),
  25747. default: true
  25748. },
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(4.53, "meters"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Large",
  25756. height: math.unit(4.53 * 2, "meters"),
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(6 + 2 / 12, "feet"),
  25765. weight: math.unit(180, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/brawler/front.svg",
  25769. extra: 3301 / 3027,
  25770. bottom: 138 / 3439
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(6 + 2 / 12, "feet"),
  25778. default: true
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(11, "feet"),
  25787. weight: math.unit(1000, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/alex/front.svg",
  25791. bottom: 44.5 / 620
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Micro",
  25798. height: math.unit(5, "inches")
  25799. },
  25800. {
  25801. name: "Normal",
  25802. height: math.unit(11, "feet"),
  25803. default: true
  25804. },
  25805. {
  25806. name: "Macro",
  25807. height: math.unit(9.5e9, "feet")
  25808. },
  25809. {
  25810. name: "Max Size",
  25811. height: math.unit(1.4e283, "yottameters")
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25817. {
  25818. female: {
  25819. height: math.unit(29.9, "m"),
  25820. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25821. name: "Female",
  25822. image: {
  25823. source: "./media/characters/zenari/female.svg",
  25824. extra: 3281.6 / 3217,
  25825. bottom: 72.2 / 3353
  25826. }
  25827. },
  25828. male: {
  25829. height: math.unit(27.7, "m"),
  25830. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25831. name: "Male",
  25832. image: {
  25833. source: "./media/characters/zenari/male.svg",
  25834. extra: 3008 / 2991,
  25835. bottom: 54.6 / 3069
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Macro",
  25842. height: math.unit(29.7, "meters"),
  25843. default: true
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25849. {
  25850. female: {
  25851. height: math.unit(23.8, "m"),
  25852. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25853. name: "Female",
  25854. image: {
  25855. source: "./media/characters/mactarian/female.svg",
  25856. extra: 2662 / 2569,
  25857. bottom: 73 / 2736
  25858. }
  25859. },
  25860. male: {
  25861. height: math.unit(23.8, "m"),
  25862. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25863. name: "Male",
  25864. image: {
  25865. source: "./media/characters/mactarian/male.svg",
  25866. extra: 2673 / 2600,
  25867. bottom: 76 / 2750
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Macro",
  25874. height: math.unit(23.8, "meters"),
  25875. default: true
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25881. {
  25882. female: {
  25883. height: math.unit(19.3, "m"),
  25884. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25885. name: "Female",
  25886. image: {
  25887. source: "./media/characters/umok/female.svg",
  25888. extra: 2186 / 2078,
  25889. bottom: 87 / 2277
  25890. }
  25891. },
  25892. male: {
  25893. height: math.unit(19.5, "m"),
  25894. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25895. name: "Male",
  25896. image: {
  25897. source: "./media/characters/umok/male.svg",
  25898. extra: 2233 / 2140,
  25899. bottom: 24.4 / 2258
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Macro",
  25906. height: math.unit(19.3, "meters"),
  25907. default: true
  25908. },
  25909. ]
  25910. ))
  25911. characterMakers.push(() => makeCharacter(
  25912. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25913. {
  25914. female: {
  25915. height: math.unit(26.15, "m"),
  25916. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25917. name: "Female",
  25918. image: {
  25919. source: "./media/characters/joraxian/female.svg",
  25920. extra: 2912 / 2824,
  25921. bottom: 36 / 2956
  25922. }
  25923. },
  25924. male: {
  25925. height: math.unit(25.4, "m"),
  25926. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25927. name: "Male",
  25928. image: {
  25929. source: "./media/characters/joraxian/male.svg",
  25930. extra: 2877 / 2721,
  25931. bottom: 82 / 2967
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Macro",
  25938. height: math.unit(26.15, "meters"),
  25939. default: true
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25945. {
  25946. female: {
  25947. height: math.unit(21.6, "m"),
  25948. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25949. name: "Female",
  25950. image: {
  25951. source: "./media/characters/sthara/female.svg",
  25952. extra: 2516 / 2347,
  25953. bottom: 21.5 / 2537
  25954. }
  25955. },
  25956. male: {
  25957. height: math.unit(24, "m"),
  25958. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25959. name: "Male",
  25960. image: {
  25961. source: "./media/characters/sthara/male.svg",
  25962. extra: 2732 / 2607,
  25963. bottom: 23 / 2732
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Macro",
  25970. height: math.unit(21.6, "meters"),
  25971. default: true
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(6 + 4 / 12, "feet"),
  25980. weight: math.unit(175, "lb"),
  25981. name: "Front",
  25982. image: {
  25983. source: "./media/characters/luka-bryzant/front.svg",
  25984. extra: 311 / 289,
  25985. bottom: 4 / 315
  25986. }
  25987. },
  25988. back: {
  25989. height: math.unit(6 + 4 / 12, "feet"),
  25990. weight: math.unit(175, "lb"),
  25991. name: "Back",
  25992. image: {
  25993. source: "./media/characters/luka-bryzant/back.svg",
  25994. extra: 311 / 289,
  25995. bottom: 3.8 / 313.7
  25996. }
  25997. },
  25998. },
  25999. [
  26000. {
  26001. name: "Micro",
  26002. height: math.unit(10, "inches")
  26003. },
  26004. {
  26005. name: "Normal",
  26006. height: math.unit(6 + 4 / 12, "feet"),
  26007. default: true
  26008. },
  26009. {
  26010. name: "Large",
  26011. height: math.unit(12, "feet")
  26012. },
  26013. ]
  26014. ))
  26015. characterMakers.push(() => makeCharacter(
  26016. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26017. {
  26018. front: {
  26019. height: math.unit(5 + 7 / 12, "feet"),
  26020. weight: math.unit(185, "lb"),
  26021. name: "Front",
  26022. image: {
  26023. source: "./media/characters/aman-aquila/front.svg",
  26024. extra: 1013 / 976,
  26025. bottom: 45.6 / 1057
  26026. }
  26027. },
  26028. side: {
  26029. height: math.unit(5 + 7 / 12, "feet"),
  26030. weight: math.unit(185, "lb"),
  26031. name: "Side",
  26032. image: {
  26033. source: "./media/characters/aman-aquila/side.svg",
  26034. extra: 1054 / 1011,
  26035. bottom: 15 / 1070
  26036. }
  26037. },
  26038. back: {
  26039. height: math.unit(5 + 7 / 12, "feet"),
  26040. weight: math.unit(185, "lb"),
  26041. name: "Back",
  26042. image: {
  26043. source: "./media/characters/aman-aquila/back.svg",
  26044. extra: 1026 / 970,
  26045. bottom: 12 / 1039
  26046. }
  26047. },
  26048. head: {
  26049. height: math.unit(1.211, "feet"),
  26050. name: "Head",
  26051. image: {
  26052. source: "./media/characters/aman-aquila/head.svg",
  26053. }
  26054. },
  26055. },
  26056. [
  26057. {
  26058. name: "Minimicro",
  26059. height: math.unit(0.057, "inches")
  26060. },
  26061. {
  26062. name: "Micro",
  26063. height: math.unit(7, "inches")
  26064. },
  26065. {
  26066. name: "Mini",
  26067. height: math.unit(3 + 7 / 12, "feet")
  26068. },
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(5 + 7 / 12, "feet"),
  26072. default: true
  26073. },
  26074. {
  26075. name: "Macro",
  26076. height: math.unit(157 + 7 / 12, "feet")
  26077. },
  26078. {
  26079. name: "Megamacro",
  26080. height: math.unit(1557 + 7 / 12, "feet")
  26081. },
  26082. {
  26083. name: "Gigamacro",
  26084. height: math.unit(15557 + 7 / 12, "feet")
  26085. },
  26086. ]
  26087. ))
  26088. characterMakers.push(() => makeCharacter(
  26089. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26090. {
  26091. front: {
  26092. height: math.unit(3 + 2 / 12, "inches"),
  26093. weight: math.unit(0.3, "ounces"),
  26094. name: "Front",
  26095. image: {
  26096. source: "./media/characters/hiphae/front.svg",
  26097. extra: 1931 / 1683,
  26098. bottom: 24 / 1955
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Normal",
  26105. height: math.unit(3 + 1 / 2, "inches"),
  26106. default: true
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26112. {
  26113. front: {
  26114. height: math.unit(5 + 10 / 12, "feet"),
  26115. weight: math.unit(165, "lb"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/nicky/front.svg",
  26119. extra: 3144 / 2886,
  26120. bottom: 45.6 / 3192
  26121. }
  26122. },
  26123. back: {
  26124. height: math.unit(5 + 10 / 12, "feet"),
  26125. weight: math.unit(165, "lb"),
  26126. name: "Back",
  26127. image: {
  26128. source: "./media/characters/nicky/back.svg",
  26129. extra: 3055 / 2804,
  26130. bottom: 28.4 / 3087
  26131. }
  26132. },
  26133. frontclothed: {
  26134. height: math.unit(5 + 10 / 12, "feet"),
  26135. weight: math.unit(165, "lb"),
  26136. name: "Front-clothed",
  26137. image: {
  26138. source: "./media/characters/nicky/front-clothed.svg",
  26139. extra: 3184.9 / 2926.9,
  26140. bottom: 86.5 / 3239.9
  26141. }
  26142. },
  26143. foot: {
  26144. height: math.unit(1.16, "feet"),
  26145. name: "Foot",
  26146. image: {
  26147. source: "./media/characters/nicky/foot.svg"
  26148. }
  26149. },
  26150. feet: {
  26151. height: math.unit(1.34, "feet"),
  26152. name: "Feet",
  26153. image: {
  26154. source: "./media/characters/nicky/feet.svg"
  26155. }
  26156. },
  26157. maw: {
  26158. height: math.unit(0.9, "feet"),
  26159. name: "Maw",
  26160. image: {
  26161. source: "./media/characters/nicky/maw.svg"
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(5 + 10 / 12, "feet"),
  26169. default: true
  26170. },
  26171. {
  26172. name: "Macro",
  26173. height: math.unit(60, "feet")
  26174. },
  26175. {
  26176. name: "Megamacro",
  26177. height: math.unit(1, "mile")
  26178. },
  26179. ]
  26180. ))
  26181. characterMakers.push(() => makeCharacter(
  26182. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26183. {
  26184. side: {
  26185. height: math.unit(10, "feet"),
  26186. weight: math.unit(600, "lb"),
  26187. name: "Side",
  26188. image: {
  26189. source: "./media/characters/blair/side.svg",
  26190. bottom: 16.6 / 475,
  26191. extra: 458 / 431
  26192. }
  26193. },
  26194. },
  26195. [
  26196. {
  26197. name: "Micro",
  26198. height: math.unit(8, "inches")
  26199. },
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(10, "feet"),
  26203. default: true
  26204. },
  26205. {
  26206. name: "Macro",
  26207. height: math.unit(180, "feet")
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26213. {
  26214. front: {
  26215. height: math.unit(5 + 4 / 12, "feet"),
  26216. weight: math.unit(125, "lb"),
  26217. name: "Front",
  26218. image: {
  26219. source: "./media/characters/fisher/front.svg",
  26220. extra: 444 / 390,
  26221. bottom: 2 / 444.8
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Micro",
  26228. height: math.unit(4, "inches")
  26229. },
  26230. {
  26231. name: "Normal",
  26232. height: math.unit(5 + 4 / 12, "feet"),
  26233. default: true
  26234. },
  26235. {
  26236. name: "Macro",
  26237. height: math.unit(100, "feet")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(6.71, "feet"),
  26246. weight: math.unit(200, "lb"),
  26247. preyCapacity: math.unit(1000000, "people"),
  26248. name: "Front",
  26249. image: {
  26250. source: "./media/characters/gliss/front.svg",
  26251. extra: 2347 / 2231,
  26252. bottom: 113 / 2462
  26253. }
  26254. },
  26255. hammerspaceSize: {
  26256. height: math.unit(6.71 * 717, "feet"),
  26257. weight: math.unit(200, "lb"),
  26258. preyCapacity: math.unit(1000000, "people"),
  26259. name: "Hammerspace Size",
  26260. image: {
  26261. source: "./media/characters/gliss/front.svg",
  26262. extra: 2347 / 2231,
  26263. bottom: 113 / 2462
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(6.71, "feet"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26277. {
  26278. side: {
  26279. height: math.unit(1.44, "m"),
  26280. weight: math.unit(80, "kg"),
  26281. name: "Side",
  26282. image: {
  26283. source: "./media/characters/dune-anderson/side.svg",
  26284. bottom: 49 / 1426
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Wolf-sized",
  26291. height: math.unit(1.44, "meters")
  26292. },
  26293. {
  26294. name: "Normal",
  26295. height: math.unit(5.05, "meters"),
  26296. default: true
  26297. },
  26298. {
  26299. name: "Big",
  26300. height: math.unit(14.4, "meters")
  26301. },
  26302. {
  26303. name: "Huge",
  26304. height: math.unit(144, "meters")
  26305. },
  26306. ]
  26307. ))
  26308. characterMakers.push(() => makeCharacter(
  26309. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26310. {
  26311. front: {
  26312. height: math.unit(7, "feet"),
  26313. weight: math.unit(425, "lb"),
  26314. name: "Front",
  26315. image: {
  26316. source: "./media/characters/hind/front.svg",
  26317. extra: 2091 / 1860,
  26318. bottom: 129 / 2220
  26319. }
  26320. },
  26321. back: {
  26322. height: math.unit(7, "feet"),
  26323. weight: math.unit(425, "lb"),
  26324. name: "Back",
  26325. image: {
  26326. source: "./media/characters/hind/back.svg",
  26327. extra: 2091 / 1860,
  26328. bottom: 24.6 / 2309
  26329. }
  26330. },
  26331. tail: {
  26332. height: math.unit(2.8, "feet"),
  26333. name: "Tail",
  26334. image: {
  26335. source: "./media/characters/hind/tail.svg"
  26336. }
  26337. },
  26338. head: {
  26339. height: math.unit(2.55, "feet"),
  26340. name: "Head",
  26341. image: {
  26342. source: "./media/characters/hind/head.svg"
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "XS",
  26349. height: math.unit(0.7, "feet")
  26350. },
  26351. {
  26352. name: "Normal",
  26353. height: math.unit(7, "feet"),
  26354. default: true
  26355. },
  26356. {
  26357. name: "XL",
  26358. height: math.unit(70, "feet")
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26364. {
  26365. front: {
  26366. height: math.unit(2.1, "meters"),
  26367. weight: math.unit(150, "lb"),
  26368. name: "Front",
  26369. image: {
  26370. source: "./media/characters/tharquench-sizestealer/front.svg",
  26371. extra: 1605/1470,
  26372. bottom: 36/1641
  26373. }
  26374. },
  26375. frontAlt: {
  26376. height: math.unit(2.1, "meters"),
  26377. weight: math.unit(150, "lb"),
  26378. name: "Front (Alt)",
  26379. image: {
  26380. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26381. extra: 2318 / 2063,
  26382. bottom: 93.4 / 2410
  26383. }
  26384. },
  26385. },
  26386. [
  26387. {
  26388. name: "Nano",
  26389. height: math.unit(1, "mm")
  26390. },
  26391. {
  26392. name: "Micro",
  26393. height: math.unit(1, "cm")
  26394. },
  26395. {
  26396. name: "Normal",
  26397. height: math.unit(2.1, "meters"),
  26398. default: true
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26404. {
  26405. front: {
  26406. height: math.unit(7 + 5 / 12, "feet"),
  26407. weight: math.unit(357, "lb"),
  26408. name: "Front",
  26409. image: {
  26410. source: "./media/characters/solex-draconov/front.svg",
  26411. extra: 1993 / 1865,
  26412. bottom: 117 / 2111
  26413. }
  26414. },
  26415. },
  26416. [
  26417. {
  26418. name: "Natural Height",
  26419. height: math.unit(7 + 5 / 12, "feet"),
  26420. default: true
  26421. },
  26422. {
  26423. name: "Macro",
  26424. height: math.unit(350, "feet")
  26425. },
  26426. {
  26427. name: "Macro+",
  26428. height: math.unit(1000, "feet")
  26429. },
  26430. {
  26431. name: "Megamacro",
  26432. height: math.unit(20, "km")
  26433. },
  26434. {
  26435. name: "Megamacro+",
  26436. height: math.unit(1000, "km")
  26437. },
  26438. {
  26439. name: "Gigamacro",
  26440. height: math.unit(2.5, "Gm")
  26441. },
  26442. {
  26443. name: "Teramacro",
  26444. height: math.unit(15, "Tm")
  26445. },
  26446. {
  26447. name: "Galactic",
  26448. height: math.unit(30, "Zm")
  26449. },
  26450. {
  26451. name: "Universal",
  26452. height: math.unit(21000, "Ym")
  26453. },
  26454. {
  26455. name: "Omniversal",
  26456. height: math.unit(9.861e50, "Ym")
  26457. },
  26458. {
  26459. name: "Existential",
  26460. height: math.unit(1e300, "meters")
  26461. },
  26462. ]
  26463. ))
  26464. characterMakers.push(() => makeCharacter(
  26465. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26466. {
  26467. side: {
  26468. height: math.unit(25, "feet"),
  26469. weight: math.unit(90000, "lb"),
  26470. name: "Side",
  26471. image: {
  26472. source: "./media/characters/mandarax/side.svg",
  26473. extra: 614 / 332,
  26474. bottom: 55 / 630
  26475. }
  26476. },
  26477. lounging: {
  26478. height: math.unit(15.4, "feet"),
  26479. weight: math.unit(90000, "lb"),
  26480. name: "Lounging",
  26481. image: {
  26482. source: "./media/characters/mandarax/lounging.svg",
  26483. extra: 817/609,
  26484. bottom: 685/1502
  26485. }
  26486. },
  26487. head: {
  26488. height: math.unit(11.4, "feet"),
  26489. name: "Head",
  26490. image: {
  26491. source: "./media/characters/mandarax/head.svg"
  26492. }
  26493. },
  26494. belly: {
  26495. height: math.unit(33, "feet"),
  26496. name: "Belly",
  26497. preyCapacity: math.unit(500, "people"),
  26498. image: {
  26499. source: "./media/characters/mandarax/belly.svg"
  26500. }
  26501. },
  26502. dick: {
  26503. height: math.unit(8.46, "feet"),
  26504. name: "Dick",
  26505. image: {
  26506. source: "./media/characters/mandarax/dick.svg"
  26507. }
  26508. },
  26509. top: {
  26510. height: math.unit(28, "meters"),
  26511. name: "Top",
  26512. image: {
  26513. source: "./media/characters/mandarax/top.svg"
  26514. }
  26515. },
  26516. },
  26517. [
  26518. {
  26519. name: "Normal",
  26520. height: math.unit(25, "feet"),
  26521. default: true
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26527. {
  26528. front: {
  26529. height: math.unit(5, "feet"),
  26530. weight: math.unit(90, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/pixil/front.svg",
  26534. extra: 2000 / 1618,
  26535. bottom: 12.3 / 2011
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(5, "feet"),
  26543. default: true
  26544. },
  26545. {
  26546. name: "Megamacro",
  26547. height: math.unit(10, "miles"),
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26553. {
  26554. front: {
  26555. height: math.unit(7 + 2 / 12, "feet"),
  26556. weight: math.unit(200, "lb"),
  26557. name: "Front",
  26558. image: {
  26559. source: "./media/characters/angel/front.svg",
  26560. extra: 1830 / 1737,
  26561. bottom: 22.6 / 1854,
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(7 + 2 / 12, "feet"),
  26569. default: true
  26570. },
  26571. {
  26572. name: "Macro",
  26573. height: math.unit(1000, "feet")
  26574. },
  26575. {
  26576. name: "Megamacro",
  26577. height: math.unit(2, "miles")
  26578. },
  26579. {
  26580. name: "Gigamacro",
  26581. height: math.unit(20, "earths")
  26582. },
  26583. ]
  26584. ))
  26585. characterMakers.push(() => makeCharacter(
  26586. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26587. {
  26588. front: {
  26589. height: math.unit(5, "feet"),
  26590. weight: math.unit(180, "lb"),
  26591. name: "Front",
  26592. image: {
  26593. source: "./media/characters/mekana/front.svg",
  26594. extra: 1671 / 1605,
  26595. bottom: 3.5 / 1691
  26596. }
  26597. },
  26598. side: {
  26599. height: math.unit(5, "feet"),
  26600. weight: math.unit(180, "lb"),
  26601. name: "Side",
  26602. image: {
  26603. source: "./media/characters/mekana/side.svg",
  26604. extra: 1671 / 1605,
  26605. bottom: 3.5 / 1691
  26606. }
  26607. },
  26608. back: {
  26609. height: math.unit(5, "feet"),
  26610. weight: math.unit(180, "lb"),
  26611. name: "Back",
  26612. image: {
  26613. source: "./media/characters/mekana/back.svg",
  26614. extra: 1671 / 1605,
  26615. bottom: 3.5 / 1691
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(5, "feet"),
  26623. default: true
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(4 + 6 / 12, "feet"),
  26632. weight: math.unit(80, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/pixie/front.svg",
  26636. extra: 1924 / 1825,
  26637. bottom: 22.4 / 1946
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(4 + 6 / 12, "feet"),
  26645. default: true
  26646. },
  26647. {
  26648. name: "Macro",
  26649. height: math.unit(40, "feet")
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(2.1, "meters"),
  26658. weight: math.unit(200, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/the-lascivious/front.svg",
  26662. extra: 1 / 0.893,
  26663. bottom: 3.5 / 573.7
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Human Scale",
  26670. height: math.unit(2.1, "meters")
  26671. },
  26672. {
  26673. name: "Wolxi Scale",
  26674. height: math.unit(46.2, "m"),
  26675. default: true
  26676. },
  26677. {
  26678. name: "Boinker of Buildings",
  26679. height: math.unit(10, "km")
  26680. },
  26681. {
  26682. name: "Shagger of Skyscrapers",
  26683. height: math.unit(40, "km")
  26684. },
  26685. {
  26686. name: "Banger of Boroughs",
  26687. height: math.unit(4000, "km")
  26688. },
  26689. {
  26690. name: "Screwer of States",
  26691. height: math.unit(100000, "km")
  26692. },
  26693. {
  26694. name: "Pounder of Planets",
  26695. height: math.unit(2000000, "km")
  26696. },
  26697. ]
  26698. ))
  26699. characterMakers.push(() => makeCharacter(
  26700. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26701. {
  26702. front: {
  26703. height: math.unit(6, "feet"),
  26704. weight: math.unit(150, "lb"),
  26705. name: "Front",
  26706. image: {
  26707. source: "./media/characters/aj/front.svg",
  26708. extra: 2039 / 1562,
  26709. bottom: 40 / 2079
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(11 + 6 / 12, "feet"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(60, "megameters")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26727. {
  26728. side: {
  26729. height: math.unit(31 + 8 / 12, "feet"),
  26730. weight: math.unit(75000, "kg"),
  26731. name: "Side",
  26732. image: {
  26733. source: "./media/characters/koros/side.svg",
  26734. extra: 1442 / 1297,
  26735. bottom: 122.7 / 1562
  26736. }
  26737. },
  26738. dicksKingsCrown: {
  26739. height: math.unit(6, "feet"),
  26740. name: "Dicks (King's Crown)",
  26741. image: {
  26742. source: "./media/characters/koros/dicks-kings-crown.svg"
  26743. }
  26744. },
  26745. dicksTailSet: {
  26746. height: math.unit(3, "feet"),
  26747. name: "Dicks (Tail Set)",
  26748. image: {
  26749. source: "./media/characters/koros/dicks-tail-set.svg"
  26750. }
  26751. },
  26752. dickCumming: {
  26753. height: math.unit(7.98, "feet"),
  26754. name: "Dick (Cumming)",
  26755. image: {
  26756. source: "./media/characters/koros/dick-cumming.svg"
  26757. }
  26758. },
  26759. dicksBack: {
  26760. height: math.unit(5.9, "feet"),
  26761. name: "Dicks (Back)",
  26762. image: {
  26763. source: "./media/characters/koros/dicks-back.svg"
  26764. }
  26765. },
  26766. dicksFront: {
  26767. height: math.unit(3.72, "feet"),
  26768. name: "Dicks (Front)",
  26769. image: {
  26770. source: "./media/characters/koros/dicks-front.svg"
  26771. }
  26772. },
  26773. dicksPeeking: {
  26774. height: math.unit(3.0, "feet"),
  26775. name: "Dicks (Peeking)",
  26776. image: {
  26777. source: "./media/characters/koros/dicks-peeking.svg"
  26778. }
  26779. },
  26780. eye: {
  26781. height: math.unit(1.7, "feet"),
  26782. name: "Eye",
  26783. image: {
  26784. source: "./media/characters/koros/eye.svg"
  26785. }
  26786. },
  26787. headFront: {
  26788. height: math.unit(11.69, "feet"),
  26789. name: "Head (Front)",
  26790. image: {
  26791. source: "./media/characters/koros/head-front.svg"
  26792. }
  26793. },
  26794. headSide: {
  26795. height: math.unit(14, "feet"),
  26796. name: "Head (Side)",
  26797. image: {
  26798. source: "./media/characters/koros/head-side.svg"
  26799. }
  26800. },
  26801. leg: {
  26802. height: math.unit(17, "feet"),
  26803. name: "Leg",
  26804. image: {
  26805. source: "./media/characters/koros/leg.svg"
  26806. }
  26807. },
  26808. mawSide: {
  26809. height: math.unit(12.8, "feet"),
  26810. name: "Maw (Side)",
  26811. image: {
  26812. source: "./media/characters/koros/maw-side.svg"
  26813. }
  26814. },
  26815. mawSpitting: {
  26816. height: math.unit(17, "feet"),
  26817. name: "Maw (Spitting)",
  26818. image: {
  26819. source: "./media/characters/koros/maw-spitting.svg"
  26820. }
  26821. },
  26822. slit: {
  26823. height: math.unit(2.8, "feet"),
  26824. name: "Slit",
  26825. image: {
  26826. source: "./media/characters/koros/slit.svg"
  26827. }
  26828. },
  26829. stomach: {
  26830. height: math.unit(6.8, "feet"),
  26831. preyCapacity: math.unit(20, "people"),
  26832. name: "Stomach",
  26833. image: {
  26834. source: "./media/characters/koros/stomach.svg"
  26835. }
  26836. },
  26837. wingspanBottom: {
  26838. height: math.unit(114, "feet"),
  26839. name: "Wingspan (Bottom)",
  26840. image: {
  26841. source: "./media/characters/koros/wingspan-bottom.svg"
  26842. }
  26843. },
  26844. wingspanTop: {
  26845. height: math.unit(104, "feet"),
  26846. name: "Wingspan (Top)",
  26847. image: {
  26848. source: "./media/characters/koros/wingspan-top.svg"
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Normal",
  26855. height: math.unit(31 + 8 / 12, "feet"),
  26856. default: true
  26857. },
  26858. ]
  26859. ))
  26860. characterMakers.push(() => makeCharacter(
  26861. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26862. {
  26863. front: {
  26864. height: math.unit(18 + 5 / 12, "feet"),
  26865. weight: math.unit(3750, "kg"),
  26866. name: "Front",
  26867. image: {
  26868. source: "./media/characters/vexx/front.svg",
  26869. extra: 426 / 396,
  26870. bottom: 31.5 / 458
  26871. }
  26872. },
  26873. maw: {
  26874. height: math.unit(6, "feet"),
  26875. name: "Maw",
  26876. image: {
  26877. source: "./media/characters/vexx/maw.svg"
  26878. }
  26879. },
  26880. },
  26881. [
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(18 + 5 / 12, "feet"),
  26885. default: true
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(17 + 6 / 12, "feet"),
  26894. weight: math.unit(150, "lb"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/baadra/front.svg",
  26898. extra: 1694/1553,
  26899. bottom: 179/1873
  26900. }
  26901. },
  26902. frontAlt: {
  26903. height: math.unit(17 + 6 / 12, "feet"),
  26904. weight: math.unit(150, "lb"),
  26905. name: "Front (Alt)",
  26906. image: {
  26907. source: "./media/characters/baadra/front-alt.svg",
  26908. extra: 3137 / 2890,
  26909. bottom: 168.4 / 3305
  26910. }
  26911. },
  26912. back: {
  26913. height: math.unit(17 + 6 / 12, "feet"),
  26914. weight: math.unit(150, "lb"),
  26915. name: "Back",
  26916. image: {
  26917. source: "./media/characters/baadra/back.svg",
  26918. extra: 3142 / 2890,
  26919. bottom: 220 / 3371
  26920. }
  26921. },
  26922. head: {
  26923. height: math.unit(5.45, "feet"),
  26924. name: "Head",
  26925. image: {
  26926. source: "./media/characters/baadra/head.svg"
  26927. }
  26928. },
  26929. headAngry: {
  26930. height: math.unit(4.95, "feet"),
  26931. name: "Head (Angry)",
  26932. image: {
  26933. source: "./media/characters/baadra/head-angry.svg"
  26934. }
  26935. },
  26936. headOpen: {
  26937. height: math.unit(6, "feet"),
  26938. name: "Head (Open)",
  26939. image: {
  26940. source: "./media/characters/baadra/head-open.svg"
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(17 + 6 / 12, "feet"),
  26948. default: true
  26949. },
  26950. ]
  26951. ))
  26952. characterMakers.push(() => makeCharacter(
  26953. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26954. {
  26955. front: {
  26956. height: math.unit(7 + 3 / 12, "feet"),
  26957. weight: math.unit(180, "lb"),
  26958. name: "Front",
  26959. image: {
  26960. source: "./media/characters/juri/front.svg",
  26961. extra: 1401 / 1237,
  26962. bottom: 18.5 / 1418
  26963. }
  26964. },
  26965. side: {
  26966. height: math.unit(7 + 3 / 12, "feet"),
  26967. weight: math.unit(180, "lb"),
  26968. name: "Side",
  26969. image: {
  26970. source: "./media/characters/juri/side.svg",
  26971. extra: 1424 / 1242,
  26972. bottom: 18.5 / 1447
  26973. }
  26974. },
  26975. sitting: {
  26976. height: math.unit(6, "feet"),
  26977. weight: math.unit(180, "lb"),
  26978. name: "Sitting",
  26979. image: {
  26980. source: "./media/characters/juri/sitting.svg",
  26981. extra: 1270 / 1143,
  26982. bottom: 100 / 1343
  26983. }
  26984. },
  26985. back: {
  26986. height: math.unit(7 + 3 / 12, "feet"),
  26987. weight: math.unit(180, "lb"),
  26988. name: "Back",
  26989. image: {
  26990. source: "./media/characters/juri/back.svg",
  26991. extra: 1377 / 1240,
  26992. bottom: 23.7 / 1405
  26993. }
  26994. },
  26995. maw: {
  26996. height: math.unit(2.8, "feet"),
  26997. name: "Maw",
  26998. image: {
  26999. source: "./media/characters/juri/maw.svg"
  27000. }
  27001. },
  27002. stomach: {
  27003. height: math.unit(0.89, "feet"),
  27004. preyCapacity: math.unit(4, "liters"),
  27005. name: "Stomach",
  27006. image: {
  27007. source: "./media/characters/juri/stomach.svg"
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Normal",
  27014. height: math.unit(7 + 3 / 12, "feet"),
  27015. default: true
  27016. },
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27021. {
  27022. fox: {
  27023. height: math.unit(5 + 6 / 12, "feet"),
  27024. weight: math.unit(140, "lb"),
  27025. name: "Fox",
  27026. image: {
  27027. source: "./media/characters/maxene-sita/fox.svg",
  27028. extra: 146 / 138,
  27029. bottom: 2.1 / 148.19
  27030. }
  27031. },
  27032. foxLaying: {
  27033. height: math.unit(1.70, "feet"),
  27034. weight: math.unit(140, "lb"),
  27035. name: "Fox (Laying)",
  27036. image: {
  27037. source: "./media/characters/maxene-sita/fox-laying.svg",
  27038. extra: 910 / 572,
  27039. bottom: 71 / 981
  27040. }
  27041. },
  27042. kitsune: {
  27043. height: math.unit(10, "feet"),
  27044. weight: math.unit(800, "lb"),
  27045. name: "Kitsune",
  27046. image: {
  27047. source: "./media/characters/maxene-sita/kitsune.svg",
  27048. extra: 185 / 176,
  27049. bottom: 4.7 / 189.9
  27050. }
  27051. },
  27052. hellhound: {
  27053. height: math.unit(10, "feet"),
  27054. weight: math.unit(700, "lb"),
  27055. name: "Hellhound",
  27056. image: {
  27057. source: "./media/characters/maxene-sita/hellhound.svg",
  27058. extra: 1600 / 1545,
  27059. bottom: 81 / 1681
  27060. }
  27061. },
  27062. },
  27063. [
  27064. {
  27065. name: "Normal",
  27066. height: math.unit(5 + 6 / 12, "feet"),
  27067. default: true
  27068. },
  27069. ]
  27070. ))
  27071. characterMakers.push(() => makeCharacter(
  27072. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27073. {
  27074. front: {
  27075. height: math.unit(3 + 4 / 12, "feet"),
  27076. weight: math.unit(70, "lb"),
  27077. name: "Front",
  27078. image: {
  27079. source: "./media/characters/maia/front.svg",
  27080. extra: 227 / 219.5,
  27081. bottom: 40 / 267
  27082. }
  27083. },
  27084. back: {
  27085. height: math.unit(3 + 4 / 12, "feet"),
  27086. weight: math.unit(70, "lb"),
  27087. name: "Back",
  27088. image: {
  27089. source: "./media/characters/maia/back.svg",
  27090. extra: 237 / 225
  27091. }
  27092. },
  27093. },
  27094. [
  27095. {
  27096. name: "Normal",
  27097. height: math.unit(3 + 4 / 12, "feet"),
  27098. default: true
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27104. {
  27105. front: {
  27106. height: math.unit(5 + 10 / 12, "feet"),
  27107. weight: math.unit(197, "lb"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/jabaro/front.svg",
  27111. extra: 225 / 216,
  27112. bottom: 5.06 / 230
  27113. }
  27114. },
  27115. back: {
  27116. height: math.unit(5 + 10 / 12, "feet"),
  27117. weight: math.unit(197, "lb"),
  27118. name: "Back",
  27119. image: {
  27120. source: "./media/characters/jabaro/back.svg",
  27121. extra: 225 / 219,
  27122. bottom: 1.9 / 227
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(5 + 10 / 12, "feet"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(5 + 8 / 12, "feet"),
  27139. weight: math.unit(139, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/risa/front.svg",
  27143. extra: 270 / 260,
  27144. bottom: 11.2 / 282
  27145. }
  27146. },
  27147. back: {
  27148. height: math.unit(5 + 8 / 12, "feet"),
  27149. weight: math.unit(139, "lb"),
  27150. name: "Back",
  27151. image: {
  27152. source: "./media/characters/risa/back.svg",
  27153. extra: 264 / 255,
  27154. bottom: 4 / 268
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(5 + 8 / 12, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(2 + 11 / 12, "feet"),
  27171. weight: math.unit(30, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/weatley/front.svg",
  27175. bottom: 10.7 / 414,
  27176. extra: 403.5 / 362
  27177. }
  27178. },
  27179. back: {
  27180. height: math.unit(2 + 11 / 12, "feet"),
  27181. weight: math.unit(30, "lb"),
  27182. name: "Back",
  27183. image: {
  27184. source: "./media/characters/weatley/back.svg",
  27185. bottom: 10.7 / 414,
  27186. extra: 403.5 / 362
  27187. }
  27188. },
  27189. },
  27190. [
  27191. {
  27192. name: "Normal",
  27193. height: math.unit(2 + 11 / 12, "feet"),
  27194. default: true
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(5 + 2 / 12, "feet"),
  27203. weight: math.unit(50, "kg"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/mercury-crescent/front.svg",
  27207. extra: 1088 / 1033,
  27208. bottom: 18.9 / 1109
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(5 + 2 / 12, "feet"),
  27216. default: true
  27217. },
  27218. ]
  27219. ))
  27220. characterMakers.push(() => makeCharacter(
  27221. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27222. {
  27223. front: {
  27224. height: math.unit(2, "feet"),
  27225. weight: math.unit(15, "kg"),
  27226. name: "Front",
  27227. image: {
  27228. source: "./media/characters/diamond-jones/front.svg",
  27229. extra: 727/723,
  27230. bottom: 46/773
  27231. }
  27232. },
  27233. },
  27234. [
  27235. {
  27236. name: "Normal",
  27237. height: math.unit(2, "feet"),
  27238. default: true
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(3, "feet"),
  27247. weight: math.unit(30, "kg"),
  27248. name: "Front",
  27249. image: {
  27250. source: "./media/characters/sweet-bit/front.svg",
  27251. extra: 675 / 567,
  27252. bottom: 27.7 / 703
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(3, "feet"),
  27260. default: true
  27261. },
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27266. {
  27267. side: {
  27268. height: math.unit(9.178, "feet"),
  27269. weight: math.unit(500, "lb"),
  27270. name: "Side",
  27271. image: {
  27272. source: "./media/characters/umbrazen/side.svg",
  27273. extra: 1730 / 1473,
  27274. bottom: 34.6 / 1765
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(9.178, "feet"),
  27282. default: true
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(10, "feet"),
  27291. weight: math.unit(750, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/arlist/front.svg",
  27295. extra: 961 / 778,
  27296. bottom: 6.2 / 986
  27297. }
  27298. },
  27299. },
  27300. [
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(10, "feet"),
  27304. default: true
  27305. },
  27306. ]
  27307. ))
  27308. characterMakers.push(() => makeCharacter(
  27309. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27310. {
  27311. front: {
  27312. height: math.unit(5 + 1 / 12, "feet"),
  27313. weight: math.unit(110, "lb"),
  27314. name: "Front",
  27315. image: {
  27316. source: "./media/characters/aradel/front.svg",
  27317. extra: 324 / 303,
  27318. bottom: 3.6 / 329.4
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(5 + 1 / 12, "feet"),
  27326. default: true
  27327. },
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27332. {
  27333. dressed: {
  27334. height: math.unit(3 + 8 / 12, "feet"),
  27335. weight: math.unit(50, "lb"),
  27336. name: "Dressed",
  27337. image: {
  27338. source: "./media/characters/serryn/dressed.svg",
  27339. extra: 1792 / 1656,
  27340. bottom: 43.5 / 1840
  27341. }
  27342. },
  27343. nude: {
  27344. height: math.unit(3 + 8 / 12, "feet"),
  27345. weight: math.unit(50, "lb"),
  27346. name: "Nude",
  27347. image: {
  27348. source: "./media/characters/serryn/nude.svg",
  27349. extra: 1792 / 1656,
  27350. bottom: 43.5 / 1840
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(3 + 8 / 12, "feet"),
  27358. default: true
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27364. {
  27365. front: {
  27366. height: math.unit(7 + 10 / 12, "feet"),
  27367. weight: math.unit(255, "lb"),
  27368. name: "Front",
  27369. image: {
  27370. source: "./media/characters/xavier-thyme/front.svg",
  27371. extra: 3733 / 3642,
  27372. bottom: 131 / 3869
  27373. }
  27374. },
  27375. frontRaven: {
  27376. height: math.unit(7 + 10 / 12, "feet"),
  27377. weight: math.unit(255, "lb"),
  27378. name: "Front (Raven)",
  27379. image: {
  27380. source: "./media/characters/xavier-thyme/front-raven.svg",
  27381. extra: 4385 / 3642,
  27382. bottom: 131 / 4517
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(7 + 10 / 12, "feet"),
  27390. default: true
  27391. },
  27392. ]
  27393. ))
  27394. characterMakers.push(() => makeCharacter(
  27395. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27396. {
  27397. front: {
  27398. height: math.unit(1.6, "m"),
  27399. weight: math.unit(50, "kg"),
  27400. name: "Front",
  27401. image: {
  27402. source: "./media/characters/kiki/front.svg",
  27403. extra: 4682 / 3610,
  27404. bottom: 115 / 4777
  27405. }
  27406. },
  27407. },
  27408. [
  27409. {
  27410. name: "Normal",
  27411. height: math.unit(1.6, "meters"),
  27412. default: true
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27418. {
  27419. front: {
  27420. height: math.unit(50, "m"),
  27421. weight: math.unit(500, "tonnes"),
  27422. name: "Front",
  27423. image: {
  27424. source: "./media/characters/ryoko/front.svg",
  27425. extra: 4632 / 3926,
  27426. bottom: 193 / 4823
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(50, "meters"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(30, "m"),
  27443. weight: math.unit(22, "tonnes"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/elio/front.svg",
  27447. extra: 4582 / 3720,
  27448. bottom: 236 / 4828
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(30, "meters"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(6 + 3 / 12, "feet"),
  27465. weight: math.unit(120, "lb"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/azura/front.svg",
  27469. extra: 1149 / 1135,
  27470. bottom: 45 / 1194
  27471. }
  27472. },
  27473. frontClothed: {
  27474. height: math.unit(6 + 3 / 12, "feet"),
  27475. weight: math.unit(120, "lb"),
  27476. name: "Front (Clothed)",
  27477. image: {
  27478. source: "./media/characters/azura/front-clothed.svg",
  27479. extra: 1149 / 1135,
  27480. bottom: 45 / 1194
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(6 + 3 / 12, "feet"),
  27488. default: true
  27489. },
  27490. {
  27491. name: "Macro",
  27492. height: math.unit(20 + 6 / 12, "feet")
  27493. },
  27494. {
  27495. name: "Megamacro",
  27496. height: math.unit(12, "miles")
  27497. },
  27498. {
  27499. name: "Gigamacro",
  27500. height: math.unit(10000, "miles")
  27501. },
  27502. {
  27503. name: "Teramacro",
  27504. height: math.unit(900000, "miles")
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27510. {
  27511. front: {
  27512. height: math.unit(12, "feet"),
  27513. weight: math.unit(1, "ton"),
  27514. capacity: math.unit(660000, "gallons"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/zeus/front.svg",
  27518. extra: 5005 / 4717,
  27519. bottom: 363 / 5388
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Normal",
  27526. height: math.unit(12, "feet")
  27527. },
  27528. {
  27529. name: "Preferred Size",
  27530. height: math.unit(0.5, "miles"),
  27531. default: true
  27532. },
  27533. {
  27534. name: "Giga Horse",
  27535. height: math.unit(300, "miles")
  27536. },
  27537. {
  27538. name: "Riding Planets",
  27539. height: math.unit(30, "megameters")
  27540. },
  27541. {
  27542. name: "Cosmic Giant",
  27543. height: math.unit(3, "zettameters")
  27544. },
  27545. {
  27546. name: "Breeding God",
  27547. height: math.unit(9.92e22, "yottameters")
  27548. },
  27549. ]
  27550. ))
  27551. characterMakers.push(() => makeCharacter(
  27552. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27553. {
  27554. side: {
  27555. height: math.unit(9, "feet"),
  27556. weight: math.unit(1500, "kg"),
  27557. name: "Side",
  27558. image: {
  27559. source: "./media/characters/fang/side.svg",
  27560. extra: 924 / 866,
  27561. bottom: 47.5 / 972.3
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(9, "feet"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Macro",
  27573. height: math.unit(75 + 6 / 12, "feet")
  27574. },
  27575. {
  27576. name: "Teramacro",
  27577. height: math.unit(50000, "miles")
  27578. },
  27579. ]
  27580. ))
  27581. characterMakers.push(() => makeCharacter(
  27582. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27583. {
  27584. front: {
  27585. height: math.unit(10, "feet"),
  27586. weight: math.unit(2, "tons"),
  27587. name: "Front",
  27588. image: {
  27589. source: "./media/characters/rekhit/front.svg",
  27590. extra: 2796 / 2590,
  27591. bottom: 225 / 3022
  27592. }
  27593. },
  27594. },
  27595. [
  27596. {
  27597. name: "Normal",
  27598. height: math.unit(10, "feet"),
  27599. default: true
  27600. },
  27601. {
  27602. name: "Macro",
  27603. height: math.unit(500, "feet")
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27609. {
  27610. front: {
  27611. height: math.unit(7 + 6.451 / 12, "feet"),
  27612. weight: math.unit(310, "lb"),
  27613. name: "Front",
  27614. image: {
  27615. source: "./media/characters/dahlia-verrick/front.svg",
  27616. extra: 1488 / 1365,
  27617. bottom: 6.2 / 1495
  27618. }
  27619. },
  27620. back: {
  27621. height: math.unit(7 + 6.451 / 12, "feet"),
  27622. weight: math.unit(310, "lb"),
  27623. name: "Back",
  27624. image: {
  27625. source: "./media/characters/dahlia-verrick/back.svg",
  27626. extra: 1472 / 1351,
  27627. bottom: 5.28 / 1477
  27628. }
  27629. },
  27630. frontBusiness: {
  27631. height: math.unit(7 + 6.451 / 12, "feet"),
  27632. weight: math.unit(200, "lb"),
  27633. name: "Front (Business)",
  27634. image: {
  27635. source: "./media/characters/dahlia-verrick/front-business.svg",
  27636. extra: 1478 / 1381,
  27637. bottom: 5.5 / 1484
  27638. }
  27639. },
  27640. frontCasual: {
  27641. height: math.unit(7 + 6.451 / 12, "feet"),
  27642. weight: math.unit(200, "lb"),
  27643. name: "Front (Casual)",
  27644. image: {
  27645. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27646. extra: 1478 / 1381,
  27647. bottom: 5.5 / 1484
  27648. }
  27649. },
  27650. },
  27651. [
  27652. {
  27653. name: "Travel-Sized",
  27654. height: math.unit(7.45, "inches")
  27655. },
  27656. {
  27657. name: "Normal",
  27658. height: math.unit(7 + 6.451 / 12, "feet"),
  27659. default: true
  27660. },
  27661. {
  27662. name: "Hitting the Town",
  27663. height: math.unit(37 + 8 / 12, "feet")
  27664. },
  27665. {
  27666. name: "Stomp in the Suburbs",
  27667. height: math.unit(964 + 9.728 / 12, "feet")
  27668. },
  27669. {
  27670. name: "Sit on the City",
  27671. height: math.unit(61747 + 10.592 / 12, "feet")
  27672. },
  27673. {
  27674. name: "Glomp the Globe",
  27675. height: math.unit(252919327 + 4.832 / 12, "feet")
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27681. {
  27682. front: {
  27683. height: math.unit(6 + 4 / 12, "feet"),
  27684. weight: math.unit(320, "lb"),
  27685. name: "Front",
  27686. image: {
  27687. source: "./media/characters/balina-mahigan/front.svg",
  27688. extra: 447 / 428,
  27689. bottom: 18 / 466
  27690. }
  27691. },
  27692. back: {
  27693. height: math.unit(6 + 4 / 12, "feet"),
  27694. weight: math.unit(320, "lb"),
  27695. name: "Back",
  27696. image: {
  27697. source: "./media/characters/balina-mahigan/back.svg",
  27698. extra: 445 / 428,
  27699. bottom: 4.07 / 448
  27700. }
  27701. },
  27702. arm: {
  27703. height: math.unit(1.88, "feet"),
  27704. name: "Arm",
  27705. image: {
  27706. source: "./media/characters/balina-mahigan/arm.svg"
  27707. }
  27708. },
  27709. backPort: {
  27710. height: math.unit(0.685, "feet"),
  27711. name: "Back Port",
  27712. image: {
  27713. source: "./media/characters/balina-mahigan/back-port.svg"
  27714. }
  27715. },
  27716. hoofpaw: {
  27717. height: math.unit(1.41, "feet"),
  27718. name: "Hoofpaw",
  27719. image: {
  27720. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27721. }
  27722. },
  27723. leftHandBack: {
  27724. height: math.unit(0.938, "feet"),
  27725. name: "Left Hand (Back)",
  27726. image: {
  27727. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27728. }
  27729. },
  27730. leftHandFront: {
  27731. height: math.unit(0.938, "feet"),
  27732. name: "Left Hand (Front)",
  27733. image: {
  27734. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27735. }
  27736. },
  27737. rightHandBack: {
  27738. height: math.unit(0.95, "feet"),
  27739. name: "Right Hand (Back)",
  27740. image: {
  27741. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27742. }
  27743. },
  27744. rightHandFront: {
  27745. height: math.unit(0.95, "feet"),
  27746. name: "Right Hand (Front)",
  27747. image: {
  27748. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(6 + 4 / 12, "feet"),
  27756. default: true
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(6, "feet"),
  27765. weight: math.unit(320, "lb"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/balina-mejeri/front.svg",
  27769. extra: 517 / 488,
  27770. bottom: 44.2 / 561
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(6 + 4 / 12, "feet")
  27778. },
  27779. {
  27780. name: "Business",
  27781. height: math.unit(155, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27788. {
  27789. kneeling: {
  27790. height: math.unit(6 + 4 / 12, "feet"),
  27791. weight: math.unit(300 * 20, "lb"),
  27792. name: "Kneeling",
  27793. image: {
  27794. source: "./media/characters/balbarian/kneeling.svg",
  27795. extra: 922 / 862,
  27796. bottom: 42.4 / 965
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(6 + 4 / 12, "feet")
  27804. },
  27805. {
  27806. name: "Treasured",
  27807. height: math.unit(18 + 9 / 12, "feet"),
  27808. default: true
  27809. },
  27810. {
  27811. name: "Macro",
  27812. height: math.unit(900, "feet")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(6 + 4 / 12, "feet"),
  27821. weight: math.unit(325, "lb"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/balina-amarini/front.svg",
  27825. extra: 415 / 403,
  27826. bottom: 19 / 433.4
  27827. }
  27828. },
  27829. back: {
  27830. height: math.unit(6 + 4 / 12, "feet"),
  27831. weight: math.unit(325, "lb"),
  27832. name: "Back",
  27833. image: {
  27834. source: "./media/characters/balina-amarini/back.svg",
  27835. extra: 415 / 403,
  27836. bottom: 13.5 / 432
  27837. }
  27838. },
  27839. overdrive: {
  27840. height: math.unit(6 + 4 / 12, "feet"),
  27841. weight: math.unit(400, "lb"),
  27842. name: "Overdrive",
  27843. image: {
  27844. source: "./media/characters/balina-amarini/overdrive.svg",
  27845. extra: 269 / 259,
  27846. bottom: 12 / 282
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Boom",
  27853. height: math.unit(9 + 10 / 12, "feet"),
  27854. default: true
  27855. },
  27856. {
  27857. name: "Macro",
  27858. height: math.unit(280, "feet")
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27864. {
  27865. goddess: {
  27866. height: math.unit(600, "feet"),
  27867. weight: math.unit(2000000, "tons"),
  27868. name: "Goddess",
  27869. image: {
  27870. source: "./media/characters/lady-kubwa/goddess.svg",
  27871. extra: 1240.5 / 1223,
  27872. bottom: 22 / 1263
  27873. }
  27874. },
  27875. goddesser: {
  27876. height: math.unit(900, "feet"),
  27877. weight: math.unit(20000000, "lb"),
  27878. name: "Goddess-er",
  27879. image: {
  27880. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27881. extra: 899 / 888,
  27882. bottom: 12.6 / 912
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Macro",
  27889. height: math.unit(600, "feet"),
  27890. default: true
  27891. },
  27892. {
  27893. name: "Megamacro",
  27894. height: math.unit(250, "miles")
  27895. },
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27900. {
  27901. front: {
  27902. height: math.unit(7 + 7 / 12, "feet"),
  27903. weight: math.unit(250, "lb"),
  27904. name: "Front",
  27905. image: {
  27906. source: "./media/characters/tala-grovehorn/front.svg",
  27907. extra: 2636 / 2525,
  27908. bottom: 147 / 2781
  27909. }
  27910. },
  27911. back: {
  27912. height: math.unit(7 + 7 / 12, "feet"),
  27913. weight: math.unit(250, "lb"),
  27914. name: "Back",
  27915. image: {
  27916. source: "./media/characters/tala-grovehorn/back.svg",
  27917. extra: 2635 / 2539,
  27918. bottom: 100 / 2732.8
  27919. }
  27920. },
  27921. mouth: {
  27922. height: math.unit(1.15, "feet"),
  27923. name: "Mouth",
  27924. image: {
  27925. source: "./media/characters/tala-grovehorn/mouth.svg"
  27926. }
  27927. },
  27928. dick: {
  27929. height: math.unit(2.36, "feet"),
  27930. name: "Dick",
  27931. image: {
  27932. source: "./media/characters/tala-grovehorn/dick.svg"
  27933. }
  27934. },
  27935. slit: {
  27936. height: math.unit(0.61, "feet"),
  27937. name: "Slit",
  27938. image: {
  27939. source: "./media/characters/tala-grovehorn/slit.svg"
  27940. }
  27941. },
  27942. },
  27943. [
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(7 + 7 / 12, "feet"),
  27951. weight: math.unit(225, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/epona/front.svg",
  27955. extra: 2445 / 2290,
  27956. bottom: 251 / 2696
  27957. }
  27958. },
  27959. back: {
  27960. height: math.unit(7 + 7 / 12, "feet"),
  27961. weight: math.unit(225, "lb"),
  27962. name: "Back",
  27963. image: {
  27964. source: "./media/characters/epona/back.svg",
  27965. extra: 2546 / 2408,
  27966. bottom: 44 / 2589
  27967. }
  27968. },
  27969. genitals: {
  27970. height: math.unit(1.5, "feet"),
  27971. name: "Genitals",
  27972. image: {
  27973. source: "./media/characters/epona/genitals.svg"
  27974. }
  27975. },
  27976. },
  27977. [
  27978. {
  27979. name: "Normal",
  27980. height: math.unit(7 + 7 / 12, "feet"),
  27981. default: true
  27982. },
  27983. ]
  27984. ))
  27985. characterMakers.push(() => makeCharacter(
  27986. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27987. {
  27988. front: {
  27989. height: math.unit(7, "feet"),
  27990. weight: math.unit(518, "lb"),
  27991. name: "Front",
  27992. image: {
  27993. source: "./media/characters/avia-bloodbourn/front.svg",
  27994. extra: 1466 / 1350,
  27995. bottom: 65 / 1527
  27996. }
  27997. },
  27998. },
  27999. [
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28004. {
  28005. front: {
  28006. height: math.unit(9.35, "feet"),
  28007. weight: math.unit(600, "lb"),
  28008. name: "Front",
  28009. image: {
  28010. source: "./media/characters/amera/front.svg",
  28011. extra: 891 / 818,
  28012. bottom: 30 / 922.7
  28013. }
  28014. },
  28015. back: {
  28016. height: math.unit(9.35, "feet"),
  28017. weight: math.unit(600, "lb"),
  28018. name: "Back",
  28019. image: {
  28020. source: "./media/characters/amera/back.svg",
  28021. extra: 876 / 824,
  28022. bottom: 6.8 / 884
  28023. }
  28024. },
  28025. dick: {
  28026. height: math.unit(2.14, "feet"),
  28027. name: "Dick",
  28028. image: {
  28029. source: "./media/characters/amera/dick.svg"
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(9.35, "feet"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28043. {
  28044. kneeling: {
  28045. height: math.unit(3 + 4 / 12, "feet"),
  28046. weight: math.unit(90, "lb"),
  28047. name: "Kneeling",
  28048. image: {
  28049. source: "./media/characters/rosewen/kneeling.svg",
  28050. extra: 1835 / 1571,
  28051. bottom: 27.7 / 1862
  28052. }
  28053. },
  28054. },
  28055. [
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(3 + 4 / 12, "feet"),
  28059. default: true
  28060. },
  28061. ]
  28062. ))
  28063. characterMakers.push(() => makeCharacter(
  28064. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28065. {
  28066. front: {
  28067. height: math.unit(5 + 10 / 12, "feet"),
  28068. weight: math.unit(200, "lb"),
  28069. name: "Front",
  28070. image: {
  28071. source: "./media/characters/sabah/front.svg",
  28072. extra: 849 / 763,
  28073. bottom: 33.9 / 881
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(5 + 10 / 12, "feet"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28087. {
  28088. front: {
  28089. height: math.unit(3 + 5 / 12, "feet"),
  28090. weight: math.unit(40, "kg"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/purple-flame/front.svg",
  28094. extra: 1577 / 1412,
  28095. bottom: 97 / 1694
  28096. }
  28097. },
  28098. frontDressed: {
  28099. height: math.unit(3 + 5 / 12, "feet"),
  28100. weight: math.unit(40, "kg"),
  28101. name: "Front (Dressed)",
  28102. image: {
  28103. source: "./media/characters/purple-flame/front-dressed.svg",
  28104. extra: 1577 / 1412,
  28105. bottom: 97 / 1694
  28106. }
  28107. },
  28108. headphones: {
  28109. height: math.unit(0.85, "feet"),
  28110. name: "Headphones",
  28111. image: {
  28112. source: "./media/characters/purple-flame/headphones.svg"
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Really Small",
  28119. height: math.unit(5, "cm")
  28120. },
  28121. {
  28122. name: "Micro",
  28123. height: math.unit(1 + 5 / 12, "feet")
  28124. },
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(3 + 5 / 12, "feet"),
  28128. default: true
  28129. },
  28130. {
  28131. name: "Minimacro",
  28132. height: math.unit(125, "feet")
  28133. },
  28134. {
  28135. name: "Macro",
  28136. height: math.unit(0.5, "miles")
  28137. },
  28138. {
  28139. name: "Megamacro",
  28140. height: math.unit(50, "miles")
  28141. },
  28142. {
  28143. name: "Gigantic",
  28144. height: math.unit(750, "miles")
  28145. },
  28146. {
  28147. name: "Planetary",
  28148. height: math.unit(15000, "miles")
  28149. },
  28150. ]
  28151. ))
  28152. characterMakers.push(() => makeCharacter(
  28153. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28154. {
  28155. front: {
  28156. height: math.unit(14, "feet"),
  28157. weight: math.unit(959, "lb"),
  28158. name: "Front",
  28159. image: {
  28160. source: "./media/characters/arsenal/front.svg",
  28161. extra: 2357 / 2157,
  28162. bottom: 93 / 2458
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(14, "feet"),
  28170. default: true
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(6, "feet"),
  28179. weight: math.unit(150, "lb"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/adira/front.svg",
  28183. extra: 1078 / 1029,
  28184. bottom: 87 / 1166
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Micro",
  28191. height: math.unit(4, "inches"),
  28192. default: true
  28193. },
  28194. {
  28195. name: "Macro",
  28196. height: math.unit(50, "feet")
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(16, "feet"),
  28205. weight: math.unit(1000, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/grim/front.svg",
  28209. extra: 622 / 614,
  28210. bottom: 18.1 / 642
  28211. }
  28212. },
  28213. back: {
  28214. height: math.unit(16, "feet"),
  28215. weight: math.unit(1000, "lb"),
  28216. name: "Back",
  28217. image: {
  28218. source: "./media/characters/grim/back.svg",
  28219. extra: 610.6 / 602,
  28220. bottom: 40.8 / 652
  28221. }
  28222. },
  28223. hunched: {
  28224. height: math.unit(9.75, "feet"),
  28225. weight: math.unit(1000, "lb"),
  28226. name: "Hunched",
  28227. image: {
  28228. source: "./media/characters/grim/hunched.svg",
  28229. extra: 304 / 297,
  28230. bottom: 35.4 / 394
  28231. }
  28232. },
  28233. },
  28234. [
  28235. {
  28236. name: "Normal",
  28237. height: math.unit(16, "feet"),
  28238. default: true
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(2.3, "meters"),
  28247. weight: math.unit(300, "lb"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/sinja/front-sfw.svg",
  28251. extra: 1393 / 1294,
  28252. bottom: 70 / 1463
  28253. }
  28254. },
  28255. frontNsfw: {
  28256. height: math.unit(2.3, "meters"),
  28257. weight: math.unit(300, "lb"),
  28258. name: "Front (NSFW)",
  28259. image: {
  28260. source: "./media/characters/sinja/front-nsfw.svg",
  28261. extra: 1393 / 1294,
  28262. bottom: 70 / 1463
  28263. }
  28264. },
  28265. back: {
  28266. height: math.unit(2.3, "meters"),
  28267. weight: math.unit(300, "lb"),
  28268. name: "Back",
  28269. image: {
  28270. source: "./media/characters/sinja/back.svg",
  28271. extra: 1393 / 1294,
  28272. bottom: 70 / 1463
  28273. }
  28274. },
  28275. head: {
  28276. height: math.unit(1.771, "feet"),
  28277. name: "Head",
  28278. image: {
  28279. source: "./media/characters/sinja/head.svg"
  28280. }
  28281. },
  28282. slit: {
  28283. height: math.unit(0.8, "feet"),
  28284. name: "Slit",
  28285. image: {
  28286. source: "./media/characters/sinja/slit.svg"
  28287. }
  28288. },
  28289. },
  28290. [
  28291. {
  28292. name: "Normal",
  28293. height: math.unit(2.3, "meters")
  28294. },
  28295. {
  28296. name: "Macro",
  28297. height: math.unit(91, "meters"),
  28298. default: true
  28299. },
  28300. {
  28301. name: "Megamacro",
  28302. height: math.unit(91440, "meters")
  28303. },
  28304. {
  28305. name: "Gigamacro",
  28306. height: math.unit(60960000, "meters")
  28307. },
  28308. {
  28309. name: "Teramacro",
  28310. height: math.unit(9144000000, "meters")
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(1.7, "meters"),
  28319. weight: math.unit(130, "lb"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/kyu/front.svg",
  28323. extra: 415 / 395,
  28324. bottom: 5 / 420
  28325. }
  28326. },
  28327. head: {
  28328. height: math.unit(1.75, "feet"),
  28329. name: "Head",
  28330. image: {
  28331. source: "./media/characters/kyu/head.svg"
  28332. }
  28333. },
  28334. foot: {
  28335. height: math.unit(0.81, "feet"),
  28336. name: "Foot",
  28337. image: {
  28338. source: "./media/characters/kyu/foot.svg"
  28339. }
  28340. },
  28341. },
  28342. [
  28343. {
  28344. name: "Normal",
  28345. height: math.unit(1.7, "meters")
  28346. },
  28347. {
  28348. name: "Macro",
  28349. height: math.unit(131, "feet"),
  28350. default: true
  28351. },
  28352. {
  28353. name: "Megamacro",
  28354. height: math.unit(91440, "meters")
  28355. },
  28356. {
  28357. name: "Gigamacro",
  28358. height: math.unit(60960000, "meters")
  28359. },
  28360. {
  28361. name: "Teramacro",
  28362. height: math.unit(9144000000, "meters")
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28368. {
  28369. front: {
  28370. height: math.unit(7 + 1 / 12, "feet"),
  28371. weight: math.unit(250, "lb"),
  28372. name: "Front",
  28373. image: {
  28374. source: "./media/characters/joey/front.svg",
  28375. extra: 1791 / 1537,
  28376. bottom: 28 / 1816
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Micro",
  28383. height: math.unit(3, "inches")
  28384. },
  28385. {
  28386. name: "Normal",
  28387. height: math.unit(7 + 1 / 12, "feet"),
  28388. default: true
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28394. {
  28395. front: {
  28396. height: math.unit(165, "cm"),
  28397. weight: math.unit(140, "lb"),
  28398. name: "Front",
  28399. image: {
  28400. source: "./media/characters/sam-evans/front.svg",
  28401. extra: 3417 / 3230,
  28402. bottom: 41.3 / 3417
  28403. }
  28404. },
  28405. frontSixTails: {
  28406. height: math.unit(165, "cm"),
  28407. weight: math.unit(140, "lb"),
  28408. name: "Front-six-tails",
  28409. image: {
  28410. source: "./media/characters/sam-evans/front-six-tails.svg",
  28411. extra: 3417 / 3230,
  28412. bottom: 41.3 / 3417
  28413. }
  28414. },
  28415. back: {
  28416. height: math.unit(165, "cm"),
  28417. weight: math.unit(140, "lb"),
  28418. name: "Back",
  28419. image: {
  28420. source: "./media/characters/sam-evans/back.svg",
  28421. extra: 3227 / 3032,
  28422. bottom: 6.8 / 3234
  28423. }
  28424. },
  28425. face: {
  28426. height: math.unit(0.68, "feet"),
  28427. name: "Face",
  28428. image: {
  28429. source: "./media/characters/sam-evans/face.svg"
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Normal",
  28436. height: math.unit(165, "cm"),
  28437. default: true
  28438. },
  28439. {
  28440. name: "Macro",
  28441. height: math.unit(100, "meters")
  28442. },
  28443. {
  28444. name: "Macro+",
  28445. height: math.unit(800, "meters")
  28446. },
  28447. {
  28448. name: "Macro++",
  28449. height: math.unit(3, "km")
  28450. },
  28451. {
  28452. name: "Macro+++",
  28453. height: math.unit(30, "km")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(10, "feet"),
  28462. weight: math.unit(750, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/juliet-a/front.svg",
  28466. extra: 1766 / 1720,
  28467. bottom: 43 / 1809
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(10, "feet"),
  28472. weight: math.unit(750, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/juliet-a/back.svg",
  28476. extra: 1781 / 1734,
  28477. bottom: 35 / 1810,
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(10, "feet"),
  28485. default: true
  28486. },
  28487. {
  28488. name: "Dragon Form",
  28489. height: math.unit(250, "feet")
  28490. },
  28491. {
  28492. name: "Macro",
  28493. height: math.unit(1000, "feet")
  28494. },
  28495. {
  28496. name: "Megamacro",
  28497. height: math.unit(10000, "feet")
  28498. }
  28499. ]
  28500. ))
  28501. characterMakers.push(() => makeCharacter(
  28502. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28503. {
  28504. regular: {
  28505. height: math.unit(7 + 3 / 12, "feet"),
  28506. weight: math.unit(260, "lb"),
  28507. name: "Regular",
  28508. image: {
  28509. source: "./media/characters/wild/regular.svg",
  28510. extra: 97.45 / 92,
  28511. bottom: 6.8 / 104.3
  28512. }
  28513. },
  28514. biggums: {
  28515. height: math.unit(8 + 6 / 12, "feet"),
  28516. weight: math.unit(425, "lb"),
  28517. name: "Biggums",
  28518. image: {
  28519. source: "./media/characters/wild/biggums.svg",
  28520. extra: 97.45 / 92,
  28521. bottom: 7.5 / 132.34
  28522. }
  28523. },
  28524. mawRegular: {
  28525. height: math.unit(1.24, "feet"),
  28526. name: "Maw (Regular)",
  28527. image: {
  28528. source: "./media/characters/wild/maw.svg"
  28529. }
  28530. },
  28531. mawBiggums: {
  28532. height: math.unit(1.47, "feet"),
  28533. name: "Maw (Biggums)",
  28534. image: {
  28535. source: "./media/characters/wild/maw.svg"
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(7 + 3 / 12, "feet"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28549. {
  28550. front: {
  28551. height: math.unit(2.5, "meters"),
  28552. weight: math.unit(200, "kg"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/vidar/front.svg",
  28556. extra: 2994 / 2795,
  28557. bottom: 56 / 3061
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(2.5, "meters"),
  28562. weight: math.unit(200, "kg"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/vidar/back.svg",
  28566. extra: 3131 / 2928,
  28567. bottom: 13.5 / 3141.5
  28568. }
  28569. },
  28570. feral: {
  28571. height: math.unit(2.5, "meters"),
  28572. weight: math.unit(2000, "kg"),
  28573. name: "Feral",
  28574. image: {
  28575. source: "./media/characters/vidar/feral.svg",
  28576. extra: 2790 / 1765,
  28577. bottom: 6 / 2796
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Normal",
  28584. height: math.unit(2.5, "meters"),
  28585. default: true
  28586. },
  28587. {
  28588. name: "Macro",
  28589. height: math.unit(100, "meters")
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(5 + 9 / 12, "feet"),
  28598. weight: math.unit(120, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/ash/front.svg",
  28602. extra: 2189 / 1961,
  28603. bottom: 5.2 / 2194
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Normal",
  28610. height: math.unit(5 + 9 / 12, "feet"),
  28611. default: true
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(9, "feet"),
  28620. weight: math.unit(10000, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/gygabite/front.svg",
  28624. bottom: 31.7 / 537.8,
  28625. extra: 505 / 370
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Normal",
  28632. height: math.unit(9, "feet"),
  28633. default: true
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(12, "feet"),
  28642. weight: math.unit(4000, "lb"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/p0tat0/front.svg",
  28646. extra: 1065 / 921,
  28647. bottom: 55.7 / 1121.25
  28648. }
  28649. },
  28650. },
  28651. [
  28652. {
  28653. name: "Normal",
  28654. height: math.unit(12, "feet"),
  28655. default: true
  28656. },
  28657. ]
  28658. ))
  28659. characterMakers.push(() => makeCharacter(
  28660. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28661. {
  28662. side: {
  28663. height: math.unit(6.5, "feet"),
  28664. weight: math.unit(800, "lb"),
  28665. name: "Side",
  28666. image: {
  28667. source: "./media/characters/dusk/side.svg",
  28668. extra: 615 / 373,
  28669. bottom: 53 / 664
  28670. }
  28671. },
  28672. sitting: {
  28673. height: math.unit(7, "feet"),
  28674. weight: math.unit(800, "lb"),
  28675. name: "Sitting",
  28676. image: {
  28677. source: "./media/characters/dusk/sitting.svg",
  28678. extra: 753 / 425,
  28679. bottom: 33 / 774
  28680. }
  28681. },
  28682. head: {
  28683. height: math.unit(6.1, "feet"),
  28684. name: "Head",
  28685. image: {
  28686. source: "./media/characters/dusk/head.svg"
  28687. }
  28688. },
  28689. },
  28690. [
  28691. {
  28692. name: "Normal",
  28693. height: math.unit(7, "feet"),
  28694. default: true
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28700. {
  28701. front: {
  28702. height: math.unit(15, "feet"),
  28703. weight: math.unit(7000, "lb"),
  28704. name: "Front",
  28705. image: {
  28706. source: "./media/characters/jay-direwolf/front.svg",
  28707. extra: 1810 / 1732,
  28708. bottom: 66 / 1892
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Normal",
  28715. height: math.unit(15, "feet"),
  28716. default: true
  28717. },
  28718. ]
  28719. ))
  28720. characterMakers.push(() => makeCharacter(
  28721. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28722. {
  28723. front: {
  28724. height: math.unit(4 + 9 / 12, "feet"),
  28725. weight: math.unit(130, "lb"),
  28726. name: "Front",
  28727. image: {
  28728. source: "./media/characters/anchovie/front.svg",
  28729. extra: 382 / 350,
  28730. bottom: 25 / 409
  28731. }
  28732. },
  28733. back: {
  28734. height: math.unit(4 + 9 / 12, "feet"),
  28735. weight: math.unit(130, "lb"),
  28736. name: "Back",
  28737. image: {
  28738. source: "./media/characters/anchovie/back.svg",
  28739. extra: 385 / 352,
  28740. bottom: 16.6 / 402
  28741. }
  28742. },
  28743. frontDressed: {
  28744. height: math.unit(4 + 9 / 12, "feet"),
  28745. weight: math.unit(130, "lb"),
  28746. name: "Front (Dressed)",
  28747. image: {
  28748. source: "./media/characters/anchovie/front-dressed.svg",
  28749. extra: 382 / 350,
  28750. bottom: 25 / 409
  28751. }
  28752. },
  28753. backDressed: {
  28754. height: math.unit(4 + 9 / 12, "feet"),
  28755. weight: math.unit(130, "lb"),
  28756. name: "Back (Dressed)",
  28757. image: {
  28758. source: "./media/characters/anchovie/back-dressed.svg",
  28759. extra: 385 / 352,
  28760. bottom: 16.6 / 402
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Micro",
  28767. height: math.unit(6.4, "inches")
  28768. },
  28769. {
  28770. name: "Normal",
  28771. height: math.unit(4 + 9 / 12, "feet"),
  28772. default: true
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28778. {
  28779. front: {
  28780. height: math.unit(2, "meters"),
  28781. weight: math.unit(180, "lb"),
  28782. name: "Front",
  28783. image: {
  28784. source: "./media/characters/acidrenamon/front.svg",
  28785. extra: 987 / 890,
  28786. bottom: 22.8 / 1009
  28787. }
  28788. },
  28789. back: {
  28790. height: math.unit(2, "meters"),
  28791. weight: math.unit(180, "lb"),
  28792. name: "Back",
  28793. image: {
  28794. source: "./media/characters/acidrenamon/back.svg",
  28795. extra: 983 / 891,
  28796. bottom: 8.4 / 992
  28797. }
  28798. },
  28799. head: {
  28800. height: math.unit(1.92, "feet"),
  28801. name: "Head",
  28802. image: {
  28803. source: "./media/characters/acidrenamon/head.svg"
  28804. }
  28805. },
  28806. rump: {
  28807. height: math.unit(1.72, "feet"),
  28808. name: "Rump",
  28809. image: {
  28810. source: "./media/characters/acidrenamon/rump.svg"
  28811. }
  28812. },
  28813. tail: {
  28814. height: math.unit(4.2, "feet"),
  28815. name: "Tail",
  28816. image: {
  28817. source: "./media/characters/acidrenamon/tail.svg"
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Normal",
  28824. height: math.unit(2, "meters"),
  28825. default: true
  28826. },
  28827. {
  28828. name: "Minimacro",
  28829. height: math.unit(7, "meters")
  28830. },
  28831. {
  28832. name: "Macro",
  28833. height: math.unit(200, "meters")
  28834. },
  28835. {
  28836. name: "Gigamacro",
  28837. height: math.unit(0.2, "earths")
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(152, "feet"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/kenzie-lee/front.svg",
  28849. extra: 1869/1774,
  28850. bottom: 128/1997
  28851. }
  28852. },
  28853. side: {
  28854. height: math.unit(86, "feet"),
  28855. name: "Side",
  28856. image: {
  28857. source: "./media/characters/kenzie-lee/side.svg",
  28858. extra: 930/815,
  28859. bottom: 177/1107
  28860. }
  28861. },
  28862. paw: {
  28863. height: math.unit(15, "feet"),
  28864. name: "Paw",
  28865. image: {
  28866. source: "./media/characters/kenzie-lee/paw.svg"
  28867. }
  28868. },
  28869. },
  28870. [
  28871. {
  28872. name: "Kenzie Flea",
  28873. height: math.unit(2, "mm"),
  28874. default: true
  28875. },
  28876. {
  28877. name: "Micro",
  28878. height: math.unit(2, "inches")
  28879. },
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(152, "feet")
  28883. },
  28884. {
  28885. name: "Megamacro",
  28886. height: math.unit(7, "miles")
  28887. },
  28888. {
  28889. name: "Gigamacro",
  28890. height: math.unit(8000, "miles")
  28891. },
  28892. ]
  28893. ))
  28894. characterMakers.push(() => makeCharacter(
  28895. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28896. {
  28897. front: {
  28898. height: math.unit(6, "feet"),
  28899. name: "Front",
  28900. image: {
  28901. source: "./media/characters/withers/front.svg",
  28902. extra: 1935/1760,
  28903. bottom: 72/2007
  28904. }
  28905. },
  28906. back: {
  28907. height: math.unit(6, "feet"),
  28908. name: "Back",
  28909. image: {
  28910. source: "./media/characters/withers/back.svg",
  28911. extra: 1944/1792,
  28912. bottom: 12/1956
  28913. }
  28914. },
  28915. dressed: {
  28916. height: math.unit(6, "feet"),
  28917. name: "Dressed",
  28918. image: {
  28919. source: "./media/characters/withers/dressed.svg",
  28920. extra: 1937/1765,
  28921. bottom: 73/2010
  28922. }
  28923. },
  28924. phase1: {
  28925. height: math.unit(1.1, "feet"),
  28926. name: "Phase 1",
  28927. image: {
  28928. source: "./media/characters/withers/phase-1.svg",
  28929. extra: 1885/1232,
  28930. bottom: 0/1885
  28931. }
  28932. },
  28933. phase2: {
  28934. height: math.unit(1.05, "feet"),
  28935. name: "Phase 2",
  28936. image: {
  28937. source: "./media/characters/withers/phase-2.svg",
  28938. extra: 1792/1090,
  28939. bottom: 0/1792
  28940. }
  28941. },
  28942. partyWipe: {
  28943. height: math.unit(1.1, "feet"),
  28944. name: "Party Wipe",
  28945. image: {
  28946. source: "./media/characters/withers/party-wipe.svg",
  28947. extra: 1864/1207,
  28948. bottom: 0/1864
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Macro",
  28955. height: math.unit(167, "feet"),
  28956. default: true
  28957. },
  28958. {
  28959. name: "Megamacro",
  28960. height: math.unit(15, "miles")
  28961. }
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28966. {
  28967. front: {
  28968. height: math.unit(6 + 7 / 12, "feet"),
  28969. weight: math.unit(250, "lb"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/nemoskii/front.svg",
  28973. extra: 2270 / 1734,
  28974. bottom: 86 / 2354
  28975. }
  28976. },
  28977. back: {
  28978. height: math.unit(6 + 7 / 12, "feet"),
  28979. weight: math.unit(250, "lb"),
  28980. name: "Back",
  28981. image: {
  28982. source: "./media/characters/nemoskii/back.svg",
  28983. extra: 1845 / 1788,
  28984. bottom: 10.5 / 1852
  28985. }
  28986. },
  28987. head: {
  28988. height: math.unit(1.31, "feet"),
  28989. name: "Head",
  28990. image: {
  28991. source: "./media/characters/nemoskii/head.svg"
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Micro",
  28998. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28999. },
  29000. {
  29001. name: "Normal",
  29002. height: math.unit(6 + 7 / 12, "feet"),
  29003. default: true
  29004. },
  29005. {
  29006. name: "Macro",
  29007. height: math.unit((6 + 7 / 12) * 150, "feet")
  29008. },
  29009. {
  29010. name: "Macro+",
  29011. height: math.unit((6 + 7 / 12) * 500, "feet")
  29012. },
  29013. {
  29014. name: "Megamacro",
  29015. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29016. },
  29017. ]
  29018. ))
  29019. characterMakers.push(() => makeCharacter(
  29020. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29021. {
  29022. front: {
  29023. height: math.unit(1, "mile"),
  29024. weight: math.unit(265261.9, "lb"),
  29025. name: "Front",
  29026. image: {
  29027. source: "./media/characters/shui/front.svg",
  29028. extra: 1633 / 1564,
  29029. bottom: 91.5 / 1726
  29030. }
  29031. },
  29032. },
  29033. [
  29034. {
  29035. name: "Macro",
  29036. height: math.unit(1, "mile"),
  29037. default: true
  29038. },
  29039. ]
  29040. ))
  29041. characterMakers.push(() => makeCharacter(
  29042. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29043. {
  29044. front: {
  29045. height: math.unit(12 + 6 / 12, "feet"),
  29046. weight: math.unit(1342, "lb"),
  29047. name: "Front",
  29048. image: {
  29049. source: "./media/characters/arokh-takakura/front.svg",
  29050. extra: 1089 / 1043,
  29051. bottom: 77.4 / 1176.7
  29052. }
  29053. },
  29054. back: {
  29055. height: math.unit(12 + 6 / 12, "feet"),
  29056. weight: math.unit(1342, "lb"),
  29057. name: "Back",
  29058. image: {
  29059. source: "./media/characters/arokh-takakura/back.svg",
  29060. extra: 1046 / 1019,
  29061. bottom: 102 / 1150
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Big",
  29068. height: math.unit(12 + 6 / 12, "feet"),
  29069. default: true
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29075. {
  29076. front: {
  29077. height: math.unit(5 + 6 / 12, "feet"),
  29078. weight: math.unit(150, "lb"),
  29079. name: "Front",
  29080. image: {
  29081. source: "./media/characters/theo/front.svg",
  29082. extra: 1184 / 1131,
  29083. bottom: 7.4 / 1191
  29084. }
  29085. },
  29086. },
  29087. [
  29088. {
  29089. name: "Micro",
  29090. height: math.unit(5, "inches")
  29091. },
  29092. {
  29093. name: "Normal",
  29094. height: math.unit(5 + 6 / 12, "feet"),
  29095. default: true
  29096. },
  29097. ]
  29098. ))
  29099. characterMakers.push(() => makeCharacter(
  29100. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29101. {
  29102. front: {
  29103. height: math.unit(5 + 9 / 12, "feet"),
  29104. weight: math.unit(130, "lb"),
  29105. name: "Front",
  29106. image: {
  29107. source: "./media/characters/cecelia-swift/front.svg",
  29108. extra: 502 / 484,
  29109. bottom: 23 / 523
  29110. }
  29111. },
  29112. back: {
  29113. height: math.unit(5 + 9 / 12, "feet"),
  29114. weight: math.unit(130, "lb"),
  29115. name: "Back",
  29116. image: {
  29117. source: "./media/characters/cecelia-swift/back.svg",
  29118. extra: 499 / 485,
  29119. bottom: 12 / 511
  29120. }
  29121. },
  29122. head: {
  29123. height: math.unit(0.90, "feet"),
  29124. name: "Head",
  29125. image: {
  29126. source: "./media/characters/cecelia-swift/head.svg"
  29127. }
  29128. },
  29129. rump: {
  29130. height: math.unit(1.75, "feet"),
  29131. name: "Rump",
  29132. image: {
  29133. source: "./media/characters/cecelia-swift/rump.svg"
  29134. }
  29135. },
  29136. },
  29137. [
  29138. {
  29139. name: "Normal",
  29140. height: math.unit(5 + 9 / 12, "feet"),
  29141. default: true
  29142. },
  29143. {
  29144. name: "Big",
  29145. height: math.unit(50, "feet")
  29146. },
  29147. {
  29148. name: "Macro",
  29149. height: math.unit(100, "feet")
  29150. },
  29151. {
  29152. name: "Macro+",
  29153. height: math.unit(500, "feet")
  29154. },
  29155. {
  29156. name: "Macro++",
  29157. height: math.unit(1000, "feet")
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(6, "feet"),
  29166. weight: math.unit(150, "lb"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/kaunan/front.svg",
  29170. extra: 2890 / 2523,
  29171. bottom: 49 / 2939
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Macro",
  29178. height: math.unit(150, "feet"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29185. {
  29186. dressed: {
  29187. height: math.unit(175, "cm"),
  29188. weight: math.unit(60, "kg"),
  29189. name: "Dressed",
  29190. image: {
  29191. source: "./media/characters/fei/dressed.svg",
  29192. extra: 1402/1278,
  29193. bottom: 27/1429
  29194. }
  29195. },
  29196. nude: {
  29197. height: math.unit(175, "cm"),
  29198. weight: math.unit(60, "kg"),
  29199. name: "Nude",
  29200. image: {
  29201. source: "./media/characters/fei/nude.svg",
  29202. extra: 1402/1278,
  29203. bottom: 27/1429
  29204. }
  29205. },
  29206. heels: {
  29207. height: math.unit(0.466, "feet"),
  29208. name: "Heels",
  29209. image: {
  29210. source: "./media/characters/fei/heels.svg",
  29211. extra: 156/152,
  29212. bottom: 28/184
  29213. }
  29214. },
  29215. },
  29216. [
  29217. {
  29218. name: "Mortal",
  29219. height: math.unit(175, "cm")
  29220. },
  29221. {
  29222. name: "Normal",
  29223. height: math.unit(3500, "m")
  29224. },
  29225. {
  29226. name: "Stroll",
  29227. height: math.unit(18.4, "km"),
  29228. default: true
  29229. },
  29230. {
  29231. name: "Showoff",
  29232. height: math.unit(175, "km")
  29233. },
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29238. {
  29239. front: {
  29240. height: math.unit(7, "feet"),
  29241. weight: math.unit(1000, "kg"),
  29242. name: "Front",
  29243. image: {
  29244. source: "./media/characters/edrax/front.svg",
  29245. extra: 2838 / 2550,
  29246. bottom: 130 / 2968
  29247. }
  29248. },
  29249. },
  29250. [
  29251. {
  29252. name: "Small",
  29253. height: math.unit(7, "feet")
  29254. },
  29255. {
  29256. name: "Normal",
  29257. height: math.unit(1500, "meters")
  29258. },
  29259. {
  29260. name: "Mega",
  29261. height: math.unit(12000000, "km"),
  29262. default: true
  29263. },
  29264. {
  29265. name: "Megamacro",
  29266. height: math.unit(10600000, "lightyears")
  29267. },
  29268. {
  29269. name: "Hypermacro",
  29270. height: math.unit(256, "yottameters")
  29271. },
  29272. ]
  29273. ))
  29274. characterMakers.push(() => makeCharacter(
  29275. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29276. {
  29277. front: {
  29278. height: math.unit(10, "feet"),
  29279. weight: math.unit(750, "lb"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/clove/front.svg",
  29283. extra: 1918/1751,
  29284. bottom: 52/1970
  29285. }
  29286. },
  29287. back: {
  29288. height: math.unit(10, "feet"),
  29289. weight: math.unit(750, "lb"),
  29290. name: "Back",
  29291. image: {
  29292. source: "./media/characters/clove/back.svg",
  29293. extra: 1912/1747,
  29294. bottom: 50/1962
  29295. }
  29296. },
  29297. },
  29298. [
  29299. {
  29300. name: "Normal",
  29301. height: math.unit(10, "feet"),
  29302. default: true
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(4, "feet"),
  29311. weight: math.unit(50, "lb"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/alex-rabbit/front.svg",
  29315. extra: 507 / 458,
  29316. bottom: 18.5 / 527
  29317. }
  29318. },
  29319. back: {
  29320. height: math.unit(4, "feet"),
  29321. weight: math.unit(50, "lb"),
  29322. name: "Back",
  29323. image: {
  29324. source: "./media/characters/alex-rabbit/back.svg",
  29325. extra: 502 / 460,
  29326. bottom: 18.9 / 521
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(4, "feet"),
  29334. default: true
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(1 + 3 / 12, "feet"),
  29343. weight: math.unit(80, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/zander-rose/front.svg",
  29347. extra: 916 / 797,
  29348. bottom: 17 / 933
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(1 + 3 / 12, "feet"),
  29353. weight: math.unit(80, "lb"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/zander-rose/back.svg",
  29357. extra: 903 / 779,
  29358. bottom: 31 / 934
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(1 + 3 / 12, "feet"),
  29366. default: true
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29372. {
  29373. anthro: {
  29374. height: math.unit(6, "feet"),
  29375. weight: math.unit(150, "lb"),
  29376. name: "Anthro",
  29377. image: {
  29378. source: "./media/characters/razz/anthro.svg",
  29379. extra: 1437 / 1343,
  29380. bottom: 48 / 1485
  29381. }
  29382. },
  29383. feral: {
  29384. height: math.unit(6, "feet"),
  29385. weight: math.unit(150, "lb"),
  29386. name: "Feral",
  29387. image: {
  29388. source: "./media/characters/razz/feral.svg",
  29389. extra: 2569 / 1385,
  29390. bottom: 95 / 2664
  29391. }
  29392. },
  29393. },
  29394. [
  29395. {
  29396. name: "Normal",
  29397. height: math.unit(6, "feet"),
  29398. default: true
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29404. {
  29405. front: {
  29406. height: math.unit(9 + 4 / 12, "feet"),
  29407. weight: math.unit(500, "lb"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/morrigan/front.svg",
  29411. extra: 2707 / 2579,
  29412. bottom: 156 / 2863
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Normal",
  29419. height: math.unit(9 + 4 / 12, "feet"),
  29420. default: true
  29421. },
  29422. ]
  29423. ))
  29424. characterMakers.push(() => makeCharacter(
  29425. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29426. {
  29427. front: {
  29428. height: math.unit(5, "stories"),
  29429. weight: math.unit(4000, "lb"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/jenene/front.svg",
  29433. extra: 1780 / 1710,
  29434. bottom: 57 / 1837
  29435. }
  29436. },
  29437. },
  29438. [
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(5, "stories"),
  29442. default: true
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29448. {
  29449. taurSfw: {
  29450. height: math.unit(10, "meters"),
  29451. weight: math.unit(17500, "kg"),
  29452. name: "Taur",
  29453. image: {
  29454. source: "./media/characters/faey/taur-sfw.svg",
  29455. extra: 1200 / 968,
  29456. bottom: 41 / 1241
  29457. }
  29458. },
  29459. chestmaw: {
  29460. height: math.unit(2.01, "meters"),
  29461. name: "Chestmaw",
  29462. image: {
  29463. source: "./media/characters/faey/chestmaw.svg"
  29464. }
  29465. },
  29466. foot: {
  29467. height: math.unit(2.43, "meters"),
  29468. name: "Foot",
  29469. image: {
  29470. source: "./media/characters/faey/foot.svg"
  29471. }
  29472. },
  29473. jaws: {
  29474. height: math.unit(1.66, "meters"),
  29475. name: "Jaws",
  29476. image: {
  29477. source: "./media/characters/faey/jaws.svg"
  29478. }
  29479. },
  29480. tongues: {
  29481. height: math.unit(2.01, "meters"),
  29482. name: "Tongues",
  29483. image: {
  29484. source: "./media/characters/faey/tongues.svg"
  29485. }
  29486. },
  29487. },
  29488. [
  29489. {
  29490. name: "Small",
  29491. height: math.unit(10, "meters"),
  29492. default: true
  29493. },
  29494. {
  29495. name: "Big",
  29496. height: math.unit(500000, "km")
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29502. {
  29503. front: {
  29504. height: math.unit(7, "feet"),
  29505. weight: math.unit(275, "lb"),
  29506. name: "Front",
  29507. image: {
  29508. source: "./media/characters/roku/front.svg",
  29509. extra: 903 / 878,
  29510. bottom: 37 / 940
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Normal",
  29517. height: math.unit(7, "feet"),
  29518. default: true
  29519. },
  29520. {
  29521. name: "Macro",
  29522. height: math.unit(500, "feet")
  29523. },
  29524. {
  29525. name: "Megamacro",
  29526. height: math.unit(200, "miles")
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(6 + 2 / 12, "feet"),
  29535. weight: math.unit(150, "lb"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/lira/front.svg",
  29539. extra: 1727 / 1605,
  29540. bottom: 26 / 1753
  29541. }
  29542. },
  29543. back: {
  29544. height: math.unit(6 + 2 / 12, "feet"),
  29545. weight: math.unit(150, "lb"),
  29546. name: "Back",
  29547. image: {
  29548. source: "./media/characters/lira/back.svg",
  29549. extra: 1713/1621,
  29550. bottom: 20/1733
  29551. }
  29552. },
  29553. hand: {
  29554. height: math.unit(0.75, "feet"),
  29555. name: "Hand",
  29556. image: {
  29557. source: "./media/characters/lira/hand.svg"
  29558. }
  29559. },
  29560. maw: {
  29561. height: math.unit(0.65, "feet"),
  29562. name: "Maw",
  29563. image: {
  29564. source: "./media/characters/lira/maw.svg"
  29565. }
  29566. },
  29567. pawDigi: {
  29568. height: math.unit(1.6, "feet"),
  29569. name: "Paw Digi",
  29570. image: {
  29571. source: "./media/characters/lira/paw-digi.svg"
  29572. }
  29573. },
  29574. pawPlanti: {
  29575. height: math.unit(1.4, "feet"),
  29576. name: "Paw Planti",
  29577. image: {
  29578. source: "./media/characters/lira/paw-planti.svg"
  29579. }
  29580. },
  29581. },
  29582. [
  29583. {
  29584. name: "Normal",
  29585. height: math.unit(6 + 2 / 12, "feet"),
  29586. default: true
  29587. },
  29588. {
  29589. name: "Macro",
  29590. height: math.unit(100, "feet")
  29591. },
  29592. {
  29593. name: "Macro²",
  29594. height: math.unit(1600, "feet")
  29595. },
  29596. {
  29597. name: "Planetary",
  29598. height: math.unit(20, "earths")
  29599. },
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29604. {
  29605. front: {
  29606. height: math.unit(6, "feet"),
  29607. weight: math.unit(150, "lb"),
  29608. name: "Front",
  29609. image: {
  29610. source: "./media/characters/hadjet/front.svg",
  29611. extra: 1480 / 1346,
  29612. bottom: 26 / 1506
  29613. }
  29614. },
  29615. frontNsfw: {
  29616. height: math.unit(6, "feet"),
  29617. weight: math.unit(150, "lb"),
  29618. name: "Front (NSFW)",
  29619. image: {
  29620. source: "./media/characters/hadjet/front-nsfw.svg",
  29621. extra: 1440 / 1358,
  29622. bottom: 52 / 1492
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Macro",
  29629. height: math.unit(10, "stories"),
  29630. default: true
  29631. },
  29632. {
  29633. name: "Megamacro",
  29634. height: math.unit(1.5, "miles")
  29635. },
  29636. {
  29637. name: "Megamacro+",
  29638. height: math.unit(5, "miles")
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29644. {
  29645. side: {
  29646. height: math.unit(106, "feet"),
  29647. weight: math.unit(500, "tonnes"),
  29648. name: "Side",
  29649. image: {
  29650. source: "./media/characters/kodran/side.svg",
  29651. extra: 553 / 480,
  29652. bottom: 33 / 586
  29653. }
  29654. },
  29655. front: {
  29656. height: math.unit(132, "feet"),
  29657. weight: math.unit(500, "tonnes"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/kodran/front.svg",
  29661. extra: 667 / 643,
  29662. bottom: 42 / 709
  29663. }
  29664. },
  29665. flying: {
  29666. height: math.unit(350, "feet"),
  29667. weight: math.unit(500, "tonnes"),
  29668. name: "Flying",
  29669. image: {
  29670. source: "./media/characters/kodran/flying.svg"
  29671. }
  29672. },
  29673. foot: {
  29674. height: math.unit(33, "feet"),
  29675. name: "Foot",
  29676. image: {
  29677. source: "./media/characters/kodran/foot.svg"
  29678. }
  29679. },
  29680. footFront: {
  29681. height: math.unit(19, "feet"),
  29682. name: "Foot (Front)",
  29683. image: {
  29684. source: "./media/characters/kodran/foot-front.svg",
  29685. extra: 261 / 261,
  29686. bottom: 91 / 352
  29687. }
  29688. },
  29689. headFront: {
  29690. height: math.unit(53, "feet"),
  29691. name: "Head (Front)",
  29692. image: {
  29693. source: "./media/characters/kodran/head-front.svg"
  29694. }
  29695. },
  29696. headSide: {
  29697. height: math.unit(65, "feet"),
  29698. name: "Head (Side)",
  29699. image: {
  29700. source: "./media/characters/kodran/head-side.svg"
  29701. }
  29702. },
  29703. throat: {
  29704. height: math.unit(79, "feet"),
  29705. name: "Throat",
  29706. image: {
  29707. source: "./media/characters/kodran/throat.svg"
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "Large",
  29714. height: math.unit(106, "feet"),
  29715. default: true
  29716. },
  29717. ]
  29718. ))
  29719. characterMakers.push(() => makeCharacter(
  29720. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29721. {
  29722. side: {
  29723. height: math.unit(11, "feet"),
  29724. weight: math.unit(150, "lb"),
  29725. name: "Side",
  29726. image: {
  29727. source: "./media/characters/pyxaron/side.svg",
  29728. extra: 305 / 195,
  29729. bottom: 17 / 322
  29730. }
  29731. },
  29732. },
  29733. [
  29734. {
  29735. name: "Normal",
  29736. height: math.unit(11, "feet"),
  29737. default: true
  29738. },
  29739. ]
  29740. ))
  29741. characterMakers.push(() => makeCharacter(
  29742. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29743. {
  29744. front: {
  29745. height: math.unit(6, "feet"),
  29746. weight: math.unit(150, "lb"),
  29747. name: "Front",
  29748. image: {
  29749. source: "./media/characters/meep/front.svg",
  29750. extra: 88 / 80,
  29751. bottom: 6 / 94
  29752. }
  29753. },
  29754. },
  29755. [
  29756. {
  29757. name: "Fun Sized",
  29758. height: math.unit(2, "inches"),
  29759. default: true
  29760. },
  29761. {
  29762. name: "Friend Sized",
  29763. height: math.unit(8, "inches")
  29764. },
  29765. ]
  29766. ))
  29767. characterMakers.push(() => makeCharacter(
  29768. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29769. {
  29770. front: {
  29771. height: math.unit(15, "feet"),
  29772. weight: math.unit(2500, "lb"),
  29773. name: "Front",
  29774. image: {
  29775. source: "./media/characters/holly-rabbit/front.svg",
  29776. extra: 1433 / 1233,
  29777. bottom: 125 / 1558
  29778. }
  29779. },
  29780. dick: {
  29781. height: math.unit(4.6, "feet"),
  29782. name: "Dick",
  29783. image: {
  29784. source: "./media/characters/holly-rabbit/dick.svg"
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(15, "feet"),
  29792. default: true
  29793. },
  29794. {
  29795. name: "Macro",
  29796. height: math.unit(250, "feet")
  29797. },
  29798. {
  29799. name: "Macro+",
  29800. height: math.unit(2500, "feet")
  29801. },
  29802. ]
  29803. ))
  29804. characterMakers.push(() => makeCharacter(
  29805. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29806. {
  29807. front: {
  29808. height: math.unit(3.02, "meters"),
  29809. weight: math.unit(500, "kg"),
  29810. name: "Front",
  29811. image: {
  29812. source: "./media/characters/drena/front.svg",
  29813. extra: 282 / 243,
  29814. bottom: 8 / 290
  29815. }
  29816. },
  29817. side: {
  29818. height: math.unit(3.02, "meters"),
  29819. weight: math.unit(500, "kg"),
  29820. name: "Side",
  29821. image: {
  29822. source: "./media/characters/drena/side.svg",
  29823. extra: 280 / 245,
  29824. bottom: 10 / 290
  29825. }
  29826. },
  29827. back: {
  29828. height: math.unit(3.02, "meters"),
  29829. weight: math.unit(500, "kg"),
  29830. name: "Back",
  29831. image: {
  29832. source: "./media/characters/drena/back.svg",
  29833. extra: 278 / 243,
  29834. bottom: 2 / 280
  29835. }
  29836. },
  29837. foot: {
  29838. height: math.unit(0.75, "meters"),
  29839. name: "Foot",
  29840. image: {
  29841. source: "./media/characters/drena/foot.svg"
  29842. }
  29843. },
  29844. maw: {
  29845. height: math.unit(0.82, "meters"),
  29846. name: "Maw",
  29847. image: {
  29848. source: "./media/characters/drena/maw.svg"
  29849. }
  29850. },
  29851. eating: {
  29852. height: math.unit(0.75, "meters"),
  29853. name: "Eating",
  29854. image: {
  29855. source: "./media/characters/drena/eating.svg"
  29856. }
  29857. },
  29858. rump: {
  29859. height: math.unit(0.93, "meters"),
  29860. name: "Rump",
  29861. image: {
  29862. source: "./media/characters/drena/rump.svg"
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Normal",
  29869. height: math.unit(3.02, "meters"),
  29870. default: true
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29876. {
  29877. front: {
  29878. height: math.unit(6 + 4 / 12, "feet"),
  29879. weight: math.unit(250, "lb"),
  29880. name: "Front",
  29881. image: {
  29882. source: "./media/characters/remmyzilla/front.svg",
  29883. extra: 4033 / 3588,
  29884. bottom: 123 / 4156
  29885. }
  29886. },
  29887. back: {
  29888. height: math.unit(6 + 4 / 12, "feet"),
  29889. weight: math.unit(250, "lb"),
  29890. name: "Back",
  29891. image: {
  29892. source: "./media/characters/remmyzilla/back.svg",
  29893. extra: 2687 / 2555,
  29894. bottom: 48 / 2735
  29895. }
  29896. },
  29897. paw: {
  29898. height: math.unit(1.73, "feet"),
  29899. name: "Paw",
  29900. image: {
  29901. source: "./media/characters/remmyzilla/paw.svg"
  29902. },
  29903. extraAttributes: {
  29904. "toeSize": {
  29905. name: "Toe Size",
  29906. power: 2,
  29907. type: "area",
  29908. base: math.unit(0.0035, "m^2")
  29909. },
  29910. "padSize": {
  29911. name: "Pad Size",
  29912. power: 2,
  29913. type: "area",
  29914. base: math.unit(0.015, "m^2")
  29915. },
  29916. "pawsize": {
  29917. name: "Paw Size",
  29918. power: 2,
  29919. type: "area",
  29920. base: math.unit(0.072, "m^2")
  29921. },
  29922. }
  29923. },
  29924. maw: {
  29925. height: math.unit(1.73, "feet"),
  29926. name: "Maw",
  29927. image: {
  29928. source: "./media/characters/remmyzilla/maw.svg"
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Normal",
  29935. height: math.unit(6 + 4 / 12, "feet")
  29936. },
  29937. {
  29938. name: "Minimacro",
  29939. height: math.unit(12 + 8 / 12, "feet")
  29940. },
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(640, "feet"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Megamacro",
  29948. height: math.unit(6400, "feet")
  29949. },
  29950. {
  29951. name: "Gigamacro",
  29952. height: math.unit(64000, "miles")
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29958. {
  29959. front: {
  29960. height: math.unit(2.5, "meters"),
  29961. weight: math.unit(300, "lb"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/lawrence/front.svg",
  29965. extra: 357 / 335,
  29966. bottom: 30 / 387
  29967. }
  29968. },
  29969. back: {
  29970. height: math.unit(2.5, "meters"),
  29971. weight: math.unit(300, "lb"),
  29972. name: "Back",
  29973. image: {
  29974. source: "./media/characters/lawrence/back.svg",
  29975. extra: 357 / 338,
  29976. bottom: 16 / 373
  29977. }
  29978. },
  29979. head: {
  29980. height: math.unit(0.9, "meter"),
  29981. name: "Head",
  29982. image: {
  29983. source: "./media/characters/lawrence/head.svg"
  29984. }
  29985. },
  29986. maw: {
  29987. height: math.unit(0.7, "meter"),
  29988. name: "Maw",
  29989. image: {
  29990. source: "./media/characters/lawrence/maw.svg"
  29991. }
  29992. },
  29993. footBottom: {
  29994. height: math.unit(0.5, "meter"),
  29995. name: "Foot (Bottom)",
  29996. image: {
  29997. source: "./media/characters/lawrence/foot-bottom.svg"
  29998. }
  29999. },
  30000. footTop: {
  30001. height: math.unit(0.5, "meter"),
  30002. name: "Foot (Top)",
  30003. image: {
  30004. source: "./media/characters/lawrence/foot-top.svg"
  30005. }
  30006. },
  30007. },
  30008. [
  30009. {
  30010. name: "Normal",
  30011. height: math.unit(2.5, "meters"),
  30012. default: true
  30013. },
  30014. {
  30015. name: "Macro",
  30016. height: math.unit(95, "meters")
  30017. },
  30018. {
  30019. name: "Megamacro",
  30020. height: math.unit(150, "km")
  30021. },
  30022. ]
  30023. ))
  30024. characterMakers.push(() => makeCharacter(
  30025. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30026. {
  30027. front: {
  30028. height: math.unit(4.2, "meters"),
  30029. name: "Front",
  30030. image: {
  30031. source: "./media/characters/sydney/front.svg",
  30032. extra: 1323 / 1277,
  30033. bottom: 111 / 1434
  30034. }
  30035. },
  30036. },
  30037. [
  30038. {
  30039. name: "Normal",
  30040. height: math.unit(4.2, "meters"),
  30041. default: true
  30042. },
  30043. ]
  30044. ))
  30045. characterMakers.push(() => makeCharacter(
  30046. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30047. {
  30048. back: {
  30049. height: math.unit(201, "feet"),
  30050. name: "Back",
  30051. image: {
  30052. source: "./media/characters/jessica/back.svg",
  30053. extra: 273 / 259,
  30054. bottom: 7 / 280
  30055. }
  30056. },
  30057. },
  30058. [
  30059. {
  30060. name: "Normal",
  30061. height: math.unit(201, "feet"),
  30062. default: true
  30063. },
  30064. {
  30065. name: "Megamacro",
  30066. height: math.unit(8, "miles")
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30072. {
  30073. side: {
  30074. height: math.unit(5.6, "m"),
  30075. weight: math.unit(8000, "kg"),
  30076. name: "Side",
  30077. image: {
  30078. source: "./media/characters/victoria/side.svg",
  30079. extra: 1542/1229,
  30080. bottom: 124/1666
  30081. }
  30082. },
  30083. maw: {
  30084. height: math.unit(7.14, "feet"),
  30085. name: "Maw",
  30086. image: {
  30087. source: "./media/characters/victoria/maw.svg"
  30088. }
  30089. },
  30090. },
  30091. [
  30092. {
  30093. name: "Normal",
  30094. height: math.unit(5.6, "m"),
  30095. default: true
  30096. },
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30101. {
  30102. front: {
  30103. height: math.unit(5 + 6 / 12, "feet"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/cat/front.svg",
  30107. extra: 1449/1295,
  30108. bottom: 34/1483
  30109. },
  30110. form: "cat",
  30111. default: true
  30112. },
  30113. back: {
  30114. height: math.unit(5 + 6 / 12, "feet"),
  30115. name: "Back",
  30116. image: {
  30117. source: "./media/characters/cat/back.svg",
  30118. extra: 1466/1301,
  30119. bottom: 19/1485
  30120. },
  30121. form: "cat"
  30122. },
  30123. taur: {
  30124. height: math.unit(7, "feet"),
  30125. name: "Taur",
  30126. image: {
  30127. source: "./media/characters/cat/taur.svg",
  30128. extra: 1389/1233,
  30129. bottom: 83/1472
  30130. },
  30131. form: "taur",
  30132. default: true
  30133. },
  30134. lucarioFront: {
  30135. height: math.unit(4, "feet"),
  30136. name: "Lucario (Front)",
  30137. image: {
  30138. source: "./media/characters/cat/lucario-front.svg",
  30139. extra: 1149/1019,
  30140. bottom: 84/1233
  30141. },
  30142. form: "lucario",
  30143. default: true
  30144. },
  30145. lucarioBack: {
  30146. height: math.unit(4, "feet"),
  30147. name: "Lucario (Back)",
  30148. image: {
  30149. source: "./media/characters/cat/lucario-back.svg",
  30150. extra: 1190/1059,
  30151. bottom: 33/1223
  30152. },
  30153. form: "lucario"
  30154. },
  30155. megaLucario: {
  30156. height: math.unit(4, "feet"),
  30157. name: "Mega Lucario",
  30158. image: {
  30159. source: "./media/characters/cat/mega-lucario.svg",
  30160. extra: 1515 / 1319,
  30161. bottom: 63 / 1578
  30162. },
  30163. form: "lucario"
  30164. },
  30165. nickit: {
  30166. height: math.unit(2, "feet"),
  30167. name: "Nickit",
  30168. image: {
  30169. source: "./media/characters/cat/nickit.svg",
  30170. extra: 1980 / 1585,
  30171. bottom: 102 / 2082
  30172. },
  30173. form: "nickit",
  30174. default: true
  30175. },
  30176. lopunnyFront: {
  30177. height: math.unit(5, "feet"),
  30178. name: "Lopunny (Front)",
  30179. image: {
  30180. source: "./media/characters/cat/lopunny-front.svg",
  30181. extra: 1782 / 1469,
  30182. bottom: 38 / 1820
  30183. },
  30184. form: "lopunny",
  30185. default: true
  30186. },
  30187. lopunnyBack: {
  30188. height: math.unit(5, "feet"),
  30189. name: "Lopunny (Back)",
  30190. image: {
  30191. source: "./media/characters/cat/lopunny-back.svg",
  30192. extra: 1660 / 1490,
  30193. bottom: 25 / 1685
  30194. },
  30195. form: "lopunny"
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Really small",
  30201. height: math.unit(1, "nm")
  30202. },
  30203. {
  30204. name: "Micro",
  30205. height: math.unit(5, "inches")
  30206. },
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(5 + 6 / 12, "feet"),
  30210. default: true
  30211. },
  30212. {
  30213. name: "Macro",
  30214. height: math.unit(50, "feet")
  30215. },
  30216. {
  30217. name: "Macro+",
  30218. height: math.unit(150, "feet")
  30219. },
  30220. {
  30221. name: "Megamacro",
  30222. height: math.unit(100, "miles")
  30223. },
  30224. ]
  30225. ))
  30226. characterMakers.push(() => makeCharacter(
  30227. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30228. {
  30229. front: {
  30230. height: math.unit(63.4, "meters"),
  30231. weight: math.unit(3.28349e+6, "kilograms"),
  30232. name: "Front",
  30233. image: {
  30234. source: "./media/characters/kirina-violet/front.svg",
  30235. extra: 2812 / 2725,
  30236. bottom: 0 / 2812
  30237. }
  30238. },
  30239. back: {
  30240. height: math.unit(63.4, "meters"),
  30241. weight: math.unit(3.28349e+6, "kilograms"),
  30242. name: "Back",
  30243. image: {
  30244. source: "./media/characters/kirina-violet/back.svg",
  30245. extra: 2812 / 2725,
  30246. bottom: 0 / 2812
  30247. }
  30248. },
  30249. mouth: {
  30250. height: math.unit(4.35, "meters"),
  30251. name: "Mouth",
  30252. image: {
  30253. source: "./media/characters/kirina-violet/mouth.svg"
  30254. }
  30255. },
  30256. paw: {
  30257. height: math.unit(5.6, "meters"),
  30258. name: "Paw",
  30259. image: {
  30260. source: "./media/characters/kirina-violet/paw.svg"
  30261. }
  30262. },
  30263. tail: {
  30264. height: math.unit(18, "meters"),
  30265. name: "Tail",
  30266. image: {
  30267. source: "./media/characters/kirina-violet/tail.svg"
  30268. }
  30269. },
  30270. },
  30271. [
  30272. {
  30273. name: "Macro",
  30274. height: math.unit(63.4, "meters"),
  30275. default: true
  30276. },
  30277. ]
  30278. ))
  30279. characterMakers.push(() => makeCharacter(
  30280. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30281. {
  30282. front: {
  30283. height: math.unit(75, "feet"),
  30284. name: "Front",
  30285. image: {
  30286. source: "./media/characters/cat-gigachu/front.svg",
  30287. extra: 1239/1027,
  30288. bottom: 32/1271
  30289. }
  30290. },
  30291. back: {
  30292. height: math.unit(75, "feet"),
  30293. name: "Back",
  30294. image: {
  30295. source: "./media/characters/cat-gigachu/back.svg",
  30296. extra: 1229/1030,
  30297. bottom: 9/1238
  30298. }
  30299. },
  30300. },
  30301. [
  30302. {
  30303. name: "Dynamax",
  30304. height: math.unit(75, "feet"),
  30305. default: true
  30306. },
  30307. ]
  30308. ))
  30309. characterMakers.push(() => makeCharacter(
  30310. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30311. {
  30312. front: {
  30313. height: math.unit(6, "feet"),
  30314. weight: math.unit(150, "lb"),
  30315. name: "Front",
  30316. image: {
  30317. source: "./media/characters/sfaiyan/front.svg",
  30318. extra: 999 / 978,
  30319. bottom: 5 / 1004
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Normal",
  30326. height: math.unit(1.82, "meters")
  30327. },
  30328. {
  30329. name: "Giant",
  30330. height: math.unit(2.27, "km"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30337. {
  30338. front: {
  30339. height: math.unit(179, "cm"),
  30340. weight: math.unit(100, "kg"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/raunehkeli/front.svg",
  30344. extra: 1934 / 1926,
  30345. bottom: 0 / 1934
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Normal",
  30352. height: math.unit(179, "cm")
  30353. },
  30354. {
  30355. name: "Maximum",
  30356. height: math.unit(575, "meters"),
  30357. default: true
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30363. {
  30364. front: {
  30365. height: math.unit(6, "feet"),
  30366. weight: math.unit(150, "lb"),
  30367. name: "Front",
  30368. image: {
  30369. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30370. extra: 2625 / 2518,
  30371. bottom: 60 / 2685
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Normal",
  30378. height: math.unit(6 + 2 / 12, "feet")
  30379. },
  30380. {
  30381. name: "Macro",
  30382. height: math.unit(1180, "feet"),
  30383. default: true
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(5 + 6 / 12, "feet"),
  30392. weight: math.unit(108, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/lilith-zott/front.svg",
  30396. extra: 2510 / 2238,
  30397. bottom: 100 / 2610
  30398. }
  30399. },
  30400. frontDressed: {
  30401. height: math.unit(5 + 6 / 12, "feet"),
  30402. weight: math.unit(108, "lb"),
  30403. name: "Front (Dressed)",
  30404. image: {
  30405. source: "./media/characters/lilith-zott/front-dressed.svg",
  30406. extra: 2510 / 2238,
  30407. bottom: 100 / 2610
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(5 + 6 / 12, "feet")
  30415. },
  30416. {
  30417. name: "Macro",
  30418. height: math.unit(1030, "feet"),
  30419. default: true
  30420. },
  30421. ]
  30422. ))
  30423. characterMakers.push(() => makeCharacter(
  30424. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30425. {
  30426. front: {
  30427. height: math.unit(6, "feet"),
  30428. weight: math.unit(150, "lb"),
  30429. name: "Front",
  30430. image: {
  30431. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30432. extra: 2567 / 2435,
  30433. bottom: 39 / 2606
  30434. }
  30435. },
  30436. frontSuper: {
  30437. height: math.unit(6, "feet"),
  30438. name: "Front (Super)",
  30439. image: {
  30440. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30441. extra: 2567 / 2435,
  30442. bottom: 39 / 2606
  30443. }
  30444. },
  30445. },
  30446. [
  30447. {
  30448. name: "Normal",
  30449. height: math.unit(5 + 10 / 12, "feet")
  30450. },
  30451. {
  30452. name: "Macro",
  30453. height: math.unit(1100, "feet"),
  30454. default: true
  30455. },
  30456. ]
  30457. ))
  30458. characterMakers.push(() => makeCharacter(
  30459. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30460. {
  30461. front: {
  30462. height: math.unit(100, "miles"),
  30463. name: "Front",
  30464. image: {
  30465. source: "./media/characters/sona/front.svg",
  30466. extra: 2433 / 2201,
  30467. bottom: 53 / 2486
  30468. }
  30469. },
  30470. foot: {
  30471. height: math.unit(16.1, "miles"),
  30472. name: "Foot",
  30473. image: {
  30474. source: "./media/characters/sona/foot.svg"
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Macro",
  30481. height: math.unit(100, "miles"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30488. {
  30489. front: {
  30490. height: math.unit(6, "feet"),
  30491. weight: math.unit(150, "lb"),
  30492. name: "Front",
  30493. image: {
  30494. source: "./media/characters/bailey/front.svg",
  30495. extra: 1778 / 1724,
  30496. bottom: 30 / 1808
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Micro",
  30503. height: math.unit(4, "inches")
  30504. },
  30505. {
  30506. name: "Normal",
  30507. height: math.unit(5 + 5 / 12, "feet"),
  30508. default: true
  30509. },
  30510. {
  30511. name: "Macro",
  30512. height: math.unit(250, "feet")
  30513. },
  30514. {
  30515. name: "Megamacro",
  30516. height: math.unit(100, "miles")
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30522. {
  30523. front: {
  30524. height: math.unit(5 + 2 / 12, "feet"),
  30525. weight: math.unit(120, "lb"),
  30526. name: "Front",
  30527. image: {
  30528. source: "./media/characters/snaps/front.svg",
  30529. extra: 2370 / 2177,
  30530. bottom: 48 / 2418
  30531. }
  30532. },
  30533. back: {
  30534. height: math.unit(5 + 2 / 12, "feet"),
  30535. weight: math.unit(120, "lb"),
  30536. name: "Back",
  30537. image: {
  30538. source: "./media/characters/snaps/back.svg",
  30539. extra: 2408 / 2258,
  30540. bottom: 15 / 2423
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Micro",
  30547. height: math.unit(9, "inches")
  30548. },
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(5 + 2 / 12, "feet"),
  30552. default: true
  30553. },
  30554. {
  30555. name: "Mini Macro",
  30556. height: math.unit(10, "feet")
  30557. },
  30558. ]
  30559. ))
  30560. characterMakers.push(() => makeCharacter(
  30561. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30562. {
  30563. front: {
  30564. height: math.unit(1.8, "meters"),
  30565. weight: math.unit(85, "kg"),
  30566. name: "Front",
  30567. image: {
  30568. source: "./media/characters/azteck/front.svg",
  30569. extra: 2815 / 2625,
  30570. bottom: 89 / 2904
  30571. }
  30572. },
  30573. back: {
  30574. height: math.unit(1.8, "meters"),
  30575. weight: math.unit(85, "kg"),
  30576. name: "Back",
  30577. image: {
  30578. source: "./media/characters/azteck/back.svg",
  30579. extra: 2856 / 2648,
  30580. bottom: 85 / 2941
  30581. }
  30582. },
  30583. frontDressed: {
  30584. height: math.unit(1.8, "meters"),
  30585. weight: math.unit(85, "kg"),
  30586. name: "Front (Dressed)",
  30587. image: {
  30588. source: "./media/characters/azteck/front-dressed.svg",
  30589. extra: 2147 / 2003,
  30590. bottom: 68 / 2215
  30591. }
  30592. },
  30593. head: {
  30594. height: math.unit(0.47, "meters"),
  30595. weight: math.unit(85, "kg"),
  30596. name: "Head",
  30597. image: {
  30598. source: "./media/characters/azteck/head.svg"
  30599. }
  30600. },
  30601. },
  30602. [
  30603. {
  30604. name: "Bite sized",
  30605. height: math.unit(16, "cm")
  30606. },
  30607. {
  30608. name: "Normal",
  30609. height: math.unit(1.8, "meters"),
  30610. default: true
  30611. },
  30612. ]
  30613. ))
  30614. characterMakers.push(() => makeCharacter(
  30615. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30616. {
  30617. front: {
  30618. height: math.unit(6, "feet"),
  30619. weight: math.unit(150, "lb"),
  30620. name: "Front",
  30621. image: {
  30622. source: "./media/characters/pidge/front.svg",
  30623. extra: 1936/1820,
  30624. bottom: 0/1936
  30625. }
  30626. },
  30627. back: {
  30628. height: math.unit(6, "feet"),
  30629. weight: math.unit(150, "lb"),
  30630. name: "Back",
  30631. image: {
  30632. source: "./media/characters/pidge/back.svg",
  30633. extra: 1938/1843,
  30634. bottom: 0/1938
  30635. }
  30636. },
  30637. casual: {
  30638. height: math.unit(6, "feet"),
  30639. weight: math.unit(150, "lb"),
  30640. name: "Casual",
  30641. image: {
  30642. source: "./media/characters/pidge/casual.svg",
  30643. extra: 1936/1820,
  30644. bottom: 0/1936
  30645. }
  30646. },
  30647. tech: {
  30648. height: math.unit(6, "feet"),
  30649. weight: math.unit(150, "lb"),
  30650. name: "Tech",
  30651. image: {
  30652. source: "./media/characters/pidge/tech.svg",
  30653. extra: 1802/1682,
  30654. bottom: 0/1802
  30655. }
  30656. },
  30657. head: {
  30658. height: math.unit(1.61, "feet"),
  30659. name: "Head",
  30660. image: {
  30661. source: "./media/characters/pidge/head.svg"
  30662. }
  30663. },
  30664. collar: {
  30665. height: math.unit(0.82, "feet"),
  30666. name: "Collar",
  30667. image: {
  30668. source: "./media/characters/pidge/collar.svg"
  30669. }
  30670. },
  30671. },
  30672. [
  30673. {
  30674. name: "Macro",
  30675. height: math.unit(2, "mile"),
  30676. default: true
  30677. },
  30678. {
  30679. name: "PUPPY",
  30680. height: math.unit(20, "miles")
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30686. {
  30687. front: {
  30688. height: math.unit(6, "feet"),
  30689. weight: math.unit(150, "lb"),
  30690. name: "Front",
  30691. image: {
  30692. source: "./media/characters/en/front.svg",
  30693. extra: 1697 / 1563,
  30694. bottom: 103 / 1800
  30695. }
  30696. },
  30697. back: {
  30698. height: math.unit(6, "feet"),
  30699. weight: math.unit(150, "lb"),
  30700. name: "Back",
  30701. image: {
  30702. source: "./media/characters/en/back.svg",
  30703. extra: 1700 / 1570,
  30704. bottom: 51 / 1751
  30705. }
  30706. },
  30707. frontDressed: {
  30708. height: math.unit(6, "feet"),
  30709. weight: math.unit(150, "lb"),
  30710. name: "Front (Dressed)",
  30711. image: {
  30712. source: "./media/characters/en/front-dressed.svg",
  30713. extra: 1697 / 1563,
  30714. bottom: 103 / 1800
  30715. }
  30716. },
  30717. backDressed: {
  30718. height: math.unit(6, "feet"),
  30719. weight: math.unit(150, "lb"),
  30720. name: "Back (Dressed)",
  30721. image: {
  30722. source: "./media/characters/en/back-dressed.svg",
  30723. extra: 1700 / 1570,
  30724. bottom: 51 / 1751
  30725. }
  30726. },
  30727. },
  30728. [
  30729. {
  30730. name: "Macro",
  30731. height: math.unit(210, "feet"),
  30732. default: true
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30738. {
  30739. front: {
  30740. height: math.unit(6, "feet"),
  30741. weight: math.unit(150, "lb"),
  30742. name: "Front",
  30743. image: {
  30744. source: "./media/characters/haze-orris/front.svg",
  30745. extra: 3975 / 3525,
  30746. bottom: 137 / 4112
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Micro",
  30753. height: math.unit(150, "mm"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30760. {
  30761. front: {
  30762. height: math.unit(6, "feet"),
  30763. weight: math.unit(150, "lb"),
  30764. name: "Front",
  30765. image: {
  30766. source: "./media/characters/casselene-yaro/front.svg",
  30767. extra: 4721 / 4541,
  30768. bottom: 82 / 4803
  30769. }
  30770. },
  30771. back: {
  30772. height: math.unit(6, "feet"),
  30773. weight: math.unit(150, "lb"),
  30774. name: "Back",
  30775. image: {
  30776. source: "./media/characters/casselene-yaro/back.svg",
  30777. extra: 4569 / 4377,
  30778. bottom: 69 / 4638
  30779. }
  30780. },
  30781. dressed: {
  30782. height: math.unit(6, "feet"),
  30783. weight: math.unit(150, "lb"),
  30784. name: "Dressed",
  30785. image: {
  30786. source: "./media/characters/casselene-yaro/dressed.svg",
  30787. extra: 4721 / 4541,
  30788. bottom: 82 / 4803
  30789. }
  30790. },
  30791. maw: {
  30792. height: math.unit(1, "feet"),
  30793. name: "Maw",
  30794. image: {
  30795. source: "./media/characters/casselene-yaro/maw.svg"
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Macro",
  30802. height: math.unit(190, "feet"),
  30803. default: true
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(10, "feet"),
  30812. weight: math.unit(15015, "lb"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/platine/front.svg",
  30816. extra: 1428/1353,
  30817. bottom: 31/1459
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(10, "feet"),
  30825. default: true
  30826. },
  30827. {
  30828. name: "Macro",
  30829. height: math.unit(100, "feet")
  30830. },
  30831. {
  30832. name: "Megamacro",
  30833. height: math.unit(1000, "feet")
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30839. {
  30840. front: {
  30841. height: math.unit(15 + 5 / 12, "feet"),
  30842. weight: math.unit(4600, "lb"),
  30843. name: "Front",
  30844. image: {
  30845. source: "./media/characters/neapolitan-ananassa/front.svg",
  30846. extra: 2903 / 2736,
  30847. bottom: 0 / 2903
  30848. }
  30849. },
  30850. side: {
  30851. height: math.unit(15 + 5 / 12, "feet"),
  30852. weight: math.unit(4600, "lb"),
  30853. name: "Side",
  30854. image: {
  30855. source: "./media/characters/neapolitan-ananassa/side.svg",
  30856. extra: 2925 / 2719,
  30857. bottom: 0 / 2925
  30858. }
  30859. },
  30860. back: {
  30861. height: math.unit(15 + 5 / 12, "feet"),
  30862. weight: math.unit(4600, "lb"),
  30863. name: "Back",
  30864. image: {
  30865. source: "./media/characters/neapolitan-ananassa/back.svg",
  30866. extra: 2903 / 2736,
  30867. bottom: 0 / 2903
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(15 + 5 / 12, "feet"),
  30875. default: true
  30876. },
  30877. {
  30878. name: "Post-Millenium",
  30879. height: math.unit(35 + 5 / 12, "feet")
  30880. },
  30881. {
  30882. name: "Post-Era",
  30883. height: math.unit(450 + 5 / 12, "feet")
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(300, "meters"),
  30892. weight: math.unit(125000, "tonnes"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/pazuzu/front.svg",
  30896. extra: 877 / 794,
  30897. bottom: 47 / 924
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Macro",
  30904. height: math.unit(300, "meters"),
  30905. default: true
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30911. {
  30912. side: {
  30913. height: math.unit(10 + 7 / 12, "feet"),
  30914. weight: math.unit(2.5, "tons"),
  30915. name: "Side",
  30916. image: {
  30917. source: "./media/characters/aasha/side.svg",
  30918. extra: 1345 / 1245,
  30919. bottom: 111 / 1456
  30920. }
  30921. },
  30922. back: {
  30923. height: math.unit(10 + 7 / 12, "feet"),
  30924. weight: math.unit(2.5, "tons"),
  30925. name: "Back",
  30926. image: {
  30927. source: "./media/characters/aasha/back.svg",
  30928. extra: 1133 / 1057,
  30929. bottom: 257 / 1390
  30930. }
  30931. },
  30932. },
  30933. [
  30934. {
  30935. name: "Normal",
  30936. height: math.unit(10 + 7 / 12, "feet"),
  30937. default: true
  30938. },
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30943. {
  30944. front: {
  30945. height: math.unit(6 + 3 / 12, "feet"),
  30946. name: "Front",
  30947. image: {
  30948. source: "./media/characters/nevan/front.svg",
  30949. extra: 704 / 704,
  30950. bottom: 28 / 732
  30951. }
  30952. },
  30953. back: {
  30954. height: math.unit(6 + 3 / 12, "feet"),
  30955. name: "Back",
  30956. image: {
  30957. source: "./media/characters/nevan/back.svg",
  30958. extra: 714 / 714,
  30959. bottom: 21 / 735
  30960. }
  30961. },
  30962. frontFlaccid: {
  30963. height: math.unit(6 + 3 / 12, "feet"),
  30964. name: "Front (Flaccid)",
  30965. image: {
  30966. source: "./media/characters/nevan/front-flaccid.svg",
  30967. extra: 704 / 704,
  30968. bottom: 28 / 732
  30969. }
  30970. },
  30971. frontErect: {
  30972. height: math.unit(6 + 3 / 12, "feet"),
  30973. name: "Front (Erect)",
  30974. image: {
  30975. source: "./media/characters/nevan/front-erect.svg",
  30976. extra: 704 / 704,
  30977. bottom: 28 / 732
  30978. }
  30979. },
  30980. backFlaccid: {
  30981. height: math.unit(6 + 3 / 12, "feet"),
  30982. name: "Back (Flaccid)",
  30983. image: {
  30984. source: "./media/characters/nevan/back-flaccid.svg",
  30985. extra: 714 / 714,
  30986. bottom: 21 / 735
  30987. }
  30988. },
  30989. },
  30990. [
  30991. {
  30992. name: "Normal",
  30993. height: math.unit(6 + 3 / 12, "feet"),
  30994. default: true
  30995. },
  30996. ]
  30997. ))
  30998. characterMakers.push(() => makeCharacter(
  30999. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31000. {
  31001. front: {
  31002. height: math.unit(4, "feet"),
  31003. name: "Front",
  31004. image: {
  31005. source: "./media/characters/arhan/front.svg",
  31006. extra: 3368 / 3133,
  31007. bottom: 0 / 3368
  31008. }
  31009. },
  31010. side: {
  31011. height: math.unit(4, "feet"),
  31012. name: "Side",
  31013. image: {
  31014. source: "./media/characters/arhan/side.svg",
  31015. extra: 3347 / 3105,
  31016. bottom: 0 / 3347
  31017. }
  31018. },
  31019. tongue: {
  31020. height: math.unit(1.42, "feet"),
  31021. name: "Tongue",
  31022. image: {
  31023. source: "./media/characters/arhan/tongue.svg"
  31024. }
  31025. },
  31026. head: {
  31027. height: math.unit(0.85, "feet"),
  31028. name: "Head",
  31029. image: {
  31030. source: "./media/characters/arhan/head.svg"
  31031. }
  31032. },
  31033. },
  31034. [
  31035. {
  31036. name: "Normal",
  31037. height: math.unit(4, "feet"),
  31038. default: true
  31039. },
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31044. {
  31045. front: {
  31046. height: math.unit(5 + 7.5 / 12, "feet"),
  31047. weight: math.unit(120, "lb"),
  31048. name: "Front",
  31049. image: {
  31050. source: "./media/characters/digi-duncan/front.svg",
  31051. extra: 330 / 326,
  31052. bottom: 16 / 346
  31053. }
  31054. },
  31055. side: {
  31056. height: math.unit(5 + 7.5 / 12, "feet"),
  31057. weight: math.unit(120, "lb"),
  31058. name: "Side",
  31059. image: {
  31060. source: "./media/characters/digi-duncan/side.svg",
  31061. extra: 341 / 337,
  31062. bottom: 1 / 342
  31063. }
  31064. },
  31065. back: {
  31066. height: math.unit(5 + 7.5 / 12, "feet"),
  31067. weight: math.unit(120, "lb"),
  31068. name: "Back",
  31069. image: {
  31070. source: "./media/characters/digi-duncan/back.svg",
  31071. extra: 330 / 326,
  31072. bottom: 12 / 342
  31073. }
  31074. },
  31075. },
  31076. [
  31077. {
  31078. name: "Speck",
  31079. height: math.unit(0.25, "mm")
  31080. },
  31081. {
  31082. name: "Micro",
  31083. height: math.unit(5, "mm")
  31084. },
  31085. {
  31086. name: "Tiny",
  31087. height: math.unit(0.5, "inches"),
  31088. default: true
  31089. },
  31090. {
  31091. name: "Human",
  31092. height: math.unit(5 + 7.5 / 12, "feet")
  31093. },
  31094. {
  31095. name: "Minigiant",
  31096. height: math.unit(8 + 5.25, "feet")
  31097. },
  31098. {
  31099. name: "Giant",
  31100. height: math.unit(2000, "feet")
  31101. },
  31102. {
  31103. name: "Mega",
  31104. height: math.unit(371.1, "miles")
  31105. },
  31106. ]
  31107. ))
  31108. characterMakers.push(() => makeCharacter(
  31109. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31110. {
  31111. front: {
  31112. height: math.unit(2, "meters"),
  31113. weight: math.unit(350, "kg"),
  31114. name: "Front",
  31115. image: {
  31116. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31117. extra: 898 / 838,
  31118. bottom: 9 / 907
  31119. }
  31120. },
  31121. },
  31122. [
  31123. {
  31124. name: "Micro",
  31125. height: math.unit(8, "meters")
  31126. },
  31127. {
  31128. name: "Normal",
  31129. height: math.unit(50, "meters"),
  31130. default: true
  31131. },
  31132. {
  31133. name: "Macro",
  31134. height: math.unit(500, "meters")
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31140. {
  31141. front: {
  31142. height: math.unit(6 + 6 / 12, "feet"),
  31143. name: "Front",
  31144. image: {
  31145. source: "./media/characters/khardesh/front.svg",
  31146. extra: 1788/1596,
  31147. bottom: 66/1854
  31148. }
  31149. },
  31150. back: {
  31151. height: math.unit(6 + 6 / 12, "feet"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/khardesh/back.svg",
  31155. extra: 1781/1584,
  31156. bottom: 68/1849
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Normal",
  31163. height: math.unit(6 + 6 / 12, "feet"),
  31164. default: true
  31165. },
  31166. {
  31167. name: "Normal+",
  31168. height: math.unit(4, "meters")
  31169. },
  31170. {
  31171. name: "Macro",
  31172. height: math.unit(50, "meters")
  31173. },
  31174. {
  31175. name: "Macro+",
  31176. height: math.unit(100, "meters")
  31177. },
  31178. {
  31179. name: "Megamacro",
  31180. height: math.unit(20, "km")
  31181. },
  31182. ]
  31183. ))
  31184. characterMakers.push(() => makeCharacter(
  31185. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31186. {
  31187. front: {
  31188. height: math.unit(6, "feet"),
  31189. weight: math.unit(150, "lb"),
  31190. name: "Front",
  31191. image: {
  31192. source: "./media/characters/kosho/front.svg",
  31193. extra: 1847 / 1847,
  31194. bottom: 86 / 1933
  31195. }
  31196. },
  31197. },
  31198. [
  31199. {
  31200. name: "Second-stage micro",
  31201. height: math.unit(0.5, "inches")
  31202. },
  31203. {
  31204. name: "First-stage micro",
  31205. height: math.unit(6, "inches")
  31206. },
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(6, "feet"),
  31210. default: true
  31211. },
  31212. {
  31213. name: "First-stage macro",
  31214. height: math.unit(72, "feet")
  31215. },
  31216. {
  31217. name: "Second-stage macro",
  31218. height: math.unit(864, "feet")
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31224. {
  31225. normal: {
  31226. height: math.unit(4 + 6 / 12, "feet"),
  31227. name: "Normal",
  31228. image: {
  31229. source: "./media/characters/hydra/normal.svg",
  31230. extra: 2833 / 2634,
  31231. bottom: 68 / 2901
  31232. }
  31233. },
  31234. smol: {
  31235. height: math.unit(0.705, "inches"),
  31236. name: "Smol",
  31237. image: {
  31238. source: "./media/characters/hydra/smol.svg",
  31239. extra: 2715 / 2540,
  31240. bottom: 0 / 2715
  31241. }
  31242. },
  31243. },
  31244. [
  31245. {
  31246. name: "Normal",
  31247. height: math.unit(4 + 6 / 12, "feet"),
  31248. default: true
  31249. }
  31250. ]
  31251. ))
  31252. characterMakers.push(() => makeCharacter(
  31253. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31254. {
  31255. front: {
  31256. height: math.unit(0.6, "cm"),
  31257. name: "Front",
  31258. image: {
  31259. source: "./media/characters/daz/front.svg",
  31260. extra: 1682 / 1164,
  31261. bottom: 42 / 1724
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Normal",
  31268. height: math.unit(0.6, "cm"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(6, "feet"),
  31278. weight: math.unit(235, "lb"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/theo-pangolin/front.svg",
  31282. extra: 1996 / 1969,
  31283. bottom: 115 / 2111
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(6, "feet"),
  31288. weight: math.unit(235, "lb"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/theo-pangolin/back.svg",
  31292. extra: 1979 / 1979,
  31293. bottom: 40 / 2019
  31294. }
  31295. },
  31296. feral: {
  31297. height: math.unit(2, "feet"),
  31298. weight: math.unit(30, "lb"),
  31299. name: "Feral",
  31300. image: {
  31301. source: "./media/characters/theo-pangolin/feral.svg",
  31302. extra: 803 / 791,
  31303. bottom: 181 / 984
  31304. }
  31305. },
  31306. footFive: {
  31307. height: math.unit(1.43, "feet"),
  31308. name: "Foot (Five Toes)",
  31309. image: {
  31310. source: "./media/characters/theo-pangolin/foot-five.svg"
  31311. }
  31312. },
  31313. footFour: {
  31314. height: math.unit(1.43, "feet"),
  31315. name: "Foot (Four Toes)",
  31316. image: {
  31317. source: "./media/characters/theo-pangolin/foot-four.svg"
  31318. }
  31319. },
  31320. handFour: {
  31321. height: math.unit(0.81, "feet"),
  31322. name: "Hand (Four Fingers)",
  31323. image: {
  31324. source: "./media/characters/theo-pangolin/hand-four.svg"
  31325. }
  31326. },
  31327. handThree: {
  31328. height: math.unit(0.81, "feet"),
  31329. name: "Hand (Three Fingers)",
  31330. image: {
  31331. source: "./media/characters/theo-pangolin/hand-three.svg"
  31332. }
  31333. },
  31334. headFront: {
  31335. height: math.unit(1.37, "feet"),
  31336. name: "Head (Front)",
  31337. image: {
  31338. source: "./media/characters/theo-pangolin/head-front.svg"
  31339. }
  31340. },
  31341. headSide: {
  31342. height: math.unit(1.43, "feet"),
  31343. name: "Head (Side)",
  31344. image: {
  31345. source: "./media/characters/theo-pangolin/head-side.svg"
  31346. }
  31347. },
  31348. tongue: {
  31349. height: math.unit(2.29, "feet"),
  31350. name: "Tongue",
  31351. image: {
  31352. source: "./media/characters/theo-pangolin/tongue.svg"
  31353. }
  31354. },
  31355. },
  31356. [
  31357. {
  31358. name: "Normal",
  31359. height: math.unit(6, "feet")
  31360. },
  31361. {
  31362. name: "Macro",
  31363. height: math.unit(400, "feet"),
  31364. default: true
  31365. },
  31366. ]
  31367. ))
  31368. characterMakers.push(() => makeCharacter(
  31369. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31370. {
  31371. front: {
  31372. height: math.unit(6, "inches"),
  31373. weight: math.unit(0.036, "kg"),
  31374. name: "Front",
  31375. image: {
  31376. source: "./media/characters/renée/front.svg",
  31377. extra: 900 / 886,
  31378. bottom: 8 / 908
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Nano",
  31385. height: math.unit(1, "nm")
  31386. },
  31387. {
  31388. name: "Micro",
  31389. height: math.unit(1, "mm")
  31390. },
  31391. {
  31392. name: "Normal",
  31393. height: math.unit(6, "inches")
  31394. },
  31395. {
  31396. name: "Macro",
  31397. height: math.unit(2000, "feet"),
  31398. default: true
  31399. },
  31400. {
  31401. name: "Megamacro",
  31402. height: math.unit(2, "km")
  31403. },
  31404. {
  31405. name: "Gigamacro",
  31406. height: math.unit(2000, "km")
  31407. },
  31408. {
  31409. name: "Teramacro",
  31410. height: math.unit(250000, "km")
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(4, "meters"),
  31419. weight: math.unit(150, "kg"),
  31420. name: "Front",
  31421. image: {
  31422. source: "./media/characters/caledvwlch/front.svg",
  31423. extra: 1760 / 1551,
  31424. bottom: 28 / 1788
  31425. }
  31426. },
  31427. side: {
  31428. height: math.unit(4, "meters"),
  31429. weight: math.unit(150, "kg"),
  31430. name: "Side",
  31431. image: {
  31432. source: "./media/characters/caledvwlch/side.svg",
  31433. extra: 1605 / 1536,
  31434. bottom: 31 / 1636
  31435. }
  31436. },
  31437. back: {
  31438. height: math.unit(4, "meters"),
  31439. weight: math.unit(150, "kg"),
  31440. name: "Back",
  31441. image: {
  31442. source: "./media/characters/caledvwlch/back.svg",
  31443. extra: 1635 / 1565,
  31444. bottom: 27 / 1662
  31445. }
  31446. },
  31447. },
  31448. [
  31449. {
  31450. name: "\"Incognito\"",
  31451. height: math.unit(4, "meters")
  31452. },
  31453. {
  31454. name: "Small rampage",
  31455. height: math.unit(600, "meters")
  31456. },
  31457. {
  31458. name: "Mega",
  31459. height: math.unit(30, "km")
  31460. },
  31461. {
  31462. name: "Home-size",
  31463. height: math.unit(50, "km"),
  31464. default: true
  31465. },
  31466. {
  31467. name: "Giga",
  31468. height: math.unit(300, "km")
  31469. },
  31470. {
  31471. name: "Lounging",
  31472. height: math.unit(11000, "km")
  31473. },
  31474. {
  31475. name: "Planet snacking",
  31476. height: math.unit(2000000, "km")
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(6, "feet"),
  31485. weight: math.unit(215, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/sapphire-svell/front.svg",
  31489. extra: 495 / 455,
  31490. bottom: 20 / 515
  31491. }
  31492. },
  31493. back: {
  31494. height: math.unit(6, "feet"),
  31495. weight: math.unit(216, "lb"),
  31496. name: "Back",
  31497. image: {
  31498. source: "./media/characters/sapphire-svell/back.svg",
  31499. extra: 497 / 477,
  31500. bottom: 7 / 504
  31501. }
  31502. },
  31503. maw: {
  31504. height: math.unit(1.57, "feet"),
  31505. name: "Maw",
  31506. image: {
  31507. source: "./media/characters/sapphire-svell/maw.svg"
  31508. }
  31509. },
  31510. foot: {
  31511. height: math.unit(1.07, "feet"),
  31512. name: "Foot",
  31513. image: {
  31514. source: "./media/characters/sapphire-svell/foot.svg"
  31515. }
  31516. },
  31517. toering: {
  31518. height: math.unit(1.7, "inch"),
  31519. name: "Toering",
  31520. image: {
  31521. source: "./media/characters/sapphire-svell/toering.svg"
  31522. }
  31523. },
  31524. },
  31525. [
  31526. {
  31527. name: "Normal",
  31528. height: math.unit(300, "feet"),
  31529. default: true
  31530. },
  31531. {
  31532. name: "Augmented",
  31533. height: math.unit(1250, "feet")
  31534. },
  31535. {
  31536. name: "Unleashed",
  31537. height: math.unit(3000, "feet")
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31543. {
  31544. side: {
  31545. height: math.unit(2 + 3 / 12, "feet"),
  31546. weight: math.unit(110, "lb"),
  31547. name: "Side",
  31548. image: {
  31549. source: "./media/characters/glitch-flux/side.svg",
  31550. extra: 997 / 805,
  31551. bottom: 20 / 1017
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(2 + 3 / 12, "feet"),
  31559. default: true
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31565. {
  31566. front: {
  31567. height: math.unit(4, "meters"),
  31568. name: "Front",
  31569. image: {
  31570. source: "./media/characters/mid/front.svg",
  31571. extra: 507 / 476,
  31572. bottom: 17 / 524
  31573. }
  31574. },
  31575. back: {
  31576. height: math.unit(4, "meters"),
  31577. name: "Back",
  31578. image: {
  31579. source: "./media/characters/mid/back.svg",
  31580. extra: 519 / 487,
  31581. bottom: 7 / 526
  31582. }
  31583. },
  31584. stuck: {
  31585. height: math.unit(2.2, "meters"),
  31586. name: "Stuck",
  31587. image: {
  31588. source: "./media/characters/mid/stuck.svg",
  31589. extra: 1951 / 1869,
  31590. bottom: 88 / 2039
  31591. }
  31592. }
  31593. },
  31594. [
  31595. {
  31596. name: "Normal",
  31597. height: math.unit(4, "meters"),
  31598. default: true
  31599. },
  31600. {
  31601. name: "Big",
  31602. height: math.unit(10, "meters")
  31603. },
  31604. {
  31605. name: "Macro",
  31606. height: math.unit(800, "meters")
  31607. },
  31608. {
  31609. name: "Megamacro",
  31610. height: math.unit(100, "km")
  31611. },
  31612. {
  31613. name: "Overgrown",
  31614. height: math.unit(1, "parsec")
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31620. {
  31621. front: {
  31622. height: math.unit(2.5, "meters"),
  31623. weight: math.unit(225, "kg"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/iris/front.svg",
  31627. extra: 3348 / 3251,
  31628. bottom: 205 / 3553
  31629. }
  31630. },
  31631. maw: {
  31632. height: math.unit(0.56, "meter"),
  31633. name: "Maw",
  31634. image: {
  31635. source: "./media/characters/iris/maw.svg"
  31636. }
  31637. },
  31638. },
  31639. [
  31640. {
  31641. name: "Mewter cat",
  31642. height: math.unit(1.2, "meters")
  31643. },
  31644. {
  31645. name: "Normal",
  31646. height: math.unit(2.5, "meters"),
  31647. default: true
  31648. },
  31649. {
  31650. name: "Minimacro",
  31651. height: math.unit(18, "feet")
  31652. },
  31653. {
  31654. name: "Macro",
  31655. height: math.unit(140, "feet")
  31656. },
  31657. {
  31658. name: "Macro+",
  31659. height: math.unit(180, "meters")
  31660. },
  31661. {
  31662. name: "Megamacro",
  31663. height: math.unit(2746, "meters")
  31664. },
  31665. ]
  31666. ))
  31667. characterMakers.push(() => makeCharacter(
  31668. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31669. {
  31670. front: {
  31671. height: math.unit(6, "feet"),
  31672. weight: math.unit(135, "lb"),
  31673. name: "Front",
  31674. image: {
  31675. source: "./media/characters/axel/front.svg",
  31676. extra: 908 / 908,
  31677. bottom: 58 / 966
  31678. }
  31679. },
  31680. side: {
  31681. height: math.unit(6, "feet"),
  31682. weight: math.unit(135, "lb"),
  31683. name: "Side",
  31684. image: {
  31685. source: "./media/characters/axel/side.svg",
  31686. extra: 958 / 958,
  31687. bottom: 11 / 969
  31688. }
  31689. },
  31690. back: {
  31691. height: math.unit(6, "feet"),
  31692. weight: math.unit(135, "lb"),
  31693. name: "Back",
  31694. image: {
  31695. source: "./media/characters/axel/back.svg",
  31696. extra: 887 / 887,
  31697. bottom: 34 / 921
  31698. }
  31699. },
  31700. head: {
  31701. height: math.unit(1.07, "feet"),
  31702. name: "Head",
  31703. image: {
  31704. source: "./media/characters/axel/head.svg"
  31705. }
  31706. },
  31707. beak: {
  31708. height: math.unit(1.4, "feet"),
  31709. name: "Beak",
  31710. image: {
  31711. source: "./media/characters/axel/beak.svg"
  31712. }
  31713. },
  31714. beakSide: {
  31715. height: math.unit(1.4, "feet"),
  31716. name: "Beak Side",
  31717. image: {
  31718. source: "./media/characters/axel/beak-side.svg"
  31719. }
  31720. },
  31721. sheath: {
  31722. height: math.unit(0.5, "feet"),
  31723. name: "Sheath",
  31724. image: {
  31725. source: "./media/characters/axel/sheath.svg"
  31726. }
  31727. },
  31728. dick: {
  31729. height: math.unit(0.98, "feet"),
  31730. name: "Dick",
  31731. image: {
  31732. source: "./media/characters/axel/dick.svg"
  31733. }
  31734. },
  31735. },
  31736. [
  31737. {
  31738. name: "Macro",
  31739. height: math.unit(68, "meters"),
  31740. default: true
  31741. },
  31742. ]
  31743. ))
  31744. characterMakers.push(() => makeCharacter(
  31745. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31746. {
  31747. front: {
  31748. height: math.unit(3.5, "meters"),
  31749. weight: math.unit(1200, "kg"),
  31750. name: "Front",
  31751. image: {
  31752. source: "./media/characters/joanna/front.svg",
  31753. extra: 1596 / 1488,
  31754. bottom: 29 / 1625
  31755. }
  31756. },
  31757. back: {
  31758. height: math.unit(3.5, "meters"),
  31759. weight: math.unit(1200, "kg"),
  31760. name: "Back",
  31761. image: {
  31762. source: "./media/characters/joanna/back.svg",
  31763. extra: 1594 / 1495,
  31764. bottom: 26 / 1620
  31765. }
  31766. },
  31767. frontShorts: {
  31768. height: math.unit(3.5, "meters"),
  31769. weight: math.unit(1200, "kg"),
  31770. name: "Front (Shorts)",
  31771. image: {
  31772. source: "./media/characters/joanna/front-shorts.svg",
  31773. extra: 1596 / 1488,
  31774. bottom: 29 / 1625
  31775. }
  31776. },
  31777. frontBiker: {
  31778. height: math.unit(3.5, "meters"),
  31779. weight: math.unit(1200, "kg"),
  31780. name: "Front (Biker)",
  31781. image: {
  31782. source: "./media/characters/joanna/front-biker.svg",
  31783. extra: 1596 / 1488,
  31784. bottom: 29 / 1625
  31785. }
  31786. },
  31787. backBiker: {
  31788. height: math.unit(3.5, "meters"),
  31789. weight: math.unit(1200, "kg"),
  31790. name: "Back (Biker)",
  31791. image: {
  31792. source: "./media/characters/joanna/back-biker.svg",
  31793. extra: 1594 / 1495,
  31794. bottom: 88 / 1682
  31795. }
  31796. },
  31797. bikeLeft: {
  31798. height: math.unit(2.4, "meters"),
  31799. weight: math.unit(1600, "kg"),
  31800. name: "Bike (Left)",
  31801. image: {
  31802. source: "./media/characters/joanna/bike-left.svg",
  31803. extra: 720 / 720,
  31804. bottom: 8 / 728
  31805. }
  31806. },
  31807. bikeRight: {
  31808. height: math.unit(2.4, "meters"),
  31809. weight: math.unit(1600, "kg"),
  31810. name: "Bike (Right)",
  31811. image: {
  31812. source: "./media/characters/joanna/bike-right.svg",
  31813. extra: 720 / 720,
  31814. bottom: 8 / 728
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Incognito",
  31821. height: math.unit(3.5, "meters")
  31822. },
  31823. {
  31824. name: "Casual Big",
  31825. height: math.unit(200, "meters")
  31826. },
  31827. {
  31828. name: "Macro",
  31829. height: math.unit(600, "meters")
  31830. },
  31831. {
  31832. name: "Original",
  31833. height: math.unit(20, "km"),
  31834. default: true
  31835. },
  31836. {
  31837. name: "Giga",
  31838. height: math.unit(400, "km")
  31839. },
  31840. {
  31841. name: "Lounging",
  31842. height: math.unit(1500, "km")
  31843. },
  31844. {
  31845. name: "Planetary",
  31846. height: math.unit(200000, "km")
  31847. },
  31848. ]
  31849. ))
  31850. characterMakers.push(() => makeCharacter(
  31851. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31852. {
  31853. front: {
  31854. height: math.unit(6, "feet"),
  31855. weight: math.unit(150, "lb"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/hugo-sigil/front.svg",
  31859. extra: 522 / 500,
  31860. bottom: 2 / 524
  31861. }
  31862. },
  31863. back: {
  31864. height: math.unit(6, "feet"),
  31865. weight: math.unit(150, "lb"),
  31866. name: "Back",
  31867. image: {
  31868. source: "./media/characters/hugo-sigil/back.svg",
  31869. extra: 519 / 495,
  31870. bottom: 5 / 524
  31871. }
  31872. },
  31873. maw: {
  31874. height: math.unit(1.4, "feet"),
  31875. weight: math.unit(150, "lb"),
  31876. name: "Maw",
  31877. image: {
  31878. source: "./media/characters/hugo-sigil/maw.svg"
  31879. }
  31880. },
  31881. feet: {
  31882. height: math.unit(1.56, "feet"),
  31883. weight: math.unit(150, "lb"),
  31884. name: "Feet",
  31885. image: {
  31886. source: "./media/characters/hugo-sigil/feet.svg",
  31887. extra: 177 / 177,
  31888. bottom: 12 / 189
  31889. }
  31890. },
  31891. },
  31892. [
  31893. {
  31894. name: "Normal",
  31895. height: math.unit(6, "feet")
  31896. },
  31897. {
  31898. name: "Macro",
  31899. height: math.unit(200, "feet"),
  31900. default: true
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31906. {
  31907. front: {
  31908. height: math.unit(6, "feet"),
  31909. weight: math.unit(150, "lb"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/peri/front.svg",
  31913. extra: 2354 / 2233,
  31914. bottom: 49 / 2403
  31915. }
  31916. },
  31917. },
  31918. [
  31919. {
  31920. name: "Really Small",
  31921. height: math.unit(1, "nm")
  31922. },
  31923. {
  31924. name: "Micro",
  31925. height: math.unit(4, "inches")
  31926. },
  31927. {
  31928. name: "Normal",
  31929. height: math.unit(7, "inches"),
  31930. default: true
  31931. },
  31932. {
  31933. name: "Macro",
  31934. height: math.unit(400, "feet")
  31935. },
  31936. {
  31937. name: "Megamacro",
  31938. height: math.unit(100, "miles")
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31944. {
  31945. frontSlim: {
  31946. height: math.unit(7, "feet"),
  31947. name: "Front (Slim)",
  31948. image: {
  31949. source: "./media/characters/issilora/front-slim.svg",
  31950. extra: 529 / 449,
  31951. bottom: 53 / 582
  31952. }
  31953. },
  31954. sideSlim: {
  31955. height: math.unit(7, "feet"),
  31956. name: "Side (Slim)",
  31957. image: {
  31958. source: "./media/characters/issilora/side-slim.svg",
  31959. extra: 570 / 480,
  31960. bottom: 30 / 600
  31961. }
  31962. },
  31963. backSlim: {
  31964. height: math.unit(7, "feet"),
  31965. name: "Back (Slim)",
  31966. image: {
  31967. source: "./media/characters/issilora/back-slim.svg",
  31968. extra: 537 / 455,
  31969. bottom: 46 / 583
  31970. }
  31971. },
  31972. frontBuff: {
  31973. height: math.unit(7, "feet"),
  31974. name: "Front (Buff)",
  31975. image: {
  31976. source: "./media/characters/issilora/front-buff.svg",
  31977. extra: 2310 / 2035,
  31978. bottom: 335 / 2645
  31979. }
  31980. },
  31981. head: {
  31982. height: math.unit(1.94, "feet"),
  31983. name: "Head",
  31984. image: {
  31985. source: "./media/characters/issilora/head.svg"
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Minimum",
  31992. height: math.unit(7, "feet")
  31993. },
  31994. {
  31995. name: "Comfortable",
  31996. height: math.unit(17, "feet")
  31997. },
  31998. {
  31999. name: "Fun Size",
  32000. height: math.unit(47, "feet")
  32001. },
  32002. {
  32003. name: "Natural Macro",
  32004. height: math.unit(137, "feet"),
  32005. default: true
  32006. },
  32007. {
  32008. name: "Maximum Kaiju",
  32009. height: math.unit(397, "feet")
  32010. },
  32011. ]
  32012. ))
  32013. characterMakers.push(() => makeCharacter(
  32014. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32015. {
  32016. front: {
  32017. height: math.unit(50 + 9/12, "feet"),
  32018. weight: math.unit(32.8, "tons"),
  32019. name: "Front",
  32020. image: {
  32021. source: "./media/characters/irb'iiritaahn/front.svg",
  32022. extra: 1878/1826,
  32023. bottom: 326/2204
  32024. }
  32025. },
  32026. back: {
  32027. height: math.unit(50 + 9/12, "feet"),
  32028. weight: math.unit(32.8, "tons"),
  32029. name: "Back",
  32030. image: {
  32031. source: "./media/characters/irb'iiritaahn/back.svg",
  32032. extra: 2052/2018,
  32033. bottom: 152/2204
  32034. }
  32035. },
  32036. head: {
  32037. height: math.unit(12.86, "feet"),
  32038. name: "Head",
  32039. image: {
  32040. source: "./media/characters/irb'iiritaahn/head.svg"
  32041. }
  32042. },
  32043. maw: {
  32044. height: math.unit(9.66, "feet"),
  32045. name: "Maw",
  32046. image: {
  32047. source: "./media/characters/irb'iiritaahn/maw.svg"
  32048. }
  32049. },
  32050. frontDick: {
  32051. height: math.unit(8.78461, "feet"),
  32052. name: "Front Dick",
  32053. image: {
  32054. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32055. }
  32056. },
  32057. rearDick: {
  32058. height: math.unit(8.78461, "feet"),
  32059. name: "Rear Dick",
  32060. image: {
  32061. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32062. }
  32063. },
  32064. rearDickUnfolded: {
  32065. height: math.unit(8.78, "feet"),
  32066. name: "Rear Dick (Unfolded)",
  32067. image: {
  32068. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32069. }
  32070. },
  32071. wings: {
  32072. height: math.unit(43, "feet"),
  32073. name: "Wings",
  32074. image: {
  32075. source: "./media/characters/irb'iiritaahn/wings.svg"
  32076. }
  32077. },
  32078. },
  32079. [
  32080. {
  32081. name: "Macro",
  32082. height: math.unit(50 + 9/12, "feet"),
  32083. default: true
  32084. },
  32085. ]
  32086. ))
  32087. characterMakers.push(() => makeCharacter(
  32088. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32089. {
  32090. front: {
  32091. height: math.unit(205, "cm"),
  32092. weight: math.unit(102, "kg"),
  32093. name: "Front",
  32094. image: {
  32095. source: "./media/characters/irbisgreif/front.svg",
  32096. extra: 785/706,
  32097. bottom: 13/798
  32098. }
  32099. },
  32100. back: {
  32101. height: math.unit(205, "cm"),
  32102. weight: math.unit(102, "kg"),
  32103. name: "Back",
  32104. image: {
  32105. source: "./media/characters/irbisgreif/back.svg",
  32106. extra: 713/701,
  32107. bottom: 26/739
  32108. }
  32109. },
  32110. frontDressed: {
  32111. height: math.unit(216, "cm"),
  32112. weight: math.unit(102, "kg"),
  32113. name: "Front-dressed",
  32114. image: {
  32115. source: "./media/characters/irbisgreif/front-dressed.svg",
  32116. extra: 902/776,
  32117. bottom: 14/916
  32118. }
  32119. },
  32120. sideDressed: {
  32121. height: math.unit(195, "cm"),
  32122. weight: math.unit(102, "kg"),
  32123. name: "Side-dressed",
  32124. image: {
  32125. source: "./media/characters/irbisgreif/side-dressed.svg",
  32126. extra: 788/688,
  32127. bottom: 21/809
  32128. }
  32129. },
  32130. backDressed: {
  32131. height: math.unit(216, "cm"),
  32132. weight: math.unit(102, "kg"),
  32133. name: "Back-dressed",
  32134. image: {
  32135. source: "./media/characters/irbisgreif/back-dressed.svg",
  32136. extra: 901/783,
  32137. bottom: 10/911
  32138. }
  32139. },
  32140. dick: {
  32141. height: math.unit(0.49, "feet"),
  32142. name: "Dick",
  32143. image: {
  32144. source: "./media/characters/irbisgreif/dick.svg"
  32145. }
  32146. },
  32147. wingTop: {
  32148. height: math.unit(1.93 , "feet"),
  32149. name: "Wing-top",
  32150. image: {
  32151. source: "./media/characters/irbisgreif/wing-top.svg"
  32152. }
  32153. },
  32154. wingBottom: {
  32155. height: math.unit(1.93 , "feet"),
  32156. name: "Wing-bottom",
  32157. image: {
  32158. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32159. }
  32160. },
  32161. },
  32162. [
  32163. {
  32164. name: "Normal",
  32165. height: math.unit(216, "cm"),
  32166. default: true
  32167. },
  32168. ]
  32169. ))
  32170. characterMakers.push(() => makeCharacter(
  32171. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32172. {
  32173. front: {
  32174. height: math.unit(6, "feet"),
  32175. weight: math.unit(150, "lb"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/pride/front.svg",
  32179. extra: 1299/1230,
  32180. bottom: 18/1317
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Normal",
  32187. height: math.unit(7, "feet")
  32188. },
  32189. {
  32190. name: "Mini-macro",
  32191. height: math.unit(11, "feet")
  32192. },
  32193. {
  32194. name: "Macro",
  32195. height: math.unit(15, "meters"),
  32196. default: true
  32197. },
  32198. {
  32199. name: "Macro+",
  32200. height: math.unit(40, "meters")
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32206. {
  32207. front: {
  32208. height: math.unit(4 + 2 / 12, "feet"),
  32209. weight: math.unit(95, "lb"),
  32210. name: "Front",
  32211. image: {
  32212. source: "./media/characters/vaelophis-nyx/front.svg",
  32213. extra: 2532/2330,
  32214. bottom: 0/2532
  32215. }
  32216. },
  32217. back: {
  32218. height: math.unit(4 + 2 / 12, "feet"),
  32219. weight: math.unit(95, "lb"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/vaelophis-nyx/back.svg",
  32223. extra: 2484/2361,
  32224. bottom: 0/2484
  32225. }
  32226. },
  32227. feralSide: {
  32228. height: math.unit(2 + 1/12, "feet"),
  32229. weight: math.unit(20, "lb"),
  32230. name: "Feral (Side)",
  32231. image: {
  32232. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32233. extra: 1721/1581,
  32234. bottom: 70/1791
  32235. }
  32236. },
  32237. feralLazing: {
  32238. height: math.unit(1.08, "feet"),
  32239. weight: math.unit(20, "lb"),
  32240. name: "Feral (Lazing)",
  32241. image: {
  32242. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32243. extra: 822/822,
  32244. bottom: 248/1070
  32245. }
  32246. },
  32247. ear: {
  32248. height: math.unit(0.416, "feet"),
  32249. name: "Ear",
  32250. image: {
  32251. source: "./media/characters/vaelophis-nyx/ear.svg"
  32252. }
  32253. },
  32254. eye: {
  32255. height: math.unit(0.0748, "feet"),
  32256. name: "Eye",
  32257. image: {
  32258. source: "./media/characters/vaelophis-nyx/eye.svg"
  32259. }
  32260. },
  32261. mouth: {
  32262. height: math.unit(0.378, "feet"),
  32263. name: "Mouth",
  32264. image: {
  32265. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32266. }
  32267. },
  32268. spade: {
  32269. height: math.unit(0.55, "feet"),
  32270. name: "Spade",
  32271. image: {
  32272. source: "./media/characters/vaelophis-nyx/spade.svg"
  32273. }
  32274. },
  32275. },
  32276. [
  32277. {
  32278. name: "Normal",
  32279. height: math.unit(4 + 2/12, "feet"),
  32280. default: true
  32281. },
  32282. ]
  32283. ))
  32284. characterMakers.push(() => makeCharacter(
  32285. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32286. {
  32287. front: {
  32288. height: math.unit(7, "feet"),
  32289. weight: math.unit(231, "lb"),
  32290. name: "Front",
  32291. image: {
  32292. source: "./media/characters/flux/front.svg",
  32293. extra: 919/871,
  32294. bottom: 0/919
  32295. }
  32296. },
  32297. back: {
  32298. height: math.unit(7, "feet"),
  32299. weight: math.unit(231, "lb"),
  32300. name: "Back",
  32301. image: {
  32302. source: "./media/characters/flux/back.svg",
  32303. extra: 1040/992,
  32304. bottom: 0/1040
  32305. }
  32306. },
  32307. frontDressed: {
  32308. height: math.unit(7, "feet"),
  32309. weight: math.unit(231, "lb"),
  32310. name: "Front (Dressed)",
  32311. image: {
  32312. source: "./media/characters/flux/front-dressed.svg",
  32313. extra: 919/871,
  32314. bottom: 0/919
  32315. }
  32316. },
  32317. feralSide: {
  32318. height: math.unit(5, "feet"),
  32319. weight: math.unit(150, "lb"),
  32320. name: "Feral (Side)",
  32321. image: {
  32322. source: "./media/characters/flux/feral-side.svg",
  32323. extra: 598/528,
  32324. bottom: 28/626
  32325. }
  32326. },
  32327. head: {
  32328. height: math.unit(1.585, "feet"),
  32329. name: "Head",
  32330. image: {
  32331. source: "./media/characters/flux/head.svg"
  32332. }
  32333. },
  32334. headSide: {
  32335. height: math.unit(1.74, "feet"),
  32336. name: "Head (Side)",
  32337. image: {
  32338. source: "./media/characters/flux/head-side.svg"
  32339. }
  32340. },
  32341. headSideFire: {
  32342. height: math.unit(1.76, "feet"),
  32343. name: "Head (Side, Fire)",
  32344. image: {
  32345. source: "./media/characters/flux/head-side-fire.svg"
  32346. }
  32347. },
  32348. },
  32349. [
  32350. {
  32351. name: "Normal",
  32352. height: math.unit(7, "feet"),
  32353. default: true
  32354. },
  32355. ]
  32356. ))
  32357. characterMakers.push(() => makeCharacter(
  32358. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32359. {
  32360. front: {
  32361. height: math.unit(9, "feet"),
  32362. weight: math.unit(1012, "lb"),
  32363. name: "Front",
  32364. image: {
  32365. source: "./media/characters/ulfra-lupae/front.svg",
  32366. extra: 1083/1011,
  32367. bottom: 67/1150
  32368. }
  32369. },
  32370. },
  32371. [
  32372. {
  32373. name: "Micro",
  32374. height: math.unit(6, "inches")
  32375. },
  32376. {
  32377. name: "Socializing",
  32378. height: math.unit(6 + 5/12, "feet")
  32379. },
  32380. {
  32381. name: "Normal",
  32382. height: math.unit(9, "feet"),
  32383. default: true
  32384. },
  32385. {
  32386. name: "Macro",
  32387. height: math.unit(150, "feet")
  32388. },
  32389. ]
  32390. ))
  32391. characterMakers.push(() => makeCharacter(
  32392. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32393. {
  32394. front: {
  32395. height: math.unit(5 + 2/12, "feet"),
  32396. weight: math.unit(120, "lb"),
  32397. name: "Front",
  32398. image: {
  32399. source: "./media/characters/timber/front.svg",
  32400. extra: 2814/2705,
  32401. bottom: 181/2995
  32402. }
  32403. },
  32404. },
  32405. [
  32406. {
  32407. name: "Normal",
  32408. height: math.unit(5 + 2/12, "feet"),
  32409. default: true
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32415. {
  32416. front: {
  32417. height: math.unit(9, "feet"),
  32418. name: "Front",
  32419. image: {
  32420. source: "./media/characters/nicki/front.svg",
  32421. extra: 1240/990,
  32422. bottom: 45/1285
  32423. },
  32424. form: "anthro",
  32425. default: true
  32426. },
  32427. side: {
  32428. height: math.unit(9, "feet"),
  32429. name: "Side",
  32430. image: {
  32431. source: "./media/characters/nicki/side.svg",
  32432. extra: 1047/973,
  32433. bottom: 61/1108
  32434. },
  32435. form: "anthro"
  32436. },
  32437. back: {
  32438. height: math.unit(9, "feet"),
  32439. name: "Back",
  32440. image: {
  32441. source: "./media/characters/nicki/back.svg",
  32442. extra: 1006/965,
  32443. bottom: 39/1045
  32444. },
  32445. form: "anthro"
  32446. },
  32447. taur: {
  32448. height: math.unit(15, "feet"),
  32449. name: "Taur",
  32450. image: {
  32451. source: "./media/characters/nicki/taur.svg",
  32452. extra: 1592/1347,
  32453. bottom: 0/1592
  32454. },
  32455. form: "taur",
  32456. default: true
  32457. },
  32458. },
  32459. [
  32460. {
  32461. name: "Normal",
  32462. height: math.unit(9, "feet"),
  32463. form: "anthro",
  32464. default: true
  32465. },
  32466. {
  32467. name: "Normal",
  32468. height: math.unit(15, "feet"),
  32469. form: "taur",
  32470. default: true
  32471. }
  32472. ],
  32473. {
  32474. "anthro": {
  32475. name: "Anthro",
  32476. default: true
  32477. },
  32478. "taur": {
  32479. name: "Taur"
  32480. }
  32481. }
  32482. ))
  32483. characterMakers.push(() => makeCharacter(
  32484. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32485. {
  32486. front: {
  32487. height: math.unit(7 + 10/12, "feet"),
  32488. weight: math.unit(3.5, "tons"),
  32489. name: "Front",
  32490. image: {
  32491. source: "./media/characters/lee/front.svg",
  32492. extra: 1773/1615,
  32493. bottom: 86/1859
  32494. }
  32495. },
  32496. hand: {
  32497. height: math.unit(1.78, "feet"),
  32498. name: "Hand",
  32499. image: {
  32500. source: "./media/characters/lee/hand.svg"
  32501. }
  32502. },
  32503. maw: {
  32504. height: math.unit(1.18, "feet"),
  32505. name: "Maw",
  32506. image: {
  32507. source: "./media/characters/lee/maw.svg"
  32508. }
  32509. },
  32510. },
  32511. [
  32512. {
  32513. name: "Normal",
  32514. height: math.unit(7 + 10/12, "feet"),
  32515. default: true
  32516. },
  32517. ]
  32518. ))
  32519. characterMakers.push(() => makeCharacter(
  32520. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32521. {
  32522. front: {
  32523. height: math.unit(9, "feet"),
  32524. name: "Front",
  32525. image: {
  32526. source: "./media/characters/guti/front.svg",
  32527. extra: 4551/4355,
  32528. bottom: 123/4674
  32529. }
  32530. },
  32531. tongue: {
  32532. height: math.unit(1, "feet"),
  32533. name: "Tongue",
  32534. image: {
  32535. source: "./media/characters/guti/tongue.svg"
  32536. }
  32537. },
  32538. paw: {
  32539. height: math.unit(1.18, "feet"),
  32540. name: "Paw",
  32541. image: {
  32542. source: "./media/characters/guti/paw.svg"
  32543. }
  32544. },
  32545. },
  32546. [
  32547. {
  32548. name: "Normal",
  32549. height: math.unit(9, "feet"),
  32550. default: true
  32551. },
  32552. ]
  32553. ))
  32554. characterMakers.push(() => makeCharacter(
  32555. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32556. {
  32557. side: {
  32558. height: math.unit(5, "meters"),
  32559. name: "Side",
  32560. image: {
  32561. source: "./media/characters/vesper/side.svg",
  32562. extra: 1605/1518,
  32563. bottom: 0/1605
  32564. }
  32565. },
  32566. },
  32567. [
  32568. {
  32569. name: "Small",
  32570. height: math.unit(5, "meters")
  32571. },
  32572. {
  32573. name: "Sage",
  32574. height: math.unit(100, "meters"),
  32575. default: true
  32576. },
  32577. {
  32578. name: "Fun Size",
  32579. height: math.unit(600, "meters")
  32580. },
  32581. {
  32582. name: "Goddess",
  32583. height: math.unit(20000, "km")
  32584. },
  32585. {
  32586. name: "Maximum",
  32587. height: math.unit(5, "galaxies")
  32588. },
  32589. ]
  32590. ))
  32591. characterMakers.push(() => makeCharacter(
  32592. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32593. {
  32594. front: {
  32595. height: math.unit(6 + 3/12, "feet"),
  32596. weight: math.unit(190, "lb"),
  32597. name: "Front",
  32598. image: {
  32599. source: "./media/characters/gawain/front.svg",
  32600. extra: 2222/2139,
  32601. bottom: 90/2312
  32602. }
  32603. },
  32604. back: {
  32605. height: math.unit(6 + 3/12, "feet"),
  32606. weight: math.unit(190, "lb"),
  32607. name: "Back",
  32608. image: {
  32609. source: "./media/characters/gawain/back.svg",
  32610. extra: 2199/2111,
  32611. bottom: 73/2272
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Normal",
  32618. height: math.unit(6 + 3/12, "feet"),
  32619. default: true
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32625. {
  32626. side: {
  32627. height: math.unit(3.5, "meters"),
  32628. weight: math.unit(16000, "lb"),
  32629. name: "Side",
  32630. image: {
  32631. source: "./media/characters/dascalti/side.svg",
  32632. extra: 392/273,
  32633. bottom: 47/439
  32634. }
  32635. },
  32636. breath: {
  32637. height: math.unit(7.4, "feet"),
  32638. name: "Breath",
  32639. image: {
  32640. source: "./media/characters/dascalti/breath.svg"
  32641. }
  32642. },
  32643. fed: {
  32644. height: math.unit(3.6, "meters"),
  32645. weight: math.unit(16000, "lb"),
  32646. name: "Fed",
  32647. image: {
  32648. source: "./media/characters/dascalti/fed.svg",
  32649. extra: 1419/820,
  32650. bottom: 95/1514
  32651. }
  32652. },
  32653. },
  32654. [
  32655. {
  32656. name: "Normal",
  32657. height: math.unit(3.5, "meters"),
  32658. default: true
  32659. },
  32660. ]
  32661. ))
  32662. characterMakers.push(() => makeCharacter(
  32663. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32664. {
  32665. front: {
  32666. height: math.unit(3 + 5/12, "feet"),
  32667. name: "Front",
  32668. image: {
  32669. source: "./media/characters/mauve/front.svg",
  32670. extra: 1126/1033,
  32671. bottom: 65/1191
  32672. }
  32673. },
  32674. side: {
  32675. height: math.unit(3 + 5/12, "feet"),
  32676. name: "Side",
  32677. image: {
  32678. source: "./media/characters/mauve/side.svg",
  32679. extra: 1089/1001,
  32680. bottom: 29/1118
  32681. }
  32682. },
  32683. back: {
  32684. height: math.unit(3 + 5/12, "feet"),
  32685. name: "Back",
  32686. image: {
  32687. source: "./media/characters/mauve/back.svg",
  32688. extra: 1173/1053,
  32689. bottom: 109/1282
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(3 + 5/12, "feet"),
  32697. default: true
  32698. },
  32699. ]
  32700. ))
  32701. characterMakers.push(() => makeCharacter(
  32702. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32703. {
  32704. front: {
  32705. height: math.unit(6 + 3/12, "feet"),
  32706. weight: math.unit(430, "lb"),
  32707. name: "Front",
  32708. image: {
  32709. source: "./media/characters/carlos/front.svg",
  32710. extra: 1964/1913,
  32711. bottom: 70/2034
  32712. }
  32713. },
  32714. },
  32715. [
  32716. {
  32717. name: "Normal",
  32718. height: math.unit(6 + 3/12, "feet"),
  32719. default: true
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32725. {
  32726. back: {
  32727. height: math.unit(5 + 10/12, "feet"),
  32728. weight: math.unit(200, "lb"),
  32729. name: "Back",
  32730. image: {
  32731. source: "./media/characters/jax/back.svg",
  32732. extra: 764/739,
  32733. bottom: 25/789
  32734. }
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Normal",
  32740. height: math.unit(5 + 10/12, "feet"),
  32741. default: true
  32742. },
  32743. ]
  32744. ))
  32745. characterMakers.push(() => makeCharacter(
  32746. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32747. {
  32748. front: {
  32749. height: math.unit(8, "feet"),
  32750. weight: math.unit(250, "lb"),
  32751. name: "Front",
  32752. image: {
  32753. source: "./media/characters/eikthynir/front.svg",
  32754. extra: 1332/1166,
  32755. bottom: 82/1414
  32756. }
  32757. },
  32758. back: {
  32759. height: math.unit(8, "feet"),
  32760. weight: math.unit(250, "lb"),
  32761. name: "Back",
  32762. image: {
  32763. source: "./media/characters/eikthynir/back.svg",
  32764. extra: 1342/1190,
  32765. bottom: 19/1361
  32766. }
  32767. },
  32768. dick: {
  32769. height: math.unit(2.35, "feet"),
  32770. name: "Dick",
  32771. image: {
  32772. source: "./media/characters/eikthynir/dick.svg"
  32773. }
  32774. },
  32775. },
  32776. [
  32777. {
  32778. name: "Normal",
  32779. height: math.unit(8, "feet"),
  32780. default: true
  32781. },
  32782. ]
  32783. ))
  32784. characterMakers.push(() => makeCharacter(
  32785. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32786. {
  32787. front: {
  32788. height: math.unit(99, "meters"),
  32789. weight: math.unit(13000, "tons"),
  32790. name: "Front",
  32791. image: {
  32792. source: "./media/characters/zlmos/front.svg",
  32793. extra: 2202/1992,
  32794. bottom: 315/2517
  32795. }
  32796. },
  32797. },
  32798. [
  32799. {
  32800. name: "Macro",
  32801. height: math.unit(99, "meters"),
  32802. default: true
  32803. },
  32804. ]
  32805. ))
  32806. characterMakers.push(() => makeCharacter(
  32807. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32808. {
  32809. front: {
  32810. height: math.unit(6 + 5/12, "feet"),
  32811. name: "Front",
  32812. image: {
  32813. source: "./media/characters/purri/front.svg",
  32814. extra: 1698/1610,
  32815. bottom: 32/1730
  32816. }
  32817. },
  32818. frontAlt: {
  32819. height: math.unit(6 + 5/12, "feet"),
  32820. name: "Front (Alt)",
  32821. image: {
  32822. source: "./media/characters/purri/front-alt.svg",
  32823. extra: 450/420,
  32824. bottom: 26/476
  32825. }
  32826. },
  32827. boots: {
  32828. height: math.unit(5.5, "feet"),
  32829. name: "Boots",
  32830. image: {
  32831. source: "./media/characters/purri/boots.svg",
  32832. extra: 905/853,
  32833. bottom: 18/923
  32834. }
  32835. },
  32836. lying: {
  32837. height: math.unit(2, "feet"),
  32838. name: "Lying",
  32839. image: {
  32840. source: "./media/characters/purri/lying.svg",
  32841. extra: 940/843,
  32842. bottom: 146/1086
  32843. }
  32844. },
  32845. devious: {
  32846. height: math.unit(1.77, "feet"),
  32847. name: "Devious",
  32848. image: {
  32849. source: "./media/characters/purri/devious.svg",
  32850. extra: 1440/1155,
  32851. bottom: 147/1587
  32852. }
  32853. },
  32854. bean: {
  32855. height: math.unit(1.94, "feet"),
  32856. name: "Bean",
  32857. image: {
  32858. source: "./media/characters/purri/bean.svg"
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Micro",
  32865. height: math.unit(1, "mm")
  32866. },
  32867. {
  32868. name: "Normal",
  32869. height: math.unit(6 + 5/12, "feet"),
  32870. default: true
  32871. },
  32872. {
  32873. name: "Macro :3c",
  32874. height: math.unit(2, "miles")
  32875. },
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32880. {
  32881. front: {
  32882. height: math.unit(6 + 2/12, "feet"),
  32883. weight: math.unit(250, "lb"),
  32884. name: "Front",
  32885. image: {
  32886. source: "./media/characters/moonlight/front.svg",
  32887. extra: 1044/908,
  32888. bottom: 56/1100
  32889. }
  32890. },
  32891. feral: {
  32892. height: math.unit(3 + 1/12, "feet"),
  32893. weight: math.unit(50, "kg"),
  32894. name: "Feral",
  32895. image: {
  32896. source: "./media/characters/moonlight/feral.svg",
  32897. extra: 3705/2791,
  32898. bottom: 145/3850
  32899. }
  32900. },
  32901. paw: {
  32902. height: math.unit(1, "feet"),
  32903. name: "Paw",
  32904. image: {
  32905. source: "./media/characters/moonlight/paw.svg"
  32906. }
  32907. },
  32908. paws: {
  32909. height: math.unit(0.98, "feet"),
  32910. name: "Paws",
  32911. image: {
  32912. source: "./media/characters/moonlight/paws.svg",
  32913. extra: 939/939,
  32914. bottom: 50/989
  32915. }
  32916. },
  32917. mouth: {
  32918. height: math.unit(0.48, "feet"),
  32919. name: "Mouth",
  32920. image: {
  32921. source: "./media/characters/moonlight/mouth.svg"
  32922. }
  32923. },
  32924. dick: {
  32925. height: math.unit(1.46, "feet"),
  32926. name: "Dick",
  32927. image: {
  32928. source: "./media/characters/moonlight/dick.svg"
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Normal",
  32935. height: math.unit(6 + 2/12, "feet"),
  32936. default: true
  32937. },
  32938. {
  32939. name: "Macro",
  32940. height: math.unit(300, "feet")
  32941. },
  32942. {
  32943. name: "Macro+",
  32944. height: math.unit(1, "mile")
  32945. },
  32946. {
  32947. name: "Mt. Moon",
  32948. height: math.unit(5, "miles")
  32949. },
  32950. {
  32951. name: "Megamacro",
  32952. height: math.unit(15, "miles")
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32958. {
  32959. back: {
  32960. height: math.unit(6, "feet"),
  32961. weight: math.unit(150, "lb"),
  32962. name: "Back",
  32963. image: {
  32964. source: "./media/characters/sylen/back.svg",
  32965. extra: 1335/1273,
  32966. bottom: 107/1442
  32967. }
  32968. },
  32969. },
  32970. [
  32971. {
  32972. name: "Normal",
  32973. height: math.unit(5 + 5/12, "feet")
  32974. },
  32975. {
  32976. name: "Megamacro",
  32977. height: math.unit(3, "miles"),
  32978. default: true
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32984. {
  32985. front: {
  32986. height: math.unit(6, "feet"),
  32987. weight: math.unit(190, "lb"),
  32988. name: "Front",
  32989. image: {
  32990. source: "./media/characters/huttser/front.svg",
  32991. extra: 1152/1058,
  32992. bottom: 23/1175
  32993. }
  32994. },
  32995. side: {
  32996. height: math.unit(6, "feet"),
  32997. weight: math.unit(190, "lb"),
  32998. name: "Side",
  32999. image: {
  33000. source: "./media/characters/huttser/side.svg",
  33001. extra: 1174/1065,
  33002. bottom: 18/1192
  33003. }
  33004. },
  33005. back: {
  33006. height: math.unit(6, "feet"),
  33007. weight: math.unit(190, "lb"),
  33008. name: "Back",
  33009. image: {
  33010. source: "./media/characters/huttser/back.svg",
  33011. extra: 1158/1056,
  33012. bottom: 12/1170
  33013. }
  33014. },
  33015. },
  33016. [
  33017. ]
  33018. ))
  33019. characterMakers.push(() => makeCharacter(
  33020. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33021. {
  33022. side: {
  33023. height: math.unit(12 + 9/12, "feet"),
  33024. weight: math.unit(15000, "lb"),
  33025. name: "Side",
  33026. image: {
  33027. source: "./media/characters/faan/side.svg",
  33028. extra: 2747/2697,
  33029. bottom: 0/2747
  33030. }
  33031. },
  33032. front: {
  33033. height: math.unit(12 + 9/12, "feet"),
  33034. weight: math.unit(15000, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/faan/front.svg",
  33038. extra: 607/571,
  33039. bottom: 24/631
  33040. }
  33041. },
  33042. head: {
  33043. height: math.unit(2.85, "feet"),
  33044. name: "Head",
  33045. image: {
  33046. source: "./media/characters/faan/head.svg"
  33047. }
  33048. },
  33049. headAlt: {
  33050. height: math.unit(3.13, "feet"),
  33051. name: "Head-alt",
  33052. image: {
  33053. source: "./media/characters/faan/head-alt.svg"
  33054. }
  33055. },
  33056. },
  33057. [
  33058. {
  33059. name: "Normal",
  33060. height: math.unit(12 + 9/12, "feet"),
  33061. default: true
  33062. },
  33063. ]
  33064. ))
  33065. characterMakers.push(() => makeCharacter(
  33066. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33067. {
  33068. front: {
  33069. height: math.unit(6, "feet"),
  33070. weight: math.unit(300, "lb"),
  33071. name: "Front",
  33072. image: {
  33073. source: "./media/characters/tanio/front.svg",
  33074. extra: 711/673,
  33075. bottom: 25/736
  33076. }
  33077. },
  33078. },
  33079. [
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(6, "feet"),
  33083. default: true
  33084. },
  33085. ]
  33086. ))
  33087. characterMakers.push(() => makeCharacter(
  33088. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33089. {
  33090. front: {
  33091. height: math.unit(3, "inches"),
  33092. name: "Front",
  33093. image: {
  33094. source: "./media/characters/noboru/front.svg",
  33095. extra: 1039/932,
  33096. bottom: 18/1057
  33097. }
  33098. },
  33099. },
  33100. [
  33101. {
  33102. name: "Micro",
  33103. height: math.unit(3, "inches"),
  33104. default: true
  33105. },
  33106. ]
  33107. ))
  33108. characterMakers.push(() => makeCharacter(
  33109. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33110. {
  33111. front: {
  33112. height: math.unit(1.85, "meters"),
  33113. weight: math.unit(80, "kg"),
  33114. name: "Front",
  33115. image: {
  33116. source: "./media/characters/daniel-barrett/front.svg",
  33117. extra: 355/337,
  33118. bottom: 9/364
  33119. }
  33120. },
  33121. },
  33122. [
  33123. {
  33124. name: "Pico",
  33125. height: math.unit(0.0433, "mm")
  33126. },
  33127. {
  33128. name: "Nano",
  33129. height: math.unit(1.5, "mm")
  33130. },
  33131. {
  33132. name: "Micro",
  33133. height: math.unit(5.3, "cm"),
  33134. default: true
  33135. },
  33136. {
  33137. name: "Normal",
  33138. height: math.unit(1.85, "meters")
  33139. },
  33140. {
  33141. name: "Macro",
  33142. height: math.unit(64.7, "meters")
  33143. },
  33144. {
  33145. name: "Megamacro",
  33146. height: math.unit(2.26, "km")
  33147. },
  33148. {
  33149. name: "Gigamacro",
  33150. height: math.unit(79, "km")
  33151. },
  33152. {
  33153. name: "Teramacro",
  33154. height: math.unit(2765, "km")
  33155. },
  33156. {
  33157. name: "Petamacro",
  33158. height: math.unit(96678, "km")
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(30, "meters"),
  33167. weight: math.unit(400, "tons"),
  33168. name: "Front",
  33169. image: {
  33170. source: "./media/characters/zeel/front.svg",
  33171. extra: 2599/2599,
  33172. bottom: 226/2825
  33173. }
  33174. },
  33175. },
  33176. [
  33177. {
  33178. name: "Macro",
  33179. height: math.unit(30, "meters"),
  33180. default: true
  33181. },
  33182. ]
  33183. ))
  33184. characterMakers.push(() => makeCharacter(
  33185. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33186. {
  33187. front: {
  33188. height: math.unit(6 + 7/12, "feet"),
  33189. weight: math.unit(210, "lb"),
  33190. name: "Front",
  33191. image: {
  33192. source: "./media/characters/tarn/front.svg",
  33193. extra: 3517/3220,
  33194. bottom: 91/3608
  33195. }
  33196. },
  33197. back: {
  33198. height: math.unit(6 + 7/12, "feet"),
  33199. weight: math.unit(210, "lb"),
  33200. name: "Back",
  33201. image: {
  33202. source: "./media/characters/tarn/back.svg",
  33203. extra: 3566/3241,
  33204. bottom: 34/3600
  33205. }
  33206. },
  33207. dick: {
  33208. height: math.unit(1.65, "feet"),
  33209. name: "Dick",
  33210. image: {
  33211. source: "./media/characters/tarn/dick.svg"
  33212. }
  33213. },
  33214. paw: {
  33215. height: math.unit(1.80, "feet"),
  33216. name: "Paw",
  33217. image: {
  33218. source: "./media/characters/tarn/paw.svg"
  33219. }
  33220. },
  33221. tongue: {
  33222. height: math.unit(0.97, "feet"),
  33223. name: "Tongue",
  33224. image: {
  33225. source: "./media/characters/tarn/tongue.svg"
  33226. }
  33227. },
  33228. },
  33229. [
  33230. {
  33231. name: "Micro",
  33232. height: math.unit(4, "inches")
  33233. },
  33234. {
  33235. name: "Normal",
  33236. height: math.unit(6 + 7/12, "feet"),
  33237. default: true
  33238. },
  33239. {
  33240. name: "Macro",
  33241. height: math.unit(300, "feet")
  33242. },
  33243. ]
  33244. ))
  33245. characterMakers.push(() => makeCharacter(
  33246. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33247. {
  33248. front: {
  33249. height: math.unit(5 + 7/12, "feet"),
  33250. weight: math.unit(80, "kg"),
  33251. name: "Front",
  33252. image: {
  33253. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33254. extra: 3023/2865,
  33255. bottom: 33/3056
  33256. }
  33257. },
  33258. back: {
  33259. height: math.unit(5 + 7/12, "feet"),
  33260. weight: math.unit(80, "kg"),
  33261. name: "Back",
  33262. image: {
  33263. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33264. extra: 3020/2886,
  33265. bottom: 30/3050
  33266. }
  33267. },
  33268. dick: {
  33269. height: math.unit(0.98, "feet"),
  33270. name: "Dick",
  33271. image: {
  33272. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33273. }
  33274. },
  33275. anatomy: {
  33276. height: math.unit(2.86, "feet"),
  33277. name: "Anatomy",
  33278. image: {
  33279. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Really Small",
  33286. height: math.unit(2, "inches")
  33287. },
  33288. {
  33289. name: "Micro",
  33290. height: math.unit(5.583, "inches")
  33291. },
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(5 + 7/12, "feet"),
  33295. default: true
  33296. },
  33297. {
  33298. name: "Macro",
  33299. height: math.unit(67, "feet")
  33300. },
  33301. {
  33302. name: "Megamacro",
  33303. height: math.unit(134, "feet")
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33309. {
  33310. front: {
  33311. height: math.unit(9, "feet"),
  33312. weight: math.unit(120, "lb"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/sally/front.svg",
  33316. extra: 1506/1349,
  33317. bottom: 66/1572
  33318. }
  33319. },
  33320. },
  33321. [
  33322. {
  33323. name: "Normal",
  33324. height: math.unit(9, "feet"),
  33325. default: true
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33331. {
  33332. front: {
  33333. height: math.unit(8, "feet"),
  33334. weight: math.unit(900, "lb"),
  33335. name: "Front",
  33336. image: {
  33337. source: "./media/characters/owen/front.svg",
  33338. extra: 1761/1657,
  33339. bottom: 74/1835
  33340. }
  33341. },
  33342. side: {
  33343. height: math.unit(8, "feet"),
  33344. weight: math.unit(900, "lb"),
  33345. name: "Side",
  33346. image: {
  33347. source: "./media/characters/owen/side.svg",
  33348. extra: 1797/1734,
  33349. bottom: 30/1827
  33350. }
  33351. },
  33352. back: {
  33353. height: math.unit(8, "feet"),
  33354. weight: math.unit(900, "lb"),
  33355. name: "Back",
  33356. image: {
  33357. source: "./media/characters/owen/back.svg",
  33358. extra: 1796/1706,
  33359. bottom: 59/1855
  33360. }
  33361. },
  33362. maw: {
  33363. height: math.unit(1.76, "feet"),
  33364. name: "Maw",
  33365. image: {
  33366. source: "./media/characters/owen/maw.svg"
  33367. }
  33368. },
  33369. },
  33370. [
  33371. {
  33372. name: "Normal",
  33373. height: math.unit(8, "feet"),
  33374. default: true
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33380. {
  33381. front: {
  33382. height: math.unit(4, "feet"),
  33383. weight: math.unit(400, "lb"),
  33384. name: "Front",
  33385. image: {
  33386. source: "./media/characters/ryth/front.svg",
  33387. extra: 1920/1748,
  33388. bottom: 42/1962
  33389. }
  33390. },
  33391. back: {
  33392. height: math.unit(4, "feet"),
  33393. weight: math.unit(400, "lb"),
  33394. name: "Back",
  33395. image: {
  33396. source: "./media/characters/ryth/back.svg",
  33397. extra: 1897/1690,
  33398. bottom: 89/1986
  33399. }
  33400. },
  33401. mouth: {
  33402. height: math.unit(1.39, "feet"),
  33403. name: "Mouth",
  33404. image: {
  33405. source: "./media/characters/ryth/mouth.svg"
  33406. }
  33407. },
  33408. tailmaw: {
  33409. height: math.unit(1.23, "feet"),
  33410. name: "Tailmaw",
  33411. image: {
  33412. source: "./media/characters/ryth/tailmaw.svg"
  33413. }
  33414. },
  33415. goia: {
  33416. height: math.unit(4, "meters"),
  33417. weight: math.unit(10800, "lb"),
  33418. name: "Goia",
  33419. image: {
  33420. source: "./media/characters/ryth/goia.svg",
  33421. extra: 745/640,
  33422. bottom: 107/852
  33423. }
  33424. },
  33425. goiaFront: {
  33426. height: math.unit(4, "meters"),
  33427. weight: math.unit(10800, "lb"),
  33428. name: "Goia (Front)",
  33429. image: {
  33430. source: "./media/characters/ryth/goia-front.svg",
  33431. extra: 750/586,
  33432. bottom: 114/864
  33433. }
  33434. },
  33435. goiaMaw: {
  33436. height: math.unit(5.55, "feet"),
  33437. name: "Goia Maw",
  33438. image: {
  33439. source: "./media/characters/ryth/goia-maw.svg"
  33440. }
  33441. },
  33442. goiaForepaw: {
  33443. height: math.unit(3.5, "feet"),
  33444. name: "Goia Forepaw",
  33445. image: {
  33446. source: "./media/characters/ryth/goia-forepaw.svg"
  33447. }
  33448. },
  33449. goiaHindpaw: {
  33450. height: math.unit(5.55, "feet"),
  33451. name: "Goia Hindpaw",
  33452. image: {
  33453. source: "./media/characters/ryth/goia-hindpaw.svg"
  33454. }
  33455. },
  33456. },
  33457. [
  33458. {
  33459. name: "Normal",
  33460. height: math.unit(4, "feet"),
  33461. default: true
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(7, "feet"),
  33470. weight: math.unit(180, "lb"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/necrolance/front.svg",
  33474. extra: 1062/947,
  33475. bottom: 41/1103
  33476. }
  33477. },
  33478. back: {
  33479. height: math.unit(7, "feet"),
  33480. weight: math.unit(180, "lb"),
  33481. name: "Back",
  33482. image: {
  33483. source: "./media/characters/necrolance/back.svg",
  33484. extra: 1045/984,
  33485. bottom: 14/1059
  33486. }
  33487. },
  33488. wing: {
  33489. height: math.unit(2.67, "feet"),
  33490. name: "Wing",
  33491. image: {
  33492. source: "./media/characters/necrolance/wing.svg"
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Normal",
  33499. height: math.unit(7, "feet"),
  33500. default: true
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33506. {
  33507. front: {
  33508. height: math.unit(76, "meters"),
  33509. weight: math.unit(30000, "tons"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/tyler/front.svg",
  33513. extra: 1640/1640,
  33514. bottom: 114/1754
  33515. }
  33516. },
  33517. },
  33518. [
  33519. {
  33520. name: "Macro",
  33521. height: math.unit(76, "meters"),
  33522. default: true
  33523. },
  33524. ]
  33525. ))
  33526. characterMakers.push(() => makeCharacter(
  33527. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33528. {
  33529. front: {
  33530. height: math.unit(4 + 11/12, "feet"),
  33531. weight: math.unit(132, "lb"),
  33532. name: "Front",
  33533. image: {
  33534. source: "./media/characters/icey/front.svg",
  33535. extra: 2750/2550,
  33536. bottom: 33/2783
  33537. }
  33538. },
  33539. back: {
  33540. height: math.unit(4 + 11/12, "feet"),
  33541. weight: math.unit(132, "lb"),
  33542. name: "Back",
  33543. image: {
  33544. source: "./media/characters/icey/back.svg",
  33545. extra: 2624/2481,
  33546. bottom: 35/2659
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(4 + 11/12, "feet"),
  33554. default: true
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33560. {
  33561. front: {
  33562. height: math.unit(100, "feet"),
  33563. weight: math.unit(0, "lb"),
  33564. name: "Front",
  33565. image: {
  33566. source: "./media/characters/smile/front.svg",
  33567. extra: 2983/2912,
  33568. bottom: 162/3145
  33569. }
  33570. },
  33571. back: {
  33572. height: math.unit(100, "feet"),
  33573. weight: math.unit(0, "lb"),
  33574. name: "Back",
  33575. image: {
  33576. source: "./media/characters/smile/back.svg",
  33577. extra: 3143/3031,
  33578. bottom: 91/3234
  33579. }
  33580. },
  33581. head: {
  33582. height: math.unit(26.3, "feet"),
  33583. weight: math.unit(0, "lb"),
  33584. name: "Head",
  33585. image: {
  33586. source: "./media/characters/smile/head.svg"
  33587. }
  33588. },
  33589. collar: {
  33590. height: math.unit(5.3, "feet"),
  33591. weight: math.unit(0, "lb"),
  33592. name: "Collar",
  33593. image: {
  33594. source: "./media/characters/smile/collar.svg"
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Macro",
  33601. height: math.unit(100, "feet"),
  33602. default: true
  33603. },
  33604. ]
  33605. ))
  33606. characterMakers.push(() => makeCharacter(
  33607. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33608. {
  33609. dragon: {
  33610. height: math.unit(26, "feet"),
  33611. weight: math.unit(36, "tons"),
  33612. name: "Dragon",
  33613. image: {
  33614. source: "./media/characters/arimphae/dragon.svg",
  33615. extra: 1574/983,
  33616. bottom: 357/1931
  33617. }
  33618. },
  33619. drake: {
  33620. height: math.unit(9, "feet"),
  33621. weight: math.unit(1.5, "tons"),
  33622. name: "Drake",
  33623. image: {
  33624. source: "./media/characters/arimphae/drake.svg",
  33625. extra: 1120/925,
  33626. bottom: 435/1555
  33627. }
  33628. },
  33629. },
  33630. [
  33631. {
  33632. name: "Small",
  33633. height: math.unit(26*5/9, "feet")
  33634. },
  33635. {
  33636. name: "Normal",
  33637. height: math.unit(26, "feet"),
  33638. default: true
  33639. },
  33640. ]
  33641. ))
  33642. characterMakers.push(() => makeCharacter(
  33643. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33644. {
  33645. front: {
  33646. height: math.unit(8 + 9/12, "feet"),
  33647. name: "Front",
  33648. image: {
  33649. source: "./media/characters/xander/front.svg",
  33650. extra: 1237/974,
  33651. bottom: 94/1331
  33652. }
  33653. },
  33654. },
  33655. [
  33656. {
  33657. name: "Normal",
  33658. height: math.unit(8 + 9/12, "feet"),
  33659. default: true
  33660. },
  33661. {
  33662. name: "Gaze Grabber",
  33663. height: math.unit(13 + 8/12, "feet")
  33664. },
  33665. {
  33666. name: "Jaw Dropper",
  33667. height: math.unit(27, "feet")
  33668. },
  33669. {
  33670. name: "Show Stopper",
  33671. height: math.unit(136, "feet")
  33672. },
  33673. {
  33674. name: "Superstar",
  33675. height: math.unit(1.9e6, "miles")
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33681. {
  33682. side: {
  33683. height: math.unit(2100, "feet"),
  33684. name: "Side",
  33685. image: {
  33686. source: "./media/characters/osiris/side.svg",
  33687. extra: 1105/939,
  33688. bottom: 167/1272
  33689. }
  33690. },
  33691. },
  33692. [
  33693. {
  33694. name: "Macro",
  33695. height: math.unit(2100, "feet"),
  33696. default: true
  33697. },
  33698. ]
  33699. ))
  33700. characterMakers.push(() => makeCharacter(
  33701. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33702. {
  33703. front: {
  33704. height: math.unit(6 + 8/12, "feet"),
  33705. weight: math.unit(225, "lb"),
  33706. name: "Front",
  33707. image: {
  33708. source: "./media/characters/rhys-londe/front.svg",
  33709. extra: 2258/2141,
  33710. bottom: 188/2446
  33711. }
  33712. },
  33713. back: {
  33714. height: math.unit(6 + 8/12, "feet"),
  33715. weight: math.unit(225, "lb"),
  33716. name: "Back",
  33717. image: {
  33718. source: "./media/characters/rhys-londe/back.svg",
  33719. extra: 2237/2137,
  33720. bottom: 63/2300
  33721. }
  33722. },
  33723. frontNsfw: {
  33724. height: math.unit(6 + 8/12, "feet"),
  33725. weight: math.unit(225, "lb"),
  33726. name: "Front (NSFW)",
  33727. image: {
  33728. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33729. extra: 2258/2141,
  33730. bottom: 188/2446
  33731. }
  33732. },
  33733. backNsfw: {
  33734. height: math.unit(6 + 8/12, "feet"),
  33735. weight: math.unit(225, "lb"),
  33736. name: "Back (NSFW)",
  33737. image: {
  33738. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33739. extra: 2237/2137,
  33740. bottom: 63/2300
  33741. }
  33742. },
  33743. dick: {
  33744. height: math.unit(30, "inches"),
  33745. name: "Dick",
  33746. image: {
  33747. source: "./media/characters/rhys-londe/dick.svg"
  33748. }
  33749. },
  33750. maw: {
  33751. height: math.unit(1.6, "feet"),
  33752. name: "Maw",
  33753. image: {
  33754. source: "./media/characters/rhys-londe/maw.svg"
  33755. }
  33756. },
  33757. },
  33758. [
  33759. {
  33760. name: "Normal",
  33761. height: math.unit(6 + 8/12, "feet"),
  33762. default: true
  33763. },
  33764. ]
  33765. ))
  33766. characterMakers.push(() => makeCharacter(
  33767. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33768. {
  33769. front: {
  33770. height: math.unit(3 + 10/12, "feet"),
  33771. weight: math.unit(90, "lb"),
  33772. name: "Front",
  33773. image: {
  33774. source: "./media/characters/taivas-ensim/front.svg",
  33775. extra: 1327/1216,
  33776. bottom: 96/1423
  33777. }
  33778. },
  33779. back: {
  33780. height: math.unit(3 + 10/12, "feet"),
  33781. weight: math.unit(90, "lb"),
  33782. name: "Back",
  33783. image: {
  33784. source: "./media/characters/taivas-ensim/back.svg",
  33785. extra: 1355/1247,
  33786. bottom: 11/1366
  33787. }
  33788. },
  33789. frontNsfw: {
  33790. height: math.unit(3 + 10/12, "feet"),
  33791. weight: math.unit(90, "lb"),
  33792. name: "Front (NSFW)",
  33793. image: {
  33794. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33795. extra: 1327/1216,
  33796. bottom: 96/1423
  33797. }
  33798. },
  33799. backNsfw: {
  33800. height: math.unit(3 + 10/12, "feet"),
  33801. weight: math.unit(90, "lb"),
  33802. name: "Back (NSFW)",
  33803. image: {
  33804. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33805. extra: 1355/1247,
  33806. bottom: 11/1366
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(3 + 10/12, "feet"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(9 + 6/12, "feet"),
  33823. weight: math.unit(940, "lb"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/byliss/front.svg",
  33827. extra: 1327/1290,
  33828. bottom: 82/1409
  33829. }
  33830. },
  33831. back: {
  33832. height: math.unit(9 + 6/12, "feet"),
  33833. weight: math.unit(940, "lb"),
  33834. name: "Back",
  33835. image: {
  33836. source: "./media/characters/byliss/back.svg",
  33837. extra: 1376/1349,
  33838. bottom: 9/1385
  33839. }
  33840. },
  33841. frontNsfw: {
  33842. height: math.unit(9 + 6/12, "feet"),
  33843. weight: math.unit(940, "lb"),
  33844. name: "Front (NSFW)",
  33845. image: {
  33846. source: "./media/characters/byliss/front-nsfw.svg",
  33847. extra: 1327/1290,
  33848. bottom: 82/1409
  33849. }
  33850. },
  33851. backNsfw: {
  33852. height: math.unit(9 + 6/12, "feet"),
  33853. weight: math.unit(940, "lb"),
  33854. name: "Back (NSFW)",
  33855. image: {
  33856. source: "./media/characters/byliss/back-nsfw.svg",
  33857. extra: 1376/1349,
  33858. bottom: 9/1385
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Normal",
  33865. height: math.unit(9 + 6/12, "feet"),
  33866. default: true
  33867. },
  33868. ]
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33872. {
  33873. front: {
  33874. height: math.unit(5 + 2/12, "feet"),
  33875. weight: math.unit(200, "lb"),
  33876. name: "Front",
  33877. image: {
  33878. source: "./media/characters/noraly/front.svg",
  33879. extra: 4985/4773,
  33880. bottom: 150/5135
  33881. }
  33882. },
  33883. full: {
  33884. height: math.unit(5 + 2/12, "feet"),
  33885. weight: math.unit(164, "lb"),
  33886. name: "Full",
  33887. image: {
  33888. source: "./media/characters/noraly/full.svg",
  33889. extra: 1114/1059,
  33890. bottom: 35/1149
  33891. }
  33892. },
  33893. fuller: {
  33894. height: math.unit(5 + 2/12, "feet"),
  33895. weight: math.unit(230, "lb"),
  33896. name: "Fuller",
  33897. image: {
  33898. source: "./media/characters/noraly/fuller.svg",
  33899. extra: 1114/1059,
  33900. bottom: 35/1149
  33901. }
  33902. },
  33903. fullest: {
  33904. height: math.unit(5 + 2/12, "feet"),
  33905. weight: math.unit(300, "lb"),
  33906. name: "Fullest",
  33907. image: {
  33908. source: "./media/characters/noraly/fullest.svg",
  33909. extra: 1114/1059,
  33910. bottom: 35/1149
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(5 + 2/12, "feet"),
  33918. default: true
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33924. {
  33925. front: {
  33926. height: math.unit(5 + 2/12, "feet"),
  33927. weight: math.unit(210, "lb"),
  33928. name: "Front",
  33929. image: {
  33930. source: "./media/characters/pera/front.svg",
  33931. extra: 1560/1531,
  33932. bottom: 165/1725
  33933. }
  33934. },
  33935. back: {
  33936. height: math.unit(5 + 2/12, "feet"),
  33937. weight: math.unit(210, "lb"),
  33938. name: "Back",
  33939. image: {
  33940. source: "./media/characters/pera/back.svg",
  33941. extra: 1523/1493,
  33942. bottom: 152/1675
  33943. }
  33944. },
  33945. dick: {
  33946. height: math.unit(2.4, "feet"),
  33947. name: "Dick",
  33948. image: {
  33949. source: "./media/characters/pera/dick.svg"
  33950. }
  33951. },
  33952. },
  33953. [
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(5 + 2/12, "feet"),
  33957. default: true
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(12, "feet"),
  33966. weight: math.unit(3200, "lb"),
  33967. name: "Front",
  33968. image: {
  33969. source: "./media/characters/julian/front.svg",
  33970. extra: 2962/2701,
  33971. bottom: 184/3146
  33972. }
  33973. },
  33974. maw: {
  33975. height: math.unit(5.35, "feet"),
  33976. name: "Maw",
  33977. image: {
  33978. source: "./media/characters/julian/maw.svg"
  33979. }
  33980. },
  33981. paw: {
  33982. height: math.unit(3.07, "feet"),
  33983. name: "Paw",
  33984. image: {
  33985. source: "./media/characters/julian/paw.svg"
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Default",
  33992. height: math.unit(12, "feet"),
  33993. default: true
  33994. },
  33995. {
  33996. name: "Big",
  33997. height: math.unit(50, "feet")
  33998. },
  33999. {
  34000. name: "Really Big",
  34001. height: math.unit(1, "mile")
  34002. },
  34003. {
  34004. name: "Extremely Big",
  34005. height: math.unit(100, "miles")
  34006. },
  34007. {
  34008. name: "Planet Hugger",
  34009. height: math.unit(200, "megameters")
  34010. },
  34011. {
  34012. name: "Unreasonably Big",
  34013. height: math.unit(1e300, "meters")
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34019. {
  34020. solgooleo: {
  34021. height: math.unit(4, "meters"),
  34022. weight: math.unit(6000*1.5, "kg"),
  34023. volume: math.unit(6000, "liters"),
  34024. name: "Solgooleo",
  34025. image: {
  34026. source: "./media/characters/pi/solgooleo.svg",
  34027. extra: 388/331,
  34028. bottom: 29/417
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(4, "meters"),
  34036. default: true
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34042. {
  34043. front: {
  34044. height: math.unit(8, "feet"),
  34045. weight: math.unit(4, "tons"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/shaun/front.svg",
  34049. extra: 503/495,
  34050. bottom: 20/523
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(8, "feet"),
  34055. weight: math.unit(4, "tons"),
  34056. name: "Back",
  34057. image: {
  34058. source: "./media/characters/shaun/back.svg",
  34059. extra: 487/480,
  34060. bottom: 20/507
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Lorg",
  34067. height: math.unit(8, "feet"),
  34068. default: true
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34074. {
  34075. frontAnthro: {
  34076. height: math.unit(7, "feet"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/sini/front-anthro.svg",
  34080. extra: 726/678,
  34081. bottom: 35/761
  34082. },
  34083. form: "anthro",
  34084. default: true
  34085. },
  34086. backAnthro: {
  34087. height: math.unit(7, "feet"),
  34088. name: "Back",
  34089. image: {
  34090. source: "./media/characters/sini/back-anthro.svg",
  34091. extra: 743/701,
  34092. bottom: 12/755
  34093. },
  34094. form: "anthro",
  34095. },
  34096. frontAnthroNsfw: {
  34097. height: math.unit(7, "feet"),
  34098. name: "Front (NSFW)",
  34099. image: {
  34100. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34101. extra: 726/678,
  34102. bottom: 35/761
  34103. },
  34104. form: "anthro"
  34105. },
  34106. backAnthroNsfw: {
  34107. height: math.unit(7, "feet"),
  34108. name: "Back (NSFW)",
  34109. image: {
  34110. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34111. extra: 743/701,
  34112. bottom: 12/755
  34113. },
  34114. form: "anthro",
  34115. },
  34116. mawAnthro: {
  34117. height: math.unit(2.14, "feet"),
  34118. name: "Maw",
  34119. image: {
  34120. source: "./media/characters/sini/maw-anthro.svg"
  34121. },
  34122. form: "anthro"
  34123. },
  34124. dick: {
  34125. height: math.unit(1.45, "feet"),
  34126. name: "Dick",
  34127. image: {
  34128. source: "./media/characters/sini/dick-anthro.svg"
  34129. },
  34130. form: "anthro"
  34131. },
  34132. feral: {
  34133. height: math.unit(16, "feet"),
  34134. name: "Feral",
  34135. image: {
  34136. source: "./media/characters/sini/feral.svg",
  34137. extra: 814/605,
  34138. bottom: 11/825
  34139. },
  34140. form: "feral",
  34141. default: true
  34142. },
  34143. feralNsfw: {
  34144. height: math.unit(16, "feet"),
  34145. name: "Feral (NSFW)",
  34146. image: {
  34147. source: "./media/characters/sini/feral-nsfw.svg",
  34148. extra: 814/605,
  34149. bottom: 11/825
  34150. },
  34151. form: "feral"
  34152. },
  34153. mawFeral: {
  34154. height: math.unit(5.66, "feet"),
  34155. name: "Maw",
  34156. image: {
  34157. source: "./media/characters/sini/maw-feral.svg"
  34158. },
  34159. form: "feral",
  34160. },
  34161. pawFeral: {
  34162. height: math.unit(5.17, "feet"),
  34163. name: "Paw",
  34164. image: {
  34165. source: "./media/characters/sini/paw-feral.svg"
  34166. },
  34167. form: "feral",
  34168. },
  34169. rumpFeral: {
  34170. height: math.unit(13.11, "feet"),
  34171. name: "Rump",
  34172. image: {
  34173. source: "./media/characters/sini/rump-feral.svg"
  34174. },
  34175. form: "feral",
  34176. },
  34177. dickFeral: {
  34178. height: math.unit(1, "feet"),
  34179. name: "Dick",
  34180. image: {
  34181. source: "./media/characters/sini/dick-feral.svg"
  34182. },
  34183. form: "feral",
  34184. },
  34185. eyeFeral: {
  34186. height: math.unit(1.23, "feet"),
  34187. name: "Eye",
  34188. image: {
  34189. source: "./media/characters/sini/eye-feral.svg"
  34190. },
  34191. form: "feral",
  34192. },
  34193. },
  34194. [
  34195. {
  34196. name: "Normal",
  34197. height: math.unit(7, "feet"),
  34198. default: true,
  34199. form: "anthro"
  34200. },
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(16, "feet"),
  34204. default: true,
  34205. form: "feral"
  34206. },
  34207. ],
  34208. {
  34209. "anthro": {
  34210. name: "Anthro",
  34211. default: true
  34212. },
  34213. "feral": {
  34214. name: "Feral",
  34215. }
  34216. }
  34217. ))
  34218. characterMakers.push(() => makeCharacter(
  34219. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34220. {
  34221. side: {
  34222. height: math.unit(47.2, "meters"),
  34223. weight: math.unit(10000, "tons"),
  34224. name: "Side",
  34225. image: {
  34226. source: "./media/characters/raylldo/side.svg",
  34227. extra: 2363/642,
  34228. bottom: 221/2584
  34229. }
  34230. },
  34231. top: {
  34232. height: math.unit(240, "meters"),
  34233. weight: math.unit(10000, "tons"),
  34234. name: "Top",
  34235. image: {
  34236. source: "./media/characters/raylldo/top.svg"
  34237. }
  34238. },
  34239. bottom: {
  34240. height: math.unit(240, "meters"),
  34241. weight: math.unit(10000, "tons"),
  34242. name: "Bottom",
  34243. image: {
  34244. source: "./media/characters/raylldo/bottom.svg"
  34245. }
  34246. },
  34247. head: {
  34248. height: math.unit(38.6, "meters"),
  34249. name: "Head",
  34250. image: {
  34251. source: "./media/characters/raylldo/head.svg",
  34252. extra: 1335/1112,
  34253. bottom: 0/1335
  34254. }
  34255. },
  34256. maw: {
  34257. height: math.unit(16.37, "meters"),
  34258. name: "Maw",
  34259. image: {
  34260. source: "./media/characters/raylldo/maw.svg",
  34261. extra: 883/660,
  34262. bottom: 0/883
  34263. },
  34264. extraAttributes: {
  34265. preyCapacity: {
  34266. name: "Capacity",
  34267. power: 3,
  34268. type: "volume",
  34269. base: math.unit(1000, "people")
  34270. },
  34271. tongueSize: {
  34272. name: "Tongue Size",
  34273. power: 2,
  34274. type: "area",
  34275. base: math.unit(21, "m^2")
  34276. }
  34277. }
  34278. },
  34279. forepaw: {
  34280. height: math.unit(18, "meters"),
  34281. name: "Forepaw",
  34282. image: {
  34283. source: "./media/characters/raylldo/forepaw.svg"
  34284. }
  34285. },
  34286. hindpaw: {
  34287. height: math.unit(23, "meters"),
  34288. name: "Hindpaw",
  34289. image: {
  34290. source: "./media/characters/raylldo/hindpaw.svg"
  34291. }
  34292. },
  34293. genitals: {
  34294. height: math.unit(42, "meters"),
  34295. name: "Genitals",
  34296. image: {
  34297. source: "./media/characters/raylldo/genitals.svg"
  34298. }
  34299. },
  34300. },
  34301. [
  34302. {
  34303. name: "Normal",
  34304. height: math.unit(47.2, "meters"),
  34305. default: true
  34306. },
  34307. ]
  34308. ))
  34309. characterMakers.push(() => makeCharacter(
  34310. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34311. {
  34312. anthroFront: {
  34313. height: math.unit(9, "feet"),
  34314. weight: math.unit(600, "lb"),
  34315. name: "Anthro (Front)",
  34316. image: {
  34317. source: "./media/characters/glint/anthro-front.svg",
  34318. extra: 1097/1018,
  34319. bottom: 28/1125
  34320. }
  34321. },
  34322. anthroBack: {
  34323. height: math.unit(9, "feet"),
  34324. weight: math.unit(600, "lb"),
  34325. name: "Anthro (Back)",
  34326. image: {
  34327. source: "./media/characters/glint/anthro-back.svg",
  34328. extra: 1154/997,
  34329. bottom: 36/1190
  34330. }
  34331. },
  34332. feral: {
  34333. height: math.unit(11, "feet"),
  34334. weight: math.unit(50000, "lb"),
  34335. name: "Feral",
  34336. image: {
  34337. source: "./media/characters/glint/feral.svg",
  34338. extra: 3035/1585,
  34339. bottom: 1169/4204
  34340. }
  34341. },
  34342. dickAnthro: {
  34343. height: math.unit(0.7, "meters"),
  34344. name: "Dick (Anthro)",
  34345. image: {
  34346. source: "./media/characters/glint/dick-anthro.svg"
  34347. }
  34348. },
  34349. dickFeral: {
  34350. height: math.unit(2.65, "meters"),
  34351. name: "Dick (Feral)",
  34352. image: {
  34353. source: "./media/characters/glint/dick-feral.svg"
  34354. }
  34355. },
  34356. slitHidden: {
  34357. height: math.unit(5.85, "meters"),
  34358. name: "Slit (Hidden)",
  34359. image: {
  34360. source: "./media/characters/glint/slit-hidden.svg"
  34361. }
  34362. },
  34363. slitErect: {
  34364. height: math.unit(5.85, "meters"),
  34365. name: "Slit (Erect)",
  34366. image: {
  34367. source: "./media/characters/glint/slit-erect.svg"
  34368. }
  34369. },
  34370. mawAnthro: {
  34371. height: math.unit(0.63, "meters"),
  34372. name: "Maw (Anthro)",
  34373. image: {
  34374. source: "./media/characters/glint/maw.svg"
  34375. }
  34376. },
  34377. mawFeral: {
  34378. height: math.unit(2.89, "meters"),
  34379. name: "Maw (Feral)",
  34380. image: {
  34381. source: "./media/characters/glint/maw.svg"
  34382. }
  34383. },
  34384. },
  34385. [
  34386. {
  34387. name: "Normal",
  34388. height: math.unit(9, "feet"),
  34389. default: true
  34390. },
  34391. ]
  34392. ))
  34393. characterMakers.push(() => makeCharacter(
  34394. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34395. {
  34396. side: {
  34397. height: math.unit(15, "feet"),
  34398. weight: math.unit(5000, "kg"),
  34399. name: "Side",
  34400. image: {
  34401. source: "./media/characters/kairne/side.svg",
  34402. extra: 979/811,
  34403. bottom: 13/992
  34404. }
  34405. },
  34406. front: {
  34407. height: math.unit(15, "feet"),
  34408. weight: math.unit(5000, "kg"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/kairne/front.svg",
  34412. extra: 908/814,
  34413. bottom: 26/934
  34414. }
  34415. },
  34416. sideNsfw: {
  34417. height: math.unit(15, "feet"),
  34418. weight: math.unit(5000, "kg"),
  34419. name: "Side (NSFW)",
  34420. image: {
  34421. source: "./media/characters/kairne/side-nsfw.svg",
  34422. extra: 979/811,
  34423. bottom: 13/992
  34424. }
  34425. },
  34426. frontNsfw: {
  34427. height: math.unit(15, "feet"),
  34428. weight: math.unit(5000, "kg"),
  34429. name: "Front (NSFW)",
  34430. image: {
  34431. source: "./media/characters/kairne/front-nsfw.svg",
  34432. extra: 908/814,
  34433. bottom: 26/934
  34434. }
  34435. },
  34436. dickCaged: {
  34437. height: math.unit(0.65, "meters"),
  34438. name: "Dick-caged",
  34439. image: {
  34440. source: "./media/characters/kairne/dick-caged.svg"
  34441. }
  34442. },
  34443. dick: {
  34444. height: math.unit(0.79, "meters"),
  34445. name: "Dick",
  34446. image: {
  34447. source: "./media/characters/kairne/dick.svg"
  34448. }
  34449. },
  34450. genitals: {
  34451. height: math.unit(1.29, "meters"),
  34452. name: "Genitals",
  34453. image: {
  34454. source: "./media/characters/kairne/genitals.svg"
  34455. }
  34456. },
  34457. maw: {
  34458. height: math.unit(1.73, "meters"),
  34459. name: "Maw",
  34460. image: {
  34461. source: "./media/characters/kairne/maw.svg"
  34462. }
  34463. },
  34464. },
  34465. [
  34466. {
  34467. name: "Normal",
  34468. height: math.unit(15, "feet"),
  34469. default: true
  34470. },
  34471. ]
  34472. ))
  34473. characterMakers.push(() => makeCharacter(
  34474. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34475. {
  34476. front: {
  34477. height: math.unit(5 + 8/12, "feet"),
  34478. weight: math.unit(139, "lb"),
  34479. name: "Front",
  34480. image: {
  34481. source: "./media/characters/biscuit-jackal/front.svg",
  34482. extra: 2106/1961,
  34483. bottom: 58/2164
  34484. }
  34485. },
  34486. back: {
  34487. height: math.unit(5 + 8/12, "feet"),
  34488. weight: math.unit(139, "lb"),
  34489. name: "Back",
  34490. image: {
  34491. source: "./media/characters/biscuit-jackal/back.svg",
  34492. extra: 2132/1976,
  34493. bottom: 57/2189
  34494. }
  34495. },
  34496. werejackal: {
  34497. height: math.unit(6 + 3/12, "feet"),
  34498. weight: math.unit(188, "lb"),
  34499. name: "Werejackal",
  34500. image: {
  34501. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34502. extra: 2373/2178,
  34503. bottom: 53/2426
  34504. }
  34505. },
  34506. },
  34507. [
  34508. {
  34509. name: "Normal",
  34510. height: math.unit(5 + 8/12, "feet"),
  34511. default: true
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(140, "cm"),
  34520. weight: math.unit(45, "kg"),
  34521. name: "Front",
  34522. image: {
  34523. source: "./media/characters/tayra-white/front.svg",
  34524. extra: 2229/2192,
  34525. bottom: 75/2304
  34526. }
  34527. },
  34528. },
  34529. [
  34530. {
  34531. name: "Normal",
  34532. height: math.unit(140, "cm"),
  34533. default: true
  34534. },
  34535. ]
  34536. ))
  34537. characterMakers.push(() => makeCharacter(
  34538. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34539. {
  34540. front: {
  34541. height: math.unit(4 + 5/12, "feet"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/scoop/front.svg",
  34545. extra: 1257/1136,
  34546. bottom: 69/1326
  34547. }
  34548. },
  34549. back: {
  34550. height: math.unit(4 + 5/12, "feet"),
  34551. name: "Back",
  34552. image: {
  34553. source: "./media/characters/scoop/back.svg",
  34554. extra: 1321/1152,
  34555. bottom: 32/1353
  34556. }
  34557. },
  34558. maw: {
  34559. height: math.unit(0.68, "feet"),
  34560. name: "Maw",
  34561. image: {
  34562. source: "./media/characters/scoop/maw.svg"
  34563. }
  34564. },
  34565. },
  34566. [
  34567. {
  34568. name: "Really Small",
  34569. height: math.unit(1, "mm")
  34570. },
  34571. {
  34572. name: "Micro",
  34573. height: math.unit(1, "inch")
  34574. },
  34575. {
  34576. name: "Normal",
  34577. height: math.unit(4 + 5/12, "feet"),
  34578. default: true
  34579. },
  34580. {
  34581. name: "Macro",
  34582. height: math.unit(200, "feet")
  34583. },
  34584. {
  34585. name: "Megamacro",
  34586. height: math.unit(3240, "feet")
  34587. },
  34588. {
  34589. name: "Teramacro",
  34590. height: math.unit(2500, "miles")
  34591. },
  34592. ]
  34593. ))
  34594. characterMakers.push(() => makeCharacter(
  34595. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34596. {
  34597. front: {
  34598. height: math.unit(15 + 7/12, "feet"),
  34599. weight: math.unit(1150, "tons"),
  34600. name: "Front",
  34601. image: {
  34602. source: "./media/characters/saphinara/front.svg",
  34603. extra: 1837/1643,
  34604. bottom: 84/1921
  34605. },
  34606. form: "normal",
  34607. default: true
  34608. },
  34609. side: {
  34610. height: math.unit(15 + 7/12, "feet"),
  34611. weight: math.unit(1150, "tons"),
  34612. name: "Side",
  34613. image: {
  34614. source: "./media/characters/saphinara/side.svg",
  34615. extra: 605/547,
  34616. bottom: 6/611
  34617. },
  34618. form: "normal"
  34619. },
  34620. back: {
  34621. height: math.unit(15 + 7/12, "feet"),
  34622. weight: math.unit(1150, "tons"),
  34623. name: "Back",
  34624. image: {
  34625. source: "./media/characters/saphinara/back.svg",
  34626. extra: 591/531,
  34627. bottom: 13/604
  34628. },
  34629. form: "normal"
  34630. },
  34631. frontTail: {
  34632. height: math.unit(15 + 7/12, "feet"),
  34633. weight: math.unit(1150, "tons"),
  34634. name: "Front (Full Tail)",
  34635. image: {
  34636. source: "./media/characters/saphinara/front-tail.svg",
  34637. extra: 2256/1630,
  34638. bottom: 261/2517
  34639. },
  34640. form: "normal"
  34641. },
  34642. insides: {
  34643. height: math.unit(11.92, "feet"),
  34644. name: "Insides",
  34645. image: {
  34646. source: "./media/characters/saphinara/insides.svg"
  34647. },
  34648. form: "normal"
  34649. },
  34650. head: {
  34651. height: math.unit(4.17, "feet"),
  34652. name: "Head",
  34653. image: {
  34654. source: "./media/characters/saphinara/head.svg"
  34655. },
  34656. form: "normal"
  34657. },
  34658. tongue: {
  34659. height: math.unit(4.60, "feet"),
  34660. name: "Tongue",
  34661. image: {
  34662. source: "./media/characters/saphinara/tongue.svg"
  34663. },
  34664. form: "normal"
  34665. },
  34666. headEnraged: {
  34667. height: math.unit(5.55, "feet"),
  34668. name: "Head (Enraged)",
  34669. image: {
  34670. source: "./media/characters/saphinara/head-enraged.svg"
  34671. },
  34672. form: "normal"
  34673. },
  34674. wings: {
  34675. height: math.unit(11.95, "feet"),
  34676. name: "Wings",
  34677. image: {
  34678. source: "./media/characters/saphinara/wings.svg"
  34679. },
  34680. form: "normal"
  34681. },
  34682. feathers: {
  34683. height: math.unit(8.92, "feet"),
  34684. name: "Feathers",
  34685. image: {
  34686. source: "./media/characters/saphinara/feathers.svg"
  34687. },
  34688. form: "normal"
  34689. },
  34690. shackles: {
  34691. height: math.unit(2, "feet"),
  34692. name: "Shackles",
  34693. image: {
  34694. source: "./media/characters/saphinara/shackles.svg"
  34695. },
  34696. form: "normal"
  34697. },
  34698. eyes: {
  34699. height: math.unit(1.331, "feet"),
  34700. name: "Eyes",
  34701. image: {
  34702. source: "./media/characters/saphinara/eyes.svg"
  34703. },
  34704. form: "normal"
  34705. },
  34706. eyesEnraged: {
  34707. height: math.unit(1.331, "feet"),
  34708. name: "Eyes (Enraged)",
  34709. image: {
  34710. source: "./media/characters/saphinara/eyes-enraged.svg"
  34711. },
  34712. form: "normal"
  34713. },
  34714. trueFormSide: {
  34715. height: math.unit(200, "feet"),
  34716. weight: math.unit(1e7, "tons"),
  34717. name: "Side",
  34718. image: {
  34719. source: "./media/characters/saphinara/true-form-side.svg",
  34720. extra: 1399/770,
  34721. bottom: 97/1496
  34722. },
  34723. form: "true-form",
  34724. default: true
  34725. },
  34726. trueFormMaw: {
  34727. height: math.unit(71.5, "feet"),
  34728. name: "Maw",
  34729. image: {
  34730. source: "./media/characters/saphinara/true-form-maw.svg",
  34731. extra: 2302/1453,
  34732. bottom: 0/2302
  34733. },
  34734. form: "true-form"
  34735. },
  34736. meowberusSide: {
  34737. height: math.unit(75, "feet"),
  34738. weight: math.unit(180000, "kg"),
  34739. preyCapacity: math.unit(50000, "people"),
  34740. name: "Side",
  34741. image: {
  34742. source: "./media/characters/saphinara/meowberus-side.svg",
  34743. extra: 1400/711,
  34744. bottom: 126/1526
  34745. },
  34746. form: "meowberus",
  34747. extraAttributes: {
  34748. "pawArea": {
  34749. name: "Paw Size",
  34750. power: 2,
  34751. type: "area",
  34752. base: math.unit(35, "m^2")
  34753. }
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Normal",
  34760. height: math.unit(15 + 7/12, "feet"),
  34761. default: true,
  34762. form: "normal"
  34763. },
  34764. {
  34765. name: "Angry",
  34766. height: math.unit(30 + 6/12, "feet"),
  34767. form: "normal"
  34768. },
  34769. {
  34770. name: "Enraged",
  34771. height: math.unit(102 + 1/12, "feet"),
  34772. form: "normal"
  34773. },
  34774. {
  34775. name: "True",
  34776. height: math.unit(200, "feet"),
  34777. default: true,
  34778. form: "true-form"
  34779. },
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(75, "feet"),
  34783. default: true,
  34784. form: "meowberus"
  34785. },
  34786. ],
  34787. {
  34788. "normal": {
  34789. name: "Normal",
  34790. default: true
  34791. },
  34792. "true-form": {
  34793. name: "True Form"
  34794. },
  34795. "meowberus": {
  34796. name: "Meowberus",
  34797. },
  34798. }
  34799. ))
  34800. characterMakers.push(() => makeCharacter(
  34801. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34802. {
  34803. front: {
  34804. height: math.unit(6 + 8/12, "feet"),
  34805. weight: math.unit(300, "lb"),
  34806. name: "Front",
  34807. image: {
  34808. source: "./media/characters/jrain/front.svg",
  34809. extra: 3039/2865,
  34810. bottom: 399/3438
  34811. }
  34812. },
  34813. back: {
  34814. height: math.unit(6 + 8/12, "feet"),
  34815. weight: math.unit(300, "lb"),
  34816. name: "Back",
  34817. image: {
  34818. source: "./media/characters/jrain/back.svg",
  34819. extra: 3089/2938,
  34820. bottom: 172/3261
  34821. }
  34822. },
  34823. head: {
  34824. height: math.unit(2.14, "feet"),
  34825. name: "Head",
  34826. image: {
  34827. source: "./media/characters/jrain/head.svg"
  34828. }
  34829. },
  34830. maw: {
  34831. height: math.unit(1.77, "feet"),
  34832. name: "Maw",
  34833. image: {
  34834. source: "./media/characters/jrain/maw.svg"
  34835. }
  34836. },
  34837. leftHand: {
  34838. height: math.unit(1.1, "feet"),
  34839. name: "Left Hand",
  34840. image: {
  34841. source: "./media/characters/jrain/left-hand.svg"
  34842. }
  34843. },
  34844. rightHand: {
  34845. height: math.unit(1.1, "feet"),
  34846. name: "Right Hand",
  34847. image: {
  34848. source: "./media/characters/jrain/right-hand.svg"
  34849. }
  34850. },
  34851. eye: {
  34852. height: math.unit(0.35, "feet"),
  34853. name: "Eye",
  34854. image: {
  34855. source: "./media/characters/jrain/eye.svg"
  34856. }
  34857. },
  34858. },
  34859. [
  34860. {
  34861. name: "Normal",
  34862. height: math.unit(6 + 8/12, "feet"),
  34863. default: true
  34864. },
  34865. {
  34866. name: "Casually Large",
  34867. height: math.unit(25, "feet")
  34868. },
  34869. {
  34870. name: "Giant",
  34871. height: math.unit(100, "feet")
  34872. },
  34873. {
  34874. name: "Kaiju",
  34875. height: math.unit(300, "feet")
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34881. {
  34882. dragon: {
  34883. height: math.unit(5, "meters"),
  34884. name: "Dragon",
  34885. image: {
  34886. source: "./media/characters/sabrina/dragon.svg",
  34887. extra: 3670 / 2365,
  34888. bottom: 333 / 4003
  34889. }
  34890. },
  34891. gryphon: {
  34892. height: math.unit(3, "meters"),
  34893. name: "Gryphon",
  34894. image: {
  34895. source: "./media/characters/sabrina/gryphon.svg",
  34896. extra: 1576 / 945,
  34897. bottom: 71 / 1647
  34898. }
  34899. },
  34900. snake: {
  34901. height: math.unit(12, "meters"),
  34902. name: "Snake",
  34903. image: {
  34904. source: "./media/characters/sabrina/snake.svg",
  34905. extra: 1758 / 1320,
  34906. bottom: 186 / 1944
  34907. }
  34908. },
  34909. collar: {
  34910. height: math.unit(1.86, "meters"),
  34911. name: "Collar",
  34912. image: {
  34913. source: "./media/characters/sabrina/collar.svg"
  34914. }
  34915. },
  34916. eye: {
  34917. height: math.unit(0.53, "meters"),
  34918. name: "Eye",
  34919. image: {
  34920. source: "./media/characters/sabrina/eye.svg"
  34921. }
  34922. },
  34923. foot: {
  34924. height: math.unit(1.86, "meters"),
  34925. name: "Foot",
  34926. image: {
  34927. source: "./media/characters/sabrina/foot.svg"
  34928. }
  34929. },
  34930. hand: {
  34931. height: math.unit(1.32, "meters"),
  34932. name: "Hand",
  34933. image: {
  34934. source: "./media/characters/sabrina/hand.svg"
  34935. }
  34936. },
  34937. head: {
  34938. height: math.unit(2.44, "meters"),
  34939. name: "Head",
  34940. image: {
  34941. source: "./media/characters/sabrina/head.svg"
  34942. }
  34943. },
  34944. headAngry: {
  34945. height: math.unit(2.44, "meters"),
  34946. name: "Head (Angry))",
  34947. image: {
  34948. source: "./media/characters/sabrina/head-angry.svg"
  34949. }
  34950. },
  34951. maw: {
  34952. height: math.unit(1.65, "meters"),
  34953. name: "Maw",
  34954. image: {
  34955. source: "./media/characters/sabrina/maw.svg"
  34956. }
  34957. },
  34958. spikes: {
  34959. height: math.unit(1.69, "meters"),
  34960. name: "Spikes",
  34961. image: {
  34962. source: "./media/characters/sabrina/spikes.svg"
  34963. }
  34964. },
  34965. stomach: {
  34966. height: math.unit(1.15, "meters"),
  34967. name: "Stomach",
  34968. image: {
  34969. source: "./media/characters/sabrina/stomach.svg"
  34970. }
  34971. },
  34972. tongue: {
  34973. height: math.unit(1.27, "meters"),
  34974. name: "Tongue",
  34975. image: {
  34976. source: "./media/characters/sabrina/tongue.svg"
  34977. }
  34978. },
  34979. wingDorsal: {
  34980. height: math.unit(4.85, "meters"),
  34981. name: "Wing (Dorsal)",
  34982. image: {
  34983. source: "./media/characters/sabrina/wing-dorsal.svg"
  34984. }
  34985. },
  34986. wingVentral: {
  34987. height: math.unit(4.85, "meters"),
  34988. name: "Wing (Ventral)",
  34989. image: {
  34990. source: "./media/characters/sabrina/wing-ventral.svg"
  34991. }
  34992. },
  34993. },
  34994. [
  34995. {
  34996. name: "Normal",
  34997. height: math.unit(5, "meters"),
  34998. default: true
  34999. },
  35000. ]
  35001. ))
  35002. characterMakers.push(() => makeCharacter(
  35003. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35004. {
  35005. frontMaid: {
  35006. height: math.unit(5 + 5/12, "feet"),
  35007. weight: math.unit(130, "lb"),
  35008. name: "Front (Maid)",
  35009. image: {
  35010. source: "./media/characters/midnight-tales/front-maid.svg",
  35011. extra: 489/454,
  35012. bottom: 61/550
  35013. }
  35014. },
  35015. frontFormal: {
  35016. height: math.unit(5 + 5/12, "feet"),
  35017. weight: math.unit(130, "lb"),
  35018. name: "Front (Formal)",
  35019. image: {
  35020. source: "./media/characters/midnight-tales/front-formal.svg",
  35021. extra: 489/454,
  35022. bottom: 61/550
  35023. }
  35024. },
  35025. back: {
  35026. height: math.unit(5 + 5/12, "feet"),
  35027. weight: math.unit(130, "lb"),
  35028. name: "Back",
  35029. image: {
  35030. source: "./media/characters/midnight-tales/back.svg",
  35031. extra: 498/456,
  35032. bottom: 33/531
  35033. }
  35034. },
  35035. frontBeast: {
  35036. height: math.unit(40, "feet"),
  35037. weight: math.unit(64000, "lb"),
  35038. name: "Front (Beast)",
  35039. image: {
  35040. source: "./media/characters/midnight-tales/front-beast.svg",
  35041. extra: 927/860,
  35042. bottom: 53/980
  35043. }
  35044. },
  35045. backBeast: {
  35046. height: math.unit(40, "feet"),
  35047. weight: math.unit(64000, "lb"),
  35048. name: "Back (Beast)",
  35049. image: {
  35050. source: "./media/characters/midnight-tales/back-beast.svg",
  35051. extra: 929/855,
  35052. bottom: 16/945
  35053. }
  35054. },
  35055. footBeast: {
  35056. height: math.unit(6.7, "feet"),
  35057. name: "Foot (Beast)",
  35058. image: {
  35059. source: "./media/characters/midnight-tales/foot-beast.svg"
  35060. }
  35061. },
  35062. headBeast: {
  35063. height: math.unit(8, "feet"),
  35064. name: "Head (Beast)",
  35065. image: {
  35066. source: "./media/characters/midnight-tales/head-beast.svg"
  35067. }
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(5 + 5 / 12, "feet"),
  35074. default: true
  35075. },
  35076. {
  35077. name: "Macro",
  35078. height: math.unit(25, "feet")
  35079. },
  35080. ]
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35084. {
  35085. front: {
  35086. height: math.unit(5 + 10/12, "feet"),
  35087. name: "Front",
  35088. image: {
  35089. source: "./media/characters/argon/front.svg",
  35090. extra: 2009/1935,
  35091. bottom: 118/2127
  35092. }
  35093. },
  35094. back: {
  35095. height: math.unit(5 + 10/12, "feet"),
  35096. name: "Back",
  35097. image: {
  35098. source: "./media/characters/argon/back.svg",
  35099. extra: 2047/1992,
  35100. bottom: 20/2067
  35101. }
  35102. },
  35103. frontDressed: {
  35104. height: math.unit(5 + 10/12, "feet"),
  35105. name: "Front (Dressed)",
  35106. image: {
  35107. source: "./media/characters/argon/front-dressed.svg",
  35108. extra: 2009/1935,
  35109. bottom: 118/2127
  35110. }
  35111. },
  35112. },
  35113. [
  35114. {
  35115. name: "Normal",
  35116. height: math.unit(5 + 10/12, "feet"),
  35117. default: true
  35118. },
  35119. ]
  35120. ))
  35121. characterMakers.push(() => makeCharacter(
  35122. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35123. {
  35124. front: {
  35125. height: math.unit(8 + 6/12, "feet"),
  35126. weight: math.unit(1150, "lb"),
  35127. name: "Front",
  35128. image: {
  35129. source: "./media/characters/kichi/front.svg",
  35130. extra: 1267/1164,
  35131. bottom: 61/1328
  35132. }
  35133. },
  35134. back: {
  35135. height: math.unit(8 + 6/12, "feet"),
  35136. weight: math.unit(1150, "lb"),
  35137. name: "Back",
  35138. image: {
  35139. source: "./media/characters/kichi/back.svg",
  35140. extra: 1273/1166,
  35141. bottom: 33/1306
  35142. }
  35143. },
  35144. },
  35145. [
  35146. {
  35147. name: "Normal",
  35148. height: math.unit(8 + 6/12, "feet"),
  35149. default: true
  35150. },
  35151. ]
  35152. ))
  35153. characterMakers.push(() => makeCharacter(
  35154. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35155. {
  35156. front: {
  35157. height: math.unit(6, "feet"),
  35158. weight: math.unit(210, "lb"),
  35159. name: "Front",
  35160. image: {
  35161. source: "./media/characters/manetel-greyscale/front.svg",
  35162. extra: 350/312,
  35163. bottom: 8/358
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Micro",
  35170. height: math.unit(2, "inches")
  35171. },
  35172. {
  35173. name: "Normal",
  35174. height: math.unit(6, "feet"),
  35175. default: true
  35176. },
  35177. {
  35178. name: "Minimacro",
  35179. height: math.unit(17, "feet")
  35180. },
  35181. {
  35182. name: "Macro",
  35183. height: math.unit(117, "feet")
  35184. },
  35185. ]
  35186. ))
  35187. characterMakers.push(() => makeCharacter(
  35188. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35189. {
  35190. side: {
  35191. height: math.unit(5 + 1/12, "feet"),
  35192. weight: math.unit(418, "lb"),
  35193. name: "Side",
  35194. image: {
  35195. source: "./media/characters/softpurr/side.svg",
  35196. extra: 1993/1945,
  35197. bottom: 134/2127
  35198. }
  35199. },
  35200. front: {
  35201. height: math.unit(5 + 1/12, "feet"),
  35202. weight: math.unit(418, "lb"),
  35203. name: "Front",
  35204. image: {
  35205. source: "./media/characters/softpurr/front.svg",
  35206. extra: 1950/1856,
  35207. bottom: 174/2124
  35208. }
  35209. },
  35210. paw: {
  35211. height: math.unit(1, "feet"),
  35212. name: "Paw",
  35213. image: {
  35214. source: "./media/characters/softpurr/paw.svg"
  35215. }
  35216. },
  35217. },
  35218. [
  35219. {
  35220. name: "Normal",
  35221. height: math.unit(5 + 1/12, "feet"),
  35222. default: true
  35223. },
  35224. ]
  35225. ))
  35226. characterMakers.push(() => makeCharacter(
  35227. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35228. {
  35229. front: {
  35230. height: math.unit(260, "meters"),
  35231. name: "Front",
  35232. image: {
  35233. source: "./media/characters/anahita/front.svg",
  35234. extra: 665/635,
  35235. bottom: 89/754
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Macro",
  35242. height: math.unit(260, "meters"),
  35243. default: true
  35244. },
  35245. ]
  35246. ))
  35247. characterMakers.push(() => makeCharacter(
  35248. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35249. {
  35250. front: {
  35251. height: math.unit(4 + 10/12, "feet"),
  35252. weight: math.unit(160, "lb"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/chip-mouse/front.svg",
  35256. extra: 3528/3408,
  35257. bottom: 0/3528
  35258. }
  35259. },
  35260. frontNsfw: {
  35261. height: math.unit(4 + 10/12, "feet"),
  35262. weight: math.unit(160, "lb"),
  35263. name: "Front (NSFW)",
  35264. image: {
  35265. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35266. extra: 3528/3408,
  35267. bottom: 0/3528
  35268. }
  35269. },
  35270. },
  35271. [
  35272. {
  35273. name: "Normal",
  35274. height: math.unit(4 + 10/12, "feet"),
  35275. default: true
  35276. },
  35277. ]
  35278. ))
  35279. characterMakers.push(() => makeCharacter(
  35280. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35281. {
  35282. side: {
  35283. height: math.unit(10, "feet"),
  35284. weight: math.unit(14000, "lb"),
  35285. name: "Side",
  35286. image: {
  35287. source: "./media/characters/kremm/side.svg",
  35288. extra: 1390/1053,
  35289. bottom: 90/1480
  35290. }
  35291. },
  35292. gut: {
  35293. height: math.unit(5.8, "feet"),
  35294. name: "Gut",
  35295. image: {
  35296. source: "./media/characters/kremm/gut.svg"
  35297. }
  35298. },
  35299. ass: {
  35300. height: math.unit(6.1, "feet"),
  35301. name: "Ass",
  35302. image: {
  35303. source: "./media/characters/kremm/ass.svg"
  35304. }
  35305. },
  35306. jaws: {
  35307. height: math.unit(2.2, "feet"),
  35308. name: "Jaws",
  35309. image: {
  35310. source: "./media/characters/kremm/jaws.svg"
  35311. }
  35312. },
  35313. dick: {
  35314. height: math.unit(4.26, "feet"),
  35315. name: "Dick",
  35316. image: {
  35317. source: "./media/characters/kremm/dick.svg"
  35318. }
  35319. },
  35320. },
  35321. [
  35322. {
  35323. name: "Normal",
  35324. height: math.unit(10, "feet"),
  35325. default: true
  35326. },
  35327. ]
  35328. ))
  35329. characterMakers.push(() => makeCharacter(
  35330. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35331. {
  35332. front: {
  35333. height: math.unit(30, "stories"),
  35334. name: "Front",
  35335. image: {
  35336. source: "./media/characters/kai/front.svg",
  35337. extra: 1892/1718,
  35338. bottom: 162/2054
  35339. }
  35340. },
  35341. },
  35342. [
  35343. {
  35344. name: "Macro",
  35345. height: math.unit(30, "stories"),
  35346. default: true
  35347. },
  35348. ]
  35349. ))
  35350. characterMakers.push(() => makeCharacter(
  35351. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35352. {
  35353. front: {
  35354. height: math.unit(6 + 4/12, "feet"),
  35355. weight: math.unit(145, "lb"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/sykes/front.svg",
  35359. extra: 1321 / 1187,
  35360. bottom: 66 / 1387
  35361. }
  35362. },
  35363. back: {
  35364. height: math.unit(6 + 4/12, "feet"),
  35365. weight: math.unit(145, "lb"),
  35366. name: "Back",
  35367. image: {
  35368. source: "./media/characters/sykes/back.svg",
  35369. extra: 1326/1181,
  35370. bottom: 31/1357
  35371. }
  35372. },
  35373. traditionalOutfit: {
  35374. height: math.unit(6 + 4/12, "feet"),
  35375. weight: math.unit(145, "lb"),
  35376. name: "Traditional Outfit",
  35377. image: {
  35378. source: "./media/characters/sykes/traditional-outfit.svg",
  35379. extra: 1321 / 1187,
  35380. bottom: 66 / 1387
  35381. }
  35382. },
  35383. adventureOutfit: {
  35384. height: math.unit(6 + 4/12, "feet"),
  35385. weight: math.unit(145, "lb"),
  35386. name: "Adventure Outfit",
  35387. image: {
  35388. source: "./media/characters/sykes/adventure-outfit.svg",
  35389. extra: 1321 / 1187,
  35390. bottom: 66 / 1387
  35391. }
  35392. },
  35393. handLeft: {
  35394. height: math.unit(0.9, "feet"),
  35395. name: "Hand (Left)",
  35396. image: {
  35397. source: "./media/characters/sykes/hand-left.svg"
  35398. }
  35399. },
  35400. handRight: {
  35401. height: math.unit(0.839, "feet"),
  35402. name: "Hand (Right)",
  35403. image: {
  35404. source: "./media/characters/sykes/hand-right.svg"
  35405. }
  35406. },
  35407. leftFoot: {
  35408. height: math.unit(1.2, "feet"),
  35409. name: "Foot (Left)",
  35410. image: {
  35411. source: "./media/characters/sykes/foot-left.svg"
  35412. }
  35413. },
  35414. rightFoot: {
  35415. height: math.unit(1.2, "feet"),
  35416. name: "Foot (Right)",
  35417. image: {
  35418. source: "./media/characters/sykes/foot-right.svg"
  35419. }
  35420. },
  35421. maw: {
  35422. height: math.unit(1.93, "feet"),
  35423. name: "Maw",
  35424. image: {
  35425. source: "./media/characters/sykes/maw.svg"
  35426. }
  35427. },
  35428. teeth: {
  35429. height: math.unit(0.51, "feet"),
  35430. name: "Teeth",
  35431. image: {
  35432. source: "./media/characters/sykes/teeth.svg"
  35433. }
  35434. },
  35435. tongue: {
  35436. height: math.unit(2.13, "feet"),
  35437. name: "Tongue",
  35438. image: {
  35439. source: "./media/characters/sykes/tongue.svg"
  35440. }
  35441. },
  35442. uvula: {
  35443. height: math.unit(0.16, "feet"),
  35444. name: "Uvula",
  35445. image: {
  35446. source: "./media/characters/sykes/uvula.svg"
  35447. }
  35448. },
  35449. collar: {
  35450. height: math.unit(0.287, "feet"),
  35451. name: "Collar",
  35452. image: {
  35453. source: "./media/characters/sykes/collar.svg"
  35454. }
  35455. },
  35456. tail: {
  35457. height: math.unit(3.8, "feet"),
  35458. name: "Tail",
  35459. image: {
  35460. source: "./media/characters/sykes/tail.svg"
  35461. }
  35462. },
  35463. },
  35464. [
  35465. {
  35466. name: "Shrunken",
  35467. height: math.unit(5, "inches")
  35468. },
  35469. {
  35470. name: "Normal",
  35471. height: math.unit(6 + 4 / 12, "feet"),
  35472. default: true
  35473. },
  35474. {
  35475. name: "Big",
  35476. height: math.unit(15, "feet")
  35477. },
  35478. ]
  35479. ))
  35480. characterMakers.push(() => makeCharacter(
  35481. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35482. {
  35483. front: {
  35484. height: math.unit(5 + 8/12, "feet"),
  35485. weight: math.unit(190, "lb"),
  35486. name: "Front",
  35487. image: {
  35488. source: "./media/characters/oven-otter/front.svg",
  35489. extra: 1809/1740,
  35490. bottom: 181/1990
  35491. }
  35492. },
  35493. back: {
  35494. height: math.unit(5 + 8/12, "feet"),
  35495. weight: math.unit(190, "lb"),
  35496. name: "Back",
  35497. image: {
  35498. source: "./media/characters/oven-otter/back.svg",
  35499. extra: 1709/1635,
  35500. bottom: 118/1827
  35501. }
  35502. },
  35503. hand: {
  35504. height: math.unit(1.07, "feet"),
  35505. name: "Hand",
  35506. image: {
  35507. source: "./media/characters/oven-otter/hand.svg"
  35508. }
  35509. },
  35510. beans: {
  35511. height: math.unit(1.74, "feet"),
  35512. name: "Beans",
  35513. image: {
  35514. source: "./media/characters/oven-otter/beans.svg"
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Micro",
  35521. height: math.unit(0.5, "inches")
  35522. },
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(5 + 8/12, "feet"),
  35526. default: true
  35527. },
  35528. {
  35529. name: "Macro",
  35530. height: math.unit(250, "feet")
  35531. },
  35532. {
  35533. name: "Really High",
  35534. height: math.unit(420, "feet")
  35535. },
  35536. ]
  35537. ))
  35538. characterMakers.push(() => makeCharacter(
  35539. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35540. {
  35541. front: {
  35542. height: math.unit(5, "meters"),
  35543. weight: math.unit(292000000000000, "kg"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/devourer/front.svg",
  35547. extra: 1800/1733,
  35548. bottom: 211/2011
  35549. }
  35550. },
  35551. maw: {
  35552. height: math.unit(1.1, "meter"),
  35553. name: "Maw",
  35554. image: {
  35555. source: "./media/characters/devourer/maw.svg"
  35556. }
  35557. },
  35558. },
  35559. [
  35560. {
  35561. name: "Small",
  35562. height: math.unit(3, "meters")
  35563. },
  35564. {
  35565. name: "Large",
  35566. height: math.unit(5, "meters"),
  35567. default: true
  35568. },
  35569. ]
  35570. ))
  35571. characterMakers.push(() => makeCharacter(
  35572. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35573. {
  35574. front: {
  35575. height: math.unit(6, "feet"),
  35576. weight: math.unit(400, "lb"),
  35577. name: "Front",
  35578. image: {
  35579. source: "./media/characters/ellarby/front.svg",
  35580. extra: 1909/1763,
  35581. bottom: 80/1989
  35582. }
  35583. },
  35584. back: {
  35585. height: math.unit(6, "feet"),
  35586. weight: math.unit(400, "lb"),
  35587. name: "Back",
  35588. image: {
  35589. source: "./media/characters/ellarby/back.svg",
  35590. extra: 1914/1784,
  35591. bottom: 172/2086
  35592. }
  35593. },
  35594. },
  35595. [
  35596. {
  35597. name: "Mischief",
  35598. height: math.unit(18, "inches")
  35599. },
  35600. {
  35601. name: "Trouble",
  35602. height: math.unit(12, "feet")
  35603. },
  35604. {
  35605. name: "Havoc",
  35606. height: math.unit(200, "feet"),
  35607. default: true
  35608. },
  35609. {
  35610. name: "Pandemonium",
  35611. height: math.unit(1, "mile")
  35612. },
  35613. {
  35614. name: "Catastrophe",
  35615. height: math.unit(100, "miles")
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35621. {
  35622. front: {
  35623. height: math.unit(4.7, "meters"),
  35624. weight: math.unit(6500, "kg"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/vex/front.svg",
  35628. extra: 1288/1140,
  35629. bottom: 100/1388
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(4.7, "meters"),
  35637. default: true
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35643. {
  35644. normal: {
  35645. height: math.unit(6, "feet"),
  35646. weight: math.unit(350, "lb"),
  35647. name: "Normal",
  35648. image: {
  35649. source: "./media/characters/teshy/normal.svg",
  35650. extra: 1795/1735,
  35651. bottom: 16/1811
  35652. }
  35653. },
  35654. monsterFront: {
  35655. height: math.unit(12, "feet"),
  35656. weight: math.unit(4700, "lb"),
  35657. name: "Monster (Front)",
  35658. image: {
  35659. source: "./media/characters/teshy/monster-front.svg",
  35660. extra: 2042/2034,
  35661. bottom: 128/2170
  35662. }
  35663. },
  35664. monsterSide: {
  35665. height: math.unit(12, "feet"),
  35666. weight: math.unit(4700, "lb"),
  35667. name: "Monster (Side)",
  35668. image: {
  35669. source: "./media/characters/teshy/monster-side.svg",
  35670. extra: 2067/2056,
  35671. bottom: 70/2137
  35672. }
  35673. },
  35674. monsterBack: {
  35675. height: math.unit(12, "feet"),
  35676. weight: math.unit(4700, "lb"),
  35677. name: "Monster (Back)",
  35678. image: {
  35679. source: "./media/characters/teshy/monster-back.svg",
  35680. extra: 1921/1914,
  35681. bottom: 171/2092
  35682. }
  35683. },
  35684. },
  35685. [
  35686. {
  35687. name: "Normal",
  35688. height: math.unit(6, "feet"),
  35689. default: true
  35690. },
  35691. ]
  35692. ))
  35693. characterMakers.push(() => makeCharacter(
  35694. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35695. {
  35696. front: {
  35697. height: math.unit(6, "feet"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/ramey/front.svg",
  35701. extra: 790/787,
  35702. bottom: 27/817
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(6, "feet"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35716. {
  35717. front: {
  35718. height: math.unit(5 + 5/12, "feet"),
  35719. weight: math.unit(120, "lb"),
  35720. name: "Front",
  35721. image: {
  35722. source: "./media/characters/phirae/front.svg",
  35723. extra: 2491/2436,
  35724. bottom: 38/2529
  35725. }
  35726. },
  35727. },
  35728. [
  35729. {
  35730. name: "Normal",
  35731. height: math.unit(5 + 5/12, "feet"),
  35732. default: true
  35733. },
  35734. ]
  35735. ))
  35736. characterMakers.push(() => makeCharacter(
  35737. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35738. {
  35739. front: {
  35740. height: math.unit(5 + 3/12, "feet"),
  35741. name: "Front",
  35742. image: {
  35743. source: "./media/characters/stagglas/front.svg",
  35744. extra: 962/882,
  35745. bottom: 53/1015
  35746. }
  35747. },
  35748. feral: {
  35749. height: math.unit(335, "cm"),
  35750. name: "Feral",
  35751. image: {
  35752. source: "./media/characters/stagglas/feral.svg",
  35753. extra: 1732/1090,
  35754. bottom: 48/1780
  35755. }
  35756. },
  35757. },
  35758. [
  35759. {
  35760. name: "Normal",
  35761. height: math.unit(5 + 3/12, "feet"),
  35762. default: true
  35763. },
  35764. ]
  35765. ))
  35766. characterMakers.push(() => makeCharacter(
  35767. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35768. {
  35769. front: {
  35770. height: math.unit(5 + 4/12, "feet"),
  35771. weight: math.unit(145, "lb"),
  35772. name: "Front",
  35773. image: {
  35774. source: "./media/characters/starra/front.svg",
  35775. extra: 1790/1691,
  35776. bottom: 91/1881
  35777. }
  35778. },
  35779. },
  35780. [
  35781. {
  35782. name: "Normal",
  35783. height: math.unit(5 + 4/12, "feet"),
  35784. default: true
  35785. },
  35786. ]
  35787. ))
  35788. characterMakers.push(() => makeCharacter(
  35789. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35790. {
  35791. front: {
  35792. height: math.unit(2.2, "meters"),
  35793. name: "Front",
  35794. image: {
  35795. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35796. extra: 1194/1005,
  35797. bottom: 25/1219
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Normal",
  35804. height: math.unit(2.2, "meters"),
  35805. default: true
  35806. },
  35807. ]
  35808. ))
  35809. characterMakers.push(() => makeCharacter(
  35810. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35811. {
  35812. side: {
  35813. height: math.unit(8 + 2/12, "feet"),
  35814. weight: math.unit(1240, "lb"),
  35815. name: "Side",
  35816. image: {
  35817. source: "./media/characters/mika-valentine/side.svg",
  35818. extra: 2670/2501,
  35819. bottom: 250/2920
  35820. }
  35821. },
  35822. },
  35823. [
  35824. {
  35825. name: "Normal",
  35826. height: math.unit(8 + 2/12, "feet"),
  35827. default: true
  35828. },
  35829. ]
  35830. ))
  35831. characterMakers.push(() => makeCharacter(
  35832. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35833. {
  35834. front: {
  35835. height: math.unit(7 + 2/12, "feet"),
  35836. name: "Front",
  35837. image: {
  35838. source: "./media/characters/xoltol/front.svg",
  35839. extra: 2212/2124,
  35840. bottom: 84/2296
  35841. }
  35842. },
  35843. side: {
  35844. height: math.unit(7 + 2/12, "feet"),
  35845. name: "Side",
  35846. image: {
  35847. source: "./media/characters/xoltol/side.svg",
  35848. extra: 2273/2197,
  35849. bottom: 26/2299
  35850. }
  35851. },
  35852. hand: {
  35853. height: math.unit(2.5, "feet"),
  35854. name: "Hand",
  35855. image: {
  35856. source: "./media/characters/xoltol/hand.svg"
  35857. }
  35858. },
  35859. },
  35860. [
  35861. {
  35862. name: "Small-ish",
  35863. height: math.unit(5 + 11/12, "feet")
  35864. },
  35865. {
  35866. name: "Normal",
  35867. height: math.unit(7 + 2/12, "feet")
  35868. },
  35869. {
  35870. name: "\"Macro\"",
  35871. height: math.unit(14 + 9/12, "feet"),
  35872. default: true
  35873. },
  35874. {
  35875. name: "Alternate Height",
  35876. height: math.unit(20, "feet")
  35877. },
  35878. {
  35879. name: "Actually Macro",
  35880. height: math.unit(100, "feet")
  35881. },
  35882. ]
  35883. ))
  35884. characterMakers.push(() => makeCharacter(
  35885. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35886. {
  35887. front: {
  35888. height: math.unit(5 + 2/12, "feet"),
  35889. name: "Front",
  35890. image: {
  35891. source: "./media/characters/kotetsu-redwood/front.svg",
  35892. extra: 1053/942,
  35893. bottom: 60/1113
  35894. }
  35895. },
  35896. },
  35897. [
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(5 + 2/12, "feet"),
  35901. default: true
  35902. },
  35903. ]
  35904. ))
  35905. characterMakers.push(() => makeCharacter(
  35906. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35907. {
  35908. front: {
  35909. height: math.unit(2.4, "meters"),
  35910. weight: math.unit(125, "kg"),
  35911. name: "Front",
  35912. image: {
  35913. source: "./media/characters/lilith/front.svg",
  35914. extra: 1590/1513,
  35915. bottom: 203/1793
  35916. }
  35917. },
  35918. },
  35919. [
  35920. {
  35921. name: "Humanoid",
  35922. height: math.unit(2.4, "meters")
  35923. },
  35924. {
  35925. name: "Normal",
  35926. height: math.unit(6, "meters"),
  35927. default: true
  35928. },
  35929. {
  35930. name: "Largest",
  35931. height: math.unit(55, "meters")
  35932. },
  35933. ]
  35934. ))
  35935. characterMakers.push(() => makeCharacter(
  35936. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35937. {
  35938. front: {
  35939. height: math.unit(8 + 4/12, "feet"),
  35940. weight: math.unit(535, "lb"),
  35941. name: "Front",
  35942. image: {
  35943. source: "./media/characters/beh'kah-bolger/front.svg",
  35944. extra: 1660/1603,
  35945. bottom: 37/1697
  35946. }
  35947. },
  35948. },
  35949. [
  35950. {
  35951. name: "Normal",
  35952. height: math.unit(8 + 4/12, "feet"),
  35953. default: true
  35954. },
  35955. {
  35956. name: "Kaiju",
  35957. height: math.unit(250, "feet")
  35958. },
  35959. {
  35960. name: "Still Growing",
  35961. height: math.unit(10, "miles")
  35962. },
  35963. {
  35964. name: "Continental",
  35965. height: math.unit(5000, "miles")
  35966. },
  35967. {
  35968. name: "Final Form",
  35969. height: math.unit(2500000, "miles")
  35970. },
  35971. ]
  35972. ))
  35973. characterMakers.push(() => makeCharacter(
  35974. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35975. {
  35976. front: {
  35977. height: math.unit(7 + 2/12, "feet"),
  35978. weight: math.unit(230, "kg"),
  35979. name: "Front",
  35980. image: {
  35981. source: "./media/characters/tatyana-milewska/front.svg",
  35982. extra: 1199/1150,
  35983. bottom: 86/1285
  35984. }
  35985. },
  35986. },
  35987. [
  35988. {
  35989. name: "Normal",
  35990. height: math.unit(7 + 2/12, "feet"),
  35991. default: true
  35992. },
  35993. {
  35994. name: "Big",
  35995. height: math.unit(12, "feet")
  35996. },
  35997. {
  35998. name: "Minimacro",
  35999. height: math.unit(20, "feet")
  36000. },
  36001. {
  36002. name: "Macro",
  36003. height: math.unit(120, "feet")
  36004. },
  36005. ]
  36006. ))
  36007. characterMakers.push(() => makeCharacter(
  36008. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36009. {
  36010. front: {
  36011. height: math.unit(7 + 8/12, "feet"),
  36012. weight: math.unit(152, "kg"),
  36013. name: "Front",
  36014. image: {
  36015. source: "./media/characters/helen-arri/front.svg",
  36016. extra: 440/423,
  36017. bottom: 14/454
  36018. }
  36019. },
  36020. back: {
  36021. height: math.unit(7 + 8/12, "feet"),
  36022. weight: math.unit(152, "kg"),
  36023. name: "Back",
  36024. image: {
  36025. source: "./media/characters/helen-arri/back.svg",
  36026. extra: 443/426,
  36027. bottom: 8/451
  36028. }
  36029. },
  36030. },
  36031. [
  36032. {
  36033. name: "Normal",
  36034. height: math.unit(7 + 8/12, "feet"),
  36035. default: true
  36036. },
  36037. {
  36038. name: "Big",
  36039. height: math.unit(14, "feet")
  36040. },
  36041. {
  36042. name: "Minimacro",
  36043. height: math.unit(24, "feet")
  36044. },
  36045. {
  36046. name: "Macro",
  36047. height: math.unit(140, "feet")
  36048. },
  36049. ]
  36050. ))
  36051. characterMakers.push(() => makeCharacter(
  36052. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36053. {
  36054. front: {
  36055. height: math.unit(6, "meters"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/ehanu-rehu/front.svg",
  36059. extra: 1800/1800,
  36060. bottom: 59/1859
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Normal",
  36067. height: math.unit(6, "meters"),
  36068. default: true
  36069. },
  36070. ]
  36071. ))
  36072. characterMakers.push(() => makeCharacter(
  36073. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36074. {
  36075. front: {
  36076. height: math.unit(7 + 3/12, "feet"),
  36077. name: "Front",
  36078. image: {
  36079. source: "./media/characters/renholder/front.svg",
  36080. extra: 3096/2960,
  36081. bottom: 250/3346
  36082. }
  36083. },
  36084. },
  36085. [
  36086. {
  36087. name: "Normal Bat",
  36088. height: math.unit(7 + 3/12, "feet"),
  36089. default: true
  36090. },
  36091. {
  36092. name: "Slightly Tall Bat",
  36093. height: math.unit(100, "feet")
  36094. },
  36095. {
  36096. name: "Big Bat",
  36097. height: math.unit(1000, "feet")
  36098. },
  36099. {
  36100. name: "City-Sized Bat",
  36101. height: math.unit(200000, "feet")
  36102. },
  36103. {
  36104. name: "Bigger Bat",
  36105. height: math.unit(10000, "miles")
  36106. },
  36107. {
  36108. name: "Solar Sized Bat",
  36109. height: math.unit(100, "AU")
  36110. },
  36111. {
  36112. name: "Galactic Bat",
  36113. height: math.unit(200000, "lightyears")
  36114. },
  36115. {
  36116. name: "Universally Known Bat",
  36117. height: math.unit(1, "universe")
  36118. },
  36119. ]
  36120. ))
  36121. characterMakers.push(() => makeCharacter(
  36122. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36123. {
  36124. front: {
  36125. height: math.unit(6 + 11/12, "feet"),
  36126. weight: math.unit(250, "lb"),
  36127. name: "Front",
  36128. image: {
  36129. source: "./media/characters/cookiecat/front.svg",
  36130. extra: 893/827,
  36131. bottom: 14/907
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Micro",
  36138. height: math.unit(3, "inches")
  36139. },
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(6 + 11/12, "feet"),
  36143. default: true
  36144. },
  36145. {
  36146. name: "Macro",
  36147. height: math.unit(100, "feet")
  36148. },
  36149. {
  36150. name: "Macro+",
  36151. height: math.unit(404, "feet")
  36152. },
  36153. {
  36154. name: "Megamacro",
  36155. height: math.unit(165, "miles")
  36156. },
  36157. {
  36158. name: "Planetary",
  36159. height: math.unit(4600, "miles")
  36160. },
  36161. ]
  36162. ))
  36163. characterMakers.push(() => makeCharacter(
  36164. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36165. {
  36166. front: {
  36167. height: math.unit(10 + 3/12, "feet"),
  36168. weight: math.unit(1500, "lb"),
  36169. name: "Front",
  36170. image: {
  36171. source: "./media/characters/tux-kusanagi/front.svg",
  36172. extra: 944/840,
  36173. bottom: 39/983
  36174. }
  36175. },
  36176. back: {
  36177. height: math.unit(10 + 3/12, "feet"),
  36178. weight: math.unit(1500, "lb"),
  36179. name: "Back",
  36180. image: {
  36181. source: "./media/characters/tux-kusanagi/back.svg",
  36182. extra: 941/842,
  36183. bottom: 28/969
  36184. }
  36185. },
  36186. rump: {
  36187. height: math.unit(5.25, "feet"),
  36188. name: "Rump",
  36189. image: {
  36190. source: "./media/characters/tux-kusanagi/rump.svg"
  36191. }
  36192. },
  36193. beak: {
  36194. height: math.unit(1.54, "feet"),
  36195. name: "Beak",
  36196. image: {
  36197. source: "./media/characters/tux-kusanagi/beak.svg"
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(10 + 3/12, "feet"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(58, "feet"),
  36214. weight: math.unit(200, "tons"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/uzarmazari/front.svg",
  36218. extra: 1575/1455,
  36219. bottom: 152/1727
  36220. }
  36221. },
  36222. back: {
  36223. height: math.unit(58, "feet"),
  36224. weight: math.unit(200, "tons"),
  36225. name: "Back",
  36226. image: {
  36227. source: "./media/characters/uzarmazari/back.svg",
  36228. extra: 1585/1510,
  36229. bottom: 157/1742
  36230. }
  36231. },
  36232. head: {
  36233. height: math.unit(26, "feet"),
  36234. name: "Head",
  36235. image: {
  36236. source: "./media/characters/uzarmazari/head.svg"
  36237. }
  36238. },
  36239. },
  36240. [
  36241. {
  36242. name: "Normal",
  36243. height: math.unit(58, "feet"),
  36244. default: true
  36245. },
  36246. ]
  36247. ))
  36248. characterMakers.push(() => makeCharacter(
  36249. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36250. {
  36251. side: {
  36252. height: math.unit(15, "feet"),
  36253. name: "Side",
  36254. image: {
  36255. source: "./media/characters/akitu/side.svg",
  36256. extra: 1421/1321,
  36257. bottom: 157/1578
  36258. }
  36259. },
  36260. front: {
  36261. height: math.unit(15, "feet"),
  36262. name: "Front",
  36263. image: {
  36264. source: "./media/characters/akitu/front.svg",
  36265. extra: 1435/1326,
  36266. bottom: 232/1667
  36267. }
  36268. },
  36269. },
  36270. [
  36271. {
  36272. name: "Normal",
  36273. height: math.unit(15, "feet"),
  36274. default: true
  36275. },
  36276. ]
  36277. ))
  36278. characterMakers.push(() => makeCharacter(
  36279. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36280. {
  36281. front: {
  36282. height: math.unit(10 + 8/12, "feet"),
  36283. name: "Front",
  36284. image: {
  36285. source: "./media/characters/azalie-croixland/front.svg",
  36286. extra: 1972/1856,
  36287. bottom: 31/2003
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Original Height",
  36294. height: math.unit(5 + 4/12, "feet")
  36295. },
  36296. {
  36297. name: "Normal Height",
  36298. height: math.unit(10 + 8/12, "feet"),
  36299. default: true
  36300. },
  36301. ]
  36302. ))
  36303. characterMakers.push(() => makeCharacter(
  36304. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36305. {
  36306. side: {
  36307. height: math.unit(7 + 1/12, "feet"),
  36308. weight: math.unit(245, "lb"),
  36309. name: "Side",
  36310. image: {
  36311. source: "./media/characters/kavus-kazian/side.svg",
  36312. extra: 349/342,
  36313. bottom: 15/364
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Normal",
  36320. height: math.unit(7 + 1/12, "feet"),
  36321. default: true
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36327. {
  36328. normalFront: {
  36329. height: math.unit(5 + 11/12, "feet"),
  36330. name: "Front",
  36331. image: {
  36332. source: "./media/characters/moonlight-rose/normal-front.svg",
  36333. extra: 1980/1825,
  36334. bottom: 18/1998
  36335. },
  36336. form: "normal",
  36337. default: true
  36338. },
  36339. normalBack: {
  36340. height: math.unit(5 + 11/12, "feet"),
  36341. name: "Back",
  36342. image: {
  36343. source: "./media/characters/moonlight-rose/normal-back.svg",
  36344. extra: 2010/1839,
  36345. bottom: 10/2020
  36346. },
  36347. form: "normal"
  36348. },
  36349. demonFront: {
  36350. height: math.unit(1.5, "earths"),
  36351. name: "Front",
  36352. image: {
  36353. source: "./media/characters/moonlight-rose/demon.svg",
  36354. extra: 1400/1294,
  36355. bottom: 45/1445
  36356. },
  36357. form: "demon",
  36358. default: true
  36359. },
  36360. terraFront: {
  36361. height: math.unit(1.5, "earths"),
  36362. name: "Front",
  36363. image: {
  36364. source: "./media/characters/moonlight-rose/terra.svg"
  36365. },
  36366. form: "terra",
  36367. default: true
  36368. },
  36369. jupiterFront: {
  36370. height: math.unit(69911*2, "km"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36374. extra: 1367/1286,
  36375. bottom: 55/1422
  36376. },
  36377. form: "jupiter",
  36378. default: true
  36379. },
  36380. neptuneFront: {
  36381. height: math.unit(24622*2, "feet"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36385. extra: 1851/1712,
  36386. bottom: 0/1851
  36387. },
  36388. form: "neptune",
  36389. default: true
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "\"Natural\" Height",
  36395. height: math.unit(5 + 11/12, "feet"),
  36396. form: "normal"
  36397. },
  36398. {
  36399. name: "Smallest comfortable size",
  36400. height: math.unit(40, "meters"),
  36401. form: "normal"
  36402. },
  36403. {
  36404. name: "Common size",
  36405. height: math.unit(50, "km"),
  36406. form: "normal",
  36407. default: true
  36408. },
  36409. {
  36410. name: "Normal",
  36411. height: math.unit(1.5, "earths"),
  36412. form: "demon",
  36413. default: true
  36414. },
  36415. {
  36416. name: "Universal",
  36417. height: math.unit(15, "universes"),
  36418. form: "demon"
  36419. },
  36420. {
  36421. name: "Earth",
  36422. height: math.unit(1.5, "earths"),
  36423. form: "terra",
  36424. default: true
  36425. },
  36426. {
  36427. name: "Super Earth",
  36428. height: math.unit(67.5, "earths"),
  36429. form: "terra"
  36430. },
  36431. {
  36432. name: "Doesn't fit in a solar system...",
  36433. height: math.unit(1, "galaxy"),
  36434. form: "terra"
  36435. },
  36436. {
  36437. name: "Saturn",
  36438. height: math.unit(58232*2, "km"),
  36439. form: "jupiter"
  36440. },
  36441. {
  36442. name: "Jupiter",
  36443. height: math.unit(69911*2, "km"),
  36444. form: "jupiter",
  36445. default: true
  36446. },
  36447. {
  36448. name: "HD 100546 b",
  36449. height: math.unit(482938, "km"),
  36450. form: "jupiter"
  36451. },
  36452. {
  36453. name: "Enceladus",
  36454. height: math.unit(513*2, "km"),
  36455. form: "neptune"
  36456. },
  36457. {
  36458. name: "Europe",
  36459. height: math.unit(1560*2, "km"),
  36460. form: "neptune"
  36461. },
  36462. {
  36463. name: "Neptune",
  36464. height: math.unit(24622*2, "km"),
  36465. form: "neptune",
  36466. default: true
  36467. },
  36468. {
  36469. name: "CoRoT-9b",
  36470. height: math.unit(75067*2, "km"),
  36471. form: "neptune"
  36472. },
  36473. ],
  36474. {
  36475. "normal": {
  36476. name: "Normal",
  36477. default: true
  36478. },
  36479. "demon": {
  36480. name: "Demon"
  36481. },
  36482. "terra": {
  36483. name: "Terra"
  36484. },
  36485. "jupiter": {
  36486. name: "Jupiter"
  36487. },
  36488. "neptune": {
  36489. name: "Neptune"
  36490. }
  36491. }
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(16, "feet"),
  36498. weight: math.unit(610, "kg"),
  36499. name: "Front",
  36500. image: {
  36501. source: "./media/characters/huckle/front.svg",
  36502. extra: 1731/1625,
  36503. bottom: 33/1764
  36504. }
  36505. },
  36506. back: {
  36507. height: math.unit(16, "feet"),
  36508. weight: math.unit(610, "kg"),
  36509. name: "Back",
  36510. image: {
  36511. source: "./media/characters/huckle/back.svg",
  36512. extra: 1738/1651,
  36513. bottom: 37/1775
  36514. }
  36515. },
  36516. laughing: {
  36517. height: math.unit(3.75, "feet"),
  36518. name: "Laughing",
  36519. image: {
  36520. source: "./media/characters/huckle/laughing.svg"
  36521. }
  36522. },
  36523. angry: {
  36524. height: math.unit(4.15, "feet"),
  36525. name: "Angry",
  36526. image: {
  36527. source: "./media/characters/huckle/angry.svg"
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(16, "feet"),
  36535. default: true
  36536. },
  36537. {
  36538. name: "Mini Macro",
  36539. height: math.unit(463, "feet")
  36540. },
  36541. {
  36542. name: "Macro",
  36543. height: math.unit(1680, "meters")
  36544. },
  36545. {
  36546. name: "Mega Macro",
  36547. height: math.unit(175, "km")
  36548. },
  36549. {
  36550. name: "Terra Macro",
  36551. height: math.unit(32, "gigameters")
  36552. },
  36553. {
  36554. name: "Multiverse+",
  36555. height: math.unit(2.56e23, "yottameters")
  36556. },
  36557. ]
  36558. ))
  36559. characterMakers.push(() => makeCharacter(
  36560. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36561. {
  36562. front: {
  36563. height: math.unit(6 + 9/12, "feet"),
  36564. weight: math.unit(280, "lb"),
  36565. name: "Front",
  36566. image: {
  36567. source: "./media/characters/candy/front.svg",
  36568. extra: 234/217,
  36569. bottom: 11/245
  36570. }
  36571. },
  36572. },
  36573. [
  36574. {
  36575. name: "Really Small",
  36576. height: math.unit(0.1, "nm")
  36577. },
  36578. {
  36579. name: "Micro",
  36580. height: math.unit(2, "inches")
  36581. },
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(6 + 9/12, "feet"),
  36585. default: true
  36586. },
  36587. {
  36588. name: "Small Macro",
  36589. height: math.unit(69, "feet")
  36590. },
  36591. {
  36592. name: "Macro",
  36593. height: math.unit(160, "feet")
  36594. },
  36595. {
  36596. name: "Megamacro",
  36597. height: math.unit(22000, "miles")
  36598. },
  36599. {
  36600. name: "Gigamacro",
  36601. height: math.unit(50000, "miles")
  36602. },
  36603. ]
  36604. ))
  36605. characterMakers.push(() => makeCharacter(
  36606. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36607. {
  36608. front: {
  36609. height: math.unit(4, "feet"),
  36610. weight: math.unit(90, "lb"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/joey-mcdonald/front.svg",
  36614. extra: 1059/852,
  36615. bottom: 33/1092
  36616. }
  36617. },
  36618. back: {
  36619. height: math.unit(4, "feet"),
  36620. weight: math.unit(90, "lb"),
  36621. name: "Back",
  36622. image: {
  36623. source: "./media/characters/joey-mcdonald/back.svg",
  36624. extra: 1077/879,
  36625. bottom: 5/1082
  36626. }
  36627. },
  36628. frontKobold: {
  36629. height: math.unit(4, "feet"),
  36630. weight: math.unit(100, "lb"),
  36631. name: "Front-kobold",
  36632. image: {
  36633. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36634. extra: 1480/1367,
  36635. bottom: 0/1480
  36636. }
  36637. },
  36638. backKobold: {
  36639. height: math.unit(4, "feet"),
  36640. weight: math.unit(100, "lb"),
  36641. name: "Back-kobold",
  36642. image: {
  36643. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36644. extra: 1449/1361,
  36645. bottom: 0/1449
  36646. }
  36647. },
  36648. },
  36649. [
  36650. {
  36651. name: "Normal",
  36652. height: math.unit(4, "feet"),
  36653. default: true
  36654. },
  36655. ]
  36656. ))
  36657. characterMakers.push(() => makeCharacter(
  36658. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36659. {
  36660. front: {
  36661. height: math.unit(12 + 6/12, "feet"),
  36662. name: "Front",
  36663. image: {
  36664. source: "./media/characters/kass-lockheed/front.svg",
  36665. extra: 354/343,
  36666. bottom: 9/363
  36667. }
  36668. },
  36669. back: {
  36670. height: math.unit(12 + 6/12, "feet"),
  36671. name: "Back",
  36672. image: {
  36673. source: "./media/characters/kass-lockheed/back.svg",
  36674. extra: 364/352,
  36675. bottom: 3/367
  36676. }
  36677. },
  36678. dick: {
  36679. height: math.unit(3.12, "feet"),
  36680. name: "Dick",
  36681. image: {
  36682. source: "./media/characters/kass-lockheed/dick.svg"
  36683. }
  36684. },
  36685. head: {
  36686. height: math.unit(2.6, "feet"),
  36687. name: "Head",
  36688. image: {
  36689. source: "./media/characters/kass-lockheed/head.svg"
  36690. }
  36691. },
  36692. bleh: {
  36693. height: math.unit(2.85, "feet"),
  36694. name: "Bleh",
  36695. image: {
  36696. source: "./media/characters/kass-lockheed/bleh.svg"
  36697. }
  36698. },
  36699. smug: {
  36700. height: math.unit(2.85, "feet"),
  36701. name: "Smug",
  36702. image: {
  36703. source: "./media/characters/kass-lockheed/smug.svg"
  36704. }
  36705. },
  36706. },
  36707. [
  36708. {
  36709. name: "Normal",
  36710. height: math.unit(12 + 6/12, "feet"),
  36711. default: true
  36712. },
  36713. ]
  36714. ))
  36715. characterMakers.push(() => makeCharacter(
  36716. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36717. {
  36718. front: {
  36719. height: math.unit(6 + 2/12, "feet"),
  36720. name: "Front",
  36721. image: {
  36722. source: "./media/characters/taylor/front.svg",
  36723. extra: 639/495,
  36724. bottom: 12/651
  36725. }
  36726. },
  36727. },
  36728. [
  36729. {
  36730. name: "Normal",
  36731. height: math.unit(6 + 2/12, "feet"),
  36732. default: true
  36733. },
  36734. {
  36735. name: "Big",
  36736. height: math.unit(15, "feet")
  36737. },
  36738. {
  36739. name: "Lorg",
  36740. height: math.unit(80, "feet")
  36741. },
  36742. {
  36743. name: "Too Lorg",
  36744. height: math.unit(120, "feet")
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(15, "feet"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/kaizer/front.svg",
  36756. extra: 1612/1436,
  36757. bottom: 43/1655
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(15, "feet"),
  36765. default: true
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(2, "feet"),
  36774. weight: math.unit(30, "lb"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/sandy/front.svg",
  36778. extra: 1439/1307,
  36779. bottom: 194/1633
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(2, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(3, "feet"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/mellvi/front.svg",
  36799. extra: 1831/1630,
  36800. bottom: 58/1889
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(3, "feet"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36814. {
  36815. front: {
  36816. height: math.unit(5 + 11/12, "feet"),
  36817. weight: math.unit(200, "lb"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/shirou/front.svg",
  36821. extra: 2491/2383,
  36822. bottom: 189/2680
  36823. }
  36824. },
  36825. back: {
  36826. height: math.unit(5 + 11/12, "feet"),
  36827. weight: math.unit(200, "lb"),
  36828. name: "Back",
  36829. image: {
  36830. source: "./media/characters/shirou/back.svg",
  36831. extra: 2554/2450,
  36832. bottom: 76/2630
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Normal",
  36839. height: math.unit(5 + 11/12, "feet"),
  36840. default: true
  36841. },
  36842. ]
  36843. ))
  36844. characterMakers.push(() => makeCharacter(
  36845. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36846. {
  36847. front: {
  36848. height: math.unit(6 + 3/12, "feet"),
  36849. weight: math.unit(177, "lb"),
  36850. name: "Front",
  36851. image: {
  36852. source: "./media/characters/noryu/front.svg",
  36853. extra: 973/885,
  36854. bottom: 10/983
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(6 + 3/12, "feet"),
  36862. default: true
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36868. {
  36869. front: {
  36870. height: math.unit(5 + 6/12, "feet"),
  36871. weight: math.unit(170, "lb"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/mevolas-rubenido/front.svg",
  36875. extra: 2109/1901,
  36876. bottom: 96/2205
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal",
  36883. height: math.unit(5 + 6/12, "feet"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36890. {
  36891. front: {
  36892. height: math.unit(100, "feet"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/dee/front.svg",
  36896. extra: 2153/2036,
  36897. bottom: 59/2212
  36898. }
  36899. },
  36900. back: {
  36901. height: math.unit(100, "feet"),
  36902. name: "Back",
  36903. image: {
  36904. source: "./media/characters/dee/back.svg",
  36905. extra: 2183/2058,
  36906. bottom: 75/2258
  36907. }
  36908. },
  36909. foot: {
  36910. height: math.unit(19.43, "feet"),
  36911. name: "Foot",
  36912. image: {
  36913. source: "./media/characters/dee/foot.svg"
  36914. }
  36915. },
  36916. hoof: {
  36917. height: math.unit(20.6, "feet"),
  36918. name: "Hoof",
  36919. image: {
  36920. source: "./media/characters/dee/hoof.svg"
  36921. }
  36922. },
  36923. },
  36924. [
  36925. {
  36926. name: "Macro",
  36927. height: math.unit(100, "feet"),
  36928. default: true
  36929. },
  36930. ]
  36931. ))
  36932. characterMakers.push(() => makeCharacter(
  36933. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36934. {
  36935. front: {
  36936. height: math.unit(5 + 6/12, "feet"),
  36937. name: "Front",
  36938. image: {
  36939. source: "./media/characters/teh/front.svg",
  36940. extra: 1002/847,
  36941. bottom: 62/1064
  36942. }
  36943. },
  36944. },
  36945. [
  36946. {
  36947. name: "Normal",
  36948. height: math.unit(5 + 6/12, "feet"),
  36949. default: true
  36950. },
  36951. ]
  36952. ))
  36953. characterMakers.push(() => makeCharacter(
  36954. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36955. {
  36956. side: {
  36957. height: math.unit(6 + 1/12, "feet"),
  36958. weight: math.unit(204, "lb"),
  36959. name: "Side",
  36960. image: {
  36961. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36962. extra: 974/775,
  36963. bottom: 169/1143
  36964. }
  36965. },
  36966. sitting: {
  36967. height: math.unit(6 + 2/12, "feet"),
  36968. weight: math.unit(204, "lb"),
  36969. name: "Sitting",
  36970. image: {
  36971. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36972. extra: 1175/964,
  36973. bottom: 378/1553
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(6 + 1/12, "feet"),
  36981. default: true
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36987. {
  36988. front: {
  36989. height: math.unit(6, "inches"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/tululi/front.svg",
  36993. extra: 1997/1876,
  36994. bottom: 20/2017
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(6, "inches"),
  37002. default: true
  37003. },
  37004. ]
  37005. ))
  37006. characterMakers.push(() => makeCharacter(
  37007. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37008. {
  37009. front: {
  37010. height: math.unit(4 + 1/12, "feet"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/star/front.svg",
  37014. extra: 1493/1189,
  37015. bottom: 48/1541
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(4 + 1/12, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(6 + 3/12, "feet"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/comet/front.svg",
  37035. extra: 1681/1462,
  37036. bottom: 26/1707
  37037. }
  37038. },
  37039. },
  37040. [
  37041. {
  37042. name: "Normal",
  37043. height: math.unit(6 + 3/12, "feet"),
  37044. default: true
  37045. },
  37046. ]
  37047. ))
  37048. characterMakers.push(() => makeCharacter(
  37049. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37050. {
  37051. front: {
  37052. height: math.unit(950, "feet"),
  37053. name: "Front",
  37054. image: {
  37055. source: "./media/characters/vortex/front.svg",
  37056. extra: 1497/1434,
  37057. bottom: 56/1553
  37058. }
  37059. },
  37060. maw: {
  37061. height: math.unit(285, "feet"),
  37062. name: "Maw",
  37063. image: {
  37064. source: "./media/characters/vortex/maw.svg"
  37065. }
  37066. },
  37067. },
  37068. [
  37069. {
  37070. name: "Macro",
  37071. height: math.unit(950, "feet"),
  37072. default: true
  37073. },
  37074. ]
  37075. ))
  37076. characterMakers.push(() => makeCharacter(
  37077. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37078. {
  37079. front: {
  37080. height: math.unit(600, "feet"),
  37081. weight: math.unit(0.02, "grams"),
  37082. name: "Front",
  37083. image: {
  37084. source: "./media/characters/doodle/front.svg",
  37085. extra: 1578/1413,
  37086. bottom: 37/1615
  37087. }
  37088. },
  37089. },
  37090. [
  37091. {
  37092. name: "Macro",
  37093. height: math.unit(600, "feet"),
  37094. default: true
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(6 + 6/12, "feet"),
  37103. name: "Front",
  37104. image: {
  37105. source: "./media/characters/jai/front.svg",
  37106. extra: 1645/1534,
  37107. bottom: 115/1760
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(6 + 6/12, "feet"),
  37115. default: true
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(6 + 8/12, "feet"),
  37124. name: "Front",
  37125. image: {
  37126. source: "./media/characters/pixel/front.svg",
  37127. extra: 1900/1735,
  37128. bottom: 63/1963
  37129. }
  37130. },
  37131. },
  37132. [
  37133. {
  37134. name: "Normal",
  37135. height: math.unit(6 + 8/12, "feet"),
  37136. default: true
  37137. },
  37138. ]
  37139. ))
  37140. characterMakers.push(() => makeCharacter(
  37141. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37142. {
  37143. back: {
  37144. height: math.unit(4 + 1/12, "feet"),
  37145. weight: math.unit(75, "lb"),
  37146. name: "Back",
  37147. image: {
  37148. source: "./media/characters/rhett/back.svg",
  37149. extra: 930/878,
  37150. bottom: 25/955
  37151. }
  37152. },
  37153. front: {
  37154. height: math.unit(4 + 1/12, "feet"),
  37155. weight: math.unit(75, "lb"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/rhett/front.svg",
  37159. extra: 1682/1586,
  37160. bottom: 92/1774
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Micro",
  37167. height: math.unit(8, "inches")
  37168. },
  37169. {
  37170. name: "Tiny",
  37171. height: math.unit(2, "feet")
  37172. },
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(4 + 1/12, "feet"),
  37176. default: true
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(3 + 3/12, "feet"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/penny/front.svg",
  37188. extra: 1406/1311,
  37189. bottom: 26/1432
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(3 + 3/12, "feet"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37203. {
  37204. front: {
  37205. height: math.unit(4 + 11/12, "feet"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/monty/front.svg",
  37209. extra: 1479/1209,
  37210. bottom: 0/1479
  37211. }
  37212. },
  37213. },
  37214. [
  37215. {
  37216. name: "Normal",
  37217. height: math.unit(4 + 11/12, "feet"),
  37218. default: true
  37219. },
  37220. ]
  37221. ))
  37222. characterMakers.push(() => makeCharacter(
  37223. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37224. {
  37225. front: {
  37226. height: math.unit(8 + 4/12, "feet"),
  37227. name: "Front",
  37228. image: {
  37229. source: "./media/characters/sterling/front.svg",
  37230. extra: 1420/1236,
  37231. bottom: 27/1447
  37232. }
  37233. },
  37234. },
  37235. [
  37236. {
  37237. name: "Normal",
  37238. height: math.unit(8 + 4/12, "feet"),
  37239. default: true
  37240. },
  37241. ]
  37242. ))
  37243. characterMakers.push(() => makeCharacter(
  37244. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37245. {
  37246. front: {
  37247. height: math.unit(15, "feet"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/marble/front.svg",
  37251. extra: 973/937,
  37252. bottom: 32/1005
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Normal",
  37259. height: math.unit(15, "feet"),
  37260. default: true
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37266. {
  37267. front: {
  37268. height: math.unit(3, "inches"),
  37269. name: "Front",
  37270. image: {
  37271. source: "./media/characters/powder/front.svg",
  37272. extra: 1504/1334,
  37273. bottom: 518/2022
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Normal",
  37280. height: math.unit(3, "inches"),
  37281. default: true
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37287. {
  37288. front: {
  37289. height: math.unit(4 + 5/12, "feet"),
  37290. name: "Front",
  37291. image: {
  37292. source: "./media/characters/joey-raccoon/front.svg",
  37293. extra: 1273/1197,
  37294. bottom: 0/1273
  37295. }
  37296. },
  37297. },
  37298. [
  37299. {
  37300. name: "Normal",
  37301. height: math.unit(4 + 5/12, "feet"),
  37302. default: true
  37303. },
  37304. ]
  37305. ))
  37306. characterMakers.push(() => makeCharacter(
  37307. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37308. {
  37309. front: {
  37310. height: math.unit(8 + 4/12, "feet"),
  37311. name: "Front",
  37312. image: {
  37313. source: "./media/characters/vick/front.svg",
  37314. extra: 2187/2118,
  37315. bottom: 47/2234
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(8 + 4/12, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(5 + 5/12, "feet"),
  37332. name: "Front",
  37333. image: {
  37334. source: "./media/characters/mitsy/front.svg",
  37335. extra: 1842/1695,
  37336. bottom: 0/1842
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(5 + 5/12, "feet"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37350. {
  37351. front: {
  37352. height: math.unit(6 + 3/12, "feet"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/silvy/front.svg",
  37356. extra: 1995/1836,
  37357. bottom: 225/2220
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(6 + 3/12, "feet"),
  37365. default: true
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(3 + 8/12, "feet"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/rodney/front.svg",
  37377. extra: 1956/1747,
  37378. bottom: 31/1987
  37379. }
  37380. },
  37381. frontDressed: {
  37382. height: math.unit(2.9, "feet"),
  37383. name: "Front (Dressed)",
  37384. image: {
  37385. source: "./media/characters/rodney/front-dressed.svg",
  37386. extra: 1382/1241,
  37387. bottom: 385/1767
  37388. }
  37389. },
  37390. },
  37391. [
  37392. {
  37393. name: "Normal",
  37394. height: math.unit(3 + 8/12, "feet"),
  37395. default: true
  37396. },
  37397. ]
  37398. ))
  37399. characterMakers.push(() => makeCharacter(
  37400. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37401. {
  37402. front: {
  37403. height: math.unit(5 + 9/12, "feet"),
  37404. weight: math.unit(194, "lbs"),
  37405. name: "Front",
  37406. image: {
  37407. source: "./media/characters/zakail-sudekai/front.svg",
  37408. extra: 2696/2533,
  37409. bottom: 248/2944
  37410. }
  37411. },
  37412. maw: {
  37413. height: math.unit(1.35, "feet"),
  37414. name: "Maw",
  37415. image: {
  37416. source: "./media/characters/zakail-sudekai/maw.svg"
  37417. }
  37418. },
  37419. },
  37420. [
  37421. {
  37422. name: "Normal",
  37423. height: math.unit(5 + 9/12, "feet"),
  37424. default: true
  37425. },
  37426. ]
  37427. ))
  37428. characterMakers.push(() => makeCharacter(
  37429. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37430. {
  37431. front: {
  37432. height: math.unit(8 + 4/12, "feet"),
  37433. weight: math.unit(1200, "lb"),
  37434. name: "Front",
  37435. image: {
  37436. source: "./media/characters/eleanor/front.svg",
  37437. extra: 1226/1192,
  37438. bottom: 52/1278
  37439. }
  37440. },
  37441. back: {
  37442. height: math.unit(8 + 4/12, "feet"),
  37443. weight: math.unit(1200, "lb"),
  37444. name: "Back",
  37445. image: {
  37446. source: "./media/characters/eleanor/back.svg",
  37447. extra: 1242/1184,
  37448. bottom: 60/1302
  37449. }
  37450. },
  37451. head: {
  37452. height: math.unit(2.62, "feet"),
  37453. name: "Head",
  37454. image: {
  37455. source: "./media/characters/eleanor/head.svg"
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(8 + 4/12, "feet"),
  37463. default: true
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37469. {
  37470. front: {
  37471. height: math.unit(8 + 4/12, "feet"),
  37472. weight: math.unit(750, "lb"),
  37473. name: "Front",
  37474. image: {
  37475. source: "./media/characters/tanya/front.svg",
  37476. extra: 1749/1615,
  37477. bottom: 33/1782
  37478. }
  37479. },
  37480. },
  37481. [
  37482. {
  37483. name: "Normal",
  37484. height: math.unit(8 + 4/12, "feet"),
  37485. default: true
  37486. },
  37487. ]
  37488. ))
  37489. characterMakers.push(() => makeCharacter(
  37490. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37491. {
  37492. front: {
  37493. height: math.unit(5, "feet"),
  37494. weight: math.unit(225, "lb"),
  37495. name: "Front",
  37496. image: {
  37497. source: "./media/characters/cindy/front.svg",
  37498. extra: 1320/1250,
  37499. bottom: 42/1362
  37500. }
  37501. },
  37502. frontDressed: {
  37503. height: math.unit(5, "feet"),
  37504. weight: math.unit(225, "lb"),
  37505. name: "Front (Dressed)",
  37506. image: {
  37507. source: "./media/characters/cindy/front-dressed.svg",
  37508. extra: 1320/1250,
  37509. bottom: 42/1362
  37510. }
  37511. },
  37512. back: {
  37513. height: math.unit(5, "feet"),
  37514. weight: math.unit(225, "lb"),
  37515. name: "Back",
  37516. image: {
  37517. source: "./media/characters/cindy/back.svg",
  37518. extra: 1384/1346,
  37519. bottom: 14/1398
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(5, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(6 + 9/12, "feet"),
  37536. weight: math.unit(440, "lb"),
  37537. name: "Front",
  37538. image: {
  37539. source: "./media/characters/wilbur-owen/front.svg",
  37540. extra: 1575/1448,
  37541. bottom: 72/1647
  37542. }
  37543. },
  37544. back: {
  37545. height: math.unit(6 + 9/12, "feet"),
  37546. weight: math.unit(440, "lb"),
  37547. name: "Back",
  37548. image: {
  37549. source: "./media/characters/wilbur-owen/back.svg",
  37550. extra: 1578/1445,
  37551. bottom: 36/1614
  37552. }
  37553. },
  37554. },
  37555. [
  37556. {
  37557. name: "Normal",
  37558. height: math.unit(6 + 9/12, "feet"),
  37559. default: true
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(6 + 5/12, "feet"),
  37568. weight: math.unit(650, "lb"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/keegan/front.svg",
  37572. extra: 2387/2198,
  37573. bottom: 33/2420
  37574. }
  37575. },
  37576. side: {
  37577. height: math.unit(6 + 5/12, "feet"),
  37578. weight: math.unit(650, "lb"),
  37579. name: "Side",
  37580. image: {
  37581. source: "./media/characters/keegan/side.svg",
  37582. extra: 2390/2202,
  37583. bottom: 47/2437
  37584. }
  37585. },
  37586. back: {
  37587. height: math.unit(6 + 5/12, "feet"),
  37588. weight: math.unit(650, "lb"),
  37589. name: "Back",
  37590. image: {
  37591. source: "./media/characters/keegan/back.svg",
  37592. extra: 2418/2268,
  37593. bottom: 15/2433
  37594. }
  37595. },
  37596. frontSfw: {
  37597. height: math.unit(6 + 5/12, "feet"),
  37598. weight: math.unit(650, "lb"),
  37599. name: "Front (SFW)",
  37600. image: {
  37601. source: "./media/characters/keegan/front-sfw.svg",
  37602. extra: 2387/2198,
  37603. bottom: 33/2420
  37604. }
  37605. },
  37606. beans: {
  37607. height: math.unit(1.85, "feet"),
  37608. name: "Beans",
  37609. image: {
  37610. source: "./media/characters/keegan/beans.svg"
  37611. }
  37612. },
  37613. },
  37614. [
  37615. {
  37616. name: "Normal",
  37617. height: math.unit(6 + 5/12, "feet"),
  37618. default: true
  37619. },
  37620. ]
  37621. ))
  37622. characterMakers.push(() => makeCharacter(
  37623. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37624. {
  37625. front: {
  37626. height: math.unit(9, "feet"),
  37627. name: "Front",
  37628. image: {
  37629. source: "./media/characters/colton/front.svg",
  37630. extra: 1589/1326,
  37631. bottom: 139/1728
  37632. }
  37633. },
  37634. },
  37635. [
  37636. {
  37637. name: "Normal",
  37638. height: math.unit(9, "feet"),
  37639. default: true
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37645. {
  37646. front: {
  37647. height: math.unit(2 + 9/12, "feet"),
  37648. name: "Front",
  37649. image: {
  37650. source: "./media/characters/bora/front.svg",
  37651. extra: 1265/1250,
  37652. bottom: 24/1289
  37653. }
  37654. },
  37655. },
  37656. [
  37657. {
  37658. name: "Normal",
  37659. height: math.unit(2 + 9/12, "feet"),
  37660. default: true
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(8, "feet"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/myu-myu/front.svg",
  37672. extra: 1949/1857,
  37673. bottom: 90/2039
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(8, "feet"),
  37681. default: true
  37682. },
  37683. {
  37684. name: "Big",
  37685. height: math.unit(15, "feet")
  37686. },
  37687. {
  37688. name: "BIG",
  37689. height: math.unit(25, "feet")
  37690. },
  37691. ]
  37692. ))
  37693. characterMakers.push(() => makeCharacter(
  37694. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37695. {
  37696. side: {
  37697. height: math.unit(7 + 5/12, "feet"),
  37698. weight: math.unit(2800, "lb"),
  37699. name: "Side",
  37700. image: {
  37701. source: "./media/characters/haloren/side.svg",
  37702. extra: 1793/409,
  37703. bottom: 59/1852
  37704. }
  37705. },
  37706. frontPaw: {
  37707. height: math.unit(2.36, "feet"),
  37708. name: "Front paw",
  37709. image: {
  37710. source: "./media/characters/haloren/front-paw.svg"
  37711. }
  37712. },
  37713. hindPaw: {
  37714. height: math.unit(3.18, "feet"),
  37715. name: "Hind paw",
  37716. image: {
  37717. source: "./media/characters/haloren/hind-paw.svg"
  37718. }
  37719. },
  37720. maw: {
  37721. height: math.unit(5.05, "feet"),
  37722. name: "Maw",
  37723. image: {
  37724. source: "./media/characters/haloren/maw.svg"
  37725. }
  37726. },
  37727. dick: {
  37728. height: math.unit(2.90, "feet"),
  37729. name: "Dick",
  37730. image: {
  37731. source: "./media/characters/haloren/dick.svg"
  37732. }
  37733. },
  37734. },
  37735. [
  37736. {
  37737. name: "Normal",
  37738. height: math.unit(7 + 5/12, "feet"),
  37739. default: true
  37740. },
  37741. {
  37742. name: "Enhanced",
  37743. height: math.unit(14 + 3/12, "feet")
  37744. },
  37745. ]
  37746. ))
  37747. characterMakers.push(() => makeCharacter(
  37748. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37749. {
  37750. front: {
  37751. height: math.unit(171, "cm"),
  37752. name: "Front",
  37753. image: {
  37754. source: "./media/characters/kimmy/front.svg",
  37755. extra: 1491/1435,
  37756. bottom: 53/1544
  37757. }
  37758. },
  37759. },
  37760. [
  37761. {
  37762. name: "Small",
  37763. height: math.unit(9, "cm")
  37764. },
  37765. {
  37766. name: "Normal",
  37767. height: math.unit(171, "cm"),
  37768. default: true
  37769. },
  37770. ]
  37771. ))
  37772. characterMakers.push(() => makeCharacter(
  37773. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37774. {
  37775. front: {
  37776. height: math.unit(8, "feet"),
  37777. weight: math.unit(300, "lb"),
  37778. name: "Front",
  37779. image: {
  37780. source: "./media/characters/galeboomer/front.svg",
  37781. extra: 4651/4415,
  37782. bottom: 162/4813
  37783. }
  37784. },
  37785. back: {
  37786. height: math.unit(8, "feet"),
  37787. weight: math.unit(300, "lb"),
  37788. name: "Back",
  37789. image: {
  37790. source: "./media/characters/galeboomer/back.svg",
  37791. extra: 4544/4314,
  37792. bottom: 16/4560
  37793. }
  37794. },
  37795. frontAlt: {
  37796. height: math.unit(8, "feet"),
  37797. weight: math.unit(300, "lb"),
  37798. name: "Front (Alt)",
  37799. image: {
  37800. source: "./media/characters/galeboomer/front-alt.svg",
  37801. extra: 4458/4228,
  37802. bottom: 68/4526
  37803. }
  37804. },
  37805. maw: {
  37806. height: math.unit(1.2, "feet"),
  37807. name: "Maw",
  37808. image: {
  37809. source: "./media/characters/galeboomer/maw.svg"
  37810. }
  37811. },
  37812. },
  37813. [
  37814. {
  37815. name: "Normal",
  37816. height: math.unit(8, "feet"),
  37817. default: true
  37818. },
  37819. ]
  37820. ))
  37821. characterMakers.push(() => makeCharacter(
  37822. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37823. {
  37824. front: {
  37825. height: math.unit(5 + 9/12, "feet"),
  37826. weight: math.unit(120, "lb"),
  37827. name: "Front",
  37828. image: {
  37829. source: "./media/characters/chyr/front.svg",
  37830. extra: 1323/1254,
  37831. bottom: 63/1386
  37832. }
  37833. },
  37834. back: {
  37835. height: math.unit(5 + 9/12, "feet"),
  37836. weight: math.unit(120, "lb"),
  37837. name: "Back",
  37838. image: {
  37839. source: "./media/characters/chyr/back.svg",
  37840. extra: 1323/1252,
  37841. bottom: 48/1371
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(5 + 9/12, "feet"),
  37849. default: true
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37855. {
  37856. front: {
  37857. height: math.unit(7, "feet"),
  37858. weight: math.unit(310, "lb"),
  37859. name: "Front",
  37860. image: {
  37861. source: "./media/characters/solarus/front.svg",
  37862. extra: 2415/2021,
  37863. bottom: 103/2518
  37864. }
  37865. },
  37866. back: {
  37867. height: math.unit(7, "feet"),
  37868. weight: math.unit(310, "lb"),
  37869. name: "Back",
  37870. image: {
  37871. source: "./media/characters/solarus/back.svg",
  37872. extra: 2463/2089,
  37873. bottom: 79/2542
  37874. }
  37875. },
  37876. },
  37877. [
  37878. {
  37879. name: "Normal",
  37880. height: math.unit(7, "feet"),
  37881. default: true
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(16, "feet"),
  37890. name: "Front",
  37891. image: {
  37892. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37893. extra: 1844/1780,
  37894. bottom: 58/1902
  37895. }
  37896. },
  37897. winterCoat: {
  37898. height: math.unit(16, "feet"),
  37899. name: "Winter Coat",
  37900. image: {
  37901. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37902. extra: 1807/1775,
  37903. bottom: 69/1876
  37904. }
  37905. },
  37906. },
  37907. [
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(16, "feet"),
  37911. default: true
  37912. },
  37913. {
  37914. name: "Chicago Size",
  37915. height: math.unit(560, "feet")
  37916. },
  37917. ]
  37918. ))
  37919. characterMakers.push(() => makeCharacter(
  37920. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37921. {
  37922. front: {
  37923. height: math.unit(11 + 6/12, "feet"),
  37924. weight: math.unit(1366, "lb"),
  37925. name: "Front",
  37926. image: {
  37927. source: "./media/characters/lexor/front.svg",
  37928. extra: 1560/1481,
  37929. bottom: 211/1771
  37930. }
  37931. },
  37932. back: {
  37933. height: math.unit(11 + 6/12, "feet"),
  37934. weight: math.unit(1366, "lb"),
  37935. name: "Back",
  37936. image: {
  37937. source: "./media/characters/lexor/back.svg",
  37938. extra: 1614/1533,
  37939. bottom: 76/1690
  37940. }
  37941. },
  37942. maw: {
  37943. height: math.unit(3, "feet"),
  37944. name: "Maw",
  37945. image: {
  37946. source: "./media/characters/lexor/maw.svg"
  37947. }
  37948. },
  37949. dick: {
  37950. height: math.unit(2.59, "feet"),
  37951. name: "Dick",
  37952. image: {
  37953. source: "./media/characters/lexor/dick.svg"
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "Normal",
  37960. height: math.unit(11 + 6/12, "feet"),
  37961. default: true
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37967. {
  37968. front: {
  37969. height: math.unit(5 + 8/12, "feet"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/magnum/front.svg",
  37973. extra: 942/855,
  37974. bottom: 26/968
  37975. }
  37976. },
  37977. },
  37978. [
  37979. {
  37980. name: "Normal",
  37981. height: math.unit(5 + 8/12, "feet"),
  37982. default: true
  37983. },
  37984. ]
  37985. ))
  37986. characterMakers.push(() => makeCharacter(
  37987. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37988. {
  37989. front: {
  37990. height: math.unit(18 + 4/12, "feet"),
  37991. weight: math.unit(1500, "kg"),
  37992. name: "Front",
  37993. image: {
  37994. source: "./media/characters/solas-sharpsman/front.svg",
  37995. extra: 1698/1589,
  37996. bottom: 0/1698
  37997. }
  37998. },
  37999. },
  38000. [
  38001. {
  38002. name: "Normal",
  38003. height: math.unit(18 + 4/12, "feet"),
  38004. default: true
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38010. {
  38011. front: {
  38012. height: math.unit(5 + 5/12, "feet"),
  38013. weight: math.unit(180, "lb"),
  38014. name: "Front",
  38015. image: {
  38016. source: "./media/characters/october/front.svg",
  38017. extra: 1800/1650,
  38018. bottom: 0/1800
  38019. }
  38020. },
  38021. frontNsfw: {
  38022. height: math.unit(5 + 5/12, "feet"),
  38023. weight: math.unit(180, "lb"),
  38024. name: "Front (NSFW)",
  38025. image: {
  38026. source: "./media/characters/october/front-nsfw.svg",
  38027. extra: 1392/1307,
  38028. bottom: 42/1434
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Normal",
  38035. height: math.unit(5 + 5/12, "feet"),
  38036. default: true
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38042. {
  38043. front: {
  38044. height: math.unit(8 + 6/12, "feet"),
  38045. name: "Front",
  38046. image: {
  38047. source: "./media/characters/essynkardi/front.svg",
  38048. extra: 1914/1846,
  38049. bottom: 22/1936
  38050. }
  38051. },
  38052. },
  38053. [
  38054. {
  38055. name: "Normal",
  38056. height: math.unit(8 + 6/12, "feet"),
  38057. default: true
  38058. },
  38059. ]
  38060. ))
  38061. characterMakers.push(() => makeCharacter(
  38062. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38063. {
  38064. front: {
  38065. height: math.unit(6 + 6/12, "feet"),
  38066. weight: math.unit(7, "lb"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/icky/front.svg",
  38070. extra: 813/782,
  38071. bottom: 66/879
  38072. }
  38073. },
  38074. back: {
  38075. height: math.unit(6 + 6/12, "feet"),
  38076. weight: math.unit(7, "lb"),
  38077. name: "Back",
  38078. image: {
  38079. source: "./media/characters/icky/back.svg",
  38080. extra: 754/735,
  38081. bottom: 56/810
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(6 + 6/12, "feet"),
  38089. default: true
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(15, "feet"),
  38098. name: "Front",
  38099. image: {
  38100. source: "./media/characters/rojas/front.svg",
  38101. extra: 1462/1408,
  38102. bottom: 95/1557
  38103. }
  38104. },
  38105. back: {
  38106. height: math.unit(15, "feet"),
  38107. name: "Back",
  38108. image: {
  38109. source: "./media/characters/rojas/back.svg",
  38110. extra: 1023/954,
  38111. bottom: 28/1051
  38112. }
  38113. },
  38114. },
  38115. [
  38116. {
  38117. name: "Normal",
  38118. height: math.unit(15, "feet"),
  38119. default: true
  38120. },
  38121. ]
  38122. ))
  38123. characterMakers.push(() => makeCharacter(
  38124. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38125. {
  38126. frontHuman: {
  38127. height: math.unit(5 + 7/12, "feet"),
  38128. name: "Front (Human)",
  38129. image: {
  38130. source: "./media/characters/alek-dryagan/front-human.svg",
  38131. extra: 1687/1667,
  38132. bottom: 69/1756
  38133. }
  38134. },
  38135. backHuman: {
  38136. height: math.unit(5 + 7/12, "feet"),
  38137. name: "Back (Human)",
  38138. image: {
  38139. source: "./media/characters/alek-dryagan/back-human.svg",
  38140. extra: 1670/1649,
  38141. bottom: 65/1735
  38142. }
  38143. },
  38144. frontDemi: {
  38145. height: math.unit(65, "feet"),
  38146. name: "Front (Demi)",
  38147. image: {
  38148. source: "./media/characters/alek-dryagan/front-demi.svg",
  38149. extra: 1669/1642,
  38150. bottom: 49/1718
  38151. }
  38152. },
  38153. backDemi: {
  38154. height: math.unit(65, "feet"),
  38155. name: "Back (Demi)",
  38156. image: {
  38157. source: "./media/characters/alek-dryagan/back-demi.svg",
  38158. extra: 1658/1637,
  38159. bottom: 40/1698
  38160. }
  38161. },
  38162. mawHuman: {
  38163. height: math.unit(0.3, "feet"),
  38164. name: "Maw (Human)",
  38165. image: {
  38166. source: "./media/characters/alek-dryagan/maw-human.svg"
  38167. }
  38168. },
  38169. mawDemi: {
  38170. height: math.unit(3.8, "feet"),
  38171. name: "Maw (Demi)",
  38172. image: {
  38173. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38174. }
  38175. },
  38176. },
  38177. [
  38178. {
  38179. name: "Normal",
  38180. height: math.unit(5 + 7/12, "feet"),
  38181. default: true
  38182. },
  38183. ]
  38184. ))
  38185. characterMakers.push(() => makeCharacter(
  38186. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38187. {
  38188. frontHuman: {
  38189. height: math.unit(5 + 2/12, "feet"),
  38190. name: "Front (Human)",
  38191. image: {
  38192. source: "./media/characters/gen/front-human.svg",
  38193. extra: 1627/1538,
  38194. bottom: 71/1698
  38195. }
  38196. },
  38197. backHuman: {
  38198. height: math.unit(5 + 2/12, "feet"),
  38199. name: "Back (Human)",
  38200. image: {
  38201. source: "./media/characters/gen/back-human.svg",
  38202. extra: 1638/1548,
  38203. bottom: 69/1707
  38204. }
  38205. },
  38206. frontDemi: {
  38207. height: math.unit(5 + 2/12, "feet"),
  38208. name: "Front (Demi)",
  38209. image: {
  38210. source: "./media/characters/gen/front-demi.svg",
  38211. extra: 1627/1538,
  38212. bottom: 71/1698
  38213. }
  38214. },
  38215. backDemi: {
  38216. height: math.unit(5 + 2/12, "feet"),
  38217. name: "Back (Demi)",
  38218. image: {
  38219. source: "./media/characters/gen/back-demi.svg",
  38220. extra: 1638/1548,
  38221. bottom: 69/1707
  38222. }
  38223. },
  38224. },
  38225. [
  38226. {
  38227. name: "Normal",
  38228. height: math.unit(5 + 2/12, "feet"),
  38229. default: true
  38230. },
  38231. ]
  38232. ))
  38233. characterMakers.push(() => makeCharacter(
  38234. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38235. {
  38236. frontImp: {
  38237. height: math.unit(1 + 11/12, "feet"),
  38238. name: "Front (Imp)",
  38239. image: {
  38240. source: "./media/characters/max-kobold/front-imp.svg",
  38241. extra: 1238/1134,
  38242. bottom: 81/1319
  38243. }
  38244. },
  38245. backImp: {
  38246. height: math.unit(1 + 11/12, "feet"),
  38247. name: "Back (Imp)",
  38248. image: {
  38249. source: "./media/characters/max-kobold/back-imp.svg",
  38250. extra: 1334/1175,
  38251. bottom: 34/1368
  38252. }
  38253. },
  38254. frontDemi: {
  38255. height: math.unit(5 + 9/12, "feet"),
  38256. name: "Front (Demi)",
  38257. image: {
  38258. source: "./media/characters/max-kobold/front-demi.svg",
  38259. extra: 1715/1685,
  38260. bottom: 54/1769
  38261. }
  38262. },
  38263. backDemi: {
  38264. height: math.unit(5 + 9/12, "feet"),
  38265. name: "Back (Demi)",
  38266. image: {
  38267. source: "./media/characters/max-kobold/back-demi.svg",
  38268. extra: 1752/1729,
  38269. bottom: 41/1793
  38270. }
  38271. },
  38272. handImp: {
  38273. height: math.unit(0.45, "feet"),
  38274. name: "Hand (Imp)",
  38275. image: {
  38276. source: "./media/characters/max-kobold/hand.svg"
  38277. }
  38278. },
  38279. pawImp: {
  38280. height: math.unit(0.46, "feet"),
  38281. name: "Paw (Imp)",
  38282. image: {
  38283. source: "./media/characters/max-kobold/paw.svg"
  38284. }
  38285. },
  38286. handDemi: {
  38287. height: math.unit(0.80, "feet"),
  38288. name: "Hand (Demi)",
  38289. image: {
  38290. source: "./media/characters/max-kobold/hand.svg"
  38291. }
  38292. },
  38293. pawDemi: {
  38294. height: math.unit(1.1, "feet"),
  38295. name: "Paw (Demi)",
  38296. image: {
  38297. source: "./media/characters/max-kobold/paw.svg"
  38298. }
  38299. },
  38300. headImp: {
  38301. height: math.unit(1.33, "feet"),
  38302. name: "Head (Imp)",
  38303. image: {
  38304. source: "./media/characters/max-kobold/head-imp.svg"
  38305. }
  38306. },
  38307. mawImp: {
  38308. height: math.unit(0.75, "feet"),
  38309. name: "Maw (Imp)",
  38310. image: {
  38311. source: "./media/characters/max-kobold/maw-imp.svg"
  38312. }
  38313. },
  38314. mawDemi: {
  38315. height: math.unit(0.42, "feet"),
  38316. name: "Maw (Demi)",
  38317. image: {
  38318. source: "./media/characters/max-kobold/maw-demi.svg"
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Normal",
  38325. height: math.unit(1 + 11/12, "feet"),
  38326. default: true
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(7 + 5/12, "feet"),
  38335. name: "Front",
  38336. image: {
  38337. source: "./media/characters/carbon/front.svg",
  38338. extra: 1754/1689,
  38339. bottom: 65/1819
  38340. }
  38341. },
  38342. back: {
  38343. height: math.unit(7 + 5/12, "feet"),
  38344. name: "Back",
  38345. image: {
  38346. source: "./media/characters/carbon/back.svg",
  38347. extra: 1762/1695,
  38348. bottom: 24/1786
  38349. }
  38350. },
  38351. frontGigantamax: {
  38352. height: math.unit(150, "feet"),
  38353. name: "Front (Gigantamax)",
  38354. image: {
  38355. source: "./media/characters/carbon/front-gigantamax.svg",
  38356. extra: 1826/1669,
  38357. bottom: 59/1885
  38358. }
  38359. },
  38360. backGigantamax: {
  38361. height: math.unit(150, "feet"),
  38362. name: "Back (Gigantamax)",
  38363. image: {
  38364. source: "./media/characters/carbon/back-gigantamax.svg",
  38365. extra: 1796/1653,
  38366. bottom: 53/1849
  38367. }
  38368. },
  38369. maw: {
  38370. height: math.unit(0.48, "feet"),
  38371. name: "Maw",
  38372. image: {
  38373. source: "./media/characters/carbon/maw.svg"
  38374. }
  38375. },
  38376. mawGigantamax: {
  38377. height: math.unit(7.5, "feet"),
  38378. name: "Maw (Gigantamax)",
  38379. image: {
  38380. source: "./media/characters/carbon/maw-gigantamax.svg"
  38381. }
  38382. },
  38383. },
  38384. [
  38385. {
  38386. name: "Normal",
  38387. height: math.unit(7 + 5/12, "feet"),
  38388. default: true
  38389. },
  38390. ]
  38391. ))
  38392. characterMakers.push(() => makeCharacter(
  38393. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38394. {
  38395. front: {
  38396. height: math.unit(6, "feet"),
  38397. name: "Front",
  38398. image: {
  38399. source: "./media/characters/maverick/front.svg",
  38400. extra: 1672/1661,
  38401. bottom: 85/1757
  38402. }
  38403. },
  38404. back: {
  38405. height: math.unit(6, "feet"),
  38406. name: "Back",
  38407. image: {
  38408. source: "./media/characters/maverick/back.svg",
  38409. extra: 1642/1631,
  38410. bottom: 38/1680
  38411. }
  38412. },
  38413. },
  38414. [
  38415. {
  38416. name: "Normal",
  38417. height: math.unit(6, "feet"),
  38418. default: true
  38419. },
  38420. ]
  38421. ))
  38422. characterMakers.push(() => makeCharacter(
  38423. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38424. {
  38425. front: {
  38426. height: math.unit(15, "feet"),
  38427. weight: math.unit(615, "lb"),
  38428. name: "Front",
  38429. image: {
  38430. source: "./media/characters/grockle/front.svg",
  38431. extra: 1535/1427,
  38432. bottom: 56/1591
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(15, "feet"),
  38440. default: true
  38441. },
  38442. {
  38443. name: "Large",
  38444. height: math.unit(150, "feet")
  38445. },
  38446. {
  38447. name: "Macro",
  38448. height: math.unit(1876, "feet")
  38449. },
  38450. {
  38451. name: "Mega Macro",
  38452. height: math.unit(121940, "feet")
  38453. },
  38454. {
  38455. name: "Giga Macro",
  38456. height: math.unit(750, "km")
  38457. },
  38458. {
  38459. name: "Tera Macro",
  38460. height: math.unit(750000, "km")
  38461. },
  38462. {
  38463. name: "Galactic",
  38464. height: math.unit(1.4e5, "km")
  38465. },
  38466. {
  38467. name: "Godlike",
  38468. height: math.unit(9.8e280, "galaxies")
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(11, "meters"),
  38477. weight: math.unit(20, "tonnes"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/alistair/front.svg",
  38481. extra: 1265/1009,
  38482. bottom: 93/1358
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Normal",
  38489. height: math.unit(11, "meters"),
  38490. default: true
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38496. {
  38497. front: {
  38498. height: math.unit(5 + 8/12, "feet"),
  38499. name: "Front",
  38500. image: {
  38501. source: "./media/characters/haruka/front.svg",
  38502. extra: 2012/1952,
  38503. bottom: 0/2012
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Normal",
  38510. height: math.unit(5 + 8/12, "feet"),
  38511. default: true
  38512. },
  38513. ]
  38514. ))
  38515. characterMakers.push(() => makeCharacter(
  38516. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38517. {
  38518. back: {
  38519. height: math.unit(9, "feet"),
  38520. name: "Back",
  38521. image: {
  38522. source: "./media/characters/vivian-sylveon/back.svg",
  38523. extra: 1853/1714,
  38524. bottom: 0/1853
  38525. }
  38526. },
  38527. },
  38528. [
  38529. {
  38530. name: "Normal",
  38531. height: math.unit(9, "feet"),
  38532. default: true
  38533. },
  38534. {
  38535. name: "Macro",
  38536. height: math.unit(500, "feet")
  38537. },
  38538. {
  38539. name: "Megamacro",
  38540. height: math.unit(600, "miles")
  38541. },
  38542. {
  38543. name: "Gigamacro",
  38544. height: math.unit(30000, "miles")
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38550. {
  38551. anthro: {
  38552. height: math.unit(5 + 10/12, "feet"),
  38553. weight: math.unit(100, "lb"),
  38554. name: "Anthro",
  38555. image: {
  38556. source: "./media/characters/daiki/anthro.svg",
  38557. extra: 1115/1027,
  38558. bottom: 69/1184
  38559. }
  38560. },
  38561. feral: {
  38562. height: math.unit(200, "feet"),
  38563. name: "Feral",
  38564. image: {
  38565. source: "./media/characters/daiki/feral.svg",
  38566. extra: 1256/313,
  38567. bottom: 39/1295
  38568. }
  38569. },
  38570. feralHead: {
  38571. height: math.unit(171, "feet"),
  38572. name: "Feral Head",
  38573. image: {
  38574. source: "./media/characters/daiki/feral-head.svg"
  38575. }
  38576. },
  38577. manaDragon: {
  38578. height: math.unit(170, "meters"),
  38579. name: "Mana-dragon",
  38580. image: {
  38581. source: "./media/characters/daiki/mana-dragon.svg",
  38582. extra: 763/420,
  38583. bottom: 97/860
  38584. }
  38585. },
  38586. },
  38587. [
  38588. {
  38589. name: "Normal",
  38590. height: math.unit(5 + 10/12, "feet"),
  38591. default: true
  38592. },
  38593. ]
  38594. ))
  38595. characterMakers.push(() => makeCharacter(
  38596. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38597. {
  38598. fullyEquippedFront: {
  38599. height: math.unit(3 + 1/12, "feet"),
  38600. weight: math.unit(24, "lb"),
  38601. name: "Fully Equipped (Front)",
  38602. image: {
  38603. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38604. extra: 687/605,
  38605. bottom: 18/705
  38606. }
  38607. },
  38608. fullyEquippedBack: {
  38609. height: math.unit(3 + 1/12, "feet"),
  38610. weight: math.unit(24, "lb"),
  38611. name: "Fully Equipped (Back)",
  38612. image: {
  38613. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38614. extra: 689/590,
  38615. bottom: 18/707
  38616. }
  38617. },
  38618. dailyWear: {
  38619. height: math.unit(3 + 1/12, "feet"),
  38620. weight: math.unit(24, "lb"),
  38621. name: "Daily Wear",
  38622. image: {
  38623. source: "./media/characters/tea-spot/daily-wear.svg",
  38624. extra: 701/620,
  38625. bottom: 21/722
  38626. }
  38627. },
  38628. maidWork: {
  38629. height: math.unit(3 + 1/12, "feet"),
  38630. weight: math.unit(24, "lb"),
  38631. name: "Maid Work",
  38632. image: {
  38633. source: "./media/characters/tea-spot/maid-work.svg",
  38634. extra: 693/609,
  38635. bottom: 15/708
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(3 + 1/12, "feet"),
  38643. default: true
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(175, "cm"),
  38652. weight: math.unit(75, "kg"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/chee/front.svg",
  38656. extra: 1796/1740,
  38657. bottom: 40/1836
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Micro-Micro",
  38664. height: math.unit(1, "nm")
  38665. },
  38666. {
  38667. name: "Micro-erst",
  38668. height: math.unit(1, "micrometer")
  38669. },
  38670. {
  38671. name: "Micro-er",
  38672. height: math.unit(1, "cm")
  38673. },
  38674. {
  38675. name: "Normal",
  38676. height: math.unit(175, "cm"),
  38677. default: true
  38678. },
  38679. {
  38680. name: "Macro",
  38681. height: math.unit(100, "m")
  38682. },
  38683. {
  38684. name: "Macro-er",
  38685. height: math.unit(1, "km")
  38686. },
  38687. {
  38688. name: "Macro-erst",
  38689. height: math.unit(10, "km")
  38690. },
  38691. {
  38692. name: "Macro-Macro",
  38693. height: math.unit(100, "km")
  38694. },
  38695. ]
  38696. ))
  38697. characterMakers.push(() => makeCharacter(
  38698. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38699. {
  38700. front: {
  38701. height: math.unit(11 + 9/12, "feet"),
  38702. weight: math.unit(935, "lb"),
  38703. name: "Front",
  38704. image: {
  38705. source: "./media/characters/kingsley/front.svg",
  38706. extra: 1803/1674,
  38707. bottom: 127/1930
  38708. }
  38709. },
  38710. frontNude: {
  38711. height: math.unit(11 + 9/12, "feet"),
  38712. weight: math.unit(935, "lb"),
  38713. name: "Front (Nude)",
  38714. image: {
  38715. source: "./media/characters/kingsley/front-nude.svg",
  38716. extra: 1803/1674,
  38717. bottom: 127/1930
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(11 + 9/12, "feet"),
  38725. default: true
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38731. {
  38732. side: {
  38733. height: math.unit(9, "feet"),
  38734. name: "Side",
  38735. image: {
  38736. source: "./media/characters/rymel/side.svg",
  38737. extra: 792/469,
  38738. bottom: 121/913
  38739. }
  38740. },
  38741. maw: {
  38742. height: math.unit(2.4, "meters"),
  38743. name: "Maw",
  38744. image: {
  38745. source: "./media/characters/rymel/maw.svg"
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "House Drake",
  38752. height: math.unit(2, "feet")
  38753. },
  38754. {
  38755. name: "Reduced",
  38756. height: math.unit(4.5, "feet")
  38757. },
  38758. {
  38759. name: "Normal",
  38760. height: math.unit(9, "feet"),
  38761. default: true
  38762. },
  38763. ]
  38764. ))
  38765. characterMakers.push(() => makeCharacter(
  38766. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38767. {
  38768. front: {
  38769. height: math.unit(1.74, "meters"),
  38770. weight: math.unit(55, "kg"),
  38771. name: "Front",
  38772. image: {
  38773. source: "./media/characters/rubus/front.svg",
  38774. extra: 1894/1742,
  38775. bottom: 44/1938
  38776. }
  38777. },
  38778. },
  38779. [
  38780. {
  38781. name: "Normal",
  38782. height: math.unit(1.74, "meters"),
  38783. default: true
  38784. },
  38785. ]
  38786. ))
  38787. characterMakers.push(() => makeCharacter(
  38788. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38789. {
  38790. front: {
  38791. height: math.unit(5 + 2/12, "feet"),
  38792. weight: math.unit(112, "lb"),
  38793. name: "Front",
  38794. image: {
  38795. source: "./media/characters/cassie-kingston/front.svg",
  38796. extra: 1438/1390,
  38797. bottom: 47/1485
  38798. }
  38799. },
  38800. },
  38801. [
  38802. {
  38803. name: "Normal",
  38804. height: math.unit(5 + 2/12, "feet"),
  38805. default: true
  38806. },
  38807. {
  38808. name: "Macro",
  38809. height: math.unit(128, "feet")
  38810. },
  38811. {
  38812. name: "Megamacro",
  38813. height: math.unit(2.56, "miles")
  38814. },
  38815. ]
  38816. ))
  38817. characterMakers.push(() => makeCharacter(
  38818. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38819. {
  38820. front: {
  38821. height: math.unit(7, "feet"),
  38822. name: "Front",
  38823. image: {
  38824. source: "./media/characters/fox/front.svg",
  38825. extra: 1798/1703,
  38826. bottom: 55/1853
  38827. }
  38828. },
  38829. back: {
  38830. height: math.unit(7, "feet"),
  38831. name: "Back",
  38832. image: {
  38833. source: "./media/characters/fox/back.svg",
  38834. extra: 1748/1649,
  38835. bottom: 32/1780
  38836. }
  38837. },
  38838. head: {
  38839. height: math.unit(1.95, "feet"),
  38840. name: "Head",
  38841. image: {
  38842. source: "./media/characters/fox/head.svg"
  38843. }
  38844. },
  38845. dick: {
  38846. height: math.unit(1.33, "feet"),
  38847. name: "Dick",
  38848. image: {
  38849. source: "./media/characters/fox/dick.svg"
  38850. }
  38851. },
  38852. foot: {
  38853. height: math.unit(1, "feet"),
  38854. name: "Foot",
  38855. image: {
  38856. source: "./media/characters/fox/foot.svg"
  38857. }
  38858. },
  38859. paw: {
  38860. height: math.unit(0.92, "feet"),
  38861. name: "Paw",
  38862. image: {
  38863. source: "./media/characters/fox/paw.svg"
  38864. }
  38865. },
  38866. },
  38867. [
  38868. {
  38869. name: "Small",
  38870. height: math.unit(3, "inches")
  38871. },
  38872. {
  38873. name: "\"Realistic\"",
  38874. height: math.unit(7, "feet")
  38875. },
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(150, "feet"),
  38879. default: true
  38880. },
  38881. {
  38882. name: "BIG",
  38883. height: math.unit(1200, "feet")
  38884. },
  38885. {
  38886. name: "👀",
  38887. height: math.unit(5, "miles")
  38888. },
  38889. {
  38890. name: "👀👀👀",
  38891. height: math.unit(64, "miles")
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(625, "feet"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/asonja-rossa/front.svg",
  38903. extra: 1833/1686,
  38904. bottom: 24/1857
  38905. }
  38906. },
  38907. back: {
  38908. height: math.unit(625, "feet"),
  38909. name: "Back",
  38910. image: {
  38911. source: "./media/characters/asonja-rossa/back.svg",
  38912. extra: 1852/1753,
  38913. bottom: 26/1878
  38914. }
  38915. },
  38916. },
  38917. [
  38918. {
  38919. name: "Macro",
  38920. height: math.unit(625, "feet"),
  38921. default: true
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38927. {
  38928. side: {
  38929. height: math.unit(8, "feet"),
  38930. name: "Side",
  38931. image: {
  38932. source: "./media/characters/rezukii/side.svg",
  38933. extra: 979/542,
  38934. bottom: 87/1066
  38935. }
  38936. },
  38937. sitting: {
  38938. height: math.unit(14.6, "feet"),
  38939. name: "Sitting",
  38940. image: {
  38941. source: "./media/characters/rezukii/sitting.svg",
  38942. extra: 1023/813,
  38943. bottom: 45/1068
  38944. }
  38945. },
  38946. },
  38947. [
  38948. {
  38949. name: "Tiny",
  38950. height: math.unit(2, "feet")
  38951. },
  38952. {
  38953. name: "Smol",
  38954. height: math.unit(4, "feet")
  38955. },
  38956. {
  38957. name: "Normal",
  38958. height: math.unit(8, "feet"),
  38959. default: true
  38960. },
  38961. {
  38962. name: "Big",
  38963. height: math.unit(12, "feet")
  38964. },
  38965. {
  38966. name: "Macro",
  38967. height: math.unit(30, "feet")
  38968. },
  38969. ]
  38970. ))
  38971. characterMakers.push(() => makeCharacter(
  38972. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38973. {
  38974. front: {
  38975. height: math.unit(14, "feet"),
  38976. weight: math.unit(9.5, "tonnes"),
  38977. name: "Front",
  38978. image: {
  38979. source: "./media/characters/dawnheart/front.svg",
  38980. extra: 2792/2675,
  38981. bottom: 64/2856
  38982. }
  38983. },
  38984. },
  38985. [
  38986. {
  38987. name: "Normal",
  38988. height: math.unit(14, "feet"),
  38989. default: true
  38990. },
  38991. ]
  38992. ))
  38993. characterMakers.push(() => makeCharacter(
  38994. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38995. {
  38996. front: {
  38997. height: math.unit(1.7, "m"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/gladi/front.svg",
  39001. extra: 1460/1362,
  39002. bottom: 19/1479
  39003. }
  39004. },
  39005. back: {
  39006. height: math.unit(1.7, "m"),
  39007. name: "Back",
  39008. image: {
  39009. source: "./media/characters/gladi/back.svg",
  39010. extra: 1459/1357,
  39011. bottom: 12/1471
  39012. }
  39013. },
  39014. feral: {
  39015. height: math.unit(2.05, "m"),
  39016. name: "Feral",
  39017. image: {
  39018. source: "./media/characters/gladi/feral.svg",
  39019. extra: 821/557,
  39020. bottom: 91/912
  39021. }
  39022. },
  39023. },
  39024. [
  39025. {
  39026. name: "Shortest",
  39027. height: math.unit(70, "cm")
  39028. },
  39029. {
  39030. name: "Normal",
  39031. height: math.unit(1.7, "m")
  39032. },
  39033. {
  39034. name: "Macro",
  39035. height: math.unit(10, "m"),
  39036. default: true
  39037. },
  39038. {
  39039. name: "Tallest",
  39040. height: math.unit(200, "m")
  39041. },
  39042. ]
  39043. ))
  39044. characterMakers.push(() => makeCharacter(
  39045. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39046. {
  39047. front: {
  39048. height: math.unit(5 + 7/12, "feet"),
  39049. weight: math.unit(2, "tons"),
  39050. name: "Front",
  39051. image: {
  39052. source: "./media/characters/erdno/front.svg",
  39053. extra: 1234/1129,
  39054. bottom: 35/1269
  39055. }
  39056. },
  39057. angled: {
  39058. height: math.unit(5 + 7/12, "feet"),
  39059. weight: math.unit(2, "tons"),
  39060. name: "Angled",
  39061. image: {
  39062. source: "./media/characters/erdno/angled.svg",
  39063. extra: 1185/1139,
  39064. bottom: 36/1221
  39065. }
  39066. },
  39067. side: {
  39068. height: math.unit(5 + 7/12, "feet"),
  39069. weight: math.unit(2, "tons"),
  39070. name: "Side",
  39071. image: {
  39072. source: "./media/characters/erdno/side.svg",
  39073. extra: 1191/1144,
  39074. bottom: 40/1231
  39075. }
  39076. },
  39077. back: {
  39078. height: math.unit(5 + 7/12, "feet"),
  39079. weight: math.unit(2, "tons"),
  39080. name: "Back",
  39081. image: {
  39082. source: "./media/characters/erdno/back.svg",
  39083. extra: 1202/1146,
  39084. bottom: 17/1219
  39085. }
  39086. },
  39087. frontNsfw: {
  39088. height: math.unit(5 + 7/12, "feet"),
  39089. weight: math.unit(2, "tons"),
  39090. name: "Front (NSFW)",
  39091. image: {
  39092. source: "./media/characters/erdno/front-nsfw.svg",
  39093. extra: 1234/1129,
  39094. bottom: 35/1269
  39095. }
  39096. },
  39097. angledNsfw: {
  39098. height: math.unit(5 + 7/12, "feet"),
  39099. weight: math.unit(2, "tons"),
  39100. name: "Angled (NSFW)",
  39101. image: {
  39102. source: "./media/characters/erdno/angled-nsfw.svg",
  39103. extra: 1185/1139,
  39104. bottom: 36/1221
  39105. }
  39106. },
  39107. sideNsfw: {
  39108. height: math.unit(5 + 7/12, "feet"),
  39109. weight: math.unit(2, "tons"),
  39110. name: "Side (NSFW)",
  39111. image: {
  39112. source: "./media/characters/erdno/side-nsfw.svg",
  39113. extra: 1191/1144,
  39114. bottom: 40/1231
  39115. }
  39116. },
  39117. backNsfw: {
  39118. height: math.unit(5 + 7/12, "feet"),
  39119. weight: math.unit(2, "tons"),
  39120. name: "Back (NSFW)",
  39121. image: {
  39122. source: "./media/characters/erdno/back-nsfw.svg",
  39123. extra: 1202/1146,
  39124. bottom: 17/1219
  39125. }
  39126. },
  39127. frontHyper: {
  39128. height: math.unit(5 + 7/12, "feet"),
  39129. weight: math.unit(2, "tons"),
  39130. name: "Front (Hyper)",
  39131. image: {
  39132. source: "./media/characters/erdno/front-hyper.svg",
  39133. extra: 1298/1136,
  39134. bottom: 35/1333
  39135. }
  39136. },
  39137. },
  39138. [
  39139. {
  39140. name: "Normal",
  39141. height: math.unit(5 + 7/12, "feet"),
  39142. default: true
  39143. },
  39144. {
  39145. name: "Big",
  39146. height: math.unit(5.7, "meters")
  39147. },
  39148. {
  39149. name: "Macro",
  39150. height: math.unit(5.7, "kilometers")
  39151. },
  39152. {
  39153. name: "Megamacro",
  39154. height: math.unit(5.7, "earths")
  39155. },
  39156. ]
  39157. ))
  39158. characterMakers.push(() => makeCharacter(
  39159. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39160. {
  39161. front: {
  39162. height: math.unit(5 + 10/12, "feet"),
  39163. weight: math.unit(150, "lb"),
  39164. name: "Front",
  39165. image: {
  39166. source: "./media/characters/jamie/front.svg",
  39167. extra: 1908/1768,
  39168. bottom: 19/1927
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Minimum",
  39175. height: math.unit(2, "cm")
  39176. },
  39177. {
  39178. name: "Micro",
  39179. height: math.unit(3, "inches")
  39180. },
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(5 + 10/12, "feet"),
  39184. default: true
  39185. },
  39186. {
  39187. name: "Macro",
  39188. height: math.unit(150, "feet")
  39189. },
  39190. {
  39191. name: "Megamacro",
  39192. height: math.unit(10000, "m")
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(2, "meters"),
  39201. weight: math.unit(100, "kg"),
  39202. name: "Front",
  39203. image: {
  39204. source: "./media/characters/shiron/front.svg",
  39205. extra: 2103/1985,
  39206. bottom: 98/2201
  39207. }
  39208. },
  39209. back: {
  39210. height: math.unit(2, "meters"),
  39211. weight: math.unit(100, "kg"),
  39212. name: "Back",
  39213. image: {
  39214. source: "./media/characters/shiron/back.svg",
  39215. extra: 2110/2015,
  39216. bottom: 89/2199
  39217. }
  39218. },
  39219. hand: {
  39220. height: math.unit(0.96, "feet"),
  39221. name: "Hand",
  39222. image: {
  39223. source: "./media/characters/shiron/hand.svg"
  39224. }
  39225. },
  39226. foot: {
  39227. height: math.unit(1.464, "feet"),
  39228. name: "Foot",
  39229. image: {
  39230. source: "./media/characters/shiron/foot.svg"
  39231. }
  39232. },
  39233. },
  39234. [
  39235. {
  39236. name: "Normal",
  39237. height: math.unit(2, "meters")
  39238. },
  39239. {
  39240. name: "Macro",
  39241. height: math.unit(500, "meters"),
  39242. default: true
  39243. },
  39244. {
  39245. name: "Megamacro",
  39246. height: math.unit(20, "km")
  39247. },
  39248. ]
  39249. ))
  39250. characterMakers.push(() => makeCharacter(
  39251. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39252. {
  39253. front: {
  39254. height: math.unit(6, "feet"),
  39255. name: "Front",
  39256. image: {
  39257. source: "./media/characters/sam/front.svg",
  39258. extra: 849/826,
  39259. bottom: 19/868
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(6, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(8 + 4/12, "feet"),
  39276. weight: math.unit(122, "kg"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/namori-kurogawa/front.svg",
  39280. extra: 1894/1576,
  39281. bottom: 34/1928
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Normal",
  39288. height: math.unit(8 + 4/12, "feet"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(9, "feet"),
  39298. weight: math.unit(621, "lb"),
  39299. name: "Front",
  39300. image: {
  39301. source: "./media/characters/unmru/front.svg",
  39302. extra: 1853/1747,
  39303. bottom: 73/1926
  39304. }
  39305. },
  39306. side: {
  39307. height: math.unit(9, "feet"),
  39308. weight: math.unit(621, "lb"),
  39309. name: "Side",
  39310. image: {
  39311. source: "./media/characters/unmru/side.svg",
  39312. extra: 1781/1671,
  39313. bottom: 127/1908
  39314. }
  39315. },
  39316. back: {
  39317. height: math.unit(9, "feet"),
  39318. weight: math.unit(621, "lb"),
  39319. name: "Back",
  39320. image: {
  39321. source: "./media/characters/unmru/back.svg",
  39322. extra: 1894/1765,
  39323. bottom: 75/1969
  39324. }
  39325. },
  39326. dick: {
  39327. height: math.unit(3, "feet"),
  39328. weight: math.unit(35, "lb"),
  39329. name: "Dick",
  39330. image: {
  39331. source: "./media/characters/unmru/dick.svg"
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(9, "feet")
  39339. },
  39340. {
  39341. name: "Natural",
  39342. height: math.unit(27, "feet"),
  39343. default: true
  39344. },
  39345. {
  39346. name: "Giant",
  39347. height: math.unit(90, "feet")
  39348. },
  39349. {
  39350. name: "Kaiju",
  39351. height: math.unit(270, "feet")
  39352. },
  39353. {
  39354. name: "Macro",
  39355. height: math.unit(900, "feet")
  39356. },
  39357. {
  39358. name: "Macro+",
  39359. height: math.unit(2700, "feet")
  39360. },
  39361. {
  39362. name: "Megamacro",
  39363. height: math.unit(9000, "feet")
  39364. },
  39365. {
  39366. name: "City-Crushing",
  39367. height: math.unit(27000, "feet")
  39368. },
  39369. {
  39370. name: "Mountain-Mashing",
  39371. height: math.unit(90000, "feet")
  39372. },
  39373. {
  39374. name: "Earth-Eclipsing",
  39375. height: math.unit(2.7e8, "feet")
  39376. },
  39377. {
  39378. name: "Sol-Swallowing",
  39379. height: math.unit(9e10, "feet")
  39380. },
  39381. {
  39382. name: "Majoris-Munching",
  39383. height: math.unit(2.7e13, "feet")
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39389. {
  39390. front: {
  39391. height: math.unit(1, "inch"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/squeaks-mouse/front.svg",
  39395. extra: 352/308,
  39396. bottom: 25/377
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Micro",
  39403. height: math.unit(1, "inch"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39410. {
  39411. side: {
  39412. height: math.unit(35, "feet"),
  39413. name: "Side",
  39414. image: {
  39415. source: "./media/characters/sayko/side.svg",
  39416. extra: 1697/1021,
  39417. bottom: 82/1779
  39418. }
  39419. },
  39420. head: {
  39421. height: math.unit(16, "feet"),
  39422. name: "Head",
  39423. image: {
  39424. source: "./media/characters/sayko/head.svg"
  39425. }
  39426. },
  39427. forepaw: {
  39428. height: math.unit(7.85, "feet"),
  39429. name: "Forepaw",
  39430. image: {
  39431. source: "./media/characters/sayko/forepaw.svg"
  39432. }
  39433. },
  39434. hindpaw: {
  39435. height: math.unit(8.8, "feet"),
  39436. name: "Hindpaw",
  39437. image: {
  39438. source: "./media/characters/sayko/hindpaw.svg"
  39439. }
  39440. },
  39441. },
  39442. [
  39443. {
  39444. name: "Normal",
  39445. height: math.unit(35, "feet"),
  39446. default: true
  39447. },
  39448. {
  39449. name: "Colossus",
  39450. height: math.unit(100, "meters")
  39451. },
  39452. {
  39453. name: "\"Small\" Deity",
  39454. height: math.unit(1, "km")
  39455. },
  39456. {
  39457. name: "\"Large\" Deity",
  39458. height: math.unit(15, "km")
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39464. {
  39465. front: {
  39466. height: math.unit(6, "feet"),
  39467. weight: math.unit(250, "lb"),
  39468. name: "Front",
  39469. image: {
  39470. source: "./media/characters/mukiro/front.svg",
  39471. extra: 1368/1310,
  39472. bottom: 34/1402
  39473. }
  39474. },
  39475. },
  39476. [
  39477. {
  39478. name: "Normal",
  39479. height: math.unit(6, "feet"),
  39480. default: true
  39481. },
  39482. ]
  39483. ))
  39484. characterMakers.push(() => makeCharacter(
  39485. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39486. {
  39487. front: {
  39488. height: math.unit(12 + 4/12, "feet"),
  39489. name: "Front",
  39490. image: {
  39491. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39492. extra: 1346/1311,
  39493. bottom: 65/1411
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Base",
  39500. height: math.unit(12 + 4/12, "feet"),
  39501. default: true
  39502. },
  39503. {
  39504. name: "Macro",
  39505. height: math.unit(150, "feet")
  39506. },
  39507. {
  39508. name: "Mega",
  39509. height: math.unit(2, "miles")
  39510. },
  39511. {
  39512. name: "Demi God",
  39513. height: math.unit(4, "AU")
  39514. },
  39515. {
  39516. name: "God Size",
  39517. height: math.unit(1, "universe")
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(3 + 3/12, "feet"),
  39526. weight: math.unit(88, "lb"),
  39527. name: "Front",
  39528. image: {
  39529. source: "./media/characters/trey/front.svg",
  39530. extra: 1815/1509,
  39531. bottom: 60/1875
  39532. }
  39533. },
  39534. },
  39535. [
  39536. {
  39537. name: "Normal",
  39538. height: math.unit(3 + 3/12, "feet"),
  39539. default: true
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39545. {
  39546. front: {
  39547. height: math.unit(4, "meters"),
  39548. name: "Front",
  39549. image: {
  39550. source: "./media/characters/adelonda/front.svg",
  39551. extra: 1077/982,
  39552. bottom: 39/1116
  39553. }
  39554. },
  39555. back: {
  39556. height: math.unit(4, "meters"),
  39557. name: "Back",
  39558. image: {
  39559. source: "./media/characters/adelonda/back.svg",
  39560. extra: 1105/1003,
  39561. bottom: 25/1130
  39562. }
  39563. },
  39564. feral: {
  39565. height: math.unit(40/1.5, "meters"),
  39566. name: "Feral",
  39567. image: {
  39568. source: "./media/characters/adelonda/feral.svg",
  39569. extra: 597/271,
  39570. bottom: 387/984
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(4, "meters"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(8 + 4/12, "feet"),
  39587. weight: math.unit(670, "lb"),
  39588. name: "Front",
  39589. image: {
  39590. source: "./media/characters/acadiel/front.svg",
  39591. extra: 1901/1595,
  39592. bottom: 142/2043
  39593. }
  39594. },
  39595. },
  39596. [
  39597. {
  39598. name: "Normal",
  39599. height: math.unit(8 + 4/12, "feet"),
  39600. default: true
  39601. },
  39602. {
  39603. name: "Macro",
  39604. height: math.unit(200, "feet")
  39605. },
  39606. ]
  39607. ))
  39608. characterMakers.push(() => makeCharacter(
  39609. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39610. {
  39611. front: {
  39612. height: math.unit(6 + 2/12, "feet"),
  39613. weight: math.unit(185, "lb"),
  39614. name: "Front",
  39615. image: {
  39616. source: "./media/characters/kayne-ein/front.svg",
  39617. extra: 1780/1560,
  39618. bottom: 81/1861
  39619. }
  39620. },
  39621. },
  39622. [
  39623. {
  39624. name: "Normal",
  39625. height: math.unit(6 + 2/12, "feet"),
  39626. default: true
  39627. },
  39628. {
  39629. name: "Transformation Stage",
  39630. height: math.unit(15, "feet")
  39631. },
  39632. {
  39633. name: "Macro",
  39634. height: math.unit(150, "feet")
  39635. },
  39636. {
  39637. name: "Earth's Shadow",
  39638. height: math.unit(6200, "miles")
  39639. },
  39640. {
  39641. name: "Universal Demon",
  39642. height: math.unit(28e9, "parsecs")
  39643. },
  39644. {
  39645. name: "Multiverse God",
  39646. height: math.unit(3, "multiverses")
  39647. },
  39648. ]
  39649. ))
  39650. characterMakers.push(() => makeCharacter(
  39651. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39652. {
  39653. front: {
  39654. height: math.unit(5 + 5/12, "feet"),
  39655. name: "Front",
  39656. image: {
  39657. source: "./media/characters/fawn/front.svg",
  39658. extra: 1873/1731,
  39659. bottom: 95/1968
  39660. }
  39661. },
  39662. back: {
  39663. height: math.unit(5 + 5/12, "feet"),
  39664. name: "Back",
  39665. image: {
  39666. source: "./media/characters/fawn/back.svg",
  39667. extra: 1813/1700,
  39668. bottom: 14/1827
  39669. }
  39670. },
  39671. hoof: {
  39672. height: math.unit(1.45, "feet"),
  39673. name: "Hoof",
  39674. image: {
  39675. source: "./media/characters/fawn/hoof.svg"
  39676. }
  39677. },
  39678. },
  39679. [
  39680. {
  39681. name: "Normal",
  39682. height: math.unit(5 + 5/12, "feet"),
  39683. default: true
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(2 + 5/12, "feet"),
  39692. name: "Front",
  39693. image: {
  39694. source: "./media/characters/orion/front.svg",
  39695. extra: 1366/1304,
  39696. bottom: 43/1409
  39697. }
  39698. },
  39699. paw: {
  39700. height: math.unit(0.52, "feet"),
  39701. name: "Paw",
  39702. image: {
  39703. source: "./media/characters/orion/paw.svg"
  39704. }
  39705. },
  39706. },
  39707. [
  39708. {
  39709. name: "Normal",
  39710. height: math.unit(2 + 5/12, "feet"),
  39711. default: true
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(5 + 10/12, "feet"),
  39720. name: "Front",
  39721. image: {
  39722. source: "./media/characters/vera/front.svg",
  39723. extra: 1680/1575,
  39724. bottom: 49/1729
  39725. }
  39726. },
  39727. back: {
  39728. height: math.unit(5 + 10/12, "feet"),
  39729. name: "Back",
  39730. image: {
  39731. source: "./media/characters/vera/back.svg",
  39732. extra: 1700/1588,
  39733. bottom: 18/1718
  39734. }
  39735. },
  39736. arcanine: {
  39737. height: math.unit(6 + 8/12, "feet"),
  39738. name: "Arcanine",
  39739. image: {
  39740. source: "./media/characters/vera/arcanine.svg",
  39741. extra: 1590/1511,
  39742. bottom: 71/1661
  39743. }
  39744. },
  39745. maw: {
  39746. height: math.unit(0.82, "feet"),
  39747. name: "Maw",
  39748. image: {
  39749. source: "./media/characters/vera/maw.svg"
  39750. }
  39751. },
  39752. mawArcanine: {
  39753. height: math.unit(0.97, "feet"),
  39754. name: "Maw (Arcanine)",
  39755. image: {
  39756. source: "./media/characters/vera/maw-arcanine.svg"
  39757. }
  39758. },
  39759. paw: {
  39760. height: math.unit(0.75, "feet"),
  39761. name: "Paw",
  39762. image: {
  39763. source: "./media/characters/vera/paw.svg"
  39764. }
  39765. },
  39766. pawprint: {
  39767. height: math.unit(0.52, "feet"),
  39768. name: "Pawprint",
  39769. image: {
  39770. source: "./media/characters/vera/pawprint.svg"
  39771. }
  39772. },
  39773. },
  39774. [
  39775. {
  39776. name: "Normal",
  39777. height: math.unit(5 + 10/12, "feet"),
  39778. default: true
  39779. },
  39780. {
  39781. name: "Macro",
  39782. height: math.unit(75, "feet")
  39783. },
  39784. ]
  39785. ))
  39786. characterMakers.push(() => makeCharacter(
  39787. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39788. {
  39789. front: {
  39790. height: math.unit(4, "feet"),
  39791. weight: math.unit(40, "lb"),
  39792. name: "Front",
  39793. image: {
  39794. source: "./media/characters/orvan-rabbit/front.svg",
  39795. extra: 1896/1642,
  39796. bottom: 29/1925
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Normal",
  39803. height: math.unit(4, "feet"),
  39804. default: true
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(6, "feet"),
  39813. weight: math.unit(168, "lb"),
  39814. name: "Front",
  39815. image: {
  39816. source: "./media/characters/lisa/front.svg",
  39817. extra: 2065/1867,
  39818. bottom: 46/2111
  39819. }
  39820. },
  39821. back: {
  39822. height: math.unit(6, "feet"),
  39823. weight: math.unit(168, "lb"),
  39824. name: "Back",
  39825. image: {
  39826. source: "./media/characters/lisa/back.svg",
  39827. extra: 1982/1838,
  39828. bottom: 29/2011
  39829. }
  39830. },
  39831. maw: {
  39832. height: math.unit(0.81, "feet"),
  39833. name: "Maw",
  39834. image: {
  39835. source: "./media/characters/lisa/maw.svg"
  39836. }
  39837. },
  39838. paw: {
  39839. height: math.unit(0.9, "feet"),
  39840. name: "Paw",
  39841. image: {
  39842. source: "./media/characters/lisa/paw.svg"
  39843. }
  39844. },
  39845. caribousune: {
  39846. height: math.unit(7 + 2/12, "feet"),
  39847. weight: math.unit(268, "lb"),
  39848. name: "Caribousune",
  39849. image: {
  39850. source: "./media/characters/lisa/caribousune.svg",
  39851. extra: 1843/1633,
  39852. bottom: 29/1872
  39853. }
  39854. },
  39855. frontCaribousune: {
  39856. height: math.unit(7 + 2/12, "feet"),
  39857. weight: math.unit(268, "lb"),
  39858. name: "Front (Caribousune)",
  39859. image: {
  39860. source: "./media/characters/lisa/front-caribousune.svg",
  39861. extra: 1818/1638,
  39862. bottom: 52/1870
  39863. }
  39864. },
  39865. sideCaribousune: {
  39866. height: math.unit(7 + 2/12, "feet"),
  39867. weight: math.unit(268, "lb"),
  39868. name: "Side (Caribousune)",
  39869. image: {
  39870. source: "./media/characters/lisa/side-caribousune.svg",
  39871. extra: 1851/1635,
  39872. bottom: 16/1867
  39873. }
  39874. },
  39875. backCaribousune: {
  39876. height: math.unit(7 + 2/12, "feet"),
  39877. weight: math.unit(268, "lb"),
  39878. name: "Back (Caribousune)",
  39879. image: {
  39880. source: "./media/characters/lisa/back-caribousune.svg",
  39881. extra: 1801/1604,
  39882. bottom: 44/1845
  39883. }
  39884. },
  39885. caribou: {
  39886. height: math.unit(7 + 2/12, "feet"),
  39887. weight: math.unit(268, "lb"),
  39888. name: "Caribou",
  39889. image: {
  39890. source: "./media/characters/lisa/caribou.svg",
  39891. extra: 1843/1633,
  39892. bottom: 29/1872
  39893. }
  39894. },
  39895. frontCaribou: {
  39896. height: math.unit(7 + 2/12, "feet"),
  39897. weight: math.unit(268, "lb"),
  39898. name: "Front (Caribou)",
  39899. image: {
  39900. source: "./media/characters/lisa/front-caribou.svg",
  39901. extra: 1818/1638,
  39902. bottom: 52/1870
  39903. }
  39904. },
  39905. sideCaribou: {
  39906. height: math.unit(7 + 2/12, "feet"),
  39907. weight: math.unit(268, "lb"),
  39908. name: "Side (Caribou)",
  39909. image: {
  39910. source: "./media/characters/lisa/side-caribou.svg",
  39911. extra: 1851/1635,
  39912. bottom: 16/1867
  39913. }
  39914. },
  39915. backCaribou: {
  39916. height: math.unit(7 + 2/12, "feet"),
  39917. weight: math.unit(268, "lb"),
  39918. name: "Back (Caribou)",
  39919. image: {
  39920. source: "./media/characters/lisa/back-caribou.svg",
  39921. extra: 1801/1604,
  39922. bottom: 44/1845
  39923. }
  39924. },
  39925. mawCaribou: {
  39926. height: math.unit(1.45, "feet"),
  39927. name: "Maw (Caribou)",
  39928. image: {
  39929. source: "./media/characters/lisa/maw-caribou.svg"
  39930. }
  39931. },
  39932. mawCaribousune: {
  39933. height: math.unit(1.45, "feet"),
  39934. name: "Maw (Caribousune)",
  39935. image: {
  39936. source: "./media/characters/lisa/maw-caribousune.svg"
  39937. }
  39938. },
  39939. pawCaribousune: {
  39940. height: math.unit(1.61, "feet"),
  39941. name: "Paw (Caribou)",
  39942. image: {
  39943. source: "./media/characters/lisa/paw-caribousune.svg"
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Normal",
  39950. height: math.unit(6, "feet")
  39951. },
  39952. {
  39953. name: "God Size",
  39954. height: math.unit(72, "feet"),
  39955. default: true
  39956. },
  39957. {
  39958. name: "Towering",
  39959. height: math.unit(288, "feet")
  39960. },
  39961. {
  39962. name: "City Size",
  39963. height: math.unit(48384, "feet")
  39964. },
  39965. {
  39966. name: "Continental",
  39967. height: math.unit(4200, "miles")
  39968. },
  39969. {
  39970. name: "Planet Eater",
  39971. height: math.unit(42, "earths")
  39972. },
  39973. {
  39974. name: "Star Swallower",
  39975. height: math.unit(42, "solarradii")
  39976. },
  39977. {
  39978. name: "System Swallower",
  39979. height: math.unit(84000, "AU")
  39980. },
  39981. {
  39982. name: "Galaxy Gobbler",
  39983. height: math.unit(42, "galaxies")
  39984. },
  39985. {
  39986. name: "Universe Devourer",
  39987. height: math.unit(42, "universes")
  39988. },
  39989. {
  39990. name: "Multiverse Muncher",
  39991. height: math.unit(42, "multiverses")
  39992. },
  39993. ]
  39994. ))
  39995. characterMakers.push(() => makeCharacter(
  39996. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39997. {
  39998. front: {
  39999. height: math.unit(36, "feet"),
  40000. name: "Front",
  40001. image: {
  40002. source: "./media/characters/shadow-rat/front.svg",
  40003. extra: 1845/1758,
  40004. bottom: 83/1928
  40005. }
  40006. },
  40007. },
  40008. [
  40009. {
  40010. name: "Macro",
  40011. height: math.unit(36, "feet"),
  40012. default: true
  40013. },
  40014. ]
  40015. ))
  40016. characterMakers.push(() => makeCharacter(
  40017. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40018. {
  40019. side: {
  40020. height: math.unit(8, "feet"),
  40021. weight: math.unit(2630, "lb"),
  40022. name: "Side",
  40023. image: {
  40024. source: "./media/characters/torallia/side.svg",
  40025. extra: 2164/2021,
  40026. bottom: 371/2535
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Mortal Interaction",
  40033. height: math.unit(8, "feet")
  40034. },
  40035. {
  40036. name: "Natural",
  40037. height: math.unit(24, "feet"),
  40038. default: true
  40039. },
  40040. {
  40041. name: "Giant",
  40042. height: math.unit(80, "feet")
  40043. },
  40044. {
  40045. name: "Kaiju",
  40046. height: math.unit(240, "feet")
  40047. },
  40048. {
  40049. name: "Macro",
  40050. height: math.unit(800, "feet")
  40051. },
  40052. {
  40053. name: "Macro+",
  40054. height: math.unit(2400, "feet")
  40055. },
  40056. {
  40057. name: "Macro++",
  40058. height: math.unit(8000, "feet")
  40059. },
  40060. {
  40061. name: "City-Crushing",
  40062. height: math.unit(24000, "feet")
  40063. },
  40064. {
  40065. name: "Mountain-Mashing",
  40066. height: math.unit(80000, "feet")
  40067. },
  40068. {
  40069. name: "District Demolisher",
  40070. height: math.unit(240000, "feet")
  40071. },
  40072. {
  40073. name: "Tri-County Terror",
  40074. height: math.unit(800000, "feet")
  40075. },
  40076. {
  40077. name: "State Smasher",
  40078. height: math.unit(2.4e6, "feet")
  40079. },
  40080. {
  40081. name: "Nation Nemesis",
  40082. height: math.unit(8e6, "feet")
  40083. },
  40084. {
  40085. name: "Continent Cracker",
  40086. height: math.unit(2.4e7, "feet")
  40087. },
  40088. {
  40089. name: "Planet-Pillaging",
  40090. height: math.unit(8e7, "feet")
  40091. },
  40092. {
  40093. name: "Earth-Eclipsing",
  40094. height: math.unit(2.4e8, "feet")
  40095. },
  40096. {
  40097. name: "Jovian-Jostling",
  40098. height: math.unit(8e8, "feet")
  40099. },
  40100. {
  40101. name: "Gas Giant Gulper",
  40102. height: math.unit(2.4e9, "feet")
  40103. },
  40104. {
  40105. name: "Astral Annihilator",
  40106. height: math.unit(8e9, "feet")
  40107. },
  40108. {
  40109. name: "Celestial Conqueror",
  40110. height: math.unit(2.4e10, "feet")
  40111. },
  40112. {
  40113. name: "Sol-Swallowing",
  40114. height: math.unit(8e10, "feet")
  40115. },
  40116. {
  40117. name: "Hunter of the Heavens",
  40118. height: math.unit(2.4e13, "feet")
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40124. {
  40125. front: {
  40126. height: math.unit(6 + 8/12, "feet"),
  40127. weight: math.unit(250, "kilograms"),
  40128. volume: math.unit(28, "liters"),
  40129. name: "Front",
  40130. image: {
  40131. source: "./media/characters/rebecca-pawlson/front.svg",
  40132. extra: 1737/1596,
  40133. bottom: 107/1844
  40134. }
  40135. },
  40136. back: {
  40137. height: math.unit(6 + 8/12, "feet"),
  40138. weight: math.unit(250, "kilograms"),
  40139. volume: math.unit(28, "liters"),
  40140. name: "Back",
  40141. image: {
  40142. source: "./media/characters/rebecca-pawlson/back.svg",
  40143. extra: 1702/1523,
  40144. bottom: 86/1788
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Normal",
  40151. height: math.unit(6 + 8/12, "feet")
  40152. },
  40153. {
  40154. name: "Mini Macro",
  40155. height: math.unit(10, "feet"),
  40156. default: true
  40157. },
  40158. {
  40159. name: "Macro",
  40160. height: math.unit(100, "feet")
  40161. },
  40162. {
  40163. name: "Mega Macro",
  40164. height: math.unit(2500, "feet")
  40165. },
  40166. {
  40167. name: "Giga Macro",
  40168. height: math.unit(50, "miles")
  40169. },
  40170. ]
  40171. ))
  40172. characterMakers.push(() => makeCharacter(
  40173. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40174. {
  40175. front: {
  40176. height: math.unit(7 + 6/12, "feet"),
  40177. weight: math.unit(600, "lb"),
  40178. name: "Front",
  40179. image: {
  40180. source: "./media/characters/moxie-nova/front.svg",
  40181. extra: 1734/1652,
  40182. bottom: 41/1775
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Normal",
  40189. height: math.unit(7 + 6/12, "feet"),
  40190. default: true
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40196. {
  40197. goat: {
  40198. height: math.unit(4, "feet"),
  40199. weight: math.unit(180, "lb"),
  40200. name: "Goat",
  40201. image: {
  40202. source: "./media/characters/tiffany/goat.svg",
  40203. extra: 1845/1595,
  40204. bottom: 106/1951
  40205. }
  40206. },
  40207. front: {
  40208. height: math.unit(5, "feet"),
  40209. weight: math.unit(150, "lb"),
  40210. name: "Foxcoon",
  40211. image: {
  40212. source: "./media/characters/tiffany/foxcoon.svg",
  40213. extra: 1941/1845,
  40214. bottom: 58/1999
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Normal",
  40221. height: math.unit(5, "feet"),
  40222. default: true
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(8, "feet"),
  40231. weight: math.unit(300, "lb"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/raxinath/front.svg",
  40235. extra: 1407/1309,
  40236. bottom: 39/1446
  40237. }
  40238. },
  40239. back: {
  40240. height: math.unit(8, "feet"),
  40241. weight: math.unit(300, "lb"),
  40242. name: "Back",
  40243. image: {
  40244. source: "./media/characters/raxinath/back.svg",
  40245. extra: 1405/1315,
  40246. bottom: 9/1414
  40247. }
  40248. },
  40249. },
  40250. [
  40251. {
  40252. name: "Speck",
  40253. height: math.unit(0.5, "nm")
  40254. },
  40255. {
  40256. name: "Micro",
  40257. height: math.unit(3, "inches")
  40258. },
  40259. {
  40260. name: "Kobold",
  40261. height: math.unit(3, "feet")
  40262. },
  40263. {
  40264. name: "Normal",
  40265. height: math.unit(8, "feet"),
  40266. default: true
  40267. },
  40268. {
  40269. name: "Giant",
  40270. height: math.unit(50, "feet")
  40271. },
  40272. {
  40273. name: "Macro",
  40274. height: math.unit(1000, "feet")
  40275. },
  40276. {
  40277. name: "Megamacro",
  40278. height: math.unit(1, "mile")
  40279. },
  40280. ]
  40281. ))
  40282. characterMakers.push(() => makeCharacter(
  40283. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40284. {
  40285. front: {
  40286. height: math.unit(10, "feet"),
  40287. weight: math.unit(1442, "lb"),
  40288. name: "Front",
  40289. image: {
  40290. source: "./media/characters/mal-dragon/front.svg",
  40291. extra: 1515/1444,
  40292. bottom: 113/1628
  40293. }
  40294. },
  40295. back: {
  40296. height: math.unit(10, "feet"),
  40297. weight: math.unit(1442, "lb"),
  40298. name: "Back",
  40299. image: {
  40300. source: "./media/characters/mal-dragon/back.svg",
  40301. extra: 1527/1434,
  40302. bottom: 25/1552
  40303. }
  40304. },
  40305. },
  40306. [
  40307. {
  40308. name: "Mortal Interaction",
  40309. height: math.unit(10, "feet"),
  40310. default: true
  40311. },
  40312. {
  40313. name: "Large",
  40314. height: math.unit(30, "feet")
  40315. },
  40316. {
  40317. name: "Kaiju",
  40318. height: math.unit(300, "feet")
  40319. },
  40320. {
  40321. name: "Megamacro",
  40322. height: math.unit(10000, "feet")
  40323. },
  40324. {
  40325. name: "Continent Cracker",
  40326. height: math.unit(30000000, "feet")
  40327. },
  40328. {
  40329. name: "Sol-Swallowing",
  40330. height: math.unit(1e11, "feet")
  40331. },
  40332. {
  40333. name: "Light Universal",
  40334. height: math.unit(5, "universes")
  40335. },
  40336. {
  40337. name: "Universe Atoms",
  40338. height: math.unit(1.829e9, "universes")
  40339. },
  40340. {
  40341. name: "Light Multiversal",
  40342. height: math.unit(5, "multiverses")
  40343. },
  40344. {
  40345. name: "Multiverse Atoms",
  40346. height: math.unit(1.829e9, "multiverses")
  40347. },
  40348. {
  40349. name: "Fabric of Time",
  40350. height: math.unit(1e262, "multiverses")
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(9, "feet"),
  40359. weight: math.unit(1050, "lb"),
  40360. name: "Front",
  40361. image: {
  40362. source: "./media/characters/tabitha/front.svg",
  40363. extra: 2083/1994,
  40364. bottom: 68/2151
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Baseline",
  40371. height: math.unit(9, "feet"),
  40372. default: true
  40373. },
  40374. {
  40375. name: "Giant",
  40376. height: math.unit(90, "feet")
  40377. },
  40378. {
  40379. name: "Macro",
  40380. height: math.unit(900, "feet")
  40381. },
  40382. {
  40383. name: "Megamacro",
  40384. height: math.unit(9000, "feet")
  40385. },
  40386. {
  40387. name: "City-Crushing",
  40388. height: math.unit(27000, "feet")
  40389. },
  40390. {
  40391. name: "Mountain-Mashing",
  40392. height: math.unit(90000, "feet")
  40393. },
  40394. {
  40395. name: "Nation Nemesis",
  40396. height: math.unit(9e6, "feet")
  40397. },
  40398. {
  40399. name: "Continent Cracker",
  40400. height: math.unit(27e6, "feet")
  40401. },
  40402. {
  40403. name: "Earth-Eclipsing",
  40404. height: math.unit(2.7e8, "feet")
  40405. },
  40406. {
  40407. name: "Gas Giant Gulper",
  40408. height: math.unit(2.7e9, "feet")
  40409. },
  40410. {
  40411. name: "Sol-Swallowing",
  40412. height: math.unit(9e10, "feet")
  40413. },
  40414. {
  40415. name: "Galaxy Gulper",
  40416. height: math.unit(9, "galaxies")
  40417. },
  40418. {
  40419. name: "Cosmos Churner",
  40420. height: math.unit(9, "universes")
  40421. },
  40422. ]
  40423. ))
  40424. characterMakers.push(() => makeCharacter(
  40425. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40426. {
  40427. front: {
  40428. height: math.unit(160, "cm"),
  40429. weight: math.unit(55, "kg"),
  40430. name: "Front",
  40431. image: {
  40432. source: "./media/characters/tow/front.svg",
  40433. extra: 1751/1722,
  40434. bottom: 74/1825
  40435. }
  40436. },
  40437. },
  40438. [
  40439. {
  40440. name: "Norm",
  40441. height: math.unit(160, "cm")
  40442. },
  40443. {
  40444. name: "Casual",
  40445. height: math.unit(3200, "m"),
  40446. default: true
  40447. },
  40448. {
  40449. name: "Show-Off",
  40450. height: math.unit(160, "km")
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40456. {
  40457. front: {
  40458. height: math.unit(7 + 11/12, "feet"),
  40459. weight: math.unit(342.8, "lb"),
  40460. name: "Front",
  40461. image: {
  40462. source: "./media/characters/vivian-orca-dragon/front.svg",
  40463. extra: 1890/1865,
  40464. bottom: 28/1918
  40465. }
  40466. },
  40467. },
  40468. [
  40469. {
  40470. name: "Micro",
  40471. height: math.unit(5, "inches")
  40472. },
  40473. {
  40474. name: "Normal",
  40475. height: math.unit(7 + 11/12, "feet"),
  40476. default: true
  40477. },
  40478. {
  40479. name: "Macro",
  40480. height: math.unit(395 + 7/12, "feet")
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40486. {
  40487. side: {
  40488. height: math.unit(10, "feet"),
  40489. weight: math.unit(1442, "lb"),
  40490. name: "Side",
  40491. image: {
  40492. source: "./media/characters/lotherakon/side.svg",
  40493. extra: 1604/1497,
  40494. bottom: 89/1693
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Mortal Interaction",
  40501. height: math.unit(10, "feet")
  40502. },
  40503. {
  40504. name: "Large",
  40505. height: math.unit(30, "feet"),
  40506. default: true
  40507. },
  40508. {
  40509. name: "Giant",
  40510. height: math.unit(100, "feet")
  40511. },
  40512. {
  40513. name: "Kaiju",
  40514. height: math.unit(300, "feet")
  40515. },
  40516. {
  40517. name: "Macro",
  40518. height: math.unit(1000, "feet")
  40519. },
  40520. {
  40521. name: "Macro+",
  40522. height: math.unit(3000, "feet")
  40523. },
  40524. {
  40525. name: "Megamacro",
  40526. height: math.unit(10000, "feet")
  40527. },
  40528. {
  40529. name: "City-Crushing",
  40530. height: math.unit(30000, "feet")
  40531. },
  40532. {
  40533. name: "Continent Cracker",
  40534. height: math.unit(30e6, "feet")
  40535. },
  40536. {
  40537. name: "Earth Eclipsing",
  40538. height: math.unit(3e8, "feet")
  40539. },
  40540. {
  40541. name: "Gas Giant Gulper",
  40542. height: math.unit(3e9, "feet")
  40543. },
  40544. {
  40545. name: "Sol-Swallowing",
  40546. height: math.unit(1e11, "feet")
  40547. },
  40548. {
  40549. name: "System Swallower",
  40550. height: math.unit(3e14, "feet")
  40551. },
  40552. {
  40553. name: "Galaxy Gulper",
  40554. height: math.unit(10, "galaxies")
  40555. },
  40556. {
  40557. name: "Light Universal",
  40558. height: math.unit(5, "universes")
  40559. },
  40560. {
  40561. name: "Universe Palm",
  40562. height: math.unit(20, "universes")
  40563. },
  40564. {
  40565. name: "Light Multiversal",
  40566. height: math.unit(5, "multiverses")
  40567. },
  40568. {
  40569. name: "Multiverse Palm",
  40570. height: math.unit(20, "multiverses")
  40571. },
  40572. {
  40573. name: "Inferno Incarnate",
  40574. height: math.unit(1e7, "multiverses")
  40575. },
  40576. ]
  40577. ))
  40578. characterMakers.push(() => makeCharacter(
  40579. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40580. {
  40581. front: {
  40582. height: math.unit(8, "feet"),
  40583. weight: math.unit(1200, "lb"),
  40584. name: "Front",
  40585. image: {
  40586. source: "./media/characters/malithee/front.svg",
  40587. extra: 1675/1640,
  40588. bottom: 162/1837
  40589. }
  40590. },
  40591. },
  40592. [
  40593. {
  40594. name: "Mortal Interaction",
  40595. height: math.unit(8, "feet"),
  40596. default: true
  40597. },
  40598. {
  40599. name: "Large",
  40600. height: math.unit(24, "feet")
  40601. },
  40602. {
  40603. name: "Kaiju",
  40604. height: math.unit(240, "feet")
  40605. },
  40606. {
  40607. name: "Megamacro",
  40608. height: math.unit(8000, "feet")
  40609. },
  40610. {
  40611. name: "Continent Cracker",
  40612. height: math.unit(24e6, "feet")
  40613. },
  40614. {
  40615. name: "Earth-Eclipsing",
  40616. height: math.unit(2.4e8, "feet")
  40617. },
  40618. {
  40619. name: "Sol-Swallowing",
  40620. height: math.unit(8e10, "feet")
  40621. },
  40622. {
  40623. name: "Galaxy Gulper",
  40624. height: math.unit(8, "galaxies")
  40625. },
  40626. {
  40627. name: "Light Universal",
  40628. height: math.unit(4, "universes")
  40629. },
  40630. {
  40631. name: "Universe Atoms",
  40632. height: math.unit(1.829e9, "universes")
  40633. },
  40634. {
  40635. name: "Light Multiversal",
  40636. height: math.unit(4, "multiverses")
  40637. },
  40638. {
  40639. name: "Multiverse Atoms",
  40640. height: math.unit(1.829e9, "multiverses")
  40641. },
  40642. {
  40643. name: "Nigh-Omnipresence",
  40644. height: math.unit(8e261, "multiverses")
  40645. },
  40646. ]
  40647. ))
  40648. characterMakers.push(() => makeCharacter(
  40649. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40650. {
  40651. front: {
  40652. height: math.unit(10, "feet"),
  40653. weight: math.unit(1500, "lb"),
  40654. name: "Front",
  40655. image: {
  40656. source: "./media/characters/miles-thestia/front.svg",
  40657. extra: 1812/1727,
  40658. bottom: 86/1898
  40659. }
  40660. },
  40661. back: {
  40662. height: math.unit(10, "feet"),
  40663. weight: math.unit(1500, "lb"),
  40664. name: "Back",
  40665. image: {
  40666. source: "./media/characters/miles-thestia/back.svg",
  40667. extra: 1799/1690,
  40668. bottom: 47/1846
  40669. }
  40670. },
  40671. frontNsfw: {
  40672. height: math.unit(10, "feet"),
  40673. weight: math.unit(1500, "lb"),
  40674. name: "Front (NSFW)",
  40675. image: {
  40676. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40677. extra: 1812/1727,
  40678. bottom: 86/1898
  40679. }
  40680. },
  40681. },
  40682. [
  40683. {
  40684. name: "Mini-Macro",
  40685. height: math.unit(10, "feet"),
  40686. default: true
  40687. },
  40688. ]
  40689. ))
  40690. characterMakers.push(() => makeCharacter(
  40691. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40692. {
  40693. front: {
  40694. height: math.unit(25, "feet"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/titan-s-wulf/front.svg",
  40698. extra: 1560/1484,
  40699. bottom: 76/1636
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Smallest",
  40706. height: math.unit(25, "feet"),
  40707. default: true
  40708. },
  40709. {
  40710. name: "Normal",
  40711. height: math.unit(200, "feet")
  40712. },
  40713. {
  40714. name: "Macro",
  40715. height: math.unit(200000, "feet")
  40716. },
  40717. {
  40718. name: "Multiversal Original",
  40719. height: math.unit(10000, "multiverses")
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(8, "feet"),
  40728. weight: math.unit(553, "lb"),
  40729. name: "Front",
  40730. image: {
  40731. source: "./media/characters/tawendeh/front.svg",
  40732. extra: 2365/2268,
  40733. bottom: 83/2448
  40734. }
  40735. },
  40736. frontClothed: {
  40737. height: math.unit(8, "feet"),
  40738. weight: math.unit(553, "lb"),
  40739. name: "Front (Clothed)",
  40740. image: {
  40741. source: "./media/characters/tawendeh/front-clothed.svg",
  40742. extra: 2365/2268,
  40743. bottom: 83/2448
  40744. }
  40745. },
  40746. back: {
  40747. height: math.unit(8, "feet"),
  40748. weight: math.unit(553, "lb"),
  40749. name: "Back",
  40750. image: {
  40751. source: "./media/characters/tawendeh/back.svg",
  40752. extra: 2397/2294,
  40753. bottom: 42/2439
  40754. }
  40755. },
  40756. },
  40757. [
  40758. {
  40759. name: "Mortal Interaction",
  40760. height: math.unit(8, "feet"),
  40761. default: true
  40762. },
  40763. {
  40764. name: "Giant",
  40765. height: math.unit(80, "feet")
  40766. },
  40767. {
  40768. name: "Macro",
  40769. height: math.unit(800, "feet")
  40770. },
  40771. {
  40772. name: "Megamacro",
  40773. height: math.unit(8000, "feet")
  40774. },
  40775. {
  40776. name: "City-Crushing",
  40777. height: math.unit(24000, "feet")
  40778. },
  40779. {
  40780. name: "Mountain-Mashing",
  40781. height: math.unit(80000, "feet")
  40782. },
  40783. {
  40784. name: "Nation Nemesis",
  40785. height: math.unit(8e6, "feet")
  40786. },
  40787. {
  40788. name: "Continent Cracker",
  40789. height: math.unit(24e6, "feet")
  40790. },
  40791. {
  40792. name: "Earth-Eclipsing",
  40793. height: math.unit(2.4e8, "feet")
  40794. },
  40795. {
  40796. name: "Gas Giant Gulper",
  40797. height: math.unit(2.4e9, "feet")
  40798. },
  40799. {
  40800. name: "Sol-Swallowing",
  40801. height: math.unit(8e10, "feet")
  40802. },
  40803. {
  40804. name: "Galaxy Gulper",
  40805. height: math.unit(8, "galaxies")
  40806. },
  40807. {
  40808. name: "Cosmos Churner",
  40809. height: math.unit(8, "universes")
  40810. },
  40811. {
  40812. name: "Omnipotent Otter",
  40813. height: math.unit(80, "universes")
  40814. },
  40815. ]
  40816. ))
  40817. characterMakers.push(() => makeCharacter(
  40818. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40819. {
  40820. front: {
  40821. height: math.unit(2.6, "meters"),
  40822. weight: math.unit(900, "kg"),
  40823. name: "Front",
  40824. image: {
  40825. source: "./media/characters/neesha/front.svg",
  40826. extra: 1803/1653,
  40827. bottom: 128/1931
  40828. }
  40829. },
  40830. },
  40831. [
  40832. {
  40833. name: "Normal",
  40834. height: math.unit(2.6, "meters"),
  40835. default: true
  40836. },
  40837. {
  40838. name: "Macro",
  40839. height: math.unit(50, "meters")
  40840. },
  40841. ]
  40842. ))
  40843. characterMakers.push(() => makeCharacter(
  40844. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40845. {
  40846. front: {
  40847. height: math.unit(5, "feet"),
  40848. weight: math.unit(185, "lb"),
  40849. name: "Front",
  40850. image: {
  40851. source: "./media/characters/kyera/front.svg",
  40852. extra: 1875/1790,
  40853. bottom: 96/1971
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(5, "feet"),
  40861. default: true
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40867. {
  40868. front: {
  40869. height: math.unit(7 + 6/12, "feet"),
  40870. weight: math.unit(540, "lb"),
  40871. name: "Front",
  40872. image: {
  40873. source: "./media/characters/yuko/front.svg",
  40874. extra: 1282/1222,
  40875. bottom: 101/1383
  40876. }
  40877. },
  40878. frontClothed: {
  40879. height: math.unit(7 + 6/12, "feet"),
  40880. weight: math.unit(540, "lb"),
  40881. name: "Front (Clothed)",
  40882. image: {
  40883. source: "./media/characters/yuko/front-clothed.svg",
  40884. extra: 1282/1222,
  40885. bottom: 101/1383
  40886. }
  40887. },
  40888. },
  40889. [
  40890. {
  40891. name: "Normal",
  40892. height: math.unit(7 + 6/12, "feet"),
  40893. default: true
  40894. },
  40895. {
  40896. name: "Macro",
  40897. height: math.unit(26 + 9/12, "feet")
  40898. },
  40899. {
  40900. name: "Megamacro",
  40901. height: math.unit(300, "feet")
  40902. },
  40903. {
  40904. name: "Gigamacro",
  40905. height: math.unit(5000, "feet")
  40906. },
  40907. {
  40908. name: "Planetary",
  40909. height: math.unit(10000, "miles")
  40910. },
  40911. ]
  40912. ))
  40913. characterMakers.push(() => makeCharacter(
  40914. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40915. {
  40916. front: {
  40917. height: math.unit(8 + 2/12, "feet"),
  40918. weight: math.unit(600, "lb"),
  40919. name: "Front",
  40920. image: {
  40921. source: "./media/characters/deam-nitrel/front.svg",
  40922. extra: 1308/1234,
  40923. bottom: 125/1433
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Normal",
  40930. height: math.unit(8 + 2/12, "feet"),
  40931. default: true
  40932. },
  40933. ]
  40934. ))
  40935. characterMakers.push(() => makeCharacter(
  40936. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40937. {
  40938. front: {
  40939. height: math.unit(6.1, "feet"),
  40940. weight: math.unit(180, "lb"),
  40941. name: "Front",
  40942. image: {
  40943. source: "./media/characters/skyress/front.svg",
  40944. extra: 1045/915,
  40945. bottom: 28/1073
  40946. }
  40947. },
  40948. maw: {
  40949. height: math.unit(1, "feet"),
  40950. name: "Maw",
  40951. image: {
  40952. source: "./media/characters/skyress/maw.svg"
  40953. }
  40954. },
  40955. },
  40956. [
  40957. {
  40958. name: "Normal",
  40959. height: math.unit(6.1, "feet"),
  40960. default: true
  40961. },
  40962. {
  40963. name: "Macro",
  40964. height: math.unit(200, "feet")
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40970. {
  40971. front: {
  40972. height: math.unit(4 + 2/12, "feet"),
  40973. weight: math.unit(40, "kg"),
  40974. name: "Front",
  40975. image: {
  40976. source: "./media/characters/amethyst-jones/front.svg",
  40977. extra: 1220/1150,
  40978. bottom: 101/1321
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Normal",
  40985. height: math.unit(4 + 2/12, "feet"),
  40986. default: true
  40987. },
  40988. ]
  40989. ))
  40990. characterMakers.push(() => makeCharacter(
  40991. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40992. {
  40993. front: {
  40994. height: math.unit(1.7, "m"),
  40995. weight: math.unit(135, "lb"),
  40996. name: "Front",
  40997. image: {
  40998. source: "./media/characters/jade/front.svg",
  40999. extra: 1818/1767,
  41000. bottom: 32/1850
  41001. }
  41002. },
  41003. back: {
  41004. height: math.unit(1.7, "m"),
  41005. weight: math.unit(135, "lb"),
  41006. name: "Back",
  41007. image: {
  41008. source: "./media/characters/jade/back.svg",
  41009. extra: 1869/1809,
  41010. bottom: 35/1904
  41011. }
  41012. },
  41013. hand: {
  41014. height: math.unit(0.24, "m"),
  41015. name: "Hand",
  41016. image: {
  41017. source: "./media/characters/jade/hand.svg"
  41018. }
  41019. },
  41020. foot: {
  41021. height: math.unit(0.263, "m"),
  41022. name: "Foot",
  41023. image: {
  41024. source: "./media/characters/jade/foot.svg"
  41025. }
  41026. },
  41027. dick: {
  41028. height: math.unit(0.47, "m"),
  41029. name: "Dick",
  41030. image: {
  41031. source: "./media/characters/jade/dick.svg"
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Micro",
  41038. height: math.unit(22, "cm")
  41039. },
  41040. {
  41041. name: "Normal",
  41042. height: math.unit(1.7, "m"),
  41043. default: true
  41044. },
  41045. {
  41046. name: "Macro",
  41047. height: math.unit(152, "m")
  41048. },
  41049. ]
  41050. ))
  41051. characterMakers.push(() => makeCharacter(
  41052. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41053. {
  41054. front: {
  41055. height: math.unit(100, "miles"),
  41056. weight: math.unit(20000, "tons"),
  41057. name: "Front",
  41058. image: {
  41059. source: "./media/characters/cookie/front.svg",
  41060. extra: 1125/1070,
  41061. bottom: 30/1155
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Big",
  41068. height: math.unit(50, "feet")
  41069. },
  41070. {
  41071. name: "Macro",
  41072. height: math.unit(100, "miles"),
  41073. default: true
  41074. },
  41075. {
  41076. name: "Megamacro",
  41077. height: math.unit(90000, "miles")
  41078. },
  41079. ]
  41080. ))
  41081. characterMakers.push(() => makeCharacter(
  41082. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41083. {
  41084. front: {
  41085. height: math.unit(6, "feet"),
  41086. weight: math.unit(145, "lb"),
  41087. name: "Front",
  41088. image: {
  41089. source: "./media/characters/farzian/front.svg",
  41090. extra: 1902/1693,
  41091. bottom: 108/2010
  41092. }
  41093. },
  41094. },
  41095. [
  41096. {
  41097. name: "Macro",
  41098. height: math.unit(500, "feet"),
  41099. default: true
  41100. },
  41101. ]
  41102. ))
  41103. characterMakers.push(() => makeCharacter(
  41104. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41105. {
  41106. front: {
  41107. height: math.unit(3 + 6/12, "feet"),
  41108. weight: math.unit(50, "lb"),
  41109. name: "Front",
  41110. image: {
  41111. source: "./media/characters/kimberly-tilson/front.svg",
  41112. extra: 1400/1322,
  41113. bottom: 36/1436
  41114. }
  41115. },
  41116. back: {
  41117. height: math.unit(3 + 6/12, "feet"),
  41118. weight: math.unit(50, "lb"),
  41119. name: "Back",
  41120. image: {
  41121. source: "./media/characters/kimberly-tilson/back.svg",
  41122. extra: 1370/1307,
  41123. bottom: 20/1390
  41124. }
  41125. },
  41126. },
  41127. [
  41128. {
  41129. name: "Normal",
  41130. height: math.unit(3 + 6/12, "feet"),
  41131. default: true
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41137. {
  41138. front: {
  41139. height: math.unit(1148, "feet"),
  41140. weight: math.unit(34057, "lb"),
  41141. name: "Front",
  41142. image: {
  41143. source: "./media/characters/harthos/front.svg",
  41144. extra: 1391/1339,
  41145. bottom: 13/1404
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Macro",
  41152. height: math.unit(1148, "feet"),
  41153. default: true
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(15, "feet"),
  41162. name: "Front",
  41163. image: {
  41164. source: "./media/characters/hypatia/front.svg",
  41165. extra: 1653/1591,
  41166. bottom: 79/1732
  41167. }
  41168. },
  41169. },
  41170. [
  41171. {
  41172. name: "Normal",
  41173. height: math.unit(15, "feet")
  41174. },
  41175. {
  41176. name: "Small",
  41177. height: math.unit(300, "feet")
  41178. },
  41179. {
  41180. name: "Macro",
  41181. height: math.unit(2500, "feet"),
  41182. default: true
  41183. },
  41184. {
  41185. name: "Mega Macro",
  41186. height: math.unit(1500, "miles")
  41187. },
  41188. {
  41189. name: "Giga Macro",
  41190. height: math.unit(1.5e6, "miles")
  41191. },
  41192. ]
  41193. ))
  41194. characterMakers.push(() => makeCharacter(
  41195. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41196. {
  41197. front: {
  41198. height: math.unit(6, "feet"),
  41199. weight: math.unit(200, "lb"),
  41200. name: "Front",
  41201. image: {
  41202. source: "./media/characters/wulver/front.svg",
  41203. extra: 1724/1632,
  41204. bottom: 130/1854
  41205. }
  41206. },
  41207. frontNsfw: {
  41208. height: math.unit(6, "feet"),
  41209. weight: math.unit(200, "lb"),
  41210. name: "Front (NSFW)",
  41211. image: {
  41212. source: "./media/characters/wulver/front-nsfw.svg",
  41213. extra: 1724/1632,
  41214. bottom: 130/1854
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Human-Sized",
  41221. height: math.unit(6, "feet")
  41222. },
  41223. {
  41224. name: "Normal",
  41225. height: math.unit(4, "meters"),
  41226. default: true
  41227. },
  41228. {
  41229. name: "Large",
  41230. height: math.unit(6, "m")
  41231. },
  41232. ]
  41233. ))
  41234. characterMakers.push(() => makeCharacter(
  41235. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41236. {
  41237. front: {
  41238. height: math.unit(7, "feet"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/maru/front.svg",
  41242. extra: 1595/1570,
  41243. bottom: 0/1595
  41244. }
  41245. },
  41246. },
  41247. [
  41248. {
  41249. name: "Normal",
  41250. height: math.unit(7, "feet"),
  41251. default: true
  41252. },
  41253. {
  41254. name: "Macro",
  41255. height: math.unit(700, "feet")
  41256. },
  41257. {
  41258. name: "Mega Macro",
  41259. height: math.unit(25, "miles")
  41260. },
  41261. ]
  41262. ))
  41263. characterMakers.push(() => makeCharacter(
  41264. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41265. {
  41266. front: {
  41267. height: math.unit(6, "feet"),
  41268. weight: math.unit(170, "lb"),
  41269. name: "Front",
  41270. image: {
  41271. source: "./media/characters/xenon/front.svg",
  41272. extra: 1376/1305,
  41273. bottom: 56/1432
  41274. }
  41275. },
  41276. back: {
  41277. height: math.unit(6, "feet"),
  41278. weight: math.unit(170, "lb"),
  41279. name: "Back",
  41280. image: {
  41281. source: "./media/characters/xenon/back.svg",
  41282. extra: 1328/1259,
  41283. bottom: 95/1423
  41284. }
  41285. },
  41286. maw: {
  41287. height: math.unit(0.52, "feet"),
  41288. name: "Maw",
  41289. image: {
  41290. source: "./media/characters/xenon/maw.svg"
  41291. }
  41292. },
  41293. hand: {
  41294. height: math.unit(0.82, "feet"),
  41295. name: "Hand",
  41296. image: {
  41297. source: "./media/characters/xenon/hand.svg"
  41298. }
  41299. },
  41300. foot: {
  41301. height: math.unit(1.13, "feet"),
  41302. name: "Foot",
  41303. image: {
  41304. source: "./media/characters/xenon/foot.svg"
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Micro",
  41311. height: math.unit(0.8, "inches")
  41312. },
  41313. {
  41314. name: "Normal",
  41315. height: math.unit(6, "feet")
  41316. },
  41317. {
  41318. name: "Macro",
  41319. height: math.unit(50, "feet"),
  41320. default: true
  41321. },
  41322. {
  41323. name: "Macro+",
  41324. height: math.unit(250, "feet")
  41325. },
  41326. {
  41327. name: "Megamacro",
  41328. height: math.unit(1500, "feet")
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41334. {
  41335. front: {
  41336. height: math.unit(7 + 5/12, "feet"),
  41337. name: "Front",
  41338. image: {
  41339. source: "./media/characters/zane/front.svg",
  41340. extra: 1260/1203,
  41341. bottom: 94/1354
  41342. }
  41343. },
  41344. back: {
  41345. height: math.unit(5.05, "feet"),
  41346. name: "Back",
  41347. image: {
  41348. source: "./media/characters/zane/back.svg",
  41349. extra: 893/829,
  41350. bottom: 30/923
  41351. }
  41352. },
  41353. werewolf: {
  41354. height: math.unit(11, "feet"),
  41355. name: "Werewolf",
  41356. image: {
  41357. source: "./media/characters/zane/werewolf.svg",
  41358. extra: 1383/1323,
  41359. bottom: 89/1472
  41360. }
  41361. },
  41362. foot: {
  41363. height: math.unit(1.46, "feet"),
  41364. name: "Foot",
  41365. image: {
  41366. source: "./media/characters/zane/foot.svg"
  41367. }
  41368. },
  41369. footFront: {
  41370. height: math.unit(0.784, "feet"),
  41371. name: "Foot (Front)",
  41372. image: {
  41373. source: "./media/characters/zane/foot-front.svg"
  41374. }
  41375. },
  41376. dick: {
  41377. height: math.unit(1.95, "feet"),
  41378. name: "Dick",
  41379. image: {
  41380. source: "./media/characters/zane/dick.svg"
  41381. }
  41382. },
  41383. dickWerewolf: {
  41384. height: math.unit(3.77, "feet"),
  41385. name: "Dick (Werewolf)",
  41386. image: {
  41387. source: "./media/characters/zane/dick.svg"
  41388. }
  41389. },
  41390. },
  41391. [
  41392. {
  41393. name: "Normal",
  41394. height: math.unit(7 + 5/12, "feet"),
  41395. default: true
  41396. },
  41397. ]
  41398. ))
  41399. characterMakers.push(() => makeCharacter(
  41400. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41401. {
  41402. front: {
  41403. height: math.unit(6 + 2/12, "feet"),
  41404. weight: math.unit(284, "lb"),
  41405. name: "Front",
  41406. image: {
  41407. source: "./media/characters/benni-desparque/front.svg",
  41408. extra: 1353/1126,
  41409. bottom: 69/1422
  41410. }
  41411. },
  41412. },
  41413. [
  41414. {
  41415. name: "Civilian",
  41416. height: math.unit(6 + 2/12, "feet")
  41417. },
  41418. {
  41419. name: "Normal",
  41420. height: math.unit(98, "feet"),
  41421. default: true
  41422. },
  41423. {
  41424. name: "Kaiju Fighter",
  41425. height: math.unit(268, "feet")
  41426. },
  41427. ]
  41428. ))
  41429. characterMakers.push(() => makeCharacter(
  41430. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41431. {
  41432. front: {
  41433. height: math.unit(5, "feet"),
  41434. weight: math.unit(105, "lb"),
  41435. name: "Front",
  41436. image: {
  41437. source: "./media/characters/maxine/front.svg",
  41438. extra: 1386/1250,
  41439. bottom: 71/1457
  41440. }
  41441. },
  41442. },
  41443. [
  41444. {
  41445. name: "Normal",
  41446. height: math.unit(5, "feet"),
  41447. default: true
  41448. },
  41449. ]
  41450. ))
  41451. characterMakers.push(() => makeCharacter(
  41452. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41453. {
  41454. front: {
  41455. height: math.unit(11 + 7/12, "feet"),
  41456. weight: math.unit(9576, "lb"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/scaly/front.svg",
  41460. extra: 888/867,
  41461. bottom: 36/924
  41462. }
  41463. },
  41464. },
  41465. [
  41466. {
  41467. name: "Normal",
  41468. height: math.unit(11 + 7/12, "feet"),
  41469. default: true
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41475. {
  41476. front: {
  41477. height: math.unit(6 + 3/12, "feet"),
  41478. name: "Front",
  41479. image: {
  41480. source: "./media/characters/saelria/front.svg",
  41481. extra: 1243/1138,
  41482. bottom: 46/1289
  41483. }
  41484. },
  41485. },
  41486. [
  41487. {
  41488. name: "Micro",
  41489. height: math.unit(6, "inches"),
  41490. },
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(6 + 3/12, "feet"),
  41494. default: true
  41495. },
  41496. {
  41497. name: "Macro",
  41498. height: math.unit(25, "feet")
  41499. },
  41500. ]
  41501. ))
  41502. characterMakers.push(() => makeCharacter(
  41503. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41504. {
  41505. front: {
  41506. height: math.unit(80, "meters"),
  41507. weight: math.unit(7000, "tonnes"),
  41508. name: "Front",
  41509. image: {
  41510. source: "./media/characters/tef/front.svg",
  41511. extra: 2036/1991,
  41512. bottom: 54/2090
  41513. }
  41514. },
  41515. back: {
  41516. height: math.unit(80, "meters"),
  41517. weight: math.unit(7000, "tonnes"),
  41518. name: "Back",
  41519. image: {
  41520. source: "./media/characters/tef/back.svg",
  41521. extra: 2036/1991,
  41522. bottom: 54/2090
  41523. }
  41524. },
  41525. },
  41526. [
  41527. {
  41528. name: "Macro",
  41529. height: math.unit(80, "meters"),
  41530. default: true
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41536. {
  41537. front: {
  41538. height: math.unit(13, "feet"),
  41539. weight: math.unit(6, "tons"),
  41540. name: "Front",
  41541. image: {
  41542. source: "./media/characters/rover/front.svg",
  41543. extra: 1233/1156,
  41544. bottom: 50/1283
  41545. }
  41546. },
  41547. back: {
  41548. height: math.unit(13, "feet"),
  41549. weight: math.unit(6, "tons"),
  41550. name: "Back",
  41551. image: {
  41552. source: "./media/characters/rover/back.svg",
  41553. extra: 1327/1258,
  41554. bottom: 39/1366
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Normal",
  41561. height: math.unit(13, "feet"),
  41562. default: true
  41563. },
  41564. {
  41565. name: "Macro",
  41566. height: math.unit(1300, "feet")
  41567. },
  41568. {
  41569. name: "Megamacro",
  41570. height: math.unit(1300, "miles")
  41571. },
  41572. {
  41573. name: "Gigamacro",
  41574. height: math.unit(1300000, "miles")
  41575. },
  41576. ]
  41577. ))
  41578. characterMakers.push(() => makeCharacter(
  41579. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41580. {
  41581. front: {
  41582. height: math.unit(6, "feet"),
  41583. weight: math.unit(150, "lb"),
  41584. name: "Front",
  41585. image: {
  41586. source: "./media/characters/ariz/front.svg",
  41587. extra: 1401/1346,
  41588. bottom: 5/1406
  41589. }
  41590. },
  41591. },
  41592. [
  41593. {
  41594. name: "Normal",
  41595. height: math.unit(10, "feet"),
  41596. default: true
  41597. },
  41598. ]
  41599. ))
  41600. characterMakers.push(() => makeCharacter(
  41601. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41602. {
  41603. front: {
  41604. height: math.unit(6, "feet"),
  41605. weight: math.unit(140, "lb"),
  41606. name: "Front",
  41607. image: {
  41608. source: "./media/characters/sigrun/front.svg",
  41609. extra: 1418/1359,
  41610. bottom: 27/1445
  41611. }
  41612. },
  41613. },
  41614. [
  41615. {
  41616. name: "Macro",
  41617. height: math.unit(35, "feet"),
  41618. default: true
  41619. },
  41620. ]
  41621. ))
  41622. characterMakers.push(() => makeCharacter(
  41623. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41624. {
  41625. front: {
  41626. height: math.unit(6, "feet"),
  41627. weight: math.unit(150, "lb"),
  41628. name: "Front",
  41629. image: {
  41630. source: "./media/characters/numin/front.svg",
  41631. extra: 1433/1388,
  41632. bottom: 12/1445
  41633. }
  41634. },
  41635. },
  41636. [
  41637. {
  41638. name: "Macro",
  41639. height: math.unit(21.5, "km"),
  41640. default: true
  41641. },
  41642. ]
  41643. ))
  41644. characterMakers.push(() => makeCharacter(
  41645. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41646. {
  41647. front: {
  41648. height: math.unit(6, "feet"),
  41649. weight: math.unit(463, "lb"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/melwa/front.svg",
  41653. extra: 1307/1248,
  41654. bottom: 93/1400
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Macro",
  41661. height: math.unit(50, "meters"),
  41662. default: true
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41668. {
  41669. front: {
  41670. height: math.unit(325, "feet"),
  41671. name: "Front",
  41672. image: {
  41673. source: "./media/characters/zorkaiju/front.svg",
  41674. extra: 1955/1814,
  41675. bottom: 40/1995
  41676. }
  41677. },
  41678. frontExtended: {
  41679. height: math.unit(325, "feet"),
  41680. name: "Front (Extended)",
  41681. image: {
  41682. source: "./media/characters/zorkaiju/front-extended.svg",
  41683. extra: 1955/1814,
  41684. bottom: 40/1995
  41685. }
  41686. },
  41687. side: {
  41688. height: math.unit(325, "feet"),
  41689. name: "Side",
  41690. image: {
  41691. source: "./media/characters/zorkaiju/side.svg",
  41692. extra: 1495/1396,
  41693. bottom: 17/1512
  41694. }
  41695. },
  41696. sideExtended: {
  41697. height: math.unit(325, "feet"),
  41698. name: "Side (Extended)",
  41699. image: {
  41700. source: "./media/characters/zorkaiju/side-extended.svg",
  41701. extra: 1495/1396,
  41702. bottom: 17/1512
  41703. }
  41704. },
  41705. back: {
  41706. height: math.unit(325, "feet"),
  41707. name: "Back",
  41708. image: {
  41709. source: "./media/characters/zorkaiju/back.svg",
  41710. extra: 1959/1821,
  41711. bottom: 31/1990
  41712. }
  41713. },
  41714. backExtended: {
  41715. height: math.unit(325, "feet"),
  41716. name: "Back (Extended)",
  41717. image: {
  41718. source: "./media/characters/zorkaiju/back-extended.svg",
  41719. extra: 1959/1821,
  41720. bottom: 31/1990
  41721. }
  41722. },
  41723. hand: {
  41724. height: math.unit(58.4, "feet"),
  41725. name: "Hand",
  41726. image: {
  41727. source: "./media/characters/zorkaiju/hand.svg"
  41728. }
  41729. },
  41730. handExtended: {
  41731. height: math.unit(61.4, "feet"),
  41732. name: "Hand (Extended)",
  41733. image: {
  41734. source: "./media/characters/zorkaiju/hand-extended.svg"
  41735. }
  41736. },
  41737. foot: {
  41738. height: math.unit(95, "feet"),
  41739. name: "Foot",
  41740. image: {
  41741. source: "./media/characters/zorkaiju/foot.svg"
  41742. }
  41743. },
  41744. leftArm: {
  41745. height: math.unit(59, "feet"),
  41746. name: "Left Arm",
  41747. image: {
  41748. source: "./media/characters/zorkaiju/left-arm.svg"
  41749. }
  41750. },
  41751. rightArm: {
  41752. height: math.unit(59, "feet"),
  41753. name: "Right Arm",
  41754. image: {
  41755. source: "./media/characters/zorkaiju/right-arm.svg"
  41756. }
  41757. },
  41758. leftArmExtended: {
  41759. height: math.unit(59 * 1.033546, "feet"),
  41760. name: "Left Arm (Extended)",
  41761. image: {
  41762. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41763. }
  41764. },
  41765. rightArmExtended: {
  41766. height: math.unit(59 * 1.0496, "feet"),
  41767. name: "Right Arm (Extended)",
  41768. image: {
  41769. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41770. }
  41771. },
  41772. tail: {
  41773. height: math.unit(104, "feet"),
  41774. name: "Tail",
  41775. image: {
  41776. source: "./media/characters/zorkaiju/tail.svg"
  41777. }
  41778. },
  41779. tailExtended: {
  41780. height: math.unit(104, "feet"),
  41781. name: "Tail (Extended)",
  41782. image: {
  41783. source: "./media/characters/zorkaiju/tail-extended.svg"
  41784. }
  41785. },
  41786. tailBottom: {
  41787. height: math.unit(104, "feet"),
  41788. name: "Tail Bottom",
  41789. image: {
  41790. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41791. }
  41792. },
  41793. crystal: {
  41794. height: math.unit(27.54, "feet"),
  41795. name: "Crystal",
  41796. image: {
  41797. source: "./media/characters/zorkaiju/crystal.svg"
  41798. }
  41799. },
  41800. },
  41801. [
  41802. {
  41803. name: "Kaiju",
  41804. height: math.unit(325, "feet"),
  41805. default: true
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41811. {
  41812. front: {
  41813. height: math.unit(6 + 1/12, "feet"),
  41814. weight: math.unit(115, "lb"),
  41815. name: "Front",
  41816. image: {
  41817. source: "./media/characters/bailey-belfry/front.svg",
  41818. extra: 1240/1121,
  41819. bottom: 101/1341
  41820. }
  41821. },
  41822. },
  41823. [
  41824. {
  41825. name: "Normal",
  41826. height: math.unit(6 + 1/12, "feet"),
  41827. default: true
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41833. {
  41834. side: {
  41835. height: math.unit(4, "meters"),
  41836. weight: math.unit(250, "kg"),
  41837. name: "Side",
  41838. image: {
  41839. source: "./media/characters/blacky/side.svg",
  41840. extra: 1027/919,
  41841. bottom: 43/1070
  41842. }
  41843. },
  41844. maw: {
  41845. height: math.unit(1, "meters"),
  41846. name: "Maw",
  41847. image: {
  41848. source: "./media/characters/blacky/maw.svg"
  41849. }
  41850. },
  41851. paw: {
  41852. height: math.unit(1, "meters"),
  41853. name: "Paw",
  41854. image: {
  41855. source: "./media/characters/blacky/paw.svg"
  41856. }
  41857. },
  41858. },
  41859. [
  41860. {
  41861. name: "Normal",
  41862. height: math.unit(4, "meters"),
  41863. default: true
  41864. },
  41865. ]
  41866. ))
  41867. characterMakers.push(() => makeCharacter(
  41868. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41869. {
  41870. front: {
  41871. height: math.unit(170, "cm"),
  41872. weight: math.unit(66, "kg"),
  41873. name: "Front",
  41874. image: {
  41875. source: "./media/characters/thux-ei/front.svg",
  41876. extra: 1109/1011,
  41877. bottom: 8/1117
  41878. }
  41879. },
  41880. },
  41881. [
  41882. {
  41883. name: "Normal",
  41884. height: math.unit(170, "cm"),
  41885. default: true
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(5, "feet"),
  41894. weight: math.unit(120, "lb"),
  41895. name: "Front",
  41896. image: {
  41897. source: "./media/characters/roxanne-voltaire/front.svg",
  41898. extra: 1901/1779,
  41899. bottom: 53/1954
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Normal",
  41906. height: math.unit(5, "feet"),
  41907. default: true
  41908. },
  41909. {
  41910. name: "Giant",
  41911. height: math.unit(50, "feet")
  41912. },
  41913. {
  41914. name: "Titan",
  41915. height: math.unit(500, "feet")
  41916. },
  41917. {
  41918. name: "Macro",
  41919. height: math.unit(5000, "feet")
  41920. },
  41921. {
  41922. name: "Megamacro",
  41923. height: math.unit(50000, "feet")
  41924. },
  41925. {
  41926. name: "Gigamacro",
  41927. height: math.unit(500000, "feet")
  41928. },
  41929. {
  41930. name: "Teramacro",
  41931. height: math.unit(5e6, "feet")
  41932. },
  41933. ]
  41934. ))
  41935. characterMakers.push(() => makeCharacter(
  41936. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41937. {
  41938. front: {
  41939. height: math.unit(6 + 2/12, "feet"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/squeaks/front.svg",
  41943. extra: 1823/1768,
  41944. bottom: 138/1961
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Micro",
  41951. height: math.unit(0.5, "inches")
  41952. },
  41953. {
  41954. name: "Normal",
  41955. height: math.unit(6 + 2/12, "feet"),
  41956. default: true
  41957. },
  41958. {
  41959. name: "Macro",
  41960. height: math.unit(600, "feet")
  41961. },
  41962. ]
  41963. ))
  41964. characterMakers.push(() => makeCharacter(
  41965. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41966. {
  41967. front: {
  41968. height: math.unit(1.72, "meters"),
  41969. name: "Front",
  41970. image: {
  41971. source: "./media/characters/archinger/front.svg",
  41972. extra: 1861/1675,
  41973. bottom: 125/1986
  41974. }
  41975. },
  41976. back: {
  41977. height: math.unit(1.72, "meters"),
  41978. name: "Back",
  41979. image: {
  41980. source: "./media/characters/archinger/back.svg",
  41981. extra: 1844/1701,
  41982. bottom: 104/1948
  41983. }
  41984. },
  41985. cock: {
  41986. height: math.unit(0.59, "feet"),
  41987. name: "Cock",
  41988. image: {
  41989. source: "./media/characters/archinger/cock.svg"
  41990. }
  41991. },
  41992. },
  41993. [
  41994. {
  41995. name: "Normal",
  41996. height: math.unit(1.72, "meters"),
  41997. default: true
  41998. },
  41999. {
  42000. name: "Macro",
  42001. height: math.unit(84, "meters")
  42002. },
  42003. {
  42004. name: "Macro+",
  42005. height: math.unit(112, "meters")
  42006. },
  42007. {
  42008. name: "Macro++",
  42009. height: math.unit(960, "meters")
  42010. },
  42011. {
  42012. name: "Macro+++",
  42013. height: math.unit(4, "km")
  42014. },
  42015. {
  42016. name: "Macro++++",
  42017. height: math.unit(48, "km")
  42018. },
  42019. {
  42020. name: "Macro+++++",
  42021. height: math.unit(4500, "km")
  42022. },
  42023. ]
  42024. ))
  42025. characterMakers.push(() => makeCharacter(
  42026. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42027. {
  42028. front: {
  42029. height: math.unit(5 + 5/12, "feet"),
  42030. name: "Front",
  42031. image: {
  42032. source: "./media/characters/alsnapz/front.svg",
  42033. extra: 1157/1065,
  42034. bottom: 42/1199
  42035. }
  42036. },
  42037. },
  42038. [
  42039. {
  42040. name: "Normal",
  42041. height: math.unit(5 + 5/12, "feet"),
  42042. default: true
  42043. },
  42044. ]
  42045. ))
  42046. characterMakers.push(() => makeCharacter(
  42047. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42048. {
  42049. side: {
  42050. height: math.unit(3.2, "earths"),
  42051. name: "Side",
  42052. image: {
  42053. source: "./media/characters/mag/side.svg",
  42054. extra: 1331/1008,
  42055. bottom: 52/1383
  42056. }
  42057. },
  42058. wing: {
  42059. height: math.unit(1.94, "earths"),
  42060. name: "Wing",
  42061. image: {
  42062. source: "./media/characters/mag/wing.svg"
  42063. }
  42064. },
  42065. dick: {
  42066. height: math.unit(1.8, "earths"),
  42067. name: "Dick",
  42068. image: {
  42069. source: "./media/characters/mag/dick.svg"
  42070. }
  42071. },
  42072. ass: {
  42073. height: math.unit(1.33, "earths"),
  42074. name: "Ass",
  42075. image: {
  42076. source: "./media/characters/mag/ass.svg"
  42077. }
  42078. },
  42079. head: {
  42080. height: math.unit(1.1, "earths"),
  42081. name: "Head",
  42082. image: {
  42083. source: "./media/characters/mag/head.svg"
  42084. }
  42085. },
  42086. maw: {
  42087. height: math.unit(1.62, "earths"),
  42088. name: "Maw",
  42089. image: {
  42090. source: "./media/characters/mag/maw.svg"
  42091. }
  42092. },
  42093. },
  42094. [
  42095. {
  42096. name: "Small",
  42097. height: math.unit(162, "feet")
  42098. },
  42099. {
  42100. name: "Normal",
  42101. height: math.unit(3.2, "earths"),
  42102. default: true
  42103. },
  42104. ]
  42105. ))
  42106. characterMakers.push(() => makeCharacter(
  42107. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42108. {
  42109. front: {
  42110. height: math.unit(512, "feet"),
  42111. weight: math.unit(63509, "tonnes"),
  42112. name: "Front",
  42113. image: {
  42114. source: "./media/characters/vorrel-harroc/front.svg",
  42115. extra: 1075/1063,
  42116. bottom: 62/1137
  42117. }
  42118. },
  42119. },
  42120. [
  42121. {
  42122. name: "Normal",
  42123. height: math.unit(10, "feet")
  42124. },
  42125. {
  42126. name: "Macro",
  42127. height: math.unit(512, "feet"),
  42128. default: true
  42129. },
  42130. {
  42131. name: "Megamacro",
  42132. height: math.unit(256, "miles")
  42133. },
  42134. {
  42135. name: "Gigamacro",
  42136. height: math.unit(4096, "miles")
  42137. },
  42138. ]
  42139. ))
  42140. characterMakers.push(() => makeCharacter(
  42141. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42142. {
  42143. side: {
  42144. height: math.unit(50, "feet"),
  42145. name: "Side",
  42146. image: {
  42147. source: "./media/characters/froimar/side.svg",
  42148. extra: 855/638,
  42149. bottom: 99/954
  42150. }
  42151. },
  42152. },
  42153. [
  42154. {
  42155. name: "Macro",
  42156. height: math.unit(50, "feet"),
  42157. default: true
  42158. },
  42159. ]
  42160. ))
  42161. characterMakers.push(() => makeCharacter(
  42162. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42163. {
  42164. front: {
  42165. height: math.unit(210, "miles"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/timothy/front.svg",
  42169. extra: 1007/943,
  42170. bottom: 62/1069
  42171. }
  42172. },
  42173. frontSkirt: {
  42174. height: math.unit(210, "miles"),
  42175. name: "Front (Skirt)",
  42176. image: {
  42177. source: "./media/characters/timothy/front-skirt.svg",
  42178. extra: 1007/943,
  42179. bottom: 62/1069
  42180. }
  42181. },
  42182. frontCoat: {
  42183. height: math.unit(210, "miles"),
  42184. name: "Front (Coat)",
  42185. image: {
  42186. source: "./media/characters/timothy/front-coat.svg",
  42187. extra: 1007/943,
  42188. bottom: 62/1069
  42189. }
  42190. },
  42191. },
  42192. [
  42193. {
  42194. name: "Macro",
  42195. height: math.unit(210, "miles"),
  42196. default: true
  42197. },
  42198. {
  42199. name: "Megamacro",
  42200. height: math.unit(210000, "miles")
  42201. },
  42202. ]
  42203. ))
  42204. characterMakers.push(() => makeCharacter(
  42205. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42206. {
  42207. front: {
  42208. height: math.unit(188, "feet"),
  42209. name: "Front",
  42210. image: {
  42211. source: "./media/characters/pyotr/front.svg",
  42212. extra: 1912/1826,
  42213. bottom: 18/1930
  42214. }
  42215. },
  42216. },
  42217. [
  42218. {
  42219. name: "Macro",
  42220. height: math.unit(188, "feet"),
  42221. default: true
  42222. },
  42223. {
  42224. name: "Megamacro",
  42225. height: math.unit(8, "miles")
  42226. },
  42227. ]
  42228. ))
  42229. characterMakers.push(() => makeCharacter(
  42230. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42231. {
  42232. side: {
  42233. height: math.unit(10, "feet"),
  42234. weight: math.unit(4500, "lb"),
  42235. name: "Side",
  42236. image: {
  42237. source: "./media/characters/ackart/side.svg",
  42238. extra: 1776/1668,
  42239. bottom: 116/1892
  42240. }
  42241. },
  42242. },
  42243. [
  42244. {
  42245. name: "Normal",
  42246. height: math.unit(10, "feet"),
  42247. default: true
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42253. {
  42254. side: {
  42255. height: math.unit(21, "feet"),
  42256. name: "Side",
  42257. image: {
  42258. source: "./media/characters/nolow/side.svg",
  42259. extra: 1484/1434,
  42260. bottom: 85/1569
  42261. }
  42262. },
  42263. sideErect: {
  42264. height: math.unit(21, "feet"),
  42265. name: "Side-erect",
  42266. image: {
  42267. source: "./media/characters/nolow/side-erect.svg",
  42268. extra: 1484/1434,
  42269. bottom: 85/1569
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Regular",
  42276. height: math.unit(12, "feet")
  42277. },
  42278. {
  42279. name: "Big Chee",
  42280. height: math.unit(21, "feet"),
  42281. default: true
  42282. },
  42283. ]
  42284. ))
  42285. characterMakers.push(() => makeCharacter(
  42286. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42287. {
  42288. front: {
  42289. height: math.unit(7, "feet"),
  42290. weight: math.unit(250, "lb"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/nines/front.svg",
  42294. extra: 1741/1607,
  42295. bottom: 41/1782
  42296. }
  42297. },
  42298. side: {
  42299. height: math.unit(7, "feet"),
  42300. weight: math.unit(250, "lb"),
  42301. name: "Side",
  42302. image: {
  42303. source: "./media/characters/nines/side.svg",
  42304. extra: 1854/1735,
  42305. bottom: 93/1947
  42306. }
  42307. },
  42308. back: {
  42309. height: math.unit(7, "feet"),
  42310. weight: math.unit(250, "lb"),
  42311. name: "Back",
  42312. image: {
  42313. source: "./media/characters/nines/back.svg",
  42314. extra: 1748/1615,
  42315. bottom: 20/1768
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Megamacro",
  42322. height: math.unit(99, "km"),
  42323. default: true
  42324. },
  42325. ]
  42326. ))
  42327. characterMakers.push(() => makeCharacter(
  42328. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42329. {
  42330. front: {
  42331. height: math.unit(5 + 10/12, "feet"),
  42332. weight: math.unit(210, "lb"),
  42333. name: "Front",
  42334. image: {
  42335. source: "./media/characters/zenith/front.svg",
  42336. extra: 1531/1452,
  42337. bottom: 198/1729
  42338. }
  42339. },
  42340. back: {
  42341. height: math.unit(5 + 10/12, "feet"),
  42342. weight: math.unit(210, "lb"),
  42343. name: "Back",
  42344. image: {
  42345. source: "./media/characters/zenith/back.svg",
  42346. extra: 1571/1487,
  42347. bottom: 75/1646
  42348. }
  42349. },
  42350. },
  42351. [
  42352. {
  42353. name: "Normal",
  42354. height: math.unit(5 + 10/12, "feet"),
  42355. default: true
  42356. }
  42357. ]
  42358. ))
  42359. characterMakers.push(() => makeCharacter(
  42360. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42361. {
  42362. front: {
  42363. height: math.unit(4, "feet"),
  42364. weight: math.unit(60, "lb"),
  42365. name: "Front",
  42366. image: {
  42367. source: "./media/characters/jasper/front.svg",
  42368. extra: 1450/1379,
  42369. bottom: 19/1469
  42370. }
  42371. },
  42372. },
  42373. [
  42374. {
  42375. name: "Normal",
  42376. height: math.unit(4, "feet"),
  42377. default: true
  42378. },
  42379. ]
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(6 + 5/12, "feet"),
  42386. weight: math.unit(290, "lb"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/tiberius-thyben/front.svg",
  42390. extra: 757/739,
  42391. bottom: 39/796
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Micro",
  42398. height: math.unit(1.5, "inches")
  42399. },
  42400. {
  42401. name: "Normal",
  42402. height: math.unit(6 + 5/12, "feet"),
  42403. default: true
  42404. },
  42405. {
  42406. name: "Macro",
  42407. height: math.unit(300, "feet")
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(5 + 6/12, "feet"),
  42416. weight: math.unit(60, "kg"),
  42417. name: "Front",
  42418. image: {
  42419. source: "./media/characters/sabre/front.svg",
  42420. extra: 738/671,
  42421. bottom: 27/765
  42422. }
  42423. },
  42424. },
  42425. [
  42426. {
  42427. name: "Teeny",
  42428. height: math.unit(2, "inches")
  42429. },
  42430. {
  42431. name: "Smol",
  42432. height: math.unit(8, "inches")
  42433. },
  42434. {
  42435. name: "Normal",
  42436. height: math.unit(5 + 6/12, "feet"),
  42437. default: true
  42438. },
  42439. {
  42440. name: "Mini-Macro",
  42441. height: math.unit(15, "feet")
  42442. },
  42443. {
  42444. name: "Macro",
  42445. height: math.unit(50, "feet")
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(6 + 4/12, "feet"),
  42454. weight: math.unit(170, "lb"),
  42455. name: "Front",
  42456. image: {
  42457. source: "./media/characters/charlie/front.svg",
  42458. extra: 1348/1228,
  42459. bottom: 15/1363
  42460. }
  42461. },
  42462. },
  42463. [
  42464. {
  42465. name: "Macro",
  42466. height: math.unit(1700, "meters"),
  42467. default: true
  42468. },
  42469. {
  42470. name: "MegaMacro",
  42471. height: math.unit(20400, "meters")
  42472. },
  42473. ]
  42474. ))
  42475. characterMakers.push(() => makeCharacter(
  42476. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42477. {
  42478. front: {
  42479. height: math.unit(6 + 3/12, "feet"),
  42480. weight: math.unit(185, "lb"),
  42481. name: "Front",
  42482. image: {
  42483. source: "./media/characters/susan-grant/front.svg",
  42484. extra: 1351/1327,
  42485. bottom: 26/1377
  42486. }
  42487. },
  42488. },
  42489. [
  42490. {
  42491. name: "Normal",
  42492. height: math.unit(6 + 3/12, "feet"),
  42493. default: true
  42494. },
  42495. {
  42496. name: "Macro",
  42497. height: math.unit(225, "feet")
  42498. },
  42499. {
  42500. name: "Macro+",
  42501. height: math.unit(900, "feet")
  42502. },
  42503. {
  42504. name: "MegaMacro",
  42505. height: math.unit(14400, "feet")
  42506. },
  42507. ]
  42508. ))
  42509. characterMakers.push(() => makeCharacter(
  42510. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42511. {
  42512. front: {
  42513. height: math.unit(5 + 4/12, "feet"),
  42514. weight: math.unit(110, "lb"),
  42515. name: "Front",
  42516. image: {
  42517. source: "./media/characters/axel-isanov/front.svg",
  42518. extra: 1096/1065,
  42519. bottom: 13/1109
  42520. }
  42521. },
  42522. },
  42523. [
  42524. {
  42525. name: "Normal",
  42526. height: math.unit(5 + 4/12, "feet"),
  42527. default: true
  42528. },
  42529. ]
  42530. ))
  42531. characterMakers.push(() => makeCharacter(
  42532. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42533. {
  42534. front: {
  42535. height: math.unit(9, "feet"),
  42536. weight: math.unit(467, "lb"),
  42537. name: "Front",
  42538. image: {
  42539. source: "./media/characters/necahual/front.svg",
  42540. extra: 920/873,
  42541. bottom: 26/946
  42542. }
  42543. },
  42544. back: {
  42545. height: math.unit(9, "feet"),
  42546. weight: math.unit(467, "lb"),
  42547. name: "Back",
  42548. image: {
  42549. source: "./media/characters/necahual/back.svg",
  42550. extra: 930/884,
  42551. bottom: 16/946
  42552. }
  42553. },
  42554. frontUnderwear: {
  42555. height: math.unit(9, "feet"),
  42556. weight: math.unit(467, "lb"),
  42557. name: "Front (Underwear)",
  42558. image: {
  42559. source: "./media/characters/necahual/front-underwear.svg",
  42560. extra: 920/873,
  42561. bottom: 26/946
  42562. }
  42563. },
  42564. frontDressed: {
  42565. height: math.unit(9, "feet"),
  42566. weight: math.unit(467, "lb"),
  42567. name: "Front (Dressed)",
  42568. image: {
  42569. source: "./media/characters/necahual/front-dressed.svg",
  42570. extra: 920/873,
  42571. bottom: 26/946
  42572. }
  42573. },
  42574. },
  42575. [
  42576. {
  42577. name: "Comprsesed",
  42578. height: math.unit(9, "feet")
  42579. },
  42580. {
  42581. name: "Natural",
  42582. height: math.unit(15, "feet"),
  42583. default: true
  42584. },
  42585. {
  42586. name: "Boosted",
  42587. height: math.unit(50, "feet")
  42588. },
  42589. {
  42590. name: "Boosted+",
  42591. height: math.unit(150, "feet")
  42592. },
  42593. {
  42594. name: "Max",
  42595. height: math.unit(500, "feet")
  42596. },
  42597. ]
  42598. ))
  42599. characterMakers.push(() => makeCharacter(
  42600. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42601. {
  42602. front: {
  42603. height: math.unit(22 + 1/12, "feet"),
  42604. weight: math.unit(3200, "lb"),
  42605. name: "Front",
  42606. image: {
  42607. source: "./media/characters/theo-acacia/front.svg",
  42608. extra: 1796/1741,
  42609. bottom: 83/1879
  42610. }
  42611. },
  42612. frontUnderwear: {
  42613. height: math.unit(22 + 1/12, "feet"),
  42614. weight: math.unit(3200, "lb"),
  42615. name: "Front (Underwear)",
  42616. image: {
  42617. source: "./media/characters/theo-acacia/front-underwear.svg",
  42618. extra: 1796/1741,
  42619. bottom: 83/1879
  42620. }
  42621. },
  42622. frontNude: {
  42623. height: math.unit(22 + 1/12, "feet"),
  42624. weight: math.unit(3200, "lb"),
  42625. name: "Front (Nude)",
  42626. image: {
  42627. source: "./media/characters/theo-acacia/front-nude.svg",
  42628. extra: 1796/1741,
  42629. bottom: 83/1879
  42630. }
  42631. },
  42632. },
  42633. [
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(22 + 1/12, "feet"),
  42637. default: true
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42643. {
  42644. front: {
  42645. height: math.unit(20, "feet"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/astra/front.svg",
  42649. extra: 1850/1714,
  42650. bottom: 106/1956
  42651. }
  42652. },
  42653. frontUndressed: {
  42654. height: math.unit(20, "feet"),
  42655. name: "Front (Undressed)",
  42656. image: {
  42657. source: "./media/characters/astra/front-undressed.svg",
  42658. extra: 1926/1749,
  42659. bottom: 0/1926
  42660. }
  42661. },
  42662. hand: {
  42663. height: math.unit(1.53, "feet"),
  42664. name: "Hand",
  42665. image: {
  42666. source: "./media/characters/astra/hand.svg"
  42667. }
  42668. },
  42669. paw: {
  42670. height: math.unit(1.53, "feet"),
  42671. name: "Paw",
  42672. image: {
  42673. source: "./media/characters/astra/paw.svg"
  42674. }
  42675. },
  42676. },
  42677. [
  42678. {
  42679. name: "Smallest",
  42680. height: math.unit(20, "feet")
  42681. },
  42682. {
  42683. name: "Normal",
  42684. height: math.unit(1e9, "miles"),
  42685. default: true
  42686. },
  42687. {
  42688. name: "Larger",
  42689. height: math.unit(5, "multiverses")
  42690. },
  42691. {
  42692. name: "Largest",
  42693. height: math.unit(1e9, "multiverses")
  42694. },
  42695. ]
  42696. ))
  42697. characterMakers.push(() => makeCharacter(
  42698. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42699. {
  42700. front: {
  42701. height: math.unit(8, "feet"),
  42702. name: "Front",
  42703. image: {
  42704. source: "./media/characters/breanna/front.svg",
  42705. extra: 1912/1632,
  42706. bottom: 33/1945
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Smallest",
  42713. height: math.unit(8, "feet")
  42714. },
  42715. {
  42716. name: "Normal",
  42717. height: math.unit(1, "mile"),
  42718. default: true
  42719. },
  42720. {
  42721. name: "Maximum",
  42722. height: math.unit(1500000000000, "lightyears")
  42723. },
  42724. ]
  42725. ))
  42726. characterMakers.push(() => makeCharacter(
  42727. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42728. {
  42729. front: {
  42730. height: math.unit(5 + 11/12, "feet"),
  42731. weight: math.unit(155, "lb"),
  42732. name: "Front",
  42733. image: {
  42734. source: "./media/characters/cai/front.svg",
  42735. extra: 1823/1702,
  42736. bottom: 32/1855
  42737. }
  42738. },
  42739. back: {
  42740. height: math.unit(5 + 11/12, "feet"),
  42741. weight: math.unit(155, "lb"),
  42742. name: "Back",
  42743. image: {
  42744. source: "./media/characters/cai/back.svg",
  42745. extra: 1809/1708,
  42746. bottom: 31/1840
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(5 + 11/12, "feet"),
  42754. default: true
  42755. },
  42756. {
  42757. name: "Big",
  42758. height: math.unit(15, "feet")
  42759. },
  42760. {
  42761. name: "Macro",
  42762. height: math.unit(200, "feet")
  42763. },
  42764. ]
  42765. ))
  42766. characterMakers.push(() => makeCharacter(
  42767. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42768. {
  42769. front: {
  42770. height: math.unit(5 + 6/12, "feet"),
  42771. weight: math.unit(160, "lb"),
  42772. name: "Front",
  42773. image: {
  42774. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42775. extra: 1227/1174,
  42776. bottom: 37/1264
  42777. }
  42778. },
  42779. },
  42780. [
  42781. {
  42782. name: "Macro",
  42783. height: math.unit(444, "meters"),
  42784. default: true
  42785. },
  42786. ]
  42787. ))
  42788. characterMakers.push(() => makeCharacter(
  42789. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42790. {
  42791. front: {
  42792. height: math.unit(18 + 7/12, "feet"),
  42793. name: "Front",
  42794. image: {
  42795. source: "./media/characters/rex/front.svg",
  42796. extra: 1941/1807,
  42797. bottom: 66/2007
  42798. }
  42799. },
  42800. back: {
  42801. height: math.unit(18 + 7/12, "feet"),
  42802. name: "Back",
  42803. image: {
  42804. source: "./media/characters/rex/back.svg",
  42805. extra: 1937/1822,
  42806. bottom: 42/1979
  42807. }
  42808. },
  42809. boot: {
  42810. height: math.unit(3.45, "feet"),
  42811. name: "Boot",
  42812. image: {
  42813. source: "./media/characters/rex/boot.svg"
  42814. }
  42815. },
  42816. paw: {
  42817. height: math.unit(4.17, "feet"),
  42818. name: "Paw",
  42819. image: {
  42820. source: "./media/characters/rex/paw.svg"
  42821. }
  42822. },
  42823. head: {
  42824. height: math.unit(6.728, "feet"),
  42825. name: "Head",
  42826. image: {
  42827. source: "./media/characters/rex/head.svg"
  42828. }
  42829. },
  42830. },
  42831. [
  42832. {
  42833. name: "Nano",
  42834. height: math.unit(18 + 7/12, "feet")
  42835. },
  42836. {
  42837. name: "Micro",
  42838. height: math.unit(1.5, "megameters")
  42839. },
  42840. {
  42841. name: "Normal",
  42842. height: math.unit(440, "megameters"),
  42843. default: true
  42844. },
  42845. {
  42846. name: "Macro",
  42847. height: math.unit(2.5, "gigameters")
  42848. },
  42849. {
  42850. name: "Gigamacro",
  42851. height: math.unit(2, "galaxies")
  42852. },
  42853. ]
  42854. ))
  42855. characterMakers.push(() => makeCharacter(
  42856. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42857. {
  42858. side: {
  42859. height: math.unit(32, "feet"),
  42860. weight: math.unit(250000, "lb"),
  42861. name: "Side",
  42862. image: {
  42863. source: "./media/characters/silverwing/side.svg",
  42864. extra: 1100/1019,
  42865. bottom: 204/1304
  42866. }
  42867. },
  42868. },
  42869. [
  42870. {
  42871. name: "Normal",
  42872. height: math.unit(32, "feet"),
  42873. default: true
  42874. },
  42875. ]
  42876. ))
  42877. characterMakers.push(() => makeCharacter(
  42878. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42879. {
  42880. front: {
  42881. height: math.unit(6 + 6/12, "feet"),
  42882. weight: math.unit(350, "lb"),
  42883. name: "Front",
  42884. image: {
  42885. source: "./media/characters/tristan-hawthorne/front.svg",
  42886. extra: 1159/1124,
  42887. bottom: 37/1196
  42888. },
  42889. form: "labrador",
  42890. default: true
  42891. },
  42892. skunkFront: {
  42893. height: math.unit(4 + 6/12, "feet"),
  42894. weight: math.unit(120, "lb"),
  42895. name: "Front",
  42896. image: {
  42897. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42898. extra: 1609/1551,
  42899. bottom: 169/1778
  42900. },
  42901. form: "skunk",
  42902. default: true
  42903. },
  42904. },
  42905. [
  42906. {
  42907. name: "Normal",
  42908. height: math.unit(6 + 6/12, "feet"),
  42909. form: "labrador",
  42910. default: true
  42911. },
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(4 + 6/12, "feet"),
  42915. form: "skunk",
  42916. default: true
  42917. },
  42918. ],
  42919. {
  42920. "labrador": {
  42921. name: "Labrador",
  42922. default: true
  42923. },
  42924. "skunk": {
  42925. name: "Skunk"
  42926. }
  42927. }
  42928. ))
  42929. characterMakers.push(() => makeCharacter(
  42930. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42931. {
  42932. front: {
  42933. height: math.unit(5 + 11/12, "feet"),
  42934. weight: math.unit(190, "lb"),
  42935. name: "Front",
  42936. image: {
  42937. source: "./media/characters/mizu/front.svg",
  42938. extra: 1988/1788,
  42939. bottom: 14/2002
  42940. }
  42941. },
  42942. },
  42943. [
  42944. {
  42945. name: "Normal",
  42946. height: math.unit(5 + 11/12, "feet"),
  42947. default: true
  42948. },
  42949. ]
  42950. ))
  42951. characterMakers.push(() => makeCharacter(
  42952. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42953. {
  42954. front: {
  42955. height: math.unit(1.7, "feet"),
  42956. weight: math.unit(50, "lb"),
  42957. name: "Front",
  42958. image: {
  42959. source: "./media/characters/dechroma/front.svg",
  42960. extra: 1095/859,
  42961. bottom: 64/1159
  42962. }
  42963. },
  42964. },
  42965. [
  42966. {
  42967. name: "Normal",
  42968. height: math.unit(1.7, "feet"),
  42969. default: true
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42975. {
  42976. side: {
  42977. height: math.unit(30, "feet"),
  42978. name: "Side",
  42979. image: {
  42980. source: "./media/characters/veluren-thanazel/side.svg",
  42981. extra: 1611/633,
  42982. bottom: 118/1729
  42983. }
  42984. },
  42985. front: {
  42986. height: math.unit(30, "feet"),
  42987. name: "Front",
  42988. image: {
  42989. source: "./media/characters/veluren-thanazel/front.svg",
  42990. extra: 1486/636,
  42991. bottom: 238/1724
  42992. }
  42993. },
  42994. head: {
  42995. height: math.unit(21.4, "feet"),
  42996. name: "Head",
  42997. image: {
  42998. source: "./media/characters/veluren-thanazel/head.svg"
  42999. }
  43000. },
  43001. genitals: {
  43002. height: math.unit(19.4, "feet"),
  43003. name: "Genitals",
  43004. image: {
  43005. source: "./media/characters/veluren-thanazel/genitals.svg"
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Social",
  43012. height: math.unit(6, "feet")
  43013. },
  43014. {
  43015. name: "Play",
  43016. height: math.unit(12, "feet")
  43017. },
  43018. {
  43019. name: "True",
  43020. height: math.unit(30, "feet"),
  43021. default: true
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(7 + 6/12, "feet"),
  43030. weight: math.unit(500, "kg"),
  43031. name: "Front",
  43032. image: {
  43033. source: "./media/characters/arcturas/front.svg",
  43034. extra: 1700/1500,
  43035. bottom: 145/1845
  43036. }
  43037. },
  43038. },
  43039. [
  43040. {
  43041. name: "Normal",
  43042. height: math.unit(7 + 6/12, "feet"),
  43043. default: true
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43049. {
  43050. side: {
  43051. height: math.unit(6, "feet"),
  43052. weight: math.unit(2, "tons"),
  43053. name: "Side",
  43054. image: {
  43055. source: "./media/characters/vitaen/side.svg",
  43056. extra: 1157/617,
  43057. bottom: 122/1279
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(6, "feet"),
  43065. default: true
  43066. },
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43071. {
  43072. front: {
  43073. height: math.unit(19, "feet"),
  43074. name: "Front",
  43075. image: {
  43076. source: "./media/characters/fia-dreamweaver/front.svg",
  43077. extra: 1630/1504,
  43078. bottom: 25/1655
  43079. }
  43080. },
  43081. },
  43082. [
  43083. {
  43084. name: "Normal",
  43085. height: math.unit(19, "feet"),
  43086. default: true
  43087. },
  43088. ]
  43089. ))
  43090. characterMakers.push(() => makeCharacter(
  43091. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43092. {
  43093. front: {
  43094. height: math.unit(5 + 4/12, "feet"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/artan/front.svg",
  43098. extra: 1618/1535,
  43099. bottom: 46/1664
  43100. }
  43101. },
  43102. back: {
  43103. height: math.unit(5 + 4/12, "feet"),
  43104. name: "Back",
  43105. image: {
  43106. source: "./media/characters/artan/back.svg",
  43107. extra: 1618/1543,
  43108. bottom: 31/1649
  43109. }
  43110. },
  43111. },
  43112. [
  43113. {
  43114. name: "Normal",
  43115. height: math.unit(5 + 4/12, "feet"),
  43116. default: true
  43117. },
  43118. ]
  43119. ))
  43120. characterMakers.push(() => makeCharacter(
  43121. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43122. {
  43123. side: {
  43124. height: math.unit(182, "cm"),
  43125. weight: math.unit(1000, "lb"),
  43126. name: "Side",
  43127. image: {
  43128. source: "./media/characters/silver-dragon/side.svg",
  43129. extra: 710/287,
  43130. bottom: 88/798
  43131. }
  43132. },
  43133. },
  43134. [
  43135. {
  43136. name: "Normal",
  43137. height: math.unit(182, "cm"),
  43138. default: true
  43139. },
  43140. ]
  43141. ))
  43142. characterMakers.push(() => makeCharacter(
  43143. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43144. {
  43145. side: {
  43146. height: math.unit(6 + 6/12, "feet"),
  43147. weight: math.unit(1.5, "tons"),
  43148. name: "Side",
  43149. image: {
  43150. source: "./media/characters/zephyr/side.svg",
  43151. extra: 1433/586,
  43152. bottom: 109/1542
  43153. }
  43154. },
  43155. },
  43156. [
  43157. {
  43158. name: "Normal",
  43159. height: math.unit(6 + 6/12, "feet"),
  43160. default: true
  43161. },
  43162. ]
  43163. ))
  43164. characterMakers.push(() => makeCharacter(
  43165. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43166. {
  43167. side: {
  43168. height: math.unit(1, "feet"),
  43169. name: "Side",
  43170. image: {
  43171. source: "./media/characters/vixye/side.svg",
  43172. extra: 632/541,
  43173. bottom: 0/632
  43174. }
  43175. },
  43176. },
  43177. [
  43178. {
  43179. name: "Normal",
  43180. height: math.unit(1, "feet"),
  43181. default: true
  43182. },
  43183. {
  43184. name: "True",
  43185. height: math.unit(1e15, "multiverses")
  43186. },
  43187. ]
  43188. ))
  43189. characterMakers.push(() => makeCharacter(
  43190. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43191. {
  43192. front: {
  43193. height: math.unit(8 + 2/12, "feet"),
  43194. weight: math.unit(650, "lb"),
  43195. name: "Front",
  43196. image: {
  43197. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43198. extra: 1174/1137,
  43199. bottom: 82/1256
  43200. }
  43201. },
  43202. back: {
  43203. height: math.unit(8 + 2/12, "feet"),
  43204. weight: math.unit(650, "lb"),
  43205. name: "Back",
  43206. image: {
  43207. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43208. extra: 1204/1157,
  43209. bottom: 46/1250
  43210. }
  43211. },
  43212. },
  43213. [
  43214. {
  43215. name: "Wildform",
  43216. height: math.unit(8 + 2/12, "feet"),
  43217. default: true
  43218. },
  43219. ]
  43220. ))
  43221. characterMakers.push(() => makeCharacter(
  43222. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43223. {
  43224. front: {
  43225. height: math.unit(18, "feet"),
  43226. name: "Front",
  43227. image: {
  43228. source: "./media/characters/cyphin/front.svg",
  43229. extra: 970/886,
  43230. bottom: 42/1012
  43231. }
  43232. },
  43233. back: {
  43234. height: math.unit(18, "feet"),
  43235. name: "Back",
  43236. image: {
  43237. source: "./media/characters/cyphin/back.svg",
  43238. extra: 1009/894,
  43239. bottom: 24/1033
  43240. }
  43241. },
  43242. head: {
  43243. height: math.unit(5.05, "feet"),
  43244. name: "Head",
  43245. image: {
  43246. source: "./media/characters/cyphin/head.svg"
  43247. }
  43248. },
  43249. tailbud: {
  43250. height: math.unit(5, "feet"),
  43251. name: "Tailbud",
  43252. image: {
  43253. source: "./media/characters/cyphin/tailbud.svg"
  43254. }
  43255. },
  43256. },
  43257. [
  43258. ]
  43259. ))
  43260. characterMakers.push(() => makeCharacter(
  43261. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43262. {
  43263. side: {
  43264. height: math.unit(10, "feet"),
  43265. weight: math.unit(6, "tons"),
  43266. name: "Side",
  43267. image: {
  43268. source: "./media/characters/raijin/side.svg",
  43269. extra: 1529/613,
  43270. bottom: 337/1866
  43271. }
  43272. },
  43273. },
  43274. [
  43275. {
  43276. name: "Normal",
  43277. height: math.unit(10, "feet"),
  43278. default: true
  43279. },
  43280. ]
  43281. ))
  43282. characterMakers.push(() => makeCharacter(
  43283. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43284. {
  43285. side: {
  43286. height: math.unit(9, "feet"),
  43287. name: "Side",
  43288. image: {
  43289. source: "./media/characters/nilghais/side.svg",
  43290. extra: 1047/744,
  43291. bottom: 91/1138
  43292. }
  43293. },
  43294. head: {
  43295. height: math.unit(3.14, "feet"),
  43296. name: "Head",
  43297. image: {
  43298. source: "./media/characters/nilghais/head.svg"
  43299. }
  43300. },
  43301. mouth: {
  43302. height: math.unit(4.6, "feet"),
  43303. name: "Mouth",
  43304. image: {
  43305. source: "./media/characters/nilghais/mouth.svg"
  43306. }
  43307. },
  43308. wings: {
  43309. height: math.unit(24, "feet"),
  43310. name: "Wings",
  43311. image: {
  43312. source: "./media/characters/nilghais/wings.svg"
  43313. }
  43314. },
  43315. ass: {
  43316. height: math.unit(6.12, "feet"),
  43317. name: "Ass",
  43318. image: {
  43319. source: "./media/characters/nilghais/ass.svg"
  43320. }
  43321. },
  43322. },
  43323. [
  43324. {
  43325. name: "Normal",
  43326. height: math.unit(9, "feet"),
  43327. default: true
  43328. },
  43329. ]
  43330. ))
  43331. characterMakers.push(() => makeCharacter(
  43332. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43333. {
  43334. regular: {
  43335. height: math.unit(16 + 2/12, "feet"),
  43336. weight: math.unit(2300, "lb"),
  43337. name: "Regular",
  43338. image: {
  43339. source: "./media/characters/zolgar/regular.svg",
  43340. extra: 1246/1004,
  43341. bottom: 124/1370
  43342. }
  43343. },
  43344. boxers: {
  43345. height: math.unit(16 + 2/12, "feet"),
  43346. weight: math.unit(2300, "lb"),
  43347. name: "Boxers",
  43348. image: {
  43349. source: "./media/characters/zolgar/boxers.svg",
  43350. extra: 1246/1004,
  43351. bottom: 124/1370
  43352. }
  43353. },
  43354. armored: {
  43355. height: math.unit(16 + 2/12, "feet"),
  43356. weight: math.unit(2300, "lb"),
  43357. name: "Armored",
  43358. image: {
  43359. source: "./media/characters/zolgar/armored.svg",
  43360. extra: 1246/1004,
  43361. bottom: 124/1370
  43362. }
  43363. },
  43364. goth: {
  43365. height: math.unit(16 + 2/12, "feet"),
  43366. weight: math.unit(2300, "lb"),
  43367. name: "Goth",
  43368. image: {
  43369. source: "./media/characters/zolgar/goth.svg",
  43370. extra: 1246/1004,
  43371. bottom: 124/1370
  43372. }
  43373. },
  43374. },
  43375. [
  43376. {
  43377. name: "Shrunken Down",
  43378. height: math.unit(9 + 2/12, "feet")
  43379. },
  43380. {
  43381. name: "Normal",
  43382. height: math.unit(16 + 2/12, "feet"),
  43383. default: true
  43384. },
  43385. ]
  43386. ))
  43387. characterMakers.push(() => makeCharacter(
  43388. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43389. {
  43390. front: {
  43391. height: math.unit(6, "feet"),
  43392. weight: math.unit(168, "lb"),
  43393. name: "Front",
  43394. image: {
  43395. source: "./media/characters/luca/front.svg",
  43396. extra: 841/667,
  43397. bottom: 102/943
  43398. }
  43399. },
  43400. },
  43401. [
  43402. {
  43403. name: "Normal",
  43404. height: math.unit(6, "feet"),
  43405. default: true
  43406. },
  43407. ]
  43408. ))
  43409. characterMakers.push(() => makeCharacter(
  43410. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43411. {
  43412. side: {
  43413. height: math.unit(7 + 3/12, "feet"),
  43414. weight: math.unit(312, "lb"),
  43415. name: "Side",
  43416. image: {
  43417. source: "./media/characters/zezo/side.svg",
  43418. extra: 1192/1067,
  43419. bottom: 63/1255
  43420. }
  43421. },
  43422. },
  43423. [
  43424. {
  43425. name: "Normal",
  43426. height: math.unit(7 + 3/12, "feet"),
  43427. default: true
  43428. },
  43429. ]
  43430. ))
  43431. characterMakers.push(() => makeCharacter(
  43432. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43433. {
  43434. front: {
  43435. height: math.unit(5 + 5/12, "feet"),
  43436. weight: math.unit(170, "lb"),
  43437. name: "Front",
  43438. image: {
  43439. source: "./media/characters/mayso/front.svg",
  43440. extra: 1215/1108,
  43441. bottom: 16/1231
  43442. }
  43443. },
  43444. },
  43445. [
  43446. {
  43447. name: "Normal",
  43448. height: math.unit(5 + 5/12, "feet"),
  43449. default: true
  43450. },
  43451. ]
  43452. ))
  43453. characterMakers.push(() => makeCharacter(
  43454. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43455. {
  43456. front: {
  43457. height: math.unit(4 + 3/12, "feet"),
  43458. weight: math.unit(80, "lb"),
  43459. name: "Front",
  43460. image: {
  43461. source: "./media/characters/hess/front.svg",
  43462. extra: 1200/1123,
  43463. bottom: 16/1216
  43464. }
  43465. },
  43466. },
  43467. [
  43468. {
  43469. name: "Normal",
  43470. height: math.unit(4 + 3/12, "feet"),
  43471. default: true
  43472. },
  43473. ]
  43474. ))
  43475. characterMakers.push(() => makeCharacter(
  43476. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43477. {
  43478. front: {
  43479. height: math.unit(1.9, "meters"),
  43480. name: "Front",
  43481. image: {
  43482. source: "./media/characters/ashgar/front.svg",
  43483. extra: 1177/1146,
  43484. bottom: 99/1276
  43485. }
  43486. },
  43487. back: {
  43488. height: math.unit(1.9, "meters"),
  43489. name: "Back",
  43490. image: {
  43491. source: "./media/characters/ashgar/back.svg",
  43492. extra: 1201/1183,
  43493. bottom: 53/1254
  43494. }
  43495. },
  43496. feral: {
  43497. height: math.unit(1.4, "meters"),
  43498. name: "Feral",
  43499. image: {
  43500. source: "./media/characters/ashgar/feral.svg",
  43501. extra: 370/345,
  43502. bottom: 45/415
  43503. }
  43504. },
  43505. },
  43506. [
  43507. {
  43508. name: "Normal",
  43509. height: math.unit(1.9, "meters"),
  43510. default: true
  43511. },
  43512. ]
  43513. ))
  43514. characterMakers.push(() => makeCharacter(
  43515. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43516. {
  43517. regular: {
  43518. height: math.unit(6, "feet"),
  43519. weight: math.unit(220, "lb"),
  43520. name: "Regular",
  43521. image: {
  43522. source: "./media/characters/phillip/regular.svg",
  43523. extra: 1373/1277,
  43524. bottom: 75/1448
  43525. }
  43526. },
  43527. dressed: {
  43528. height: math.unit(6, "feet"),
  43529. weight: math.unit(220, "lb"),
  43530. name: "Dressed",
  43531. image: {
  43532. source: "./media/characters/phillip/dressed.svg",
  43533. extra: 1373/1277,
  43534. bottom: 75/1448
  43535. }
  43536. },
  43537. paw: {
  43538. height: math.unit(1.44, "feet"),
  43539. name: "Paw",
  43540. image: {
  43541. source: "./media/characters/phillip/paw.svg"
  43542. }
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Normal",
  43548. height: math.unit(6, "feet"),
  43549. default: true
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43555. {
  43556. side: {
  43557. height: math.unit(42, "feet"),
  43558. name: "Side",
  43559. image: {
  43560. source: "./media/characters/uvula/side.svg",
  43561. extra: 683/586,
  43562. bottom: 60/743
  43563. }
  43564. },
  43565. front: {
  43566. height: math.unit(42, "feet"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/uvula/front.svg",
  43570. extra: 705/613,
  43571. bottom: 54/759
  43572. }
  43573. },
  43574. maw: {
  43575. height: math.unit(23.5, "feet"),
  43576. name: "Maw",
  43577. image: {
  43578. source: "./media/characters/uvula/maw.svg"
  43579. }
  43580. },
  43581. },
  43582. [
  43583. {
  43584. name: "Original Size",
  43585. height: math.unit(14, "inches")
  43586. },
  43587. {
  43588. name: "Human Size",
  43589. height: math.unit(6, "feet")
  43590. },
  43591. {
  43592. name: "Big",
  43593. height: math.unit(42, "feet"),
  43594. default: true
  43595. },
  43596. {
  43597. name: "Bigger",
  43598. height: math.unit(100, "feet")
  43599. },
  43600. ]
  43601. ))
  43602. characterMakers.push(() => makeCharacter(
  43603. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43604. {
  43605. front: {
  43606. height: math.unit(5 + 11/12, "feet"),
  43607. name: "Front",
  43608. image: {
  43609. source: "./media/characters/lannah/front.svg",
  43610. extra: 1208/1113,
  43611. bottom: 97/1305
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(5 + 11/12, "feet"),
  43619. default: true
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43625. {
  43626. front: {
  43627. height: math.unit(6 + 3/12, "feet"),
  43628. weight: math.unit(3.5, "tons"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/emberflame/front.svg",
  43632. extra: 1198/672,
  43633. bottom: 82/1280
  43634. }
  43635. },
  43636. side: {
  43637. height: math.unit(6 + 3/12, "feet"),
  43638. weight: math.unit(3.5, "tons"),
  43639. name: "Side",
  43640. image: {
  43641. source: "./media/characters/emberflame/side.svg",
  43642. extra: 938/527,
  43643. bottom: 56/994
  43644. }
  43645. },
  43646. },
  43647. [
  43648. {
  43649. name: "Normal",
  43650. height: math.unit(6 + 3/12, "feet"),
  43651. default: true
  43652. },
  43653. ]
  43654. ))
  43655. characterMakers.push(() => makeCharacter(
  43656. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43657. {
  43658. side: {
  43659. height: math.unit(17.5, "feet"),
  43660. weight: math.unit(35, "tons"),
  43661. name: "Side",
  43662. image: {
  43663. source: "./media/characters/sophie-ambrose/side.svg",
  43664. extra: 1573/1242,
  43665. bottom: 71/1644
  43666. }
  43667. },
  43668. maw: {
  43669. height: math.unit(7.4, "feet"),
  43670. name: "Maw",
  43671. image: {
  43672. source: "./media/characters/sophie-ambrose/maw.svg"
  43673. }
  43674. },
  43675. },
  43676. [
  43677. {
  43678. name: "Normal",
  43679. height: math.unit(17.5, "feet"),
  43680. default: true
  43681. },
  43682. ]
  43683. ))
  43684. characterMakers.push(() => makeCharacter(
  43685. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43686. {
  43687. front: {
  43688. height: math.unit(280, "feet"),
  43689. weight: math.unit(550, "tons"),
  43690. name: "Front",
  43691. image: {
  43692. source: "./media/characters/king-mugi/front.svg",
  43693. extra: 1102/947,
  43694. bottom: 104/1206
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "King Mugi",
  43701. height: math.unit(280, "feet"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(64, "meters"),
  43711. name: "Front",
  43712. image: {
  43713. source: "./media/characters/nova-fox/front.svg",
  43714. extra: 1310/1246,
  43715. bottom: 65/1375
  43716. }
  43717. },
  43718. },
  43719. [
  43720. {
  43721. name: "Macro",
  43722. height: math.unit(64, "meters"),
  43723. default: true
  43724. },
  43725. ]
  43726. ))
  43727. characterMakers.push(() => makeCharacter(
  43728. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43729. {
  43730. front: {
  43731. height: math.unit(6 + 3/12, "feet"),
  43732. weight: math.unit(170, "lb"),
  43733. name: "Front",
  43734. image: {
  43735. source: "./media/characters/sam-bat/front.svg",
  43736. extra: 1601/1411,
  43737. bottom: 125/1726
  43738. }
  43739. },
  43740. back: {
  43741. height: math.unit(6 + 3/12, "feet"),
  43742. weight: math.unit(170, "lb"),
  43743. name: "Back",
  43744. image: {
  43745. source: "./media/characters/sam-bat/back.svg",
  43746. extra: 1577/1405,
  43747. bottom: 58/1635
  43748. }
  43749. },
  43750. },
  43751. [
  43752. {
  43753. name: "Normal",
  43754. height: math.unit(6 + 3/12, "feet"),
  43755. default: true
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43761. {
  43762. front: {
  43763. height: math.unit(59, "feet"),
  43764. weight: math.unit(40000, "lb"),
  43765. name: "Front",
  43766. image: {
  43767. source: "./media/characters/inari/front.svg",
  43768. extra: 1884/1350,
  43769. bottom: 95/1979
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Gigantamax",
  43776. height: math.unit(59, "feet"),
  43777. default: true
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43783. {
  43784. front: {
  43785. height: math.unit(5 + 8/12, "feet"),
  43786. name: "Front",
  43787. image: {
  43788. source: "./media/characters/elizabeth/front.svg",
  43789. extra: 1395/1298,
  43790. bottom: 54/1449
  43791. }
  43792. },
  43793. mouth: {
  43794. height: math.unit(1.97, "feet"),
  43795. name: "Mouth",
  43796. image: {
  43797. source: "./media/characters/elizabeth/mouth.svg"
  43798. }
  43799. },
  43800. foot: {
  43801. height: math.unit(1.17, "feet"),
  43802. name: "Foot",
  43803. image: {
  43804. source: "./media/characters/elizabeth/foot.svg"
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Normal",
  43811. height: math.unit(5 + 8/12, "feet"),
  43812. default: true
  43813. },
  43814. {
  43815. name: "Minimacro",
  43816. height: math.unit(18, "feet")
  43817. },
  43818. {
  43819. name: "Macro",
  43820. height: math.unit(180, "feet")
  43821. },
  43822. ]
  43823. ))
  43824. characterMakers.push(() => makeCharacter(
  43825. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43826. {
  43827. front: {
  43828. height: math.unit(5 + 2/12, "feet"),
  43829. name: "Front",
  43830. image: {
  43831. source: "./media/characters/october-gossamer/front.svg",
  43832. extra: 505/454,
  43833. bottom: 7/512
  43834. }
  43835. },
  43836. back: {
  43837. height: math.unit(5 + 2/12, "feet"),
  43838. name: "Back",
  43839. image: {
  43840. source: "./media/characters/october-gossamer/back.svg",
  43841. extra: 501/454,
  43842. bottom: 11/512
  43843. }
  43844. },
  43845. },
  43846. [
  43847. {
  43848. name: "Normal",
  43849. height: math.unit(5 + 2/12, "feet"),
  43850. default: true
  43851. },
  43852. ]
  43853. ))
  43854. characterMakers.push(() => makeCharacter(
  43855. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43856. {
  43857. front: {
  43858. height: math.unit(5, "feet"),
  43859. name: "Front",
  43860. image: {
  43861. source: "./media/characters/epiglottis/front.svg",
  43862. extra: 923/849,
  43863. bottom: 17/940
  43864. }
  43865. },
  43866. },
  43867. [
  43868. {
  43869. name: "Original Size",
  43870. height: math.unit(10, "inches")
  43871. },
  43872. {
  43873. name: "Human Size",
  43874. height: math.unit(5, "feet"),
  43875. default: true
  43876. },
  43877. {
  43878. name: "Big",
  43879. height: math.unit(25, "feet")
  43880. },
  43881. {
  43882. name: "Bigger",
  43883. height: math.unit(50, "feet")
  43884. },
  43885. {
  43886. name: "oh lawd",
  43887. height: math.unit(75, "feet")
  43888. },
  43889. ]
  43890. ))
  43891. characterMakers.push(() => makeCharacter(
  43892. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43893. {
  43894. front: {
  43895. height: math.unit(2 + 4/12, "feet"),
  43896. weight: math.unit(60, "lb"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/lerm/front.svg",
  43900. extra: 796/790,
  43901. bottom: 79/875
  43902. }
  43903. },
  43904. },
  43905. [
  43906. {
  43907. name: "Normal",
  43908. height: math.unit(2 + 4/12, "feet"),
  43909. default: true
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43915. {
  43916. front: {
  43917. height: math.unit(5.5, "feet"),
  43918. weight: math.unit(130, "lb"),
  43919. name: "Front",
  43920. image: {
  43921. source: "./media/characters/xena-nebadon/front.svg",
  43922. extra: 1828/1730,
  43923. bottom: 79/1907
  43924. }
  43925. },
  43926. },
  43927. [
  43928. {
  43929. name: "Tiny Puppy",
  43930. height: math.unit(3, "inches")
  43931. },
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(5.5, "feet"),
  43935. default: true
  43936. },
  43937. {
  43938. name: "Lotta Lady",
  43939. height: math.unit(12, "feet")
  43940. },
  43941. {
  43942. name: "Pretty Big",
  43943. height: math.unit(100, "feet")
  43944. },
  43945. {
  43946. name: "Big",
  43947. height: math.unit(500, "feet")
  43948. },
  43949. {
  43950. name: "Skyscraper Toys",
  43951. height: math.unit(2500, "feet")
  43952. },
  43953. {
  43954. name: "Plane Catcher",
  43955. height: math.unit(8, "miles")
  43956. },
  43957. {
  43958. name: "Planet Toys",
  43959. height: math.unit(15, "earths")
  43960. },
  43961. {
  43962. name: "Stardust",
  43963. height: math.unit(0.25, "galaxies")
  43964. },
  43965. {
  43966. name: "Snacks",
  43967. height: math.unit(70, "universes")
  43968. },
  43969. ]
  43970. ))
  43971. characterMakers.push(() => makeCharacter(
  43972. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43973. {
  43974. front: {
  43975. height: math.unit(1.6, "meters"),
  43976. weight: math.unit(60, "kg"),
  43977. name: "Front",
  43978. image: {
  43979. source: "./media/characters/bounty/front.svg",
  43980. extra: 1426/1308,
  43981. bottom: 15/1441
  43982. }
  43983. },
  43984. back: {
  43985. height: math.unit(1.6, "meters"),
  43986. weight: math.unit(60, "kg"),
  43987. name: "Back",
  43988. image: {
  43989. source: "./media/characters/bounty/back.svg",
  43990. extra: 1417/1307,
  43991. bottom: 8/1425
  43992. }
  43993. },
  43994. },
  43995. [
  43996. {
  43997. name: "Normal",
  43998. height: math.unit(1.6, "meters"),
  43999. default: true
  44000. },
  44001. {
  44002. name: "Macro",
  44003. height: math.unit(300, "meters")
  44004. },
  44005. ]
  44006. ))
  44007. characterMakers.push(() => makeCharacter(
  44008. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44009. {
  44010. front: {
  44011. height: math.unit(2 + 8/12, "feet"),
  44012. weight: math.unit(15, "lb"),
  44013. name: "Front",
  44014. image: {
  44015. source: "./media/characters/mochi/front.svg",
  44016. extra: 1022/852,
  44017. bottom: 435/1457
  44018. }
  44019. },
  44020. back: {
  44021. height: math.unit(2 + 8/12, "feet"),
  44022. weight: math.unit(15, "lb"),
  44023. name: "Back",
  44024. image: {
  44025. source: "./media/characters/mochi/back.svg",
  44026. extra: 1335/1119,
  44027. bottom: 39/1374
  44028. }
  44029. },
  44030. bird: {
  44031. height: math.unit(2 + 8/12, "feet"),
  44032. weight: math.unit(15, "lb"),
  44033. name: "Bird",
  44034. image: {
  44035. source: "./media/characters/mochi/bird.svg",
  44036. extra: 1251/1113,
  44037. bottom: 178/1429
  44038. }
  44039. },
  44040. kaiju: {
  44041. height: math.unit(154, "feet"),
  44042. weight: math.unit(1e7, "lb"),
  44043. name: "Kaiju",
  44044. image: {
  44045. source: "./media/characters/mochi/kaiju.svg",
  44046. extra: 460/324,
  44047. bottom: 40/500
  44048. }
  44049. },
  44050. head: {
  44051. height: math.unit(1.21, "feet"),
  44052. name: "Head",
  44053. image: {
  44054. source: "./media/characters/mochi/head.svg"
  44055. }
  44056. },
  44057. alternateTail: {
  44058. height: math.unit(2 + 8/12, "feet"),
  44059. weight: math.unit(45, "lb"),
  44060. name: "Alternate Tail",
  44061. image: {
  44062. source: "./media/characters/mochi/alternate-tail.svg",
  44063. extra: 139/76,
  44064. bottom: 45/184
  44065. }
  44066. },
  44067. },
  44068. [
  44069. {
  44070. name: "Micro",
  44071. height: math.unit(2, "inches")
  44072. },
  44073. {
  44074. name: "Normal",
  44075. height: math.unit(2 + 8/12, "feet"),
  44076. default: true
  44077. },
  44078. {
  44079. name: "Macro",
  44080. height: math.unit(106, "feet")
  44081. },
  44082. ]
  44083. ))
  44084. characterMakers.push(() => makeCharacter(
  44085. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44086. {
  44087. front: {
  44088. height: math.unit(5.67, "feet"),
  44089. weight: math.unit(135, "lb"),
  44090. name: "Front",
  44091. image: {
  44092. source: "./media/characters/sarel/front.svg",
  44093. extra: 865/788,
  44094. bottom: 97/962
  44095. }
  44096. },
  44097. back: {
  44098. height: math.unit(5.67, "feet"),
  44099. weight: math.unit(135, "lb"),
  44100. name: "Back",
  44101. image: {
  44102. source: "./media/characters/sarel/back.svg",
  44103. extra: 857/777,
  44104. bottom: 32/889
  44105. }
  44106. },
  44107. chozoan: {
  44108. height: math.unit(5.67, "feet"),
  44109. weight: math.unit(135, "lb"),
  44110. name: "Chozoan",
  44111. image: {
  44112. source: "./media/characters/sarel/chozoan.svg",
  44113. extra: 865/788,
  44114. bottom: 97/962
  44115. }
  44116. },
  44117. current: {
  44118. height: math.unit(5.67, "feet"),
  44119. weight: math.unit(135, "lb"),
  44120. name: "Current",
  44121. image: {
  44122. source: "./media/characters/sarel/current.svg",
  44123. extra: 865/788,
  44124. bottom: 97/962
  44125. }
  44126. },
  44127. head: {
  44128. height: math.unit(1.77, "feet"),
  44129. name: "Head",
  44130. image: {
  44131. source: "./media/characters/sarel/head.svg"
  44132. }
  44133. },
  44134. claws: {
  44135. height: math.unit(1.8, "feet"),
  44136. name: "Claws",
  44137. image: {
  44138. source: "./media/characters/sarel/claws.svg"
  44139. }
  44140. },
  44141. clawsAlt: {
  44142. height: math.unit(1.8, "feet"),
  44143. name: "Claws-alt",
  44144. image: {
  44145. source: "./media/characters/sarel/claws-alt.svg"
  44146. }
  44147. },
  44148. },
  44149. [
  44150. {
  44151. name: "Normal",
  44152. height: math.unit(5.67, "feet"),
  44153. default: true
  44154. },
  44155. ]
  44156. ))
  44157. characterMakers.push(() => makeCharacter(
  44158. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44159. {
  44160. front: {
  44161. height: math.unit(5500, "feet"),
  44162. name: "Front",
  44163. image: {
  44164. source: "./media/characters/alyonia/front.svg",
  44165. extra: 1200/1135,
  44166. bottom: 29/1229
  44167. }
  44168. },
  44169. back: {
  44170. height: math.unit(5500, "feet"),
  44171. name: "Back",
  44172. image: {
  44173. source: "./media/characters/alyonia/back.svg",
  44174. extra: 1205/1138,
  44175. bottom: 10/1215
  44176. }
  44177. },
  44178. },
  44179. [
  44180. {
  44181. name: "Small",
  44182. height: math.unit(10, "feet")
  44183. },
  44184. {
  44185. name: "Macro",
  44186. height: math.unit(500, "feet")
  44187. },
  44188. {
  44189. name: "Mega Macro",
  44190. height: math.unit(5500, "feet"),
  44191. default: true
  44192. },
  44193. {
  44194. name: "Mega Macro+",
  44195. height: math.unit(500000, "feet")
  44196. },
  44197. {
  44198. name: "Giga Macro",
  44199. height: math.unit(3000, "miles")
  44200. },
  44201. {
  44202. name: "Tera Macro",
  44203. height: math.unit(2.8e6, "miles")
  44204. },
  44205. {
  44206. name: "Galactic",
  44207. height: math.unit(120000, "lightyears")
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44213. {
  44214. werewolf: {
  44215. height: math.unit(8, "feet"),
  44216. weight: math.unit(425, "lb"),
  44217. name: "Werewolf",
  44218. image: {
  44219. source: "./media/characters/autumn/werewolf.svg",
  44220. extra: 2154/2031,
  44221. bottom: 160/2314
  44222. }
  44223. },
  44224. human: {
  44225. height: math.unit(5 + 8/12, "feet"),
  44226. weight: math.unit(150, "lb"),
  44227. name: "Human",
  44228. image: {
  44229. source: "./media/characters/autumn/human.svg",
  44230. extra: 1200/1149,
  44231. bottom: 30/1230
  44232. }
  44233. },
  44234. },
  44235. [
  44236. {
  44237. name: "Normal",
  44238. height: math.unit(8, "feet"),
  44239. default: true
  44240. },
  44241. ]
  44242. ))
  44243. characterMakers.push(() => makeCharacter(
  44244. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44245. {
  44246. front: {
  44247. height: math.unit(8 + 5/12, "feet"),
  44248. weight: math.unit(825, "lb"),
  44249. name: "Front",
  44250. image: {
  44251. source: "./media/characters/cobalt-charizard/front.svg",
  44252. extra: 1268/1155,
  44253. bottom: 122/1390
  44254. }
  44255. },
  44256. side: {
  44257. height: math.unit(8 + 5/12, "feet"),
  44258. weight: math.unit(825, "lb"),
  44259. name: "Side",
  44260. image: {
  44261. source: "./media/characters/cobalt-charizard/side.svg",
  44262. extra: 1348/1257,
  44263. bottom: 58/1406
  44264. }
  44265. },
  44266. gMax: {
  44267. height: math.unit(134 + 11/12, "feet"),
  44268. name: "G-Max",
  44269. image: {
  44270. source: "./media/characters/cobalt-charizard/g-max.svg",
  44271. extra: 1835/1541,
  44272. bottom: 151/1986
  44273. }
  44274. },
  44275. },
  44276. [
  44277. {
  44278. name: "Normal",
  44279. height: math.unit(8 + 5/12, "feet"),
  44280. default: true
  44281. },
  44282. ]
  44283. ))
  44284. characterMakers.push(() => makeCharacter(
  44285. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44286. {
  44287. front: {
  44288. height: math.unit(6 + 3/12, "feet"),
  44289. weight: math.unit(210, "lb"),
  44290. name: "Front",
  44291. image: {
  44292. source: "./media/characters/stella/front.svg",
  44293. extra: 3549/3335,
  44294. bottom: 51/3600
  44295. }
  44296. },
  44297. },
  44298. [
  44299. {
  44300. name: "Normal",
  44301. height: math.unit(6 + 3/12, "feet"),
  44302. default: true
  44303. },
  44304. ]
  44305. ))
  44306. characterMakers.push(() => makeCharacter(
  44307. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44308. {
  44309. front: {
  44310. height: math.unit(5, "feet"),
  44311. weight: math.unit(90, "lb"),
  44312. name: "Front",
  44313. image: {
  44314. source: "./media/characters/riley-bishop/front.svg",
  44315. extra: 1450/1428,
  44316. bottom: 152/1602
  44317. }
  44318. },
  44319. },
  44320. [
  44321. {
  44322. name: "Normal",
  44323. height: math.unit(5, "feet"),
  44324. default: true
  44325. },
  44326. ]
  44327. ))
  44328. characterMakers.push(() => makeCharacter(
  44329. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44330. {
  44331. side: {
  44332. height: math.unit(8 + 2/12, "feet"),
  44333. weight: math.unit(500, "kg"),
  44334. name: "Side",
  44335. image: {
  44336. source: "./media/characters/theo-arcanine/side.svg",
  44337. extra: 1342/1074,
  44338. bottom: 111/1453
  44339. }
  44340. },
  44341. },
  44342. [
  44343. {
  44344. name: "Normal",
  44345. height: math.unit(8 + 2/12, "feet"),
  44346. default: true
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44352. {
  44353. front: {
  44354. height: math.unit(4, "feet"),
  44355. name: "Front",
  44356. image: {
  44357. source: "./media/characters/kali/front.svg",
  44358. extra: 1921/1357,
  44359. bottom: 70/1991
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(4, "feet"),
  44367. default: true
  44368. },
  44369. {
  44370. name: "Macro",
  44371. height: math.unit(32, "meters")
  44372. },
  44373. {
  44374. name: "Macro+",
  44375. height: math.unit(150, "meters")
  44376. },
  44377. {
  44378. name: "Megamacro",
  44379. height: math.unit(7500, "meters")
  44380. },
  44381. {
  44382. name: "Megamacro+",
  44383. height: math.unit(80, "kilometers")
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44389. {
  44390. side: {
  44391. height: math.unit(5 + 11/12, "feet"),
  44392. weight: math.unit(236, "lb"),
  44393. name: "Side",
  44394. image: {
  44395. source: "./media/characters/gapp/side.svg",
  44396. extra: 775/340,
  44397. bottom: 58/833
  44398. }
  44399. },
  44400. mouth: {
  44401. height: math.unit(2.98, "feet"),
  44402. name: "Mouth",
  44403. image: {
  44404. source: "./media/characters/gapp/mouth.svg"
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "Normal",
  44411. height: math.unit(5 + 1/12, "feet"),
  44412. default: true
  44413. },
  44414. ]
  44415. ))
  44416. characterMakers.push(() => makeCharacter(
  44417. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44418. {
  44419. front: {
  44420. height: math.unit(6, "feet"),
  44421. name: "Front",
  44422. image: {
  44423. source: "./media/characters/persephone/front.svg",
  44424. extra: 1895/1717,
  44425. bottom: 96/1991
  44426. }
  44427. },
  44428. back: {
  44429. height: math.unit(6, "feet"),
  44430. name: "Back",
  44431. image: {
  44432. source: "./media/characters/persephone/back.svg",
  44433. extra: 1868/1679,
  44434. bottom: 26/1894
  44435. }
  44436. },
  44437. casual: {
  44438. height: math.unit(6, "feet"),
  44439. name: "Casual",
  44440. image: {
  44441. source: "./media/characters/persephone/casual.svg",
  44442. extra: 1713/1541,
  44443. bottom: 76/1789
  44444. }
  44445. },
  44446. },
  44447. [
  44448. {
  44449. name: "Human Size",
  44450. height: math.unit(6, "feet")
  44451. },
  44452. {
  44453. name: "Big Steppy",
  44454. height: math.unit(600, "meters"),
  44455. default: true
  44456. },
  44457. {
  44458. name: "Galaxy Brain",
  44459. height: math.unit(1, "zettameter")
  44460. },
  44461. ]
  44462. ))
  44463. characterMakers.push(() => makeCharacter(
  44464. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44465. {
  44466. front: {
  44467. height: math.unit(1.85, "meters"),
  44468. name: "Front",
  44469. image: {
  44470. source: "./media/characters/riley-foxthing/front.svg",
  44471. extra: 1495/1354,
  44472. bottom: 122/1617
  44473. }
  44474. },
  44475. frontAlt: {
  44476. height: math.unit(1.85, "meters"),
  44477. name: "Front (Alt)",
  44478. image: {
  44479. source: "./media/characters/riley-foxthing/front-alt.svg",
  44480. extra: 1572/1389,
  44481. bottom: 116/1688
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal Sized",
  44488. height: math.unit(1.85, "meters"),
  44489. default: true
  44490. },
  44491. {
  44492. name: "Quite Sizable",
  44493. height: math.unit(5, "meters")
  44494. },
  44495. {
  44496. name: "Rather Large",
  44497. height: math.unit(20, "meters")
  44498. },
  44499. {
  44500. name: "Macro",
  44501. height: math.unit(450, "meters")
  44502. },
  44503. {
  44504. name: "Giga",
  44505. height: math.unit(5, "km")
  44506. },
  44507. ]
  44508. ))
  44509. characterMakers.push(() => makeCharacter(
  44510. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44511. {
  44512. front: {
  44513. height: math.unit(6, "feet"),
  44514. weight: math.unit(200, "lb"),
  44515. name: "Front",
  44516. image: {
  44517. source: "./media/characters/blizzard/front.svg",
  44518. extra: 1136/990,
  44519. bottom: 136/1272
  44520. }
  44521. },
  44522. back: {
  44523. height: math.unit(6, "feet"),
  44524. weight: math.unit(200, "lb"),
  44525. name: "Back",
  44526. image: {
  44527. source: "./media/characters/blizzard/back.svg",
  44528. extra: 1175/1034,
  44529. bottom: 97/1272
  44530. }
  44531. },
  44532. sitting: {
  44533. height: math.unit(3.725, "feet"),
  44534. weight: math.unit(200, "lb"),
  44535. name: "Sitting",
  44536. image: {
  44537. source: "./media/characters/blizzard/sitting.svg",
  44538. extra: 581/485,
  44539. bottom: 90/671
  44540. }
  44541. },
  44542. frontWizard: {
  44543. height: math.unit(7.9, "feet"),
  44544. weight: math.unit(200, "lb"),
  44545. name: "Front (Wizard)",
  44546. image: {
  44547. source: "./media/characters/blizzard/front-wizard.svg"
  44548. }
  44549. },
  44550. backWizard: {
  44551. height: math.unit(7.9, "feet"),
  44552. weight: math.unit(200, "lb"),
  44553. name: "Back (Wizard)",
  44554. image: {
  44555. source: "./media/characters/blizzard/back-wizard.svg"
  44556. }
  44557. },
  44558. frontNsfw: {
  44559. height: math.unit(6, "feet"),
  44560. weight: math.unit(200, "lb"),
  44561. name: "Front (NSFW)",
  44562. image: {
  44563. source: "./media/characters/blizzard/front-nsfw.svg",
  44564. extra: 1136/990,
  44565. bottom: 136/1272
  44566. }
  44567. },
  44568. backNsfw: {
  44569. height: math.unit(6, "feet"),
  44570. weight: math.unit(200, "lb"),
  44571. name: "Back (NSFW)",
  44572. image: {
  44573. source: "./media/characters/blizzard/back-nsfw.svg",
  44574. extra: 1175/1034,
  44575. bottom: 97/1272
  44576. }
  44577. },
  44578. sittingNsfw: {
  44579. height: math.unit(3.725, "feet"),
  44580. weight: math.unit(200, "lb"),
  44581. name: "Sitting (NSFW)",
  44582. image: {
  44583. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44584. extra: 581/485,
  44585. bottom: 90/671
  44586. }
  44587. },
  44588. wizardFrontNsfw: {
  44589. height: math.unit(7.9, "feet"),
  44590. weight: math.unit(200, "lb"),
  44591. name: "Wizard (Front, NSFW)",
  44592. image: {
  44593. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44594. }
  44595. },
  44596. },
  44597. [
  44598. {
  44599. name: "Normal",
  44600. height: math.unit(6, "feet"),
  44601. default: true
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44607. {
  44608. front: {
  44609. height: math.unit(5 + 2/12, "feet"),
  44610. name: "Front",
  44611. image: {
  44612. source: "./media/characters/lumi/front.svg",
  44613. extra: 1328/1268,
  44614. bottom: 103/1431
  44615. }
  44616. },
  44617. back: {
  44618. height: math.unit(5 + 2/12, "feet"),
  44619. name: "Back",
  44620. image: {
  44621. source: "./media/characters/lumi/back.svg",
  44622. extra: 1381/1327,
  44623. bottom: 43/1424
  44624. }
  44625. },
  44626. },
  44627. [
  44628. {
  44629. name: "Normal",
  44630. height: math.unit(5 + 2/12, "feet"),
  44631. default: true
  44632. },
  44633. ]
  44634. ))
  44635. characterMakers.push(() => makeCharacter(
  44636. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44637. {
  44638. front: {
  44639. height: math.unit(5 + 9/12, "feet"),
  44640. name: "Front",
  44641. image: {
  44642. source: "./media/characters/aliya-cotton/front.svg",
  44643. extra: 577/564,
  44644. bottom: 29/606
  44645. }
  44646. },
  44647. },
  44648. [
  44649. {
  44650. name: "Normal",
  44651. height: math.unit(5 + 9/12, "feet"),
  44652. default: true
  44653. },
  44654. ]
  44655. ))
  44656. characterMakers.push(() => makeCharacter(
  44657. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44658. {
  44659. front: {
  44660. height: math.unit(2.7, "meters"),
  44661. weight: math.unit(25000, "lb"),
  44662. name: "Front",
  44663. image: {
  44664. source: "./media/characters/noah-luxray/front.svg",
  44665. extra: 1644/825,
  44666. bottom: 339/1983
  44667. }
  44668. },
  44669. side: {
  44670. height: math.unit(2.97, "meters"),
  44671. weight: math.unit(25000, "lb"),
  44672. name: "Side",
  44673. image: {
  44674. source: "./media/characters/noah-luxray/side.svg",
  44675. extra: 1319/650,
  44676. bottom: 163/1482
  44677. }
  44678. },
  44679. dick: {
  44680. height: math.unit(7.4, "feet"),
  44681. weight: math.unit(2500, "lb"),
  44682. name: "Dick",
  44683. image: {
  44684. source: "./media/characters/noah-luxray/dick.svg"
  44685. }
  44686. },
  44687. dickAlt: {
  44688. height: math.unit(10.83, "feet"),
  44689. weight: math.unit(2500, "lb"),
  44690. name: "Dick-alt",
  44691. image: {
  44692. source: "./media/characters/noah-luxray/dick-alt.svg"
  44693. }
  44694. },
  44695. },
  44696. [
  44697. {
  44698. name: "BIG",
  44699. height: math.unit(2.7, "meters"),
  44700. default: true
  44701. },
  44702. ]
  44703. ))
  44704. characterMakers.push(() => makeCharacter(
  44705. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44706. {
  44707. standing: {
  44708. height: math.unit(183, "cm"),
  44709. weight: math.unit(68, "kg"),
  44710. name: "Standing",
  44711. image: {
  44712. source: "./media/characters/arion/standing.svg",
  44713. extra: 1869/1807,
  44714. bottom: 93/1962
  44715. }
  44716. },
  44717. reclining: {
  44718. height: math.unit(70.5, "cm"),
  44719. weight: math.unit(68, "lb"),
  44720. name: "Reclining",
  44721. image: {
  44722. source: "./media/characters/arion/reclining.svg",
  44723. extra: 937/870,
  44724. bottom: 63/1000
  44725. }
  44726. },
  44727. },
  44728. [
  44729. {
  44730. name: "Colossus Size, Low",
  44731. height: math.unit(33, "meters"),
  44732. default: true
  44733. },
  44734. {
  44735. name: "Colossus Size, Mid",
  44736. height: math.unit(52, "meters")
  44737. },
  44738. {
  44739. name: "Colossus Size, High",
  44740. height: math.unit(60, "meters")
  44741. },
  44742. {
  44743. name: "Titan Size, Low",
  44744. height: math.unit(91, "meters"),
  44745. },
  44746. {
  44747. name: "Titan Size, Mid",
  44748. height: math.unit(122, "meters")
  44749. },
  44750. {
  44751. name: "Titan Size, High",
  44752. height: math.unit(162, "meters")
  44753. },
  44754. ]
  44755. ))
  44756. characterMakers.push(() => makeCharacter(
  44757. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44758. {
  44759. front: {
  44760. height: math.unit(53, "meters"),
  44761. name: "Front",
  44762. image: {
  44763. source: "./media/characters/stellar-marbey/front.svg",
  44764. extra: 1913/1805,
  44765. bottom: 92/2005
  44766. }
  44767. },
  44768. back: {
  44769. height: math.unit(53, "meters"),
  44770. name: "Back",
  44771. image: {
  44772. source: "./media/characters/stellar-marbey/back.svg",
  44773. extra: 1960/1851,
  44774. bottom: 28/1988
  44775. }
  44776. },
  44777. mouth: {
  44778. height: math.unit(3.5, "meters"),
  44779. name: "Mouth",
  44780. image: {
  44781. source: "./media/characters/stellar-marbey/mouth.svg"
  44782. }
  44783. },
  44784. },
  44785. [
  44786. {
  44787. name: "Macro",
  44788. height: math.unit(53, "meters"),
  44789. default: true
  44790. },
  44791. ]
  44792. ))
  44793. characterMakers.push(() => makeCharacter(
  44794. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44795. {
  44796. front: {
  44797. height: math.unit(8 + 1/12, "feet"),
  44798. weight: math.unit(233, "lb"),
  44799. name: "Front",
  44800. image: {
  44801. source: "./media/characters/matsu/front.svg",
  44802. extra: 832/772,
  44803. bottom: 40/872
  44804. }
  44805. },
  44806. back: {
  44807. height: math.unit(8 + 1/12, "feet"),
  44808. weight: math.unit(233, "lb"),
  44809. name: "Back",
  44810. image: {
  44811. source: "./media/characters/matsu/back.svg",
  44812. extra: 839/780,
  44813. bottom: 47/886
  44814. }
  44815. },
  44816. },
  44817. [
  44818. {
  44819. name: "Normal",
  44820. height: math.unit(8 + 1/12, "feet"),
  44821. default: true
  44822. },
  44823. ]
  44824. ))
  44825. characterMakers.push(() => makeCharacter(
  44826. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44827. {
  44828. front: {
  44829. height: math.unit(4, "feet"),
  44830. weight: math.unit(148, "lb"),
  44831. name: "Front",
  44832. image: {
  44833. source: "./media/characters/thiz/front.svg",
  44834. extra: 1913/1748,
  44835. bottom: 62/1975
  44836. }
  44837. },
  44838. },
  44839. [
  44840. {
  44841. name: "Normal",
  44842. height: math.unit(4, "feet"),
  44843. default: true
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44849. {
  44850. front: {
  44851. height: math.unit(7 + 6/12, "feet"),
  44852. weight: math.unit(267, "lb"),
  44853. name: "Front",
  44854. image: {
  44855. source: "./media/characters/marcel/front.svg",
  44856. extra: 1221/1096,
  44857. bottom: 76/1297
  44858. }
  44859. },
  44860. },
  44861. [
  44862. {
  44863. name: "Normal",
  44864. height: math.unit(7 + 6/12, "feet"),
  44865. default: true
  44866. },
  44867. ]
  44868. ))
  44869. characterMakers.push(() => makeCharacter(
  44870. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44871. {
  44872. side: {
  44873. height: math.unit(42, "meters"),
  44874. name: "Side",
  44875. image: {
  44876. source: "./media/characters/flake/side.svg",
  44877. extra: 1525/1306,
  44878. bottom: 209/1734
  44879. }
  44880. },
  44881. },
  44882. [
  44883. {
  44884. name: "Normal",
  44885. height: math.unit(42, "meters"),
  44886. default: true
  44887. },
  44888. ]
  44889. ))
  44890. characterMakers.push(() => makeCharacter(
  44891. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44892. {
  44893. dressed: {
  44894. height: math.unit(6 + 4/12, "feet"),
  44895. weight: math.unit(520, "lb"),
  44896. name: "Dressed",
  44897. image: {
  44898. source: "./media/characters/someonne/dressed.svg",
  44899. extra: 1020/1010,
  44900. bottom: 178/1198
  44901. }
  44902. },
  44903. undressed: {
  44904. height: math.unit(6 + 4/12, "feet"),
  44905. weight: math.unit(520, "lb"),
  44906. name: "Undressed",
  44907. image: {
  44908. source: "./media/characters/someonne/undressed.svg",
  44909. extra: 1019/1014,
  44910. bottom: 169/1188
  44911. }
  44912. },
  44913. },
  44914. [
  44915. {
  44916. name: "Normal",
  44917. height: math.unit(6 + 4/12, "feet"),
  44918. default: true
  44919. },
  44920. ]
  44921. ))
  44922. characterMakers.push(() => makeCharacter(
  44923. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44924. {
  44925. front: {
  44926. height: math.unit(3, "feet"),
  44927. weight: math.unit(30, "lb"),
  44928. name: "Front",
  44929. image: {
  44930. source: "./media/characters/till/front.svg",
  44931. extra: 892/823,
  44932. bottom: 55/947
  44933. }
  44934. },
  44935. },
  44936. [
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(3, "feet"),
  44940. default: true
  44941. },
  44942. ]
  44943. ))
  44944. characterMakers.push(() => makeCharacter(
  44945. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44946. {
  44947. front: {
  44948. height: math.unit(9 + 8/12, "feet"),
  44949. weight: math.unit(800, "lb"),
  44950. name: "Front",
  44951. image: {
  44952. source: "./media/characters/sydney-heki/front.svg",
  44953. extra: 1360/1300,
  44954. bottom: 22/1382
  44955. }
  44956. },
  44957. back: {
  44958. height: math.unit(9 + 8/12, "feet"),
  44959. weight: math.unit(800, "lb"),
  44960. name: "Back",
  44961. image: {
  44962. source: "./media/characters/sydney-heki/back.svg",
  44963. extra: 1356/1293,
  44964. bottom: 12/1368
  44965. }
  44966. },
  44967. frontDressed: {
  44968. height: math.unit(9 + 8/12, "feet"),
  44969. weight: math.unit(800, "lb"),
  44970. name: "Front-dressed",
  44971. image: {
  44972. source: "./media/characters/sydney-heki/front-dressed.svg",
  44973. extra: 1360/1300,
  44974. bottom: 22/1382
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(9 + 8/12, "feet"),
  44982. default: true
  44983. },
  44984. {
  44985. name: "Macro",
  44986. height: math.unit(500, "feet")
  44987. },
  44988. {
  44989. name: "Megamacro",
  44990. height: math.unit(3.6, "miles")
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44996. {
  44997. front: {
  44998. height: math.unit(200, "cm"),
  44999. weight: math.unit(250, "lb"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/fowler-karlsson/front.svg",
  45003. extra: 897/845,
  45004. bottom: 123/1020
  45005. }
  45006. },
  45007. back: {
  45008. height: math.unit(200, "cm"),
  45009. weight: math.unit(250, "lb"),
  45010. name: "Back",
  45011. image: {
  45012. source: "./media/characters/fowler-karlsson/back.svg",
  45013. extra: 999/944,
  45014. bottom: 26/1025
  45015. }
  45016. },
  45017. dick: {
  45018. height: math.unit(1.92, "feet"),
  45019. weight: math.unit(150, "lb"),
  45020. name: "Dick",
  45021. image: {
  45022. source: "./media/characters/fowler-karlsson/dick.svg"
  45023. }
  45024. },
  45025. },
  45026. [
  45027. {
  45028. name: "Normal",
  45029. height: math.unit(200, "cm"),
  45030. default: true
  45031. },
  45032. {
  45033. name: "Smaller Macro",
  45034. height: math.unit(90, "m")
  45035. },
  45036. {
  45037. name: "Macro",
  45038. height: math.unit(150, "m")
  45039. },
  45040. {
  45041. name: "Bigger Macro",
  45042. height: math.unit(300, "m")
  45043. },
  45044. ]
  45045. ))
  45046. characterMakers.push(() => makeCharacter(
  45047. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45048. {
  45049. side: {
  45050. height: math.unit(8 + 2/12, "feet"),
  45051. weight: math.unit(1, "tonne"),
  45052. name: "Side",
  45053. image: {
  45054. source: "./media/characters/rylide/side.svg",
  45055. extra: 1318/1034,
  45056. bottom: 106/1424
  45057. }
  45058. },
  45059. sitting: {
  45060. height: math.unit(303, "cm"),
  45061. weight: math.unit(1, "tonne"),
  45062. name: "Sitting",
  45063. image: {
  45064. source: "./media/characters/rylide/sitting.svg",
  45065. extra: 1303/1103,
  45066. bottom: 36/1339
  45067. }
  45068. },
  45069. },
  45070. [
  45071. {
  45072. name: "Normal",
  45073. height: math.unit(8 + 2/12, "feet"),
  45074. default: true
  45075. },
  45076. ]
  45077. ))
  45078. characterMakers.push(() => makeCharacter(
  45079. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45080. {
  45081. front: {
  45082. height: math.unit(5 + 10/12, "feet"),
  45083. weight: math.unit(160, "lb"),
  45084. name: "Front",
  45085. image: {
  45086. source: "./media/characters/pudask/front.svg",
  45087. extra: 1616/1590,
  45088. bottom: 161/1777
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Ferret Height",
  45095. height: math.unit(2 + 5/12, "feet")
  45096. },
  45097. {
  45098. name: "Canon Height",
  45099. height: math.unit(5 + 10/12, "feet"),
  45100. default: true
  45101. },
  45102. ]
  45103. ))
  45104. characterMakers.push(() => makeCharacter(
  45105. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45106. {
  45107. front: {
  45108. height: math.unit(3 + 6/12, "feet"),
  45109. weight: math.unit(60, "lb"),
  45110. name: "Front",
  45111. image: {
  45112. source: "./media/characters/ramita/front.svg",
  45113. extra: 1402/1232,
  45114. bottom: 62/1464
  45115. }
  45116. },
  45117. dressed: {
  45118. height: math.unit(3 + 6/12, "feet"),
  45119. weight: math.unit(60, "lb"),
  45120. name: "Dressed",
  45121. image: {
  45122. source: "./media/characters/ramita/dressed.svg",
  45123. extra: 1534/1249,
  45124. bottom: 50/1584
  45125. }
  45126. },
  45127. },
  45128. [
  45129. {
  45130. name: "Normal",
  45131. height: math.unit(3 + 6/12, "feet"),
  45132. default: true
  45133. },
  45134. ]
  45135. ))
  45136. characterMakers.push(() => makeCharacter(
  45137. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45138. {
  45139. front: {
  45140. height: math.unit(8, "feet"),
  45141. name: "Front",
  45142. image: {
  45143. source: "./media/characters/ark/front.svg",
  45144. extra: 772/693,
  45145. bottom: 45/817
  45146. }
  45147. },
  45148. },
  45149. [
  45150. {
  45151. name: "Normal",
  45152. height: math.unit(8, "feet"),
  45153. default: true
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45159. {
  45160. front: {
  45161. height: math.unit(6, "feet"),
  45162. weight: math.unit(250, "lb"),
  45163. volume: math.unit(5/8, "gallons"),
  45164. name: "Front",
  45165. image: {
  45166. source: "./media/characters/ludwig-horn/front.svg",
  45167. extra: 1782/1635,
  45168. bottom: 96/1878
  45169. }
  45170. },
  45171. back: {
  45172. height: math.unit(6, "feet"),
  45173. weight: math.unit(250, "lb"),
  45174. volume: math.unit(5/8, "gallons"),
  45175. name: "Back",
  45176. image: {
  45177. source: "./media/characters/ludwig-horn/back.svg",
  45178. extra: 1874/1729,
  45179. bottom: 27/1901
  45180. }
  45181. },
  45182. dick: {
  45183. height: math.unit(1.05, "feet"),
  45184. weight: math.unit(15, "lb"),
  45185. volume: math.unit(5/8, "gallons"),
  45186. name: "Dick",
  45187. image: {
  45188. source: "./media/characters/ludwig-horn/dick.svg"
  45189. }
  45190. },
  45191. },
  45192. [
  45193. {
  45194. name: "Small",
  45195. height: math.unit(6, "feet")
  45196. },
  45197. {
  45198. name: "Typical",
  45199. height: math.unit(12, "feet"),
  45200. default: true
  45201. },
  45202. {
  45203. name: "Building",
  45204. height: math.unit(80, "feet")
  45205. },
  45206. {
  45207. name: "Town",
  45208. height: math.unit(800, "feet")
  45209. },
  45210. {
  45211. name: "Kingdom",
  45212. height: math.unit(80000, "feet")
  45213. },
  45214. {
  45215. name: "Planet",
  45216. height: math.unit(8000000, "feet")
  45217. },
  45218. {
  45219. name: "Universe",
  45220. height: math.unit(8000000000, "feet")
  45221. },
  45222. {
  45223. name: "Transcended",
  45224. height: math.unit(8e27, "feet")
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45230. {
  45231. front: {
  45232. height: math.unit(5, "feet"),
  45233. weight: math.unit(50, "kg"),
  45234. name: "Front",
  45235. image: {
  45236. source: "./media/characters/biot-avery/front.svg",
  45237. extra: 1295/1232,
  45238. bottom: 86/1381
  45239. }
  45240. },
  45241. },
  45242. [
  45243. {
  45244. name: "Normal",
  45245. height: math.unit(5, "feet"),
  45246. default: true
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45252. {
  45253. front: {
  45254. height: math.unit(6, "feet"),
  45255. name: "Front",
  45256. image: {
  45257. source: "./media/characters/kitsune-kiro/front.svg",
  45258. extra: 1270/1158,
  45259. bottom: 42/1312
  45260. }
  45261. },
  45262. frontAlt: {
  45263. height: math.unit(6, "feet"),
  45264. name: "Front-alt",
  45265. image: {
  45266. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45267. extra: 1130/1081,
  45268. bottom: 36/1166
  45269. }
  45270. },
  45271. },
  45272. [
  45273. {
  45274. name: "Smol",
  45275. height: math.unit(3, "feet")
  45276. },
  45277. {
  45278. name: "Normal",
  45279. height: math.unit(6, "feet"),
  45280. default: true
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(6, "feet"),
  45289. weight: math.unit(125, "lb"),
  45290. name: "Front",
  45291. image: {
  45292. source: "./media/characters/jack-thatcher/front.svg",
  45293. extra: 1474/1370,
  45294. bottom: 26/1500
  45295. }
  45296. },
  45297. back: {
  45298. height: math.unit(6, "feet"),
  45299. weight: math.unit(125, "lb"),
  45300. name: "Back",
  45301. image: {
  45302. source: "./media/characters/jack-thatcher/back.svg",
  45303. extra: 1489/1384,
  45304. bottom: 18/1507
  45305. }
  45306. },
  45307. },
  45308. [
  45309. {
  45310. name: "Normal",
  45311. height: math.unit(6, "feet"),
  45312. default: true
  45313. },
  45314. {
  45315. name: "Macro",
  45316. height: math.unit(75, "feet")
  45317. },
  45318. {
  45319. name: "Macro-er",
  45320. height: math.unit(250, "feet")
  45321. },
  45322. ]
  45323. ))
  45324. characterMakers.push(() => makeCharacter(
  45325. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45326. {
  45327. front: {
  45328. height: math.unit(7, "feet"),
  45329. weight: math.unit(110, "kg"),
  45330. name: "Front",
  45331. image: {
  45332. source: "./media/characters/max-hyper/front.svg",
  45333. extra: 1969/1881,
  45334. bottom: 49/2018
  45335. }
  45336. },
  45337. },
  45338. [
  45339. {
  45340. name: "Normal",
  45341. height: math.unit(7, "feet"),
  45342. default: true
  45343. },
  45344. ]
  45345. ))
  45346. characterMakers.push(() => makeCharacter(
  45347. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45348. {
  45349. front: {
  45350. height: math.unit(5 + 5/12, "feet"),
  45351. weight: math.unit(160, "lb"),
  45352. name: "Front",
  45353. image: {
  45354. source: "./media/characters/spook/front.svg",
  45355. extra: 794/791,
  45356. bottom: 54/848
  45357. }
  45358. },
  45359. back: {
  45360. height: math.unit(5 + 5/12, "feet"),
  45361. weight: math.unit(160, "lb"),
  45362. name: "Back",
  45363. image: {
  45364. source: "./media/characters/spook/back.svg",
  45365. extra: 812/798,
  45366. bottom: 32/844
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(5 + 5/12, "feet"),
  45374. default: true
  45375. },
  45376. ]
  45377. ))
  45378. characterMakers.push(() => makeCharacter(
  45379. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45380. {
  45381. front: {
  45382. height: math.unit(18, "feet"),
  45383. name: "Front",
  45384. image: {
  45385. source: "./media/characters/xeaduulix/front.svg",
  45386. extra: 1380/1166,
  45387. bottom: 110/1490
  45388. }
  45389. },
  45390. back: {
  45391. height: math.unit(18, "feet"),
  45392. name: "Back",
  45393. image: {
  45394. source: "./media/characters/xeaduulix/back.svg",
  45395. extra: 1592/1170,
  45396. bottom: 128/1720
  45397. }
  45398. },
  45399. frontNsfw: {
  45400. height: math.unit(18, "feet"),
  45401. name: "Front (NSFW)",
  45402. image: {
  45403. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45404. extra: 1380/1166,
  45405. bottom: 110/1490
  45406. }
  45407. },
  45408. backNsfw: {
  45409. height: math.unit(18, "feet"),
  45410. name: "Back (NSFW)",
  45411. image: {
  45412. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45413. extra: 1592/1170,
  45414. bottom: 128/1720
  45415. }
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Normal",
  45421. height: math.unit(18, "feet"),
  45422. default: true
  45423. },
  45424. ]
  45425. ))
  45426. characterMakers.push(() => makeCharacter(
  45427. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45428. {
  45429. spreadWings: {
  45430. height: math.unit(20, "feet"),
  45431. name: "Spread Wings",
  45432. image: {
  45433. source: "./media/characters/fledge/spread-wings.svg",
  45434. extra: 693/635,
  45435. bottom: 26/719
  45436. }
  45437. },
  45438. front: {
  45439. height: math.unit(20, "feet"),
  45440. name: "Front",
  45441. image: {
  45442. source: "./media/characters/fledge/front.svg",
  45443. extra: 684/637,
  45444. bottom: 18/702
  45445. }
  45446. },
  45447. frontAlt: {
  45448. height: math.unit(20, "feet"),
  45449. name: "Front (Alt)",
  45450. image: {
  45451. source: "./media/characters/fledge/front-alt.svg",
  45452. extra: 708/664,
  45453. bottom: 13/721
  45454. }
  45455. },
  45456. back: {
  45457. height: math.unit(20, "feet"),
  45458. name: "Back",
  45459. image: {
  45460. source: "./media/characters/fledge/back.svg",
  45461. extra: 718/634,
  45462. bottom: 22/740
  45463. }
  45464. },
  45465. head: {
  45466. height: math.unit(5.55, "feet"),
  45467. name: "Head",
  45468. image: {
  45469. source: "./media/characters/fledge/head.svg"
  45470. }
  45471. },
  45472. headAlt: {
  45473. height: math.unit(5.1, "feet"),
  45474. name: "Head (Alt)",
  45475. image: {
  45476. source: "./media/characters/fledge/head-alt.svg"
  45477. }
  45478. },
  45479. },
  45480. [
  45481. {
  45482. name: "Small",
  45483. height: math.unit(6 + 2/12, "feet")
  45484. },
  45485. {
  45486. name: "Big",
  45487. height: math.unit(20, "feet"),
  45488. default: true
  45489. },
  45490. {
  45491. name: "Giant",
  45492. height: math.unit(100, "feet")
  45493. },
  45494. {
  45495. name: "Macro",
  45496. height: math.unit(200, "feet")
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45502. {
  45503. front: {
  45504. height: math.unit(1, "meter"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/atlas-morenai/front.svg",
  45508. extra: 1275/1043,
  45509. bottom: 19/1294
  45510. }
  45511. },
  45512. back: {
  45513. height: math.unit(1, "meter"),
  45514. name: "Back",
  45515. image: {
  45516. source: "./media/characters/atlas-morenai/back.svg",
  45517. extra: 1141/1001,
  45518. bottom: 25/1166
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Normal",
  45525. height: math.unit(1, "meter"),
  45526. default: true
  45527. },
  45528. {
  45529. name: "Magic-Infused",
  45530. height: math.unit(5, "meters")
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45536. {
  45537. front: {
  45538. height: math.unit(5, "meters"),
  45539. name: "Front",
  45540. image: {
  45541. source: "./media/characters/cintia/front.svg",
  45542. extra: 1312/1228,
  45543. bottom: 38/1350
  45544. }
  45545. },
  45546. back: {
  45547. height: math.unit(5, "meters"),
  45548. name: "Back",
  45549. image: {
  45550. source: "./media/characters/cintia/back.svg",
  45551. extra: 1260/1166,
  45552. bottom: 98/1358
  45553. }
  45554. },
  45555. frontDick: {
  45556. height: math.unit(5, "meters"),
  45557. name: "Front (Dick)",
  45558. image: {
  45559. source: "./media/characters/cintia/front-dick.svg",
  45560. extra: 1312/1228,
  45561. bottom: 38/1350
  45562. }
  45563. },
  45564. backDick: {
  45565. height: math.unit(5, "meters"),
  45566. name: "Back (Dick)",
  45567. image: {
  45568. source: "./media/characters/cintia/back-dick.svg",
  45569. extra: 1260/1166,
  45570. bottom: 98/1358
  45571. }
  45572. },
  45573. bust: {
  45574. height: math.unit(1.97, "meters"),
  45575. name: "Bust",
  45576. image: {
  45577. source: "./media/characters/cintia/bust.svg",
  45578. extra: 617/565,
  45579. bottom: 0/617
  45580. }
  45581. },
  45582. },
  45583. [
  45584. {
  45585. name: "Normal",
  45586. height: math.unit(5, "meters"),
  45587. default: true
  45588. },
  45589. ]
  45590. ))
  45591. characterMakers.push(() => makeCharacter(
  45592. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45593. {
  45594. side: {
  45595. height: math.unit(100, "feet"),
  45596. name: "Side",
  45597. image: {
  45598. source: "./media/characters/denora/side.svg",
  45599. extra: 875/803,
  45600. bottom: 9/884
  45601. }
  45602. },
  45603. },
  45604. [
  45605. {
  45606. name: "Standard",
  45607. height: math.unit(100, "feet"),
  45608. default: true
  45609. },
  45610. {
  45611. name: "Grand",
  45612. height: math.unit(1000, "feet")
  45613. },
  45614. {
  45615. name: "Conquering",
  45616. height: math.unit(10000, "feet")
  45617. },
  45618. ]
  45619. ))
  45620. characterMakers.push(() => makeCharacter(
  45621. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45622. {
  45623. dressed: {
  45624. height: math.unit(8 + 5/12, "feet"),
  45625. weight: math.unit(700, "lb"),
  45626. name: "Dressed",
  45627. image: {
  45628. source: "./media/characters/kiva/dressed.svg",
  45629. extra: 1102/1055,
  45630. bottom: 60/1162
  45631. }
  45632. },
  45633. nude: {
  45634. height: math.unit(8 + 5/12, "feet"),
  45635. weight: math.unit(700, "lb"),
  45636. name: "Nude",
  45637. image: {
  45638. source: "./media/characters/kiva/nude.svg",
  45639. extra: 1102/1055,
  45640. bottom: 60/1162
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Base Height",
  45647. height: math.unit(8 + 5/12, "feet"),
  45648. default: true
  45649. },
  45650. {
  45651. name: "Macro",
  45652. height: math.unit(100, "feet")
  45653. },
  45654. {
  45655. name: "Max",
  45656. height: math.unit(3280, "feet")
  45657. },
  45658. ]
  45659. ))
  45660. characterMakers.push(() => makeCharacter(
  45661. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45662. {
  45663. front: {
  45664. height: math.unit(6 + 8/12, "feet"),
  45665. weight: math.unit(250, "lb"),
  45666. name: "Front",
  45667. image: {
  45668. source: "./media/characters/ztragon/front.svg",
  45669. extra: 1825/1684,
  45670. bottom: 98/1923
  45671. }
  45672. },
  45673. },
  45674. [
  45675. {
  45676. name: "Normal",
  45677. height: math.unit(6 + 8/12, "feet"),
  45678. default: true
  45679. },
  45680. {
  45681. name: "Macro",
  45682. height: math.unit(80, "feet")
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45688. {
  45689. front: {
  45690. height: math.unit(10.4, "feet"),
  45691. weight: math.unit(2, "tons"),
  45692. name: "Front",
  45693. image: {
  45694. source: "./media/characters/yesenia/front.svg",
  45695. extra: 1479/1474,
  45696. bottom: 233/1712
  45697. }
  45698. },
  45699. },
  45700. [
  45701. {
  45702. name: "Normal",
  45703. height: math.unit(10.4, "feet"),
  45704. default: true
  45705. },
  45706. ]
  45707. ))
  45708. characterMakers.push(() => makeCharacter(
  45709. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45710. {
  45711. normal: {
  45712. height: math.unit(6 + 1/12, "feet"),
  45713. weight: math.unit(180, "lb"),
  45714. name: "Normal",
  45715. image: {
  45716. source: "./media/characters/leanne-lycheborne/normal.svg",
  45717. extra: 1748/1660,
  45718. bottom: 98/1846
  45719. }
  45720. },
  45721. were: {
  45722. height: math.unit(12, "feet"),
  45723. weight: math.unit(1600, "lb"),
  45724. name: "Were",
  45725. image: {
  45726. source: "./media/characters/leanne-lycheborne/were.svg",
  45727. extra: 1485/1432,
  45728. bottom: 66/1551
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Normal",
  45735. height: math.unit(6 + 1/12, "feet"),
  45736. default: true
  45737. },
  45738. ]
  45739. ))
  45740. characterMakers.push(() => makeCharacter(
  45741. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45742. {
  45743. side: {
  45744. height: math.unit(13, "feet"),
  45745. name: "Side",
  45746. image: {
  45747. source: "./media/characters/kira-tyler/side.svg",
  45748. extra: 693/393,
  45749. bottom: 58/751
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Normal",
  45756. height: math.unit(13, "feet"),
  45757. default: true
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(10.3, "feet"),
  45766. weight: math.unit(150, "lb"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/blaze/front.svg",
  45770. extra: 1378/1286,
  45771. bottom: 172/1550
  45772. }
  45773. },
  45774. },
  45775. [
  45776. {
  45777. name: "Normal",
  45778. height: math.unit(10.3, "feet"),
  45779. default: true
  45780. },
  45781. ]
  45782. ))
  45783. characterMakers.push(() => makeCharacter(
  45784. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45785. {
  45786. side: {
  45787. height: math.unit(2, "meters"),
  45788. weight: math.unit(400, "kg"),
  45789. name: "Side",
  45790. image: {
  45791. source: "./media/characters/anu/side.svg",
  45792. extra: 506/394,
  45793. bottom: 18/524
  45794. }
  45795. },
  45796. },
  45797. [
  45798. {
  45799. name: "Humanoid",
  45800. height: math.unit(2, "meters")
  45801. },
  45802. {
  45803. name: "Normal",
  45804. height: math.unit(5, "meters"),
  45805. default: true
  45806. },
  45807. ]
  45808. ))
  45809. characterMakers.push(() => makeCharacter(
  45810. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45811. {
  45812. front: {
  45813. height: math.unit(5 + 5/12, "feet"),
  45814. weight: math.unit(170, "lb"),
  45815. name: "Front",
  45816. image: {
  45817. source: "./media/characters/synx-the-lynx/front.svg",
  45818. extra: 1893/1745,
  45819. bottom: 17/1910
  45820. }
  45821. },
  45822. side: {
  45823. height: math.unit(5 + 5/12, "feet"),
  45824. weight: math.unit(170, "lb"),
  45825. name: "Side",
  45826. image: {
  45827. source: "./media/characters/synx-the-lynx/side.svg",
  45828. extra: 1884/1740,
  45829. bottom: 39/1923
  45830. }
  45831. },
  45832. back: {
  45833. height: math.unit(5 + 5/12, "feet"),
  45834. weight: math.unit(170, "lb"),
  45835. name: "Back",
  45836. image: {
  45837. source: "./media/characters/synx-the-lynx/back.svg",
  45838. extra: 1903/1755,
  45839. bottom: 14/1917
  45840. }
  45841. },
  45842. },
  45843. [
  45844. {
  45845. name: "Normal",
  45846. height: math.unit(5 + 5/12, "feet"),
  45847. default: true
  45848. },
  45849. ]
  45850. ))
  45851. characterMakers.push(() => makeCharacter(
  45852. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45853. {
  45854. back: {
  45855. height: math.unit(15, "feet"),
  45856. name: "Back",
  45857. image: {
  45858. source: "./media/characters/nadezda-fex/back.svg",
  45859. extra: 1695/1481,
  45860. bottom: 25/1720
  45861. }
  45862. },
  45863. },
  45864. [
  45865. {
  45866. name: "Normal",
  45867. height: math.unit(15, "feet"),
  45868. default: true
  45869. },
  45870. {
  45871. name: "Macro",
  45872. height: math.unit(2.5, "miles")
  45873. },
  45874. {
  45875. name: "Goddess",
  45876. height: math.unit(2, "multiverses")
  45877. },
  45878. ]
  45879. ))
  45880. characterMakers.push(() => makeCharacter(
  45881. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45882. {
  45883. front: {
  45884. height: math.unit(216, "cm"),
  45885. name: "Front",
  45886. image: {
  45887. source: "./media/characters/lev/front.svg",
  45888. extra: 1728/1670,
  45889. bottom: 82/1810
  45890. }
  45891. },
  45892. back: {
  45893. height: math.unit(216, "cm"),
  45894. name: "Back",
  45895. image: {
  45896. source: "./media/characters/lev/back.svg",
  45897. extra: 1738/1675,
  45898. bottom: 24/1762
  45899. }
  45900. },
  45901. dressed: {
  45902. height: math.unit(216, "cm"),
  45903. name: "Dressed",
  45904. image: {
  45905. source: "./media/characters/lev/dressed.svg",
  45906. extra: 1397/1351,
  45907. bottom: 73/1470
  45908. }
  45909. },
  45910. head: {
  45911. height: math.unit(0.51, "meter"),
  45912. name: "Head",
  45913. image: {
  45914. source: "./media/characters/lev/head.svg"
  45915. }
  45916. },
  45917. },
  45918. [
  45919. {
  45920. name: "Normal",
  45921. height: math.unit(216, "cm"),
  45922. default: true
  45923. },
  45924. {
  45925. name: "Relatively Macro",
  45926. height: math.unit(80, "meters")
  45927. },
  45928. {
  45929. name: "Megamacro",
  45930. height: math.unit(21600, "meters")
  45931. },
  45932. {
  45933. name: "Megamacro+",
  45934. height: math.unit(64800, "meters")
  45935. },
  45936. ]
  45937. ))
  45938. characterMakers.push(() => makeCharacter(
  45939. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45940. {
  45941. front: {
  45942. height: math.unit(2, "meters"),
  45943. weight: math.unit(80, "kg"),
  45944. name: "Front",
  45945. image: {
  45946. source: "./media/characters/moka/front.svg",
  45947. extra: 1337/1255,
  45948. bottom: 58/1395
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Micro",
  45955. height: math.unit(15, "cm")
  45956. },
  45957. {
  45958. name: "Normal",
  45959. height: math.unit(2, "meters"),
  45960. default: true
  45961. },
  45962. {
  45963. name: "Macro",
  45964. height: math.unit(20, "meters"),
  45965. },
  45966. ]
  45967. ))
  45968. characterMakers.push(() => makeCharacter(
  45969. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45970. {
  45971. front: {
  45972. height: math.unit(9, "feet"),
  45973. weight: math.unit(240, "lb"),
  45974. name: "Front",
  45975. image: {
  45976. source: "./media/characters/kuzco/front.svg",
  45977. extra: 1593/1487,
  45978. bottom: 32/1625
  45979. }
  45980. },
  45981. side: {
  45982. height: math.unit(9, "feet"),
  45983. weight: math.unit(240, "lb"),
  45984. name: "Side",
  45985. image: {
  45986. source: "./media/characters/kuzco/side.svg",
  45987. extra: 1575/1485,
  45988. bottom: 30/1605
  45989. }
  45990. },
  45991. back: {
  45992. height: math.unit(9, "feet"),
  45993. weight: math.unit(240, "lb"),
  45994. name: "Back",
  45995. image: {
  45996. source: "./media/characters/kuzco/back.svg",
  45997. extra: 1603/1514,
  45998. bottom: 14/1617
  45999. }
  46000. },
  46001. },
  46002. [
  46003. {
  46004. name: "Normal",
  46005. height: math.unit(9, "feet"),
  46006. default: true
  46007. },
  46008. ]
  46009. ))
  46010. characterMakers.push(() => makeCharacter(
  46011. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46012. {
  46013. side: {
  46014. height: math.unit(2, "meters"),
  46015. weight: math.unit(300, "kg"),
  46016. name: "Side",
  46017. image: {
  46018. source: "./media/characters/ceruleus/side.svg",
  46019. extra: 1068/974,
  46020. bottom: 126/1194
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(16, "meters"),
  46028. default: true
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46034. {
  46035. front: {
  46036. height: math.unit(9, "feet"),
  46037. weight: math.unit(500, "kg"),
  46038. name: "Front",
  46039. image: {
  46040. source: "./media/characters/acouya/front.svg",
  46041. extra: 1660/1473,
  46042. bottom: 28/1688
  46043. }
  46044. },
  46045. },
  46046. [
  46047. {
  46048. name: "Normal",
  46049. height: math.unit(9, "feet"),
  46050. default: true
  46051. },
  46052. ]
  46053. ))
  46054. characterMakers.push(() => makeCharacter(
  46055. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46056. {
  46057. front: {
  46058. height: math.unit(5 + 6/12, "feet"),
  46059. weight: math.unit(195, "lb"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/vant/front.svg",
  46063. extra: 1396/1320,
  46064. bottom: 20/1416
  46065. }
  46066. },
  46067. back: {
  46068. height: math.unit(5 + 6/12, "feet"),
  46069. weight: math.unit(195, "lb"),
  46070. name: "Back",
  46071. image: {
  46072. source: "./media/characters/vant/back.svg",
  46073. extra: 1396/1320,
  46074. bottom: 20/1416
  46075. }
  46076. },
  46077. maw: {
  46078. height: math.unit(0.75, "feet"),
  46079. name: "Maw",
  46080. image: {
  46081. source: "./media/characters/vant/maw.svg"
  46082. }
  46083. },
  46084. paw: {
  46085. height: math.unit(1.07, "feet"),
  46086. name: "Paw",
  46087. image: {
  46088. source: "./media/characters/vant/paw.svg"
  46089. }
  46090. },
  46091. },
  46092. [
  46093. {
  46094. name: "Micro",
  46095. height: math.unit(0.25, "inches")
  46096. },
  46097. {
  46098. name: "Normal",
  46099. height: math.unit(5 + 6/12, "feet"),
  46100. default: true
  46101. },
  46102. {
  46103. name: "Macro",
  46104. height: math.unit(75, "feet")
  46105. },
  46106. ]
  46107. ))
  46108. characterMakers.push(() => makeCharacter(
  46109. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46110. {
  46111. front: {
  46112. height: math.unit(30, "meters"),
  46113. weight: math.unit(363, "tons"),
  46114. name: "Front",
  46115. image: {
  46116. source: "./media/characters/ahra/front.svg",
  46117. extra: 1914/1814,
  46118. bottom: 46/1960
  46119. }
  46120. },
  46121. },
  46122. [
  46123. {
  46124. name: "Macro",
  46125. height: math.unit(30, "meters"),
  46126. default: true
  46127. },
  46128. ]
  46129. ))
  46130. characterMakers.push(() => makeCharacter(
  46131. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46132. {
  46133. undressed: {
  46134. height: math.unit(2, "m"),
  46135. weight: math.unit(250, "kg"),
  46136. name: "Undressed",
  46137. image: {
  46138. source: "./media/characters/coriander/undressed.svg",
  46139. extra: 1757/1606,
  46140. bottom: 107/1864
  46141. }
  46142. },
  46143. dressed: {
  46144. height: math.unit(2, "m"),
  46145. weight: math.unit(250, "kg"),
  46146. name: "Dressed",
  46147. image: {
  46148. source: "./media/characters/coriander/dressed.svg",
  46149. extra: 1757/1606,
  46150. bottom: 107/1864
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Normal",
  46157. height: math.unit(4, "meters"),
  46158. default: true
  46159. },
  46160. {
  46161. name: "XL",
  46162. height: math.unit(6, "meters")
  46163. },
  46164. {
  46165. name: "XXL",
  46166. height: math.unit(8, "meters")
  46167. },
  46168. ]
  46169. ))
  46170. characterMakers.push(() => makeCharacter(
  46171. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46172. {
  46173. front: {
  46174. height: math.unit(6, "feet"),
  46175. name: "Front",
  46176. image: {
  46177. source: "./media/characters/syrinx/front.svg",
  46178. extra: 1557/1259,
  46179. bottom: 171/1728
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Normal",
  46186. height: math.unit(6 + 3/12, "feet"),
  46187. default: true
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46193. {
  46194. front: {
  46195. height: math.unit(11 + 6/12, "feet"),
  46196. weight: math.unit(1.5, "tons"),
  46197. name: "Front",
  46198. image: {
  46199. source: "./media/characters/bor/front.svg",
  46200. extra: 1189/1109,
  46201. bottom: 170/1359
  46202. }
  46203. },
  46204. },
  46205. [
  46206. {
  46207. name: "Normal",
  46208. height: math.unit(11 + 6/12, "feet"),
  46209. default: true
  46210. },
  46211. {
  46212. name: "Macro",
  46213. height: math.unit(32 + 9/12, "feet")
  46214. },
  46215. ]
  46216. ))
  46217. characterMakers.push(() => makeCharacter(
  46218. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46219. {
  46220. anthro: {
  46221. height: math.unit(9, "feet"),
  46222. weight: math.unit(2076, "lb"),
  46223. name: "Anthro",
  46224. image: {
  46225. source: "./media/characters/abacus/anthro.svg",
  46226. extra: 1540/1494,
  46227. bottom: 233/1773
  46228. }
  46229. },
  46230. pigeon: {
  46231. height: math.unit(1, "feet"),
  46232. name: "Pigeon",
  46233. image: {
  46234. source: "./media/characters/abacus/pigeon.svg",
  46235. extra: 528/525,
  46236. bottom: 46/574
  46237. }
  46238. },
  46239. },
  46240. [
  46241. {
  46242. name: "Normal",
  46243. height: math.unit(9, "feet"),
  46244. default: true
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46250. {
  46251. side: {
  46252. height: math.unit(6, "feet"),
  46253. name: "Side",
  46254. image: {
  46255. source: "./media/characters/delkhan/side.svg",
  46256. extra: 1884/1786,
  46257. bottom: 308/2192
  46258. }
  46259. },
  46260. head: {
  46261. height: math.unit(3.38, "feet"),
  46262. name: "Head",
  46263. image: {
  46264. source: "./media/characters/delkhan/head.svg"
  46265. }
  46266. },
  46267. },
  46268. [
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(72, "feet"),
  46272. default: true
  46273. },
  46274. {
  46275. name: "Giant",
  46276. height: math.unit(172, "feet")
  46277. },
  46278. ]
  46279. ))
  46280. characterMakers.push(() => makeCharacter(
  46281. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46282. {
  46283. standing: {
  46284. height: math.unit(6, "feet"),
  46285. name: "Standing",
  46286. image: {
  46287. source: "./media/characters/euchidat/standing.svg",
  46288. extra: 1612/1553,
  46289. bottom: 116/1728
  46290. }
  46291. },
  46292. leaning: {
  46293. height: math.unit(6, "feet"),
  46294. name: "Leaning",
  46295. image: {
  46296. source: "./media/characters/euchidat/leaning.svg",
  46297. extra: 1719/1674,
  46298. bottom: 27/1746
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Normal",
  46305. height: math.unit(175, "feet"),
  46306. default: true
  46307. },
  46308. {
  46309. name: "Megamacro",
  46310. height: math.unit(190, "miles")
  46311. },
  46312. {
  46313. name: "Gigamacro",
  46314. height: math.unit(190000, "miles")
  46315. },
  46316. ]
  46317. ))
  46318. characterMakers.push(() => makeCharacter(
  46319. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46320. {
  46321. front: {
  46322. height: math.unit(6, "feet"),
  46323. weight: math.unit(150, "lb"),
  46324. name: "Front",
  46325. image: {
  46326. source: "./media/characters/rebecca-stack/front.svg",
  46327. extra: 1256/1201,
  46328. bottom: 18/1274
  46329. }
  46330. },
  46331. },
  46332. [
  46333. {
  46334. name: "Normal",
  46335. height: math.unit(5 + 8/12, "feet"),
  46336. default: true
  46337. },
  46338. {
  46339. name: "Demolitionist",
  46340. height: math.unit(200, "feet")
  46341. },
  46342. {
  46343. name: "Out of Control",
  46344. height: math.unit(2, "miles")
  46345. },
  46346. {
  46347. name: "Giga",
  46348. height: math.unit(7200, "miles")
  46349. },
  46350. ]
  46351. ))
  46352. characterMakers.push(() => makeCharacter(
  46353. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46354. {
  46355. front: {
  46356. height: math.unit(6, "feet"),
  46357. weight: math.unit(150, "lb"),
  46358. name: "Front",
  46359. image: {
  46360. source: "./media/characters/jenny-cartwright/front.svg",
  46361. extra: 1384/1376,
  46362. bottom: 58/1442
  46363. }
  46364. },
  46365. },
  46366. [
  46367. {
  46368. name: "Normal",
  46369. height: math.unit(6 + 7/12, "feet"),
  46370. default: true
  46371. },
  46372. {
  46373. name: "Librarian",
  46374. height: math.unit(55, "feet")
  46375. },
  46376. {
  46377. name: "Sightseer",
  46378. height: math.unit(50, "miles")
  46379. },
  46380. {
  46381. name: "Giga",
  46382. height: math.unit(30000, "miles")
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46388. {
  46389. nude: {
  46390. height: math.unit(8, "feet"),
  46391. weight: math.unit(225, "lb"),
  46392. name: "Nude",
  46393. image: {
  46394. source: "./media/characters/marvy/nude.svg",
  46395. extra: 1900/1683,
  46396. bottom: 89/1989
  46397. }
  46398. },
  46399. dressed: {
  46400. height: math.unit(8, "feet"),
  46401. weight: math.unit(225, "lb"),
  46402. name: "Dressed",
  46403. image: {
  46404. source: "./media/characters/marvy/dressed.svg",
  46405. extra: 1900/1683,
  46406. bottom: 89/1989
  46407. }
  46408. },
  46409. head: {
  46410. height: math.unit(2.85, "feet"),
  46411. name: "Head",
  46412. image: {
  46413. source: "./media/characters/marvy/head.svg"
  46414. }
  46415. },
  46416. },
  46417. [
  46418. {
  46419. name: "Normal",
  46420. height: math.unit(8, "feet"),
  46421. default: true
  46422. },
  46423. ]
  46424. ))
  46425. characterMakers.push(() => makeCharacter(
  46426. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46427. {
  46428. front: {
  46429. height: math.unit(8, "feet"),
  46430. weight: math.unit(250, "lb"),
  46431. name: "Front",
  46432. image: {
  46433. source: "./media/characters/leah/front.svg",
  46434. extra: 1257/1149,
  46435. bottom: 109/1366
  46436. }
  46437. },
  46438. },
  46439. [
  46440. {
  46441. name: "Normal",
  46442. height: math.unit(8, "feet"),
  46443. default: true
  46444. },
  46445. {
  46446. name: "Minimacro",
  46447. height: math.unit(40, "feet")
  46448. },
  46449. {
  46450. name: "Macro",
  46451. height: math.unit(124, "feet")
  46452. },
  46453. {
  46454. name: "Megamacro",
  46455. height: math.unit(850, "feet")
  46456. },
  46457. ]
  46458. ))
  46459. characterMakers.push(() => makeCharacter(
  46460. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46461. {
  46462. side: {
  46463. height: math.unit(13 + 6/12, "feet"),
  46464. weight: math.unit(3200, "lb"),
  46465. name: "Side",
  46466. image: {
  46467. source: "./media/characters/alvir/side.svg",
  46468. extra: 896/589,
  46469. bottom: 26/922
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(13 + 6/12, "feet"),
  46477. default: true
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46483. {
  46484. front: {
  46485. height: math.unit(5 + 4/12, "feet"),
  46486. weight: math.unit(236, "lb"),
  46487. name: "Front",
  46488. image: {
  46489. source: "./media/characters/zaina-khalil/front.svg",
  46490. extra: 1533/1485,
  46491. bottom: 94/1627
  46492. }
  46493. },
  46494. side: {
  46495. height: math.unit(5 + 4/12, "feet"),
  46496. weight: math.unit(236, "lb"),
  46497. name: "Side",
  46498. image: {
  46499. source: "./media/characters/zaina-khalil/side.svg",
  46500. extra: 1537/1498,
  46501. bottom: 66/1603
  46502. }
  46503. },
  46504. back: {
  46505. height: math.unit(5 + 4/12, "feet"),
  46506. weight: math.unit(236, "lb"),
  46507. name: "Back",
  46508. image: {
  46509. source: "./media/characters/zaina-khalil/back.svg",
  46510. extra: 1546/1494,
  46511. bottom: 89/1635
  46512. }
  46513. },
  46514. },
  46515. [
  46516. {
  46517. name: "Normal",
  46518. height: math.unit(5 + 4/12, "feet"),
  46519. default: true
  46520. },
  46521. ]
  46522. ))
  46523. characterMakers.push(() => makeCharacter(
  46524. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46525. {
  46526. side: {
  46527. height: math.unit(12, "feet"),
  46528. weight: math.unit(4000, "lb"),
  46529. name: "Side",
  46530. image: {
  46531. source: "./media/characters/terry/side.svg",
  46532. extra: 1518/1439,
  46533. bottom: 149/1667
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Normal",
  46540. height: math.unit(12, "feet"),
  46541. default: true
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46547. {
  46548. front: {
  46549. height: math.unit(12, "feet"),
  46550. weight: math.unit(1500, "lb"),
  46551. name: "Front",
  46552. image: {
  46553. source: "./media/characters/kahea/front.svg",
  46554. extra: 1722/1617,
  46555. bottom: 179/1901
  46556. }
  46557. },
  46558. },
  46559. [
  46560. {
  46561. name: "Normal",
  46562. height: math.unit(12, "feet"),
  46563. default: true
  46564. },
  46565. ]
  46566. ))
  46567. characterMakers.push(() => makeCharacter(
  46568. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46569. {
  46570. demonFront: {
  46571. height: math.unit(36, "feet"),
  46572. name: "Front",
  46573. image: {
  46574. source: "./media/characters/alex-xuria/demon-front.svg",
  46575. extra: 1705/1673,
  46576. bottom: 198/1903
  46577. },
  46578. form: "demon",
  46579. default: true
  46580. },
  46581. demonBack: {
  46582. height: math.unit(36, "feet"),
  46583. name: "Back",
  46584. image: {
  46585. source: "./media/characters/alex-xuria/demon-back.svg",
  46586. extra: 1725/1693,
  46587. bottom: 70/1795
  46588. },
  46589. form: "demon"
  46590. },
  46591. demonHead: {
  46592. height: math.unit(2.14, "meters"),
  46593. name: "Head",
  46594. image: {
  46595. source: "./media/characters/alex-xuria/demon-head.svg"
  46596. },
  46597. form: "demon"
  46598. },
  46599. demonHand: {
  46600. height: math.unit(1.61, "meters"),
  46601. name: "Hand",
  46602. image: {
  46603. source: "./media/characters/alex-xuria/demon-hand.svg"
  46604. },
  46605. form: "demon"
  46606. },
  46607. demonPaw: {
  46608. height: math.unit(1.35, "meters"),
  46609. name: "Paw",
  46610. image: {
  46611. source: "./media/characters/alex-xuria/demon-paw.svg"
  46612. },
  46613. form: "demon"
  46614. },
  46615. demonFoot: {
  46616. height: math.unit(2.2, "meters"),
  46617. name: "Foot",
  46618. image: {
  46619. source: "./media/characters/alex-xuria/demon-foot.svg"
  46620. },
  46621. form: "demon"
  46622. },
  46623. demonCock: {
  46624. height: math.unit(1.74, "meters"),
  46625. name: "Cock",
  46626. image: {
  46627. source: "./media/characters/alex-xuria/demon-cock.svg"
  46628. },
  46629. form: "demon"
  46630. },
  46631. demonTailClosed: {
  46632. height: math.unit(1.47, "meters"),
  46633. name: "Tail (Closed)",
  46634. image: {
  46635. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46636. },
  46637. form: "demon"
  46638. },
  46639. demonTailOpen: {
  46640. height: math.unit(2.85, "meters"),
  46641. name: "Tail (Open)",
  46642. image: {
  46643. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46644. },
  46645. form: "demon"
  46646. },
  46647. incubusFront: {
  46648. height: math.unit(12, "feet"),
  46649. name: "Front",
  46650. image: {
  46651. source: "./media/characters/alex-xuria/incubus-front.svg",
  46652. extra: 1754/1677,
  46653. bottom: 125/1879
  46654. },
  46655. form: "incubus",
  46656. default: true
  46657. },
  46658. incubusBack: {
  46659. height: math.unit(12, "feet"),
  46660. name: "Back",
  46661. image: {
  46662. source: "./media/characters/alex-xuria/incubus-back.svg",
  46663. extra: 1702/1647,
  46664. bottom: 30/1732
  46665. },
  46666. form: "incubus"
  46667. },
  46668. incubusHead: {
  46669. height: math.unit(3.45, "feet"),
  46670. name: "Head",
  46671. image: {
  46672. source: "./media/characters/alex-xuria/incubus-head.svg"
  46673. },
  46674. form: "incubus"
  46675. },
  46676. rabbitFront: {
  46677. height: math.unit(6, "feet"),
  46678. name: "Front",
  46679. image: {
  46680. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46681. extra: 1369/1349,
  46682. bottom: 45/1414
  46683. },
  46684. form: "rabbit",
  46685. default: true
  46686. },
  46687. rabbitSide: {
  46688. height: math.unit(6, "feet"),
  46689. name: "Side",
  46690. image: {
  46691. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46692. extra: 1370/1356,
  46693. bottom: 37/1407
  46694. },
  46695. form: "rabbit"
  46696. },
  46697. rabbitBack: {
  46698. height: math.unit(6, "feet"),
  46699. name: "Back",
  46700. image: {
  46701. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46702. extra: 1375/1358,
  46703. bottom: 43/1418
  46704. },
  46705. form: "rabbit"
  46706. },
  46707. },
  46708. [
  46709. {
  46710. name: "Normal",
  46711. height: math.unit(6, "feet"),
  46712. default: true,
  46713. form: "rabbit"
  46714. },
  46715. {
  46716. name: "Incubus",
  46717. height: math.unit(12, "feet"),
  46718. default: true,
  46719. form: "incubus"
  46720. },
  46721. {
  46722. name: "Demon",
  46723. height: math.unit(36, "feet"),
  46724. default: true,
  46725. form: "demon"
  46726. }
  46727. ],
  46728. {
  46729. "demon": {
  46730. name: "Demon",
  46731. default: true
  46732. },
  46733. "incubus": {
  46734. name: "Incubus",
  46735. },
  46736. "rabbit": {
  46737. name: "Rabbit"
  46738. }
  46739. }
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46743. {
  46744. front: {
  46745. height: math.unit(7 + 5/12, "feet"),
  46746. weight: math.unit(510, "lb"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/syrup/front.svg",
  46750. extra: 932/916,
  46751. bottom: 26/958
  46752. }
  46753. },
  46754. },
  46755. [
  46756. {
  46757. name: "Normal",
  46758. height: math.unit(7 + 5/12, "feet"),
  46759. default: true
  46760. },
  46761. {
  46762. name: "Big",
  46763. height: math.unit(50, "feet")
  46764. },
  46765. {
  46766. name: "Macro",
  46767. height: math.unit(300, "feet")
  46768. },
  46769. {
  46770. name: "Megamacro",
  46771. height: math.unit(1, "mile")
  46772. },
  46773. ]
  46774. ))
  46775. characterMakers.push(() => makeCharacter(
  46776. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46777. {
  46778. front: {
  46779. height: math.unit(6 + 9/12, "feet"),
  46780. name: "Front",
  46781. image: {
  46782. source: "./media/characters/zeimne/front.svg",
  46783. extra: 1969/1806,
  46784. bottom: 53/2022
  46785. }
  46786. },
  46787. },
  46788. [
  46789. {
  46790. name: "Normal",
  46791. height: math.unit(6 + 9/12, "feet"),
  46792. default: true
  46793. },
  46794. {
  46795. name: "Giant",
  46796. height: math.unit(550, "feet")
  46797. },
  46798. {
  46799. name: "Mega",
  46800. height: math.unit(3, "miles")
  46801. },
  46802. {
  46803. name: "Giga",
  46804. height: math.unit(250, "miles")
  46805. },
  46806. {
  46807. name: "Tera",
  46808. height: math.unit(1, "AU")
  46809. },
  46810. ]
  46811. ))
  46812. characterMakers.push(() => makeCharacter(
  46813. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46814. {
  46815. front: {
  46816. height: math.unit(5 + 2/12, "feet"),
  46817. name: "Front",
  46818. image: {
  46819. source: "./media/characters/grar/front.svg",
  46820. extra: 1331/1119,
  46821. bottom: 60/1391
  46822. }
  46823. },
  46824. back: {
  46825. height: math.unit(5 + 2/12, "feet"),
  46826. name: "Back",
  46827. image: {
  46828. source: "./media/characters/grar/back.svg",
  46829. extra: 1385/1169,
  46830. bottom: 23/1408
  46831. }
  46832. },
  46833. },
  46834. [
  46835. {
  46836. name: "Normal",
  46837. height: math.unit(5 + 2/12, "feet"),
  46838. default: true
  46839. },
  46840. ]
  46841. ))
  46842. characterMakers.push(() => makeCharacter(
  46843. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46844. {
  46845. front: {
  46846. height: math.unit(13 + 7/12, "feet"),
  46847. weight: math.unit(2200, "lb"),
  46848. name: "Front",
  46849. image: {
  46850. source: "./media/characters/endraya/front.svg",
  46851. extra: 1289/1215,
  46852. bottom: 50/1339
  46853. }
  46854. },
  46855. nude: {
  46856. height: math.unit(13 + 7/12, "feet"),
  46857. weight: math.unit(2200, "lb"),
  46858. name: "Nude",
  46859. image: {
  46860. source: "./media/characters/endraya/nude.svg",
  46861. extra: 1247/1171,
  46862. bottom: 40/1287
  46863. }
  46864. },
  46865. head: {
  46866. height: math.unit(2.6, "feet"),
  46867. name: "Head",
  46868. image: {
  46869. source: "./media/characters/endraya/head.svg"
  46870. }
  46871. },
  46872. slit: {
  46873. height: math.unit(3.4, "feet"),
  46874. name: "Slit",
  46875. image: {
  46876. source: "./media/characters/endraya/slit.svg"
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(13 + 7/12, "feet"),
  46884. default: true
  46885. },
  46886. {
  46887. name: "Macro",
  46888. height: math.unit(200, "feet")
  46889. },
  46890. ]
  46891. ))
  46892. characterMakers.push(() => makeCharacter(
  46893. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46894. {
  46895. front: {
  46896. height: math.unit(1.81, "meters"),
  46897. weight: math.unit(69, "kg"),
  46898. name: "Front",
  46899. image: {
  46900. source: "./media/characters/rodryana/front.svg",
  46901. extra: 2002/1921,
  46902. bottom: 53/2055
  46903. }
  46904. },
  46905. back: {
  46906. height: math.unit(1.81, "meters"),
  46907. weight: math.unit(69, "kg"),
  46908. name: "Back",
  46909. image: {
  46910. source: "./media/characters/rodryana/back.svg",
  46911. extra: 1993/1926,
  46912. bottom: 48/2041
  46913. }
  46914. },
  46915. maw: {
  46916. height: math.unit(0.19769417475, "meters"),
  46917. name: "Maw",
  46918. image: {
  46919. source: "./media/characters/rodryana/maw.svg"
  46920. }
  46921. },
  46922. slit: {
  46923. height: math.unit(0.31631067961, "meters"),
  46924. name: "Slit",
  46925. image: {
  46926. source: "./media/characters/rodryana/slit.svg"
  46927. }
  46928. },
  46929. },
  46930. [
  46931. {
  46932. name: "Normal",
  46933. height: math.unit(1.81, "meters")
  46934. },
  46935. {
  46936. name: "Mini Macro",
  46937. height: math.unit(181, "meters")
  46938. },
  46939. {
  46940. name: "Macro",
  46941. height: math.unit(452, "meters"),
  46942. default: true
  46943. },
  46944. {
  46945. name: "Mega Macro",
  46946. height: math.unit(1.375, "km")
  46947. },
  46948. {
  46949. name: "Giga Macro",
  46950. height: math.unit(13.575, "km")
  46951. },
  46952. ]
  46953. ))
  46954. characterMakers.push(() => makeCharacter(
  46955. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46956. {
  46957. front: {
  46958. height: math.unit(6, "feet"),
  46959. weight: math.unit(1000, "lb"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/asaya/front.svg",
  46963. extra: 1460/1200,
  46964. bottom: 71/1531
  46965. }
  46966. },
  46967. },
  46968. [
  46969. {
  46970. name: "Normal",
  46971. height: math.unit(8, "km"),
  46972. default: true
  46973. },
  46974. ]
  46975. ))
  46976. characterMakers.push(() => makeCharacter(
  46977. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46978. {
  46979. front: {
  46980. height: math.unit(3.5, "meters"),
  46981. name: "Front",
  46982. image: {
  46983. source: "./media/characters/sarzu-and-israz/front.svg",
  46984. extra: 1570/1558,
  46985. bottom: 150/1720
  46986. },
  46987. },
  46988. back: {
  46989. height: math.unit(3.5, "meters"),
  46990. name: "Back",
  46991. image: {
  46992. source: "./media/characters/sarzu-and-israz/back.svg",
  46993. extra: 1523/1509,
  46994. bottom: 132/1655
  46995. },
  46996. },
  46997. frontFemale: {
  46998. height: math.unit(3.5, "meters"),
  46999. name: "Front (Female)",
  47000. image: {
  47001. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47002. extra: 1570/1558,
  47003. bottom: 150/1720
  47004. },
  47005. },
  47006. frontHerm: {
  47007. height: math.unit(3.5, "meters"),
  47008. name: "Front (Herm)",
  47009. image: {
  47010. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47011. extra: 1570/1558,
  47012. bottom: 150/1720
  47013. },
  47014. },
  47015. },
  47016. [
  47017. {
  47018. name: "Normal",
  47019. height: math.unit(3.5, "meters"),
  47020. default: true,
  47021. },
  47022. {
  47023. name: "Macro",
  47024. height: math.unit(65.5, "meters"),
  47025. },
  47026. ],
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47030. {
  47031. front: {
  47032. height: math.unit(6, "feet"),
  47033. weight: math.unit(250, "lb"),
  47034. name: "Front",
  47035. image: {
  47036. source: "./media/characters/zenimma/front.svg",
  47037. extra: 1346/1320,
  47038. bottom: 58/1404
  47039. }
  47040. },
  47041. back: {
  47042. height: math.unit(6, "feet"),
  47043. weight: math.unit(250, "lb"),
  47044. name: "Back",
  47045. image: {
  47046. source: "./media/characters/zenimma/back.svg",
  47047. extra: 1324/1308,
  47048. bottom: 44/1368
  47049. }
  47050. },
  47051. dick: {
  47052. height: math.unit(1.44, "feet"),
  47053. name: "Dick",
  47054. image: {
  47055. source: "./media/characters/zenimma/dick.svg"
  47056. }
  47057. },
  47058. },
  47059. [
  47060. {
  47061. name: "Canon Height",
  47062. height: math.unit(66, "miles"),
  47063. default: true
  47064. },
  47065. ]
  47066. ))
  47067. characterMakers.push(() => makeCharacter(
  47068. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47069. {
  47070. nude: {
  47071. height: math.unit(6, "feet"),
  47072. weight: math.unit(150, "lb"),
  47073. name: "Nude",
  47074. image: {
  47075. source: "./media/characters/shavon/nude.svg",
  47076. extra: 1242/1096,
  47077. bottom: 98/1340
  47078. }
  47079. },
  47080. dressed: {
  47081. height: math.unit(6, "feet"),
  47082. weight: math.unit(150, "lb"),
  47083. name: "Dressed",
  47084. image: {
  47085. source: "./media/characters/shavon/dressed.svg",
  47086. extra: 1242/1096,
  47087. bottom: 98/1340
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Macro",
  47094. height: math.unit(255, "feet"),
  47095. default: true
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47101. {
  47102. front: {
  47103. height: math.unit(6, "feet"),
  47104. name: "Front",
  47105. image: {
  47106. source: "./media/characters/steph/front.svg",
  47107. extra: 1430/1330,
  47108. bottom: 54/1484
  47109. }
  47110. },
  47111. },
  47112. [
  47113. {
  47114. name: "Normal",
  47115. height: math.unit(6, "feet"),
  47116. default: true
  47117. },
  47118. ]
  47119. ))
  47120. characterMakers.push(() => makeCharacter(
  47121. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47122. {
  47123. front: {
  47124. height: math.unit(9, "feet"),
  47125. weight: math.unit(400, "lb"),
  47126. name: "Front",
  47127. image: {
  47128. source: "./media/characters/kil'aman/front.svg",
  47129. extra: 1210/1159,
  47130. bottom: 109/1319
  47131. }
  47132. },
  47133. head: {
  47134. height: math.unit(2.14, "feet"),
  47135. name: "Head",
  47136. image: {
  47137. source: "./media/characters/kil'aman/head.svg"
  47138. }
  47139. },
  47140. maw: {
  47141. height: math.unit(1.21, "feet"),
  47142. name: "Maw",
  47143. image: {
  47144. source: "./media/characters/kil'aman/maw.svg"
  47145. }
  47146. },
  47147. foot: {
  47148. height: math.unit(1.7, "feet"),
  47149. name: "Foot",
  47150. image: {
  47151. source: "./media/characters/kil'aman/foot.svg"
  47152. }
  47153. },
  47154. dick: {
  47155. height: math.unit(2.1, "feet"),
  47156. name: "Dick",
  47157. image: {
  47158. source: "./media/characters/kil'aman/dick.svg"
  47159. }
  47160. },
  47161. },
  47162. [
  47163. {
  47164. name: "Normal",
  47165. height: math.unit(9, "feet")
  47166. },
  47167. {
  47168. name: "Canon Height",
  47169. height: math.unit(10, "miles"),
  47170. default: true
  47171. },
  47172. {
  47173. name: "Maximum",
  47174. height: math.unit(6e9, "miles")
  47175. },
  47176. ]
  47177. ))
  47178. characterMakers.push(() => makeCharacter(
  47179. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47180. {
  47181. front: {
  47182. height: math.unit(90, "feet"),
  47183. weight: math.unit(675000, "lb"),
  47184. name: "Front",
  47185. image: {
  47186. source: "./media/characters/qadan/front.svg",
  47187. extra: 1012/1004,
  47188. bottom: 78/1090
  47189. }
  47190. },
  47191. back: {
  47192. height: math.unit(90, "feet"),
  47193. weight: math.unit(675000, "lb"),
  47194. name: "Back",
  47195. image: {
  47196. source: "./media/characters/qadan/back.svg",
  47197. extra: 1042/1031,
  47198. bottom: 55/1097
  47199. }
  47200. },
  47201. armored: {
  47202. height: math.unit(90, "feet"),
  47203. weight: math.unit(675000, "lb"),
  47204. name: "Armored",
  47205. image: {
  47206. source: "./media/characters/qadan/armored.svg",
  47207. extra: 1047/1037,
  47208. bottom: 48/1095
  47209. }
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Normal",
  47215. height: math.unit(90, "feet"),
  47216. default: true
  47217. },
  47218. ]
  47219. ))
  47220. characterMakers.push(() => makeCharacter(
  47221. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47222. {
  47223. front: {
  47224. height: math.unit(6, "feet"),
  47225. weight: math.unit(225, "lb"),
  47226. name: "Front",
  47227. image: {
  47228. source: "./media/characters/brooke/front.svg",
  47229. extra: 1050/1010,
  47230. bottom: 66/1116
  47231. }
  47232. },
  47233. back: {
  47234. height: math.unit(6, "feet"),
  47235. weight: math.unit(225, "lb"),
  47236. name: "Back",
  47237. image: {
  47238. source: "./media/characters/brooke/back.svg",
  47239. extra: 1053/1013,
  47240. bottom: 41/1094
  47241. }
  47242. },
  47243. dressed: {
  47244. height: math.unit(6, "feet"),
  47245. weight: math.unit(225, "lb"),
  47246. name: "Dressed",
  47247. image: {
  47248. source: "./media/characters/brooke/dressed.svg",
  47249. extra: 1050/1010,
  47250. bottom: 66/1116
  47251. }
  47252. },
  47253. },
  47254. [
  47255. {
  47256. name: "Canon Height",
  47257. height: math.unit(500, "miles"),
  47258. default: true
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47264. {
  47265. front: {
  47266. height: math.unit(6 + 2/12, "feet"),
  47267. weight: math.unit(210, "lb"),
  47268. name: "Front",
  47269. image: {
  47270. source: "./media/characters/wubs/front.svg",
  47271. extra: 1345/1325,
  47272. bottom: 70/1415
  47273. }
  47274. },
  47275. back: {
  47276. height: math.unit(6 + 2/12, "feet"),
  47277. weight: math.unit(210, "lb"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/wubs/back.svg",
  47281. extra: 1296/1275,
  47282. bottom: 58/1354
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(6 + 2/12, "feet"),
  47290. default: true
  47291. },
  47292. {
  47293. name: "Macro",
  47294. height: math.unit(1000, "feet")
  47295. },
  47296. {
  47297. name: "Megamacro",
  47298. height: math.unit(1, "mile")
  47299. },
  47300. ]
  47301. ))
  47302. characterMakers.push(() => makeCharacter(
  47303. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47304. {
  47305. front: {
  47306. height: math.unit(4, "feet"),
  47307. weight: math.unit(120, "lb"),
  47308. name: "Front",
  47309. image: {
  47310. source: "./media/characters/blue/front.svg",
  47311. extra: 1636/1525,
  47312. bottom: 43/1679
  47313. }
  47314. },
  47315. back: {
  47316. height: math.unit(4, "feet"),
  47317. weight: math.unit(120, "lb"),
  47318. name: "Back",
  47319. image: {
  47320. source: "./media/characters/blue/back.svg",
  47321. extra: 1660/1560,
  47322. bottom: 57/1717
  47323. }
  47324. },
  47325. paws: {
  47326. height: math.unit(0.826, "feet"),
  47327. name: "Paws",
  47328. image: {
  47329. source: "./media/characters/blue/paws.svg"
  47330. }
  47331. },
  47332. },
  47333. [
  47334. {
  47335. name: "Micro",
  47336. height: math.unit(3, "inches")
  47337. },
  47338. {
  47339. name: "Normal",
  47340. height: math.unit(4, "feet"),
  47341. default: true
  47342. },
  47343. {
  47344. name: "Femenine Form",
  47345. height: math.unit(14, "feet")
  47346. },
  47347. {
  47348. name: "Werebat Form",
  47349. height: math.unit(18, "feet")
  47350. },
  47351. ]
  47352. ))
  47353. characterMakers.push(() => makeCharacter(
  47354. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47355. {
  47356. female: {
  47357. height: math.unit(7 + 4/12, "feet"),
  47358. weight: math.unit(243, "lb"),
  47359. name: "Female",
  47360. image: {
  47361. source: "./media/characters/kaya/female.svg",
  47362. extra: 975/898,
  47363. bottom: 34/1009
  47364. }
  47365. },
  47366. herm: {
  47367. height: math.unit(7 + 4/12, "feet"),
  47368. weight: math.unit(243, "lb"),
  47369. name: "Herm",
  47370. image: {
  47371. source: "./media/characters/kaya/herm.svg",
  47372. extra: 975/898,
  47373. bottom: 34/1009
  47374. }
  47375. },
  47376. },
  47377. [
  47378. {
  47379. name: "Normal",
  47380. height: math.unit(7 + 4/12, "feet"),
  47381. default: true
  47382. },
  47383. ]
  47384. ))
  47385. characterMakers.push(() => makeCharacter(
  47386. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47387. {
  47388. female: {
  47389. height: math.unit(9 + 4/12, "feet"),
  47390. weight: math.unit(398, "lb"),
  47391. name: "Female",
  47392. image: {
  47393. source: "./media/characters/kassandra/female.svg",
  47394. extra: 908/839,
  47395. bottom: 61/969
  47396. }
  47397. },
  47398. intersex: {
  47399. height: math.unit(9 + 4/12, "feet"),
  47400. weight: math.unit(398, "lb"),
  47401. name: "Intersex",
  47402. image: {
  47403. source: "./media/characters/kassandra/intersex.svg",
  47404. extra: 908/839,
  47405. bottom: 61/969
  47406. }
  47407. },
  47408. },
  47409. [
  47410. {
  47411. name: "Normal",
  47412. height: math.unit(9 + 4/12, "feet"),
  47413. default: true
  47414. },
  47415. ]
  47416. ))
  47417. characterMakers.push(() => makeCharacter(
  47418. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47419. {
  47420. front: {
  47421. height: math.unit(3, "meters"),
  47422. name: "Front",
  47423. image: {
  47424. source: "./media/characters/amy/front.svg",
  47425. extra: 1380/1343,
  47426. bottom: 70/1450
  47427. }
  47428. },
  47429. back: {
  47430. height: math.unit(3, "meters"),
  47431. name: "Back",
  47432. image: {
  47433. source: "./media/characters/amy/back.svg",
  47434. extra: 1380/1347,
  47435. bottom: 66/1446
  47436. }
  47437. },
  47438. },
  47439. [
  47440. {
  47441. name: "Normal",
  47442. height: math.unit(3, "meters"),
  47443. default: true
  47444. },
  47445. ]
  47446. ))
  47447. characterMakers.push(() => makeCharacter(
  47448. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47449. {
  47450. side: {
  47451. height: math.unit(47, "cm"),
  47452. weight: math.unit(10.8, "kg"),
  47453. name: "Side",
  47454. image: {
  47455. source: "./media/characters/alphaschakal/side.svg",
  47456. extra: 1058/568,
  47457. bottom: 62/1120
  47458. }
  47459. },
  47460. back: {
  47461. height: math.unit(78, "cm"),
  47462. weight: math.unit(10.8, "kg"),
  47463. name: "Back",
  47464. image: {
  47465. source: "./media/characters/alphaschakal/back.svg",
  47466. extra: 1102/942,
  47467. bottom: 185/1287
  47468. }
  47469. },
  47470. head: {
  47471. height: math.unit(28, "cm"),
  47472. name: "Head",
  47473. image: {
  47474. source: "./media/characters/alphaschakal/head.svg",
  47475. extra: 696/508,
  47476. bottom: 0/696
  47477. }
  47478. },
  47479. paw: {
  47480. height: math.unit(16, "cm"),
  47481. name: "Paw",
  47482. image: {
  47483. source: "./media/characters/alphaschakal/paw.svg"
  47484. }
  47485. },
  47486. },
  47487. [
  47488. {
  47489. name: "Normal",
  47490. height: math.unit(47, "cm"),
  47491. default: true
  47492. },
  47493. {
  47494. name: "Macro",
  47495. height: math.unit(340, "cm")
  47496. },
  47497. ]
  47498. ))
  47499. characterMakers.push(() => makeCharacter(
  47500. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47501. {
  47502. front: {
  47503. height: math.unit(36, "earths"),
  47504. name: "Front",
  47505. image: {
  47506. source: "./media/characters/ecobyss/front.svg",
  47507. extra: 1282/1215,
  47508. bottom: 11/1293
  47509. }
  47510. },
  47511. back: {
  47512. height: math.unit(36, "earths"),
  47513. name: "Back",
  47514. image: {
  47515. source: "./media/characters/ecobyss/back.svg",
  47516. extra: 1291/1222,
  47517. bottom: 8/1299
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Normal",
  47524. height: math.unit(36, "earths"),
  47525. default: true
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47531. {
  47532. front: {
  47533. height: math.unit(12, "feet"),
  47534. name: "Front",
  47535. image: {
  47536. source: "./media/characters/vasuk/front.svg",
  47537. extra: 1326/1207,
  47538. bottom: 64/1390
  47539. }
  47540. },
  47541. },
  47542. [
  47543. {
  47544. name: "Normal",
  47545. height: math.unit(12, "feet"),
  47546. default: true
  47547. },
  47548. ]
  47549. ))
  47550. characterMakers.push(() => makeCharacter(
  47551. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47552. {
  47553. side: {
  47554. height: math.unit(100, "feet"),
  47555. name: "Side",
  47556. image: {
  47557. source: "./media/characters/linneaus/side.svg",
  47558. extra: 987/807,
  47559. bottom: 47/1034
  47560. }
  47561. },
  47562. },
  47563. [
  47564. {
  47565. name: "Macro",
  47566. height: math.unit(100, "feet"),
  47567. default: true
  47568. },
  47569. ]
  47570. ))
  47571. characterMakers.push(() => makeCharacter(
  47572. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47573. {
  47574. front: {
  47575. height: math.unit(8, "feet"),
  47576. weight: math.unit(1200, "lb"),
  47577. name: "Front",
  47578. image: {
  47579. source: "./media/characters/nyterious-daligdig/front.svg",
  47580. extra: 1284/1094,
  47581. bottom: 84/1368
  47582. }
  47583. },
  47584. back: {
  47585. height: math.unit(8, "feet"),
  47586. weight: math.unit(1200, "lb"),
  47587. name: "Back",
  47588. image: {
  47589. source: "./media/characters/nyterious-daligdig/back.svg",
  47590. extra: 1301/1121,
  47591. bottom: 129/1430
  47592. }
  47593. },
  47594. mouth: {
  47595. height: math.unit(1.464, "feet"),
  47596. name: "Mouth",
  47597. image: {
  47598. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47599. }
  47600. },
  47601. },
  47602. [
  47603. {
  47604. name: "Small",
  47605. height: math.unit(8, "feet"),
  47606. default: true
  47607. },
  47608. {
  47609. name: "Normal",
  47610. height: math.unit(15, "feet")
  47611. },
  47612. {
  47613. name: "Macro",
  47614. height: math.unit(90, "feet")
  47615. },
  47616. ]
  47617. ))
  47618. characterMakers.push(() => makeCharacter(
  47619. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47620. {
  47621. front: {
  47622. height: math.unit(7 + 4/12, "feet"),
  47623. weight: math.unit(252, "lb"),
  47624. name: "Front",
  47625. image: {
  47626. source: "./media/characters/bandel/front.svg",
  47627. extra: 1946/1775,
  47628. bottom: 26/1972
  47629. }
  47630. },
  47631. back: {
  47632. height: math.unit(7 + 4/12, "feet"),
  47633. weight: math.unit(252, "lb"),
  47634. name: "Back",
  47635. image: {
  47636. source: "./media/characters/bandel/back.svg",
  47637. extra: 1940/1770,
  47638. bottom: 25/1965
  47639. }
  47640. },
  47641. maw: {
  47642. height: math.unit(2.15, "feet"),
  47643. name: "Maw",
  47644. image: {
  47645. source: "./media/characters/bandel/maw.svg"
  47646. }
  47647. },
  47648. stomach: {
  47649. height: math.unit(1.95, "feet"),
  47650. name: "Stomach",
  47651. image: {
  47652. source: "./media/characters/bandel/stomach.svg"
  47653. }
  47654. },
  47655. },
  47656. [
  47657. {
  47658. name: "Normal",
  47659. height: math.unit(7 + 4/12, "feet"),
  47660. default: true
  47661. },
  47662. ]
  47663. ))
  47664. characterMakers.push(() => makeCharacter(
  47665. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47666. {
  47667. front: {
  47668. height: math.unit(10 + 5/12, "feet"),
  47669. weight: math.unit(773.5, "kg"),
  47670. name: "Front",
  47671. image: {
  47672. source: "./media/characters/zed/front.svg",
  47673. extra: 987/941,
  47674. bottom: 52/1039
  47675. }
  47676. },
  47677. },
  47678. [
  47679. {
  47680. name: "Short",
  47681. height: math.unit(5 + 4/12, "feet")
  47682. },
  47683. {
  47684. name: "Average",
  47685. height: math.unit(10 + 5/12, "feet"),
  47686. default: true
  47687. },
  47688. {
  47689. name: "Mini-Macro",
  47690. height: math.unit(24 + 9/12, "feet")
  47691. },
  47692. {
  47693. name: "Macro",
  47694. height: math.unit(249, "feet")
  47695. },
  47696. {
  47697. name: "Mega-Macro",
  47698. height: math.unit(12490, "feet")
  47699. },
  47700. {
  47701. name: "Giga-Macro",
  47702. height: math.unit(24.9, "miles")
  47703. },
  47704. {
  47705. name: "Tera-Macro",
  47706. height: math.unit(24900, "miles")
  47707. },
  47708. {
  47709. name: "Cosmic Scale",
  47710. height: math.unit(38.9, "lightyears")
  47711. },
  47712. {
  47713. name: "Universal Scale",
  47714. height: math.unit(138e12, "lightyears")
  47715. },
  47716. ]
  47717. ))
  47718. characterMakers.push(() => makeCharacter(
  47719. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47720. {
  47721. front: {
  47722. height: math.unit(1561, "inches"),
  47723. name: "Front",
  47724. image: {
  47725. source: "./media/characters/ivan/front.svg",
  47726. extra: 1126/1071,
  47727. bottom: 26/1152
  47728. }
  47729. },
  47730. back: {
  47731. height: math.unit(1561, "inches"),
  47732. name: "Back",
  47733. image: {
  47734. source: "./media/characters/ivan/back.svg",
  47735. extra: 1134/1079,
  47736. bottom: 30/1164
  47737. }
  47738. },
  47739. },
  47740. [
  47741. {
  47742. name: "Normal",
  47743. height: math.unit(1561, "inches"),
  47744. default: true
  47745. },
  47746. ]
  47747. ))
  47748. characterMakers.push(() => makeCharacter(
  47749. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47750. {
  47751. front: {
  47752. height: math.unit(5 + 7/12, "feet"),
  47753. weight: math.unit(150, "lb"),
  47754. name: "Front",
  47755. image: {
  47756. source: "./media/characters/robin-arctic-hare/front.svg",
  47757. extra: 1148/974,
  47758. bottom: 20/1168
  47759. }
  47760. },
  47761. },
  47762. [
  47763. {
  47764. name: "Normal",
  47765. height: math.unit(5 + 7/12, "feet"),
  47766. default: true
  47767. },
  47768. ]
  47769. ))
  47770. characterMakers.push(() => makeCharacter(
  47771. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47772. {
  47773. side: {
  47774. height: math.unit(5, "feet"),
  47775. name: "Side",
  47776. image: {
  47777. source: "./media/characters/birch/side.svg",
  47778. extra: 985/796,
  47779. bottom: 111/1096
  47780. }
  47781. },
  47782. },
  47783. [
  47784. {
  47785. name: "Normal",
  47786. height: math.unit(5, "feet"),
  47787. default: true
  47788. },
  47789. ]
  47790. ))
  47791. characterMakers.push(() => makeCharacter(
  47792. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47793. {
  47794. front: {
  47795. height: math.unit(4, "feet"),
  47796. name: "Front",
  47797. image: {
  47798. source: "./media/characters/rasp/front.svg",
  47799. extra: 561/478,
  47800. bottom: 74/635
  47801. }
  47802. },
  47803. },
  47804. [
  47805. {
  47806. name: "Normal",
  47807. height: math.unit(4, "feet"),
  47808. default: true
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47814. {
  47815. front: {
  47816. height: math.unit(4 + 6/12, "feet"),
  47817. name: "Front",
  47818. image: {
  47819. source: "./media/characters/agatha/front.svg",
  47820. extra: 947/933,
  47821. bottom: 42/989
  47822. }
  47823. },
  47824. back: {
  47825. height: math.unit(4 + 6/12, "feet"),
  47826. name: "Back",
  47827. image: {
  47828. source: "./media/characters/agatha/back.svg",
  47829. extra: 935/922,
  47830. bottom: 48/983
  47831. }
  47832. },
  47833. },
  47834. [
  47835. {
  47836. name: "Normal",
  47837. height: math.unit(4 + 6 /12, "feet"),
  47838. default: true
  47839. },
  47840. {
  47841. name: "Max Size",
  47842. height: math.unit(500, "feet")
  47843. },
  47844. ]
  47845. ))
  47846. characterMakers.push(() => makeCharacter(
  47847. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47848. {
  47849. side: {
  47850. height: math.unit(30, "feet"),
  47851. name: "Side",
  47852. image: {
  47853. source: "./media/characters/roggy/side.svg",
  47854. extra: 909/643,
  47855. bottom: 63/972
  47856. }
  47857. },
  47858. lounging: {
  47859. height: math.unit(20, "feet"),
  47860. name: "Lounging",
  47861. image: {
  47862. source: "./media/characters/roggy/lounging.svg",
  47863. extra: 643/479,
  47864. bottom: 145/788
  47865. }
  47866. },
  47867. handpaw: {
  47868. height: math.unit(13.1, "feet"),
  47869. name: "Handpaw",
  47870. image: {
  47871. source: "./media/characters/roggy/handpaw.svg"
  47872. }
  47873. },
  47874. footpaw: {
  47875. height: math.unit(15.8, "feet"),
  47876. name: "Footpaw",
  47877. image: {
  47878. source: "./media/characters/roggy/footpaw.svg"
  47879. }
  47880. },
  47881. },
  47882. [
  47883. {
  47884. name: "Menacing",
  47885. height: math.unit(30, "feet"),
  47886. default: true
  47887. },
  47888. ]
  47889. ))
  47890. characterMakers.push(() => makeCharacter(
  47891. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47892. {
  47893. front: {
  47894. height: math.unit(5 + 7/12, "feet"),
  47895. weight: math.unit(135, "lb"),
  47896. name: "Front",
  47897. image: {
  47898. source: "./media/characters/naomi/front.svg",
  47899. extra: 1209/1154,
  47900. bottom: 129/1338
  47901. }
  47902. },
  47903. back: {
  47904. height: math.unit(5 + 7/12, "feet"),
  47905. weight: math.unit(135, "lb"),
  47906. name: "Back",
  47907. image: {
  47908. source: "./media/characters/naomi/back.svg",
  47909. extra: 1252/1190,
  47910. bottom: 23/1275
  47911. }
  47912. },
  47913. },
  47914. [
  47915. {
  47916. name: "Normal",
  47917. height: math.unit(5 + 7 /12, "feet"),
  47918. default: true
  47919. },
  47920. ]
  47921. ))
  47922. characterMakers.push(() => makeCharacter(
  47923. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47924. {
  47925. side: {
  47926. height: math.unit(35, "meters"),
  47927. name: "Side",
  47928. image: {
  47929. source: "./media/characters/kimpi/side.svg",
  47930. extra: 419/382,
  47931. bottom: 63/482
  47932. }
  47933. },
  47934. hand: {
  47935. height: math.unit(8.96, "meters"),
  47936. name: "Hand",
  47937. image: {
  47938. source: "./media/characters/kimpi/hand.svg"
  47939. }
  47940. },
  47941. },
  47942. [
  47943. {
  47944. name: "Normal",
  47945. height: math.unit(35, "meters"),
  47946. default: true
  47947. },
  47948. ]
  47949. ))
  47950. characterMakers.push(() => makeCharacter(
  47951. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47952. {
  47953. front: {
  47954. height: math.unit(4 + 4/12, "feet"),
  47955. name: "Front",
  47956. image: {
  47957. source: "./media/characters/pepper-purrloin/front.svg",
  47958. extra: 1141/1024,
  47959. bottom: 21/1162
  47960. }
  47961. },
  47962. },
  47963. [
  47964. {
  47965. name: "Normal",
  47966. height: math.unit(4 + 4/12, "feet"),
  47967. default: true
  47968. },
  47969. ]
  47970. ))
  47971. characterMakers.push(() => makeCharacter(
  47972. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47973. {
  47974. front: {
  47975. height: math.unit(6 + 2/12, "feet"),
  47976. name: "Front",
  47977. image: {
  47978. source: "./media/characters/raphael/front.svg",
  47979. extra: 1101/962,
  47980. bottom: 59/1160
  47981. }
  47982. },
  47983. },
  47984. [
  47985. {
  47986. name: "Normal",
  47987. height: math.unit(6 + 2/12, "feet"),
  47988. default: true
  47989. },
  47990. ]
  47991. ))
  47992. characterMakers.push(() => makeCharacter(
  47993. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47994. {
  47995. front: {
  47996. height: math.unit(6, "feet"),
  47997. weight: math.unit(150, "lb"),
  47998. name: "Front",
  47999. image: {
  48000. source: "./media/characters/victor-williams/front.svg",
  48001. extra: 1894/1825,
  48002. bottom: 67/1961
  48003. }
  48004. },
  48005. },
  48006. [
  48007. {
  48008. name: "Normal",
  48009. height: math.unit(6, "feet"),
  48010. default: true
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48016. {
  48017. front: {
  48018. height: math.unit(5 + 8/12, "feet"),
  48019. weight: math.unit(150, "lb"),
  48020. name: "Front",
  48021. image: {
  48022. source: "./media/characters/rachel/front.svg",
  48023. extra: 1902/1787,
  48024. bottom: 46/1948
  48025. }
  48026. },
  48027. },
  48028. [
  48029. {
  48030. name: "Base Height",
  48031. height: math.unit(5 + 8/12, "feet"),
  48032. default: true
  48033. },
  48034. {
  48035. name: "Macro",
  48036. height: math.unit(200, "feet")
  48037. },
  48038. {
  48039. name: "Mega Macro",
  48040. height: math.unit(1, "mile")
  48041. },
  48042. {
  48043. name: "Giga Macro",
  48044. height: math.unit(1500, "miles")
  48045. },
  48046. {
  48047. name: "Tera Macro",
  48048. height: math.unit(8000, "miles")
  48049. },
  48050. {
  48051. name: "Tera Macro+",
  48052. height: math.unit(2e5, "miles")
  48053. },
  48054. ]
  48055. ))
  48056. characterMakers.push(() => makeCharacter(
  48057. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48058. {
  48059. front: {
  48060. height: math.unit(6.5, "feet"),
  48061. name: "Front",
  48062. image: {
  48063. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48064. extra: 860/819,
  48065. bottom: 307/1167
  48066. }
  48067. },
  48068. back: {
  48069. height: math.unit(6.5, "feet"),
  48070. name: "Back",
  48071. image: {
  48072. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48073. extra: 880/837,
  48074. bottom: 395/1275
  48075. }
  48076. },
  48077. sleeping: {
  48078. height: math.unit(2.79, "feet"),
  48079. name: "Sleeping",
  48080. image: {
  48081. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48082. extra: 465/383,
  48083. bottom: 263/728
  48084. }
  48085. },
  48086. maw: {
  48087. height: math.unit(2.52, "feet"),
  48088. name: "Maw",
  48089. image: {
  48090. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(6.5, "feet"),
  48098. default: true
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48104. {
  48105. front: {
  48106. height: math.unit(5, "feet"),
  48107. name: "Front",
  48108. image: {
  48109. source: "./media/characters/nova-nerium/front.svg",
  48110. extra: 1548/1392,
  48111. bottom: 374/1922
  48112. }
  48113. },
  48114. back: {
  48115. height: math.unit(5, "feet"),
  48116. name: "Back",
  48117. image: {
  48118. source: "./media/characters/nova-nerium/back.svg",
  48119. extra: 1658/1468,
  48120. bottom: 257/1915
  48121. }
  48122. },
  48123. },
  48124. [
  48125. {
  48126. name: "Normal",
  48127. height: math.unit(5, "feet"),
  48128. default: true
  48129. },
  48130. ]
  48131. ))
  48132. characterMakers.push(() => makeCharacter(
  48133. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48134. {
  48135. front: {
  48136. height: math.unit(5 + 4/12, "feet"),
  48137. name: "Front",
  48138. image: {
  48139. source: "./media/characters/ashe-pyriph/front.svg",
  48140. extra: 1935/1747,
  48141. bottom: 60/1995
  48142. }
  48143. },
  48144. },
  48145. [
  48146. {
  48147. name: "Normal",
  48148. height: math.unit(5 + 4/12, "feet"),
  48149. default: true
  48150. },
  48151. ]
  48152. ))
  48153. characterMakers.push(() => makeCharacter(
  48154. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48155. {
  48156. front: {
  48157. height: math.unit(8.7, "feet"),
  48158. name: "Front",
  48159. image: {
  48160. source: "./media/characters/flicker-wisp/front.svg",
  48161. extra: 1835/1613,
  48162. bottom: 449/2284
  48163. }
  48164. },
  48165. side: {
  48166. height: math.unit(8.7, "feet"),
  48167. name: "Side",
  48168. image: {
  48169. source: "./media/characters/flicker-wisp/side.svg",
  48170. extra: 1841/1642,
  48171. bottom: 336/2177
  48172. },
  48173. default: true
  48174. },
  48175. maw: {
  48176. height: math.unit(3.35, "feet"),
  48177. name: "Maw",
  48178. image: {
  48179. source: "./media/characters/flicker-wisp/maw.svg",
  48180. extra: 2338/1506,
  48181. bottom: 0/2338
  48182. }
  48183. },
  48184. ovipositor: {
  48185. height: math.unit(4.95, "feet"),
  48186. name: "Ovipositor",
  48187. image: {
  48188. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48189. }
  48190. },
  48191. egg: {
  48192. height: math.unit(0.385, "feet"),
  48193. weight: math.unit(2, "lb"),
  48194. name: "Egg",
  48195. image: {
  48196. source: "./media/characters/flicker-wisp/egg.svg"
  48197. }
  48198. },
  48199. },
  48200. [
  48201. {
  48202. name: "Normal",
  48203. height: math.unit(8.7, "feet"),
  48204. default: true
  48205. },
  48206. ]
  48207. ))
  48208. characterMakers.push(() => makeCharacter(
  48209. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48210. {
  48211. side: {
  48212. height: math.unit(11, "feet"),
  48213. name: "Side",
  48214. image: {
  48215. source: "./media/characters/faefnul/side.svg",
  48216. extra: 1100/1007,
  48217. bottom: 0/1100
  48218. }
  48219. },
  48220. },
  48221. [
  48222. {
  48223. name: "Normal",
  48224. height: math.unit(11, "feet"),
  48225. default: true
  48226. },
  48227. ]
  48228. ))
  48229. characterMakers.push(() => makeCharacter(
  48230. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48231. {
  48232. front: {
  48233. height: math.unit(6 + 2/12, "feet"),
  48234. name: "Front",
  48235. image: {
  48236. source: "./media/characters/shady/front.svg",
  48237. extra: 502/461,
  48238. bottom: 9/511
  48239. }
  48240. },
  48241. kneeling: {
  48242. height: math.unit(4.6, "feet"),
  48243. name: "Kneeling",
  48244. image: {
  48245. source: "./media/characters/shady/kneeling.svg",
  48246. extra: 1328/1219,
  48247. bottom: 117/1445
  48248. }
  48249. },
  48250. maw: {
  48251. height: math.unit(2, "feet"),
  48252. name: "Maw",
  48253. image: {
  48254. source: "./media/characters/shady/maw.svg"
  48255. }
  48256. },
  48257. },
  48258. [
  48259. {
  48260. name: "Nano",
  48261. height: math.unit(1, "mm")
  48262. },
  48263. {
  48264. name: "Micro",
  48265. height: math.unit(12, "mm")
  48266. },
  48267. {
  48268. name: "Tiny",
  48269. height: math.unit(3, "inches")
  48270. },
  48271. {
  48272. name: "Normal",
  48273. height: math.unit(6 + 2/12, "feet"),
  48274. default: true
  48275. },
  48276. {
  48277. name: "Big",
  48278. height: math.unit(15, "feet")
  48279. },
  48280. {
  48281. name: "Macro",
  48282. height: math.unit(150, "feet")
  48283. },
  48284. {
  48285. name: "Titanic",
  48286. height: math.unit(500, "feet")
  48287. },
  48288. ]
  48289. ))
  48290. characterMakers.push(() => makeCharacter(
  48291. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48292. {
  48293. front: {
  48294. height: math.unit(12, "feet"),
  48295. name: "Front",
  48296. image: {
  48297. source: "./media/characters/fenrir/front.svg",
  48298. extra: 968/875,
  48299. bottom: 22/990
  48300. }
  48301. },
  48302. },
  48303. [
  48304. {
  48305. name: "Big",
  48306. height: math.unit(12, "feet"),
  48307. default: true
  48308. },
  48309. ]
  48310. ))
  48311. characterMakers.push(() => makeCharacter(
  48312. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48313. {
  48314. front: {
  48315. height: math.unit(5 + 4/12, "feet"),
  48316. name: "Front",
  48317. image: {
  48318. source: "./media/characters/makar/front.svg",
  48319. extra: 1181/1112,
  48320. bottom: 78/1259
  48321. }
  48322. },
  48323. },
  48324. [
  48325. {
  48326. name: "Normal",
  48327. height: math.unit(5 + 4/12, "feet"),
  48328. default: true
  48329. },
  48330. ]
  48331. ))
  48332. characterMakers.push(() => makeCharacter(
  48333. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48334. {
  48335. front: {
  48336. height: math.unit(5 + 7/12, "feet"),
  48337. name: "Front",
  48338. image: {
  48339. source: "./media/characters/callow/front.svg",
  48340. extra: 1482/1304,
  48341. bottom: 23/1505
  48342. }
  48343. },
  48344. back: {
  48345. height: math.unit(5 + 7/12, "feet"),
  48346. name: "Back",
  48347. image: {
  48348. source: "./media/characters/callow/back.svg",
  48349. extra: 1484/1296,
  48350. bottom: 25/1509
  48351. }
  48352. },
  48353. },
  48354. [
  48355. {
  48356. name: "Micro",
  48357. height: math.unit(3, "inches"),
  48358. default: true
  48359. },
  48360. {
  48361. name: "Normal",
  48362. height: math.unit(5 + 7/12, "feet")
  48363. },
  48364. ]
  48365. ))
  48366. characterMakers.push(() => makeCharacter(
  48367. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48368. {
  48369. front: {
  48370. height: math.unit(6 + 2/12, "feet"),
  48371. name: "Front",
  48372. image: {
  48373. source: "./media/characters/natel/front.svg",
  48374. extra: 1833/1692,
  48375. bottom: 166/1999
  48376. }
  48377. },
  48378. },
  48379. [
  48380. {
  48381. name: "Normal",
  48382. height: math.unit(6 + 2/12, "feet"),
  48383. default: true
  48384. },
  48385. ]
  48386. ))
  48387. characterMakers.push(() => makeCharacter(
  48388. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48389. {
  48390. front: {
  48391. height: math.unit(1.75, "meters"),
  48392. name: "Front",
  48393. image: {
  48394. source: "./media/characters/misu/front.svg",
  48395. extra: 1690/1558,
  48396. bottom: 234/1924
  48397. }
  48398. },
  48399. back: {
  48400. height: math.unit(1.75, "meters"),
  48401. name: "Back",
  48402. image: {
  48403. source: "./media/characters/misu/back.svg",
  48404. extra: 1762/1618,
  48405. bottom: 146/1908
  48406. }
  48407. },
  48408. frontNude: {
  48409. height: math.unit(1.75, "meters"),
  48410. name: "Front (Nude)",
  48411. image: {
  48412. source: "./media/characters/misu/front-nude.svg",
  48413. extra: 1690/1558,
  48414. bottom: 234/1924
  48415. }
  48416. },
  48417. backNude: {
  48418. height: math.unit(1.75, "meters"),
  48419. name: "Back (Nude)",
  48420. image: {
  48421. source: "./media/characters/misu/back-nude.svg",
  48422. extra: 1762/1618,
  48423. bottom: 146/1908
  48424. }
  48425. },
  48426. frontErect: {
  48427. height: math.unit(1.75, "meters"),
  48428. name: "Front (Erect)",
  48429. image: {
  48430. source: "./media/characters/misu/front-erect.svg",
  48431. extra: 1690/1558,
  48432. bottom: 234/1924
  48433. }
  48434. },
  48435. maw: {
  48436. height: math.unit(0.47, "meters"),
  48437. name: "Maw",
  48438. image: {
  48439. source: "./media/characters/misu/maw.svg"
  48440. }
  48441. },
  48442. head: {
  48443. height: math.unit(0.35, "meters"),
  48444. name: "Head",
  48445. image: {
  48446. source: "./media/characters/misu/head.svg"
  48447. }
  48448. },
  48449. rear: {
  48450. height: math.unit(0.47, "meters"),
  48451. name: "Rear",
  48452. image: {
  48453. source: "./media/characters/misu/rear.svg"
  48454. }
  48455. },
  48456. },
  48457. [
  48458. {
  48459. name: "Normal",
  48460. height: math.unit(1.75, "meters")
  48461. },
  48462. {
  48463. name: "Not good for the people",
  48464. height: math.unit(42, "meters")
  48465. },
  48466. {
  48467. name: "Not good for the neighborhood",
  48468. height: math.unit(135, "meters")
  48469. },
  48470. {
  48471. name: "Bit bigger problem",
  48472. height: math.unit(380, "meters"),
  48473. default: true
  48474. },
  48475. {
  48476. name: "Not good for the city",
  48477. height: math.unit(1.5, "km")
  48478. },
  48479. {
  48480. name: "Not good for the county",
  48481. height: math.unit(5.5, "km")
  48482. },
  48483. {
  48484. name: "Not good for the state",
  48485. height: math.unit(25, "km")
  48486. },
  48487. {
  48488. name: "Not good for the country",
  48489. height: math.unit(125, "km")
  48490. },
  48491. {
  48492. name: "Not good for the continent",
  48493. height: math.unit(2100, "km")
  48494. },
  48495. {
  48496. name: "Not good for the planet",
  48497. height: math.unit(35000, "km")
  48498. },
  48499. {
  48500. name: "Just no",
  48501. height: math.unit(8.5e18, "km")
  48502. },
  48503. ]
  48504. ))
  48505. characterMakers.push(() => makeCharacter(
  48506. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48507. {
  48508. front: {
  48509. height: math.unit(6.5, "feet"),
  48510. name: "Front",
  48511. image: {
  48512. source: "./media/characters/poppy/front.svg",
  48513. extra: 1878/1812,
  48514. bottom: 43/1921
  48515. }
  48516. },
  48517. feet: {
  48518. height: math.unit(1.06, "feet"),
  48519. name: "Feet",
  48520. image: {
  48521. source: "./media/characters/poppy/feet.svg",
  48522. extra: 1083/1083,
  48523. bottom: 87/1170
  48524. }
  48525. },
  48526. },
  48527. [
  48528. {
  48529. name: "Human",
  48530. height: math.unit(6.5, "feet")
  48531. },
  48532. {
  48533. name: "Default",
  48534. height: math.unit(300, "feet"),
  48535. default: true
  48536. },
  48537. {
  48538. name: "Huge",
  48539. height: math.unit(850, "feet")
  48540. },
  48541. {
  48542. name: "Mega",
  48543. height: math.unit(8000, "feet")
  48544. },
  48545. {
  48546. name: "Giga",
  48547. height: math.unit(300, "miles")
  48548. },
  48549. ]
  48550. ))
  48551. characterMakers.push(() => makeCharacter(
  48552. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48553. {
  48554. bipedal: {
  48555. height: math.unit(7, "feet"),
  48556. name: "Bipedal",
  48557. image: {
  48558. source: "./media/characters/zener/bipedal.svg",
  48559. extra: 874/805,
  48560. bottom: 109/983
  48561. }
  48562. },
  48563. quadrupedal: {
  48564. height: math.unit(4.64, "feet"),
  48565. name: "Quadrupedal",
  48566. image: {
  48567. source: "./media/characters/zener/quadrupedal.svg",
  48568. extra: 638/507,
  48569. bottom: 190/828
  48570. }
  48571. },
  48572. cock: {
  48573. height: math.unit(18, "inches"),
  48574. name: "Cock",
  48575. image: {
  48576. source: "./media/characters/zener/cock.svg"
  48577. }
  48578. },
  48579. },
  48580. [
  48581. {
  48582. name: "Normal",
  48583. height: math.unit(7, "feet"),
  48584. default: true
  48585. },
  48586. ]
  48587. ))
  48588. characterMakers.push(() => makeCharacter(
  48589. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48590. {
  48591. nude: {
  48592. height: math.unit(5 + 6/12, "feet"),
  48593. name: "Nude",
  48594. image: {
  48595. source: "./media/characters/charlie-dog/nude.svg",
  48596. extra: 768/734,
  48597. bottom: 26/794
  48598. }
  48599. },
  48600. dressed: {
  48601. height: math.unit(5 + 6/12, "feet"),
  48602. name: "Dressed",
  48603. image: {
  48604. source: "./media/characters/charlie-dog/dressed.svg",
  48605. extra: 768/734,
  48606. bottom: 26/794
  48607. }
  48608. },
  48609. },
  48610. [
  48611. {
  48612. name: "Normal",
  48613. height: math.unit(5 + 6/12, "feet"),
  48614. default: true
  48615. },
  48616. ]
  48617. ))
  48618. characterMakers.push(() => makeCharacter(
  48619. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48620. {
  48621. front: {
  48622. height: math.unit(6 + 4/12, "feet"),
  48623. name: "Front",
  48624. image: {
  48625. source: "./media/characters/ir'istrasz/front.svg",
  48626. extra: 1014/977,
  48627. bottom: 65/1079
  48628. }
  48629. },
  48630. back: {
  48631. height: math.unit(6 + 4/12, "feet"),
  48632. name: "Back",
  48633. image: {
  48634. source: "./media/characters/ir'istrasz/back.svg",
  48635. extra: 1024/992,
  48636. bottom: 34/1058
  48637. }
  48638. },
  48639. },
  48640. [
  48641. {
  48642. name: "Normal",
  48643. height: math.unit(6 + 4/12, "feet"),
  48644. default: true
  48645. },
  48646. ]
  48647. ))
  48648. characterMakers.push(() => makeCharacter(
  48649. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48650. {
  48651. front: {
  48652. height: math.unit(5 + 8/12, "feet"),
  48653. name: "Front",
  48654. image: {
  48655. source: "./media/characters/dee-ditto/front.svg",
  48656. extra: 1874/1785,
  48657. bottom: 68/1942
  48658. }
  48659. },
  48660. back: {
  48661. height: math.unit(5 + 8/12, "feet"),
  48662. name: "Back",
  48663. image: {
  48664. source: "./media/characters/dee-ditto/back.svg",
  48665. extra: 1870/1783,
  48666. bottom: 77/1947
  48667. }
  48668. },
  48669. },
  48670. [
  48671. {
  48672. name: "Normal",
  48673. height: math.unit(5 + 8/12, "feet"),
  48674. default: true
  48675. },
  48676. ]
  48677. ))
  48678. characterMakers.push(() => makeCharacter(
  48679. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48680. {
  48681. front: {
  48682. height: math.unit(7 + 6/12, "feet"),
  48683. name: "Front",
  48684. image: {
  48685. source: "./media/characters/fey/front.svg",
  48686. extra: 995/979,
  48687. bottom: 30/1025
  48688. }
  48689. },
  48690. back: {
  48691. height: math.unit(7 + 6/12, "feet"),
  48692. name: "Back",
  48693. image: {
  48694. source: "./media/characters/fey/back.svg",
  48695. extra: 1079/1008,
  48696. bottom: 5/1084
  48697. }
  48698. },
  48699. dressed: {
  48700. height: math.unit(7 + 6/12, "feet"),
  48701. name: "Dressed",
  48702. image: {
  48703. source: "./media/characters/fey/dressed.svg",
  48704. extra: 995/979,
  48705. bottom: 30/1025
  48706. }
  48707. },
  48708. },
  48709. [
  48710. {
  48711. name: "Normal",
  48712. height: math.unit(7 + 6/12, "feet"),
  48713. default: true
  48714. },
  48715. ]
  48716. ))
  48717. characterMakers.push(() => makeCharacter(
  48718. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48719. {
  48720. standing: {
  48721. height: math.unit(17, "feet"),
  48722. name: "Standing",
  48723. image: {
  48724. source: "./media/characters/aster/standing.svg",
  48725. extra: 1798/1598,
  48726. bottom: 117/1915
  48727. }
  48728. },
  48729. },
  48730. [
  48731. {
  48732. name: "Normal",
  48733. height: math.unit(17, "feet"),
  48734. default: true
  48735. },
  48736. {
  48737. name: "Homewrecker",
  48738. height: math.unit(95, "feet")
  48739. },
  48740. {
  48741. name: "Planet Devourer",
  48742. height: math.unit(1008000, "miles")
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48748. {
  48749. front: {
  48750. height: math.unit(6 + 5/12, "feet"),
  48751. weight: math.unit(265, "lb"),
  48752. name: "Front",
  48753. image: {
  48754. source: "./media/characters/devon-childs/front.svg",
  48755. extra: 1795/1721,
  48756. bottom: 41/1836
  48757. }
  48758. },
  48759. side: {
  48760. height: math.unit(6 + 5/12, "feet"),
  48761. weight: math.unit(265, "lb"),
  48762. name: "Side",
  48763. image: {
  48764. source: "./media/characters/devon-childs/side.svg",
  48765. extra: 1812/1738,
  48766. bottom: 30/1842
  48767. }
  48768. },
  48769. back: {
  48770. height: math.unit(6 + 5/12, "feet"),
  48771. weight: math.unit(265, "lb"),
  48772. name: "Back",
  48773. image: {
  48774. source: "./media/characters/devon-childs/back.svg",
  48775. extra: 1808/1735,
  48776. bottom: 23/1831
  48777. }
  48778. },
  48779. hand: {
  48780. height: math.unit(1.464, "feet"),
  48781. name: "Hand",
  48782. image: {
  48783. source: "./media/characters/devon-childs/hand.svg"
  48784. }
  48785. },
  48786. foot: {
  48787. height: math.unit(1.6, "feet"),
  48788. name: "Foot",
  48789. image: {
  48790. source: "./media/characters/devon-childs/foot.svg"
  48791. }
  48792. },
  48793. },
  48794. [
  48795. {
  48796. name: "Micro",
  48797. height: math.unit(7, "cm")
  48798. },
  48799. {
  48800. name: "Normal",
  48801. height: math.unit(6 + 5/12, "feet"),
  48802. default: true
  48803. },
  48804. {
  48805. name: "Macro",
  48806. height: math.unit(154, "feet")
  48807. },
  48808. ]
  48809. ))
  48810. characterMakers.push(() => makeCharacter(
  48811. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48812. {
  48813. front: {
  48814. height: math.unit(6, "feet"),
  48815. weight: math.unit(180, "lb"),
  48816. name: "Front",
  48817. image: {
  48818. source: "./media/characters/lydemox-vir/front.svg",
  48819. extra: 1632/1435,
  48820. bottom: 58/1690
  48821. }
  48822. },
  48823. frontSFW: {
  48824. height: math.unit(6, "feet"),
  48825. weight: math.unit(180, "lb"),
  48826. name: "Front (SFW)",
  48827. image: {
  48828. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48829. extra: 1632/1435,
  48830. bottom: 58/1690
  48831. }
  48832. },
  48833. back: {
  48834. height: math.unit(6, "feet"),
  48835. weight: math.unit(180, "lb"),
  48836. name: "Back",
  48837. image: {
  48838. source: "./media/characters/lydemox-vir/back.svg",
  48839. extra: 1593/1408,
  48840. bottom: 31/1624
  48841. }
  48842. },
  48843. paw: {
  48844. height: math.unit(1.85, "feet"),
  48845. name: "Paw",
  48846. image: {
  48847. source: "./media/characters/lydemox-vir/paw.svg"
  48848. }
  48849. },
  48850. dick: {
  48851. height: math.unit(1.8, "feet"),
  48852. name: "Dick",
  48853. image: {
  48854. source: "./media/characters/lydemox-vir/dick.svg"
  48855. }
  48856. },
  48857. },
  48858. [
  48859. {
  48860. name: "Macro",
  48861. height: math.unit(100, "feet"),
  48862. default: true
  48863. },
  48864. {
  48865. name: "Teramacro",
  48866. height: math.unit(1, "earth")
  48867. },
  48868. {
  48869. name: "Planetary",
  48870. height: math.unit(20, "earths")
  48871. },
  48872. ]
  48873. ))
  48874. characterMakers.push(() => makeCharacter(
  48875. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48876. {
  48877. front: {
  48878. height: math.unit(15 + 8/12, "feet"),
  48879. weight: math.unit(1237, "kg"),
  48880. name: "Front",
  48881. image: {
  48882. source: "./media/characters/mia/front.svg",
  48883. extra: 1573/1446,
  48884. bottom: 58/1631
  48885. }
  48886. },
  48887. },
  48888. [
  48889. {
  48890. name: "Small",
  48891. height: math.unit(9 + 5/12, "feet")
  48892. },
  48893. {
  48894. name: "Normal",
  48895. height: math.unit(15 + 8/12, "feet"),
  48896. default: true
  48897. },
  48898. ]
  48899. ))
  48900. characterMakers.push(() => makeCharacter(
  48901. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48902. {
  48903. front: {
  48904. height: math.unit(10 + 6/12, "feet"),
  48905. weight: math.unit(1.3, "tons"),
  48906. name: "Front",
  48907. image: {
  48908. source: "./media/characters/mr-graves/front.svg",
  48909. extra: 1779/1695,
  48910. bottom: 198/1977
  48911. }
  48912. },
  48913. },
  48914. [
  48915. {
  48916. name: "Normal",
  48917. height: math.unit(10 + 6 /12, "feet"),
  48918. default: true
  48919. },
  48920. ]
  48921. ))
  48922. characterMakers.push(() => makeCharacter(
  48923. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48924. {
  48925. dressedFront: {
  48926. height: math.unit(5 + 8/12, "feet"),
  48927. weight: math.unit(125, "lb"),
  48928. name: "Dressed (Front)",
  48929. image: {
  48930. source: "./media/characters/jess/dressed-front.svg",
  48931. extra: 1176/1152,
  48932. bottom: 42/1218
  48933. }
  48934. },
  48935. dressedSide: {
  48936. height: math.unit(5 + 8/12, "feet"),
  48937. weight: math.unit(125, "lb"),
  48938. name: "Dressed (Side)",
  48939. image: {
  48940. source: "./media/characters/jess/dressed-side.svg",
  48941. extra: 1204/1190,
  48942. bottom: 6/1210
  48943. }
  48944. },
  48945. nudeFront: {
  48946. height: math.unit(5 + 8/12, "feet"),
  48947. weight: math.unit(125, "lb"),
  48948. name: "Nude (Front)",
  48949. image: {
  48950. source: "./media/characters/jess/nude-front.svg",
  48951. extra: 1176/1152,
  48952. bottom: 42/1218
  48953. }
  48954. },
  48955. nudeSide: {
  48956. height: math.unit(5 + 8/12, "feet"),
  48957. weight: math.unit(125, "lb"),
  48958. name: "Nude (Side)",
  48959. image: {
  48960. source: "./media/characters/jess/nude-side.svg",
  48961. extra: 1204/1190,
  48962. bottom: 6/1210
  48963. }
  48964. },
  48965. organsFront: {
  48966. height: math.unit(2.83799342105, "feet"),
  48967. name: "Organs (Front)",
  48968. image: {
  48969. source: "./media/characters/jess/organs-front.svg"
  48970. }
  48971. },
  48972. organsSide: {
  48973. height: math.unit(2.64225290474, "feet"),
  48974. name: "Organs (Side)",
  48975. image: {
  48976. source: "./media/characters/jess/organs-side.svg"
  48977. }
  48978. },
  48979. digestiveTractFront: {
  48980. height: math.unit(2.8106580871, "feet"),
  48981. name: "Digestive Tract (Front)",
  48982. image: {
  48983. source: "./media/characters/jess/digestive-tract-front.svg"
  48984. }
  48985. },
  48986. digestiveTractSide: {
  48987. height: math.unit(2.54365045014, "feet"),
  48988. name: "Digestive Tract (Side)",
  48989. image: {
  48990. source: "./media/characters/jess/digestive-tract-side.svg"
  48991. }
  48992. },
  48993. respiratorySystemFront: {
  48994. height: math.unit(1.11196233456, "feet"),
  48995. name: "Respiratory System (Front)",
  48996. image: {
  48997. source: "./media/characters/jess/respiratory-system-front.svg"
  48998. }
  48999. },
  49000. respiratorySystemSide: {
  49001. height: math.unit(0.89327966297, "feet"),
  49002. name: "Respiratory System (Side)",
  49003. image: {
  49004. source: "./media/characters/jess/respiratory-system-side.svg"
  49005. }
  49006. },
  49007. urinaryTractFront: {
  49008. height: math.unit(1.16126356186, "feet"),
  49009. name: "Urinary Tract (Front)",
  49010. image: {
  49011. source: "./media/characters/jess/urinary-tract-front.svg"
  49012. }
  49013. },
  49014. urinaryTractSide: {
  49015. height: math.unit(1.20910039627, "feet"),
  49016. name: "Urinary Tract (Side)",
  49017. image: {
  49018. source: "./media/characters/jess/urinary-tract-side.svg"
  49019. }
  49020. },
  49021. reproductiveOrgansFront: {
  49022. height: math.unit(0.48422591566, "feet"),
  49023. name: "Reproductive Organs (Front)",
  49024. image: {
  49025. source: "./media/characters/jess/reproductive-organs-front.svg"
  49026. }
  49027. },
  49028. reproductiveOrgansSide: {
  49029. height: math.unit(0.61553314481, "feet"),
  49030. name: "Reproductive Organs (Side)",
  49031. image: {
  49032. source: "./media/characters/jess/reproductive-organs-side.svg"
  49033. }
  49034. },
  49035. breastsFront: {
  49036. height: math.unit(0.47690395121, "feet"),
  49037. name: "Breasts (Front)",
  49038. image: {
  49039. source: "./media/characters/jess/breasts-front.svg"
  49040. }
  49041. },
  49042. breastsSide: {
  49043. height: math.unit(0.30556998307, "feet"),
  49044. name: "Breasts (Side)",
  49045. image: {
  49046. source: "./media/characters/jess/breasts-side.svg"
  49047. }
  49048. },
  49049. heartFront: {
  49050. height: math.unit(0.53011022622, "feet"),
  49051. name: "Heart (Front)",
  49052. image: {
  49053. source: "./media/characters/jess/heart-front.svg"
  49054. }
  49055. },
  49056. heartSide: {
  49057. height: math.unit(0.51790695213, "feet"),
  49058. name: "Heart (Side)",
  49059. image: {
  49060. source: "./media/characters/jess/heart-side.svg"
  49061. }
  49062. },
  49063. earsAndNoseFront: {
  49064. height: math.unit(0.29385483995, "feet"),
  49065. name: "Ears and Nose (Front)",
  49066. image: {
  49067. source: "./media/characters/jess/ears-and-nose-front.svg"
  49068. }
  49069. },
  49070. earsAndNoseSide: {
  49071. height: math.unit(0.18109658741, "feet"),
  49072. name: "Ears and Nose (Side)",
  49073. image: {
  49074. source: "./media/characters/jess/ears-and-nose-side.svg"
  49075. }
  49076. },
  49077. },
  49078. [
  49079. {
  49080. name: "Normal",
  49081. height: math.unit(5 + 8/12, "feet"),
  49082. default: true
  49083. },
  49084. ]
  49085. ))
  49086. characterMakers.push(() => makeCharacter(
  49087. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49088. {
  49089. front: {
  49090. height: math.unit(6, "feet"),
  49091. weight: math.unit(6.64467e-7, "grams"),
  49092. name: "Front",
  49093. image: {
  49094. source: "./media/characters/wimpering/front.svg",
  49095. extra: 597/587,
  49096. bottom: 34/631
  49097. }
  49098. },
  49099. },
  49100. [
  49101. {
  49102. name: "Micro",
  49103. height: math.unit(0.4, "mm"),
  49104. default: true
  49105. },
  49106. ]
  49107. ))
  49108. characterMakers.push(() => makeCharacter(
  49109. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49110. {
  49111. front: {
  49112. height: math.unit(5 + 2/12, "feet"),
  49113. weight: math.unit(110, "lb"),
  49114. name: "Front",
  49115. image: {
  49116. source: "./media/characters/keltre/front.svg",
  49117. extra: 1099/1057,
  49118. bottom: 22/1121
  49119. }
  49120. },
  49121. back: {
  49122. height: math.unit(5 + 2/12, "feet"),
  49123. weight: math.unit(110, "lb"),
  49124. name: "Back",
  49125. image: {
  49126. source: "./media/characters/keltre/back.svg",
  49127. extra: 1095/1053,
  49128. bottom: 17/1112
  49129. }
  49130. },
  49131. dressed: {
  49132. height: math.unit(5 + 2/12, "feet"),
  49133. weight: math.unit(110, "lb"),
  49134. name: "Dressed",
  49135. image: {
  49136. source: "./media/characters/keltre/dressed.svg",
  49137. extra: 1099/1057,
  49138. bottom: 22/1121
  49139. }
  49140. },
  49141. winter: {
  49142. height: math.unit(5 + 2/12, "feet"),
  49143. weight: math.unit(110, "lb"),
  49144. name: "Winter",
  49145. image: {
  49146. source: "./media/characters/keltre/winter.svg",
  49147. extra: 1099/1057,
  49148. bottom: 22/1121
  49149. }
  49150. },
  49151. head: {
  49152. height: math.unit(1.61 * 0.86, "feet"),
  49153. name: "Head",
  49154. image: {
  49155. source: "./media/characters/keltre/head.svg",
  49156. extra: 534/421,
  49157. bottom: 0/534
  49158. }
  49159. },
  49160. hand: {
  49161. height: math.unit(1.3 * 0.86, "feet"),
  49162. name: "Hand",
  49163. image: {
  49164. source: "./media/characters/keltre/hand.svg"
  49165. }
  49166. },
  49167. foot: {
  49168. height: math.unit(1.8 * 0.86, "feet"),
  49169. name: "Foot",
  49170. image: {
  49171. source: "./media/characters/keltre/foot.svg"
  49172. }
  49173. },
  49174. },
  49175. [
  49176. {
  49177. name: "Fine",
  49178. height: math.unit(1, "inch")
  49179. },
  49180. {
  49181. name: "Dimnutive",
  49182. height: math.unit(4, "inches")
  49183. },
  49184. {
  49185. name: "Tiny",
  49186. height: math.unit(1, "foot")
  49187. },
  49188. {
  49189. name: "Small",
  49190. height: math.unit(3, "feet")
  49191. },
  49192. {
  49193. name: "Normal",
  49194. height: math.unit(5 + 2/12, "feet"),
  49195. default: true
  49196. },
  49197. ]
  49198. ))
  49199. characterMakers.push(() => makeCharacter(
  49200. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49201. {
  49202. front: {
  49203. height: math.unit(6 + 2/12, "feet"),
  49204. name: "Front",
  49205. image: {
  49206. source: "./media/characters/nox/front.svg",
  49207. extra: 1917/1830,
  49208. bottom: 74/1991
  49209. }
  49210. },
  49211. back: {
  49212. height: math.unit(6 + 2/12, "feet"),
  49213. name: "Back",
  49214. image: {
  49215. source: "./media/characters/nox/back.svg",
  49216. extra: 1896/1815,
  49217. bottom: 21/1917
  49218. }
  49219. },
  49220. head: {
  49221. height: math.unit(1.1, "feet"),
  49222. name: "Head",
  49223. image: {
  49224. source: "./media/characters/nox/head.svg",
  49225. extra: 874/704,
  49226. bottom: 0/874
  49227. }
  49228. },
  49229. tattoo: {
  49230. height: math.unit(0.729, "feet"),
  49231. name: "Tattoo",
  49232. image: {
  49233. source: "./media/characters/nox/tattoo.svg"
  49234. }
  49235. },
  49236. },
  49237. [
  49238. {
  49239. name: "Normal",
  49240. height: math.unit(6 + 2/12, "feet")
  49241. },
  49242. {
  49243. name: "Gigamacro",
  49244. height: math.unit(2, "earths"),
  49245. default: true
  49246. },
  49247. {
  49248. name: "Cosmic",
  49249. height: math.unit(867, "yottameters")
  49250. },
  49251. ]
  49252. ))
  49253. characterMakers.push(() => makeCharacter(
  49254. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49255. {
  49256. front: {
  49257. height: math.unit(6, "feet"),
  49258. weight: math.unit(150, "lb"),
  49259. name: "Front",
  49260. image: {
  49261. source: "./media/characters/caspian/front.svg",
  49262. extra: 1443/1359,
  49263. bottom: 0/1443
  49264. }
  49265. },
  49266. back: {
  49267. height: math.unit(6, "feet"),
  49268. weight: math.unit(150, "lb"),
  49269. name: "Back",
  49270. image: {
  49271. source: "./media/characters/caspian/back.svg",
  49272. extra: 1379/1309,
  49273. bottom: 0/1379
  49274. }
  49275. },
  49276. head: {
  49277. height: math.unit(0.9, "feet"),
  49278. name: "Head",
  49279. image: {
  49280. source: "./media/characters/caspian/head.svg",
  49281. extra: 692/492,
  49282. bottom: 0/692
  49283. }
  49284. },
  49285. headAlt: {
  49286. height: math.unit(0.95, "feet"),
  49287. name: "Head (Alt)",
  49288. image: {
  49289. source: "./media/characters/caspian/head-alt.svg",
  49290. extra: 668/508,
  49291. bottom: 0/668
  49292. }
  49293. },
  49294. hand: {
  49295. height: math.unit(0.8, "feet"),
  49296. name: "Hand",
  49297. image: {
  49298. source: "./media/characters/caspian/hand.svg"
  49299. }
  49300. },
  49301. paw: {
  49302. height: math.unit(0.95, "feet"),
  49303. name: "Paw",
  49304. image: {
  49305. source: "./media/characters/caspian/paw.svg"
  49306. }
  49307. },
  49308. },
  49309. [
  49310. {
  49311. name: "Normal",
  49312. height: math.unit(162, "feet"),
  49313. default: true
  49314. },
  49315. ]
  49316. ))
  49317. characterMakers.push(() => makeCharacter(
  49318. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49319. {
  49320. front: {
  49321. height: math.unit(6, "feet"),
  49322. name: "Front",
  49323. image: {
  49324. source: "./media/characters/myra-aisling/front.svg",
  49325. extra: 1268/1166,
  49326. bottom: 73/1341
  49327. }
  49328. },
  49329. back: {
  49330. height: math.unit(6, "feet"),
  49331. name: "Back",
  49332. image: {
  49333. source: "./media/characters/myra-aisling/back.svg",
  49334. extra: 1249/1149,
  49335. bottom: 79/1328
  49336. }
  49337. },
  49338. dressed: {
  49339. height: math.unit(6, "feet"),
  49340. name: "Dressed",
  49341. image: {
  49342. source: "./media/characters/myra-aisling/dressed.svg",
  49343. extra: 1290/1189,
  49344. bottom: 47/1337
  49345. }
  49346. },
  49347. hand: {
  49348. height: math.unit(1.1, "feet"),
  49349. name: "Hand",
  49350. image: {
  49351. source: "./media/characters/myra-aisling/hand.svg"
  49352. }
  49353. },
  49354. paw: {
  49355. height: math.unit(1.23, "feet"),
  49356. name: "Paw",
  49357. image: {
  49358. source: "./media/characters/myra-aisling/paw.svg"
  49359. }
  49360. },
  49361. },
  49362. [
  49363. {
  49364. name: "Normal",
  49365. height: math.unit(160, "feet"),
  49366. default: true
  49367. },
  49368. ]
  49369. ))
  49370. characterMakers.push(() => makeCharacter(
  49371. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49372. {
  49373. front: {
  49374. height: math.unit(6, "feet"),
  49375. name: "Front",
  49376. image: {
  49377. source: "./media/characters/tenley-sidero/front.svg",
  49378. extra: 1365/1276,
  49379. bottom: 47/1412
  49380. }
  49381. },
  49382. back: {
  49383. height: math.unit(6, "feet"),
  49384. name: "Back",
  49385. image: {
  49386. source: "./media/characters/tenley-sidero/back.svg",
  49387. extra: 1383/1283,
  49388. bottom: 35/1418
  49389. }
  49390. },
  49391. dressed: {
  49392. height: math.unit(6, "feet"),
  49393. name: "Dressed",
  49394. image: {
  49395. source: "./media/characters/tenley-sidero/dressed.svg",
  49396. extra: 1364/1275,
  49397. bottom: 42/1406
  49398. }
  49399. },
  49400. head: {
  49401. height: math.unit(1.47, "feet"),
  49402. name: "Head",
  49403. image: {
  49404. source: "./media/characters/tenley-sidero/head.svg",
  49405. extra: 610/490,
  49406. bottom: 0/610
  49407. }
  49408. },
  49409. },
  49410. [
  49411. {
  49412. name: "Normal",
  49413. height: math.unit(154, "feet"),
  49414. default: true
  49415. },
  49416. ]
  49417. ))
  49418. characterMakers.push(() => makeCharacter(
  49419. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49420. {
  49421. front: {
  49422. height: math.unit(5, "inches"),
  49423. name: "Front",
  49424. image: {
  49425. source: "./media/characters/mallory/front.svg",
  49426. extra: 1919/1678,
  49427. bottom: 29/1948
  49428. }
  49429. },
  49430. hand: {
  49431. height: math.unit(0.73, "inches"),
  49432. name: "Hand",
  49433. image: {
  49434. source: "./media/characters/mallory/hand.svg"
  49435. }
  49436. },
  49437. paw: {
  49438. height: math.unit(0.68, "inches"),
  49439. name: "Paw",
  49440. image: {
  49441. source: "./media/characters/mallory/paw.svg"
  49442. }
  49443. },
  49444. },
  49445. [
  49446. {
  49447. name: "Small",
  49448. height: math.unit(5, "inches"),
  49449. default: true
  49450. },
  49451. ]
  49452. ))
  49453. characterMakers.push(() => makeCharacter(
  49454. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49455. {
  49456. naked: {
  49457. height: math.unit(6, "feet"),
  49458. name: "Naked",
  49459. image: {
  49460. source: "./media/characters/mab/naked.svg",
  49461. extra: 1855/1757,
  49462. bottom: 208/2063
  49463. }
  49464. },
  49465. outside: {
  49466. height: math.unit(6, "feet"),
  49467. name: "Outside",
  49468. image: {
  49469. source: "./media/characters/mab/outside.svg",
  49470. extra: 1855/1757,
  49471. bottom: 208/2063
  49472. }
  49473. },
  49474. party: {
  49475. height: math.unit(6, "feet"),
  49476. name: "Party",
  49477. image: {
  49478. source: "./media/characters/mab/party.svg",
  49479. extra: 1855/1757,
  49480. bottom: 208/2063
  49481. }
  49482. },
  49483. },
  49484. [
  49485. {
  49486. name: "Normal",
  49487. height: math.unit(165, "feet"),
  49488. default: true
  49489. },
  49490. ]
  49491. ))
  49492. characterMakers.push(() => makeCharacter(
  49493. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49494. {
  49495. front: {
  49496. height: math.unit(12, "feet"),
  49497. weight: math.unit(4000, "lb"),
  49498. name: "Front",
  49499. image: {
  49500. source: "./media/characters/winter/front.svg",
  49501. extra: 1286/943,
  49502. bottom: 112/1398
  49503. }
  49504. },
  49505. frontNsfw: {
  49506. height: math.unit(12, "feet"),
  49507. weight: math.unit(4000, "lb"),
  49508. name: "Front (NSFW)",
  49509. image: {
  49510. source: "./media/characters/winter/front-nsfw.svg",
  49511. extra: 1286/943,
  49512. bottom: 112/1398
  49513. }
  49514. },
  49515. dick: {
  49516. height: math.unit(3.79, "feet"),
  49517. name: "Dick",
  49518. image: {
  49519. source: "./media/characters/winter/dick.svg"
  49520. }
  49521. },
  49522. },
  49523. [
  49524. {
  49525. name: "Big",
  49526. height: math.unit(12, "feet"),
  49527. default: true
  49528. },
  49529. ]
  49530. ))
  49531. characterMakers.push(() => makeCharacter(
  49532. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49533. {
  49534. front: {
  49535. height: math.unit(4.1, "inches"),
  49536. name: "Front",
  49537. image: {
  49538. source: "./media/characters/alto/front.svg",
  49539. extra: 736/627,
  49540. bottom: 90/826
  49541. }
  49542. },
  49543. },
  49544. [
  49545. {
  49546. name: "Normal",
  49547. height: math.unit(4.1, "inches"),
  49548. default: true
  49549. },
  49550. ]
  49551. ))
  49552. characterMakers.push(() => makeCharacter(
  49553. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49554. {
  49555. sitting: {
  49556. height: math.unit(3, "feet"),
  49557. name: "Sitting",
  49558. image: {
  49559. source: "./media/characters/ratstrid-v/sitting.svg",
  49560. extra: 355/310,
  49561. bottom: 136/491
  49562. }
  49563. },
  49564. },
  49565. [
  49566. {
  49567. name: "Normal",
  49568. height: math.unit(3, "feet"),
  49569. default: true
  49570. },
  49571. ]
  49572. ))
  49573. characterMakers.push(() => makeCharacter(
  49574. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49575. {
  49576. back: {
  49577. height: math.unit(6, "feet"),
  49578. weight: math.unit(350, "lb"),
  49579. name: "Back",
  49580. image: {
  49581. source: "./media/characters/siz/back.svg",
  49582. extra: 1449/1274,
  49583. bottom: 13/1462
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Over-Overcompressed",
  49590. height: math.unit(8, "feet")
  49591. },
  49592. {
  49593. name: "Overcompressed",
  49594. height: math.unit(32, "feet")
  49595. },
  49596. {
  49597. name: "Compressed",
  49598. height: math.unit(128, "feet"),
  49599. default: true
  49600. },
  49601. {
  49602. name: "Half-Compressed",
  49603. height: math.unit(512, "feet")
  49604. },
  49605. {
  49606. name: "Quarter-Compressed",
  49607. height: math.unit(2048, "feet")
  49608. },
  49609. {
  49610. name: "Uncompressed?",
  49611. height: math.unit(8192, "feet")
  49612. },
  49613. ]
  49614. ))
  49615. characterMakers.push(() => makeCharacter(
  49616. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49617. {
  49618. front: {
  49619. height: math.unit(5 + 9/12, "feet"),
  49620. weight: math.unit(150, "lb"),
  49621. name: "Front",
  49622. image: {
  49623. source: "./media/characters/ven/front.svg",
  49624. extra: 1372/1320,
  49625. bottom: 73/1445
  49626. }
  49627. },
  49628. side: {
  49629. height: math.unit(5 + 9/12, "feet"),
  49630. weight: math.unit(1150, "lb"),
  49631. name: "Side",
  49632. image: {
  49633. source: "./media/characters/ven/side.svg",
  49634. extra: 1119/1070,
  49635. bottom: 42/1161
  49636. },
  49637. default: true
  49638. },
  49639. },
  49640. [
  49641. {
  49642. name: "Normal",
  49643. height: math.unit(5 + 9/12, "feet"),
  49644. default: true
  49645. },
  49646. ]
  49647. ))
  49648. characterMakers.push(() => makeCharacter(
  49649. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49650. {
  49651. front: {
  49652. height: math.unit(12, "feet"),
  49653. weight: math.unit(1000, "kg"),
  49654. name: "Front",
  49655. image: {
  49656. source: "./media/characters/maple/front.svg",
  49657. extra: 1193/1081,
  49658. bottom: 22/1215
  49659. }
  49660. },
  49661. },
  49662. [
  49663. {
  49664. name: "Compressed",
  49665. height: math.unit(7, "feet")
  49666. },
  49667. {
  49668. name: "Normal",
  49669. height: math.unit(12, "feet"),
  49670. default: true
  49671. },
  49672. ]
  49673. ))
  49674. characterMakers.push(() => makeCharacter(
  49675. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49676. {
  49677. front: {
  49678. height: math.unit(9, "feet"),
  49679. weight: math.unit(1500, "lb"),
  49680. name: "Front",
  49681. image: {
  49682. source: "./media/characters/nora/front.svg",
  49683. extra: 1348/1286,
  49684. bottom: 218/1566
  49685. }
  49686. },
  49687. erect: {
  49688. height: math.unit(9, "feet"),
  49689. weight: math.unit(11500, "lb"),
  49690. name: "Erect",
  49691. image: {
  49692. source: "./media/characters/nora/erect.svg",
  49693. extra: 1488/1433,
  49694. bottom: 133/1621
  49695. }
  49696. },
  49697. },
  49698. [
  49699. {
  49700. name: "Normal",
  49701. height: math.unit(9, "feet"),
  49702. default: true
  49703. },
  49704. ]
  49705. ))
  49706. characterMakers.push(() => makeCharacter(
  49707. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49708. {
  49709. front: {
  49710. height: math.unit(25, "feet"),
  49711. weight: math.unit(27500, "lb"),
  49712. name: "Front",
  49713. image: {
  49714. source: "./media/characters/north-caudin/front.svg",
  49715. extra: 1184/1082,
  49716. bottom: 23/1207
  49717. }
  49718. },
  49719. },
  49720. [
  49721. {
  49722. name: "Compressed",
  49723. height: math.unit(10, "feet")
  49724. },
  49725. {
  49726. name: "Normal",
  49727. height: math.unit(25, "feet"),
  49728. default: true
  49729. },
  49730. ]
  49731. ))
  49732. characterMakers.push(() => makeCharacter(
  49733. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49734. {
  49735. front: {
  49736. height: math.unit(9, "feet"),
  49737. weight: math.unit(1250, "lb"),
  49738. name: "Front",
  49739. image: {
  49740. source: "./media/characters/merrian/front.svg",
  49741. extra: 2393/2304,
  49742. bottom: 40/2433
  49743. }
  49744. },
  49745. },
  49746. [
  49747. {
  49748. name: "Normal",
  49749. height: math.unit(9, "feet"),
  49750. default: true
  49751. },
  49752. ]
  49753. ))
  49754. characterMakers.push(() => makeCharacter(
  49755. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49756. {
  49757. front: {
  49758. height: math.unit(9, "feet"),
  49759. weight: math.unit(1000, "lb"),
  49760. name: "Front",
  49761. image: {
  49762. source: "./media/characters/hazel/front.svg",
  49763. extra: 2351/2298,
  49764. bottom: 38/2389
  49765. }
  49766. },
  49767. },
  49768. [
  49769. {
  49770. name: "Normal",
  49771. height: math.unit(9, "feet"),
  49772. default: true
  49773. },
  49774. ]
  49775. ))
  49776. characterMakers.push(() => makeCharacter(
  49777. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49778. {
  49779. front: {
  49780. height: math.unit(13, "feet"),
  49781. weight: math.unit(3200, "lb"),
  49782. name: "Front",
  49783. image: {
  49784. source: "./media/characters/emma/front.svg",
  49785. extra: 2263/2029,
  49786. bottom: 68/2331
  49787. }
  49788. },
  49789. },
  49790. [
  49791. {
  49792. name: "Normal",
  49793. height: math.unit(13, "feet"),
  49794. default: true
  49795. },
  49796. ]
  49797. ))
  49798. characterMakers.push(() => makeCharacter(
  49799. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49800. {
  49801. front: {
  49802. height: math.unit(11 + 9/12, "feet"),
  49803. weight: math.unit(2500, "lb"),
  49804. name: "Front",
  49805. image: {
  49806. source: "./media/characters/ilumina/front.svg",
  49807. extra: 2248/2209,
  49808. bottom: 164/2412
  49809. }
  49810. },
  49811. },
  49812. [
  49813. {
  49814. name: "Normal",
  49815. height: math.unit(11 + 9/12, "feet"),
  49816. default: true
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49822. {
  49823. front: {
  49824. height: math.unit(8 + 10/12, "feet"),
  49825. weight: math.unit(1350, "lb"),
  49826. name: "Front",
  49827. image: {
  49828. source: "./media/characters/moonshine/front.svg",
  49829. extra: 2395/2288,
  49830. bottom: 40/2435
  49831. }
  49832. },
  49833. },
  49834. [
  49835. {
  49836. name: "Normal",
  49837. height: math.unit(8 + 10/12, "feet"),
  49838. default: true
  49839. },
  49840. ]
  49841. ))
  49842. characterMakers.push(() => makeCharacter(
  49843. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49844. {
  49845. front: {
  49846. height: math.unit(14, "feet"),
  49847. weight: math.unit(3400, "lb"),
  49848. name: "Front",
  49849. image: {
  49850. source: "./media/characters/aletia/front.svg",
  49851. extra: 1185/1052,
  49852. bottom: 21/1206
  49853. }
  49854. },
  49855. },
  49856. [
  49857. {
  49858. name: "Compressed",
  49859. height: math.unit(8, "feet")
  49860. },
  49861. {
  49862. name: "Normal",
  49863. height: math.unit(14, "feet"),
  49864. default: true
  49865. },
  49866. ]
  49867. ))
  49868. characterMakers.push(() => makeCharacter(
  49869. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49870. {
  49871. front: {
  49872. height: math.unit(17, "feet"),
  49873. weight: math.unit(6500, "lb"),
  49874. name: "Front",
  49875. image: {
  49876. source: "./media/characters/deidra/front.svg",
  49877. extra: 1201/1081,
  49878. bottom: 16/1217
  49879. }
  49880. },
  49881. },
  49882. [
  49883. {
  49884. name: "Compressed",
  49885. height: math.unit(9 + 6/12, "feet")
  49886. },
  49887. {
  49888. name: "Normal",
  49889. height: math.unit(17, "feet"),
  49890. default: true
  49891. },
  49892. ]
  49893. ))
  49894. characterMakers.push(() => makeCharacter(
  49895. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49896. {
  49897. front: {
  49898. height: math.unit(7 + 4/12, "feet"),
  49899. weight: math.unit(280, "lb"),
  49900. name: "Front",
  49901. image: {
  49902. source: "./media/characters/freki-yrmori/front.svg",
  49903. extra: 1286/1182,
  49904. bottom: 29/1315
  49905. }
  49906. },
  49907. maw: {
  49908. height: math.unit(0.9, "feet"),
  49909. name: "Maw",
  49910. image: {
  49911. source: "./media/characters/freki-yrmori/maw.svg"
  49912. }
  49913. },
  49914. },
  49915. [
  49916. {
  49917. name: "Normal",
  49918. height: math.unit(7 + 4/12, "feet"),
  49919. default: true
  49920. },
  49921. {
  49922. name: "Macro",
  49923. height: math.unit(38.5, "meters")
  49924. },
  49925. ]
  49926. ))
  49927. characterMakers.push(() => makeCharacter(
  49928. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49929. {
  49930. side: {
  49931. height: math.unit(47.2, "meters"),
  49932. weight: math.unit(10000, "tons"),
  49933. name: "Side",
  49934. image: {
  49935. source: "./media/characters/aetherios/side.svg",
  49936. extra: 2363/642,
  49937. bottom: 221/2584
  49938. }
  49939. },
  49940. top: {
  49941. height: math.unit(240, "meters"),
  49942. weight: math.unit(10000, "tons"),
  49943. name: "Top",
  49944. image: {
  49945. source: "./media/characters/aetherios/top.svg"
  49946. }
  49947. },
  49948. bottom: {
  49949. height: math.unit(240, "meters"),
  49950. weight: math.unit(10000, "tons"),
  49951. name: "Bottom",
  49952. image: {
  49953. source: "./media/characters/aetherios/bottom.svg"
  49954. }
  49955. },
  49956. head: {
  49957. height: math.unit(38.6, "meters"),
  49958. name: "Head",
  49959. image: {
  49960. source: "./media/characters/aetherios/head.svg",
  49961. extra: 1335/1112,
  49962. bottom: 0/1335
  49963. }
  49964. },
  49965. front: {
  49966. height: math.unit(29, "meters"),
  49967. name: "Front",
  49968. image: {
  49969. source: "./media/characters/aetherios/front.svg",
  49970. extra: 1266/953,
  49971. bottom: 158/1424
  49972. }
  49973. },
  49974. maw: {
  49975. height: math.unit(16.37, "meters"),
  49976. name: "Maw",
  49977. image: {
  49978. source: "./media/characters/aetherios/maw.svg",
  49979. extra: 748/637,
  49980. bottom: 0/748
  49981. },
  49982. extraAttributes: {
  49983. preyCapacity: {
  49984. name: "Capacity",
  49985. power: 3,
  49986. type: "volume",
  49987. base: math.unit(1000, "people")
  49988. },
  49989. tongueSize: {
  49990. name: "Tongue Size",
  49991. power: 2,
  49992. type: "area",
  49993. base: math.unit(21, "m^2")
  49994. }
  49995. }
  49996. },
  49997. forepaw: {
  49998. height: math.unit(18, "meters"),
  49999. name: "Forepaw",
  50000. image: {
  50001. source: "./media/characters/aetherios/forepaw.svg"
  50002. }
  50003. },
  50004. hindpaw: {
  50005. height: math.unit(23, "meters"),
  50006. name: "Hindpaw",
  50007. image: {
  50008. source: "./media/characters/aetherios/hindpaw.svg"
  50009. }
  50010. },
  50011. genitals: {
  50012. height: math.unit(42, "meters"),
  50013. name: "Genitals",
  50014. image: {
  50015. source: "./media/characters/aetherios/genitals.svg"
  50016. }
  50017. },
  50018. },
  50019. [
  50020. {
  50021. name: "Normal",
  50022. height: math.unit(47.2, "meters"),
  50023. default: true
  50024. },
  50025. {
  50026. name: "Macro",
  50027. height: math.unit(160, "meters")
  50028. },
  50029. {
  50030. name: "Mega",
  50031. height: math.unit(1.87, "km")
  50032. },
  50033. {
  50034. name: "Giga",
  50035. height: math.unit(40000, "km")
  50036. },
  50037. {
  50038. name: "Stellar",
  50039. height: math.unit(158000000, "km")
  50040. },
  50041. {
  50042. name: "Cosmic",
  50043. height: math.unit(9.46e12, "km")
  50044. },
  50045. ]
  50046. ))
  50047. characterMakers.push(() => makeCharacter(
  50048. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50049. {
  50050. front: {
  50051. height: math.unit(5 + 4/12, "feet"),
  50052. weight: math.unit(80, "lb"),
  50053. name: "Front",
  50054. image: {
  50055. source: "./media/characters/mizu-gieeg/front.svg",
  50056. extra: 850/709,
  50057. bottom: 52/902
  50058. }
  50059. },
  50060. back: {
  50061. height: math.unit(5 + 4/12, "feet"),
  50062. weight: math.unit(80, "lb"),
  50063. name: "Back",
  50064. image: {
  50065. source: "./media/characters/mizu-gieeg/back.svg",
  50066. extra: 882/745,
  50067. bottom: 25/907
  50068. }
  50069. },
  50070. },
  50071. [
  50072. {
  50073. name: "Normal",
  50074. height: math.unit(5 + 4/12, "feet"),
  50075. default: true
  50076. },
  50077. ]
  50078. ))
  50079. characterMakers.push(() => makeCharacter(
  50080. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50081. {
  50082. front: {
  50083. height: math.unit(6, "feet"),
  50084. name: "Front",
  50085. image: {
  50086. source: "./media/characters/roselle-st-papier/front.svg",
  50087. extra: 1430/1280,
  50088. bottom: 37/1467
  50089. }
  50090. },
  50091. back: {
  50092. height: math.unit(6, "feet"),
  50093. name: "Back",
  50094. image: {
  50095. source: "./media/characters/roselle-st-papier/back.svg",
  50096. extra: 1491/1296,
  50097. bottom: 23/1514
  50098. }
  50099. },
  50100. ear: {
  50101. height: math.unit(1.26, "feet"),
  50102. name: "Ear",
  50103. image: {
  50104. source: "./media/characters/roselle-st-papier/ear.svg"
  50105. }
  50106. },
  50107. },
  50108. [
  50109. {
  50110. name: "Normal",
  50111. height: math.unit(150, "feet"),
  50112. default: true
  50113. },
  50114. ]
  50115. ))
  50116. characterMakers.push(() => makeCharacter(
  50117. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50118. {
  50119. front: {
  50120. height: math.unit(1, "inches"),
  50121. name: "Front",
  50122. image: {
  50123. source: "./media/characters/valargent/front.svg",
  50124. extra: 1825/1694,
  50125. bottom: 62/1887
  50126. }
  50127. },
  50128. back: {
  50129. height: math.unit(1, "inches"),
  50130. name: "Back",
  50131. image: {
  50132. source: "./media/characters/valargent/back.svg",
  50133. extra: 1775/1682,
  50134. bottom: 88/1863
  50135. }
  50136. },
  50137. },
  50138. [
  50139. {
  50140. name: "Micro",
  50141. height: math.unit(1, "inch"),
  50142. default: true
  50143. },
  50144. ]
  50145. ))
  50146. characterMakers.push(() => makeCharacter(
  50147. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50148. {
  50149. front: {
  50150. height: math.unit(3.4, "meters"),
  50151. name: "Front",
  50152. image: {
  50153. source: "./media/characters/zarina/front.svg",
  50154. extra: 1733/1425,
  50155. bottom: 93/1826
  50156. }
  50157. },
  50158. squatting: {
  50159. height: math.unit(2.14, "meters"),
  50160. name: "Squatting",
  50161. image: {
  50162. source: "./media/characters/zarina/squatting.svg",
  50163. extra: 1073/788,
  50164. bottom: 63/1136
  50165. }
  50166. },
  50167. back: {
  50168. height: math.unit(2.14, "meters"),
  50169. name: "Back",
  50170. image: {
  50171. source: "./media/characters/zarina/back.svg",
  50172. extra: 1128/885,
  50173. bottom: 0/1128
  50174. }
  50175. },
  50176. },
  50177. [
  50178. {
  50179. name: "Normal",
  50180. height: math.unit(3.4, "meters"),
  50181. default: true
  50182. },
  50183. {
  50184. name: "Big",
  50185. height: math.unit(5, "meters")
  50186. },
  50187. {
  50188. name: "Macro",
  50189. height: math.unit(110, "meters")
  50190. },
  50191. ]
  50192. ))
  50193. characterMakers.push(() => makeCharacter(
  50194. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50195. {
  50196. front: {
  50197. height: math.unit(7, "feet"),
  50198. name: "Front",
  50199. image: {
  50200. source: "./media/characters/ventus-astro-fox/front.svg",
  50201. extra: 1792/1623,
  50202. bottom: 28/1820
  50203. }
  50204. },
  50205. back: {
  50206. height: math.unit(7, "feet"),
  50207. name: "Back",
  50208. image: {
  50209. source: "./media/characters/ventus-astro-fox/back.svg",
  50210. extra: 1789/1620,
  50211. bottom: 31/1820
  50212. }
  50213. },
  50214. outfit: {
  50215. height: math.unit(7, "feet"),
  50216. name: "Outfit",
  50217. image: {
  50218. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50219. extra: 1054/925,
  50220. bottom: 15/1069
  50221. }
  50222. },
  50223. head: {
  50224. height: math.unit(1.12, "feet"),
  50225. name: "Head",
  50226. image: {
  50227. source: "./media/characters/ventus-astro-fox/head.svg",
  50228. extra: 866/504,
  50229. bottom: 0/866
  50230. }
  50231. },
  50232. hand: {
  50233. height: math.unit(1, "feet"),
  50234. name: "Hand",
  50235. image: {
  50236. source: "./media/characters/ventus-astro-fox/hand.svg"
  50237. }
  50238. },
  50239. paw: {
  50240. height: math.unit(1.5, "feet"),
  50241. name: "Paw",
  50242. image: {
  50243. source: "./media/characters/ventus-astro-fox/paw.svg"
  50244. }
  50245. },
  50246. },
  50247. [
  50248. {
  50249. name: "Normal",
  50250. height: math.unit(7, "feet"),
  50251. default: true
  50252. },
  50253. {
  50254. name: "Macro",
  50255. height: math.unit(200, "feet")
  50256. },
  50257. {
  50258. name: "Cosmic",
  50259. height: math.unit(3, "universes")
  50260. },
  50261. ]
  50262. ))
  50263. characterMakers.push(() => makeCharacter(
  50264. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50265. {
  50266. front: {
  50267. height: math.unit(3, "meters"),
  50268. weight: math.unit(7000, "lb"),
  50269. name: "Front",
  50270. image: {
  50271. source: "./media/characters/core-t/front.svg",
  50272. extra: 5729/4941,
  50273. bottom: 1129/6858
  50274. }
  50275. },
  50276. },
  50277. [
  50278. {
  50279. name: "Big",
  50280. height: math.unit(3, "meters"),
  50281. default: true
  50282. },
  50283. ]
  50284. ))
  50285. characterMakers.push(() => makeCharacter(
  50286. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50287. {
  50288. normal: {
  50289. height: math.unit(6 + 6/12, "feet"),
  50290. weight: math.unit(275, "lb"),
  50291. name: "Front",
  50292. image: {
  50293. source: "./media/characters/cadbunny/normal.svg",
  50294. extra: 1129/947,
  50295. bottom: 93/1222
  50296. },
  50297. default: true,
  50298. form: "normal"
  50299. },
  50300. gigantamax: {
  50301. height: math.unit(26, "feet"),
  50302. weight: math.unit(16000, "lb"),
  50303. name: "Front",
  50304. image: {
  50305. source: "./media/characters/cadbunny/gigantamax.svg",
  50306. extra: 1133/944,
  50307. bottom: 90/1223
  50308. },
  50309. default: true,
  50310. form: "gigantamax"
  50311. },
  50312. },
  50313. [
  50314. {
  50315. name: "Normal",
  50316. height: math.unit(6 + 6/12, "feet"),
  50317. default: true,
  50318. form: "normal"
  50319. },
  50320. {
  50321. name: "Small",
  50322. height: math.unit(26, "feet"),
  50323. default: true,
  50324. form: "gigantamax"
  50325. },
  50326. {
  50327. name: "Large",
  50328. height: math.unit(78, "feet"),
  50329. form: "gigantamax"
  50330. },
  50331. ],
  50332. {
  50333. "normal": {
  50334. name: "Normal",
  50335. default: true
  50336. },
  50337. "gigantamax": {
  50338. name: "Gigantamax"
  50339. }
  50340. }
  50341. ))
  50342. characterMakers.push(() => makeCharacter(
  50343. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50344. {
  50345. anthroFront: {
  50346. height: math.unit(8, "feet"),
  50347. weight: math.unit(300, "lb"),
  50348. name: "Front",
  50349. image: {
  50350. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50351. extra: 1272/1176,
  50352. bottom: 53/1325
  50353. },
  50354. form: "anthro",
  50355. default: true
  50356. },
  50357. feralSide: {
  50358. height: math.unit(4, "feet"),
  50359. weight: math.unit(250, "lb"),
  50360. name: "Side",
  50361. image: {
  50362. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50363. extra: 731/621,
  50364. bottom: 0/731
  50365. },
  50366. form: "feral",
  50367. default: true
  50368. },
  50369. },
  50370. [
  50371. {
  50372. name: "Regular",
  50373. height: math.unit(8, "feet"),
  50374. form: "anthro"
  50375. },
  50376. {
  50377. name: "Macro",
  50378. height: math.unit(250, "feet"),
  50379. form: "anthro",
  50380. default: true
  50381. },
  50382. {
  50383. name: "Regular",
  50384. height: math.unit(4, "feet"),
  50385. form: "feral"
  50386. },
  50387. {
  50388. name: "Macro",
  50389. height: math.unit(125, "feet"),
  50390. form: "feral",
  50391. default: true
  50392. },
  50393. ],
  50394. {
  50395. "anthro": {
  50396. name: "Anthro",
  50397. default: true
  50398. },
  50399. "feral": {
  50400. name: "Feral",
  50401. },
  50402. }
  50403. ))
  50404. characterMakers.push(() => makeCharacter(
  50405. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50406. {
  50407. front: {
  50408. height: math.unit(11 + 10/12, "feet"),
  50409. weight: math.unit(1587, "kg"),
  50410. name: "Front",
  50411. image: {
  50412. source: "./media/characters/maple-javira-dragon/front.svg",
  50413. extra: 1136/744,
  50414. bottom: 73/1209
  50415. }
  50416. },
  50417. side: {
  50418. height: math.unit(11 + 10/12, "feet"),
  50419. weight: math.unit(1587, "kg"),
  50420. name: "Side",
  50421. image: {
  50422. source: "./media/characters/maple-javira-dragon/side.svg",
  50423. extra: 712/505,
  50424. bottom: 17/729
  50425. }
  50426. },
  50427. head: {
  50428. height: math.unit(8.05, "feet"),
  50429. name: "Head",
  50430. image: {
  50431. source: "./media/characters/maple-javira-dragon/head.svg",
  50432. extra: 1420/1344,
  50433. bottom: 0/1420
  50434. }
  50435. },
  50436. },
  50437. [
  50438. {
  50439. name: "Normal",
  50440. height: math.unit(11 + 10/12, "feet"),
  50441. default: true
  50442. },
  50443. ]
  50444. ))
  50445. characterMakers.push(() => makeCharacter(
  50446. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50447. {
  50448. front: {
  50449. height: math.unit(117, "cm"),
  50450. weight: math.unit(50, "kg"),
  50451. name: "Front",
  50452. image: {
  50453. source: "./media/characters/sonia-wyverntail/front.svg",
  50454. extra: 708/592,
  50455. bottom: 25/733
  50456. }
  50457. },
  50458. },
  50459. [
  50460. {
  50461. name: "Normal",
  50462. height: math.unit(117, "cm"),
  50463. default: true
  50464. },
  50465. ]
  50466. ))
  50467. characterMakers.push(() => makeCharacter(
  50468. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50469. {
  50470. front: {
  50471. height: math.unit(6 + 5/12, "feet"),
  50472. name: "Front",
  50473. image: {
  50474. source: "./media/characters/micah/front.svg",
  50475. extra: 1758/1546,
  50476. bottom: 214/1972
  50477. }
  50478. },
  50479. },
  50480. [
  50481. {
  50482. name: "Normal",
  50483. height: math.unit(6 + 5/12, "feet"),
  50484. default: true
  50485. },
  50486. ]
  50487. ))
  50488. characterMakers.push(() => makeCharacter(
  50489. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50490. {
  50491. front: {
  50492. height: math.unit(5 + 10/12, "feet"),
  50493. weight: math.unit(220, "lb"),
  50494. name: "Front",
  50495. image: {
  50496. source: "./media/characters/zarya/front.svg",
  50497. extra: 593/572,
  50498. bottom: 50/643
  50499. }
  50500. },
  50501. back: {
  50502. height: math.unit(5 + 10/12, "feet"),
  50503. weight: math.unit(220, "lb"),
  50504. name: "Back",
  50505. image: {
  50506. source: "./media/characters/zarya/back.svg",
  50507. extra: 603/582,
  50508. bottom: 38/641
  50509. }
  50510. },
  50511. },
  50512. [
  50513. {
  50514. name: "Normal",
  50515. height: math.unit(5 + 10/12, "feet"),
  50516. default: true
  50517. },
  50518. ]
  50519. ))
  50520. characterMakers.push(() => makeCharacter(
  50521. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50522. {
  50523. front: {
  50524. height: math.unit(7.5, "feet"),
  50525. name: "Front",
  50526. image: {
  50527. source: "./media/characters/sven-hatisson/front.svg",
  50528. extra: 917/857,
  50529. bottom: 42/959
  50530. }
  50531. },
  50532. back: {
  50533. height: math.unit(7.5, "feet"),
  50534. name: "Back",
  50535. image: {
  50536. source: "./media/characters/sven-hatisson/back.svg",
  50537. extra: 903/856,
  50538. bottom: 15/918
  50539. }
  50540. },
  50541. },
  50542. [
  50543. {
  50544. name: "Base Height",
  50545. height: math.unit(7.5, "feet")
  50546. },
  50547. {
  50548. name: "Usual Height",
  50549. height: math.unit(13.5, "feet"),
  50550. default: true
  50551. },
  50552. {
  50553. name: "Smaller Macro",
  50554. height: math.unit(85, "feet")
  50555. },
  50556. {
  50557. name: "Moderate Macro",
  50558. height: math.unit(320, "feet")
  50559. },
  50560. {
  50561. name: "Large Macro",
  50562. height: math.unit(1000, "feet")
  50563. },
  50564. {
  50565. name: "Largest Size",
  50566. height: math.unit(2, "miles")
  50567. },
  50568. ]
  50569. ))
  50570. characterMakers.push(() => makeCharacter(
  50571. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50572. {
  50573. side: {
  50574. height: math.unit(1.8, "meters"),
  50575. weight: math.unit(275, "kg"),
  50576. name: "Side",
  50577. image: {
  50578. source: "./media/characters/terra/side.svg",
  50579. extra: 1273/1147,
  50580. bottom: 0/1273
  50581. }
  50582. },
  50583. },
  50584. [
  50585. {
  50586. name: "Normal",
  50587. height: math.unit(16.2, "meters"),
  50588. default: true
  50589. },
  50590. ]
  50591. ))
  50592. characterMakers.push(() => makeCharacter(
  50593. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50594. {
  50595. borzoiFront: {
  50596. height: math.unit(6 + 9/12, "feet"),
  50597. name: "Front",
  50598. image: {
  50599. source: "./media/characters/rae/borzoi-front.svg",
  50600. extra: 1161/1098,
  50601. bottom: 31/1192
  50602. },
  50603. form: "borzoi",
  50604. default: true
  50605. },
  50606. werewolfFront: {
  50607. height: math.unit(8 + 7/12, "feet"),
  50608. name: "Front",
  50609. image: {
  50610. source: "./media/characters/rae/werewolf-front.svg",
  50611. extra: 1411/1334,
  50612. bottom: 127/1538
  50613. },
  50614. form: "werewolf",
  50615. default: true
  50616. },
  50617. },
  50618. [
  50619. {
  50620. name: "Normal",
  50621. height: math.unit(6 + 9/12, "feet"),
  50622. default: true,
  50623. form: "borzoi"
  50624. },
  50625. {
  50626. name: "Normal",
  50627. height: math.unit(8 + 7/12, "feet"),
  50628. default: true,
  50629. form: "werewolf"
  50630. },
  50631. ],
  50632. {
  50633. "borzoi": {
  50634. name: "Borzoi",
  50635. default: true
  50636. },
  50637. "werewolf": {
  50638. name: "Werewolf",
  50639. },
  50640. }
  50641. ))
  50642. characterMakers.push(() => makeCharacter(
  50643. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50644. {
  50645. front: {
  50646. height: math.unit(8 + 7/12, "feet"),
  50647. weight: math.unit(482, "lb"),
  50648. name: "Front",
  50649. image: {
  50650. source: "./media/characters/kit/front.svg",
  50651. extra: 1247/1103,
  50652. bottom: 41/1288
  50653. }
  50654. },
  50655. back: {
  50656. height: math.unit(8 + 7/12, "feet"),
  50657. weight: math.unit(482, "lb"),
  50658. name: "Back",
  50659. image: {
  50660. source: "./media/characters/kit/back.svg",
  50661. extra: 1252/1123,
  50662. bottom: 21/1273
  50663. }
  50664. },
  50665. paw: {
  50666. height: math.unit(1.46, "feet"),
  50667. name: "Paw",
  50668. image: {
  50669. source: "./media/characters/kit/paw.svg"
  50670. }
  50671. },
  50672. },
  50673. [
  50674. {
  50675. name: "Normal",
  50676. height: math.unit(2.61, "meters"),
  50677. default: true
  50678. },
  50679. {
  50680. name: "\"Tall\"",
  50681. height: math.unit(8.21, "meters")
  50682. },
  50683. {
  50684. name: "Tall",
  50685. height: math.unit(19.6, "meters")
  50686. },
  50687. {
  50688. name: "Very Tall",
  50689. height: math.unit(57.91, "meters")
  50690. },
  50691. {
  50692. name: "Semi-Macro",
  50693. height: math.unit(138.64, "meters")
  50694. },
  50695. {
  50696. name: "Macro",
  50697. height: math.unit(831.99, "meters")
  50698. },
  50699. {
  50700. name: "EX-Macro",
  50701. height: math.unit(96451121, "meters")
  50702. },
  50703. {
  50704. name: "S1-Omnipotent",
  50705. height: math.unit(4.42074e+9, "meters")
  50706. },
  50707. {
  50708. name: "S2-Omnipotent",
  50709. height: math.unit(9.42074e+17, "meters")
  50710. },
  50711. {
  50712. name: "Omnipotent",
  50713. height: math.unit(4.23112e+24, "meters")
  50714. },
  50715. {
  50716. name: "Hypergod",
  50717. height: math.unit(5.05176e+27, "meters")
  50718. },
  50719. {
  50720. name: "Hypergod-EX",
  50721. height: math.unit(9.45532e+49, "meters")
  50722. },
  50723. {
  50724. name: "Hypergod-SP",
  50725. height: math.unit(9.45532e+195, "meters")
  50726. },
  50727. ]
  50728. ))
  50729. characterMakers.push(() => makeCharacter(
  50730. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50731. {
  50732. side: {
  50733. height: math.unit(0.6, "meters"),
  50734. weight: math.unit(24, "kg"),
  50735. name: "Side",
  50736. image: {
  50737. source: "./media/characters/celeste/side.svg",
  50738. extra: 810/517,
  50739. bottom: 53/863
  50740. }
  50741. },
  50742. },
  50743. [
  50744. {
  50745. name: "Velociraptor",
  50746. height: math.unit(0.6, "meters"),
  50747. default: true
  50748. },
  50749. {
  50750. name: "Utahraptor",
  50751. height: math.unit(1.8, "meters")
  50752. },
  50753. {
  50754. name: "Gallimimus",
  50755. height: math.unit(4.0, "meters")
  50756. },
  50757. {
  50758. name: "Large",
  50759. height: math.unit(20, "meters")
  50760. },
  50761. {
  50762. name: "Planetary",
  50763. height: math.unit(50, "megameters")
  50764. },
  50765. {
  50766. name: "Stellar",
  50767. height: math.unit(1.5, "gigameters")
  50768. },
  50769. {
  50770. name: "Galactic",
  50771. height: math.unit(100, "exameters")
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50777. {
  50778. front: {
  50779. height: math.unit(6, "feet"),
  50780. weight: math.unit(210, "lb"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/glacia/front.svg",
  50784. extra: 958/901,
  50785. bottom: 45/1003
  50786. }
  50787. },
  50788. },
  50789. [
  50790. {
  50791. name: "Macro",
  50792. height: math.unit(1000, "meters"),
  50793. default: true
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50799. {
  50800. front: {
  50801. height: math.unit(4, "meters"),
  50802. name: "Front",
  50803. image: {
  50804. source: "./media/characters/giri/front.svg",
  50805. extra: 966/894,
  50806. bottom: 21/987
  50807. }
  50808. },
  50809. },
  50810. [
  50811. {
  50812. name: "Normal",
  50813. height: math.unit(4, "meters"),
  50814. default: true
  50815. },
  50816. ]
  50817. ))
  50818. characterMakers.push(() => makeCharacter(
  50819. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50820. {
  50821. back: {
  50822. height: math.unit(4, "feet"),
  50823. weight: math.unit(37, "lb"),
  50824. name: "Back",
  50825. image: {
  50826. source: "./media/characters/tin/back.svg",
  50827. extra: 845/780,
  50828. bottom: 28/873
  50829. }
  50830. },
  50831. },
  50832. [
  50833. {
  50834. name: "Normal",
  50835. height: math.unit(4, "feet"),
  50836. default: true
  50837. },
  50838. ]
  50839. ))
  50840. characterMakers.push(() => makeCharacter(
  50841. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50842. {
  50843. front: {
  50844. height: math.unit(25, "feet"),
  50845. name: "Front",
  50846. image: {
  50847. source: "./media/characters/cadenza-vivace/front.svg",
  50848. extra: 1842/1578,
  50849. bottom: 30/1872
  50850. }
  50851. },
  50852. },
  50853. [
  50854. {
  50855. name: "Macro",
  50856. height: math.unit(25, "feet"),
  50857. default: true
  50858. },
  50859. ]
  50860. ))
  50861. characterMakers.push(() => makeCharacter(
  50862. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50863. {
  50864. front: {
  50865. height: math.unit(10, "feet"),
  50866. weight: math.unit(625, "kg"),
  50867. name: "Front",
  50868. image: {
  50869. source: "./media/characters/zain/front.svg",
  50870. extra: 1682/1498,
  50871. bottom: 223/1905
  50872. }
  50873. },
  50874. back: {
  50875. height: math.unit(10, "feet"),
  50876. weight: math.unit(625, "kg"),
  50877. name: "Back",
  50878. image: {
  50879. source: "./media/characters/zain/back.svg",
  50880. extra: 1814/1657,
  50881. bottom: 152/1966
  50882. }
  50883. },
  50884. head: {
  50885. height: math.unit(10, "feet"),
  50886. weight: math.unit(625, "kg"),
  50887. name: "Head",
  50888. image: {
  50889. source: "./media/characters/zain/head.svg",
  50890. extra: 1059/762,
  50891. bottom: 0/1059
  50892. }
  50893. },
  50894. },
  50895. [
  50896. {
  50897. name: "Normal",
  50898. height: math.unit(10, "feet"),
  50899. default: true
  50900. },
  50901. ]
  50902. ))
  50903. characterMakers.push(() => makeCharacter(
  50904. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50905. {
  50906. front: {
  50907. height: math.unit(6 + 5/12, "feet"),
  50908. weight: math.unit(750, "lb"),
  50909. name: "Front",
  50910. image: {
  50911. source: "./media/characters/ruchex/front.svg",
  50912. extra: 877/820,
  50913. bottom: 17/894
  50914. },
  50915. extraAttributes: {
  50916. "width": {
  50917. name: "Width",
  50918. power: 1,
  50919. type: "length",
  50920. base: math.unit(4.757, "feet")
  50921. },
  50922. }
  50923. },
  50924. },
  50925. [
  50926. {
  50927. name: "Normal",
  50928. height: math.unit(6 + 5/12, "feet"),
  50929. default: true
  50930. },
  50931. ]
  50932. ))
  50933. characterMakers.push(() => makeCharacter(
  50934. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50935. {
  50936. dressedFront: {
  50937. height: math.unit(191, "cm"),
  50938. weight: math.unit(80, "kg"),
  50939. name: "Front",
  50940. image: {
  50941. source: "./media/characters/buster/dressed-front.svg",
  50942. extra: 1022/973,
  50943. bottom: 69/1091
  50944. }
  50945. },
  50946. dressedBack: {
  50947. height: math.unit(191, "cm"),
  50948. weight: math.unit(80, "kg"),
  50949. name: "Back",
  50950. image: {
  50951. source: "./media/characters/buster/dressed-back.svg",
  50952. extra: 1018/970,
  50953. bottom: 55/1073
  50954. }
  50955. },
  50956. nudeFront: {
  50957. height: math.unit(191, "cm"),
  50958. weight: math.unit(80, "kg"),
  50959. name: "Front (Nude)",
  50960. image: {
  50961. source: "./media/characters/buster/nude-front.svg",
  50962. extra: 1022/973,
  50963. bottom: 69/1091
  50964. }
  50965. },
  50966. nudeBack: {
  50967. height: math.unit(191, "cm"),
  50968. weight: math.unit(80, "kg"),
  50969. name: "Back (Nude)",
  50970. image: {
  50971. source: "./media/characters/buster/nude-back.svg",
  50972. extra: 1018/970,
  50973. bottom: 55/1073
  50974. }
  50975. },
  50976. dick: {
  50977. height: math.unit(2.59, "feet"),
  50978. name: "Dick",
  50979. image: {
  50980. source: "./media/characters/buster/dick.svg"
  50981. }
  50982. },
  50983. ass: {
  50984. height: math.unit(1.2, "feet"),
  50985. name: "Ass",
  50986. image: {
  50987. source: "./media/characters/buster/ass.svg"
  50988. }
  50989. },
  50990. },
  50991. [
  50992. {
  50993. name: "Normal",
  50994. height: math.unit(191, "cm"),
  50995. default: true
  50996. },
  50997. ]
  50998. ))
  50999. characterMakers.push(() => makeCharacter(
  51000. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51001. {
  51002. side: {
  51003. height: math.unit(8.1, "feet"),
  51004. weight: math.unit(3500, "lb"),
  51005. name: "Side",
  51006. image: {
  51007. source: "./media/characters/sonya/side.svg",
  51008. extra: 1730/1317,
  51009. bottom: 86/1816
  51010. }
  51011. },
  51012. },
  51013. [
  51014. {
  51015. name: "Normal",
  51016. height: math.unit(8.1, "feet"),
  51017. default: true
  51018. },
  51019. ]
  51020. ))
  51021. characterMakers.push(() => makeCharacter(
  51022. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51023. {
  51024. front: {
  51025. height: math.unit(6, "feet"),
  51026. weight: math.unit(150, "lb"),
  51027. name: "Front",
  51028. image: {
  51029. source: "./media/characters/cadence-andrysiak/front.svg",
  51030. extra: 1164/1121,
  51031. bottom: 60/1224
  51032. }
  51033. },
  51034. back: {
  51035. height: math.unit(6, "feet"),
  51036. weight: math.unit(150, "lb"),
  51037. name: "Back",
  51038. image: {
  51039. source: "./media/characters/cadence-andrysiak/back.svg",
  51040. extra: 1200/1165,
  51041. bottom: 9/1209
  51042. }
  51043. },
  51044. dressed: {
  51045. height: math.unit(6, "feet"),
  51046. weight: math.unit(150, "lb"),
  51047. name: "Dressed",
  51048. image: {
  51049. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51050. extra: 1164/1121,
  51051. bottom: 60/1224
  51052. }
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Micro",
  51058. height: math.unit(1, "mm")
  51059. },
  51060. {
  51061. name: "Normal",
  51062. height: math.unit(6, "feet"),
  51063. default: true
  51064. },
  51065. ]
  51066. ))
  51067. characterMakers.push(() => makeCharacter(
  51068. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51069. {
  51070. front: {
  51071. height: math.unit(60, "inches"),
  51072. weight: math.unit(16, "lb"),
  51073. preyCapacity: math.unit(80, "liters"),
  51074. name: "Front",
  51075. image: {
  51076. source: "./media/characters/penny-lynx/front.svg",
  51077. extra: 1959/1769,
  51078. bottom: 49/2008
  51079. }
  51080. },
  51081. },
  51082. [
  51083. {
  51084. name: "Nokia",
  51085. height: math.unit(2, "inches")
  51086. },
  51087. {
  51088. name: "Desktop",
  51089. height: math.unit(24, "inches")
  51090. },
  51091. {
  51092. name: "TV",
  51093. height: math.unit(60, "inches")
  51094. },
  51095. {
  51096. name: "Jumbotron",
  51097. height: math.unit(12, "feet")
  51098. },
  51099. {
  51100. name: "Billboard",
  51101. height: math.unit(48, "feet"),
  51102. default: true
  51103. },
  51104. {
  51105. name: "IMAX",
  51106. height: math.unit(96, "feet")
  51107. },
  51108. {
  51109. name: "SINGULARITY",
  51110. height: math.unit(864938, "miles")
  51111. },
  51112. ]
  51113. ))
  51114. characterMakers.push(() => makeCharacter(
  51115. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51116. {
  51117. front: {
  51118. height: math.unit(5 + 4/12, "feet"),
  51119. weight: math.unit(230, "lb"),
  51120. name: "Front",
  51121. image: {
  51122. source: "./media/characters/sukebe/front.svg",
  51123. extra: 2130/2038,
  51124. bottom: 90/2220
  51125. }
  51126. },
  51127. back: {
  51128. height: math.unit(3.48, "feet"),
  51129. weight: math.unit(230, "lb"),
  51130. name: "Back",
  51131. image: {
  51132. source: "./media/characters/sukebe/back.svg",
  51133. extra: 1670/1604,
  51134. bottom: 0/1670
  51135. }
  51136. },
  51137. },
  51138. [
  51139. {
  51140. name: "Normal",
  51141. height: math.unit(5 + 4/12, "feet"),
  51142. default: true
  51143. },
  51144. ]
  51145. ))
  51146. characterMakers.push(() => makeCharacter(
  51147. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51148. {
  51149. front: {
  51150. height: math.unit(6, "feet"),
  51151. name: "Front",
  51152. image: {
  51153. source: "./media/characters/nylla/front.svg",
  51154. extra: 1868/1699,
  51155. bottom: 97/1965
  51156. }
  51157. },
  51158. back: {
  51159. height: math.unit(6, "feet"),
  51160. name: "Back",
  51161. image: {
  51162. source: "./media/characters/nylla/back.svg",
  51163. extra: 1889/1712,
  51164. bottom: 93/1982
  51165. }
  51166. },
  51167. frontNsfw: {
  51168. height: math.unit(6, "feet"),
  51169. name: "Front (NSFW)",
  51170. image: {
  51171. source: "./media/characters/nylla/front-nsfw.svg",
  51172. extra: 1868/1699,
  51173. bottom: 97/1965
  51174. },
  51175. extraAttributes: {
  51176. "dickLength": {
  51177. name: "Dick Length",
  51178. power: 1,
  51179. type: "length",
  51180. base: math.unit(1.4, "feet")
  51181. },
  51182. "cumVolume": {
  51183. name: "Cum Volume",
  51184. power: 3,
  51185. type: "volume",
  51186. base: math.unit(100, "mL")
  51187. },
  51188. }
  51189. },
  51190. backNsfw: {
  51191. height: math.unit(6, "feet"),
  51192. name: "Back (NSFW)",
  51193. image: {
  51194. source: "./media/characters/nylla/back-nsfw.svg",
  51195. extra: 1889/1712,
  51196. bottom: 93/1982
  51197. }
  51198. },
  51199. maw: {
  51200. height: math.unit(2.10, "feet"),
  51201. name: "Maw",
  51202. image: {
  51203. source: "./media/characters/nylla/maw.svg"
  51204. }
  51205. },
  51206. paws: {
  51207. height: math.unit(2.06, "feet"),
  51208. name: "Paws",
  51209. image: {
  51210. source: "./media/characters/nylla/paws.svg"
  51211. }
  51212. },
  51213. muzzle: {
  51214. height: math.unit(0.61, "feet"),
  51215. name: "Muzzle",
  51216. image: {
  51217. source: "./media/characters/nylla/muzzle.svg"
  51218. }
  51219. },
  51220. sheath: {
  51221. height: math.unit(1.305, "feet"),
  51222. name: "Sheath",
  51223. image: {
  51224. source: "./media/characters/nylla/sheath.svg"
  51225. }
  51226. },
  51227. },
  51228. [
  51229. {
  51230. name: "Micro",
  51231. height: math.unit(7.5, "inches")
  51232. },
  51233. {
  51234. name: "Normal",
  51235. height: math.unit(7, "feet"),
  51236. default: true
  51237. },
  51238. {
  51239. name: "Macro",
  51240. height: math.unit(60, "feet")
  51241. },
  51242. {
  51243. name: "Mega",
  51244. height: math.unit(200, "feet")
  51245. },
  51246. ]
  51247. ))
  51248. characterMakers.push(() => makeCharacter(
  51249. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51250. {
  51251. front: {
  51252. height: math.unit(10, "feet"),
  51253. weight: math.unit(2300, "lb"),
  51254. name: "Front",
  51255. image: {
  51256. source: "./media/characters/hunt3r/front.svg",
  51257. extra: 1909/1742,
  51258. bottom: 46/1955
  51259. }
  51260. },
  51261. },
  51262. [
  51263. {
  51264. name: "Normal",
  51265. height: math.unit(10, "feet"),
  51266. default: true
  51267. },
  51268. ]
  51269. ))
  51270. characterMakers.push(() => makeCharacter(
  51271. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51272. {
  51273. dressed: {
  51274. height: math.unit(11, "feet"),
  51275. weight: math.unit(18500, "lb"),
  51276. preyCapacity: math.unit(9, "people"),
  51277. name: "Dressed",
  51278. image: {
  51279. source: "./media/characters/cylphis/dressed.svg",
  51280. extra: 1028/1003,
  51281. bottom: 75/1103
  51282. },
  51283. },
  51284. undressed: {
  51285. height: math.unit(11, "feet"),
  51286. weight: math.unit(18500, "lb"),
  51287. preyCapacity: math.unit(9, "people"),
  51288. name: "Undressed",
  51289. image: {
  51290. source: "./media/characters/cylphis/undressed.svg",
  51291. extra: 1028/1003,
  51292. bottom: 75/1103
  51293. }
  51294. },
  51295. full: {
  51296. height: math.unit(11, "feet"),
  51297. weight: math.unit(18500 + 150*9, "lb"),
  51298. preyCapacity: math.unit(9, "people"),
  51299. name: "Full",
  51300. image: {
  51301. source: "./media/characters/cylphis/full.svg",
  51302. extra: 1028/1003,
  51303. bottom: 75/1103
  51304. }
  51305. },
  51306. },
  51307. [
  51308. {
  51309. name: "Small",
  51310. height: math.unit(8, "feet")
  51311. },
  51312. {
  51313. name: "Normal",
  51314. height: math.unit(11, "feet"),
  51315. default: true
  51316. },
  51317. ]
  51318. ))
  51319. characterMakers.push(() => makeCharacter(
  51320. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51321. {
  51322. front: {
  51323. height: math.unit(2 + 7/12, "feet"),
  51324. name: "Front",
  51325. image: {
  51326. source: "./media/characters/orishan/front.svg",
  51327. extra: 1058/1023,
  51328. bottom: 23/1081
  51329. }
  51330. },
  51331. back: {
  51332. height: math.unit(2 + 7/12, "feet"),
  51333. name: "Back",
  51334. image: {
  51335. source: "./media/characters/orishan/back.svg",
  51336. extra: 1058/1023,
  51337. bottom: 23/1081
  51338. }
  51339. },
  51340. },
  51341. [
  51342. {
  51343. name: "Micro",
  51344. height: math.unit(2, "cm")
  51345. },
  51346. {
  51347. name: "Normal",
  51348. height: math.unit(2 + 7/12, "feet"),
  51349. default: true
  51350. },
  51351. ]
  51352. ))
  51353. characterMakers.push(() => makeCharacter(
  51354. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51355. {
  51356. front: {
  51357. height: math.unit(3, "meters"),
  51358. weight: math.unit(508, "kg"),
  51359. name: "Front",
  51360. image: {
  51361. source: "./media/characters/seranis/front.svg",
  51362. extra: 1478/1454,
  51363. bottom: 41/1519
  51364. }
  51365. },
  51366. },
  51367. [
  51368. {
  51369. name: "Normal",
  51370. height: math.unit(3, "meters"),
  51371. default: true
  51372. },
  51373. {
  51374. name: "Macro",
  51375. height: math.unit(108, "meters")
  51376. },
  51377. {
  51378. name: "Megamacro",
  51379. height: math.unit(1250, "meters")
  51380. },
  51381. ]
  51382. ))
  51383. characterMakers.push(() => makeCharacter(
  51384. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51385. {
  51386. undressed: {
  51387. height: math.unit(5 + 3/12, "feet"),
  51388. name: "Undressed",
  51389. image: {
  51390. source: "./media/characters/ankou/undressed.svg",
  51391. extra: 1301/1213,
  51392. bottom: 87/1388
  51393. }
  51394. },
  51395. dressed: {
  51396. height: math.unit(5 + 3/12, "feet"),
  51397. name: "Dressed",
  51398. image: {
  51399. source: "./media/characters/ankou/dressed.svg",
  51400. extra: 1301/1213,
  51401. bottom: 87/1388
  51402. }
  51403. },
  51404. head: {
  51405. height: math.unit(1.61, "feet"),
  51406. name: "Head",
  51407. image: {
  51408. source: "./media/characters/ankou/head.svg"
  51409. }
  51410. },
  51411. },
  51412. [
  51413. {
  51414. name: "Normal",
  51415. height: math.unit(5 + 3/12, "feet"),
  51416. default: true
  51417. },
  51418. ]
  51419. ))
  51420. characterMakers.push(() => makeCharacter(
  51421. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51422. {
  51423. side: {
  51424. height: math.unit(6 + 3/12, "feet"),
  51425. weight: math.unit(200, "kg"),
  51426. name: "Side",
  51427. image: {
  51428. source: "./media/characters/juniper-skunktaur/side.svg",
  51429. extra: 1574/1229,
  51430. bottom: 38/1612
  51431. }
  51432. },
  51433. front: {
  51434. height: math.unit(6 + 3/12, "feet"),
  51435. weight: math.unit(200, "kg"),
  51436. name: "Front",
  51437. image: {
  51438. source: "./media/characters/juniper-skunktaur/front.svg",
  51439. extra: 1337/1278,
  51440. bottom: 22/1359
  51441. }
  51442. },
  51443. back: {
  51444. height: math.unit(6 + 3/12, "feet"),
  51445. weight: math.unit(200, "kg"),
  51446. name: "Back",
  51447. image: {
  51448. source: "./media/characters/juniper-skunktaur/back.svg",
  51449. extra: 1618/1273,
  51450. bottom: 13/1631
  51451. }
  51452. },
  51453. top: {
  51454. height: math.unit(2.62, "feet"),
  51455. weight: math.unit(200, "kg"),
  51456. name: "Top",
  51457. image: {
  51458. source: "./media/characters/juniper-skunktaur/top.svg"
  51459. }
  51460. },
  51461. },
  51462. [
  51463. {
  51464. name: "Normal",
  51465. height: math.unit(6 + 3/12, "feet"),
  51466. default: true
  51467. },
  51468. ]
  51469. ))
  51470. characterMakers.push(() => makeCharacter(
  51471. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51472. {
  51473. front: {
  51474. height: math.unit(20.5, "feet"),
  51475. name: "Front",
  51476. image: {
  51477. source: "./media/characters/rei/front.svg",
  51478. extra: 1349/1195,
  51479. bottom: 31/1380
  51480. }
  51481. },
  51482. back: {
  51483. height: math.unit(20.5, "feet"),
  51484. name: "Back",
  51485. image: {
  51486. source: "./media/characters/rei/back.svg",
  51487. extra: 1358/1204,
  51488. bottom: 22/1380
  51489. }
  51490. },
  51491. pawsDigi: {
  51492. height: math.unit(3.45, "feet"),
  51493. name: "Paws (Digi)",
  51494. image: {
  51495. source: "./media/characters/rei/paws-digi.svg"
  51496. }
  51497. },
  51498. pawsPlanti: {
  51499. height: math.unit(3.45, "feet"),
  51500. name: "Paws (Planti)",
  51501. image: {
  51502. source: "./media/characters/rei/paws-planti.svg"
  51503. }
  51504. },
  51505. },
  51506. [
  51507. {
  51508. name: "Normal",
  51509. height: math.unit(20.5, "feet"),
  51510. default: true
  51511. },
  51512. ]
  51513. ))
  51514. //characters
  51515. function makeCharacters() {
  51516. const results = [];
  51517. characterMakers.forEach(character => {
  51518. results.push(character());
  51519. });
  51520. return results;
  51521. }