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.
 
 
 

57341 lines
1.4 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. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["lizard"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. "thresher-shark": {
  2166. name: "Thresher Shark",
  2167. parents: ["shark"]
  2168. },
  2169. }
  2170. //species
  2171. function getSpeciesInfo(speciesList) {
  2172. let result = new Set();
  2173. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2174. result.add(entry)
  2175. });
  2176. return Array.from(result);
  2177. };
  2178. function getSpeciesInfoHelper(species) {
  2179. if (!speciesData[species]) {
  2180. console.warn(species + " doesn't exist");
  2181. return [];
  2182. }
  2183. if (speciesData[species].parents) {
  2184. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2185. } else {
  2186. return [species];
  2187. }
  2188. }
  2189. characterMakers.push(() => makeCharacter(
  2190. {
  2191. name: "Fen",
  2192. species: ["crux"],
  2193. description: {
  2194. title: "Bio",
  2195. text: "Very furry. Sheds on everything."
  2196. },
  2197. tags: [
  2198. "anthro",
  2199. "goo"
  2200. ]
  2201. },
  2202. {
  2203. front: {
  2204. height: math.unit(12, "feet"),
  2205. weight: math.unit(2400, "lb"),
  2206. preyCapacity: math.unit(1, "people"),
  2207. name: "Front",
  2208. image: {
  2209. source: "./media/characters/fen/front.svg",
  2210. extra: 1804/1562,
  2211. bottom: 205/2009
  2212. },
  2213. extraAttributes: {
  2214. pawSize: {
  2215. name: "Paw Size",
  2216. power: 2,
  2217. type: "area",
  2218. base: math.unit(0.35, "m^2")
  2219. }
  2220. }
  2221. },
  2222. diving: {
  2223. height: math.unit(4.9, "meters"),
  2224. weight: math.unit(2400, "lb"),
  2225. name: "Diving",
  2226. image: {
  2227. source: "./media/characters/fen/diving.svg"
  2228. }
  2229. },
  2230. sleeby: {
  2231. height: math.unit(3.45, "meters"),
  2232. weight: math.unit(2400, "lb"),
  2233. name: "Sleeby",
  2234. image: {
  2235. source: "./media/characters/fen/sleeby.svg"
  2236. }
  2237. },
  2238. goo: {
  2239. height: math.unit(12, "feet"),
  2240. weight: math.unit(3600, "lb"),
  2241. volume: math.unit(1000, "liters"),
  2242. preyCapacity: math.unit(6, "people"),
  2243. name: "Goo",
  2244. image: {
  2245. source: "./media/characters/fen/goo.svg",
  2246. extra: 1307/1071,
  2247. bottom: 134/1441
  2248. }
  2249. },
  2250. gooNsfw: {
  2251. height: math.unit(12, "feet"),
  2252. weight: math.unit(3750, "lb"),
  2253. volume: math.unit(1000, "liters"),
  2254. preyCapacity: math.unit(6, "people"),
  2255. name: "Goo (NSFW)",
  2256. image: {
  2257. source: "./media/characters/fen/goo-nsfw.svg",
  2258. extra: 1875/1734,
  2259. bottom: 122/1997
  2260. }
  2261. },
  2262. maw: {
  2263. height: math.unit(5.03, "feet"),
  2264. name: "Maw",
  2265. image: {
  2266. source: "./media/characters/fen/maw.svg"
  2267. }
  2268. },
  2269. gooCeiling: {
  2270. height: math.unit(6.6, "feet"),
  2271. weight: math.unit(3000, "lb"),
  2272. volume: math.unit(1000, "liters"),
  2273. preyCapacity: math.unit(6, "people"),
  2274. name: "Goo (Ceiling)",
  2275. image: {
  2276. source: "./media/characters/fen/goo-ceiling.svg"
  2277. }
  2278. },
  2279. paw: {
  2280. height: math.unit(3.77, "feet"),
  2281. name: "Paw",
  2282. image: {
  2283. source: "./media/characters/fen/paw.svg"
  2284. },
  2285. extraAttributes: {
  2286. "toeSize": {
  2287. name: "Toe Size",
  2288. power: 2,
  2289. type: "area",
  2290. base: math.unit(0.02875, "m^2")
  2291. },
  2292. "pawSize": {
  2293. name: "Paw Size",
  2294. power: 2,
  2295. type: "area",
  2296. base: math.unit(0.378, "m^2")
  2297. },
  2298. }
  2299. },
  2300. tail: {
  2301. height: math.unit(12.1, "feet"),
  2302. name: "Tail",
  2303. image: {
  2304. source: "./media/characters/fen/tail.svg"
  2305. }
  2306. },
  2307. tailFull: {
  2308. height: math.unit(12.1, "feet"),
  2309. name: "Full Tail",
  2310. image: {
  2311. source: "./media/characters/fen/tail-full.svg"
  2312. }
  2313. },
  2314. back: {
  2315. height: math.unit(12, "feet"),
  2316. weight: math.unit(2400, "lb"),
  2317. name: "Back",
  2318. image: {
  2319. source: "./media/characters/fen/back.svg",
  2320. },
  2321. info: {
  2322. description: {
  2323. mode: "append",
  2324. text: "\n\nHe is not currently looking at you."
  2325. }
  2326. }
  2327. },
  2328. full: {
  2329. height: math.unit(1.85, "meter"),
  2330. weight: math.unit(3200, "lb"),
  2331. name: "Full",
  2332. image: {
  2333. source: "./media/characters/fen/full.svg",
  2334. extra: 1133/859,
  2335. bottom: 145/1278
  2336. },
  2337. info: {
  2338. description: {
  2339. mode: "append",
  2340. text: "\n\nMunch."
  2341. }
  2342. }
  2343. },
  2344. gooLounging: {
  2345. height: math.unit(4.53, "feet"),
  2346. weight: math.unit(3000, "lb"),
  2347. preyCapacity: math.unit(6, "people"),
  2348. name: "Goo (Lounging)",
  2349. image: {
  2350. source: "./media/characters/fen/goo-lounging.svg",
  2351. bottom: 116 / 613
  2352. }
  2353. },
  2354. lounging: {
  2355. height: math.unit(10.52, "feet"),
  2356. weight: math.unit(2400, "lb"),
  2357. name: "Lounging",
  2358. image: {
  2359. source: "./media/characters/fen/lounging.svg"
  2360. }
  2361. },
  2362. },
  2363. [
  2364. {
  2365. name: "Small",
  2366. height: math.unit(2.2428, "meter")
  2367. },
  2368. {
  2369. name: "Normal",
  2370. height: math.unit(12, "feet"),
  2371. default: true,
  2372. },
  2373. {
  2374. name: "Big",
  2375. height: math.unit(20, "feet")
  2376. },
  2377. {
  2378. name: "Minimacro",
  2379. height: math.unit(40, "feet"),
  2380. info: {
  2381. description: {
  2382. mode: "append",
  2383. text: "\n\nTOO DAMN BIG"
  2384. }
  2385. }
  2386. },
  2387. {
  2388. name: "Macro",
  2389. height: math.unit(100, "feet"),
  2390. info: {
  2391. description: {
  2392. mode: "append",
  2393. text: "\n\nTOO DAMN BIG"
  2394. }
  2395. }
  2396. },
  2397. {
  2398. name: "Megamacro",
  2399. height: math.unit(2, "miles")
  2400. },
  2401. {
  2402. name: "Gigamacro",
  2403. height: math.unit(10, "earths")
  2404. },
  2405. ]
  2406. ))
  2407. characterMakers.push(() => makeCharacter(
  2408. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2409. {
  2410. front: {
  2411. height: math.unit(183, "cm"),
  2412. weight: math.unit(80, "kg"),
  2413. name: "Front",
  2414. image: {
  2415. source: "./media/characters/sofia-fluttertail/front.svg",
  2416. bottom: 0.01,
  2417. extra: 2154 / 2081
  2418. }
  2419. },
  2420. frontAlt: {
  2421. height: math.unit(183, "cm"),
  2422. weight: math.unit(80, "kg"),
  2423. name: "Front (alt)",
  2424. image: {
  2425. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2426. }
  2427. },
  2428. back: {
  2429. height: math.unit(183, "cm"),
  2430. weight: math.unit(80, "kg"),
  2431. name: "Back",
  2432. image: {
  2433. source: "./media/characters/sofia-fluttertail/back.svg"
  2434. }
  2435. },
  2436. kneeling: {
  2437. height: math.unit(125, "cm"),
  2438. weight: math.unit(80, "kg"),
  2439. name: "Kneeling",
  2440. image: {
  2441. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2442. extra: 1033 / 977,
  2443. bottom: 23.7 / 1057
  2444. }
  2445. },
  2446. maw: {
  2447. height: math.unit(183 / 5, "cm"),
  2448. name: "Maw",
  2449. image: {
  2450. source: "./media/characters/sofia-fluttertail/maw.svg"
  2451. }
  2452. },
  2453. mawcloseup: {
  2454. height: math.unit(183 / 5 * 0.41, "cm"),
  2455. name: "Maw (Closeup)",
  2456. image: {
  2457. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2458. }
  2459. },
  2460. paws: {
  2461. height: math.unit(1.17, "feet"),
  2462. name: "Paws",
  2463. image: {
  2464. source: "./media/characters/sofia-fluttertail/paws.svg",
  2465. extra: 851 / 851,
  2466. bottom: 17 / 868
  2467. }
  2468. },
  2469. },
  2470. [
  2471. {
  2472. name: "Normal",
  2473. height: math.unit(1.83, "meter")
  2474. },
  2475. {
  2476. name: "Size Thief",
  2477. height: math.unit(18, "feet")
  2478. },
  2479. {
  2480. name: "50 Foot Collie",
  2481. height: math.unit(50, "feet")
  2482. },
  2483. {
  2484. name: "Macro",
  2485. height: math.unit(96, "feet"),
  2486. default: true
  2487. },
  2488. {
  2489. name: "Megamerger",
  2490. height: math.unit(650, "feet")
  2491. },
  2492. ]
  2493. ))
  2494. characterMakers.push(() => makeCharacter(
  2495. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2496. {
  2497. front: {
  2498. height: math.unit(7, "feet"),
  2499. weight: math.unit(100, "kg"),
  2500. name: "Front",
  2501. image: {
  2502. source: "./media/characters/march/front.svg",
  2503. extra: 1992/1851,
  2504. bottom: 39/2031
  2505. }
  2506. },
  2507. foot: {
  2508. height: math.unit(0.9, "feet"),
  2509. name: "Foot",
  2510. image: {
  2511. source: "./media/characters/march/foot.svg"
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Normal",
  2518. height: math.unit(7.9, "feet")
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(220, "meters")
  2523. },
  2524. {
  2525. name: "Megamacro",
  2526. height: math.unit(2.98, "km"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Gigamacro",
  2531. height: math.unit(15963, "km")
  2532. },
  2533. {
  2534. name: "Teramacro",
  2535. height: math.unit(2980000000, "km")
  2536. },
  2537. {
  2538. name: "Examacro",
  2539. height: math.unit(250, "parsecs")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2545. {
  2546. front: {
  2547. height: math.unit(6, "feet"),
  2548. weight: math.unit(60, "kg"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/noir/front.svg",
  2552. extra: 1,
  2553. bottom: 0.032
  2554. }
  2555. },
  2556. },
  2557. [
  2558. {
  2559. name: "Normal",
  2560. height: math.unit(6.6, "feet")
  2561. },
  2562. {
  2563. name: "Macro",
  2564. height: math.unit(500, "feet")
  2565. },
  2566. {
  2567. name: "Megamacro",
  2568. height: math.unit(2.5, "km"),
  2569. default: true
  2570. },
  2571. {
  2572. name: "Gigamacro",
  2573. height: math.unit(22500, "km")
  2574. },
  2575. {
  2576. name: "Teramacro",
  2577. height: math.unit(2500000000, "km")
  2578. },
  2579. {
  2580. name: "Examacro",
  2581. height: math.unit(200, "parsecs")
  2582. },
  2583. ]
  2584. ))
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2587. {
  2588. front: {
  2589. height: math.unit(7, "feet"),
  2590. weight: math.unit(100, "kg"),
  2591. name: "Front",
  2592. image: {
  2593. source: "./media/characters/okuri/front.svg",
  2594. extra: 739/665,
  2595. bottom: 39/778
  2596. }
  2597. },
  2598. back: {
  2599. height: math.unit(7, "feet"),
  2600. weight: math.unit(100, "kg"),
  2601. name: "Back",
  2602. image: {
  2603. source: "./media/characters/okuri/back.svg",
  2604. extra: 734/653,
  2605. bottom: 13/747
  2606. }
  2607. },
  2608. sitting: {
  2609. height: math.unit(2.95, "feet"),
  2610. weight: math.unit(100, "kg"),
  2611. name: "Sitting",
  2612. image: {
  2613. source: "./media/characters/okuri/sitting.svg",
  2614. extra: 370/318,
  2615. bottom: 99/469
  2616. }
  2617. },
  2618. },
  2619. [
  2620. {
  2621. name: "Smallest",
  2622. height: math.unit(5 + 2/12, "feet")
  2623. },
  2624. {
  2625. name: "Smaller",
  2626. height: math.unit(300, "feet")
  2627. },
  2628. {
  2629. name: "Small",
  2630. height: math.unit(1000, "feet")
  2631. },
  2632. {
  2633. name: "Macro",
  2634. height: math.unit(1, "mile")
  2635. },
  2636. {
  2637. name: "Mega Macro (Small)",
  2638. height: math.unit(20, "km")
  2639. },
  2640. {
  2641. name: "Mega Macro (Large)",
  2642. height: math.unit(600, "km")
  2643. },
  2644. {
  2645. name: "Giga Macro",
  2646. height: math.unit(10000, "km")
  2647. },
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(577560, "km"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Large",
  2655. height: math.unit(4, "galaxies")
  2656. },
  2657. {
  2658. name: "Largest",
  2659. height: math.unit(15, "multiverses")
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2665. {
  2666. front: {
  2667. height: math.unit(7, "feet"),
  2668. weight: math.unit(100, "kg"),
  2669. name: "Front",
  2670. image: {
  2671. source: "./media/characters/manny/front.svg",
  2672. extra: 1,
  2673. bottom: 0.06
  2674. }
  2675. },
  2676. back: {
  2677. height: math.unit(7, "feet"),
  2678. weight: math.unit(100, "kg"),
  2679. name: "Back",
  2680. image: {
  2681. source: "./media/characters/manny/back.svg",
  2682. extra: 1,
  2683. bottom: 0.014
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(7, "feet"),
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(78, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Macro+",
  2699. height: math.unit(300, "meters")
  2700. },
  2701. {
  2702. name: "Macro++",
  2703. height: math.unit(2400, "meters")
  2704. },
  2705. {
  2706. name: "Megamacro",
  2707. height: math.unit(5167, "meters")
  2708. },
  2709. {
  2710. name: "Gigamacro",
  2711. height: math.unit(41769, "miles")
  2712. },
  2713. ]
  2714. ))
  2715. characterMakers.push(() => makeCharacter(
  2716. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2717. {
  2718. front: {
  2719. height: math.unit(7, "feet"),
  2720. weight: math.unit(100, "kg"),
  2721. name: "Front",
  2722. image: {
  2723. source: "./media/characters/adake/front-1.svg"
  2724. }
  2725. },
  2726. frontAlt: {
  2727. height: math.unit(7, "feet"),
  2728. weight: math.unit(100, "kg"),
  2729. name: "Front (Alt)",
  2730. image: {
  2731. source: "./media/characters/adake/front-2.svg",
  2732. extra: 1,
  2733. bottom: 0.01
  2734. }
  2735. },
  2736. back: {
  2737. height: math.unit(7, "feet"),
  2738. weight: math.unit(100, "kg"),
  2739. name: "Back",
  2740. image: {
  2741. source: "./media/characters/adake/back.svg",
  2742. }
  2743. },
  2744. kneel: {
  2745. height: math.unit(5.385, "feet"),
  2746. weight: math.unit(100, "kg"),
  2747. name: "Kneeling",
  2748. image: {
  2749. source: "./media/characters/adake/kneel.svg",
  2750. bottom: 0.052
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(7, "feet"),
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(78, "feet"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Macro+",
  2766. height: math.unit(300, "meters")
  2767. },
  2768. {
  2769. name: "Macro++",
  2770. height: math.unit(2400, "meters")
  2771. },
  2772. {
  2773. name: "Megamacro",
  2774. height: math.unit(5167, "meters")
  2775. },
  2776. {
  2777. name: "Gigamacro",
  2778. height: math.unit(41769, "miles")
  2779. },
  2780. ]
  2781. ))
  2782. characterMakers.push(() => makeCharacter(
  2783. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2784. {
  2785. front: {
  2786. height: math.unit(1.65, "meters"),
  2787. weight: math.unit(50, "kg"),
  2788. name: "Front",
  2789. image: {
  2790. source: "./media/characters/elijah/front.svg",
  2791. extra: 858 / 830,
  2792. bottom: 95.5 / 953.8559
  2793. }
  2794. },
  2795. back: {
  2796. height: math.unit(1.65, "meters"),
  2797. weight: math.unit(50, "kg"),
  2798. name: "Back",
  2799. image: {
  2800. source: "./media/characters/elijah/back.svg",
  2801. extra: 895 / 850,
  2802. bottom: 5.3 / 897.956
  2803. }
  2804. },
  2805. frontNsfw: {
  2806. height: math.unit(1.65, "meters"),
  2807. weight: math.unit(50, "kg"),
  2808. name: "Front (NSFW)",
  2809. image: {
  2810. source: "./media/characters/elijah/front-nsfw.svg",
  2811. extra: 858 / 830,
  2812. bottom: 95.5 / 953.8559
  2813. }
  2814. },
  2815. backNsfw: {
  2816. height: math.unit(1.65, "meters"),
  2817. weight: math.unit(50, "kg"),
  2818. name: "Back (NSFW)",
  2819. image: {
  2820. source: "./media/characters/elijah/back-nsfw.svg",
  2821. extra: 895 / 850,
  2822. bottom: 5.3 / 897.956
  2823. }
  2824. },
  2825. dick: {
  2826. height: math.unit(1, "feet"),
  2827. name: "Dick",
  2828. image: {
  2829. source: "./media/characters/elijah/dick.svg"
  2830. }
  2831. },
  2832. beakOpen: {
  2833. height: math.unit(1.25, "feet"),
  2834. name: "Beak (Open)",
  2835. image: {
  2836. source: "./media/characters/elijah/beak-open.svg"
  2837. }
  2838. },
  2839. beakShut: {
  2840. height: math.unit(1.25, "feet"),
  2841. name: "Beak (Shut)",
  2842. image: {
  2843. source: "./media/characters/elijah/beak-shut.svg"
  2844. }
  2845. },
  2846. footFlexing: {
  2847. height: math.unit(1.61, "feet"),
  2848. name: "Foot (Flexing)",
  2849. image: {
  2850. source: "./media/characters/elijah/foot-flexing.svg"
  2851. }
  2852. },
  2853. footStepping: {
  2854. height: math.unit(1.44, "feet"),
  2855. name: "Foot (Stepping)",
  2856. image: {
  2857. source: "./media/characters/elijah/foot-stepping.svg"
  2858. }
  2859. },
  2860. plantigradeLeg: {
  2861. height: math.unit(2.34, "feet"),
  2862. name: "Plantigrade Leg",
  2863. image: {
  2864. source: "./media/characters/elijah/plantigrade-leg.svg"
  2865. }
  2866. },
  2867. plantigradeFootLeft: {
  2868. height: math.unit(0.9, "feet"),
  2869. name: "Plantigrade Foot (Left)",
  2870. image: {
  2871. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2872. }
  2873. },
  2874. plantigradeFootRight: {
  2875. height: math.unit(0.9, "feet"),
  2876. name: "Plantigrade Foot (Right)",
  2877. image: {
  2878. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2879. }
  2880. },
  2881. },
  2882. [
  2883. {
  2884. name: "Normal",
  2885. height: math.unit(1.65, "meters")
  2886. },
  2887. {
  2888. name: "Macro",
  2889. height: math.unit(55, "meters"),
  2890. default: true
  2891. },
  2892. {
  2893. name: "Macro+",
  2894. height: math.unit(105, "meters")
  2895. },
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2900. {
  2901. front: {
  2902. height: math.unit(7 + 2/12, "feet"),
  2903. weight: math.unit(320, "kg"),
  2904. preyCapacity: math.unit(0.276549935, "people"),
  2905. name: "Front",
  2906. image: {
  2907. source: "./media/characters/rai/front.svg",
  2908. extra: 1802/1696,
  2909. bottom: 68/1870
  2910. },
  2911. form: "anthro",
  2912. default: true
  2913. },
  2914. frontDressed: {
  2915. height: math.unit(7 + 2/12, "feet"),
  2916. weight: math.unit(320, "kg"),
  2917. preyCapacity: math.unit(0.276549935, "people"),
  2918. name: "Front (Dressed)",
  2919. image: {
  2920. source: "./media/characters/rai/front-dressed.svg",
  2921. extra: 1802/1696,
  2922. bottom: 68/1870
  2923. },
  2924. form: "anthro"
  2925. },
  2926. side: {
  2927. height: math.unit(7 + 2/12, "feet"),
  2928. weight: math.unit(320, "kg"),
  2929. preyCapacity: math.unit(0.276549935, "people"),
  2930. name: "Side",
  2931. image: {
  2932. source: "./media/characters/rai/side.svg",
  2933. extra: 1789/1710,
  2934. bottom: 115/1904
  2935. },
  2936. form: "anthro"
  2937. },
  2938. back: {
  2939. height: math.unit(7 + 2/12, "feet"),
  2940. weight: math.unit(320, "kg"),
  2941. preyCapacity: math.unit(0.276549935, "people"),
  2942. name: "Back",
  2943. image: {
  2944. source: "./media/characters/rai/back.svg",
  2945. extra: 1770/1707,
  2946. bottom: 28/1798
  2947. },
  2948. form: "anthro"
  2949. },
  2950. feral: {
  2951. height: math.unit(9.5, "feet"),
  2952. weight: math.unit(640, "kg"),
  2953. preyCapacity: math.unit(4, "people"),
  2954. name: "Feral",
  2955. image: {
  2956. source: "./media/characters/rai/feral.svg",
  2957. extra: 945/553,
  2958. bottom: 176/1121
  2959. },
  2960. form: "feral",
  2961. default: true
  2962. },
  2963. dragon: {
  2964. height: math.unit(23, "feet"),
  2965. weight: math.unit(50000, "lb"),
  2966. name: "Dragon",
  2967. image: {
  2968. source: "./media/characters/rai/dragon.svg",
  2969. extra: 2498 / 2030,
  2970. bottom: 85.2 / 2584
  2971. },
  2972. form: "dragon",
  2973. default: true
  2974. },
  2975. maw: {
  2976. height: math.unit(1.69, "feet"),
  2977. name: "Maw",
  2978. image: {
  2979. source: "./media/characters/rai/maw.svg"
  2980. },
  2981. form: "anthro"
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(7 + 2/12, "feet"),
  2988. form: "anthro"
  2989. },
  2990. {
  2991. name: "Big",
  2992. height: math.unit(11, "feet"),
  2993. form: "anthro"
  2994. },
  2995. {
  2996. name: "Minimacro",
  2997. height: math.unit(77, "feet"),
  2998. form: "anthro"
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(302, "feet"),
  3003. default: true,
  3004. form: "anthro"
  3005. },
  3006. {
  3007. name: "Normal",
  3008. height: math.unit(9.5, "feet"),
  3009. form: "feral",
  3010. default: true
  3011. },
  3012. {
  3013. name: "Normal",
  3014. height: math.unit(23, "feet"),
  3015. form: "dragon",
  3016. default: true
  3017. }
  3018. ],
  3019. {
  3020. "anthro": {
  3021. name: "Anthro",
  3022. default: true
  3023. },
  3024. "feral": {
  3025. name: "Feral",
  3026. },
  3027. "dragon": {
  3028. name: "Dragon",
  3029. },
  3030. }
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3034. {
  3035. frontDressed: {
  3036. height: math.unit(216, "feet"),
  3037. weight: math.unit(7000000, "lb"),
  3038. preyCapacity: math.unit(1321, "people"),
  3039. name: "Front (Dressed)",
  3040. image: {
  3041. source: "./media/characters/jazzy/front-dressed.svg",
  3042. extra: 2738 / 2651,
  3043. bottom: 41.8 / 2786
  3044. }
  3045. },
  3046. backDressed: {
  3047. height: math.unit(216, "feet"),
  3048. weight: math.unit(7000000, "lb"),
  3049. preyCapacity: math.unit(1321, "people"),
  3050. name: "Back (Dressed)",
  3051. image: {
  3052. source: "./media/characters/jazzy/back-dressed.svg",
  3053. extra: 2775 / 2673,
  3054. bottom: 36.8 / 2817
  3055. }
  3056. },
  3057. front: {
  3058. height: math.unit(216, "feet"),
  3059. weight: math.unit(7000000, "lb"),
  3060. preyCapacity: math.unit(1321, "people"),
  3061. name: "Front",
  3062. image: {
  3063. source: "./media/characters/jazzy/front.svg",
  3064. extra: 2738 / 2651,
  3065. bottom: 41.8 / 2786
  3066. }
  3067. },
  3068. back: {
  3069. height: math.unit(216, "feet"),
  3070. weight: math.unit(7000000, "lb"),
  3071. preyCapacity: math.unit(1321, "people"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/jazzy/back.svg",
  3075. extra: 2775 / 2673,
  3076. bottom: 36.8 / 2817
  3077. }
  3078. },
  3079. maw: {
  3080. height: math.unit(20, "feet"),
  3081. name: "Maw",
  3082. image: {
  3083. source: "./media/characters/jazzy/maw.svg"
  3084. }
  3085. },
  3086. paws: {
  3087. height: math.unit(27.5, "feet"),
  3088. name: "Paws",
  3089. image: {
  3090. source: "./media/characters/jazzy/paws.svg"
  3091. }
  3092. },
  3093. eye: {
  3094. height: math.unit(4.4, "feet"),
  3095. name: "Eye",
  3096. image: {
  3097. source: "./media/characters/jazzy/eye.svg"
  3098. }
  3099. },
  3100. droneOffense: {
  3101. height: math.unit(9.5, "inches"),
  3102. name: "Drone (Offense)",
  3103. image: {
  3104. source: "./media/characters/jazzy/drone-offense.svg"
  3105. }
  3106. },
  3107. droneRecon: {
  3108. height: math.unit(9.5, "inches"),
  3109. name: "Drone (Recon)",
  3110. image: {
  3111. source: "./media/characters/jazzy/drone-recon.svg"
  3112. }
  3113. },
  3114. droneDefense: {
  3115. height: math.unit(9.5, "inches"),
  3116. name: "Drone (Defense)",
  3117. image: {
  3118. source: "./media/characters/jazzy/drone-defense.svg"
  3119. }
  3120. },
  3121. },
  3122. [
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(216, "feet"),
  3126. default: true
  3127. },
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3132. {
  3133. front: {
  3134. height: math.unit(9 + 6/12, "feet"),
  3135. weight: math.unit(700, "lb"),
  3136. name: "Front",
  3137. image: {
  3138. source: "./media/characters/flamm/front.svg",
  3139. extra: 1736/1596,
  3140. bottom: 93/1829
  3141. }
  3142. },
  3143. buff: {
  3144. height: math.unit(9 + 6/12, "feet"),
  3145. weight: math.unit(950, "lb"),
  3146. name: "Buff",
  3147. image: {
  3148. source: "./media/characters/flamm/buff.svg",
  3149. extra: 3018/2874,
  3150. bottom: 221/3239
  3151. }
  3152. },
  3153. },
  3154. [
  3155. {
  3156. name: "Normal",
  3157. height: math.unit(9.5, "feet")
  3158. },
  3159. {
  3160. name: "Macro",
  3161. height: math.unit(200, "feet"),
  3162. default: true
  3163. },
  3164. ]
  3165. ))
  3166. characterMakers.push(() => makeCharacter(
  3167. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3168. {
  3169. front: {
  3170. height: math.unit(5 + 3/12, "feet"),
  3171. weight: math.unit(60, "kg"),
  3172. name: "Front",
  3173. image: {
  3174. source: "./media/characters/zephiro/front.svg",
  3175. extra: 1873/1761,
  3176. bottom: 147/2020
  3177. }
  3178. },
  3179. side: {
  3180. height: math.unit(5 + 3/12, "feet"),
  3181. weight: math.unit(60, "kg"),
  3182. name: "Side",
  3183. image: {
  3184. source: "./media/characters/zephiro/side.svg",
  3185. extra: 1929/1827,
  3186. bottom: 65/1994
  3187. }
  3188. },
  3189. back: {
  3190. height: math.unit(5 + 3/12, "feet"),
  3191. weight: math.unit(60, "kg"),
  3192. name: "Back",
  3193. image: {
  3194. source: "./media/characters/zephiro/back.svg",
  3195. extra: 1926/1816,
  3196. bottom: 41/1967
  3197. }
  3198. },
  3199. hand: {
  3200. height: math.unit(0.68, "feet"),
  3201. name: "Hand",
  3202. image: {
  3203. source: "./media/characters/zephiro/hand.svg"
  3204. }
  3205. },
  3206. paw: {
  3207. height: math.unit(1, "feet"),
  3208. name: "Paw",
  3209. image: {
  3210. source: "./media/characters/zephiro/paw.svg"
  3211. }
  3212. },
  3213. beans: {
  3214. height: math.unit(0.93, "feet"),
  3215. name: "Beans",
  3216. image: {
  3217. source: "./media/characters/zephiro/beans.svg"
  3218. }
  3219. },
  3220. },
  3221. [
  3222. {
  3223. name: "Micro",
  3224. height: math.unit(3, "inches")
  3225. },
  3226. {
  3227. name: "Normal",
  3228. height: math.unit(5 + 3 / 12, "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Macro",
  3233. height: math.unit(118, "feet")
  3234. },
  3235. ]
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3239. {
  3240. front: {
  3241. height: math.unit(5, "feet"),
  3242. weight: math.unit(90, "kg"),
  3243. preyCapacity: math.unit(14, "people"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/fory/front.svg",
  3247. extra: 2862 / 2674,
  3248. bottom: 180 / 3043.8
  3249. },
  3250. form: "weaselbun",
  3251. default: true,
  3252. extraAttributes: {
  3253. "pawSize": {
  3254. name: "Paw Size",
  3255. power: 2,
  3256. type: "area",
  3257. base: math.unit(0.1596, "m^2")
  3258. },
  3259. "pawLength": {
  3260. name: "Paw Length",
  3261. power: 1,
  3262. type: "length",
  3263. base: math.unit(0.7, "m")
  3264. }
  3265. }
  3266. },
  3267. back: {
  3268. height: math.unit(5, "feet"),
  3269. weight: math.unit(90, "kg"),
  3270. preyCapacity: math.unit(14, "people"),
  3271. name: "Back",
  3272. image: {
  3273. source: "./media/characters/fory/back.svg",
  3274. extra: 1790/1672,
  3275. bottom: 84/1874
  3276. },
  3277. form: "weaselbun",
  3278. extraAttributes: {
  3279. "pawSize": {
  3280. name: "Paw Size",
  3281. power: 2,
  3282. type: "area",
  3283. base: math.unit(0.1596, "m^2")
  3284. },
  3285. "pawLength": {
  3286. name: "Paw Length",
  3287. power: 1,
  3288. type: "length",
  3289. base: math.unit(0.7, "m")
  3290. }
  3291. }
  3292. },
  3293. paw: {
  3294. height: math.unit(2.14, "feet"),
  3295. name: "Paw",
  3296. image: {
  3297. source: "./media/characters/fory/paw.svg"
  3298. },
  3299. form: "weaselbun",
  3300. extraAttributes: {
  3301. "pawSize": {
  3302. name: "Paw Size",
  3303. power: 2,
  3304. type: "area",
  3305. base: math.unit(0.1596, "m^2")
  3306. },
  3307. "pawLength": {
  3308. name: "Paw Length",
  3309. power: 1,
  3310. type: "length",
  3311. base: math.unit(0.48, "m")
  3312. }
  3313. }
  3314. },
  3315. bunBack: {
  3316. height: math.unit(3, "feet"),
  3317. weight: math.unit(20, "kg"),
  3318. preyCapacity: math.unit(3, "people"),
  3319. name: "Back",
  3320. image: {
  3321. source: "./media/characters/fory/bun-back.svg",
  3322. extra: 1749/1564,
  3323. bottom: 246/1995
  3324. },
  3325. form: "bun",
  3326. default: true,
  3327. extraAttributes: {
  3328. "pawSize": {
  3329. name: "Paw Size",
  3330. power: 2,
  3331. type: "area",
  3332. base: math.unit(0.072, "m^2")
  3333. },
  3334. "pawLength": {
  3335. name: "Paw Length",
  3336. power: 1,
  3337. type: "length",
  3338. base: math.unit(0.45, "m")
  3339. }
  3340. }
  3341. },
  3342. },
  3343. [
  3344. {
  3345. name: "Normal",
  3346. height: math.unit(5, "feet"),
  3347. form: "weaselbun"
  3348. },
  3349. {
  3350. name: "Macro",
  3351. height: math.unit(50, "feet"),
  3352. default: true,
  3353. form: "weaselbun"
  3354. },
  3355. {
  3356. name: "Megamacro",
  3357. height: math.unit(10, "miles"),
  3358. form: "weaselbun"
  3359. },
  3360. {
  3361. name: "Gigamacro",
  3362. height: math.unit(5, "earths"),
  3363. form: "weaselbun"
  3364. },
  3365. {
  3366. name: "Normal",
  3367. height: math.unit(3, "feet"),
  3368. default: true,
  3369. form: "bun"
  3370. },
  3371. {
  3372. name: "Fun-Size",
  3373. height: math.unit(12, "feet"),
  3374. form: "bun"
  3375. },
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(100, "feet"),
  3379. form: "bun"
  3380. },
  3381. {
  3382. name: "Planetary",
  3383. height: math.unit(3, "earths"),
  3384. form: "bun"
  3385. },
  3386. ],
  3387. {
  3388. "weaselbun": {
  3389. name: "Weaselbun",
  3390. default: true
  3391. },
  3392. "bun": {
  3393. name: "Bun",
  3394. },
  3395. }
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3399. {
  3400. front: {
  3401. height: math.unit(7, "feet"),
  3402. weight: math.unit(90, "kg"),
  3403. name: "Front",
  3404. image: {
  3405. source: "./media/characters/kurrikage/front.svg",
  3406. extra: 1845/1733,
  3407. bottom: 119/1964
  3408. }
  3409. },
  3410. back: {
  3411. height: math.unit(7, "feet"),
  3412. weight: math.unit(90, "kg"),
  3413. name: "Back",
  3414. image: {
  3415. source: "./media/characters/kurrikage/back.svg",
  3416. extra: 1790/1677,
  3417. bottom: 61/1851
  3418. }
  3419. },
  3420. dressed: {
  3421. height: math.unit(7, "feet"),
  3422. weight: math.unit(90, "kg"),
  3423. name: "Dressed",
  3424. image: {
  3425. source: "./media/characters/kurrikage/dressed.svg",
  3426. extra: 1845/1733,
  3427. bottom: 119/1964
  3428. }
  3429. },
  3430. foot: {
  3431. height: math.unit(1.5, "feet"),
  3432. name: "Foot",
  3433. image: {
  3434. source: "./media/characters/kurrikage/foot.svg"
  3435. }
  3436. },
  3437. staff: {
  3438. height: math.unit(6.7, "feet"),
  3439. name: "Staff",
  3440. image: {
  3441. source: "./media/characters/kurrikage/staff.svg"
  3442. }
  3443. },
  3444. peek: {
  3445. height: math.unit(1.05, "feet"),
  3446. name: "Peeking",
  3447. image: {
  3448. source: "./media/characters/kurrikage/peek.svg",
  3449. bottom: 0.08
  3450. }
  3451. },
  3452. },
  3453. [
  3454. {
  3455. name: "Normal",
  3456. height: math.unit(12, "feet"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Big",
  3461. height: math.unit(20, "feet")
  3462. },
  3463. {
  3464. name: "Macro",
  3465. height: math.unit(500, "feet")
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(20, "miles")
  3470. },
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3475. {
  3476. front: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(75, "kg"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/shingo/front.svg",
  3482. extra: 1900/1825,
  3483. bottom: 82/1982
  3484. }
  3485. },
  3486. side: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(75, "kg"),
  3489. name: "Side",
  3490. image: {
  3491. source: "./media/characters/shingo/side.svg",
  3492. extra: 1930/1865,
  3493. bottom: 16/1946
  3494. }
  3495. },
  3496. back: {
  3497. height: math.unit(6, "feet"),
  3498. weight: math.unit(75, "kg"),
  3499. name: "Back",
  3500. image: {
  3501. source: "./media/characters/shingo/back.svg",
  3502. extra: 1922/1852,
  3503. bottom: 16/1938
  3504. }
  3505. },
  3506. frontDressed: {
  3507. height: math.unit(6, "feet"),
  3508. weight: math.unit(150, "lb"),
  3509. name: "Front-dressed",
  3510. image: {
  3511. source: "./media/characters/shingo/front-dressed.svg",
  3512. extra: 1900/1825,
  3513. bottom: 82/1982
  3514. }
  3515. },
  3516. paw: {
  3517. height: math.unit(1.29, "feet"),
  3518. name: "Paw",
  3519. image: {
  3520. source: "./media/characters/shingo/paw.svg"
  3521. }
  3522. },
  3523. hand: {
  3524. height: math.unit(1.07, "feet"),
  3525. name: "Hand",
  3526. image: {
  3527. source: "./media/characters/shingo/hand.svg"
  3528. }
  3529. },
  3530. frontAlt: {
  3531. height: math.unit(6, "feet"),
  3532. weight: math.unit(75, "kg"),
  3533. name: "Front (Alt)",
  3534. image: {
  3535. source: "./media/characters/shingo/front-alt.svg",
  3536. extra: 3511 / 3338,
  3537. bottom: 0.005
  3538. }
  3539. },
  3540. frontAlt2: {
  3541. height: math.unit(6, "feet"),
  3542. weight: math.unit(75, "kg"),
  3543. name: "Front (Alt 2)",
  3544. image: {
  3545. source: "./media/characters/shingo/front-alt-2.svg",
  3546. extra: 706/681,
  3547. bottom: 11/717
  3548. }
  3549. },
  3550. pawAlt: {
  3551. height: math.unit(1, "feet"),
  3552. name: "Paw (Alt)",
  3553. image: {
  3554. source: "./media/characters/shingo/paw-alt.svg"
  3555. }
  3556. },
  3557. },
  3558. [
  3559. {
  3560. name: "Micro",
  3561. height: math.unit(4, "inches")
  3562. },
  3563. {
  3564. name: "Normal",
  3565. height: math.unit(6, "feet"),
  3566. default: true
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(108, "feet")
  3571. },
  3572. {
  3573. name: "Macro+",
  3574. height: math.unit(1500, "feet")
  3575. },
  3576. ]
  3577. ))
  3578. characterMakers.push(() => makeCharacter(
  3579. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3580. {
  3581. side: {
  3582. height: math.unit(6, "feet"),
  3583. weight: math.unit(75, "kg"),
  3584. name: "Side",
  3585. image: {
  3586. source: "./media/characters/aigey/side.svg"
  3587. }
  3588. },
  3589. },
  3590. [
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(200, "feet"),
  3594. default: true
  3595. },
  3596. {
  3597. name: "Megamacro",
  3598. height: math.unit(100, "miles")
  3599. },
  3600. ]
  3601. )
  3602. )
  3603. characterMakers.push(() => makeCharacter(
  3604. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3605. {
  3606. front: {
  3607. height: math.unit(5 + 5 / 12, "feet"),
  3608. weight: math.unit(75, "kg"),
  3609. name: "Front",
  3610. image: {
  3611. source: "./media/characters/natasha/front.svg",
  3612. extra: 859 / 824,
  3613. bottom: 23 / 879.6
  3614. }
  3615. },
  3616. frontNsfw: {
  3617. height: math.unit(5 + 5 / 12, "feet"),
  3618. weight: math.unit(75, "kg"),
  3619. name: "Front (NSFW)",
  3620. image: {
  3621. source: "./media/characters/natasha/front-nsfw.svg",
  3622. extra: 859 / 824,
  3623. bottom: 23 / 879.6
  3624. }
  3625. },
  3626. frontErect: {
  3627. height: math.unit(5 + 5 / 12, "feet"),
  3628. weight: math.unit(75, "kg"),
  3629. name: "Front (Erect)",
  3630. image: {
  3631. source: "./media/characters/natasha/front-erect.svg",
  3632. extra: 859 / 824,
  3633. bottom: 23 / 879.6
  3634. }
  3635. },
  3636. back: {
  3637. height: math.unit(5 + 5 / 12, "feet"),
  3638. weight: math.unit(75, "kg"),
  3639. name: "Back",
  3640. image: {
  3641. source: "./media/characters/natasha/back.svg",
  3642. extra: 887.9 / 852.6,
  3643. bottom: 9.7 / 896.4
  3644. }
  3645. },
  3646. backAlt: {
  3647. height: math.unit(5 + 5 / 12, "feet"),
  3648. weight: math.unit(75, "kg"),
  3649. name: "Back (Alt)",
  3650. image: {
  3651. source: "./media/characters/natasha/back-alt.svg",
  3652. extra: 1236.7 / 1192,
  3653. bottom: 22.3 / 1258.2
  3654. }
  3655. },
  3656. dick: {
  3657. height: math.unit(1.772, "feet"),
  3658. name: "Dick",
  3659. image: {
  3660. source: "./media/characters/natasha/dick.svg"
  3661. }
  3662. },
  3663. paw: {
  3664. height: math.unit(0.250, "meters"),
  3665. name: "Paw",
  3666. image: {
  3667. source: "./media/characters/natasha/paw.svg"
  3668. },
  3669. extraAttributes: {
  3670. "toeSize": {
  3671. name: "Toe Size",
  3672. power: 2,
  3673. type: "area",
  3674. base: math.unit(0.0024, "m^2")
  3675. },
  3676. "padSize": {
  3677. name: "Pad Size",
  3678. power: 2,
  3679. type: "area",
  3680. base: math.unit(0.00889, "m^2")
  3681. },
  3682. "pawSize": {
  3683. name: "Paw Size",
  3684. power: 2,
  3685. type: "area",
  3686. base: math.unit(0.023667, "m^2")
  3687. },
  3688. }
  3689. },
  3690. },
  3691. [
  3692. {
  3693. name: "Shortstack",
  3694. height: math.unit(3, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(5 + 5 / 12, "feet")
  3700. },
  3701. {
  3702. name: "Large",
  3703. height: math.unit(12, "feet")
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(100, "feet")
  3708. },
  3709. {
  3710. name: "Macro+",
  3711. height: math.unit(260, "feet")
  3712. },
  3713. {
  3714. name: "Macro++",
  3715. height: math.unit(1, "mile")
  3716. },
  3717. ]
  3718. ))
  3719. characterMakers.push(() => makeCharacter(
  3720. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3721. {
  3722. front: {
  3723. height: math.unit(6, "feet"),
  3724. weight: math.unit(75, "kg"),
  3725. name: "Front",
  3726. image: {
  3727. source: "./media/characters/malik/front.svg",
  3728. extra: 1750/1561,
  3729. bottom: 80/1830
  3730. },
  3731. extraAttributes: {
  3732. "toeSize": {
  3733. name: "Toe Size",
  3734. power: 2,
  3735. type: "area",
  3736. base: math.unit(0.0159, "m^2")
  3737. },
  3738. "pawSize": {
  3739. name: "Paw Size",
  3740. power: 2,
  3741. type: "area",
  3742. base: math.unit(0.09834, "m^2")
  3743. },
  3744. }
  3745. },
  3746. side: {
  3747. height: math.unit(6, "feet"),
  3748. weight: math.unit(75, "kg"),
  3749. name: "Side",
  3750. image: {
  3751. source: "./media/characters/malik/side.svg",
  3752. extra: 1802/1685,
  3753. bottom: 42/1844
  3754. },
  3755. extraAttributes: {
  3756. "toeSize": {
  3757. name: "Toe Size",
  3758. power: 2,
  3759. type: "area",
  3760. base: math.unit(0.0159, "m^2")
  3761. },
  3762. "pawSize": {
  3763. name: "Paw Size",
  3764. power: 2,
  3765. type: "area",
  3766. base: math.unit(0.09834, "m^2")
  3767. },
  3768. }
  3769. },
  3770. back: {
  3771. height: math.unit(6, "feet"),
  3772. weight: math.unit(75, "kg"),
  3773. name: "Back",
  3774. image: {
  3775. source: "./media/characters/malik/back.svg",
  3776. extra: 1803/1607,
  3777. bottom: 33/1836
  3778. },
  3779. extraAttributes: {
  3780. "toeSize": {
  3781. name: "Toe Size",
  3782. power: 2,
  3783. type: "area",
  3784. base: math.unit(0.0159, "m^2")
  3785. },
  3786. "pawSize": {
  3787. name: "Paw Size",
  3788. power: 2,
  3789. type: "area",
  3790. base: math.unit(0.09834, "m^2")
  3791. },
  3792. }
  3793. },
  3794. },
  3795. [
  3796. {
  3797. name: "Macro",
  3798. height: math.unit(156, "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro+",
  3803. height: math.unit(1188, "feet")
  3804. },
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(6, "feet"),
  3812. weight: math.unit(75, "kg"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/sefer/front.svg",
  3816. extra: 848 / 659,
  3817. bottom: 28.3 / 876.442
  3818. }
  3819. },
  3820. back: {
  3821. height: math.unit(6, "feet"),
  3822. weight: math.unit(75, "kg"),
  3823. name: "Back",
  3824. image: {
  3825. source: "./media/characters/sefer/back.svg",
  3826. extra: 864 / 695,
  3827. bottom: 10 / 871
  3828. }
  3829. },
  3830. frontDressed: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(75, "kg"),
  3833. name: "Dressed",
  3834. image: {
  3835. source: "./media/characters/sefer/dressed.svg",
  3836. extra: 839 / 653,
  3837. bottom: 37.6 / 878
  3838. }
  3839. },
  3840. },
  3841. [
  3842. {
  3843. name: "Normal",
  3844. height: math.unit(6, "feet"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Big",
  3849. height: math.unit(8, "meters")
  3850. },
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3855. {
  3856. body: {
  3857. height: math.unit(2.2428, "meter"),
  3858. weight: math.unit(124.738, "kg"),
  3859. name: "Body",
  3860. image: {
  3861. extra: 1225 / 1050,
  3862. source: "./media/characters/north/front.svg"
  3863. }
  3864. }
  3865. },
  3866. [
  3867. {
  3868. name: "Micro",
  3869. height: math.unit(4, "inches")
  3870. },
  3871. {
  3872. name: "Macro",
  3873. height: math.unit(63, "meters")
  3874. },
  3875. {
  3876. name: "Megamacro",
  3877. height: math.unit(101, "miles"),
  3878. default: true
  3879. }
  3880. ]
  3881. ))
  3882. characterMakers.push(() => makeCharacter(
  3883. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3884. {
  3885. angled: {
  3886. height: math.unit(4, "meter"),
  3887. weight: math.unit(150, "kg"),
  3888. name: "Angled",
  3889. image: {
  3890. source: "./media/characters/talan/angled-sfw.svg",
  3891. bottom: 29 / 3734
  3892. }
  3893. },
  3894. angledNsfw: {
  3895. height: math.unit(4, "meter"),
  3896. weight: math.unit(150, "kg"),
  3897. name: "Angled (NSFW)",
  3898. image: {
  3899. source: "./media/characters/talan/angled-nsfw.svg",
  3900. bottom: 29 / 3734
  3901. }
  3902. },
  3903. frontNsfw: {
  3904. height: math.unit(4, "meter"),
  3905. weight: math.unit(150, "kg"),
  3906. name: "Front (NSFW)",
  3907. image: {
  3908. source: "./media/characters/talan/front-nsfw.svg",
  3909. bottom: 29 / 3734
  3910. }
  3911. },
  3912. sideNsfw: {
  3913. height: math.unit(4, "meter"),
  3914. weight: math.unit(150, "kg"),
  3915. name: "Side (NSFW)",
  3916. image: {
  3917. source: "./media/characters/talan/side-nsfw.svg",
  3918. bottom: 29 / 3734
  3919. }
  3920. },
  3921. back: {
  3922. height: math.unit(4, "meter"),
  3923. weight: math.unit(150, "kg"),
  3924. name: "Back",
  3925. image: {
  3926. source: "./media/characters/talan/back.svg"
  3927. }
  3928. },
  3929. dickBottom: {
  3930. height: math.unit(0.621, "meter"),
  3931. name: "Dick (Bottom)",
  3932. image: {
  3933. source: "./media/characters/talan/dick-bottom.svg"
  3934. }
  3935. },
  3936. dickTop: {
  3937. height: math.unit(0.621, "meter"),
  3938. name: "Dick (Top)",
  3939. image: {
  3940. source: "./media/characters/talan/dick-top.svg"
  3941. }
  3942. },
  3943. dickSide: {
  3944. height: math.unit(0.305, "meter"),
  3945. name: "Dick (Side)",
  3946. image: {
  3947. source: "./media/characters/talan/dick-side.svg"
  3948. }
  3949. },
  3950. dickFront: {
  3951. height: math.unit(0.305, "meter"),
  3952. name: "Dick (Front)",
  3953. image: {
  3954. source: "./media/characters/talan/dick-front.svg"
  3955. }
  3956. },
  3957. },
  3958. [
  3959. {
  3960. name: "Normal",
  3961. height: math.unit(4, "meters")
  3962. },
  3963. {
  3964. name: "Macro",
  3965. height: math.unit(100, "meters")
  3966. },
  3967. {
  3968. name: "Megamacro",
  3969. height: math.unit(2, "miles"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Gigamacro",
  3974. height: math.unit(5000, "miles")
  3975. },
  3976. {
  3977. name: "Teramacro",
  3978. height: math.unit(100, "parsecs")
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(90, "kg"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/gael'rathus/front.svg"
  3991. }
  3992. },
  3993. frontAlt: {
  3994. height: math.unit(2, "meter"),
  3995. weight: math.unit(90, "kg"),
  3996. name: "Front (alt)",
  3997. image: {
  3998. source: "./media/characters/gael'rathus/front-alt.svg"
  3999. }
  4000. },
  4001. frontAlt2: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(90, "kg"),
  4004. name: "Front (alt 2)",
  4005. image: {
  4006. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(9, "feet"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Large",
  4018. height: math.unit(25, "feet")
  4019. },
  4020. {
  4021. name: "Macro",
  4022. height: math.unit(0.25, "miles")
  4023. },
  4024. {
  4025. name: "Megamacro",
  4026. height: math.unit(10, "miles")
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4032. {
  4033. side: {
  4034. height: math.unit(2, "meter"),
  4035. weight: math.unit(140, "kg"),
  4036. name: "Side",
  4037. image: {
  4038. source: "./media/characters/sosha/side.svg",
  4039. extra: 1170/1006,
  4040. bottom: 94/1264
  4041. }
  4042. },
  4043. maw: {
  4044. height: math.unit(2.87, "feet"),
  4045. name: "Maw",
  4046. image: {
  4047. source: "./media/characters/sosha/maw.svg",
  4048. extra: 966/865,
  4049. bottom: 0/966
  4050. }
  4051. },
  4052. cooch: {
  4053. height: math.unit(5.6, "feet"),
  4054. name: "Cooch",
  4055. image: {
  4056. source: "./media/characters/sosha/cooch.svg"
  4057. }
  4058. },
  4059. },
  4060. [
  4061. {
  4062. name: "Normal",
  4063. height: math.unit(12, "feet"),
  4064. default: true
  4065. }
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4070. {
  4071. side: {
  4072. height: math.unit(5 + 5 / 12, "feet"),
  4073. weight: math.unit(170, "kg"),
  4074. name: "Side",
  4075. image: {
  4076. source: "./media/characters/runnola/side.svg",
  4077. extra: 741 / 448,
  4078. bottom: 0.05
  4079. }
  4080. },
  4081. },
  4082. [
  4083. {
  4084. name: "Small",
  4085. height: math.unit(3, "feet")
  4086. },
  4087. {
  4088. name: "Normal",
  4089. height: math.unit(5 + 5 / 12, "feet"),
  4090. default: true
  4091. },
  4092. {
  4093. name: "Big",
  4094. height: math.unit(10, "feet")
  4095. },
  4096. ]
  4097. ))
  4098. characterMakers.push(() => makeCharacter(
  4099. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4100. {
  4101. front: {
  4102. height: math.unit(2, "meter"),
  4103. weight: math.unit(50, "kg"),
  4104. name: "Front",
  4105. image: {
  4106. source: "./media/characters/kurribird/front.svg",
  4107. bottom: 0.015
  4108. }
  4109. },
  4110. frontAlt: {
  4111. height: math.unit(1.5, "meter"),
  4112. weight: math.unit(50, "kg"),
  4113. name: "Front (Alt)",
  4114. image: {
  4115. source: "./media/characters/kurribird/front-alt.svg",
  4116. extra: 1.45
  4117. }
  4118. },
  4119. },
  4120. [
  4121. {
  4122. name: "Normal",
  4123. height: math.unit(7, "feet")
  4124. },
  4125. {
  4126. name: "Big",
  4127. height: math.unit(12, "feet"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "Macro",
  4132. height: math.unit(1500, "feet")
  4133. },
  4134. {
  4135. name: "Megamacro",
  4136. height: math.unit(2, "miles")
  4137. }
  4138. ]
  4139. ))
  4140. characterMakers.push(() => makeCharacter(
  4141. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4142. {
  4143. front: {
  4144. height: math.unit(2, "meter"),
  4145. weight: math.unit(80, "kg"),
  4146. name: "Front",
  4147. image: {
  4148. source: "./media/characters/elbial/front.svg",
  4149. extra: 1643 / 1556,
  4150. bottom: 60.2 / 1696
  4151. }
  4152. },
  4153. side: {
  4154. height: math.unit(2, "meter"),
  4155. weight: math.unit(80, "kg"),
  4156. name: "Side",
  4157. image: {
  4158. source: "./media/characters/elbial/side.svg",
  4159. extra: 1601/1528,
  4160. bottom: 97/1698
  4161. }
  4162. },
  4163. back: {
  4164. height: math.unit(2, "meter"),
  4165. weight: math.unit(80, "kg"),
  4166. name: "Back",
  4167. image: {
  4168. source: "./media/characters/elbial/back.svg",
  4169. extra: 1653/1569,
  4170. bottom: 20/1673
  4171. }
  4172. },
  4173. frontDressed: {
  4174. height: math.unit(2, "meter"),
  4175. weight: math.unit(80, "kg"),
  4176. name: "Front (Dressed)",
  4177. image: {
  4178. source: "./media/characters/elbial/front-dressed.svg",
  4179. extra: 1638/1569,
  4180. bottom: 70/1708
  4181. }
  4182. },
  4183. genitals: {
  4184. height: math.unit(2 / 3.367, "meter"),
  4185. name: "Genitals",
  4186. image: {
  4187. source: "./media/characters/elbial/genitals.svg"
  4188. }
  4189. },
  4190. },
  4191. [
  4192. {
  4193. name: "Large",
  4194. height: math.unit(100, "feet")
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(500, "feet"),
  4199. default: true
  4200. },
  4201. {
  4202. name: "Megamacro",
  4203. height: math.unit(10, "miles")
  4204. },
  4205. {
  4206. name: "Gigamacro",
  4207. height: math.unit(25000, "miles")
  4208. },
  4209. {
  4210. name: "Full-Size",
  4211. height: math.unit(8000000, "gigaparsecs")
  4212. }
  4213. ]
  4214. ))
  4215. characterMakers.push(() => makeCharacter(
  4216. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4217. {
  4218. front: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(60, "kg"),
  4221. name: "Front",
  4222. image: {
  4223. source: "./media/characters/noah/front.svg"
  4224. }
  4225. },
  4226. talons: {
  4227. height: math.unit(0.315, "meter"),
  4228. name: "Talons",
  4229. image: {
  4230. source: "./media/characters/noah/talons.svg"
  4231. }
  4232. }
  4233. },
  4234. [
  4235. {
  4236. name: "Large",
  4237. height: math.unit(50, "feet")
  4238. },
  4239. {
  4240. name: "Macro",
  4241. height: math.unit(750, "feet"),
  4242. default: true
  4243. },
  4244. {
  4245. name: "Megamacro",
  4246. height: math.unit(50, "miles")
  4247. },
  4248. {
  4249. name: "Gigamacro",
  4250. height: math.unit(100000, "miles")
  4251. },
  4252. {
  4253. name: "Full-Size",
  4254. height: math.unit(3000000000, "miles")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4260. {
  4261. front: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(80, "kg"),
  4264. name: "Front",
  4265. image: {
  4266. source: "./media/characters/natalya/front.svg"
  4267. }
  4268. },
  4269. back: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(80, "kg"),
  4272. name: "Back",
  4273. image: {
  4274. source: "./media/characters/natalya/back.svg"
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(150, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(5, "miles")
  4287. },
  4288. {
  4289. name: "Full-Size",
  4290. height: math.unit(600, "kiloparsecs")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(2, "meter"),
  4299. weight: math.unit(50, "kg"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/erestrebah/front.svg",
  4303. extra: 1262/1162,
  4304. bottom: 96/1358
  4305. }
  4306. },
  4307. back: {
  4308. height: math.unit(2, "meter"),
  4309. weight: math.unit(50, "kg"),
  4310. name: "Back",
  4311. image: {
  4312. source: "./media/characters/erestrebah/back.svg",
  4313. extra: 1257/1139,
  4314. bottom: 13/1270
  4315. }
  4316. },
  4317. wing: {
  4318. height: math.unit(2, "meter"),
  4319. weight: math.unit(50, "kg"),
  4320. name: "Wing",
  4321. image: {
  4322. source: "./media/characters/erestrebah/wing.svg",
  4323. extra: 1262/1162,
  4324. bottom: 96/1358
  4325. }
  4326. },
  4327. mouth: {
  4328. height: math.unit(0.39, "feet"),
  4329. name: "Mouth",
  4330. image: {
  4331. source: "./media/characters/erestrebah/mouth.svg"
  4332. }
  4333. }
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(10, "feet")
  4339. },
  4340. {
  4341. name: "Large",
  4342. height: math.unit(50, "feet"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Macro",
  4347. height: math.unit(300, "feet")
  4348. },
  4349. {
  4350. name: "Macro+",
  4351. height: math.unit(750, "feet")
  4352. },
  4353. {
  4354. name: "Megamacro",
  4355. height: math.unit(3, "miles")
  4356. }
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(2, "meter"),
  4364. weight: math.unit(80, "kg"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/jennifer/front.svg",
  4368. bottom: 0.11,
  4369. extra: 1.16
  4370. }
  4371. },
  4372. frontAlt: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(80, "kg"),
  4375. name: "Front (Alt)",
  4376. image: {
  4377. source: "./media/characters/jennifer/front-alt.svg"
  4378. }
  4379. }
  4380. },
  4381. [
  4382. {
  4383. name: "Canon Height",
  4384. height: math.unit(120, "feet"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Macro+",
  4389. height: math.unit(300, "feet")
  4390. },
  4391. {
  4392. name: "Megamacro",
  4393. height: math.unit(20000, "feet")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(2, "meter"),
  4402. weight: math.unit(50, "kg"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/kalista/front.svg",
  4406. extra: 1314/1145,
  4407. bottom: 101/1415
  4408. }
  4409. },
  4410. back: {
  4411. height: math.unit(2, "meter"),
  4412. weight: math.unit(50, "kg"),
  4413. name: "Back",
  4414. image: {
  4415. source: "./media/characters/kalista/back.svg",
  4416. extra: 1366 / 1156,
  4417. bottom: 33.9 / 1362.78
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Uncomfortably Small",
  4424. height: math.unit(10, "feet")
  4425. },
  4426. {
  4427. name: "Small",
  4428. height: math.unit(30, "feet")
  4429. },
  4430. {
  4431. name: "Macro",
  4432. height: math.unit(100, "feet"),
  4433. default: true
  4434. },
  4435. {
  4436. name: "Macro+",
  4437. height: math.unit(2000, "feet")
  4438. },
  4439. {
  4440. name: "True Form",
  4441. height: math.unit(8924, "miles")
  4442. }
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4447. {
  4448. front: {
  4449. height: math.unit(2, "meter"),
  4450. weight: math.unit(120, "kg"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/ggv/front.svg"
  4454. }
  4455. },
  4456. side: {
  4457. height: math.unit(2, "meter"),
  4458. weight: math.unit(120, "kg"),
  4459. name: "Side",
  4460. image: {
  4461. source: "./media/characters/ggv/side.svg"
  4462. }
  4463. }
  4464. },
  4465. [
  4466. {
  4467. name: "Extremely Puny",
  4468. height: math.unit(9 + 5 / 12, "feet")
  4469. },
  4470. {
  4471. name: "Horribly Small",
  4472. height: math.unit(47.7, "miles"),
  4473. default: true
  4474. },
  4475. {
  4476. name: "Reasonably Sized",
  4477. height: math.unit(25000, "parsecs")
  4478. },
  4479. {
  4480. name: "Slightly Uncompressed",
  4481. height: math.unit(7.77e31, "parsecs")
  4482. },
  4483. {
  4484. name: "Omniversal",
  4485. height: math.unit(1e300, "meters")
  4486. },
  4487. ]
  4488. ))
  4489. characterMakers.push(() => makeCharacter(
  4490. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4491. {
  4492. front: {
  4493. height: math.unit(2, "meter"),
  4494. weight: math.unit(75, "lb"),
  4495. name: "Front",
  4496. image: {
  4497. source: "./media/characters/napalm/front.svg"
  4498. }
  4499. },
  4500. back: {
  4501. height: math.unit(2, "meter"),
  4502. weight: math.unit(75, "lb"),
  4503. name: "Back",
  4504. image: {
  4505. source: "./media/characters/napalm/back.svg"
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Standard",
  4512. height: math.unit(55, "feet"),
  4513. default: true
  4514. }
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4519. {
  4520. front: {
  4521. height: math.unit(7 + 5 / 6, "feet"),
  4522. weight: math.unit(325, "lb"),
  4523. name: "Front",
  4524. image: {
  4525. source: "./media/characters/asana/front.svg",
  4526. extra: 1133 / 1060,
  4527. bottom: 15.2 / 1148.6
  4528. }
  4529. },
  4530. back: {
  4531. height: math.unit(7 + 5 / 6, "feet"),
  4532. weight: math.unit(325, "lb"),
  4533. name: "Back",
  4534. image: {
  4535. source: "./media/characters/asana/back.svg",
  4536. extra: 1114 / 1043,
  4537. bottom: 5 / 1120
  4538. }
  4539. },
  4540. dressedDark: {
  4541. height: math.unit(7 + 5 / 6, "feet"),
  4542. weight: math.unit(325, "lb"),
  4543. name: "Dressed (Dark)",
  4544. image: {
  4545. source: "./media/characters/asana/dressed-dark.svg",
  4546. extra: 1133 / 1060,
  4547. bottom: 15.2 / 1148.6
  4548. }
  4549. },
  4550. dressedLight: {
  4551. height: math.unit(7 + 5 / 6, "feet"),
  4552. weight: math.unit(325, "lb"),
  4553. name: "Dressed (Light)",
  4554. image: {
  4555. source: "./media/characters/asana/dressed-light.svg",
  4556. extra: 1133 / 1060,
  4557. bottom: 15.2 / 1148.6
  4558. }
  4559. },
  4560. },
  4561. [
  4562. {
  4563. name: "Standard",
  4564. height: math.unit(7 + 5 / 6, "feet"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Large",
  4569. height: math.unit(10, "meters")
  4570. },
  4571. {
  4572. name: "Macro",
  4573. height: math.unit(2500, "meters")
  4574. },
  4575. {
  4576. name: "Megamacro",
  4577. height: math.unit(5e6, "meters")
  4578. },
  4579. {
  4580. name: "Examacro",
  4581. height: math.unit(5e12, "lightyears")
  4582. },
  4583. {
  4584. name: "Max Size",
  4585. height: math.unit(1e31, "lightyears")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(60, "kg"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/ebony/front.svg",
  4598. bottom: 0.03,
  4599. extra: 1045 / 810 + 0.03
  4600. }
  4601. },
  4602. side: {
  4603. height: math.unit(2, "meter"),
  4604. weight: math.unit(60, "kg"),
  4605. name: "Side",
  4606. image: {
  4607. source: "./media/characters/ebony/side.svg",
  4608. bottom: 0.03,
  4609. extra: 1045 / 810 + 0.03
  4610. }
  4611. },
  4612. back: {
  4613. height: math.unit(2, "meter"),
  4614. weight: math.unit(60, "kg"),
  4615. name: "Back",
  4616. image: {
  4617. source: "./media/characters/ebony/back.svg",
  4618. bottom: 0.01,
  4619. extra: 1045 / 810 + 0.01
  4620. }
  4621. },
  4622. },
  4623. [
  4624. // TODO check why I did this lol
  4625. {
  4626. name: "Standard",
  4627. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4628. default: true
  4629. },
  4630. {
  4631. name: "Macro",
  4632. height: math.unit(200, "feet")
  4633. },
  4634. {
  4635. name: "Gigamacro",
  4636. height: math.unit(13000, "km")
  4637. }
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4642. {
  4643. front: {
  4644. height: math.unit(6, "feet"),
  4645. weight: math.unit(175, "lb"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/mountain/front.svg",
  4649. extra: 972 / 955,
  4650. bottom: 64 / 1036.6
  4651. }
  4652. },
  4653. back: {
  4654. height: math.unit(6, "feet"),
  4655. weight: math.unit(175, "lb"),
  4656. name: "Back",
  4657. image: {
  4658. source: "./media/characters/mountain/back.svg",
  4659. extra: 970 / 950,
  4660. bottom: 28.25 / 999
  4661. }
  4662. },
  4663. },
  4664. [
  4665. {
  4666. name: "Large",
  4667. height: math.unit(20, "meters")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(300, "meters")
  4672. },
  4673. {
  4674. name: "Gigamacro",
  4675. height: math.unit(10000, "km"),
  4676. default: true
  4677. },
  4678. {
  4679. name: "Examacro",
  4680. height: math.unit(10e9, "lightyears")
  4681. }
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4686. {
  4687. front: {
  4688. height: math.unit(8, "feet"),
  4689. weight: math.unit(500, "lb"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/rick/front.svg"
  4693. }
  4694. }
  4695. },
  4696. [
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(8, "feet"),
  4700. default: true
  4701. },
  4702. {
  4703. name: "Macro",
  4704. height: math.unit(5, "km")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(8, "feet"),
  4713. weight: math.unit(120, "lb"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/ona/front.svg"
  4717. }
  4718. },
  4719. frontAlt: {
  4720. height: math.unit(8, "feet"),
  4721. weight: math.unit(120, "lb"),
  4722. name: "Front (Alt)",
  4723. image: {
  4724. source: "./media/characters/ona/front-alt.svg"
  4725. }
  4726. },
  4727. back: {
  4728. height: math.unit(8, "feet"),
  4729. weight: math.unit(120, "lb"),
  4730. name: "Back",
  4731. image: {
  4732. source: "./media/characters/ona/back.svg"
  4733. }
  4734. },
  4735. foot: {
  4736. height: math.unit(1.1, "feet"),
  4737. name: "Foot",
  4738. image: {
  4739. source: "./media/characters/ona/foot.svg"
  4740. }
  4741. }
  4742. },
  4743. [
  4744. {
  4745. name: "Megamacro",
  4746. height: math.unit(70, "km"),
  4747. default: true
  4748. },
  4749. {
  4750. name: "Gigamacro",
  4751. height: math.unit(681818, "miles")
  4752. },
  4753. {
  4754. name: "Examacro",
  4755. height: math.unit(3800000, "lightyears")
  4756. },
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4761. {
  4762. front: {
  4763. height: math.unit(12, "feet"),
  4764. weight: math.unit(3000, "lb"),
  4765. name: "Front",
  4766. image: {
  4767. source: "./media/characters/mech/front.svg",
  4768. extra: 2900 / 2770,
  4769. bottom: 110 / 3010
  4770. }
  4771. },
  4772. back: {
  4773. height: math.unit(12, "feet"),
  4774. weight: math.unit(3000, "lb"),
  4775. name: "Back",
  4776. image: {
  4777. source: "./media/characters/mech/back.svg",
  4778. extra: 3011 / 2890,
  4779. bottom: 94 / 3105
  4780. }
  4781. },
  4782. maw: {
  4783. height: math.unit(3.07, "feet"),
  4784. name: "Maw",
  4785. image: {
  4786. source: "./media/characters/mech/maw.svg"
  4787. }
  4788. },
  4789. head: {
  4790. height: math.unit(3.07, "feet"),
  4791. name: "Head",
  4792. image: {
  4793. source: "./media/characters/mech/head.svg"
  4794. }
  4795. },
  4796. dick: {
  4797. height: math.unit(1.43, "feet"),
  4798. name: "Dick",
  4799. image: {
  4800. source: "./media/characters/mech/dick.svg"
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(12, "feet")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(300, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Macro+",
  4816. height: math.unit(1500, "feet")
  4817. },
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(1.3, "meter"),
  4825. weight: math.unit(30, "kg"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/gregory/front.svg",
  4829. }
  4830. }
  4831. },
  4832. [
  4833. {
  4834. name: "Normal",
  4835. height: math.unit(1.3, "meter"),
  4836. default: true
  4837. },
  4838. {
  4839. name: "Macro",
  4840. height: math.unit(20, "meter")
  4841. }
  4842. ]
  4843. ))
  4844. characterMakers.push(() => makeCharacter(
  4845. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4846. {
  4847. front: {
  4848. height: math.unit(2.8, "meter"),
  4849. weight: math.unit(200, "kg"),
  4850. name: "Front",
  4851. image: {
  4852. source: "./media/characters/elory/front.svg",
  4853. }
  4854. }
  4855. },
  4856. [
  4857. {
  4858. name: "Normal",
  4859. height: math.unit(2.8, "meter"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Macro",
  4864. height: math.unit(38, "meter")
  4865. }
  4866. ]
  4867. ))
  4868. characterMakers.push(() => makeCharacter(
  4869. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4870. {
  4871. front: {
  4872. height: math.unit(470, "feet"),
  4873. weight: math.unit(924, "tons"),
  4874. name: "Front",
  4875. image: {
  4876. source: "./media/characters/angelpatamon/front.svg",
  4877. }
  4878. }
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(470, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Deity Size I",
  4888. height: math.unit(28651.2, "km")
  4889. },
  4890. {
  4891. name: "Deity Size II",
  4892. height: math.unit(171907.2, "km")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4898. {
  4899. side: {
  4900. height: math.unit(7.2, "meter"),
  4901. weight: math.unit(8.2, "tons"),
  4902. name: "Side",
  4903. image: {
  4904. source: "./media/characters/cryae/side.svg",
  4905. extra: 3500 / 1500
  4906. }
  4907. }
  4908. },
  4909. [
  4910. {
  4911. name: "Normal",
  4912. height: math.unit(7.2, "meter"),
  4913. default: true
  4914. }
  4915. ]
  4916. ))
  4917. characterMakers.push(() => makeCharacter(
  4918. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4919. {
  4920. front: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(175, "lb"),
  4923. name: "Front",
  4924. image: {
  4925. source: "./media/characters/xera/front.svg",
  4926. extra: 2377 / 1972,
  4927. bottom: 75.5 / 2452
  4928. }
  4929. },
  4930. side: {
  4931. height: math.unit(6, "feet"),
  4932. weight: math.unit(175, "lb"),
  4933. name: "Side",
  4934. image: {
  4935. source: "./media/characters/xera/side.svg",
  4936. extra: 2345 / 2019,
  4937. bottom: 39.7 / 2384
  4938. }
  4939. },
  4940. back: {
  4941. height: math.unit(6, "feet"),
  4942. weight: math.unit(175, "lb"),
  4943. name: "Back",
  4944. image: {
  4945. source: "./media/characters/xera/back.svg",
  4946. extra: 2095 / 1984,
  4947. bottom: 67 / 2166
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "Small",
  4954. height: math.unit(10, "feet")
  4955. },
  4956. {
  4957. name: "Macro",
  4958. height: math.unit(500, "meters"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Macro+",
  4963. height: math.unit(10, "km")
  4964. },
  4965. {
  4966. name: "Gigamacro",
  4967. height: math.unit(25000, "km")
  4968. },
  4969. {
  4970. name: "Teramacro",
  4971. height: math.unit(3e6, "km")
  4972. }
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4977. {
  4978. front: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(175, "lb"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/nebula/front.svg",
  4984. extra: 2566 / 2362,
  4985. bottom: 81 / 2644
  4986. }
  4987. }
  4988. },
  4989. [
  4990. {
  4991. name: "Small",
  4992. height: math.unit(4.5, "meters")
  4993. },
  4994. {
  4995. name: "Macro",
  4996. height: math.unit(1500, "meters"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Megamacro",
  5001. height: math.unit(150, "km")
  5002. },
  5003. {
  5004. name: "Gigamacro",
  5005. height: math.unit(27000, "km")
  5006. }
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5011. {
  5012. front: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(225, "lb"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/abysgar/front.svg",
  5018. extra: 1739/1614,
  5019. bottom: 71/1810
  5020. }
  5021. },
  5022. frontNsfw: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(225, "lb"),
  5025. name: "Front (NSFW)",
  5026. image: {
  5027. source: "./media/characters/abysgar/front-nsfw.svg",
  5028. extra: 1739/1614,
  5029. bottom: 71/1810
  5030. }
  5031. },
  5032. back: {
  5033. height: math.unit(4.6, "feet"),
  5034. weight: math.unit(225, "lb"),
  5035. name: "Back",
  5036. image: {
  5037. source: "./media/characters/abysgar/back.svg",
  5038. extra: 1384/1327,
  5039. bottom: 0/1384
  5040. }
  5041. },
  5042. head: {
  5043. height: math.unit(1.25, "feet"),
  5044. name: "Head",
  5045. image: {
  5046. source: "./media/characters/abysgar/head.svg",
  5047. extra: 669/569,
  5048. bottom: 0/669
  5049. }
  5050. },
  5051. },
  5052. [
  5053. {
  5054. name: "Small",
  5055. height: math.unit(4.5, "meters")
  5056. },
  5057. {
  5058. name: "Macro",
  5059. height: math.unit(1250, "meters"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Megamacro",
  5064. height: math.unit(125, "km")
  5065. },
  5066. {
  5067. name: "Gigamacro",
  5068. height: math.unit(26000, "km")
  5069. }
  5070. ]
  5071. ))
  5072. characterMakers.push(() => makeCharacter(
  5073. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5074. {
  5075. front: {
  5076. height: math.unit(6, "feet"),
  5077. weight: math.unit(180, "lb"),
  5078. name: "Front",
  5079. image: {
  5080. source: "./media/characters/yakuz/front.svg"
  5081. }
  5082. }
  5083. },
  5084. [
  5085. {
  5086. name: "Small",
  5087. height: math.unit(5, "meters")
  5088. },
  5089. {
  5090. name: "Macro",
  5091. height: math.unit(1500, "meters"),
  5092. default: true
  5093. },
  5094. {
  5095. name: "Megamacro",
  5096. height: math.unit(200, "km")
  5097. },
  5098. {
  5099. name: "Gigamacro",
  5100. height: math.unit(100000, "km")
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5106. {
  5107. front: {
  5108. height: math.unit(6, "feet"),
  5109. weight: math.unit(175, "lb"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/mirova/front.svg",
  5113. extra: 3334 / 3071,
  5114. bottom: 42 / 3375.6
  5115. }
  5116. }
  5117. },
  5118. [
  5119. {
  5120. name: "Small",
  5121. height: math.unit(5, "meters")
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(900, "meters"),
  5126. default: true
  5127. },
  5128. {
  5129. name: "Megamacro",
  5130. height: math.unit(135, "km")
  5131. },
  5132. {
  5133. name: "Gigamacro",
  5134. height: math.unit(20000, "km")
  5135. }
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5140. {
  5141. side: {
  5142. height: math.unit(28.35, "feet"),
  5143. weight: math.unit(99.75, "tons"),
  5144. name: "Side",
  5145. image: {
  5146. source: "./media/characters/asana-mech/side.svg",
  5147. extra: 923 / 699,
  5148. bottom: 50 / 975
  5149. }
  5150. },
  5151. chaingun: {
  5152. height: math.unit(7, "feet"),
  5153. weight: math.unit(2400, "lb"),
  5154. name: "Chaingun",
  5155. image: {
  5156. source: "./media/characters/asana-mech/chaingun.svg"
  5157. }
  5158. },
  5159. laser: {
  5160. height: math.unit(7.12, "feet"),
  5161. weight: math.unit(2000, "lb"),
  5162. name: "Laser",
  5163. image: {
  5164. source: "./media/characters/asana-mech/laser.svg"
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(28.35, "feet"),
  5172. default: true
  5173. },
  5174. {
  5175. name: "Macro",
  5176. height: math.unit(2500, "feet")
  5177. },
  5178. {
  5179. name: "Megamacro",
  5180. height: math.unit(25, "miles")
  5181. },
  5182. {
  5183. name: "Examacro",
  5184. height: math.unit(6e8, "lightyears")
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5190. {
  5191. front: {
  5192. height: math.unit(5, "meters"),
  5193. weight: math.unit(1000, "kg"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/asche/front.svg",
  5197. extra: 1258 / 1190,
  5198. bottom: 47 / 1305
  5199. }
  5200. },
  5201. frontUnderwear: {
  5202. height: math.unit(5, "meters"),
  5203. weight: math.unit(1000, "kg"),
  5204. name: "Front (Underwear)",
  5205. image: {
  5206. source: "./media/characters/asche/front-underwear.svg",
  5207. extra: 1258 / 1190,
  5208. bottom: 47 / 1305
  5209. }
  5210. },
  5211. frontDressed: {
  5212. height: math.unit(5, "meters"),
  5213. weight: math.unit(1000, "kg"),
  5214. name: "Front (Dressed)",
  5215. image: {
  5216. source: "./media/characters/asche/front-dressed.svg",
  5217. extra: 1258 / 1190,
  5218. bottom: 47 / 1305
  5219. }
  5220. },
  5221. frontArmor: {
  5222. height: math.unit(5, "meters"),
  5223. weight: math.unit(1000, "kg"),
  5224. name: "Front (Armored)",
  5225. image: {
  5226. source: "./media/characters/asche/front-armored.svg",
  5227. extra: 1374 / 1308,
  5228. bottom: 23 / 1397
  5229. }
  5230. },
  5231. mp724: {
  5232. height: math.unit(0.96, "meters"),
  5233. weight: math.unit(38, "kg"),
  5234. name: "H&K MP724",
  5235. image: {
  5236. source: "./media/characters/asche/h&k-mp724.svg"
  5237. }
  5238. },
  5239. side: {
  5240. height: math.unit(5, "meters"),
  5241. weight: math.unit(1000, "kg"),
  5242. name: "Side",
  5243. image: {
  5244. source: "./media/characters/asche/side.svg",
  5245. extra: 1717 / 1609,
  5246. bottom: 0.005
  5247. }
  5248. },
  5249. back: {
  5250. height: math.unit(5, "meters"),
  5251. weight: math.unit(1000, "kg"),
  5252. name: "Back",
  5253. image: {
  5254. source: "./media/characters/asche/back.svg",
  5255. extra: 1570 / 1501
  5256. }
  5257. },
  5258. },
  5259. [
  5260. {
  5261. name: "DEFCON 5",
  5262. height: math.unit(5, "meters")
  5263. },
  5264. {
  5265. name: "DEFCON 4",
  5266. height: math.unit(500, "meters"),
  5267. default: true
  5268. },
  5269. {
  5270. name: "DEFCON 3",
  5271. height: math.unit(5, "km")
  5272. },
  5273. {
  5274. name: "DEFCON 2",
  5275. height: math.unit(500, "km")
  5276. },
  5277. {
  5278. name: "DEFCON 1",
  5279. height: math.unit(500000, "km")
  5280. },
  5281. {
  5282. name: "DEFCON 0",
  5283. height: math.unit(3, "gigaparsecs")
  5284. },
  5285. ]
  5286. ))
  5287. characterMakers.push(() => makeCharacter(
  5288. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5289. {
  5290. front: {
  5291. height: math.unit(2, "meters"),
  5292. weight: math.unit(76, "kg"),
  5293. name: "Front",
  5294. image: {
  5295. source: "./media/characters/gale/front.svg"
  5296. }
  5297. },
  5298. frontAlt1: {
  5299. height: math.unit(2, "meters"),
  5300. weight: math.unit(76, "kg"),
  5301. name: "Front (Alt 1)",
  5302. image: {
  5303. source: "./media/characters/gale/front-alt-1.svg"
  5304. }
  5305. },
  5306. frontAlt2: {
  5307. height: math.unit(2, "meters"),
  5308. weight: math.unit(76, "kg"),
  5309. name: "Front (Alt 2)",
  5310. image: {
  5311. source: "./media/characters/gale/front-alt-2.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(7, "feet")
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(150, "feet"),
  5323. default: true
  5324. },
  5325. {
  5326. name: "Macro+",
  5327. height: math.unit(300, "feet")
  5328. },
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5333. {
  5334. front: {
  5335. height: math.unit(5 + 10/12, "feet"),
  5336. weight: math.unit(67, "kg"),
  5337. name: "Front",
  5338. image: {
  5339. source: "./media/characters/draylen/front.svg",
  5340. extra: 832/777,
  5341. bottom: 85/917
  5342. }
  5343. }
  5344. },
  5345. [
  5346. {
  5347. name: "Normal",
  5348. height: math.unit(5 + 10/12, "feet")
  5349. },
  5350. {
  5351. name: "Macro",
  5352. height: math.unit(150, "feet"),
  5353. default: true
  5354. }
  5355. ]
  5356. ))
  5357. characterMakers.push(() => makeCharacter(
  5358. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5359. {
  5360. front: {
  5361. height: math.unit(7 + 9 / 12, "feet"),
  5362. weight: math.unit(379, "lbs"),
  5363. name: "Front",
  5364. image: {
  5365. source: "./media/characters/chez/front.svg"
  5366. }
  5367. },
  5368. side: {
  5369. height: math.unit(7 + 9 / 12, "feet"),
  5370. weight: math.unit(379, "lbs"),
  5371. name: "Side",
  5372. image: {
  5373. source: "./media/characters/chez/side.svg"
  5374. }
  5375. }
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(7 + 9 / 12, "feet"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "God King",
  5385. height: math.unit(9750000, "meters")
  5386. }
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5391. {
  5392. front: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(275, "lbs"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/kaylum/front.svg",
  5398. bottom: 0.01,
  5399. extra: 1166 / 1031
  5400. }
  5401. },
  5402. frontWingless: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(275, "lbs"),
  5405. name: "Front (Wingless)",
  5406. image: {
  5407. source: "./media/characters/kaylum/front-wingless.svg",
  5408. bottom: 0.01,
  5409. extra: 1117 / 1031
  5410. }
  5411. }
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(3.05, "meters")
  5417. },
  5418. {
  5419. name: "Master",
  5420. height: math.unit(5.5, "meters")
  5421. },
  5422. {
  5423. name: "Rampage",
  5424. height: math.unit(19, "meters")
  5425. },
  5426. {
  5427. name: "Macro Lite",
  5428. height: math.unit(37, "meters")
  5429. },
  5430. {
  5431. name: "Hyper Predator",
  5432. height: math.unit(61, "meters")
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(138, "meters"),
  5437. default: true
  5438. }
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5443. {
  5444. front: {
  5445. height: math.unit(5 + 5 / 12, "feet"),
  5446. weight: math.unit(120, "lbs"),
  5447. name: "Front",
  5448. image: {
  5449. source: "./media/characters/geta/front.svg",
  5450. extra: 1003/933,
  5451. bottom: 21/1024
  5452. }
  5453. },
  5454. paw: {
  5455. height: math.unit(0.35, "feet"),
  5456. name: "Paw",
  5457. image: {
  5458. source: "./media/characters/geta/paw.svg"
  5459. }
  5460. },
  5461. },
  5462. [
  5463. {
  5464. name: "Micro",
  5465. height: math.unit(3, "inches"),
  5466. default: true
  5467. },
  5468. {
  5469. name: "Normal",
  5470. height: math.unit(5 + 5 / 12, "feet")
  5471. }
  5472. ]
  5473. ))
  5474. characterMakers.push(() => makeCharacter(
  5475. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5476. {
  5477. front: {
  5478. height: math.unit(6, "feet"),
  5479. weight: math.unit(300, "lbs"),
  5480. name: "Front",
  5481. image: {
  5482. source: "./media/characters/tyrnn/front.svg"
  5483. }
  5484. }
  5485. },
  5486. [
  5487. {
  5488. name: "Main Height",
  5489. height: math.unit(355, "feet"),
  5490. default: true
  5491. },
  5492. {
  5493. name: "Fave. Height",
  5494. height: math.unit(2400, "feet")
  5495. }
  5496. ]
  5497. ))
  5498. characterMakers.push(() => makeCharacter(
  5499. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5500. {
  5501. front: {
  5502. height: math.unit(6, "feet"),
  5503. weight: math.unit(300, "lbs"),
  5504. name: "Front",
  5505. image: {
  5506. source: "./media/characters/appledectomy/front.svg"
  5507. }
  5508. }
  5509. },
  5510. [
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(2500, "feet")
  5514. },
  5515. {
  5516. name: "Megamacro",
  5517. height: math.unit(50, "miles"),
  5518. default: true
  5519. },
  5520. {
  5521. name: "Gigamacro",
  5522. height: math.unit(5000, "miles")
  5523. },
  5524. {
  5525. name: "Teramacro",
  5526. height: math.unit(250000, "miles")
  5527. },
  5528. ]
  5529. ))
  5530. characterMakers.push(() => makeCharacter(
  5531. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5532. {
  5533. front: {
  5534. height: math.unit(6, "feet"),
  5535. weight: math.unit(200, "lbs"),
  5536. name: "Front",
  5537. image: {
  5538. source: "./media/characters/vulpes/front.svg",
  5539. extra: 573 / 543,
  5540. bottom: 0.033
  5541. }
  5542. },
  5543. side: {
  5544. height: math.unit(6, "feet"),
  5545. weight: math.unit(200, "lbs"),
  5546. name: "Side",
  5547. image: {
  5548. source: "./media/characters/vulpes/side.svg",
  5549. extra: 577 / 549,
  5550. bottom: 11 / 588
  5551. }
  5552. },
  5553. back: {
  5554. height: math.unit(6, "feet"),
  5555. weight: math.unit(200, "lbs"),
  5556. name: "Back",
  5557. image: {
  5558. source: "./media/characters/vulpes/back.svg",
  5559. extra: 573 / 549,
  5560. bottom: 20 / 593
  5561. }
  5562. },
  5563. feet: {
  5564. height: math.unit(1.276, "feet"),
  5565. name: "Feet",
  5566. image: {
  5567. source: "./media/characters/vulpes/feet.svg"
  5568. }
  5569. },
  5570. maw: {
  5571. height: math.unit(1.18, "feet"),
  5572. name: "Maw",
  5573. image: {
  5574. source: "./media/characters/vulpes/maw.svg"
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "Micro",
  5581. height: math.unit(2, "inches")
  5582. },
  5583. {
  5584. name: "Normal",
  5585. height: math.unit(6.3, "feet")
  5586. },
  5587. {
  5588. name: "Macro",
  5589. height: math.unit(850, "feet")
  5590. },
  5591. {
  5592. name: "Megamacro",
  5593. height: math.unit(7500, "feet"),
  5594. default: true
  5595. },
  5596. {
  5597. name: "Gigamacro",
  5598. height: math.unit(570000, "miles")
  5599. }
  5600. ]
  5601. ))
  5602. characterMakers.push(() => makeCharacter(
  5603. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5604. {
  5605. front: {
  5606. height: math.unit(6, "feet"),
  5607. weight: math.unit(210, "lbs"),
  5608. name: "Front",
  5609. image: {
  5610. source: "./media/characters/rain-fallen/front.svg"
  5611. }
  5612. },
  5613. side: {
  5614. height: math.unit(6, "feet"),
  5615. weight: math.unit(210, "lbs"),
  5616. name: "Side",
  5617. image: {
  5618. source: "./media/characters/rain-fallen/side.svg"
  5619. }
  5620. },
  5621. back: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(210, "lbs"),
  5624. name: "Back",
  5625. image: {
  5626. source: "./media/characters/rain-fallen/back.svg"
  5627. }
  5628. },
  5629. feral: {
  5630. height: math.unit(9, "feet"),
  5631. weight: math.unit(700, "lbs"),
  5632. name: "Feral",
  5633. image: {
  5634. source: "./media/characters/rain-fallen/feral.svg"
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Meddling with Mortals",
  5641. height: math.unit(8 + 8/12, "feet")
  5642. },
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(5, "meter")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(150, "meter"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Megamacro",
  5654. height: math.unit(278e6, "meter")
  5655. },
  5656. {
  5657. name: "Gigamacro",
  5658. height: math.unit(2e9, "meter")
  5659. },
  5660. {
  5661. name: "Teramacro",
  5662. height: math.unit(8e12, "meter")
  5663. },
  5664. {
  5665. name: "Devourer",
  5666. height: math.unit(14, "zettameters")
  5667. },
  5668. {
  5669. name: "Scarlet King",
  5670. height: math.unit(18, "yottameters")
  5671. },
  5672. {
  5673. name: "Void",
  5674. height: math.unit(1e88, "yottameters")
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5680. {
  5681. standing: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(180, "lbs"),
  5684. name: "Standing",
  5685. image: {
  5686. source: "./media/characters/zaakira/standing.svg",
  5687. extra: 1599/1504,
  5688. bottom: 39/1638
  5689. }
  5690. },
  5691. laying: {
  5692. height: math.unit(3.3, "feet"),
  5693. weight: math.unit(180, "lbs"),
  5694. name: "Laying",
  5695. image: {
  5696. source: "./media/characters/zaakira/laying.svg"
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(12, "feet")
  5704. },
  5705. {
  5706. name: "Macro",
  5707. height: math.unit(279, "feet"),
  5708. default: true
  5709. }
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5714. {
  5715. femSfw: {
  5716. height: math.unit(8, "feet"),
  5717. weight: math.unit(350, "lb"),
  5718. name: "Fem",
  5719. image: {
  5720. source: "./media/characters/sigvald/fem-sfw.svg",
  5721. extra: 182 / 164,
  5722. bottom: 8.7 / 190.5
  5723. }
  5724. },
  5725. femNsfw: {
  5726. height: math.unit(8, "feet"),
  5727. weight: math.unit(350, "lb"),
  5728. name: "Fem (NSFW)",
  5729. image: {
  5730. source: "./media/characters/sigvald/fem-nsfw.svg",
  5731. extra: 182 / 164,
  5732. bottom: 8.7 / 190.5
  5733. }
  5734. },
  5735. maleNsfw: {
  5736. height: math.unit(8, "feet"),
  5737. weight: math.unit(350, "lb"),
  5738. name: "Male (NSFW)",
  5739. image: {
  5740. source: "./media/characters/sigvald/male-nsfw.svg",
  5741. extra: 182 / 164,
  5742. bottom: 8.7 / 190.5
  5743. }
  5744. },
  5745. hermNsfw: {
  5746. height: math.unit(8, "feet"),
  5747. weight: math.unit(350, "lb"),
  5748. name: "Herm (NSFW)",
  5749. image: {
  5750. source: "./media/characters/sigvald/herm-nsfw.svg",
  5751. extra: 182 / 164,
  5752. bottom: 8.7 / 190.5
  5753. }
  5754. },
  5755. dick: {
  5756. height: math.unit(2.36, "feet"),
  5757. name: "Dick",
  5758. image: {
  5759. source: "./media/characters/sigvald/dick.svg"
  5760. }
  5761. },
  5762. eye: {
  5763. height: math.unit(0.31, "feet"),
  5764. name: "Eye",
  5765. image: {
  5766. source: "./media/characters/sigvald/eye.svg"
  5767. }
  5768. },
  5769. mouth: {
  5770. height: math.unit(0.92, "feet"),
  5771. name: "Mouth",
  5772. image: {
  5773. source: "./media/characters/sigvald/mouth.svg"
  5774. }
  5775. },
  5776. paws: {
  5777. height: math.unit(2.2, "feet"),
  5778. name: "Paws",
  5779. image: {
  5780. source: "./media/characters/sigvald/paws.svg"
  5781. }
  5782. }
  5783. },
  5784. [
  5785. {
  5786. name: "Normal",
  5787. height: math.unit(8, "feet")
  5788. },
  5789. {
  5790. name: "Large",
  5791. height: math.unit(12, "feet")
  5792. },
  5793. {
  5794. name: "Larger",
  5795. height: math.unit(20, "feet")
  5796. },
  5797. {
  5798. name: "Macro",
  5799. height: math.unit(150, "feet")
  5800. },
  5801. {
  5802. name: "Macro+",
  5803. height: math.unit(200, "feet"),
  5804. default: true
  5805. },
  5806. ]
  5807. ))
  5808. characterMakers.push(() => makeCharacter(
  5809. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5810. {
  5811. side: {
  5812. height: math.unit(12, "feet"),
  5813. weight: math.unit(2000, "kg"),
  5814. name: "Side",
  5815. image: {
  5816. source: "./media/characters/scott/side.svg",
  5817. extra: 754 / 724,
  5818. bottom: 0.069
  5819. }
  5820. },
  5821. upright: {
  5822. height: math.unit(12, "feet"),
  5823. weight: math.unit(2000, "kg"),
  5824. name: "Upright",
  5825. image: {
  5826. source: "./media/characters/scott/upright.svg",
  5827. extra: 3881 / 3722,
  5828. bottom: 0.05
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(12, "feet"),
  5836. default: true
  5837. },
  5838. ]
  5839. ))
  5840. characterMakers.push(() => makeCharacter(
  5841. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5842. {
  5843. side: {
  5844. height: math.unit(8, "meters"),
  5845. weight: math.unit(84755, "lbs"),
  5846. name: "Side",
  5847. image: {
  5848. source: "./media/characters/tobias/side.svg",
  5849. extra: 1474 / 1096,
  5850. bottom: 38.9 / 1513.1235
  5851. }
  5852. },
  5853. },
  5854. [
  5855. {
  5856. name: "Normal",
  5857. height: math.unit(8, "meters"),
  5858. default: true
  5859. },
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5864. {
  5865. front: {
  5866. height: math.unit(5.5, "feet"),
  5867. weight: math.unit(400, "lbs"),
  5868. name: "Front",
  5869. image: {
  5870. source: "./media/characters/kieran/front.svg",
  5871. extra: 2694 / 2364,
  5872. bottom: 217 / 2908
  5873. }
  5874. },
  5875. side: {
  5876. height: math.unit(5.5, "feet"),
  5877. weight: math.unit(400, "lbs"),
  5878. name: "Side",
  5879. image: {
  5880. source: "./media/characters/kieran/side.svg",
  5881. extra: 875 / 777,
  5882. bottom: 84.6 / 959
  5883. }
  5884. },
  5885. },
  5886. [
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(5.5, "feet"),
  5890. default: true
  5891. },
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5896. {
  5897. side: {
  5898. height: math.unit(2, "meters"),
  5899. weight: math.unit(70, "kg"),
  5900. name: "Side",
  5901. image: {
  5902. source: "./media/characters/sanya/side.svg",
  5903. bottom: 0.02,
  5904. extra: 1.02
  5905. }
  5906. },
  5907. },
  5908. [
  5909. {
  5910. name: "Small",
  5911. height: math.unit(2, "meters")
  5912. },
  5913. {
  5914. name: "Normal",
  5915. height: math.unit(3, "meters")
  5916. },
  5917. {
  5918. name: "Macro",
  5919. height: math.unit(16, "meters"),
  5920. default: true
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5926. {
  5927. front: {
  5928. height: math.unit(2, "meters"),
  5929. weight: math.unit(120, "kg"),
  5930. name: "Front",
  5931. image: {
  5932. source: "./media/characters/miranda/front.svg",
  5933. extra: 195 / 185,
  5934. bottom: 10.9 / 206.5
  5935. }
  5936. },
  5937. back: {
  5938. height: math.unit(2, "meters"),
  5939. weight: math.unit(120, "kg"),
  5940. name: "Back",
  5941. image: {
  5942. source: "./media/characters/miranda/back.svg",
  5943. extra: 201 / 193,
  5944. bottom: 2.3 / 203.7
  5945. }
  5946. },
  5947. },
  5948. [
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(10, "feet"),
  5952. default: true
  5953. }
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "James", species: ["deer"], tags: ["anthro"] },
  5958. {
  5959. side: {
  5960. height: math.unit(2, "meters"),
  5961. weight: math.unit(100, "kg"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/james/front.svg",
  5965. extra: 10 / 8.5
  5966. }
  5967. },
  5968. },
  5969. [
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(8.5, "feet"),
  5973. default: true
  5974. }
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5979. {
  5980. side: {
  5981. height: math.unit(9.5, "feet"),
  5982. weight: math.unit(2500, "lbs"),
  5983. name: "Side",
  5984. image: {
  5985. source: "./media/characters/heather/side.svg"
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(9.5, "feet"),
  5993. default: true
  5994. }
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5999. {
  6000. side: {
  6001. height: math.unit(6.5, "feet"),
  6002. weight: math.unit(400, "lbs"),
  6003. name: "Side",
  6004. image: {
  6005. source: "./media/characters/lukas/side.svg",
  6006. extra: 7.25 / 6.5
  6007. }
  6008. },
  6009. },
  6010. [
  6011. {
  6012. name: "Normal",
  6013. height: math.unit(6.5, "feet"),
  6014. default: true
  6015. }
  6016. ]
  6017. ))
  6018. characterMakers.push(() => makeCharacter(
  6019. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6020. {
  6021. side: {
  6022. height: math.unit(5, "feet"),
  6023. weight: math.unit(3000, "lbs"),
  6024. name: "Side",
  6025. image: {
  6026. source: "./media/characters/louise/side.svg"
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(5, "feet"),
  6034. default: true
  6035. }
  6036. ]
  6037. ))
  6038. characterMakers.push(() => makeCharacter(
  6039. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6040. {
  6041. side: {
  6042. height: math.unit(6, "feet"),
  6043. weight: math.unit(150, "lbs"),
  6044. name: "Side",
  6045. image: {
  6046. source: "./media/characters/ramona/side.svg",
  6047. extra: 871/854,
  6048. bottom: 41/912
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(6 + 4/12, "feet")
  6056. },
  6057. {
  6058. name: "Minimacro",
  6059. height: math.unit(5.3, "meters"),
  6060. default: true
  6061. },
  6062. {
  6063. name: "Macro",
  6064. height: math.unit(20, "stories")
  6065. },
  6066. {
  6067. name: "Macro+",
  6068. height: math.unit(50, "stories")
  6069. },
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6074. {
  6075. standing: {
  6076. height: math.unit(5.75, "feet"),
  6077. weight: math.unit(160, "lbs"),
  6078. name: "Standing",
  6079. image: {
  6080. source: "./media/characters/deerpuff/standing.svg",
  6081. extra: 682 / 624
  6082. }
  6083. },
  6084. sitting: {
  6085. height: math.unit(5.75 / 1.79, "feet"),
  6086. weight: math.unit(160, "lbs"),
  6087. name: "Sitting",
  6088. image: {
  6089. source: "./media/characters/deerpuff/sitting.svg",
  6090. bottom: 44 / 400,
  6091. extra: 1
  6092. }
  6093. },
  6094. taurLaying: {
  6095. height: math.unit(6, "feet"),
  6096. weight: math.unit(400, "lbs"),
  6097. name: "Taur (Laying)",
  6098. image: {
  6099. source: "./media/characters/deerpuff/taur-laying.svg"
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Puffball",
  6106. height: math.unit(6, "inches")
  6107. },
  6108. {
  6109. name: "Normalpuff",
  6110. height: math.unit(5.75, "feet")
  6111. },
  6112. {
  6113. name: "Macropuff",
  6114. height: math.unit(1500, "feet"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Megapuff",
  6119. height: math.unit(500, "miles")
  6120. },
  6121. {
  6122. name: "Gigapuff",
  6123. height: math.unit(250000, "miles")
  6124. },
  6125. {
  6126. name: "Omegapuff",
  6127. height: math.unit(1000, "lightyears")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6133. {
  6134. stomping: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(170, "lbs"),
  6137. name: "Stomping",
  6138. image: {
  6139. source: "./media/characters/vivian/stomping.svg"
  6140. }
  6141. },
  6142. sitting: {
  6143. height: math.unit(6 / 1.75, "feet"),
  6144. weight: math.unit(170, "lbs"),
  6145. name: "Sitting",
  6146. image: {
  6147. source: "./media/characters/vivian/sitting.svg",
  6148. bottom: 1 / 6.4,
  6149. extra: 1,
  6150. }
  6151. },
  6152. },
  6153. [
  6154. {
  6155. name: "Normal",
  6156. height: math.unit(7, "feet"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(10, "stories")
  6162. },
  6163. {
  6164. name: "Macro+",
  6165. height: math.unit(30, "stories")
  6166. },
  6167. {
  6168. name: "Megamacro",
  6169. height: math.unit(10, "miles")
  6170. },
  6171. {
  6172. name: "Megamacro+",
  6173. height: math.unit(2750000, "meters")
  6174. },
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6179. {
  6180. front: {
  6181. height: math.unit(6, "feet"),
  6182. weight: math.unit(160, "lbs"),
  6183. name: "Front",
  6184. image: {
  6185. source: "./media/characters/prince/front.svg",
  6186. extra: 1938/1682,
  6187. bottom: 45/1983
  6188. }
  6189. },
  6190. back: {
  6191. height: math.unit(6, "feet"),
  6192. weight: math.unit(160, "lbs"),
  6193. name: "Back",
  6194. image: {
  6195. source: "./media/characters/prince/back.svg",
  6196. extra: 1955/1726,
  6197. bottom: 6/1961
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(7.75, "feet"),
  6205. default: true
  6206. },
  6207. {
  6208. name: "Not cute",
  6209. height: math.unit(17, "feet")
  6210. },
  6211. {
  6212. name: "I said NOT",
  6213. height: math.unit(91, "feet")
  6214. },
  6215. {
  6216. name: "Please stop",
  6217. height: math.unit(560, "feet")
  6218. },
  6219. {
  6220. name: "What have you done",
  6221. height: math.unit(2200, "feet")
  6222. },
  6223. {
  6224. name: "Deer God",
  6225. height: math.unit(3.6, "miles")
  6226. },
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6231. {
  6232. standing: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(300, "lbs"),
  6235. name: "Standing",
  6236. image: {
  6237. source: "./media/characters/psymon/standing.svg",
  6238. extra: 1888 / 1810,
  6239. bottom: 0.05
  6240. }
  6241. },
  6242. slithering: {
  6243. height: math.unit(6, "feet"),
  6244. weight: math.unit(300, "lbs"),
  6245. name: "Slithering",
  6246. image: {
  6247. source: "./media/characters/psymon/slithering.svg",
  6248. extra: 1330 / 1224
  6249. }
  6250. },
  6251. slitheringAlt: {
  6252. height: math.unit(6, "feet"),
  6253. weight: math.unit(300, "lbs"),
  6254. name: "Slithering (Alt)",
  6255. image: {
  6256. source: "./media/characters/psymon/slithering-alt.svg",
  6257. extra: 1330 / 1224
  6258. }
  6259. },
  6260. },
  6261. [
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(11.25, "feet"),
  6265. default: true
  6266. },
  6267. {
  6268. name: "Large",
  6269. height: math.unit(27, "feet")
  6270. },
  6271. {
  6272. name: "Giant",
  6273. height: math.unit(87, "feet")
  6274. },
  6275. {
  6276. name: "Macro",
  6277. height: math.unit(365, "feet")
  6278. },
  6279. {
  6280. name: "Megamacro",
  6281. height: math.unit(3, "miles")
  6282. },
  6283. {
  6284. name: "World Serpent",
  6285. height: math.unit(8000, "miles")
  6286. },
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6291. {
  6292. front: {
  6293. height: math.unit(6, "feet"),
  6294. weight: math.unit(180, "lbs"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/daimos/front.svg",
  6298. extra: 4160 / 3897,
  6299. bottom: 0.021
  6300. }
  6301. }
  6302. },
  6303. [
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(8, "feet"),
  6307. default: true
  6308. },
  6309. {
  6310. name: "Big Dog",
  6311. height: math.unit(22, "feet")
  6312. },
  6313. {
  6314. name: "Macro",
  6315. height: math.unit(127, "feet")
  6316. },
  6317. {
  6318. name: "Megamacro",
  6319. height: math.unit(3600, "feet")
  6320. },
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6325. {
  6326. side: {
  6327. height: math.unit(6, "feet"),
  6328. weight: math.unit(180, "lbs"),
  6329. name: "Side",
  6330. image: {
  6331. source: "./media/characters/blake/side.svg",
  6332. extra: 1212 / 1120,
  6333. bottom: 0.05
  6334. }
  6335. },
  6336. crouched: {
  6337. height: math.unit(6 * 0.57, "feet"),
  6338. weight: math.unit(180, "lbs"),
  6339. name: "Crouched",
  6340. image: {
  6341. source: "./media/characters/blake/crouched.svg",
  6342. extra: 840 / 587,
  6343. bottom: 0.04
  6344. }
  6345. },
  6346. bent: {
  6347. height: math.unit(6 * 0.75, "feet"),
  6348. weight: math.unit(180, "lbs"),
  6349. name: "Bent",
  6350. image: {
  6351. source: "./media/characters/blake/bent.svg",
  6352. extra: 592 / 544,
  6353. bottom: 0.035
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(8 + 1 / 6, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Big Backside",
  6365. height: math.unit(37, "feet")
  6366. },
  6367. {
  6368. name: "Subway Shredder",
  6369. height: math.unit(72, "feet")
  6370. },
  6371. {
  6372. name: "City Carver",
  6373. height: math.unit(1675, "feet")
  6374. },
  6375. {
  6376. name: "Tectonic Tweaker",
  6377. height: math.unit(2300, "miles")
  6378. },
  6379. ]
  6380. ))
  6381. characterMakers.push(() => makeCharacter(
  6382. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6383. {
  6384. front: {
  6385. height: math.unit(6, "feet"),
  6386. weight: math.unit(180, "lbs"),
  6387. name: "Front",
  6388. image: {
  6389. source: "./media/characters/guisetto/front.svg",
  6390. extra: 856 / 817,
  6391. bottom: 0.06
  6392. }
  6393. },
  6394. airborne: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(180, "lbs"),
  6397. name: "Airborne",
  6398. image: {
  6399. source: "./media/characters/guisetto/airborne.svg",
  6400. extra: 584 / 525
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Normal",
  6407. height: math.unit(10 + 11 / 12, "feet"),
  6408. default: true
  6409. },
  6410. {
  6411. name: "Large",
  6412. height: math.unit(35, "feet")
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(475, "feet")
  6417. },
  6418. ]
  6419. ))
  6420. characterMakers.push(() => makeCharacter(
  6421. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6422. {
  6423. front: {
  6424. height: math.unit(6, "feet"),
  6425. weight: math.unit(180, "lbs"),
  6426. name: "Front",
  6427. image: {
  6428. source: "./media/characters/luxor/front.svg",
  6429. extra: 2940 / 2152
  6430. }
  6431. },
  6432. back: {
  6433. height: math.unit(6, "feet"),
  6434. weight: math.unit(180, "lbs"),
  6435. name: "Back",
  6436. image: {
  6437. source: "./media/characters/luxor/back.svg",
  6438. extra: 1083 / 960
  6439. }
  6440. },
  6441. },
  6442. [
  6443. {
  6444. name: "Normal",
  6445. height: math.unit(5 + 5 / 6, "feet"),
  6446. default: true
  6447. },
  6448. {
  6449. name: "Lamp",
  6450. height: math.unit(50, "feet")
  6451. },
  6452. {
  6453. name: "Lämp",
  6454. height: math.unit(300, "feet")
  6455. },
  6456. {
  6457. name: "The sun is a lamp",
  6458. height: math.unit(250000, "miles")
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6464. {
  6465. front: {
  6466. height: math.unit(6, "feet"),
  6467. weight: math.unit(50, "lbs"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/huoyan/front.svg"
  6471. }
  6472. },
  6473. side: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(180, "lbs"),
  6476. name: "Side",
  6477. image: {
  6478. source: "./media/characters/huoyan/side.svg"
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Chef",
  6485. height: math.unit(9, "feet")
  6486. },
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(65, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Macro",
  6494. height: math.unit(780, "feet")
  6495. },
  6496. {
  6497. name: "Flaming Mountain",
  6498. height: math.unit(4.8, "miles")
  6499. },
  6500. {
  6501. name: "Celestial",
  6502. height: math.unit(765000, "miles")
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6508. {
  6509. front: {
  6510. height: math.unit(5 + 3 / 4, "feet"),
  6511. weight: math.unit(120, "lbs"),
  6512. name: "Front",
  6513. image: {
  6514. source: "./media/characters/tails/front.svg"
  6515. }
  6516. }
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(5 + 3 / 4, "feet"),
  6522. default: true
  6523. }
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6528. {
  6529. front: {
  6530. height: math.unit(4, "feet"),
  6531. weight: math.unit(50, "lbs"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/rainy/front.svg"
  6535. }
  6536. }
  6537. },
  6538. [
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(800, "feet"),
  6542. default: true
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(150, "lbs"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/rainier/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Micro",
  6561. height: math.unit(2, "mm"),
  6562. default: true
  6563. }
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(8 + 4/12, "feet"),
  6571. weight: math.unit(450, "kilograms"),
  6572. volume: math.unit(5, "cups"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/andy-renard/front.svg",
  6576. extra: 1839/1726,
  6577. bottom: 134/1973
  6578. }
  6579. },
  6580. back: {
  6581. height: math.unit(8 + 4/12, "feet"),
  6582. weight: math.unit(450, "kilograms"),
  6583. volume: math.unit(5, "cups"),
  6584. name: "Back",
  6585. image: {
  6586. source: "./media/characters/andy-renard/back.svg",
  6587. extra: 1838/1710,
  6588. bottom: 105/1943
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Tall",
  6595. height: math.unit(8 + 4/12, "feet")
  6596. },
  6597. {
  6598. name: "Mini Macro",
  6599. height: math.unit(15, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(100, "feet")
  6605. },
  6606. {
  6607. name: "Mega Macro",
  6608. height: math.unit(1000, "feet")
  6609. },
  6610. {
  6611. name: "Giga Macro",
  6612. height: math.unit(10, "miles")
  6613. },
  6614. {
  6615. name: "God Macro",
  6616. height: math.unit(1, "multiverse")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(210, "lbs"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/cimmaron/front-sfw.svg",
  6629. extra: 701 / 676,
  6630. bottom: 0.046
  6631. }
  6632. },
  6633. back: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(210, "lbs"),
  6636. name: "Back",
  6637. image: {
  6638. source: "./media/characters/cimmaron/back-sfw.svg",
  6639. extra: 701 / 676,
  6640. bottom: 0.046
  6641. }
  6642. },
  6643. frontNsfw: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(210, "lbs"),
  6646. name: "Front (NSFW)",
  6647. image: {
  6648. source: "./media/characters/cimmaron/front-nsfw.svg",
  6649. extra: 701 / 676,
  6650. bottom: 0.046
  6651. }
  6652. },
  6653. backNsfw: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(210, "lbs"),
  6656. name: "Back (NSFW)",
  6657. image: {
  6658. source: "./media/characters/cimmaron/back-nsfw.svg",
  6659. extra: 701 / 676,
  6660. bottom: 0.046
  6661. }
  6662. },
  6663. dick: {
  6664. height: math.unit(1.714, "feet"),
  6665. name: "Dick",
  6666. image: {
  6667. source: "./media/characters/cimmaron/dick.svg"
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(6, "feet"),
  6675. default: true
  6676. },
  6677. {
  6678. name: "Macro Mayor",
  6679. height: math.unit(350, "meters")
  6680. },
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(6, "feet"),
  6688. weight: math.unit(200, "lbs"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/akari/front.svg",
  6692. extra: 962 / 901,
  6693. bottom: 0.04
  6694. }
  6695. }
  6696. },
  6697. [
  6698. {
  6699. name: "Micro",
  6700. height: math.unit(5, "inches"),
  6701. default: true
  6702. },
  6703. {
  6704. name: "Normal",
  6705. height: math.unit(7, "feet")
  6706. },
  6707. ]
  6708. ))
  6709. characterMakers.push(() => makeCharacter(
  6710. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6711. {
  6712. front: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(140, "lbs"),
  6715. name: "Front",
  6716. image: {
  6717. source: "./media/characters/cynosura/front.svg",
  6718. extra: 437/410,
  6719. bottom: 9/446
  6720. }
  6721. },
  6722. back: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(140, "lbs"),
  6725. name: "Back",
  6726. image: {
  6727. source: "./media/characters/cynosura/back.svg",
  6728. extra: 1304/1160,
  6729. bottom: 71/1375
  6730. }
  6731. },
  6732. },
  6733. [
  6734. {
  6735. name: "Micro",
  6736. height: math.unit(4, "inches")
  6737. },
  6738. {
  6739. name: "Normal",
  6740. height: math.unit(5.75, "feet"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Tall",
  6745. height: math.unit(10, "feet")
  6746. },
  6747. {
  6748. name: "Big",
  6749. height: math.unit(20, "feet")
  6750. },
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(50, "feet")
  6754. },
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6759. {
  6760. front: {
  6761. height: math.unit(13 + 2/12, "feet"),
  6762. weight: math.unit(800, "kg"),
  6763. name: "Front",
  6764. image: {
  6765. source: "./media/characters/gin/front.svg",
  6766. extra: 1312/1191,
  6767. bottom: 45/1357
  6768. }
  6769. },
  6770. mouth: {
  6771. height: math.unit(2.39 * 1.8, "feet"),
  6772. name: "Mouth",
  6773. image: {
  6774. source: "./media/characters/gin/mouth.svg"
  6775. }
  6776. },
  6777. hand: {
  6778. height: math.unit(1.57 * 2.19, "feet"),
  6779. name: "Hand",
  6780. image: {
  6781. source: "./media/characters/gin/hand.svg"
  6782. }
  6783. },
  6784. foot: {
  6785. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6786. name: "Foot",
  6787. image: {
  6788. source: "./media/characters/gin/foot.svg"
  6789. }
  6790. },
  6791. sole: {
  6792. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6793. name: "Sole",
  6794. image: {
  6795. source: "./media/characters/gin/sole.svg"
  6796. }
  6797. },
  6798. },
  6799. [
  6800. {
  6801. name: "Very Small",
  6802. height: math.unit(13 + 2 / 12, "feet")
  6803. },
  6804. {
  6805. name: "Micro",
  6806. height: math.unit(600, "miles")
  6807. },
  6808. {
  6809. name: "Regular",
  6810. height: math.unit(20, "earths"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(2.2, "solarradii")
  6816. },
  6817. {
  6818. name: "Teramacro",
  6819. height: math.unit(1.2, "galaxies")
  6820. },
  6821. {
  6822. name: "Omegamacro",
  6823. height: math.unit(200, "universes")
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(6 + 1 / 6, "feet"),
  6832. weight: math.unit(178, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/guy/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(6 + 1 / 6, "feet"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Large",
  6847. height: math.unit(25 + 7 / 12, "feet")
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(60 + 9 / 12, "feet")
  6852. },
  6853. {
  6854. name: "Macro+",
  6855. height: math.unit(246, "feet")
  6856. },
  6857. {
  6858. name: "Macro++",
  6859. height: math.unit(878, "feet")
  6860. }
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(9, "feet"),
  6868. weight: math.unit(800, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/tiberius/front.svg",
  6872. extra: 2295 / 2071
  6873. }
  6874. },
  6875. back: {
  6876. height: math.unit(9, "feet"),
  6877. weight: math.unit(800, "lbs"),
  6878. name: "Back",
  6879. image: {
  6880. source: "./media/characters/tiberius/back.svg",
  6881. extra: 2373 / 2160
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(9, "feet"),
  6889. default: true
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6895. {
  6896. front: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(600, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/surgo/front.svg",
  6902. extra: 3591 / 2227
  6903. }
  6904. },
  6905. back: {
  6906. height: math.unit(6, "feet"),
  6907. weight: math.unit(600, "lbs"),
  6908. name: "Back",
  6909. image: {
  6910. source: "./media/characters/surgo/back.svg",
  6911. extra: 3557 / 2228
  6912. }
  6913. },
  6914. laying: {
  6915. height: math.unit(6 * 0.85, "feet"),
  6916. weight: math.unit(600, "lbs"),
  6917. name: "Laying",
  6918. image: {
  6919. source: "./media/characters/surgo/laying.svg"
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(6, "feet"),
  6927. default: true
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6933. {
  6934. side: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(150, "lbs"),
  6937. name: "Side",
  6938. image: {
  6939. source: "./media/characters/cibus/side.svg",
  6940. extra: 800 / 400
  6941. }
  6942. },
  6943. },
  6944. [
  6945. {
  6946. name: "Normal",
  6947. height: math.unit(6, "feet"),
  6948. default: true
  6949. }
  6950. ]
  6951. ))
  6952. characterMakers.push(() => makeCharacter(
  6953. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6954. {
  6955. front: {
  6956. height: math.unit(6, "feet"),
  6957. weight: math.unit(240, "lbs"),
  6958. name: "Front",
  6959. image: {
  6960. source: "./media/characters/nibbles/front.svg"
  6961. }
  6962. },
  6963. side: {
  6964. height: math.unit(6, "feet"),
  6965. weight: math.unit(240, "lbs"),
  6966. name: "Side",
  6967. image: {
  6968. source: "./media/characters/nibbles/side.svg"
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Normal",
  6975. height: math.unit(9, "feet"),
  6976. default: true
  6977. }
  6978. ]
  6979. ))
  6980. characterMakers.push(() => makeCharacter(
  6981. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6982. {
  6983. side: {
  6984. height: math.unit(5 + 1 / 6, "feet"),
  6985. weight: math.unit(130, "lbs"),
  6986. name: "Side",
  6987. image: {
  6988. source: "./media/characters/rikky/side.svg",
  6989. extra: 851 / 801
  6990. }
  6991. },
  6992. },
  6993. [
  6994. {
  6995. name: "Normal",
  6996. height: math.unit(5 + 1 / 6, "feet")
  6997. },
  6998. {
  6999. name: "Macro",
  7000. height: math.unit(152, "feet"),
  7001. default: true
  7002. },
  7003. {
  7004. name: "Megamacro",
  7005. height: math.unit(7, "miles")
  7006. }
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7011. {
  7012. side: {
  7013. height: math.unit(370, "cm"),
  7014. weight: math.unit(350, "lbs"),
  7015. name: "Side",
  7016. image: {
  7017. source: "./media/characters/malfressa/side.svg"
  7018. }
  7019. },
  7020. walking: {
  7021. height: math.unit(370, "cm"),
  7022. weight: math.unit(350, "lbs"),
  7023. name: "Walking",
  7024. image: {
  7025. source: "./media/characters/malfressa/walking.svg"
  7026. }
  7027. },
  7028. feral: {
  7029. height: math.unit(2500, "cm"),
  7030. weight: math.unit(100000, "lbs"),
  7031. name: "Feral",
  7032. image: {
  7033. source: "./media/characters/malfressa/feral.svg",
  7034. extra: 2108 / 837,
  7035. bottom: 0.02
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(370, "cm")
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(300, "meters"),
  7047. default: true
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(60, "kg"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/jaro/front.svg",
  7060. extra: 845/817,
  7061. bottom: 45/890
  7062. }
  7063. },
  7064. back: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(60, "kg"),
  7067. name: "Back",
  7068. image: {
  7069. source: "./media/characters/jaro/back.svg",
  7070. extra: 847/817,
  7071. bottom: 34/881
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(7, "inches")
  7079. },
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(5.5, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Minimacro",
  7087. height: math.unit(20, "feet")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(200, "meters")
  7092. }
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(195, "lb"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/rogue/front.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Macro",
  7110. height: math.unit(90, "feet"),
  7111. default: true
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7117. {
  7118. standing: {
  7119. height: math.unit(5 + 8 / 12, "feet"),
  7120. weight: math.unit(140, "lb"),
  7121. name: "Standing",
  7122. image: {
  7123. source: "./media/characters/piper/standing.svg",
  7124. extra: 1440/1284,
  7125. bottom: 66/1506
  7126. }
  7127. },
  7128. running: {
  7129. height: math.unit(5 + 8 / 12, "feet"),
  7130. weight: math.unit(140, "lb"),
  7131. name: "Running",
  7132. image: {
  7133. source: "./media/characters/piper/running.svg",
  7134. extra: 3948/3655,
  7135. bottom: 0/3948
  7136. }
  7137. },
  7138. sole: {
  7139. height: math.unit(0.81, "feet"),
  7140. weight: math.unit(2, "kg"),
  7141. name: "Sole",
  7142. image: {
  7143. source: "./media/characters/piper/sole.svg"
  7144. }
  7145. },
  7146. nipple: {
  7147. height: math.unit(0.25, "feet"),
  7148. weight: math.unit(1.5, "lb"),
  7149. name: "Nipple",
  7150. image: {
  7151. source: "./media/characters/piper/nipple.svg"
  7152. }
  7153. },
  7154. head: {
  7155. height: math.unit(1.1, "feet"),
  7156. name: "Head",
  7157. image: {
  7158. source: "./media/characters/piper/head.svg"
  7159. }
  7160. },
  7161. },
  7162. [
  7163. {
  7164. name: "Micro",
  7165. height: math.unit(2, "inches")
  7166. },
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(5 + 8 / 12, "feet")
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(250, "feet"),
  7174. default: true
  7175. },
  7176. {
  7177. name: "Megamacro",
  7178. height: math.unit(7, "miles")
  7179. },
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7184. {
  7185. front: {
  7186. height: math.unit(6, "feet"),
  7187. weight: math.unit(220, "lb"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/gemini/front.svg"
  7191. }
  7192. },
  7193. back: {
  7194. height: math.unit(6, "feet"),
  7195. weight: math.unit(220, "lb"),
  7196. name: "Back",
  7197. image: {
  7198. source: "./media/characters/gemini/back.svg"
  7199. }
  7200. },
  7201. kneeling: {
  7202. height: math.unit(6 / 1.5, "feet"),
  7203. weight: math.unit(220, "lb"),
  7204. name: "Kneeling",
  7205. image: {
  7206. source: "./media/characters/gemini/kneeling.svg",
  7207. bottom: 0.02
  7208. }
  7209. },
  7210. },
  7211. [
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(300, "meters"),
  7215. default: true
  7216. },
  7217. {
  7218. name: "Megamacro",
  7219. height: math.unit(6900, "meters")
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7225. {
  7226. anthro: {
  7227. height: math.unit(2.35, "meters"),
  7228. weight: math.unit(73, "kg"),
  7229. name: "Anthro",
  7230. image: {
  7231. source: "./media/characters/alicia/anthro.svg",
  7232. extra: 2571 / 2385,
  7233. bottom: 75 / 2648
  7234. }
  7235. },
  7236. paw: {
  7237. height: math.unit(1.32, "feet"),
  7238. name: "Paw",
  7239. image: {
  7240. source: "./media/characters/alicia/paw.svg"
  7241. }
  7242. },
  7243. feral: {
  7244. height: math.unit(1.69, "meters"),
  7245. weight: math.unit(73, "kg"),
  7246. name: "Feral",
  7247. image: {
  7248. source: "./media/characters/alicia/feral.svg",
  7249. extra: 2123 / 1715,
  7250. bottom: 222 / 2349
  7251. }
  7252. },
  7253. },
  7254. [
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(2.35, "meters")
  7258. },
  7259. {
  7260. name: "Macro",
  7261. height: math.unit(60, "meters"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Megamacro",
  7266. height: math.unit(10000, "kilometers")
  7267. },
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(7, "feet"),
  7275. weight: math.unit(250, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/archy/front.svg"
  7279. }
  7280. }
  7281. },
  7282. [
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(1, "inch")
  7286. },
  7287. {
  7288. name: "Shorty",
  7289. height: math.unit(5, "feet")
  7290. },
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(7, "feet")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(600, "meters"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(1, "mile")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(1.65, "meters"),
  7311. weight: math.unit(74, "kg"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/berri/front.svg",
  7315. extra: 857 / 837,
  7316. bottom: 18 / 877
  7317. }
  7318. },
  7319. bum: {
  7320. height: math.unit(1.46, "feet"),
  7321. name: "Bum",
  7322. image: {
  7323. source: "./media/characters/berri/bum.svg"
  7324. }
  7325. },
  7326. mouth: {
  7327. height: math.unit(0.44, "feet"),
  7328. name: "Mouth",
  7329. image: {
  7330. source: "./media/characters/berri/mouth.svg"
  7331. }
  7332. },
  7333. paw: {
  7334. height: math.unit(0.826, "feet"),
  7335. name: "Paw",
  7336. image: {
  7337. source: "./media/characters/berri/paw.svg"
  7338. }
  7339. },
  7340. },
  7341. [
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(1.65, "meters")
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(60, "m"),
  7349. default: true
  7350. },
  7351. {
  7352. name: "Megamacro",
  7353. height: math.unit(9.213, "km")
  7354. },
  7355. {
  7356. name: "Planet Eater",
  7357. height: math.unit(489, "megameters")
  7358. },
  7359. {
  7360. name: "Teramacro",
  7361. height: math.unit(2471635000000, "meters")
  7362. },
  7363. {
  7364. name: "Examacro",
  7365. height: math.unit(8.0624e+26, "meters")
  7366. }
  7367. ]
  7368. ))
  7369. characterMakers.push(() => makeCharacter(
  7370. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7371. {
  7372. front: {
  7373. height: math.unit(1.72, "meters"),
  7374. weight: math.unit(68, "kg"),
  7375. name: "Front",
  7376. image: {
  7377. source: "./media/characters/lexi/front.svg"
  7378. }
  7379. }
  7380. },
  7381. [
  7382. {
  7383. name: "Very Smol",
  7384. height: math.unit(10, "mm")
  7385. },
  7386. {
  7387. name: "Micro",
  7388. height: math.unit(6.8, "cm"),
  7389. default: true
  7390. },
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(1.72, "m")
  7394. }
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(1.69, "meters"),
  7402. weight: math.unit(68, "kg"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/martin/front.svg",
  7406. extra: 596 / 581
  7407. }
  7408. }
  7409. },
  7410. [
  7411. {
  7412. name: "Micro",
  7413. height: math.unit(6.85, "cm"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(1.69, "m")
  7419. }
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(1.69, "meters"),
  7427. weight: math.unit(68, "kg"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/juno/front.svg"
  7431. }
  7432. }
  7433. },
  7434. [
  7435. {
  7436. name: "Micro",
  7437. height: math.unit(7, "cm")
  7438. },
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(1.89, "m")
  7442. },
  7443. {
  7444. name: "Macro",
  7445. height: math.unit(353, "meters"),
  7446. default: true
  7447. }
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(1.93, "meters"),
  7455. weight: math.unit(83, "kg"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/samantha/front.svg"
  7459. }
  7460. },
  7461. frontClothed: {
  7462. height: math.unit(1.93, "meters"),
  7463. weight: math.unit(83, "kg"),
  7464. name: "Front (Clothed)",
  7465. image: {
  7466. source: "./media/characters/samantha/front-clothed.svg"
  7467. }
  7468. },
  7469. back: {
  7470. height: math.unit(1.93, "meters"),
  7471. weight: math.unit(83, "kg"),
  7472. name: "Back",
  7473. image: {
  7474. source: "./media/characters/samantha/back.svg"
  7475. }
  7476. },
  7477. },
  7478. [
  7479. {
  7480. name: "Normal",
  7481. height: math.unit(1.93, "m")
  7482. },
  7483. {
  7484. name: "Macro",
  7485. height: math.unit(74, "meters"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Macro+",
  7490. height: math.unit(223, "meters"),
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(8381, "meters"),
  7495. },
  7496. {
  7497. name: "Megamacro+",
  7498. height: math.unit(12000, "kilometers")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(1.92, "meters"),
  7507. weight: math.unit(80, "kg"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/dr-clay/front.svg"
  7511. }
  7512. },
  7513. frontClothed: {
  7514. height: math.unit(1.92, "meters"),
  7515. weight: math.unit(80, "kg"),
  7516. name: "Front (Clothed)",
  7517. image: {
  7518. source: "./media/characters/dr-clay/front-clothed.svg"
  7519. }
  7520. }
  7521. },
  7522. [
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(1.92, "m")
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(214, "meters"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Macro+",
  7534. height: math.unit(12.237, "meters"),
  7535. },
  7536. {
  7537. name: "Megamacro",
  7538. height: math.unit(557, "megameters"),
  7539. },
  7540. {
  7541. name: "Unimaginable",
  7542. height: math.unit(120e9, "lightyears")
  7543. },
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(2, "meters"),
  7551. weight: math.unit(80, "kg"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7555. }
  7556. }
  7557. },
  7558. [
  7559. {
  7560. name: "Teramacro",
  7561. height: math.unit(500000, "lightyears"),
  7562. default: true
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7568. {
  7569. crux: {
  7570. height: math.unit(2, "meters"),
  7571. weight: math.unit(150, "kg"),
  7572. name: "Crux",
  7573. image: {
  7574. source: "./media/characters/vemus/crux.svg",
  7575. extra: 1074/936,
  7576. bottom: 23/1097
  7577. }
  7578. },
  7579. skunkTanuki: {
  7580. height: math.unit(2, "meters"),
  7581. weight: math.unit(150, "kg"),
  7582. name: "Skunk-Tanuki",
  7583. image: {
  7584. source: "./media/characters/vemus/skunk-tanuki.svg",
  7585. extra: 926/893,
  7586. bottom: 20/946
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Normal",
  7593. height: math.unit(4, "meters"),
  7594. default: true
  7595. },
  7596. {
  7597. name: "Big",
  7598. height: math.unit(8, "meters")
  7599. },
  7600. {
  7601. name: "Macro",
  7602. height: math.unit(100, "meters")
  7603. },
  7604. {
  7605. name: "Macro+",
  7606. height: math.unit(1500, "meters")
  7607. },
  7608. {
  7609. name: "Stellar",
  7610. height: math.unit(14e8, "meters")
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(2, "meters"),
  7619. weight: math.unit(70, "kg"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/beherit/front.svg",
  7623. extra: 1234/1109,
  7624. bottom: 55/1289
  7625. }
  7626. }
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(6, "feet")
  7632. },
  7633. {
  7634. name: "Lorg",
  7635. height: math.unit(25, "feet"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Lorger",
  7640. height: math.unit(75, "feet")
  7641. },
  7642. {
  7643. name: "Macro",
  7644. height: math.unit(200, "meters")
  7645. },
  7646. ]
  7647. ))
  7648. characterMakers.push(() => makeCharacter(
  7649. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7650. {
  7651. front: {
  7652. height: math.unit(2, "meters"),
  7653. weight: math.unit(150, "kg"),
  7654. name: "Front",
  7655. image: {
  7656. source: "./media/characters/everett/front.svg",
  7657. extra: 1017/866,
  7658. bottom: 86/1103
  7659. }
  7660. },
  7661. paw: {
  7662. height: math.unit(2 / 3.6, "meters"),
  7663. name: "Paw",
  7664. image: {
  7665. source: "./media/characters/everett/paw.svg"
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(15, "feet"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Lorg",
  7677. height: math.unit(70, "feet"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Lorger",
  7682. height: math.unit(250, "feet")
  7683. },
  7684. {
  7685. name: "Macro",
  7686. height: math.unit(500, "meters")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(2, "meters"),
  7695. weight: math.unit(86, "kg"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/rose/front.svg",
  7699. extra: 1785/1636,
  7700. bottom: 30/1815
  7701. },
  7702. form: "liom",
  7703. default: true
  7704. },
  7705. frontSporty: {
  7706. height: math.unit(2, "meters"),
  7707. weight: math.unit(86, "kg"),
  7708. name: "Front (Sporty)",
  7709. image: {
  7710. source: "./media/characters/rose/front-sporty.svg",
  7711. extra: 350/335,
  7712. bottom: 10/360
  7713. },
  7714. form: "liom"
  7715. },
  7716. frontAlt: {
  7717. height: math.unit(1.6, "meters"),
  7718. weight: math.unit(86, "kg"),
  7719. name: "Front (Alt)",
  7720. image: {
  7721. source: "./media/characters/rose/front-alt.svg",
  7722. extra: 299/283,
  7723. bottom: 3/302
  7724. },
  7725. form: "liom"
  7726. },
  7727. plush: {
  7728. height: math.unit(2, "meters"),
  7729. weight: math.unit(86/3, "kg"),
  7730. name: "Plush",
  7731. image: {
  7732. source: "./media/characters/rose/plush.svg",
  7733. extra: 361/337,
  7734. bottom: 11/372
  7735. },
  7736. form: "plush",
  7737. default: true
  7738. },
  7739. faeStanding: {
  7740. height: math.unit(10, "cm"),
  7741. weight: math.unit(10, "grams"),
  7742. name: "Standing",
  7743. image: {
  7744. source: "./media/characters/rose/fae-standing.svg",
  7745. extra: 1189/1060,
  7746. bottom: 27/1216
  7747. },
  7748. form: "fae",
  7749. default: true
  7750. },
  7751. faeSitting: {
  7752. height: math.unit(5, "cm"),
  7753. weight: math.unit(10, "grams"),
  7754. name: "Sitting",
  7755. image: {
  7756. source: "./media/characters/rose/fae-sitting.svg",
  7757. extra: 737/577,
  7758. bottom: 356/1093
  7759. },
  7760. form: "fae"
  7761. },
  7762. faePaw: {
  7763. height: math.unit(1.35, "cm"),
  7764. name: "Paw",
  7765. image: {
  7766. source: "./media/characters/rose/fae-paw.svg"
  7767. },
  7768. form: "fae"
  7769. },
  7770. },
  7771. [
  7772. {
  7773. name: "True Micro",
  7774. height: math.unit(9, "cm"),
  7775. form: "liom"
  7776. },
  7777. {
  7778. name: "Micro",
  7779. height: math.unit(16, "cm"),
  7780. form: "liom"
  7781. },
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(1.85, "meters"),
  7785. default: true,
  7786. form: "liom"
  7787. },
  7788. {
  7789. name: "Mini-Macro",
  7790. height: math.unit(5, "meters"),
  7791. form: "liom"
  7792. },
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(15, "meters"),
  7796. form: "liom"
  7797. },
  7798. {
  7799. name: "True Macro",
  7800. height: math.unit(40, "meters"),
  7801. form: "liom"
  7802. },
  7803. {
  7804. name: "City Scale",
  7805. height: math.unit(1, "km"),
  7806. form: "liom"
  7807. },
  7808. {
  7809. name: "Plushie",
  7810. height: math.unit(9, "cm"),
  7811. form: "plush",
  7812. default: true
  7813. },
  7814. {
  7815. name: "Fae",
  7816. height: math.unit(10, "cm"),
  7817. form: "fae",
  7818. default: true
  7819. },
  7820. ],
  7821. {
  7822. "liom": {
  7823. name: "Liom"
  7824. },
  7825. "plush": {
  7826. name: "Plush"
  7827. },
  7828. "fae": {
  7829. name: "Fae Fox",
  7830. default: true
  7831. }
  7832. }
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(2, "meters"),
  7839. weight: math.unit(350, "lbs"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/regal/front.svg"
  7843. }
  7844. },
  7845. back: {
  7846. height: math.unit(2, "meters"),
  7847. weight: math.unit(350, "lbs"),
  7848. name: "Back",
  7849. image: {
  7850. source: "./media/characters/regal/back.svg"
  7851. }
  7852. },
  7853. },
  7854. [
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(350, "feet"),
  7858. default: true
  7859. }
  7860. ]
  7861. ))
  7862. characterMakers.push(() => makeCharacter(
  7863. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7864. {
  7865. front: {
  7866. height: math.unit(4 + 11 / 12, "feet"),
  7867. weight: math.unit(100, "lbs"),
  7868. name: "Front",
  7869. image: {
  7870. source: "./media/characters/opal/front.svg"
  7871. }
  7872. },
  7873. frontAlt: {
  7874. height: math.unit(4 + 11 / 12, "feet"),
  7875. weight: math.unit(100, "lbs"),
  7876. name: "Front (Alt)",
  7877. image: {
  7878. source: "./media/characters/opal/front-alt.svg"
  7879. }
  7880. },
  7881. },
  7882. [
  7883. {
  7884. name: "Small",
  7885. height: math.unit(4 + 11 / 12, "feet")
  7886. },
  7887. {
  7888. name: "Normal",
  7889. height: math.unit(20, "feet"),
  7890. default: true
  7891. },
  7892. {
  7893. name: "Macro",
  7894. height: math.unit(120, "feet")
  7895. },
  7896. {
  7897. name: "Megamacro",
  7898. height: math.unit(80, "miles")
  7899. },
  7900. {
  7901. name: "True Size",
  7902. height: math.unit(100000, "lightyears")
  7903. },
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7908. {
  7909. front: {
  7910. height: math.unit(6, "feet"),
  7911. weight: math.unit(200, "lbs"),
  7912. name: "Front",
  7913. image: {
  7914. source: "./media/characters/vector-wuff/front.svg"
  7915. }
  7916. }
  7917. },
  7918. [
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(2.8, "meters")
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(450, "meters"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Megamacro",
  7930. height: math.unit(15, "kilometers")
  7931. }
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(6, "feet"),
  7939. weight: math.unit(256, "lbs"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/dannik/front.svg"
  7943. }
  7944. }
  7945. },
  7946. [
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(69.57, "meters"),
  7950. default: true
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(120, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/azura-saharah/front.svg"
  7963. }
  7964. },
  7965. back: {
  7966. height: math.unit(6, "feet"),
  7967. weight: math.unit(120, "lbs"),
  7968. name: "Back",
  7969. image: {
  7970. source: "./media/characters/azura-saharah/back.svg"
  7971. }
  7972. },
  7973. },
  7974. [
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(100, "feet"),
  7978. default: true
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7984. {
  7985. side: {
  7986. height: math.unit(5 + 4 / 12, "feet"),
  7987. weight: math.unit(163, "lbs"),
  7988. name: "Side",
  7989. image: {
  7990. source: "./media/characters/kennedy/side.svg"
  7991. }
  7992. }
  7993. },
  7994. [
  7995. {
  7996. name: "Standard Doggo",
  7997. height: math.unit(5 + 4 / 12, "feet")
  7998. },
  7999. {
  8000. name: "Big Doggo",
  8001. height: math.unit(25 + 3 / 12, "feet"),
  8002. default: true
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8008. {
  8009. front: {
  8010. height: math.unit(5 + 5/12, "feet"),
  8011. weight: math.unit(100, "lbs"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/odios-de-lunar/front.svg",
  8015. extra: 1468/1323,
  8016. bottom: 22/1490
  8017. }
  8018. }
  8019. },
  8020. [
  8021. {
  8022. name: "Micro",
  8023. height: math.unit(3, "inches")
  8024. },
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(5.5, "feet"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(100, "feet")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8038. {
  8039. back: {
  8040. height: math.unit(6, "feet"),
  8041. weight: math.unit(220, "lbs"),
  8042. name: "Back",
  8043. image: {
  8044. source: "./media/characters/mandake/back.svg"
  8045. }
  8046. }
  8047. },
  8048. [
  8049. {
  8050. name: "Normal",
  8051. height: math.unit(7, "feet"),
  8052. default: true
  8053. },
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(78, "feet")
  8057. },
  8058. {
  8059. name: "Macro+",
  8060. height: math.unit(300, "meters")
  8061. },
  8062. {
  8063. name: "Macro++",
  8064. height: math.unit(2400, "feet")
  8065. },
  8066. {
  8067. name: "Megamacro",
  8068. height: math.unit(5167, "meters")
  8069. },
  8070. {
  8071. name: "Gigamacro",
  8072. height: math.unit(41769, "miles")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(120, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/yozey/front.svg"
  8085. }
  8086. },
  8087. frontAlt: {
  8088. height: math.unit(6, "feet"),
  8089. weight: math.unit(120, "lbs"),
  8090. name: "Front (Alt)",
  8091. image: {
  8092. source: "./media/characters/yozey/front-alt.svg"
  8093. }
  8094. },
  8095. side: {
  8096. height: math.unit(6, "feet"),
  8097. weight: math.unit(120, "lbs"),
  8098. name: "Side",
  8099. image: {
  8100. source: "./media/characters/yozey/side.svg"
  8101. }
  8102. },
  8103. },
  8104. [
  8105. {
  8106. name: "Micro",
  8107. height: math.unit(3, "inches"),
  8108. default: true
  8109. },
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(6, "feet")
  8113. }
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(6, "feet"),
  8121. weight: math.unit(103, "lbs"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/valeska-voss/front.svg"
  8125. }
  8126. }
  8127. },
  8128. [
  8129. {
  8130. name: "Mini-Sized Sub",
  8131. height: math.unit(3.1, "inches")
  8132. },
  8133. {
  8134. name: "Mid-Sized Sub",
  8135. height: math.unit(6.2, "inches")
  8136. },
  8137. {
  8138. name: "Full-Sized Sub",
  8139. height: math.unit(9.3, "inches")
  8140. },
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(5 + 2 / 12, "foot"),
  8144. default: true
  8145. },
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8150. {
  8151. front: {
  8152. height: math.unit(6, "feet"),
  8153. weight: math.unit(160, "lbs"),
  8154. name: "Front",
  8155. image: {
  8156. source: "./media/characters/gene-zeta/front.svg",
  8157. extra: 3006 / 2826,
  8158. bottom: 182 / 3188
  8159. }
  8160. }
  8161. },
  8162. [
  8163. {
  8164. name: "Micro",
  8165. height: math.unit(6, "inches")
  8166. },
  8167. {
  8168. name: "Normal",
  8169. height: math.unit(5 + 11 / 12, "foot"),
  8170. default: true
  8171. },
  8172. {
  8173. name: "Macro",
  8174. height: math.unit(140, "feet")
  8175. },
  8176. {
  8177. name: "Supercharged",
  8178. height: math.unit(2500, "feet")
  8179. },
  8180. ]
  8181. ))
  8182. characterMakers.push(() => makeCharacter(
  8183. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8184. {
  8185. front: {
  8186. height: math.unit(6, "feet"),
  8187. weight: math.unit(350, "lbs"),
  8188. name: "Front",
  8189. image: {
  8190. source: "./media/characters/razinox/front.svg",
  8191. extra: 1686 / 1548,
  8192. bottom: 28.2 / 1868
  8193. }
  8194. },
  8195. back: {
  8196. height: math.unit(6, "feet"),
  8197. weight: math.unit(350, "lbs"),
  8198. name: "Back",
  8199. image: {
  8200. source: "./media/characters/razinox/back.svg",
  8201. extra: 1660 / 1590,
  8202. bottom: 15 / 1665
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Normal",
  8209. height: math.unit(10 + 8 / 12, "foot")
  8210. },
  8211. {
  8212. name: "Minimacro",
  8213. height: math.unit(15, "foot")
  8214. },
  8215. {
  8216. name: "Macro",
  8217. height: math.unit(60, "foot"),
  8218. default: true
  8219. },
  8220. {
  8221. name: "Megamacro",
  8222. height: math.unit(5, "miles")
  8223. },
  8224. {
  8225. name: "Gigamacro",
  8226. height: math.unit(6000, "miles")
  8227. },
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(6, "feet"),
  8235. weight: math.unit(150, "lbs"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/cobalt/front.svg"
  8239. }
  8240. }
  8241. },
  8242. [
  8243. {
  8244. name: "Normal",
  8245. height: math.unit(8 + 1 / 12, "foot")
  8246. },
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(111, "foot"),
  8250. default: true
  8251. },
  8252. {
  8253. name: "Supracosmic",
  8254. height: math.unit(1e42, "feet")
  8255. },
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8260. {
  8261. front: {
  8262. height: math.unit(5, "inches"),
  8263. name: "Front",
  8264. image: {
  8265. source: "./media/characters/amanda/front.svg",
  8266. extra: 926/791,
  8267. bottom: 38/964
  8268. }
  8269. },
  8270. back: {
  8271. height: math.unit(5, "inches"),
  8272. name: "Back",
  8273. image: {
  8274. source: "./media/characters/amanda/back.svg",
  8275. extra: 909/805,
  8276. bottom: 43/952
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Micro",
  8283. height: math.unit(5, "inches"),
  8284. default: true
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8290. {
  8291. front: {
  8292. height: math.unit(2.75, "meters"),
  8293. weight: math.unit(1200, "lb"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/teal/front.svg",
  8297. extra: 2463 / 2320,
  8298. bottom: 166 / 2629
  8299. }
  8300. },
  8301. back: {
  8302. height: math.unit(2.75, "meters"),
  8303. weight: math.unit(1200, "lb"),
  8304. name: "Back",
  8305. image: {
  8306. source: "./media/characters/teal/back.svg",
  8307. extra: 2580 / 2489,
  8308. bottom: 151 / 2731
  8309. }
  8310. },
  8311. sitting: {
  8312. height: math.unit(1.9, "meters"),
  8313. weight: math.unit(1200, "lb"),
  8314. name: "Sitting",
  8315. image: {
  8316. source: "./media/characters/teal/sitting.svg",
  8317. extra: 623 / 590,
  8318. bottom: 121 / 744
  8319. }
  8320. },
  8321. standing: {
  8322. height: math.unit(2.75, "meters"),
  8323. weight: math.unit(1200, "lb"),
  8324. name: "Standing",
  8325. image: {
  8326. source: "./media/characters/teal/standing.svg",
  8327. extra: 923 / 893,
  8328. bottom: 60 / 983
  8329. }
  8330. },
  8331. stretching: {
  8332. height: math.unit(3.65, "meters"),
  8333. weight: math.unit(1200, "lb"),
  8334. name: "Stretching",
  8335. image: {
  8336. source: "./media/characters/teal/stretching.svg",
  8337. extra: 1276 / 1244,
  8338. bottom: 0 / 1276
  8339. }
  8340. },
  8341. legged: {
  8342. height: math.unit(1.3, "meters"),
  8343. weight: math.unit(100, "lb"),
  8344. name: "Legged",
  8345. image: {
  8346. source: "./media/characters/teal/legged.svg",
  8347. extra: 462 / 437,
  8348. bottom: 24 / 486
  8349. }
  8350. },
  8351. naga: {
  8352. height: math.unit(5.4, "meters"),
  8353. weight: math.unit(4000, "lb"),
  8354. name: "Naga",
  8355. image: {
  8356. source: "./media/characters/teal/naga.svg",
  8357. extra: 1902 / 1858,
  8358. bottom: 0 / 1902
  8359. }
  8360. },
  8361. hand: {
  8362. height: math.unit(0.52, "meters"),
  8363. name: "Hand",
  8364. image: {
  8365. source: "./media/characters/teal/hand.svg"
  8366. }
  8367. },
  8368. maw: {
  8369. height: math.unit(0.43, "meters"),
  8370. name: "Maw",
  8371. image: {
  8372. source: "./media/characters/teal/maw.svg"
  8373. }
  8374. },
  8375. slit: {
  8376. height: math.unit(0.25, "meters"),
  8377. name: "Slit",
  8378. image: {
  8379. source: "./media/characters/teal/slit.svg"
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Normal",
  8386. height: math.unit(2.75, "meters"),
  8387. default: true
  8388. },
  8389. {
  8390. name: "Macro",
  8391. height: math.unit(300, "feet")
  8392. },
  8393. {
  8394. name: "Macro+",
  8395. height: math.unit(2000, "feet")
  8396. },
  8397. ]
  8398. ))
  8399. characterMakers.push(() => makeCharacter(
  8400. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8401. {
  8402. frontCat: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(180, "lbs"),
  8405. name: "Front (Cat)",
  8406. image: {
  8407. source: "./media/characters/ravin-amulet/front-cat.svg"
  8408. }
  8409. },
  8410. frontCatAlt: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(180, "lbs"),
  8413. name: "Front (Alt, Cat)",
  8414. image: {
  8415. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8416. }
  8417. },
  8418. frontWerewolf: {
  8419. height: math.unit(6 * 1.2, "feet"),
  8420. weight: math.unit(225, "lbs"),
  8421. name: "Front (Werewolf)",
  8422. image: {
  8423. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8424. }
  8425. },
  8426. backWerewolf: {
  8427. height: math.unit(6 * 1.2, "feet"),
  8428. weight: math.unit(225, "lbs"),
  8429. name: "Back (Werewolf)",
  8430. image: {
  8431. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8432. }
  8433. },
  8434. },
  8435. [
  8436. {
  8437. name: "Nano",
  8438. height: math.unit(1, "micrometer")
  8439. },
  8440. {
  8441. name: "Micro",
  8442. height: math.unit(1, "inch")
  8443. },
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(6, "feet"),
  8447. default: true
  8448. },
  8449. {
  8450. name: "Macro",
  8451. height: math.unit(60, "feet")
  8452. }
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(165, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/fluoresce/front.svg"
  8464. }
  8465. }
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(6, "cm")
  8471. },
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(5 + 7 / 12, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(56, "feet")
  8480. },
  8481. {
  8482. name: "Megamacro",
  8483. height: math.unit(1.9, "miles")
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(9 + 6 / 12, "feet"),
  8492. weight: math.unit(523, "lbs"),
  8493. name: "Side",
  8494. image: {
  8495. source: "./media/characters/aurora/side.svg",
  8496. extra: 474/393,
  8497. bottom: 5/479
  8498. }
  8499. }
  8500. },
  8501. [
  8502. {
  8503. name: "Normal",
  8504. height: math.unit(9 + 6 / 12, "feet")
  8505. },
  8506. {
  8507. name: "Macro",
  8508. height: math.unit(96, "feet"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Macro+",
  8513. height: math.unit(243, "feet")
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(194, "cm"),
  8522. weight: math.unit(90, "kg"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/ranek/front.svg",
  8526. extra: 1862/1791,
  8527. bottom: 80/1942
  8528. }
  8529. },
  8530. back: {
  8531. height: math.unit(194, "cm"),
  8532. weight: math.unit(90, "kg"),
  8533. name: "Back",
  8534. image: {
  8535. source: "./media/characters/ranek/back.svg",
  8536. extra: 1853/1787,
  8537. bottom: 74/1927
  8538. }
  8539. },
  8540. feral: {
  8541. height: math.unit(30, "cm"),
  8542. weight: math.unit(1.6, "lbs"),
  8543. name: "Feral",
  8544. image: {
  8545. source: "./media/characters/ranek/feral.svg",
  8546. extra: 990/631,
  8547. bottom: 29/1019
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(194, "cm"),
  8555. default: true
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(100, "meters")
  8560. },
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8565. {
  8566. front: {
  8567. height: math.unit(5 + 6 / 12, "feet"),
  8568. weight: math.unit(153, "lbs"),
  8569. name: "Front",
  8570. image: {
  8571. source: "./media/characters/andrew-cooper/front.svg"
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Nano",
  8578. height: math.unit(1, "mm")
  8579. },
  8580. {
  8581. name: "Micro",
  8582. height: math.unit(2, "inches")
  8583. },
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(5 + 6 / 12, "feet"),
  8587. default: true
  8588. }
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(6, "feet"),
  8596. weight: math.unit(180, "lbs"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/akane-sato/front.svg",
  8600. extra: 1219 / 1140
  8601. }
  8602. },
  8603. back: {
  8604. height: math.unit(6, "feet"),
  8605. weight: math.unit(180, "lbs"),
  8606. name: "Back",
  8607. image: {
  8608. source: "./media/characters/akane-sato/back.svg",
  8609. extra: 1219 / 1170
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Normal",
  8616. height: math.unit(2.5, "meters")
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(250, "meters"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Megamacro",
  8625. height: math.unit(25, "km")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(65, "kg"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/rook/front.svg",
  8638. extra: 960 / 950
  8639. }
  8640. }
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(8.8, "feet")
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(88, "feet"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Megamacro",
  8654. height: math.unit(8, "miles")
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(12 + 2 / 12, "feet"),
  8663. weight: math.unit(808, "lbs"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/prodigy/front.svg"
  8667. }
  8668. }
  8669. },
  8670. [
  8671. {
  8672. name: "Normal",
  8673. height: math.unit(12 + 2 / 12, "feet"),
  8674. default: true
  8675. },
  8676. {
  8677. name: "Macro",
  8678. height: math.unit(143, "feet")
  8679. },
  8680. {
  8681. name: "Macro+",
  8682. height: math.unit(400, "feet")
  8683. },
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8688. {
  8689. front: {
  8690. height: math.unit(6, "feet"),
  8691. weight: math.unit(225, "lbs"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/daniel/front.svg"
  8695. }
  8696. },
  8697. leaning: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(225, "lbs"),
  8700. name: "Leaning",
  8701. image: {
  8702. source: "./media/characters/daniel/leaning.svg"
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(1000, "feet"),
  8710. default: true
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(88, "lbs"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/chiros/front.svg",
  8723. extra: 306 / 226
  8724. }
  8725. },
  8726. side: {
  8727. height: math.unit(6, "feet"),
  8728. weight: math.unit(88, "lbs"),
  8729. name: "Side",
  8730. image: {
  8731. source: "./media/characters/chiros/side.svg",
  8732. extra: 306 / 226
  8733. }
  8734. },
  8735. },
  8736. [
  8737. {
  8738. name: "Normal",
  8739. height: math.unit(6, "cm"),
  8740. default: true
  8741. },
  8742. ]
  8743. ))
  8744. characterMakers.push(() => makeCharacter(
  8745. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8746. {
  8747. front: {
  8748. height: math.unit(6, "feet"),
  8749. weight: math.unit(100, "lbs"),
  8750. name: "Front",
  8751. image: {
  8752. source: "./media/characters/selka/front.svg",
  8753. extra: 947 / 887
  8754. }
  8755. }
  8756. },
  8757. [
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(5, "cm"),
  8761. default: true
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(8 + 3 / 12, "feet"),
  8770. weight: math.unit(424, "lbs"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/verin/front.svg",
  8774. extra: 1845 / 1550
  8775. }
  8776. },
  8777. frontArmored: {
  8778. height: math.unit(8 + 3 / 12, "feet"),
  8779. weight: math.unit(424, "lbs"),
  8780. name: "Front (Armored)",
  8781. image: {
  8782. source: "./media/characters/verin/front-armor.svg",
  8783. extra: 1845 / 1550,
  8784. bottom: 0.01
  8785. }
  8786. },
  8787. back: {
  8788. height: math.unit(8 + 3 / 12, "feet"),
  8789. weight: math.unit(424, "lbs"),
  8790. name: "Back",
  8791. image: {
  8792. source: "./media/characters/verin/back.svg",
  8793. bottom: 0.1,
  8794. extra: 1
  8795. }
  8796. },
  8797. foot: {
  8798. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8799. name: "Foot",
  8800. image: {
  8801. source: "./media/characters/verin/foot.svg"
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(8 + 3 / 12, "feet")
  8809. },
  8810. {
  8811. name: "Minimacro",
  8812. height: math.unit(21, "feet"),
  8813. default: true
  8814. },
  8815. {
  8816. name: "Macro",
  8817. height: math.unit(626, "feet")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(2.718, "meters"),
  8826. weight: math.unit(150, "lbs"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/sovrim-terraquian/front.svg",
  8830. extra: 1752/1689,
  8831. bottom: 36/1788
  8832. }
  8833. },
  8834. back: {
  8835. height: math.unit(2.718, "meters"),
  8836. weight: math.unit(150, "lbs"),
  8837. name: "Back",
  8838. image: {
  8839. source: "./media/characters/sovrim-terraquian/back.svg",
  8840. extra: 1698/1657,
  8841. bottom: 58/1756
  8842. }
  8843. },
  8844. tongue: {
  8845. height: math.unit(2.865, "feet"),
  8846. name: "Tongue",
  8847. image: {
  8848. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8849. }
  8850. },
  8851. hand: {
  8852. height: math.unit(1.61, "feet"),
  8853. name: "Hand",
  8854. image: {
  8855. source: "./media/characters/sovrim-terraquian/hand.svg"
  8856. }
  8857. },
  8858. foot: {
  8859. height: math.unit(1.05, "feet"),
  8860. name: "Foot",
  8861. image: {
  8862. source: "./media/characters/sovrim-terraquian/foot.svg"
  8863. }
  8864. },
  8865. footAlt: {
  8866. height: math.unit(0.88, "feet"),
  8867. name: "Foot (Alt)",
  8868. image: {
  8869. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8870. }
  8871. },
  8872. },
  8873. [
  8874. {
  8875. name: "Micro",
  8876. height: math.unit(2, "inches")
  8877. },
  8878. {
  8879. name: "Small",
  8880. height: math.unit(1, "meter")
  8881. },
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(Math.E, "meters"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(20, "meters")
  8890. },
  8891. {
  8892. name: "Macro+",
  8893. height: math.unit(400, "meters")
  8894. },
  8895. ]
  8896. ))
  8897. characterMakers.push(() => makeCharacter(
  8898. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8899. {
  8900. front: {
  8901. height: math.unit(7, "feet"),
  8902. weight: math.unit(489, "lbs"),
  8903. name: "Front",
  8904. image: {
  8905. source: "./media/characters/reece-silvermane/front.svg",
  8906. bottom: 0.02,
  8907. extra: 1
  8908. }
  8909. },
  8910. },
  8911. [
  8912. {
  8913. name: "Macro",
  8914. height: math.unit(1.5, "miles"),
  8915. default: true
  8916. },
  8917. ]
  8918. ))
  8919. characterMakers.push(() => makeCharacter(
  8920. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8921. {
  8922. front: {
  8923. height: math.unit(6, "feet"),
  8924. weight: math.unit(78, "kg"),
  8925. name: "Front",
  8926. image: {
  8927. source: "./media/characters/kane/front.svg",
  8928. extra: 978 / 899
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(2.1, "m"),
  8936. },
  8937. {
  8938. name: "Macro",
  8939. height: math.unit(1, "km"),
  8940. default: true
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(200, "kg"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/tegon/front.svg",
  8953. bottom: 0.01,
  8954. extra: 1
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Micro",
  8961. height: math.unit(1, "inch")
  8962. },
  8963. {
  8964. name: "Normal",
  8965. height: math.unit(6 + 3 / 12, "feet"),
  8966. default: true
  8967. },
  8968. {
  8969. name: "Macro",
  8970. height: math.unit(300, "feet")
  8971. },
  8972. {
  8973. name: "Megamacro",
  8974. height: math.unit(69, "miles")
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8980. {
  8981. side: {
  8982. height: math.unit(6, "feet"),
  8983. weight: math.unit(2304, "lbs"),
  8984. name: "Side",
  8985. image: {
  8986. source: "./media/characters/arcturax/side.svg",
  8987. extra: 790 / 376,
  8988. bottom: 0.01
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Micro",
  8995. height: math.unit(2, "inch")
  8996. },
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(6, "feet")
  9000. },
  9001. {
  9002. name: "Macro",
  9003. height: math.unit(39, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Megamacro",
  9008. height: math.unit(7, "miles")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(50, "lbs"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/sentri/front.svg",
  9021. extra: 1750 / 1570,
  9022. bottom: 0.025
  9023. }
  9024. },
  9025. frontAlt: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(50, "lbs"),
  9028. name: "Front (Alt)",
  9029. image: {
  9030. source: "./media/characters/sentri/front-alt.svg",
  9031. extra: 1750 / 1570,
  9032. bottom: 0.025
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Normal",
  9039. height: math.unit(15, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Macro",
  9044. height: math.unit(2500, "feet")
  9045. }
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(5 + 8 / 12, "feet"),
  9053. weight: math.unit(130, "lbs"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/corvin/front.svg",
  9057. extra: 1803 / 1629
  9058. }
  9059. },
  9060. frontShirt: {
  9061. height: math.unit(5 + 8 / 12, "feet"),
  9062. weight: math.unit(130, "lbs"),
  9063. name: "Front (Shirt)",
  9064. image: {
  9065. source: "./media/characters/corvin/front-shirt.svg",
  9066. extra: 1803 / 1629
  9067. }
  9068. },
  9069. frontPoncho: {
  9070. height: math.unit(5 + 8 / 12, "feet"),
  9071. weight: math.unit(130, "lbs"),
  9072. name: "Front (Poncho)",
  9073. image: {
  9074. source: "./media/characters/corvin/front-poncho.svg",
  9075. extra: 1803 / 1629
  9076. }
  9077. },
  9078. side: {
  9079. height: math.unit(5 + 8 / 12, "feet"),
  9080. weight: math.unit(130, "lbs"),
  9081. name: "Side",
  9082. image: {
  9083. source: "./media/characters/corvin/side.svg",
  9084. extra: 1012 / 945
  9085. }
  9086. },
  9087. back: {
  9088. height: math.unit(5 + 8 / 12, "feet"),
  9089. weight: math.unit(130, "lbs"),
  9090. name: "Back",
  9091. image: {
  9092. source: "./media/characters/corvin/back.svg",
  9093. extra: 1803 / 1629
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Micro",
  9100. height: math.unit(3, "inches")
  9101. },
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(5 + 8 / 12, "feet")
  9105. },
  9106. {
  9107. name: "Macro",
  9108. height: math.unit(300, "feet"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Megamacro",
  9113. height: math.unit(500, "miles")
  9114. }
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(6, "feet"),
  9122. weight: math.unit(135, "lbs"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/q/front.svg",
  9126. extra: 854 / 752,
  9127. bottom: 0.005
  9128. }
  9129. },
  9130. back: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(130, "lbs"),
  9133. name: "Back",
  9134. image: {
  9135. source: "./media/characters/q/back.svg",
  9136. extra: 854 / 752
  9137. }
  9138. },
  9139. },
  9140. [
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(90, "feet"),
  9144. default: true
  9145. },
  9146. {
  9147. name: "Extra Macro",
  9148. height: math.unit(300, "feet"),
  9149. },
  9150. {
  9151. name: "BIG WALF",
  9152. height: math.unit(750, "feet"),
  9153. },
  9154. ]
  9155. ))
  9156. characterMakers.push(() => makeCharacter(
  9157. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9158. {
  9159. front: {
  9160. height: math.unit(3, "feet"),
  9161. weight: math.unit(28, "lbs"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/citrine/front.svg"
  9165. }
  9166. }
  9167. },
  9168. [
  9169. {
  9170. name: "Normal",
  9171. height: math.unit(3, "feet"),
  9172. default: true
  9173. }
  9174. ]
  9175. ))
  9176. characterMakers.push(() => makeCharacter(
  9177. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9178. {
  9179. front: {
  9180. height: math.unit(14, "feet"),
  9181. weight: math.unit(1450, "kg"),
  9182. preyCapacity: math.unit(15, "people"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/aura-starwind/front.svg",
  9186. extra: 1440/1327,
  9187. bottom: 11/1451
  9188. }
  9189. },
  9190. side: {
  9191. height: math.unit(14, "feet"),
  9192. weight: math.unit(1450, "kg"),
  9193. preyCapacity: math.unit(15, "people"),
  9194. name: "Side",
  9195. image: {
  9196. source: "./media/characters/aura-starwind/side.svg",
  9197. extra: 1654 / 1497
  9198. }
  9199. },
  9200. taur: {
  9201. height: math.unit(18, "feet"),
  9202. weight: math.unit(5500, "kg"),
  9203. preyCapacity: math.unit(50, "people"),
  9204. name: "Taur",
  9205. image: {
  9206. source: "./media/characters/aura-starwind/taur.svg",
  9207. extra: 1760 / 1650
  9208. }
  9209. },
  9210. feral: {
  9211. height: math.unit(46, "feet"),
  9212. weight: math.unit(25000, "kg"),
  9213. preyCapacity: math.unit(120, "people"),
  9214. name: "Feral",
  9215. image: {
  9216. source: "./media/characters/aura-starwind/feral.svg"
  9217. }
  9218. },
  9219. },
  9220. [
  9221. {
  9222. name: "Normal",
  9223. height: math.unit(14, "feet"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Macro",
  9228. height: math.unit(50, "meters")
  9229. },
  9230. {
  9231. name: "Megamacro",
  9232. height: math.unit(5000, "meters")
  9233. },
  9234. {
  9235. name: "Gigamacro",
  9236. height: math.unit(100000, "kilometers")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(2 + 7 / 12, "feet"),
  9245. weight: math.unit(32, "lbs"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/rivet/front.svg",
  9249. extra: 1716 / 1658,
  9250. bottom: 0.03
  9251. }
  9252. },
  9253. foot: {
  9254. height: math.unit(0.551, "feet"),
  9255. name: "Rivet's Foot",
  9256. image: {
  9257. source: "./media/characters/rivet/foot.svg"
  9258. },
  9259. rename: true
  9260. }
  9261. },
  9262. [
  9263. {
  9264. name: "Micro",
  9265. height: math.unit(1.5, "inches"),
  9266. },
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(2 + 7 / 12, "feet"),
  9270. default: true
  9271. },
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(85, "feet")
  9275. },
  9276. {
  9277. name: "Megamacro",
  9278. height: math.unit(2.2, "km")
  9279. }
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(5 + 9 / 12, "feet"),
  9287. weight: math.unit(150, "lbs"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/coffee/front.svg",
  9291. extra: 946/880,
  9292. bottom: 66/1012
  9293. }
  9294. },
  9295. foot: {
  9296. height: math.unit(1.29, "feet"),
  9297. name: "Foot",
  9298. image: {
  9299. source: "./media/characters/coffee/foot.svg"
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Micro",
  9306. height: math.unit(2, "inches"),
  9307. },
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(5 + 9 / 12, "feet"),
  9311. default: true
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(800, "feet")
  9316. },
  9317. {
  9318. name: "Megamacro",
  9319. height: math.unit(25, "miles")
  9320. }
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(6, "feet"),
  9328. weight: math.unit(200, "lbs"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/chari-gal/front.svg",
  9332. extra: 1568 / 1385,
  9333. bottom: 0.047
  9334. }
  9335. },
  9336. gigantamax: {
  9337. height: math.unit(6 * 16, "feet"),
  9338. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9339. name: "Gigantamax",
  9340. image: {
  9341. source: "./media/characters/chari-gal/gigantamax.svg",
  9342. extra: 1124 / 888,
  9343. bottom: 0.03
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(5 + 7 / 12, "feet")
  9351. },
  9352. {
  9353. name: "Macro",
  9354. height: math.unit(200, "feet"),
  9355. default: true
  9356. }
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(150, "lbs"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/nova/front.svg",
  9368. extra: 5000 / 4722,
  9369. bottom: 0.02
  9370. }
  9371. }
  9372. },
  9373. [
  9374. {
  9375. name: "Micro-",
  9376. height: math.unit(0.8, "inches")
  9377. },
  9378. {
  9379. name: "Micro",
  9380. height: math.unit(2, "inches"),
  9381. default: true
  9382. },
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9387. {
  9388. koboldFront: {
  9389. height: math.unit(3 + 1 / 12, "feet"),
  9390. weight: math.unit(21.7, "lbs"),
  9391. name: "Front",
  9392. image: {
  9393. source: "./media/characters/argent/kobold-front.svg",
  9394. extra: 1471 / 1331,
  9395. bottom: 100.8 / 1575.5
  9396. },
  9397. form: "kobold",
  9398. default: true
  9399. },
  9400. dragonFront: {
  9401. height: math.unit(75, "inches"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/argent/dragon-front.svg",
  9405. extra: 1389/1248,
  9406. bottom: 54/1443
  9407. },
  9408. form: "dragon",
  9409. },
  9410. dragonBack: {
  9411. height: math.unit(75, "inches"),
  9412. name: "Back",
  9413. image: {
  9414. source: "./media/characters/argent/dragon-back.svg",
  9415. extra: 1399/1271,
  9416. bottom: 23/1422
  9417. },
  9418. form: "dragon",
  9419. },
  9420. dragonDressed: {
  9421. height: math.unit(75, "inches"),
  9422. name: "Dressed",
  9423. image: {
  9424. source: "./media/characters/argent/dragon-dressed.svg",
  9425. extra: 1350/1215,
  9426. bottom: 26/1376
  9427. },
  9428. form: "dragon"
  9429. },
  9430. dragonHead: {
  9431. height: math.unit(23.5, "inches"),
  9432. name: "Head",
  9433. image: {
  9434. source: "./media/characters/argent/dragon-head.svg"
  9435. },
  9436. form: "dragon",
  9437. },
  9438. },
  9439. [
  9440. {
  9441. name: "Micro",
  9442. height: math.unit(2, "inches"),
  9443. form: "kobold",
  9444. },
  9445. {
  9446. name: "Normal",
  9447. height: math.unit(3 + 1 / 12, "feet"),
  9448. form: "kobold",
  9449. default: true
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(120, "feet"),
  9454. form: "kobold",
  9455. },
  9456. {
  9457. name: "Speck",
  9458. height: math.unit(1, "mm"),
  9459. form: "dragon",
  9460. },
  9461. {
  9462. name: "Tiny",
  9463. height: math.unit(1, "cm"),
  9464. form: "dragon",
  9465. },
  9466. {
  9467. name: "Micro",
  9468. height: math.unit(5, "cm"),
  9469. form: "dragon",
  9470. },
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(75, "inches"),
  9474. form: "dragon",
  9475. default: true
  9476. },
  9477. {
  9478. name: "Extra Tall",
  9479. height: math.unit(9, "feet"),
  9480. form: "dragon",
  9481. },
  9482. {
  9483. name: "Inconvenient",
  9484. height: math.unit(5, "meters"),
  9485. form: "dragon",
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(70, "meters"),
  9490. form: "dragon",
  9491. },
  9492. {
  9493. name: "Macro+",
  9494. height: math.unit(250, "meters"),
  9495. form: "dragon",
  9496. },
  9497. {
  9498. name: "Megamacro",
  9499. height: math.unit(20, "km"),
  9500. form: "dragon",
  9501. },
  9502. {
  9503. name: "Mountainous",
  9504. height: math.unit(100, "km"),
  9505. form: "dragon",
  9506. },
  9507. {
  9508. name: "Continental",
  9509. height: math.unit(2, "megameters"),
  9510. form: "dragon",
  9511. },
  9512. {
  9513. name: "Too Big",
  9514. height: math.unit(900, "megameters"),
  9515. form: "dragon",
  9516. },
  9517. ],
  9518. {
  9519. "kobold": {
  9520. name: "Kobold",
  9521. default: true
  9522. },
  9523. "dragon": {
  9524. name: "Dragon",
  9525. },
  9526. }
  9527. ))
  9528. characterMakers.push(() => makeCharacter(
  9529. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9530. {
  9531. lamp: {
  9532. height: math.unit(7 * 1559 / 989, "feet"),
  9533. name: "Magic Lamp",
  9534. image: {
  9535. source: "./media/characters/mira-al-cul/lamp.svg",
  9536. extra: 1617 / 1559
  9537. }
  9538. },
  9539. front: {
  9540. height: math.unit(7, "feet"),
  9541. name: "Front",
  9542. image: {
  9543. source: "./media/characters/mira-al-cul/front.svg",
  9544. extra: 1044 / 990
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Heavily Restricted",
  9551. height: math.unit(7 * 1559 / 989, "feet")
  9552. },
  9553. {
  9554. name: "Freshly Freed",
  9555. height: math.unit(50 * 1559 / 989, "feet")
  9556. },
  9557. {
  9558. name: "World Encompassing",
  9559. height: math.unit(10000 * 1559 / 989, "miles")
  9560. },
  9561. {
  9562. name: "Galactic",
  9563. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9564. },
  9565. {
  9566. name: "Palmed Universe",
  9567. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9568. default: true
  9569. },
  9570. {
  9571. name: "Multiversal Matriarch",
  9572. height: math.unit(8.87e10, "yottameters")
  9573. },
  9574. {
  9575. name: "Void Mother",
  9576. height: math.unit(3.14e110, "yottaparsecs")
  9577. },
  9578. {
  9579. name: "Toying with Transcendence",
  9580. height: math.unit(1e307, "meters")
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9586. {
  9587. front: {
  9588. height: math.unit(17 + 1 / 12, "feet"),
  9589. weight: math.unit(476.2 * 5, "lbs"),
  9590. name: "Front",
  9591. image: {
  9592. source: "./media/characters/kuro-shi-uchū/front.svg",
  9593. extra: 2329 / 1835,
  9594. bottom: 0.02
  9595. }
  9596. },
  9597. },
  9598. [
  9599. {
  9600. name: "Micro",
  9601. height: math.unit(2, "inches")
  9602. },
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(12, "meters")
  9606. },
  9607. {
  9608. name: "Planetary",
  9609. height: math.unit(0.00929, "AU"),
  9610. default: true
  9611. },
  9612. {
  9613. name: "Universal",
  9614. height: math.unit(20, "gigaparsecs")
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9620. {
  9621. front: {
  9622. height: math.unit(5 + 2 / 12, "feet"),
  9623. weight: math.unit(120, "lbs"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/katherine/front.svg",
  9627. extra: 2075 / 1969
  9628. }
  9629. },
  9630. dress: {
  9631. height: math.unit(5 + 2 / 12, "feet"),
  9632. weight: math.unit(120, "lbs"),
  9633. name: "Dress",
  9634. image: {
  9635. source: "./media/characters/katherine/dress.svg",
  9636. extra: 2258 / 2064
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Micro",
  9643. height: math.unit(1, "inches"),
  9644. default: true
  9645. },
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(5 + 2 / 12, "feet")
  9649. },
  9650. {
  9651. name: "Macro",
  9652. height: math.unit(100, "meters")
  9653. },
  9654. {
  9655. name: "Megamacro",
  9656. height: math.unit(80, "miles")
  9657. },
  9658. ]
  9659. ))
  9660. characterMakers.push(() => makeCharacter(
  9661. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9662. {
  9663. front: {
  9664. height: math.unit(7 + 8 / 12, "feet"),
  9665. weight: math.unit(250, "lbs"),
  9666. name: "Front",
  9667. image: {
  9668. source: "./media/characters/yevis/front.svg",
  9669. extra: 1938 / 1755
  9670. }
  9671. }
  9672. },
  9673. [
  9674. {
  9675. name: "Mortal",
  9676. height: math.unit(7 + 8 / 12, "feet")
  9677. },
  9678. {
  9679. name: "Battle",
  9680. height: math.unit(25 + 11 / 12, "feet")
  9681. },
  9682. {
  9683. name: "Wrath",
  9684. height: math.unit(1654 + 11 / 12, "feet")
  9685. },
  9686. {
  9687. name: "Planet Destroyer",
  9688. height: math.unit(12000, "miles")
  9689. },
  9690. {
  9691. name: "Galaxy Conqueror",
  9692. height: math.unit(1.45, "zettameters"),
  9693. default: true
  9694. },
  9695. {
  9696. name: "Universal War",
  9697. height: math.unit(184, "gigaparsecs")
  9698. },
  9699. {
  9700. name: "Eternity War",
  9701. height: math.unit(1.98e55, "yottaparsecs")
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(5 + 8 / 12, "feet"),
  9710. weight: math.unit(63, "kg"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/xavier/front.svg",
  9714. extra: 944 / 883
  9715. }
  9716. },
  9717. frontStretch: {
  9718. height: math.unit(5 + 8 / 12, "feet"),
  9719. weight: math.unit(63, "kg"),
  9720. name: "Stretching",
  9721. image: {
  9722. source: "./media/characters/xavier/front-stretch.svg",
  9723. extra: 962 / 820
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(5 + 8 / 12, "feet")
  9731. },
  9732. {
  9733. name: "Macro",
  9734. height: math.unit(100, "meters"),
  9735. default: true
  9736. },
  9737. {
  9738. name: "McLargeHuge",
  9739. height: math.unit(10, "miles")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(5 + 5 / 12, "feet"),
  9748. weight: math.unit(150, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/joshii/front.svg",
  9752. extra: 765 / 653,
  9753. bottom: 51 / 816
  9754. }
  9755. },
  9756. foot: {
  9757. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9758. name: "Foot",
  9759. image: {
  9760. source: "./media/characters/joshii/foot.svg"
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Micro",
  9767. height: math.unit(2, "inches")
  9768. },
  9769. {
  9770. name: "Normal",
  9771. height: math.unit(5 + 5 / 12, "feet")
  9772. },
  9773. {
  9774. name: "Macro",
  9775. height: math.unit(785, "feet"),
  9776. default: true
  9777. },
  9778. {
  9779. name: "Megamacro",
  9780. height: math.unit(24.5, "miles")
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9786. {
  9787. front: {
  9788. height: math.unit(6, "feet"),
  9789. weight: math.unit(150, "lb"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/goddess-elizabeth/front.svg",
  9793. extra: 1800 / 1525,
  9794. bottom: 0.005
  9795. }
  9796. },
  9797. foot: {
  9798. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9799. name: "Foot",
  9800. image: {
  9801. source: "./media/characters/goddess-elizabeth/foot.svg"
  9802. }
  9803. },
  9804. mouth: {
  9805. height: math.unit(6, "feet"),
  9806. name: "Mouth",
  9807. image: {
  9808. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9809. }
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Micro",
  9815. height: math.unit(12, "feet")
  9816. },
  9817. {
  9818. name: "Normal",
  9819. height: math.unit(80, "miles"),
  9820. default: true
  9821. },
  9822. {
  9823. name: "Macro",
  9824. height: math.unit(15000, "parsecs")
  9825. },
  9826. ]
  9827. ))
  9828. characterMakers.push(() => makeCharacter(
  9829. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9830. {
  9831. front: {
  9832. height: math.unit(5 + 9 / 12, "feet"),
  9833. weight: math.unit(144, "lb"),
  9834. name: "Front",
  9835. image: {
  9836. source: "./media/characters/kara/front.svg"
  9837. }
  9838. },
  9839. feet: {
  9840. height: math.unit(6 / 6.765, "feet"),
  9841. name: "Kara's Feet",
  9842. rename: true,
  9843. image: {
  9844. source: "./media/characters/kara/feet.svg"
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Normal",
  9851. height: math.unit(5 + 9 / 12, "feet")
  9852. },
  9853. {
  9854. name: "Macro",
  9855. height: math.unit(174, "feet"),
  9856. default: true
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9862. {
  9863. front: {
  9864. height: math.unit(18, "feet"),
  9865. weight: math.unit(4050, "lb"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/tyrone/front.svg",
  9869. extra: 2405 / 2270,
  9870. bottom: 182 / 2587
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(18, "feet"),
  9878. default: true
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(300, "feet")
  9883. },
  9884. {
  9885. name: "Megamacro",
  9886. height: math.unit(15, "km")
  9887. },
  9888. {
  9889. name: "Gigamacro",
  9890. height: math.unit(500, "km")
  9891. },
  9892. {
  9893. name: "Teramacro",
  9894. height: math.unit(0.5, "gigameters")
  9895. },
  9896. {
  9897. name: "Omnimacro",
  9898. height: math.unit(1e252, "yottauniverse")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(7 + 8 / 12, "feet"),
  9907. weight: math.unit(120, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/danny/front.svg",
  9911. extra: 1490 / 1350
  9912. }
  9913. },
  9914. back: {
  9915. height: math.unit(7 + 8 / 12, "feet"),
  9916. weight: math.unit(120, "lb"),
  9917. name: "Back",
  9918. image: {
  9919. source: "./media/characters/danny/back.svg",
  9920. extra: 1490 / 1350
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(7 + 8 / 12, "feet"),
  9928. default: true
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9934. {
  9935. front: {
  9936. height: math.unit(3.5, "inches"),
  9937. weight: math.unit(19, "grams"),
  9938. name: "Front",
  9939. image: {
  9940. source: "./media/characters/mallow/front.svg",
  9941. extra: 471 / 431
  9942. }
  9943. },
  9944. back: {
  9945. height: math.unit(3.5, "inches"),
  9946. weight: math.unit(19, "grams"),
  9947. name: "Back",
  9948. image: {
  9949. source: "./media/characters/mallow/back.svg",
  9950. extra: 471 / 431
  9951. }
  9952. },
  9953. },
  9954. [
  9955. {
  9956. name: "Normal",
  9957. height: math.unit(3.5, "inches"),
  9958. default: true
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(9, "feet"),
  9967. weight: math.unit(230, "kg"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/starry-aqua/front.svg"
  9971. }
  9972. },
  9973. back: {
  9974. height: math.unit(9, "feet"),
  9975. weight: math.unit(230, "kg"),
  9976. name: "Back",
  9977. image: {
  9978. source: "./media/characters/starry-aqua/back.svg"
  9979. }
  9980. },
  9981. hand: {
  9982. height: math.unit(9 * 0.1168, "feet"),
  9983. name: "Hand",
  9984. image: {
  9985. source: "./media/characters/starry-aqua/hand.svg"
  9986. }
  9987. },
  9988. foot: {
  9989. height: math.unit(9 * 0.18, "feet"),
  9990. name: "Foot",
  9991. image: {
  9992. source: "./media/characters/starry-aqua/foot.svg"
  9993. }
  9994. }
  9995. },
  9996. [
  9997. {
  9998. name: "Micro",
  9999. height: math.unit(3, "inches")
  10000. },
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(9, "feet")
  10004. },
  10005. {
  10006. name: "Macro",
  10007. height: math.unit(300, "feet"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Megamacro",
  10012. height: math.unit(3200, "feet")
  10013. }
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(15, "feet"),
  10021. weight: math.unit(5026, "lb"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/luka-towers/front.svg",
  10025. extra: 1269/1133,
  10026. bottom: 51/1320
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Normal",
  10033. height: math.unit(15, "feet"),
  10034. default: true
  10035. },
  10036. {
  10037. name: "Minimacro",
  10038. height: math.unit(25, "feet")
  10039. },
  10040. {
  10041. name: "Macro",
  10042. height: math.unit(320, "feet")
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(35000, "feet")
  10047. },
  10048. {
  10049. name: "Gigamacro",
  10050. height: math.unit(4000, "miles")
  10051. },
  10052. {
  10053. name: "Teramacro",
  10054. height: math.unit(15000, "miles")
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(6, "feet"),
  10063. weight: math.unit(150, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/natalie-nightring/front.svg",
  10067. extra: 1,
  10068. bottom: 0.06
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Uh Oh",
  10075. height: math.unit(0.1, "mm")
  10076. },
  10077. {
  10078. name: "Small",
  10079. height: math.unit(3, "inches")
  10080. },
  10081. {
  10082. name: "Human Scale",
  10083. height: math.unit(6, "feet")
  10084. },
  10085. {
  10086. name: "Librarian",
  10087. height: math.unit(50, "feet"),
  10088. default: true
  10089. },
  10090. {
  10091. name: "Immense",
  10092. height: math.unit(200, "miles")
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10098. {
  10099. front: {
  10100. height: math.unit(6, "feet"),
  10101. weight: math.unit(180, "lbs"),
  10102. name: "Front",
  10103. image: {
  10104. source: "./media/characters/danni-rosie/front.svg",
  10105. extra: 1260 / 1128,
  10106. bottom: 0.022
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Micro",
  10113. height: math.unit(2, "inches"),
  10114. default: true
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10120. {
  10121. front: {
  10122. height: math.unit(5 + 9 / 12, "feet"),
  10123. weight: math.unit(220, "lb"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/samantha-kruse/front.svg",
  10127. extra: (985 / 935),
  10128. bottom: 0.03
  10129. }
  10130. },
  10131. frontUndressed: {
  10132. height: math.unit(5 + 9 / 12, "feet"),
  10133. weight: math.unit(220, "lb"),
  10134. name: "Front (Undressed)",
  10135. image: {
  10136. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10137. extra: (973 / 923),
  10138. bottom: 0.025
  10139. }
  10140. },
  10141. fat: {
  10142. height: math.unit(5 + 9 / 12, "feet"),
  10143. weight: math.unit(900, "lb"),
  10144. name: "Front (Fat)",
  10145. image: {
  10146. source: "./media/characters/samantha-kruse/fat.svg",
  10147. extra: 2688 / 2561
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(5 + 9 / 12, "feet"),
  10155. default: true
  10156. }
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10161. {
  10162. back: {
  10163. height: math.unit(5 + 4 / 12, "feet"),
  10164. weight: math.unit(4963, "lb"),
  10165. name: "Back",
  10166. image: {
  10167. source: "./media/characters/amelia-rosie/back.svg",
  10168. extra: 1113 / 963,
  10169. bottom: 0.01
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Level 0",
  10176. height: math.unit(5 + 4 / 12, "feet")
  10177. },
  10178. {
  10179. name: "Level 1",
  10180. height: math.unit(164597, "feet"),
  10181. default: true
  10182. },
  10183. {
  10184. name: "Level 2",
  10185. height: math.unit(956243, "miles")
  10186. },
  10187. {
  10188. name: "Level 3",
  10189. height: math.unit(29421709423, "miles")
  10190. },
  10191. {
  10192. name: "Level 4",
  10193. height: math.unit(154, "lightyears")
  10194. },
  10195. {
  10196. name: "Level 5",
  10197. height: math.unit(4738272, "lightyears")
  10198. },
  10199. {
  10200. name: "Level 6",
  10201. height: math.unit(145787152896, "lightyears")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(5 + 11 / 12, "feet"),
  10210. weight: math.unit(65, "kg"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/rook-kitara/front.svg",
  10214. extra: 1347 / 1274,
  10215. bottom: 0.005
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Totally Unfair",
  10222. height: math.unit(1.8, "mm")
  10223. },
  10224. {
  10225. name: "Lap Rookie",
  10226. height: math.unit(1.4, "feet")
  10227. },
  10228. {
  10229. name: "Normal",
  10230. height: math.unit(5 + 11 / 12, "feet"),
  10231. default: true
  10232. },
  10233. {
  10234. name: "How Did This Happen",
  10235. height: math.unit(80, "miles")
  10236. }
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10241. {
  10242. front: {
  10243. height: math.unit(7, "feet"),
  10244. weight: math.unit(300, "lb"),
  10245. name: "Front",
  10246. image: {
  10247. source: "./media/characters/pisces/front.svg",
  10248. extra: 2255 / 2115,
  10249. bottom: 0.03
  10250. }
  10251. },
  10252. back: {
  10253. height: math.unit(7, "feet"),
  10254. weight: math.unit(300, "lb"),
  10255. name: "Back",
  10256. image: {
  10257. source: "./media/characters/pisces/back.svg",
  10258. extra: 2146 / 2055,
  10259. bottom: 0.04
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(7, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Swimming Pool",
  10271. height: math.unit(12.2, "meters")
  10272. },
  10273. {
  10274. name: "Olympic Swimming Pool",
  10275. height: math.unit(56.3, "meters")
  10276. },
  10277. {
  10278. name: "Lake Superior",
  10279. height: math.unit(93900, "meters")
  10280. },
  10281. {
  10282. name: "Mediterranean Sea",
  10283. height: math.unit(644457, "meters")
  10284. },
  10285. {
  10286. name: "World's Oceans",
  10287. height: math.unit(4567491, "meters")
  10288. },
  10289. ]
  10290. ))
  10291. characterMakers.push(() => makeCharacter(
  10292. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10293. {
  10294. front: {
  10295. height: math.unit(2.3, "meters"),
  10296. weight: math.unit(120, "kg"),
  10297. name: "Front",
  10298. image: {
  10299. source: "./media/characters/zelas/front.svg"
  10300. }
  10301. },
  10302. side: {
  10303. height: math.unit(2.3, "meters"),
  10304. weight: math.unit(120, "kg"),
  10305. name: "Side",
  10306. image: {
  10307. source: "./media/characters/zelas/side.svg"
  10308. }
  10309. },
  10310. back: {
  10311. height: math.unit(2.3, "meters"),
  10312. weight: math.unit(120, "kg"),
  10313. name: "Back",
  10314. image: {
  10315. source: "./media/characters/zelas/back.svg"
  10316. }
  10317. },
  10318. foot: {
  10319. height: math.unit(1.116, "feet"),
  10320. name: "Foot",
  10321. image: {
  10322. source: "./media/characters/zelas/foot.svg"
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(2.3, "meters")
  10330. },
  10331. {
  10332. name: "Macro",
  10333. height: math.unit(30, "meters"),
  10334. default: true
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(1, "inch"),
  10343. weight: math.unit(0.21, "grams"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/talbot/front.svg",
  10347. extra: 594 / 544
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Micro",
  10354. height: math.unit(1, "inch"),
  10355. default: true
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10361. {
  10362. front: {
  10363. height: math.unit(3 + 3 / 12, "feet"),
  10364. weight: math.unit(51.8, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/fliss/front.svg",
  10368. extra: 840 / 640
  10369. }
  10370. },
  10371. },
  10372. [
  10373. {
  10374. name: "Teeny Tiny",
  10375. height: math.unit(1, "mm")
  10376. },
  10377. {
  10378. name: "Small",
  10379. height: math.unit(1, "inch"),
  10380. default: true
  10381. },
  10382. {
  10383. name: "Standard Sylveon",
  10384. height: math.unit(3 + 3 / 12, "feet")
  10385. },
  10386. {
  10387. name: "Large Nuisance",
  10388. height: math.unit(33, "feet")
  10389. },
  10390. {
  10391. name: "City Filler",
  10392. height: math.unit(3000, "feet")
  10393. },
  10394. {
  10395. name: "New Horizon",
  10396. height: math.unit(6000, "miles")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(5, "cm"),
  10405. weight: math.unit(1.94, "g"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/fleta/front.svg",
  10409. extra: 835 / 803
  10410. }
  10411. },
  10412. back: {
  10413. height: math.unit(5, "cm"),
  10414. weight: math.unit(1.94, "g"),
  10415. name: "Back",
  10416. image: {
  10417. source: "./media/characters/fleta/back.svg",
  10418. extra: 835 / 803
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Micro",
  10425. height: math.unit(5, "cm"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(6, "feet"),
  10435. weight: math.unit(225, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/dominic/front.svg",
  10439. extra: 1770 / 1620,
  10440. bottom: 0.025
  10441. }
  10442. },
  10443. back: {
  10444. height: math.unit(6, "feet"),
  10445. weight: math.unit(225, "lb"),
  10446. name: "Back",
  10447. image: {
  10448. source: "./media/characters/dominic/back.svg",
  10449. extra: 1745 / 1620,
  10450. bottom: 0.065
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Nano",
  10457. height: math.unit(0.1, "mm")
  10458. },
  10459. {
  10460. name: "Micro-",
  10461. height: math.unit(1, "mm")
  10462. },
  10463. {
  10464. name: "Micro",
  10465. height: math.unit(4, "inches")
  10466. },
  10467. {
  10468. name: "Normal",
  10469. height: math.unit(6 + 4 / 12, "feet"),
  10470. default: true
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(115, "feet")
  10475. },
  10476. {
  10477. name: "Macro+",
  10478. height: math.unit(955, "feet")
  10479. },
  10480. {
  10481. name: "Megamacro",
  10482. height: math.unit(8990, "feet")
  10483. },
  10484. {
  10485. name: "Gigmacro",
  10486. height: math.unit(9310, "miles")
  10487. },
  10488. {
  10489. name: "Teramacro",
  10490. height: math.unit(1567005010, "miles")
  10491. },
  10492. {
  10493. name: "Examacro",
  10494. height: math.unit(1425, "parsecs")
  10495. },
  10496. ]
  10497. ))
  10498. characterMakers.push(() => makeCharacter(
  10499. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10500. {
  10501. front: {
  10502. height: math.unit(400, "feet"),
  10503. weight: math.unit(44444444, "lb"),
  10504. name: "Front",
  10505. image: {
  10506. source: "./media/characters/major-colonel/front.svg"
  10507. }
  10508. },
  10509. back: {
  10510. height: math.unit(400, "feet"),
  10511. weight: math.unit(44444444, "lb"),
  10512. name: "Back",
  10513. image: {
  10514. source: "./media/characters/major-colonel/back.svg"
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(400, "feet"),
  10522. default: true
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10528. {
  10529. catFront: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(120, "lb"),
  10532. name: "Front (Cat Side)",
  10533. image: {
  10534. source: "./media/characters/axel-lycan/cat-front.svg",
  10535. extra: 430 / 402,
  10536. bottom: 43 / 472.35
  10537. }
  10538. },
  10539. catBack: {
  10540. height: math.unit(6, "feet"),
  10541. weight: math.unit(120, "lb"),
  10542. name: "Back (Cat Side)",
  10543. image: {
  10544. source: "./media/characters/axel-lycan/cat-back.svg",
  10545. extra: 447 / 419,
  10546. bottom: 23.3 / 469
  10547. }
  10548. },
  10549. wolfFront: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(120, "lb"),
  10552. name: "Front (Wolf Side)",
  10553. image: {
  10554. source: "./media/characters/axel-lycan/wolf-front.svg",
  10555. extra: 485 / 456,
  10556. bottom: 19 / 504
  10557. }
  10558. },
  10559. wolfBack: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(120, "lb"),
  10562. name: "Back (Wolf Side)",
  10563. image: {
  10564. source: "./media/characters/axel-lycan/wolf-back.svg",
  10565. extra: 475 / 438,
  10566. bottom: 39.2 / 514
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Macro",
  10573. height: math.unit(1, "km"),
  10574. default: true
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(5 + 9 / 12, "feet"),
  10583. weight: math.unit(175, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/vanrel-hyena/front.svg",
  10587. extra: 1086 / 1010,
  10588. bottom: 0.04
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(5 + 9 / 12, "feet"),
  10596. default: true
  10597. },
  10598. ]
  10599. ))
  10600. characterMakers.push(() => makeCharacter(
  10601. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10602. {
  10603. front: {
  10604. height: math.unit(6, "feet"),
  10605. weight: math.unit(103, "lb"),
  10606. name: "Front",
  10607. image: {
  10608. source: "./media/characters/abbott-absol/front.svg",
  10609. extra: 2010 / 1842
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Megamicro",
  10616. height: math.unit(0.1, "mm")
  10617. },
  10618. {
  10619. name: "Micro",
  10620. height: math.unit(1, "inch")
  10621. },
  10622. {
  10623. name: "Normal",
  10624. height: math.unit(6, "feet"),
  10625. default: true
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(264, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/hector/front.svg",
  10638. extra: 2280 / 2130,
  10639. bottom: 0.07
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Normal",
  10646. height: math.unit(12.25, "foot"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(160, "feet")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(150, "lb"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/sal/front.svg",
  10664. extra: 1846 / 1699,
  10665. bottom: 0.04
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Megamacro",
  10672. height: math.unit(10, "miles"),
  10673. default: true
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10679. {
  10680. front: {
  10681. height: math.unit(3, "meters"),
  10682. weight: math.unit(450, "kg"),
  10683. name: "front",
  10684. image: {
  10685. source: "./media/characters/ranger/front.svg",
  10686. extra: 2401 / 2243,
  10687. bottom: 0.05
  10688. }
  10689. },
  10690. },
  10691. [
  10692. {
  10693. name: "Normal",
  10694. height: math.unit(3, "meters"),
  10695. default: true
  10696. },
  10697. ]
  10698. ))
  10699. characterMakers.push(() => makeCharacter(
  10700. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10701. {
  10702. front: {
  10703. height: math.unit(14, "feet"),
  10704. weight: math.unit(800, "kg"),
  10705. name: "Front",
  10706. image: {
  10707. source: "./media/characters/theresa/front.svg",
  10708. extra: 3575 / 3346,
  10709. bottom: 0.03
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Normal",
  10716. height: math.unit(14, "feet"),
  10717. default: true
  10718. },
  10719. ]
  10720. ))
  10721. characterMakers.push(() => makeCharacter(
  10722. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10723. {
  10724. front: {
  10725. height: math.unit(6, "feet"),
  10726. weight: math.unit(3, "kg"),
  10727. name: "Front",
  10728. image: {
  10729. source: "./media/characters/ine/front.svg",
  10730. extra: 678 / 539,
  10731. bottom: 0.023
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Normal",
  10738. height: math.unit(2.265, "feet"),
  10739. default: true
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(5, "feet"),
  10748. weight: math.unit(30, "kg"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/vial/front.svg",
  10752. extra: 1365 / 1277,
  10753. bottom: 0.04
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Normal",
  10760. height: math.unit(5, "feet"),
  10761. default: true
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10767. {
  10768. side: {
  10769. height: math.unit(3.4, "meters"),
  10770. weight: math.unit(1000, "lb"),
  10771. name: "Side",
  10772. image: {
  10773. source: "./media/characters/rovoska/side.svg",
  10774. extra: 4403 / 1515
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(3.4, "meters"),
  10782. default: true
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10788. {
  10789. front: {
  10790. height: math.unit(8, "feet"),
  10791. weight: math.unit(315, "lb"),
  10792. name: "Front",
  10793. image: {
  10794. source: "./media/characters/gunner-rotthbauer/front.svg"
  10795. }
  10796. },
  10797. back: {
  10798. height: math.unit(8, "feet"),
  10799. weight: math.unit(315, "lb"),
  10800. name: "Back",
  10801. image: {
  10802. source: "./media/characters/gunner-rotthbauer/back.svg"
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Micro",
  10809. height: math.unit(3.5, "inches")
  10810. },
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(8, "feet"),
  10814. default: true
  10815. },
  10816. {
  10817. name: "Macro",
  10818. height: math.unit(250, "feet")
  10819. },
  10820. {
  10821. name: "Megamacro",
  10822. height: math.unit(1, "AU")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(5 + 5 / 12, "feet"),
  10831. weight: math.unit(140, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/allatia/front.svg",
  10835. extra: 1227 / 1180,
  10836. bottom: 0.027
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(5 + 5 / 12, "feet")
  10844. },
  10845. {
  10846. name: "Macro",
  10847. height: math.unit(250, "feet"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Megamacro",
  10852. height: math.unit(8, "miles")
  10853. }
  10854. ]
  10855. ))
  10856. characterMakers.push(() => makeCharacter(
  10857. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10858. {
  10859. front: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(120, "lb"),
  10862. name: "Front",
  10863. image: {
  10864. source: "./media/characters/tene/front.svg",
  10865. extra: 814/750,
  10866. bottom: 36/850
  10867. }
  10868. },
  10869. stomping: {
  10870. height: math.unit(2.025, "meters"),
  10871. weight: math.unit(120, "lb"),
  10872. name: "Stomping",
  10873. image: {
  10874. source: "./media/characters/tene/stomping.svg",
  10875. extra: 885/821,
  10876. bottom: 15/900
  10877. }
  10878. },
  10879. sitting: {
  10880. height: math.unit(1, "meter"),
  10881. weight: math.unit(120, "lb"),
  10882. name: "Sitting",
  10883. image: {
  10884. source: "./media/characters/tene/sitting.svg",
  10885. extra: 396/366,
  10886. bottom: 79/475
  10887. }
  10888. },
  10889. smiling: {
  10890. height: math.unit(1.2, "feet"),
  10891. name: "Smiling",
  10892. image: {
  10893. source: "./media/characters/tene/smiling.svg",
  10894. extra: 1364/1071,
  10895. bottom: 0/1364
  10896. }
  10897. },
  10898. smug: {
  10899. height: math.unit(1.3, "feet"),
  10900. name: "Smug",
  10901. image: {
  10902. source: "./media/characters/tene/smug.svg",
  10903. extra: 1323/1082,
  10904. bottom: 0/1323
  10905. }
  10906. },
  10907. feral: {
  10908. height: math.unit(3.9, "feet"),
  10909. weight: math.unit(250, "lb"),
  10910. name: "Feral",
  10911. image: {
  10912. source: "./media/characters/tene/feral.svg",
  10913. extra: 717 / 458,
  10914. bottom: 0.179
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Normal",
  10921. height: math.unit(6, "feet")
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(300, "feet"),
  10926. default: true
  10927. },
  10928. {
  10929. name: "Megamacro",
  10930. height: math.unit(5, "miles")
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10936. {
  10937. side: {
  10938. height: math.unit(6, "feet"),
  10939. name: "Side",
  10940. image: {
  10941. source: "./media/characters/evander/side.svg",
  10942. extra: 877 / 477
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(0.83, "meters"),
  10950. default: true
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(12, "feet"),
  10959. weight: math.unit(1000, "lb"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10963. extra: 1762 / 1611
  10964. }
  10965. },
  10966. back: {
  10967. height: math.unit(12, "feet"),
  10968. weight: math.unit(1000, "lb"),
  10969. name: "Back",
  10970. image: {
  10971. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10972. extra: 1762 / 1611
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Normal",
  10979. height: math.unit(12, "feet"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Kaiju",
  10984. height: math.unit(150, "feet")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/zero-alurus/front.svg"
  10997. }
  10998. },
  10999. back: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Back",
  11003. image: {
  11004. source: "./media/characters/zero-alurus/back.svg"
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Normal",
  11011. height: math.unit(5 + 10 / 12, "feet")
  11012. },
  11013. {
  11014. name: "Macro",
  11015. height: math.unit(60, "feet"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Macro+",
  11020. height: math.unit(450, "feet")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(200, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/mega-shi/front.svg",
  11033. extra: 1279 / 1250,
  11034. bottom: 0.02
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(200, "lb"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/mega-shi/back.svg",
  11043. extra: 1279 / 1250,
  11044. bottom: 0.02
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Micro",
  11051. height: math.unit(16 + 6 / 12, "feet")
  11052. },
  11053. {
  11054. name: "Third Dimension",
  11055. height: math.unit(40, "meters")
  11056. },
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(660, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(10, "miles")
  11065. },
  11066. {
  11067. name: "Planetary Launch",
  11068. height: math.unit(500, "miles")
  11069. },
  11070. {
  11071. name: "Interstellar",
  11072. height: math.unit(1e9, "miles")
  11073. },
  11074. {
  11075. name: "Leaving the Universe",
  11076. height: math.unit(1, "gigaparsec")
  11077. },
  11078. {
  11079. name: "Travelling Universes",
  11080. height: math.unit(30e15, "parsecs")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(5 + 4/12, "feet"),
  11089. weight: math.unit(120, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/odyssey/front.svg",
  11093. extra: 1747/1571,
  11094. bottom: 47/1794
  11095. }
  11096. },
  11097. side: {
  11098. height: math.unit(5.1, "feet"),
  11099. weight: math.unit(120, "lb"),
  11100. name: "Side",
  11101. image: {
  11102. source: "./media/characters/odyssey/side.svg",
  11103. extra: 1847/1619,
  11104. bottom: 47/1894
  11105. }
  11106. },
  11107. lounging: {
  11108. height: math.unit(1.464, "feet"),
  11109. weight: math.unit(120, "lb"),
  11110. name: "Lounging",
  11111. image: {
  11112. source: "./media/characters/odyssey/lounging.svg",
  11113. extra: 1235/837,
  11114. bottom: 551/1786
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Normal",
  11121. height: math.unit(5 + 4 / 12, "feet")
  11122. },
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(1, "km")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(3000, "km")
  11130. },
  11131. {
  11132. name: "Gigamacro",
  11133. height: math.unit(1, "AU"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Omniversal",
  11138. height: math.unit(100e14, "lightyears")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(300, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/mekuto/front.svg",
  11151. extra: 921 / 832,
  11152. bottom: 0.03
  11153. }
  11154. },
  11155. hand: {
  11156. height: math.unit(6 / 10.24, "feet"),
  11157. name: "Hand",
  11158. image: {
  11159. source: "./media/characters/mekuto/hand.svg"
  11160. }
  11161. },
  11162. foot: {
  11163. height: math.unit(6 / 5.05, "feet"),
  11164. name: "Foot",
  11165. image: {
  11166. source: "./media/characters/mekuto/foot.svg"
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Minimicro",
  11173. height: math.unit(0.2, "inches")
  11174. },
  11175. {
  11176. name: "Micro",
  11177. height: math.unit(1.5, "inches")
  11178. },
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(5 + 11 / 12, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Minimacro",
  11186. height: math.unit(17 + 9 / 12, "feet")
  11187. },
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(177.5, "feet")
  11191. },
  11192. {
  11193. name: "Megamacro",
  11194. height: math.unit(152, "miles")
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11200. {
  11201. front: {
  11202. height: math.unit(6.5, "inches"),
  11203. weight: math.unit(13, "oz"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/dafydd-tomos/front.svg",
  11207. extra: 2990 / 2603,
  11208. bottom: 0.03
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Micro",
  11215. height: math.unit(6.5, "inches"),
  11216. default: true
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(6, "feet"),
  11225. weight: math.unit(150, "lb"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/splinter/front.svg",
  11229. extra: 2990 / 2882,
  11230. bottom: 0.04
  11231. }
  11232. },
  11233. back: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Back",
  11237. image: {
  11238. source: "./media/characters/splinter/back.svg",
  11239. extra: 2990 / 2882,
  11240. bottom: 0.04
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Normal",
  11247. height: math.unit(6, "feet")
  11248. },
  11249. {
  11250. name: "Macro",
  11251. height: math.unit(230, "meters"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(4 + 10 / 12, "feet"),
  11261. weight: math.unit(480, "lb"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/snow-gabumon/front.svg",
  11265. extra: 1140 / 963,
  11266. bottom: 0.058
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(4 + 10 / 12, "feet"),
  11271. weight: math.unit(480, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/snow-gabumon/back.svg",
  11275. extra: 1115 / 962,
  11276. bottom: 0.041
  11277. }
  11278. },
  11279. frontUndresed: {
  11280. height: math.unit(4 + 10 / 12, "feet"),
  11281. weight: math.unit(480, "lb"),
  11282. name: "Front (Undressed)",
  11283. image: {
  11284. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11285. extra: 1061 / 960,
  11286. bottom: 0.045
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Micro",
  11293. height: math.unit(1, "inch")
  11294. },
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(4 + 10 / 12, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(200, "feet")
  11303. },
  11304. {
  11305. name: "Megamacro",
  11306. height: math.unit(120, "miles")
  11307. },
  11308. {
  11309. name: "Gigamacro",
  11310. height: math.unit(9800, "miles")
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(1.7, "meters"),
  11319. weight: math.unit(140, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/moody/front.svg",
  11323. extra: 3226 / 3007,
  11324. bottom: 0.087
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Micro",
  11331. height: math.unit(1, "mm")
  11332. },
  11333. {
  11334. name: "Normal",
  11335. height: math.unit(1.7, "meters"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Macro",
  11340. height: math.unit(80, "meters")
  11341. },
  11342. {
  11343. name: "Macro+",
  11344. height: math.unit(500, "meters")
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11350. {
  11351. front: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(150, "lb"),
  11354. name: "Front",
  11355. image: {
  11356. source: "./media/characters/zyas/front.svg",
  11357. extra: 1180 / 1120,
  11358. bottom: 0.045
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(10, "feet"),
  11366. default: true
  11367. },
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(500, "feet")
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(5, "miles")
  11375. },
  11376. {
  11377. name: "Teramacro",
  11378. height: math.unit(150000, "miles")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(6, "feet"),
  11387. weight: math.unit(150, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/cuon/front.svg",
  11391. extra: 1390 / 1320,
  11392. bottom: 0.008
  11393. }
  11394. },
  11395. },
  11396. [
  11397. {
  11398. name: "Micro",
  11399. height: math.unit(3, "inches")
  11400. },
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(18 + 9 / 12, "feet"),
  11404. default: true
  11405. },
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(360, "feet")
  11409. },
  11410. {
  11411. name: "Megamacro",
  11412. height: math.unit(360, "miles")
  11413. },
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11418. {
  11419. front: {
  11420. height: math.unit(2.4, "meters"),
  11421. weight: math.unit(70, "kg"),
  11422. name: "Front",
  11423. image: {
  11424. source: "./media/characters/nyanuxk/front.svg",
  11425. extra: 1172 / 1084,
  11426. bottom: 0.065
  11427. }
  11428. },
  11429. side: {
  11430. height: math.unit(2.4, "meters"),
  11431. weight: math.unit(70, "kg"),
  11432. name: "Side",
  11433. image: {
  11434. source: "./media/characters/nyanuxk/side.svg",
  11435. extra: 1190 / 1132,
  11436. bottom: 0.007
  11437. }
  11438. },
  11439. back: {
  11440. height: math.unit(2.4, "meters"),
  11441. weight: math.unit(70, "kg"),
  11442. name: "Back",
  11443. image: {
  11444. source: "./media/characters/nyanuxk/back.svg",
  11445. extra: 1200 / 1141,
  11446. bottom: 0.015
  11447. }
  11448. },
  11449. foot: {
  11450. height: math.unit(0.52, "meters"),
  11451. name: "Foot",
  11452. image: {
  11453. source: "./media/characters/nyanuxk/foot.svg"
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Micro",
  11460. height: math.unit(2, "cm")
  11461. },
  11462. {
  11463. name: "Normal",
  11464. height: math.unit(2.4, "meters"),
  11465. default: true
  11466. },
  11467. {
  11468. name: "Smaller Macro",
  11469. height: math.unit(120, "meters")
  11470. },
  11471. {
  11472. name: "Bigger Macro",
  11473. height: math.unit(1.2, "km")
  11474. },
  11475. {
  11476. name: "Megamacro",
  11477. height: math.unit(15, "kilometers")
  11478. },
  11479. {
  11480. name: "Gigamacro",
  11481. height: math.unit(2000, "km")
  11482. },
  11483. {
  11484. name: "Teramacro",
  11485. height: math.unit(500000, "km")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11491. {
  11492. side: {
  11493. height: math.unit(6, "feet"),
  11494. name: "Side",
  11495. image: {
  11496. source: "./media/characters/ailbhe/side.svg",
  11497. extra: 757 / 464,
  11498. bottom: 0.041
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Normal",
  11505. height: math.unit(1.07, "meters"),
  11506. default: true
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11512. {
  11513. front: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(120, "kg"),
  11516. name: "Front",
  11517. image: {
  11518. source: "./media/characters/zevulfius/front.svg",
  11519. extra: 965 / 903
  11520. }
  11521. },
  11522. side: {
  11523. height: math.unit(6, "feet"),
  11524. weight: math.unit(120, "kg"),
  11525. name: "Side",
  11526. image: {
  11527. source: "./media/characters/zevulfius/side.svg",
  11528. extra: 939 / 900
  11529. }
  11530. },
  11531. back: {
  11532. height: math.unit(6, "feet"),
  11533. weight: math.unit(120, "kg"),
  11534. name: "Back",
  11535. image: {
  11536. source: "./media/characters/zevulfius/back.svg",
  11537. extra: 918 / 854,
  11538. bottom: 0.005
  11539. }
  11540. },
  11541. foot: {
  11542. height: math.unit(6 / 3.72, "feet"),
  11543. name: "Foot",
  11544. image: {
  11545. source: "./media/characters/zevulfius/foot.svg"
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(750, "meters")
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(20, "km"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Gigamacro",
  11561. height: math.unit(2000, "km")
  11562. },
  11563. {
  11564. name: "Teramacro",
  11565. height: math.unit(250000, "km")
  11566. },
  11567. ]
  11568. ))
  11569. characterMakers.push(() => makeCharacter(
  11570. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11571. {
  11572. front: {
  11573. height: math.unit(100, "feet"),
  11574. weight: math.unit(350, "kg"),
  11575. name: "Front",
  11576. image: {
  11577. source: "./media/characters/rikes/front.svg",
  11578. extra: 1565 / 1483,
  11579. bottom: 0.017
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Macro",
  11586. height: math.unit(100, "feet"),
  11587. default: true
  11588. },
  11589. ]
  11590. ))
  11591. characterMakers.push(() => makeCharacter(
  11592. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11593. {
  11594. front: {
  11595. height: math.unit(8, "feet"),
  11596. weight: math.unit(356, "lb"),
  11597. name: "Front",
  11598. image: {
  11599. source: "./media/characters/adam-silver-mane/front.svg",
  11600. extra: 1036/937,
  11601. bottom: 63/1099
  11602. }
  11603. },
  11604. side: {
  11605. height: math.unit(8, "feet"),
  11606. weight: math.unit(356, "lb"),
  11607. name: "Side",
  11608. image: {
  11609. source: "./media/characters/adam-silver-mane/side.svg",
  11610. extra: 997/901,
  11611. bottom: 59/1056
  11612. }
  11613. },
  11614. frontNsfw: {
  11615. height: math.unit(8, "feet"),
  11616. weight: math.unit(356, "lb"),
  11617. name: "Front (NSFW)",
  11618. image: {
  11619. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11620. extra: 1036/937,
  11621. bottom: 63/1099
  11622. }
  11623. },
  11624. sideNsfw: {
  11625. height: math.unit(8, "feet"),
  11626. weight: math.unit(356, "lb"),
  11627. name: "Side (NSFW)",
  11628. image: {
  11629. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11630. extra: 997/901,
  11631. bottom: 59/1056
  11632. }
  11633. },
  11634. dick: {
  11635. height: math.unit(2.1, "feet"),
  11636. name: "Dick",
  11637. image: {
  11638. source: "./media/characters/adam-silver-mane/dick.svg"
  11639. }
  11640. },
  11641. taur: {
  11642. height: math.unit(16, "feet"),
  11643. weight: math.unit(1500, "kg"),
  11644. name: "Taur",
  11645. image: {
  11646. source: "./media/characters/adam-silver-mane/taur.svg",
  11647. extra: 1713 / 1571,
  11648. bottom: 0.01
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(8, "feet")
  11656. },
  11657. {
  11658. name: "Minimacro",
  11659. height: math.unit(80, "feet")
  11660. },
  11661. {
  11662. name: "MDA",
  11663. height: math.unit(80, "meters")
  11664. },
  11665. {
  11666. name: "Macro",
  11667. height: math.unit(800, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Megamacro",
  11672. height: math.unit(8000, "feet")
  11673. },
  11674. {
  11675. name: "Gigamacro",
  11676. height: math.unit(800, "miles")
  11677. },
  11678. {
  11679. name: "Teramacro",
  11680. height: math.unit(80000, "miles")
  11681. },
  11682. {
  11683. name: "Celestial",
  11684. height: math.unit(8e6, "miles")
  11685. },
  11686. {
  11687. name: "Star Dragon",
  11688. height: math.unit(800000, "parsecs")
  11689. },
  11690. {
  11691. name: "Godly",
  11692. height: math.unit(800, "teraparsecs")
  11693. },
  11694. ]
  11695. ))
  11696. characterMakers.push(() => makeCharacter(
  11697. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11698. {
  11699. front: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(150, "lb"),
  11702. name: "Front",
  11703. image: {
  11704. source: "./media/characters/ky'owin/front.svg",
  11705. extra: 3862/3053,
  11706. bottom: 74/3936
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Normal",
  11713. height: math.unit(6 + 8 / 12, "feet")
  11714. },
  11715. {
  11716. name: "Large",
  11717. height: math.unit(68, "feet")
  11718. },
  11719. {
  11720. name: "Macro",
  11721. height: math.unit(132, "feet")
  11722. },
  11723. {
  11724. name: "Macro+",
  11725. height: math.unit(340, "feet")
  11726. },
  11727. {
  11728. name: "Macro++",
  11729. height: math.unit(680, "feet"),
  11730. default: true
  11731. },
  11732. {
  11733. name: "Megamacro",
  11734. height: math.unit(1, "mile")
  11735. },
  11736. {
  11737. name: "Megamacro+",
  11738. height: math.unit(10, "miles")
  11739. },
  11740. ]
  11741. ))
  11742. characterMakers.push(() => makeCharacter(
  11743. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11744. {
  11745. front: {
  11746. height: math.unit(4, "feet"),
  11747. weight: math.unit(50, "lb"),
  11748. name: "Front",
  11749. image: {
  11750. source: "./media/characters/mal/front.svg",
  11751. extra: 785 / 724,
  11752. bottom: 0.07
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Micro",
  11759. height: math.unit(4, "inches")
  11760. },
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(4, "feet"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(200, "feet")
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(6, "feet"),
  11777. weight: math.unit(150, "lb"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/jordan-deware/front.svg",
  11781. extra: 1191 / 1012
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Nano",
  11788. height: math.unit(0.01, "mm")
  11789. },
  11790. {
  11791. name: "Minimicro",
  11792. height: math.unit(1, "mm")
  11793. },
  11794. {
  11795. name: "Micro",
  11796. height: math.unit(0.5, "inches")
  11797. },
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(4, "feet"),
  11801. default: true
  11802. },
  11803. {
  11804. name: "Minimacro",
  11805. height: math.unit(40, "meters")
  11806. },
  11807. {
  11808. name: "Small Macro",
  11809. height: math.unit(400, "meters")
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(4, "miles")
  11814. },
  11815. {
  11816. name: "Megamacro",
  11817. height: math.unit(40, "miles")
  11818. },
  11819. {
  11820. name: "Megamacro+",
  11821. height: math.unit(400, "miles")
  11822. },
  11823. {
  11824. name: "Gigamacro",
  11825. height: math.unit(400000, "miles")
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11831. {
  11832. side: {
  11833. height: math.unit(6, "feet"),
  11834. weight: math.unit(150, "lb"),
  11835. name: "Side",
  11836. image: {
  11837. source: "./media/characters/kimiko/side.svg",
  11838. extra: 600 / 358
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Normal",
  11845. height: math.unit(15, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Macro",
  11850. height: math.unit(220, "feet")
  11851. },
  11852. {
  11853. name: "Macro+",
  11854. height: math.unit(1450, "feet")
  11855. },
  11856. {
  11857. name: "Megamacro",
  11858. height: math.unit(11500, "feet")
  11859. },
  11860. {
  11861. name: "Gigamacro",
  11862. height: math.unit(9500, "miles")
  11863. },
  11864. {
  11865. name: "Teramacro",
  11866. height: math.unit(2208005005, "miles")
  11867. },
  11868. {
  11869. name: "Examacro",
  11870. height: math.unit(2750, "parsecs")
  11871. },
  11872. {
  11873. name: "Zettamacro",
  11874. height: math.unit(101500, "parsecs")
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(6, "feet"),
  11883. weight: math.unit(70, "kg"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/andrew-sleepy/front.svg"
  11887. }
  11888. },
  11889. side: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(70, "kg"),
  11892. name: "Side",
  11893. image: {
  11894. source: "./media/characters/andrew-sleepy/side.svg"
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Micro",
  11901. height: math.unit(1, "mm"),
  11902. default: true
  11903. },
  11904. ]
  11905. ))
  11906. characterMakers.push(() => makeCharacter(
  11907. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11908. {
  11909. front: {
  11910. height: math.unit(6, "feet"),
  11911. weight: math.unit(150, "lb"),
  11912. name: "Front",
  11913. image: {
  11914. source: "./media/characters/judio/front.svg",
  11915. extra: 1258 / 1110
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(5 + 6 / 12, "feet")
  11923. },
  11924. {
  11925. name: "Macro",
  11926. height: math.unit(1000, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(10, "miles")
  11932. },
  11933. ]
  11934. ))
  11935. characterMakers.push(() => makeCharacter(
  11936. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11937. {
  11938. frontDressed: {
  11939. height: math.unit(6, "feet"),
  11940. weight: math.unit(68, "kg"),
  11941. name: "Front (Dressed)",
  11942. image: {
  11943. source: "./media/characters/nomaxice/front-dressed.svg",
  11944. extra: 1137/824,
  11945. bottom: 74/1211
  11946. }
  11947. },
  11948. frontShorts: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(68, "kg"),
  11951. name: "Front (Shorts)",
  11952. image: {
  11953. source: "./media/characters/nomaxice/front-shorts.svg",
  11954. extra: 1137/824,
  11955. bottom: 74/1211
  11956. }
  11957. },
  11958. back: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(68, "kg"),
  11961. name: "Back",
  11962. image: {
  11963. source: "./media/characters/nomaxice/back.svg",
  11964. extra: 822/786,
  11965. bottom: 39/861
  11966. }
  11967. },
  11968. hand: {
  11969. height: math.unit(0.565, "feet"),
  11970. name: "Hand",
  11971. image: {
  11972. source: "./media/characters/nomaxice/hand.svg"
  11973. }
  11974. },
  11975. foot: {
  11976. height: math.unit(1, "feet"),
  11977. name: "Foot",
  11978. image: {
  11979. source: "./media/characters/nomaxice/foot.svg"
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Micro",
  11986. height: math.unit(8, "cm")
  11987. },
  11988. {
  11989. name: "Norm",
  11990. height: math.unit(1.82, "m")
  11991. },
  11992. {
  11993. name: "Norm+",
  11994. height: math.unit(8.8, "feet"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Big",
  11999. height: math.unit(8, "meters")
  12000. },
  12001. {
  12002. name: "Macro",
  12003. height: math.unit(18, "meters")
  12004. },
  12005. {
  12006. name: "Macro+",
  12007. height: math.unit(88, "meters")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(12, "feet"),
  12016. weight: math.unit(1.5, "tons"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/dydros/front.svg",
  12020. extra: 863 / 800,
  12021. bottom: 0.015
  12022. }
  12023. },
  12024. back: {
  12025. height: math.unit(12, "feet"),
  12026. weight: math.unit(1.5, "tons"),
  12027. name: "Back",
  12028. image: {
  12029. source: "./media/characters/dydros/back.svg",
  12030. extra: 900 / 843,
  12031. bottom: 0.005
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(12, "feet"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(100, "kg"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/riggi/front.svg",
  12052. extra: 5787 / 5303
  12053. }
  12054. },
  12055. hyper: {
  12056. height: math.unit(6 * 5 / 3, "feet"),
  12057. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12058. name: "Hyper",
  12059. image: {
  12060. source: "./media/characters/riggi/hyper.svg",
  12061. extra: 3595 / 3485
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Small Macro",
  12068. height: math.unit(50, "feet")
  12069. },
  12070. {
  12071. name: "Default",
  12072. height: math.unit(200, "feet"),
  12073. default: true
  12074. },
  12075. {
  12076. name: "Loom",
  12077. height: math.unit(10000, "feet")
  12078. },
  12079. {
  12080. name: "Cruising Altitude",
  12081. height: math.unit(30000, "feet")
  12082. },
  12083. {
  12084. name: "Megamacro",
  12085. height: math.unit(100, "miles")
  12086. },
  12087. {
  12088. name: "Continent Sized",
  12089. height: math.unit(2800, "miles")
  12090. },
  12091. {
  12092. name: "Earth Sized",
  12093. height: math.unit(8000, "miles")
  12094. },
  12095. ]
  12096. ))
  12097. characterMakers.push(() => makeCharacter(
  12098. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12099. {
  12100. front: {
  12101. height: math.unit(6, "feet"),
  12102. weight: math.unit(250, "lb"),
  12103. name: "Front",
  12104. image: {
  12105. source: "./media/characters/alexi/front.svg",
  12106. extra: 3483 / 3291,
  12107. bottom: 0.04
  12108. }
  12109. },
  12110. back: {
  12111. height: math.unit(6, "feet"),
  12112. weight: math.unit(250, "lb"),
  12113. name: "Back",
  12114. image: {
  12115. source: "./media/characters/alexi/back.svg",
  12116. extra: 3533 / 3356,
  12117. bottom: 0.021
  12118. }
  12119. },
  12120. frontTransforming: {
  12121. height: math.unit(8.58, "feet"),
  12122. weight: math.unit(1300, "lb"),
  12123. name: "Transforming",
  12124. image: {
  12125. source: "./media/characters/alexi/front-transforming.svg",
  12126. extra: 437 / 409,
  12127. bottom: 19 / 458.66
  12128. }
  12129. },
  12130. frontTransformed: {
  12131. height: math.unit(12.5, "feet"),
  12132. weight: math.unit(4000, "lb"),
  12133. name: "Transformed",
  12134. image: {
  12135. source: "./media/characters/alexi/front-transformed.svg",
  12136. extra: 639 / 614,
  12137. bottom: 30.55 / 671
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(14, "feet"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Minimacro",
  12149. height: math.unit(30, "meters")
  12150. },
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(500, "meters")
  12154. },
  12155. {
  12156. name: "Megamacro",
  12157. height: math.unit(9000, "km")
  12158. },
  12159. {
  12160. name: "Teramacro",
  12161. height: math.unit(384000, "km")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(150, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/kayroo/front.svg",
  12174. extra: 1153 / 1038,
  12175. bottom: 0.06
  12176. }
  12177. },
  12178. foot: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(150, "lb"),
  12181. name: "Foot",
  12182. image: {
  12183. source: "./media/characters/kayroo/foot.svg"
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Normal",
  12190. height: math.unit(8, "feet"),
  12191. default: true
  12192. },
  12193. {
  12194. name: "Minimacro",
  12195. height: math.unit(250, "feet")
  12196. },
  12197. {
  12198. name: "Macro",
  12199. height: math.unit(2800, "feet")
  12200. },
  12201. {
  12202. name: "Megamacro",
  12203. height: math.unit(5200, "feet")
  12204. },
  12205. {
  12206. name: "Gigamacro",
  12207. height: math.unit(27000, "feet")
  12208. },
  12209. {
  12210. name: "Omega",
  12211. height: math.unit(45000, "feet")
  12212. },
  12213. ]
  12214. ))
  12215. characterMakers.push(() => makeCharacter(
  12216. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12217. {
  12218. front: {
  12219. height: math.unit(18, "feet"),
  12220. weight: math.unit(5800, "lb"),
  12221. name: "Front",
  12222. image: {
  12223. source: "./media/characters/rhys/front.svg",
  12224. extra: 3386 / 3090,
  12225. bottom: 0.07
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Normal",
  12232. height: math.unit(18, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Working Size",
  12237. height: math.unit(200, "feet")
  12238. },
  12239. {
  12240. name: "Demolition Size",
  12241. height: math.unit(2000, "feet")
  12242. },
  12243. {
  12244. name: "Maximum Licensed Size",
  12245. height: math.unit(5, "miles")
  12246. },
  12247. {
  12248. name: "Maximum Observed Size",
  12249. height: math.unit(10, "yottameters")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(250, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/toto/front.svg",
  12262. extra: 527 / 479,
  12263. bottom: 0.05
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Micro",
  12270. height: math.unit(3, "feet")
  12271. },
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(10, "feet")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(150, "feet"),
  12279. default: true
  12280. },
  12281. {
  12282. name: "Megamacro",
  12283. height: math.unit(1200, "feet")
  12284. },
  12285. ]
  12286. ))
  12287. characterMakers.push(() => makeCharacter(
  12288. { name: "King", species: ["lion"], tags: ["anthro"] },
  12289. {
  12290. back: {
  12291. height: math.unit(6, "feet"),
  12292. weight: math.unit(150, "lb"),
  12293. name: "Back",
  12294. image: {
  12295. source: "./media/characters/king/back.svg"
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Micro",
  12302. height: math.unit(2, "inches")
  12303. },
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(8, "feet")
  12307. },
  12308. {
  12309. name: "Macro",
  12310. height: math.unit(200, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Megamacro",
  12315. height: math.unit(50, "miles")
  12316. },
  12317. ]
  12318. ))
  12319. characterMakers.push(() => makeCharacter(
  12320. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12321. {
  12322. front: {
  12323. height: math.unit(11, "feet"),
  12324. weight: math.unit(1400, "lb"),
  12325. name: "Front",
  12326. image: {
  12327. source: "./media/characters/cordite/front.svg",
  12328. extra: 1919/1827,
  12329. bottom: 40/1959
  12330. }
  12331. },
  12332. side: {
  12333. height: math.unit(11, "feet"),
  12334. weight: math.unit(1400, "lb"),
  12335. name: "Side",
  12336. image: {
  12337. source: "./media/characters/cordite/side.svg",
  12338. extra: 1908/1793,
  12339. bottom: 38/1946
  12340. }
  12341. },
  12342. back: {
  12343. height: math.unit(11, "feet"),
  12344. weight: math.unit(1400, "lb"),
  12345. name: "Back",
  12346. image: {
  12347. source: "./media/characters/cordite/back.svg",
  12348. extra: 1938/1837,
  12349. bottom: 10/1948
  12350. }
  12351. },
  12352. feral: {
  12353. height: math.unit(2, "feet"),
  12354. weight: math.unit(90, "lb"),
  12355. name: "Feral",
  12356. image: {
  12357. source: "./media/characters/cordite/feral.svg",
  12358. extra: 1260 / 755,
  12359. bottom: 0.05
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(11, "feet"),
  12367. default: true
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(150, "lb"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/pianostrong/front.svg",
  12380. extra: 6577 / 6254,
  12381. bottom: 0.02
  12382. }
  12383. },
  12384. side: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(150, "lb"),
  12387. name: "Side",
  12388. image: {
  12389. source: "./media/characters/pianostrong/side.svg",
  12390. extra: 6106 / 5730
  12391. }
  12392. },
  12393. back: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(150, "lb"),
  12396. name: "Back",
  12397. image: {
  12398. source: "./media/characters/pianostrong/back.svg",
  12399. extra: 6085 / 5733,
  12400. bottom: 0.01
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Macro",
  12407. height: math.unit(100, "feet")
  12408. },
  12409. {
  12410. name: "Macro+",
  12411. height: math.unit(300, "feet"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Macro++",
  12416. height: math.unit(1000, "feet")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(6, "feet"),
  12425. weight: math.unit(150, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/kona/front.svg",
  12429. extra: 2960 / 2629,
  12430. bottom: 0.005
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(11 + 8 / 12, "feet")
  12438. },
  12439. {
  12440. name: "Macro",
  12441. height: math.unit(850, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Macro+",
  12446. height: math.unit(1.5, "km"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(80, "miles")
  12452. },
  12453. {
  12454. name: "Gigamacro",
  12455. height: math.unit(3500, "miles")
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12461. {
  12462. side: {
  12463. height: math.unit(1.9, "meters"),
  12464. weight: math.unit(326, "kg"),
  12465. name: "Side",
  12466. image: {
  12467. source: "./media/characters/levi/side.svg",
  12468. extra: 1704 / 1334,
  12469. bottom: 0.02
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Normal",
  12476. height: math.unit(1.9, "meters"),
  12477. default: true
  12478. },
  12479. {
  12480. name: "Macro",
  12481. height: math.unit(20, "meters")
  12482. },
  12483. {
  12484. name: "Macro+",
  12485. height: math.unit(200, "meters")
  12486. },
  12487. {
  12488. name: "Megamacro",
  12489. height: math.unit(2, "km")
  12490. },
  12491. {
  12492. name: "Megamacro+",
  12493. height: math.unit(20, "km")
  12494. },
  12495. {
  12496. name: "Gigamacro",
  12497. height: math.unit(2500, "km")
  12498. },
  12499. {
  12500. name: "Gigamacro+",
  12501. height: math.unit(120000, "km")
  12502. },
  12503. {
  12504. name: "Teramacro",
  12505. height: math.unit(7.77e6, "km")
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(6 + 4/12, "feet"),
  12514. weight: math.unit(190, "lb"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/bmc/front.svg",
  12518. extra: 1626/1472,
  12519. bottom: 79/1705
  12520. }
  12521. },
  12522. back: {
  12523. height: math.unit(6 + 4/12, "feet"),
  12524. weight: math.unit(190, "lb"),
  12525. name: "Back",
  12526. image: {
  12527. source: "./media/characters/bmc/back.svg",
  12528. extra: 1640/1479,
  12529. bottom: 45/1685
  12530. }
  12531. },
  12532. frontArmor: {
  12533. height: math.unit(6 + 4/12, "feet"),
  12534. weight: math.unit(190, "lb"),
  12535. name: "Front-armor",
  12536. image: {
  12537. source: "./media/characters/bmc/front-armor.svg",
  12538. extra: 1538/1468,
  12539. bottom: 79/1617
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Human-sized",
  12546. height: math.unit(6 + 4 / 12, "feet")
  12547. },
  12548. {
  12549. name: "Interactive Size",
  12550. height: math.unit(25, "feet")
  12551. },
  12552. {
  12553. name: "Small",
  12554. height: math.unit(250, "feet")
  12555. },
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(1250, "feet"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Good Day",
  12563. height: math.unit(88, "miles")
  12564. },
  12565. {
  12566. name: "Largest Measured Size",
  12567. height: math.unit(105.960, "galaxies")
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(20, "feet"),
  12576. weight: math.unit(2016, "kg"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/sven-the-kaiju/front.svg",
  12580. extra: 1277/1250,
  12581. bottom: 35/1312
  12582. }
  12583. },
  12584. mouth: {
  12585. height: math.unit(1.85, "feet"),
  12586. name: "Mouth",
  12587. image: {
  12588. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Fairy",
  12595. height: math.unit(6, "inches")
  12596. },
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(20, "feet"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Rampage",
  12604. height: math.unit(200, "feet")
  12605. },
  12606. {
  12607. name: "Archfey Forest Guardian",
  12608. height: math.unit(1, "mile")
  12609. },
  12610. ]
  12611. ))
  12612. characterMakers.push(() => makeCharacter(
  12613. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12614. {
  12615. front: {
  12616. height: math.unit(4, "meters"),
  12617. weight: math.unit(2, "tons"),
  12618. name: "Front",
  12619. image: {
  12620. source: "./media/characters/marik/front.svg",
  12621. extra: 1057 / 1003,
  12622. bottom: 0.08
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Normal",
  12629. height: math.unit(4, "meters"),
  12630. default: true
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(20, "meters")
  12635. },
  12636. {
  12637. name: "Megamacro",
  12638. height: math.unit(50, "km")
  12639. },
  12640. {
  12641. name: "Gigamacro",
  12642. height: math.unit(100, "km")
  12643. },
  12644. {
  12645. name: "Alpha Macro",
  12646. height: math.unit(7.88e7, "yottameters")
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(6, "feet"),
  12655. weight: math.unit(110, "lb"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/mel/front.svg",
  12659. extra: 736 / 617,
  12660. bottom: 0.017
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Pico",
  12667. height: math.unit(3, "pm")
  12668. },
  12669. {
  12670. name: "Nano",
  12671. height: math.unit(3, "nm")
  12672. },
  12673. {
  12674. name: "Micro",
  12675. height: math.unit(0.3, "mm"),
  12676. default: true
  12677. },
  12678. {
  12679. name: "Micro+",
  12680. height: math.unit(3, "mm")
  12681. },
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(5 + 10.5 / 12, "feet")
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12690. {
  12691. kaiju: {
  12692. height: math.unit(1.75, "meters"),
  12693. weight: math.unit(55, "kg"),
  12694. name: "Kaiju",
  12695. image: {
  12696. source: "./media/characters/lykonous/kaiju.svg",
  12697. extra: 1055 / 946,
  12698. bottom: 0.135
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(2.5, "meters"),
  12706. default: true
  12707. },
  12708. {
  12709. name: "Kaiju Dragon",
  12710. height: math.unit(60, "meters")
  12711. },
  12712. {
  12713. name: "Mega Kaiju",
  12714. height: math.unit(120, "km")
  12715. },
  12716. {
  12717. name: "Giga Kaiju",
  12718. height: math.unit(200, "megameters")
  12719. },
  12720. {
  12721. name: "Terra Kaiju",
  12722. height: math.unit(400, "gigameters")
  12723. },
  12724. {
  12725. name: "Kaiju Dragon God",
  12726. height: math.unit(13000, "exaparsecs")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12732. {
  12733. front: {
  12734. height: math.unit(6, "feet"),
  12735. weight: math.unit(150, "lb"),
  12736. name: "Front",
  12737. image: {
  12738. source: "./media/characters/blü/front.svg",
  12739. extra: 1883 / 1564,
  12740. bottom: 0.031
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(13, "feet"),
  12748. default: true
  12749. },
  12750. {
  12751. name: "Big Boi",
  12752. height: math.unit(150, "meters")
  12753. },
  12754. {
  12755. name: "Mini Stomper",
  12756. height: math.unit(300, "meters")
  12757. },
  12758. {
  12759. name: "Macro",
  12760. height: math.unit(1000, "meters")
  12761. },
  12762. {
  12763. name: "Megamacro",
  12764. height: math.unit(11000, "meters")
  12765. },
  12766. {
  12767. name: "Gigamacro",
  12768. height: math.unit(11000, "km")
  12769. },
  12770. {
  12771. name: "Teramacro",
  12772. height: math.unit(420000, "km")
  12773. },
  12774. {
  12775. name: "Examacro",
  12776. height: math.unit(120, "parsecs")
  12777. },
  12778. {
  12779. name: "God Tho",
  12780. height: math.unit(98000000000, "parsecs")
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12786. {
  12787. taurFront: {
  12788. height: math.unit(6, "feet"),
  12789. weight: math.unit(200, "lb"),
  12790. name: "Taur (Front)",
  12791. image: {
  12792. source: "./media/characters/scales/taur-front.svg",
  12793. extra: 1,
  12794. bottom: 0.05
  12795. }
  12796. },
  12797. taurBack: {
  12798. height: math.unit(6, "feet"),
  12799. weight: math.unit(200, "lb"),
  12800. name: "Taur (Back)",
  12801. image: {
  12802. source: "./media/characters/scales/taur-back.svg",
  12803. extra: 1,
  12804. bottom: 0.08
  12805. }
  12806. },
  12807. anthro: {
  12808. height: math.unit(6 * 7 / 12, "feet"),
  12809. weight: math.unit(100, "lb"),
  12810. name: "Anthro",
  12811. image: {
  12812. source: "./media/characters/scales/anthro.svg",
  12813. extra: 1,
  12814. bottom: 0.06
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(12, "feet"),
  12822. default: true
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12828. {
  12829. front: {
  12830. height: math.unit(6, "feet"),
  12831. weight: math.unit(150, "lb"),
  12832. name: "Front",
  12833. image: {
  12834. source: "./media/characters/koragos/front.svg",
  12835. extra: 841 / 794,
  12836. bottom: 0.035
  12837. }
  12838. },
  12839. back: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(150, "lb"),
  12842. name: "Back",
  12843. image: {
  12844. source: "./media/characters/koragos/back.svg",
  12845. extra: 841 / 810,
  12846. bottom: 0.022
  12847. }
  12848. },
  12849. },
  12850. [
  12851. {
  12852. name: "Normal",
  12853. height: math.unit(6 + 11 / 12, "feet"),
  12854. default: true
  12855. },
  12856. {
  12857. name: "Macro",
  12858. height: math.unit(490, "feet")
  12859. },
  12860. {
  12861. name: "Megamacro",
  12862. height: math.unit(10, "miles")
  12863. },
  12864. {
  12865. name: "Gigamacro",
  12866. height: math.unit(50, "miles")
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(250, "lb"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/xylrem/front.svg",
  12879. extra: 3323 / 3050,
  12880. bottom: 0.065
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Micro",
  12887. height: math.unit(4, "feet")
  12888. },
  12889. {
  12890. name: "Normal",
  12891. height: math.unit(16, "feet"),
  12892. default: true
  12893. },
  12894. {
  12895. name: "Macro",
  12896. height: math.unit(2720, "feet")
  12897. },
  12898. {
  12899. name: "Megamacro",
  12900. height: math.unit(25000, "miles")
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12906. {
  12907. front: {
  12908. height: math.unit(8, "feet"),
  12909. weight: math.unit(250, "kg"),
  12910. name: "Front",
  12911. image: {
  12912. source: "./media/characters/ikideru/front.svg",
  12913. extra: 930 / 870,
  12914. bottom: 0.087
  12915. }
  12916. },
  12917. back: {
  12918. height: math.unit(8, "feet"),
  12919. weight: math.unit(250, "kg"),
  12920. name: "Back",
  12921. image: {
  12922. source: "./media/characters/ikideru/back.svg",
  12923. extra: 919 / 852,
  12924. bottom: 0.055
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Rare",
  12931. height: math.unit(8, "feet"),
  12932. default: true
  12933. },
  12934. {
  12935. name: "Playful Loom",
  12936. height: math.unit(80, "feet")
  12937. },
  12938. {
  12939. name: "City Leaner",
  12940. height: math.unit(230, "feet")
  12941. },
  12942. {
  12943. name: "Megamacro",
  12944. height: math.unit(2500, "feet")
  12945. },
  12946. {
  12947. name: "Gigamacro",
  12948. height: math.unit(26400, "feet")
  12949. },
  12950. {
  12951. name: "Tectonic Shifter",
  12952. height: math.unit(1.7, "megameters")
  12953. },
  12954. {
  12955. name: "Planet Carer",
  12956. height: math.unit(21, "megameters")
  12957. },
  12958. {
  12959. name: "God",
  12960. height: math.unit(11157.22, "parsecs")
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(6, "feet"),
  12969. weight: math.unit(120, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/neo/front.svg"
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Micro",
  12979. height: math.unit(2, "inches"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Human Size",
  12984. height: math.unit(5 + 8 / 12, "feet")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12990. {
  12991. front: {
  12992. height: math.unit(13 + 10 / 12, "feet"),
  12993. weight: math.unit(5320, "lb"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/chauncey-chantz/front.svg",
  12997. extra: 1587 / 1435,
  12998. bottom: 0.02
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(13 + 10 / 12, "feet"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Macro",
  13010. height: math.unit(45, "feet")
  13011. },
  13012. {
  13013. name: "Megamacro",
  13014. height: math.unit(250, "miles")
  13015. },
  13016. {
  13017. name: "Planetary",
  13018. height: math.unit(10000, "miles")
  13019. },
  13020. {
  13021. name: "Galactic",
  13022. height: math.unit(40000, "parsecs")
  13023. },
  13024. {
  13025. name: "Universal",
  13026. height: math.unit(1, "yottameter")
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13032. {
  13033. front: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(150, "lb"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/epifox/front.svg",
  13039. extra: 1,
  13040. bottom: 0.075
  13041. }
  13042. },
  13043. },
  13044. [
  13045. {
  13046. name: "Micro",
  13047. height: math.unit(6, "inches")
  13048. },
  13049. {
  13050. name: "Normal",
  13051. height: math.unit(12, "feet"),
  13052. default: true
  13053. },
  13054. {
  13055. name: "Macro",
  13056. height: math.unit(3810, "feet")
  13057. },
  13058. {
  13059. name: "Megamacro",
  13060. height: math.unit(500, "miles")
  13061. },
  13062. ]
  13063. ))
  13064. characterMakers.push(() => makeCharacter(
  13065. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13066. {
  13067. front: {
  13068. height: math.unit(1.8796, "m"),
  13069. weight: math.unit(230, "lb"),
  13070. name: "Front",
  13071. image: {
  13072. source: "./media/characters/colin-t/front.svg",
  13073. extra: 1272 / 1193,
  13074. bottom: 0.07
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Micro",
  13081. height: math.unit(0.571, "meters")
  13082. },
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(1.8796, "meters"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Tall",
  13090. height: math.unit(4, "meters")
  13091. },
  13092. {
  13093. name: "Macro",
  13094. height: math.unit(67.241, "meters")
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(371.856, "meters")
  13099. },
  13100. {
  13101. name: "Planetary",
  13102. height: math.unit(12631.5689, "km")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(1.85, "meters"),
  13111. weight: math.unit(80, "kg"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/matvei/front.svg",
  13115. extra: 456/447,
  13116. bottom: 8/464
  13117. }
  13118. },
  13119. back: {
  13120. height: math.unit(1.85, "meters"),
  13121. weight: math.unit(80, "kg"),
  13122. name: "Back",
  13123. image: {
  13124. source: "./media/characters/matvei/back.svg",
  13125. extra: 434/427,
  13126. bottom: 11/445
  13127. }
  13128. },
  13129. },
  13130. [
  13131. {
  13132. name: "Normal",
  13133. height: math.unit(1.85, "meters"),
  13134. default: true
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(5 + 9 / 12, "feet"),
  13143. weight: math.unit(70, "lb"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/quincy/front.svg",
  13147. extra: 3041 / 2751
  13148. }
  13149. },
  13150. back: {
  13151. height: math.unit(5 + 9 / 12, "feet"),
  13152. weight: math.unit(70, "lb"),
  13153. name: "Back",
  13154. image: {
  13155. source: "./media/characters/quincy/back.svg",
  13156. extra: 3041 / 2751
  13157. }
  13158. },
  13159. flying: {
  13160. height: math.unit(5 + 4 / 12, "feet"),
  13161. weight: math.unit(70, "lb"),
  13162. name: "Flying",
  13163. image: {
  13164. source: "./media/characters/quincy/flying.svg",
  13165. extra: 1044 / 930
  13166. }
  13167. },
  13168. },
  13169. [
  13170. {
  13171. name: "Micro",
  13172. height: math.unit(3, "cm")
  13173. },
  13174. {
  13175. name: "Normal",
  13176. height: math.unit(5 + 9 / 12, "feet")
  13177. },
  13178. {
  13179. name: "Macro",
  13180. height: math.unit(200, "meters"),
  13181. default: true
  13182. },
  13183. {
  13184. name: "Megamacro",
  13185. height: math.unit(1000, "meters")
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13191. {
  13192. front: {
  13193. height: math.unit(3 + 11/12, "feet"),
  13194. weight: math.unit(50, "lb"),
  13195. name: "Front",
  13196. image: {
  13197. source: "./media/characters/vanrel/front.svg",
  13198. extra: 1104/949,
  13199. bottom: 52/1156
  13200. }
  13201. },
  13202. back: {
  13203. height: math.unit(3 + 11/12, "feet"),
  13204. weight: math.unit(50, "lb"),
  13205. name: "Back",
  13206. image: {
  13207. source: "./media/characters/vanrel/back.svg",
  13208. extra: 1119/976,
  13209. bottom: 37/1156
  13210. }
  13211. },
  13212. tome: {
  13213. height: math.unit(1.35, "feet"),
  13214. weight: math.unit(10, "lb"),
  13215. name: "Vanrel's Tome",
  13216. rename: true,
  13217. image: {
  13218. source: "./media/characters/vanrel/tome.svg"
  13219. }
  13220. },
  13221. beans: {
  13222. height: math.unit(0.89, "feet"),
  13223. name: "Beans",
  13224. image: {
  13225. source: "./media/characters/vanrel/beans.svg"
  13226. }
  13227. },
  13228. },
  13229. [
  13230. {
  13231. name: "Normal",
  13232. height: math.unit(3 + 11/12, "feet"),
  13233. default: true
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13239. {
  13240. front: {
  13241. height: math.unit(7 + 5 / 12, "feet"),
  13242. name: "Front",
  13243. image: {
  13244. source: "./media/characters/kuiper-vanrel/front.svg",
  13245. extra: 1219/1169,
  13246. bottom: 69/1288
  13247. }
  13248. },
  13249. back: {
  13250. height: math.unit(7 + 5 / 12, "feet"),
  13251. name: "Back",
  13252. image: {
  13253. source: "./media/characters/kuiper-vanrel/back.svg",
  13254. extra: 1236/1193,
  13255. bottom: 27/1263
  13256. }
  13257. },
  13258. foot: {
  13259. height: math.unit(0.55, "meters"),
  13260. name: "Foot",
  13261. image: {
  13262. source: "./media/characters/kuiper-vanrel/foot.svg",
  13263. }
  13264. },
  13265. battle: {
  13266. height: math.unit(6.824, "feet"),
  13267. name: "Battle",
  13268. image: {
  13269. source: "./media/characters/kuiper-vanrel/battle.svg",
  13270. extra: 1466 / 1327,
  13271. bottom: 29 / 1492.5
  13272. }
  13273. },
  13274. meerkui: {
  13275. height: math.unit(18, "inches"),
  13276. name: "Meerkui",
  13277. image: {
  13278. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13279. extra: 1354/1289,
  13280. bottom: 69/1423
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Normal",
  13287. height: math.unit(7 + 5 / 12, "feet"),
  13288. default: true
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(8 + 5 / 12, "feet"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/keset-vanrel/front.svg",
  13300. extra: 1231/1148,
  13301. bottom: 82/1313
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(8 + 5 / 12, "feet"),
  13306. name: "Back",
  13307. image: {
  13308. source: "./media/characters/keset-vanrel/back.svg",
  13309. extra: 1240/1174,
  13310. bottom: 33/1273
  13311. }
  13312. },
  13313. hand: {
  13314. height: math.unit(0.6, "meters"),
  13315. name: "Hand",
  13316. image: {
  13317. source: "./media/characters/keset-vanrel/hand.svg"
  13318. }
  13319. },
  13320. foot: {
  13321. height: math.unit(0.94978, "meters"),
  13322. name: "Foot",
  13323. image: {
  13324. source: "./media/characters/keset-vanrel/foot.svg"
  13325. }
  13326. },
  13327. battle: {
  13328. height: math.unit(7.408, "feet"),
  13329. name: "Battle",
  13330. image: {
  13331. source: "./media/characters/keset-vanrel/battle.svg",
  13332. extra: 1890 / 1386,
  13333. bottom: 73.28 / 1970
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(8 + 5 / 12, "feet"),
  13341. default: true
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(6, "feet"),
  13350. weight: math.unit(150, "lb"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/neos/front.svg",
  13354. extra: 1696 / 992,
  13355. bottom: 0.14
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(54, "cm"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(100, "m")
  13368. },
  13369. {
  13370. name: "Megamacro",
  13371. height: math.unit(10, "km")
  13372. },
  13373. {
  13374. name: "Megamacro+",
  13375. height: math.unit(100, "km")
  13376. },
  13377. {
  13378. name: "Gigamacro",
  13379. height: math.unit(100, "Mm")
  13380. },
  13381. {
  13382. name: "Teramacro",
  13383. height: math.unit(100, "Gm")
  13384. },
  13385. {
  13386. name: "Examacro",
  13387. height: math.unit(100, "Em")
  13388. },
  13389. {
  13390. name: "Godly",
  13391. height: math.unit(10000, "Ym")
  13392. },
  13393. {
  13394. name: "Beyond Godly",
  13395. height: math.unit(25, "multiverses")
  13396. },
  13397. ]
  13398. ))
  13399. characterMakers.push(() => makeCharacter(
  13400. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13401. {
  13402. feminine: {
  13403. height: math.unit(5, "feet"),
  13404. weight: math.unit(100, "lb"),
  13405. name: "Feminine",
  13406. image: {
  13407. source: "./media/characters/sammy-mouse/feminine.svg",
  13408. extra: 2526 / 2425,
  13409. bottom: 0.123
  13410. }
  13411. },
  13412. masculine: {
  13413. height: math.unit(5, "feet"),
  13414. weight: math.unit(100, "lb"),
  13415. name: "Masculine",
  13416. image: {
  13417. source: "./media/characters/sammy-mouse/masculine.svg",
  13418. extra: 2526 / 2425,
  13419. bottom: 0.123
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Micro",
  13426. height: math.unit(5, "inches")
  13427. },
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(5, "feet"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(60, "feet")
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(4, "feet"),
  13444. weight: math.unit(50, "lb"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/kole/front.svg",
  13448. extra: 1423 / 1303,
  13449. bottom: 0.025
  13450. }
  13451. },
  13452. back: {
  13453. height: math.unit(4, "feet"),
  13454. weight: math.unit(50, "lb"),
  13455. name: "Back",
  13456. image: {
  13457. source: "./media/characters/kole/back.svg",
  13458. extra: 1426 / 1280,
  13459. bottom: 0.02
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Normal",
  13466. height: math.unit(4, "feet"),
  13467. default: true
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13473. {
  13474. front: {
  13475. height: math.unit(2.5, "feet"),
  13476. weight: math.unit(32, "lb"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/rufran/front.svg",
  13480. extra: 1313/885,
  13481. bottom: 94/1407
  13482. }
  13483. },
  13484. side: {
  13485. height: math.unit(2.5, "feet"),
  13486. weight: math.unit(32, "lb"),
  13487. name: "Side",
  13488. image: {
  13489. source: "./media/characters/rufran/side.svg",
  13490. extra: 1109/852,
  13491. bottom: 118/1227
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(2.5, "feet"),
  13496. weight: math.unit(32, "lb"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/rufran/back.svg",
  13500. extra: 1280/878,
  13501. bottom: 131/1411
  13502. }
  13503. },
  13504. mouth: {
  13505. height: math.unit(1.13, "feet"),
  13506. name: "Mouth",
  13507. image: {
  13508. source: "./media/characters/rufran/mouth.svg"
  13509. }
  13510. },
  13511. foot: {
  13512. height: math.unit(1.33, "feet"),
  13513. name: "Foot",
  13514. image: {
  13515. source: "./media/characters/rufran/foot.svg"
  13516. }
  13517. },
  13518. koboldFront: {
  13519. height: math.unit(2 + 6 / 12, "feet"),
  13520. weight: math.unit(20, "lb"),
  13521. name: "Front (Kobold)",
  13522. image: {
  13523. source: "./media/characters/rufran/kobold-front.svg",
  13524. extra: 2041 / 1839,
  13525. bottom: 0.055
  13526. }
  13527. },
  13528. koboldBack: {
  13529. height: math.unit(2 + 6 / 12, "feet"),
  13530. weight: math.unit(20, "lb"),
  13531. name: "Back (Kobold)",
  13532. image: {
  13533. source: "./media/characters/rufran/kobold-back.svg",
  13534. extra: 2054 / 1839,
  13535. bottom: 0.01
  13536. }
  13537. },
  13538. koboldHand: {
  13539. height: math.unit(0.2166, "meters"),
  13540. name: "Hand (Kobold)",
  13541. image: {
  13542. source: "./media/characters/rufran/kobold-hand.svg"
  13543. }
  13544. },
  13545. koboldFoot: {
  13546. height: math.unit(0.185, "meters"),
  13547. name: "Foot (Kobold)",
  13548. image: {
  13549. source: "./media/characters/rufran/kobold-foot.svg"
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Micro",
  13556. height: math.unit(1, "inch")
  13557. },
  13558. {
  13559. name: "Normal",
  13560. height: math.unit(2 + 6 / 12, "feet"),
  13561. default: true
  13562. },
  13563. {
  13564. name: "Big",
  13565. height: math.unit(60, "feet")
  13566. },
  13567. {
  13568. name: "Macro",
  13569. height: math.unit(325, "feet")
  13570. },
  13571. ]
  13572. ))
  13573. characterMakers.push(() => makeCharacter(
  13574. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13575. {
  13576. front: {
  13577. height: math.unit(0.3, "meters"),
  13578. weight: math.unit(3.5, "kg"),
  13579. name: "Front",
  13580. image: {
  13581. source: "./media/characters/chip/front.svg",
  13582. extra: 748 / 674
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Micro",
  13589. height: math.unit(1, "inch"),
  13590. default: true
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13596. {
  13597. side: {
  13598. height: math.unit(2.3, "meters"),
  13599. weight: math.unit(3500, "lb"),
  13600. name: "Side",
  13601. image: {
  13602. source: "./media/characters/torvid/side.svg",
  13603. extra: 1972 / 722,
  13604. bottom: 0.035
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(2.3, "meters"),
  13612. default: true
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(2, "meters"),
  13621. weight: math.unit(150.5, "kg"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/susan/front.svg",
  13625. extra: 693 / 635,
  13626. bottom: 0.05
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Megamacro",
  13633. height: math.unit(505, "miles"),
  13634. default: true
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(150, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/raindrops/front.svg",
  13647. extra: 2655 / 2461,
  13648. bottom: 49 / 2705
  13649. }
  13650. },
  13651. back: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Back",
  13655. image: {
  13656. source: "./media/characters/raindrops/back.svg",
  13657. extra: 2574 / 2400,
  13658. bottom: 65 / 2634
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Micro",
  13665. height: math.unit(6, "inches")
  13666. },
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(6 + 2 / 12, "feet")
  13670. },
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(131, "feet"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Megamacro",
  13678. height: math.unit(15, "miles")
  13679. },
  13680. {
  13681. name: "Gigamacro",
  13682. height: math.unit(4000, "miles")
  13683. },
  13684. {
  13685. name: "Teramacro",
  13686. height: math.unit(315000, "miles")
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13692. {
  13693. front: {
  13694. height: math.unit(2.794, "meters"),
  13695. weight: math.unit(325, "kg"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/tezwa/front.svg",
  13699. extra: 2083 / 1906,
  13700. bottom: 0.031
  13701. }
  13702. },
  13703. foot: {
  13704. height: math.unit(0.687, "meters"),
  13705. name: "Foot",
  13706. image: {
  13707. source: "./media/characters/tezwa/foot.svg"
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Normal",
  13714. height: math.unit(9 + 2 / 12, "feet"),
  13715. default: true
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(58, "feet"),
  13724. weight: math.unit(89000, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/typhus/front.svg",
  13728. extra: 816 / 800,
  13729. bottom: 0.065
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Macro",
  13736. height: math.unit(58, "feet"),
  13737. default: true
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(12, "feet"),
  13746. weight: math.unit(6, "tonnes"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/lyra-von-wulf/front.svg",
  13750. extra: 1,
  13751. bottom: 0.10
  13752. }
  13753. },
  13754. frontMecha: {
  13755. height: math.unit(12, "feet"),
  13756. weight: math.unit(12, "tonnes"),
  13757. name: "Front (Mecha)",
  13758. image: {
  13759. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13760. extra: 1,
  13761. bottom: 0.042
  13762. }
  13763. },
  13764. maw: {
  13765. height: math.unit(2.2, "feet"),
  13766. name: "Maw",
  13767. image: {
  13768. source: "./media/characters/lyra-von-wulf/maw.svg"
  13769. }
  13770. },
  13771. },
  13772. [
  13773. {
  13774. name: "Normal",
  13775. height: math.unit(12, "feet"),
  13776. default: true
  13777. },
  13778. {
  13779. name: "Classic",
  13780. height: math.unit(50, "feet")
  13781. },
  13782. {
  13783. name: "Macro",
  13784. height: math.unit(500, "feet")
  13785. },
  13786. {
  13787. name: "Megamacro",
  13788. height: math.unit(1, "mile")
  13789. },
  13790. {
  13791. name: "Gigamacro",
  13792. height: math.unit(400, "miles")
  13793. },
  13794. {
  13795. name: "Teramacro",
  13796. height: math.unit(22000, "miles")
  13797. },
  13798. {
  13799. name: "Solarmacro",
  13800. height: math.unit(8600000, "miles")
  13801. },
  13802. {
  13803. name: "Galactic",
  13804. height: math.unit(1057000, "lightyears")
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13810. {
  13811. front: {
  13812. height: math.unit(6 + 10 / 12, "feet"),
  13813. weight: math.unit(150, "lb"),
  13814. name: "Front",
  13815. image: {
  13816. source: "./media/characters/dixon/front.svg",
  13817. extra: 3361 / 3209,
  13818. bottom: 0.01
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Normal",
  13825. height: math.unit(6 + 10 / 12, "feet"),
  13826. default: true
  13827. },
  13828. {
  13829. name: "Big",
  13830. height: math.unit(12, "meters")
  13831. },
  13832. {
  13833. name: "Macro",
  13834. height: math.unit(500, "meters")
  13835. },
  13836. {
  13837. name: "Megamacro",
  13838. height: math.unit(2, "km")
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13844. {
  13845. front: {
  13846. height: math.unit(185, "cm"),
  13847. weight: math.unit(68, "kg"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/kauko/front.svg",
  13851. extra: 1455 / 1421,
  13852. bottom: 0.03
  13853. }
  13854. },
  13855. back: {
  13856. height: math.unit(185, "cm"),
  13857. weight: math.unit(68, "kg"),
  13858. name: "Back",
  13859. image: {
  13860. source: "./media/characters/kauko/back.svg",
  13861. extra: 1455 / 1421,
  13862. bottom: 0.004
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Normal",
  13869. height: math.unit(185, "cm"),
  13870. default: true
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13876. {
  13877. frontSfw: {
  13878. height: math.unit(5, "meters"),
  13879. weight: math.unit(4250, "lb"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/varg/front-sfw.svg",
  13883. extra: 1103/1010,
  13884. bottom: 50/1153
  13885. },
  13886. form: "anthro",
  13887. default: true
  13888. },
  13889. backSfw: {
  13890. height: math.unit(5, "meters"),
  13891. weight: math.unit(4250, "lb"),
  13892. name: "Back",
  13893. image: {
  13894. source: "./media/characters/varg/back-sfw.svg",
  13895. extra: 1038/1022,
  13896. bottom: 36/1074
  13897. },
  13898. form: "anthro"
  13899. },
  13900. frontNsfw: {
  13901. height: math.unit(5, "meters"),
  13902. weight: math.unit(4250, "lb"),
  13903. name: "Front (NSFW)",
  13904. image: {
  13905. source: "./media/characters/varg/front-nsfw.svg",
  13906. extra: 1103/1010,
  13907. bottom: 50/1153
  13908. },
  13909. form: "anthro"
  13910. },
  13911. sheath: {
  13912. height: math.unit(3.8, "feet"),
  13913. weight: math.unit(90, "kilograms"),
  13914. name: "Sheath",
  13915. image: {
  13916. source: "./media/characters/varg/sheath.svg"
  13917. },
  13918. form: "anthro"
  13919. },
  13920. dick: {
  13921. height: math.unit(4.6, "feet"),
  13922. weight: math.unit(451, "kilograms"),
  13923. name: "Dick",
  13924. image: {
  13925. source: "./media/characters/varg/dick.svg"
  13926. },
  13927. form: "anthro"
  13928. },
  13929. feralSfw: {
  13930. height: math.unit(5, "meters"),
  13931. weight: math.unit(100000, "lb"),
  13932. name: "Side",
  13933. image: {
  13934. source: "./media/characters/varg/feral-sfw.svg",
  13935. extra: 1065/511,
  13936. bottom: 211/1276
  13937. },
  13938. form: "feral",
  13939. default: true
  13940. },
  13941. feralNsfw: {
  13942. height: math.unit(5, "meters"),
  13943. weight: math.unit(100000, "lb"),
  13944. name: "Side (NSFW)",
  13945. image: {
  13946. source: "./media/characters/varg/feral-nsfw.svg",
  13947. extra: 1065/511,
  13948. bottom: 211/1276
  13949. },
  13950. form: "feral",
  13951. },
  13952. feralSheath: {
  13953. height: math.unit(9.8, "feet"),
  13954. weight: math.unit(2000, "kilograms"),
  13955. name: "Sheath",
  13956. image: {
  13957. source: "./media/characters/varg/sheath.svg"
  13958. },
  13959. form: "feral"
  13960. },
  13961. feralDick: {
  13962. height: math.unit(13.11, "feet"),
  13963. weight: math.unit(10440, "kilograms"),
  13964. name: "Dick",
  13965. image: {
  13966. source: "./media/characters/varg/dick.svg"
  13967. },
  13968. form: "feral"
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Normal",
  13974. height: math.unit(5, "meters"),
  13975. form: "anthro"
  13976. },
  13977. {
  13978. name: "Macro",
  13979. height: math.unit(200, "meters"),
  13980. form: "anthro"
  13981. },
  13982. {
  13983. name: "Megamacro",
  13984. height: math.unit(20, "kilometers"),
  13985. form: "anthro"
  13986. },
  13987. {
  13988. name: "True Size",
  13989. height: math.unit(211, "km"),
  13990. form: "anthro",
  13991. default: true
  13992. },
  13993. {
  13994. name: "Gigamacro",
  13995. height: math.unit(1000, "km"),
  13996. form: "anthro"
  13997. },
  13998. {
  13999. name: "Gigamacro+",
  14000. height: math.unit(8000, "km"),
  14001. form: "anthro"
  14002. },
  14003. {
  14004. name: "Teramacro",
  14005. height: math.unit(1000000, "km"),
  14006. form: "anthro"
  14007. },
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(5, "meters"),
  14011. form: "feral"
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(200, "meters"),
  14016. form: "feral"
  14017. },
  14018. {
  14019. name: "Megamacro",
  14020. height: math.unit(20, "kilometers"),
  14021. form: "feral"
  14022. },
  14023. {
  14024. name: "True Size",
  14025. height: math.unit(211, "km"),
  14026. form: "feral",
  14027. default: true
  14028. },
  14029. {
  14030. name: "Gigamacro",
  14031. height: math.unit(1000, "km"),
  14032. form: "feral"
  14033. },
  14034. {
  14035. name: "Gigamacro+",
  14036. height: math.unit(8000, "km"),
  14037. form: "feral"
  14038. },
  14039. {
  14040. name: "Teramacro",
  14041. height: math.unit(1000000, "km"),
  14042. form: "feral"
  14043. },
  14044. ],
  14045. {
  14046. "anthro": {
  14047. name: "Anthro",
  14048. default: true
  14049. },
  14050. "feral": {
  14051. name: "Feral",
  14052. },
  14053. }
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(7 + 7 / 12, "feet"),
  14060. weight: math.unit(267, "lb"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/dayza/front.svg",
  14064. extra: 1262 / 1200,
  14065. bottom: 0.035
  14066. }
  14067. },
  14068. side: {
  14069. height: math.unit(7 + 7 / 12, "feet"),
  14070. weight: math.unit(267, "lb"),
  14071. name: "Side",
  14072. image: {
  14073. source: "./media/characters/dayza/side.svg",
  14074. extra: 1295 / 1245,
  14075. bottom: 0.05
  14076. }
  14077. },
  14078. back: {
  14079. height: math.unit(7 + 7 / 12, "feet"),
  14080. weight: math.unit(267, "lb"),
  14081. name: "Back",
  14082. image: {
  14083. source: "./media/characters/dayza/back.svg",
  14084. extra: 1241 / 1170
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Normal",
  14091. height: math.unit(7 + 7 / 12, "feet"),
  14092. default: true
  14093. },
  14094. {
  14095. name: "Macro",
  14096. height: math.unit(155, "feet")
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(6 + 5 / 12, "feet"),
  14105. weight: math.unit(160, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/xanthos/front.svg",
  14109. extra: 1,
  14110. bottom: 0.04
  14111. }
  14112. },
  14113. back: {
  14114. height: math.unit(6 + 5 / 12, "feet"),
  14115. weight: math.unit(160, "lb"),
  14116. name: "Back",
  14117. image: {
  14118. source: "./media/characters/xanthos/back.svg",
  14119. extra: 1,
  14120. bottom: 0.03
  14121. }
  14122. },
  14123. hand: {
  14124. height: math.unit(0.928, "feet"),
  14125. name: "Hand",
  14126. image: {
  14127. source: "./media/characters/xanthos/hand.svg"
  14128. }
  14129. },
  14130. foot: {
  14131. height: math.unit(1.286, "feet"),
  14132. name: "Foot",
  14133. image: {
  14134. source: "./media/characters/xanthos/foot.svg"
  14135. }
  14136. },
  14137. },
  14138. [
  14139. {
  14140. name: "Normal",
  14141. height: math.unit(6 + 5 / 12, "feet"),
  14142. default: true
  14143. },
  14144. {
  14145. name: "Normal+",
  14146. height: math.unit(6, "meters")
  14147. },
  14148. {
  14149. name: "Macro",
  14150. height: math.unit(40, "feet")
  14151. },
  14152. {
  14153. name: "Macro+",
  14154. height: math.unit(200, "meters")
  14155. },
  14156. {
  14157. name: "Megamacro",
  14158. height: math.unit(20, "km")
  14159. },
  14160. {
  14161. name: "Megamacro+",
  14162. height: math.unit(100, "km")
  14163. },
  14164. {
  14165. name: "Gigamacro",
  14166. height: math.unit(200, "megameters")
  14167. },
  14168. {
  14169. name: "Gigamacro+",
  14170. height: math.unit(1.5, "gigameters")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6 + 3 / 12, "feet"),
  14179. weight: math.unit(215, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/grynn/front.svg",
  14183. extra: 4627 / 4209,
  14184. bottom: 0.047
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Micro",
  14191. height: math.unit(6, "inches")
  14192. },
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(6 + 3 / 12, "feet"),
  14196. default: true
  14197. },
  14198. {
  14199. name: "Big",
  14200. height: math.unit(104, "feet")
  14201. },
  14202. {
  14203. name: "Macro",
  14204. height: math.unit(944, "feet")
  14205. },
  14206. {
  14207. name: "Macro+",
  14208. height: math.unit(9480, "feet")
  14209. },
  14210. {
  14211. name: "Megamacro",
  14212. height: math.unit(78752, "feet")
  14213. },
  14214. {
  14215. name: "Megamacro+",
  14216. height: math.unit(630128, "feet")
  14217. },
  14218. {
  14219. name: "Megamacro++",
  14220. height: math.unit(3150695, "feet")
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(7 + 5 / 12, "feet"),
  14229. weight: math.unit(450, "lb"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/mocha-aura/front.svg",
  14233. extra: 1907 / 1817,
  14234. bottom: 0.04
  14235. }
  14236. },
  14237. back: {
  14238. height: math.unit(7 + 5 / 12, "feet"),
  14239. weight: math.unit(450, "lb"),
  14240. name: "Back",
  14241. image: {
  14242. source: "./media/characters/mocha-aura/back.svg",
  14243. extra: 1900 / 1825,
  14244. bottom: 0.045
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Nano",
  14251. height: math.unit(1, "nm")
  14252. },
  14253. {
  14254. name: "Megamicro",
  14255. height: math.unit(1, "mm")
  14256. },
  14257. {
  14258. name: "Micro",
  14259. height: math.unit(3, "inches")
  14260. },
  14261. {
  14262. name: "Normal",
  14263. height: math.unit(7 + 5 / 12, "feet"),
  14264. default: true
  14265. },
  14266. {
  14267. name: "Macro",
  14268. height: math.unit(30, "feet")
  14269. },
  14270. {
  14271. name: "Megamacro",
  14272. height: math.unit(3500, "feet")
  14273. },
  14274. {
  14275. name: "Teramacro",
  14276. height: math.unit(500000, "miles")
  14277. },
  14278. {
  14279. name: "Petamacro",
  14280. height: math.unit(50000000000000000, "parsecs")
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14286. {
  14287. front: {
  14288. height: math.unit(6, "feet"),
  14289. weight: math.unit(150, "lb"),
  14290. name: "Front",
  14291. image: {
  14292. source: "./media/characters/ilisha-devya/front.svg",
  14293. extra: 1053/1049,
  14294. bottom: 270/1323
  14295. }
  14296. },
  14297. back: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(150, "lb"),
  14300. name: "Back",
  14301. image: {
  14302. source: "./media/characters/ilisha-devya/back.svg",
  14303. extra: 1131/1128,
  14304. bottom: 39/1170
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Macro",
  14311. height: math.unit(500, "feet"),
  14312. default: true
  14313. },
  14314. {
  14315. name: "Megamacro",
  14316. height: math.unit(10, "miles")
  14317. },
  14318. {
  14319. name: "Gigamacro",
  14320. height: math.unit(100000, "miles")
  14321. },
  14322. {
  14323. name: "Examacro",
  14324. height: math.unit(1e9, "lightyears")
  14325. },
  14326. {
  14327. name: "Omniversal",
  14328. height: math.unit(1e33, "lightyears")
  14329. },
  14330. {
  14331. name: "Beyond Infinite",
  14332. height: math.unit(1e100, "lightyears")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14338. {
  14339. Side: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(150, "lb"),
  14342. name: "Side",
  14343. image: {
  14344. source: "./media/characters/mira/side.svg",
  14345. extra: 900 / 799,
  14346. bottom: 0.02
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Human Size",
  14353. height: math.unit(6, "feet")
  14354. },
  14355. {
  14356. name: "Macro",
  14357. height: math.unit(100, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Megamacro",
  14362. height: math.unit(10, "miles")
  14363. },
  14364. {
  14365. name: "Gigamacro",
  14366. height: math.unit(25000, "miles")
  14367. },
  14368. {
  14369. name: "Teramacro",
  14370. height: math.unit(300, "AU")
  14371. },
  14372. {
  14373. name: "Full Size",
  14374. height: math.unit(4.5e10, "lightyears")
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14380. {
  14381. front: {
  14382. height: math.unit(6, "feet"),
  14383. weight: math.unit(150, "lb"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/holly/front.svg",
  14387. extra: 639 / 606
  14388. }
  14389. },
  14390. back: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(150, "lb"),
  14393. name: "Back",
  14394. image: {
  14395. source: "./media/characters/holly/back.svg",
  14396. extra: 623 / 598
  14397. }
  14398. },
  14399. frontWorking: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(150, "lb"),
  14402. name: "Front (Working)",
  14403. image: {
  14404. source: "./media/characters/holly/front-working.svg",
  14405. extra: 607 / 577,
  14406. bottom: 0.048
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(12 + 3 / 12, "feet"),
  14414. default: true
  14415. },
  14416. ]
  14417. ))
  14418. characterMakers.push(() => makeCharacter(
  14419. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14420. {
  14421. front: {
  14422. height: math.unit(6, "feet"),
  14423. weight: math.unit(150, "lb"),
  14424. name: "Front",
  14425. image: {
  14426. source: "./media/characters/porter/front.svg",
  14427. extra: 1,
  14428. bottom: 0.01
  14429. }
  14430. },
  14431. frontRobes: {
  14432. height: math.unit(6, "feet"),
  14433. weight: math.unit(150, "lb"),
  14434. name: "Front (Robes)",
  14435. image: {
  14436. source: "./media/characters/porter/front-robes.svg",
  14437. extra: 1.01,
  14438. bottom: 0.01
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(11 + 9 / 12, "feet"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14452. {
  14453. legendary: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(150, "lb"),
  14456. name: "Legendary",
  14457. image: {
  14458. source: "./media/characters/lucy/legendary.svg",
  14459. extra: 1355 / 1100,
  14460. bottom: 0.045
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Legendary",
  14467. height: math.unit(86882 * 2, "miles"),
  14468. default: true
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14474. {
  14475. front: {
  14476. height: math.unit(6, "feet"),
  14477. weight: math.unit(150, "lb"),
  14478. name: "Front",
  14479. image: {
  14480. source: "./media/characters/drusilla/front.svg",
  14481. extra: 678 / 635,
  14482. bottom: 0.03
  14483. }
  14484. },
  14485. back: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(150, "lb"),
  14488. name: "Back",
  14489. image: {
  14490. source: "./media/characters/drusilla/back.svg",
  14491. extra: 678 / 635,
  14492. bottom: 0.005
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(100, "feet")
  14500. },
  14501. {
  14502. name: "Canon Height",
  14503. height: math.unit(2000, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(180, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/renard-thatch/front.svg",
  14517. extra: 2411 / 2275,
  14518. bottom: 0.01
  14519. }
  14520. },
  14521. frontPosing: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(180, "lb"),
  14524. name: "Front (Posing)",
  14525. image: {
  14526. source: "./media/characters/renard-thatch/front-posing.svg",
  14527. extra: 2381 / 2261,
  14528. bottom: 0.01
  14529. }
  14530. },
  14531. back: {
  14532. height: math.unit(6, "feet"),
  14533. weight: math.unit(180, "lb"),
  14534. name: "Back",
  14535. image: {
  14536. source: "./media/characters/renard-thatch/back.svg",
  14537. extra: 2428 / 2288
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Micro",
  14544. height: math.unit(3, "inches")
  14545. },
  14546. {
  14547. name: "Default",
  14548. height: math.unit(6, "feet"),
  14549. default: true
  14550. },
  14551. {
  14552. name: "Macro",
  14553. height: math.unit(75, "feet")
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14559. {
  14560. front: {
  14561. height: math.unit(1450, "feet"),
  14562. weight: math.unit(1.21e6, "tons"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/sekvra/front.svg",
  14566. extra: 1193/1190,
  14567. bottom: 78/1271
  14568. }
  14569. },
  14570. side: {
  14571. height: math.unit(1450, "feet"),
  14572. weight: math.unit(1.21e6, "tons"),
  14573. name: "Side",
  14574. image: {
  14575. source: "./media/characters/sekvra/side.svg",
  14576. extra: 1193/1190,
  14577. bottom: 52/1245
  14578. }
  14579. },
  14580. back: {
  14581. height: math.unit(1450, "feet"),
  14582. weight: math.unit(1.21e6, "tons"),
  14583. name: "Back",
  14584. image: {
  14585. source: "./media/characters/sekvra/back.svg",
  14586. extra: 1219/1216,
  14587. bottom: 21/1240
  14588. }
  14589. },
  14590. frontClothed: {
  14591. height: math.unit(1450, "feet"),
  14592. weight: math.unit(1.21e6, "tons"),
  14593. name: "Front (Clothed)",
  14594. image: {
  14595. source: "./media/characters/sekvra/front-clothed.svg",
  14596. extra: 1192/1189,
  14597. bottom: 79/1271
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Macro",
  14604. height: math.unit(1450, "feet"),
  14605. default: true
  14606. },
  14607. {
  14608. name: "Megamacro",
  14609. height: math.unit(15000, "feet")
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(6, "feet"),
  14618. weight: math.unit(150, "lb"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/carmine/front.svg",
  14622. extra: 1,
  14623. bottom: 0.035
  14624. }
  14625. },
  14626. frontArmor: {
  14627. height: math.unit(6, "feet"),
  14628. weight: math.unit(150, "lb"),
  14629. name: "Front (Armor)",
  14630. image: {
  14631. source: "./media/characters/carmine/front-armor.svg",
  14632. extra: 1,
  14633. bottom: 0.035
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Large",
  14640. height: math.unit(1, "mile")
  14641. },
  14642. {
  14643. name: "Huge",
  14644. height: math.unit(40, "miles"),
  14645. default: true
  14646. },
  14647. {
  14648. name: "Colossal",
  14649. height: math.unit(2500, "miles")
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(6, "feet"),
  14658. weight: math.unit(150, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/elyssia/front.svg",
  14662. extra: 2201 / 2035,
  14663. bottom: 0.05
  14664. }
  14665. },
  14666. frontClothed: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(150, "lb"),
  14669. name: "Front (Clothed)",
  14670. image: {
  14671. source: "./media/characters/elyssia/front-clothed.svg",
  14672. extra: 2201 / 2035,
  14673. bottom: 0.05
  14674. }
  14675. },
  14676. back: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Back",
  14680. image: {
  14681. source: "./media/characters/elyssia/back.svg",
  14682. extra: 2201 / 2035,
  14683. bottom: 0.013
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Smaller",
  14690. height: math.unit(150, "feet")
  14691. },
  14692. {
  14693. name: "Standard",
  14694. height: math.unit(1400, "feet"),
  14695. default: true
  14696. },
  14697. {
  14698. name: "Distracted",
  14699. height: math.unit(15000, "feet")
  14700. },
  14701. ]
  14702. ))
  14703. characterMakers.push(() => makeCharacter(
  14704. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14705. {
  14706. front: {
  14707. height: math.unit(7 + 4/12, "feet"),
  14708. weight: math.unit(690, "lb"),
  14709. name: "Front",
  14710. image: {
  14711. source: "./media/characters/geno-maxwell/front.svg",
  14712. extra: 984/856,
  14713. bottom: 87/1071
  14714. }
  14715. },
  14716. back: {
  14717. height: math.unit(7 + 4/12, "feet"),
  14718. weight: math.unit(690, "lb"),
  14719. name: "Back",
  14720. image: {
  14721. source: "./media/characters/geno-maxwell/back.svg",
  14722. extra: 981/854,
  14723. bottom: 57/1038
  14724. }
  14725. },
  14726. frontCostume: {
  14727. height: math.unit(7 + 4/12, "feet"),
  14728. weight: math.unit(690, "lb"),
  14729. name: "Front (Costume)",
  14730. image: {
  14731. source: "./media/characters/geno-maxwell/front-costume.svg",
  14732. extra: 984/856,
  14733. bottom: 87/1071
  14734. }
  14735. },
  14736. backcostume: {
  14737. height: math.unit(7 + 4/12, "feet"),
  14738. weight: math.unit(690, "lb"),
  14739. name: "Back (Costume)",
  14740. image: {
  14741. source: "./media/characters/geno-maxwell/back-costume.svg",
  14742. extra: 981/854,
  14743. bottom: 57/1038
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(3, "inches")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(7 + 4 / 12, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(220, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(11, "miles")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(7 + 4/12, "feet"),
  14772. weight: math.unit(750, "lb"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/regena-maxwell/front.svg",
  14776. extra: 984/856,
  14777. bottom: 87/1071
  14778. }
  14779. },
  14780. back: {
  14781. height: math.unit(7 + 4/12, "feet"),
  14782. weight: math.unit(750, "lb"),
  14783. name: "Back",
  14784. image: {
  14785. source: "./media/characters/regena-maxwell/back.svg",
  14786. extra: 981/854,
  14787. bottom: 57/1038
  14788. }
  14789. },
  14790. frontCostume: {
  14791. height: math.unit(7 + 4/12, "feet"),
  14792. weight: math.unit(750, "lb"),
  14793. name: "Front (Costume)",
  14794. image: {
  14795. source: "./media/characters/regena-maxwell/front-costume.svg",
  14796. extra: 984/856,
  14797. bottom: 87/1071
  14798. }
  14799. },
  14800. backcostume: {
  14801. height: math.unit(7 + 4/12, "feet"),
  14802. weight: math.unit(750, "lb"),
  14803. name: "Back (Costume)",
  14804. image: {
  14805. source: "./media/characters/regena-maxwell/back-costume.svg",
  14806. extra: 981/854,
  14807. bottom: 57/1038
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(7 + 4 / 12, "feet"),
  14815. default: true
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(220, "feet")
  14820. },
  14821. {
  14822. name: "Megamacro",
  14823. height: math.unit(11, "miles")
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(6, "feet"),
  14832. weight: math.unit(150, "lb"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14836. extra: 860 / 690,
  14837. bottom: 0.03
  14838. }
  14839. },
  14840. },
  14841. [
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(1.7, "meters"),
  14845. default: true
  14846. },
  14847. ]
  14848. ))
  14849. characterMakers.push(() => makeCharacter(
  14850. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14851. {
  14852. front: {
  14853. height: math.unit(6, "feet"),
  14854. weight: math.unit(150, "lb"),
  14855. name: "Front",
  14856. image: {
  14857. source: "./media/characters/quilly/front.svg",
  14858. extra: 890 / 776
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Gigamacro",
  14865. height: math.unit(404090, "miles"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(7 + 8 / 12, "feet"),
  14875. weight: math.unit(350, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/tempest/front.svg",
  14879. extra: 1175 / 1086,
  14880. bottom: 0.02
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(7 + 8 / 12, "feet"),
  14888. default: true
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14894. {
  14895. side: {
  14896. height: math.unit(4 + 5 / 12, "feet"),
  14897. weight: math.unit(80, "lb"),
  14898. name: "Side",
  14899. image: {
  14900. source: "./media/characters/rodger/side.svg",
  14901. extra: 1235 / 1118
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Micro",
  14908. height: math.unit(1, "inch")
  14909. },
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(4 + 5 / 12, "feet"),
  14913. default: true
  14914. },
  14915. {
  14916. name: "Macro",
  14917. height: math.unit(120, "feet")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/danyel/front.svg",
  14930. extra: 1185 / 1123,
  14931. bottom: 0.05
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Shrunken",
  14938. height: math.unit(0.5, "mm")
  14939. },
  14940. {
  14941. name: "Micro",
  14942. height: math.unit(1, "mm"),
  14943. default: true
  14944. },
  14945. {
  14946. name: "Upsized",
  14947. height: math.unit(5 + 5 / 12, "feet")
  14948. },
  14949. ]
  14950. ))
  14951. characterMakers.push(() => makeCharacter(
  14952. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14953. {
  14954. front: {
  14955. height: math.unit(5 + 6 / 12, "feet"),
  14956. weight: math.unit(200, "lb"),
  14957. name: "Front",
  14958. image: {
  14959. source: "./media/characters/vivian-bijoux/front.svg",
  14960. extra: 1217/1209,
  14961. bottom: 76/1293
  14962. }
  14963. },
  14964. back: {
  14965. height: math.unit(5 + 6 / 12, "feet"),
  14966. weight: math.unit(200, "lb"),
  14967. name: "Back",
  14968. image: {
  14969. source: "./media/characters/vivian-bijoux/back.svg",
  14970. extra: 1214/1208,
  14971. bottom: 51/1265
  14972. }
  14973. },
  14974. dressed: {
  14975. height: math.unit(5 + 6 / 12, "feet"),
  14976. weight: math.unit(200, "lb"),
  14977. name: "Dressed",
  14978. image: {
  14979. source: "./media/characters/vivian-bijoux/dressed.svg",
  14980. extra: 1217/1209,
  14981. bottom: 76/1293
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Normal",
  14988. height: math.unit(5 + 6 / 12, "feet"),
  14989. default: true
  14990. },
  14991. {
  14992. name: "Bad Dream",
  14993. height: math.unit(500, "feet")
  14994. },
  14995. {
  14996. name: "Nightmare",
  14997. height: math.unit(500, "miles")
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(6 + 1 / 12, "feet"),
  15006. weight: math.unit(260, "lb"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/zeta/front.svg",
  15010. extra: 1968 / 1889,
  15011. bottom: 0.06
  15012. }
  15013. },
  15014. back: {
  15015. height: math.unit(6 + 1 / 12, "feet"),
  15016. weight: math.unit(260, "lb"),
  15017. name: "Back",
  15018. image: {
  15019. source: "./media/characters/zeta/back.svg",
  15020. extra: 1944 / 1858,
  15021. bottom: 0.03
  15022. }
  15023. },
  15024. hand: {
  15025. height: math.unit(1.112, "feet"),
  15026. name: "Hand",
  15027. image: {
  15028. source: "./media/characters/zeta/hand.svg"
  15029. }
  15030. },
  15031. foot: {
  15032. height: math.unit(1.48, "feet"),
  15033. name: "Foot",
  15034. image: {
  15035. source: "./media/characters/zeta/foot.svg"
  15036. }
  15037. },
  15038. },
  15039. [
  15040. {
  15041. name: "Micro",
  15042. height: math.unit(6, "inches")
  15043. },
  15044. {
  15045. name: "Normal",
  15046. height: math.unit(6 + 1 / 12, "feet"),
  15047. default: true
  15048. },
  15049. {
  15050. name: "Macro",
  15051. height: math.unit(20, "feet")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(150, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/jamie-larsen/front.svg",
  15064. extra: 962 / 933,
  15065. bottom: 0.02
  15066. }
  15067. },
  15068. back: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(150, "lb"),
  15071. name: "Back",
  15072. image: {
  15073. source: "./media/characters/jamie-larsen/back.svg",
  15074. extra: 997 / 946
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Macro",
  15081. height: math.unit(28 + 7 / 12, "feet"),
  15082. default: true
  15083. },
  15084. {
  15085. name: "Macro+",
  15086. height: math.unit(180, "feet")
  15087. },
  15088. {
  15089. name: "Megamacro",
  15090. height: math.unit(10, "miles")
  15091. },
  15092. {
  15093. name: "Gigamacro",
  15094. height: math.unit(200000, "miles")
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15100. {
  15101. front: {
  15102. height: math.unit(6, "feet"),
  15103. weight: math.unit(120, "lb"),
  15104. name: "Front",
  15105. image: {
  15106. source: "./media/characters/vance/front.svg",
  15107. extra: 1980 / 1890,
  15108. bottom: 0.09
  15109. }
  15110. },
  15111. back: {
  15112. height: math.unit(6, "feet"),
  15113. weight: math.unit(120, "lb"),
  15114. name: "Back",
  15115. image: {
  15116. source: "./media/characters/vance/back.svg",
  15117. extra: 2081 / 1994,
  15118. bottom: 0.014
  15119. }
  15120. },
  15121. hand: {
  15122. height: math.unit(0.88, "feet"),
  15123. name: "Hand",
  15124. image: {
  15125. source: "./media/characters/vance/hand.svg"
  15126. }
  15127. },
  15128. foot: {
  15129. height: math.unit(0.64, "feet"),
  15130. name: "Foot",
  15131. image: {
  15132. source: "./media/characters/vance/foot.svg"
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Small",
  15139. height: math.unit(90, "feet"),
  15140. default: true
  15141. },
  15142. {
  15143. name: "Macro",
  15144. height: math.unit(100, "meters")
  15145. },
  15146. {
  15147. name: "Megamacro",
  15148. height: math.unit(15, "miles")
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(180, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/xochitl/front.svg",
  15161. extra: 2297 / 2261,
  15162. bottom: 0.065
  15163. }
  15164. },
  15165. back: {
  15166. height: math.unit(6, "feet"),
  15167. weight: math.unit(180, "lb"),
  15168. name: "Back",
  15169. image: {
  15170. source: "./media/characters/xochitl/back.svg",
  15171. extra: 2386 / 2354,
  15172. bottom: 0.01
  15173. }
  15174. },
  15175. foot: {
  15176. height: math.unit(6 / 5 * 1.15, "feet"),
  15177. weight: math.unit(150, "lb"),
  15178. name: "Foot",
  15179. image: {
  15180. source: "./media/characters/xochitl/foot.svg"
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Macro",
  15187. height: math.unit(80, "feet")
  15188. },
  15189. {
  15190. name: "Macro+",
  15191. height: math.unit(400, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Gigamacro",
  15196. height: math.unit(80000, "miles")
  15197. },
  15198. {
  15199. name: "Gigamacro+",
  15200. height: math.unit(400000, "miles")
  15201. },
  15202. {
  15203. name: "Teramacro",
  15204. height: math.unit(300, "AU")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/vincent/front.svg",
  15217. extra: 1130 / 1080,
  15218. bottom: 0.055
  15219. }
  15220. },
  15221. beak: {
  15222. height: math.unit(6 * 0.1, "feet"),
  15223. name: "Beak",
  15224. image: {
  15225. source: "./media/characters/vincent/beak.svg"
  15226. }
  15227. },
  15228. hand: {
  15229. height: math.unit(6 * 0.85, "feet"),
  15230. weight: math.unit(150, "lb"),
  15231. name: "Hand",
  15232. image: {
  15233. source: "./media/characters/vincent/hand.svg"
  15234. }
  15235. },
  15236. foot: {
  15237. height: math.unit(6 * 0.19, "feet"),
  15238. weight: math.unit(150, "lb"),
  15239. name: "Foot",
  15240. image: {
  15241. source: "./media/characters/vincent/foot.svg"
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Base",
  15248. height: math.unit(6 + 5 / 12, "feet"),
  15249. default: true
  15250. },
  15251. {
  15252. name: "Macro",
  15253. height: math.unit(300, "feet")
  15254. },
  15255. {
  15256. name: "Megamacro",
  15257. height: math.unit(2, "miles")
  15258. },
  15259. {
  15260. name: "Gigamacro",
  15261. height: math.unit(1000, "miles")
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15267. {
  15268. front: {
  15269. height: math.unit(2, "meters"),
  15270. weight: math.unit(500, "kg"),
  15271. name: "Front",
  15272. image: {
  15273. source: "./media/characters/coatl/front.svg",
  15274. extra: 3948 / 3500,
  15275. bottom: 0.082
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(4, "meters")
  15283. },
  15284. {
  15285. name: "Macro",
  15286. height: math.unit(100, "meters"),
  15287. default: true
  15288. },
  15289. {
  15290. name: "Macro+",
  15291. height: math.unit(300, "meters")
  15292. },
  15293. {
  15294. name: "Megamacro",
  15295. height: math.unit(3, "gigameters")
  15296. },
  15297. {
  15298. name: "Megamacro+",
  15299. height: math.unit(300, "terameters")
  15300. },
  15301. {
  15302. name: "Megamacro++",
  15303. height: math.unit(3, "lightyears")
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15309. {
  15310. front: {
  15311. height: math.unit(6, "feet"),
  15312. weight: math.unit(50, "kg"),
  15313. name: "front",
  15314. image: {
  15315. source: "./media/characters/shiroryu/front.svg",
  15316. extra: 1990 / 1935
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Mortal Mingling",
  15323. height: math.unit(3, "meters")
  15324. },
  15325. {
  15326. name: "Kaiju-ish",
  15327. height: math.unit(250, "meters")
  15328. },
  15329. {
  15330. name: "Somewhat Godly",
  15331. height: math.unit(400, "km"),
  15332. default: true
  15333. },
  15334. {
  15335. name: "Planetary",
  15336. height: math.unit(300, "megameters")
  15337. },
  15338. {
  15339. name: "Galaxy-dwarfing",
  15340. height: math.unit(450, "kiloparsecs")
  15341. },
  15342. {
  15343. name: "Universe Eater",
  15344. height: math.unit(150, "gigaparsecs")
  15345. },
  15346. {
  15347. name: "Almost Immeasurable",
  15348. height: math.unit(1.3e266, "yottaparsecs")
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(6, "feet"),
  15357. weight: math.unit(150, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/umeko/front.svg",
  15361. extra: 1,
  15362. bottom: 0.019
  15363. }
  15364. },
  15365. frontArmored: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(150, "lb"),
  15368. name: "Front (Armored)",
  15369. image: {
  15370. source: "./media/characters/umeko/front-armored.svg",
  15371. extra: 1,
  15372. bottom: 0.021
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Macro",
  15379. height: math.unit(220, "feet"),
  15380. default: true
  15381. },
  15382. {
  15383. name: "Guardian Dragon",
  15384. height: math.unit(50, "miles")
  15385. },
  15386. {
  15387. name: "Cosmic",
  15388. height: math.unit(800000, "miles")
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/cassidy/front.svg",
  15401. extra: 810/808,
  15402. bottom: 41/851
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Canon Height",
  15409. height: math.unit(120, "feet"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Macro+",
  15414. height: math.unit(400, "feet")
  15415. },
  15416. {
  15417. name: "Macro++",
  15418. height: math.unit(4000, "feet")
  15419. },
  15420. {
  15421. name: "Megamacro",
  15422. height: math.unit(3, "miles")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/isaac/front.svg",
  15435. extra: 896 / 815,
  15436. bottom: 0.11
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Human Size",
  15443. height: math.unit(8, "feet"),
  15444. default: true
  15445. },
  15446. {
  15447. name: "Macro",
  15448. height: math.unit(400, "feet")
  15449. },
  15450. {
  15451. name: "Megamacro",
  15452. height: math.unit(50, "miles")
  15453. },
  15454. {
  15455. name: "Canon Height",
  15456. height: math.unit(200, "AU")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(6, "feet"),
  15465. weight: math.unit(72, "kg"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/sleekit/front.svg",
  15469. extra: 4693 / 4487,
  15470. bottom: 0.012
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Minimum Height",
  15477. height: math.unit(10, "meters")
  15478. },
  15479. {
  15480. name: "Smaller",
  15481. height: math.unit(25, "meters")
  15482. },
  15483. {
  15484. name: "Larger",
  15485. height: math.unit(38, "meters"),
  15486. default: true
  15487. },
  15488. {
  15489. name: "Maximum height",
  15490. height: math.unit(100, "meters")
  15491. },
  15492. ]
  15493. ))
  15494. characterMakers.push(() => makeCharacter(
  15495. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15496. {
  15497. front: {
  15498. height: math.unit(6, "feet"),
  15499. weight: math.unit(150, "lb"),
  15500. name: "Front",
  15501. image: {
  15502. source: "./media/characters/nillia/front.svg",
  15503. extra: 2195 / 2037,
  15504. bottom: 0.005
  15505. }
  15506. },
  15507. back: {
  15508. height: math.unit(6, "feet"),
  15509. weight: math.unit(150, "lb"),
  15510. name: "Back",
  15511. image: {
  15512. source: "./media/characters/nillia/back.svg",
  15513. extra: 2195 / 2037,
  15514. bottom: 0.005
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Canon Height",
  15521. height: math.unit(489, "feet"),
  15522. default: true
  15523. }
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6, "feet"),
  15531. weight: math.unit(150, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/mesmyriza/front.svg",
  15535. extra: 2067 / 1784,
  15536. bottom: 0.035
  15537. }
  15538. },
  15539. foot: {
  15540. height: math.unit(6 / (250 / 35), "feet"),
  15541. name: "Foot",
  15542. image: {
  15543. source: "./media/characters/mesmyriza/foot.svg"
  15544. }
  15545. },
  15546. },
  15547. [
  15548. {
  15549. name: "Macro",
  15550. height: math.unit(457, "meters"),
  15551. default: true
  15552. },
  15553. {
  15554. name: "Megamacro",
  15555. height: math.unit(8, "megameters")
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15561. {
  15562. front: {
  15563. height: math.unit(6, "feet"),
  15564. weight: math.unit(250, "lb"),
  15565. name: "Front",
  15566. image: {
  15567. source: "./media/characters/saudade/front.svg",
  15568. extra: 1172 / 1139,
  15569. bottom: 0.035
  15570. }
  15571. },
  15572. },
  15573. [
  15574. {
  15575. name: "Micro",
  15576. height: math.unit(3, "inches")
  15577. },
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(6, "feet"),
  15581. default: true
  15582. },
  15583. {
  15584. name: "Macro",
  15585. height: math.unit(50, "feet")
  15586. },
  15587. {
  15588. name: "Megamacro",
  15589. height: math.unit(2800, "feet")
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(5 + 4 / 12, "feet"),
  15598. weight: math.unit(100, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/keireer/front.svg",
  15602. extra: 716 / 666,
  15603. bottom: 0.05
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(5 + 4 / 12, "feet"),
  15611. default: true
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15617. {
  15618. front: {
  15619. height: math.unit(5.5, "feet"),
  15620. weight: math.unit(90, "kg"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/mirja/front.svg",
  15624. extra: 1452/1262,
  15625. bottom: 67/1519
  15626. }
  15627. },
  15628. frontDressed: {
  15629. height: math.unit(5.5, "feet"),
  15630. weight: math.unit(90, "lb"),
  15631. name: "Front (Dressed)",
  15632. image: {
  15633. source: "./media/characters/mirja/dressed.svg",
  15634. extra: 1452/1262,
  15635. bottom: 67/1519
  15636. }
  15637. },
  15638. back: {
  15639. height: math.unit(6, "feet"),
  15640. weight: math.unit(90, "lb"),
  15641. name: "Back",
  15642. image: {
  15643. source: "./media/characters/mirja/back.svg",
  15644. extra: 1892/1795,
  15645. bottom: 48/1940
  15646. }
  15647. },
  15648. maw: {
  15649. height: math.unit(1.312, "feet"),
  15650. name: "Maw",
  15651. image: {
  15652. source: "./media/characters/mirja/maw.svg"
  15653. }
  15654. },
  15655. paw: {
  15656. height: math.unit(1.15, "feet"),
  15657. name: "Paw",
  15658. image: {
  15659. source: "./media/characters/mirja/paw.svg"
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "\"Incognito\"",
  15666. height: math.unit(3, "meters")
  15667. },
  15668. {
  15669. name: "Strolling Size",
  15670. height: math.unit(15, "km")
  15671. },
  15672. {
  15673. name: "Larger Strolling Size",
  15674. height: math.unit(400, "km")
  15675. },
  15676. {
  15677. name: "Preferred Size",
  15678. height: math.unit(5000, "km"),
  15679. default: true
  15680. },
  15681. {
  15682. name: "True Size",
  15683. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(15, "feet"),
  15692. weight: math.unit(880, "kg"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/nightraver/front.svg",
  15696. extra: 2444 / 2160,
  15697. bottom: 0.027
  15698. }
  15699. },
  15700. back: {
  15701. height: math.unit(15, "feet"),
  15702. weight: math.unit(880, "kg"),
  15703. name: "Back",
  15704. image: {
  15705. source: "./media/characters/nightraver/back.svg",
  15706. extra: 2309 / 2180,
  15707. bottom: 0.005
  15708. }
  15709. },
  15710. sole: {
  15711. height: math.unit(2.878, "feet"),
  15712. name: "Sole",
  15713. image: {
  15714. source: "./media/characters/nightraver/sole.svg"
  15715. }
  15716. },
  15717. foot: {
  15718. height: math.unit(2.285, "feet"),
  15719. name: "Foot",
  15720. image: {
  15721. source: "./media/characters/nightraver/foot.svg"
  15722. }
  15723. },
  15724. maw: {
  15725. height: math.unit(2.67, "feet"),
  15726. name: "Maw",
  15727. image: {
  15728. source: "./media/characters/nightraver/maw.svg"
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Micro",
  15735. height: math.unit(1, "cm")
  15736. },
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(15, "feet"),
  15740. default: true
  15741. },
  15742. {
  15743. name: "Macro",
  15744. height: math.unit(300, "feet")
  15745. },
  15746. {
  15747. name: "Megamacro",
  15748. height: math.unit(300, "miles")
  15749. },
  15750. {
  15751. name: "Gigamacro",
  15752. height: math.unit(10000, "miles")
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15758. {
  15759. side: {
  15760. height: math.unit(2, "inches"),
  15761. weight: math.unit(5, "grams"),
  15762. name: "Side",
  15763. image: {
  15764. source: "./media/characters/arc/side.svg"
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Micro",
  15771. height: math.unit(2, "inches"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(1.1938, "meters"),
  15781. weight: math.unit(54, "kg"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/nebula-shahar/front.svg",
  15785. extra: 1642 / 1436,
  15786. bottom: 0.06
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Megamicro",
  15793. height: math.unit(0.3, "mm")
  15794. },
  15795. {
  15796. name: "Micro",
  15797. height: math.unit(3, "cm")
  15798. },
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(138, "cm"),
  15802. default: true
  15803. },
  15804. {
  15805. name: "Macro",
  15806. height: math.unit(30, "m")
  15807. },
  15808. ]
  15809. ))
  15810. characterMakers.push(() => makeCharacter(
  15811. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15812. {
  15813. front: {
  15814. height: math.unit(5.24, "feet"),
  15815. weight: math.unit(150, "lb"),
  15816. name: "Front",
  15817. image: {
  15818. source: "./media/characters/shayla/front.svg",
  15819. extra: 1512 / 1414,
  15820. bottom: 0.01
  15821. }
  15822. },
  15823. back: {
  15824. height: math.unit(5.24, "feet"),
  15825. weight: math.unit(150, "lb"),
  15826. name: "Back",
  15827. image: {
  15828. source: "./media/characters/shayla/back.svg",
  15829. extra: 1512 / 1414
  15830. }
  15831. },
  15832. hand: {
  15833. height: math.unit(0.7781496062992126, "feet"),
  15834. name: "Hand",
  15835. image: {
  15836. source: "./media/characters/shayla/hand.svg"
  15837. }
  15838. },
  15839. foot: {
  15840. height: math.unit(1.4206036745406823, "feet"),
  15841. name: "Foot",
  15842. image: {
  15843. source: "./media/characters/shayla/foot.svg"
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Micro",
  15850. height: math.unit(0.32, "feet")
  15851. },
  15852. {
  15853. name: "Normal",
  15854. height: math.unit(5.24, "feet"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(492.12, "feet")
  15860. },
  15861. {
  15862. name: "Megamacro",
  15863. height: math.unit(186.41, "miles")
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(2.2, "m"),
  15872. weight: math.unit(120, "kg"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/pia-jr/front.svg",
  15876. extra: 1000 / 970,
  15877. bottom: 0.035
  15878. }
  15879. },
  15880. hand: {
  15881. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15882. name: "Hand",
  15883. image: {
  15884. source: "./media/characters/pia-jr/hand.svg"
  15885. }
  15886. },
  15887. paw: {
  15888. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15889. name: "Paw",
  15890. image: {
  15891. source: "./media/characters/pia-jr/paw.svg"
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Micro",
  15898. height: math.unit(1.2, "cm")
  15899. },
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(2.2, "m"),
  15903. default: true
  15904. },
  15905. {
  15906. name: "Macro",
  15907. height: math.unit(180, "m")
  15908. },
  15909. {
  15910. name: "Megamacro",
  15911. height: math.unit(420, "km")
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(2, "m"),
  15920. weight: math.unit(115, "kg"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/pia-sr/front.svg",
  15924. extra: 760 / 730,
  15925. bottom: 0.015
  15926. }
  15927. },
  15928. back: {
  15929. height: math.unit(2, "m"),
  15930. weight: math.unit(115, "kg"),
  15931. name: "Back",
  15932. image: {
  15933. source: "./media/characters/pia-sr/back.svg",
  15934. extra: 760 / 730,
  15935. bottom: 0.01
  15936. }
  15937. },
  15938. hand: {
  15939. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15940. name: "Hand",
  15941. image: {
  15942. source: "./media/characters/pia-sr/hand.svg"
  15943. }
  15944. },
  15945. foot: {
  15946. height: math.unit(1.83, "feet"),
  15947. name: "Foot",
  15948. image: {
  15949. source: "./media/characters/pia-sr/foot.svg"
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Micro",
  15956. height: math.unit(88, "mm")
  15957. },
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(2, "m"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Macro",
  15965. height: math.unit(200, "m")
  15966. },
  15967. {
  15968. name: "Megamacro",
  15969. height: math.unit(420, "km")
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(8 + 2 / 12, "feet"),
  15978. weight: math.unit(300, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/kibibyte/front.svg",
  15982. extra: 2221 / 2098,
  15983. bottom: 0.04
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(8 + 2 / 12, "feet"),
  15991. default: true
  15992. },
  15993. {
  15994. name: "Socialable Macro",
  15995. height: math.unit(50, "feet")
  15996. },
  15997. {
  15998. name: "Macro",
  15999. height: math.unit(300, "feet")
  16000. },
  16001. {
  16002. name: "Megamacro",
  16003. height: math.unit(500, "miles")
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6, "feet"),
  16012. weight: math.unit(150, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/felix/front.svg",
  16016. extra: 762 / 722,
  16017. bottom: 0.02
  16018. }
  16019. },
  16020. frontClothed: {
  16021. height: math.unit(6, "feet"),
  16022. weight: math.unit(150, "lb"),
  16023. name: "Front (Clothed)",
  16024. image: {
  16025. source: "./media/characters/felix/front-clothed.svg",
  16026. extra: 762 / 722,
  16027. bottom: 0.02
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(6 + 8 / 12, "feet"),
  16035. default: true
  16036. },
  16037. {
  16038. name: "Macro",
  16039. height: math.unit(2600, "feet")
  16040. },
  16041. {
  16042. name: "Megamacro",
  16043. height: math.unit(450, "miles")
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(6 + 1 / 12, "feet"),
  16052. weight: math.unit(250, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/tobo/front.svg",
  16056. extra: 608 / 586,
  16057. bottom: 0.023
  16058. }
  16059. },
  16060. back: {
  16061. height: math.unit(6 + 1 / 12, "feet"),
  16062. weight: math.unit(250, "lb"),
  16063. name: "Back",
  16064. image: {
  16065. source: "./media/characters/tobo/back.svg",
  16066. extra: 608 / 586
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Nano",
  16073. height: math.unit(2, "nm")
  16074. },
  16075. {
  16076. name: "Megamicro",
  16077. height: math.unit(0.1, "mm")
  16078. },
  16079. {
  16080. name: "Micro",
  16081. height: math.unit(1, "inch"),
  16082. default: true
  16083. },
  16084. {
  16085. name: "Human-sized",
  16086. height: math.unit(6 + 1 / 12, "feet")
  16087. },
  16088. {
  16089. name: "Macro",
  16090. height: math.unit(250, "feet")
  16091. },
  16092. {
  16093. name: "Megamacro",
  16094. height: math.unit(75, "miles")
  16095. },
  16096. {
  16097. name: "Texas-sized",
  16098. height: math.unit(750, "miles")
  16099. },
  16100. {
  16101. name: "Teramacro",
  16102. height: math.unit(50000, "miles")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(269, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/danny-kapowsky/front.svg",
  16115. extra: 766 / 736,
  16116. bottom: 0.044
  16117. }
  16118. },
  16119. back: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(269, "lb"),
  16122. name: "Back",
  16123. image: {
  16124. source: "./media/characters/danny-kapowsky/back.svg",
  16125. extra: 797 / 760,
  16126. bottom: 0.025
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Macro",
  16133. height: math.unit(150, "feet"),
  16134. default: true
  16135. },
  16136. {
  16137. name: "Macro+",
  16138. height: math.unit(200, "feet")
  16139. },
  16140. {
  16141. name: "Macro++",
  16142. height: math.unit(300, "feet")
  16143. },
  16144. {
  16145. name: "Macro+++",
  16146. height: math.unit(400, "feet")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16152. {
  16153. side: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(170, "lb"),
  16156. name: "Side",
  16157. image: {
  16158. source: "./media/characters/finn/side.svg",
  16159. extra: 1953 / 1807,
  16160. bottom: 0.057
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Megamacro",
  16167. height: math.unit(14445, "feet"),
  16168. default: true
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(5 + 6 / 12, "feet"),
  16177. weight: math.unit(125, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/roy/front.svg",
  16181. extra: 1,
  16182. bottom: 0.11
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Micro",
  16189. height: math.unit(3, "inches"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(5 + 6 / 12, "feet")
  16195. },
  16196. {
  16197. name: "Lesser Macro",
  16198. height: math.unit(60, "feet")
  16199. },
  16200. {
  16201. name: "Greater Macro",
  16202. height: math.unit(120, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(100, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/aevsivs/front.svg",
  16215. extra: 1,
  16216. bottom: 0.03
  16217. }
  16218. },
  16219. back: {
  16220. height: math.unit(6, "feet"),
  16221. weight: math.unit(100, "lb"),
  16222. name: "Back",
  16223. image: {
  16224. source: "./media/characters/aevsivs/back.svg"
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Micro",
  16231. height: math.unit(2, "inches"),
  16232. default: true
  16233. },
  16234. {
  16235. name: "Normal",
  16236. height: math.unit(5, "feet")
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(5 + 7 / 12, "feet"),
  16245. weight: math.unit(159, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/hildegard/front.svg",
  16249. extra: 289 / 269,
  16250. bottom: 7.63 / 297.8
  16251. }
  16252. },
  16253. back: {
  16254. height: math.unit(5 + 7 / 12, "feet"),
  16255. weight: math.unit(159, "lb"),
  16256. name: "Back",
  16257. image: {
  16258. source: "./media/characters/hildegard/back.svg",
  16259. extra: 280 / 260,
  16260. bottom: 2.3 / 282
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(5 + 7 / 12, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16274. {
  16275. bernard: {
  16276. height: math.unit(2 + 7 / 12, "feet"),
  16277. weight: math.unit(66, "lb"),
  16278. name: "Bernard",
  16279. rename: true,
  16280. image: {
  16281. source: "./media/characters/bernard-wilder/bernard.svg",
  16282. extra: 192 / 128,
  16283. bottom: 0.05
  16284. }
  16285. },
  16286. wilder: {
  16287. height: math.unit(5 + 8 / 12, "feet"),
  16288. weight: math.unit(143, "lb"),
  16289. name: "Wilder",
  16290. rename: true,
  16291. image: {
  16292. source: "./media/characters/bernard-wilder/wilder.svg",
  16293. extra: 361 / 312,
  16294. bottom: 0.02
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(2 + 7 / 12, "feet"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16308. {
  16309. anthro: {
  16310. height: math.unit(6 + 1 / 12, "feet"),
  16311. weight: math.unit(155, "lb"),
  16312. name: "Anthro",
  16313. image: {
  16314. source: "./media/characters/hearth/anthro.svg",
  16315. extra: 1178/1136,
  16316. bottom: 28/1206
  16317. }
  16318. },
  16319. feral: {
  16320. height: math.unit(3.78, "feet"),
  16321. weight: math.unit(35, "kg"),
  16322. name: "Feral",
  16323. image: {
  16324. source: "./media/characters/hearth/feral.svg",
  16325. extra: 153 / 135,
  16326. bottom: 0.03
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(6 + 1 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6, "feet"),
  16343. weight: math.unit(182, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/ingrid/front.svg",
  16347. extra: 294 / 268,
  16348. bottom: 0.027
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(6, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16362. {
  16363. eevee: {
  16364. height: math.unit(2 + 10 / 12, "feet"),
  16365. weight: math.unit(86, "lb"),
  16366. name: "Malgam",
  16367. image: {
  16368. source: "./media/characters/malgam/eevee.svg",
  16369. extra: 952/784,
  16370. bottom: 38/990
  16371. }
  16372. },
  16373. sylveon: {
  16374. height: math.unit(4, "feet"),
  16375. weight: math.unit(101, "lb"),
  16376. name: "Future Malgam",
  16377. rename: true,
  16378. image: {
  16379. source: "./media/characters/malgam/sylveon.svg",
  16380. extra: 371 / 325,
  16381. bottom: 0.015
  16382. }
  16383. },
  16384. gigantamax: {
  16385. height: math.unit(50, "feet"),
  16386. name: "Gigantamax Malgam",
  16387. rename: true,
  16388. image: {
  16389. source: "./media/characters/malgam/gigantamax.svg"
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(2 + 10 / 12, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(5 + 11 / 12, "feet"),
  16406. weight: math.unit(188, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/fleur/front.svg",
  16410. extra: 309 / 283,
  16411. bottom: 0.007
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(5 + 11 / 12, "feet"),
  16419. default: true
  16420. },
  16421. ]
  16422. ))
  16423. characterMakers.push(() => makeCharacter(
  16424. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16425. {
  16426. front: {
  16427. height: math.unit(5 + 4 / 12, "feet"),
  16428. weight: math.unit(122, "lb"),
  16429. name: "Front",
  16430. image: {
  16431. source: "./media/characters/jude/front.svg",
  16432. extra: 288 / 273,
  16433. bottom: 0.03
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Normal",
  16440. height: math.unit(5 + 4 / 12, "feet"),
  16441. default: true
  16442. },
  16443. ]
  16444. ))
  16445. characterMakers.push(() => makeCharacter(
  16446. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16447. {
  16448. front: {
  16449. height: math.unit(5 + 11 / 12, "feet"),
  16450. weight: math.unit(190, "lb"),
  16451. name: "Front",
  16452. image: {
  16453. source: "./media/characters/seara/front.svg",
  16454. extra: 1,
  16455. bottom: 0.05
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Normal",
  16462. height: math.unit(5 + 11 / 12, "feet"),
  16463. default: true
  16464. },
  16465. ]
  16466. ))
  16467. characterMakers.push(() => makeCharacter(
  16468. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16469. {
  16470. front: {
  16471. height: math.unit(16 + 5 / 12, "feet"),
  16472. weight: math.unit(524, "lb"),
  16473. name: "Front",
  16474. image: {
  16475. source: "./media/characters/caspian-lugia/front.svg",
  16476. extra: 1,
  16477. bottom: 0.04
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(16 + 5 / 12, "feet"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16491. {
  16492. front: {
  16493. height: math.unit(5 + 7 / 12, "feet"),
  16494. weight: math.unit(170, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/mika/front.svg",
  16498. extra: 1,
  16499. bottom: 0.016
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(5 + 7 / 12, "feet"),
  16507. default: true
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16513. {
  16514. front: {
  16515. height: math.unit(6 + 2 / 12, "feet"),
  16516. weight: math.unit(268, "lb"),
  16517. name: "Front",
  16518. image: {
  16519. source: "./media/characters/sol/front.svg",
  16520. extra: 247 / 231,
  16521. bottom: 0.05
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(6 + 2 / 12, "feet"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16535. {
  16536. buizel: {
  16537. height: math.unit(2 + 5 / 12, "feet"),
  16538. weight: math.unit(87, "lb"),
  16539. name: "Front",
  16540. image: {
  16541. source: "./media/characters/umiko/buizel.svg",
  16542. extra: 172 / 157,
  16543. bottom: 0.01
  16544. },
  16545. form: "buizel",
  16546. default: true
  16547. },
  16548. floatzel: {
  16549. height: math.unit(5 + 9 / 12, "feet"),
  16550. weight: math.unit(250, "lb"),
  16551. name: "Front",
  16552. image: {
  16553. source: "./media/characters/umiko/floatzel.svg",
  16554. extra: 1076/1006,
  16555. bottom: 15/1091
  16556. },
  16557. form: "floatzel",
  16558. default: true
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Normal",
  16564. height: math.unit(2 + 5 / 12, "feet"),
  16565. form: "buizel",
  16566. default: true
  16567. },
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(5 + 9 / 12, "feet"),
  16571. form: "floatzel",
  16572. default: true
  16573. },
  16574. ],
  16575. {
  16576. "buizel": {
  16577. name: "Buizel"
  16578. },
  16579. "floatzel": {
  16580. name: "Floatzel",
  16581. default: true
  16582. }
  16583. }
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16587. {
  16588. front: {
  16589. height: math.unit(6 + 2 / 12, "feet"),
  16590. weight: math.unit(146, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/iliac/front.svg",
  16594. extra: 389 / 365,
  16595. bottom: 0.035
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(6 + 2 / 12, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16609. {
  16610. front: {
  16611. height: math.unit(6, "feet"),
  16612. weight: math.unit(170, "lb"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/topaz/front.svg",
  16616. extra: 317 / 303,
  16617. bottom: 0.055
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(6, "feet"),
  16625. default: true
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16631. {
  16632. front: {
  16633. height: math.unit(5 + 11 / 12, "feet"),
  16634. weight: math.unit(144, "lb"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/gabriel/front.svg",
  16638. extra: 285 / 262,
  16639. bottom: 0.004
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(5 + 11 / 12, "feet"),
  16647. default: true
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16653. {
  16654. side: {
  16655. height: math.unit(6 + 5 / 12, "feet"),
  16656. weight: math.unit(300, "lb"),
  16657. name: "Side",
  16658. image: {
  16659. source: "./media/characters/tempest-suicune/side.svg",
  16660. extra: 195 / 154,
  16661. bottom: 0.04
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(6 + 5 / 12, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(7 + 2 / 12, "feet"),
  16678. weight: math.unit(322, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/vulcan/front.svg",
  16682. extra: 154 / 147,
  16683. bottom: 0.04
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(7 + 2 / 12, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16697. {
  16698. front: {
  16699. height: math.unit(5 + 10 / 12, "feet"),
  16700. weight: math.unit(264, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/gault/front.svg",
  16704. extra: 161 / 140,
  16705. bottom: 0.028
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(5 + 10 / 12, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(6, "feet"),
  16722. weight: math.unit(150, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/shard/front.svg",
  16726. extra: 273 / 238,
  16727. bottom: 0.02
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(3 + 6 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(5 + 11 / 12, "feet"),
  16744. weight: math.unit(146, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/ashe/front.svg",
  16748. extra: 400 / 373,
  16749. bottom: 0.01
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(5 + 11 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(5 + 5 / 12, "feet"),
  16766. weight: math.unit(135, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/beatrix/front.svg",
  16770. extra: 392 / 379,
  16771. bottom: 0.01
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(6, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(6 + 2/12, "feet"),
  16788. weight: math.unit(135, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/ignatius/front.svg",
  16792. extra: 1380/1259,
  16793. bottom: 27/1407
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(6 + 2/12, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(6 + 2 / 12, "feet"),
  16810. weight: math.unit(138, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/mei-li/front.svg",
  16814. extra: 237 / 229,
  16815. bottom: 0.03
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(6 + 2 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(2 + 4 / 12, "feet"),
  16832. weight: math.unit(62, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/puru/front.svg",
  16836. extra: 206 / 149,
  16837. bottom: 0.06
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(2 + 4 / 12, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16851. {
  16852. anthro: {
  16853. height: math.unit(5 + 8/12, "feet"),
  16854. weight: math.unit(200, "lb"),
  16855. energyNeed: math.unit(2000, "kcal"),
  16856. name: "Anthro",
  16857. image: {
  16858. source: "./media/characters/kee/anthro.svg",
  16859. extra: 3251/3184,
  16860. bottom: 250/3501
  16861. }
  16862. },
  16863. taur: {
  16864. height: math.unit(11, "feet"),
  16865. weight: math.unit(500, "lb"),
  16866. energyNeed: math.unit(5000, "kcal"),
  16867. name: "Taur",
  16868. image: {
  16869. source: "./media/characters/kee/taur.svg",
  16870. extra: 1362/1320,
  16871. bottom: 83/1445
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(5 + 8/12, "feet"),
  16879. default: true
  16880. },
  16881. {
  16882. name: "Macro",
  16883. height: math.unit(35, "feet")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16889. {
  16890. anthro: {
  16891. height: math.unit(7, "feet"),
  16892. weight: math.unit(190, "lb"),
  16893. name: "Anthro",
  16894. image: {
  16895. source: "./media/characters/cobalt-dracha/anthro.svg",
  16896. extra: 231 / 225,
  16897. bottom: 0.04
  16898. }
  16899. },
  16900. feral: {
  16901. height: math.unit(9 + 7 / 12, "feet"),
  16902. weight: math.unit(294, "lb"),
  16903. name: "Feral",
  16904. image: {
  16905. source: "./media/characters/cobalt-dracha/feral.svg",
  16906. extra: 692 / 633,
  16907. bottom: 0.05
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(7, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16921. {
  16922. fallen: {
  16923. height: math.unit(11 + 8 / 12, "feet"),
  16924. weight: math.unit(485, "lb"),
  16925. name: "Java (Fallen)",
  16926. rename: true,
  16927. image: {
  16928. source: "./media/characters/java/fallen.svg",
  16929. extra: 226 / 208,
  16930. bottom: 0.005
  16931. }
  16932. },
  16933. godkin: {
  16934. height: math.unit(10 + 6 / 12, "feet"),
  16935. weight: math.unit(328, "lb"),
  16936. name: "Java (Godkin)",
  16937. rename: true,
  16938. image: {
  16939. source: "./media/characters/java/godkin.svg",
  16940. extra: 1104/1068,
  16941. bottom: 36/1140
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(11 + 8 / 12, "feet"),
  16949. default: true
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(5 + 9 / 12, "feet"),
  16958. weight: math.unit(170, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/purna/front.svg",
  16962. extra: 239 / 229,
  16963. bottom: 0.01
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(5 + 9 / 12, "feet"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16977. {
  16978. front: {
  16979. height: math.unit(5 + 9 / 12, "feet"),
  16980. weight: math.unit(142, "lb"),
  16981. name: "Front",
  16982. image: {
  16983. source: "./media/characters/kuva/front.svg",
  16984. extra: 281 / 271,
  16985. bottom: 0.006
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(5 + 9 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16999. {
  17000. anthro: {
  17001. height: math.unit(9 + 2 / 12, "feet"),
  17002. weight: math.unit(270, "lb"),
  17003. name: "Anthro",
  17004. image: {
  17005. source: "./media/characters/embra/anthro.svg",
  17006. extra: 200 / 187,
  17007. bottom: 0.02
  17008. }
  17009. },
  17010. feral: {
  17011. height: math.unit(18 + 8 / 12, "feet"),
  17012. weight: math.unit(576, "lb"),
  17013. name: "Feral",
  17014. image: {
  17015. source: "./media/characters/embra/feral.svg",
  17016. extra: 152 / 137,
  17017. bottom: 0.037
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(9 + 2 / 12, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17031. {
  17032. anthro: {
  17033. height: math.unit(10 + 9 / 12, "feet"),
  17034. weight: math.unit(224, "lb"),
  17035. name: "Anthro",
  17036. image: {
  17037. source: "./media/characters/grottos/anthro.svg",
  17038. extra: 350 / 332,
  17039. bottom: 0.045
  17040. }
  17041. },
  17042. feral: {
  17043. height: math.unit(20 + 7 / 12, "feet"),
  17044. weight: math.unit(629, "lb"),
  17045. name: "Feral",
  17046. image: {
  17047. source: "./media/characters/grottos/feral.svg",
  17048. extra: 207 / 190,
  17049. bottom: 0.05
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(10 + 9 / 12, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17063. {
  17064. anthro: {
  17065. height: math.unit(9 + 6 / 12, "feet"),
  17066. weight: math.unit(298, "lb"),
  17067. name: "Anthro",
  17068. image: {
  17069. source: "./media/characters/frifna/anthro.svg",
  17070. extra: 282 / 269,
  17071. bottom: 0.015
  17072. }
  17073. },
  17074. feral: {
  17075. height: math.unit(16 + 2 / 12, "feet"),
  17076. weight: math.unit(624, "lb"),
  17077. name: "Feral",
  17078. image: {
  17079. source: "./media/characters/frifna/feral.svg"
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(9 + 6 / 12, "feet"),
  17087. default: true
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(6 + 2 / 12, "feet"),
  17096. weight: math.unit(168, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/elise/front.svg",
  17100. extra: 276 / 271
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(6 + 2 / 12, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(5 + 10 / 12, "feet"),
  17117. weight: math.unit(210, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/glade/front.svg",
  17121. extra: 258 / 247,
  17122. bottom: 0.008
  17123. }
  17124. },
  17125. },
  17126. [
  17127. {
  17128. name: "Normal",
  17129. height: math.unit(5 + 10 / 12, "feet"),
  17130. default: true
  17131. },
  17132. ]
  17133. ))
  17134. characterMakers.push(() => makeCharacter(
  17135. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17136. {
  17137. front: {
  17138. height: math.unit(5 + 10 / 12, "feet"),
  17139. weight: math.unit(129, "lb"),
  17140. name: "Front",
  17141. image: {
  17142. source: "./media/characters/rina/front.svg",
  17143. extra: 266 / 255,
  17144. bottom: 0.005
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(5 + 10 / 12, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(6 + 1 / 12, "feet"),
  17161. weight: math.unit(192, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/veronica/front.svg",
  17165. extra: 319 / 309,
  17166. bottom: 0.005
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(6 + 1 / 12, "feet"),
  17174. default: true
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(9 + 3 / 12, "feet"),
  17183. weight: math.unit(1100, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/braxton/front.svg",
  17187. extra: 1057 / 984,
  17188. bottom: 0.05
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(9 + 3 / 12, "feet")
  17196. },
  17197. {
  17198. name: "Giant",
  17199. height: math.unit(300, "feet"),
  17200. default: true
  17201. },
  17202. {
  17203. name: "Macro",
  17204. height: math.unit(700, "feet")
  17205. },
  17206. {
  17207. name: "Megamacro",
  17208. height: math.unit(6000, "feet")
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17214. {
  17215. front: {
  17216. height: math.unit(6 + 7 / 12, "feet"),
  17217. weight: math.unit(150, "lb"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/blue-feyonics/front.svg",
  17221. extra: 1403 / 1306,
  17222. bottom: 0.047
  17223. }
  17224. },
  17225. },
  17226. [
  17227. {
  17228. name: "Normal",
  17229. height: math.unit(6 + 7 / 12, "feet"),
  17230. default: true
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(1.8, "meters"),
  17239. weight: math.unit(60, "kg"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/maxwell/front.svg",
  17243. extra: 2060 / 1873
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Micro",
  17250. height: math.unit(1, "mm")
  17251. },
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(1.8, "meter"),
  17255. default: true
  17256. },
  17257. {
  17258. name: "Macro",
  17259. height: math.unit(30, "meters")
  17260. },
  17261. {
  17262. name: "Megamacro",
  17263. height: math.unit(10, "km")
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(6, "feet"),
  17272. weight: math.unit(150, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/jack/front.svg",
  17276. extra: 1754 / 1640,
  17277. bottom: 0.01
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Normal",
  17284. height: math.unit(80000, "feet"),
  17285. default: true
  17286. },
  17287. {
  17288. name: "Max size",
  17289. height: math.unit(10, "lightyears")
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17295. {
  17296. urban: {
  17297. height: math.unit(5, "feet"),
  17298. weight: math.unit(240, "lb"),
  17299. name: "Urban",
  17300. image: {
  17301. source: "./media/characters/cafat/urban.svg",
  17302. extra: 1223/1126,
  17303. bottom: 205/1428
  17304. }
  17305. },
  17306. summer: {
  17307. height: math.unit(5, "feet"),
  17308. weight: math.unit(240, "lb"),
  17309. name: "Summer",
  17310. image: {
  17311. source: "./media/characters/cafat/summer.svg",
  17312. extra: 1223/1126,
  17313. bottom: 205/1428
  17314. }
  17315. },
  17316. winter: {
  17317. height: math.unit(5, "feet"),
  17318. weight: math.unit(240, "lb"),
  17319. name: "Winter",
  17320. image: {
  17321. source: "./media/characters/cafat/winter.svg",
  17322. extra: 1223/1126,
  17323. bottom: 205/1428
  17324. }
  17325. },
  17326. lingerie: {
  17327. height: math.unit(5, "feet"),
  17328. weight: math.unit(240, "lb"),
  17329. name: "Lingerie",
  17330. image: {
  17331. source: "./media/characters/cafat/lingerie.svg",
  17332. extra: 1223/1126,
  17333. bottom: 205/1428
  17334. }
  17335. },
  17336. upright: {
  17337. height: math.unit(6.3, "feet"),
  17338. weight: math.unit(240, "lb"),
  17339. name: "Upright",
  17340. image: {
  17341. source: "./media/characters/cafat/upright.svg",
  17342. bottom: 0.01
  17343. }
  17344. },
  17345. uprightFull: {
  17346. height: math.unit(6.3, "feet"),
  17347. weight: math.unit(240, "lb"),
  17348. name: "Upright (Full)",
  17349. image: {
  17350. source: "./media/characters/cafat/upright-full.svg",
  17351. bottom: 0.01
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Small",
  17358. height: math.unit(5, "feet"),
  17359. default: true
  17360. },
  17361. {
  17362. name: "Large",
  17363. height: math.unit(13, "feet")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(6, "feet"),
  17372. weight: math.unit(150, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/verin-raharra/front.svg",
  17376. extra: 5019 / 4835,
  17377. bottom: 0.023
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(7 + 5 / 12, "feet"),
  17385. default: true
  17386. },
  17387. {
  17388. name: "Upsized",
  17389. height: math.unit(20, "feet")
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(7, "feet"),
  17398. weight: math.unit(230, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/nakata/front.svg",
  17402. extra: 1.005,
  17403. bottom: 0.01
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(7, "feet"),
  17411. default: true
  17412. },
  17413. {
  17414. name: "Big",
  17415. height: math.unit(14, "feet")
  17416. },
  17417. {
  17418. name: "Macro",
  17419. height: math.unit(400, "feet")
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17425. {
  17426. front: {
  17427. height: math.unit(4.91, "feet"),
  17428. weight: math.unit(100, "lb"),
  17429. name: "Front",
  17430. image: {
  17431. source: "./media/characters/lily/front.svg",
  17432. extra: 1585 / 1415,
  17433. bottom: 0.02
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(4.91, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17447. {
  17448. laying: {
  17449. height: math.unit(4 + 4 / 12, "feet"),
  17450. weight: math.unit(600, "lb"),
  17451. name: "Laying",
  17452. image: {
  17453. source: "./media/characters/sheila/laying.svg",
  17454. extra: 1333 / 1265,
  17455. bottom: 0.16
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(4 + 4 / 12, "feet"),
  17463. default: true
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(6, "feet"),
  17472. weight: math.unit(190, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/sax/front.svg",
  17476. extra: 1187 / 973,
  17477. bottom: 0.042
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Micro",
  17484. height: math.unit(4, "inches"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17491. {
  17492. front: {
  17493. height: math.unit(6, "feet"),
  17494. weight: math.unit(150, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/pandora/front.svg",
  17498. extra: 2720 / 2556,
  17499. bottom: 0.015
  17500. }
  17501. },
  17502. back: {
  17503. height: math.unit(6, "feet"),
  17504. weight: math.unit(150, "lb"),
  17505. name: "Back",
  17506. image: {
  17507. source: "./media/characters/pandora/back.svg",
  17508. extra: 2720 / 2556,
  17509. bottom: 0.01
  17510. }
  17511. },
  17512. beans: {
  17513. height: math.unit(6 / 8, "feet"),
  17514. name: "Beans",
  17515. image: {
  17516. source: "./media/characters/pandora/beans.svg"
  17517. }
  17518. },
  17519. collar: {
  17520. height: math.unit(0.31, "feet"),
  17521. name: "Collar",
  17522. image: {
  17523. source: "./media/characters/pandora/collar.svg"
  17524. }
  17525. },
  17526. skirt: {
  17527. height: math.unit(6, "feet"),
  17528. weight: math.unit(150, "lb"),
  17529. name: "Skirt",
  17530. image: {
  17531. source: "./media/characters/pandora/skirt.svg",
  17532. extra: 1622 / 1525,
  17533. bottom: 0.015
  17534. }
  17535. },
  17536. hoodie: {
  17537. height: math.unit(6, "feet"),
  17538. weight: math.unit(150, "lb"),
  17539. name: "Hoodie",
  17540. image: {
  17541. source: "./media/characters/pandora/hoodie.svg",
  17542. extra: 1622 / 1525,
  17543. bottom: 0.015
  17544. }
  17545. },
  17546. casual: {
  17547. height: math.unit(6, "feet"),
  17548. weight: math.unit(150, "lb"),
  17549. name: "Casual",
  17550. image: {
  17551. source: "./media/characters/pandora/casual.svg",
  17552. extra: 1622 / 1525,
  17553. bottom: 0.015
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(6, "feet")
  17561. },
  17562. {
  17563. name: "Big Steppy",
  17564. height: math.unit(1, "km"),
  17565. default: true
  17566. },
  17567. {
  17568. name: "Galactic Steppy",
  17569. height: math.unit(2, "gigameters")
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17575. {
  17576. side: {
  17577. height: math.unit(10, "feet"),
  17578. weight: math.unit(800, "kg"),
  17579. name: "Side",
  17580. image: {
  17581. source: "./media/characters/venio-darcony/side.svg",
  17582. extra: 1373 / 1003,
  17583. bottom: 0.037
  17584. }
  17585. },
  17586. front: {
  17587. height: math.unit(19, "feet"),
  17588. weight: math.unit(800, "kg"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/venio-darcony/front.svg"
  17592. }
  17593. },
  17594. back: {
  17595. height: math.unit(19, "feet"),
  17596. weight: math.unit(800, "kg"),
  17597. name: "Back",
  17598. image: {
  17599. source: "./media/characters/venio-darcony/back.svg"
  17600. }
  17601. },
  17602. sideNsfw: {
  17603. height: math.unit(10, "feet"),
  17604. weight: math.unit(800, "kg"),
  17605. name: "Side (NSFW)",
  17606. image: {
  17607. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17608. extra: 1373 / 1003,
  17609. bottom: 0.037
  17610. }
  17611. },
  17612. frontNsfw: {
  17613. height: math.unit(19, "feet"),
  17614. weight: math.unit(800, "kg"),
  17615. name: "Front (NSFW)",
  17616. image: {
  17617. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17618. }
  17619. },
  17620. backNsfw: {
  17621. height: math.unit(19, "feet"),
  17622. weight: math.unit(800, "kg"),
  17623. name: "Back (NSFW)",
  17624. image: {
  17625. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17626. }
  17627. },
  17628. sideArmored: {
  17629. height: math.unit(10, "feet"),
  17630. weight: math.unit(800, "kg"),
  17631. name: "Side (Armored)",
  17632. image: {
  17633. source: "./media/characters/venio-darcony/side-armored.svg",
  17634. extra: 1373 / 1003,
  17635. bottom: 0.037
  17636. }
  17637. },
  17638. frontArmored: {
  17639. height: math.unit(19, "feet"),
  17640. weight: math.unit(900, "kg"),
  17641. name: "Front (Armored)",
  17642. image: {
  17643. source: "./media/characters/venio-darcony/front-armored.svg"
  17644. }
  17645. },
  17646. backArmored: {
  17647. height: math.unit(19, "feet"),
  17648. weight: math.unit(900, "kg"),
  17649. name: "Back (Armored)",
  17650. image: {
  17651. source: "./media/characters/venio-darcony/back-armored.svg"
  17652. }
  17653. },
  17654. sword: {
  17655. height: math.unit(10, "feet"),
  17656. weight: math.unit(50, "lb"),
  17657. name: "Sword",
  17658. image: {
  17659. source: "./media/characters/venio-darcony/sword.svg"
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(10, "feet")
  17667. },
  17668. {
  17669. name: "Macro",
  17670. height: math.unit(130, "feet"),
  17671. default: true
  17672. },
  17673. {
  17674. name: "Macro+",
  17675. height: math.unit(240, "feet")
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(6, "feet"),
  17684. weight: math.unit(150, "lb"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/veski/front.svg",
  17688. extra: 1299 / 1225,
  17689. bottom: 0.04
  17690. }
  17691. },
  17692. back: {
  17693. height: math.unit(6, "feet"),
  17694. weight: math.unit(150, "lb"),
  17695. name: "Back",
  17696. image: {
  17697. source: "./media/characters/veski/back.svg",
  17698. extra: 1299 / 1225,
  17699. bottom: 0.008
  17700. }
  17701. },
  17702. maw: {
  17703. height: math.unit(1.5 * 1.21, "feet"),
  17704. name: "Maw",
  17705. image: {
  17706. source: "./media/characters/veski/maw.svg"
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Macro",
  17713. height: math.unit(2, "km"),
  17714. default: true
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17720. {
  17721. front: {
  17722. height: math.unit(5 + 7 / 12, "feet"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/isabelle/front.svg",
  17726. extra: 2130 / 1976,
  17727. bottom: 0.05
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Supermicro",
  17734. height: math.unit(10, "micrometers")
  17735. },
  17736. {
  17737. name: "Micro",
  17738. height: math.unit(1, "inch")
  17739. },
  17740. {
  17741. name: "Tiny",
  17742. height: math.unit(5, "inches")
  17743. },
  17744. {
  17745. name: "Standard",
  17746. height: math.unit(5 + 7 / 12, "inches")
  17747. },
  17748. {
  17749. name: "Macro",
  17750. height: math.unit(80, "meters"),
  17751. default: true
  17752. },
  17753. {
  17754. name: "Megamacro",
  17755. height: math.unit(250, "meters")
  17756. },
  17757. {
  17758. name: "Gigamacro",
  17759. height: math.unit(5, "km")
  17760. },
  17761. {
  17762. name: "Cosmic",
  17763. height: math.unit(2.5e6, "miles")
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17769. {
  17770. front: {
  17771. height: math.unit(6, "feet"),
  17772. weight: math.unit(150, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/hanzo/front.svg",
  17776. extra: 374 / 344,
  17777. bottom: 0.02
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Normal",
  17784. height: math.unit(8, "feet"),
  17785. default: true
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(7, "feet"),
  17794. weight: math.unit(130, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/anna/front.svg",
  17798. extra: 169 / 145,
  17799. bottom: 0.06
  17800. }
  17801. },
  17802. full: {
  17803. height: math.unit(4.96, "feet"),
  17804. weight: math.unit(220, "lb"),
  17805. name: "Full",
  17806. image: {
  17807. source: "./media/characters/anna/full.svg",
  17808. extra: 138 / 114,
  17809. bottom: 0.15
  17810. }
  17811. },
  17812. tongue: {
  17813. height: math.unit(2.53, "feet"),
  17814. name: "Tongue",
  17815. image: {
  17816. source: "./media/characters/anna/tongue.svg"
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Normal",
  17823. height: math.unit(7, "feet"),
  17824. default: true
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(7, "feet"),
  17833. weight: math.unit(150, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/ian-corvid/front.svg",
  17837. extra: 150 / 142,
  17838. bottom: 0.02
  17839. }
  17840. },
  17841. back: {
  17842. height: math.unit(7, "feet"),
  17843. weight: math.unit(150, "lb"),
  17844. name: "Back",
  17845. image: {
  17846. source: "./media/characters/ian-corvid/back.svg",
  17847. extra: 150 / 143,
  17848. bottom: 0.01
  17849. }
  17850. },
  17851. stomping: {
  17852. height: math.unit(7, "feet"),
  17853. weight: math.unit(150, "lb"),
  17854. name: "Stomping",
  17855. image: {
  17856. source: "./media/characters/ian-corvid/stomping.svg",
  17857. extra: 76 / 72
  17858. }
  17859. },
  17860. sitting: {
  17861. height: math.unit(7 / 1.8, "feet"),
  17862. weight: math.unit(150, "lb"),
  17863. name: "Sitting",
  17864. image: {
  17865. source: "./media/characters/ian-corvid/sitting.svg",
  17866. extra: 1400 / 1269,
  17867. bottom: 0.15
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Tiny Microw",
  17874. height: math.unit(1, "inch")
  17875. },
  17876. {
  17877. name: "Microw",
  17878. height: math.unit(6, "inches")
  17879. },
  17880. {
  17881. name: "Crow",
  17882. height: math.unit(7 + 1 / 12, "feet"),
  17883. default: true
  17884. },
  17885. {
  17886. name: "Macrow",
  17887. height: math.unit(176, "feet")
  17888. },
  17889. ]
  17890. ))
  17891. characterMakers.push(() => makeCharacter(
  17892. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17893. {
  17894. front: {
  17895. height: math.unit(5 + 7 / 12, "feet"),
  17896. weight: math.unit(147, "lb"),
  17897. name: "Front",
  17898. image: {
  17899. source: "./media/characters/natalie-kellon/front.svg",
  17900. extra: 1214 / 1141,
  17901. bottom: 0.02
  17902. }
  17903. },
  17904. },
  17905. [
  17906. {
  17907. name: "Micro",
  17908. height: math.unit(1 / 16, "inch")
  17909. },
  17910. {
  17911. name: "Tiny",
  17912. height: math.unit(4, "inches")
  17913. },
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(5 + 7 / 12, "feet"),
  17917. default: true
  17918. },
  17919. {
  17920. name: "Amazon",
  17921. height: math.unit(12, "feet")
  17922. },
  17923. {
  17924. name: "Giantess",
  17925. height: math.unit(160, "meters")
  17926. },
  17927. {
  17928. name: "Titaness",
  17929. height: math.unit(800, "meters")
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(6, "feet"),
  17938. weight: math.unit(150, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/alluria/front.svg",
  17942. extra: 806 / 738,
  17943. bottom: 0.01
  17944. }
  17945. },
  17946. side: {
  17947. height: math.unit(6, "feet"),
  17948. weight: math.unit(150, "lb"),
  17949. name: "Side",
  17950. image: {
  17951. source: "./media/characters/alluria/side.svg",
  17952. extra: 800 / 750,
  17953. }
  17954. },
  17955. back: {
  17956. height: math.unit(6, "feet"),
  17957. weight: math.unit(150, "lb"),
  17958. name: "Back",
  17959. image: {
  17960. source: "./media/characters/alluria/back.svg",
  17961. extra: 806 / 738,
  17962. }
  17963. },
  17964. frontMaid: {
  17965. height: math.unit(6, "feet"),
  17966. weight: math.unit(150, "lb"),
  17967. name: "Front (Maid)",
  17968. image: {
  17969. source: "./media/characters/alluria/front-maid.svg",
  17970. extra: 806 / 738,
  17971. bottom: 0.01
  17972. }
  17973. },
  17974. sideMaid: {
  17975. height: math.unit(6, "feet"),
  17976. weight: math.unit(150, "lb"),
  17977. name: "Side (Maid)",
  17978. image: {
  17979. source: "./media/characters/alluria/side-maid.svg",
  17980. extra: 800 / 750,
  17981. bottom: 0.005
  17982. }
  17983. },
  17984. backMaid: {
  17985. height: math.unit(6, "feet"),
  17986. weight: math.unit(150, "lb"),
  17987. name: "Back (Maid)",
  17988. image: {
  17989. source: "./media/characters/alluria/back-maid.svg",
  17990. extra: 806 / 738,
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Micro",
  17997. height: math.unit(6, "inches"),
  17998. default: true
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(6, "feet"),
  18007. weight: math.unit(150, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/kyle/front.svg",
  18011. extra: 1069 / 962,
  18012. bottom: 77.228 / 1727.45
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Macro",
  18019. height: math.unit(150, "feet"),
  18020. default: true
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18026. {
  18027. front: {
  18028. height: math.unit(6, "feet"),
  18029. weight: math.unit(300, "lb"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/duncan/front.svg",
  18033. extra: 1650 / 1482,
  18034. bottom: 0.05
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Macro",
  18041. height: math.unit(100, "feet"),
  18042. default: true
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(5 + 4 / 12, "feet"),
  18051. weight: math.unit(220, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/memory/front.svg",
  18055. extra: 3641 / 3545,
  18056. bottom: 0.03
  18057. }
  18058. },
  18059. back: {
  18060. height: math.unit(5 + 4 / 12, "feet"),
  18061. weight: math.unit(220, "lb"),
  18062. name: "Back",
  18063. image: {
  18064. source: "./media/characters/memory/back.svg",
  18065. extra: 3641 / 3545,
  18066. bottom: 0.025
  18067. }
  18068. },
  18069. frontSkirt: {
  18070. height: math.unit(5 + 4 / 12, "feet"),
  18071. weight: math.unit(220, "lb"),
  18072. name: "Front (Skirt)",
  18073. image: {
  18074. source: "./media/characters/memory/front-skirt.svg",
  18075. extra: 3641 / 3545,
  18076. bottom: 0.03
  18077. }
  18078. },
  18079. frontDress: {
  18080. height: math.unit(5 + 4 / 12, "feet"),
  18081. weight: math.unit(220, "lb"),
  18082. name: "Front (Dress)",
  18083. image: {
  18084. source: "./media/characters/memory/front-dress.svg",
  18085. extra: 3641 / 3545,
  18086. bottom: 0.03
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Micro",
  18093. height: math.unit(6, "inches"),
  18094. default: true
  18095. },
  18096. {
  18097. name: "Normal",
  18098. height: math.unit(5 + 4 / 12, "feet")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(4 + 11 / 12, "feet"),
  18107. weight: math.unit(100, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/luno/front.svg",
  18111. extra: 1535 / 1487,
  18112. bottom: 0.03
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(3, "inches")
  18120. },
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(4 + 11 / 12, "feet"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(300, "feet")
  18129. },
  18130. {
  18131. name: "Megamacro",
  18132. height: math.unit(700, "miles")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(6 + 2 / 12, "feet"),
  18141. weight: math.unit(170, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/jamesy/front.svg",
  18145. extra: 440 / 382,
  18146. bottom: 0.005
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Micro",
  18153. height: math.unit(3, "inches")
  18154. },
  18155. {
  18156. name: "Normal",
  18157. height: math.unit(6 + 2 / 12, "feet"),
  18158. default: true
  18159. },
  18160. {
  18161. name: "Macro",
  18162. height: math.unit(300, "feet")
  18163. },
  18164. {
  18165. name: "Megamacro",
  18166. height: math.unit(700, "miles")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(6, "feet"),
  18175. weight: math.unit(160, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/mark/front.svg",
  18179. extra: 3300 / 3100,
  18180. bottom: 136.42 / 3440.47
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Macro",
  18187. height: math.unit(120, "meters")
  18188. },
  18189. {
  18190. name: "Bigger Macro",
  18191. height: math.unit(350, "meters")
  18192. },
  18193. {
  18194. name: "Megamacro",
  18195. height: math.unit(8, "km"),
  18196. default: true
  18197. },
  18198. {
  18199. name: "Continental",
  18200. height: math.unit(4550, "km")
  18201. },
  18202. {
  18203. name: "Planetary",
  18204. height: math.unit(65000, "km")
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(6, "feet"),
  18213. weight: math.unit(400, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/mac/front.svg",
  18217. extra: 1048 / 987.7,
  18218. bottom: 60 / 1107.6,
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Macro",
  18225. height: math.unit(500, "feet"),
  18226. default: true
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(5 + 2 / 12, "feet"),
  18235. weight: math.unit(190, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/bari/front.svg",
  18239. extra: 3156 / 2880,
  18240. bottom: 0.03
  18241. }
  18242. },
  18243. back: {
  18244. height: math.unit(5 + 2 / 12, "feet"),
  18245. weight: math.unit(190, "lb"),
  18246. name: "Back",
  18247. image: {
  18248. source: "./media/characters/bari/back.svg",
  18249. extra: 3260 / 2834,
  18250. bottom: 0.025
  18251. }
  18252. },
  18253. frontPlush: {
  18254. height: math.unit(5 + 2 / 12, "feet"),
  18255. weight: math.unit(190, "lb"),
  18256. name: "Front (Plush)",
  18257. image: {
  18258. source: "./media/characters/bari/front-plush.svg",
  18259. extra: 1112 / 1061,
  18260. bottom: 0.002
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Micro",
  18267. height: math.unit(3, "inches")
  18268. },
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(5 + 2 / 12, "feet"),
  18272. default: true
  18273. },
  18274. {
  18275. name: "Macro",
  18276. height: math.unit(20, "feet")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(6 + 1 / 12, "feet"),
  18285. weight: math.unit(275, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/hunter-misha-raven/front.svg"
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Mortal",
  18295. height: math.unit(6 + 1 / 12, "feet")
  18296. },
  18297. {
  18298. name: "Divine",
  18299. height: math.unit(1.12134e34, "parsecs"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(6 + 3 / 12, "feet"),
  18309. weight: math.unit(220, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/max-calore/front.svg",
  18313. extra: 1700 / 1648,
  18314. bottom: 0.01
  18315. }
  18316. },
  18317. back: {
  18318. height: math.unit(6 + 3 / 12, "feet"),
  18319. weight: math.unit(220, "lb"),
  18320. name: "Back",
  18321. image: {
  18322. source: "./media/characters/max-calore/back.svg",
  18323. extra: 1700 / 1648,
  18324. bottom: 0.01
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(6 + 3 / 12, "feet"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18338. {
  18339. side: {
  18340. height: math.unit(2 + 8 / 12, "feet"),
  18341. weight: math.unit(99, "lb"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/aspen/side.svg",
  18345. extra: 152 / 138,
  18346. bottom: 0.032
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(2 + 8 / 12, "feet"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18360. {
  18361. side: {
  18362. height: math.unit(3 + 2 / 12, "feet"),
  18363. weight: math.unit(224, "lb"),
  18364. name: "Side",
  18365. image: {
  18366. source: "./media/characters/sheila-feral-wolf/side.svg",
  18367. extra: 179 / 166,
  18368. bottom: 0.03
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Normal",
  18375. height: math.unit(3 + 2 / 12, "feet"),
  18376. default: true
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18382. {
  18383. side: {
  18384. height: math.unit(1 + 9 / 12, "feet"),
  18385. weight: math.unit(38, "lb"),
  18386. name: "Side",
  18387. image: {
  18388. source: "./media/characters/michelle/side.svg",
  18389. extra: 147 / 136.7,
  18390. bottom: 0.03
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(1 + 9 / 12, "feet"),
  18398. default: true
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18404. {
  18405. front: {
  18406. height: math.unit(1.54, "feet"),
  18407. weight: math.unit(50, "lb"),
  18408. name: "Front",
  18409. image: {
  18410. source: "./media/characters/nino/front.svg"
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(1.54, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18424. {
  18425. front: {
  18426. height: math.unit(1.49, "feet"),
  18427. weight: math.unit(45, "lb"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/viola/front.svg"
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Normal",
  18437. height: math.unit(1.49, "feet"),
  18438. default: true
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(6 + 5 / 12, "feet"),
  18447. weight: math.unit(580, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/atlas/front.svg",
  18451. extra: 298.5 / 290,
  18452. bottom: 0.015
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(6 + 5 / 12, "feet"),
  18460. default: true
  18461. },
  18462. ]
  18463. ))
  18464. characterMakers.push(() => makeCharacter(
  18465. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18466. {
  18467. side: {
  18468. height: math.unit(15.6, "inches"),
  18469. weight: math.unit(10, "lb"),
  18470. name: "Side",
  18471. image: {
  18472. source: "./media/characters/davy/side.svg",
  18473. extra: 200 / 170,
  18474. bottom: 0.01
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(15.6, "inches"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18488. {
  18489. side: {
  18490. height: math.unit(4 + 8 / 12, "feet"),
  18491. weight: math.unit(166, "lb"),
  18492. name: "Side",
  18493. image: {
  18494. source: "./media/characters/fiona/side.svg",
  18495. extra: 232 / 220,
  18496. bottom: 0.03
  18497. }
  18498. },
  18499. },
  18500. [
  18501. {
  18502. name: "Normal",
  18503. height: math.unit(4 + 8 / 12, "feet"),
  18504. default: true
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18510. {
  18511. front: {
  18512. height: math.unit(26, "inches"),
  18513. weight: math.unit(35, "lb"),
  18514. name: "Front",
  18515. image: {
  18516. source: "./media/characters/lyla/front.svg",
  18517. bottom: 0.1
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(3, "feet"),
  18525. default: true
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18531. {
  18532. side: {
  18533. height: math.unit(1.8, "feet"),
  18534. weight: math.unit(44, "lb"),
  18535. name: "Side",
  18536. image: {
  18537. source: "./media/characters/perseus/side.svg",
  18538. bottom: 0.21
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(1.8, "feet"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18552. {
  18553. side: {
  18554. height: math.unit(4 + 2 / 12, "feet"),
  18555. weight: math.unit(20, "lb"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/remus/side.svg"
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(4 + 2 / 12, "feet"),
  18566. default: true
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(4 + 11 / 12, "feet"),
  18575. weight: math.unit(114, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/raf/front.svg",
  18579. extra: 1504/1339,
  18580. bottom: 26/1530
  18581. }
  18582. },
  18583. side: {
  18584. height: math.unit(4 + 11 / 12, "feet"),
  18585. weight: math.unit(114, "lb"),
  18586. name: "Side",
  18587. image: {
  18588. source: "./media/characters/raf/side.svg",
  18589. extra: 1466/1316,
  18590. bottom: 29/1495
  18591. }
  18592. },
  18593. paw: {
  18594. height: math.unit(1.45, "feet"),
  18595. name: "Paw",
  18596. image: {
  18597. source: "./media/characters/raf/paw.svg"
  18598. },
  18599. extraAttributes: {
  18600. "toeSize": {
  18601. name: "Toe Size",
  18602. power: 2,
  18603. type: "area",
  18604. base: math.unit(0.004, "m^2")
  18605. },
  18606. "padSize": {
  18607. name: "Pad Size",
  18608. power: 2,
  18609. type: "area",
  18610. base: math.unit(0.04, "m^2")
  18611. },
  18612. "footSize": {
  18613. name: "Foot Size",
  18614. power: 2,
  18615. type: "area",
  18616. base: math.unit(0.08, "m^2")
  18617. },
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Micro",
  18624. height: math.unit(2, "inches")
  18625. },
  18626. {
  18627. name: "Normal",
  18628. height: math.unit(4 + 11 / 12, "feet"),
  18629. default: true
  18630. },
  18631. {
  18632. name: "Macro",
  18633. height: math.unit(70, "feet")
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18639. {
  18640. front: {
  18641. height: math.unit(1.5, "meters"),
  18642. weight: math.unit(68, "kg"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/liam-einarr/front.svg",
  18646. extra: 2822 / 2666
  18647. }
  18648. },
  18649. back: {
  18650. height: math.unit(1.5, "meters"),
  18651. weight: math.unit(68, "kg"),
  18652. name: "Back",
  18653. image: {
  18654. source: "./media/characters/liam-einarr/back.svg",
  18655. extra: 2822 / 2666,
  18656. bottom: 0.015
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(1.5, "meters"),
  18664. default: true
  18665. },
  18666. {
  18667. name: "Macro",
  18668. height: math.unit(150, "meters")
  18669. },
  18670. {
  18671. name: "Megamacro",
  18672. height: math.unit(35, "km")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(6, "feet"),
  18681. weight: math.unit(75, "kg"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/linda/front.svg",
  18685. extra: 930 / 874,
  18686. bottom: 0.004
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Normal",
  18693. height: math.unit(6, "feet"),
  18694. default: true
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18700. {
  18701. front: {
  18702. height: math.unit(6 + 8 / 12, "feet"),
  18703. weight: math.unit(220, "lb"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/caylex/front.svg",
  18707. extra: 821 / 772,
  18708. bottom: 0.07
  18709. }
  18710. },
  18711. back: {
  18712. height: math.unit(6 + 8 / 12, "feet"),
  18713. weight: math.unit(220, "lb"),
  18714. name: "Back",
  18715. image: {
  18716. source: "./media/characters/caylex/back.svg",
  18717. extra: 821 / 772,
  18718. bottom: 0.022
  18719. }
  18720. },
  18721. hand: {
  18722. height: math.unit(1.25, "feet"),
  18723. name: "Hand",
  18724. image: {
  18725. source: "./media/characters/caylex/hand.svg"
  18726. }
  18727. },
  18728. foot: {
  18729. height: math.unit(1.6, "feet"),
  18730. name: "Foot",
  18731. image: {
  18732. source: "./media/characters/caylex/foot.svg"
  18733. }
  18734. },
  18735. armored: {
  18736. height: math.unit(6 + 8 / 12, "feet"),
  18737. weight: math.unit(250, "lb"),
  18738. name: "Armored",
  18739. image: {
  18740. source: "./media/characters/caylex/armored.svg",
  18741. extra: 1420 / 1310,
  18742. bottom: 0.045
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(6 + 8 / 12, "feet"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Normal+",
  18754. height: math.unit(12, "feet")
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(7 + 6 / 12, "feet"),
  18763. weight: math.unit(288, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/alana/front.svg",
  18767. extra: 679 / 653,
  18768. bottom: 22.5 / 701
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(7 + 6 / 12, "feet")
  18776. },
  18777. {
  18778. name: "Large",
  18779. height: math.unit(50, "feet")
  18780. },
  18781. {
  18782. name: "Macro",
  18783. height: math.unit(100, "feet"),
  18784. default: true
  18785. },
  18786. {
  18787. name: "Macro+",
  18788. height: math.unit(200, "feet")
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(6 + 1 / 12, "feet"),
  18797. weight: math.unit(210, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/hasani/front.svg",
  18801. extra: 244 / 232,
  18802. bottom: 0.01
  18803. }
  18804. },
  18805. back: {
  18806. height: math.unit(6 + 1 / 12, "feet"),
  18807. weight: math.unit(210, "lb"),
  18808. name: "Back",
  18809. image: {
  18810. source: "./media/characters/hasani/back.svg",
  18811. extra: 244 / 232,
  18812. bottom: 0.01
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(6 + 1 / 12, "feet")
  18820. },
  18821. {
  18822. name: "Macro",
  18823. height: math.unit(175, "feet"),
  18824. default: true
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(1.82, "meters"),
  18833. weight: math.unit(140, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/nita/front.svg",
  18837. extra: 2473 / 2363,
  18838. bottom: 0.01
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(1.82, "m")
  18846. },
  18847. {
  18848. name: "Macro",
  18849. height: math.unit(300, "m")
  18850. },
  18851. {
  18852. name: "Mistake Canon",
  18853. height: math.unit(0.5, "miles"),
  18854. default: true
  18855. },
  18856. {
  18857. name: "Big Mistake",
  18858. height: math.unit(13, "miles")
  18859. },
  18860. {
  18861. name: "Playing God",
  18862. height: math.unit(2450, "miles")
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(4, "feet"),
  18871. weight: math.unit(120, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/shiriko/front.svg",
  18875. extra: 970/934,
  18876. bottom: 5/975
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(4, "feet"),
  18884. default: true
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(6, "feet"),
  18893. name: "front",
  18894. image: {
  18895. source: "./media/characters/deja/front.svg",
  18896. extra: 926 / 840,
  18897. bottom: 0.07
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Planck Length",
  18904. height: math.unit(1.6e-35, "meters")
  18905. },
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(30.48, "meters"),
  18909. default: true
  18910. },
  18911. {
  18912. name: "Universal",
  18913. height: math.unit(8.8e26, "meters")
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18919. {
  18920. side: {
  18921. height: math.unit(8, "feet"),
  18922. weight: math.unit(6300, "lb"),
  18923. name: "Side",
  18924. image: {
  18925. source: "./media/characters/anima/side.svg",
  18926. bottom: 0.035
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(8, "feet"),
  18934. default: true
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(8, "feet"),
  18943. weight: math.unit(350, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/bianca/front.svg",
  18947. extra: 234 / 225,
  18948. bottom: 0.03
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(8, "feet"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(11 + 5/12, "feet"),
  18965. weight: math.unit(1200, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/adinia/front.svg",
  18969. extra: 1767/1641,
  18970. bottom: 44/1811
  18971. },
  18972. extraAttributes: {
  18973. "energyIntake": {
  18974. name: "Energy Intake",
  18975. power: 3,
  18976. type: "energy",
  18977. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18978. },
  18979. }
  18980. },
  18981. back: {
  18982. height: math.unit(11 + 5/12, "feet"),
  18983. weight: math.unit(1200, "lb"),
  18984. name: "Back",
  18985. image: {
  18986. source: "./media/characters/adinia/back.svg",
  18987. extra: 1834/1684,
  18988. bottom: 14/1848
  18989. },
  18990. extraAttributes: {
  18991. "energyIntake": {
  18992. name: "Energy Intake",
  18993. power: 3,
  18994. type: "energy",
  18995. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18996. },
  18997. }
  18998. },
  18999. maw: {
  19000. height: math.unit(3.79, "feet"),
  19001. name: "Maw",
  19002. image: {
  19003. source: "./media/characters/adinia/maw.svg"
  19004. }
  19005. },
  19006. rump: {
  19007. height: math.unit(4.6, "feet"),
  19008. name: "Rump",
  19009. image: {
  19010. source: "./media/characters/adinia/rump.svg"
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(11 + 5 / 12, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(3, "meters"),
  19027. weight: math.unit(200, "kg"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/lykasa/front.svg",
  19031. extra: 1076 / 976,
  19032. bottom: 0.06
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(3, "meters")
  19040. },
  19041. {
  19042. name: "Kaiju",
  19043. height: math.unit(120, "meters"),
  19044. default: true
  19045. },
  19046. {
  19047. name: "Mega Kaiju",
  19048. height: math.unit(240, "km")
  19049. },
  19050. {
  19051. name: "Giga Kaiju",
  19052. height: math.unit(400, "megameters")
  19053. },
  19054. {
  19055. name: "Tera Kaiju",
  19056. height: math.unit(800, "gigameters")
  19057. },
  19058. {
  19059. name: "Kaiju Dragon Goddess",
  19060. height: math.unit(26, "zettaparsecs")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19066. {
  19067. side: {
  19068. height: math.unit(283 / 124 * 6, "feet"),
  19069. weight: math.unit(35000, "lb"),
  19070. name: "Side",
  19071. image: {
  19072. source: "./media/characters/malfaren/side.svg",
  19073. extra: 1310/529,
  19074. bottom: 24/1334
  19075. }
  19076. },
  19077. front: {
  19078. height: math.unit(22.36, "feet"),
  19079. weight: math.unit(35000, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/malfaren/front.svg",
  19083. extra: 1237/1115,
  19084. bottom: 32/1269
  19085. }
  19086. },
  19087. maw: {
  19088. height: math.unit(6.9, "feet"),
  19089. name: "Maw",
  19090. image: {
  19091. source: "./media/characters/malfaren/maw.svg"
  19092. }
  19093. },
  19094. dick: {
  19095. height: math.unit(6.19, "feet"),
  19096. name: "Dick",
  19097. image: {
  19098. source: "./media/characters/malfaren/dick.svg"
  19099. }
  19100. },
  19101. eye: {
  19102. height: math.unit(0.69, "feet"),
  19103. name: "Eye",
  19104. image: {
  19105. source: "./media/characters/malfaren/eye.svg"
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Big",
  19112. height: math.unit(283 / 162 * 6, "feet"),
  19113. },
  19114. {
  19115. name: "Bigger",
  19116. height: math.unit(283 / 124 * 6, "feet")
  19117. },
  19118. {
  19119. name: "Massive",
  19120. height: math.unit(283 / 92 * 6, "feet"),
  19121. default: true
  19122. },
  19123. {
  19124. name: "👀💦",
  19125. height: math.unit(283 / 73 * 6, "feet"),
  19126. },
  19127. ]
  19128. ))
  19129. characterMakers.push(() => makeCharacter(
  19130. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19131. {
  19132. front: {
  19133. height: math.unit(1.7, "m"),
  19134. weight: math.unit(70, "kg"),
  19135. name: "Front",
  19136. image: {
  19137. source: "./media/characters/kernel/front.svg",
  19138. extra: 222 / 210,
  19139. bottom: 0.007
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Nano",
  19146. height: math.unit(17, "micrometers")
  19147. },
  19148. {
  19149. name: "Micro",
  19150. height: math.unit(1.7, "mm")
  19151. },
  19152. {
  19153. name: "Small",
  19154. height: math.unit(1.7, "cm")
  19155. },
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(1.7, "m"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(1.75, "meters"),
  19168. weight: math.unit(65, "kg"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/jayne-folest/front.svg",
  19172. extra: 2115 / 2007,
  19173. bottom: 0.02
  19174. }
  19175. },
  19176. back: {
  19177. height: math.unit(1.75, "meters"),
  19178. weight: math.unit(65, "kg"),
  19179. name: "Back",
  19180. image: {
  19181. source: "./media/characters/jayne-folest/back.svg",
  19182. extra: 2115 / 2007,
  19183. bottom: 0.005
  19184. }
  19185. },
  19186. frontClothed: {
  19187. height: math.unit(1.75, "meters"),
  19188. weight: math.unit(65, "kg"),
  19189. name: "Front (Clothed)",
  19190. image: {
  19191. source: "./media/characters/jayne-folest/front-clothed.svg",
  19192. extra: 2115 / 2007,
  19193. bottom: 0.035
  19194. }
  19195. },
  19196. hand: {
  19197. height: math.unit(1 / 1.260, "feet"),
  19198. name: "Hand",
  19199. image: {
  19200. source: "./media/characters/jayne-folest/hand.svg"
  19201. }
  19202. },
  19203. foot: {
  19204. height: math.unit(1 / 0.918, "feet"),
  19205. name: "Foot",
  19206. image: {
  19207. source: "./media/characters/jayne-folest/foot.svg"
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Micro",
  19214. height: math.unit(4, "cm")
  19215. },
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(1.75, "meters")
  19219. },
  19220. {
  19221. name: "Macro",
  19222. height: math.unit(47.5, "meters"),
  19223. default: true
  19224. },
  19225. ]
  19226. ))
  19227. characterMakers.push(() => makeCharacter(
  19228. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19229. {
  19230. front: {
  19231. height: math.unit(180, "cm"),
  19232. weight: math.unit(70, "kg"),
  19233. name: "Front",
  19234. image: {
  19235. source: "./media/characters/algier/front.svg",
  19236. extra: 596 / 572,
  19237. bottom: 0.04
  19238. }
  19239. },
  19240. back: {
  19241. height: math.unit(180, "cm"),
  19242. weight: math.unit(70, "kg"),
  19243. name: "Back",
  19244. image: {
  19245. source: "./media/characters/algier/back.svg",
  19246. extra: 596 / 572,
  19247. bottom: 0.025
  19248. }
  19249. },
  19250. frontdressed: {
  19251. height: math.unit(180, "cm"),
  19252. weight: math.unit(150, "kg"),
  19253. name: "Front-dressed",
  19254. image: {
  19255. source: "./media/characters/algier/front-dressed.svg",
  19256. extra: 596 / 572,
  19257. bottom: 0.038
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Micro",
  19264. height: math.unit(5, "cm")
  19265. },
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(180, "cm"),
  19269. default: true
  19270. },
  19271. {
  19272. name: "Macro",
  19273. height: math.unit(64, "m")
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19279. {
  19280. upright: {
  19281. height: math.unit(7, "feet"),
  19282. weight: math.unit(300, "lb"),
  19283. name: "Upright",
  19284. image: {
  19285. source: "./media/characters/pretzel/upright.svg",
  19286. extra: 534 / 522,
  19287. bottom: 0.065
  19288. }
  19289. },
  19290. sprawling: {
  19291. height: math.unit(3.75, "feet"),
  19292. weight: math.unit(300, "lb"),
  19293. name: "Sprawling",
  19294. image: {
  19295. source: "./media/characters/pretzel/sprawling.svg",
  19296. extra: 314 / 281,
  19297. bottom: 0.1
  19298. }
  19299. },
  19300. tongue: {
  19301. height: math.unit(2, "feet"),
  19302. name: "Tongue",
  19303. image: {
  19304. source: "./media/characters/pretzel/tongue.svg"
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(7, "feet"),
  19312. default: true
  19313. },
  19314. {
  19315. name: "Oversized",
  19316. height: math.unit(15, "feet")
  19317. },
  19318. {
  19319. name: "Huge",
  19320. height: math.unit(30, "feet")
  19321. },
  19322. {
  19323. name: "Macro",
  19324. height: math.unit(250, "feet")
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19330. {
  19331. sideFront: {
  19332. height: math.unit(5 + 2 / 12, "feet"),
  19333. weight: math.unit(120, "lb"),
  19334. name: "Front Side",
  19335. image: {
  19336. source: "./media/characters/roxi/side-front.svg",
  19337. extra: 2924 / 2717,
  19338. bottom: 0.08
  19339. }
  19340. },
  19341. sideBack: {
  19342. height: math.unit(5 + 2 / 12, "feet"),
  19343. weight: math.unit(120, "lb"),
  19344. name: "Back Side",
  19345. image: {
  19346. source: "./media/characters/roxi/side-back.svg",
  19347. extra: 2904 / 2693,
  19348. bottom: 0.06
  19349. }
  19350. },
  19351. front: {
  19352. height: math.unit(5 + 2 / 12, "feet"),
  19353. weight: math.unit(120, "lb"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/roxi/front.svg",
  19357. extra: 2028 / 1907,
  19358. bottom: 0.01
  19359. }
  19360. },
  19361. frontAlt: {
  19362. height: math.unit(5 + 2 / 12, "feet"),
  19363. weight: math.unit(120, "lb"),
  19364. name: "Front (Alt)",
  19365. image: {
  19366. source: "./media/characters/roxi/front-alt.svg",
  19367. extra: 1828 / 1798,
  19368. bottom: 0.01
  19369. }
  19370. },
  19371. sitting: {
  19372. height: math.unit(2.8, "feet"),
  19373. weight: math.unit(120, "lb"),
  19374. name: "Sitting",
  19375. image: {
  19376. source: "./media/characters/roxi/sitting.svg",
  19377. extra: 2660 / 2462,
  19378. bottom: 0.1
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(5 + 2 / 12, "feet"),
  19386. default: true
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19392. {
  19393. side: {
  19394. height: math.unit(55, "feet"),
  19395. weight: math.unit(153, "tons"),
  19396. name: "Side",
  19397. image: {
  19398. source: "./media/characters/shadow/side.svg",
  19399. extra: 701 / 628,
  19400. bottom: 0.02
  19401. }
  19402. },
  19403. flying: {
  19404. height: math.unit(145, "feet"),
  19405. weight: math.unit(153, "tons"),
  19406. name: "Flying",
  19407. image: {
  19408. source: "./media/characters/shadow/flying.svg"
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(55, "feet"),
  19416. default: true
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(6, "feet"),
  19425. weight: math.unit(200, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/marcie/front.svg",
  19429. extra: 960 / 876,
  19430. bottom: 58 / 1017.87
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Macro",
  19437. height: math.unit(1, "mile"),
  19438. default: true
  19439. },
  19440. ]
  19441. ))
  19442. characterMakers.push(() => makeCharacter(
  19443. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19444. {
  19445. front: {
  19446. height: math.unit(7, "feet"),
  19447. weight: math.unit(200, "lb"),
  19448. name: "Front",
  19449. image: {
  19450. source: "./media/characters/kachina/front.svg",
  19451. extra: 1290.68 / 1119,
  19452. bottom: 36.5 / 1327.18
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(7, "feet"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19466. {
  19467. looking: {
  19468. height: math.unit(2, "meters"),
  19469. weight: math.unit(300, "kg"),
  19470. name: "Looking",
  19471. image: {
  19472. source: "./media/characters/kash/looking.svg",
  19473. extra: 474 / 344,
  19474. bottom: 0.03
  19475. }
  19476. },
  19477. side: {
  19478. height: math.unit(2, "meters"),
  19479. weight: math.unit(300, "kg"),
  19480. name: "Side",
  19481. image: {
  19482. source: "./media/characters/kash/side.svg",
  19483. extra: 302 / 251,
  19484. bottom: 0.03
  19485. }
  19486. },
  19487. front: {
  19488. height: math.unit(2, "meters"),
  19489. weight: math.unit(300, "kg"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/kash/front.svg",
  19493. extra: 495 / 360,
  19494. bottom: 0.015
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(2, "meters"),
  19502. default: true
  19503. },
  19504. {
  19505. name: "Big",
  19506. height: math.unit(3, "meters")
  19507. },
  19508. {
  19509. name: "Large",
  19510. height: math.unit(5, "meters")
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19516. {
  19517. feeding: {
  19518. height: math.unit(6.7, "feet"),
  19519. weight: math.unit(350, "lb"),
  19520. name: "Feeding",
  19521. image: {
  19522. source: "./media/characters/lalim/feeding.svg",
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(6.7, "feet"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(9.5, "feet"),
  19539. weight: math.unit(600, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/de'vout/front.svg",
  19543. extra: 1443 / 1328,
  19544. bottom: 0.025
  19545. }
  19546. },
  19547. back: {
  19548. height: math.unit(9.5, "feet"),
  19549. weight: math.unit(600, "lb"),
  19550. name: "Back",
  19551. image: {
  19552. source: "./media/characters/de'vout/back.svg",
  19553. extra: 1443 / 1328
  19554. }
  19555. },
  19556. frontDressed: {
  19557. height: math.unit(9.5, "feet"),
  19558. weight: math.unit(600, "lb"),
  19559. name: "Front (Dressed",
  19560. image: {
  19561. source: "./media/characters/de'vout/front-dressed.svg",
  19562. extra: 1443 / 1328,
  19563. bottom: 0.025
  19564. }
  19565. },
  19566. backDressed: {
  19567. height: math.unit(9.5, "feet"),
  19568. weight: math.unit(600, "lb"),
  19569. name: "Back (Dressed",
  19570. image: {
  19571. source: "./media/characters/de'vout/back-dressed.svg",
  19572. extra: 1443 / 1328
  19573. }
  19574. },
  19575. },
  19576. [
  19577. {
  19578. name: "Normal",
  19579. height: math.unit(9.5, "feet"),
  19580. default: true
  19581. },
  19582. ]
  19583. ))
  19584. characterMakers.push(() => makeCharacter(
  19585. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19586. {
  19587. front: {
  19588. height: math.unit(8, "feet"),
  19589. weight: math.unit(225, "lb"),
  19590. name: "Front",
  19591. image: {
  19592. source: "./media/characters/talana/front.svg",
  19593. extra: 1410 / 1300,
  19594. bottom: 0.015
  19595. }
  19596. },
  19597. frontDressed: {
  19598. height: math.unit(8, "feet"),
  19599. weight: math.unit(225, "lb"),
  19600. name: "Front (Dressed",
  19601. image: {
  19602. source: "./media/characters/talana/front-dressed.svg",
  19603. extra: 1410 / 1300,
  19604. bottom: 0.015
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(8, "feet"),
  19612. default: true
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19618. {
  19619. side: {
  19620. height: math.unit(7.2, "feet"),
  19621. weight: math.unit(150, "lb"),
  19622. name: "Side",
  19623. image: {
  19624. source: "./media/characters/xeauvok/side.svg",
  19625. extra: 1975 / 1523,
  19626. bottom: 0.07
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(7.2, "feet"),
  19634. default: true
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19640. {
  19641. side: {
  19642. height: math.unit(4, "meters"),
  19643. weight: math.unit(2200, "kg"),
  19644. name: "Side",
  19645. image: {
  19646. source: "./media/characters/zara/side.svg",
  19647. extra: 765/744,
  19648. bottom: 156/921
  19649. }
  19650. },
  19651. },
  19652. [
  19653. {
  19654. name: "Normal",
  19655. height: math.unit(4, "meters"),
  19656. default: true
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19662. {
  19663. side: {
  19664. height: math.unit(6, "feet"),
  19665. weight: math.unit(150, "lb"),
  19666. name: "Side",
  19667. image: {
  19668. source: "./media/characters/richard-dragon/side.svg",
  19669. extra: 845 / 340,
  19670. bottom: 0.017
  19671. }
  19672. },
  19673. maw: {
  19674. height: math.unit(2.97, "feet"),
  19675. name: "Maw",
  19676. image: {
  19677. source: "./media/characters/richard-dragon/maw.svg"
  19678. }
  19679. },
  19680. },
  19681. [
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(4, "feet"),
  19689. weight: math.unit(100, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/richard-smeargle/front.svg",
  19693. extra: 2952 / 2820,
  19694. bottom: 0.028
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(4, "feet"),
  19702. default: true
  19703. },
  19704. {
  19705. name: "Dynamax",
  19706. height: math.unit(20, "meters")
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19712. {
  19713. front: {
  19714. height: math.unit(6, "feet"),
  19715. weight: math.unit(110, "lb"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/klay/front.svg",
  19719. extra: 962 / 883,
  19720. bottom: 0.04
  19721. }
  19722. },
  19723. back: {
  19724. height: math.unit(6, "feet"),
  19725. weight: math.unit(110, "lb"),
  19726. name: "Back",
  19727. image: {
  19728. source: "./media/characters/klay/back.svg",
  19729. extra: 962 / 883
  19730. }
  19731. },
  19732. beans: {
  19733. height: math.unit(1.15, "feet"),
  19734. name: "Beans",
  19735. image: {
  19736. source: "./media/characters/klay/beans.svg"
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Micro",
  19743. height: math.unit(6, "inches")
  19744. },
  19745. {
  19746. name: "Mini",
  19747. height: math.unit(3, "feet")
  19748. },
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(6, "feet"),
  19752. default: true
  19753. },
  19754. {
  19755. name: "Big",
  19756. height: math.unit(25, "feet")
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(100, "feet")
  19761. },
  19762. {
  19763. name: "Megamacro",
  19764. height: math.unit(400, "feet")
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(6, "feet"),
  19773. weight: math.unit(160, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/marcus/front.svg",
  19777. extra: 734 / 676,
  19778. bottom: 0.03
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Little",
  19785. height: math.unit(6, "feet")
  19786. },
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(110, "feet"),
  19790. default: true
  19791. },
  19792. {
  19793. name: "Macro",
  19794. height: math.unit(250, "feet")
  19795. },
  19796. {
  19797. name: "Megamacro",
  19798. height: math.unit(1000, "feet")
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(7, "feet"),
  19807. weight: math.unit(275, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/claude-delroute/front.svg",
  19811. extra: 902/827,
  19812. bottom: 26/928
  19813. }
  19814. },
  19815. side: {
  19816. height: math.unit(7, "feet"),
  19817. weight: math.unit(275, "lb"),
  19818. name: "Side",
  19819. image: {
  19820. source: "./media/characters/claude-delroute/side.svg",
  19821. extra: 908/853,
  19822. bottom: 16/924
  19823. }
  19824. },
  19825. back: {
  19826. height: math.unit(7, "feet"),
  19827. weight: math.unit(275, "lb"),
  19828. name: "Back",
  19829. image: {
  19830. source: "./media/characters/claude-delroute/back.svg",
  19831. extra: 911/829,
  19832. bottom: 18/929
  19833. }
  19834. },
  19835. maw: {
  19836. height: math.unit(0.6407, "meters"),
  19837. name: "Maw",
  19838. image: {
  19839. source: "./media/characters/claude-delroute/maw.svg"
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(7, "feet"),
  19847. default: true
  19848. },
  19849. {
  19850. name: "Lorge",
  19851. height: math.unit(20, "feet")
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19857. {
  19858. front: {
  19859. height: math.unit(8 + 4 / 12, "feet"),
  19860. weight: math.unit(600, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/dragonien/front.svg",
  19864. extra: 100 / 94,
  19865. bottom: 3.3 / 103.3445
  19866. }
  19867. },
  19868. back: {
  19869. height: math.unit(8 + 4 / 12, "feet"),
  19870. weight: math.unit(600, "lb"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/dragonien/back.svg",
  19874. extra: 776 / 746,
  19875. bottom: 6.4 / 782.0616
  19876. }
  19877. },
  19878. foot: {
  19879. height: math.unit(1.54, "feet"),
  19880. name: "Foot",
  19881. image: {
  19882. source: "./media/characters/dragonien/foot.svg",
  19883. }
  19884. },
  19885. },
  19886. [
  19887. {
  19888. name: "Normal",
  19889. height: math.unit(8 + 4 / 12, "feet"),
  19890. default: true
  19891. },
  19892. {
  19893. name: "Macro",
  19894. height: math.unit(200, "feet")
  19895. },
  19896. {
  19897. name: "Megamacro",
  19898. height: math.unit(1, "mile")
  19899. },
  19900. {
  19901. name: "Gigamacro",
  19902. height: math.unit(1000, "miles")
  19903. },
  19904. ]
  19905. ))
  19906. characterMakers.push(() => makeCharacter(
  19907. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19908. {
  19909. front: {
  19910. height: math.unit(5 + 2 / 12, "feet"),
  19911. weight: math.unit(110, "lb"),
  19912. name: "Front",
  19913. image: {
  19914. source: "./media/characters/desta/front.svg",
  19915. extra: 767 / 726,
  19916. bottom: 11.7 / 779
  19917. }
  19918. },
  19919. back: {
  19920. height: math.unit(5 + 2 / 12, "feet"),
  19921. weight: math.unit(110, "lb"),
  19922. name: "Back",
  19923. image: {
  19924. source: "./media/characters/desta/back.svg",
  19925. extra: 777 / 728,
  19926. bottom: 6 / 784
  19927. }
  19928. },
  19929. frontAlt: {
  19930. height: math.unit(5 + 2 / 12, "feet"),
  19931. weight: math.unit(110, "lb"),
  19932. name: "Front",
  19933. image: {
  19934. source: "./media/characters/desta/front-alt.svg",
  19935. extra: 1482 / 1417
  19936. }
  19937. },
  19938. side: {
  19939. height: math.unit(5 + 2 / 12, "feet"),
  19940. weight: math.unit(110, "lb"),
  19941. name: "Side",
  19942. image: {
  19943. source: "./media/characters/desta/side.svg",
  19944. extra: 2579 / 2491,
  19945. bottom: 0.053
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Micro",
  19952. height: math.unit(6, "inches")
  19953. },
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(5 + 2 / 12, "feet"),
  19957. default: true
  19958. },
  19959. {
  19960. name: "Macro",
  19961. height: math.unit(62, "feet")
  19962. },
  19963. {
  19964. name: "Megamacro",
  19965. height: math.unit(1800, "feet")
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19971. {
  19972. front: {
  19973. height: math.unit(10, "feet"),
  19974. weight: math.unit(700, "lb"),
  19975. name: "Front",
  19976. image: {
  19977. source: "./media/characters/storm-alystar/front.svg",
  19978. extra: 2112 / 1898,
  19979. bottom: 0.034
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Micro",
  19986. height: math.unit(3.5, "inches")
  19987. },
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(10, "feet"),
  19991. default: true
  19992. },
  19993. {
  19994. name: "Macro",
  19995. height: math.unit(400, "feet")
  19996. },
  19997. {
  19998. name: "Deific",
  19999. height: math.unit(60, "miles")
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(2.35, "meters"),
  20008. weight: math.unit(119, "kg"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/ilia/front.svg",
  20012. extra: 1285 / 1255,
  20013. bottom: 0.06
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(2.35, "meters")
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(140, "meters"),
  20025. default: true
  20026. },
  20027. {
  20028. name: "Megamacro",
  20029. height: math.unit(100, "miles")
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(6 + 5 / 12, "feet"),
  20038. weight: math.unit(190, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/kingdead/front.svg",
  20042. extra: 1228 / 1177
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Micro",
  20049. height: math.unit(7, "inches")
  20050. },
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(6 + 5 / 12, "feet")
  20054. },
  20055. {
  20056. name: "Macro",
  20057. height: math.unit(150, "feet"),
  20058. default: true
  20059. },
  20060. {
  20061. name: "Megamacro",
  20062. height: math.unit(200, "miles")
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20068. {
  20069. front: {
  20070. height: math.unit(8, "feet"),
  20071. weight: math.unit(600, "lb"),
  20072. name: "Front",
  20073. image: {
  20074. source: "./media/characters/kyrehx/front.svg",
  20075. extra: 1195 / 1095,
  20076. bottom: 0.034
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Micro",
  20083. height: math.unit(2, "inches")
  20084. },
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(8, "feet"),
  20088. default: true
  20089. },
  20090. {
  20091. name: "Macro",
  20092. height: math.unit(255, "feet")
  20093. },
  20094. ]
  20095. ))
  20096. characterMakers.push(() => makeCharacter(
  20097. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20098. {
  20099. front: {
  20100. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20101. weight: math.unit(184, "lb"),
  20102. name: "Front",
  20103. image: {
  20104. source: "./media/characters/xang/front.svg",
  20105. extra: 845 / 755
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20113. default: true
  20114. },
  20115. {
  20116. name: "Macro",
  20117. height: math.unit(0.935 * 146, "feet")
  20118. },
  20119. {
  20120. name: "Megamacro",
  20121. height: math.unit(0.935 * 3, "miles")
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20127. {
  20128. frontDressed: {
  20129. height: math.unit(5 + 7 / 12, "feet"),
  20130. weight: math.unit(140, "lb"),
  20131. name: "Front (Dressed)",
  20132. image: {
  20133. source: "./media/characters/doc-weardno/front-dressed.svg",
  20134. extra: 263 / 234
  20135. }
  20136. },
  20137. backDressed: {
  20138. height: math.unit(5 + 7 / 12, "feet"),
  20139. weight: math.unit(140, "lb"),
  20140. name: "Back (Dressed)",
  20141. image: {
  20142. source: "./media/characters/doc-weardno/back-dressed.svg",
  20143. extra: 266 / 238
  20144. }
  20145. },
  20146. front: {
  20147. height: math.unit(5 + 7 / 12, "feet"),
  20148. weight: math.unit(140, "lb"),
  20149. name: "Front",
  20150. image: {
  20151. source: "./media/characters/doc-weardno/front.svg",
  20152. extra: 254 / 233
  20153. }
  20154. },
  20155. },
  20156. [
  20157. {
  20158. name: "Micro",
  20159. height: math.unit(3, "inches")
  20160. },
  20161. {
  20162. name: "Normal",
  20163. height: math.unit(5 + 7 / 12, "feet"),
  20164. default: true
  20165. },
  20166. {
  20167. name: "Macro",
  20168. height: math.unit(25, "feet")
  20169. },
  20170. {
  20171. name: "Megamacro",
  20172. height: math.unit(2, "miles")
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(6 + 2 / 12, "feet"),
  20181. weight: math.unit(153, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/seth-whilst/front.svg",
  20185. bottom: 0.07
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Micro",
  20192. height: math.unit(5, "inches")
  20193. },
  20194. {
  20195. name: "Normal",
  20196. height: math.unit(6 + 2 / 12, "feet"),
  20197. default: true
  20198. },
  20199. ]
  20200. ))
  20201. characterMakers.push(() => makeCharacter(
  20202. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20203. {
  20204. front: {
  20205. height: math.unit(3, "inches"),
  20206. weight: math.unit(8, "grams"),
  20207. name: "Front",
  20208. image: {
  20209. source: "./media/characters/pocket-jabari/front.svg",
  20210. extra: 1024 / 974,
  20211. bottom: 0.039
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Minimicro",
  20218. height: math.unit(8, "mm")
  20219. },
  20220. {
  20221. name: "Micro",
  20222. height: math.unit(3, "inches"),
  20223. default: true
  20224. },
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(3, "feet")
  20228. },
  20229. ]
  20230. ))
  20231. characterMakers.push(() => makeCharacter(
  20232. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20233. {
  20234. frontDressed: {
  20235. height: math.unit(15, "feet"),
  20236. weight: math.unit(3280, "lb"),
  20237. name: "Front (Dressed)",
  20238. image: {
  20239. source: "./media/characters/sapphy/front-dressed.svg",
  20240. extra: 1951/1654,
  20241. bottom: 194/2145
  20242. },
  20243. form: "anthro",
  20244. default: true
  20245. },
  20246. backDressed: {
  20247. height: math.unit(15, "feet"),
  20248. weight: math.unit(3280, "lb"),
  20249. name: "Back (Dressed)",
  20250. image: {
  20251. source: "./media/characters/sapphy/back-dressed.svg",
  20252. extra: 2058/1918,
  20253. bottom: 125/2183
  20254. },
  20255. form: "anthro"
  20256. },
  20257. frontNude: {
  20258. height: math.unit(15, "feet"),
  20259. weight: math.unit(3280, "lb"),
  20260. name: "Front (Nude)",
  20261. image: {
  20262. source: "./media/characters/sapphy/front-nude.svg",
  20263. extra: 1951/1654,
  20264. bottom: 194/2145
  20265. },
  20266. form: "anthro"
  20267. },
  20268. backNude: {
  20269. height: math.unit(15, "feet"),
  20270. weight: math.unit(3280, "lb"),
  20271. name: "Back (Nude)",
  20272. image: {
  20273. source: "./media/characters/sapphy/back-nude.svg",
  20274. extra: 2058/1918,
  20275. bottom: 125/2183
  20276. },
  20277. form: "anthro"
  20278. },
  20279. full: {
  20280. height: math.unit(15, "feet"),
  20281. weight: math.unit(3280, "lb"),
  20282. name: "Full",
  20283. image: {
  20284. source: "./media/characters/sapphy/full.svg",
  20285. extra: 1396/1317,
  20286. bottom: 44/1440
  20287. },
  20288. form: "anthro"
  20289. },
  20290. dick: {
  20291. height: math.unit(3.8, "feet"),
  20292. name: "Dick",
  20293. image: {
  20294. source: "./media/characters/sapphy/dick.svg"
  20295. },
  20296. form: "anthro"
  20297. },
  20298. feral: {
  20299. height: math.unit(35, "feet"),
  20300. weight: math.unit(160, "tons"),
  20301. name: "Feral",
  20302. image: {
  20303. source: "./media/characters/sapphy/feral.svg",
  20304. extra: 1050/573,
  20305. bottom: 60/1110
  20306. },
  20307. form: "feral",
  20308. default: true
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(15, "feet"),
  20315. form: "anthro"
  20316. },
  20317. {
  20318. name: "Casual Macro",
  20319. height: math.unit(120, "feet"),
  20320. form: "anthro"
  20321. },
  20322. {
  20323. name: "Macro",
  20324. height: math.unit(2150, "feet"),
  20325. default: true,
  20326. form: "anthro"
  20327. },
  20328. {
  20329. name: "Megamacro",
  20330. height: math.unit(8, "miles"),
  20331. form: "anthro"
  20332. },
  20333. {
  20334. name: "Galaxy Mom",
  20335. height: math.unit(6, "megalightyears"),
  20336. form: "anthro"
  20337. },
  20338. {
  20339. name: "Normal",
  20340. height: math.unit(35, "feet"),
  20341. form: "feral",
  20342. default: true
  20343. },
  20344. {
  20345. name: "Macro",
  20346. height: math.unit(300, "feet"),
  20347. form: "feral"
  20348. },
  20349. {
  20350. name: "Galaxy Mom",
  20351. height: math.unit(10, "megalightyears"),
  20352. form: "feral"
  20353. },
  20354. ],
  20355. {
  20356. "anthro": {
  20357. name: "Anthro",
  20358. default: true
  20359. },
  20360. "feral": {
  20361. name: "Feral"
  20362. }
  20363. }
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20367. {
  20368. hyenaFront: {
  20369. height: math.unit(6, "feet"),
  20370. weight: math.unit(190, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/kiro/hyena-front.svg",
  20374. extra: 927/839,
  20375. bottom: 91/1018
  20376. },
  20377. form: "hyena",
  20378. default: true
  20379. },
  20380. front: {
  20381. height: math.unit(6, "feet"),
  20382. weight: math.unit(170, "lb"),
  20383. name: "Front",
  20384. image: {
  20385. source: "./media/characters/kiro/front.svg",
  20386. extra: 1064 / 1012,
  20387. bottom: 0.052
  20388. },
  20389. form: "folf",
  20390. default: true
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Micro",
  20396. height: math.unit(6, "inches"),
  20397. form: "folf"
  20398. },
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(6, "feet"),
  20402. form: "folf",
  20403. default: true
  20404. },
  20405. {
  20406. name: "Macro",
  20407. height: math.unit(72, "feet"),
  20408. form: "folf"
  20409. },
  20410. {
  20411. name: "Micro",
  20412. height: math.unit(6, "inches"),
  20413. form: "hyena"
  20414. },
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(6, "feet"),
  20418. form: "hyena",
  20419. default: true
  20420. },
  20421. {
  20422. name: "Macro",
  20423. height: math.unit(72, "feet"),
  20424. form: "hyena"
  20425. },
  20426. ],
  20427. {
  20428. "hyena": {
  20429. name: "Hyena",
  20430. default: true
  20431. },
  20432. "folf": {
  20433. name: "Folf",
  20434. },
  20435. }
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20439. {
  20440. front: {
  20441. height: math.unit(5 + 9 / 12, "feet"),
  20442. weight: math.unit(175, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/irishfox/front.svg",
  20446. extra: 1912 / 1680,
  20447. bottom: 0.02
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Nano",
  20454. height: math.unit(1, "mm")
  20455. },
  20456. {
  20457. name: "Micro",
  20458. height: math.unit(2, "inches")
  20459. },
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(5 + 9 / 12, "feet"),
  20463. default: true
  20464. },
  20465. {
  20466. name: "Macro",
  20467. height: math.unit(45, "feet")
  20468. },
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(6 + 1 / 12, "feet"),
  20476. weight: math.unit(75, "lb"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/aronai-sieyes/front.svg",
  20480. extra: 1532/1450,
  20481. bottom: 42/1574
  20482. }
  20483. },
  20484. side: {
  20485. height: math.unit(6 + 1 / 12, "feet"),
  20486. weight: math.unit(75, "lb"),
  20487. name: "Side",
  20488. image: {
  20489. source: "./media/characters/aronai-sieyes/side.svg",
  20490. extra: 1422/1365,
  20491. bottom: 148/1570
  20492. }
  20493. },
  20494. back: {
  20495. height: math.unit(6 + 1 / 12, "feet"),
  20496. weight: math.unit(75, "lb"),
  20497. name: "Back",
  20498. image: {
  20499. source: "./media/characters/aronai-sieyes/back.svg",
  20500. extra: 1526/1464,
  20501. bottom: 51/1577
  20502. }
  20503. },
  20504. dressed: {
  20505. height: math.unit(6 + 1 / 12, "feet"),
  20506. weight: math.unit(75, "lb"),
  20507. name: "Dressed",
  20508. image: {
  20509. source: "./media/characters/aronai-sieyes/dressed.svg",
  20510. extra: 1559/1483,
  20511. bottom: 39/1598
  20512. }
  20513. },
  20514. slit: {
  20515. height: math.unit(1.3, "feet"),
  20516. name: "Slit",
  20517. image: {
  20518. source: "./media/characters/aronai-sieyes/slit.svg"
  20519. }
  20520. },
  20521. slitSpread: {
  20522. height: math.unit(0.9, "feet"),
  20523. name: "Slit (Spread)",
  20524. image: {
  20525. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20526. }
  20527. },
  20528. rump: {
  20529. height: math.unit(1.3, "feet"),
  20530. name: "Rump",
  20531. image: {
  20532. source: "./media/characters/aronai-sieyes/rump.svg"
  20533. }
  20534. },
  20535. maw: {
  20536. height: math.unit(1.25, "feet"),
  20537. name: "Maw",
  20538. image: {
  20539. source: "./media/characters/aronai-sieyes/maw.svg"
  20540. }
  20541. },
  20542. feral: {
  20543. height: math.unit(18, "feet"),
  20544. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20545. name: "Feral",
  20546. image: {
  20547. source: "./media/characters/aronai-sieyes/feral.svg",
  20548. extra: 1530 / 1240,
  20549. bottom: 0.035
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Micro",
  20556. height: math.unit(2, "inches")
  20557. },
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(6 + 1 / 12, "feet"),
  20561. default: true
  20562. }
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(12, "feet"),
  20570. weight: math.unit(410, "kg"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/xuna/front.svg",
  20574. extra: 2184 / 1980
  20575. }
  20576. },
  20577. side: {
  20578. height: math.unit(12, "feet"),
  20579. weight: math.unit(410, "kg"),
  20580. name: "Side",
  20581. image: {
  20582. source: "./media/characters/xuna/side.svg",
  20583. extra: 2184 / 1980
  20584. }
  20585. },
  20586. back: {
  20587. height: math.unit(12, "feet"),
  20588. weight: math.unit(410, "kg"),
  20589. name: "Back",
  20590. image: {
  20591. source: "./media/characters/xuna/back.svg",
  20592. extra: 2184 / 1980
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Nano glow",
  20599. height: math.unit(10, "nm")
  20600. },
  20601. {
  20602. name: "Micro floof",
  20603. height: math.unit(0.3, "m")
  20604. },
  20605. {
  20606. name: "Huggable softy boi",
  20607. height: math.unit(3.6576, "m"),
  20608. default: true
  20609. },
  20610. {
  20611. name: "Admirable floof",
  20612. height: math.unit(80, "meters")
  20613. },
  20614. {
  20615. name: "Gentle macro",
  20616. height: math.unit(300, "meters")
  20617. },
  20618. {
  20619. name: "Very careful floof",
  20620. height: math.unit(3200, "meters")
  20621. },
  20622. {
  20623. name: "The mega floof",
  20624. height: math.unit(36000, "meters")
  20625. },
  20626. {
  20627. name: "Giga-fur-Wicker",
  20628. height: math.unit(4800000, "meters")
  20629. },
  20630. {
  20631. name: "Licky world",
  20632. height: math.unit(20000000, "meters")
  20633. },
  20634. {
  20635. name: "Floofy cyan sun",
  20636. height: math.unit(1500000000, "meters")
  20637. },
  20638. {
  20639. name: "Milky Wicker",
  20640. height: math.unit(1000000000000000000000, "meters")
  20641. },
  20642. {
  20643. name: "The observing Wicker",
  20644. height: math.unit(999999999999999999999999999, "meters")
  20645. },
  20646. ]
  20647. ))
  20648. characterMakers.push(() => makeCharacter(
  20649. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20650. {
  20651. front: {
  20652. height: math.unit(5 + 9 / 12, "feet"),
  20653. weight: math.unit(150, "lb"),
  20654. name: "Front",
  20655. image: {
  20656. source: "./media/characters/arokha-sieyes/front.svg",
  20657. extra: 1425 / 1284,
  20658. bottom: 0.05
  20659. }
  20660. },
  20661. },
  20662. [
  20663. {
  20664. name: "Normal",
  20665. height: math.unit(5 + 9 / 12, "feet")
  20666. },
  20667. {
  20668. name: "Macro",
  20669. height: math.unit(30, "meters"),
  20670. default: true
  20671. },
  20672. ]
  20673. ))
  20674. characterMakers.push(() => makeCharacter(
  20675. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20676. {
  20677. front: {
  20678. height: math.unit(6, "feet"),
  20679. weight: math.unit(180, "lb"),
  20680. name: "Front",
  20681. image: {
  20682. source: "./media/characters/arokh-sieyes/front.svg",
  20683. extra: 1830 / 1769,
  20684. bottom: 0.01
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Normal",
  20691. height: math.unit(6, "feet")
  20692. },
  20693. {
  20694. name: "Macro",
  20695. height: math.unit(30, "meters"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20702. {
  20703. side: {
  20704. height: math.unit(13 + 1 / 12, "feet"),
  20705. weight: math.unit(8.5, "tonnes"),
  20706. preyCapacity: math.unit(36, "people"),
  20707. name: "Side",
  20708. image: {
  20709. source: "./media/characters/goldeneye/side.svg",
  20710. extra: 1139/741,
  20711. bottom: 98/1237
  20712. }
  20713. },
  20714. front: {
  20715. height: math.unit(5.1, "feet"),
  20716. weight: math.unit(8.5, "tonnes"),
  20717. preyCapacity: math.unit(36, "people"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/goldeneye/front.svg",
  20721. extra: 635/365,
  20722. bottom: 598/1233
  20723. }
  20724. },
  20725. maw: {
  20726. height: math.unit(6.6, "feet"),
  20727. name: "Maw",
  20728. image: {
  20729. source: "./media/characters/goldeneye/maw.svg"
  20730. }
  20731. },
  20732. headFront: {
  20733. height: math.unit(8, "feet"),
  20734. name: "Head (Front)",
  20735. image: {
  20736. source: "./media/characters/goldeneye/head-front.svg"
  20737. }
  20738. },
  20739. headSide: {
  20740. height: math.unit(6, "feet"),
  20741. name: "Head (Side)",
  20742. image: {
  20743. source: "./media/characters/goldeneye/head-side.svg"
  20744. }
  20745. },
  20746. headBack: {
  20747. height: math.unit(8, "feet"),
  20748. name: "Head (Back)",
  20749. image: {
  20750. source: "./media/characters/goldeneye/head-back.svg"
  20751. }
  20752. },
  20753. paw: {
  20754. height: math.unit(3.4, "feet"),
  20755. name: "Paw",
  20756. image: {
  20757. source: "./media/characters/goldeneye/paw.svg"
  20758. }
  20759. },
  20760. toering: {
  20761. height: math.unit(0.45, "feet"),
  20762. name: "Toering",
  20763. image: {
  20764. source: "./media/characters/goldeneye/toering.svg"
  20765. }
  20766. },
  20767. eyes: {
  20768. height: math.unit(0.5, "feet"),
  20769. name: "Eyes",
  20770. image: {
  20771. source: "./media/characters/goldeneye/eyes.svg"
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(13 + 1 / 12, "feet"),
  20779. default: true
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20785. {
  20786. front: {
  20787. height: math.unit(6 + 1 / 12, "feet"),
  20788. weight: math.unit(210, "lb"),
  20789. name: "Front",
  20790. image: {
  20791. source: "./media/characters/leonardo-lycheborne/front.svg",
  20792. extra: 776/723,
  20793. bottom: 34/810
  20794. }
  20795. },
  20796. side: {
  20797. height: math.unit(6 + 1 / 12, "feet"),
  20798. weight: math.unit(210, "lb"),
  20799. name: "Side",
  20800. image: {
  20801. source: "./media/characters/leonardo-lycheborne/side.svg",
  20802. extra: 780/728,
  20803. bottom: 12/792
  20804. }
  20805. },
  20806. back: {
  20807. height: math.unit(6 + 1 / 12, "feet"),
  20808. weight: math.unit(210, "lb"),
  20809. name: "Back",
  20810. image: {
  20811. source: "./media/characters/leonardo-lycheborne/back.svg",
  20812. extra: 775/721,
  20813. bottom: 17/792
  20814. }
  20815. },
  20816. hand: {
  20817. height: math.unit(1.08, "feet"),
  20818. name: "Hand",
  20819. image: {
  20820. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20821. }
  20822. },
  20823. foot: {
  20824. height: math.unit(1.32, "feet"),
  20825. name: "Foot",
  20826. image: {
  20827. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20828. }
  20829. },
  20830. maw: {
  20831. height: math.unit(1, "feet"),
  20832. name: "Maw",
  20833. image: {
  20834. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20835. }
  20836. },
  20837. were: {
  20838. height: math.unit(20, "feet"),
  20839. weight: math.unit(7800, "lb"),
  20840. name: "Were",
  20841. image: {
  20842. source: "./media/characters/leonardo-lycheborne/were.svg",
  20843. extra: 1224/1165,
  20844. bottom: 72/1296
  20845. }
  20846. },
  20847. feral: {
  20848. height: math.unit(7.5, "feet"),
  20849. weight: math.unit(600, "lb"),
  20850. name: "Feral",
  20851. image: {
  20852. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20853. extra: 797/702,
  20854. bottom: 139/936
  20855. }
  20856. },
  20857. taur: {
  20858. height: math.unit(11, "feet"),
  20859. weight: math.unit(3300, "lb"),
  20860. name: "Taur",
  20861. image: {
  20862. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20863. extra: 1271/1197,
  20864. bottom: 47/1318
  20865. }
  20866. },
  20867. barghest: {
  20868. height: math.unit(11, "feet"),
  20869. weight: math.unit(1300, "lb"),
  20870. name: "Barghest",
  20871. image: {
  20872. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20873. extra: 1291/1204,
  20874. bottom: 37/1328
  20875. }
  20876. },
  20877. dick: {
  20878. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20879. name: "Dick",
  20880. image: {
  20881. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20882. }
  20883. },
  20884. dickWere: {
  20885. height: math.unit((20) / 3.8, "feet"),
  20886. name: "Dick (Were)",
  20887. image: {
  20888. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(6 + 1 / 12, "feet"),
  20896. default: true
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(10, "feet"),
  20905. weight: math.unit(350, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/jet/front.svg",
  20909. extra: 2050 / 1980,
  20910. bottom: 0.013
  20911. }
  20912. },
  20913. back: {
  20914. height: math.unit(10, "feet"),
  20915. weight: math.unit(350, "lb"),
  20916. name: "Back",
  20917. image: {
  20918. source: "./media/characters/jet/back.svg",
  20919. extra: 2050 / 1980,
  20920. bottom: 0.013
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Micro",
  20927. height: math.unit(6, "inches")
  20928. },
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(10, "feet"),
  20932. default: true
  20933. },
  20934. {
  20935. name: "Macro",
  20936. height: math.unit(100, "feet")
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(15, "feet"),
  20945. weight: math.unit(2800, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/tanarath/front.svg",
  20949. extra: 2392 / 2220,
  20950. bottom: 0.03
  20951. }
  20952. },
  20953. back: {
  20954. height: math.unit(15, "feet"),
  20955. weight: math.unit(2800, "lb"),
  20956. name: "Back",
  20957. image: {
  20958. source: "./media/characters/tanarath/back.svg",
  20959. extra: 2392 / 2220,
  20960. bottom: 0.03
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(15, "feet"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(7 + 1 / 12, "feet"),
  20977. weight: math.unit(175, "lb"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/patty-cattybatty/front.svg",
  20981. extra: 908 / 874,
  20982. bottom: 0.025
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Micro",
  20989. height: math.unit(1, "inch")
  20990. },
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(7 + 1 / 12, "feet")
  20994. },
  20995. {
  20996. name: "Mini Macro",
  20997. height: math.unit(155, "feet")
  20998. },
  20999. {
  21000. name: "Macro",
  21001. height: math.unit(1077, "feet")
  21002. },
  21003. {
  21004. name: "Mega Macro",
  21005. height: math.unit(47650, "feet"),
  21006. default: true
  21007. },
  21008. {
  21009. name: "Giga Macro",
  21010. height: math.unit(440, "miles")
  21011. },
  21012. {
  21013. name: "Tera Macro",
  21014. height: math.unit(8700, "miles")
  21015. },
  21016. {
  21017. name: "Planetary Macro",
  21018. height: math.unit(32700, "miles")
  21019. },
  21020. {
  21021. name: "Solar Macro",
  21022. height: math.unit(550000, "miles")
  21023. },
  21024. {
  21025. name: "Celestial Macro",
  21026. height: math.unit(2.5, "AU")
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(4 + 5 / 12, "feet"),
  21035. weight: math.unit(90, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/cappu/front.svg",
  21039. extra: 1247 / 1152,
  21040. bottom: 0.012
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(4 + 5 / 12, "feet"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21054. {
  21055. frontDressed: {
  21056. height: math.unit(70, "cm"),
  21057. weight: math.unit(6, "kg"),
  21058. name: "Front (Dressed)",
  21059. image: {
  21060. source: "./media/characters/sebi/front-dressed.svg",
  21061. extra: 713.5 / 686.5,
  21062. bottom: 0.003
  21063. }
  21064. },
  21065. front: {
  21066. height: math.unit(70, "cm"),
  21067. weight: math.unit(5, "kg"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/sebi/front.svg",
  21071. extra: 713.5 / 686.5,
  21072. bottom: 0.003
  21073. }
  21074. }
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(70, "cm"),
  21080. default: true
  21081. },
  21082. {
  21083. name: "Macro",
  21084. height: math.unit(8, "meters")
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(6, "feet"),
  21093. weight: math.unit(150, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/typhek/front.svg",
  21097. extra: 1948 / 1929,
  21098. bottom: 0.025
  21099. }
  21100. },
  21101. side: {
  21102. height: math.unit(6, "feet"),
  21103. weight: math.unit(150, "lb"),
  21104. name: "Side",
  21105. image: {
  21106. source: "./media/characters/typhek/side.svg",
  21107. extra: 2034 / 2010,
  21108. bottom: 0.003
  21109. }
  21110. },
  21111. back: {
  21112. height: math.unit(6, "feet"),
  21113. weight: math.unit(150, "lb"),
  21114. name: "Back",
  21115. image: {
  21116. source: "./media/characters/typhek/back.svg",
  21117. extra: 2005 / 1978,
  21118. bottom: 0.004
  21119. }
  21120. },
  21121. palm: {
  21122. height: math.unit(1.2, "feet"),
  21123. name: "Palm",
  21124. image: {
  21125. source: "./media/characters/typhek/palm.svg"
  21126. }
  21127. },
  21128. fist: {
  21129. height: math.unit(1.1, "feet"),
  21130. name: "Fist",
  21131. image: {
  21132. source: "./media/characters/typhek/fist.svg"
  21133. }
  21134. },
  21135. foot: {
  21136. height: math.unit(1.57, "feet"),
  21137. name: "Foot",
  21138. image: {
  21139. source: "./media/characters/typhek/foot.svg"
  21140. }
  21141. },
  21142. sole: {
  21143. height: math.unit(2.05, "feet"),
  21144. name: "Sole",
  21145. image: {
  21146. source: "./media/characters/typhek/sole.svg"
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Macro",
  21153. height: math.unit(40, "stories"),
  21154. default: true
  21155. },
  21156. {
  21157. name: "Megamacro",
  21158. height: math.unit(1, "mile")
  21159. },
  21160. {
  21161. name: "Gigamacro",
  21162. height: math.unit(4000, "solarradii")
  21163. },
  21164. {
  21165. name: "Universal",
  21166. height: math.unit(1.1, "universes")
  21167. }
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21172. {
  21173. side: {
  21174. height: math.unit(5 + 7 / 12, "feet"),
  21175. weight: math.unit(150, "lb"),
  21176. name: "Side",
  21177. image: {
  21178. source: "./media/characters/kassy/side.svg",
  21179. extra: 1280 / 1225,
  21180. bottom: 0.002
  21181. }
  21182. },
  21183. front: {
  21184. height: math.unit(5 + 7 / 12, "feet"),
  21185. weight: math.unit(150, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/kassy/front.svg",
  21189. extra: 1280 / 1225,
  21190. bottom: 0.025
  21191. }
  21192. },
  21193. back: {
  21194. height: math.unit(5 + 7 / 12, "feet"),
  21195. weight: math.unit(150, "lb"),
  21196. name: "Back",
  21197. image: {
  21198. source: "./media/characters/kassy/back.svg",
  21199. extra: 1280 / 1225,
  21200. bottom: 0.002
  21201. }
  21202. },
  21203. foot: {
  21204. height: math.unit(1.266, "feet"),
  21205. name: "Foot",
  21206. image: {
  21207. source: "./media/characters/kassy/foot.svg"
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(5 + 7 / 12, "feet")
  21215. },
  21216. {
  21217. name: "Macro",
  21218. height: math.unit(137, "feet"),
  21219. default: true
  21220. },
  21221. {
  21222. name: "Megamacro",
  21223. height: math.unit(1, "mile")
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(6 + 1 / 12, "feet"),
  21232. weight: math.unit(200, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/neil/front.svg",
  21236. extra: 1326 / 1250,
  21237. bottom: 0.023
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(6 + 1 / 12, "feet"),
  21245. default: true
  21246. },
  21247. {
  21248. name: "Macro",
  21249. height: math.unit(200, "feet")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(5 + 9 / 12, "feet"),
  21258. weight: math.unit(190, "lb"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/atticus/front.svg",
  21262. extra: 2934 / 2785,
  21263. bottom: 0.025
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(5 + 9 / 12, "feet"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Macro",
  21275. height: math.unit(180, "feet")
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21281. {
  21282. side: {
  21283. height: math.unit(9, "feet"),
  21284. weight: math.unit(650, "lb"),
  21285. name: "Side",
  21286. image: {
  21287. source: "./media/characters/milo/side.svg",
  21288. extra: 2644 / 2310,
  21289. bottom: 0.032
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Normal",
  21296. height: math.unit(9, "feet"),
  21297. default: true
  21298. },
  21299. {
  21300. name: "Macro",
  21301. height: math.unit(300, "feet")
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21307. {
  21308. side: {
  21309. height: math.unit(8, "meters"),
  21310. weight: math.unit(90000, "kg"),
  21311. name: "Side",
  21312. image: {
  21313. source: "./media/characters/ijzer/side.svg",
  21314. extra: 2756 / 1600,
  21315. bottom: 0.01
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Small",
  21322. height: math.unit(3, "meters")
  21323. },
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(8, "meters"),
  21327. default: true
  21328. },
  21329. {
  21330. name: "Normal+",
  21331. height: math.unit(10, "meters")
  21332. },
  21333. {
  21334. name: "Bigger",
  21335. height: math.unit(24, "meters")
  21336. },
  21337. {
  21338. name: "Huge",
  21339. height: math.unit(80, "meters")
  21340. },
  21341. ]
  21342. ))
  21343. characterMakers.push(() => makeCharacter(
  21344. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21345. {
  21346. front: {
  21347. height: math.unit(6 + 2 / 12, "feet"),
  21348. weight: math.unit(153, "lb"),
  21349. name: "Front",
  21350. image: {
  21351. source: "./media/characters/luca-cervicum/front.svg",
  21352. extra: 370 / 327,
  21353. bottom: 0.015
  21354. }
  21355. },
  21356. back: {
  21357. height: math.unit(6 + 2 / 12, "feet"),
  21358. weight: math.unit(153, "lb"),
  21359. name: "Back",
  21360. image: {
  21361. source: "./media/characters/luca-cervicum/back.svg",
  21362. extra: 367 / 333,
  21363. bottom: 0.005
  21364. }
  21365. },
  21366. frontGear: {
  21367. height: math.unit(6 + 2 / 12, "feet"),
  21368. weight: math.unit(173, "lb"),
  21369. name: "Front (Gear)",
  21370. image: {
  21371. source: "./media/characters/luca-cervicum/front-gear.svg",
  21372. extra: 377 / 333,
  21373. bottom: 0.006
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(6 + 2 / 12, "feet"),
  21381. default: true
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21387. {
  21388. front: {
  21389. height: math.unit(6 + 1 / 12, "feet"),
  21390. weight: math.unit(304, "lb"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/oliver/front.svg",
  21394. extra: 157 / 143,
  21395. bottom: 0.08
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(6 + 1 / 12, "feet"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(5 + 7 / 12, "feet"),
  21412. weight: math.unit(140, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/shane/front.svg",
  21416. extra: 304 / 289,
  21417. bottom: 0.005
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(5 + 7 / 12, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21431. {
  21432. front: {
  21433. height: math.unit(5 + 9 / 12, "feet"),
  21434. weight: math.unit(178, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/shin/front.svg",
  21438. extra: 159 / 151,
  21439. bottom: 0.015
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(5 + 9 / 12, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(5 + 10 / 12, "feet"),
  21456. weight: math.unit(168, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/xerxes/front.svg",
  21460. extra: 282 / 260,
  21461. bottom: 0.045
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(5 + 10 / 12, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(6 + 7 / 12, "feet"),
  21478. weight: math.unit(208, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/chaska/front.svg",
  21482. extra: 332 / 319,
  21483. bottom: 0.015
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(6 + 7 / 12, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(5 + 8 / 12, "feet"),
  21500. weight: math.unit(208, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/enuk/front.svg",
  21504. extra: 437 / 406,
  21505. bottom: 0.02
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Normal",
  21512. height: math.unit(5 + 8 / 12, "feet"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(5 + 10 / 12, "feet"),
  21522. weight: math.unit(252, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/bruun/front.svg",
  21526. extra: 197 / 187,
  21527. bottom: 0.012
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(5 + 10 / 12, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(6 + 10 / 12, "feet"),
  21544. weight: math.unit(255, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/alexeev/front.svg",
  21548. extra: 213 / 200,
  21549. bottom: 0.05
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(6 + 10 / 12, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(2 + 8 / 12, "feet"),
  21566. weight: math.unit(22, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/evelyn/front.svg",
  21570. extra: 208 / 180
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(2 + 8 / 12, "feet"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(5 + 9 / 12, "feet"),
  21587. weight: math.unit(139, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/inca/front.svg",
  21591. extra: 294 / 291,
  21592. bottom: 0.03
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(5 + 9 / 12, "feet"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21606. {
  21607. front: {
  21608. height: math.unit(6 + 3 / 12, "feet"),
  21609. weight: math.unit(185, "lb"),
  21610. name: "Front",
  21611. image: {
  21612. source: "./media/characters/mera/front.svg",
  21613. extra: 291 / 277,
  21614. bottom: 0.03
  21615. }
  21616. },
  21617. },
  21618. [
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(6 + 3 / 12, "feet"),
  21622. default: true
  21623. },
  21624. ]
  21625. ))
  21626. characterMakers.push(() => makeCharacter(
  21627. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21628. {
  21629. front: {
  21630. height: math.unit(6 + 7 / 12, "feet"),
  21631. weight: math.unit(160, "lb"),
  21632. name: "Front",
  21633. image: {
  21634. source: "./media/characters/ceres/front.svg",
  21635. extra: 1023 / 950,
  21636. bottom: 0.027
  21637. }
  21638. },
  21639. back: {
  21640. height: math.unit(6 + 7 / 12, "feet"),
  21641. weight: math.unit(160, "lb"),
  21642. name: "Back",
  21643. image: {
  21644. source: "./media/characters/ceres/back.svg",
  21645. extra: 1023 / 950
  21646. }
  21647. },
  21648. },
  21649. [
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(6 + 7 / 12, "feet"),
  21653. default: true
  21654. },
  21655. ]
  21656. ))
  21657. characterMakers.push(() => makeCharacter(
  21658. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21659. {
  21660. front: {
  21661. height: math.unit(5 + 10 / 12, "feet"),
  21662. weight: math.unit(150, "lb"),
  21663. name: "Front",
  21664. image: {
  21665. source: "./media/characters/kris/front.svg",
  21666. extra: 885 / 803,
  21667. bottom: 0.03
  21668. }
  21669. },
  21670. },
  21671. [
  21672. {
  21673. name: "Normal",
  21674. height: math.unit(5 + 10 / 12, "feet"),
  21675. default: true
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21681. {
  21682. front: {
  21683. height: math.unit(7, "feet"),
  21684. weight: math.unit(120, "kg"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/taluthus/front.svg",
  21688. extra: 903 / 833,
  21689. bottom: 0.015
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(7, "feet"),
  21697. default: true
  21698. },
  21699. {
  21700. name: "Macro",
  21701. height: math.unit(300, "feet")
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(5 + 9 / 12, "feet"),
  21710. weight: math.unit(145, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/dawn/front.svg",
  21714. extra: 2094 / 2016,
  21715. bottom: 0.025
  21716. }
  21717. },
  21718. back: {
  21719. height: math.unit(5 + 9 / 12, "feet"),
  21720. weight: math.unit(160, "lb"),
  21721. name: "Back",
  21722. image: {
  21723. source: "./media/characters/dawn/back.svg",
  21724. extra: 2112 / 2080,
  21725. bottom: 0.005
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(6 + 7 / 12, "feet"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21739. {
  21740. anthro: {
  21741. height: math.unit(8 + 3 / 12, "feet"),
  21742. weight: math.unit(450, "lb"),
  21743. name: "Anthro",
  21744. image: {
  21745. source: "./media/characters/arador/anthro.svg",
  21746. extra: 1835 / 1718,
  21747. bottom: 0.025
  21748. }
  21749. },
  21750. feral: {
  21751. height: math.unit(4, "feet"),
  21752. weight: math.unit(200, "lb"),
  21753. name: "Feral",
  21754. image: {
  21755. source: "./media/characters/arador/feral.svg",
  21756. extra: 1683 / 1514,
  21757. bottom: 0.07
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(8 + 3 / 12, "feet")
  21765. },
  21766. {
  21767. name: "Macro",
  21768. height: math.unit(82.5, "feet"),
  21769. default: true
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(5 + 10 / 12, "feet"),
  21778. weight: math.unit(125, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/dharsi/front.svg",
  21782. extra: 716 / 630,
  21783. bottom: 0.035
  21784. }
  21785. },
  21786. },
  21787. [
  21788. {
  21789. name: "Nano",
  21790. height: math.unit(100, "nm")
  21791. },
  21792. {
  21793. name: "Micro",
  21794. height: math.unit(2, "inches")
  21795. },
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(5 + 10 / 12, "feet"),
  21799. default: true
  21800. },
  21801. {
  21802. name: "Macro",
  21803. height: math.unit(1000, "feet")
  21804. },
  21805. {
  21806. name: "Megamacro",
  21807. height: math.unit(10, "miles")
  21808. },
  21809. {
  21810. name: "Gigamacro",
  21811. height: math.unit(3000, "miles")
  21812. },
  21813. {
  21814. name: "Teramacro",
  21815. height: math.unit(500000, "miles")
  21816. },
  21817. {
  21818. name: "Teramacro+",
  21819. height: math.unit(30, "galaxies")
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21825. {
  21826. front: {
  21827. height: math.unit(6, "feet"),
  21828. weight: math.unit(150, "lb"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/deathy/front.svg",
  21832. extra: 1552 / 1463,
  21833. bottom: 0.025
  21834. }
  21835. },
  21836. side: {
  21837. height: math.unit(6, "feet"),
  21838. weight: math.unit(150, "lb"),
  21839. name: "Side",
  21840. image: {
  21841. source: "./media/characters/deathy/side.svg",
  21842. extra: 1604 / 1455,
  21843. bottom: 0.025
  21844. }
  21845. },
  21846. back: {
  21847. height: math.unit(6, "feet"),
  21848. weight: math.unit(150, "lb"),
  21849. name: "Back",
  21850. image: {
  21851. source: "./media/characters/deathy/back.svg",
  21852. extra: 1580 / 1463,
  21853. bottom: 0.005
  21854. }
  21855. },
  21856. },
  21857. [
  21858. {
  21859. name: "Micro",
  21860. height: math.unit(5, "millimeters")
  21861. },
  21862. {
  21863. name: "Normal",
  21864. height: math.unit(6 + 5 / 12, "feet"),
  21865. default: true
  21866. },
  21867. ]
  21868. ))
  21869. characterMakers.push(() => makeCharacter(
  21870. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21871. {
  21872. front: {
  21873. height: math.unit(16, "feet"),
  21874. weight: math.unit(4000, "lb"),
  21875. name: "Front",
  21876. image: {
  21877. source: "./media/characters/juniper/front.svg",
  21878. bottom: 0.04
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(16, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(6, "feet"),
  21895. weight: math.unit(150, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/hipster/front.svg",
  21899. extra: 1312 / 1209,
  21900. bottom: 0.025
  21901. }
  21902. },
  21903. back: {
  21904. height: math.unit(6, "feet"),
  21905. weight: math.unit(150, "lb"),
  21906. name: "Back",
  21907. image: {
  21908. source: "./media/characters/hipster/back.svg",
  21909. extra: 1281 / 1196,
  21910. bottom: 0.01
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Micro",
  21917. height: math.unit(1, "mm")
  21918. },
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(4, "inches"),
  21922. default: true
  21923. },
  21924. {
  21925. name: "Macro",
  21926. height: math.unit(500, "feet")
  21927. },
  21928. {
  21929. name: "Megamacro",
  21930. height: math.unit(1000, "miles")
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(6, "feet"),
  21939. weight: math.unit(150, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/tendirmuldr/front.svg",
  21943. extra: 1878 / 1772,
  21944. bottom: 0.015
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Megamacro",
  21951. height: math.unit(1500, "miles"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21958. {
  21959. front: {
  21960. height: math.unit(14, "feet"),
  21961. weight: math.unit(12000, "lb"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/mort/front.svg",
  21965. extra: 365 / 318,
  21966. bottom: 0.01
  21967. }
  21968. },
  21969. side: {
  21970. height: math.unit(14, "feet"),
  21971. weight: math.unit(12000, "lb"),
  21972. name: "Side",
  21973. image: {
  21974. source: "./media/characters/mort/side.svg",
  21975. extra: 365 / 318,
  21976. bottom: 0.052
  21977. },
  21978. default: true
  21979. },
  21980. back: {
  21981. height: math.unit(14, "feet"),
  21982. weight: math.unit(12000, "lb"),
  21983. name: "Back",
  21984. image: {
  21985. source: "./media/characters/mort/back.svg",
  21986. extra: 371 / 332,
  21987. bottom: 0.18
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(14, "feet"),
  21995. default: true
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22001. {
  22002. front: {
  22003. height: math.unit(8, "feet"),
  22004. weight: math.unit(1, "ton"),
  22005. name: "Front",
  22006. image: {
  22007. source: "./media/characters/lycoa/front.svg",
  22008. extra: 1836/1728,
  22009. bottom: 81/1917
  22010. }
  22011. },
  22012. back: {
  22013. height: math.unit(8, "feet"),
  22014. weight: math.unit(1, "ton"),
  22015. name: "Back",
  22016. image: {
  22017. source: "./media/characters/lycoa/back.svg",
  22018. extra: 1785/1720,
  22019. bottom: 91/1876
  22020. }
  22021. },
  22022. head: {
  22023. height: math.unit(1.6243, "feet"),
  22024. name: "Head",
  22025. image: {
  22026. source: "./media/characters/lycoa/head.svg",
  22027. extra: 1011/782,
  22028. bottom: 0/1011
  22029. }
  22030. },
  22031. tailmaw: {
  22032. height: math.unit(1.9, "feet"),
  22033. name: "Tailmaw",
  22034. image: {
  22035. source: "./media/characters/lycoa/tailmaw.svg"
  22036. }
  22037. },
  22038. tentacles: {
  22039. height: math.unit(2.1, "feet"),
  22040. name: "Tentacles",
  22041. image: {
  22042. source: "./media/characters/lycoa/tentacles.svg"
  22043. }
  22044. },
  22045. dick: {
  22046. height: math.unit(1.73, "feet"),
  22047. name: "Dick",
  22048. image: {
  22049. source: "./media/characters/lycoa/dick.svg"
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Normal",
  22056. height: math.unit(8, "feet"),
  22057. default: true
  22058. },
  22059. {
  22060. name: "Macro",
  22061. height: math.unit(30, "feet")
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22067. {
  22068. front: {
  22069. height: math.unit(4 + 2 / 12, "feet"),
  22070. weight: math.unit(70, "lb"),
  22071. name: "Front",
  22072. image: {
  22073. source: "./media/characters/naldara/front.svg",
  22074. extra: 1664/1387,
  22075. bottom: 81/1745
  22076. },
  22077. form: "anthro",
  22078. default: true
  22079. },
  22080. naga: {
  22081. height: math.unit(20, "feet"),
  22082. weight: math.unit(15000, "kg"),
  22083. name: "Front",
  22084. image: {
  22085. source: "./media/characters/naldara/naga.svg",
  22086. extra: 1590/1396,
  22087. bottom: 285/1875
  22088. },
  22089. form: "naga",
  22090. default: true
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(4 + 2 / 12, "feet"),
  22097. form: "anthro",
  22098. default: true
  22099. },
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(20, "feet"),
  22103. form: "naga",
  22104. default: true
  22105. },
  22106. ],
  22107. {
  22108. "anthro": {
  22109. name: "Anthro",
  22110. default: true
  22111. },
  22112. "naga": {
  22113. name: "Naga"
  22114. }
  22115. }
  22116. ))
  22117. characterMakers.push(() => makeCharacter(
  22118. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22119. {
  22120. front: {
  22121. height: math.unit(13 + 7 / 12, "feet"),
  22122. weight: math.unit(1500, "lb"),
  22123. name: "Front",
  22124. image: {
  22125. source: "./media/characters/briar/front.svg",
  22126. extra: 1223/1157,
  22127. bottom: 123/1346
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(13 + 7 / 12, "feet"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22141. {
  22142. side: {
  22143. height: math.unit(16, "feet"),
  22144. weight: math.unit(500, "lb"),
  22145. name: "Side",
  22146. image: {
  22147. source: "./media/characters/vanguard/side.svg",
  22148. extra: 1022/914,
  22149. bottom: 30/1052
  22150. }
  22151. },
  22152. sideAlt: {
  22153. height: math.unit(10, "feet"),
  22154. weight: math.unit(500, "lb"),
  22155. name: "Side (Alt)",
  22156. image: {
  22157. source: "./media/characters/vanguard/side-alt.svg",
  22158. extra: 502 / 425,
  22159. bottom: 0.087
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(17.71, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22173. {
  22174. front: {
  22175. height: math.unit(7.5, "feet"),
  22176. weight: math.unit(2, "lb"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/artemis/work-safe-front.svg",
  22180. extra: 1192 / 1075,
  22181. bottom: 0.07
  22182. },
  22183. form: "work-safe",
  22184. default: true
  22185. },
  22186. frontNsfw: {
  22187. height: math.unit(7.5, "feet"),
  22188. weight: math.unit(2, "lb"),
  22189. name: "Front",
  22190. image: {
  22191. source: "./media/characters/artemis/calibrating-front.svg",
  22192. extra: 1192 / 1075,
  22193. bottom: 0.07
  22194. },
  22195. form: "calibrating",
  22196. default: true
  22197. },
  22198. frontNsfwer: {
  22199. height: math.unit(7.5, "feet"),
  22200. weight: math.unit(2, "lb"),
  22201. name: "Front",
  22202. image: {
  22203. source: "./media/characters/artemis/oversize-load-front.svg",
  22204. extra: 1192 / 1075,
  22205. bottom: 0.07
  22206. },
  22207. form: "oversize-load",
  22208. default: true
  22209. },
  22210. side: {
  22211. height: math.unit(7.5, "feet"),
  22212. weight: math.unit(2, "lb"),
  22213. name: "Side",
  22214. image: {
  22215. source: "./media/characters/artemis/work-safe-side.svg",
  22216. extra: 1192 / 1075,
  22217. bottom: 0.07
  22218. },
  22219. form: "work-safe"
  22220. },
  22221. sideNsfw: {
  22222. height: math.unit(7.5, "feet"),
  22223. weight: math.unit(2, "lb"),
  22224. name: "Side",
  22225. image: {
  22226. source: "./media/characters/artemis/calibrating-side.svg",
  22227. extra: 1192 / 1075,
  22228. bottom: 0.07
  22229. },
  22230. form: "calibrating"
  22231. },
  22232. sideNsfwer: {
  22233. height: math.unit(7.5, "feet"),
  22234. weight: math.unit(2, "lb"),
  22235. name: "Side",
  22236. image: {
  22237. source: "./media/characters/artemis/oversize-load-side.svg",
  22238. extra: 1192 / 1075,
  22239. bottom: 0.07
  22240. },
  22241. form: "oversize-load"
  22242. },
  22243. maw: {
  22244. height: math.unit(1.1, "feet"),
  22245. name: "Maw",
  22246. image: {
  22247. source: "./media/characters/artemis/maw.svg"
  22248. },
  22249. form: "work-safe"
  22250. },
  22251. stomach: {
  22252. height: math.unit(0.95, "feet"),
  22253. name: "Stomach",
  22254. image: {
  22255. source: "./media/characters/artemis/stomach.svg"
  22256. },
  22257. form: "work-safe"
  22258. },
  22259. dickCanine: {
  22260. height: math.unit(1, "feet"),
  22261. name: "Dick (Canine)",
  22262. image: {
  22263. source: "./media/characters/artemis/dick-canine.svg"
  22264. },
  22265. form: "calibrating"
  22266. },
  22267. dickEquine: {
  22268. height: math.unit(0.85, "feet"),
  22269. name: "Dick (Equine)",
  22270. image: {
  22271. source: "./media/characters/artemis/dick-equine.svg"
  22272. },
  22273. form: "calibrating"
  22274. },
  22275. dickExotic: {
  22276. height: math.unit(0.85, "feet"),
  22277. name: "Dick (Exotic)",
  22278. image: {
  22279. source: "./media/characters/artemis/dick-exotic.svg"
  22280. },
  22281. form: "calibrating"
  22282. },
  22283. dickCanineBigger: {
  22284. height: math.unit(1 * 1.33, "feet"),
  22285. name: "Dick (Canine)",
  22286. image: {
  22287. source: "./media/characters/artemis/dick-canine.svg"
  22288. },
  22289. form: "oversize-load"
  22290. },
  22291. dickEquineBigger: {
  22292. height: math.unit(0.85 * 1.33, "feet"),
  22293. name: "Dick (Equine)",
  22294. image: {
  22295. source: "./media/characters/artemis/dick-equine.svg"
  22296. },
  22297. form: "oversize-load"
  22298. },
  22299. dickExoticBigger: {
  22300. height: math.unit(0.85 * 1.33, "feet"),
  22301. name: "Dick (Exotic)",
  22302. image: {
  22303. source: "./media/characters/artemis/dick-exotic.svg"
  22304. },
  22305. form: "oversize-load"
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(7.5, "feet"),
  22312. form: "work-safe",
  22313. default: true
  22314. },
  22315. {
  22316. name: "Normal",
  22317. height: math.unit(7.5, "feet"),
  22318. form: "calibrating",
  22319. default: true
  22320. },
  22321. {
  22322. name: "Normal",
  22323. height: math.unit(7.5, "feet"),
  22324. form: "oversize-load",
  22325. default: true
  22326. },
  22327. {
  22328. name: "Enlarged",
  22329. height: math.unit(12, "feet"),
  22330. form: "work-safe",
  22331. },
  22332. {
  22333. name: "Enlarged",
  22334. height: math.unit(12, "feet"),
  22335. form: "calibrating",
  22336. },
  22337. {
  22338. name: "Enlarged",
  22339. height: math.unit(12, "feet"),
  22340. form: "oversize-load",
  22341. },
  22342. ],
  22343. {
  22344. "work-safe": {
  22345. name: "Work-Safe",
  22346. default: true
  22347. },
  22348. "calibrating": {
  22349. name: "Calibrating"
  22350. },
  22351. "oversize-load": {
  22352. name: "Oversize Load"
  22353. }
  22354. }
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22358. {
  22359. front: {
  22360. height: math.unit(5 + 3 / 12, "feet"),
  22361. weight: math.unit(160, "lb"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/kira/front.svg",
  22365. extra: 906 / 786,
  22366. bottom: 0.01
  22367. }
  22368. },
  22369. back: {
  22370. height: math.unit(5 + 3 / 12, "feet"),
  22371. weight: math.unit(160, "lb"),
  22372. name: "Back",
  22373. image: {
  22374. source: "./media/characters/kira/back.svg",
  22375. extra: 882 / 757,
  22376. bottom: 0.005
  22377. }
  22378. },
  22379. frontDressed: {
  22380. height: math.unit(5 + 3 / 12, "feet"),
  22381. weight: math.unit(160, "lb"),
  22382. name: "Front (Dressed)",
  22383. image: {
  22384. source: "./media/characters/kira/front-dressed.svg",
  22385. extra: 906 / 786,
  22386. bottom: 0.01
  22387. }
  22388. },
  22389. beans: {
  22390. height: math.unit(0.92, "feet"),
  22391. name: "Beans",
  22392. image: {
  22393. source: "./media/characters/kira/beans.svg"
  22394. }
  22395. },
  22396. },
  22397. [
  22398. {
  22399. name: "Normal",
  22400. height: math.unit(5 + 3 / 12, "feet"),
  22401. default: true
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22407. {
  22408. front: {
  22409. height: math.unit(5 + 4 / 12, "feet"),
  22410. weight: math.unit(145, "lb"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/scramble/front.svg",
  22414. extra: 763 / 727,
  22415. bottom: 0.05
  22416. }
  22417. },
  22418. back: {
  22419. height: math.unit(5 + 4 / 12, "feet"),
  22420. weight: math.unit(145, "lb"),
  22421. name: "Back",
  22422. image: {
  22423. source: "./media/characters/scramble/back.svg",
  22424. extra: 826 / 737,
  22425. bottom: 0.002
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(5 + 4 / 12, "feet"),
  22433. default: true
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22439. {
  22440. side: {
  22441. height: math.unit(6 + 2 / 12, "feet"),
  22442. weight: math.unit(190, "lb"),
  22443. name: "Side",
  22444. image: {
  22445. source: "./media/characters/biscuit/side.svg",
  22446. extra: 858 / 791,
  22447. bottom: 0.044
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Normal",
  22454. height: math.unit(6 + 2 / 12, "feet"),
  22455. default: true
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(5 + 2 / 12, "feet"),
  22464. weight: math.unit(120, "lb"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/poffin/front.svg",
  22468. extra: 786 / 680,
  22469. bottom: 0.005
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Normal",
  22476. height: math.unit(5 + 2 / 12, "feet"),
  22477. default: true
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22483. {
  22484. front: {
  22485. height: math.unit(6 + 3 / 12, "feet"),
  22486. weight: math.unit(519, "lb"),
  22487. name: "Front",
  22488. image: {
  22489. source: "./media/characters/dhari/front.svg",
  22490. extra: 1048 / 946,
  22491. bottom: 0.015
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(6 + 3 / 12, "feet"),
  22496. weight: math.unit(519, "lb"),
  22497. name: "Back",
  22498. image: {
  22499. source: "./media/characters/dhari/back.svg",
  22500. extra: 1048 / 931,
  22501. bottom: 0.005
  22502. }
  22503. },
  22504. frontDressed: {
  22505. height: math.unit(6 + 3 / 12, "feet"),
  22506. weight: math.unit(519, "lb"),
  22507. name: "Front (Dressed)",
  22508. image: {
  22509. source: "./media/characters/dhari/front-dressed.svg",
  22510. extra: 1713 / 1546,
  22511. bottom: 0.02
  22512. }
  22513. },
  22514. backDressed: {
  22515. height: math.unit(6 + 3 / 12, "feet"),
  22516. weight: math.unit(519, "lb"),
  22517. name: "Back (Dressed)",
  22518. image: {
  22519. source: "./media/characters/dhari/back-dressed.svg",
  22520. extra: 1699 / 1537,
  22521. bottom: 0.01
  22522. }
  22523. },
  22524. maw: {
  22525. height: math.unit(0.95, "feet"),
  22526. name: "Maw",
  22527. image: {
  22528. source: "./media/characters/dhari/maw.svg"
  22529. }
  22530. },
  22531. wereFront: {
  22532. height: math.unit(12 + 8 / 12, "feet"),
  22533. weight: math.unit(4000, "lb"),
  22534. name: "Front (Were)",
  22535. image: {
  22536. source: "./media/characters/dhari/were-front.svg",
  22537. extra: 1065 / 969,
  22538. bottom: 0.015
  22539. }
  22540. },
  22541. wereBack: {
  22542. height: math.unit(12 + 8 / 12, "feet"),
  22543. weight: math.unit(4000, "lb"),
  22544. name: "Back (Were)",
  22545. image: {
  22546. source: "./media/characters/dhari/were-back.svg",
  22547. extra: 1065 / 969,
  22548. bottom: 0.012
  22549. }
  22550. },
  22551. wereMaw: {
  22552. height: math.unit(0.625, "meters"),
  22553. name: "Maw (Were)",
  22554. image: {
  22555. source: "./media/characters/dhari/were-maw.svg"
  22556. }
  22557. },
  22558. },
  22559. [
  22560. {
  22561. name: "Normal",
  22562. height: math.unit(6 + 3 / 12, "feet"),
  22563. default: true
  22564. },
  22565. ]
  22566. ))
  22567. characterMakers.push(() => makeCharacter(
  22568. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22569. {
  22570. anthro: {
  22571. height: math.unit(5 + 7 / 12, "feet"),
  22572. weight: math.unit(175, "lb"),
  22573. name: "Anthro",
  22574. image: {
  22575. source: "./media/characters/rena-dyne/anthro.svg",
  22576. extra: 1849 / 1785,
  22577. bottom: 0.005
  22578. }
  22579. },
  22580. taur: {
  22581. height: math.unit(15 + 6 / 12, "feet"),
  22582. weight: math.unit(8000, "lb"),
  22583. name: "Taur",
  22584. image: {
  22585. source: "./media/characters/rena-dyne/taur.svg",
  22586. extra: 2315 / 2234,
  22587. bottom: 0.033
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(5 + 7 / 12, "feet"),
  22595. default: true
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22601. {
  22602. front: {
  22603. height: math.unit(8, "feet"),
  22604. weight: math.unit(600, "lb"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/weremeep/front.svg",
  22608. extra: 970/849,
  22609. bottom: 7/977
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Normal",
  22616. height: math.unit(8, "feet"),
  22617. default: true
  22618. },
  22619. {
  22620. name: "Lorg",
  22621. height: math.unit(12, "feet")
  22622. },
  22623. {
  22624. name: "Oh Lawd She Comin'",
  22625. height: math.unit(20, "feet")
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22631. {
  22632. front: {
  22633. height: math.unit(4, "feet"),
  22634. weight: math.unit(90, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/reza/front.svg",
  22638. extra: 1183 / 1111,
  22639. bottom: 0.017
  22640. }
  22641. },
  22642. back: {
  22643. height: math.unit(4, "feet"),
  22644. weight: math.unit(90, "lb"),
  22645. name: "Back",
  22646. image: {
  22647. source: "./media/characters/reza/back.svg",
  22648. extra: 1183 / 1111,
  22649. bottom: 0.01
  22650. }
  22651. },
  22652. drake: {
  22653. height: math.unit(30, "feet"),
  22654. weight: math.unit(246960, "lb"),
  22655. name: "Drake",
  22656. image: {
  22657. source: "./media/characters/reza/drake.svg",
  22658. extra: 2350 / 2024,
  22659. bottom: 60.7 / 2403
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(4, "feet"),
  22667. default: true
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22673. {
  22674. side: {
  22675. height: math.unit(15, "feet"),
  22676. weight: math.unit(14, "tons"),
  22677. name: "Side",
  22678. image: {
  22679. source: "./media/characters/athea/side.svg",
  22680. extra: 960 / 540,
  22681. bottom: 0.003
  22682. }
  22683. },
  22684. sitting: {
  22685. height: math.unit(6 * 2.85, "feet"),
  22686. weight: math.unit(14, "tons"),
  22687. name: "Sitting",
  22688. image: {
  22689. source: "./media/characters/athea/sitting.svg",
  22690. extra: 621 / 581,
  22691. bottom: 0.075
  22692. }
  22693. },
  22694. maw: {
  22695. height: math.unit(7.59498031496063, "feet"),
  22696. name: "Maw",
  22697. image: {
  22698. source: "./media/characters/athea/maw.svg"
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Lap Cat",
  22705. height: math.unit(2.5, "feet")
  22706. },
  22707. {
  22708. name: "Minimacro",
  22709. height: math.unit(15, "feet"),
  22710. default: true
  22711. },
  22712. {
  22713. name: "Macro",
  22714. height: math.unit(120, "feet")
  22715. },
  22716. {
  22717. name: "Macro+",
  22718. height: math.unit(640, "feet")
  22719. },
  22720. {
  22721. name: "Colossus",
  22722. height: math.unit(2.2, "miles")
  22723. },
  22724. ]
  22725. ))
  22726. characterMakers.push(() => makeCharacter(
  22727. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22728. {
  22729. front: {
  22730. height: math.unit(8 + 8 / 12, "feet"),
  22731. weight: math.unit(130, "kg"),
  22732. name: "Front",
  22733. image: {
  22734. source: "./media/characters/seroko/front.svg",
  22735. extra: 1385 / 1280,
  22736. bottom: 0.025
  22737. }
  22738. },
  22739. back: {
  22740. height: math.unit(8 + 8 / 12, "feet"),
  22741. weight: math.unit(130, "kg"),
  22742. name: "Back",
  22743. image: {
  22744. source: "./media/characters/seroko/back.svg",
  22745. extra: 1369 / 1238,
  22746. bottom: 0.018
  22747. }
  22748. },
  22749. frontDressed: {
  22750. height: math.unit(8 + 8 / 12, "feet"),
  22751. weight: math.unit(130, "kg"),
  22752. name: "Front (Dressed)",
  22753. image: {
  22754. source: "./media/characters/seroko/front-dressed.svg",
  22755. extra: 1366 / 1275,
  22756. bottom: 0.03
  22757. }
  22758. },
  22759. },
  22760. [
  22761. {
  22762. name: "Normal",
  22763. height: math.unit(8 + 8 / 12, "feet"),
  22764. default: true
  22765. },
  22766. ]
  22767. ))
  22768. characterMakers.push(() => makeCharacter(
  22769. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22770. {
  22771. front: {
  22772. height: math.unit(5.5, "feet"),
  22773. weight: math.unit(160, "lb"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/quatzi/front.svg",
  22777. extra: 2346 / 2242,
  22778. bottom: 0.015
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Normal",
  22785. height: math.unit(5.5, "feet"),
  22786. default: true
  22787. },
  22788. {
  22789. name: "Big",
  22790. height: math.unit(7.7, "feet")
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(5 + 11 / 12, "feet"),
  22799. weight: math.unit(180, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/sen/front.svg",
  22803. extra: 1321 / 1254,
  22804. bottom: 0.015
  22805. }
  22806. },
  22807. side: {
  22808. height: math.unit(5 + 11 / 12, "feet"),
  22809. weight: math.unit(180, "lb"),
  22810. name: "Side",
  22811. image: {
  22812. source: "./media/characters/sen/side.svg",
  22813. extra: 1321 / 1254,
  22814. bottom: 0.007
  22815. }
  22816. },
  22817. back: {
  22818. height: math.unit(5 + 11 / 12, "feet"),
  22819. weight: math.unit(180, "lb"),
  22820. name: "Back",
  22821. image: {
  22822. source: "./media/characters/sen/back.svg",
  22823. extra: 1321 / 1254
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(5 + 11 / 12, "feet"),
  22831. default: true
  22832. },
  22833. ]
  22834. ))
  22835. characterMakers.push(() => makeCharacter(
  22836. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22837. {
  22838. front: {
  22839. height: math.unit(166.6, "cm"),
  22840. weight: math.unit(66.6, "kg"),
  22841. name: "Front",
  22842. image: {
  22843. source: "./media/characters/fruity/front.svg",
  22844. extra: 1510 / 1386,
  22845. bottom: 0.04
  22846. }
  22847. },
  22848. back: {
  22849. height: math.unit(166.6, "cm"),
  22850. weight: math.unit(66.6, "lb"),
  22851. name: "Back",
  22852. image: {
  22853. source: "./media/characters/fruity/back.svg",
  22854. extra: 1563 / 1435,
  22855. bottom: 0.005
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(166.6, "cm"),
  22863. default: true
  22864. },
  22865. {
  22866. name: "Demonic",
  22867. height: math.unit(166.6, "feet")
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22873. {
  22874. side: {
  22875. height: math.unit(10, "feet"),
  22876. weight: math.unit(500, "lb"),
  22877. name: "Side",
  22878. image: {
  22879. source: "./media/characters/zost/side.svg",
  22880. extra: 2870/2533,
  22881. bottom: 252/3122
  22882. }
  22883. },
  22884. mawFront: {
  22885. height: math.unit(1.08, "meters"),
  22886. name: "Maw (Front)",
  22887. image: {
  22888. source: "./media/characters/zost/maw-front.svg"
  22889. }
  22890. },
  22891. mawSide: {
  22892. height: math.unit(2.66, "feet"),
  22893. name: "Maw (Side)",
  22894. image: {
  22895. source: "./media/characters/zost/maw-side.svg"
  22896. }
  22897. },
  22898. wingspan: {
  22899. height: math.unit(7.4, "feet"),
  22900. name: "Wingspan",
  22901. image: {
  22902. source: "./media/characters/zost/wingspan.svg"
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(10, "feet"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(5 + 4 / 12, "feet"),
  22919. weight: math.unit(120, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/luci/front.svg",
  22923. extra: 1985 / 1884,
  22924. bottom: 0.04
  22925. }
  22926. },
  22927. back: {
  22928. height: math.unit(5 + 4 / 12, "feet"),
  22929. weight: math.unit(120, "lb"),
  22930. name: "Back",
  22931. image: {
  22932. source: "./media/characters/luci/back.svg",
  22933. extra: 1892 / 1791,
  22934. bottom: 0.002
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(5 + 4 / 12, "feet"),
  22942. default: true
  22943. },
  22944. ]
  22945. ))
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22948. {
  22949. front: {
  22950. height: math.unit(1500, "feet"),
  22951. weight: math.unit(3.8e6, "tons"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/2th/front.svg",
  22955. extra: 3489 / 3350,
  22956. bottom: 0.1
  22957. }
  22958. },
  22959. foot: {
  22960. height: math.unit(461, "feet"),
  22961. name: "Foot",
  22962. image: {
  22963. source: "./media/characters/2th/foot.svg"
  22964. }
  22965. },
  22966. },
  22967. [
  22968. {
  22969. name: "\"Micro\"",
  22970. height: math.unit(15 + 7 / 12, "feet")
  22971. },
  22972. {
  22973. name: "Normal",
  22974. height: math.unit(1500, "feet"),
  22975. default: true
  22976. },
  22977. {
  22978. name: "Macro",
  22979. height: math.unit(5000, "feet")
  22980. },
  22981. {
  22982. name: "Megamacro",
  22983. height: math.unit(15, "miles")
  22984. },
  22985. {
  22986. name: "Gigamacro",
  22987. height: math.unit(4000, "miles")
  22988. },
  22989. {
  22990. name: "Galactic",
  22991. height: math.unit(50, "AU")
  22992. },
  22993. ]
  22994. ))
  22995. characterMakers.push(() => makeCharacter(
  22996. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22997. {
  22998. front: {
  22999. height: math.unit(5 + 6 / 12, "feet"),
  23000. weight: math.unit(220, "lb"),
  23001. name: "Front",
  23002. image: {
  23003. source: "./media/characters/amethyst/front.svg",
  23004. extra: 2078 / 2040,
  23005. bottom: 0.045
  23006. }
  23007. },
  23008. back: {
  23009. height: math.unit(5 + 6 / 12, "feet"),
  23010. weight: math.unit(220, "lb"),
  23011. name: "Back",
  23012. image: {
  23013. source: "./media/characters/amethyst/back.svg",
  23014. extra: 2021 / 1989,
  23015. bottom: 0.02
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(5 + 6 / 12, "feet"),
  23023. default: true
  23024. },
  23025. ]
  23026. ))
  23027. characterMakers.push(() => makeCharacter(
  23028. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23029. {
  23030. front: {
  23031. height: math.unit(4 + 11 / 12, "feet"),
  23032. weight: math.unit(120, "lb"),
  23033. name: "Front",
  23034. image: {
  23035. source: "./media/characters/yumi-akiyama/front.svg",
  23036. extra: 1327 / 1235,
  23037. bottom: 0.02
  23038. }
  23039. },
  23040. back: {
  23041. height: math.unit(4 + 11 / 12, "feet"),
  23042. weight: math.unit(120, "lb"),
  23043. name: "Back",
  23044. image: {
  23045. source: "./media/characters/yumi-akiyama/back.svg",
  23046. extra: 1287 / 1245,
  23047. bottom: 0.002
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Galactic",
  23054. height: math.unit(50, "galaxies"),
  23055. default: true
  23056. },
  23057. {
  23058. name: "Universal",
  23059. height: math.unit(100, "universes")
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(8, "feet"),
  23068. weight: math.unit(500, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/rifter-yrmori/front.svg",
  23072. extra: 1180 / 1125,
  23073. bottom: 0.02
  23074. }
  23075. },
  23076. back: {
  23077. height: math.unit(8, "feet"),
  23078. weight: math.unit(500, "lb"),
  23079. name: "Back",
  23080. image: {
  23081. source: "./media/characters/rifter-yrmori/back.svg",
  23082. extra: 1190 / 1145,
  23083. bottom: 0.001
  23084. }
  23085. },
  23086. wings: {
  23087. height: math.unit(7.75, "feet"),
  23088. weight: math.unit(500, "lb"),
  23089. name: "Wings",
  23090. image: {
  23091. source: "./media/characters/rifter-yrmori/wings.svg",
  23092. extra: 1357 / 1285
  23093. }
  23094. },
  23095. maw: {
  23096. height: math.unit(0.8, "feet"),
  23097. name: "Maw",
  23098. image: {
  23099. source: "./media/characters/rifter-yrmori/maw.svg"
  23100. }
  23101. },
  23102. mawfront: {
  23103. height: math.unit(1.45, "feet"),
  23104. name: "Maw (Front)",
  23105. image: {
  23106. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Normal",
  23113. height: math.unit(8, "feet"),
  23114. default: true
  23115. },
  23116. {
  23117. name: "Macro",
  23118. height: math.unit(42, "meters")
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23124. {
  23125. were: {
  23126. height: math.unit(25 + 6 / 12, "feet"),
  23127. weight: math.unit(10000, "lb"),
  23128. name: "Were",
  23129. image: {
  23130. source: "./media/characters/tahajin/were.svg",
  23131. extra: 801 / 770,
  23132. bottom: 0.042
  23133. }
  23134. },
  23135. aquatic: {
  23136. height: math.unit(6 + 4 / 12, "feet"),
  23137. weight: math.unit(160, "lb"),
  23138. name: "Aquatic",
  23139. image: {
  23140. source: "./media/characters/tahajin/aquatic.svg",
  23141. extra: 572 / 542,
  23142. bottom: 0.04
  23143. }
  23144. },
  23145. chow: {
  23146. height: math.unit(8 + 11 / 12, "feet"),
  23147. weight: math.unit(450, "lb"),
  23148. name: "Chow",
  23149. image: {
  23150. source: "./media/characters/tahajin/chow.svg",
  23151. extra: 660 / 640,
  23152. bottom: 0.015
  23153. }
  23154. },
  23155. demiNaga: {
  23156. height: math.unit(6 + 8 / 12, "feet"),
  23157. weight: math.unit(300, "lb"),
  23158. name: "Demi Naga",
  23159. image: {
  23160. source: "./media/characters/tahajin/demi-naga.svg",
  23161. extra: 643 / 615,
  23162. bottom: 0.1
  23163. }
  23164. },
  23165. data: {
  23166. height: math.unit(5, "inches"),
  23167. weight: math.unit(0.1, "lb"),
  23168. name: "Data",
  23169. image: {
  23170. source: "./media/characters/tahajin/data.svg"
  23171. }
  23172. },
  23173. fluu: {
  23174. height: math.unit(5 + 7 / 12, "feet"),
  23175. weight: math.unit(140, "lb"),
  23176. name: "Fluu",
  23177. image: {
  23178. source: "./media/characters/tahajin/fluu.svg",
  23179. extra: 628 / 592,
  23180. bottom: 0.02
  23181. }
  23182. },
  23183. starWarrior: {
  23184. height: math.unit(4 + 5 / 12, "feet"),
  23185. weight: math.unit(50, "lb"),
  23186. name: "Star Warrior",
  23187. image: {
  23188. source: "./media/characters/tahajin/star-warrior.svg"
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Normal",
  23195. height: math.unit(25 + 6 / 12, "feet"),
  23196. default: true
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23202. {
  23203. front: {
  23204. height: math.unit(8, "feet"),
  23205. weight: math.unit(350, "lb"),
  23206. name: "Front",
  23207. image: {
  23208. source: "./media/characters/gabira/front.svg",
  23209. extra: 1261/1154,
  23210. bottom: 51/1312
  23211. }
  23212. },
  23213. back: {
  23214. height: math.unit(8, "feet"),
  23215. weight: math.unit(350, "lb"),
  23216. name: "Back",
  23217. image: {
  23218. source: "./media/characters/gabira/back.svg",
  23219. extra: 1265/1163,
  23220. bottom: 46/1311
  23221. }
  23222. },
  23223. head: {
  23224. height: math.unit(2.85, "feet"),
  23225. name: "Head",
  23226. image: {
  23227. source: "./media/characters/gabira/head.svg"
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(8, "feet"),
  23235. default: true
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(5 + 3 / 12, "feet"),
  23244. weight: math.unit(137, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/sasha-katraine/front.svg",
  23248. extra: 1745/1694,
  23249. bottom: 37/1782
  23250. }
  23251. },
  23252. back: {
  23253. height: math.unit(5 + 3 / 12, "feet"),
  23254. weight: math.unit(137, "lb"),
  23255. name: "Back",
  23256. image: {
  23257. source: "./media/characters/sasha-katraine/back.svg",
  23258. extra: 1776/1699,
  23259. bottom: 26/1802
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Micro",
  23266. height: math.unit(5, "inches")
  23267. },
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(5 + 3 / 12, "feet"),
  23271. default: true
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23277. {
  23278. side: {
  23279. height: math.unit(4, "inches"),
  23280. weight: math.unit(200, "grams"),
  23281. name: "Side",
  23282. image: {
  23283. source: "./media/characters/der/side.svg",
  23284. extra: 719 / 400,
  23285. bottom: 30.6 / 749.9187
  23286. }
  23287. },
  23288. },
  23289. [
  23290. {
  23291. name: "Micro",
  23292. height: math.unit(4, "inches"),
  23293. default: true
  23294. },
  23295. ]
  23296. ))
  23297. characterMakers.push(() => makeCharacter(
  23298. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23299. {
  23300. side: {
  23301. height: math.unit(30, "meters"),
  23302. weight: math.unit(700, "tonnes"),
  23303. name: "Side",
  23304. image: {
  23305. source: "./media/characters/fixerdragon/side.svg",
  23306. extra: (1293.0514 - 116.03) / 1106.86,
  23307. bottom: 116.03 / 1293.0514
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Planck",
  23314. height: math.unit(1.6e-35, "meters")
  23315. },
  23316. {
  23317. name: "Micro",
  23318. height: math.unit(0.4, "meters")
  23319. },
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(30, "meters"),
  23323. default: true
  23324. },
  23325. {
  23326. name: "Megamacro",
  23327. height: math.unit(1.2, "megameters")
  23328. },
  23329. {
  23330. name: "Teramacro",
  23331. height: math.unit(130, "terameters")
  23332. },
  23333. {
  23334. name: "Yottamacro",
  23335. height: math.unit(6200, "yottameters")
  23336. },
  23337. ]
  23338. ));
  23339. characterMakers.push(() => makeCharacter(
  23340. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23341. {
  23342. front: {
  23343. height: math.unit(8, "feet"),
  23344. weight: math.unit(250, "lb"),
  23345. name: "Front",
  23346. image: {
  23347. source: "./media/characters/kite/front.svg",
  23348. extra: 2796 / 2659,
  23349. bottom: 0.002
  23350. }
  23351. },
  23352. },
  23353. [
  23354. {
  23355. name: "Normal",
  23356. height: math.unit(8, "feet"),
  23357. default: true
  23358. },
  23359. {
  23360. name: "Macro",
  23361. height: math.unit(360, "feet")
  23362. },
  23363. {
  23364. name: "Megamacro",
  23365. height: math.unit(1500, "feet")
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23371. {
  23372. front: {
  23373. height: math.unit(5 + 11/12, "feet"),
  23374. weight: math.unit(170, "lb"),
  23375. name: "Front",
  23376. image: {
  23377. source: "./media/characters/poojawa-vynar/front.svg",
  23378. extra: 1735/1585,
  23379. bottom: 96/1831
  23380. }
  23381. },
  23382. back: {
  23383. height: math.unit(5 + 11/12, "feet"),
  23384. weight: math.unit(170, "lb"),
  23385. name: "Back",
  23386. image: {
  23387. source: "./media/characters/poojawa-vynar/back.svg",
  23388. extra: 1749/1607,
  23389. bottom: 28/1777
  23390. }
  23391. },
  23392. male: {
  23393. height: math.unit(5 + 11/12, "feet"),
  23394. weight: math.unit(170, "lb"),
  23395. name: "Male",
  23396. image: {
  23397. source: "./media/characters/poojawa-vynar/male.svg",
  23398. extra: 1855/1713,
  23399. bottom: 63/1918
  23400. }
  23401. },
  23402. taur: {
  23403. height: math.unit(5 + 11/12, "feet"),
  23404. weight: math.unit(170, "lb"),
  23405. name: "Taur",
  23406. image: {
  23407. source: "./media/characters/poojawa-vynar/taur.svg",
  23408. extra: 1151/1059,
  23409. bottom: 356/1507
  23410. }
  23411. },
  23412. frontDressed: {
  23413. height: math.unit(5 + 11/12, "feet"),
  23414. weight: math.unit(170, "lb"),
  23415. name: "Front (Dressed)",
  23416. image: {
  23417. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23418. extra: 1735/1585,
  23419. bottom: 96/1831
  23420. }
  23421. },
  23422. backDressed: {
  23423. height: math.unit(5 + 11/12, "feet"),
  23424. weight: math.unit(170, "lb"),
  23425. name: "Back (Dressed)",
  23426. image: {
  23427. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23428. extra: 1749/1607,
  23429. bottom: 28/1777
  23430. }
  23431. },
  23432. maleDressed: {
  23433. height: math.unit(5 + 11/12, "feet"),
  23434. weight: math.unit(170, "lb"),
  23435. name: "Male (Dressed)",
  23436. image: {
  23437. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23438. extra: 1855/1713,
  23439. bottom: 63/1918
  23440. }
  23441. },
  23442. taurDressed: {
  23443. height: math.unit(5 + 11/12, "feet"),
  23444. weight: math.unit(170, "lb"),
  23445. name: "Taur (Dressed)",
  23446. image: {
  23447. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23448. extra: 1151/1059,
  23449. bottom: 356/1507
  23450. }
  23451. },
  23452. maw: {
  23453. height: math.unit(1.46, "feet"),
  23454. name: "Maw",
  23455. image: {
  23456. source: "./media/characters/poojawa-vynar/maw.svg"
  23457. }
  23458. },
  23459. head: {
  23460. height: math.unit(2.34, "feet"),
  23461. name: "Head",
  23462. image: {
  23463. source: "./media/characters/poojawa-vynar/head.svg"
  23464. }
  23465. },
  23466. paw: {
  23467. height: math.unit(1.61, "feet"),
  23468. name: "Paw",
  23469. image: {
  23470. source: "./media/characters/poojawa-vynar/paw.svg"
  23471. }
  23472. },
  23473. pawToering: {
  23474. height: math.unit(1.72, "feet"),
  23475. name: "Paw (Toering)",
  23476. image: {
  23477. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23478. }
  23479. },
  23480. toering: {
  23481. height: math.unit(2.9, "inches"),
  23482. name: "Toering",
  23483. image: {
  23484. source: "./media/characters/poojawa-vynar/toering.svg"
  23485. }
  23486. },
  23487. shaft: {
  23488. height: math.unit(0.625, "feet"),
  23489. name: "Shaft",
  23490. image: {
  23491. source: "./media/characters/poojawa-vynar/shaft.svg"
  23492. }
  23493. },
  23494. spade: {
  23495. height: math.unit(0.42, "feet"),
  23496. name: "Spade",
  23497. image: {
  23498. source: "./media/characters/poojawa-vynar/spade.svg"
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Shortstack",
  23505. height: math.unit(4, "feet")
  23506. },
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(5 + 11 / 12, "feet"),
  23510. default: true
  23511. },
  23512. {
  23513. name: "Tauric",
  23514. height: math.unit(4, "meters")
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(293, "meters"),
  23523. weight: math.unit(70400, "tons"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/violette/front.svg",
  23527. extra: 1227 / 1180,
  23528. bottom: 0.005
  23529. }
  23530. },
  23531. back: {
  23532. height: math.unit(293, "meters"),
  23533. weight: math.unit(70400, "tons"),
  23534. name: "Back",
  23535. image: {
  23536. source: "./media/characters/violette/back.svg",
  23537. extra: 1227 / 1180,
  23538. bottom: 0.005
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Macro",
  23545. height: math.unit(293, "meters"),
  23546. default: true
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(1050, "feet"),
  23555. weight: math.unit(200000, "tons"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/alessandra/front.svg",
  23559. extra: 960 / 912,
  23560. bottom: 0.06
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Macro",
  23567. height: math.unit(1050, "feet")
  23568. },
  23569. {
  23570. name: "Macro+",
  23571. height: math.unit(900, "meters"),
  23572. default: true
  23573. },
  23574. ]
  23575. ))
  23576. characterMakers.push(() => makeCharacter(
  23577. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23578. {
  23579. front: {
  23580. height: math.unit(5, "feet"),
  23581. weight: math.unit(187, "lb"),
  23582. name: "Front",
  23583. image: {
  23584. source: "./media/characters/person/front.svg",
  23585. extra: 3087 / 2945,
  23586. bottom: 91 / 3181
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Micro",
  23593. height: math.unit(3, "inches")
  23594. },
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(5, "feet"),
  23598. default: true
  23599. },
  23600. {
  23601. name: "Macro",
  23602. height: math.unit(90, "feet")
  23603. },
  23604. {
  23605. name: "Max Size",
  23606. height: math.unit(280, "feet")
  23607. },
  23608. ]
  23609. ))
  23610. characterMakers.push(() => makeCharacter(
  23611. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23612. {
  23613. front: {
  23614. height: math.unit(4.5, "meters"),
  23615. weight: math.unit(3200, "lb"),
  23616. name: "Front",
  23617. image: {
  23618. source: "./media/characters/ty/front.svg",
  23619. extra: 1038 / 960,
  23620. bottom: 31.156 / 1068
  23621. }
  23622. },
  23623. back: {
  23624. height: math.unit(4.5, "meters"),
  23625. weight: math.unit(3200, "lb"),
  23626. name: "Back",
  23627. image: {
  23628. source: "./media/characters/ty/back.svg",
  23629. extra: 1044 / 966,
  23630. bottom: 7.48 / 1049
  23631. }
  23632. },
  23633. },
  23634. [
  23635. {
  23636. name: "Normal",
  23637. height: math.unit(4.5, "meters"),
  23638. default: true
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23644. {
  23645. front: {
  23646. height: math.unit(5 + 4 / 12, "feet"),
  23647. weight: math.unit(115, "lb"),
  23648. name: "Front",
  23649. image: {
  23650. source: "./media/characters/rocky/front.svg",
  23651. extra: 1012 / 975,
  23652. bottom: 54 / 1066
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Normal",
  23659. height: math.unit(5 + 4 / 12, "feet"),
  23660. default: true
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23666. {
  23667. upright: {
  23668. height: math.unit(6, "meters"),
  23669. weight: math.unit(4000, "kg"),
  23670. name: "Upright",
  23671. image: {
  23672. source: "./media/characters/ruin/upright.svg",
  23673. extra: 668 / 661,
  23674. bottom: 42 / 799.8396
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Normal",
  23681. height: math.unit(6, "meters"),
  23682. default: true
  23683. },
  23684. ]
  23685. ))
  23686. characterMakers.push(() => makeCharacter(
  23687. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23688. {
  23689. front: {
  23690. height: math.unit(5, "feet"),
  23691. weight: math.unit(106, "lb"),
  23692. name: "Front",
  23693. image: {
  23694. source: "./media/characters/robin/front.svg",
  23695. extra: 862 / 799,
  23696. bottom: 42.4 / 914.8856
  23697. }
  23698. },
  23699. },
  23700. [
  23701. {
  23702. name: "Normal",
  23703. height: math.unit(5, "feet"),
  23704. default: true
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23710. {
  23711. side: {
  23712. height: math.unit(3, "feet"),
  23713. weight: math.unit(225, "lb"),
  23714. name: "Side",
  23715. image: {
  23716. source: "./media/characters/saian/side.svg",
  23717. extra: 566 / 356,
  23718. bottom: 79.7 / 643
  23719. }
  23720. },
  23721. maw: {
  23722. height: math.unit(2.85, "feet"),
  23723. name: "Maw",
  23724. image: {
  23725. source: "./media/characters/saian/maw.svg"
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Normal",
  23732. height: math.unit(3, "feet"),
  23733. default: true
  23734. },
  23735. ]
  23736. ))
  23737. characterMakers.push(() => makeCharacter(
  23738. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23739. {
  23740. side: {
  23741. height: math.unit(8, "feet"),
  23742. weight: math.unit(300, "lb"),
  23743. name: "Side",
  23744. image: {
  23745. source: "./media/characters/equus-silvermane/side.svg",
  23746. extra: 2176 / 2050,
  23747. bottom: 65.7 / 2245
  23748. }
  23749. },
  23750. front: {
  23751. height: math.unit(8, "feet"),
  23752. weight: math.unit(300, "lb"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/equus-silvermane/front.svg",
  23756. extra: 4633 / 4400,
  23757. bottom: 71.3 / 4706.915
  23758. }
  23759. },
  23760. sideStepping: {
  23761. height: math.unit(8, "feet"),
  23762. weight: math.unit(300, "lb"),
  23763. name: "Side (Stepping)",
  23764. image: {
  23765. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23766. extra: 1968 / 1860,
  23767. bottom: 16.4 / 1989
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(8, "feet")
  23775. },
  23776. {
  23777. name: "Minimacro",
  23778. height: math.unit(75, "feet"),
  23779. default: true
  23780. },
  23781. {
  23782. name: "Macro",
  23783. height: math.unit(150, "feet")
  23784. },
  23785. {
  23786. name: "Macro+",
  23787. height: math.unit(1000, "feet")
  23788. },
  23789. {
  23790. name: "Megamacro",
  23791. height: math.unit(1, "mile")
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23797. {
  23798. side: {
  23799. height: math.unit(20, "feet"),
  23800. weight: math.unit(30000, "kg"),
  23801. name: "Side",
  23802. image: {
  23803. source: "./media/characters/windar/side.svg",
  23804. extra: 1491 / 1248,
  23805. bottom: 82.56 / 1568
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Normal",
  23812. height: math.unit(20, "feet"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23819. {
  23820. side: {
  23821. height: math.unit(15.66, "feet"),
  23822. weight: math.unit(150, "lb"),
  23823. name: "Side",
  23824. image: {
  23825. source: "./media/characters/melody/side.svg",
  23826. extra: 1097 / 944,
  23827. bottom: 11.8 / 1109
  23828. }
  23829. },
  23830. sideOutfit: {
  23831. height: math.unit(15.66, "feet"),
  23832. weight: math.unit(150, "lb"),
  23833. name: "Side (Outfit)",
  23834. image: {
  23835. source: "./media/characters/melody/side-outfit.svg",
  23836. extra: 1097 / 944,
  23837. bottom: 11.8 / 1109
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Normal",
  23844. height: math.unit(15.66, "feet"),
  23845. default: true
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23851. {
  23852. armoredFront: {
  23853. height: math.unit(8, "feet"),
  23854. weight: math.unit(325, "lb"),
  23855. name: "Front",
  23856. image: {
  23857. source: "./media/characters/windera/armored-front.svg",
  23858. extra: 1830/1598,
  23859. bottom: 151/1981
  23860. },
  23861. form: "armored",
  23862. default: true
  23863. },
  23864. macroFront: {
  23865. height: math.unit(70, "feet"),
  23866. weight: math.unit(315453, "lb"),
  23867. name: "Front",
  23868. image: {
  23869. source: "./media/characters/windera/macro-front.svg",
  23870. extra: 963/883,
  23871. bottom: 23/986
  23872. },
  23873. form: "macro",
  23874. default: true
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(8, "feet"),
  23881. default: true,
  23882. form: "armored"
  23883. },
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(70, "feet"),
  23887. default: true,
  23888. form: "macro"
  23889. },
  23890. ],
  23891. {
  23892. "armored": {
  23893. name: "Armored",
  23894. default: true
  23895. },
  23896. "macro": {
  23897. name: "Macro",
  23898. },
  23899. }
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23903. {
  23904. front: {
  23905. height: math.unit(28.75, "feet"),
  23906. weight: math.unit(2000, "kg"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/sonear/front.svg",
  23910. extra: 1041.1 / 964.9,
  23911. bottom: 53.7 / 1096.6
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Normal",
  23918. height: math.unit(28.75, "feet"),
  23919. default: true
  23920. },
  23921. ]
  23922. ))
  23923. characterMakers.push(() => makeCharacter(
  23924. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23925. {
  23926. side: {
  23927. height: math.unit(25.5, "feet"),
  23928. weight: math.unit(23000, "kg"),
  23929. name: "Side",
  23930. image: {
  23931. source: "./media/characters/kanara/side.svg"
  23932. }
  23933. },
  23934. },
  23935. [
  23936. {
  23937. name: "Normal",
  23938. height: math.unit(25.5, "feet"),
  23939. default: true
  23940. },
  23941. ]
  23942. ))
  23943. characterMakers.push(() => makeCharacter(
  23944. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23945. {
  23946. side: {
  23947. height: math.unit(10, "feet"),
  23948. weight: math.unit(1000, "kg"),
  23949. name: "Side",
  23950. image: {
  23951. source: "./media/characters/ereus/side.svg",
  23952. extra: 1157 / 959,
  23953. bottom: 153 / 1312.5
  23954. }
  23955. },
  23956. },
  23957. [
  23958. {
  23959. name: "Normal",
  23960. height: math.unit(10, "feet"),
  23961. default: true
  23962. },
  23963. ]
  23964. ))
  23965. characterMakers.push(() => makeCharacter(
  23966. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23967. {
  23968. side: {
  23969. height: math.unit(4.5, "feet"),
  23970. weight: math.unit(500, "lb"),
  23971. name: "Side",
  23972. image: {
  23973. source: "./media/characters/e-ter/side.svg",
  23974. extra: 1550 / 1248,
  23975. bottom: 146 / 1694
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Normal",
  23982. height: math.unit(4.5, "feet"),
  23983. default: true
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23989. {
  23990. side: {
  23991. height: math.unit(9.7, "feet"),
  23992. weight: math.unit(4000, "kg"),
  23993. name: "Side",
  23994. image: {
  23995. source: "./media/characters/yamie/side.svg"
  23996. }
  23997. },
  23998. },
  23999. [
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(9.7, "feet"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24009. {
  24010. front: {
  24011. height: math.unit(50, "feet"),
  24012. weight: math.unit(50000, "kg"),
  24013. name: "Front",
  24014. image: {
  24015. source: "./media/characters/anders/front.svg",
  24016. extra: 570 / 539,
  24017. bottom: 14.7 / 586.7
  24018. }
  24019. },
  24020. },
  24021. [
  24022. {
  24023. name: "Large",
  24024. height: math.unit(50, "feet")
  24025. },
  24026. {
  24027. name: "Macro",
  24028. height: math.unit(2000, "feet"),
  24029. default: true
  24030. },
  24031. {
  24032. name: "Megamacro",
  24033. height: math.unit(12, "miles")
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(7 + 2 / 12, "feet"),
  24042. weight: math.unit(300, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/reban/front.svg",
  24046. extra: 1287/1212,
  24047. bottom: 148/1435
  24048. }
  24049. },
  24050. head: {
  24051. height: math.unit(1.95, "feet"),
  24052. name: "Head",
  24053. image: {
  24054. source: "./media/characters/reban/head.svg"
  24055. }
  24056. },
  24057. maw: {
  24058. height: math.unit(0.95, "feet"),
  24059. name: "Maw",
  24060. image: {
  24061. source: "./media/characters/reban/maw.svg"
  24062. }
  24063. },
  24064. foot: {
  24065. height: math.unit(1.65, "feet"),
  24066. name: "Foot",
  24067. image: {
  24068. source: "./media/characters/reban/foot.svg"
  24069. }
  24070. },
  24071. dick: {
  24072. height: math.unit(7 / 5, "feet"),
  24073. name: "Dick",
  24074. image: {
  24075. source: "./media/characters/reban/dick.svg"
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Natural Height",
  24082. height: math.unit(7 + 2 / 12, "feet")
  24083. },
  24084. {
  24085. name: "Macro",
  24086. height: math.unit(500, "feet"),
  24087. default: true
  24088. },
  24089. {
  24090. name: "Canon Height",
  24091. height: math.unit(50, "AU")
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24097. {
  24098. front: {
  24099. height: math.unit(6, "feet"),
  24100. weight: math.unit(150, "lb"),
  24101. name: "Front",
  24102. image: {
  24103. source: "./media/characters/terrance-keayes/front.svg",
  24104. extra: 1.005,
  24105. bottom: 151 / 1615
  24106. }
  24107. },
  24108. side: {
  24109. height: math.unit(6, "feet"),
  24110. weight: math.unit(150, "lb"),
  24111. name: "Side",
  24112. image: {
  24113. source: "./media/characters/terrance-keayes/side.svg",
  24114. extra: 1.005,
  24115. bottom: 129.4 / 1544
  24116. }
  24117. },
  24118. back: {
  24119. height: math.unit(6, "feet"),
  24120. weight: math.unit(150, "lb"),
  24121. name: "Back",
  24122. image: {
  24123. source: "./media/characters/terrance-keayes/back.svg",
  24124. extra: 1.005,
  24125. bottom: 58.4 / 1557.3
  24126. }
  24127. },
  24128. dick: {
  24129. height: math.unit(6 * 0.208, "feet"),
  24130. name: "Dick",
  24131. image: {
  24132. source: "./media/characters/terrance-keayes/dick.svg"
  24133. }
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Canon Height",
  24139. height: math.unit(35, "miles"),
  24140. default: true
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(6, "feet"),
  24149. weight: math.unit(150, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/ofelia/front.svg",
  24153. extra: 1130/1117,
  24154. bottom: 91/1221
  24155. }
  24156. },
  24157. back: {
  24158. height: math.unit(6, "feet"),
  24159. weight: math.unit(150, "lb"),
  24160. name: "Back",
  24161. image: {
  24162. source: "./media/characters/ofelia/back.svg",
  24163. extra: 1172/1159,
  24164. bottom: 28/1200
  24165. }
  24166. },
  24167. maw: {
  24168. height: math.unit(1, "feet"),
  24169. name: "Maw",
  24170. image: {
  24171. source: "./media/characters/ofelia/maw.svg"
  24172. }
  24173. },
  24174. foot: {
  24175. height: math.unit(1.949, "feet"),
  24176. name: "Foot",
  24177. image: {
  24178. source: "./media/characters/ofelia/foot.svg"
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Canon Height",
  24185. height: math.unit(2000, "miles"),
  24186. default: true
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(6, "feet"),
  24195. weight: math.unit(150, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/samuel/front.svg",
  24199. extra: 265 / 258,
  24200. bottom: 2 / 266.1566
  24201. }
  24202. },
  24203. },
  24204. [
  24205. {
  24206. name: "Macro",
  24207. height: math.unit(100, "feet"),
  24208. default: true
  24209. },
  24210. {
  24211. name: "Full Size",
  24212. height: math.unit(1000, "miles")
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(6, "feet"),
  24221. weight: math.unit(300, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/beishir-kiel/front.svg",
  24225. extra: 569 / 547,
  24226. bottom: 41.9 / 609
  24227. }
  24228. },
  24229. maw: {
  24230. height: math.unit(6 * 0.202, "feet"),
  24231. name: "Maw",
  24232. image: {
  24233. source: "./media/characters/beishir-kiel/maw.svg"
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(300, "feet"),
  24241. default: true
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24247. {
  24248. front: {
  24249. height: math.unit(5 + 7/12, "feet"),
  24250. weight: math.unit(120, "lb"),
  24251. name: "Front",
  24252. image: {
  24253. source: "./media/characters/logan-grey/front.svg",
  24254. extra: 1836/1738,
  24255. bottom: 108/1944
  24256. }
  24257. },
  24258. back: {
  24259. height: math.unit(5 + 7/12, "feet"),
  24260. weight: math.unit(120, "lb"),
  24261. name: "Back",
  24262. image: {
  24263. source: "./media/characters/logan-grey/back.svg",
  24264. extra: 1880/1794,
  24265. bottom: 24/1904
  24266. }
  24267. },
  24268. frontSfw: {
  24269. height: math.unit(5 + 7/12, "feet"),
  24270. weight: math.unit(120, "lb"),
  24271. name: "Front (SFW)",
  24272. image: {
  24273. source: "./media/characters/logan-grey/front-sfw.svg",
  24274. extra: 1836/1738,
  24275. bottom: 108/1944
  24276. }
  24277. },
  24278. backSfw: {
  24279. height: math.unit(5 + 7/12, "feet"),
  24280. weight: math.unit(120, "lb"),
  24281. name: "Back (SFW)",
  24282. image: {
  24283. source: "./media/characters/logan-grey/back-sfw.svg",
  24284. extra: 1880/1794,
  24285. bottom: 24/1904
  24286. }
  24287. },
  24288. hands: {
  24289. height: math.unit(0.84, "feet"),
  24290. name: "Hands",
  24291. image: {
  24292. source: "./media/characters/logan-grey/hands.svg"
  24293. }
  24294. },
  24295. paws: {
  24296. height: math.unit(0.72, "feet"),
  24297. name: "Paws",
  24298. image: {
  24299. source: "./media/characters/logan-grey/paws.svg"
  24300. }
  24301. },
  24302. cock: {
  24303. height: math.unit(1.45, "feet"),
  24304. name: "Cock",
  24305. image: {
  24306. source: "./media/characters/logan-grey/cock.svg"
  24307. }
  24308. },
  24309. cockAlt: {
  24310. height: math.unit(1.437, "feet"),
  24311. name: "Cock (alt)",
  24312. image: {
  24313. source: "./media/characters/logan-grey/cock-alt.svg"
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(5 + 8 / 12, "feet")
  24321. },
  24322. {
  24323. name: "The 500 Foot Femboy",
  24324. height: math.unit(500, "feet"),
  24325. default: true
  24326. },
  24327. {
  24328. name: "Megmacro",
  24329. height: math.unit(20, "miles")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(8 + 2 / 12, "feet"),
  24338. weight: math.unit(275, "lb"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/draganta/front.svg",
  24342. extra: 1177 / 1135,
  24343. bottom: 33.46 / 1212.1
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Normal",
  24350. height: math.unit(8 + 6 / 12, "feet"),
  24351. default: true
  24352. },
  24353. {
  24354. name: "Macro",
  24355. height: math.unit(150, "feet")
  24356. },
  24357. {
  24358. name: "Megamacro",
  24359. height: math.unit(1000, "miles")
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24365. {
  24366. front: {
  24367. height: math.unit(1.72, "m"),
  24368. weight: math.unit(80, "lb"),
  24369. name: "Front",
  24370. image: {
  24371. source: "./media/characters/voski/front.svg",
  24372. extra: 2076.22 / 2022.4,
  24373. bottom: 102.7 / 2177.3866
  24374. }
  24375. },
  24376. frontFlaccid: {
  24377. height: math.unit(1.72, "m"),
  24378. weight: math.unit(80, "lb"),
  24379. name: "Front (Flaccid)",
  24380. image: {
  24381. source: "./media/characters/voski/front-flaccid.svg",
  24382. extra: 2076.22 / 2022.4,
  24383. bottom: 102.7 / 2177.3866
  24384. }
  24385. },
  24386. frontErect: {
  24387. height: math.unit(1.72, "m"),
  24388. weight: math.unit(80, "lb"),
  24389. name: "Front (Erect)",
  24390. image: {
  24391. source: "./media/characters/voski/front-erect.svg",
  24392. extra: 2076.22 / 2022.4,
  24393. bottom: 102.7 / 2177.3866
  24394. }
  24395. },
  24396. back: {
  24397. height: math.unit(1.72, "m"),
  24398. weight: math.unit(80, "lb"),
  24399. name: "Back",
  24400. image: {
  24401. source: "./media/characters/voski/back.svg",
  24402. extra: 2104 / 2051,
  24403. bottom: 10.45 / 2113.63
  24404. }
  24405. },
  24406. },
  24407. [
  24408. {
  24409. name: "Normal",
  24410. height: math.unit(1.72, "m")
  24411. },
  24412. {
  24413. name: "Macro",
  24414. height: math.unit(55, "m"),
  24415. default: true
  24416. },
  24417. {
  24418. name: "Macro+",
  24419. height: math.unit(300, "m")
  24420. },
  24421. {
  24422. name: "Macro++",
  24423. height: math.unit(700, "m")
  24424. },
  24425. {
  24426. name: "Macro+++",
  24427. height: math.unit(4500, "m")
  24428. },
  24429. {
  24430. name: "Macro++++",
  24431. height: math.unit(45, "km")
  24432. },
  24433. {
  24434. name: "Macro+++++",
  24435. height: math.unit(1220, "km")
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(2.3, "m"),
  24444. weight: math.unit(304, "kg"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/icowom-lee/front.svg",
  24448. extra: 985 / 955,
  24449. bottom: 25.4 / 1012
  24450. }
  24451. },
  24452. fronttentacles: {
  24453. height: math.unit(2.3, "m"),
  24454. weight: math.unit(304, "kg"),
  24455. name: "Front-tentacles",
  24456. image: {
  24457. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24458. extra: 985 / 955,
  24459. bottom: 25.4 / 1012
  24460. }
  24461. },
  24462. back: {
  24463. height: math.unit(2.3, "m"),
  24464. weight: math.unit(304, "kg"),
  24465. name: "Back",
  24466. image: {
  24467. source: "./media/characters/icowom-lee/back.svg",
  24468. extra: 975 / 954,
  24469. bottom: 9.5 / 985
  24470. }
  24471. },
  24472. backtentacles: {
  24473. height: math.unit(2.3, "m"),
  24474. weight: math.unit(304, "kg"),
  24475. name: "Back-tentacles",
  24476. image: {
  24477. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24478. extra: 975 / 954,
  24479. bottom: 9.5 / 985
  24480. }
  24481. },
  24482. frontDressed: {
  24483. height: math.unit(2.3, "m"),
  24484. weight: math.unit(304, "kg"),
  24485. name: "Front (Dressed)",
  24486. image: {
  24487. source: "./media/characters/icowom-lee/front-dressed.svg",
  24488. extra: 3076 / 2933,
  24489. bottom: 51.4 / 3125.1889
  24490. }
  24491. },
  24492. rump: {
  24493. height: math.unit(0.776, "meters"),
  24494. name: "Rump",
  24495. image: {
  24496. source: "./media/characters/icowom-lee/rump.svg"
  24497. }
  24498. },
  24499. genitals: {
  24500. height: math.unit(0.78, "meters"),
  24501. name: "Genitals",
  24502. image: {
  24503. source: "./media/characters/icowom-lee/genitals.svg"
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(2.3, "meters"),
  24511. default: true
  24512. },
  24513. {
  24514. name: "Macro",
  24515. height: math.unit(94, "meters"),
  24516. default: true
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24522. {
  24523. front: {
  24524. height: math.unit(22, "meters"),
  24525. weight: math.unit(21000, "kg"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/shock-diamond/front.svg",
  24529. extra: 2204 / 2053,
  24530. bottom: 65 / 2239.47
  24531. }
  24532. },
  24533. frontNude: {
  24534. height: math.unit(22, "meters"),
  24535. weight: math.unit(21000, "kg"),
  24536. name: "Front (Nude)",
  24537. image: {
  24538. source: "./media/characters/shock-diamond/front-nude.svg",
  24539. extra: 2514 / 2285,
  24540. bottom: 13 / 2527.56
  24541. }
  24542. },
  24543. },
  24544. [
  24545. {
  24546. name: "Normal",
  24547. height: math.unit(3, "meters")
  24548. },
  24549. {
  24550. name: "Macro",
  24551. height: math.unit(22, "meters"),
  24552. default: true
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24558. {
  24559. frontNsfw: {
  24560. height: math.unit(5 + 4/12, "feet"),
  24561. weight: math.unit(195, "lb"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/rory/front.svg",
  24565. extra: 1220/1100,
  24566. bottom: 103/1323
  24567. }
  24568. },
  24569. back: {
  24570. height: math.unit(5 + 4/12, "feet"),
  24571. weight: math.unit(195, "lb"),
  24572. name: "Back",
  24573. image: {
  24574. source: "./media/characters/rory/back.svg",
  24575. extra: 1166/1086,
  24576. bottom: 35/1201
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Micro",
  24583. height: math.unit(3, "inches")
  24584. },
  24585. {
  24586. name: "Normal",
  24587. height: math.unit(5 + 4/12, "feet"),
  24588. default: true
  24589. },
  24590. {
  24591. name: "Macro",
  24592. height: math.unit(90, "feet")
  24593. },
  24594. {
  24595. name: "Supercharged",
  24596. height: math.unit(270, "feet")
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24602. {
  24603. front: {
  24604. height: math.unit(5 + 9 / 12, "feet"),
  24605. weight: math.unit(190, "lb"),
  24606. name: "Front",
  24607. image: {
  24608. source: "./media/characters/sprisk/front.svg",
  24609. extra: 1225 / 1180,
  24610. bottom: 42.7 / 1266.4
  24611. }
  24612. },
  24613. frontNsfw: {
  24614. height: math.unit(5 + 9 / 12, "feet"),
  24615. weight: math.unit(190, "lb"),
  24616. name: "Front (NSFW)",
  24617. image: {
  24618. source: "./media/characters/sprisk/front-nsfw.svg",
  24619. extra: 1225 / 1180,
  24620. bottom: 42.7 / 1266.4
  24621. }
  24622. },
  24623. back: {
  24624. height: math.unit(5 + 9 / 12, "feet"),
  24625. weight: math.unit(190, "lb"),
  24626. name: "Back",
  24627. image: {
  24628. source: "./media/characters/sprisk/back.svg",
  24629. extra: 1247 / 1200,
  24630. bottom: 5.6 / 1253.04
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Tiny",
  24637. height: math.unit(2, "inches")
  24638. },
  24639. {
  24640. name: "Normal",
  24641. height: math.unit(5 + 9 / 12, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Mini Macro",
  24646. height: math.unit(18, "feet")
  24647. },
  24648. {
  24649. name: "Macro",
  24650. height: math.unit(100, "feet")
  24651. },
  24652. {
  24653. name: "MACRO",
  24654. height: math.unit(50, "miles")
  24655. },
  24656. {
  24657. name: "M A C R O",
  24658. height: math.unit(300, "miles")
  24659. },
  24660. ]
  24661. ))
  24662. characterMakers.push(() => makeCharacter(
  24663. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24664. {
  24665. side: {
  24666. height: math.unit(15.6, "meters"),
  24667. weight: math.unit(700000, "kg"),
  24668. name: "Side",
  24669. image: {
  24670. source: "./media/characters/bunsen/side.svg",
  24671. extra: 1644 / 358
  24672. }
  24673. },
  24674. foot: {
  24675. height: math.unit(1.611 * 1644 / 358, "meter"),
  24676. name: "Foot",
  24677. image: {
  24678. source: "./media/characters/bunsen/foot.svg"
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Small",
  24685. height: math.unit(10, "feet")
  24686. },
  24687. {
  24688. name: "Normal",
  24689. height: math.unit(15.6, "meters"),
  24690. default: true
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(4 + 11 / 12, "feet"),
  24699. weight: math.unit(140, "lb"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/sesh/front.svg",
  24703. extra: 3420 / 3231,
  24704. bottom: 72 / 3949.5
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Normal",
  24711. height: math.unit(4 + 11 / 12, "feet")
  24712. },
  24713. {
  24714. name: "Grown",
  24715. height: math.unit(15, "feet"),
  24716. default: true
  24717. },
  24718. {
  24719. name: "Macro",
  24720. height: math.unit(1500, "feet")
  24721. },
  24722. {
  24723. name: "Megamacro",
  24724. height: math.unit(30, "miles")
  24725. },
  24726. {
  24727. name: "Continental",
  24728. height: math.unit(3000, "miles")
  24729. },
  24730. {
  24731. name: "Gravity Mass",
  24732. height: math.unit(300000, "miles")
  24733. },
  24734. {
  24735. name: "Planet Buster",
  24736. height: math.unit(30000000, "miles")
  24737. },
  24738. {
  24739. name: "Big",
  24740. height: math.unit(3000000000, "miles")
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24746. {
  24747. front: {
  24748. height: math.unit(9, "feet"),
  24749. weight: math.unit(350, "lb"),
  24750. name: "Front",
  24751. image: {
  24752. source: "./media/characters/pepper/front.svg",
  24753. extra: 1448 / 1312,
  24754. bottom: 9.4 / 1457.88
  24755. }
  24756. },
  24757. back: {
  24758. height: math.unit(9, "feet"),
  24759. weight: math.unit(350, "lb"),
  24760. name: "Back",
  24761. image: {
  24762. source: "./media/characters/pepper/back.svg",
  24763. extra: 1423 / 1300,
  24764. bottom: 4.6 / 1429
  24765. }
  24766. },
  24767. maw: {
  24768. height: math.unit(0.932, "feet"),
  24769. name: "Maw",
  24770. image: {
  24771. source: "./media/characters/pepper/maw.svg"
  24772. }
  24773. },
  24774. },
  24775. [
  24776. {
  24777. name: "Normal",
  24778. height: math.unit(9, "feet"),
  24779. default: true
  24780. },
  24781. ]
  24782. ))
  24783. characterMakers.push(() => makeCharacter(
  24784. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24785. {
  24786. front: {
  24787. height: math.unit(6, "feet"),
  24788. weight: math.unit(150, "lb"),
  24789. name: "Front",
  24790. image: {
  24791. source: "./media/characters/maelstrom/front.svg",
  24792. extra: 2100 / 1883,
  24793. bottom: 94 / 2196.7
  24794. }
  24795. },
  24796. },
  24797. [
  24798. {
  24799. name: "Less Kaiju",
  24800. height: math.unit(200, "feet")
  24801. },
  24802. {
  24803. name: "Kaiju",
  24804. height: math.unit(400, "feet"),
  24805. default: true
  24806. },
  24807. {
  24808. name: "Kaiju-er",
  24809. height: math.unit(600, "feet")
  24810. },
  24811. ]
  24812. ))
  24813. characterMakers.push(() => makeCharacter(
  24814. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24815. {
  24816. front: {
  24817. height: math.unit(6 + 5 / 12, "feet"),
  24818. weight: math.unit(180, "lb"),
  24819. name: "Front",
  24820. image: {
  24821. source: "./media/characters/lexir/front.svg",
  24822. extra: 180 / 172,
  24823. bottom: 12 / 192
  24824. }
  24825. },
  24826. back: {
  24827. height: math.unit(6 + 5 / 12, "feet"),
  24828. weight: math.unit(180, "lb"),
  24829. name: "Back",
  24830. image: {
  24831. source: "./media/characters/lexir/back.svg",
  24832. extra: 1273/1201,
  24833. bottom: 39/1312
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Very Smal",
  24840. height: math.unit(1, "nm")
  24841. },
  24842. {
  24843. name: "Normal",
  24844. height: math.unit(6 + 5 / 12, "feet"),
  24845. default: true
  24846. },
  24847. {
  24848. name: "Macro",
  24849. height: math.unit(1, "mile")
  24850. },
  24851. {
  24852. name: "Megamacro",
  24853. height: math.unit(50, "miles")
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(1.5, "meters"),
  24862. weight: math.unit(100, "lb"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/maksio/front.svg",
  24866. extra: 1549 / 1531,
  24867. bottom: 123.7 / 1674.5429
  24868. }
  24869. },
  24870. back: {
  24871. height: math.unit(1.5, "meters"),
  24872. weight: math.unit(100, "lb"),
  24873. name: "Back",
  24874. image: {
  24875. source: "./media/characters/maksio/back.svg",
  24876. extra: 1541 / 1509,
  24877. bottom: 97 / 1639
  24878. }
  24879. },
  24880. hand: {
  24881. height: math.unit(0.621, "feet"),
  24882. name: "Hand",
  24883. image: {
  24884. source: "./media/characters/maksio/hand.svg"
  24885. }
  24886. },
  24887. foot: {
  24888. height: math.unit(1.611, "feet"),
  24889. name: "Foot",
  24890. image: {
  24891. source: "./media/characters/maksio/foot.svg"
  24892. }
  24893. },
  24894. },
  24895. [
  24896. {
  24897. name: "Shrunken",
  24898. height: math.unit(10, "cm")
  24899. },
  24900. {
  24901. name: "Normal",
  24902. height: math.unit(150, "cm"),
  24903. default: true
  24904. },
  24905. ]
  24906. ))
  24907. characterMakers.push(() => makeCharacter(
  24908. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24909. {
  24910. front: {
  24911. height: math.unit(100, "feet"),
  24912. name: "Front",
  24913. image: {
  24914. source: "./media/characters/erza-bear/front.svg",
  24915. extra: 2449 / 2390,
  24916. bottom: 46 / 2494
  24917. }
  24918. },
  24919. back: {
  24920. height: math.unit(100, "feet"),
  24921. name: "Back",
  24922. image: {
  24923. source: "./media/characters/erza-bear/back.svg",
  24924. extra: 2489 / 2430,
  24925. bottom: 85.4 / 2480
  24926. }
  24927. },
  24928. tail: {
  24929. height: math.unit(42, "feet"),
  24930. name: "Tail",
  24931. image: {
  24932. source: "./media/characters/erza-bear/tail.svg"
  24933. }
  24934. },
  24935. tongue: {
  24936. height: math.unit(8, "feet"),
  24937. name: "Tongue",
  24938. image: {
  24939. source: "./media/characters/erza-bear/tongue.svg"
  24940. }
  24941. },
  24942. dick: {
  24943. height: math.unit(10.5, "feet"),
  24944. name: "Dick",
  24945. image: {
  24946. source: "./media/characters/erza-bear/dick.svg"
  24947. }
  24948. },
  24949. dickVertical: {
  24950. height: math.unit(16.9, "feet"),
  24951. name: "Dick (Vertical)",
  24952. image: {
  24953. source: "./media/characters/erza-bear/dick-vertical.svg"
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Macro",
  24960. height: math.unit(100, "feet"),
  24961. default: true
  24962. },
  24963. ]
  24964. ))
  24965. characterMakers.push(() => makeCharacter(
  24966. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24967. {
  24968. front: {
  24969. height: math.unit(172, "cm"),
  24970. weight: math.unit(73, "kg"),
  24971. name: "Front",
  24972. image: {
  24973. source: "./media/characters/violet-flor/front.svg",
  24974. extra: 1530 / 1442,
  24975. bottom: 61.9 / 1588.8
  24976. }
  24977. },
  24978. back: {
  24979. height: math.unit(180, "cm"),
  24980. weight: math.unit(73, "kg"),
  24981. name: "Back",
  24982. image: {
  24983. source: "./media/characters/violet-flor/back.svg",
  24984. extra: 1692 / 1630,
  24985. bottom: 20 / 1712
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Normal",
  24992. height: math.unit(172, "cm"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24999. {
  25000. front: {
  25001. height: math.unit(6, "feet"),
  25002. weight: math.unit(220, "lb"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/lynn-rhea/front.svg",
  25006. extra: 310 / 273
  25007. }
  25008. },
  25009. back: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(220, "lb"),
  25012. name: "Back",
  25013. image: {
  25014. source: "./media/characters/lynn-rhea/back.svg",
  25015. extra: 310 / 273
  25016. }
  25017. },
  25018. dicks: {
  25019. height: math.unit(0.9, "feet"),
  25020. name: "Dicks",
  25021. image: {
  25022. source: "./media/characters/lynn-rhea/dicks.svg"
  25023. }
  25024. },
  25025. slit: {
  25026. height: math.unit(0.4, "feet"),
  25027. name: "Slit",
  25028. image: {
  25029. source: "./media/characters/lynn-rhea/slit.svg"
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Micro",
  25036. height: math.unit(1, "inch")
  25037. },
  25038. {
  25039. name: "Macro",
  25040. height: math.unit(60, "feet"),
  25041. default: true
  25042. },
  25043. {
  25044. name: "Megamacro",
  25045. height: math.unit(2, "miles")
  25046. },
  25047. {
  25048. name: "Gigamacro",
  25049. height: math.unit(3, "earths")
  25050. },
  25051. {
  25052. name: "Galactic",
  25053. height: math.unit(0.8, "galaxies")
  25054. },
  25055. ]
  25056. ))
  25057. characterMakers.push(() => makeCharacter(
  25058. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25059. {
  25060. front: {
  25061. height: math.unit(1600, "feet"),
  25062. weight: math.unit(85758785169, "kg"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/valathos/front.svg",
  25066. extra: 1451 / 1339
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Macro",
  25073. height: math.unit(1600, "feet"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(7 + 5 / 12, "feet"),
  25083. weight: math.unit(300, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/azula/front.svg",
  25087. extra: 3208 / 2880,
  25088. bottom: 80.2 / 3277
  25089. }
  25090. },
  25091. back: {
  25092. height: math.unit(7 + 5 / 12, "feet"),
  25093. weight: math.unit(300, "lb"),
  25094. name: "Back",
  25095. image: {
  25096. source: "./media/characters/azula/back.svg",
  25097. extra: 3169 / 2822,
  25098. bottom: 150.6 / 3321
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Normal",
  25105. height: math.unit(7 + 5 / 12, "feet"),
  25106. default: true
  25107. },
  25108. {
  25109. name: "Big",
  25110. height: math.unit(20, "feet")
  25111. },
  25112. ]
  25113. ))
  25114. characterMakers.push(() => makeCharacter(
  25115. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25116. {
  25117. front: {
  25118. height: math.unit(5 + 1 / 12, "feet"),
  25119. weight: math.unit(110, "lb"),
  25120. name: "Front",
  25121. image: {
  25122. source: "./media/characters/rupert/front.svg",
  25123. extra: 1549 / 1495,
  25124. bottom: 54.2 / 1604.4
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(5 + 1 / 12, "feet"),
  25132. default: true
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25138. {
  25139. front: {
  25140. height: math.unit(8 + 4 / 12, "feet"),
  25141. weight: math.unit(350, "lb"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/sheera-castellar/front.svg",
  25145. extra: 1957 / 1894,
  25146. bottom: 26.97 / 1975.017
  25147. }
  25148. },
  25149. side: {
  25150. height: math.unit(8 + 4 / 12, "feet"),
  25151. weight: math.unit(350, "lb"),
  25152. name: "Side",
  25153. image: {
  25154. source: "./media/characters/sheera-castellar/side.svg",
  25155. extra: 1957 / 1894
  25156. }
  25157. },
  25158. back: {
  25159. height: math.unit(8 + 4 / 12, "feet"),
  25160. weight: math.unit(350, "lb"),
  25161. name: "Back",
  25162. image: {
  25163. source: "./media/characters/sheera-castellar/back.svg",
  25164. extra: 1957 / 1894
  25165. }
  25166. },
  25167. angled: {
  25168. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25169. weight: math.unit(350, "lb"),
  25170. name: "Angled",
  25171. image: {
  25172. source: "./media/characters/sheera-castellar/angled.svg",
  25173. extra: 1807 / 1707,
  25174. bottom: 68 / 1875
  25175. }
  25176. },
  25177. genitals: {
  25178. height: math.unit(2.2, "feet"),
  25179. name: "Genitals",
  25180. image: {
  25181. source: "./media/characters/sheera-castellar/genitals.svg"
  25182. }
  25183. },
  25184. taur: {
  25185. height: math.unit(10 + 6/12, "feet"),
  25186. name: "Taur",
  25187. image: {
  25188. source: "./media/characters/sheera-castellar/taur.svg",
  25189. extra: 2017/1909,
  25190. bottom: 185/2202
  25191. }
  25192. },
  25193. },
  25194. [
  25195. {
  25196. name: "Normal",
  25197. height: math.unit(8 + 4 / 12, "feet")
  25198. },
  25199. {
  25200. name: "Macro",
  25201. height: math.unit(150, "feet"),
  25202. default: true
  25203. },
  25204. {
  25205. name: "Macro+",
  25206. height: math.unit(800, "feet")
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25212. {
  25213. front: {
  25214. height: math.unit(6, "feet"),
  25215. weight: math.unit(150, "lb"),
  25216. name: "Front",
  25217. image: {
  25218. source: "./media/characters/jaipur/front.svg",
  25219. extra: 3860 / 3731,
  25220. bottom: 287 / 4140
  25221. }
  25222. },
  25223. back: {
  25224. height: math.unit(6, "feet"),
  25225. weight: math.unit(150, "lb"),
  25226. name: "Back",
  25227. image: {
  25228. source: "./media/characters/jaipur/back.svg",
  25229. extra: 1637/1561,
  25230. bottom: 154/1791
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(1.85, "meters"),
  25238. default: true
  25239. },
  25240. {
  25241. name: "Macro",
  25242. height: math.unit(150, "meters")
  25243. },
  25244. {
  25245. name: "Macro+",
  25246. height: math.unit(0.5, "miles")
  25247. },
  25248. {
  25249. name: "Macro++",
  25250. height: math.unit(2.5, "miles")
  25251. },
  25252. {
  25253. name: "Macro+++",
  25254. height: math.unit(12, "miles")
  25255. },
  25256. {
  25257. name: "Macro++++",
  25258. height: math.unit(120, "miles")
  25259. },
  25260. {
  25261. name: "Macro+++++",
  25262. height: math.unit(1200, "miles")
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(6, "feet"),
  25271. weight: math.unit(150, "lb"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/sheila-wolf/front.svg",
  25275. extra: 1931 / 1808,
  25276. bottom: 29.5 / 1960
  25277. }
  25278. },
  25279. dick: {
  25280. height: math.unit(1.464, "feet"),
  25281. name: "Dick",
  25282. image: {
  25283. source: "./media/characters/sheila-wolf/dick.svg"
  25284. }
  25285. },
  25286. muzzle: {
  25287. height: math.unit(0.513, "feet"),
  25288. name: "Muzzle",
  25289. image: {
  25290. source: "./media/characters/sheila-wolf/muzzle.svg"
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Macro",
  25297. height: math.unit(70, "feet"),
  25298. default: true
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(32, "meters"),
  25307. weight: math.unit(300000, "kg"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/almor/front.svg",
  25311. extra: 1408 / 1322,
  25312. bottom: 94.6 / 1506.5
  25313. }
  25314. },
  25315. },
  25316. [
  25317. {
  25318. name: "Macro",
  25319. height: math.unit(32, "meters"),
  25320. default: true
  25321. },
  25322. ]
  25323. ))
  25324. characterMakers.push(() => makeCharacter(
  25325. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25326. {
  25327. front: {
  25328. height: math.unit(7, "feet"),
  25329. weight: math.unit(200, "lb"),
  25330. name: "Front",
  25331. image: {
  25332. source: "./media/characters/silver/front.svg",
  25333. extra: 472.1 / 450.5,
  25334. bottom: 26.5 / 499.424
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Normal",
  25341. height: math.unit(7, "feet"),
  25342. default: true
  25343. },
  25344. {
  25345. name: "Macro",
  25346. height: math.unit(800, "feet")
  25347. },
  25348. {
  25349. name: "Megamacro",
  25350. height: math.unit(250, "miles")
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(6, "feet"),
  25359. weight: math.unit(150, "lb"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/pliskin/front.svg",
  25363. extra: 1469 / 1359,
  25364. bottom: 70 / 1540
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Micro",
  25371. height: math.unit(3, "inches")
  25372. },
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(5 + 11 / 12, "feet"),
  25376. default: true
  25377. },
  25378. {
  25379. name: "Macro",
  25380. height: math.unit(120, "feet")
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(6, "feet"),
  25389. weight: math.unit(150, "lb"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/sammy/front.svg",
  25393. extra: 1193 / 1089,
  25394. bottom: 30.5 / 1226
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(1700, "feet"),
  25402. default: true
  25403. },
  25404. {
  25405. name: "Examacro",
  25406. height: math.unit(2.5e9, "lightyears")
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(21, "meters"),
  25415. weight: math.unit(12, "tonnes"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/kuru/front.svg",
  25419. extra: 4301 / 3785,
  25420. bottom: 371.3 / 4691
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Macro",
  25427. height: math.unit(21, "meters"),
  25428. default: true
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(23, "meters"),
  25437. weight: math.unit(12.2, "tonnes"),
  25438. name: "Front",
  25439. image: {
  25440. source: "./media/characters/rakka/front.svg",
  25441. extra: 4670 / 4169,
  25442. bottom: 301 / 4968.7
  25443. }
  25444. },
  25445. },
  25446. [
  25447. {
  25448. name: "Macro",
  25449. height: math.unit(23, "meters"),
  25450. default: true
  25451. },
  25452. ]
  25453. ))
  25454. characterMakers.push(() => makeCharacter(
  25455. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25456. {
  25457. front: {
  25458. height: math.unit(6, "feet"),
  25459. weight: math.unit(150, "lb"),
  25460. name: "Front",
  25461. image: {
  25462. source: "./media/characters/rhys-feline/front.svg",
  25463. extra: 2488 / 2308,
  25464. bottom: 35.67 / 2519.19
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Really Small",
  25471. height: math.unit(1, "nm")
  25472. },
  25473. {
  25474. name: "Micro",
  25475. height: math.unit(4, "inches")
  25476. },
  25477. {
  25478. name: "Normal",
  25479. height: math.unit(4 + 10 / 12, "feet"),
  25480. default: true
  25481. },
  25482. {
  25483. name: "Macro",
  25484. height: math.unit(100, "feet")
  25485. },
  25486. {
  25487. name: "Megamacto",
  25488. height: math.unit(50, "miles")
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25494. {
  25495. side: {
  25496. height: math.unit(30, "feet"),
  25497. weight: math.unit(35000, "kg"),
  25498. name: "Side",
  25499. image: {
  25500. source: "./media/characters/alydar/side.svg",
  25501. extra: 234 / 222,
  25502. bottom: 6.5 / 241
  25503. }
  25504. },
  25505. front: {
  25506. height: math.unit(30, "feet"),
  25507. weight: math.unit(35000, "kg"),
  25508. name: "Front",
  25509. image: {
  25510. source: "./media/characters/alydar/front.svg",
  25511. extra: 223.37 / 210.2,
  25512. bottom: 22.3 / 246.76
  25513. }
  25514. },
  25515. top: {
  25516. height: math.unit(64.54, "feet"),
  25517. weight: math.unit(35000, "kg"),
  25518. name: "Top",
  25519. image: {
  25520. source: "./media/characters/alydar/top.svg"
  25521. }
  25522. },
  25523. anthro: {
  25524. height: math.unit(30, "feet"),
  25525. weight: math.unit(9000, "kg"),
  25526. name: "Anthro",
  25527. image: {
  25528. source: "./media/characters/alydar/anthro.svg",
  25529. extra: 432 / 421,
  25530. bottom: 7.18 / 440
  25531. }
  25532. },
  25533. maw: {
  25534. height: math.unit(11.693, "feet"),
  25535. name: "Maw",
  25536. image: {
  25537. source: "./media/characters/alydar/maw.svg"
  25538. }
  25539. },
  25540. head: {
  25541. height: math.unit(11.693, "feet"),
  25542. name: "Head",
  25543. image: {
  25544. source: "./media/characters/alydar/head.svg"
  25545. }
  25546. },
  25547. headAlt: {
  25548. height: math.unit(12.861, "feet"),
  25549. name: "Head (Alt)",
  25550. image: {
  25551. source: "./media/characters/alydar/head-alt.svg"
  25552. }
  25553. },
  25554. wing: {
  25555. height: math.unit(20.712, "feet"),
  25556. name: "Wing",
  25557. image: {
  25558. source: "./media/characters/alydar/wing.svg"
  25559. }
  25560. },
  25561. wingFeather: {
  25562. height: math.unit(9.662, "feet"),
  25563. name: "Wing Feather",
  25564. image: {
  25565. source: "./media/characters/alydar/wing-feather.svg"
  25566. }
  25567. },
  25568. countourFeather: {
  25569. height: math.unit(4.154, "feet"),
  25570. name: "Contour Feather",
  25571. image: {
  25572. source: "./media/characters/alydar/contour-feather.svg"
  25573. }
  25574. },
  25575. },
  25576. [
  25577. {
  25578. name: "Diplomatic",
  25579. height: math.unit(13, "feet"),
  25580. default: true
  25581. },
  25582. {
  25583. name: "Small",
  25584. height: math.unit(30, "feet")
  25585. },
  25586. {
  25587. name: "Normal",
  25588. height: math.unit(95, "feet"),
  25589. default: true
  25590. },
  25591. {
  25592. name: "Large",
  25593. height: math.unit(285, "feet")
  25594. },
  25595. {
  25596. name: "Incomprehensible",
  25597. height: math.unit(450, "megameters")
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25603. {
  25604. side: {
  25605. height: math.unit(11, "feet"),
  25606. weight: math.unit(1750, "kg"),
  25607. name: "Side",
  25608. image: {
  25609. source: "./media/characters/selicia/side.svg",
  25610. extra: 440 / 396,
  25611. bottom: 24.8 / 465.979
  25612. }
  25613. },
  25614. maw: {
  25615. height: math.unit(4.665, "feet"),
  25616. name: "Maw",
  25617. image: {
  25618. source: "./media/characters/selicia/maw.svg"
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(11, "feet"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25632. {
  25633. side: {
  25634. height: math.unit(2 + 6 / 12, "feet"),
  25635. weight: math.unit(30, "lb"),
  25636. name: "Side",
  25637. image: {
  25638. source: "./media/characters/layla/side.svg",
  25639. extra: 244 / 188,
  25640. bottom: 18.2 / 262.1
  25641. }
  25642. },
  25643. back: {
  25644. height: math.unit(2 + 6 / 12, "feet"),
  25645. weight: math.unit(30, "lb"),
  25646. name: "Back",
  25647. image: {
  25648. source: "./media/characters/layla/back.svg",
  25649. extra: 308 / 241.5,
  25650. bottom: 8.9 / 316.8
  25651. }
  25652. },
  25653. cumming: {
  25654. height: math.unit(2 + 6 / 12, "feet"),
  25655. weight: math.unit(30, "lb"),
  25656. name: "Cumming",
  25657. image: {
  25658. source: "./media/characters/layla/cumming.svg",
  25659. extra: 342 / 279,
  25660. bottom: 595 / 938
  25661. }
  25662. },
  25663. dickFlaccid: {
  25664. height: math.unit(2.595, "feet"),
  25665. name: "Flaccid Genitals",
  25666. image: {
  25667. source: "./media/characters/layla/dick-flaccid.svg"
  25668. }
  25669. },
  25670. dickErect: {
  25671. height: math.unit(2.359, "feet"),
  25672. name: "Erect Genitals",
  25673. image: {
  25674. source: "./media/characters/layla/dick-erect.svg"
  25675. }
  25676. },
  25677. dragon: {
  25678. height: math.unit(40, "feet"),
  25679. name: "Dragon",
  25680. image: {
  25681. source: "./media/characters/layla/dragon.svg",
  25682. extra: 610/535,
  25683. bottom: 367/977
  25684. }
  25685. },
  25686. taur: {
  25687. height: math.unit(30, "feet"),
  25688. name: "Taur",
  25689. image: {
  25690. source: "./media/characters/layla/taur.svg",
  25691. extra: 1268/1199,
  25692. bottom: 112/1380
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Micro",
  25699. height: math.unit(1, "inch")
  25700. },
  25701. {
  25702. name: "Small",
  25703. height: math.unit(1, "foot")
  25704. },
  25705. {
  25706. name: "Normal",
  25707. height: math.unit(2 + 6 / 12, "feet"),
  25708. default: true
  25709. },
  25710. {
  25711. name: "Macro",
  25712. height: math.unit(200, "feet")
  25713. },
  25714. {
  25715. name: "Megamacro",
  25716. height: math.unit(1000, "miles")
  25717. },
  25718. {
  25719. name: "Planetary",
  25720. height: math.unit(8000, "miles")
  25721. },
  25722. {
  25723. name: "True Layla",
  25724. height: math.unit(200000 * 7, "multiverses")
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25730. {
  25731. back: {
  25732. height: math.unit(10.5, "feet"),
  25733. weight: math.unit(800, "lb"),
  25734. name: "Back",
  25735. image: {
  25736. source: "./media/characters/knox/back.svg",
  25737. extra: 1486 / 1089,
  25738. bottom: 107 / 1601.4
  25739. }
  25740. },
  25741. side: {
  25742. height: math.unit(10.5, "feet"),
  25743. weight: math.unit(800, "lb"),
  25744. name: "Side",
  25745. image: {
  25746. source: "./media/characters/knox/side.svg",
  25747. extra: 244 / 218,
  25748. bottom: 14 / 260
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Compact",
  25755. height: math.unit(10.5, "feet"),
  25756. default: true
  25757. },
  25758. {
  25759. name: "Dynamax",
  25760. height: math.unit(210, "feet")
  25761. },
  25762. {
  25763. name: "Full Macro",
  25764. height: math.unit(850, "feet")
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(28, "feet"),
  25773. weight: math.unit(10500, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/kayda/front.svg",
  25777. extra: 1536 / 1428,
  25778. bottom: 68.7 / 1603
  25779. }
  25780. },
  25781. back: {
  25782. height: math.unit(28, "feet"),
  25783. weight: math.unit(10500, "lb"),
  25784. name: "Back",
  25785. image: {
  25786. source: "./media/characters/kayda/back.svg",
  25787. extra: 1557 / 1464,
  25788. bottom: 39.5 / 1597.49
  25789. }
  25790. },
  25791. dick: {
  25792. height: math.unit(3.858, "feet"),
  25793. name: "Dick",
  25794. image: {
  25795. source: "./media/characters/kayda/dick.svg"
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Macro",
  25802. height: math.unit(28, "feet"),
  25803. default: true
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25809. {
  25810. front: {
  25811. height: math.unit(10 + 11 / 12, "feet"),
  25812. weight: math.unit(1400, "lb"),
  25813. name: "Front",
  25814. image: {
  25815. source: "./media/characters/brian/front.svg",
  25816. extra: 737 / 692,
  25817. bottom: 55.4 / 785
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(10 + 11 / 12, "feet"),
  25825. default: true
  25826. },
  25827. ]
  25828. ))
  25829. characterMakers.push(() => makeCharacter(
  25830. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25831. {
  25832. front: {
  25833. height: math.unit(5 + 8 / 12, "feet"),
  25834. weight: math.unit(140, "lb"),
  25835. name: "Front",
  25836. image: {
  25837. source: "./media/characters/khemri/front.svg",
  25838. extra: 4780 / 4059,
  25839. bottom: 80.1 / 4859.25
  25840. }
  25841. },
  25842. },
  25843. [
  25844. {
  25845. name: "Micro",
  25846. height: math.unit(6, "inches")
  25847. },
  25848. {
  25849. name: "Normal",
  25850. height: math.unit(5 + 8 / 12, "feet"),
  25851. default: true
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25857. {
  25858. front: {
  25859. height: math.unit(13, "feet"),
  25860. weight: math.unit(1700, "lb"),
  25861. name: "Front",
  25862. image: {
  25863. source: "./media/characters/felix-braveheart/front.svg",
  25864. extra: 1222 / 1157,
  25865. bottom: 53.2 / 1280
  25866. }
  25867. },
  25868. back: {
  25869. height: math.unit(13, "feet"),
  25870. weight: math.unit(1700, "lb"),
  25871. name: "Back",
  25872. image: {
  25873. source: "./media/characters/felix-braveheart/back.svg",
  25874. extra: 1277 / 1203,
  25875. bottom: 50.2 / 1327
  25876. }
  25877. },
  25878. feral: {
  25879. height: math.unit(6, "feet"),
  25880. weight: math.unit(400, "lb"),
  25881. name: "Feral",
  25882. image: {
  25883. source: "./media/characters/felix-braveheart/feral.svg",
  25884. extra: 682 / 625,
  25885. bottom: 6.9 / 688
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(13, "feet"),
  25893. default: true
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25899. {
  25900. side: {
  25901. height: math.unit(5 + 11 / 12, "feet"),
  25902. weight: math.unit(1400, "lb"),
  25903. name: "Side",
  25904. image: {
  25905. source: "./media/characters/shadow-blade/side.svg",
  25906. extra: 1726 / 1267,
  25907. bottom: 58.4 / 1785
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(5 + 11 / 12, "feet"),
  25915. default: true
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(1 + 6 / 12, "feet"),
  25924. weight: math.unit(25, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/karla-halldor/front.svg",
  25928. extra: 1459 / 1383,
  25929. bottom: 12 / 1472
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(1 + 6 / 12, "feet"),
  25937. default: true
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25943. {
  25944. front: {
  25945. height: math.unit(6 + 2 / 12, "feet"),
  25946. weight: math.unit(160, "lb"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/ariam/front.svg",
  25950. extra: 1073/976,
  25951. bottom: 52/1125
  25952. }
  25953. },
  25954. back: {
  25955. height: math.unit(6 + 2/12, "feet"),
  25956. weight: math.unit(160, "lb"),
  25957. name: "Back",
  25958. image: {
  25959. source: "./media/characters/ariam/back.svg",
  25960. extra: 1103/1023,
  25961. bottom: 9/1112
  25962. }
  25963. },
  25964. dressed: {
  25965. height: math.unit(6 + 2/12, "feet"),
  25966. weight: math.unit(160, "lb"),
  25967. name: "Dressed",
  25968. image: {
  25969. source: "./media/characters/ariam/dressed.svg",
  25970. extra: 1099/1009,
  25971. bottom: 25/1124
  25972. }
  25973. },
  25974. squatting: {
  25975. height: math.unit(4.1, "feet"),
  25976. weight: math.unit(160, "lb"),
  25977. name: "Squatting",
  25978. image: {
  25979. source: "./media/characters/ariam/squatting.svg",
  25980. extra: 2617 / 2112,
  25981. bottom: 61.2 / 2681,
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(6 + 2 / 12, "feet"),
  25989. default: true
  25990. },
  25991. {
  25992. name: "Normal+",
  25993. height: math.unit(4, "meters")
  25994. },
  25995. {
  25996. name: "Macro",
  25997. height: math.unit(50, "meters")
  25998. },
  25999. {
  26000. name: "Macro+",
  26001. height: math.unit(100, "meters")
  26002. },
  26003. {
  26004. name: "Megamacro",
  26005. height: math.unit(20, "km")
  26006. },
  26007. {
  26008. name: "Caretaker",
  26009. height: math.unit(444, "megameters")
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26015. {
  26016. front: {
  26017. height: math.unit(1.67, "meters"),
  26018. weight: math.unit(140, "lb"),
  26019. name: "Front",
  26020. image: {
  26021. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26022. extra: 438 / 410,
  26023. bottom: 0.75 / 439
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Shrunken",
  26030. height: math.unit(7.6, "cm")
  26031. },
  26032. {
  26033. name: "Human Scale",
  26034. height: math.unit(1.67, "meters")
  26035. },
  26036. {
  26037. name: "Wolxi Scale",
  26038. height: math.unit(36.7, "meters"),
  26039. default: true
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(1.73, "meters"),
  26048. weight: math.unit(240, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/izue-two-mothers/front.svg",
  26052. extra: 469 / 437,
  26053. bottom: 1.24 / 470.6
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Shrunken",
  26060. height: math.unit(7.86, "cm")
  26061. },
  26062. {
  26063. name: "Human Scale",
  26064. height: math.unit(1.73, "meters")
  26065. },
  26066. {
  26067. name: "Wolxi Scale",
  26068. height: math.unit(38, "meters"),
  26069. default: true
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26075. {
  26076. front: {
  26077. height: math.unit(1.55, "meters"),
  26078. weight: math.unit(120, "lb"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/teeku-love-shack/front.svg",
  26082. extra: 387 / 362,
  26083. bottom: 1.51 / 388
  26084. }
  26085. },
  26086. },
  26087. [
  26088. {
  26089. name: "Shrunken",
  26090. height: math.unit(7, "cm")
  26091. },
  26092. {
  26093. name: "Human Scale",
  26094. height: math.unit(1.55, "meters")
  26095. },
  26096. {
  26097. name: "Wolxi Scale",
  26098. height: math.unit(34.1, "meters"),
  26099. default: true
  26100. },
  26101. ]
  26102. ))
  26103. characterMakers.push(() => makeCharacter(
  26104. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26105. {
  26106. front: {
  26107. height: math.unit(1.83, "meters"),
  26108. weight: math.unit(135, "lb"),
  26109. name: "Front",
  26110. image: {
  26111. source: "./media/characters/dejma-the-red/front.svg",
  26112. extra: 480 / 458,
  26113. bottom: 1.8 / 482
  26114. }
  26115. },
  26116. },
  26117. [
  26118. {
  26119. name: "Shrunken",
  26120. height: math.unit(8.3, "cm")
  26121. },
  26122. {
  26123. name: "Human Scale",
  26124. height: math.unit(1.83, "meters")
  26125. },
  26126. {
  26127. name: "Wolxi Scale",
  26128. height: math.unit(40, "meters"),
  26129. default: true
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26135. {
  26136. front: {
  26137. height: math.unit(1.78, "meters"),
  26138. weight: math.unit(65, "kg"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/aki/front.svg",
  26142. extra: 452 / 415
  26143. }
  26144. },
  26145. frontNsfw: {
  26146. height: math.unit(1.78, "meters"),
  26147. weight: math.unit(65, "kg"),
  26148. name: "Front (NSFW)",
  26149. image: {
  26150. source: "./media/characters/aki/front-nsfw.svg",
  26151. extra: 452 / 415
  26152. }
  26153. },
  26154. back: {
  26155. height: math.unit(1.78, "meters"),
  26156. weight: math.unit(65, "kg"),
  26157. name: "Back",
  26158. image: {
  26159. source: "./media/characters/aki/back.svg",
  26160. extra: 452 / 415
  26161. }
  26162. },
  26163. rump: {
  26164. height: math.unit(2.05, "feet"),
  26165. name: "Rump",
  26166. image: {
  26167. source: "./media/characters/aki/rump.svg"
  26168. }
  26169. },
  26170. dick: {
  26171. height: math.unit(0.95, "feet"),
  26172. name: "Dick",
  26173. image: {
  26174. source: "./media/characters/aki/dick.svg"
  26175. }
  26176. },
  26177. },
  26178. [
  26179. {
  26180. name: "Micro",
  26181. height: math.unit(15, "cm")
  26182. },
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(178, "cm"),
  26186. default: true
  26187. },
  26188. {
  26189. name: "Macro",
  26190. height: math.unit(214, "m")
  26191. },
  26192. {
  26193. name: "Macro+",
  26194. height: math.unit(534, "m")
  26195. },
  26196. ]
  26197. ))
  26198. characterMakers.push(() => makeCharacter(
  26199. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26200. {
  26201. front: {
  26202. height: math.unit(5 + 5 / 12, "feet"),
  26203. weight: math.unit(120, "lb"),
  26204. name: "Front",
  26205. image: {
  26206. source: "./media/characters/ari/front.svg",
  26207. extra: 1550/1471,
  26208. bottom: 39/1589
  26209. }
  26210. },
  26211. },
  26212. [
  26213. {
  26214. name: "Normal",
  26215. height: math.unit(5 + 5 / 12, "feet")
  26216. },
  26217. {
  26218. name: "Macro",
  26219. height: math.unit(100, "feet"),
  26220. default: true
  26221. },
  26222. {
  26223. name: "Megamacro",
  26224. height: math.unit(100, "miles")
  26225. },
  26226. {
  26227. name: "Gigamacro",
  26228. height: math.unit(80000, "miles")
  26229. },
  26230. ]
  26231. ))
  26232. characterMakers.push(() => makeCharacter(
  26233. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26234. {
  26235. side: {
  26236. height: math.unit(9, "feet"),
  26237. weight: math.unit(400, "kg"),
  26238. name: "Side",
  26239. image: {
  26240. source: "./media/characters/bolt/side.svg",
  26241. extra: 1126 / 896,
  26242. bottom: 60 / 1187.3,
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Micro",
  26249. height: math.unit(5, "inches")
  26250. },
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(9, "feet"),
  26254. default: true
  26255. },
  26256. {
  26257. name: "Macro",
  26258. height: math.unit(700, "feet")
  26259. },
  26260. {
  26261. name: "Max Size",
  26262. height: math.unit(1.52e22, "yottameters")
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26268. {
  26269. front: {
  26270. height: math.unit(4.3, "meters"),
  26271. weight: math.unit(3, "tons"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/draekon-sylviar/front.svg",
  26275. extra: 2072/1512,
  26276. bottom: 74/2146
  26277. }
  26278. },
  26279. back: {
  26280. height: math.unit(4.3, "meters"),
  26281. weight: math.unit(3, "tons"),
  26282. name: "Back",
  26283. image: {
  26284. source: "./media/characters/draekon-sylviar/back.svg",
  26285. extra: 1639/1483,
  26286. bottom: 41/1680
  26287. }
  26288. },
  26289. feral: {
  26290. height: math.unit(1.15, "meters"),
  26291. weight: math.unit(3, "tons"),
  26292. name: "Feral",
  26293. image: {
  26294. source: "./media/characters/draekon-sylviar/feral.svg",
  26295. extra: 1033/395,
  26296. bottom: 130/1163
  26297. }
  26298. },
  26299. maw: {
  26300. height: math.unit(1.3, "meters"),
  26301. name: "Maw",
  26302. image: {
  26303. source: "./media/characters/draekon-sylviar/maw.svg"
  26304. }
  26305. },
  26306. mawSeparated: {
  26307. height: math.unit(1.53, "meters"),
  26308. name: "Separated Maw",
  26309. image: {
  26310. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26311. }
  26312. },
  26313. tail: {
  26314. height: math.unit(1.15, "meters"),
  26315. name: "Tail",
  26316. image: {
  26317. source: "./media/characters/draekon-sylviar/tail.svg"
  26318. }
  26319. },
  26320. tailDick: {
  26321. height: math.unit(1.15, "meters"),
  26322. name: "Tail (Dick)",
  26323. image: {
  26324. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26325. }
  26326. },
  26327. tailDickSeparated: {
  26328. height: math.unit(1.19, "meters"),
  26329. name: "Tail (Separated Dick)",
  26330. image: {
  26331. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26332. }
  26333. },
  26334. slit: {
  26335. height: math.unit(1, "meters"),
  26336. name: "Slit",
  26337. image: {
  26338. source: "./media/characters/draekon-sylviar/slit.svg"
  26339. }
  26340. },
  26341. dick: {
  26342. height: math.unit(1.15, "meters"),
  26343. name: "Dick",
  26344. image: {
  26345. source: "./media/characters/draekon-sylviar/dick.svg"
  26346. }
  26347. },
  26348. dickSeparated: {
  26349. height: math.unit(1.1, "meters"),
  26350. name: "Separated Dick",
  26351. image: {
  26352. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26353. }
  26354. },
  26355. sheath: {
  26356. height: math.unit(1.15, "meters"),
  26357. name: "Sheath",
  26358. image: {
  26359. source: "./media/characters/draekon-sylviar/sheath.svg"
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Small",
  26366. height: math.unit(4.53 / 2, "meters"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(4.53, "meters"),
  26372. default: true
  26373. },
  26374. {
  26375. name: "Large",
  26376. height: math.unit(4.53 * 2, "meters"),
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26382. {
  26383. front: {
  26384. height: math.unit(6 + 2 / 12, "feet"),
  26385. weight: math.unit(180, "lb"),
  26386. name: "Front",
  26387. image: {
  26388. source: "./media/characters/brawler/front.svg",
  26389. extra: 3301 / 3027,
  26390. bottom: 138 / 3439
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Normal",
  26397. height: math.unit(6 + 2 / 12, "feet"),
  26398. default: true
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26404. {
  26405. front: {
  26406. height: math.unit(11, "feet"),
  26407. weight: math.unit(1000, "lb"),
  26408. name: "Front",
  26409. image: {
  26410. source: "./media/characters/alex/front.svg",
  26411. bottom: 44.5 / 620
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Micro",
  26418. height: math.unit(5, "inches")
  26419. },
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(11, "feet"),
  26423. default: true
  26424. },
  26425. {
  26426. name: "Macro",
  26427. height: math.unit(9.5e9, "feet")
  26428. },
  26429. {
  26430. name: "Max Size",
  26431. height: math.unit(1.4e283, "yottameters")
  26432. },
  26433. ]
  26434. ))
  26435. characterMakers.push(() => makeCharacter(
  26436. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26437. {
  26438. female: {
  26439. height: math.unit(29.9, "m"),
  26440. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26441. name: "Female",
  26442. image: {
  26443. source: "./media/characters/zenari/female.svg",
  26444. extra: 3281.6 / 3217,
  26445. bottom: 72.2 / 3353
  26446. }
  26447. },
  26448. male: {
  26449. height: math.unit(27.7, "m"),
  26450. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26451. name: "Male",
  26452. image: {
  26453. source: "./media/characters/zenari/male.svg",
  26454. extra: 3008 / 2991,
  26455. bottom: 54.6 / 3069
  26456. }
  26457. },
  26458. },
  26459. [
  26460. {
  26461. name: "Macro",
  26462. height: math.unit(29.7, "meters"),
  26463. default: true
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26469. {
  26470. female: {
  26471. height: math.unit(23.8, "m"),
  26472. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26473. name: "Female",
  26474. image: {
  26475. source: "./media/characters/mactarian/female.svg",
  26476. extra: 2662 / 2569,
  26477. bottom: 73 / 2736
  26478. }
  26479. },
  26480. male: {
  26481. height: math.unit(23.8, "m"),
  26482. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26483. name: "Male",
  26484. image: {
  26485. source: "./media/characters/mactarian/male.svg",
  26486. extra: 2673 / 2600,
  26487. bottom: 76 / 2750
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Macro",
  26494. height: math.unit(23.8, "meters"),
  26495. default: true
  26496. },
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26501. {
  26502. female: {
  26503. height: math.unit(19.3, "m"),
  26504. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26505. name: "Female",
  26506. image: {
  26507. source: "./media/characters/umok/female.svg",
  26508. extra: 2186 / 2078,
  26509. bottom: 87 / 2277
  26510. }
  26511. },
  26512. male: {
  26513. height: math.unit(19.5, "m"),
  26514. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26515. name: "Male",
  26516. image: {
  26517. source: "./media/characters/umok/male.svg",
  26518. extra: 2233 / 2140,
  26519. bottom: 24.4 / 2258
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Macro",
  26526. height: math.unit(19.3, "meters"),
  26527. default: true
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26533. {
  26534. female: {
  26535. height: math.unit(26.15, "m"),
  26536. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26537. name: "Female",
  26538. image: {
  26539. source: "./media/characters/joraxian/female.svg",
  26540. extra: 2912 / 2824,
  26541. bottom: 36 / 2956
  26542. }
  26543. },
  26544. male: {
  26545. height: math.unit(25.4, "m"),
  26546. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26547. name: "Male",
  26548. image: {
  26549. source: "./media/characters/joraxian/male.svg",
  26550. extra: 2877 / 2721,
  26551. bottom: 82 / 2967
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Macro",
  26558. height: math.unit(26.15, "meters"),
  26559. default: true
  26560. },
  26561. ]
  26562. ))
  26563. characterMakers.push(() => makeCharacter(
  26564. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26565. {
  26566. female: {
  26567. height: math.unit(21.6, "m"),
  26568. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26569. name: "Female",
  26570. image: {
  26571. source: "./media/characters/sthara/female.svg",
  26572. extra: 2516 / 2347,
  26573. bottom: 21.5 / 2537
  26574. }
  26575. },
  26576. male: {
  26577. height: math.unit(24, "m"),
  26578. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26579. name: "Male",
  26580. image: {
  26581. source: "./media/characters/sthara/male.svg",
  26582. extra: 2732 / 2607,
  26583. bottom: 23 / 2732
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Macro",
  26590. height: math.unit(21.6, "meters"),
  26591. default: true
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26597. {
  26598. front: {
  26599. height: math.unit(6 + 4 / 12, "feet"),
  26600. weight: math.unit(175, "lb"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/luka-bryzant/front.svg",
  26604. extra: 311 / 289,
  26605. bottom: 4 / 315
  26606. }
  26607. },
  26608. back: {
  26609. height: math.unit(6 + 4 / 12, "feet"),
  26610. weight: math.unit(175, "lb"),
  26611. name: "Back",
  26612. image: {
  26613. source: "./media/characters/luka-bryzant/back.svg",
  26614. extra: 311 / 289,
  26615. bottom: 3.8 / 313.7
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Micro",
  26622. height: math.unit(10, "inches")
  26623. },
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(6 + 4 / 12, "feet"),
  26627. default: true
  26628. },
  26629. {
  26630. name: "Large",
  26631. height: math.unit(12, "feet")
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(5 + 7 / 12, "feet"),
  26640. weight: math.unit(185, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/aman-aquila/front.svg",
  26644. extra: 1013 / 976,
  26645. bottom: 45.6 / 1057
  26646. }
  26647. },
  26648. side: {
  26649. height: math.unit(5 + 7 / 12, "feet"),
  26650. weight: math.unit(185, "lb"),
  26651. name: "Side",
  26652. image: {
  26653. source: "./media/characters/aman-aquila/side.svg",
  26654. extra: 1054 / 1011,
  26655. bottom: 15 / 1070
  26656. }
  26657. },
  26658. back: {
  26659. height: math.unit(5 + 7 / 12, "feet"),
  26660. weight: math.unit(185, "lb"),
  26661. name: "Back",
  26662. image: {
  26663. source: "./media/characters/aman-aquila/back.svg",
  26664. extra: 1026 / 970,
  26665. bottom: 12 / 1039
  26666. }
  26667. },
  26668. head: {
  26669. height: math.unit(1.211, "feet"),
  26670. name: "Head",
  26671. image: {
  26672. source: "./media/characters/aman-aquila/head.svg",
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "Minimicro",
  26679. height: math.unit(0.057, "inches")
  26680. },
  26681. {
  26682. name: "Micro",
  26683. height: math.unit(7, "inches")
  26684. },
  26685. {
  26686. name: "Mini",
  26687. height: math.unit(3 + 7 / 12, "feet")
  26688. },
  26689. {
  26690. name: "Normal",
  26691. height: math.unit(5 + 7 / 12, "feet"),
  26692. default: true
  26693. },
  26694. {
  26695. name: "Macro",
  26696. height: math.unit(157 + 7 / 12, "feet")
  26697. },
  26698. {
  26699. name: "Megamacro",
  26700. height: math.unit(1557 + 7 / 12, "feet")
  26701. },
  26702. {
  26703. name: "Gigamacro",
  26704. height: math.unit(15557 + 7 / 12, "feet")
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26710. {
  26711. front: {
  26712. height: math.unit(3 + 2 / 12, "inches"),
  26713. weight: math.unit(0.3, "ounces"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/hiphae/front.svg",
  26717. extra: 1931 / 1683,
  26718. bottom: 24 / 1955
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(3 + 1 / 2, "inches"),
  26726. default: true
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26732. {
  26733. front: {
  26734. height: math.unit(5 + 10 / 12, "feet"),
  26735. weight: math.unit(165, "lb"),
  26736. name: "Front",
  26737. image: {
  26738. source: "./media/characters/nicky/front.svg",
  26739. extra: 3144 / 2886,
  26740. bottom: 45.6 / 3192
  26741. }
  26742. },
  26743. back: {
  26744. height: math.unit(5 + 10 / 12, "feet"),
  26745. weight: math.unit(165, "lb"),
  26746. name: "Back",
  26747. image: {
  26748. source: "./media/characters/nicky/back.svg",
  26749. extra: 3055 / 2804,
  26750. bottom: 28.4 / 3087
  26751. }
  26752. },
  26753. frontclothed: {
  26754. height: math.unit(5 + 10 / 12, "feet"),
  26755. weight: math.unit(165, "lb"),
  26756. name: "Front-clothed",
  26757. image: {
  26758. source: "./media/characters/nicky/front-clothed.svg",
  26759. extra: 3184.9 / 2926.9,
  26760. bottom: 86.5 / 3239.9
  26761. }
  26762. },
  26763. foot: {
  26764. height: math.unit(1.16, "feet"),
  26765. name: "Foot",
  26766. image: {
  26767. source: "./media/characters/nicky/foot.svg"
  26768. }
  26769. },
  26770. feet: {
  26771. height: math.unit(1.34, "feet"),
  26772. name: "Feet",
  26773. image: {
  26774. source: "./media/characters/nicky/feet.svg"
  26775. }
  26776. },
  26777. maw: {
  26778. height: math.unit(0.9, "feet"),
  26779. name: "Maw",
  26780. image: {
  26781. source: "./media/characters/nicky/maw.svg"
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(5 + 10 / 12, "feet"),
  26789. default: true
  26790. },
  26791. {
  26792. name: "Macro",
  26793. height: math.unit(60, "feet")
  26794. },
  26795. {
  26796. name: "Megamacro",
  26797. height: math.unit(1, "mile")
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26803. {
  26804. side: {
  26805. height: math.unit(10, "feet"),
  26806. weight: math.unit(600, "lb"),
  26807. name: "Side",
  26808. image: {
  26809. source: "./media/characters/blair/side.svg",
  26810. bottom: 16.6 / 475,
  26811. extra: 458 / 431
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Micro",
  26818. height: math.unit(8, "inches")
  26819. },
  26820. {
  26821. name: "Normal",
  26822. height: math.unit(10, "feet"),
  26823. default: true
  26824. },
  26825. {
  26826. name: "Macro",
  26827. height: math.unit(180, "feet")
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(5 + 4 / 12, "feet"),
  26836. weight: math.unit(125, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/fisher/front.svg",
  26840. extra: 444 / 390,
  26841. bottom: 2 / 444.8
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Micro",
  26848. height: math.unit(4, "inches")
  26849. },
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(5 + 4 / 12, "feet"),
  26853. default: true
  26854. },
  26855. {
  26856. name: "Macro",
  26857. height: math.unit(100, "feet")
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26863. {
  26864. front: {
  26865. height: math.unit(6.71, "feet"),
  26866. weight: math.unit(200, "lb"),
  26867. preyCapacity: math.unit(1000000, "people"),
  26868. name: "Front",
  26869. image: {
  26870. source: "./media/characters/gliss/front.svg",
  26871. extra: 2347 / 2231,
  26872. bottom: 113 / 2462
  26873. }
  26874. },
  26875. hammerspaceSize: {
  26876. height: math.unit(6.71 * 717, "feet"),
  26877. weight: math.unit(200, "lb"),
  26878. preyCapacity: math.unit(1000000, "people"),
  26879. name: "Hammerspace Size",
  26880. image: {
  26881. source: "./media/characters/gliss/front.svg",
  26882. extra: 2347 / 2231,
  26883. bottom: 113 / 2462
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(6.71, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26897. {
  26898. side: {
  26899. height: math.unit(1.44, "m"),
  26900. weight: math.unit(80, "kg"),
  26901. name: "Side",
  26902. image: {
  26903. source: "./media/characters/dune-anderson/side.svg",
  26904. bottom: 49 / 1426
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Wolf-sized",
  26911. height: math.unit(1.44, "meters")
  26912. },
  26913. {
  26914. name: "Normal",
  26915. height: math.unit(5.05, "meters"),
  26916. default: true
  26917. },
  26918. {
  26919. name: "Big",
  26920. height: math.unit(14.4, "meters")
  26921. },
  26922. {
  26923. name: "Huge",
  26924. height: math.unit(144, "meters")
  26925. },
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26930. {
  26931. front: {
  26932. height: math.unit(7, "feet"),
  26933. weight: math.unit(425, "lb"),
  26934. name: "Front",
  26935. image: {
  26936. source: "./media/characters/hind/front.svg",
  26937. extra: 2091 / 1860,
  26938. bottom: 129 / 2220
  26939. }
  26940. },
  26941. back: {
  26942. height: math.unit(7, "feet"),
  26943. weight: math.unit(425, "lb"),
  26944. name: "Back",
  26945. image: {
  26946. source: "./media/characters/hind/back.svg",
  26947. extra: 2091 / 1860,
  26948. bottom: 24.6 / 2309
  26949. }
  26950. },
  26951. tail: {
  26952. height: math.unit(2.8, "feet"),
  26953. name: "Tail",
  26954. image: {
  26955. source: "./media/characters/hind/tail.svg"
  26956. }
  26957. },
  26958. head: {
  26959. height: math.unit(2.55, "feet"),
  26960. name: "Head",
  26961. image: {
  26962. source: "./media/characters/hind/head.svg"
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "XS",
  26969. height: math.unit(0.7, "feet")
  26970. },
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(7, "feet"),
  26974. default: true
  26975. },
  26976. {
  26977. name: "XL",
  26978. height: math.unit(70, "feet")
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(2.1, "meters"),
  26987. weight: math.unit(150, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/tharquench-sizestealer/front.svg",
  26991. extra: 1605/1470,
  26992. bottom: 36/1641
  26993. }
  26994. },
  26995. frontAlt: {
  26996. height: math.unit(2.1, "meters"),
  26997. weight: math.unit(150, "lb"),
  26998. name: "Front (Alt)",
  26999. image: {
  27000. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27001. extra: 2318 / 2063,
  27002. bottom: 93.4 / 2410
  27003. }
  27004. },
  27005. },
  27006. [
  27007. {
  27008. name: "Nano",
  27009. height: math.unit(1, "mm")
  27010. },
  27011. {
  27012. name: "Micro",
  27013. height: math.unit(1, "cm")
  27014. },
  27015. {
  27016. name: "Normal",
  27017. height: math.unit(2.1, "meters"),
  27018. default: true
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27024. {
  27025. front: {
  27026. height: math.unit(7 + 5 / 12, "feet"),
  27027. weight: math.unit(357, "lb"),
  27028. name: "Front",
  27029. image: {
  27030. source: "./media/characters/solex-draconov/front.svg",
  27031. extra: 1993 / 1865,
  27032. bottom: 117 / 2111
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Natural Height",
  27039. height: math.unit(7 + 5 / 12, "feet"),
  27040. default: true
  27041. },
  27042. {
  27043. name: "Macro",
  27044. height: math.unit(350, "feet")
  27045. },
  27046. {
  27047. name: "Macro+",
  27048. height: math.unit(1000, "feet")
  27049. },
  27050. {
  27051. name: "Megamacro",
  27052. height: math.unit(20, "km")
  27053. },
  27054. {
  27055. name: "Megamacro+",
  27056. height: math.unit(1000, "km")
  27057. },
  27058. {
  27059. name: "Gigamacro",
  27060. height: math.unit(2.5, "Gm")
  27061. },
  27062. {
  27063. name: "Teramacro",
  27064. height: math.unit(15, "Tm")
  27065. },
  27066. {
  27067. name: "Galactic",
  27068. height: math.unit(30, "Zm")
  27069. },
  27070. {
  27071. name: "Universal",
  27072. height: math.unit(21000, "Ym")
  27073. },
  27074. {
  27075. name: "Omniversal",
  27076. height: math.unit(9.861e50, "Ym")
  27077. },
  27078. {
  27079. name: "Existential",
  27080. height: math.unit(1e300, "meters")
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27086. {
  27087. side: {
  27088. height: math.unit(25, "feet"),
  27089. weight: math.unit(90000, "lb"),
  27090. name: "Side",
  27091. image: {
  27092. source: "./media/characters/mandarax/side.svg",
  27093. extra: 614 / 332,
  27094. bottom: 55 / 630
  27095. }
  27096. },
  27097. lounging: {
  27098. height: math.unit(15.4, "feet"),
  27099. weight: math.unit(90000, "lb"),
  27100. name: "Lounging",
  27101. image: {
  27102. source: "./media/characters/mandarax/lounging.svg",
  27103. extra: 817/609,
  27104. bottom: 685/1502
  27105. }
  27106. },
  27107. head: {
  27108. height: math.unit(11.4, "feet"),
  27109. name: "Head",
  27110. image: {
  27111. source: "./media/characters/mandarax/head.svg"
  27112. }
  27113. },
  27114. belly: {
  27115. height: math.unit(33, "feet"),
  27116. name: "Belly",
  27117. preyCapacity: math.unit(500, "people"),
  27118. image: {
  27119. source: "./media/characters/mandarax/belly.svg"
  27120. }
  27121. },
  27122. dick: {
  27123. height: math.unit(8.46, "feet"),
  27124. name: "Dick",
  27125. image: {
  27126. source: "./media/characters/mandarax/dick.svg"
  27127. }
  27128. },
  27129. top: {
  27130. height: math.unit(28, "meters"),
  27131. name: "Top",
  27132. image: {
  27133. source: "./media/characters/mandarax/top.svg"
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "Normal",
  27140. height: math.unit(25, "feet"),
  27141. default: true
  27142. },
  27143. ]
  27144. ))
  27145. characterMakers.push(() => makeCharacter(
  27146. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27147. {
  27148. front: {
  27149. height: math.unit(5, "feet"),
  27150. weight: math.unit(90, "lb"),
  27151. name: "Front",
  27152. image: {
  27153. source: "./media/characters/pixil/front.svg",
  27154. extra: 2000 / 1618,
  27155. bottom: 12.3 / 2011
  27156. }
  27157. },
  27158. },
  27159. [
  27160. {
  27161. name: "Normal",
  27162. height: math.unit(5, "feet"),
  27163. default: true
  27164. },
  27165. {
  27166. name: "Megamacro",
  27167. height: math.unit(10, "miles"),
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27173. {
  27174. front: {
  27175. height: math.unit(7 + 2 / 12, "feet"),
  27176. weight: math.unit(200, "lb"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/angel/front.svg",
  27180. extra: 1830 / 1737,
  27181. bottom: 22.6 / 1854,
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(7 + 2 / 12, "feet"),
  27189. default: true
  27190. },
  27191. {
  27192. name: "Macro",
  27193. height: math.unit(1000, "feet")
  27194. },
  27195. {
  27196. name: "Megamacro",
  27197. height: math.unit(2, "miles")
  27198. },
  27199. {
  27200. name: "Gigamacro",
  27201. height: math.unit(20, "earths")
  27202. },
  27203. ]
  27204. ))
  27205. characterMakers.push(() => makeCharacter(
  27206. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27207. {
  27208. front: {
  27209. height: math.unit(5, "feet"),
  27210. weight: math.unit(180, "lb"),
  27211. name: "Front",
  27212. image: {
  27213. source: "./media/characters/mekana/front.svg",
  27214. extra: 1671 / 1605,
  27215. bottom: 3.5 / 1691
  27216. }
  27217. },
  27218. side: {
  27219. height: math.unit(5, "feet"),
  27220. weight: math.unit(180, "lb"),
  27221. name: "Side",
  27222. image: {
  27223. source: "./media/characters/mekana/side.svg",
  27224. extra: 1671 / 1605,
  27225. bottom: 3.5 / 1691
  27226. }
  27227. },
  27228. back: {
  27229. height: math.unit(5, "feet"),
  27230. weight: math.unit(180, "lb"),
  27231. name: "Back",
  27232. image: {
  27233. source: "./media/characters/mekana/back.svg",
  27234. extra: 1671 / 1605,
  27235. bottom: 3.5 / 1691
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(5, "feet"),
  27243. default: true
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(4 + 6 / 12, "feet"),
  27252. weight: math.unit(80, "lb"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/pixie/front.svg",
  27256. extra: 1924 / 1825,
  27257. bottom: 22.4 / 1946
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Normal",
  27264. height: math.unit(4 + 6 / 12, "feet"),
  27265. default: true
  27266. },
  27267. {
  27268. name: "Macro",
  27269. height: math.unit(40, "feet")
  27270. },
  27271. ]
  27272. ))
  27273. characterMakers.push(() => makeCharacter(
  27274. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27275. {
  27276. front: {
  27277. height: math.unit(2.1, "meters"),
  27278. weight: math.unit(200, "lb"),
  27279. name: "Front",
  27280. image: {
  27281. source: "./media/characters/the-lascivious/front.svg",
  27282. extra: 1 / 0.893,
  27283. bottom: 3.5 / 573.7
  27284. }
  27285. },
  27286. },
  27287. [
  27288. {
  27289. name: "Human Scale",
  27290. height: math.unit(2.1, "meters")
  27291. },
  27292. {
  27293. name: "Wolxi Scale",
  27294. height: math.unit(46.2, "m"),
  27295. default: true
  27296. },
  27297. {
  27298. name: "Boinker of Buildings",
  27299. height: math.unit(10, "km")
  27300. },
  27301. {
  27302. name: "Shagger of Skyscrapers",
  27303. height: math.unit(40, "km")
  27304. },
  27305. {
  27306. name: "Banger of Boroughs",
  27307. height: math.unit(4000, "km")
  27308. },
  27309. {
  27310. name: "Screwer of States",
  27311. height: math.unit(100000, "km")
  27312. },
  27313. {
  27314. name: "Pounder of Planets",
  27315. height: math.unit(2000000, "km")
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27321. {
  27322. front: {
  27323. height: math.unit(6, "feet"),
  27324. weight: math.unit(150, "lb"),
  27325. name: "Front",
  27326. image: {
  27327. source: "./media/characters/aj/front.svg",
  27328. extra: 2039 / 1562,
  27329. bottom: 40 / 2079
  27330. }
  27331. },
  27332. },
  27333. [
  27334. {
  27335. name: "Normal",
  27336. height: math.unit(11 + 6 / 12, "feet"),
  27337. default: true
  27338. },
  27339. {
  27340. name: "Megamacro",
  27341. height: math.unit(60, "megameters")
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27347. {
  27348. side: {
  27349. height: math.unit(31 + 8 / 12, "feet"),
  27350. weight: math.unit(75000, "kg"),
  27351. name: "Side",
  27352. image: {
  27353. source: "./media/characters/koros/side.svg",
  27354. extra: 1442 / 1297,
  27355. bottom: 122.7 / 1562
  27356. }
  27357. },
  27358. dicksKingsCrown: {
  27359. height: math.unit(6, "feet"),
  27360. name: "Dicks (King's Crown)",
  27361. image: {
  27362. source: "./media/characters/koros/dicks-kings-crown.svg"
  27363. }
  27364. },
  27365. dicksTailSet: {
  27366. height: math.unit(3, "feet"),
  27367. name: "Dicks (Tail Set)",
  27368. image: {
  27369. source: "./media/characters/koros/dicks-tail-set.svg"
  27370. }
  27371. },
  27372. dickCumming: {
  27373. height: math.unit(7.98, "feet"),
  27374. name: "Dick (Cumming)",
  27375. image: {
  27376. source: "./media/characters/koros/dick-cumming.svg"
  27377. }
  27378. },
  27379. dicksBack: {
  27380. height: math.unit(5.9, "feet"),
  27381. name: "Dicks (Back)",
  27382. image: {
  27383. source: "./media/characters/koros/dicks-back.svg"
  27384. }
  27385. },
  27386. dicksFront: {
  27387. height: math.unit(3.72, "feet"),
  27388. name: "Dicks (Front)",
  27389. image: {
  27390. source: "./media/characters/koros/dicks-front.svg"
  27391. }
  27392. },
  27393. dicksPeeking: {
  27394. height: math.unit(3.0, "feet"),
  27395. name: "Dicks (Peeking)",
  27396. image: {
  27397. source: "./media/characters/koros/dicks-peeking.svg"
  27398. }
  27399. },
  27400. eye: {
  27401. height: math.unit(1.7, "feet"),
  27402. name: "Eye",
  27403. image: {
  27404. source: "./media/characters/koros/eye.svg"
  27405. }
  27406. },
  27407. headFront: {
  27408. height: math.unit(11.69, "feet"),
  27409. name: "Head (Front)",
  27410. image: {
  27411. source: "./media/characters/koros/head-front.svg"
  27412. }
  27413. },
  27414. headSide: {
  27415. height: math.unit(14, "feet"),
  27416. name: "Head (Side)",
  27417. image: {
  27418. source: "./media/characters/koros/head-side.svg"
  27419. }
  27420. },
  27421. leg: {
  27422. height: math.unit(17, "feet"),
  27423. name: "Leg",
  27424. image: {
  27425. source: "./media/characters/koros/leg.svg"
  27426. }
  27427. },
  27428. mawSide: {
  27429. height: math.unit(12.8, "feet"),
  27430. name: "Maw (Side)",
  27431. image: {
  27432. source: "./media/characters/koros/maw-side.svg"
  27433. }
  27434. },
  27435. mawSpitting: {
  27436. height: math.unit(17, "feet"),
  27437. name: "Maw (Spitting)",
  27438. image: {
  27439. source: "./media/characters/koros/maw-spitting.svg"
  27440. }
  27441. },
  27442. slit: {
  27443. height: math.unit(2.8, "feet"),
  27444. name: "Slit",
  27445. image: {
  27446. source: "./media/characters/koros/slit.svg"
  27447. }
  27448. },
  27449. stomach: {
  27450. height: math.unit(6.8, "feet"),
  27451. preyCapacity: math.unit(20, "people"),
  27452. name: "Stomach",
  27453. image: {
  27454. source: "./media/characters/koros/stomach.svg"
  27455. }
  27456. },
  27457. wingspanBottom: {
  27458. height: math.unit(114, "feet"),
  27459. name: "Wingspan (Bottom)",
  27460. image: {
  27461. source: "./media/characters/koros/wingspan-bottom.svg"
  27462. }
  27463. },
  27464. wingspanTop: {
  27465. height: math.unit(104, "feet"),
  27466. name: "Wingspan (Top)",
  27467. image: {
  27468. source: "./media/characters/koros/wingspan-top.svg"
  27469. }
  27470. },
  27471. },
  27472. [
  27473. {
  27474. name: "Normal",
  27475. height: math.unit(31 + 8 / 12, "feet"),
  27476. default: true
  27477. },
  27478. ]
  27479. ))
  27480. characterMakers.push(() => makeCharacter(
  27481. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27482. {
  27483. front: {
  27484. height: math.unit(18 + 5 / 12, "feet"),
  27485. weight: math.unit(3750, "kg"),
  27486. name: "Front",
  27487. image: {
  27488. source: "./media/characters/vexx/front.svg",
  27489. extra: 426 / 396,
  27490. bottom: 31.5 / 458
  27491. }
  27492. },
  27493. maw: {
  27494. height: math.unit(6, "feet"),
  27495. name: "Maw",
  27496. image: {
  27497. source: "./media/characters/vexx/maw.svg"
  27498. }
  27499. },
  27500. },
  27501. [
  27502. {
  27503. name: "Normal",
  27504. height: math.unit(18 + 5 / 12, "feet"),
  27505. default: true
  27506. },
  27507. ]
  27508. ))
  27509. characterMakers.push(() => makeCharacter(
  27510. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27511. {
  27512. front: {
  27513. height: math.unit(17 + 6 / 12, "feet"),
  27514. weight: math.unit(150, "lb"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/baadra/front.svg",
  27518. extra: 1694/1553,
  27519. bottom: 179/1873
  27520. }
  27521. },
  27522. frontAlt: {
  27523. height: math.unit(17 + 6 / 12, "feet"),
  27524. weight: math.unit(150, "lb"),
  27525. name: "Front (Alt)",
  27526. image: {
  27527. source: "./media/characters/baadra/front-alt.svg",
  27528. extra: 3137 / 2890,
  27529. bottom: 168.4 / 3305
  27530. }
  27531. },
  27532. back: {
  27533. height: math.unit(17 + 6 / 12, "feet"),
  27534. weight: math.unit(150, "lb"),
  27535. name: "Back",
  27536. image: {
  27537. source: "./media/characters/baadra/back.svg",
  27538. extra: 3142 / 2890,
  27539. bottom: 220 / 3371
  27540. }
  27541. },
  27542. head: {
  27543. height: math.unit(5.45, "feet"),
  27544. name: "Head",
  27545. image: {
  27546. source: "./media/characters/baadra/head.svg"
  27547. }
  27548. },
  27549. headAngry: {
  27550. height: math.unit(4.95, "feet"),
  27551. name: "Head (Angry)",
  27552. image: {
  27553. source: "./media/characters/baadra/head-angry.svg"
  27554. }
  27555. },
  27556. headOpen: {
  27557. height: math.unit(6, "feet"),
  27558. name: "Head (Open)",
  27559. image: {
  27560. source: "./media/characters/baadra/head-open.svg"
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Normal",
  27567. height: math.unit(17 + 6 / 12, "feet"),
  27568. default: true
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(7 + 3 / 12, "feet"),
  27577. weight: math.unit(180, "lb"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/juri/front.svg",
  27581. extra: 1401 / 1237,
  27582. bottom: 18.5 / 1418
  27583. }
  27584. },
  27585. side: {
  27586. height: math.unit(7 + 3 / 12, "feet"),
  27587. weight: math.unit(180, "lb"),
  27588. name: "Side",
  27589. image: {
  27590. source: "./media/characters/juri/side.svg",
  27591. extra: 1424 / 1242,
  27592. bottom: 18.5 / 1447
  27593. }
  27594. },
  27595. sitting: {
  27596. height: math.unit(6, "feet"),
  27597. weight: math.unit(180, "lb"),
  27598. name: "Sitting",
  27599. image: {
  27600. source: "./media/characters/juri/sitting.svg",
  27601. extra: 1270 / 1143,
  27602. bottom: 100 / 1343
  27603. }
  27604. },
  27605. back: {
  27606. height: math.unit(7 + 3 / 12, "feet"),
  27607. weight: math.unit(180, "lb"),
  27608. name: "Back",
  27609. image: {
  27610. source: "./media/characters/juri/back.svg",
  27611. extra: 1377 / 1240,
  27612. bottom: 23.7 / 1405
  27613. }
  27614. },
  27615. maw: {
  27616. height: math.unit(2.8, "feet"),
  27617. name: "Maw",
  27618. image: {
  27619. source: "./media/characters/juri/maw.svg"
  27620. }
  27621. },
  27622. stomach: {
  27623. height: math.unit(0.89, "feet"),
  27624. preyCapacity: math.unit(4, "liters"),
  27625. name: "Stomach",
  27626. image: {
  27627. source: "./media/characters/juri/stomach.svg"
  27628. }
  27629. },
  27630. },
  27631. [
  27632. {
  27633. name: "Normal",
  27634. height: math.unit(7 + 3 / 12, "feet"),
  27635. default: true
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27641. {
  27642. fox: {
  27643. height: math.unit(5 + 6 / 12, "feet"),
  27644. weight: math.unit(140, "lb"),
  27645. name: "Fox",
  27646. image: {
  27647. source: "./media/characters/maxene-sita/fox.svg",
  27648. extra: 146 / 138,
  27649. bottom: 2.1 / 148.19
  27650. }
  27651. },
  27652. foxLaying: {
  27653. height: math.unit(1.70, "feet"),
  27654. weight: math.unit(140, "lb"),
  27655. name: "Fox (Laying)",
  27656. image: {
  27657. source: "./media/characters/maxene-sita/fox-laying.svg",
  27658. extra: 910 / 572,
  27659. bottom: 71 / 981
  27660. }
  27661. },
  27662. kitsune: {
  27663. height: math.unit(10, "feet"),
  27664. weight: math.unit(800, "lb"),
  27665. name: "Kitsune",
  27666. image: {
  27667. source: "./media/characters/maxene-sita/kitsune.svg",
  27668. extra: 185 / 176,
  27669. bottom: 4.7 / 189.9
  27670. }
  27671. },
  27672. hellhound: {
  27673. height: math.unit(10, "feet"),
  27674. weight: math.unit(700, "lb"),
  27675. name: "Hellhound",
  27676. image: {
  27677. source: "./media/characters/maxene-sita/hellhound.svg",
  27678. extra: 1600 / 1545,
  27679. bottom: 81 / 1681
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(5 + 6 / 12, "feet"),
  27687. default: true
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27693. {
  27694. front: {
  27695. height: math.unit(3 + 4 / 12, "feet"),
  27696. weight: math.unit(70, "lb"),
  27697. name: "Front",
  27698. image: {
  27699. source: "./media/characters/maia/front.svg",
  27700. extra: 227 / 219.5,
  27701. bottom: 40 / 267
  27702. }
  27703. },
  27704. back: {
  27705. height: math.unit(3 + 4 / 12, "feet"),
  27706. weight: math.unit(70, "lb"),
  27707. name: "Back",
  27708. image: {
  27709. source: "./media/characters/maia/back.svg",
  27710. extra: 237 / 225
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(3 + 4 / 12, "feet"),
  27718. default: true
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(5 + 10 / 12, "feet"),
  27727. weight: math.unit(197, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/jabaro/front.svg",
  27731. extra: 225 / 216,
  27732. bottom: 5.06 / 230
  27733. }
  27734. },
  27735. back: {
  27736. height: math.unit(5 + 10 / 12, "feet"),
  27737. weight: math.unit(197, "lb"),
  27738. name: "Back",
  27739. image: {
  27740. source: "./media/characters/jabaro/back.svg",
  27741. extra: 225 / 219,
  27742. bottom: 1.9 / 227
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(5 + 10 / 12, "feet"),
  27750. default: true
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(5 + 8 / 12, "feet"),
  27759. weight: math.unit(139, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/risa/front.svg",
  27763. extra: 270 / 260,
  27764. bottom: 11.2 / 282
  27765. }
  27766. },
  27767. back: {
  27768. height: math.unit(5 + 8 / 12, "feet"),
  27769. weight: math.unit(139, "lb"),
  27770. name: "Back",
  27771. image: {
  27772. source: "./media/characters/risa/back.svg",
  27773. extra: 264 / 255,
  27774. bottom: 4 / 268
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(5 + 8 / 12, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(2 + 11 / 12, "feet"),
  27791. weight: math.unit(30, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/weatley/front.svg",
  27795. bottom: 10.7 / 414,
  27796. extra: 403.5 / 362
  27797. }
  27798. },
  27799. back: {
  27800. height: math.unit(2 + 11 / 12, "feet"),
  27801. weight: math.unit(30, "lb"),
  27802. name: "Back",
  27803. image: {
  27804. source: "./media/characters/weatley/back.svg",
  27805. bottom: 10.7 / 414,
  27806. extra: 403.5 / 362
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(2 + 11 / 12, "feet"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27820. {
  27821. front: {
  27822. height: math.unit(5 + 2 / 12, "feet"),
  27823. weight: math.unit(50, "kg"),
  27824. name: "Front",
  27825. image: {
  27826. source: "./media/characters/mercury-crescent/front.svg",
  27827. extra: 1088 / 1033,
  27828. bottom: 18.9 / 1109
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(5 + 2 / 12, "feet"),
  27836. default: true
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(2, "feet"),
  27845. weight: math.unit(15, "kg"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/diamond-jones/front.svg",
  27849. extra: 727/723,
  27850. bottom: 46/773
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(2, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(3, "feet"),
  27867. weight: math.unit(30, "kg"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/sweet-bit/front.svg",
  27871. extra: 675 / 567,
  27872. bottom: 27.7 / 703
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(3, "feet"),
  27880. default: true
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27886. {
  27887. side: {
  27888. height: math.unit(9.178, "feet"),
  27889. weight: math.unit(500, "lb"),
  27890. name: "Side",
  27891. image: {
  27892. source: "./media/characters/umbrazen/side.svg",
  27893. extra: 1730 / 1473,
  27894. bottom: 34.6 / 1765
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(9.178, "feet"),
  27902. default: true
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(10, "feet"),
  27911. weight: math.unit(750, "lb"),
  27912. name: "Front",
  27913. image: {
  27914. source: "./media/characters/arlist/front.svg",
  27915. extra: 961 / 778,
  27916. bottom: 6.2 / 986
  27917. }
  27918. },
  27919. },
  27920. [
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(10, "feet"),
  27924. default: true
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27930. {
  27931. front: {
  27932. height: math.unit(5 + 1 / 12, "feet"),
  27933. weight: math.unit(110, "lb"),
  27934. name: "Front",
  27935. image: {
  27936. source: "./media/characters/aradel/front.svg",
  27937. extra: 324 / 303,
  27938. bottom: 3.6 / 329.4
  27939. }
  27940. },
  27941. },
  27942. [
  27943. {
  27944. name: "Normal",
  27945. height: math.unit(5 + 1 / 12, "feet"),
  27946. default: true
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27952. {
  27953. dressed: {
  27954. height: math.unit(3 + 8 / 12, "feet"),
  27955. weight: math.unit(50, "lb"),
  27956. name: "Dressed",
  27957. image: {
  27958. source: "./media/characters/serryn/dressed.svg",
  27959. extra: 1792 / 1656,
  27960. bottom: 43.5 / 1840
  27961. }
  27962. },
  27963. nude: {
  27964. height: math.unit(3 + 8 / 12, "feet"),
  27965. weight: math.unit(50, "lb"),
  27966. name: "Nude",
  27967. image: {
  27968. source: "./media/characters/serryn/nude.svg",
  27969. extra: 1792 / 1656,
  27970. bottom: 43.5 / 1840
  27971. }
  27972. },
  27973. },
  27974. [
  27975. {
  27976. name: "Normal",
  27977. height: math.unit(3 + 8 / 12, "feet"),
  27978. default: true
  27979. },
  27980. ]
  27981. ))
  27982. characterMakers.push(() => makeCharacter(
  27983. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27984. {
  27985. front: {
  27986. height: math.unit(7 + 10 / 12, "feet"),
  27987. weight: math.unit(255, "lb"),
  27988. name: "Front",
  27989. image: {
  27990. source: "./media/characters/xavier-thyme/front.svg",
  27991. extra: 3733 / 3642,
  27992. bottom: 131 / 3869
  27993. }
  27994. },
  27995. frontRaven: {
  27996. height: math.unit(7 + 10 / 12, "feet"),
  27997. weight: math.unit(255, "lb"),
  27998. name: "Front (Raven)",
  27999. image: {
  28000. source: "./media/characters/xavier-thyme/front-raven.svg",
  28001. extra: 4385 / 3642,
  28002. bottom: 131 / 4517
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Normal",
  28009. height: math.unit(7 + 10 / 12, "feet"),
  28010. default: true
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(1.6, "m"),
  28019. weight: math.unit(50, "kg"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/kiki/front.svg",
  28023. extra: 4682 / 3610,
  28024. bottom: 115 / 4777
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(1.6, "meters"),
  28032. default: true
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28038. {
  28039. front: {
  28040. height: math.unit(50, "m"),
  28041. weight: math.unit(500, "tonnes"),
  28042. name: "Front",
  28043. image: {
  28044. source: "./media/characters/ryoko/front.svg",
  28045. extra: 4632 / 3926,
  28046. bottom: 193 / 4823
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Normal",
  28053. height: math.unit(50, "meters"),
  28054. default: true
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(30, "m"),
  28063. weight: math.unit(22, "tonnes"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/elio/front.svg",
  28067. extra: 4582 / 3720,
  28068. bottom: 236 / 4828
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Normal",
  28075. height: math.unit(30, "meters"),
  28076. default: true
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(6 + 3 / 12, "feet"),
  28085. weight: math.unit(120, "lb"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/azura/front.svg",
  28089. extra: 1149 / 1135,
  28090. bottom: 45 / 1194
  28091. }
  28092. },
  28093. frontClothed: {
  28094. height: math.unit(6 + 3 / 12, "feet"),
  28095. weight: math.unit(120, "lb"),
  28096. name: "Front (Clothed)",
  28097. image: {
  28098. source: "./media/characters/azura/front-clothed.svg",
  28099. extra: 1149 / 1135,
  28100. bottom: 45 / 1194
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(6 + 3 / 12, "feet"),
  28108. default: true
  28109. },
  28110. {
  28111. name: "Macro",
  28112. height: math.unit(20 + 6 / 12, "feet")
  28113. },
  28114. {
  28115. name: "Megamacro",
  28116. height: math.unit(12, "miles")
  28117. },
  28118. {
  28119. name: "Gigamacro",
  28120. height: math.unit(10000, "miles")
  28121. },
  28122. {
  28123. name: "Teramacro",
  28124. height: math.unit(900000, "miles")
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(12, "feet"),
  28133. weight: math.unit(1, "ton"),
  28134. capacity: math.unit(660000, "gallons"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/zeus/front.svg",
  28138. extra: 5005 / 4717,
  28139. bottom: 363 / 5388
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Normal",
  28146. height: math.unit(12, "feet")
  28147. },
  28148. {
  28149. name: "Preferred Size",
  28150. height: math.unit(0.5, "miles"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Giga Horse",
  28155. height: math.unit(300, "miles")
  28156. },
  28157. {
  28158. name: "Riding Planets",
  28159. height: math.unit(30, "megameters")
  28160. },
  28161. {
  28162. name: "Cosmic Giant",
  28163. height: math.unit(3, "zettameters")
  28164. },
  28165. {
  28166. name: "Breeding God",
  28167. height: math.unit(9.92e22, "yottameters")
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28173. {
  28174. side: {
  28175. height: math.unit(9, "feet"),
  28176. weight: math.unit(1500, "kg"),
  28177. name: "Side",
  28178. image: {
  28179. source: "./media/characters/fang/side.svg",
  28180. extra: 924 / 866,
  28181. bottom: 47.5 / 972.3
  28182. }
  28183. },
  28184. },
  28185. [
  28186. {
  28187. name: "Normal",
  28188. height: math.unit(9, "feet"),
  28189. default: true
  28190. },
  28191. {
  28192. name: "Macro",
  28193. height: math.unit(75 + 6 / 12, "feet")
  28194. },
  28195. {
  28196. name: "Teramacro",
  28197. height: math.unit(50000, "miles")
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28203. {
  28204. front: {
  28205. height: math.unit(10, "feet"),
  28206. weight: math.unit(2, "tons"),
  28207. name: "Front",
  28208. image: {
  28209. source: "./media/characters/rekhit/front.svg",
  28210. extra: 2796 / 2590,
  28211. bottom: 225 / 3022
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(10, "feet"),
  28219. default: true
  28220. },
  28221. {
  28222. name: "Macro",
  28223. height: math.unit(500, "feet")
  28224. },
  28225. ]
  28226. ))
  28227. characterMakers.push(() => makeCharacter(
  28228. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28229. {
  28230. front: {
  28231. height: math.unit(7 + 6.451 / 12, "feet"),
  28232. weight: math.unit(310, "lb"),
  28233. name: "Front",
  28234. image: {
  28235. source: "./media/characters/dahlia-verrick/front.svg",
  28236. extra: 1488 / 1365,
  28237. bottom: 6.2 / 1495
  28238. }
  28239. },
  28240. back: {
  28241. height: math.unit(7 + 6.451 / 12, "feet"),
  28242. weight: math.unit(310, "lb"),
  28243. name: "Back",
  28244. image: {
  28245. source: "./media/characters/dahlia-verrick/back.svg",
  28246. extra: 1472 / 1351,
  28247. bottom: 5.28 / 1477
  28248. }
  28249. },
  28250. frontBusiness: {
  28251. height: math.unit(7 + 6.451 / 12, "feet"),
  28252. weight: math.unit(200, "lb"),
  28253. name: "Front (Business)",
  28254. image: {
  28255. source: "./media/characters/dahlia-verrick/front-business.svg",
  28256. extra: 1478 / 1381,
  28257. bottom: 5.5 / 1484
  28258. }
  28259. },
  28260. frontCasual: {
  28261. height: math.unit(7 + 6.451 / 12, "feet"),
  28262. weight: math.unit(200, "lb"),
  28263. name: "Front (Casual)",
  28264. image: {
  28265. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28266. extra: 1478 / 1381,
  28267. bottom: 5.5 / 1484
  28268. }
  28269. },
  28270. },
  28271. [
  28272. {
  28273. name: "Travel-Sized",
  28274. height: math.unit(7.45, "inches")
  28275. },
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(7 + 6.451 / 12, "feet"),
  28279. default: true
  28280. },
  28281. {
  28282. name: "Hitting the Town",
  28283. height: math.unit(37 + 8 / 12, "feet")
  28284. },
  28285. {
  28286. name: "Stomp in the Suburbs",
  28287. height: math.unit(964 + 9.728 / 12, "feet")
  28288. },
  28289. {
  28290. name: "Sit on the City",
  28291. height: math.unit(61747 + 10.592 / 12, "feet")
  28292. },
  28293. {
  28294. name: "Glomp the Globe",
  28295. height: math.unit(252919327 + 4.832 / 12, "feet")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(6 + 4 / 12, "feet"),
  28304. weight: math.unit(320, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/balina-mahigan/front.svg",
  28308. extra: 447 / 428,
  28309. bottom: 18 / 466
  28310. }
  28311. },
  28312. back: {
  28313. height: math.unit(6 + 4 / 12, "feet"),
  28314. weight: math.unit(320, "lb"),
  28315. name: "Back",
  28316. image: {
  28317. source: "./media/characters/balina-mahigan/back.svg",
  28318. extra: 445 / 428,
  28319. bottom: 4.07 / 448
  28320. }
  28321. },
  28322. arm: {
  28323. height: math.unit(1.88, "feet"),
  28324. name: "Arm",
  28325. image: {
  28326. source: "./media/characters/balina-mahigan/arm.svg"
  28327. }
  28328. },
  28329. backPort: {
  28330. height: math.unit(0.685, "feet"),
  28331. name: "Back Port",
  28332. image: {
  28333. source: "./media/characters/balina-mahigan/back-port.svg"
  28334. }
  28335. },
  28336. hoofpaw: {
  28337. height: math.unit(1.41, "feet"),
  28338. name: "Hoofpaw",
  28339. image: {
  28340. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28341. }
  28342. },
  28343. leftHandBack: {
  28344. height: math.unit(0.938, "feet"),
  28345. name: "Left Hand (Back)",
  28346. image: {
  28347. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28348. }
  28349. },
  28350. leftHandFront: {
  28351. height: math.unit(0.938, "feet"),
  28352. name: "Left Hand (Front)",
  28353. image: {
  28354. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28355. }
  28356. },
  28357. rightHandBack: {
  28358. height: math.unit(0.95, "feet"),
  28359. name: "Right Hand (Back)",
  28360. image: {
  28361. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28362. }
  28363. },
  28364. rightHandFront: {
  28365. height: math.unit(0.95, "feet"),
  28366. name: "Right Hand (Front)",
  28367. image: {
  28368. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(6 + 4 / 12, "feet"),
  28376. default: true
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28382. {
  28383. front: {
  28384. height: math.unit(6, "feet"),
  28385. weight: math.unit(320, "lb"),
  28386. name: "Front",
  28387. image: {
  28388. source: "./media/characters/balina-mejeri/front.svg",
  28389. extra: 517 / 488,
  28390. bottom: 44.2 / 561
  28391. }
  28392. },
  28393. },
  28394. [
  28395. {
  28396. name: "Normal",
  28397. height: math.unit(6 + 4 / 12, "feet")
  28398. },
  28399. {
  28400. name: "Business",
  28401. height: math.unit(155, "feet"),
  28402. default: true
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28408. {
  28409. kneeling: {
  28410. height: math.unit(6 + 4 / 12, "feet"),
  28411. weight: math.unit(300 * 20, "lb"),
  28412. name: "Kneeling",
  28413. image: {
  28414. source: "./media/characters/balbarian/kneeling.svg",
  28415. extra: 922 / 862,
  28416. bottom: 42.4 / 965
  28417. }
  28418. },
  28419. },
  28420. [
  28421. {
  28422. name: "Normal",
  28423. height: math.unit(6 + 4 / 12, "feet")
  28424. },
  28425. {
  28426. name: "Treasured",
  28427. height: math.unit(18 + 9 / 12, "feet"),
  28428. default: true
  28429. },
  28430. {
  28431. name: "Macro",
  28432. height: math.unit(900, "feet")
  28433. },
  28434. ]
  28435. ))
  28436. characterMakers.push(() => makeCharacter(
  28437. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28438. {
  28439. front: {
  28440. height: math.unit(6 + 4 / 12, "feet"),
  28441. weight: math.unit(325, "lb"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/balina-amarini/front.svg",
  28445. extra: 415 / 403,
  28446. bottom: 19 / 433.4
  28447. }
  28448. },
  28449. back: {
  28450. height: math.unit(6 + 4 / 12, "feet"),
  28451. weight: math.unit(325, "lb"),
  28452. name: "Back",
  28453. image: {
  28454. source: "./media/characters/balina-amarini/back.svg",
  28455. extra: 415 / 403,
  28456. bottom: 13.5 / 432
  28457. }
  28458. },
  28459. overdrive: {
  28460. height: math.unit(6 + 4 / 12, "feet"),
  28461. weight: math.unit(400, "lb"),
  28462. name: "Overdrive",
  28463. image: {
  28464. source: "./media/characters/balina-amarini/overdrive.svg",
  28465. extra: 269 / 259,
  28466. bottom: 12 / 282
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Boom",
  28473. height: math.unit(9 + 10 / 12, "feet"),
  28474. default: true
  28475. },
  28476. {
  28477. name: "Macro",
  28478. height: math.unit(280, "feet")
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28484. {
  28485. goddess: {
  28486. height: math.unit(600, "feet"),
  28487. weight: math.unit(2000000, "tons"),
  28488. name: "Goddess",
  28489. image: {
  28490. source: "./media/characters/lady-kubwa/goddess.svg",
  28491. extra: 1240.5 / 1223,
  28492. bottom: 22 / 1263
  28493. }
  28494. },
  28495. goddesser: {
  28496. height: math.unit(900, "feet"),
  28497. weight: math.unit(20000000, "lb"),
  28498. name: "Goddess-er",
  28499. image: {
  28500. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28501. extra: 899 / 888,
  28502. bottom: 12.6 / 912
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Macro",
  28509. height: math.unit(600, "feet"),
  28510. default: true
  28511. },
  28512. {
  28513. name: "Megamacro",
  28514. height: math.unit(250, "miles")
  28515. },
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28520. {
  28521. front: {
  28522. height: math.unit(7 + 7 / 12, "feet"),
  28523. weight: math.unit(250, "lb"),
  28524. name: "Front",
  28525. image: {
  28526. source: "./media/characters/tala-grovehorn/front.svg",
  28527. extra: 2636 / 2525,
  28528. bottom: 147 / 2781
  28529. }
  28530. },
  28531. back: {
  28532. height: math.unit(7 + 7 / 12, "feet"),
  28533. weight: math.unit(250, "lb"),
  28534. name: "Back",
  28535. image: {
  28536. source: "./media/characters/tala-grovehorn/back.svg",
  28537. extra: 2635 / 2539,
  28538. bottom: 100 / 2732.8
  28539. }
  28540. },
  28541. mouth: {
  28542. height: math.unit(1.15, "feet"),
  28543. name: "Mouth",
  28544. image: {
  28545. source: "./media/characters/tala-grovehorn/mouth.svg"
  28546. }
  28547. },
  28548. dick: {
  28549. height: math.unit(2.36, "feet"),
  28550. name: "Dick",
  28551. image: {
  28552. source: "./media/characters/tala-grovehorn/dick.svg"
  28553. }
  28554. },
  28555. slit: {
  28556. height: math.unit(0.61, "feet"),
  28557. name: "Slit",
  28558. image: {
  28559. source: "./media/characters/tala-grovehorn/slit.svg"
  28560. }
  28561. },
  28562. },
  28563. [
  28564. ]
  28565. ))
  28566. characterMakers.push(() => makeCharacter(
  28567. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28568. {
  28569. front: {
  28570. height: math.unit(7 + 7 / 12, "feet"),
  28571. weight: math.unit(225, "lb"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/epona/front.svg",
  28575. extra: 2445 / 2290,
  28576. bottom: 251 / 2696
  28577. }
  28578. },
  28579. back: {
  28580. height: math.unit(7 + 7 / 12, "feet"),
  28581. weight: math.unit(225, "lb"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/epona/back.svg",
  28585. extra: 2546 / 2408,
  28586. bottom: 44 / 2589
  28587. }
  28588. },
  28589. genitals: {
  28590. height: math.unit(1.5, "feet"),
  28591. name: "Genitals",
  28592. image: {
  28593. source: "./media/characters/epona/genitals.svg"
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Normal",
  28600. height: math.unit(7 + 7 / 12, "feet"),
  28601. default: true
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(7, "feet"),
  28610. weight: math.unit(518, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/avia-bloodbourn/front.svg",
  28614. extra: 1466 / 1350,
  28615. bottom: 65 / 1527
  28616. }
  28617. },
  28618. },
  28619. [
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(9.35, "feet"),
  28627. weight: math.unit(600, "lb"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/amera/front.svg",
  28631. extra: 891 / 818,
  28632. bottom: 30 / 922.7
  28633. }
  28634. },
  28635. back: {
  28636. height: math.unit(9.35, "feet"),
  28637. weight: math.unit(600, "lb"),
  28638. name: "Back",
  28639. image: {
  28640. source: "./media/characters/amera/back.svg",
  28641. extra: 876 / 824,
  28642. bottom: 6.8 / 884
  28643. }
  28644. },
  28645. dick: {
  28646. height: math.unit(2.14, "feet"),
  28647. name: "Dick",
  28648. image: {
  28649. source: "./media/characters/amera/dick.svg"
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(9.35, "feet"),
  28657. default: true
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28663. {
  28664. kneeling: {
  28665. height: math.unit(3 + 4 / 12, "feet"),
  28666. weight: math.unit(90, "lb"),
  28667. name: "Kneeling",
  28668. image: {
  28669. source: "./media/characters/rosewen/kneeling.svg",
  28670. extra: 1835 / 1571,
  28671. bottom: 27.7 / 1862
  28672. }
  28673. },
  28674. },
  28675. [
  28676. {
  28677. name: "Normal",
  28678. height: math.unit(3 + 4 / 12, "feet"),
  28679. default: true
  28680. },
  28681. ]
  28682. ))
  28683. characterMakers.push(() => makeCharacter(
  28684. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28685. {
  28686. front: {
  28687. height: math.unit(5 + 10 / 12, "feet"),
  28688. weight: math.unit(200, "lb"),
  28689. name: "Front",
  28690. image: {
  28691. source: "./media/characters/sabah/front.svg",
  28692. extra: 849 / 763,
  28693. bottom: 33.9 / 881
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(5 + 10 / 12, "feet"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28707. {
  28708. front: {
  28709. height: math.unit(3 + 5 / 12, "feet"),
  28710. weight: math.unit(40, "kg"),
  28711. name: "Front",
  28712. image: {
  28713. source: "./media/characters/purple-flame/front.svg",
  28714. extra: 1577 / 1412,
  28715. bottom: 97 / 1694
  28716. }
  28717. },
  28718. frontDressed: {
  28719. height: math.unit(3 + 5 / 12, "feet"),
  28720. weight: math.unit(40, "kg"),
  28721. name: "Front (Dressed)",
  28722. image: {
  28723. source: "./media/characters/purple-flame/front-dressed.svg",
  28724. extra: 1577 / 1412,
  28725. bottom: 97 / 1694
  28726. }
  28727. },
  28728. headphones: {
  28729. height: math.unit(0.85, "feet"),
  28730. name: "Headphones",
  28731. image: {
  28732. source: "./media/characters/purple-flame/headphones.svg"
  28733. }
  28734. },
  28735. },
  28736. [
  28737. {
  28738. name: "Really Small",
  28739. height: math.unit(5, "cm")
  28740. },
  28741. {
  28742. name: "Micro",
  28743. height: math.unit(1 + 5 / 12, "feet")
  28744. },
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(3 + 5 / 12, "feet"),
  28748. default: true
  28749. },
  28750. {
  28751. name: "Minimacro",
  28752. height: math.unit(125, "feet")
  28753. },
  28754. {
  28755. name: "Macro",
  28756. height: math.unit(0.5, "miles")
  28757. },
  28758. {
  28759. name: "Megamacro",
  28760. height: math.unit(50, "miles")
  28761. },
  28762. {
  28763. name: "Gigantic",
  28764. height: math.unit(750, "miles")
  28765. },
  28766. {
  28767. name: "Planetary",
  28768. height: math.unit(15000, "miles")
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(14, "feet"),
  28777. weight: math.unit(959, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/arsenal/front.svg",
  28781. extra: 2357 / 2157,
  28782. bottom: 93 / 2458
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Normal",
  28789. height: math.unit(14, "feet"),
  28790. default: true
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(6, "feet"),
  28799. weight: math.unit(150, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/adira/front.svg",
  28803. extra: 1078 / 1029,
  28804. bottom: 87 / 1166
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Micro",
  28811. height: math.unit(4, "inches"),
  28812. default: true
  28813. },
  28814. {
  28815. name: "Macro",
  28816. height: math.unit(50, "feet")
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(16, "feet"),
  28825. weight: math.unit(1000, "lb"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/grim/front.svg",
  28829. extra: 622 / 614,
  28830. bottom: 18.1 / 642
  28831. }
  28832. },
  28833. back: {
  28834. height: math.unit(16, "feet"),
  28835. weight: math.unit(1000, "lb"),
  28836. name: "Back",
  28837. image: {
  28838. source: "./media/characters/grim/back.svg",
  28839. extra: 610.6 / 602,
  28840. bottom: 40.8 / 652
  28841. }
  28842. },
  28843. hunched: {
  28844. height: math.unit(9.75, "feet"),
  28845. weight: math.unit(1000, "lb"),
  28846. name: "Hunched",
  28847. image: {
  28848. source: "./media/characters/grim/hunched.svg",
  28849. extra: 304 / 297,
  28850. bottom: 35.4 / 394
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Normal",
  28857. height: math.unit(16, "feet"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28864. {
  28865. front: {
  28866. height: math.unit(2.3, "meters"),
  28867. weight: math.unit(300, "lb"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/sinja/front-sfw.svg",
  28871. extra: 1393 / 1294,
  28872. bottom: 70 / 1463
  28873. }
  28874. },
  28875. frontNsfw: {
  28876. height: math.unit(2.3, "meters"),
  28877. weight: math.unit(300, "lb"),
  28878. name: "Front (NSFW)",
  28879. image: {
  28880. source: "./media/characters/sinja/front-nsfw.svg",
  28881. extra: 1393 / 1294,
  28882. bottom: 70 / 1463
  28883. }
  28884. },
  28885. back: {
  28886. height: math.unit(2.3, "meters"),
  28887. weight: math.unit(300, "lb"),
  28888. name: "Back",
  28889. image: {
  28890. source: "./media/characters/sinja/back.svg",
  28891. extra: 1393 / 1294,
  28892. bottom: 70 / 1463
  28893. }
  28894. },
  28895. head: {
  28896. height: math.unit(1.771, "feet"),
  28897. name: "Head",
  28898. image: {
  28899. source: "./media/characters/sinja/head.svg"
  28900. }
  28901. },
  28902. slit: {
  28903. height: math.unit(0.8, "feet"),
  28904. name: "Slit",
  28905. image: {
  28906. source: "./media/characters/sinja/slit.svg"
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Normal",
  28913. height: math.unit(2.3, "meters")
  28914. },
  28915. {
  28916. name: "Macro",
  28917. height: math.unit(91, "meters"),
  28918. default: true
  28919. },
  28920. {
  28921. name: "Megamacro",
  28922. height: math.unit(91440, "meters")
  28923. },
  28924. {
  28925. name: "Gigamacro",
  28926. height: math.unit(60960000, "meters")
  28927. },
  28928. {
  28929. name: "Teramacro",
  28930. height: math.unit(9144000000, "meters")
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28936. {
  28937. front: {
  28938. height: math.unit(1.7, "meters"),
  28939. weight: math.unit(130, "lb"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/kyu/front.svg",
  28943. extra: 415 / 395,
  28944. bottom: 5 / 420
  28945. }
  28946. },
  28947. head: {
  28948. height: math.unit(1.75, "feet"),
  28949. name: "Head",
  28950. image: {
  28951. source: "./media/characters/kyu/head.svg"
  28952. }
  28953. },
  28954. foot: {
  28955. height: math.unit(0.81, "feet"),
  28956. name: "Foot",
  28957. image: {
  28958. source: "./media/characters/kyu/foot.svg"
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Normal",
  28965. height: math.unit(1.7, "meters")
  28966. },
  28967. {
  28968. name: "Macro",
  28969. height: math.unit(131, "feet"),
  28970. default: true
  28971. },
  28972. {
  28973. name: "Megamacro",
  28974. height: math.unit(91440, "meters")
  28975. },
  28976. {
  28977. name: "Gigamacro",
  28978. height: math.unit(60960000, "meters")
  28979. },
  28980. {
  28981. name: "Teramacro",
  28982. height: math.unit(9144000000, "meters")
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(7 + 1 / 12, "feet"),
  28991. weight: math.unit(250, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/joey/front.svg",
  28995. extra: 1791 / 1537,
  28996. bottom: 28 / 1816
  28997. }
  28998. },
  28999. },
  29000. [
  29001. {
  29002. name: "Micro",
  29003. height: math.unit(3, "inches")
  29004. },
  29005. {
  29006. name: "Normal",
  29007. height: math.unit(7 + 1 / 12, "feet"),
  29008. default: true
  29009. },
  29010. ]
  29011. ))
  29012. characterMakers.push(() => makeCharacter(
  29013. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29014. {
  29015. front: {
  29016. height: math.unit(165, "cm"),
  29017. weight: math.unit(140, "lb"),
  29018. name: "Front",
  29019. image: {
  29020. source: "./media/characters/sam-evans/front.svg",
  29021. extra: 3417 / 3230,
  29022. bottom: 41.3 / 3417
  29023. }
  29024. },
  29025. frontSixTails: {
  29026. height: math.unit(165, "cm"),
  29027. weight: math.unit(140, "lb"),
  29028. name: "Front-six-tails",
  29029. image: {
  29030. source: "./media/characters/sam-evans/front-six-tails.svg",
  29031. extra: 3417 / 3230,
  29032. bottom: 41.3 / 3417
  29033. }
  29034. },
  29035. back: {
  29036. height: math.unit(165, "cm"),
  29037. weight: math.unit(140, "lb"),
  29038. name: "Back",
  29039. image: {
  29040. source: "./media/characters/sam-evans/back.svg",
  29041. extra: 3227 / 3032,
  29042. bottom: 6.8 / 3234
  29043. }
  29044. },
  29045. face: {
  29046. height: math.unit(0.68, "feet"),
  29047. name: "Face",
  29048. image: {
  29049. source: "./media/characters/sam-evans/face.svg"
  29050. }
  29051. },
  29052. },
  29053. [
  29054. {
  29055. name: "Normal",
  29056. height: math.unit(165, "cm"),
  29057. default: true
  29058. },
  29059. {
  29060. name: "Macro",
  29061. height: math.unit(100, "meters")
  29062. },
  29063. {
  29064. name: "Macro+",
  29065. height: math.unit(800, "meters")
  29066. },
  29067. {
  29068. name: "Macro++",
  29069. height: math.unit(3, "km")
  29070. },
  29071. {
  29072. name: "Macro+++",
  29073. height: math.unit(30, "km")
  29074. },
  29075. ]
  29076. ))
  29077. characterMakers.push(() => makeCharacter(
  29078. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29079. {
  29080. front: {
  29081. height: math.unit(10, "feet"),
  29082. weight: math.unit(750, "lb"),
  29083. name: "Front",
  29084. image: {
  29085. source: "./media/characters/juliet-a/front.svg",
  29086. extra: 1766 / 1720,
  29087. bottom: 43 / 1809
  29088. }
  29089. },
  29090. back: {
  29091. height: math.unit(10, "feet"),
  29092. weight: math.unit(750, "lb"),
  29093. name: "Back",
  29094. image: {
  29095. source: "./media/characters/juliet-a/back.svg",
  29096. extra: 1781 / 1734,
  29097. bottom: 35 / 1810,
  29098. }
  29099. },
  29100. },
  29101. [
  29102. {
  29103. name: "Normal",
  29104. height: math.unit(10, "feet"),
  29105. default: true
  29106. },
  29107. {
  29108. name: "Dragon Form",
  29109. height: math.unit(250, "feet")
  29110. },
  29111. {
  29112. name: "Macro",
  29113. height: math.unit(1000, "feet")
  29114. },
  29115. {
  29116. name: "Megamacro",
  29117. height: math.unit(10000, "feet")
  29118. }
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29123. {
  29124. regular: {
  29125. height: math.unit(7 + 3 / 12, "feet"),
  29126. weight: math.unit(260, "lb"),
  29127. name: "Regular",
  29128. image: {
  29129. source: "./media/characters/wild/regular.svg",
  29130. extra: 97.45 / 92,
  29131. bottom: 6.8 / 104.3
  29132. }
  29133. },
  29134. biggums: {
  29135. height: math.unit(8 + 6 / 12, "feet"),
  29136. weight: math.unit(425, "lb"),
  29137. name: "Biggums",
  29138. image: {
  29139. source: "./media/characters/wild/biggums.svg",
  29140. extra: 97.45 / 92,
  29141. bottom: 7.5 / 132.34
  29142. }
  29143. },
  29144. mawRegular: {
  29145. height: math.unit(1.24, "feet"),
  29146. name: "Maw (Regular)",
  29147. image: {
  29148. source: "./media/characters/wild/maw.svg"
  29149. }
  29150. },
  29151. mawBiggums: {
  29152. height: math.unit(1.47, "feet"),
  29153. name: "Maw (Biggums)",
  29154. image: {
  29155. source: "./media/characters/wild/maw.svg"
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Normal",
  29162. height: math.unit(7 + 3 / 12, "feet"),
  29163. default: true
  29164. },
  29165. ]
  29166. ))
  29167. characterMakers.push(() => makeCharacter(
  29168. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29169. {
  29170. front: {
  29171. height: math.unit(2.5, "meters"),
  29172. weight: math.unit(200, "kg"),
  29173. name: "Front",
  29174. image: {
  29175. source: "./media/characters/vidar/front.svg",
  29176. extra: 2994 / 2795,
  29177. bottom: 56 / 3061
  29178. }
  29179. },
  29180. back: {
  29181. height: math.unit(2.5, "meters"),
  29182. weight: math.unit(200, "kg"),
  29183. name: "Back",
  29184. image: {
  29185. source: "./media/characters/vidar/back.svg",
  29186. extra: 3131 / 2928,
  29187. bottom: 13.5 / 3141.5
  29188. }
  29189. },
  29190. feral: {
  29191. height: math.unit(2.5, "meters"),
  29192. weight: math.unit(2000, "kg"),
  29193. name: "Feral",
  29194. image: {
  29195. source: "./media/characters/vidar/feral.svg",
  29196. extra: 2790 / 1765,
  29197. bottom: 6 / 2796
  29198. }
  29199. },
  29200. },
  29201. [
  29202. {
  29203. name: "Normal",
  29204. height: math.unit(2.5, "meters"),
  29205. default: true
  29206. },
  29207. {
  29208. name: "Macro",
  29209. height: math.unit(100, "meters")
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(5 + 9 / 12, "feet"),
  29218. weight: math.unit(120, "lb"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/ash/front.svg",
  29222. extra: 2189 / 1961,
  29223. bottom: 5.2 / 2194
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Normal",
  29230. height: math.unit(5 + 9 / 12, "feet"),
  29231. default: true
  29232. },
  29233. ]
  29234. ))
  29235. characterMakers.push(() => makeCharacter(
  29236. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29237. {
  29238. front: {
  29239. height: math.unit(9, "feet"),
  29240. weight: math.unit(10000, "lb"),
  29241. name: "Front",
  29242. image: {
  29243. source: "./media/characters/gygabite/front.svg",
  29244. bottom: 31.7 / 537.8,
  29245. extra: 505 / 370
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(9, "feet"),
  29253. default: true
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(12, "feet"),
  29262. weight: math.unit(4000, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/p0tat0/front.svg",
  29266. extra: 1065 / 921,
  29267. bottom: 55.7 / 1121.25
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Normal",
  29274. height: math.unit(12, "feet"),
  29275. default: true
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29281. {
  29282. side: {
  29283. height: math.unit(6.5, "feet"),
  29284. weight: math.unit(800, "lb"),
  29285. name: "Side",
  29286. image: {
  29287. source: "./media/characters/dusk/side.svg",
  29288. extra: 615 / 373,
  29289. bottom: 53 / 664
  29290. }
  29291. },
  29292. sitting: {
  29293. height: math.unit(7, "feet"),
  29294. weight: math.unit(800, "lb"),
  29295. name: "Sitting",
  29296. image: {
  29297. source: "./media/characters/dusk/sitting.svg",
  29298. extra: 753 / 425,
  29299. bottom: 33 / 774
  29300. }
  29301. },
  29302. head: {
  29303. height: math.unit(6.1, "feet"),
  29304. name: "Head",
  29305. image: {
  29306. source: "./media/characters/dusk/head.svg"
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(7, "feet"),
  29314. default: true
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29320. {
  29321. front: {
  29322. height: math.unit(15, "feet"),
  29323. weight: math.unit(7000, "lb"),
  29324. name: "Front",
  29325. image: {
  29326. source: "./media/characters/jay-direwolf/front.svg",
  29327. extra: 1810 / 1732,
  29328. bottom: 66 / 1892
  29329. }
  29330. },
  29331. },
  29332. [
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(15, "feet"),
  29336. default: true
  29337. },
  29338. ]
  29339. ))
  29340. characterMakers.push(() => makeCharacter(
  29341. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29342. {
  29343. front: {
  29344. height: math.unit(4 + 9 / 12, "feet"),
  29345. weight: math.unit(130, "lb"),
  29346. name: "Front",
  29347. image: {
  29348. source: "./media/characters/anchovie/front.svg",
  29349. extra: 382 / 350,
  29350. bottom: 25 / 409
  29351. }
  29352. },
  29353. back: {
  29354. height: math.unit(4 + 9 / 12, "feet"),
  29355. weight: math.unit(130, "lb"),
  29356. name: "Back",
  29357. image: {
  29358. source: "./media/characters/anchovie/back.svg",
  29359. extra: 385 / 352,
  29360. bottom: 16.6 / 402
  29361. }
  29362. },
  29363. frontDressed: {
  29364. height: math.unit(4 + 9 / 12, "feet"),
  29365. weight: math.unit(130, "lb"),
  29366. name: "Front (Dressed)",
  29367. image: {
  29368. source: "./media/characters/anchovie/front-dressed.svg",
  29369. extra: 382 / 350,
  29370. bottom: 25 / 409
  29371. }
  29372. },
  29373. backDressed: {
  29374. height: math.unit(4 + 9 / 12, "feet"),
  29375. weight: math.unit(130, "lb"),
  29376. name: "Back (Dressed)",
  29377. image: {
  29378. source: "./media/characters/anchovie/back-dressed.svg",
  29379. extra: 385 / 352,
  29380. bottom: 16.6 / 402
  29381. }
  29382. },
  29383. },
  29384. [
  29385. {
  29386. name: "Micro",
  29387. height: math.unit(6.4, "inches")
  29388. },
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(4 + 9 / 12, "feet"),
  29392. default: true
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29398. {
  29399. front: {
  29400. height: math.unit(2, "meters"),
  29401. weight: math.unit(180, "lb"),
  29402. name: "Front",
  29403. image: {
  29404. source: "./media/characters/acidrenamon/front.svg",
  29405. extra: 987 / 890,
  29406. bottom: 22.8 / 1009
  29407. }
  29408. },
  29409. back: {
  29410. height: math.unit(2, "meters"),
  29411. weight: math.unit(180, "lb"),
  29412. name: "Back",
  29413. image: {
  29414. source: "./media/characters/acidrenamon/back.svg",
  29415. extra: 983 / 891,
  29416. bottom: 8.4 / 992
  29417. }
  29418. },
  29419. head: {
  29420. height: math.unit(1.92, "feet"),
  29421. name: "Head",
  29422. image: {
  29423. source: "./media/characters/acidrenamon/head.svg"
  29424. }
  29425. },
  29426. rump: {
  29427. height: math.unit(1.72, "feet"),
  29428. name: "Rump",
  29429. image: {
  29430. source: "./media/characters/acidrenamon/rump.svg"
  29431. }
  29432. },
  29433. tail: {
  29434. height: math.unit(4.2, "feet"),
  29435. name: "Tail",
  29436. image: {
  29437. source: "./media/characters/acidrenamon/tail.svg"
  29438. }
  29439. },
  29440. },
  29441. [
  29442. {
  29443. name: "Normal",
  29444. height: math.unit(2, "meters"),
  29445. default: true
  29446. },
  29447. {
  29448. name: "Minimacro",
  29449. height: math.unit(7, "meters")
  29450. },
  29451. {
  29452. name: "Macro",
  29453. height: math.unit(200, "meters")
  29454. },
  29455. {
  29456. name: "Gigamacro",
  29457. height: math.unit(0.2, "earths")
  29458. },
  29459. ]
  29460. ))
  29461. characterMakers.push(() => makeCharacter(
  29462. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29463. {
  29464. front: {
  29465. height: math.unit(152, "feet"),
  29466. name: "Front",
  29467. image: {
  29468. source: "./media/characters/kenzie-lee/front.svg",
  29469. extra: 1869/1774,
  29470. bottom: 128/1997
  29471. }
  29472. },
  29473. side: {
  29474. height: math.unit(86, "feet"),
  29475. name: "Side",
  29476. image: {
  29477. source: "./media/characters/kenzie-lee/side.svg",
  29478. extra: 930/815,
  29479. bottom: 177/1107
  29480. }
  29481. },
  29482. paw: {
  29483. height: math.unit(15, "feet"),
  29484. name: "Paw",
  29485. image: {
  29486. source: "./media/characters/kenzie-lee/paw.svg"
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Kenzie Flea",
  29493. height: math.unit(2, "mm"),
  29494. default: true
  29495. },
  29496. {
  29497. name: "Micro",
  29498. height: math.unit(2, "inches")
  29499. },
  29500. {
  29501. name: "Normal",
  29502. height: math.unit(152, "feet")
  29503. },
  29504. {
  29505. name: "Megamacro",
  29506. height: math.unit(7, "miles")
  29507. },
  29508. {
  29509. name: "Gigamacro",
  29510. height: math.unit(8000, "miles")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(6, "feet"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/withers/front.svg",
  29522. extra: 1935/1760,
  29523. bottom: 72/2007
  29524. }
  29525. },
  29526. back: {
  29527. height: math.unit(6, "feet"),
  29528. name: "Back",
  29529. image: {
  29530. source: "./media/characters/withers/back.svg",
  29531. extra: 1944/1792,
  29532. bottom: 12/1956
  29533. }
  29534. },
  29535. dressed: {
  29536. height: math.unit(6, "feet"),
  29537. name: "Dressed",
  29538. image: {
  29539. source: "./media/characters/withers/dressed.svg",
  29540. extra: 1937/1765,
  29541. bottom: 73/2010
  29542. }
  29543. },
  29544. phase1: {
  29545. height: math.unit(1.1, "feet"),
  29546. name: "Phase 1",
  29547. image: {
  29548. source: "./media/characters/withers/phase-1.svg",
  29549. extra: 1885/1232,
  29550. bottom: 0/1885
  29551. }
  29552. },
  29553. phase2: {
  29554. height: math.unit(1.05, "feet"),
  29555. name: "Phase 2",
  29556. image: {
  29557. source: "./media/characters/withers/phase-2.svg",
  29558. extra: 1792/1090,
  29559. bottom: 0/1792
  29560. }
  29561. },
  29562. partyWipe: {
  29563. height: math.unit(1.1, "feet"),
  29564. name: "Party Wipe",
  29565. image: {
  29566. source: "./media/characters/withers/party-wipe.svg",
  29567. extra: 1864/1207,
  29568. bottom: 0/1864
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Macro",
  29575. height: math.unit(167, "feet"),
  29576. default: true
  29577. },
  29578. {
  29579. name: "Megamacro",
  29580. height: math.unit(15, "miles")
  29581. }
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29586. {
  29587. front: {
  29588. height: math.unit(6 + 7 / 12, "feet"),
  29589. weight: math.unit(250, "lb"),
  29590. name: "Front",
  29591. image: {
  29592. source: "./media/characters/nemoskii/front.svg",
  29593. extra: 2270 / 1734,
  29594. bottom: 86 / 2354
  29595. }
  29596. },
  29597. back: {
  29598. height: math.unit(6 + 7 / 12, "feet"),
  29599. weight: math.unit(250, "lb"),
  29600. name: "Back",
  29601. image: {
  29602. source: "./media/characters/nemoskii/back.svg",
  29603. extra: 1845 / 1788,
  29604. bottom: 10.5 / 1852
  29605. }
  29606. },
  29607. head: {
  29608. height: math.unit(1.31, "feet"),
  29609. name: "Head",
  29610. image: {
  29611. source: "./media/characters/nemoskii/head.svg"
  29612. }
  29613. },
  29614. },
  29615. [
  29616. {
  29617. name: "Micro",
  29618. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29619. },
  29620. {
  29621. name: "Normal",
  29622. height: math.unit(6 + 7 / 12, "feet"),
  29623. default: true
  29624. },
  29625. {
  29626. name: "Macro",
  29627. height: math.unit((6 + 7 / 12) * 150, "feet")
  29628. },
  29629. {
  29630. name: "Macro+",
  29631. height: math.unit((6 + 7 / 12) * 500, "feet")
  29632. },
  29633. {
  29634. name: "Megamacro",
  29635. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29641. {
  29642. front: {
  29643. height: math.unit(1, "mile"),
  29644. weight: math.unit(265261.9, "lb"),
  29645. name: "Front",
  29646. image: {
  29647. source: "./media/characters/shui/front.svg",
  29648. extra: 1633 / 1564,
  29649. bottom: 91.5 / 1726
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Macro",
  29656. height: math.unit(1, "mile"),
  29657. default: true
  29658. },
  29659. ]
  29660. ))
  29661. characterMakers.push(() => makeCharacter(
  29662. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29663. {
  29664. front: {
  29665. height: math.unit(12 + 6 / 12, "feet"),
  29666. weight: math.unit(1342, "lb"),
  29667. name: "Front",
  29668. image: {
  29669. source: "./media/characters/arokh-takakura/front.svg",
  29670. extra: 1089 / 1043,
  29671. bottom: 77.4 / 1176.7
  29672. }
  29673. },
  29674. back: {
  29675. height: math.unit(12 + 6 / 12, "feet"),
  29676. weight: math.unit(1342, "lb"),
  29677. name: "Back",
  29678. image: {
  29679. source: "./media/characters/arokh-takakura/back.svg",
  29680. extra: 1046 / 1019,
  29681. bottom: 102 / 1150
  29682. }
  29683. },
  29684. },
  29685. [
  29686. {
  29687. name: "Big",
  29688. height: math.unit(12 + 6 / 12, "feet"),
  29689. default: true
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29695. {
  29696. front: {
  29697. height: math.unit(5 + 6 / 12, "feet"),
  29698. weight: math.unit(150, "lb"),
  29699. name: "Front",
  29700. image: {
  29701. source: "./media/characters/theo/front.svg",
  29702. extra: 1184 / 1131,
  29703. bottom: 7.4 / 1191
  29704. }
  29705. },
  29706. },
  29707. [
  29708. {
  29709. name: "Micro",
  29710. height: math.unit(5, "inches")
  29711. },
  29712. {
  29713. name: "Normal",
  29714. height: math.unit(5 + 6 / 12, "feet"),
  29715. default: true
  29716. },
  29717. ]
  29718. ))
  29719. characterMakers.push(() => makeCharacter(
  29720. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29721. {
  29722. front: {
  29723. height: math.unit(5 + 9 / 12, "feet"),
  29724. weight: math.unit(130, "lb"),
  29725. name: "Front",
  29726. image: {
  29727. source: "./media/characters/cecelia-swift/front.svg",
  29728. extra: 502 / 484,
  29729. bottom: 23 / 523
  29730. }
  29731. },
  29732. back: {
  29733. height: math.unit(5 + 9 / 12, "feet"),
  29734. weight: math.unit(130, "lb"),
  29735. name: "Back",
  29736. image: {
  29737. source: "./media/characters/cecelia-swift/back.svg",
  29738. extra: 499 / 485,
  29739. bottom: 12 / 511
  29740. }
  29741. },
  29742. head: {
  29743. height: math.unit(0.90, "feet"),
  29744. name: "Head",
  29745. image: {
  29746. source: "./media/characters/cecelia-swift/head.svg"
  29747. }
  29748. },
  29749. rump: {
  29750. height: math.unit(1.75, "feet"),
  29751. name: "Rump",
  29752. image: {
  29753. source: "./media/characters/cecelia-swift/rump.svg"
  29754. }
  29755. },
  29756. },
  29757. [
  29758. {
  29759. name: "Normal",
  29760. height: math.unit(5 + 9 / 12, "feet"),
  29761. default: true
  29762. },
  29763. {
  29764. name: "Big",
  29765. height: math.unit(50, "feet")
  29766. },
  29767. {
  29768. name: "Macro",
  29769. height: math.unit(100, "feet")
  29770. },
  29771. {
  29772. name: "Macro+",
  29773. height: math.unit(500, "feet")
  29774. },
  29775. {
  29776. name: "Macro++",
  29777. height: math.unit(1000, "feet")
  29778. },
  29779. ]
  29780. ))
  29781. characterMakers.push(() => makeCharacter(
  29782. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29783. {
  29784. front: {
  29785. height: math.unit(6, "feet"),
  29786. weight: math.unit(150, "lb"),
  29787. name: "Front",
  29788. image: {
  29789. source: "./media/characters/kaunan/front.svg",
  29790. extra: 2890 / 2523,
  29791. bottom: 49 / 2939
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Macro",
  29798. height: math.unit(150, "feet"),
  29799. default: true
  29800. },
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29805. {
  29806. dressed: {
  29807. height: math.unit(175, "cm"),
  29808. weight: math.unit(60, "kg"),
  29809. name: "Dressed",
  29810. image: {
  29811. source: "./media/characters/fei/dressed.svg",
  29812. extra: 1402/1278,
  29813. bottom: 27/1429
  29814. }
  29815. },
  29816. nude: {
  29817. height: math.unit(175, "cm"),
  29818. weight: math.unit(60, "kg"),
  29819. name: "Nude",
  29820. image: {
  29821. source: "./media/characters/fei/nude.svg",
  29822. extra: 1402/1278,
  29823. bottom: 27/1429
  29824. }
  29825. },
  29826. heels: {
  29827. height: math.unit(0.466, "feet"),
  29828. name: "Heels",
  29829. image: {
  29830. source: "./media/characters/fei/heels.svg",
  29831. extra: 156/152,
  29832. bottom: 28/184
  29833. }
  29834. },
  29835. },
  29836. [
  29837. {
  29838. name: "Mortal",
  29839. height: math.unit(175, "cm")
  29840. },
  29841. {
  29842. name: "Normal",
  29843. height: math.unit(3500, "m")
  29844. },
  29845. {
  29846. name: "Stroll",
  29847. height: math.unit(18.4, "km"),
  29848. default: true
  29849. },
  29850. {
  29851. name: "Showoff",
  29852. height: math.unit(175, "km")
  29853. },
  29854. ]
  29855. ))
  29856. characterMakers.push(() => makeCharacter(
  29857. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29858. {
  29859. front: {
  29860. height: math.unit(7, "feet"),
  29861. weight: math.unit(1000, "kg"),
  29862. name: "Front",
  29863. image: {
  29864. source: "./media/characters/edrax/front.svg",
  29865. extra: 2838 / 2550,
  29866. bottom: 130 / 2968
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Small",
  29873. height: math.unit(7, "feet")
  29874. },
  29875. {
  29876. name: "Normal",
  29877. height: math.unit(1500, "meters")
  29878. },
  29879. {
  29880. name: "Mega",
  29881. height: math.unit(12000000, "km"),
  29882. default: true
  29883. },
  29884. {
  29885. name: "Megamacro",
  29886. height: math.unit(10600000, "lightyears")
  29887. },
  29888. {
  29889. name: "Hypermacro",
  29890. height: math.unit(256, "yottameters")
  29891. },
  29892. ]
  29893. ))
  29894. characterMakers.push(() => makeCharacter(
  29895. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29896. {
  29897. front: {
  29898. height: math.unit(10, "feet"),
  29899. weight: math.unit(750, "lb"),
  29900. name: "Front",
  29901. image: {
  29902. source: "./media/characters/clove/front.svg",
  29903. extra: 1918/1751,
  29904. bottom: 52/1970
  29905. }
  29906. },
  29907. back: {
  29908. height: math.unit(10, "feet"),
  29909. weight: math.unit(750, "lb"),
  29910. name: "Back",
  29911. image: {
  29912. source: "./media/characters/clove/back.svg",
  29913. extra: 1912/1747,
  29914. bottom: 50/1962
  29915. }
  29916. },
  29917. },
  29918. [
  29919. {
  29920. name: "Normal",
  29921. height: math.unit(10, "feet"),
  29922. default: true
  29923. },
  29924. ]
  29925. ))
  29926. characterMakers.push(() => makeCharacter(
  29927. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29928. {
  29929. front: {
  29930. height: math.unit(4, "feet"),
  29931. weight: math.unit(50, "lb"),
  29932. name: "Front",
  29933. image: {
  29934. source: "./media/characters/alex-rabbit/front.svg",
  29935. extra: 507 / 458,
  29936. bottom: 18.5 / 527
  29937. }
  29938. },
  29939. back: {
  29940. height: math.unit(4, "feet"),
  29941. weight: math.unit(50, "lb"),
  29942. name: "Back",
  29943. image: {
  29944. source: "./media/characters/alex-rabbit/back.svg",
  29945. extra: 502 / 460,
  29946. bottom: 18.9 / 521
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Normal",
  29953. height: math.unit(4, "feet"),
  29954. default: true
  29955. },
  29956. ]
  29957. ))
  29958. characterMakers.push(() => makeCharacter(
  29959. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29960. {
  29961. front: {
  29962. height: math.unit(1 + 3 / 12, "feet"),
  29963. weight: math.unit(80, "lb"),
  29964. name: "Front",
  29965. image: {
  29966. source: "./media/characters/zander-rose/front.svg",
  29967. extra: 916 / 797,
  29968. bottom: 17 / 933
  29969. }
  29970. },
  29971. back: {
  29972. height: math.unit(1 + 3 / 12, "feet"),
  29973. weight: math.unit(80, "lb"),
  29974. name: "Back",
  29975. image: {
  29976. source: "./media/characters/zander-rose/back.svg",
  29977. extra: 903 / 779,
  29978. bottom: 31 / 934
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Normal",
  29985. height: math.unit(1 + 3 / 12, "feet"),
  29986. default: true
  29987. },
  29988. ]
  29989. ))
  29990. characterMakers.push(() => makeCharacter(
  29991. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29992. {
  29993. anthro: {
  29994. height: math.unit(6, "feet"),
  29995. weight: math.unit(150, "lb"),
  29996. name: "Anthro",
  29997. image: {
  29998. source: "./media/characters/razz/anthro.svg",
  29999. extra: 1437 / 1343,
  30000. bottom: 48 / 1485
  30001. }
  30002. },
  30003. feral: {
  30004. height: math.unit(6, "feet"),
  30005. weight: math.unit(150, "lb"),
  30006. name: "Feral",
  30007. image: {
  30008. source: "./media/characters/razz/feral.svg",
  30009. extra: 2569 / 1385,
  30010. bottom: 95 / 2664
  30011. }
  30012. },
  30013. },
  30014. [
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(6, "feet"),
  30018. default: true
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30024. {
  30025. front: {
  30026. height: math.unit(9 + 4 / 12, "feet"),
  30027. weight: math.unit(500, "lb"),
  30028. name: "Front",
  30029. image: {
  30030. source: "./media/characters/morrigan/front.svg",
  30031. extra: 2707 / 2579,
  30032. bottom: 156 / 2863
  30033. }
  30034. },
  30035. },
  30036. [
  30037. {
  30038. name: "Normal",
  30039. height: math.unit(9 + 4 / 12, "feet"),
  30040. default: true
  30041. },
  30042. ]
  30043. ))
  30044. characterMakers.push(() => makeCharacter(
  30045. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30046. {
  30047. front: {
  30048. height: math.unit(5, "stories"),
  30049. weight: math.unit(4000, "lb"),
  30050. name: "Front",
  30051. image: {
  30052. source: "./media/characters/jenene/front.svg",
  30053. extra: 1780 / 1710,
  30054. bottom: 57 / 1837
  30055. }
  30056. },
  30057. },
  30058. [
  30059. {
  30060. name: "Normal",
  30061. height: math.unit(5, "stories"),
  30062. default: true
  30063. },
  30064. ]
  30065. ))
  30066. characterMakers.push(() => makeCharacter(
  30067. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30068. {
  30069. taurSfw: {
  30070. height: math.unit(10, "meters"),
  30071. weight: math.unit(17500, "kg"),
  30072. name: "Taur",
  30073. image: {
  30074. source: "./media/characters/faey/taur-sfw.svg",
  30075. extra: 1200 / 968,
  30076. bottom: 41 / 1241
  30077. }
  30078. },
  30079. chestmaw: {
  30080. height: math.unit(2.01, "meters"),
  30081. name: "Chestmaw",
  30082. image: {
  30083. source: "./media/characters/faey/chestmaw.svg"
  30084. }
  30085. },
  30086. foot: {
  30087. height: math.unit(2.43, "meters"),
  30088. name: "Foot",
  30089. image: {
  30090. source: "./media/characters/faey/foot.svg"
  30091. }
  30092. },
  30093. jaws: {
  30094. height: math.unit(1.66, "meters"),
  30095. name: "Jaws",
  30096. image: {
  30097. source: "./media/characters/faey/jaws.svg"
  30098. }
  30099. },
  30100. tongues: {
  30101. height: math.unit(2.01, "meters"),
  30102. name: "Tongues",
  30103. image: {
  30104. source: "./media/characters/faey/tongues.svg"
  30105. }
  30106. },
  30107. },
  30108. [
  30109. {
  30110. name: "Small",
  30111. height: math.unit(10, "meters"),
  30112. default: true
  30113. },
  30114. {
  30115. name: "Big",
  30116. height: math.unit(500000, "km")
  30117. },
  30118. ]
  30119. ))
  30120. characterMakers.push(() => makeCharacter(
  30121. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30122. {
  30123. front: {
  30124. height: math.unit(7, "feet"),
  30125. weight: math.unit(275, "lb"),
  30126. name: "Front",
  30127. image: {
  30128. source: "./media/characters/roku/front.svg",
  30129. extra: 903 / 878,
  30130. bottom: 37 / 940
  30131. }
  30132. },
  30133. },
  30134. [
  30135. {
  30136. name: "Normal",
  30137. height: math.unit(7, "feet"),
  30138. default: true
  30139. },
  30140. {
  30141. name: "Macro",
  30142. height: math.unit(500, "feet")
  30143. },
  30144. {
  30145. name: "Megamacro",
  30146. height: math.unit(200, "miles")
  30147. },
  30148. ]
  30149. ))
  30150. characterMakers.push(() => makeCharacter(
  30151. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30152. {
  30153. front: {
  30154. height: math.unit(6 + 2 / 12, "feet"),
  30155. weight: math.unit(150, "lb"),
  30156. name: "Front",
  30157. image: {
  30158. source: "./media/characters/lira/front.svg",
  30159. extra: 1727 / 1605,
  30160. bottom: 26 / 1753
  30161. }
  30162. },
  30163. back: {
  30164. height: math.unit(6 + 2 / 12, "feet"),
  30165. weight: math.unit(150, "lb"),
  30166. name: "Back",
  30167. image: {
  30168. source: "./media/characters/lira/back.svg",
  30169. extra: 1713/1621,
  30170. bottom: 20/1733
  30171. }
  30172. },
  30173. hand: {
  30174. height: math.unit(0.75, "feet"),
  30175. name: "Hand",
  30176. image: {
  30177. source: "./media/characters/lira/hand.svg"
  30178. }
  30179. },
  30180. maw: {
  30181. height: math.unit(0.65, "feet"),
  30182. name: "Maw",
  30183. image: {
  30184. source: "./media/characters/lira/maw.svg"
  30185. }
  30186. },
  30187. pawDigi: {
  30188. height: math.unit(1.6, "feet"),
  30189. name: "Paw Digi",
  30190. image: {
  30191. source: "./media/characters/lira/paw-digi.svg"
  30192. }
  30193. },
  30194. pawPlanti: {
  30195. height: math.unit(1.4, "feet"),
  30196. name: "Paw Planti",
  30197. image: {
  30198. source: "./media/characters/lira/paw-planti.svg"
  30199. }
  30200. },
  30201. },
  30202. [
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(6 + 2 / 12, "feet"),
  30206. default: true
  30207. },
  30208. {
  30209. name: "Macro",
  30210. height: math.unit(100, "feet")
  30211. },
  30212. {
  30213. name: "Macro²",
  30214. height: math.unit(1600, "feet")
  30215. },
  30216. {
  30217. name: "Planetary",
  30218. height: math.unit(20, "earths")
  30219. },
  30220. ]
  30221. ))
  30222. characterMakers.push(() => makeCharacter(
  30223. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30224. {
  30225. front: {
  30226. height: math.unit(6, "feet"),
  30227. weight: math.unit(150, "lb"),
  30228. name: "Front",
  30229. image: {
  30230. source: "./media/characters/hadjet/front.svg",
  30231. extra: 1480 / 1346,
  30232. bottom: 26 / 1506
  30233. }
  30234. },
  30235. frontNsfw: {
  30236. height: math.unit(6, "feet"),
  30237. weight: math.unit(150, "lb"),
  30238. name: "Front (NSFW)",
  30239. image: {
  30240. source: "./media/characters/hadjet/front-nsfw.svg",
  30241. extra: 1440 / 1358,
  30242. bottom: 52 / 1492
  30243. }
  30244. },
  30245. },
  30246. [
  30247. {
  30248. name: "Macro",
  30249. height: math.unit(10, "stories"),
  30250. default: true
  30251. },
  30252. {
  30253. name: "Megamacro",
  30254. height: math.unit(1.5, "miles")
  30255. },
  30256. {
  30257. name: "Megamacro+",
  30258. height: math.unit(5, "miles")
  30259. },
  30260. ]
  30261. ))
  30262. characterMakers.push(() => makeCharacter(
  30263. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30264. {
  30265. side: {
  30266. height: math.unit(106, "feet"),
  30267. weight: math.unit(500, "tonnes"),
  30268. name: "Side",
  30269. image: {
  30270. source: "./media/characters/kodran/side.svg",
  30271. extra: 553 / 480,
  30272. bottom: 33 / 586
  30273. }
  30274. },
  30275. front: {
  30276. height: math.unit(132, "feet"),
  30277. weight: math.unit(500, "tonnes"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/kodran/front.svg",
  30281. extra: 667 / 643,
  30282. bottom: 42 / 709
  30283. }
  30284. },
  30285. flying: {
  30286. height: math.unit(350, "feet"),
  30287. weight: math.unit(500, "tonnes"),
  30288. name: "Flying",
  30289. image: {
  30290. source: "./media/characters/kodran/flying.svg"
  30291. }
  30292. },
  30293. foot: {
  30294. height: math.unit(33, "feet"),
  30295. name: "Foot",
  30296. image: {
  30297. source: "./media/characters/kodran/foot.svg"
  30298. }
  30299. },
  30300. footFront: {
  30301. height: math.unit(19, "feet"),
  30302. name: "Foot (Front)",
  30303. image: {
  30304. source: "./media/characters/kodran/foot-front.svg",
  30305. extra: 261 / 261,
  30306. bottom: 91 / 352
  30307. }
  30308. },
  30309. headFront: {
  30310. height: math.unit(53, "feet"),
  30311. name: "Head (Front)",
  30312. image: {
  30313. source: "./media/characters/kodran/head-front.svg"
  30314. }
  30315. },
  30316. headSide: {
  30317. height: math.unit(65, "feet"),
  30318. name: "Head (Side)",
  30319. image: {
  30320. source: "./media/characters/kodran/head-side.svg"
  30321. }
  30322. },
  30323. throat: {
  30324. height: math.unit(79, "feet"),
  30325. name: "Throat",
  30326. image: {
  30327. source: "./media/characters/kodran/throat.svg"
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Large",
  30334. height: math.unit(106, "feet"),
  30335. default: true
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30341. {
  30342. side: {
  30343. height: math.unit(11, "feet"),
  30344. weight: math.unit(150, "lb"),
  30345. name: "Side",
  30346. image: {
  30347. source: "./media/characters/pyxaron/side.svg",
  30348. extra: 305 / 195,
  30349. bottom: 17 / 322
  30350. }
  30351. },
  30352. },
  30353. [
  30354. {
  30355. name: "Normal",
  30356. height: math.unit(11, "feet"),
  30357. default: true
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Meep", species: ["candy", "salamander"], 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/meep/front.svg",
  30370. extra: 88 / 80,
  30371. bottom: 6 / 94
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Fun Sized",
  30378. height: math.unit(2, "inches"),
  30379. default: true
  30380. },
  30381. {
  30382. name: "Friend Sized",
  30383. height: math.unit(8, "inches")
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(15, "feet"),
  30392. weight: math.unit(2500, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/holly-rabbit/front.svg",
  30396. extra: 1433 / 1233,
  30397. bottom: 125 / 1558
  30398. }
  30399. },
  30400. dick: {
  30401. height: math.unit(4.6, "feet"),
  30402. name: "Dick",
  30403. image: {
  30404. source: "./media/characters/holly-rabbit/dick.svg"
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(15, "feet"),
  30412. default: true
  30413. },
  30414. {
  30415. name: "Macro",
  30416. height: math.unit(250, "feet")
  30417. },
  30418. {
  30419. name: "Macro+",
  30420. height: math.unit(2500, "feet")
  30421. },
  30422. ]
  30423. ))
  30424. characterMakers.push(() => makeCharacter(
  30425. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30426. {
  30427. front: {
  30428. height: math.unit(3.02, "meters"),
  30429. weight: math.unit(500, "kg"),
  30430. name: "Front",
  30431. image: {
  30432. source: "./media/characters/drena/front.svg",
  30433. extra: 282 / 243,
  30434. bottom: 8 / 290
  30435. }
  30436. },
  30437. side: {
  30438. height: math.unit(3.02, "meters"),
  30439. weight: math.unit(500, "kg"),
  30440. name: "Side",
  30441. image: {
  30442. source: "./media/characters/drena/side.svg",
  30443. extra: 280 / 245,
  30444. bottom: 10 / 290
  30445. }
  30446. },
  30447. back: {
  30448. height: math.unit(3.02, "meters"),
  30449. weight: math.unit(500, "kg"),
  30450. name: "Back",
  30451. image: {
  30452. source: "./media/characters/drena/back.svg",
  30453. extra: 278 / 243,
  30454. bottom: 2 / 280
  30455. }
  30456. },
  30457. foot: {
  30458. height: math.unit(0.75, "meters"),
  30459. name: "Foot",
  30460. image: {
  30461. source: "./media/characters/drena/foot.svg"
  30462. }
  30463. },
  30464. maw: {
  30465. height: math.unit(0.82, "meters"),
  30466. name: "Maw",
  30467. image: {
  30468. source: "./media/characters/drena/maw.svg"
  30469. }
  30470. },
  30471. eating: {
  30472. height: math.unit(0.75, "meters"),
  30473. name: "Eating",
  30474. image: {
  30475. source: "./media/characters/drena/eating.svg"
  30476. }
  30477. },
  30478. rump: {
  30479. height: math.unit(0.93, "meters"),
  30480. name: "Rump",
  30481. image: {
  30482. source: "./media/characters/drena/rump.svg"
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Normal",
  30489. height: math.unit(3.02, "meters"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30496. {
  30497. front: {
  30498. height: math.unit(6 + 4 / 12, "feet"),
  30499. weight: math.unit(250, "lb"),
  30500. name: "Front",
  30501. image: {
  30502. source: "./media/characters/remmyzilla/front.svg",
  30503. extra: 4033 / 3588,
  30504. bottom: 123 / 4156
  30505. }
  30506. },
  30507. back: {
  30508. height: math.unit(6 + 4 / 12, "feet"),
  30509. weight: math.unit(250, "lb"),
  30510. name: "Back",
  30511. image: {
  30512. source: "./media/characters/remmyzilla/back.svg",
  30513. extra: 2687 / 2555,
  30514. bottom: 48 / 2735
  30515. }
  30516. },
  30517. paw: {
  30518. height: math.unit(1.73, "feet"),
  30519. name: "Paw",
  30520. image: {
  30521. source: "./media/characters/remmyzilla/paw.svg"
  30522. },
  30523. extraAttributes: {
  30524. "toeSize": {
  30525. name: "Toe Size",
  30526. power: 2,
  30527. type: "area",
  30528. base: math.unit(0.0035, "m^2")
  30529. },
  30530. "padSize": {
  30531. name: "Pad Size",
  30532. power: 2,
  30533. type: "area",
  30534. base: math.unit(0.015, "m^2")
  30535. },
  30536. "pawsize": {
  30537. name: "Paw Size",
  30538. power: 2,
  30539. type: "area",
  30540. base: math.unit(0.072, "m^2")
  30541. },
  30542. }
  30543. },
  30544. maw: {
  30545. height: math.unit(1.73, "feet"),
  30546. name: "Maw",
  30547. image: {
  30548. source: "./media/characters/remmyzilla/maw.svg"
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Normal",
  30555. height: math.unit(6 + 4 / 12, "feet")
  30556. },
  30557. {
  30558. name: "Minimacro",
  30559. height: math.unit(12 + 8 / 12, "feet")
  30560. },
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(640, "feet"),
  30564. default: true
  30565. },
  30566. {
  30567. name: "Megamacro",
  30568. height: math.unit(6400, "feet")
  30569. },
  30570. {
  30571. name: "Gigamacro",
  30572. height: math.unit(64000, "miles")
  30573. },
  30574. ]
  30575. ))
  30576. characterMakers.push(() => makeCharacter(
  30577. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30578. {
  30579. front: {
  30580. height: math.unit(2.5, "meters"),
  30581. weight: math.unit(300, "lb"),
  30582. name: "Front",
  30583. image: {
  30584. source: "./media/characters/lawrence/front.svg",
  30585. extra: 357 / 335,
  30586. bottom: 30 / 387
  30587. }
  30588. },
  30589. back: {
  30590. height: math.unit(2.5, "meters"),
  30591. weight: math.unit(300, "lb"),
  30592. name: "Back",
  30593. image: {
  30594. source: "./media/characters/lawrence/back.svg",
  30595. extra: 357 / 338,
  30596. bottom: 16 / 373
  30597. }
  30598. },
  30599. head: {
  30600. height: math.unit(0.9, "meter"),
  30601. name: "Head",
  30602. image: {
  30603. source: "./media/characters/lawrence/head.svg"
  30604. }
  30605. },
  30606. maw: {
  30607. height: math.unit(0.7, "meter"),
  30608. name: "Maw",
  30609. image: {
  30610. source: "./media/characters/lawrence/maw.svg"
  30611. }
  30612. },
  30613. footBottom: {
  30614. height: math.unit(0.5, "meter"),
  30615. name: "Foot (Bottom)",
  30616. image: {
  30617. source: "./media/characters/lawrence/foot-bottom.svg"
  30618. }
  30619. },
  30620. footTop: {
  30621. height: math.unit(0.5, "meter"),
  30622. name: "Foot (Top)",
  30623. image: {
  30624. source: "./media/characters/lawrence/foot-top.svg"
  30625. }
  30626. },
  30627. },
  30628. [
  30629. {
  30630. name: "Normal",
  30631. height: math.unit(2.5, "meters"),
  30632. default: true
  30633. },
  30634. {
  30635. name: "Macro",
  30636. height: math.unit(95, "meters")
  30637. },
  30638. {
  30639. name: "Megamacro",
  30640. height: math.unit(150, "km")
  30641. },
  30642. ]
  30643. ))
  30644. characterMakers.push(() => makeCharacter(
  30645. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30646. {
  30647. front: {
  30648. height: math.unit(4.2, "meters"),
  30649. name: "Front",
  30650. image: {
  30651. source: "./media/characters/sydney/front.svg",
  30652. extra: 1323 / 1277,
  30653. bottom: 111 / 1434
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(4.2, "meters"),
  30661. default: true
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30667. {
  30668. back: {
  30669. height: math.unit(201, "feet"),
  30670. name: "Back",
  30671. image: {
  30672. source: "./media/characters/jessica/back.svg",
  30673. extra: 273 / 259,
  30674. bottom: 7 / 280
  30675. }
  30676. },
  30677. },
  30678. [
  30679. {
  30680. name: "Normal",
  30681. height: math.unit(201, "feet"),
  30682. default: true
  30683. },
  30684. {
  30685. name: "Megamacro",
  30686. height: math.unit(8, "miles")
  30687. },
  30688. ]
  30689. ))
  30690. characterMakers.push(() => makeCharacter(
  30691. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30692. {
  30693. side: {
  30694. height: math.unit(5.6, "m"),
  30695. weight: math.unit(8000, "kg"),
  30696. name: "Side",
  30697. image: {
  30698. source: "./media/characters/victoria/side.svg",
  30699. extra: 1542/1229,
  30700. bottom: 124/1666
  30701. }
  30702. },
  30703. maw: {
  30704. height: math.unit(7.14, "feet"),
  30705. name: "Maw",
  30706. image: {
  30707. source: "./media/characters/victoria/maw.svg"
  30708. }
  30709. },
  30710. },
  30711. [
  30712. {
  30713. name: "Normal",
  30714. height: math.unit(5.6, "m"),
  30715. default: true
  30716. },
  30717. ]
  30718. ))
  30719. characterMakers.push(() => makeCharacter(
  30720. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30721. {
  30722. front: {
  30723. height: math.unit(5 + 6 / 12, "feet"),
  30724. name: "Front",
  30725. image: {
  30726. source: "./media/characters/cat/front.svg",
  30727. extra: 1449/1295,
  30728. bottom: 34/1483
  30729. },
  30730. form: "cat",
  30731. default: true
  30732. },
  30733. back: {
  30734. height: math.unit(5 + 6 / 12, "feet"),
  30735. name: "Back",
  30736. image: {
  30737. source: "./media/characters/cat/back.svg",
  30738. extra: 1466/1301,
  30739. bottom: 19/1485
  30740. },
  30741. form: "cat"
  30742. },
  30743. taur: {
  30744. height: math.unit(7, "feet"),
  30745. name: "Taur",
  30746. image: {
  30747. source: "./media/characters/cat/taur.svg",
  30748. extra: 1389/1233,
  30749. bottom: 83/1472
  30750. },
  30751. form: "taur",
  30752. default: true
  30753. },
  30754. lucarioFront: {
  30755. height: math.unit(4, "feet"),
  30756. name: "Lucario (Front)",
  30757. image: {
  30758. source: "./media/characters/cat/lucario-front.svg",
  30759. extra: 1149/1019,
  30760. bottom: 84/1233
  30761. },
  30762. form: "lucario",
  30763. default: true
  30764. },
  30765. lucarioBack: {
  30766. height: math.unit(4, "feet"),
  30767. name: "Lucario (Back)",
  30768. image: {
  30769. source: "./media/characters/cat/lucario-back.svg",
  30770. extra: 1190/1059,
  30771. bottom: 33/1223
  30772. },
  30773. form: "lucario"
  30774. },
  30775. megaLucario: {
  30776. height: math.unit(4, "feet"),
  30777. name: "Mega Lucario",
  30778. image: {
  30779. source: "./media/characters/cat/mega-lucario.svg",
  30780. extra: 1515 / 1319,
  30781. bottom: 63 / 1578
  30782. },
  30783. form: "lucario"
  30784. },
  30785. nickit: {
  30786. height: math.unit(2, "feet"),
  30787. name: "Nickit",
  30788. image: {
  30789. source: "./media/characters/cat/nickit.svg",
  30790. extra: 1980 / 1585,
  30791. bottom: 102 / 2082
  30792. },
  30793. form: "nickit",
  30794. default: true
  30795. },
  30796. lopunnyFront: {
  30797. height: math.unit(5, "feet"),
  30798. name: "Lopunny (Front)",
  30799. image: {
  30800. source: "./media/characters/cat/lopunny-front.svg",
  30801. extra: 1782 / 1469,
  30802. bottom: 38 / 1820
  30803. },
  30804. form: "lopunny",
  30805. default: true
  30806. },
  30807. lopunnyBack: {
  30808. height: math.unit(5, "feet"),
  30809. name: "Lopunny (Back)",
  30810. image: {
  30811. source: "./media/characters/cat/lopunny-back.svg",
  30812. extra: 1660 / 1490,
  30813. bottom: 25 / 1685
  30814. },
  30815. form: "lopunny"
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Really small",
  30821. height: math.unit(1, "nm")
  30822. },
  30823. {
  30824. name: "Micro",
  30825. height: math.unit(5, "inches")
  30826. },
  30827. {
  30828. name: "Normal",
  30829. height: math.unit(5 + 6 / 12, "feet"),
  30830. default: true
  30831. },
  30832. {
  30833. name: "Macro",
  30834. height: math.unit(50, "feet")
  30835. },
  30836. {
  30837. name: "Macro+",
  30838. height: math.unit(150, "feet")
  30839. },
  30840. {
  30841. name: "Megamacro",
  30842. height: math.unit(100, "miles")
  30843. },
  30844. ]
  30845. ))
  30846. characterMakers.push(() => makeCharacter(
  30847. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30848. {
  30849. front: {
  30850. height: math.unit(63.4, "meters"),
  30851. weight: math.unit(3.28349e+6, "kilograms"),
  30852. name: "Front",
  30853. image: {
  30854. source: "./media/characters/kirina-violet/front.svg",
  30855. extra: 2812 / 2725,
  30856. bottom: 0 / 2812
  30857. }
  30858. },
  30859. back: {
  30860. height: math.unit(63.4, "meters"),
  30861. weight: math.unit(3.28349e+6, "kilograms"),
  30862. name: "Back",
  30863. image: {
  30864. source: "./media/characters/kirina-violet/back.svg",
  30865. extra: 2812 / 2725,
  30866. bottom: 0 / 2812
  30867. }
  30868. },
  30869. mouth: {
  30870. height: math.unit(4.35, "meters"),
  30871. name: "Mouth",
  30872. image: {
  30873. source: "./media/characters/kirina-violet/mouth.svg"
  30874. }
  30875. },
  30876. paw: {
  30877. height: math.unit(5.6, "meters"),
  30878. name: "Paw",
  30879. image: {
  30880. source: "./media/characters/kirina-violet/paw.svg"
  30881. }
  30882. },
  30883. tail: {
  30884. height: math.unit(18, "meters"),
  30885. name: "Tail",
  30886. image: {
  30887. source: "./media/characters/kirina-violet/tail.svg"
  30888. }
  30889. },
  30890. },
  30891. [
  30892. {
  30893. name: "Macro",
  30894. height: math.unit(63.4, "meters"),
  30895. default: true
  30896. },
  30897. ]
  30898. ))
  30899. characterMakers.push(() => makeCharacter(
  30900. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30901. {
  30902. front: {
  30903. height: math.unit(75, "feet"),
  30904. name: "Front",
  30905. image: {
  30906. source: "./media/characters/cat-gigachu/front.svg",
  30907. extra: 1239/1027,
  30908. bottom: 32/1271
  30909. }
  30910. },
  30911. back: {
  30912. height: math.unit(75, "feet"),
  30913. name: "Back",
  30914. image: {
  30915. source: "./media/characters/cat-gigachu/back.svg",
  30916. extra: 1229/1030,
  30917. bottom: 9/1238
  30918. }
  30919. },
  30920. },
  30921. [
  30922. {
  30923. name: "Dynamax",
  30924. height: math.unit(75, "feet"),
  30925. default: true
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30931. {
  30932. front: {
  30933. height: math.unit(6, "feet"),
  30934. weight: math.unit(150, "lb"),
  30935. name: "Front",
  30936. image: {
  30937. source: "./media/characters/sfaiyan/front.svg",
  30938. extra: 999 / 978,
  30939. bottom: 5 / 1004
  30940. }
  30941. },
  30942. },
  30943. [
  30944. {
  30945. name: "Normal",
  30946. height: math.unit(1.82, "meters")
  30947. },
  30948. {
  30949. name: "Giant",
  30950. height: math.unit(2.27, "km"),
  30951. default: true
  30952. },
  30953. ]
  30954. ))
  30955. characterMakers.push(() => makeCharacter(
  30956. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30957. {
  30958. front: {
  30959. height: math.unit(179, "cm"),
  30960. weight: math.unit(100, "kg"),
  30961. name: "Front",
  30962. image: {
  30963. source: "./media/characters/raunehkeli/front.svg",
  30964. extra: 1934 / 1926,
  30965. bottom: 0 / 1934
  30966. }
  30967. },
  30968. },
  30969. [
  30970. {
  30971. name: "Normal",
  30972. height: math.unit(179, "cm")
  30973. },
  30974. {
  30975. name: "Maximum",
  30976. height: math.unit(575, "meters"),
  30977. default: true
  30978. },
  30979. ]
  30980. ))
  30981. characterMakers.push(() => makeCharacter(
  30982. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30983. {
  30984. front: {
  30985. height: math.unit(6, "feet"),
  30986. weight: math.unit(150, "lb"),
  30987. name: "Front",
  30988. image: {
  30989. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30990. extra: 2625 / 2518,
  30991. bottom: 60 / 2685
  30992. }
  30993. },
  30994. },
  30995. [
  30996. {
  30997. name: "Normal",
  30998. height: math.unit(6 + 2 / 12, "feet")
  30999. },
  31000. {
  31001. name: "Macro",
  31002. height: math.unit(1180, "feet"),
  31003. default: true
  31004. },
  31005. ]
  31006. ))
  31007. characterMakers.push(() => makeCharacter(
  31008. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31009. {
  31010. front: {
  31011. height: math.unit(5 + 6 / 12, "feet"),
  31012. weight: math.unit(108, "lb"),
  31013. name: "Front",
  31014. image: {
  31015. source: "./media/characters/lilith-zott/front.svg",
  31016. extra: 2510 / 2238,
  31017. bottom: 100 / 2610
  31018. }
  31019. },
  31020. frontDressed: {
  31021. height: math.unit(5 + 6 / 12, "feet"),
  31022. weight: math.unit(108, "lb"),
  31023. name: "Front (Dressed)",
  31024. image: {
  31025. source: "./media/characters/lilith-zott/front-dressed.svg",
  31026. extra: 2510 / 2238,
  31027. bottom: 100 / 2610
  31028. }
  31029. },
  31030. },
  31031. [
  31032. {
  31033. name: "Normal",
  31034. height: math.unit(5 + 6 / 12, "feet")
  31035. },
  31036. {
  31037. name: "Macro",
  31038. height: math.unit(1030, "feet"),
  31039. default: true
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(6, "feet"),
  31048. weight: math.unit(150, "lb"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31052. extra: 2567 / 2435,
  31053. bottom: 39 / 2606
  31054. }
  31055. },
  31056. frontSuper: {
  31057. height: math.unit(6, "feet"),
  31058. name: "Front (Super)",
  31059. image: {
  31060. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31061. extra: 2567 / 2435,
  31062. bottom: 39 / 2606
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Normal",
  31069. height: math.unit(5 + 10 / 12, "feet")
  31070. },
  31071. {
  31072. name: "Macro",
  31073. height: math.unit(1100, "feet"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(100, "miles"),
  31083. name: "Front",
  31084. image: {
  31085. source: "./media/characters/sona/front.svg",
  31086. extra: 2433 / 2201,
  31087. bottom: 53 / 2486
  31088. }
  31089. },
  31090. foot: {
  31091. height: math.unit(16.1, "miles"),
  31092. name: "Foot",
  31093. image: {
  31094. source: "./media/characters/sona/foot.svg"
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Macro",
  31101. height: math.unit(100, "miles"),
  31102. default: true
  31103. },
  31104. ]
  31105. ))
  31106. characterMakers.push(() => makeCharacter(
  31107. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31108. {
  31109. front: {
  31110. height: math.unit(6, "feet"),
  31111. weight: math.unit(150, "lb"),
  31112. name: "Front",
  31113. image: {
  31114. source: "./media/characters/bailey/front.svg",
  31115. extra: 1778 / 1724,
  31116. bottom: 30 / 1808
  31117. }
  31118. },
  31119. },
  31120. [
  31121. {
  31122. name: "Micro",
  31123. height: math.unit(4, "inches")
  31124. },
  31125. {
  31126. name: "Normal",
  31127. height: math.unit(5 + 5 / 12, "feet"),
  31128. default: true
  31129. },
  31130. {
  31131. name: "Macro",
  31132. height: math.unit(250, "feet")
  31133. },
  31134. {
  31135. name: "Megamacro",
  31136. height: math.unit(100, "miles")
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(5 + 2 / 12, "feet"),
  31145. weight: math.unit(120, "lb"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/snaps/front.svg",
  31149. extra: 2370 / 2177,
  31150. bottom: 48 / 2418
  31151. }
  31152. },
  31153. back: {
  31154. height: math.unit(5 + 2 / 12, "feet"),
  31155. weight: math.unit(120, "lb"),
  31156. name: "Back",
  31157. image: {
  31158. source: "./media/characters/snaps/back.svg",
  31159. extra: 2408 / 2258,
  31160. bottom: 15 / 2423
  31161. }
  31162. },
  31163. },
  31164. [
  31165. {
  31166. name: "Micro",
  31167. height: math.unit(9, "inches")
  31168. },
  31169. {
  31170. name: "Normal",
  31171. height: math.unit(5 + 2 / 12, "feet"),
  31172. default: true
  31173. },
  31174. {
  31175. name: "Mini Macro",
  31176. height: math.unit(10, "feet")
  31177. },
  31178. ]
  31179. ))
  31180. characterMakers.push(() => makeCharacter(
  31181. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31182. {
  31183. front: {
  31184. height: math.unit(1.8, "meters"),
  31185. weight: math.unit(85, "kg"),
  31186. name: "Front",
  31187. image: {
  31188. source: "./media/characters/azteck/front.svg",
  31189. extra: 2815 / 2625,
  31190. bottom: 89 / 2904
  31191. }
  31192. },
  31193. back: {
  31194. height: math.unit(1.8, "meters"),
  31195. weight: math.unit(85, "kg"),
  31196. name: "Back",
  31197. image: {
  31198. source: "./media/characters/azteck/back.svg",
  31199. extra: 2856 / 2648,
  31200. bottom: 85 / 2941
  31201. }
  31202. },
  31203. frontDressed: {
  31204. height: math.unit(1.8, "meters"),
  31205. weight: math.unit(85, "kg"),
  31206. name: "Front (Dressed)",
  31207. image: {
  31208. source: "./media/characters/azteck/front-dressed.svg",
  31209. extra: 2147 / 2003,
  31210. bottom: 68 / 2215
  31211. }
  31212. },
  31213. head: {
  31214. height: math.unit(0.47, "meters"),
  31215. weight: math.unit(85, "kg"),
  31216. name: "Head",
  31217. image: {
  31218. source: "./media/characters/azteck/head.svg"
  31219. }
  31220. },
  31221. },
  31222. [
  31223. {
  31224. name: "Bite sized",
  31225. height: math.unit(16, "cm")
  31226. },
  31227. {
  31228. name: "Normal",
  31229. height: math.unit(1.8, "meters"),
  31230. default: true
  31231. },
  31232. ]
  31233. ))
  31234. characterMakers.push(() => makeCharacter(
  31235. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31236. {
  31237. front: {
  31238. height: math.unit(6, "feet"),
  31239. weight: math.unit(150, "lb"),
  31240. name: "Front",
  31241. image: {
  31242. source: "./media/characters/pidge/front.svg",
  31243. extra: 1936/1820,
  31244. bottom: 0/1936
  31245. }
  31246. },
  31247. back: {
  31248. height: math.unit(6, "feet"),
  31249. weight: math.unit(150, "lb"),
  31250. name: "Back",
  31251. image: {
  31252. source: "./media/characters/pidge/back.svg",
  31253. extra: 1938/1843,
  31254. bottom: 0/1938
  31255. }
  31256. },
  31257. casual: {
  31258. height: math.unit(6, "feet"),
  31259. weight: math.unit(150, "lb"),
  31260. name: "Casual",
  31261. image: {
  31262. source: "./media/characters/pidge/casual.svg",
  31263. extra: 1936/1820,
  31264. bottom: 0/1936
  31265. }
  31266. },
  31267. tech: {
  31268. height: math.unit(6, "feet"),
  31269. weight: math.unit(150, "lb"),
  31270. name: "Tech",
  31271. image: {
  31272. source: "./media/characters/pidge/tech.svg",
  31273. extra: 1802/1682,
  31274. bottom: 0/1802
  31275. }
  31276. },
  31277. head: {
  31278. height: math.unit(1.61, "feet"),
  31279. name: "Head",
  31280. image: {
  31281. source: "./media/characters/pidge/head.svg"
  31282. }
  31283. },
  31284. collar: {
  31285. height: math.unit(0.82, "feet"),
  31286. name: "Collar",
  31287. image: {
  31288. source: "./media/characters/pidge/collar.svg"
  31289. }
  31290. },
  31291. },
  31292. [
  31293. {
  31294. name: "Macro",
  31295. height: math.unit(2, "mile"),
  31296. default: true
  31297. },
  31298. {
  31299. name: "PUPPY",
  31300. height: math.unit(20, "miles")
  31301. },
  31302. ]
  31303. ))
  31304. characterMakers.push(() => makeCharacter(
  31305. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31306. {
  31307. front: {
  31308. height: math.unit(6, "feet"),
  31309. weight: math.unit(150, "lb"),
  31310. name: "Front",
  31311. image: {
  31312. source: "./media/characters/en/front.svg",
  31313. extra: 1697 / 1563,
  31314. bottom: 103 / 1800
  31315. }
  31316. },
  31317. back: {
  31318. height: math.unit(6, "feet"),
  31319. weight: math.unit(150, "lb"),
  31320. name: "Back",
  31321. image: {
  31322. source: "./media/characters/en/back.svg",
  31323. extra: 1700 / 1570,
  31324. bottom: 51 / 1751
  31325. }
  31326. },
  31327. frontDressed: {
  31328. height: math.unit(6, "feet"),
  31329. weight: math.unit(150, "lb"),
  31330. name: "Front (Dressed)",
  31331. image: {
  31332. source: "./media/characters/en/front-dressed.svg",
  31333. extra: 1697 / 1563,
  31334. bottom: 103 / 1800
  31335. }
  31336. },
  31337. backDressed: {
  31338. height: math.unit(6, "feet"),
  31339. weight: math.unit(150, "lb"),
  31340. name: "Back (Dressed)",
  31341. image: {
  31342. source: "./media/characters/en/back-dressed.svg",
  31343. extra: 1700 / 1570,
  31344. bottom: 51 / 1751
  31345. }
  31346. },
  31347. },
  31348. [
  31349. {
  31350. name: "Macro",
  31351. height: math.unit(210, "feet"),
  31352. default: true
  31353. },
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31358. {
  31359. front: {
  31360. height: math.unit(6, "feet"),
  31361. weight: math.unit(150, "lb"),
  31362. name: "Front",
  31363. image: {
  31364. source: "./media/characters/haze-orris/front.svg",
  31365. extra: 3975 / 3525,
  31366. bottom: 137 / 4112
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Micro",
  31373. height: math.unit(150, "mm"),
  31374. default: true
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31380. {
  31381. front: {
  31382. height: math.unit(6, "feet"),
  31383. weight: math.unit(150, "lb"),
  31384. name: "Front",
  31385. image: {
  31386. source: "./media/characters/casselene-yaro/front.svg",
  31387. extra: 4721 / 4541,
  31388. bottom: 82 / 4803
  31389. }
  31390. },
  31391. back: {
  31392. height: math.unit(6, "feet"),
  31393. weight: math.unit(150, "lb"),
  31394. name: "Back",
  31395. image: {
  31396. source: "./media/characters/casselene-yaro/back.svg",
  31397. extra: 4569 / 4377,
  31398. bottom: 69 / 4638
  31399. }
  31400. },
  31401. dressed: {
  31402. height: math.unit(6, "feet"),
  31403. weight: math.unit(150, "lb"),
  31404. name: "Dressed",
  31405. image: {
  31406. source: "./media/characters/casselene-yaro/dressed.svg",
  31407. extra: 4721 / 4541,
  31408. bottom: 82 / 4803
  31409. }
  31410. },
  31411. maw: {
  31412. height: math.unit(1, "feet"),
  31413. name: "Maw",
  31414. image: {
  31415. source: "./media/characters/casselene-yaro/maw.svg"
  31416. }
  31417. },
  31418. },
  31419. [
  31420. {
  31421. name: "Macro",
  31422. height: math.unit(190, "feet"),
  31423. default: true
  31424. },
  31425. ]
  31426. ))
  31427. characterMakers.push(() => makeCharacter(
  31428. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31429. {
  31430. front: {
  31431. height: math.unit(10, "feet"),
  31432. weight: math.unit(15015, "lb"),
  31433. name: "Front",
  31434. image: {
  31435. source: "./media/characters/platine/front.svg",
  31436. extra: 1741/1650,
  31437. bottom: 84/1825
  31438. }
  31439. },
  31440. side: {
  31441. height: math.unit(10, "feet"),
  31442. weight: math.unit(15015, "lb"),
  31443. name: "Side",
  31444. image: {
  31445. source: "./media/characters/platine/side.svg",
  31446. extra: 1790/1705,
  31447. bottom: 29/1819
  31448. }
  31449. },
  31450. },
  31451. [
  31452. {
  31453. name: "Normal",
  31454. height: math.unit(10, "feet"),
  31455. default: true
  31456. },
  31457. {
  31458. name: "Macro",
  31459. height: math.unit(100, "feet")
  31460. },
  31461. {
  31462. name: "Megamacro",
  31463. height: math.unit(1000, "feet")
  31464. },
  31465. ]
  31466. ))
  31467. characterMakers.push(() => makeCharacter(
  31468. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31469. {
  31470. front: {
  31471. height: math.unit(15 + 5 / 12, "feet"),
  31472. weight: math.unit(4600, "lb"),
  31473. name: "Front",
  31474. image: {
  31475. source: "./media/characters/neapolitan-ananassa/front.svg",
  31476. extra: 2903 / 2736,
  31477. bottom: 0 / 2903
  31478. }
  31479. },
  31480. side: {
  31481. height: math.unit(15 + 5 / 12, "feet"),
  31482. weight: math.unit(4600, "lb"),
  31483. name: "Side",
  31484. image: {
  31485. source: "./media/characters/neapolitan-ananassa/side.svg",
  31486. extra: 2925 / 2719,
  31487. bottom: 0 / 2925
  31488. }
  31489. },
  31490. back: {
  31491. height: math.unit(15 + 5 / 12, "feet"),
  31492. weight: math.unit(4600, "lb"),
  31493. name: "Back",
  31494. image: {
  31495. source: "./media/characters/neapolitan-ananassa/back.svg",
  31496. extra: 2903 / 2736,
  31497. bottom: 0 / 2903
  31498. }
  31499. },
  31500. },
  31501. [
  31502. {
  31503. name: "Normal",
  31504. height: math.unit(15 + 5 / 12, "feet"),
  31505. default: true
  31506. },
  31507. {
  31508. name: "Post-Millenium",
  31509. height: math.unit(35 + 5 / 12, "feet")
  31510. },
  31511. {
  31512. name: "Post-Era",
  31513. height: math.unit(450 + 5 / 12, "feet")
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(300, "meters"),
  31522. weight: math.unit(125000, "tonnes"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/pazuzu/front.svg",
  31526. extra: 877 / 794,
  31527. bottom: 47 / 924
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Macro",
  31534. height: math.unit(300, "meters"),
  31535. default: true
  31536. },
  31537. ]
  31538. ))
  31539. characterMakers.push(() => makeCharacter(
  31540. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31541. {
  31542. side: {
  31543. height: math.unit(10 + 7 / 12, "feet"),
  31544. weight: math.unit(2.5, "tons"),
  31545. name: "Side",
  31546. image: {
  31547. source: "./media/characters/aasha/side.svg",
  31548. extra: 1345 / 1245,
  31549. bottom: 111 / 1456
  31550. }
  31551. },
  31552. back: {
  31553. height: math.unit(10 + 7 / 12, "feet"),
  31554. weight: math.unit(2.5, "tons"),
  31555. name: "Back",
  31556. image: {
  31557. source: "./media/characters/aasha/back.svg",
  31558. extra: 1133 / 1057,
  31559. bottom: 257 / 1390
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(10 + 7 / 12, "feet"),
  31567. default: true
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(6 + 3 / 12, "feet"),
  31576. name: "Front",
  31577. image: {
  31578. source: "./media/characters/nevan/front.svg",
  31579. extra: 704 / 704,
  31580. bottom: 28 / 732
  31581. }
  31582. },
  31583. back: {
  31584. height: math.unit(6 + 3 / 12, "feet"),
  31585. name: "Back",
  31586. image: {
  31587. source: "./media/characters/nevan/back.svg",
  31588. extra: 714 / 714,
  31589. bottom: 21 / 735
  31590. }
  31591. },
  31592. frontFlaccid: {
  31593. height: math.unit(6 + 3 / 12, "feet"),
  31594. name: "Front (Flaccid)",
  31595. image: {
  31596. source: "./media/characters/nevan/front-flaccid.svg",
  31597. extra: 704 / 704,
  31598. bottom: 28 / 732
  31599. }
  31600. },
  31601. frontErect: {
  31602. height: math.unit(6 + 3 / 12, "feet"),
  31603. name: "Front (Erect)",
  31604. image: {
  31605. source: "./media/characters/nevan/front-erect.svg",
  31606. extra: 704 / 704,
  31607. bottom: 28 / 732
  31608. }
  31609. },
  31610. backFlaccid: {
  31611. height: math.unit(6 + 3 / 12, "feet"),
  31612. name: "Back (Flaccid)",
  31613. image: {
  31614. source: "./media/characters/nevan/back-flaccid.svg",
  31615. extra: 714 / 714,
  31616. bottom: 21 / 735
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(6 + 3 / 12, "feet"),
  31624. default: true
  31625. },
  31626. ]
  31627. ))
  31628. characterMakers.push(() => makeCharacter(
  31629. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31630. {
  31631. front: {
  31632. height: math.unit(4, "feet"),
  31633. name: "Front",
  31634. image: {
  31635. source: "./media/characters/arhan/front.svg",
  31636. extra: 3368 / 3133,
  31637. bottom: 0 / 3368
  31638. }
  31639. },
  31640. side: {
  31641. height: math.unit(4, "feet"),
  31642. name: "Side",
  31643. image: {
  31644. source: "./media/characters/arhan/side.svg",
  31645. extra: 3347 / 3105,
  31646. bottom: 0 / 3347
  31647. }
  31648. },
  31649. tongue: {
  31650. height: math.unit(1.42, "feet"),
  31651. name: "Tongue",
  31652. image: {
  31653. source: "./media/characters/arhan/tongue.svg"
  31654. }
  31655. },
  31656. head: {
  31657. height: math.unit(0.85, "feet"),
  31658. name: "Head",
  31659. image: {
  31660. source: "./media/characters/arhan/head.svg"
  31661. }
  31662. },
  31663. },
  31664. [
  31665. {
  31666. name: "Normal",
  31667. height: math.unit(4, "feet"),
  31668. default: true
  31669. },
  31670. ]
  31671. ))
  31672. characterMakers.push(() => makeCharacter(
  31673. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31674. {
  31675. front: {
  31676. height: math.unit(5 + 7.5 / 12, "feet"),
  31677. weight: math.unit(120, "lb"),
  31678. name: "Front",
  31679. image: {
  31680. source: "./media/characters/digi-duncan/front.svg",
  31681. extra: 330 / 326,
  31682. bottom: 16 / 346
  31683. }
  31684. },
  31685. side: {
  31686. height: math.unit(5 + 7.5 / 12, "feet"),
  31687. weight: math.unit(120, "lb"),
  31688. name: "Side",
  31689. image: {
  31690. source: "./media/characters/digi-duncan/side.svg",
  31691. extra: 341 / 337,
  31692. bottom: 1 / 342
  31693. }
  31694. },
  31695. back: {
  31696. height: math.unit(5 + 7.5 / 12, "feet"),
  31697. weight: math.unit(120, "lb"),
  31698. name: "Back",
  31699. image: {
  31700. source: "./media/characters/digi-duncan/back.svg",
  31701. extra: 330 / 326,
  31702. bottom: 12 / 342
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Speck",
  31709. height: math.unit(0.25, "mm")
  31710. },
  31711. {
  31712. name: "Micro",
  31713. height: math.unit(5, "mm")
  31714. },
  31715. {
  31716. name: "Tiny",
  31717. height: math.unit(0.5, "inches"),
  31718. default: true
  31719. },
  31720. {
  31721. name: "Human",
  31722. height: math.unit(5 + 7.5 / 12, "feet")
  31723. },
  31724. {
  31725. name: "Minigiant",
  31726. height: math.unit(8 + 5.25, "feet")
  31727. },
  31728. {
  31729. name: "Giant",
  31730. height: math.unit(2000, "feet")
  31731. },
  31732. {
  31733. name: "Mega",
  31734. height: math.unit(371.1, "miles")
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31740. {
  31741. front: {
  31742. height: math.unit(2, "meters"),
  31743. weight: math.unit(350, "kg"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31747. extra: 898 / 838,
  31748. bottom: 9 / 907
  31749. }
  31750. },
  31751. },
  31752. [
  31753. {
  31754. name: "Micro",
  31755. height: math.unit(8, "meters")
  31756. },
  31757. {
  31758. name: "Normal",
  31759. height: math.unit(50, "meters"),
  31760. default: true
  31761. },
  31762. {
  31763. name: "Macro",
  31764. height: math.unit(500, "meters")
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31770. {
  31771. front: {
  31772. height: math.unit(6 + 6 / 12, "feet"),
  31773. name: "Front",
  31774. image: {
  31775. source: "./media/characters/khardesh/front.svg",
  31776. extra: 1788/1596,
  31777. bottom: 66/1854
  31778. }
  31779. },
  31780. back: {
  31781. height: math.unit(6 + 6 / 12, "feet"),
  31782. name: "Back",
  31783. image: {
  31784. source: "./media/characters/khardesh/back.svg",
  31785. extra: 1781/1584,
  31786. bottom: 68/1849
  31787. }
  31788. },
  31789. },
  31790. [
  31791. {
  31792. name: "Normal",
  31793. height: math.unit(6 + 6 / 12, "feet"),
  31794. default: true
  31795. },
  31796. {
  31797. name: "Normal+",
  31798. height: math.unit(4, "meters")
  31799. },
  31800. {
  31801. name: "Macro",
  31802. height: math.unit(50, "meters")
  31803. },
  31804. {
  31805. name: "Macro+",
  31806. height: math.unit(100, "meters")
  31807. },
  31808. {
  31809. name: "Megamacro",
  31810. height: math.unit(20, "km")
  31811. },
  31812. ]
  31813. ))
  31814. characterMakers.push(() => makeCharacter(
  31815. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31816. {
  31817. front: {
  31818. height: math.unit(6, "feet"),
  31819. weight: math.unit(150, "lb"),
  31820. name: "Front",
  31821. image: {
  31822. source: "./media/characters/kosho/front.svg",
  31823. extra: 1847 / 1847,
  31824. bottom: 86 / 1933
  31825. }
  31826. },
  31827. },
  31828. [
  31829. {
  31830. name: "Second-stage micro",
  31831. height: math.unit(0.5, "inches")
  31832. },
  31833. {
  31834. name: "First-stage micro",
  31835. height: math.unit(6, "inches")
  31836. },
  31837. {
  31838. name: "Normal",
  31839. height: math.unit(6, "feet"),
  31840. default: true
  31841. },
  31842. {
  31843. name: "First-stage macro",
  31844. height: math.unit(72, "feet")
  31845. },
  31846. {
  31847. name: "Second-stage macro",
  31848. height: math.unit(864, "feet")
  31849. },
  31850. ]
  31851. ))
  31852. characterMakers.push(() => makeCharacter(
  31853. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31854. {
  31855. normal: {
  31856. height: math.unit(4 + 6 / 12, "feet"),
  31857. name: "Normal",
  31858. image: {
  31859. source: "./media/characters/hydra/normal.svg",
  31860. extra: 2833 / 2634,
  31861. bottom: 68 / 2901
  31862. }
  31863. },
  31864. smol: {
  31865. height: math.unit(0.705, "inches"),
  31866. name: "Smol",
  31867. image: {
  31868. source: "./media/characters/hydra/smol.svg",
  31869. extra: 2715 / 2540,
  31870. bottom: 0 / 2715
  31871. }
  31872. },
  31873. },
  31874. [
  31875. {
  31876. name: "Normal",
  31877. height: math.unit(4 + 6 / 12, "feet"),
  31878. default: true
  31879. }
  31880. ]
  31881. ))
  31882. characterMakers.push(() => makeCharacter(
  31883. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31884. {
  31885. front: {
  31886. height: math.unit(0.6, "cm"),
  31887. name: "Front",
  31888. image: {
  31889. source: "./media/characters/daz/front.svg",
  31890. extra: 1682 / 1164,
  31891. bottom: 42 / 1724
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(0.6, "cm"),
  31899. default: true
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(6, "feet"),
  31908. weight: math.unit(235, "lb"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/theo-pangolin/front.svg",
  31912. extra: 1996 / 1969,
  31913. bottom: 115 / 2111
  31914. }
  31915. },
  31916. back: {
  31917. height: math.unit(6, "feet"),
  31918. weight: math.unit(235, "lb"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/theo-pangolin/back.svg",
  31922. extra: 1979 / 1979,
  31923. bottom: 40 / 2019
  31924. }
  31925. },
  31926. feral: {
  31927. height: math.unit(2, "feet"),
  31928. weight: math.unit(30, "lb"),
  31929. name: "Feral",
  31930. image: {
  31931. source: "./media/characters/theo-pangolin/feral.svg",
  31932. extra: 803 / 791,
  31933. bottom: 181 / 984
  31934. }
  31935. },
  31936. footFive: {
  31937. height: math.unit(1.43, "feet"),
  31938. name: "Foot (Five Toes)",
  31939. image: {
  31940. source: "./media/characters/theo-pangolin/foot-five.svg"
  31941. }
  31942. },
  31943. footFour: {
  31944. height: math.unit(1.43, "feet"),
  31945. name: "Foot (Four Toes)",
  31946. image: {
  31947. source: "./media/characters/theo-pangolin/foot-four.svg"
  31948. }
  31949. },
  31950. handFour: {
  31951. height: math.unit(0.81, "feet"),
  31952. name: "Hand (Four Fingers)",
  31953. image: {
  31954. source: "./media/characters/theo-pangolin/hand-four.svg"
  31955. }
  31956. },
  31957. handThree: {
  31958. height: math.unit(0.81, "feet"),
  31959. name: "Hand (Three Fingers)",
  31960. image: {
  31961. source: "./media/characters/theo-pangolin/hand-three.svg"
  31962. }
  31963. },
  31964. headFront: {
  31965. height: math.unit(1.37, "feet"),
  31966. name: "Head (Front)",
  31967. image: {
  31968. source: "./media/characters/theo-pangolin/head-front.svg"
  31969. }
  31970. },
  31971. headSide: {
  31972. height: math.unit(1.43, "feet"),
  31973. name: "Head (Side)",
  31974. image: {
  31975. source: "./media/characters/theo-pangolin/head-side.svg"
  31976. }
  31977. },
  31978. tongue: {
  31979. height: math.unit(2.29, "feet"),
  31980. name: "Tongue",
  31981. image: {
  31982. source: "./media/characters/theo-pangolin/tongue.svg"
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Normal",
  31989. height: math.unit(6, "feet")
  31990. },
  31991. {
  31992. name: "Macro",
  31993. height: math.unit(400, "feet"),
  31994. default: true
  31995. },
  31996. ]
  31997. ))
  31998. characterMakers.push(() => makeCharacter(
  31999. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32000. {
  32001. front: {
  32002. height: math.unit(6, "inches"),
  32003. weight: math.unit(0.036, "kg"),
  32004. name: "Front",
  32005. image: {
  32006. source: "./media/characters/renée/front.svg",
  32007. extra: 900 / 886,
  32008. bottom: 8 / 908
  32009. }
  32010. },
  32011. },
  32012. [
  32013. {
  32014. name: "Nano",
  32015. height: math.unit(1, "nm")
  32016. },
  32017. {
  32018. name: "Micro",
  32019. height: math.unit(1, "mm")
  32020. },
  32021. {
  32022. name: "Normal",
  32023. height: math.unit(6, "inches")
  32024. },
  32025. {
  32026. name: "Macro",
  32027. height: math.unit(2000, "feet"),
  32028. default: true
  32029. },
  32030. {
  32031. name: "Megamacro",
  32032. height: math.unit(2, "km")
  32033. },
  32034. {
  32035. name: "Gigamacro",
  32036. height: math.unit(2000, "km")
  32037. },
  32038. {
  32039. name: "Teramacro",
  32040. height: math.unit(250000, "km")
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32046. {
  32047. front: {
  32048. height: math.unit(4, "meters"),
  32049. weight: math.unit(150, "kg"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/caledvwlch/front.svg",
  32053. extra: 1757/1537,
  32054. bottom: 31/1788
  32055. }
  32056. },
  32057. side: {
  32058. height: math.unit(4, "meters"),
  32059. weight: math.unit(150, "kg"),
  32060. name: "Side",
  32061. image: {
  32062. source: "./media/characters/caledvwlch/side.svg",
  32063. extra: 1605 / 1536,
  32064. bottom: 31 / 1636
  32065. }
  32066. },
  32067. back: {
  32068. height: math.unit(4, "meters"),
  32069. weight: math.unit(150, "kg"),
  32070. name: "Back",
  32071. image: {
  32072. source: "./media/characters/caledvwlch/back.svg",
  32073. extra: 1635 / 1565,
  32074. bottom: 27 / 1662
  32075. }
  32076. },
  32077. },
  32078. [
  32079. {
  32080. name: "\"Incognito\"",
  32081. height: math.unit(4, "meters")
  32082. },
  32083. {
  32084. name: "Small rampage",
  32085. height: math.unit(600, "meters")
  32086. },
  32087. {
  32088. name: "Mega",
  32089. height: math.unit(30, "km")
  32090. },
  32091. {
  32092. name: "Home-size",
  32093. height: math.unit(50, "km"),
  32094. default: true
  32095. },
  32096. {
  32097. name: "Giga",
  32098. height: math.unit(300, "km")
  32099. },
  32100. {
  32101. name: "Lounging",
  32102. height: math.unit(11000, "km")
  32103. },
  32104. {
  32105. name: "Planet snacking",
  32106. height: math.unit(2000000, "km")
  32107. },
  32108. ]
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32112. {
  32113. front: {
  32114. height: math.unit(6, "feet"),
  32115. weight: math.unit(215, "lb"),
  32116. name: "Front",
  32117. image: {
  32118. source: "./media/characters/sapphire-svell/front.svg",
  32119. extra: 495 / 455,
  32120. bottom: 20 / 515
  32121. }
  32122. },
  32123. back: {
  32124. height: math.unit(6, "feet"),
  32125. weight: math.unit(216, "lb"),
  32126. name: "Back",
  32127. image: {
  32128. source: "./media/characters/sapphire-svell/back.svg",
  32129. extra: 497 / 477,
  32130. bottom: 7 / 504
  32131. }
  32132. },
  32133. maw: {
  32134. height: math.unit(1.57, "feet"),
  32135. name: "Maw",
  32136. image: {
  32137. source: "./media/characters/sapphire-svell/maw.svg"
  32138. }
  32139. },
  32140. foot: {
  32141. height: math.unit(1.07, "feet"),
  32142. name: "Foot",
  32143. image: {
  32144. source: "./media/characters/sapphire-svell/foot.svg"
  32145. }
  32146. },
  32147. toering: {
  32148. height: math.unit(1.7, "inch"),
  32149. name: "Toering",
  32150. image: {
  32151. source: "./media/characters/sapphire-svell/toering.svg"
  32152. }
  32153. },
  32154. },
  32155. [
  32156. {
  32157. name: "Normal",
  32158. height: math.unit(300, "feet"),
  32159. default: true
  32160. },
  32161. {
  32162. name: "Augmented",
  32163. height: math.unit(1250, "feet")
  32164. },
  32165. {
  32166. name: "Unleashed",
  32167. height: math.unit(3000, "feet")
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32173. {
  32174. side: {
  32175. height: math.unit(2 + 3 / 12, "feet"),
  32176. weight: math.unit(110, "lb"),
  32177. name: "Side",
  32178. image: {
  32179. source: "./media/characters/glitch-flux/side.svg",
  32180. extra: 997 / 805,
  32181. bottom: 20 / 1017
  32182. }
  32183. },
  32184. },
  32185. [
  32186. {
  32187. name: "Normal",
  32188. height: math.unit(2 + 3 / 12, "feet"),
  32189. default: true
  32190. },
  32191. ]
  32192. ))
  32193. characterMakers.push(() => makeCharacter(
  32194. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32195. {
  32196. front: {
  32197. height: math.unit(4, "meters"),
  32198. name: "Front",
  32199. image: {
  32200. source: "./media/characters/mid/front.svg",
  32201. extra: 507 / 476,
  32202. bottom: 17 / 524
  32203. }
  32204. },
  32205. back: {
  32206. height: math.unit(4, "meters"),
  32207. name: "Back",
  32208. image: {
  32209. source: "./media/characters/mid/back.svg",
  32210. extra: 519 / 487,
  32211. bottom: 7 / 526
  32212. }
  32213. },
  32214. stuck: {
  32215. height: math.unit(2.2, "meters"),
  32216. name: "Stuck",
  32217. image: {
  32218. source: "./media/characters/mid/stuck.svg",
  32219. extra: 1951 / 1869,
  32220. bottom: 88 / 2039
  32221. }
  32222. }
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(4, "meters"),
  32228. default: true
  32229. },
  32230. {
  32231. name: "Big",
  32232. height: math.unit(10, "meters")
  32233. },
  32234. {
  32235. name: "Macro",
  32236. height: math.unit(800, "meters")
  32237. },
  32238. {
  32239. name: "Megamacro",
  32240. height: math.unit(100, "km")
  32241. },
  32242. {
  32243. name: "Overgrown",
  32244. height: math.unit(1, "parsec")
  32245. },
  32246. ]
  32247. ))
  32248. characterMakers.push(() => makeCharacter(
  32249. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32250. {
  32251. front: {
  32252. height: math.unit(2.5, "meters"),
  32253. weight: math.unit(225, "kg"),
  32254. name: "Front",
  32255. image: {
  32256. source: "./media/characters/iris/front.svg",
  32257. extra: 3348 / 3251,
  32258. bottom: 205 / 3553
  32259. }
  32260. },
  32261. maw: {
  32262. height: math.unit(0.56, "meter"),
  32263. name: "Maw",
  32264. image: {
  32265. source: "./media/characters/iris/maw.svg"
  32266. }
  32267. },
  32268. },
  32269. [
  32270. {
  32271. name: "Mewter cat",
  32272. height: math.unit(1.2, "meters")
  32273. },
  32274. {
  32275. name: "Normal",
  32276. height: math.unit(2.5, "meters"),
  32277. default: true
  32278. },
  32279. {
  32280. name: "Minimacro",
  32281. height: math.unit(18, "feet")
  32282. },
  32283. {
  32284. name: "Macro",
  32285. height: math.unit(140, "feet")
  32286. },
  32287. {
  32288. name: "Macro+",
  32289. height: math.unit(180, "meters")
  32290. },
  32291. {
  32292. name: "Megamacro",
  32293. height: math.unit(2746, "meters")
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32299. {
  32300. front: {
  32301. height: math.unit(6, "feet"),
  32302. weight: math.unit(135, "lb"),
  32303. name: "Front",
  32304. image: {
  32305. source: "./media/characters/axel/front.svg",
  32306. extra: 908 / 908,
  32307. bottom: 58 / 966
  32308. }
  32309. },
  32310. side: {
  32311. height: math.unit(6, "feet"),
  32312. weight: math.unit(135, "lb"),
  32313. name: "Side",
  32314. image: {
  32315. source: "./media/characters/axel/side.svg",
  32316. extra: 958 / 958,
  32317. bottom: 11 / 969
  32318. }
  32319. },
  32320. back: {
  32321. height: math.unit(6, "feet"),
  32322. weight: math.unit(135, "lb"),
  32323. name: "Back",
  32324. image: {
  32325. source: "./media/characters/axel/back.svg",
  32326. extra: 887 / 887,
  32327. bottom: 34 / 921
  32328. }
  32329. },
  32330. head: {
  32331. height: math.unit(1.07, "feet"),
  32332. name: "Head",
  32333. image: {
  32334. source: "./media/characters/axel/head.svg"
  32335. }
  32336. },
  32337. beak: {
  32338. height: math.unit(1.4, "feet"),
  32339. name: "Beak",
  32340. image: {
  32341. source: "./media/characters/axel/beak.svg"
  32342. }
  32343. },
  32344. beakSide: {
  32345. height: math.unit(1.4, "feet"),
  32346. name: "Beak Side",
  32347. image: {
  32348. source: "./media/characters/axel/beak-side.svg"
  32349. }
  32350. },
  32351. sheath: {
  32352. height: math.unit(0.5, "feet"),
  32353. name: "Sheath",
  32354. image: {
  32355. source: "./media/characters/axel/sheath.svg"
  32356. }
  32357. },
  32358. dick: {
  32359. height: math.unit(0.98, "feet"),
  32360. name: "Dick",
  32361. image: {
  32362. source: "./media/characters/axel/dick.svg"
  32363. }
  32364. },
  32365. },
  32366. [
  32367. {
  32368. name: "Macro",
  32369. height: math.unit(68, "meters"),
  32370. default: true
  32371. },
  32372. ]
  32373. ))
  32374. characterMakers.push(() => makeCharacter(
  32375. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32376. {
  32377. front: {
  32378. height: math.unit(3.5, "meters"),
  32379. weight: math.unit(1200, "kg"),
  32380. name: "Front",
  32381. image: {
  32382. source: "./media/characters/joanna/front.svg",
  32383. extra: 1596 / 1488,
  32384. bottom: 29 / 1625
  32385. }
  32386. },
  32387. back: {
  32388. height: math.unit(3.5, "meters"),
  32389. weight: math.unit(1200, "kg"),
  32390. name: "Back",
  32391. image: {
  32392. source: "./media/characters/joanna/back.svg",
  32393. extra: 1594 / 1495,
  32394. bottom: 26 / 1620
  32395. }
  32396. },
  32397. frontShorts: {
  32398. height: math.unit(3.5, "meters"),
  32399. weight: math.unit(1200, "kg"),
  32400. name: "Front (Shorts)",
  32401. image: {
  32402. source: "./media/characters/joanna/front-shorts.svg",
  32403. extra: 1596 / 1488,
  32404. bottom: 29 / 1625
  32405. }
  32406. },
  32407. frontBiker: {
  32408. height: math.unit(3.5, "meters"),
  32409. weight: math.unit(1200, "kg"),
  32410. name: "Front (Biker)",
  32411. image: {
  32412. source: "./media/characters/joanna/front-biker.svg",
  32413. extra: 1596 / 1488,
  32414. bottom: 29 / 1625
  32415. }
  32416. },
  32417. backBiker: {
  32418. height: math.unit(3.5, "meters"),
  32419. weight: math.unit(1200, "kg"),
  32420. name: "Back (Biker)",
  32421. image: {
  32422. source: "./media/characters/joanna/back-biker.svg",
  32423. extra: 1594 / 1495,
  32424. bottom: 88 / 1682
  32425. }
  32426. },
  32427. bikeLeft: {
  32428. height: math.unit(2.4, "meters"),
  32429. weight: math.unit(1600, "kg"),
  32430. name: "Bike (Left)",
  32431. image: {
  32432. source: "./media/characters/joanna/bike-left.svg",
  32433. extra: 720 / 720,
  32434. bottom: 8 / 728
  32435. }
  32436. },
  32437. bikeRight: {
  32438. height: math.unit(2.4, "meters"),
  32439. weight: math.unit(1600, "kg"),
  32440. name: "Bike (Right)",
  32441. image: {
  32442. source: "./media/characters/joanna/bike-right.svg",
  32443. extra: 720 / 720,
  32444. bottom: 8 / 728
  32445. }
  32446. },
  32447. },
  32448. [
  32449. {
  32450. name: "Incognito",
  32451. height: math.unit(3.5, "meters")
  32452. },
  32453. {
  32454. name: "Casual Big",
  32455. height: math.unit(200, "meters")
  32456. },
  32457. {
  32458. name: "Macro",
  32459. height: math.unit(600, "meters")
  32460. },
  32461. {
  32462. name: "Original",
  32463. height: math.unit(20, "km"),
  32464. default: true
  32465. },
  32466. {
  32467. name: "Giga",
  32468. height: math.unit(400, "km")
  32469. },
  32470. {
  32471. name: "Lounging",
  32472. height: math.unit(1500, "km")
  32473. },
  32474. {
  32475. name: "Planetary",
  32476. height: math.unit(200000, "km")
  32477. },
  32478. ]
  32479. ))
  32480. characterMakers.push(() => makeCharacter(
  32481. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32482. {
  32483. front: {
  32484. height: math.unit(6, "feet"),
  32485. weight: math.unit(150, "lb"),
  32486. name: "Front",
  32487. image: {
  32488. source: "./media/characters/hugo-sigil/front.svg",
  32489. extra: 522 / 500,
  32490. bottom: 2 / 524
  32491. }
  32492. },
  32493. back: {
  32494. height: math.unit(6, "feet"),
  32495. weight: math.unit(150, "lb"),
  32496. name: "Back",
  32497. image: {
  32498. source: "./media/characters/hugo-sigil/back.svg",
  32499. extra: 519 / 495,
  32500. bottom: 5 / 524
  32501. }
  32502. },
  32503. maw: {
  32504. height: math.unit(1.4, "feet"),
  32505. weight: math.unit(150, "lb"),
  32506. name: "Maw",
  32507. image: {
  32508. source: "./media/characters/hugo-sigil/maw.svg"
  32509. }
  32510. },
  32511. feet: {
  32512. height: math.unit(1.56, "feet"),
  32513. weight: math.unit(150, "lb"),
  32514. name: "Feet",
  32515. image: {
  32516. source: "./media/characters/hugo-sigil/feet.svg",
  32517. extra: 177 / 177,
  32518. bottom: 12 / 189
  32519. }
  32520. },
  32521. },
  32522. [
  32523. {
  32524. name: "Normal",
  32525. height: math.unit(6, "feet")
  32526. },
  32527. {
  32528. name: "Macro",
  32529. height: math.unit(200, "feet"),
  32530. default: true
  32531. },
  32532. ]
  32533. ))
  32534. characterMakers.push(() => makeCharacter(
  32535. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32536. {
  32537. front: {
  32538. height: math.unit(6, "feet"),
  32539. weight: math.unit(150, "lb"),
  32540. name: "Front",
  32541. image: {
  32542. source: "./media/characters/peri/front.svg",
  32543. extra: 2354 / 2233,
  32544. bottom: 49 / 2403
  32545. }
  32546. },
  32547. },
  32548. [
  32549. {
  32550. name: "Really Small",
  32551. height: math.unit(1, "nm")
  32552. },
  32553. {
  32554. name: "Micro",
  32555. height: math.unit(4, "inches")
  32556. },
  32557. {
  32558. name: "Normal",
  32559. height: math.unit(7, "inches"),
  32560. default: true
  32561. },
  32562. {
  32563. name: "Macro",
  32564. height: math.unit(400, "feet")
  32565. },
  32566. {
  32567. name: "Megamacro",
  32568. height: math.unit(100, "miles")
  32569. },
  32570. ]
  32571. ))
  32572. characterMakers.push(() => makeCharacter(
  32573. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32574. {
  32575. frontSlim: {
  32576. height: math.unit(7, "feet"),
  32577. name: "Front (Slim)",
  32578. image: {
  32579. source: "./media/characters/issilora/front-slim.svg",
  32580. extra: 529 / 449,
  32581. bottom: 53 / 582
  32582. }
  32583. },
  32584. sideSlim: {
  32585. height: math.unit(7, "feet"),
  32586. name: "Side (Slim)",
  32587. image: {
  32588. source: "./media/characters/issilora/side-slim.svg",
  32589. extra: 570 / 480,
  32590. bottom: 30 / 600
  32591. }
  32592. },
  32593. backSlim: {
  32594. height: math.unit(7, "feet"),
  32595. name: "Back (Slim)",
  32596. image: {
  32597. source: "./media/characters/issilora/back-slim.svg",
  32598. extra: 537 / 455,
  32599. bottom: 46 / 583
  32600. }
  32601. },
  32602. frontBuff: {
  32603. height: math.unit(7, "feet"),
  32604. name: "Front (Buff)",
  32605. image: {
  32606. source: "./media/characters/issilora/front-buff.svg",
  32607. extra: 2310 / 2035,
  32608. bottom: 335 / 2645
  32609. }
  32610. },
  32611. head: {
  32612. height: math.unit(1.94, "feet"),
  32613. name: "Head",
  32614. image: {
  32615. source: "./media/characters/issilora/head.svg"
  32616. }
  32617. },
  32618. },
  32619. [
  32620. {
  32621. name: "Minimum",
  32622. height: math.unit(7, "feet")
  32623. },
  32624. {
  32625. name: "Comfortable",
  32626. height: math.unit(17, "feet")
  32627. },
  32628. {
  32629. name: "Fun Size",
  32630. height: math.unit(47, "feet")
  32631. },
  32632. {
  32633. name: "Natural Macro",
  32634. height: math.unit(137, "feet"),
  32635. default: true
  32636. },
  32637. {
  32638. name: "Maximum Kaiju",
  32639. height: math.unit(397, "feet")
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32645. {
  32646. front: {
  32647. height: math.unit(50 + 9/12, "feet"),
  32648. weight: math.unit(32.8, "tons"),
  32649. name: "Front",
  32650. image: {
  32651. source: "./media/characters/irb'iiritaahn/front.svg",
  32652. extra: 1878/1826,
  32653. bottom: 326/2204
  32654. }
  32655. },
  32656. back: {
  32657. height: math.unit(50 + 9/12, "feet"),
  32658. weight: math.unit(32.8, "tons"),
  32659. name: "Back",
  32660. image: {
  32661. source: "./media/characters/irb'iiritaahn/back.svg",
  32662. extra: 2052/2018,
  32663. bottom: 152/2204
  32664. }
  32665. },
  32666. head: {
  32667. height: math.unit(12.86, "feet"),
  32668. name: "Head",
  32669. image: {
  32670. source: "./media/characters/irb'iiritaahn/head.svg"
  32671. }
  32672. },
  32673. maw: {
  32674. height: math.unit(9.66, "feet"),
  32675. name: "Maw",
  32676. image: {
  32677. source: "./media/characters/irb'iiritaahn/maw.svg"
  32678. }
  32679. },
  32680. frontDick: {
  32681. height: math.unit(8.78461, "feet"),
  32682. name: "Front Dick",
  32683. image: {
  32684. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32685. }
  32686. },
  32687. rearDick: {
  32688. height: math.unit(8.78461, "feet"),
  32689. name: "Rear Dick",
  32690. image: {
  32691. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32692. }
  32693. },
  32694. rearDickUnfolded: {
  32695. height: math.unit(8.78, "feet"),
  32696. name: "Rear Dick (Unfolded)",
  32697. image: {
  32698. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32699. }
  32700. },
  32701. wings: {
  32702. height: math.unit(43, "feet"),
  32703. name: "Wings",
  32704. image: {
  32705. source: "./media/characters/irb'iiritaahn/wings.svg"
  32706. }
  32707. },
  32708. },
  32709. [
  32710. {
  32711. name: "Macro",
  32712. height: math.unit(50 + 9/12, "feet"),
  32713. default: true
  32714. },
  32715. ]
  32716. ))
  32717. characterMakers.push(() => makeCharacter(
  32718. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32719. {
  32720. front: {
  32721. height: math.unit(205, "cm"),
  32722. weight: math.unit(102, "kg"),
  32723. name: "Front",
  32724. image: {
  32725. source: "./media/characters/irbisgreif/front.svg",
  32726. extra: 785/706,
  32727. bottom: 13/798
  32728. }
  32729. },
  32730. back: {
  32731. height: math.unit(205, "cm"),
  32732. weight: math.unit(102, "kg"),
  32733. name: "Back",
  32734. image: {
  32735. source: "./media/characters/irbisgreif/back.svg",
  32736. extra: 713/701,
  32737. bottom: 26/739
  32738. }
  32739. },
  32740. frontDressed: {
  32741. height: math.unit(216, "cm"),
  32742. weight: math.unit(102, "kg"),
  32743. name: "Front-dressed",
  32744. image: {
  32745. source: "./media/characters/irbisgreif/front-dressed.svg",
  32746. extra: 902/776,
  32747. bottom: 14/916
  32748. }
  32749. },
  32750. sideDressed: {
  32751. height: math.unit(195, "cm"),
  32752. weight: math.unit(102, "kg"),
  32753. name: "Side-dressed",
  32754. image: {
  32755. source: "./media/characters/irbisgreif/side-dressed.svg",
  32756. extra: 788/688,
  32757. bottom: 21/809
  32758. }
  32759. },
  32760. backDressed: {
  32761. height: math.unit(216, "cm"),
  32762. weight: math.unit(102, "kg"),
  32763. name: "Back-dressed",
  32764. image: {
  32765. source: "./media/characters/irbisgreif/back-dressed.svg",
  32766. extra: 901/783,
  32767. bottom: 10/911
  32768. }
  32769. },
  32770. dick: {
  32771. height: math.unit(0.49, "feet"),
  32772. name: "Dick",
  32773. image: {
  32774. source: "./media/characters/irbisgreif/dick.svg"
  32775. }
  32776. },
  32777. wingTop: {
  32778. height: math.unit(1.93 , "feet"),
  32779. name: "Wing-top",
  32780. image: {
  32781. source: "./media/characters/irbisgreif/wing-top.svg"
  32782. }
  32783. },
  32784. wingBottom: {
  32785. height: math.unit(1.93 , "feet"),
  32786. name: "Wing-bottom",
  32787. image: {
  32788. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32789. }
  32790. },
  32791. },
  32792. [
  32793. {
  32794. name: "Normal",
  32795. height: math.unit(216, "cm"),
  32796. default: true
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32802. {
  32803. front: {
  32804. height: math.unit(6, "feet"),
  32805. weight: math.unit(150, "lb"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/pride/front.svg",
  32809. extra: 1299/1230,
  32810. bottom: 18/1317
  32811. }
  32812. },
  32813. },
  32814. [
  32815. {
  32816. name: "Normal",
  32817. height: math.unit(7, "feet")
  32818. },
  32819. {
  32820. name: "Mini-macro",
  32821. height: math.unit(11, "feet")
  32822. },
  32823. {
  32824. name: "Macro",
  32825. height: math.unit(15, "meters"),
  32826. default: true
  32827. },
  32828. {
  32829. name: "Macro+",
  32830. height: math.unit(40, "meters")
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32836. {
  32837. front: {
  32838. height: math.unit(4 + 2 / 12, "feet"),
  32839. weight: math.unit(95, "lb"),
  32840. name: "Front",
  32841. image: {
  32842. source: "./media/characters/vaelophis-nyx/front.svg",
  32843. extra: 2532/2330,
  32844. bottom: 0/2532
  32845. }
  32846. },
  32847. back: {
  32848. height: math.unit(4 + 2 / 12, "feet"),
  32849. weight: math.unit(95, "lb"),
  32850. name: "Back",
  32851. image: {
  32852. source: "./media/characters/vaelophis-nyx/back.svg",
  32853. extra: 2484/2361,
  32854. bottom: 0/2484
  32855. }
  32856. },
  32857. feralSide: {
  32858. height: math.unit(2 + 1/12, "feet"),
  32859. weight: math.unit(20, "lb"),
  32860. name: "Feral (Side)",
  32861. image: {
  32862. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32863. extra: 1721/1581,
  32864. bottom: 70/1791
  32865. }
  32866. },
  32867. feralLazing: {
  32868. height: math.unit(1.08, "feet"),
  32869. weight: math.unit(20, "lb"),
  32870. name: "Feral (Lazing)",
  32871. image: {
  32872. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32873. extra: 822/822,
  32874. bottom: 248/1070
  32875. }
  32876. },
  32877. ear: {
  32878. height: math.unit(0.416, "feet"),
  32879. name: "Ear",
  32880. image: {
  32881. source: "./media/characters/vaelophis-nyx/ear.svg"
  32882. }
  32883. },
  32884. eye: {
  32885. height: math.unit(0.0748, "feet"),
  32886. name: "Eye",
  32887. image: {
  32888. source: "./media/characters/vaelophis-nyx/eye.svg"
  32889. }
  32890. },
  32891. mouth: {
  32892. height: math.unit(0.378, "feet"),
  32893. name: "Mouth",
  32894. image: {
  32895. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32896. }
  32897. },
  32898. spade: {
  32899. height: math.unit(0.55, "feet"),
  32900. name: "Spade",
  32901. image: {
  32902. source: "./media/characters/vaelophis-nyx/spade.svg"
  32903. }
  32904. },
  32905. },
  32906. [
  32907. {
  32908. name: "Normal",
  32909. height: math.unit(4 + 2/12, "feet"),
  32910. default: true
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32916. {
  32917. front: {
  32918. height: math.unit(7, "feet"),
  32919. weight: math.unit(231, "lb"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/flux/front.svg",
  32923. extra: 919/871,
  32924. bottom: 0/919
  32925. }
  32926. },
  32927. back: {
  32928. height: math.unit(7, "feet"),
  32929. weight: math.unit(231, "lb"),
  32930. name: "Back",
  32931. image: {
  32932. source: "./media/characters/flux/back.svg",
  32933. extra: 1040/992,
  32934. bottom: 0/1040
  32935. }
  32936. },
  32937. frontDressed: {
  32938. height: math.unit(7, "feet"),
  32939. weight: math.unit(231, "lb"),
  32940. name: "Front (Dressed)",
  32941. image: {
  32942. source: "./media/characters/flux/front-dressed.svg",
  32943. extra: 919/871,
  32944. bottom: 0/919
  32945. }
  32946. },
  32947. feralSide: {
  32948. height: math.unit(5, "feet"),
  32949. weight: math.unit(150, "lb"),
  32950. name: "Feral (Side)",
  32951. image: {
  32952. source: "./media/characters/flux/feral-side.svg",
  32953. extra: 598/528,
  32954. bottom: 28/626
  32955. }
  32956. },
  32957. head: {
  32958. height: math.unit(1.585, "feet"),
  32959. name: "Head",
  32960. image: {
  32961. source: "./media/characters/flux/head.svg"
  32962. }
  32963. },
  32964. headSide: {
  32965. height: math.unit(1.74, "feet"),
  32966. name: "Head (Side)",
  32967. image: {
  32968. source: "./media/characters/flux/head-side.svg"
  32969. }
  32970. },
  32971. headSideFire: {
  32972. height: math.unit(1.76, "feet"),
  32973. name: "Head (Side, Fire)",
  32974. image: {
  32975. source: "./media/characters/flux/head-side-fire.svg"
  32976. }
  32977. },
  32978. },
  32979. [
  32980. {
  32981. name: "Normal",
  32982. height: math.unit(7, "feet"),
  32983. default: true
  32984. },
  32985. ]
  32986. ))
  32987. characterMakers.push(() => makeCharacter(
  32988. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32989. {
  32990. front: {
  32991. height: math.unit(9, "feet"),
  32992. weight: math.unit(1012, "lb"),
  32993. name: "Front",
  32994. image: {
  32995. source: "./media/characters/ulfra-lupae/front.svg",
  32996. extra: 1083/1011,
  32997. bottom: 67/1150
  32998. }
  32999. },
  33000. },
  33001. [
  33002. {
  33003. name: "Micro",
  33004. height: math.unit(6, "inches")
  33005. },
  33006. {
  33007. name: "Socializing",
  33008. height: math.unit(6 + 5/12, "feet")
  33009. },
  33010. {
  33011. name: "Normal",
  33012. height: math.unit(9, "feet"),
  33013. default: true
  33014. },
  33015. {
  33016. name: "Macro",
  33017. height: math.unit(150, "feet")
  33018. },
  33019. ]
  33020. ))
  33021. characterMakers.push(() => makeCharacter(
  33022. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33023. {
  33024. front: {
  33025. height: math.unit(5 + 2/12, "feet"),
  33026. weight: math.unit(120, "lb"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/timber/front.svg",
  33030. extra: 2814/2705,
  33031. bottom: 181/2995
  33032. }
  33033. },
  33034. },
  33035. [
  33036. {
  33037. name: "Normal",
  33038. height: math.unit(5 + 2/12, "feet"),
  33039. default: true
  33040. },
  33041. ]
  33042. ))
  33043. characterMakers.push(() => makeCharacter(
  33044. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33045. {
  33046. front: {
  33047. height: math.unit(9, "feet"),
  33048. name: "Front",
  33049. image: {
  33050. source: "./media/characters/nicki/front.svg",
  33051. extra: 1240/990,
  33052. bottom: 45/1285
  33053. },
  33054. form: "anthro",
  33055. default: true
  33056. },
  33057. side: {
  33058. height: math.unit(9, "feet"),
  33059. name: "Side",
  33060. image: {
  33061. source: "./media/characters/nicki/side.svg",
  33062. extra: 1047/973,
  33063. bottom: 61/1108
  33064. },
  33065. form: "anthro"
  33066. },
  33067. back: {
  33068. height: math.unit(9, "feet"),
  33069. name: "Back",
  33070. image: {
  33071. source: "./media/characters/nicki/back.svg",
  33072. extra: 1006/965,
  33073. bottom: 39/1045
  33074. },
  33075. form: "anthro"
  33076. },
  33077. taur: {
  33078. height: math.unit(15, "feet"),
  33079. name: "Taur",
  33080. image: {
  33081. source: "./media/characters/nicki/taur.svg",
  33082. extra: 1592/1347,
  33083. bottom: 0/1592
  33084. },
  33085. form: "taur",
  33086. default: true
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(9, "feet"),
  33093. form: "anthro",
  33094. default: true
  33095. },
  33096. {
  33097. name: "Normal",
  33098. height: math.unit(15, "feet"),
  33099. form: "taur",
  33100. default: true
  33101. }
  33102. ],
  33103. {
  33104. "anthro": {
  33105. name: "Anthro",
  33106. default: true
  33107. },
  33108. "taur": {
  33109. name: "Taur"
  33110. }
  33111. }
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33115. {
  33116. front: {
  33117. height: math.unit(7 + 10/12, "feet"),
  33118. weight: math.unit(3.5, "tons"),
  33119. name: "Front",
  33120. image: {
  33121. source: "./media/characters/lee/front.svg",
  33122. extra: 1773/1615,
  33123. bottom: 86/1859
  33124. }
  33125. },
  33126. hand: {
  33127. height: math.unit(1.78, "feet"),
  33128. name: "Hand",
  33129. image: {
  33130. source: "./media/characters/lee/hand.svg"
  33131. }
  33132. },
  33133. maw: {
  33134. height: math.unit(1.18, "feet"),
  33135. name: "Maw",
  33136. image: {
  33137. source: "./media/characters/lee/maw.svg"
  33138. }
  33139. },
  33140. },
  33141. [
  33142. {
  33143. name: "Normal",
  33144. height: math.unit(7 + 10/12, "feet"),
  33145. default: true
  33146. },
  33147. ]
  33148. ))
  33149. characterMakers.push(() => makeCharacter(
  33150. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33151. {
  33152. front: {
  33153. height: math.unit(9, "feet"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/guti/front.svg",
  33157. extra: 4551/4355,
  33158. bottom: 123/4674
  33159. }
  33160. },
  33161. tongue: {
  33162. height: math.unit(1, "feet"),
  33163. name: "Tongue",
  33164. image: {
  33165. source: "./media/characters/guti/tongue.svg"
  33166. }
  33167. },
  33168. paw: {
  33169. height: math.unit(1.18, "feet"),
  33170. name: "Paw",
  33171. image: {
  33172. source: "./media/characters/guti/paw.svg"
  33173. }
  33174. },
  33175. },
  33176. [
  33177. {
  33178. name: "Normal",
  33179. height: math.unit(9, "feet"),
  33180. default: true
  33181. },
  33182. ]
  33183. ))
  33184. characterMakers.push(() => makeCharacter(
  33185. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33186. {
  33187. side: {
  33188. height: math.unit(5, "meters"),
  33189. name: "Side",
  33190. image: {
  33191. source: "./media/characters/vesper/side.svg",
  33192. extra: 1605/1518,
  33193. bottom: 0/1605
  33194. }
  33195. },
  33196. },
  33197. [
  33198. {
  33199. name: "Small",
  33200. height: math.unit(5, "meters")
  33201. },
  33202. {
  33203. name: "Sage",
  33204. height: math.unit(100, "meters"),
  33205. default: true
  33206. },
  33207. {
  33208. name: "Fun Size",
  33209. height: math.unit(600, "meters")
  33210. },
  33211. {
  33212. name: "Goddess",
  33213. height: math.unit(20000, "km")
  33214. },
  33215. {
  33216. name: "Maximum",
  33217. height: math.unit(5, "galaxies")
  33218. },
  33219. ]
  33220. ))
  33221. characterMakers.push(() => makeCharacter(
  33222. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33223. {
  33224. front: {
  33225. height: math.unit(6 + 3/12, "feet"),
  33226. weight: math.unit(190, "lb"),
  33227. name: "Front",
  33228. image: {
  33229. source: "./media/characters/gawain/front.svg",
  33230. extra: 2222/2139,
  33231. bottom: 90/2312
  33232. }
  33233. },
  33234. back: {
  33235. height: math.unit(6 + 3/12, "feet"),
  33236. weight: math.unit(190, "lb"),
  33237. name: "Back",
  33238. image: {
  33239. source: "./media/characters/gawain/back.svg",
  33240. extra: 2199/2111,
  33241. bottom: 73/2272
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(6 + 3/12, "feet"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33255. {
  33256. side: {
  33257. height: math.unit(3.5, "meters"),
  33258. weight: math.unit(16000, "lb"),
  33259. name: "Side",
  33260. image: {
  33261. source: "./media/characters/dascalti/side.svg",
  33262. extra: 392/273,
  33263. bottom: 47/439
  33264. }
  33265. },
  33266. breath: {
  33267. height: math.unit(7.4, "feet"),
  33268. name: "Breath",
  33269. image: {
  33270. source: "./media/characters/dascalti/breath.svg"
  33271. }
  33272. },
  33273. fed: {
  33274. height: math.unit(3.6, "meters"),
  33275. weight: math.unit(16000, "lb"),
  33276. name: "Fed",
  33277. image: {
  33278. source: "./media/characters/dascalti/fed.svg",
  33279. extra: 1419/820,
  33280. bottom: 95/1514
  33281. }
  33282. },
  33283. },
  33284. [
  33285. {
  33286. name: "Normal",
  33287. height: math.unit(3.5, "meters"),
  33288. default: true
  33289. },
  33290. ]
  33291. ))
  33292. characterMakers.push(() => makeCharacter(
  33293. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33294. {
  33295. front: {
  33296. height: math.unit(3 + 5/12, "feet"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/mauve/front.svg",
  33300. extra: 1126/1033,
  33301. bottom: 65/1191
  33302. }
  33303. },
  33304. side: {
  33305. height: math.unit(3 + 5/12, "feet"),
  33306. name: "Side",
  33307. image: {
  33308. source: "./media/characters/mauve/side.svg",
  33309. extra: 1089/1001,
  33310. bottom: 29/1118
  33311. }
  33312. },
  33313. back: {
  33314. height: math.unit(3 + 5/12, "feet"),
  33315. name: "Back",
  33316. image: {
  33317. source: "./media/characters/mauve/back.svg",
  33318. extra: 1173/1053,
  33319. bottom: 109/1282
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(3 + 5/12, "feet"),
  33327. default: true
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33333. {
  33334. front: {
  33335. height: math.unit(6 + 3/12, "feet"),
  33336. weight: math.unit(430, "lb"),
  33337. name: "Front",
  33338. image: {
  33339. source: "./media/characters/carlos/front.svg",
  33340. extra: 1964/1913,
  33341. bottom: 70/2034
  33342. }
  33343. },
  33344. },
  33345. [
  33346. {
  33347. name: "Normal",
  33348. height: math.unit(6 + 3/12, "feet"),
  33349. default: true
  33350. },
  33351. ]
  33352. ))
  33353. characterMakers.push(() => makeCharacter(
  33354. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33355. {
  33356. back: {
  33357. height: math.unit(5 + 10/12, "feet"),
  33358. weight: math.unit(200, "lb"),
  33359. name: "Back",
  33360. image: {
  33361. source: "./media/characters/jax/back.svg",
  33362. extra: 764/739,
  33363. bottom: 25/789
  33364. }
  33365. },
  33366. },
  33367. [
  33368. {
  33369. name: "Normal",
  33370. height: math.unit(5 + 10/12, "feet"),
  33371. default: true
  33372. },
  33373. ]
  33374. ))
  33375. characterMakers.push(() => makeCharacter(
  33376. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33377. {
  33378. front: {
  33379. height: math.unit(8, "feet"),
  33380. weight: math.unit(250, "lb"),
  33381. name: "Front",
  33382. image: {
  33383. source: "./media/characters/eikthynir/front.svg",
  33384. extra: 1332/1166,
  33385. bottom: 82/1414
  33386. }
  33387. },
  33388. back: {
  33389. height: math.unit(8, "feet"),
  33390. weight: math.unit(250, "lb"),
  33391. name: "Back",
  33392. image: {
  33393. source: "./media/characters/eikthynir/back.svg",
  33394. extra: 1342/1190,
  33395. bottom: 19/1361
  33396. }
  33397. },
  33398. dick: {
  33399. height: math.unit(2.35, "feet"),
  33400. name: "Dick",
  33401. image: {
  33402. source: "./media/characters/eikthynir/dick.svg"
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(8, "feet"),
  33410. default: true
  33411. },
  33412. ]
  33413. ))
  33414. characterMakers.push(() => makeCharacter(
  33415. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33416. {
  33417. front: {
  33418. height: math.unit(99, "meters"),
  33419. weight: math.unit(13000, "tons"),
  33420. name: "Front",
  33421. image: {
  33422. source: "./media/characters/zlmos/front.svg",
  33423. extra: 2202/1992,
  33424. bottom: 315/2517
  33425. }
  33426. },
  33427. },
  33428. [
  33429. {
  33430. name: "Macro",
  33431. height: math.unit(99, "meters"),
  33432. default: true
  33433. },
  33434. ]
  33435. ))
  33436. characterMakers.push(() => makeCharacter(
  33437. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33438. {
  33439. front: {
  33440. height: math.unit(6 + 5/12, "feet"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/purri/front.svg",
  33444. extra: 1698/1610,
  33445. bottom: 32/1730
  33446. }
  33447. },
  33448. frontAlt: {
  33449. height: math.unit(6 + 5/12, "feet"),
  33450. name: "Front (Alt)",
  33451. image: {
  33452. source: "./media/characters/purri/front-alt.svg",
  33453. extra: 450/420,
  33454. bottom: 26/476
  33455. }
  33456. },
  33457. boots: {
  33458. height: math.unit(5.5, "feet"),
  33459. name: "Boots",
  33460. image: {
  33461. source: "./media/characters/purri/boots.svg",
  33462. extra: 905/853,
  33463. bottom: 18/923
  33464. }
  33465. },
  33466. lying: {
  33467. height: math.unit(2, "feet"),
  33468. name: "Lying",
  33469. image: {
  33470. source: "./media/characters/purri/lying.svg",
  33471. extra: 940/843,
  33472. bottom: 146/1086
  33473. }
  33474. },
  33475. devious: {
  33476. height: math.unit(1.77, "feet"),
  33477. name: "Devious",
  33478. image: {
  33479. source: "./media/characters/purri/devious.svg",
  33480. extra: 1440/1155,
  33481. bottom: 147/1587
  33482. }
  33483. },
  33484. bean: {
  33485. height: math.unit(1.94, "feet"),
  33486. name: "Bean",
  33487. image: {
  33488. source: "./media/characters/purri/bean.svg"
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Micro",
  33495. height: math.unit(1, "mm")
  33496. },
  33497. {
  33498. name: "Normal",
  33499. height: math.unit(6 + 5/12, "feet"),
  33500. default: true
  33501. },
  33502. {
  33503. name: "Macro :3c",
  33504. height: math.unit(2, "miles")
  33505. },
  33506. ]
  33507. ))
  33508. characterMakers.push(() => makeCharacter(
  33509. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33510. {
  33511. front: {
  33512. height: math.unit(6 + 2/12, "feet"),
  33513. weight: math.unit(250, "lb"),
  33514. name: "Front",
  33515. image: {
  33516. source: "./media/characters/moonlight/front.svg",
  33517. extra: 1044/908,
  33518. bottom: 56/1100
  33519. }
  33520. },
  33521. feral: {
  33522. height: math.unit(3 + 1/12, "feet"),
  33523. weight: math.unit(50, "kg"),
  33524. name: "Feral",
  33525. image: {
  33526. source: "./media/characters/moonlight/feral.svg",
  33527. extra: 3705/2791,
  33528. bottom: 145/3850
  33529. }
  33530. },
  33531. paw: {
  33532. height: math.unit(1, "feet"),
  33533. name: "Paw",
  33534. image: {
  33535. source: "./media/characters/moonlight/paw.svg"
  33536. }
  33537. },
  33538. paws: {
  33539. height: math.unit(0.98, "feet"),
  33540. name: "Paws",
  33541. image: {
  33542. source: "./media/characters/moonlight/paws.svg",
  33543. extra: 939/939,
  33544. bottom: 50/989
  33545. }
  33546. },
  33547. mouth: {
  33548. height: math.unit(0.48, "feet"),
  33549. name: "Mouth",
  33550. image: {
  33551. source: "./media/characters/moonlight/mouth.svg"
  33552. }
  33553. },
  33554. dick: {
  33555. height: math.unit(1.46, "feet"),
  33556. name: "Dick",
  33557. image: {
  33558. source: "./media/characters/moonlight/dick.svg"
  33559. }
  33560. },
  33561. },
  33562. [
  33563. {
  33564. name: "Normal",
  33565. height: math.unit(6 + 2/12, "feet"),
  33566. default: true
  33567. },
  33568. {
  33569. name: "Macro",
  33570. height: math.unit(300, "feet")
  33571. },
  33572. {
  33573. name: "Macro+",
  33574. height: math.unit(1, "mile")
  33575. },
  33576. {
  33577. name: "Mt. Moon",
  33578. height: math.unit(5, "miles")
  33579. },
  33580. {
  33581. name: "Megamacro",
  33582. height: math.unit(15, "miles")
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33588. {
  33589. back: {
  33590. height: math.unit(6, "feet"),
  33591. weight: math.unit(150, "lb"),
  33592. name: "Back",
  33593. image: {
  33594. source: "./media/characters/sylen/back.svg",
  33595. extra: 1335/1273,
  33596. bottom: 107/1442
  33597. }
  33598. },
  33599. },
  33600. [
  33601. {
  33602. name: "Normal",
  33603. height: math.unit(5 + 5/12, "feet")
  33604. },
  33605. {
  33606. name: "Megamacro",
  33607. height: math.unit(3, "miles"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33614. {
  33615. front: {
  33616. height: math.unit(6, "feet"),
  33617. weight: math.unit(190, "lb"),
  33618. name: "Front",
  33619. image: {
  33620. source: "./media/characters/huttser/front.svg",
  33621. extra: 1152/1058,
  33622. bottom: 23/1175
  33623. }
  33624. },
  33625. side: {
  33626. height: math.unit(6, "feet"),
  33627. weight: math.unit(190, "lb"),
  33628. name: "Side",
  33629. image: {
  33630. source: "./media/characters/huttser/side.svg",
  33631. extra: 1174/1065,
  33632. bottom: 18/1192
  33633. }
  33634. },
  33635. back: {
  33636. height: math.unit(6, "feet"),
  33637. weight: math.unit(190, "lb"),
  33638. name: "Back",
  33639. image: {
  33640. source: "./media/characters/huttser/back.svg",
  33641. extra: 1158/1056,
  33642. bottom: 12/1170
  33643. }
  33644. },
  33645. },
  33646. [
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33651. {
  33652. side: {
  33653. height: math.unit(12 + 9/12, "feet"),
  33654. weight: math.unit(15000, "lb"),
  33655. name: "Side",
  33656. image: {
  33657. source: "./media/characters/faan/side.svg",
  33658. extra: 2747/2697,
  33659. bottom: 0/2747
  33660. }
  33661. },
  33662. front: {
  33663. height: math.unit(12 + 9/12, "feet"),
  33664. weight: math.unit(15000, "lb"),
  33665. name: "Front",
  33666. image: {
  33667. source: "./media/characters/faan/front.svg",
  33668. extra: 607/571,
  33669. bottom: 24/631
  33670. }
  33671. },
  33672. head: {
  33673. height: math.unit(2.85, "feet"),
  33674. name: "Head",
  33675. image: {
  33676. source: "./media/characters/faan/head.svg"
  33677. }
  33678. },
  33679. headAlt: {
  33680. height: math.unit(3.13, "feet"),
  33681. name: "Head-alt",
  33682. image: {
  33683. source: "./media/characters/faan/head-alt.svg"
  33684. }
  33685. },
  33686. },
  33687. [
  33688. {
  33689. name: "Normal",
  33690. height: math.unit(12 + 9/12, "feet"),
  33691. default: true
  33692. },
  33693. ]
  33694. ))
  33695. characterMakers.push(() => makeCharacter(
  33696. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33697. {
  33698. front: {
  33699. height: math.unit(6, "feet"),
  33700. weight: math.unit(300, "lb"),
  33701. name: "Front",
  33702. image: {
  33703. source: "./media/characters/tanio/front.svg",
  33704. extra: 711/673,
  33705. bottom: 25/736
  33706. }
  33707. },
  33708. },
  33709. [
  33710. {
  33711. name: "Normal",
  33712. height: math.unit(6, "feet"),
  33713. default: true
  33714. },
  33715. ]
  33716. ))
  33717. characterMakers.push(() => makeCharacter(
  33718. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33719. {
  33720. front: {
  33721. height: math.unit(3, "inches"),
  33722. name: "Front",
  33723. image: {
  33724. source: "./media/characters/noboru/front.svg",
  33725. extra: 1039/932,
  33726. bottom: 18/1057
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Micro",
  33733. height: math.unit(3, "inches"),
  33734. default: true
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(1.85, "meters"),
  33743. weight: math.unit(80, "kg"),
  33744. name: "Front",
  33745. image: {
  33746. source: "./media/characters/daniel-barrett/front.svg",
  33747. extra: 355/337,
  33748. bottom: 9/364
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Pico",
  33755. height: math.unit(0.0433, "mm")
  33756. },
  33757. {
  33758. name: "Nano",
  33759. height: math.unit(1.5, "mm")
  33760. },
  33761. {
  33762. name: "Micro",
  33763. height: math.unit(5.3, "cm"),
  33764. default: true
  33765. },
  33766. {
  33767. name: "Normal",
  33768. height: math.unit(1.85, "meters")
  33769. },
  33770. {
  33771. name: "Macro",
  33772. height: math.unit(64.7, "meters")
  33773. },
  33774. {
  33775. name: "Megamacro",
  33776. height: math.unit(2.26, "km")
  33777. },
  33778. {
  33779. name: "Gigamacro",
  33780. height: math.unit(79, "km")
  33781. },
  33782. {
  33783. name: "Teramacro",
  33784. height: math.unit(2765, "km")
  33785. },
  33786. {
  33787. name: "Petamacro",
  33788. height: math.unit(96678, "km")
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(30, "meters"),
  33797. weight: math.unit(400, "tons"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/zeel/front.svg",
  33801. extra: 2599/2599,
  33802. bottom: 226/2825
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Macro",
  33809. height: math.unit(30, "meters"),
  33810. default: true
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33816. {
  33817. front: {
  33818. height: math.unit(6 + 7/12, "feet"),
  33819. weight: math.unit(210, "lb"),
  33820. name: "Front",
  33821. image: {
  33822. source: "./media/characters/tarn/front.svg",
  33823. extra: 3517/3220,
  33824. bottom: 91/3608
  33825. }
  33826. },
  33827. back: {
  33828. height: math.unit(6 + 7/12, "feet"),
  33829. weight: math.unit(210, "lb"),
  33830. name: "Back",
  33831. image: {
  33832. source: "./media/characters/tarn/back.svg",
  33833. extra: 3566/3241,
  33834. bottom: 34/3600
  33835. }
  33836. },
  33837. dick: {
  33838. height: math.unit(1.65, "feet"),
  33839. name: "Dick",
  33840. image: {
  33841. source: "./media/characters/tarn/dick.svg"
  33842. }
  33843. },
  33844. paw: {
  33845. height: math.unit(1.80, "feet"),
  33846. name: "Paw",
  33847. image: {
  33848. source: "./media/characters/tarn/paw.svg"
  33849. }
  33850. },
  33851. tongue: {
  33852. height: math.unit(0.97, "feet"),
  33853. name: "Tongue",
  33854. image: {
  33855. source: "./media/characters/tarn/tongue.svg"
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Micro",
  33862. height: math.unit(4, "inches")
  33863. },
  33864. {
  33865. name: "Normal",
  33866. height: math.unit(6 + 7/12, "feet"),
  33867. default: true
  33868. },
  33869. {
  33870. name: "Macro",
  33871. height: math.unit(300, "feet")
  33872. },
  33873. ]
  33874. ))
  33875. characterMakers.push(() => makeCharacter(
  33876. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33877. {
  33878. front: {
  33879. height: math.unit(5 + 7/12, "feet"),
  33880. weight: math.unit(80, "kg"),
  33881. name: "Front",
  33882. image: {
  33883. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33884. extra: 3023/2865,
  33885. bottom: 33/3056
  33886. }
  33887. },
  33888. back: {
  33889. height: math.unit(5 + 7/12, "feet"),
  33890. weight: math.unit(80, "kg"),
  33891. name: "Back",
  33892. image: {
  33893. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33894. extra: 3020/2886,
  33895. bottom: 30/3050
  33896. }
  33897. },
  33898. dick: {
  33899. height: math.unit(0.98, "feet"),
  33900. name: "Dick",
  33901. image: {
  33902. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33903. }
  33904. },
  33905. anatomy: {
  33906. height: math.unit(2.86, "feet"),
  33907. name: "Anatomy",
  33908. image: {
  33909. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33910. }
  33911. },
  33912. },
  33913. [
  33914. {
  33915. name: "Really Small",
  33916. height: math.unit(2, "inches")
  33917. },
  33918. {
  33919. name: "Micro",
  33920. height: math.unit(5.583, "inches")
  33921. },
  33922. {
  33923. name: "Normal",
  33924. height: math.unit(5 + 7/12, "feet"),
  33925. default: true
  33926. },
  33927. {
  33928. name: "Macro",
  33929. height: math.unit(67, "feet")
  33930. },
  33931. {
  33932. name: "Megamacro",
  33933. height: math.unit(134, "feet")
  33934. },
  33935. ]
  33936. ))
  33937. characterMakers.push(() => makeCharacter(
  33938. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33939. {
  33940. front: {
  33941. height: math.unit(9, "feet"),
  33942. weight: math.unit(120, "lb"),
  33943. name: "Front",
  33944. image: {
  33945. source: "./media/characters/sally/front.svg",
  33946. extra: 1506/1349,
  33947. bottom: 66/1572
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Normal",
  33954. height: math.unit(9, "feet"),
  33955. default: true
  33956. },
  33957. ]
  33958. ))
  33959. characterMakers.push(() => makeCharacter(
  33960. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33961. {
  33962. front: {
  33963. height: math.unit(8, "feet"),
  33964. weight: math.unit(900, "lb"),
  33965. name: "Front",
  33966. image: {
  33967. source: "./media/characters/owen/front.svg",
  33968. extra: 1761/1657,
  33969. bottom: 74/1835
  33970. }
  33971. },
  33972. side: {
  33973. height: math.unit(8, "feet"),
  33974. weight: math.unit(900, "lb"),
  33975. name: "Side",
  33976. image: {
  33977. source: "./media/characters/owen/side.svg",
  33978. extra: 1797/1734,
  33979. bottom: 30/1827
  33980. }
  33981. },
  33982. back: {
  33983. height: math.unit(8, "feet"),
  33984. weight: math.unit(900, "lb"),
  33985. name: "Back",
  33986. image: {
  33987. source: "./media/characters/owen/back.svg",
  33988. extra: 1796/1706,
  33989. bottom: 59/1855
  33990. }
  33991. },
  33992. maw: {
  33993. height: math.unit(1.76, "feet"),
  33994. name: "Maw",
  33995. image: {
  33996. source: "./media/characters/owen/maw.svg"
  33997. }
  33998. },
  33999. },
  34000. [
  34001. {
  34002. name: "Normal",
  34003. height: math.unit(8, "feet"),
  34004. default: true
  34005. },
  34006. ]
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34010. {
  34011. front: {
  34012. height: math.unit(4, "feet"),
  34013. weight: math.unit(400, "lb"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/ryth/front.svg",
  34017. extra: 1920/1748,
  34018. bottom: 42/1962
  34019. }
  34020. },
  34021. back: {
  34022. height: math.unit(4, "feet"),
  34023. weight: math.unit(400, "lb"),
  34024. name: "Back",
  34025. image: {
  34026. source: "./media/characters/ryth/back.svg",
  34027. extra: 1897/1690,
  34028. bottom: 89/1986
  34029. }
  34030. },
  34031. mouth: {
  34032. height: math.unit(1.39, "feet"),
  34033. name: "Mouth",
  34034. image: {
  34035. source: "./media/characters/ryth/mouth.svg"
  34036. }
  34037. },
  34038. tailmaw: {
  34039. height: math.unit(1.23, "feet"),
  34040. name: "Tailmaw",
  34041. image: {
  34042. source: "./media/characters/ryth/tailmaw.svg"
  34043. }
  34044. },
  34045. goia: {
  34046. height: math.unit(4, "meters"),
  34047. weight: math.unit(10800, "lb"),
  34048. name: "Goia",
  34049. image: {
  34050. source: "./media/characters/ryth/goia.svg",
  34051. extra: 745/640,
  34052. bottom: 107/852
  34053. }
  34054. },
  34055. goiaFront: {
  34056. height: math.unit(4, "meters"),
  34057. weight: math.unit(10800, "lb"),
  34058. name: "Goia (Front)",
  34059. image: {
  34060. source: "./media/characters/ryth/goia-front.svg",
  34061. extra: 750/586,
  34062. bottom: 114/864
  34063. }
  34064. },
  34065. goiaMaw: {
  34066. height: math.unit(5.55, "feet"),
  34067. name: "Goia Maw",
  34068. image: {
  34069. source: "./media/characters/ryth/goia-maw.svg"
  34070. }
  34071. },
  34072. goiaForepaw: {
  34073. height: math.unit(3.5, "feet"),
  34074. name: "Goia Forepaw",
  34075. image: {
  34076. source: "./media/characters/ryth/goia-forepaw.svg"
  34077. }
  34078. },
  34079. goiaHindpaw: {
  34080. height: math.unit(5.55, "feet"),
  34081. name: "Goia Hindpaw",
  34082. image: {
  34083. source: "./media/characters/ryth/goia-hindpaw.svg"
  34084. }
  34085. },
  34086. },
  34087. [
  34088. {
  34089. name: "Normal",
  34090. height: math.unit(4, "feet"),
  34091. default: true
  34092. },
  34093. ]
  34094. ))
  34095. characterMakers.push(() => makeCharacter(
  34096. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34097. {
  34098. front: {
  34099. height: math.unit(7, "feet"),
  34100. weight: math.unit(180, "lb"),
  34101. name: "Front",
  34102. image: {
  34103. source: "./media/characters/necrolance/front.svg",
  34104. extra: 1062/947,
  34105. bottom: 41/1103
  34106. }
  34107. },
  34108. back: {
  34109. height: math.unit(7, "feet"),
  34110. weight: math.unit(180, "lb"),
  34111. name: "Back",
  34112. image: {
  34113. source: "./media/characters/necrolance/back.svg",
  34114. extra: 1045/984,
  34115. bottom: 14/1059
  34116. }
  34117. },
  34118. wing: {
  34119. height: math.unit(2.67, "feet"),
  34120. name: "Wing",
  34121. image: {
  34122. source: "./media/characters/necrolance/wing.svg"
  34123. }
  34124. },
  34125. },
  34126. [
  34127. {
  34128. name: "Normal",
  34129. height: math.unit(7, "feet"),
  34130. default: true
  34131. },
  34132. ]
  34133. ))
  34134. characterMakers.push(() => makeCharacter(
  34135. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34136. {
  34137. front: {
  34138. height: math.unit(76, "meters"),
  34139. weight: math.unit(30000, "tons"),
  34140. name: "Front",
  34141. image: {
  34142. source: "./media/characters/tyler/front.svg",
  34143. extra: 1640/1640,
  34144. bottom: 114/1754
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Macro",
  34151. height: math.unit(76, "meters"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34158. {
  34159. front: {
  34160. height: math.unit(4 + 11/12, "feet"),
  34161. weight: math.unit(132, "lb"),
  34162. name: "Front",
  34163. image: {
  34164. source: "./media/characters/icey/front.svg",
  34165. extra: 2750/2550,
  34166. bottom: 33/2783
  34167. }
  34168. },
  34169. back: {
  34170. height: math.unit(4 + 11/12, "feet"),
  34171. weight: math.unit(132, "lb"),
  34172. name: "Back",
  34173. image: {
  34174. source: "./media/characters/icey/back.svg",
  34175. extra: 2624/2481,
  34176. bottom: 35/2659
  34177. }
  34178. },
  34179. },
  34180. [
  34181. {
  34182. name: "Normal",
  34183. height: math.unit(4 + 11/12, "feet"),
  34184. default: true
  34185. },
  34186. ]
  34187. ))
  34188. characterMakers.push(() => makeCharacter(
  34189. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34190. {
  34191. front: {
  34192. height: math.unit(100, "feet"),
  34193. weight: math.unit(0, "lb"),
  34194. name: "Front",
  34195. image: {
  34196. source: "./media/characters/smile/front.svg",
  34197. extra: 2983/2912,
  34198. bottom: 162/3145
  34199. }
  34200. },
  34201. back: {
  34202. height: math.unit(100, "feet"),
  34203. weight: math.unit(0, "lb"),
  34204. name: "Back",
  34205. image: {
  34206. source: "./media/characters/smile/back.svg",
  34207. extra: 3143/3031,
  34208. bottom: 91/3234
  34209. }
  34210. },
  34211. head: {
  34212. height: math.unit(26.3, "feet"),
  34213. weight: math.unit(0, "lb"),
  34214. name: "Head",
  34215. image: {
  34216. source: "./media/characters/smile/head.svg"
  34217. }
  34218. },
  34219. collar: {
  34220. height: math.unit(5.3, "feet"),
  34221. weight: math.unit(0, "lb"),
  34222. name: "Collar",
  34223. image: {
  34224. source: "./media/characters/smile/collar.svg"
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Macro",
  34231. height: math.unit(100, "feet"),
  34232. default: true
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34238. {
  34239. dragon: {
  34240. height: math.unit(26, "feet"),
  34241. weight: math.unit(36, "tons"),
  34242. name: "Dragon",
  34243. image: {
  34244. source: "./media/characters/arimphae/dragon.svg",
  34245. extra: 1574/983,
  34246. bottom: 357/1931
  34247. }
  34248. },
  34249. drake: {
  34250. height: math.unit(9, "feet"),
  34251. weight: math.unit(1.5, "tons"),
  34252. name: "Drake",
  34253. image: {
  34254. source: "./media/characters/arimphae/drake.svg",
  34255. extra: 1120/925,
  34256. bottom: 435/1555
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Small",
  34263. height: math.unit(26*5/9, "feet")
  34264. },
  34265. {
  34266. name: "Normal",
  34267. height: math.unit(26, "feet"),
  34268. default: true
  34269. },
  34270. ]
  34271. ))
  34272. characterMakers.push(() => makeCharacter(
  34273. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34274. {
  34275. front: {
  34276. height: math.unit(8 + 9/12, "feet"),
  34277. name: "Front",
  34278. image: {
  34279. source: "./media/characters/xander/front.svg",
  34280. extra: 1237/974,
  34281. bottom: 94/1331
  34282. }
  34283. },
  34284. },
  34285. [
  34286. {
  34287. name: "Normal",
  34288. height: math.unit(8 + 9/12, "feet"),
  34289. default: true
  34290. },
  34291. {
  34292. name: "Gaze Grabber",
  34293. height: math.unit(13 + 8/12, "feet")
  34294. },
  34295. {
  34296. name: "Jaw Dropper",
  34297. height: math.unit(27, "feet")
  34298. },
  34299. {
  34300. name: "Show Stopper",
  34301. height: math.unit(136, "feet")
  34302. },
  34303. {
  34304. name: "Superstar",
  34305. height: math.unit(1.9e6, "miles")
  34306. },
  34307. ]
  34308. ))
  34309. characterMakers.push(() => makeCharacter(
  34310. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34311. {
  34312. side: {
  34313. height: math.unit(2100, "feet"),
  34314. name: "Side",
  34315. image: {
  34316. source: "./media/characters/osiris/side.svg",
  34317. extra: 1105/939,
  34318. bottom: 167/1272
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Macro",
  34325. height: math.unit(2100, "feet"),
  34326. default: true
  34327. },
  34328. ]
  34329. ))
  34330. characterMakers.push(() => makeCharacter(
  34331. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34332. {
  34333. front: {
  34334. height: math.unit(6 + 8/12, "feet"),
  34335. weight: math.unit(225, "lb"),
  34336. name: "Front",
  34337. image: {
  34338. source: "./media/characters/rhys-londe/front.svg",
  34339. extra: 2258/2141,
  34340. bottom: 188/2446
  34341. }
  34342. },
  34343. back: {
  34344. height: math.unit(6 + 8/12, "feet"),
  34345. weight: math.unit(225, "lb"),
  34346. name: "Back",
  34347. image: {
  34348. source: "./media/characters/rhys-londe/back.svg",
  34349. extra: 2237/2137,
  34350. bottom: 63/2300
  34351. }
  34352. },
  34353. frontNsfw: {
  34354. height: math.unit(6 + 8/12, "feet"),
  34355. weight: math.unit(225, "lb"),
  34356. name: "Front (NSFW)",
  34357. image: {
  34358. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34359. extra: 2258/2141,
  34360. bottom: 188/2446
  34361. }
  34362. },
  34363. backNsfw: {
  34364. height: math.unit(6 + 8/12, "feet"),
  34365. weight: math.unit(225, "lb"),
  34366. name: "Back (NSFW)",
  34367. image: {
  34368. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34369. extra: 2237/2137,
  34370. bottom: 63/2300
  34371. }
  34372. },
  34373. dick: {
  34374. height: math.unit(30, "inches"),
  34375. name: "Dick",
  34376. image: {
  34377. source: "./media/characters/rhys-londe/dick.svg"
  34378. }
  34379. },
  34380. maw: {
  34381. height: math.unit(1.6, "feet"),
  34382. name: "Maw",
  34383. image: {
  34384. source: "./media/characters/rhys-londe/maw.svg"
  34385. }
  34386. },
  34387. },
  34388. [
  34389. {
  34390. name: "Normal",
  34391. height: math.unit(6 + 8/12, "feet"),
  34392. default: true
  34393. },
  34394. ]
  34395. ))
  34396. characterMakers.push(() => makeCharacter(
  34397. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34398. {
  34399. front: {
  34400. height: math.unit(3 + 10/12, "feet"),
  34401. weight: math.unit(90, "lb"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/taivas-ensim/front.svg",
  34405. extra: 1327/1216,
  34406. bottom: 96/1423
  34407. }
  34408. },
  34409. back: {
  34410. height: math.unit(3 + 10/12, "feet"),
  34411. weight: math.unit(90, "lb"),
  34412. name: "Back",
  34413. image: {
  34414. source: "./media/characters/taivas-ensim/back.svg",
  34415. extra: 1355/1247,
  34416. bottom: 11/1366
  34417. }
  34418. },
  34419. frontNsfw: {
  34420. height: math.unit(3 + 10/12, "feet"),
  34421. weight: math.unit(90, "lb"),
  34422. name: "Front (NSFW)",
  34423. image: {
  34424. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34425. extra: 1327/1216,
  34426. bottom: 96/1423
  34427. }
  34428. },
  34429. backNsfw: {
  34430. height: math.unit(3 + 10/12, "feet"),
  34431. weight: math.unit(90, "lb"),
  34432. name: "Back (NSFW)",
  34433. image: {
  34434. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34435. extra: 1355/1247,
  34436. bottom: 11/1366
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(3 + 10/12, "feet"),
  34444. default: true
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34450. {
  34451. front: {
  34452. height: math.unit(9 + 6/12, "feet"),
  34453. weight: math.unit(940, "lb"),
  34454. name: "Front",
  34455. image: {
  34456. source: "./media/characters/byliss/front.svg",
  34457. extra: 1327/1290,
  34458. bottom: 82/1409
  34459. }
  34460. },
  34461. back: {
  34462. height: math.unit(9 + 6/12, "feet"),
  34463. weight: math.unit(940, "lb"),
  34464. name: "Back",
  34465. image: {
  34466. source: "./media/characters/byliss/back.svg",
  34467. extra: 1376/1349,
  34468. bottom: 9/1385
  34469. }
  34470. },
  34471. frontNsfw: {
  34472. height: math.unit(9 + 6/12, "feet"),
  34473. weight: math.unit(940, "lb"),
  34474. name: "Front (NSFW)",
  34475. image: {
  34476. source: "./media/characters/byliss/front-nsfw.svg",
  34477. extra: 1327/1290,
  34478. bottom: 82/1409
  34479. }
  34480. },
  34481. backNsfw: {
  34482. height: math.unit(9 + 6/12, "feet"),
  34483. weight: math.unit(940, "lb"),
  34484. name: "Back (NSFW)",
  34485. image: {
  34486. source: "./media/characters/byliss/back-nsfw.svg",
  34487. extra: 1376/1349,
  34488. bottom: 9/1385
  34489. }
  34490. },
  34491. },
  34492. [
  34493. {
  34494. name: "Normal",
  34495. height: math.unit(9 + 6/12, "feet"),
  34496. default: true
  34497. },
  34498. ]
  34499. ))
  34500. characterMakers.push(() => makeCharacter(
  34501. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34502. {
  34503. front: {
  34504. height: math.unit(5 + 2/12, "feet"),
  34505. weight: math.unit(200, "lb"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/noraly/front.svg",
  34509. extra: 4985/4773,
  34510. bottom: 150/5135
  34511. }
  34512. },
  34513. full: {
  34514. height: math.unit(5 + 2/12, "feet"),
  34515. weight: math.unit(164, "lb"),
  34516. name: "Full",
  34517. image: {
  34518. source: "./media/characters/noraly/full.svg",
  34519. extra: 1114/1059,
  34520. bottom: 35/1149
  34521. }
  34522. },
  34523. fuller: {
  34524. height: math.unit(5 + 2/12, "feet"),
  34525. weight: math.unit(230, "lb"),
  34526. name: "Fuller",
  34527. image: {
  34528. source: "./media/characters/noraly/fuller.svg",
  34529. extra: 1114/1059,
  34530. bottom: 35/1149
  34531. }
  34532. },
  34533. fullest: {
  34534. height: math.unit(5 + 2/12, "feet"),
  34535. weight: math.unit(300, "lb"),
  34536. name: "Fullest",
  34537. image: {
  34538. source: "./media/characters/noraly/fullest.svg",
  34539. extra: 1114/1059,
  34540. bottom: 35/1149
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(5 + 2/12, "feet"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34554. {
  34555. front: {
  34556. height: math.unit(5 + 2/12, "feet"),
  34557. weight: math.unit(210, "lb"),
  34558. name: "Front",
  34559. image: {
  34560. source: "./media/characters/pera/front.svg",
  34561. extra: 1560/1531,
  34562. bottom: 165/1725
  34563. }
  34564. },
  34565. back: {
  34566. height: math.unit(5 + 2/12, "feet"),
  34567. weight: math.unit(210, "lb"),
  34568. name: "Back",
  34569. image: {
  34570. source: "./media/characters/pera/back.svg",
  34571. extra: 1523/1493,
  34572. bottom: 152/1675
  34573. }
  34574. },
  34575. dick: {
  34576. height: math.unit(2.4, "feet"),
  34577. name: "Dick",
  34578. image: {
  34579. source: "./media/characters/pera/dick.svg"
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(5 + 2/12, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(12, "feet"),
  34596. weight: math.unit(3200, "lb"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/julian/front.svg",
  34600. extra: 2962/2701,
  34601. bottom: 184/3146
  34602. }
  34603. },
  34604. maw: {
  34605. height: math.unit(5.35, "feet"),
  34606. name: "Maw",
  34607. image: {
  34608. source: "./media/characters/julian/maw.svg"
  34609. }
  34610. },
  34611. paw: {
  34612. height: math.unit(3.07, "feet"),
  34613. name: "Paw",
  34614. image: {
  34615. source: "./media/characters/julian/paw.svg"
  34616. }
  34617. },
  34618. },
  34619. [
  34620. {
  34621. name: "Default",
  34622. height: math.unit(12, "feet"),
  34623. default: true
  34624. },
  34625. {
  34626. name: "Big",
  34627. height: math.unit(50, "feet")
  34628. },
  34629. {
  34630. name: "Really Big",
  34631. height: math.unit(1, "mile")
  34632. },
  34633. {
  34634. name: "Extremely Big",
  34635. height: math.unit(100, "miles")
  34636. },
  34637. {
  34638. name: "Planet Hugger",
  34639. height: math.unit(200, "megameters")
  34640. },
  34641. {
  34642. name: "Unreasonably Big",
  34643. height: math.unit(1e300, "meters")
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34649. {
  34650. solgooleo: {
  34651. height: math.unit(4, "meters"),
  34652. weight: math.unit(6000*1.5, "kg"),
  34653. volume: math.unit(6000, "liters"),
  34654. name: "Solgooleo",
  34655. image: {
  34656. source: "./media/characters/pi/solgooleo.svg",
  34657. extra: 388/331,
  34658. bottom: 29/417
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Normal",
  34665. height: math.unit(4, "meters"),
  34666. default: true
  34667. },
  34668. ]
  34669. ))
  34670. characterMakers.push(() => makeCharacter(
  34671. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34672. {
  34673. front: {
  34674. height: math.unit(8, "feet"),
  34675. weight: math.unit(4, "tons"),
  34676. name: "Front",
  34677. image: {
  34678. source: "./media/characters/shaun/front.svg",
  34679. extra: 503/495,
  34680. bottom: 20/523
  34681. }
  34682. },
  34683. back: {
  34684. height: math.unit(8, "feet"),
  34685. weight: math.unit(4, "tons"),
  34686. name: "Back",
  34687. image: {
  34688. source: "./media/characters/shaun/back.svg",
  34689. extra: 487/480,
  34690. bottom: 20/507
  34691. }
  34692. },
  34693. },
  34694. [
  34695. {
  34696. name: "Lorg",
  34697. height: math.unit(8, "feet"),
  34698. default: true
  34699. },
  34700. ]
  34701. ))
  34702. characterMakers.push(() => makeCharacter(
  34703. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34704. {
  34705. frontAnthro: {
  34706. height: math.unit(7, "feet"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/sini/front-anthro.svg",
  34710. extra: 726/678,
  34711. bottom: 35/761
  34712. },
  34713. form: "anthro",
  34714. default: true
  34715. },
  34716. backAnthro: {
  34717. height: math.unit(7, "feet"),
  34718. name: "Back",
  34719. image: {
  34720. source: "./media/characters/sini/back-anthro.svg",
  34721. extra: 743/701,
  34722. bottom: 12/755
  34723. },
  34724. form: "anthro",
  34725. },
  34726. frontAnthroNsfw: {
  34727. height: math.unit(7, "feet"),
  34728. name: "Front (NSFW)",
  34729. image: {
  34730. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34731. extra: 726/678,
  34732. bottom: 35/761
  34733. },
  34734. form: "anthro"
  34735. },
  34736. backAnthroNsfw: {
  34737. height: math.unit(7, "feet"),
  34738. name: "Back (NSFW)",
  34739. image: {
  34740. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34741. extra: 743/701,
  34742. bottom: 12/755
  34743. },
  34744. form: "anthro",
  34745. },
  34746. mawAnthro: {
  34747. height: math.unit(2.14, "feet"),
  34748. name: "Maw",
  34749. image: {
  34750. source: "./media/characters/sini/maw-anthro.svg"
  34751. },
  34752. form: "anthro"
  34753. },
  34754. dick: {
  34755. height: math.unit(1.45, "feet"),
  34756. name: "Dick",
  34757. image: {
  34758. source: "./media/characters/sini/dick-anthro.svg"
  34759. },
  34760. form: "anthro"
  34761. },
  34762. feral: {
  34763. height: math.unit(16, "feet"),
  34764. name: "Feral",
  34765. image: {
  34766. source: "./media/characters/sini/feral.svg",
  34767. extra: 814/605,
  34768. bottom: 11/825
  34769. },
  34770. form: "feral",
  34771. default: true
  34772. },
  34773. feralNsfw: {
  34774. height: math.unit(16, "feet"),
  34775. name: "Feral (NSFW)",
  34776. image: {
  34777. source: "./media/characters/sini/feral-nsfw.svg",
  34778. extra: 814/605,
  34779. bottom: 11/825
  34780. },
  34781. form: "feral"
  34782. },
  34783. mawFeral: {
  34784. height: math.unit(5.66, "feet"),
  34785. name: "Maw",
  34786. image: {
  34787. source: "./media/characters/sini/maw-feral.svg"
  34788. },
  34789. form: "feral",
  34790. },
  34791. pawFeral: {
  34792. height: math.unit(5.17, "feet"),
  34793. name: "Paw",
  34794. image: {
  34795. source: "./media/characters/sini/paw-feral.svg"
  34796. },
  34797. form: "feral",
  34798. },
  34799. rumpFeral: {
  34800. height: math.unit(13.11, "feet"),
  34801. name: "Rump",
  34802. image: {
  34803. source: "./media/characters/sini/rump-feral.svg"
  34804. },
  34805. form: "feral",
  34806. },
  34807. dickFeral: {
  34808. height: math.unit(1, "feet"),
  34809. name: "Dick",
  34810. image: {
  34811. source: "./media/characters/sini/dick-feral.svg"
  34812. },
  34813. form: "feral",
  34814. },
  34815. eyeFeral: {
  34816. height: math.unit(1.23, "feet"),
  34817. name: "Eye",
  34818. image: {
  34819. source: "./media/characters/sini/eye-feral.svg"
  34820. },
  34821. form: "feral",
  34822. },
  34823. },
  34824. [
  34825. {
  34826. name: "Normal",
  34827. height: math.unit(7, "feet"),
  34828. default: true,
  34829. form: "anthro"
  34830. },
  34831. {
  34832. name: "Normal",
  34833. height: math.unit(16, "feet"),
  34834. default: true,
  34835. form: "feral"
  34836. },
  34837. ],
  34838. {
  34839. "anthro": {
  34840. name: "Anthro",
  34841. default: true
  34842. },
  34843. "feral": {
  34844. name: "Feral",
  34845. }
  34846. }
  34847. ))
  34848. characterMakers.push(() => makeCharacter(
  34849. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34850. {
  34851. side: {
  34852. height: math.unit(47.2, "meters"),
  34853. weight: math.unit(10000, "tons"),
  34854. name: "Side",
  34855. image: {
  34856. source: "./media/characters/raylldo/side.svg",
  34857. extra: 2363/642,
  34858. bottom: 221/2584
  34859. }
  34860. },
  34861. top: {
  34862. height: math.unit(240, "meters"),
  34863. weight: math.unit(10000, "tons"),
  34864. name: "Top",
  34865. image: {
  34866. source: "./media/characters/raylldo/top.svg"
  34867. }
  34868. },
  34869. bottom: {
  34870. height: math.unit(240, "meters"),
  34871. weight: math.unit(10000, "tons"),
  34872. name: "Bottom",
  34873. image: {
  34874. source: "./media/characters/raylldo/bottom.svg"
  34875. }
  34876. },
  34877. head: {
  34878. height: math.unit(38.6, "meters"),
  34879. name: "Head",
  34880. image: {
  34881. source: "./media/characters/raylldo/head.svg",
  34882. extra: 1335/1112,
  34883. bottom: 0/1335
  34884. }
  34885. },
  34886. maw: {
  34887. height: math.unit(16.37, "meters"),
  34888. name: "Maw",
  34889. image: {
  34890. source: "./media/characters/raylldo/maw.svg",
  34891. extra: 883/660,
  34892. bottom: 0/883
  34893. },
  34894. extraAttributes: {
  34895. preyCapacity: {
  34896. name: "Capacity",
  34897. power: 3,
  34898. type: "volume",
  34899. base: math.unit(1000, "people")
  34900. },
  34901. tongueSize: {
  34902. name: "Tongue Size",
  34903. power: 2,
  34904. type: "area",
  34905. base: math.unit(21, "m^2")
  34906. }
  34907. }
  34908. },
  34909. forepaw: {
  34910. height: math.unit(18, "meters"),
  34911. name: "Forepaw",
  34912. image: {
  34913. source: "./media/characters/raylldo/forepaw.svg"
  34914. }
  34915. },
  34916. hindpaw: {
  34917. height: math.unit(23, "meters"),
  34918. name: "Hindpaw",
  34919. image: {
  34920. source: "./media/characters/raylldo/hindpaw.svg"
  34921. }
  34922. },
  34923. genitals: {
  34924. height: math.unit(42, "meters"),
  34925. name: "Genitals",
  34926. image: {
  34927. source: "./media/characters/raylldo/genitals.svg"
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Normal",
  34934. height: math.unit(47.2, "meters"),
  34935. default: true
  34936. },
  34937. ]
  34938. ))
  34939. characterMakers.push(() => makeCharacter(
  34940. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34941. {
  34942. anthroFront: {
  34943. height: math.unit(9, "feet"),
  34944. weight: math.unit(600, "lb"),
  34945. name: "Anthro (Front)",
  34946. image: {
  34947. source: "./media/characters/glint/anthro-front.svg",
  34948. extra: 1097/1018,
  34949. bottom: 28/1125
  34950. }
  34951. },
  34952. anthroBack: {
  34953. height: math.unit(9, "feet"),
  34954. weight: math.unit(600, "lb"),
  34955. name: "Anthro (Back)",
  34956. image: {
  34957. source: "./media/characters/glint/anthro-back.svg",
  34958. extra: 1154/997,
  34959. bottom: 36/1190
  34960. }
  34961. },
  34962. feral: {
  34963. height: math.unit(11, "feet"),
  34964. weight: math.unit(50000, "lb"),
  34965. name: "Feral",
  34966. image: {
  34967. source: "./media/characters/glint/feral.svg",
  34968. extra: 3035/1585,
  34969. bottom: 1169/4204
  34970. }
  34971. },
  34972. dickAnthro: {
  34973. height: math.unit(0.7, "meters"),
  34974. name: "Dick (Anthro)",
  34975. image: {
  34976. source: "./media/characters/glint/dick-anthro.svg"
  34977. }
  34978. },
  34979. dickFeral: {
  34980. height: math.unit(2.65, "meters"),
  34981. name: "Dick (Feral)",
  34982. image: {
  34983. source: "./media/characters/glint/dick-feral.svg"
  34984. }
  34985. },
  34986. slitHidden: {
  34987. height: math.unit(5.85, "meters"),
  34988. name: "Slit (Hidden)",
  34989. image: {
  34990. source: "./media/characters/glint/slit-hidden.svg"
  34991. }
  34992. },
  34993. slitErect: {
  34994. height: math.unit(5.85, "meters"),
  34995. name: "Slit (Erect)",
  34996. image: {
  34997. source: "./media/characters/glint/slit-erect.svg"
  34998. }
  34999. },
  35000. mawAnthro: {
  35001. height: math.unit(0.63, "meters"),
  35002. name: "Maw (Anthro)",
  35003. image: {
  35004. source: "./media/characters/glint/maw.svg"
  35005. }
  35006. },
  35007. mawFeral: {
  35008. height: math.unit(2.89, "meters"),
  35009. name: "Maw (Feral)",
  35010. image: {
  35011. source: "./media/characters/glint/maw.svg"
  35012. }
  35013. },
  35014. },
  35015. [
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(9, "feet"),
  35019. default: true
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35025. {
  35026. side: {
  35027. height: math.unit(15, "feet"),
  35028. weight: math.unit(5000, "kg"),
  35029. name: "Side",
  35030. image: {
  35031. source: "./media/characters/kairne/side.svg",
  35032. extra: 979/811,
  35033. bottom: 13/992
  35034. }
  35035. },
  35036. front: {
  35037. height: math.unit(15, "feet"),
  35038. weight: math.unit(5000, "kg"),
  35039. name: "Front",
  35040. image: {
  35041. source: "./media/characters/kairne/front.svg",
  35042. extra: 908/814,
  35043. bottom: 26/934
  35044. }
  35045. },
  35046. sideNsfw: {
  35047. height: math.unit(15, "feet"),
  35048. weight: math.unit(5000, "kg"),
  35049. name: "Side (NSFW)",
  35050. image: {
  35051. source: "./media/characters/kairne/side-nsfw.svg",
  35052. extra: 979/811,
  35053. bottom: 13/992
  35054. }
  35055. },
  35056. frontNsfw: {
  35057. height: math.unit(15, "feet"),
  35058. weight: math.unit(5000, "kg"),
  35059. name: "Front (NSFW)",
  35060. image: {
  35061. source: "./media/characters/kairne/front-nsfw.svg",
  35062. extra: 908/814,
  35063. bottom: 26/934
  35064. }
  35065. },
  35066. dickCaged: {
  35067. height: math.unit(0.65, "meters"),
  35068. name: "Dick-caged",
  35069. image: {
  35070. source: "./media/characters/kairne/dick-caged.svg"
  35071. }
  35072. },
  35073. dick: {
  35074. height: math.unit(0.79, "meters"),
  35075. name: "Dick",
  35076. image: {
  35077. source: "./media/characters/kairne/dick.svg"
  35078. }
  35079. },
  35080. genitals: {
  35081. height: math.unit(1.29, "meters"),
  35082. name: "Genitals",
  35083. image: {
  35084. source: "./media/characters/kairne/genitals.svg"
  35085. }
  35086. },
  35087. maw: {
  35088. height: math.unit(1.73, "meters"),
  35089. name: "Maw",
  35090. image: {
  35091. source: "./media/characters/kairne/maw.svg"
  35092. }
  35093. },
  35094. },
  35095. [
  35096. {
  35097. name: "Normal",
  35098. height: math.unit(15, "feet"),
  35099. default: true
  35100. },
  35101. ]
  35102. ))
  35103. characterMakers.push(() => makeCharacter(
  35104. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35105. {
  35106. front: {
  35107. height: math.unit(5 + 8/12, "feet"),
  35108. weight: math.unit(139, "lb"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/biscuit-jackal/front.svg",
  35112. extra: 2106/1961,
  35113. bottom: 58/2164
  35114. }
  35115. },
  35116. back: {
  35117. height: math.unit(5 + 8/12, "feet"),
  35118. weight: math.unit(139, "lb"),
  35119. name: "Back",
  35120. image: {
  35121. source: "./media/characters/biscuit-jackal/back.svg",
  35122. extra: 2132/1976,
  35123. bottom: 57/2189
  35124. }
  35125. },
  35126. werejackal: {
  35127. height: math.unit(6 + 3/12, "feet"),
  35128. weight: math.unit(188, "lb"),
  35129. name: "Werejackal",
  35130. image: {
  35131. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35132. extra: 2373/2178,
  35133. bottom: 53/2426
  35134. }
  35135. },
  35136. },
  35137. [
  35138. {
  35139. name: "Normal",
  35140. height: math.unit(5 + 8/12, "feet"),
  35141. default: true
  35142. },
  35143. ]
  35144. ))
  35145. characterMakers.push(() => makeCharacter(
  35146. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35147. {
  35148. front: {
  35149. height: math.unit(140, "cm"),
  35150. weight: math.unit(45, "kg"),
  35151. name: "Front",
  35152. image: {
  35153. source: "./media/characters/tayra-white/front.svg",
  35154. extra: 2229/2192,
  35155. bottom: 75/2304
  35156. }
  35157. },
  35158. },
  35159. [
  35160. {
  35161. name: "Normal",
  35162. height: math.unit(140, "cm"),
  35163. default: true
  35164. },
  35165. ]
  35166. ))
  35167. characterMakers.push(() => makeCharacter(
  35168. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35169. {
  35170. front: {
  35171. height: math.unit(4 + 5/12, "feet"),
  35172. name: "Front",
  35173. image: {
  35174. source: "./media/characters/scoop/front.svg",
  35175. extra: 1257/1136,
  35176. bottom: 69/1326
  35177. }
  35178. },
  35179. back: {
  35180. height: math.unit(4 + 5/12, "feet"),
  35181. name: "Back",
  35182. image: {
  35183. source: "./media/characters/scoop/back.svg",
  35184. extra: 1321/1152,
  35185. bottom: 32/1353
  35186. }
  35187. },
  35188. maw: {
  35189. height: math.unit(0.68, "feet"),
  35190. name: "Maw",
  35191. image: {
  35192. source: "./media/characters/scoop/maw.svg"
  35193. }
  35194. },
  35195. },
  35196. [
  35197. {
  35198. name: "Really Small",
  35199. height: math.unit(1, "mm")
  35200. },
  35201. {
  35202. name: "Micro",
  35203. height: math.unit(1, "inch")
  35204. },
  35205. {
  35206. name: "Normal",
  35207. height: math.unit(4 + 5/12, "feet"),
  35208. default: true
  35209. },
  35210. {
  35211. name: "Macro",
  35212. height: math.unit(200, "feet")
  35213. },
  35214. {
  35215. name: "Megamacro",
  35216. height: math.unit(3240, "feet")
  35217. },
  35218. {
  35219. name: "Teramacro",
  35220. height: math.unit(2500, "miles")
  35221. },
  35222. ]
  35223. ))
  35224. characterMakers.push(() => makeCharacter(
  35225. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35226. {
  35227. front: {
  35228. height: math.unit(15 + 7/12, "feet"),
  35229. weight: math.unit(1150, "tons"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/saphinara/front.svg",
  35233. extra: 1837/1643,
  35234. bottom: 84/1921
  35235. },
  35236. form: "normal",
  35237. default: true
  35238. },
  35239. side: {
  35240. height: math.unit(15 + 7/12, "feet"),
  35241. weight: math.unit(1150, "tons"),
  35242. name: "Side",
  35243. image: {
  35244. source: "./media/characters/saphinara/side.svg",
  35245. extra: 605/547,
  35246. bottom: 6/611
  35247. },
  35248. form: "normal"
  35249. },
  35250. back: {
  35251. height: math.unit(15 + 7/12, "feet"),
  35252. weight: math.unit(1150, "tons"),
  35253. name: "Back",
  35254. image: {
  35255. source: "./media/characters/saphinara/back.svg",
  35256. extra: 591/531,
  35257. bottom: 13/604
  35258. },
  35259. form: "normal"
  35260. },
  35261. frontTail: {
  35262. height: math.unit(15 + 7/12, "feet"),
  35263. weight: math.unit(1150, "tons"),
  35264. name: "Front (Full Tail)",
  35265. image: {
  35266. source: "./media/characters/saphinara/front-tail.svg",
  35267. extra: 2256/1630,
  35268. bottom: 261/2517
  35269. },
  35270. form: "normal"
  35271. },
  35272. insides: {
  35273. height: math.unit(11.92, "feet"),
  35274. name: "Insides",
  35275. image: {
  35276. source: "./media/characters/saphinara/insides.svg"
  35277. },
  35278. form: "normal"
  35279. },
  35280. head: {
  35281. height: math.unit(4.17, "feet"),
  35282. name: "Head",
  35283. image: {
  35284. source: "./media/characters/saphinara/head.svg"
  35285. },
  35286. form: "normal"
  35287. },
  35288. tongue: {
  35289. height: math.unit(4.60, "feet"),
  35290. name: "Tongue",
  35291. image: {
  35292. source: "./media/characters/saphinara/tongue.svg"
  35293. },
  35294. form: "normal"
  35295. },
  35296. headEnraged: {
  35297. height: math.unit(5.55, "feet"),
  35298. name: "Head (Enraged)",
  35299. image: {
  35300. source: "./media/characters/saphinara/head-enraged.svg"
  35301. },
  35302. form: "normal"
  35303. },
  35304. wings: {
  35305. height: math.unit(11.95, "feet"),
  35306. name: "Wings",
  35307. image: {
  35308. source: "./media/characters/saphinara/wings.svg"
  35309. },
  35310. form: "normal"
  35311. },
  35312. feathers: {
  35313. height: math.unit(8.92, "feet"),
  35314. name: "Feathers",
  35315. image: {
  35316. source: "./media/characters/saphinara/feathers.svg"
  35317. },
  35318. form: "normal"
  35319. },
  35320. shackles: {
  35321. height: math.unit(2, "feet"),
  35322. name: "Shackles",
  35323. image: {
  35324. source: "./media/characters/saphinara/shackles.svg"
  35325. },
  35326. form: "normal"
  35327. },
  35328. eyes: {
  35329. height: math.unit(1.331, "feet"),
  35330. name: "Eyes",
  35331. image: {
  35332. source: "./media/characters/saphinara/eyes.svg"
  35333. },
  35334. form: "normal"
  35335. },
  35336. eyesEnraged: {
  35337. height: math.unit(1.331, "feet"),
  35338. name: "Eyes (Enraged)",
  35339. image: {
  35340. source: "./media/characters/saphinara/eyes-enraged.svg"
  35341. },
  35342. form: "normal"
  35343. },
  35344. trueFormSide: {
  35345. height: math.unit(200, "feet"),
  35346. weight: math.unit(1e7, "tons"),
  35347. name: "Side",
  35348. image: {
  35349. source: "./media/characters/saphinara/true-form-side.svg",
  35350. extra: 1399/770,
  35351. bottom: 97/1496
  35352. },
  35353. form: "true-form",
  35354. default: true
  35355. },
  35356. trueFormMaw: {
  35357. height: math.unit(71.5, "feet"),
  35358. name: "Maw",
  35359. image: {
  35360. source: "./media/characters/saphinara/true-form-maw.svg",
  35361. extra: 2302/1453,
  35362. bottom: 0/2302
  35363. },
  35364. form: "true-form"
  35365. },
  35366. meowberusSide: {
  35367. height: math.unit(75, "feet"),
  35368. weight: math.unit(180000, "kg"),
  35369. preyCapacity: math.unit(50000, "people"),
  35370. name: "Side",
  35371. image: {
  35372. source: "./media/characters/saphinara/meowberus-side.svg",
  35373. extra: 1400/711,
  35374. bottom: 126/1526
  35375. },
  35376. form: "meowberus",
  35377. extraAttributes: {
  35378. "pawArea": {
  35379. name: "Paw Size",
  35380. power: 2,
  35381. type: "area",
  35382. base: math.unit(35, "m^2")
  35383. }
  35384. }
  35385. },
  35386. },
  35387. [
  35388. {
  35389. name: "Normal",
  35390. height: math.unit(15 + 7/12, "feet"),
  35391. default: true,
  35392. form: "normal"
  35393. },
  35394. {
  35395. name: "Angry",
  35396. height: math.unit(30 + 6/12, "feet"),
  35397. form: "normal"
  35398. },
  35399. {
  35400. name: "Enraged",
  35401. height: math.unit(102 + 1/12, "feet"),
  35402. form: "normal"
  35403. },
  35404. {
  35405. name: "True",
  35406. height: math.unit(200, "feet"),
  35407. default: true,
  35408. form: "true-form"
  35409. },
  35410. {
  35411. name: "Normal",
  35412. height: math.unit(75, "feet"),
  35413. default: true,
  35414. form: "meowberus"
  35415. },
  35416. ],
  35417. {
  35418. "normal": {
  35419. name: "Normal",
  35420. default: true
  35421. },
  35422. "true-form": {
  35423. name: "True Form"
  35424. },
  35425. "meowberus": {
  35426. name: "Meowberus",
  35427. },
  35428. }
  35429. ))
  35430. characterMakers.push(() => makeCharacter(
  35431. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35432. {
  35433. front: {
  35434. height: math.unit(6 + 8/12, "feet"),
  35435. weight: math.unit(300, "lb"),
  35436. name: "Front",
  35437. image: {
  35438. source: "./media/characters/jrain/front.svg",
  35439. extra: 3039/2865,
  35440. bottom: 399/3438
  35441. }
  35442. },
  35443. back: {
  35444. height: math.unit(6 + 8/12, "feet"),
  35445. weight: math.unit(300, "lb"),
  35446. name: "Back",
  35447. image: {
  35448. source: "./media/characters/jrain/back.svg",
  35449. extra: 3089/2938,
  35450. bottom: 172/3261
  35451. }
  35452. },
  35453. head: {
  35454. height: math.unit(2.14, "feet"),
  35455. name: "Head",
  35456. image: {
  35457. source: "./media/characters/jrain/head.svg"
  35458. }
  35459. },
  35460. maw: {
  35461. height: math.unit(1.77, "feet"),
  35462. name: "Maw",
  35463. image: {
  35464. source: "./media/characters/jrain/maw.svg"
  35465. }
  35466. },
  35467. leftHand: {
  35468. height: math.unit(1.1, "feet"),
  35469. name: "Left Hand",
  35470. image: {
  35471. source: "./media/characters/jrain/left-hand.svg"
  35472. }
  35473. },
  35474. rightHand: {
  35475. height: math.unit(1.1, "feet"),
  35476. name: "Right Hand",
  35477. image: {
  35478. source: "./media/characters/jrain/right-hand.svg"
  35479. }
  35480. },
  35481. eye: {
  35482. height: math.unit(0.35, "feet"),
  35483. name: "Eye",
  35484. image: {
  35485. source: "./media/characters/jrain/eye.svg"
  35486. }
  35487. },
  35488. },
  35489. [
  35490. {
  35491. name: "Normal",
  35492. height: math.unit(6 + 8/12, "feet"),
  35493. default: true
  35494. },
  35495. {
  35496. name: "Casually Large",
  35497. height: math.unit(25, "feet")
  35498. },
  35499. {
  35500. name: "Giant",
  35501. height: math.unit(100, "feet")
  35502. },
  35503. {
  35504. name: "Kaiju",
  35505. height: math.unit(300, "feet")
  35506. },
  35507. ]
  35508. ))
  35509. characterMakers.push(() => makeCharacter(
  35510. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35511. {
  35512. dragon: {
  35513. height: math.unit(5, "meters"),
  35514. name: "Dragon",
  35515. image: {
  35516. source: "./media/characters/sabrina/dragon.svg",
  35517. extra: 3670 / 2365,
  35518. bottom: 333 / 4003
  35519. }
  35520. },
  35521. gryphon: {
  35522. height: math.unit(3, "meters"),
  35523. name: "Gryphon",
  35524. image: {
  35525. source: "./media/characters/sabrina/gryphon.svg",
  35526. extra: 1576 / 945,
  35527. bottom: 71 / 1647
  35528. }
  35529. },
  35530. snake: {
  35531. height: math.unit(12, "meters"),
  35532. name: "Snake",
  35533. image: {
  35534. source: "./media/characters/sabrina/snake.svg",
  35535. extra: 1758 / 1320,
  35536. bottom: 186 / 1944
  35537. }
  35538. },
  35539. collar: {
  35540. height: math.unit(1.86, "meters"),
  35541. name: "Collar",
  35542. image: {
  35543. source: "./media/characters/sabrina/collar.svg"
  35544. }
  35545. },
  35546. eye: {
  35547. height: math.unit(0.53, "meters"),
  35548. name: "Eye",
  35549. image: {
  35550. source: "./media/characters/sabrina/eye.svg"
  35551. }
  35552. },
  35553. foot: {
  35554. height: math.unit(1.86, "meters"),
  35555. name: "Foot",
  35556. image: {
  35557. source: "./media/characters/sabrina/foot.svg"
  35558. }
  35559. },
  35560. hand: {
  35561. height: math.unit(1.32, "meters"),
  35562. name: "Hand",
  35563. image: {
  35564. source: "./media/characters/sabrina/hand.svg"
  35565. }
  35566. },
  35567. head: {
  35568. height: math.unit(2.44, "meters"),
  35569. name: "Head",
  35570. image: {
  35571. source: "./media/characters/sabrina/head.svg"
  35572. }
  35573. },
  35574. headAngry: {
  35575. height: math.unit(2.44, "meters"),
  35576. name: "Head (Angry))",
  35577. image: {
  35578. source: "./media/characters/sabrina/head-angry.svg"
  35579. }
  35580. },
  35581. maw: {
  35582. height: math.unit(1.65, "meters"),
  35583. name: "Maw",
  35584. image: {
  35585. source: "./media/characters/sabrina/maw.svg"
  35586. }
  35587. },
  35588. spikes: {
  35589. height: math.unit(1.69, "meters"),
  35590. name: "Spikes",
  35591. image: {
  35592. source: "./media/characters/sabrina/spikes.svg"
  35593. }
  35594. },
  35595. stomach: {
  35596. height: math.unit(1.15, "meters"),
  35597. name: "Stomach",
  35598. image: {
  35599. source: "./media/characters/sabrina/stomach.svg"
  35600. }
  35601. },
  35602. tongue: {
  35603. height: math.unit(1.27, "meters"),
  35604. name: "Tongue",
  35605. image: {
  35606. source: "./media/characters/sabrina/tongue.svg"
  35607. }
  35608. },
  35609. wingDorsal: {
  35610. height: math.unit(4.85, "meters"),
  35611. name: "Wing (Dorsal)",
  35612. image: {
  35613. source: "./media/characters/sabrina/wing-dorsal.svg"
  35614. }
  35615. },
  35616. wingVentral: {
  35617. height: math.unit(4.85, "meters"),
  35618. name: "Wing (Ventral)",
  35619. image: {
  35620. source: "./media/characters/sabrina/wing-ventral.svg"
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(5, "meters"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35634. {
  35635. frontMaid: {
  35636. height: math.unit(5 + 5/12, "feet"),
  35637. weight: math.unit(130, "lb"),
  35638. name: "Front (Maid)",
  35639. image: {
  35640. source: "./media/characters/midnight-tales/front-maid.svg",
  35641. extra: 489/454,
  35642. bottom: 61/550
  35643. }
  35644. },
  35645. frontFormal: {
  35646. height: math.unit(5 + 5/12, "feet"),
  35647. weight: math.unit(130, "lb"),
  35648. name: "Front (Formal)",
  35649. image: {
  35650. source: "./media/characters/midnight-tales/front-formal.svg",
  35651. extra: 489/454,
  35652. bottom: 61/550
  35653. }
  35654. },
  35655. back: {
  35656. height: math.unit(5 + 5/12, "feet"),
  35657. weight: math.unit(130, "lb"),
  35658. name: "Back",
  35659. image: {
  35660. source: "./media/characters/midnight-tales/back.svg",
  35661. extra: 498/456,
  35662. bottom: 33/531
  35663. }
  35664. },
  35665. frontBeast: {
  35666. height: math.unit(40, "feet"),
  35667. weight: math.unit(64000, "lb"),
  35668. name: "Front (Beast)",
  35669. image: {
  35670. source: "./media/characters/midnight-tales/front-beast.svg",
  35671. extra: 927/860,
  35672. bottom: 53/980
  35673. }
  35674. },
  35675. backBeast: {
  35676. height: math.unit(40, "feet"),
  35677. weight: math.unit(64000, "lb"),
  35678. name: "Back (Beast)",
  35679. image: {
  35680. source: "./media/characters/midnight-tales/back-beast.svg",
  35681. extra: 929/855,
  35682. bottom: 16/945
  35683. }
  35684. },
  35685. footBeast: {
  35686. height: math.unit(6.7, "feet"),
  35687. name: "Foot (Beast)",
  35688. image: {
  35689. source: "./media/characters/midnight-tales/foot-beast.svg"
  35690. }
  35691. },
  35692. headBeast: {
  35693. height: math.unit(8, "feet"),
  35694. name: "Head (Beast)",
  35695. image: {
  35696. source: "./media/characters/midnight-tales/head-beast.svg"
  35697. }
  35698. },
  35699. },
  35700. [
  35701. {
  35702. name: "Normal",
  35703. height: math.unit(5 + 5 / 12, "feet"),
  35704. default: true
  35705. },
  35706. {
  35707. name: "Macro",
  35708. height: math.unit(25, "feet")
  35709. },
  35710. ]
  35711. ))
  35712. characterMakers.push(() => makeCharacter(
  35713. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35714. {
  35715. front: {
  35716. height: math.unit(5 + 10/12, "feet"),
  35717. name: "Front",
  35718. image: {
  35719. source: "./media/characters/argon/front.svg",
  35720. extra: 2009/1935,
  35721. bottom: 118/2127
  35722. }
  35723. },
  35724. back: {
  35725. height: math.unit(5 + 10/12, "feet"),
  35726. name: "Back",
  35727. image: {
  35728. source: "./media/characters/argon/back.svg",
  35729. extra: 2047/1992,
  35730. bottom: 20/2067
  35731. }
  35732. },
  35733. frontDressed: {
  35734. height: math.unit(5 + 10/12, "feet"),
  35735. name: "Front (Dressed)",
  35736. image: {
  35737. source: "./media/characters/argon/front-dressed.svg",
  35738. extra: 2009/1935,
  35739. bottom: 118/2127
  35740. }
  35741. },
  35742. },
  35743. [
  35744. {
  35745. name: "Normal",
  35746. height: math.unit(5 + 10/12, "feet"),
  35747. default: true
  35748. },
  35749. ]
  35750. ))
  35751. characterMakers.push(() => makeCharacter(
  35752. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35753. {
  35754. front: {
  35755. height: math.unit(8 + 6/12, "feet"),
  35756. weight: math.unit(1150, "lb"),
  35757. name: "Front",
  35758. image: {
  35759. source: "./media/characters/kichi/front.svg",
  35760. extra: 1267/1164,
  35761. bottom: 61/1328
  35762. }
  35763. },
  35764. back: {
  35765. height: math.unit(8 + 6/12, "feet"),
  35766. weight: math.unit(1150, "lb"),
  35767. name: "Back",
  35768. image: {
  35769. source: "./media/characters/kichi/back.svg",
  35770. extra: 1273/1166,
  35771. bottom: 33/1306
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(8 + 6/12, "feet"),
  35779. default: true
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(6, "feet"),
  35788. weight: math.unit(210, "lb"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/manetel-greyscale/front.svg",
  35792. extra: 350/312,
  35793. bottom: 8/358
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Micro",
  35800. height: math.unit(2, "inches")
  35801. },
  35802. {
  35803. name: "Normal",
  35804. height: math.unit(6, "feet"),
  35805. default: true
  35806. },
  35807. {
  35808. name: "Minimacro",
  35809. height: math.unit(17, "feet")
  35810. },
  35811. {
  35812. name: "Macro",
  35813. height: math.unit(117, "feet")
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35819. {
  35820. side: {
  35821. height: math.unit(5 + 1/12, "feet"),
  35822. weight: math.unit(418, "lb"),
  35823. name: "Side",
  35824. image: {
  35825. source: "./media/characters/softpurr/side.svg",
  35826. extra: 1993/1945,
  35827. bottom: 134/2127
  35828. }
  35829. },
  35830. front: {
  35831. height: math.unit(5 + 1/12, "feet"),
  35832. weight: math.unit(418, "lb"),
  35833. name: "Front",
  35834. image: {
  35835. source: "./media/characters/softpurr/front.svg",
  35836. extra: 1950/1856,
  35837. bottom: 174/2124
  35838. }
  35839. },
  35840. paw: {
  35841. height: math.unit(1, "feet"),
  35842. name: "Paw",
  35843. image: {
  35844. source: "./media/characters/softpurr/paw.svg"
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(5 + 1/12, "feet"),
  35852. default: true
  35853. },
  35854. ]
  35855. ))
  35856. characterMakers.push(() => makeCharacter(
  35857. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35858. {
  35859. front: {
  35860. height: math.unit(260, "meters"),
  35861. name: "Front",
  35862. image: {
  35863. source: "./media/characters/anahita/front.svg",
  35864. extra: 665/635,
  35865. bottom: 89/754
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Macro",
  35872. height: math.unit(260, "meters"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(4 + 10/12, "feet"),
  35882. weight: math.unit(160, "lb"),
  35883. name: "Front",
  35884. image: {
  35885. source: "./media/characters/chip-mouse/front.svg",
  35886. extra: 3528/3408,
  35887. bottom: 0/3528
  35888. }
  35889. },
  35890. frontNsfw: {
  35891. height: math.unit(4 + 10/12, "feet"),
  35892. weight: math.unit(160, "lb"),
  35893. name: "Front (NSFW)",
  35894. image: {
  35895. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35896. extra: 3528/3408,
  35897. bottom: 0/3528
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(4 + 10/12, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35911. {
  35912. side: {
  35913. height: math.unit(10, "feet"),
  35914. weight: math.unit(14000, "lb"),
  35915. name: "Side",
  35916. image: {
  35917. source: "./media/characters/kremm/side.svg",
  35918. extra: 1390/1053,
  35919. bottom: 90/1480
  35920. }
  35921. },
  35922. gut: {
  35923. height: math.unit(5.8, "feet"),
  35924. name: "Gut",
  35925. image: {
  35926. source: "./media/characters/kremm/gut.svg"
  35927. }
  35928. },
  35929. ass: {
  35930. height: math.unit(6.1, "feet"),
  35931. name: "Ass",
  35932. image: {
  35933. source: "./media/characters/kremm/ass.svg"
  35934. }
  35935. },
  35936. jaws: {
  35937. height: math.unit(2.2, "feet"),
  35938. name: "Jaws",
  35939. image: {
  35940. source: "./media/characters/kremm/jaws.svg"
  35941. }
  35942. },
  35943. dick: {
  35944. height: math.unit(4.26, "feet"),
  35945. name: "Dick",
  35946. image: {
  35947. source: "./media/characters/kremm/dick.svg"
  35948. }
  35949. },
  35950. },
  35951. [
  35952. {
  35953. name: "Normal",
  35954. height: math.unit(10, "feet"),
  35955. default: true
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35961. {
  35962. front: {
  35963. height: math.unit(30, "stories"),
  35964. name: "Front",
  35965. image: {
  35966. source: "./media/characters/kai/front.svg",
  35967. extra: 1892/1718,
  35968. bottom: 162/2054
  35969. }
  35970. },
  35971. },
  35972. [
  35973. {
  35974. name: "Macro",
  35975. height: math.unit(30, "stories"),
  35976. default: true
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35982. {
  35983. front: {
  35984. height: math.unit(6 + 4/12, "feet"),
  35985. weight: math.unit(145, "lb"),
  35986. name: "Front",
  35987. image: {
  35988. source: "./media/characters/sykes/front.svg",
  35989. extra: 1321 / 1187,
  35990. bottom: 66 / 1387
  35991. }
  35992. },
  35993. back: {
  35994. height: math.unit(6 + 4/12, "feet"),
  35995. weight: math.unit(145, "lb"),
  35996. name: "Back",
  35997. image: {
  35998. source: "./media/characters/sykes/back.svg",
  35999. extra: 1326/1181,
  36000. bottom: 31/1357
  36001. }
  36002. },
  36003. traditionalOutfit: {
  36004. height: math.unit(6 + 4/12, "feet"),
  36005. weight: math.unit(145, "lb"),
  36006. name: "Traditional Outfit",
  36007. image: {
  36008. source: "./media/characters/sykes/traditional-outfit.svg",
  36009. extra: 1321 / 1187,
  36010. bottom: 66 / 1387
  36011. }
  36012. },
  36013. adventureOutfit: {
  36014. height: math.unit(6 + 4/12, "feet"),
  36015. weight: math.unit(145, "lb"),
  36016. name: "Adventure Outfit",
  36017. image: {
  36018. source: "./media/characters/sykes/adventure-outfit.svg",
  36019. extra: 1321 / 1187,
  36020. bottom: 66 / 1387
  36021. }
  36022. },
  36023. handLeft: {
  36024. height: math.unit(0.9, "feet"),
  36025. name: "Hand (Left)",
  36026. image: {
  36027. source: "./media/characters/sykes/hand-left.svg"
  36028. }
  36029. },
  36030. handRight: {
  36031. height: math.unit(0.839, "feet"),
  36032. name: "Hand (Right)",
  36033. image: {
  36034. source: "./media/characters/sykes/hand-right.svg"
  36035. }
  36036. },
  36037. leftFoot: {
  36038. height: math.unit(1.2, "feet"),
  36039. name: "Foot (Left)",
  36040. image: {
  36041. source: "./media/characters/sykes/foot-left.svg"
  36042. }
  36043. },
  36044. rightFoot: {
  36045. height: math.unit(1.2, "feet"),
  36046. name: "Foot (Right)",
  36047. image: {
  36048. source: "./media/characters/sykes/foot-right.svg"
  36049. }
  36050. },
  36051. maw: {
  36052. height: math.unit(1.93, "feet"),
  36053. name: "Maw",
  36054. image: {
  36055. source: "./media/characters/sykes/maw.svg"
  36056. }
  36057. },
  36058. teeth: {
  36059. height: math.unit(0.51, "feet"),
  36060. name: "Teeth",
  36061. image: {
  36062. source: "./media/characters/sykes/teeth.svg"
  36063. }
  36064. },
  36065. tongue: {
  36066. height: math.unit(2.13, "feet"),
  36067. name: "Tongue",
  36068. image: {
  36069. source: "./media/characters/sykes/tongue.svg"
  36070. }
  36071. },
  36072. uvula: {
  36073. height: math.unit(0.16, "feet"),
  36074. name: "Uvula",
  36075. image: {
  36076. source: "./media/characters/sykes/uvula.svg"
  36077. }
  36078. },
  36079. collar: {
  36080. height: math.unit(0.287, "feet"),
  36081. name: "Collar",
  36082. image: {
  36083. source: "./media/characters/sykes/collar.svg"
  36084. }
  36085. },
  36086. tail: {
  36087. height: math.unit(3.8, "feet"),
  36088. name: "Tail",
  36089. image: {
  36090. source: "./media/characters/sykes/tail.svg"
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Shrunken",
  36097. height: math.unit(5, "inches")
  36098. },
  36099. {
  36100. name: "Normal",
  36101. height: math.unit(6 + 4 / 12, "feet"),
  36102. default: true
  36103. },
  36104. {
  36105. name: "Big",
  36106. height: math.unit(15, "feet")
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36112. {
  36113. front: {
  36114. height: math.unit(5 + 8/12, "feet"),
  36115. weight: math.unit(190, "lb"),
  36116. name: "Front",
  36117. image: {
  36118. source: "./media/characters/oven-otter/front.svg",
  36119. extra: 1809/1740,
  36120. bottom: 181/1990
  36121. }
  36122. },
  36123. back: {
  36124. height: math.unit(5 + 8/12, "feet"),
  36125. weight: math.unit(190, "lb"),
  36126. name: "Back",
  36127. image: {
  36128. source: "./media/characters/oven-otter/back.svg",
  36129. extra: 1709/1635,
  36130. bottom: 118/1827
  36131. }
  36132. },
  36133. hand: {
  36134. height: math.unit(1.07, "feet"),
  36135. name: "Hand",
  36136. image: {
  36137. source: "./media/characters/oven-otter/hand.svg"
  36138. }
  36139. },
  36140. beans: {
  36141. height: math.unit(1.74, "feet"),
  36142. name: "Beans",
  36143. image: {
  36144. source: "./media/characters/oven-otter/beans.svg"
  36145. }
  36146. },
  36147. },
  36148. [
  36149. {
  36150. name: "Micro",
  36151. height: math.unit(0.5, "inches")
  36152. },
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(5 + 8/12, "feet"),
  36156. default: true
  36157. },
  36158. {
  36159. name: "Macro",
  36160. height: math.unit(250, "feet")
  36161. },
  36162. {
  36163. name: "Really High",
  36164. height: math.unit(420, "feet")
  36165. },
  36166. ]
  36167. ))
  36168. characterMakers.push(() => makeCharacter(
  36169. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36170. {
  36171. front: {
  36172. height: math.unit(5, "meters"),
  36173. weight: math.unit(292000000000000, "kg"),
  36174. name: "Front",
  36175. image: {
  36176. source: "./media/characters/devourer/front.svg",
  36177. extra: 1800/1733,
  36178. bottom: 211/2011
  36179. }
  36180. },
  36181. maw: {
  36182. height: math.unit(1.1, "meter"),
  36183. name: "Maw",
  36184. image: {
  36185. source: "./media/characters/devourer/maw.svg"
  36186. }
  36187. },
  36188. },
  36189. [
  36190. {
  36191. name: "Small",
  36192. height: math.unit(3, "meters")
  36193. },
  36194. {
  36195. name: "Large",
  36196. height: math.unit(5, "meters"),
  36197. default: true
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36203. {
  36204. front: {
  36205. height: math.unit(6, "feet"),
  36206. weight: math.unit(400, "lb"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/ellarby/front.svg",
  36210. extra: 1909/1763,
  36211. bottom: 80/1989
  36212. }
  36213. },
  36214. back: {
  36215. height: math.unit(6, "feet"),
  36216. weight: math.unit(400, "lb"),
  36217. name: "Back",
  36218. image: {
  36219. source: "./media/characters/ellarby/back.svg",
  36220. extra: 1914/1784,
  36221. bottom: 172/2086
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Mischief",
  36228. height: math.unit(18, "inches")
  36229. },
  36230. {
  36231. name: "Trouble",
  36232. height: math.unit(12, "feet")
  36233. },
  36234. {
  36235. name: "Havoc",
  36236. height: math.unit(200, "feet"),
  36237. default: true
  36238. },
  36239. {
  36240. name: "Pandemonium",
  36241. height: math.unit(1, "mile")
  36242. },
  36243. {
  36244. name: "Catastrophe",
  36245. height: math.unit(100, "miles")
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36251. {
  36252. front: {
  36253. height: math.unit(4.7, "meters"),
  36254. weight: math.unit(6500, "kg"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/vex/front.svg",
  36258. extra: 1288/1140,
  36259. bottom: 100/1388
  36260. }
  36261. },
  36262. },
  36263. [
  36264. {
  36265. name: "Normal",
  36266. height: math.unit(4.7, "meters"),
  36267. default: true
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36273. {
  36274. normal: {
  36275. height: math.unit(6, "feet"),
  36276. weight: math.unit(350, "lb"),
  36277. name: "Normal",
  36278. image: {
  36279. source: "./media/characters/teshy/normal.svg",
  36280. extra: 1795/1735,
  36281. bottom: 16/1811
  36282. }
  36283. },
  36284. monsterFront: {
  36285. height: math.unit(12, "feet"),
  36286. weight: math.unit(4700, "lb"),
  36287. name: "Monster (Front)",
  36288. image: {
  36289. source: "./media/characters/teshy/monster-front.svg",
  36290. extra: 2042/2034,
  36291. bottom: 128/2170
  36292. }
  36293. },
  36294. monsterSide: {
  36295. height: math.unit(12, "feet"),
  36296. weight: math.unit(4700, "lb"),
  36297. name: "Monster (Side)",
  36298. image: {
  36299. source: "./media/characters/teshy/monster-side.svg",
  36300. extra: 2067/2056,
  36301. bottom: 70/2137
  36302. }
  36303. },
  36304. monsterBack: {
  36305. height: math.unit(12, "feet"),
  36306. weight: math.unit(4700, "lb"),
  36307. name: "Monster (Back)",
  36308. image: {
  36309. source: "./media/characters/teshy/monster-back.svg",
  36310. extra: 1921/1914,
  36311. bottom: 171/2092
  36312. }
  36313. },
  36314. },
  36315. [
  36316. {
  36317. name: "Normal",
  36318. height: math.unit(6, "feet"),
  36319. default: true
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36325. {
  36326. front: {
  36327. height: math.unit(6, "feet"),
  36328. name: "Front",
  36329. image: {
  36330. source: "./media/characters/ramey/front.svg",
  36331. extra: 790/787,
  36332. bottom: 27/817
  36333. }
  36334. },
  36335. },
  36336. [
  36337. {
  36338. name: "Normal",
  36339. height: math.unit(6, "feet"),
  36340. default: true
  36341. },
  36342. ]
  36343. ))
  36344. characterMakers.push(() => makeCharacter(
  36345. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36346. {
  36347. front: {
  36348. height: math.unit(5 + 5/12, "feet"),
  36349. weight: math.unit(120, "lb"),
  36350. name: "Front",
  36351. image: {
  36352. source: "./media/characters/phirae/front.svg",
  36353. extra: 2491/2436,
  36354. bottom: 38/2529
  36355. }
  36356. },
  36357. },
  36358. [
  36359. {
  36360. name: "Normal",
  36361. height: math.unit(5 + 5/12, "feet"),
  36362. default: true
  36363. },
  36364. ]
  36365. ))
  36366. characterMakers.push(() => makeCharacter(
  36367. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36368. {
  36369. front: {
  36370. height: math.unit(5 + 3/12, "feet"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/stagglas/front.svg",
  36374. extra: 962/882,
  36375. bottom: 53/1015
  36376. }
  36377. },
  36378. feral: {
  36379. height: math.unit(335, "cm"),
  36380. name: "Feral",
  36381. image: {
  36382. source: "./media/characters/stagglas/feral.svg",
  36383. extra: 1732/1090,
  36384. bottom: 48/1780
  36385. }
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "Normal",
  36391. height: math.unit(5 + 3/12, "feet"),
  36392. default: true
  36393. },
  36394. ]
  36395. ))
  36396. characterMakers.push(() => makeCharacter(
  36397. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36398. {
  36399. front: {
  36400. height: math.unit(5 + 4/12, "feet"),
  36401. weight: math.unit(145, "lb"),
  36402. name: "Front",
  36403. image: {
  36404. source: "./media/characters/starra/front.svg",
  36405. extra: 1790/1691,
  36406. bottom: 91/1881
  36407. }
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "Normal",
  36413. height: math.unit(5 + 4/12, "feet"),
  36414. default: true
  36415. },
  36416. ]
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36420. {
  36421. front: {
  36422. height: math.unit(2.2, "meters"),
  36423. name: "Front",
  36424. image: {
  36425. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36426. extra: 1248/972,
  36427. bottom: 38/1286
  36428. }
  36429. },
  36430. },
  36431. [
  36432. {
  36433. name: "Normal",
  36434. height: math.unit(2.2, "meters"),
  36435. default: true
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36441. {
  36442. side: {
  36443. height: math.unit(8 + 2/12, "feet"),
  36444. weight: math.unit(1240, "lb"),
  36445. name: "Side",
  36446. image: {
  36447. source: "./media/characters/mika-valentine/side.svg",
  36448. extra: 2670/2501,
  36449. bottom: 250/2920
  36450. }
  36451. },
  36452. },
  36453. [
  36454. {
  36455. name: "Normal",
  36456. height: math.unit(8 + 2/12, "feet"),
  36457. default: true
  36458. },
  36459. ]
  36460. ))
  36461. characterMakers.push(() => makeCharacter(
  36462. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36463. {
  36464. front: {
  36465. height: math.unit(7 + 2/12, "feet"),
  36466. name: "Front",
  36467. image: {
  36468. source: "./media/characters/xoltol/front.svg",
  36469. extra: 2212/2124,
  36470. bottom: 84/2296
  36471. }
  36472. },
  36473. side: {
  36474. height: math.unit(7 + 2/12, "feet"),
  36475. name: "Side",
  36476. image: {
  36477. source: "./media/characters/xoltol/side.svg",
  36478. extra: 2273/2197,
  36479. bottom: 26/2299
  36480. }
  36481. },
  36482. hand: {
  36483. height: math.unit(2.5, "feet"),
  36484. name: "Hand",
  36485. image: {
  36486. source: "./media/characters/xoltol/hand.svg"
  36487. }
  36488. },
  36489. },
  36490. [
  36491. {
  36492. name: "Small-ish",
  36493. height: math.unit(5 + 11/12, "feet")
  36494. },
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(7 + 2/12, "feet")
  36498. },
  36499. {
  36500. name: "\"Macro\"",
  36501. height: math.unit(14 + 9/12, "feet"),
  36502. default: true
  36503. },
  36504. {
  36505. name: "Alternate Height",
  36506. height: math.unit(20, "feet")
  36507. },
  36508. {
  36509. name: "Actually Macro",
  36510. height: math.unit(100, "feet")
  36511. },
  36512. ]
  36513. ))
  36514. characterMakers.push(() => makeCharacter(
  36515. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36516. {
  36517. front: {
  36518. height: math.unit(5 + 2/12, "feet"),
  36519. name: "Front",
  36520. image: {
  36521. source: "./media/characters/kotetsu-redwood/front.svg",
  36522. extra: 1053/942,
  36523. bottom: 60/1113
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(5 + 2/12, "feet"),
  36531. default: true
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(2.4, "meters"),
  36540. weight: math.unit(125, "kg"),
  36541. name: "Front",
  36542. image: {
  36543. source: "./media/characters/lilith/front.svg",
  36544. extra: 1590/1513,
  36545. bottom: 203/1793
  36546. }
  36547. },
  36548. },
  36549. [
  36550. {
  36551. name: "Humanoid",
  36552. height: math.unit(2.4, "meters")
  36553. },
  36554. {
  36555. name: "Normal",
  36556. height: math.unit(6, "meters"),
  36557. default: true
  36558. },
  36559. {
  36560. name: "Largest",
  36561. height: math.unit(55, "meters")
  36562. },
  36563. ]
  36564. ))
  36565. characterMakers.push(() => makeCharacter(
  36566. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36567. {
  36568. front: {
  36569. height: math.unit(8 + 4/12, "feet"),
  36570. weight: math.unit(535, "lb"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/beh'kah-bolger/front.svg",
  36574. extra: 1660/1603,
  36575. bottom: 37/1697
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Normal",
  36582. height: math.unit(8 + 4/12, "feet"),
  36583. default: true
  36584. },
  36585. {
  36586. name: "Kaiju",
  36587. height: math.unit(250, "feet")
  36588. },
  36589. {
  36590. name: "Still Growing",
  36591. height: math.unit(10, "miles")
  36592. },
  36593. {
  36594. name: "Continental",
  36595. height: math.unit(5000, "miles")
  36596. },
  36597. {
  36598. name: "Final Form",
  36599. height: math.unit(2500000, "miles")
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36605. {
  36606. front: {
  36607. height: math.unit(7 + 2/12, "feet"),
  36608. weight: math.unit(230, "kg"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/tatyana-milewska/front.svg",
  36612. extra: 1199/1150,
  36613. bottom: 86/1285
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(7 + 2/12, "feet"),
  36621. default: true
  36622. },
  36623. {
  36624. name: "Big",
  36625. height: math.unit(12, "feet")
  36626. },
  36627. {
  36628. name: "Minimacro",
  36629. height: math.unit(20, "feet")
  36630. },
  36631. {
  36632. name: "Macro",
  36633. height: math.unit(120, "feet")
  36634. },
  36635. ]
  36636. ))
  36637. characterMakers.push(() => makeCharacter(
  36638. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36639. {
  36640. front: {
  36641. height: math.unit(7 + 8/12, "feet"),
  36642. weight: math.unit(152, "kg"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/helen-arri/front.svg",
  36646. extra: 440/423,
  36647. bottom: 14/454
  36648. }
  36649. },
  36650. back: {
  36651. height: math.unit(7 + 8/12, "feet"),
  36652. weight: math.unit(152, "kg"),
  36653. name: "Back",
  36654. image: {
  36655. source: "./media/characters/helen-arri/back.svg",
  36656. extra: 443/426,
  36657. bottom: 8/451
  36658. }
  36659. },
  36660. },
  36661. [
  36662. {
  36663. name: "Normal",
  36664. height: math.unit(7 + 8/12, "feet"),
  36665. default: true
  36666. },
  36667. {
  36668. name: "Big",
  36669. height: math.unit(14, "feet")
  36670. },
  36671. {
  36672. name: "Minimacro",
  36673. height: math.unit(24, "feet")
  36674. },
  36675. {
  36676. name: "Macro",
  36677. height: math.unit(140, "feet")
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(6, "meters"),
  36686. name: "Front",
  36687. image: {
  36688. source: "./media/characters/ehanu-rehu/front.svg",
  36689. extra: 1800/1800,
  36690. bottom: 59/1859
  36691. }
  36692. },
  36693. },
  36694. [
  36695. {
  36696. name: "Normal",
  36697. height: math.unit(6, "meters"),
  36698. default: true
  36699. },
  36700. ]
  36701. ))
  36702. characterMakers.push(() => makeCharacter(
  36703. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36704. {
  36705. front: {
  36706. height: math.unit(7 + 3/12, "feet"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/renholder/front.svg",
  36710. extra: 3096/2960,
  36711. bottom: 250/3346
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal Bat",
  36718. height: math.unit(7 + 3/12, "feet"),
  36719. default: true
  36720. },
  36721. {
  36722. name: "Slightly Tall Bat",
  36723. height: math.unit(100, "feet")
  36724. },
  36725. {
  36726. name: "Big Bat",
  36727. height: math.unit(1000, "feet")
  36728. },
  36729. {
  36730. name: "City-Sized Bat",
  36731. height: math.unit(200000, "feet")
  36732. },
  36733. {
  36734. name: "Bigger Bat",
  36735. height: math.unit(10000, "miles")
  36736. },
  36737. {
  36738. name: "Solar Sized Bat",
  36739. height: math.unit(100, "AU")
  36740. },
  36741. {
  36742. name: "Galactic Bat",
  36743. height: math.unit(200000, "lightyears")
  36744. },
  36745. {
  36746. name: "Universally Known Bat",
  36747. height: math.unit(1, "universe")
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(6 + 11/12, "feet"),
  36756. weight: math.unit(250, "lb"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/cookiecat/front.svg",
  36760. extra: 893/827,
  36761. bottom: 14/907
  36762. }
  36763. },
  36764. },
  36765. [
  36766. {
  36767. name: "Micro",
  36768. height: math.unit(3, "inches")
  36769. },
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(6 + 11/12, "feet"),
  36773. default: true
  36774. },
  36775. {
  36776. name: "Macro",
  36777. height: math.unit(100, "feet")
  36778. },
  36779. {
  36780. name: "Macro+",
  36781. height: math.unit(404, "feet")
  36782. },
  36783. {
  36784. name: "Megamacro",
  36785. height: math.unit(165, "miles")
  36786. },
  36787. {
  36788. name: "Planetary",
  36789. height: math.unit(4600, "miles")
  36790. },
  36791. ]
  36792. ))
  36793. characterMakers.push(() => makeCharacter(
  36794. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36795. {
  36796. front: {
  36797. height: math.unit(10 + 3/12, "feet"),
  36798. weight: math.unit(1500, "lb"),
  36799. name: "Front",
  36800. image: {
  36801. source: "./media/characters/tux-kusanagi/front.svg",
  36802. extra: 944/840,
  36803. bottom: 39/983
  36804. }
  36805. },
  36806. back: {
  36807. height: math.unit(10 + 3/12, "feet"),
  36808. weight: math.unit(1500, "lb"),
  36809. name: "Back",
  36810. image: {
  36811. source: "./media/characters/tux-kusanagi/back.svg",
  36812. extra: 941/842,
  36813. bottom: 28/969
  36814. }
  36815. },
  36816. rump: {
  36817. height: math.unit(5.25, "feet"),
  36818. name: "Rump",
  36819. image: {
  36820. source: "./media/characters/tux-kusanagi/rump.svg"
  36821. }
  36822. },
  36823. beak: {
  36824. height: math.unit(1.54, "feet"),
  36825. name: "Beak",
  36826. image: {
  36827. source: "./media/characters/tux-kusanagi/beak.svg"
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(10 + 3/12, "feet"),
  36835. default: true
  36836. },
  36837. ]
  36838. ))
  36839. characterMakers.push(() => makeCharacter(
  36840. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36841. {
  36842. front: {
  36843. height: math.unit(58, "feet"),
  36844. weight: math.unit(200, "tons"),
  36845. name: "Front",
  36846. image: {
  36847. source: "./media/characters/uzarmazari/front.svg",
  36848. extra: 1575/1455,
  36849. bottom: 152/1727
  36850. }
  36851. },
  36852. back: {
  36853. height: math.unit(58, "feet"),
  36854. weight: math.unit(200, "tons"),
  36855. name: "Back",
  36856. image: {
  36857. source: "./media/characters/uzarmazari/back.svg",
  36858. extra: 1585/1510,
  36859. bottom: 157/1742
  36860. }
  36861. },
  36862. head: {
  36863. height: math.unit(26, "feet"),
  36864. name: "Head",
  36865. image: {
  36866. source: "./media/characters/uzarmazari/head.svg"
  36867. }
  36868. },
  36869. },
  36870. [
  36871. {
  36872. name: "Normal",
  36873. height: math.unit(58, "feet"),
  36874. default: true
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36880. {
  36881. side: {
  36882. height: math.unit(15, "feet"),
  36883. name: "Side",
  36884. image: {
  36885. source: "./media/characters/akitu/side.svg",
  36886. extra: 1421/1321,
  36887. bottom: 157/1578
  36888. }
  36889. },
  36890. front: {
  36891. height: math.unit(15, "feet"),
  36892. name: "Front",
  36893. image: {
  36894. source: "./media/characters/akitu/front.svg",
  36895. extra: 1435/1326,
  36896. bottom: 232/1667
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Normal",
  36903. height: math.unit(15, "feet"),
  36904. default: true
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36910. {
  36911. front: {
  36912. height: math.unit(10 + 8/12, "feet"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/azalie-croixland/front.svg",
  36916. extra: 1972/1856,
  36917. bottom: 31/2003
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Original Height",
  36924. height: math.unit(5 + 4/12, "feet")
  36925. },
  36926. {
  36927. name: "Normal Height",
  36928. height: math.unit(10 + 8/12, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36935. {
  36936. side: {
  36937. height: math.unit(7 + 1/12, "feet"),
  36938. weight: math.unit(245, "lb"),
  36939. name: "Side",
  36940. image: {
  36941. source: "./media/characters/kavus-kazian/side.svg",
  36942. extra: 349/342,
  36943. bottom: 15/364
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(7 + 1/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36957. {
  36958. normalFront: {
  36959. height: math.unit(5 + 11/12, "feet"),
  36960. name: "Front",
  36961. image: {
  36962. source: "./media/characters/moonlight-rose/normal-front.svg",
  36963. extra: 1980/1825,
  36964. bottom: 18/1998
  36965. },
  36966. form: "normal",
  36967. default: true
  36968. },
  36969. normalBack: {
  36970. height: math.unit(5 + 11/12, "feet"),
  36971. name: "Back",
  36972. image: {
  36973. source: "./media/characters/moonlight-rose/normal-back.svg",
  36974. extra: 2010/1839,
  36975. bottom: 10/2020
  36976. },
  36977. form: "normal"
  36978. },
  36979. demonFront: {
  36980. height: math.unit(1.5, "earths"),
  36981. name: "Front",
  36982. image: {
  36983. source: "./media/characters/moonlight-rose/demon.svg",
  36984. extra: 1400/1294,
  36985. bottom: 45/1445
  36986. },
  36987. form: "demon",
  36988. default: true
  36989. },
  36990. terraFront: {
  36991. height: math.unit(1.5, "earths"),
  36992. name: "Front",
  36993. image: {
  36994. source: "./media/characters/moonlight-rose/terra.svg"
  36995. },
  36996. form: "terra",
  36997. default: true
  36998. },
  36999. jupiterFront: {
  37000. height: math.unit(69911*2, "km"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37004. extra: 1367/1286,
  37005. bottom: 55/1422
  37006. },
  37007. form: "jupiter",
  37008. default: true
  37009. },
  37010. neptuneFront: {
  37011. height: math.unit(24622*2, "feet"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37015. extra: 1851/1712,
  37016. bottom: 0/1851
  37017. },
  37018. form: "neptune",
  37019. default: true
  37020. },
  37021. },
  37022. [
  37023. {
  37024. name: "\"Natural\" Height",
  37025. height: math.unit(5 + 11/12, "feet"),
  37026. form: "normal"
  37027. },
  37028. {
  37029. name: "Smallest comfortable size",
  37030. height: math.unit(40, "meters"),
  37031. form: "normal"
  37032. },
  37033. {
  37034. name: "Common size",
  37035. height: math.unit(50, "km"),
  37036. form: "normal",
  37037. default: true
  37038. },
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(1.5, "earths"),
  37042. form: "demon",
  37043. default: true
  37044. },
  37045. {
  37046. name: "Universal",
  37047. height: math.unit(15, "universes"),
  37048. form: "demon"
  37049. },
  37050. {
  37051. name: "Earth",
  37052. height: math.unit(1.5, "earths"),
  37053. form: "terra",
  37054. default: true
  37055. },
  37056. {
  37057. name: "Super Earth",
  37058. height: math.unit(67.5, "earths"),
  37059. form: "terra"
  37060. },
  37061. {
  37062. name: "Doesn't fit in a solar system...",
  37063. height: math.unit(1, "galaxy"),
  37064. form: "terra"
  37065. },
  37066. {
  37067. name: "Saturn",
  37068. height: math.unit(58232*2, "km"),
  37069. form: "jupiter"
  37070. },
  37071. {
  37072. name: "Jupiter",
  37073. height: math.unit(69911*2, "km"),
  37074. form: "jupiter",
  37075. default: true
  37076. },
  37077. {
  37078. name: "HD 100546 b",
  37079. height: math.unit(482938, "km"),
  37080. form: "jupiter"
  37081. },
  37082. {
  37083. name: "Enceladus",
  37084. height: math.unit(513*2, "km"),
  37085. form: "neptune"
  37086. },
  37087. {
  37088. name: "Europe",
  37089. height: math.unit(1560*2, "km"),
  37090. form: "neptune"
  37091. },
  37092. {
  37093. name: "Neptune",
  37094. height: math.unit(24622*2, "km"),
  37095. form: "neptune",
  37096. default: true
  37097. },
  37098. {
  37099. name: "CoRoT-9b",
  37100. height: math.unit(75067*2, "km"),
  37101. form: "neptune"
  37102. },
  37103. ],
  37104. {
  37105. "normal": {
  37106. name: "Normal",
  37107. default: true
  37108. },
  37109. "demon": {
  37110. name: "Demon"
  37111. },
  37112. "terra": {
  37113. name: "Terra"
  37114. },
  37115. "jupiter": {
  37116. name: "Jupiter"
  37117. },
  37118. "neptune": {
  37119. name: "Neptune"
  37120. }
  37121. }
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37125. {
  37126. front: {
  37127. height: math.unit(16, "feet"),
  37128. weight: math.unit(610, "kg"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/huckle/front.svg",
  37132. extra: 1731/1625,
  37133. bottom: 33/1764
  37134. }
  37135. },
  37136. back: {
  37137. height: math.unit(16, "feet"),
  37138. weight: math.unit(610, "kg"),
  37139. name: "Back",
  37140. image: {
  37141. source: "./media/characters/huckle/back.svg",
  37142. extra: 1738/1651,
  37143. bottom: 37/1775
  37144. }
  37145. },
  37146. laughing: {
  37147. height: math.unit(3.75, "feet"),
  37148. name: "Laughing",
  37149. image: {
  37150. source: "./media/characters/huckle/laughing.svg"
  37151. }
  37152. },
  37153. angry: {
  37154. height: math.unit(4.15, "feet"),
  37155. name: "Angry",
  37156. image: {
  37157. source: "./media/characters/huckle/angry.svg"
  37158. }
  37159. },
  37160. },
  37161. [
  37162. {
  37163. name: "Normal",
  37164. height: math.unit(16, "feet"),
  37165. default: true
  37166. },
  37167. {
  37168. name: "Mini Macro",
  37169. height: math.unit(463, "feet")
  37170. },
  37171. {
  37172. name: "Macro",
  37173. height: math.unit(1680, "meters")
  37174. },
  37175. {
  37176. name: "Mega Macro",
  37177. height: math.unit(175, "km")
  37178. },
  37179. {
  37180. name: "Terra Macro",
  37181. height: math.unit(32, "gigameters")
  37182. },
  37183. {
  37184. name: "Multiverse+",
  37185. height: math.unit(2.56e23, "yottameters")
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37191. {
  37192. front: {
  37193. height: math.unit(6 + 9/12, "feet"),
  37194. weight: math.unit(280, "lb"),
  37195. name: "Front",
  37196. image: {
  37197. source: "./media/characters/candy/front.svg",
  37198. extra: 234/217,
  37199. bottom: 11/245
  37200. }
  37201. },
  37202. },
  37203. [
  37204. {
  37205. name: "Really Small",
  37206. height: math.unit(0.1, "nm")
  37207. },
  37208. {
  37209. name: "Micro",
  37210. height: math.unit(2, "inches")
  37211. },
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(6 + 9/12, "feet"),
  37215. default: true
  37216. },
  37217. {
  37218. name: "Small Macro",
  37219. height: math.unit(69, "feet")
  37220. },
  37221. {
  37222. name: "Macro",
  37223. height: math.unit(160, "feet")
  37224. },
  37225. {
  37226. name: "Megamacro",
  37227. height: math.unit(22000, "miles")
  37228. },
  37229. {
  37230. name: "Gigamacro",
  37231. height: math.unit(50000, "miles")
  37232. },
  37233. ]
  37234. ))
  37235. characterMakers.push(() => makeCharacter(
  37236. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37237. {
  37238. front: {
  37239. height: math.unit(4, "feet"),
  37240. weight: math.unit(90, "lb"),
  37241. name: "Front",
  37242. image: {
  37243. source: "./media/characters/joey-mcdonald/front.svg",
  37244. extra: 1059/852,
  37245. bottom: 33/1092
  37246. }
  37247. },
  37248. back: {
  37249. height: math.unit(4, "feet"),
  37250. weight: math.unit(90, "lb"),
  37251. name: "Back",
  37252. image: {
  37253. source: "./media/characters/joey-mcdonald/back.svg",
  37254. extra: 1077/879,
  37255. bottom: 5/1082
  37256. }
  37257. },
  37258. frontKobold: {
  37259. height: math.unit(4, "feet"),
  37260. weight: math.unit(100, "lb"),
  37261. name: "Front-kobold",
  37262. image: {
  37263. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37264. extra: 1480/1367,
  37265. bottom: 0/1480
  37266. }
  37267. },
  37268. backKobold: {
  37269. height: math.unit(4, "feet"),
  37270. weight: math.unit(100, "lb"),
  37271. name: "Back-kobold",
  37272. image: {
  37273. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37274. extra: 1449/1361,
  37275. bottom: 0/1449
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(4, "feet"),
  37283. default: true
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(12 + 6/12, "feet"),
  37292. name: "Front",
  37293. image: {
  37294. source: "./media/characters/kass-lockheed/front.svg",
  37295. extra: 354/343,
  37296. bottom: 9/363
  37297. }
  37298. },
  37299. back: {
  37300. height: math.unit(12 + 6/12, "feet"),
  37301. name: "Back",
  37302. image: {
  37303. source: "./media/characters/kass-lockheed/back.svg",
  37304. extra: 364/352,
  37305. bottom: 3/367
  37306. }
  37307. },
  37308. dick: {
  37309. height: math.unit(3.12, "feet"),
  37310. name: "Dick",
  37311. image: {
  37312. source: "./media/characters/kass-lockheed/dick.svg"
  37313. }
  37314. },
  37315. head: {
  37316. height: math.unit(2.6, "feet"),
  37317. name: "Head",
  37318. image: {
  37319. source: "./media/characters/kass-lockheed/head.svg"
  37320. }
  37321. },
  37322. bleh: {
  37323. height: math.unit(2.85, "feet"),
  37324. name: "Bleh",
  37325. image: {
  37326. source: "./media/characters/kass-lockheed/bleh.svg"
  37327. }
  37328. },
  37329. smug: {
  37330. height: math.unit(2.85, "feet"),
  37331. name: "Smug",
  37332. image: {
  37333. source: "./media/characters/kass-lockheed/smug.svg"
  37334. }
  37335. },
  37336. },
  37337. [
  37338. {
  37339. name: "Normal",
  37340. height: math.unit(12 + 6/12, "feet"),
  37341. default: true
  37342. },
  37343. ]
  37344. ))
  37345. characterMakers.push(() => makeCharacter(
  37346. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37347. {
  37348. front: {
  37349. height: math.unit(6 + 2/12, "feet"),
  37350. name: "Front",
  37351. image: {
  37352. source: "./media/characters/taylor/front.svg",
  37353. extra: 639/495,
  37354. bottom: 12/651
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(6 + 2/12, "feet"),
  37362. default: true
  37363. },
  37364. {
  37365. name: "Big",
  37366. height: math.unit(15, "feet")
  37367. },
  37368. {
  37369. name: "Lorg",
  37370. height: math.unit(80, "feet")
  37371. },
  37372. {
  37373. name: "Too Lorg",
  37374. height: math.unit(120, "feet")
  37375. },
  37376. ]
  37377. ))
  37378. characterMakers.push(() => makeCharacter(
  37379. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37380. {
  37381. front: {
  37382. height: math.unit(15, "feet"),
  37383. name: "Front",
  37384. image: {
  37385. source: "./media/characters/kaizer/front.svg",
  37386. extra: 1612/1436,
  37387. bottom: 43/1655
  37388. }
  37389. },
  37390. },
  37391. [
  37392. {
  37393. name: "Normal",
  37394. height: math.unit(15, "feet"),
  37395. default: true
  37396. },
  37397. ]
  37398. ))
  37399. characterMakers.push(() => makeCharacter(
  37400. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37401. {
  37402. front: {
  37403. height: math.unit(2, "feet"),
  37404. weight: math.unit(30, "lb"),
  37405. name: "Front",
  37406. image: {
  37407. source: "./media/characters/sandy/front.svg",
  37408. extra: 1439/1307,
  37409. bottom: 194/1633
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(2, "feet"),
  37417. default: true
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37423. {
  37424. front: {
  37425. height: math.unit(3, "feet"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/mellvi/front.svg",
  37429. extra: 1831/1630,
  37430. bottom: 58/1889
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(3, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(5 + 11/12, "feet"),
  37447. weight: math.unit(200, "lb"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/shirou/front.svg",
  37451. extra: 2491/2383,
  37452. bottom: 189/2680
  37453. }
  37454. },
  37455. back: {
  37456. height: math.unit(5 + 11/12, "feet"),
  37457. weight: math.unit(200, "lb"),
  37458. name: "Back",
  37459. image: {
  37460. source: "./media/characters/shirou/back.svg",
  37461. extra: 2554/2450,
  37462. bottom: 76/2630
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Normal",
  37469. height: math.unit(5 + 11/12, "feet"),
  37470. default: true
  37471. },
  37472. ]
  37473. ))
  37474. characterMakers.push(() => makeCharacter(
  37475. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37476. {
  37477. front: {
  37478. height: math.unit(6 + 3/12, "feet"),
  37479. weight: math.unit(177, "lb"),
  37480. name: "Front",
  37481. image: {
  37482. source: "./media/characters/noryu/front.svg",
  37483. extra: 973/885,
  37484. bottom: 10/983
  37485. }
  37486. },
  37487. },
  37488. [
  37489. {
  37490. name: "Normal",
  37491. height: math.unit(6 + 3/12, "feet"),
  37492. default: true
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(5 + 6/12, "feet"),
  37501. weight: math.unit(170, "lb"),
  37502. name: "Front",
  37503. image: {
  37504. source: "./media/characters/mevolas-rubenido/front.svg",
  37505. extra: 2109/1901,
  37506. bottom: 96/2205
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(5 + 6/12, "feet"),
  37514. default: true
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37520. {
  37521. front: {
  37522. height: math.unit(100, "feet"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/dee/front.svg",
  37526. extra: 2153/2036,
  37527. bottom: 59/2212
  37528. }
  37529. },
  37530. back: {
  37531. height: math.unit(100, "feet"),
  37532. name: "Back",
  37533. image: {
  37534. source: "./media/characters/dee/back.svg",
  37535. extra: 2183/2058,
  37536. bottom: 75/2258
  37537. }
  37538. },
  37539. foot: {
  37540. height: math.unit(19.43, "feet"),
  37541. name: "Foot",
  37542. image: {
  37543. source: "./media/characters/dee/foot.svg"
  37544. }
  37545. },
  37546. hoof: {
  37547. height: math.unit(20.6, "feet"),
  37548. name: "Hoof",
  37549. image: {
  37550. source: "./media/characters/dee/hoof.svg"
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Macro",
  37557. height: math.unit(100, "feet"),
  37558. default: true
  37559. },
  37560. ]
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37564. {
  37565. front: {
  37566. height: math.unit(5 + 6/12, "feet"),
  37567. name: "Front",
  37568. image: {
  37569. source: "./media/characters/teh/front.svg",
  37570. extra: 1002/847,
  37571. bottom: 62/1064
  37572. }
  37573. },
  37574. },
  37575. [
  37576. {
  37577. name: "Normal",
  37578. height: math.unit(5 + 6/12, "feet"),
  37579. default: true
  37580. },
  37581. ]
  37582. ))
  37583. characterMakers.push(() => makeCharacter(
  37584. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37585. {
  37586. side: {
  37587. height: math.unit(6 + 1/12, "feet"),
  37588. weight: math.unit(204, "lb"),
  37589. name: "Side",
  37590. image: {
  37591. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37592. extra: 974/775,
  37593. bottom: 169/1143
  37594. }
  37595. },
  37596. sitting: {
  37597. height: math.unit(6 + 2/12, "feet"),
  37598. weight: math.unit(204, "lb"),
  37599. name: "Sitting",
  37600. image: {
  37601. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37602. extra: 1175/964,
  37603. bottom: 378/1553
  37604. }
  37605. },
  37606. },
  37607. [
  37608. {
  37609. name: "Normal",
  37610. height: math.unit(6 + 1/12, "feet"),
  37611. default: true
  37612. },
  37613. ]
  37614. ))
  37615. characterMakers.push(() => makeCharacter(
  37616. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37617. {
  37618. front: {
  37619. height: math.unit(6, "inches"),
  37620. name: "Front",
  37621. image: {
  37622. source: "./media/characters/tululi/front.svg",
  37623. extra: 1997/1876,
  37624. bottom: 20/2017
  37625. }
  37626. },
  37627. },
  37628. [
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(6, "inches"),
  37632. default: true
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(4 + 1/12, "feet"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/star/front.svg",
  37644. extra: 1493/1189,
  37645. bottom: 48/1541
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Normal",
  37652. height: math.unit(4 + 1/12, "feet"),
  37653. default: true
  37654. },
  37655. ]
  37656. ))
  37657. characterMakers.push(() => makeCharacter(
  37658. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37659. {
  37660. front: {
  37661. height: math.unit(6 + 3/12, "feet"),
  37662. name: "Front",
  37663. image: {
  37664. source: "./media/characters/comet/front.svg",
  37665. extra: 1681/1462,
  37666. bottom: 26/1707
  37667. }
  37668. },
  37669. },
  37670. [
  37671. {
  37672. name: "Normal",
  37673. height: math.unit(6 + 3/12, "feet"),
  37674. default: true
  37675. },
  37676. ]
  37677. ))
  37678. characterMakers.push(() => makeCharacter(
  37679. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37680. {
  37681. front: {
  37682. height: math.unit(950, "feet"),
  37683. name: "Front",
  37684. image: {
  37685. source: "./media/characters/vortex/front.svg",
  37686. extra: 1497/1434,
  37687. bottom: 56/1553
  37688. }
  37689. },
  37690. maw: {
  37691. height: math.unit(285, "feet"),
  37692. name: "Maw",
  37693. image: {
  37694. source: "./media/characters/vortex/maw.svg"
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Macro",
  37701. height: math.unit(950, "feet"),
  37702. default: true
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(600, "feet"),
  37711. weight: math.unit(0.02, "grams"),
  37712. name: "Front",
  37713. image: {
  37714. source: "./media/characters/doodle/front.svg",
  37715. extra: 1578/1413,
  37716. bottom: 37/1615
  37717. }
  37718. },
  37719. },
  37720. [
  37721. {
  37722. name: "Macro",
  37723. height: math.unit(600, "feet"),
  37724. default: true
  37725. },
  37726. ]
  37727. ))
  37728. characterMakers.push(() => makeCharacter(
  37729. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37730. {
  37731. front: {
  37732. height: math.unit(6 + 6/12, "feet"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/jai/front.svg",
  37736. extra: 1645/1534,
  37737. bottom: 115/1760
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(6 + 6/12, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(6 + 8/12, "feet"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/pixel/front.svg",
  37757. extra: 1900/1735,
  37758. bottom: 63/1963
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(6 + 8/12, "feet"),
  37766. default: true
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37772. {
  37773. back: {
  37774. height: math.unit(4 + 1/12, "feet"),
  37775. weight: math.unit(75, "lb"),
  37776. name: "Back",
  37777. image: {
  37778. source: "./media/characters/rhett/back.svg",
  37779. extra: 930/878,
  37780. bottom: 25/955
  37781. }
  37782. },
  37783. front: {
  37784. height: math.unit(4 + 1/12, "feet"),
  37785. weight: math.unit(75, "lb"),
  37786. name: "Front",
  37787. image: {
  37788. source: "./media/characters/rhett/front.svg",
  37789. extra: 1682/1586,
  37790. bottom: 92/1774
  37791. }
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "Micro",
  37797. height: math.unit(8, "inches")
  37798. },
  37799. {
  37800. name: "Tiny",
  37801. height: math.unit(2, "feet")
  37802. },
  37803. {
  37804. name: "Normal",
  37805. height: math.unit(4 + 1/12, "feet"),
  37806. default: true
  37807. },
  37808. ]
  37809. ))
  37810. characterMakers.push(() => makeCharacter(
  37811. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37812. {
  37813. front: {
  37814. height: math.unit(3 + 3/12, "feet"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/penny/front.svg",
  37818. extra: 1406/1311,
  37819. bottom: 26/1432
  37820. }
  37821. },
  37822. },
  37823. [
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(3 + 3/12, "feet"),
  37827. default: true
  37828. },
  37829. ]
  37830. ))
  37831. characterMakers.push(() => makeCharacter(
  37832. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37833. {
  37834. front: {
  37835. height: math.unit(4 + 11/12, "feet"),
  37836. name: "Front",
  37837. image: {
  37838. source: "./media/characters/monty/front.svg",
  37839. extra: 1479/1209,
  37840. bottom: 0/1479
  37841. }
  37842. },
  37843. },
  37844. [
  37845. {
  37846. name: "Normal",
  37847. height: math.unit(4 + 11/12, "feet"),
  37848. default: true
  37849. },
  37850. ]
  37851. ))
  37852. characterMakers.push(() => makeCharacter(
  37853. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37854. {
  37855. front: {
  37856. height: math.unit(8 + 4/12, "feet"),
  37857. name: "Front",
  37858. image: {
  37859. source: "./media/characters/sterling/front.svg",
  37860. extra: 1420/1236,
  37861. bottom: 27/1447
  37862. }
  37863. },
  37864. },
  37865. [
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(8 + 4/12, "feet"),
  37869. default: true
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37875. {
  37876. front: {
  37877. height: math.unit(15, "feet"),
  37878. name: "Front",
  37879. image: {
  37880. source: "./media/characters/marble/front.svg",
  37881. extra: 973/937,
  37882. bottom: 32/1005
  37883. }
  37884. },
  37885. },
  37886. [
  37887. {
  37888. name: "Normal",
  37889. height: math.unit(15, "feet"),
  37890. default: true
  37891. },
  37892. ]
  37893. ))
  37894. characterMakers.push(() => makeCharacter(
  37895. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37896. {
  37897. front: {
  37898. height: math.unit(3, "inches"),
  37899. name: "Front",
  37900. image: {
  37901. source: "./media/characters/powder/front.svg",
  37902. extra: 1504/1334,
  37903. bottom: 518/2022
  37904. }
  37905. },
  37906. },
  37907. [
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(3, "inches"),
  37911. default: true
  37912. },
  37913. ]
  37914. ))
  37915. characterMakers.push(() => makeCharacter(
  37916. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37917. {
  37918. front: {
  37919. height: math.unit(4 + 5/12, "feet"),
  37920. name: "Front",
  37921. image: {
  37922. source: "./media/characters/joey-raccoon/front.svg",
  37923. extra: 1273/1197,
  37924. bottom: 0/1273
  37925. }
  37926. },
  37927. },
  37928. [
  37929. {
  37930. name: "Normal",
  37931. height: math.unit(4 + 5/12, "feet"),
  37932. default: true
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(8 + 4/12, "feet"),
  37941. name: "Front",
  37942. image: {
  37943. source: "./media/characters/vick/front.svg",
  37944. extra: 2187/2118,
  37945. bottom: 47/2234
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(8 + 4/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(5 + 5/12, "feet"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/mitsy/front.svg",
  37965. extra: 1842/1695,
  37966. bottom: 0/1842
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(5 + 5/12, "feet"),
  37974. default: true
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(6 + 3/12, "feet"),
  37983. name: "Front",
  37984. image: {
  37985. source: "./media/characters/silvy/front.svg",
  37986. extra: 1995/1836,
  37987. bottom: 225/2220
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(6 + 3/12, "feet"),
  37995. default: true
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38001. {
  38002. front: {
  38003. height: math.unit(3 + 8/12, "feet"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/rodney/front.svg",
  38007. extra: 1956/1747,
  38008. bottom: 31/1987
  38009. }
  38010. },
  38011. frontDressed: {
  38012. height: math.unit(2.9, "feet"),
  38013. name: "Front (Dressed)",
  38014. image: {
  38015. source: "./media/characters/rodney/front-dressed.svg",
  38016. extra: 1382/1241,
  38017. bottom: 385/1767
  38018. }
  38019. },
  38020. },
  38021. [
  38022. {
  38023. name: "Normal",
  38024. height: math.unit(3 + 8/12, "feet"),
  38025. default: true
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38031. {
  38032. front: {
  38033. height: math.unit(5 + 9/12, "feet"),
  38034. weight: math.unit(194, "lbs"),
  38035. name: "Front",
  38036. image: {
  38037. source: "./media/characters/zakail-sudekai/front.svg",
  38038. extra: 2696/2533,
  38039. bottom: 248/2944
  38040. }
  38041. },
  38042. maw: {
  38043. height: math.unit(1.35, "feet"),
  38044. name: "Maw",
  38045. image: {
  38046. source: "./media/characters/zakail-sudekai/maw.svg"
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(5 + 9/12, "feet"),
  38054. default: true
  38055. },
  38056. ]
  38057. ))
  38058. characterMakers.push(() => makeCharacter(
  38059. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38060. {
  38061. front: {
  38062. height: math.unit(8 + 4/12, "feet"),
  38063. weight: math.unit(1200, "lb"),
  38064. name: "Front",
  38065. image: {
  38066. source: "./media/characters/eleanor/front.svg",
  38067. extra: 1226/1192,
  38068. bottom: 52/1278
  38069. }
  38070. },
  38071. back: {
  38072. height: math.unit(8 + 4/12, "feet"),
  38073. weight: math.unit(1200, "lb"),
  38074. name: "Back",
  38075. image: {
  38076. source: "./media/characters/eleanor/back.svg",
  38077. extra: 1242/1184,
  38078. bottom: 60/1302
  38079. }
  38080. },
  38081. head: {
  38082. height: math.unit(2.62, "feet"),
  38083. name: "Head",
  38084. image: {
  38085. source: "./media/characters/eleanor/head.svg"
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(8 + 4/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(8 + 4/12, "feet"),
  38102. weight: math.unit(750, "lb"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/tanya/front.svg",
  38106. extra: 1749/1615,
  38107. bottom: 33/1782
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(8 + 4/12, "feet"),
  38115. default: true
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(5, "feet"),
  38124. weight: math.unit(225, "lb"),
  38125. name: "Front",
  38126. image: {
  38127. source: "./media/characters/cindy/front.svg",
  38128. extra: 1320/1250,
  38129. bottom: 42/1362
  38130. }
  38131. },
  38132. frontDressed: {
  38133. height: math.unit(5, "feet"),
  38134. weight: math.unit(225, "lb"),
  38135. name: "Front (Dressed)",
  38136. image: {
  38137. source: "./media/characters/cindy/front-dressed.svg",
  38138. extra: 1320/1250,
  38139. bottom: 42/1362
  38140. }
  38141. },
  38142. back: {
  38143. height: math.unit(5, "feet"),
  38144. weight: math.unit(225, "lb"),
  38145. name: "Back",
  38146. image: {
  38147. source: "./media/characters/cindy/back.svg",
  38148. extra: 1384/1346,
  38149. bottom: 14/1398
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Normal",
  38156. height: math.unit(5, "feet"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38163. {
  38164. front: {
  38165. height: math.unit(6 + 9/12, "feet"),
  38166. weight: math.unit(440, "lb"),
  38167. name: "Front",
  38168. image: {
  38169. source: "./media/characters/wilbur-owen/front.svg",
  38170. extra: 1575/1448,
  38171. bottom: 72/1647
  38172. }
  38173. },
  38174. back: {
  38175. height: math.unit(6 + 9/12, "feet"),
  38176. weight: math.unit(440, "lb"),
  38177. name: "Back",
  38178. image: {
  38179. source: "./media/characters/wilbur-owen/back.svg",
  38180. extra: 1578/1445,
  38181. bottom: 36/1614
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(6 + 9/12, "feet"),
  38189. default: true
  38190. },
  38191. ]
  38192. ))
  38193. characterMakers.push(() => makeCharacter(
  38194. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38195. {
  38196. front: {
  38197. height: math.unit(6 + 5/12, "feet"),
  38198. weight: math.unit(650, "lb"),
  38199. name: "Front",
  38200. image: {
  38201. source: "./media/characters/keegan/front.svg",
  38202. extra: 2387/2198,
  38203. bottom: 33/2420
  38204. }
  38205. },
  38206. side: {
  38207. height: math.unit(6 + 5/12, "feet"),
  38208. weight: math.unit(650, "lb"),
  38209. name: "Side",
  38210. image: {
  38211. source: "./media/characters/keegan/side.svg",
  38212. extra: 2390/2202,
  38213. bottom: 47/2437
  38214. }
  38215. },
  38216. back: {
  38217. height: math.unit(6 + 5/12, "feet"),
  38218. weight: math.unit(650, "lb"),
  38219. name: "Back",
  38220. image: {
  38221. source: "./media/characters/keegan/back.svg",
  38222. extra: 2418/2268,
  38223. bottom: 15/2433
  38224. }
  38225. },
  38226. frontSfw: {
  38227. height: math.unit(6 + 5/12, "feet"),
  38228. weight: math.unit(650, "lb"),
  38229. name: "Front (SFW)",
  38230. image: {
  38231. source: "./media/characters/keegan/front-sfw.svg",
  38232. extra: 2387/2198,
  38233. bottom: 33/2420
  38234. }
  38235. },
  38236. beans: {
  38237. height: math.unit(1.85, "feet"),
  38238. name: "Beans",
  38239. image: {
  38240. source: "./media/characters/keegan/beans.svg"
  38241. }
  38242. },
  38243. },
  38244. [
  38245. {
  38246. name: "Normal",
  38247. height: math.unit(6 + 5/12, "feet"),
  38248. default: true
  38249. },
  38250. ]
  38251. ))
  38252. characterMakers.push(() => makeCharacter(
  38253. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38254. {
  38255. front: {
  38256. height: math.unit(9, "feet"),
  38257. name: "Front",
  38258. image: {
  38259. source: "./media/characters/colton/front.svg",
  38260. extra: 1589/1326,
  38261. bottom: 139/1728
  38262. }
  38263. },
  38264. },
  38265. [
  38266. {
  38267. name: "Normal",
  38268. height: math.unit(9, "feet"),
  38269. default: true
  38270. },
  38271. ]
  38272. ))
  38273. characterMakers.push(() => makeCharacter(
  38274. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38275. {
  38276. front: {
  38277. height: math.unit(2 + 9/12, "feet"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/bora/front.svg",
  38281. extra: 1265/1250,
  38282. bottom: 24/1289
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Normal",
  38289. height: math.unit(2 + 9/12, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38296. {
  38297. front: {
  38298. height: math.unit(8, "feet"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/myu-myu/front.svg",
  38302. extra: 1949/1857,
  38303. bottom: 90/2039
  38304. }
  38305. },
  38306. },
  38307. [
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(8, "feet"),
  38311. default: true
  38312. },
  38313. {
  38314. name: "Big",
  38315. height: math.unit(15, "feet")
  38316. },
  38317. {
  38318. name: "BIG",
  38319. height: math.unit(25, "feet")
  38320. },
  38321. ]
  38322. ))
  38323. characterMakers.push(() => makeCharacter(
  38324. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38325. {
  38326. side: {
  38327. height: math.unit(7 + 5/12, "feet"),
  38328. weight: math.unit(2800, "lb"),
  38329. name: "Side",
  38330. image: {
  38331. source: "./media/characters/haloren/side.svg",
  38332. extra: 1793/409,
  38333. bottom: 59/1852
  38334. }
  38335. },
  38336. frontPaw: {
  38337. height: math.unit(2.36, "feet"),
  38338. name: "Front paw",
  38339. image: {
  38340. source: "./media/characters/haloren/front-paw.svg"
  38341. }
  38342. },
  38343. hindPaw: {
  38344. height: math.unit(3.18, "feet"),
  38345. name: "Hind paw",
  38346. image: {
  38347. source: "./media/characters/haloren/hind-paw.svg"
  38348. }
  38349. },
  38350. maw: {
  38351. height: math.unit(5.05, "feet"),
  38352. name: "Maw",
  38353. image: {
  38354. source: "./media/characters/haloren/maw.svg"
  38355. }
  38356. },
  38357. dick: {
  38358. height: math.unit(2.90, "feet"),
  38359. name: "Dick",
  38360. image: {
  38361. source: "./media/characters/haloren/dick.svg"
  38362. }
  38363. },
  38364. },
  38365. [
  38366. {
  38367. name: "Normal",
  38368. height: math.unit(7 + 5/12, "feet"),
  38369. default: true
  38370. },
  38371. {
  38372. name: "Enhanced",
  38373. height: math.unit(14 + 3/12, "feet")
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38379. {
  38380. front: {
  38381. height: math.unit(171, "cm"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/kimmy/front.svg",
  38385. extra: 1491/1435,
  38386. bottom: 53/1544
  38387. }
  38388. },
  38389. },
  38390. [
  38391. {
  38392. name: "Small",
  38393. height: math.unit(9, "cm")
  38394. },
  38395. {
  38396. name: "Normal",
  38397. height: math.unit(171, "cm"),
  38398. default: true
  38399. },
  38400. ]
  38401. ))
  38402. characterMakers.push(() => makeCharacter(
  38403. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38404. {
  38405. front: {
  38406. height: math.unit(8, "feet"),
  38407. weight: math.unit(300, "lb"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/galeboomer/front.svg",
  38411. extra: 4651/4415,
  38412. bottom: 162/4813
  38413. }
  38414. },
  38415. back: {
  38416. height: math.unit(8, "feet"),
  38417. weight: math.unit(300, "lb"),
  38418. name: "Back",
  38419. image: {
  38420. source: "./media/characters/galeboomer/back.svg",
  38421. extra: 4544/4314,
  38422. bottom: 16/4560
  38423. }
  38424. },
  38425. frontAlt: {
  38426. height: math.unit(8, "feet"),
  38427. weight: math.unit(300, "lb"),
  38428. name: "Front (Alt)",
  38429. image: {
  38430. source: "./media/characters/galeboomer/front-alt.svg",
  38431. extra: 4458/4228,
  38432. bottom: 68/4526
  38433. }
  38434. },
  38435. maw: {
  38436. height: math.unit(1.2, "feet"),
  38437. name: "Maw",
  38438. image: {
  38439. source: "./media/characters/galeboomer/maw.svg"
  38440. }
  38441. },
  38442. },
  38443. [
  38444. {
  38445. name: "Normal",
  38446. height: math.unit(8, "feet"),
  38447. default: true
  38448. },
  38449. ]
  38450. ))
  38451. characterMakers.push(() => makeCharacter(
  38452. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38453. {
  38454. front: {
  38455. height: math.unit(5 + 9/12, "feet"),
  38456. weight: math.unit(120, "lb"),
  38457. name: "Front",
  38458. image: {
  38459. source: "./media/characters/chyr/front.svg",
  38460. extra: 1323/1254,
  38461. bottom: 63/1386
  38462. }
  38463. },
  38464. back: {
  38465. height: math.unit(5 + 9/12, "feet"),
  38466. weight: math.unit(120, "lb"),
  38467. name: "Back",
  38468. image: {
  38469. source: "./media/characters/chyr/back.svg",
  38470. extra: 1323/1252,
  38471. bottom: 48/1371
  38472. }
  38473. },
  38474. },
  38475. [
  38476. {
  38477. name: "Normal",
  38478. height: math.unit(5 + 9/12, "feet"),
  38479. default: true
  38480. },
  38481. ]
  38482. ))
  38483. characterMakers.push(() => makeCharacter(
  38484. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38485. {
  38486. front: {
  38487. height: math.unit(7, "feet"),
  38488. weight: math.unit(310, "lb"),
  38489. name: "Front",
  38490. image: {
  38491. source: "./media/characters/solarus/front.svg",
  38492. extra: 2415/2021,
  38493. bottom: 103/2518
  38494. }
  38495. },
  38496. back: {
  38497. height: math.unit(7, "feet"),
  38498. weight: math.unit(310, "lb"),
  38499. name: "Back",
  38500. image: {
  38501. source: "./media/characters/solarus/back.svg",
  38502. extra: 2463/2089,
  38503. bottom: 79/2542
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Normal",
  38510. height: math.unit(7, "feet"),
  38511. default: true
  38512. },
  38513. ]
  38514. ))
  38515. characterMakers.push(() => makeCharacter(
  38516. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38517. {
  38518. front: {
  38519. height: math.unit(16, "feet"),
  38520. name: "Front",
  38521. image: {
  38522. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38523. extra: 1844/1780,
  38524. bottom: 58/1902
  38525. }
  38526. },
  38527. winterCoat: {
  38528. height: math.unit(16, "feet"),
  38529. name: "Winter Coat",
  38530. image: {
  38531. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38532. extra: 1807/1775,
  38533. bottom: 69/1876
  38534. }
  38535. },
  38536. },
  38537. [
  38538. {
  38539. name: "Normal",
  38540. height: math.unit(16, "feet"),
  38541. default: true
  38542. },
  38543. {
  38544. name: "Chicago Size",
  38545. height: math.unit(560, "feet")
  38546. },
  38547. ]
  38548. ))
  38549. characterMakers.push(() => makeCharacter(
  38550. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38551. {
  38552. front: {
  38553. height: math.unit(11 + 6/12, "feet"),
  38554. weight: math.unit(1366, "lb"),
  38555. name: "Front",
  38556. image: {
  38557. source: "./media/characters/lexor/front.svg",
  38558. extra: 1560/1481,
  38559. bottom: 211/1771
  38560. }
  38561. },
  38562. back: {
  38563. height: math.unit(11 + 6/12, "feet"),
  38564. weight: math.unit(1366, "lb"),
  38565. name: "Back",
  38566. image: {
  38567. source: "./media/characters/lexor/back.svg",
  38568. extra: 1614/1533,
  38569. bottom: 76/1690
  38570. }
  38571. },
  38572. maw: {
  38573. height: math.unit(3, "feet"),
  38574. name: "Maw",
  38575. image: {
  38576. source: "./media/characters/lexor/maw.svg"
  38577. }
  38578. },
  38579. dick: {
  38580. height: math.unit(2.59, "feet"),
  38581. name: "Dick",
  38582. image: {
  38583. source: "./media/characters/lexor/dick.svg"
  38584. }
  38585. },
  38586. },
  38587. [
  38588. {
  38589. name: "Normal",
  38590. height: math.unit(11 + 6/12, "feet"),
  38591. default: true
  38592. },
  38593. ]
  38594. ))
  38595. characterMakers.push(() => makeCharacter(
  38596. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38597. {
  38598. front: {
  38599. height: math.unit(5 + 8/12, "feet"),
  38600. name: "Front",
  38601. image: {
  38602. source: "./media/characters/magnum/front.svg",
  38603. extra: 942/855,
  38604. bottom: 26/968
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(5 + 8/12, "feet"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(18 + 4/12, "feet"),
  38621. weight: math.unit(1500, "kg"),
  38622. name: "Front",
  38623. image: {
  38624. source: "./media/characters/solas-sharpsman/front.svg",
  38625. extra: 1698/1589,
  38626. bottom: 0/1698
  38627. }
  38628. },
  38629. },
  38630. [
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(18 + 4/12, "feet"),
  38634. default: true
  38635. },
  38636. ]
  38637. ))
  38638. characterMakers.push(() => makeCharacter(
  38639. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38640. {
  38641. front: {
  38642. height: math.unit(5 + 5/12, "feet"),
  38643. weight: math.unit(180, "lb"),
  38644. name: "Front",
  38645. image: {
  38646. source: "./media/characters/october/front.svg",
  38647. extra: 1800/1650,
  38648. bottom: 0/1800
  38649. }
  38650. },
  38651. frontNsfw: {
  38652. height: math.unit(5 + 5/12, "feet"),
  38653. weight: math.unit(180, "lb"),
  38654. name: "Front (NSFW)",
  38655. image: {
  38656. source: "./media/characters/october/front-nsfw.svg",
  38657. extra: 1392/1307,
  38658. bottom: 42/1434
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(5 + 5/12, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(8 + 6/12, "feet"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/essynkardi/front.svg",
  38678. extra: 1914/1846,
  38679. bottom: 22/1936
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(8 + 6/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(6 + 6/12, "feet"),
  38696. weight: math.unit(7, "lb"),
  38697. name: "Front",
  38698. image: {
  38699. source: "./media/characters/icky/front.svg",
  38700. extra: 813/782,
  38701. bottom: 66/879
  38702. }
  38703. },
  38704. back: {
  38705. height: math.unit(6 + 6/12, "feet"),
  38706. weight: math.unit(7, "lb"),
  38707. name: "Back",
  38708. image: {
  38709. source: "./media/characters/icky/back.svg",
  38710. extra: 754/735,
  38711. bottom: 56/810
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Normal",
  38718. height: math.unit(6 + 6/12, "feet"),
  38719. default: true
  38720. },
  38721. ]
  38722. ))
  38723. characterMakers.push(() => makeCharacter(
  38724. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38725. {
  38726. front: {
  38727. height: math.unit(15, "feet"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/rojas/front.svg",
  38731. extra: 1462/1408,
  38732. bottom: 95/1557
  38733. }
  38734. },
  38735. back: {
  38736. height: math.unit(15, "feet"),
  38737. name: "Back",
  38738. image: {
  38739. source: "./media/characters/rojas/back.svg",
  38740. extra: 1023/954,
  38741. bottom: 28/1051
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Normal",
  38748. height: math.unit(15, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38755. {
  38756. frontHuman: {
  38757. height: math.unit(5 + 7/12, "feet"),
  38758. name: "Front (Human)",
  38759. image: {
  38760. source: "./media/characters/alek-dryagan/front-human.svg",
  38761. extra: 1687/1667,
  38762. bottom: 69/1756
  38763. }
  38764. },
  38765. backHuman: {
  38766. height: math.unit(5 + 7/12, "feet"),
  38767. name: "Back (Human)",
  38768. image: {
  38769. source: "./media/characters/alek-dryagan/back-human.svg",
  38770. extra: 1670/1649,
  38771. bottom: 65/1735
  38772. }
  38773. },
  38774. frontDemi: {
  38775. height: math.unit(65, "feet"),
  38776. name: "Front (Demi)",
  38777. image: {
  38778. source: "./media/characters/alek-dryagan/front-demi.svg",
  38779. extra: 1669/1642,
  38780. bottom: 49/1718
  38781. }
  38782. },
  38783. backDemi: {
  38784. height: math.unit(65, "feet"),
  38785. name: "Back (Demi)",
  38786. image: {
  38787. source: "./media/characters/alek-dryagan/back-demi.svg",
  38788. extra: 1658/1637,
  38789. bottom: 40/1698
  38790. }
  38791. },
  38792. mawHuman: {
  38793. height: math.unit(0.3, "feet"),
  38794. name: "Maw (Human)",
  38795. image: {
  38796. source: "./media/characters/alek-dryagan/maw-human.svg"
  38797. }
  38798. },
  38799. mawDemi: {
  38800. height: math.unit(3.8, "feet"),
  38801. name: "Maw (Demi)",
  38802. image: {
  38803. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38804. }
  38805. },
  38806. },
  38807. [
  38808. {
  38809. name: "Normal",
  38810. height: math.unit(5 + 7/12, "feet"),
  38811. default: true
  38812. },
  38813. ]
  38814. ))
  38815. characterMakers.push(() => makeCharacter(
  38816. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38817. {
  38818. frontHuman: {
  38819. height: math.unit(5 + 2/12, "feet"),
  38820. name: "Front (Human)",
  38821. image: {
  38822. source: "./media/characters/gen/front-human.svg",
  38823. extra: 1627/1538,
  38824. bottom: 71/1698
  38825. }
  38826. },
  38827. backHuman: {
  38828. height: math.unit(5 + 2/12, "feet"),
  38829. name: "Back (Human)",
  38830. image: {
  38831. source: "./media/characters/gen/back-human.svg",
  38832. extra: 1638/1548,
  38833. bottom: 69/1707
  38834. }
  38835. },
  38836. frontDemi: {
  38837. height: math.unit(5 + 2/12, "feet"),
  38838. name: "Front (Demi)",
  38839. image: {
  38840. source: "./media/characters/gen/front-demi.svg",
  38841. extra: 1627/1538,
  38842. bottom: 71/1698
  38843. }
  38844. },
  38845. backDemi: {
  38846. height: math.unit(5 + 2/12, "feet"),
  38847. name: "Back (Demi)",
  38848. image: {
  38849. source: "./media/characters/gen/back-demi.svg",
  38850. extra: 1638/1548,
  38851. bottom: 69/1707
  38852. }
  38853. },
  38854. },
  38855. [
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(5 + 2/12, "feet"),
  38859. default: true
  38860. },
  38861. ]
  38862. ))
  38863. characterMakers.push(() => makeCharacter(
  38864. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38865. {
  38866. frontImp: {
  38867. height: math.unit(1 + 11/12, "feet"),
  38868. name: "Front (Imp)",
  38869. image: {
  38870. source: "./media/characters/max-kobold/front-imp.svg",
  38871. extra: 1238/1134,
  38872. bottom: 81/1319
  38873. }
  38874. },
  38875. backImp: {
  38876. height: math.unit(1 + 11/12, "feet"),
  38877. name: "Back (Imp)",
  38878. image: {
  38879. source: "./media/characters/max-kobold/back-imp.svg",
  38880. extra: 1334/1175,
  38881. bottom: 34/1368
  38882. }
  38883. },
  38884. frontDemi: {
  38885. height: math.unit(5 + 9/12, "feet"),
  38886. name: "Front (Demi)",
  38887. image: {
  38888. source: "./media/characters/max-kobold/front-demi.svg",
  38889. extra: 1715/1685,
  38890. bottom: 54/1769
  38891. }
  38892. },
  38893. backDemi: {
  38894. height: math.unit(5 + 9/12, "feet"),
  38895. name: "Back (Demi)",
  38896. image: {
  38897. source: "./media/characters/max-kobold/back-demi.svg",
  38898. extra: 1752/1729,
  38899. bottom: 41/1793
  38900. }
  38901. },
  38902. handImp: {
  38903. height: math.unit(0.45, "feet"),
  38904. name: "Hand (Imp)",
  38905. image: {
  38906. source: "./media/characters/max-kobold/hand.svg"
  38907. }
  38908. },
  38909. pawImp: {
  38910. height: math.unit(0.46, "feet"),
  38911. name: "Paw (Imp)",
  38912. image: {
  38913. source: "./media/characters/max-kobold/paw.svg"
  38914. }
  38915. },
  38916. handDemi: {
  38917. height: math.unit(0.80, "feet"),
  38918. name: "Hand (Demi)",
  38919. image: {
  38920. source: "./media/characters/max-kobold/hand.svg"
  38921. }
  38922. },
  38923. pawDemi: {
  38924. height: math.unit(1.1, "feet"),
  38925. name: "Paw (Demi)",
  38926. image: {
  38927. source: "./media/characters/max-kobold/paw.svg"
  38928. }
  38929. },
  38930. headImp: {
  38931. height: math.unit(1.33, "feet"),
  38932. name: "Head (Imp)",
  38933. image: {
  38934. source: "./media/characters/max-kobold/head-imp.svg"
  38935. }
  38936. },
  38937. mawImp: {
  38938. height: math.unit(0.75, "feet"),
  38939. name: "Maw (Imp)",
  38940. image: {
  38941. source: "./media/characters/max-kobold/maw-imp.svg"
  38942. }
  38943. },
  38944. mawDemi: {
  38945. height: math.unit(0.42, "feet"),
  38946. name: "Maw (Demi)",
  38947. image: {
  38948. source: "./media/characters/max-kobold/maw-demi.svg"
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(1 + 11/12, "feet"),
  38956. default: true
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38962. {
  38963. front: {
  38964. height: math.unit(7 + 5/12, "feet"),
  38965. name: "Front",
  38966. image: {
  38967. source: "./media/characters/carbon/front.svg",
  38968. extra: 1754/1689,
  38969. bottom: 65/1819
  38970. }
  38971. },
  38972. back: {
  38973. height: math.unit(7 + 5/12, "feet"),
  38974. name: "Back",
  38975. image: {
  38976. source: "./media/characters/carbon/back.svg",
  38977. extra: 1762/1695,
  38978. bottom: 24/1786
  38979. }
  38980. },
  38981. frontGigantamax: {
  38982. height: math.unit(150, "feet"),
  38983. name: "Front (Gigantamax)",
  38984. image: {
  38985. source: "./media/characters/carbon/front-gigantamax.svg",
  38986. extra: 1826/1669,
  38987. bottom: 59/1885
  38988. }
  38989. },
  38990. backGigantamax: {
  38991. height: math.unit(150, "feet"),
  38992. name: "Back (Gigantamax)",
  38993. image: {
  38994. source: "./media/characters/carbon/back-gigantamax.svg",
  38995. extra: 1796/1653,
  38996. bottom: 53/1849
  38997. }
  38998. },
  38999. maw: {
  39000. height: math.unit(0.48, "feet"),
  39001. name: "Maw",
  39002. image: {
  39003. source: "./media/characters/carbon/maw.svg"
  39004. }
  39005. },
  39006. mawGigantamax: {
  39007. height: math.unit(7.5, "feet"),
  39008. name: "Maw (Gigantamax)",
  39009. image: {
  39010. source: "./media/characters/carbon/maw-gigantamax.svg"
  39011. }
  39012. },
  39013. },
  39014. [
  39015. {
  39016. name: "Normal",
  39017. height: math.unit(7 + 5/12, "feet"),
  39018. default: true
  39019. },
  39020. ]
  39021. ))
  39022. characterMakers.push(() => makeCharacter(
  39023. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39024. {
  39025. front: {
  39026. height: math.unit(6, "feet"),
  39027. name: "Front",
  39028. image: {
  39029. source: "./media/characters/maverick/front.svg",
  39030. extra: 1672/1661,
  39031. bottom: 85/1757
  39032. }
  39033. },
  39034. back: {
  39035. height: math.unit(6, "feet"),
  39036. name: "Back",
  39037. image: {
  39038. source: "./media/characters/maverick/back.svg",
  39039. extra: 1642/1631,
  39040. bottom: 38/1680
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(6, "feet"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(15, "feet"),
  39057. weight: math.unit(615, "lb"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/grockle/front.svg",
  39061. extra: 1535/1427,
  39062. bottom: 56/1591
  39063. }
  39064. },
  39065. },
  39066. [
  39067. {
  39068. name: "Normal",
  39069. height: math.unit(15, "feet"),
  39070. default: true
  39071. },
  39072. {
  39073. name: "Large",
  39074. height: math.unit(150, "feet")
  39075. },
  39076. {
  39077. name: "Macro",
  39078. height: math.unit(1876, "feet")
  39079. },
  39080. {
  39081. name: "Mega Macro",
  39082. height: math.unit(121940, "feet")
  39083. },
  39084. {
  39085. name: "Giga Macro",
  39086. height: math.unit(750, "km")
  39087. },
  39088. {
  39089. name: "Tera Macro",
  39090. height: math.unit(750000, "km")
  39091. },
  39092. {
  39093. name: "Galactic",
  39094. height: math.unit(1.4e5, "km")
  39095. },
  39096. {
  39097. name: "Godlike",
  39098. height: math.unit(9.8e280, "galaxies")
  39099. },
  39100. ]
  39101. ))
  39102. characterMakers.push(() => makeCharacter(
  39103. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39104. {
  39105. front: {
  39106. height: math.unit(11, "meters"),
  39107. weight: math.unit(20, "tonnes"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/alistair/front.svg",
  39111. extra: 1265/1009,
  39112. bottom: 93/1358
  39113. }
  39114. },
  39115. },
  39116. [
  39117. {
  39118. name: "Normal",
  39119. height: math.unit(11, "meters"),
  39120. default: true
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39126. {
  39127. front: {
  39128. height: math.unit(5 + 8/12, "feet"),
  39129. name: "Front",
  39130. image: {
  39131. source: "./media/characters/haruka/front.svg",
  39132. extra: 2012/1952,
  39133. bottom: 0/2012
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(5 + 8/12, "feet"),
  39141. default: true
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39147. {
  39148. back: {
  39149. height: math.unit(9, "feet"),
  39150. name: "Back",
  39151. image: {
  39152. source: "./media/characters/vivian-sylveon/back.svg",
  39153. extra: 1853/1714,
  39154. bottom: 0/1853
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(9, "feet"),
  39162. default: true
  39163. },
  39164. {
  39165. name: "Macro",
  39166. height: math.unit(500, "feet")
  39167. },
  39168. {
  39169. name: "Megamacro",
  39170. height: math.unit(600, "miles")
  39171. },
  39172. {
  39173. name: "Gigamacro",
  39174. height: math.unit(30000, "miles")
  39175. },
  39176. ]
  39177. ))
  39178. characterMakers.push(() => makeCharacter(
  39179. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39180. {
  39181. anthro: {
  39182. height: math.unit(5 + 10/12, "feet"),
  39183. weight: math.unit(100, "lb"),
  39184. name: "Anthro",
  39185. image: {
  39186. source: "./media/characters/daiki/anthro.svg",
  39187. extra: 1115/1027,
  39188. bottom: 69/1184
  39189. }
  39190. },
  39191. feral: {
  39192. height: math.unit(200, "feet"),
  39193. name: "Feral",
  39194. image: {
  39195. source: "./media/characters/daiki/feral.svg",
  39196. extra: 1256/313,
  39197. bottom: 39/1295
  39198. }
  39199. },
  39200. feralHead: {
  39201. height: math.unit(171, "feet"),
  39202. name: "Feral Head",
  39203. image: {
  39204. source: "./media/characters/daiki/feral-head.svg"
  39205. }
  39206. },
  39207. manaDragon: {
  39208. height: math.unit(170, "meters"),
  39209. name: "Mana-dragon",
  39210. image: {
  39211. source: "./media/characters/daiki/mana-dragon.svg",
  39212. extra: 763/420,
  39213. bottom: 97/860
  39214. }
  39215. },
  39216. },
  39217. [
  39218. {
  39219. name: "Normal",
  39220. height: math.unit(5 + 10/12, "feet"),
  39221. default: true
  39222. },
  39223. ]
  39224. ))
  39225. characterMakers.push(() => makeCharacter(
  39226. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39227. {
  39228. fullyEquippedFront: {
  39229. height: math.unit(3 + 1/12, "feet"),
  39230. weight: math.unit(24, "lb"),
  39231. name: "Fully Equipped (Front)",
  39232. image: {
  39233. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39234. extra: 687/605,
  39235. bottom: 18/705
  39236. }
  39237. },
  39238. fullyEquippedBack: {
  39239. height: math.unit(3 + 1/12, "feet"),
  39240. weight: math.unit(24, "lb"),
  39241. name: "Fully Equipped (Back)",
  39242. image: {
  39243. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39244. extra: 689/590,
  39245. bottom: 18/707
  39246. }
  39247. },
  39248. dailyWear: {
  39249. height: math.unit(3 + 1/12, "feet"),
  39250. weight: math.unit(24, "lb"),
  39251. name: "Daily Wear",
  39252. image: {
  39253. source: "./media/characters/tea-spot/daily-wear.svg",
  39254. extra: 701/620,
  39255. bottom: 21/722
  39256. }
  39257. },
  39258. maidWork: {
  39259. height: math.unit(3 + 1/12, "feet"),
  39260. weight: math.unit(24, "lb"),
  39261. name: "Maid Work",
  39262. image: {
  39263. source: "./media/characters/tea-spot/maid-work.svg",
  39264. extra: 693/609,
  39265. bottom: 15/708
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(3 + 1/12, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(175, "cm"),
  39282. weight: math.unit(75, "kg"),
  39283. name: "Front",
  39284. image: {
  39285. source: "./media/characters/chee/front.svg",
  39286. extra: 1796/1740,
  39287. bottom: 40/1836
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Micro-Micro",
  39294. height: math.unit(1, "nm")
  39295. },
  39296. {
  39297. name: "Micro-erst",
  39298. height: math.unit(1, "micrometer")
  39299. },
  39300. {
  39301. name: "Micro-er",
  39302. height: math.unit(1, "cm")
  39303. },
  39304. {
  39305. name: "Normal",
  39306. height: math.unit(175, "cm"),
  39307. default: true
  39308. },
  39309. {
  39310. name: "Macro",
  39311. height: math.unit(100, "m")
  39312. },
  39313. {
  39314. name: "Macro-er",
  39315. height: math.unit(1, "km")
  39316. },
  39317. {
  39318. name: "Macro-erst",
  39319. height: math.unit(10, "km")
  39320. },
  39321. {
  39322. name: "Macro-Macro",
  39323. height: math.unit(100, "km")
  39324. },
  39325. ]
  39326. ))
  39327. characterMakers.push(() => makeCharacter(
  39328. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39329. {
  39330. front: {
  39331. height: math.unit(11 + 9/12, "feet"),
  39332. weight: math.unit(935, "lb"),
  39333. name: "Front",
  39334. image: {
  39335. source: "./media/characters/kingsley/front.svg",
  39336. extra: 1803/1674,
  39337. bottom: 127/1930
  39338. }
  39339. },
  39340. frontNude: {
  39341. height: math.unit(11 + 9/12, "feet"),
  39342. weight: math.unit(935, "lb"),
  39343. name: "Front (Nude)",
  39344. image: {
  39345. source: "./media/characters/kingsley/front-nude.svg",
  39346. extra: 1803/1674,
  39347. bottom: 127/1930
  39348. }
  39349. },
  39350. },
  39351. [
  39352. {
  39353. name: "Normal",
  39354. height: math.unit(11 + 9/12, "feet"),
  39355. default: true
  39356. },
  39357. ]
  39358. ))
  39359. characterMakers.push(() => makeCharacter(
  39360. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39361. {
  39362. side: {
  39363. height: math.unit(9, "feet"),
  39364. name: "Side",
  39365. image: {
  39366. source: "./media/characters/rymel/side.svg",
  39367. extra: 792/469,
  39368. bottom: 121/913
  39369. }
  39370. },
  39371. maw: {
  39372. height: math.unit(2.4, "meters"),
  39373. name: "Maw",
  39374. image: {
  39375. source: "./media/characters/rymel/maw.svg"
  39376. }
  39377. },
  39378. },
  39379. [
  39380. {
  39381. name: "House Drake",
  39382. height: math.unit(2, "feet")
  39383. },
  39384. {
  39385. name: "Reduced",
  39386. height: math.unit(4.5, "feet")
  39387. },
  39388. {
  39389. name: "Normal",
  39390. height: math.unit(9, "feet"),
  39391. default: true
  39392. },
  39393. ]
  39394. ))
  39395. characterMakers.push(() => makeCharacter(
  39396. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39397. {
  39398. front: {
  39399. height: math.unit(1.74, "meters"),
  39400. weight: math.unit(55, "kg"),
  39401. name: "Front",
  39402. image: {
  39403. source: "./media/characters/rubus/front.svg",
  39404. extra: 1894/1742,
  39405. bottom: 44/1938
  39406. }
  39407. },
  39408. },
  39409. [
  39410. {
  39411. name: "Normal",
  39412. height: math.unit(1.74, "meters"),
  39413. default: true
  39414. },
  39415. ]
  39416. ))
  39417. characterMakers.push(() => makeCharacter(
  39418. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39419. {
  39420. front: {
  39421. height: math.unit(5 + 2/12, "feet"),
  39422. weight: math.unit(112, "lb"),
  39423. name: "Front",
  39424. image: {
  39425. source: "./media/characters/cassie-kingston/front.svg",
  39426. extra: 1438/1390,
  39427. bottom: 47/1485
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(5 + 2/12, "feet"),
  39435. default: true
  39436. },
  39437. {
  39438. name: "Macro",
  39439. height: math.unit(128, "feet")
  39440. },
  39441. {
  39442. name: "Megamacro",
  39443. height: math.unit(2.56, "miles")
  39444. },
  39445. ]
  39446. ))
  39447. characterMakers.push(() => makeCharacter(
  39448. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39449. {
  39450. front: {
  39451. height: math.unit(7, "feet"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/fox/front.svg",
  39455. extra: 1798/1703,
  39456. bottom: 55/1853
  39457. }
  39458. },
  39459. back: {
  39460. height: math.unit(7, "feet"),
  39461. name: "Back",
  39462. image: {
  39463. source: "./media/characters/fox/back.svg",
  39464. extra: 1748/1649,
  39465. bottom: 32/1780
  39466. }
  39467. },
  39468. head: {
  39469. height: math.unit(1.95, "feet"),
  39470. name: "Head",
  39471. image: {
  39472. source: "./media/characters/fox/head.svg"
  39473. }
  39474. },
  39475. dick: {
  39476. height: math.unit(1.33, "feet"),
  39477. name: "Dick",
  39478. image: {
  39479. source: "./media/characters/fox/dick.svg"
  39480. }
  39481. },
  39482. foot: {
  39483. height: math.unit(1, "feet"),
  39484. name: "Foot",
  39485. image: {
  39486. source: "./media/characters/fox/foot.svg"
  39487. }
  39488. },
  39489. paw: {
  39490. height: math.unit(0.92, "feet"),
  39491. name: "Paw",
  39492. image: {
  39493. source: "./media/characters/fox/paw.svg"
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Small",
  39500. height: math.unit(3, "inches")
  39501. },
  39502. {
  39503. name: "\"Realistic\"",
  39504. height: math.unit(7, "feet")
  39505. },
  39506. {
  39507. name: "Normal",
  39508. height: math.unit(150, "feet"),
  39509. default: true
  39510. },
  39511. {
  39512. name: "BIG",
  39513. height: math.unit(1200, "feet")
  39514. },
  39515. {
  39516. name: "👀",
  39517. height: math.unit(5, "miles")
  39518. },
  39519. {
  39520. name: "👀👀👀",
  39521. height: math.unit(64, "miles")
  39522. },
  39523. ]
  39524. ))
  39525. characterMakers.push(() => makeCharacter(
  39526. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39527. {
  39528. front: {
  39529. height: math.unit(625, "feet"),
  39530. name: "Front",
  39531. image: {
  39532. source: "./media/characters/asonja-rossa/front.svg",
  39533. extra: 1833/1686,
  39534. bottom: 24/1857
  39535. }
  39536. },
  39537. back: {
  39538. height: math.unit(625, "feet"),
  39539. name: "Back",
  39540. image: {
  39541. source: "./media/characters/asonja-rossa/back.svg",
  39542. extra: 1852/1753,
  39543. bottom: 26/1878
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Macro",
  39550. height: math.unit(625, "feet"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39557. {
  39558. side: {
  39559. height: math.unit(8, "feet"),
  39560. name: "Side",
  39561. image: {
  39562. source: "./media/characters/rezukii/side.svg",
  39563. extra: 979/542,
  39564. bottom: 87/1066
  39565. }
  39566. },
  39567. sitting: {
  39568. height: math.unit(14.6, "feet"),
  39569. name: "Sitting",
  39570. image: {
  39571. source: "./media/characters/rezukii/sitting.svg",
  39572. extra: 1023/813,
  39573. bottom: 45/1068
  39574. }
  39575. },
  39576. },
  39577. [
  39578. {
  39579. name: "Tiny",
  39580. height: math.unit(2, "feet")
  39581. },
  39582. {
  39583. name: "Smol",
  39584. height: math.unit(4, "feet")
  39585. },
  39586. {
  39587. name: "Normal",
  39588. height: math.unit(8, "feet"),
  39589. default: true
  39590. },
  39591. {
  39592. name: "Big",
  39593. height: math.unit(12, "feet")
  39594. },
  39595. {
  39596. name: "Macro",
  39597. height: math.unit(30, "feet")
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39603. {
  39604. front: {
  39605. height: math.unit(14, "feet"),
  39606. weight: math.unit(9.5, "tonnes"),
  39607. name: "Front",
  39608. image: {
  39609. source: "./media/characters/dawnheart/front.svg",
  39610. extra: 2792/2675,
  39611. bottom: 64/2856
  39612. }
  39613. },
  39614. },
  39615. [
  39616. {
  39617. name: "Normal",
  39618. height: math.unit(14, "feet"),
  39619. default: true
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39625. {
  39626. front: {
  39627. height: math.unit(1.7, "m"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/gladi/front.svg",
  39631. extra: 1460/1362,
  39632. bottom: 19/1479
  39633. }
  39634. },
  39635. back: {
  39636. height: math.unit(1.7, "m"),
  39637. name: "Back",
  39638. image: {
  39639. source: "./media/characters/gladi/back.svg",
  39640. extra: 1459/1357,
  39641. bottom: 12/1471
  39642. }
  39643. },
  39644. feral: {
  39645. height: math.unit(2.05, "m"),
  39646. name: "Feral",
  39647. image: {
  39648. source: "./media/characters/gladi/feral.svg",
  39649. extra: 821/557,
  39650. bottom: 91/912
  39651. }
  39652. },
  39653. },
  39654. [
  39655. {
  39656. name: "Shortest",
  39657. height: math.unit(70, "cm")
  39658. },
  39659. {
  39660. name: "Normal",
  39661. height: math.unit(1.7, "m")
  39662. },
  39663. {
  39664. name: "Macro",
  39665. height: math.unit(10, "m"),
  39666. default: true
  39667. },
  39668. {
  39669. name: "Tallest",
  39670. height: math.unit(200, "m")
  39671. },
  39672. ]
  39673. ))
  39674. characterMakers.push(() => makeCharacter(
  39675. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39676. {
  39677. front: {
  39678. height: math.unit(5 + 7/12, "feet"),
  39679. weight: math.unit(2, "tons"),
  39680. name: "Front",
  39681. image: {
  39682. source: "./media/characters/erdno/front.svg",
  39683. extra: 1234/1129,
  39684. bottom: 35/1269
  39685. }
  39686. },
  39687. angled: {
  39688. height: math.unit(5 + 7/12, "feet"),
  39689. weight: math.unit(2, "tons"),
  39690. name: "Angled",
  39691. image: {
  39692. source: "./media/characters/erdno/angled.svg",
  39693. extra: 1185/1139,
  39694. bottom: 36/1221
  39695. }
  39696. },
  39697. side: {
  39698. height: math.unit(5 + 7/12, "feet"),
  39699. weight: math.unit(2, "tons"),
  39700. name: "Side",
  39701. image: {
  39702. source: "./media/characters/erdno/side.svg",
  39703. extra: 1191/1144,
  39704. bottom: 40/1231
  39705. }
  39706. },
  39707. back: {
  39708. height: math.unit(5 + 7/12, "feet"),
  39709. weight: math.unit(2, "tons"),
  39710. name: "Back",
  39711. image: {
  39712. source: "./media/characters/erdno/back.svg",
  39713. extra: 1202/1146,
  39714. bottom: 17/1219
  39715. }
  39716. },
  39717. frontNsfw: {
  39718. height: math.unit(5 + 7/12, "feet"),
  39719. weight: math.unit(2, "tons"),
  39720. name: "Front (NSFW)",
  39721. image: {
  39722. source: "./media/characters/erdno/front-nsfw.svg",
  39723. extra: 1234/1129,
  39724. bottom: 35/1269
  39725. }
  39726. },
  39727. angledNsfw: {
  39728. height: math.unit(5 + 7/12, "feet"),
  39729. weight: math.unit(2, "tons"),
  39730. name: "Angled (NSFW)",
  39731. image: {
  39732. source: "./media/characters/erdno/angled-nsfw.svg",
  39733. extra: 1185/1139,
  39734. bottom: 36/1221
  39735. }
  39736. },
  39737. sideNsfw: {
  39738. height: math.unit(5 + 7/12, "feet"),
  39739. weight: math.unit(2, "tons"),
  39740. name: "Side (NSFW)",
  39741. image: {
  39742. source: "./media/characters/erdno/side-nsfw.svg",
  39743. extra: 1191/1144,
  39744. bottom: 40/1231
  39745. }
  39746. },
  39747. backNsfw: {
  39748. height: math.unit(5 + 7/12, "feet"),
  39749. weight: math.unit(2, "tons"),
  39750. name: "Back (NSFW)",
  39751. image: {
  39752. source: "./media/characters/erdno/back-nsfw.svg",
  39753. extra: 1202/1146,
  39754. bottom: 17/1219
  39755. }
  39756. },
  39757. frontHyper: {
  39758. height: math.unit(5 + 7/12, "feet"),
  39759. weight: math.unit(2, "tons"),
  39760. name: "Front (Hyper)",
  39761. image: {
  39762. source: "./media/characters/erdno/front-hyper.svg",
  39763. extra: 1298/1136,
  39764. bottom: 35/1333
  39765. }
  39766. },
  39767. },
  39768. [
  39769. {
  39770. name: "Normal",
  39771. height: math.unit(5 + 7/12, "feet"),
  39772. default: true
  39773. },
  39774. {
  39775. name: "Big",
  39776. height: math.unit(5.7, "meters")
  39777. },
  39778. {
  39779. name: "Macro",
  39780. height: math.unit(5.7, "kilometers")
  39781. },
  39782. {
  39783. name: "Megamacro",
  39784. height: math.unit(5.7, "earths")
  39785. },
  39786. ]
  39787. ))
  39788. characterMakers.push(() => makeCharacter(
  39789. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39790. {
  39791. front: {
  39792. height: math.unit(5 + 10/12, "feet"),
  39793. weight: math.unit(150, "lb"),
  39794. name: "Front",
  39795. image: {
  39796. source: "./media/characters/jamie/front.svg",
  39797. extra: 1908/1768,
  39798. bottom: 19/1927
  39799. }
  39800. },
  39801. },
  39802. [
  39803. {
  39804. name: "Minimum",
  39805. height: math.unit(2, "cm")
  39806. },
  39807. {
  39808. name: "Micro",
  39809. height: math.unit(3, "inches")
  39810. },
  39811. {
  39812. name: "Normal",
  39813. height: math.unit(5 + 10/12, "feet"),
  39814. default: true
  39815. },
  39816. {
  39817. name: "Macro",
  39818. height: math.unit(150, "feet")
  39819. },
  39820. {
  39821. name: "Megamacro",
  39822. height: math.unit(10000, "m")
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(2, "meters"),
  39831. weight: math.unit(100, "kg"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/shiron/front.svg",
  39835. extra: 2103/1985,
  39836. bottom: 98/2201
  39837. }
  39838. },
  39839. back: {
  39840. height: math.unit(2, "meters"),
  39841. weight: math.unit(100, "kg"),
  39842. name: "Back",
  39843. image: {
  39844. source: "./media/characters/shiron/back.svg",
  39845. extra: 2110/2015,
  39846. bottom: 89/2199
  39847. }
  39848. },
  39849. hand: {
  39850. height: math.unit(0.96, "feet"),
  39851. name: "Hand",
  39852. image: {
  39853. source: "./media/characters/shiron/hand.svg"
  39854. }
  39855. },
  39856. foot: {
  39857. height: math.unit(1.464, "feet"),
  39858. name: "Foot",
  39859. image: {
  39860. source: "./media/characters/shiron/foot.svg"
  39861. }
  39862. },
  39863. },
  39864. [
  39865. {
  39866. name: "Normal",
  39867. height: math.unit(2, "meters")
  39868. },
  39869. {
  39870. name: "Macro",
  39871. height: math.unit(500, "meters"),
  39872. default: true
  39873. },
  39874. {
  39875. name: "Megamacro",
  39876. height: math.unit(20, "km")
  39877. },
  39878. ]
  39879. ))
  39880. characterMakers.push(() => makeCharacter(
  39881. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39882. {
  39883. front: {
  39884. height: math.unit(6, "feet"),
  39885. name: "Front",
  39886. image: {
  39887. source: "./media/characters/sam/front.svg",
  39888. extra: 849/826,
  39889. bottom: 19/868
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Normal",
  39896. height: math.unit(6, "feet"),
  39897. default: true
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(8 + 4/12, "feet"),
  39906. weight: math.unit(122, "kg"),
  39907. name: "Front",
  39908. image: {
  39909. source: "./media/characters/namori-kurogawa/front.svg",
  39910. extra: 1894/1576,
  39911. bottom: 34/1928
  39912. }
  39913. },
  39914. },
  39915. [
  39916. {
  39917. name: "Normal",
  39918. height: math.unit(8 + 4/12, "feet"),
  39919. default: true
  39920. },
  39921. ]
  39922. ))
  39923. characterMakers.push(() => makeCharacter(
  39924. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39925. {
  39926. front: {
  39927. height: math.unit(9, "feet"),
  39928. weight: math.unit(621, "lb"),
  39929. name: "Front",
  39930. image: {
  39931. source: "./media/characters/unmru/front.svg",
  39932. extra: 1853/1747,
  39933. bottom: 73/1926
  39934. }
  39935. },
  39936. side: {
  39937. height: math.unit(9, "feet"),
  39938. weight: math.unit(621, "lb"),
  39939. name: "Side",
  39940. image: {
  39941. source: "./media/characters/unmru/side.svg",
  39942. extra: 1781/1671,
  39943. bottom: 127/1908
  39944. }
  39945. },
  39946. back: {
  39947. height: math.unit(9, "feet"),
  39948. weight: math.unit(621, "lb"),
  39949. name: "Back",
  39950. image: {
  39951. source: "./media/characters/unmru/back.svg",
  39952. extra: 1894/1765,
  39953. bottom: 75/1969
  39954. }
  39955. },
  39956. dick: {
  39957. height: math.unit(3, "feet"),
  39958. weight: math.unit(35, "lb"),
  39959. name: "Dick",
  39960. image: {
  39961. source: "./media/characters/unmru/dick.svg"
  39962. }
  39963. },
  39964. },
  39965. [
  39966. {
  39967. name: "Normal",
  39968. height: math.unit(9, "feet")
  39969. },
  39970. {
  39971. name: "Natural",
  39972. height: math.unit(27, "feet"),
  39973. default: true
  39974. },
  39975. {
  39976. name: "Giant",
  39977. height: math.unit(90, "feet")
  39978. },
  39979. {
  39980. name: "Kaiju",
  39981. height: math.unit(270, "feet")
  39982. },
  39983. {
  39984. name: "Macro",
  39985. height: math.unit(900, "feet")
  39986. },
  39987. {
  39988. name: "Macro+",
  39989. height: math.unit(2700, "feet")
  39990. },
  39991. {
  39992. name: "Megamacro",
  39993. height: math.unit(9000, "feet")
  39994. },
  39995. {
  39996. name: "City-Crushing",
  39997. height: math.unit(27000, "feet")
  39998. },
  39999. {
  40000. name: "Mountain-Mashing",
  40001. height: math.unit(90000, "feet")
  40002. },
  40003. {
  40004. name: "Earth-Eclipsing",
  40005. height: math.unit(2.7e8, "feet")
  40006. },
  40007. {
  40008. name: "Sol-Swallowing",
  40009. height: math.unit(9e10, "feet")
  40010. },
  40011. {
  40012. name: "Majoris-Munching",
  40013. height: math.unit(2.7e13, "feet")
  40014. },
  40015. ]
  40016. ))
  40017. characterMakers.push(() => makeCharacter(
  40018. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40019. {
  40020. front: {
  40021. height: math.unit(1, "inch"),
  40022. name: "Front",
  40023. image: {
  40024. source: "./media/characters/squeaks-mouse/front.svg",
  40025. extra: 352/308,
  40026. bottom: 25/377
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Micro",
  40033. height: math.unit(1, "inch"),
  40034. default: true
  40035. },
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40040. {
  40041. side: {
  40042. height: math.unit(35, "feet"),
  40043. name: "Side",
  40044. image: {
  40045. source: "./media/characters/sayko/side.svg",
  40046. extra: 1697/1021,
  40047. bottom: 82/1779
  40048. }
  40049. },
  40050. head: {
  40051. height: math.unit(16, "feet"),
  40052. name: "Head",
  40053. image: {
  40054. source: "./media/characters/sayko/head.svg"
  40055. }
  40056. },
  40057. forepaw: {
  40058. height: math.unit(7.85, "feet"),
  40059. name: "Forepaw",
  40060. image: {
  40061. source: "./media/characters/sayko/forepaw.svg"
  40062. }
  40063. },
  40064. hindpaw: {
  40065. height: math.unit(8.8, "feet"),
  40066. name: "Hindpaw",
  40067. image: {
  40068. source: "./media/characters/sayko/hindpaw.svg"
  40069. }
  40070. },
  40071. },
  40072. [
  40073. {
  40074. name: "Normal",
  40075. height: math.unit(35, "feet"),
  40076. default: true
  40077. },
  40078. {
  40079. name: "Colossus",
  40080. height: math.unit(100, "meters")
  40081. },
  40082. {
  40083. name: "\"Small\" Deity",
  40084. height: math.unit(1, "km")
  40085. },
  40086. {
  40087. name: "\"Large\" Deity",
  40088. height: math.unit(15, "km")
  40089. },
  40090. ]
  40091. ))
  40092. characterMakers.push(() => makeCharacter(
  40093. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40094. {
  40095. front: {
  40096. height: math.unit(6, "feet"),
  40097. weight: math.unit(250, "lb"),
  40098. name: "Front",
  40099. image: {
  40100. source: "./media/characters/mukiro/front.svg",
  40101. extra: 1368/1310,
  40102. bottom: 34/1402
  40103. }
  40104. },
  40105. },
  40106. [
  40107. {
  40108. name: "Normal",
  40109. height: math.unit(6, "feet"),
  40110. default: true
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(12 + 4/12, "feet"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40122. extra: 1346/1311,
  40123. bottom: 65/1411
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Base",
  40130. height: math.unit(12 + 4/12, "feet"),
  40131. default: true
  40132. },
  40133. {
  40134. name: "Macro",
  40135. height: math.unit(150, "feet")
  40136. },
  40137. {
  40138. name: "Mega",
  40139. height: math.unit(2, "miles")
  40140. },
  40141. {
  40142. name: "Demi God",
  40143. height: math.unit(4, "AU")
  40144. },
  40145. {
  40146. name: "God Size",
  40147. height: math.unit(1, "universe")
  40148. },
  40149. ]
  40150. ))
  40151. characterMakers.push(() => makeCharacter(
  40152. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40153. {
  40154. front: {
  40155. height: math.unit(3 + 3/12, "feet"),
  40156. weight: math.unit(88, "lb"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/trey/front.svg",
  40160. extra: 1815/1509,
  40161. bottom: 60/1875
  40162. }
  40163. },
  40164. },
  40165. [
  40166. {
  40167. name: "Normal",
  40168. height: math.unit(3 + 3/12, "feet"),
  40169. default: true
  40170. },
  40171. ]
  40172. ))
  40173. characterMakers.push(() => makeCharacter(
  40174. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40175. {
  40176. front: {
  40177. height: math.unit(4, "meters"),
  40178. name: "Front",
  40179. image: {
  40180. source: "./media/characters/adelonda/front.svg",
  40181. extra: 1077/982,
  40182. bottom: 39/1116
  40183. }
  40184. },
  40185. back: {
  40186. height: math.unit(4, "meters"),
  40187. name: "Back",
  40188. image: {
  40189. source: "./media/characters/adelonda/back.svg",
  40190. extra: 1105/1003,
  40191. bottom: 25/1130
  40192. }
  40193. },
  40194. feral: {
  40195. height: math.unit(40/1.5, "meters"),
  40196. name: "Feral",
  40197. image: {
  40198. source: "./media/characters/adelonda/feral.svg",
  40199. extra: 597/271,
  40200. bottom: 387/984
  40201. }
  40202. },
  40203. },
  40204. [
  40205. {
  40206. name: "Normal",
  40207. height: math.unit(4, "meters"),
  40208. default: true
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40214. {
  40215. front: {
  40216. height: math.unit(8 + 4/12, "feet"),
  40217. weight: math.unit(670, "lb"),
  40218. name: "Front",
  40219. image: {
  40220. source: "./media/characters/acadiel/front.svg",
  40221. extra: 1901/1595,
  40222. bottom: 142/2043
  40223. }
  40224. },
  40225. },
  40226. [
  40227. {
  40228. name: "Normal",
  40229. height: math.unit(8 + 4/12, "feet"),
  40230. default: true
  40231. },
  40232. {
  40233. name: "Macro",
  40234. height: math.unit(200, "feet")
  40235. },
  40236. ]
  40237. ))
  40238. characterMakers.push(() => makeCharacter(
  40239. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40240. {
  40241. front: {
  40242. height: math.unit(6 + 2/12, "feet"),
  40243. weight: math.unit(185, "lb"),
  40244. name: "Front",
  40245. image: {
  40246. source: "./media/characters/kayne-ein/front.svg",
  40247. extra: 1780/1560,
  40248. bottom: 81/1861
  40249. }
  40250. },
  40251. },
  40252. [
  40253. {
  40254. name: "Normal",
  40255. height: math.unit(6 + 2/12, "feet"),
  40256. default: true
  40257. },
  40258. {
  40259. name: "Transformation Stage",
  40260. height: math.unit(15, "feet")
  40261. },
  40262. {
  40263. name: "Macro",
  40264. height: math.unit(150, "feet")
  40265. },
  40266. {
  40267. name: "Earth's Shadow",
  40268. height: math.unit(6200, "miles")
  40269. },
  40270. {
  40271. name: "Universal Demon",
  40272. height: math.unit(28e9, "parsecs")
  40273. },
  40274. {
  40275. name: "Multiverse God",
  40276. height: math.unit(3, "multiverses")
  40277. },
  40278. ]
  40279. ))
  40280. characterMakers.push(() => makeCharacter(
  40281. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40282. {
  40283. front: {
  40284. height: math.unit(5 + 5/12, "feet"),
  40285. name: "Front",
  40286. image: {
  40287. source: "./media/characters/fawn/front.svg",
  40288. extra: 1873/1731,
  40289. bottom: 95/1968
  40290. }
  40291. },
  40292. back: {
  40293. height: math.unit(5 + 5/12, "feet"),
  40294. name: "Back",
  40295. image: {
  40296. source: "./media/characters/fawn/back.svg",
  40297. extra: 1813/1700,
  40298. bottom: 14/1827
  40299. }
  40300. },
  40301. hoof: {
  40302. height: math.unit(1.45, "feet"),
  40303. name: "Hoof",
  40304. image: {
  40305. source: "./media/characters/fawn/hoof.svg"
  40306. }
  40307. },
  40308. },
  40309. [
  40310. {
  40311. name: "Normal",
  40312. height: math.unit(5 + 5/12, "feet"),
  40313. default: true
  40314. },
  40315. ]
  40316. ))
  40317. characterMakers.push(() => makeCharacter(
  40318. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40319. {
  40320. front: {
  40321. height: math.unit(2 + 5/12, "feet"),
  40322. name: "Front",
  40323. image: {
  40324. source: "./media/characters/orion/front.svg",
  40325. extra: 1366/1304,
  40326. bottom: 43/1409
  40327. }
  40328. },
  40329. paw: {
  40330. height: math.unit(0.52, "feet"),
  40331. name: "Paw",
  40332. image: {
  40333. source: "./media/characters/orion/paw.svg"
  40334. }
  40335. },
  40336. },
  40337. [
  40338. {
  40339. name: "Normal",
  40340. height: math.unit(2 + 5/12, "feet"),
  40341. default: true
  40342. },
  40343. ]
  40344. ))
  40345. characterMakers.push(() => makeCharacter(
  40346. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40347. {
  40348. front: {
  40349. height: math.unit(5 + 10/12, "feet"),
  40350. name: "Front",
  40351. image: {
  40352. source: "./media/characters/vera/front.svg",
  40353. extra: 1680/1575,
  40354. bottom: 49/1729
  40355. }
  40356. },
  40357. back: {
  40358. height: math.unit(5 + 10/12, "feet"),
  40359. name: "Back",
  40360. image: {
  40361. source: "./media/characters/vera/back.svg",
  40362. extra: 1700/1588,
  40363. bottom: 18/1718
  40364. }
  40365. },
  40366. arcanine: {
  40367. height: math.unit(6 + 8/12, "feet"),
  40368. name: "Arcanine",
  40369. image: {
  40370. source: "./media/characters/vera/arcanine.svg",
  40371. extra: 1590/1511,
  40372. bottom: 71/1661
  40373. }
  40374. },
  40375. maw: {
  40376. height: math.unit(0.82, "feet"),
  40377. name: "Maw",
  40378. image: {
  40379. source: "./media/characters/vera/maw.svg"
  40380. }
  40381. },
  40382. mawArcanine: {
  40383. height: math.unit(0.97, "feet"),
  40384. name: "Maw (Arcanine)",
  40385. image: {
  40386. source: "./media/characters/vera/maw-arcanine.svg"
  40387. }
  40388. },
  40389. paw: {
  40390. height: math.unit(0.75, "feet"),
  40391. name: "Paw",
  40392. image: {
  40393. source: "./media/characters/vera/paw.svg"
  40394. }
  40395. },
  40396. pawprint: {
  40397. height: math.unit(0.52, "feet"),
  40398. name: "Pawprint",
  40399. image: {
  40400. source: "./media/characters/vera/pawprint.svg"
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Normal",
  40407. height: math.unit(5 + 10/12, "feet"),
  40408. default: true
  40409. },
  40410. {
  40411. name: "Macro",
  40412. height: math.unit(75, "feet")
  40413. },
  40414. ]
  40415. ))
  40416. characterMakers.push(() => makeCharacter(
  40417. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40418. {
  40419. front: {
  40420. height: math.unit(4, "feet"),
  40421. weight: math.unit(40, "lb"),
  40422. name: "Front",
  40423. image: {
  40424. source: "./media/characters/orvan-rabbit/front.svg",
  40425. extra: 1896/1642,
  40426. bottom: 29/1925
  40427. }
  40428. },
  40429. },
  40430. [
  40431. {
  40432. name: "Normal",
  40433. height: math.unit(4, "feet"),
  40434. default: true
  40435. },
  40436. ]
  40437. ))
  40438. characterMakers.push(() => makeCharacter(
  40439. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40440. {
  40441. front: {
  40442. height: math.unit(6, "feet"),
  40443. weight: math.unit(168, "lb"),
  40444. name: "Front",
  40445. image: {
  40446. source: "./media/characters/lisa/front.svg",
  40447. extra: 2065/1867,
  40448. bottom: 46/2111
  40449. }
  40450. },
  40451. back: {
  40452. height: math.unit(6, "feet"),
  40453. weight: math.unit(168, "lb"),
  40454. name: "Back",
  40455. image: {
  40456. source: "./media/characters/lisa/back.svg",
  40457. extra: 1982/1838,
  40458. bottom: 29/2011
  40459. }
  40460. },
  40461. maw: {
  40462. height: math.unit(0.81, "feet"),
  40463. name: "Maw",
  40464. image: {
  40465. source: "./media/characters/lisa/maw.svg"
  40466. }
  40467. },
  40468. paw: {
  40469. height: math.unit(0.9, "feet"),
  40470. name: "Paw",
  40471. image: {
  40472. source: "./media/characters/lisa/paw.svg"
  40473. }
  40474. },
  40475. caribousune: {
  40476. height: math.unit(7 + 2/12, "feet"),
  40477. weight: math.unit(268, "lb"),
  40478. name: "Caribousune",
  40479. image: {
  40480. source: "./media/characters/lisa/caribousune.svg",
  40481. extra: 1843/1633,
  40482. bottom: 29/1872
  40483. }
  40484. },
  40485. frontCaribousune: {
  40486. height: math.unit(7 + 2/12, "feet"),
  40487. weight: math.unit(268, "lb"),
  40488. name: "Front (Caribousune)",
  40489. image: {
  40490. source: "./media/characters/lisa/front-caribousune.svg",
  40491. extra: 1818/1638,
  40492. bottom: 52/1870
  40493. }
  40494. },
  40495. sideCaribousune: {
  40496. height: math.unit(7 + 2/12, "feet"),
  40497. weight: math.unit(268, "lb"),
  40498. name: "Side (Caribousune)",
  40499. image: {
  40500. source: "./media/characters/lisa/side-caribousune.svg",
  40501. extra: 1851/1635,
  40502. bottom: 16/1867
  40503. }
  40504. },
  40505. backCaribousune: {
  40506. height: math.unit(7 + 2/12, "feet"),
  40507. weight: math.unit(268, "lb"),
  40508. name: "Back (Caribousune)",
  40509. image: {
  40510. source: "./media/characters/lisa/back-caribousune.svg",
  40511. extra: 1801/1604,
  40512. bottom: 44/1845
  40513. }
  40514. },
  40515. caribou: {
  40516. height: math.unit(7 + 2/12, "feet"),
  40517. weight: math.unit(268, "lb"),
  40518. name: "Caribou",
  40519. image: {
  40520. source: "./media/characters/lisa/caribou.svg",
  40521. extra: 1843/1633,
  40522. bottom: 29/1872
  40523. }
  40524. },
  40525. frontCaribou: {
  40526. height: math.unit(7 + 2/12, "feet"),
  40527. weight: math.unit(268, "lb"),
  40528. name: "Front (Caribou)",
  40529. image: {
  40530. source: "./media/characters/lisa/front-caribou.svg",
  40531. extra: 1818/1638,
  40532. bottom: 52/1870
  40533. }
  40534. },
  40535. sideCaribou: {
  40536. height: math.unit(7 + 2/12, "feet"),
  40537. weight: math.unit(268, "lb"),
  40538. name: "Side (Caribou)",
  40539. image: {
  40540. source: "./media/characters/lisa/side-caribou.svg",
  40541. extra: 1851/1635,
  40542. bottom: 16/1867
  40543. }
  40544. },
  40545. backCaribou: {
  40546. height: math.unit(7 + 2/12, "feet"),
  40547. weight: math.unit(268, "lb"),
  40548. name: "Back (Caribou)",
  40549. image: {
  40550. source: "./media/characters/lisa/back-caribou.svg",
  40551. extra: 1801/1604,
  40552. bottom: 44/1845
  40553. }
  40554. },
  40555. mawCaribou: {
  40556. height: math.unit(1.45, "feet"),
  40557. name: "Maw (Caribou)",
  40558. image: {
  40559. source: "./media/characters/lisa/maw-caribou.svg"
  40560. }
  40561. },
  40562. mawCaribousune: {
  40563. height: math.unit(1.45, "feet"),
  40564. name: "Maw (Caribousune)",
  40565. image: {
  40566. source: "./media/characters/lisa/maw-caribousune.svg"
  40567. }
  40568. },
  40569. pawCaribousune: {
  40570. height: math.unit(1.61, "feet"),
  40571. name: "Paw (Caribou)",
  40572. image: {
  40573. source: "./media/characters/lisa/paw-caribousune.svg"
  40574. }
  40575. },
  40576. },
  40577. [
  40578. {
  40579. name: "Normal",
  40580. height: math.unit(6, "feet")
  40581. },
  40582. {
  40583. name: "God Size",
  40584. height: math.unit(72, "feet"),
  40585. default: true
  40586. },
  40587. {
  40588. name: "Towering",
  40589. height: math.unit(288, "feet")
  40590. },
  40591. {
  40592. name: "City Size",
  40593. height: math.unit(48384, "feet")
  40594. },
  40595. {
  40596. name: "Continental",
  40597. height: math.unit(4200, "miles")
  40598. },
  40599. {
  40600. name: "Planet Eater",
  40601. height: math.unit(42, "earths")
  40602. },
  40603. {
  40604. name: "Star Swallower",
  40605. height: math.unit(42, "solarradii")
  40606. },
  40607. {
  40608. name: "System Swallower",
  40609. height: math.unit(84000, "AU")
  40610. },
  40611. {
  40612. name: "Galaxy Gobbler",
  40613. height: math.unit(42, "galaxies")
  40614. },
  40615. {
  40616. name: "Universe Devourer",
  40617. height: math.unit(42, "universes")
  40618. },
  40619. {
  40620. name: "Multiverse Muncher",
  40621. height: math.unit(42, "multiverses")
  40622. },
  40623. ]
  40624. ))
  40625. characterMakers.push(() => makeCharacter(
  40626. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40627. {
  40628. front: {
  40629. height: math.unit(36, "feet"),
  40630. name: "Front",
  40631. image: {
  40632. source: "./media/characters/shadow-rat/front.svg",
  40633. extra: 1845/1758,
  40634. bottom: 83/1928
  40635. }
  40636. },
  40637. },
  40638. [
  40639. {
  40640. name: "Macro",
  40641. height: math.unit(36, "feet"),
  40642. default: true
  40643. },
  40644. ]
  40645. ))
  40646. characterMakers.push(() => makeCharacter(
  40647. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40648. {
  40649. side: {
  40650. height: math.unit(8, "feet"),
  40651. weight: math.unit(2630, "lb"),
  40652. name: "Side",
  40653. image: {
  40654. source: "./media/characters/torallia/side.svg",
  40655. extra: 2164/2021,
  40656. bottom: 371/2535
  40657. }
  40658. },
  40659. },
  40660. [
  40661. {
  40662. name: "Mortal Interaction",
  40663. height: math.unit(8, "feet")
  40664. },
  40665. {
  40666. name: "Natural",
  40667. height: math.unit(24, "feet"),
  40668. default: true
  40669. },
  40670. {
  40671. name: "Giant",
  40672. height: math.unit(80, "feet")
  40673. },
  40674. {
  40675. name: "Kaiju",
  40676. height: math.unit(240, "feet")
  40677. },
  40678. {
  40679. name: "Macro",
  40680. height: math.unit(800, "feet")
  40681. },
  40682. {
  40683. name: "Macro+",
  40684. height: math.unit(2400, "feet")
  40685. },
  40686. {
  40687. name: "Macro++",
  40688. height: math.unit(8000, "feet")
  40689. },
  40690. {
  40691. name: "City-Crushing",
  40692. height: math.unit(24000, "feet")
  40693. },
  40694. {
  40695. name: "Mountain-Mashing",
  40696. height: math.unit(80000, "feet")
  40697. },
  40698. {
  40699. name: "District Demolisher",
  40700. height: math.unit(240000, "feet")
  40701. },
  40702. {
  40703. name: "Tri-County Terror",
  40704. height: math.unit(800000, "feet")
  40705. },
  40706. {
  40707. name: "State Smasher",
  40708. height: math.unit(2.4e6, "feet")
  40709. },
  40710. {
  40711. name: "Nation Nemesis",
  40712. height: math.unit(8e6, "feet")
  40713. },
  40714. {
  40715. name: "Continent Cracker",
  40716. height: math.unit(2.4e7, "feet")
  40717. },
  40718. {
  40719. name: "Planet-Pillaging",
  40720. height: math.unit(8e7, "feet")
  40721. },
  40722. {
  40723. name: "Earth-Eclipsing",
  40724. height: math.unit(2.4e8, "feet")
  40725. },
  40726. {
  40727. name: "Jovian-Jostling",
  40728. height: math.unit(8e8, "feet")
  40729. },
  40730. {
  40731. name: "Gas Giant Gulper",
  40732. height: math.unit(2.4e9, "feet")
  40733. },
  40734. {
  40735. name: "Astral Annihilator",
  40736. height: math.unit(8e9, "feet")
  40737. },
  40738. {
  40739. name: "Celestial Conqueror",
  40740. height: math.unit(2.4e10, "feet")
  40741. },
  40742. {
  40743. name: "Sol-Swallowing",
  40744. height: math.unit(8e10, "feet")
  40745. },
  40746. {
  40747. name: "Hunter of the Heavens",
  40748. height: math.unit(2.4e13, "feet")
  40749. },
  40750. ]
  40751. ))
  40752. characterMakers.push(() => makeCharacter(
  40753. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40754. {
  40755. front: {
  40756. height: math.unit(6 + 8/12, "feet"),
  40757. weight: math.unit(250, "kilograms"),
  40758. volume: math.unit(28, "liters"),
  40759. name: "Front",
  40760. image: {
  40761. source: "./media/characters/rebecca-pawlson/front.svg",
  40762. extra: 1737/1596,
  40763. bottom: 107/1844
  40764. }
  40765. },
  40766. back: {
  40767. height: math.unit(6 + 8/12, "feet"),
  40768. weight: math.unit(250, "kilograms"),
  40769. volume: math.unit(28, "liters"),
  40770. name: "Back",
  40771. image: {
  40772. source: "./media/characters/rebecca-pawlson/back.svg",
  40773. extra: 1702/1523,
  40774. bottom: 86/1788
  40775. }
  40776. },
  40777. },
  40778. [
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(6 + 8/12, "feet")
  40782. },
  40783. {
  40784. name: "Mini Macro",
  40785. height: math.unit(10, "feet"),
  40786. default: true
  40787. },
  40788. {
  40789. name: "Macro",
  40790. height: math.unit(100, "feet")
  40791. },
  40792. {
  40793. name: "Mega Macro",
  40794. height: math.unit(2500, "feet")
  40795. },
  40796. {
  40797. name: "Giga Macro",
  40798. height: math.unit(50, "miles")
  40799. },
  40800. ]
  40801. ))
  40802. characterMakers.push(() => makeCharacter(
  40803. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40804. {
  40805. front: {
  40806. height: math.unit(7 + 6/12, "feet"),
  40807. weight: math.unit(600, "lb"),
  40808. name: "Front",
  40809. image: {
  40810. source: "./media/characters/moxie-nova/front.svg",
  40811. extra: 1734/1652,
  40812. bottom: 41/1775
  40813. }
  40814. },
  40815. },
  40816. [
  40817. {
  40818. name: "Normal",
  40819. height: math.unit(7 + 6/12, "feet"),
  40820. default: true
  40821. },
  40822. ]
  40823. ))
  40824. characterMakers.push(() => makeCharacter(
  40825. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40826. {
  40827. goat: {
  40828. height: math.unit(4, "feet"),
  40829. weight: math.unit(180, "lb"),
  40830. name: "Goat",
  40831. image: {
  40832. source: "./media/characters/tiffany/goat.svg",
  40833. extra: 1845/1595,
  40834. bottom: 106/1951
  40835. }
  40836. },
  40837. front: {
  40838. height: math.unit(5, "feet"),
  40839. weight: math.unit(150, "lb"),
  40840. name: "Foxcoon",
  40841. image: {
  40842. source: "./media/characters/tiffany/foxcoon.svg",
  40843. extra: 1941/1845,
  40844. bottom: 58/1999
  40845. }
  40846. },
  40847. },
  40848. [
  40849. {
  40850. name: "Normal",
  40851. height: math.unit(5, "feet"),
  40852. default: true
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40858. {
  40859. front: {
  40860. height: math.unit(8, "feet"),
  40861. weight: math.unit(300, "lb"),
  40862. name: "Front",
  40863. image: {
  40864. source: "./media/characters/raxinath/front.svg",
  40865. extra: 1407/1309,
  40866. bottom: 39/1446
  40867. }
  40868. },
  40869. back: {
  40870. height: math.unit(8, "feet"),
  40871. weight: math.unit(300, "lb"),
  40872. name: "Back",
  40873. image: {
  40874. source: "./media/characters/raxinath/back.svg",
  40875. extra: 1405/1315,
  40876. bottom: 9/1414
  40877. }
  40878. },
  40879. },
  40880. [
  40881. {
  40882. name: "Speck",
  40883. height: math.unit(0.5, "nm")
  40884. },
  40885. {
  40886. name: "Micro",
  40887. height: math.unit(3, "inches")
  40888. },
  40889. {
  40890. name: "Kobold",
  40891. height: math.unit(3, "feet")
  40892. },
  40893. {
  40894. name: "Normal",
  40895. height: math.unit(8, "feet"),
  40896. default: true
  40897. },
  40898. {
  40899. name: "Giant",
  40900. height: math.unit(50, "feet")
  40901. },
  40902. {
  40903. name: "Macro",
  40904. height: math.unit(1000, "feet")
  40905. },
  40906. {
  40907. name: "Megamacro",
  40908. height: math.unit(1, "mile")
  40909. },
  40910. ]
  40911. ))
  40912. characterMakers.push(() => makeCharacter(
  40913. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40914. {
  40915. front: {
  40916. height: math.unit(10, "feet"),
  40917. weight: math.unit(1442, "lb"),
  40918. name: "Front",
  40919. image: {
  40920. source: "./media/characters/mal-dragon/front.svg",
  40921. extra: 1515/1444,
  40922. bottom: 113/1628
  40923. }
  40924. },
  40925. back: {
  40926. height: math.unit(10, "feet"),
  40927. weight: math.unit(1442, "lb"),
  40928. name: "Back",
  40929. image: {
  40930. source: "./media/characters/mal-dragon/back.svg",
  40931. extra: 1527/1434,
  40932. bottom: 25/1552
  40933. }
  40934. },
  40935. },
  40936. [
  40937. {
  40938. name: "Mortal Interaction",
  40939. height: math.unit(10, "feet"),
  40940. default: true
  40941. },
  40942. {
  40943. name: "Large",
  40944. height: math.unit(30, "feet")
  40945. },
  40946. {
  40947. name: "Kaiju",
  40948. height: math.unit(300, "feet")
  40949. },
  40950. {
  40951. name: "Megamacro",
  40952. height: math.unit(10000, "feet")
  40953. },
  40954. {
  40955. name: "Continent Cracker",
  40956. height: math.unit(30000000, "feet")
  40957. },
  40958. {
  40959. name: "Sol-Swallowing",
  40960. height: math.unit(1e11, "feet")
  40961. },
  40962. {
  40963. name: "Light Universal",
  40964. height: math.unit(5, "universes")
  40965. },
  40966. {
  40967. name: "Universe Atoms",
  40968. height: math.unit(1.829e9, "universes")
  40969. },
  40970. {
  40971. name: "Light Multiversal",
  40972. height: math.unit(5, "multiverses")
  40973. },
  40974. {
  40975. name: "Multiverse Atoms",
  40976. height: math.unit(1.829e9, "multiverses")
  40977. },
  40978. {
  40979. name: "Fabric of Time",
  40980. height: math.unit(1e262, "multiverses")
  40981. },
  40982. ]
  40983. ))
  40984. characterMakers.push(() => makeCharacter(
  40985. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40986. {
  40987. front: {
  40988. height: math.unit(9, "feet"),
  40989. weight: math.unit(1050, "lb"),
  40990. name: "Front",
  40991. image: {
  40992. source: "./media/characters/tabitha/front.svg",
  40993. extra: 2083/1994,
  40994. bottom: 68/2151
  40995. }
  40996. },
  40997. },
  40998. [
  40999. {
  41000. name: "Baseline",
  41001. height: math.unit(9, "feet"),
  41002. default: true
  41003. },
  41004. {
  41005. name: "Giant",
  41006. height: math.unit(90, "feet")
  41007. },
  41008. {
  41009. name: "Macro",
  41010. height: math.unit(900, "feet")
  41011. },
  41012. {
  41013. name: "Megamacro",
  41014. height: math.unit(9000, "feet")
  41015. },
  41016. {
  41017. name: "City-Crushing",
  41018. height: math.unit(27000, "feet")
  41019. },
  41020. {
  41021. name: "Mountain-Mashing",
  41022. height: math.unit(90000, "feet")
  41023. },
  41024. {
  41025. name: "Nation Nemesis",
  41026. height: math.unit(9e6, "feet")
  41027. },
  41028. {
  41029. name: "Continent Cracker",
  41030. height: math.unit(27e6, "feet")
  41031. },
  41032. {
  41033. name: "Earth-Eclipsing",
  41034. height: math.unit(2.7e8, "feet")
  41035. },
  41036. {
  41037. name: "Gas Giant Gulper",
  41038. height: math.unit(2.7e9, "feet")
  41039. },
  41040. {
  41041. name: "Sol-Swallowing",
  41042. height: math.unit(9e10, "feet")
  41043. },
  41044. {
  41045. name: "Galaxy Gulper",
  41046. height: math.unit(9, "galaxies")
  41047. },
  41048. {
  41049. name: "Cosmos Churner",
  41050. height: math.unit(9, "universes")
  41051. },
  41052. ]
  41053. ))
  41054. characterMakers.push(() => makeCharacter(
  41055. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41056. {
  41057. front: {
  41058. height: math.unit(160, "cm"),
  41059. weight: math.unit(55, "kg"),
  41060. name: "Front",
  41061. image: {
  41062. source: "./media/characters/tow/front.svg",
  41063. extra: 1751/1722,
  41064. bottom: 74/1825
  41065. }
  41066. },
  41067. },
  41068. [
  41069. {
  41070. name: "Norm",
  41071. height: math.unit(160, "cm")
  41072. },
  41073. {
  41074. name: "Casual",
  41075. height: math.unit(3200, "m"),
  41076. default: true
  41077. },
  41078. {
  41079. name: "Show-Off",
  41080. height: math.unit(160, "km")
  41081. },
  41082. ]
  41083. ))
  41084. characterMakers.push(() => makeCharacter(
  41085. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41086. {
  41087. front: {
  41088. height: math.unit(7 + 11/12, "feet"),
  41089. weight: math.unit(342.8, "lb"),
  41090. name: "Front",
  41091. image: {
  41092. source: "./media/characters/vivian-orca-dragon/front.svg",
  41093. extra: 1890/1865,
  41094. bottom: 28/1918
  41095. }
  41096. },
  41097. },
  41098. [
  41099. {
  41100. name: "Micro",
  41101. height: math.unit(5, "inches")
  41102. },
  41103. {
  41104. name: "Normal",
  41105. height: math.unit(7 + 11/12, "feet"),
  41106. default: true
  41107. },
  41108. {
  41109. name: "Macro",
  41110. height: math.unit(395 + 7/12, "feet")
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41116. {
  41117. side: {
  41118. height: math.unit(10, "feet"),
  41119. weight: math.unit(1442, "lb"),
  41120. name: "Side",
  41121. image: {
  41122. source: "./media/characters/lotherakon/side.svg",
  41123. extra: 1604/1497,
  41124. bottom: 89/1693
  41125. }
  41126. },
  41127. },
  41128. [
  41129. {
  41130. name: "Mortal Interaction",
  41131. height: math.unit(10, "feet")
  41132. },
  41133. {
  41134. name: "Large",
  41135. height: math.unit(30, "feet"),
  41136. default: true
  41137. },
  41138. {
  41139. name: "Giant",
  41140. height: math.unit(100, "feet")
  41141. },
  41142. {
  41143. name: "Kaiju",
  41144. height: math.unit(300, "feet")
  41145. },
  41146. {
  41147. name: "Macro",
  41148. height: math.unit(1000, "feet")
  41149. },
  41150. {
  41151. name: "Macro+",
  41152. height: math.unit(3000, "feet")
  41153. },
  41154. {
  41155. name: "Megamacro",
  41156. height: math.unit(10000, "feet")
  41157. },
  41158. {
  41159. name: "City-Crushing",
  41160. height: math.unit(30000, "feet")
  41161. },
  41162. {
  41163. name: "Continent Cracker",
  41164. height: math.unit(30e6, "feet")
  41165. },
  41166. {
  41167. name: "Earth Eclipsing",
  41168. height: math.unit(3e8, "feet")
  41169. },
  41170. {
  41171. name: "Gas Giant Gulper",
  41172. height: math.unit(3e9, "feet")
  41173. },
  41174. {
  41175. name: "Sol-Swallowing",
  41176. height: math.unit(1e11, "feet")
  41177. },
  41178. {
  41179. name: "System Swallower",
  41180. height: math.unit(3e14, "feet")
  41181. },
  41182. {
  41183. name: "Galaxy Gulper",
  41184. height: math.unit(10, "galaxies")
  41185. },
  41186. {
  41187. name: "Light Universal",
  41188. height: math.unit(5, "universes")
  41189. },
  41190. {
  41191. name: "Universe Palm",
  41192. height: math.unit(20, "universes")
  41193. },
  41194. {
  41195. name: "Light Multiversal",
  41196. height: math.unit(5, "multiverses")
  41197. },
  41198. {
  41199. name: "Multiverse Palm",
  41200. height: math.unit(20, "multiverses")
  41201. },
  41202. {
  41203. name: "Inferno Incarnate",
  41204. height: math.unit(1e7, "multiverses")
  41205. },
  41206. ]
  41207. ))
  41208. characterMakers.push(() => makeCharacter(
  41209. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41210. {
  41211. front: {
  41212. height: math.unit(8, "feet"),
  41213. weight: math.unit(1200, "lb"),
  41214. name: "Front",
  41215. image: {
  41216. source: "./media/characters/malithee/front.svg",
  41217. extra: 1675/1640,
  41218. bottom: 162/1837
  41219. }
  41220. },
  41221. },
  41222. [
  41223. {
  41224. name: "Mortal Interaction",
  41225. height: math.unit(8, "feet"),
  41226. default: true
  41227. },
  41228. {
  41229. name: "Large",
  41230. height: math.unit(24, "feet")
  41231. },
  41232. {
  41233. name: "Kaiju",
  41234. height: math.unit(240, "feet")
  41235. },
  41236. {
  41237. name: "Megamacro",
  41238. height: math.unit(8000, "feet")
  41239. },
  41240. {
  41241. name: "Continent Cracker",
  41242. height: math.unit(24e6, "feet")
  41243. },
  41244. {
  41245. name: "Earth-Eclipsing",
  41246. height: math.unit(2.4e8, "feet")
  41247. },
  41248. {
  41249. name: "Sol-Swallowing",
  41250. height: math.unit(8e10, "feet")
  41251. },
  41252. {
  41253. name: "Galaxy Gulper",
  41254. height: math.unit(8, "galaxies")
  41255. },
  41256. {
  41257. name: "Light Universal",
  41258. height: math.unit(4, "universes")
  41259. },
  41260. {
  41261. name: "Universe Atoms",
  41262. height: math.unit(1.829e9, "universes")
  41263. },
  41264. {
  41265. name: "Light Multiversal",
  41266. height: math.unit(4, "multiverses")
  41267. },
  41268. {
  41269. name: "Multiverse Atoms",
  41270. height: math.unit(1.829e9, "multiverses")
  41271. },
  41272. {
  41273. name: "Nigh-Omnipresence",
  41274. height: math.unit(8e261, "multiverses")
  41275. },
  41276. ]
  41277. ))
  41278. characterMakers.push(() => makeCharacter(
  41279. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41280. {
  41281. front: {
  41282. height: math.unit(10, "feet"),
  41283. weight: math.unit(1500, "lb"),
  41284. name: "Front",
  41285. image: {
  41286. source: "./media/characters/miles-thestia/front.svg",
  41287. extra: 1812/1727,
  41288. bottom: 86/1898
  41289. }
  41290. },
  41291. back: {
  41292. height: math.unit(10, "feet"),
  41293. weight: math.unit(1500, "lb"),
  41294. name: "Back",
  41295. image: {
  41296. source: "./media/characters/miles-thestia/back.svg",
  41297. extra: 1799/1690,
  41298. bottom: 47/1846
  41299. }
  41300. },
  41301. frontNsfw: {
  41302. height: math.unit(10, "feet"),
  41303. weight: math.unit(1500, "lb"),
  41304. name: "Front (NSFW)",
  41305. image: {
  41306. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41307. extra: 1812/1727,
  41308. bottom: 86/1898
  41309. }
  41310. },
  41311. },
  41312. [
  41313. {
  41314. name: "Mini-Macro",
  41315. height: math.unit(10, "feet"),
  41316. default: true
  41317. },
  41318. ]
  41319. ))
  41320. characterMakers.push(() => makeCharacter(
  41321. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41322. {
  41323. front: {
  41324. height: math.unit(25, "feet"),
  41325. name: "Front",
  41326. image: {
  41327. source: "./media/characters/titan-s-wulf/front.svg",
  41328. extra: 1560/1484,
  41329. bottom: 76/1636
  41330. }
  41331. },
  41332. },
  41333. [
  41334. {
  41335. name: "Smallest",
  41336. height: math.unit(25, "feet"),
  41337. default: true
  41338. },
  41339. {
  41340. name: "Normal",
  41341. height: math.unit(200, "feet")
  41342. },
  41343. {
  41344. name: "Macro",
  41345. height: math.unit(200000, "feet")
  41346. },
  41347. {
  41348. name: "Multiversal Original",
  41349. height: math.unit(10000, "multiverses")
  41350. },
  41351. ]
  41352. ))
  41353. characterMakers.push(() => makeCharacter(
  41354. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41355. {
  41356. front: {
  41357. height: math.unit(8, "feet"),
  41358. weight: math.unit(553, "lb"),
  41359. name: "Front",
  41360. image: {
  41361. source: "./media/characters/tawendeh/front.svg",
  41362. extra: 2365/2268,
  41363. bottom: 83/2448
  41364. }
  41365. },
  41366. frontClothed: {
  41367. height: math.unit(8, "feet"),
  41368. weight: math.unit(553, "lb"),
  41369. name: "Front (Clothed)",
  41370. image: {
  41371. source: "./media/characters/tawendeh/front-clothed.svg",
  41372. extra: 2365/2268,
  41373. bottom: 83/2448
  41374. }
  41375. },
  41376. back: {
  41377. height: math.unit(8, "feet"),
  41378. weight: math.unit(553, "lb"),
  41379. name: "Back",
  41380. image: {
  41381. source: "./media/characters/tawendeh/back.svg",
  41382. extra: 2397/2294,
  41383. bottom: 42/2439
  41384. }
  41385. },
  41386. },
  41387. [
  41388. {
  41389. name: "Mortal Interaction",
  41390. height: math.unit(8, "feet"),
  41391. default: true
  41392. },
  41393. {
  41394. name: "Giant",
  41395. height: math.unit(80, "feet")
  41396. },
  41397. {
  41398. name: "Macro",
  41399. height: math.unit(800, "feet")
  41400. },
  41401. {
  41402. name: "Megamacro",
  41403. height: math.unit(8000, "feet")
  41404. },
  41405. {
  41406. name: "City-Crushing",
  41407. height: math.unit(24000, "feet")
  41408. },
  41409. {
  41410. name: "Mountain-Mashing",
  41411. height: math.unit(80000, "feet")
  41412. },
  41413. {
  41414. name: "Nation Nemesis",
  41415. height: math.unit(8e6, "feet")
  41416. },
  41417. {
  41418. name: "Continent Cracker",
  41419. height: math.unit(24e6, "feet")
  41420. },
  41421. {
  41422. name: "Earth-Eclipsing",
  41423. height: math.unit(2.4e8, "feet")
  41424. },
  41425. {
  41426. name: "Gas Giant Gulper",
  41427. height: math.unit(2.4e9, "feet")
  41428. },
  41429. {
  41430. name: "Sol-Swallowing",
  41431. height: math.unit(8e10, "feet")
  41432. },
  41433. {
  41434. name: "Galaxy Gulper",
  41435. height: math.unit(8, "galaxies")
  41436. },
  41437. {
  41438. name: "Cosmos Churner",
  41439. height: math.unit(8, "universes")
  41440. },
  41441. {
  41442. name: "Omnipotent Otter",
  41443. height: math.unit(80, "universes")
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41449. {
  41450. front: {
  41451. height: math.unit(2.6, "meters"),
  41452. weight: math.unit(900, "kg"),
  41453. name: "Front",
  41454. image: {
  41455. source: "./media/characters/neesha/front.svg",
  41456. extra: 1803/1653,
  41457. bottom: 128/1931
  41458. }
  41459. },
  41460. },
  41461. [
  41462. {
  41463. name: "Normal",
  41464. height: math.unit(2.6, "meters"),
  41465. default: true
  41466. },
  41467. {
  41468. name: "Macro",
  41469. height: math.unit(50, "meters")
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41475. {
  41476. front: {
  41477. height: math.unit(5, "feet"),
  41478. weight: math.unit(185, "lb"),
  41479. name: "Front",
  41480. image: {
  41481. source: "./media/characters/kyera/front.svg",
  41482. extra: 1875/1790,
  41483. bottom: 96/1971
  41484. }
  41485. },
  41486. },
  41487. [
  41488. {
  41489. name: "Normal",
  41490. height: math.unit(5, "feet"),
  41491. default: true
  41492. },
  41493. ]
  41494. ))
  41495. characterMakers.push(() => makeCharacter(
  41496. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41497. {
  41498. front: {
  41499. height: math.unit(7 + 6/12, "feet"),
  41500. weight: math.unit(540, "lb"),
  41501. name: "Front",
  41502. image: {
  41503. source: "./media/characters/yuko/front.svg",
  41504. extra: 1282/1222,
  41505. bottom: 101/1383
  41506. }
  41507. },
  41508. frontClothed: {
  41509. height: math.unit(7 + 6/12, "feet"),
  41510. weight: math.unit(540, "lb"),
  41511. name: "Front (Clothed)",
  41512. image: {
  41513. source: "./media/characters/yuko/front-clothed.svg",
  41514. extra: 1282/1222,
  41515. bottom: 101/1383
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Normal",
  41522. height: math.unit(7 + 6/12, "feet"),
  41523. default: true
  41524. },
  41525. {
  41526. name: "Macro",
  41527. height: math.unit(26 + 9/12, "feet")
  41528. },
  41529. {
  41530. name: "Megamacro",
  41531. height: math.unit(300, "feet")
  41532. },
  41533. {
  41534. name: "Gigamacro",
  41535. height: math.unit(5000, "feet")
  41536. },
  41537. {
  41538. name: "Planetary",
  41539. height: math.unit(10000, "miles")
  41540. },
  41541. ]
  41542. ))
  41543. characterMakers.push(() => makeCharacter(
  41544. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41545. {
  41546. front: {
  41547. height: math.unit(8 + 2/12, "feet"),
  41548. weight: math.unit(600, "lb"),
  41549. name: "Front",
  41550. image: {
  41551. source: "./media/characters/deam-nitrel/front.svg",
  41552. extra: 1308/1234,
  41553. bottom: 125/1433
  41554. }
  41555. },
  41556. },
  41557. [
  41558. {
  41559. name: "Normal",
  41560. height: math.unit(8 + 2/12, "feet"),
  41561. default: true
  41562. },
  41563. ]
  41564. ))
  41565. characterMakers.push(() => makeCharacter(
  41566. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41567. {
  41568. front: {
  41569. height: math.unit(6.1, "feet"),
  41570. weight: math.unit(180, "lb"),
  41571. name: "Front",
  41572. image: {
  41573. source: "./media/characters/skyress/front.svg",
  41574. extra: 1045/915,
  41575. bottom: 28/1073
  41576. }
  41577. },
  41578. maw: {
  41579. height: math.unit(1, "feet"),
  41580. name: "Maw",
  41581. image: {
  41582. source: "./media/characters/skyress/maw.svg"
  41583. }
  41584. },
  41585. },
  41586. [
  41587. {
  41588. name: "Normal",
  41589. height: math.unit(6.1, "feet"),
  41590. default: true
  41591. },
  41592. {
  41593. name: "Macro",
  41594. height: math.unit(200, "feet")
  41595. },
  41596. ]
  41597. ))
  41598. characterMakers.push(() => makeCharacter(
  41599. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41600. {
  41601. front: {
  41602. height: math.unit(4 + 2/12, "feet"),
  41603. weight: math.unit(40, "kg"),
  41604. name: "Front",
  41605. image: {
  41606. source: "./media/characters/amethyst-jones/front.svg",
  41607. extra: 1220/1150,
  41608. bottom: 101/1321
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Normal",
  41615. height: math.unit(4 + 2/12, "feet"),
  41616. default: true
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(1.7, "m"),
  41625. weight: math.unit(135, "lb"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/jade/front.svg",
  41629. extra: 1818/1767,
  41630. bottom: 32/1850
  41631. }
  41632. },
  41633. back: {
  41634. height: math.unit(1.7, "m"),
  41635. weight: math.unit(135, "lb"),
  41636. name: "Back",
  41637. image: {
  41638. source: "./media/characters/jade/back.svg",
  41639. extra: 1869/1809,
  41640. bottom: 35/1904
  41641. }
  41642. },
  41643. hand: {
  41644. height: math.unit(0.24, "m"),
  41645. name: "Hand",
  41646. image: {
  41647. source: "./media/characters/jade/hand.svg"
  41648. }
  41649. },
  41650. foot: {
  41651. height: math.unit(0.263, "m"),
  41652. name: "Foot",
  41653. image: {
  41654. source: "./media/characters/jade/foot.svg"
  41655. }
  41656. },
  41657. dick: {
  41658. height: math.unit(0.47, "m"),
  41659. name: "Dick",
  41660. image: {
  41661. source: "./media/characters/jade/dick.svg"
  41662. }
  41663. },
  41664. },
  41665. [
  41666. {
  41667. name: "Micro",
  41668. height: math.unit(22, "cm")
  41669. },
  41670. {
  41671. name: "Normal",
  41672. height: math.unit(1.7, "m"),
  41673. default: true
  41674. },
  41675. {
  41676. name: "Macro",
  41677. height: math.unit(152, "m")
  41678. },
  41679. ]
  41680. ))
  41681. characterMakers.push(() => makeCharacter(
  41682. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41683. {
  41684. front: {
  41685. height: math.unit(100, "miles"),
  41686. weight: math.unit(20000, "tons"),
  41687. name: "Front",
  41688. image: {
  41689. source: "./media/characters/cookie/front.svg",
  41690. extra: 1125/1070,
  41691. bottom: 30/1155
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Big",
  41698. height: math.unit(50, "feet")
  41699. },
  41700. {
  41701. name: "Macro",
  41702. height: math.unit(100, "miles"),
  41703. default: true
  41704. },
  41705. {
  41706. name: "Megamacro",
  41707. height: math.unit(90000, "miles")
  41708. },
  41709. ]
  41710. ))
  41711. characterMakers.push(() => makeCharacter(
  41712. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41713. {
  41714. front: {
  41715. height: math.unit(6, "feet"),
  41716. weight: math.unit(145, "lb"),
  41717. name: "Front",
  41718. image: {
  41719. source: "./media/characters/farzian/front.svg",
  41720. extra: 1902/1693,
  41721. bottom: 108/2010
  41722. }
  41723. },
  41724. },
  41725. [
  41726. {
  41727. name: "Macro",
  41728. height: math.unit(500, "feet"),
  41729. default: true
  41730. },
  41731. ]
  41732. ))
  41733. characterMakers.push(() => makeCharacter(
  41734. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41735. {
  41736. front: {
  41737. height: math.unit(3 + 6/12, "feet"),
  41738. weight: math.unit(50, "lb"),
  41739. name: "Front",
  41740. image: {
  41741. source: "./media/characters/kimberly-tilson/front.svg",
  41742. extra: 1400/1322,
  41743. bottom: 36/1436
  41744. }
  41745. },
  41746. back: {
  41747. height: math.unit(3 + 6/12, "feet"),
  41748. weight: math.unit(50, "lb"),
  41749. name: "Back",
  41750. image: {
  41751. source: "./media/characters/kimberly-tilson/back.svg",
  41752. extra: 1370/1307,
  41753. bottom: 20/1390
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Normal",
  41760. height: math.unit(3 + 6/12, "feet"),
  41761. default: true
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41767. {
  41768. front: {
  41769. height: math.unit(1148, "feet"),
  41770. weight: math.unit(34057, "lb"),
  41771. name: "Front",
  41772. image: {
  41773. source: "./media/characters/harthos/front.svg",
  41774. extra: 1391/1339,
  41775. bottom: 13/1404
  41776. }
  41777. },
  41778. },
  41779. [
  41780. {
  41781. name: "Macro",
  41782. height: math.unit(1148, "feet"),
  41783. default: true
  41784. },
  41785. ]
  41786. ))
  41787. characterMakers.push(() => makeCharacter(
  41788. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41789. {
  41790. front: {
  41791. height: math.unit(15, "feet"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/hypatia/front.svg",
  41795. extra: 1653/1591,
  41796. bottom: 79/1732
  41797. }
  41798. },
  41799. },
  41800. [
  41801. {
  41802. name: "Normal",
  41803. height: math.unit(15, "feet")
  41804. },
  41805. {
  41806. name: "Small",
  41807. height: math.unit(300, "feet")
  41808. },
  41809. {
  41810. name: "Macro",
  41811. height: math.unit(2500, "feet"),
  41812. default: true
  41813. },
  41814. {
  41815. name: "Mega Macro",
  41816. height: math.unit(1500, "miles")
  41817. },
  41818. {
  41819. name: "Giga Macro",
  41820. height: math.unit(1.5e6, "miles")
  41821. },
  41822. ]
  41823. ))
  41824. characterMakers.push(() => makeCharacter(
  41825. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41826. {
  41827. front: {
  41828. height: math.unit(6, "feet"),
  41829. weight: math.unit(200, "lb"),
  41830. name: "Front",
  41831. image: {
  41832. source: "./media/characters/wulver/front.svg",
  41833. extra: 1724/1632,
  41834. bottom: 130/1854
  41835. }
  41836. },
  41837. frontNsfw: {
  41838. height: math.unit(6, "feet"),
  41839. weight: math.unit(200, "lb"),
  41840. name: "Front (NSFW)",
  41841. image: {
  41842. source: "./media/characters/wulver/front-nsfw.svg",
  41843. extra: 1724/1632,
  41844. bottom: 130/1854
  41845. }
  41846. },
  41847. },
  41848. [
  41849. {
  41850. name: "Human-Sized",
  41851. height: math.unit(6, "feet")
  41852. },
  41853. {
  41854. name: "Normal",
  41855. height: math.unit(4, "meters"),
  41856. default: true
  41857. },
  41858. {
  41859. name: "Large",
  41860. height: math.unit(6, "m")
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41866. {
  41867. front: {
  41868. height: math.unit(7, "feet"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/maru/front.svg",
  41872. extra: 1595/1570,
  41873. bottom: 0/1595
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(7, "feet"),
  41881. default: true
  41882. },
  41883. {
  41884. name: "Macro",
  41885. height: math.unit(700, "feet")
  41886. },
  41887. {
  41888. name: "Mega Macro",
  41889. height: math.unit(25, "miles")
  41890. },
  41891. ]
  41892. ))
  41893. characterMakers.push(() => makeCharacter(
  41894. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41895. {
  41896. front: {
  41897. height: math.unit(6, "feet"),
  41898. weight: math.unit(170, "lb"),
  41899. name: "Front",
  41900. image: {
  41901. source: "./media/characters/xenon/front.svg",
  41902. extra: 1376/1305,
  41903. bottom: 56/1432
  41904. }
  41905. },
  41906. back: {
  41907. height: math.unit(6, "feet"),
  41908. weight: math.unit(170, "lb"),
  41909. name: "Back",
  41910. image: {
  41911. source: "./media/characters/xenon/back.svg",
  41912. extra: 1328/1259,
  41913. bottom: 95/1423
  41914. }
  41915. },
  41916. maw: {
  41917. height: math.unit(0.52, "feet"),
  41918. name: "Maw",
  41919. image: {
  41920. source: "./media/characters/xenon/maw.svg"
  41921. }
  41922. },
  41923. handLeft: {
  41924. height: math.unit(0.82 * 169 / 153, "feet"),
  41925. name: "Hand (Left)",
  41926. image: {
  41927. source: "./media/characters/xenon/hand-left.svg"
  41928. }
  41929. },
  41930. handRight: {
  41931. height: math.unit(0.82, "feet"),
  41932. name: "Hand (Right)",
  41933. image: {
  41934. source: "./media/characters/xenon/hand-right.svg"
  41935. }
  41936. },
  41937. footLeft: {
  41938. height: math.unit(1.13, "feet"),
  41939. name: "Foot (Left)",
  41940. image: {
  41941. source: "./media/characters/xenon/foot-left.svg"
  41942. }
  41943. },
  41944. footRight: {
  41945. height: math.unit(1.13 * 194 / 196, "feet"),
  41946. name: "Foot (Right)",
  41947. image: {
  41948. source: "./media/characters/xenon/foot-right.svg"
  41949. }
  41950. },
  41951. },
  41952. [
  41953. {
  41954. name: "Micro",
  41955. height: math.unit(0.8, "inches")
  41956. },
  41957. {
  41958. name: "Normal",
  41959. height: math.unit(6, "feet")
  41960. },
  41961. {
  41962. name: "Macro",
  41963. height: math.unit(50, "feet"),
  41964. default: true
  41965. },
  41966. {
  41967. name: "Macro+",
  41968. height: math.unit(250, "feet")
  41969. },
  41970. {
  41971. name: "Megamacro",
  41972. height: math.unit(1500, "feet")
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(7 + 5/12, "feet"),
  41981. name: "Front",
  41982. image: {
  41983. source: "./media/characters/zane/front.svg",
  41984. extra: 1260/1203,
  41985. bottom: 94/1354
  41986. }
  41987. },
  41988. back: {
  41989. height: math.unit(5.05, "feet"),
  41990. name: "Back",
  41991. image: {
  41992. source: "./media/characters/zane/back.svg",
  41993. extra: 893/829,
  41994. bottom: 30/923
  41995. }
  41996. },
  41997. werewolf: {
  41998. height: math.unit(11, "feet"),
  41999. name: "Werewolf",
  42000. image: {
  42001. source: "./media/characters/zane/werewolf.svg",
  42002. extra: 1383/1323,
  42003. bottom: 89/1472
  42004. }
  42005. },
  42006. foot: {
  42007. height: math.unit(1.46, "feet"),
  42008. name: "Foot",
  42009. image: {
  42010. source: "./media/characters/zane/foot.svg"
  42011. }
  42012. },
  42013. footFront: {
  42014. height: math.unit(0.784, "feet"),
  42015. name: "Foot (Front)",
  42016. image: {
  42017. source: "./media/characters/zane/foot-front.svg"
  42018. }
  42019. },
  42020. dick: {
  42021. height: math.unit(1.95, "feet"),
  42022. name: "Dick",
  42023. image: {
  42024. source: "./media/characters/zane/dick.svg"
  42025. }
  42026. },
  42027. dickWerewolf: {
  42028. height: math.unit(3.77, "feet"),
  42029. name: "Dick (Werewolf)",
  42030. image: {
  42031. source: "./media/characters/zane/dick.svg"
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "Normal",
  42038. height: math.unit(7 + 5/12, "feet"),
  42039. default: true
  42040. },
  42041. ]
  42042. ))
  42043. characterMakers.push(() => makeCharacter(
  42044. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42045. {
  42046. front: {
  42047. height: math.unit(6 + 2/12, "feet"),
  42048. weight: math.unit(284, "lb"),
  42049. name: "Front",
  42050. image: {
  42051. source: "./media/characters/benni-desparque/front.svg",
  42052. extra: 1353/1126,
  42053. bottom: 69/1422
  42054. }
  42055. },
  42056. },
  42057. [
  42058. {
  42059. name: "Civilian",
  42060. height: math.unit(6 + 2/12, "feet")
  42061. },
  42062. {
  42063. name: "Normal",
  42064. height: math.unit(98, "feet"),
  42065. default: true
  42066. },
  42067. {
  42068. name: "Kaiju Fighter",
  42069. height: math.unit(268, "feet")
  42070. },
  42071. ]
  42072. ))
  42073. characterMakers.push(() => makeCharacter(
  42074. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42075. {
  42076. front: {
  42077. height: math.unit(5, "feet"),
  42078. weight: math.unit(105, "lb"),
  42079. name: "Front",
  42080. image: {
  42081. source: "./media/characters/maxine/front.svg",
  42082. extra: 1386/1250,
  42083. bottom: 71/1457
  42084. }
  42085. },
  42086. },
  42087. [
  42088. {
  42089. name: "Normal",
  42090. height: math.unit(5, "feet"),
  42091. default: true
  42092. },
  42093. ]
  42094. ))
  42095. characterMakers.push(() => makeCharacter(
  42096. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42097. {
  42098. front: {
  42099. height: math.unit(11 + 7/12, "feet"),
  42100. weight: math.unit(9576, "lb"),
  42101. name: "Front",
  42102. image: {
  42103. source: "./media/characters/scaly/front.svg",
  42104. extra: 888/867,
  42105. bottom: 36/924
  42106. }
  42107. },
  42108. },
  42109. [
  42110. {
  42111. name: "Normal",
  42112. height: math.unit(11 + 7/12, "feet"),
  42113. default: true
  42114. },
  42115. ]
  42116. ))
  42117. characterMakers.push(() => makeCharacter(
  42118. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42119. {
  42120. front: {
  42121. height: math.unit(6 + 3/12, "feet"),
  42122. name: "Front",
  42123. image: {
  42124. source: "./media/characters/saelria/front.svg",
  42125. extra: 1243/1138,
  42126. bottom: 46/1289
  42127. }
  42128. },
  42129. },
  42130. [
  42131. {
  42132. name: "Micro",
  42133. height: math.unit(6, "inches"),
  42134. },
  42135. {
  42136. name: "Normal",
  42137. height: math.unit(6 + 3/12, "feet"),
  42138. default: true
  42139. },
  42140. {
  42141. name: "Macro",
  42142. height: math.unit(25, "feet")
  42143. },
  42144. ]
  42145. ))
  42146. characterMakers.push(() => makeCharacter(
  42147. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42148. {
  42149. front: {
  42150. height: math.unit(80, "meters"),
  42151. weight: math.unit(7000, "tonnes"),
  42152. name: "Front",
  42153. image: {
  42154. source: "./media/characters/tef/front.svg",
  42155. extra: 2036/1991,
  42156. bottom: 54/2090
  42157. }
  42158. },
  42159. back: {
  42160. height: math.unit(80, "meters"),
  42161. weight: math.unit(7000, "tonnes"),
  42162. name: "Back",
  42163. image: {
  42164. source: "./media/characters/tef/back.svg",
  42165. extra: 2036/1991,
  42166. bottom: 54/2090
  42167. }
  42168. },
  42169. },
  42170. [
  42171. {
  42172. name: "Macro",
  42173. height: math.unit(80, "meters"),
  42174. default: true
  42175. },
  42176. ]
  42177. ))
  42178. characterMakers.push(() => makeCharacter(
  42179. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42180. {
  42181. front: {
  42182. height: math.unit(13, "feet"),
  42183. weight: math.unit(6, "tons"),
  42184. name: "Front",
  42185. image: {
  42186. source: "./media/characters/rover/front.svg",
  42187. extra: 1233/1156,
  42188. bottom: 50/1283
  42189. }
  42190. },
  42191. back: {
  42192. height: math.unit(13, "feet"),
  42193. weight: math.unit(6, "tons"),
  42194. name: "Back",
  42195. image: {
  42196. source: "./media/characters/rover/back.svg",
  42197. extra: 1327/1258,
  42198. bottom: 39/1366
  42199. }
  42200. },
  42201. },
  42202. [
  42203. {
  42204. name: "Normal",
  42205. height: math.unit(13, "feet"),
  42206. default: true
  42207. },
  42208. {
  42209. name: "Macro",
  42210. height: math.unit(1300, "feet")
  42211. },
  42212. {
  42213. name: "Megamacro",
  42214. height: math.unit(1300, "miles")
  42215. },
  42216. {
  42217. name: "Gigamacro",
  42218. height: math.unit(1300000, "miles")
  42219. },
  42220. ]
  42221. ))
  42222. characterMakers.push(() => makeCharacter(
  42223. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42224. {
  42225. front: {
  42226. height: math.unit(6, "feet"),
  42227. weight: math.unit(150, "lb"),
  42228. name: "Front",
  42229. image: {
  42230. source: "./media/characters/ariz/front.svg",
  42231. extra: 1401/1346,
  42232. bottom: 5/1406
  42233. }
  42234. },
  42235. },
  42236. [
  42237. {
  42238. name: "Normal",
  42239. height: math.unit(10, "feet"),
  42240. default: true
  42241. },
  42242. ]
  42243. ))
  42244. characterMakers.push(() => makeCharacter(
  42245. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42246. {
  42247. front: {
  42248. height: math.unit(6, "feet"),
  42249. weight: math.unit(140, "lb"),
  42250. name: "Front",
  42251. image: {
  42252. source: "./media/characters/sigrun/front.svg",
  42253. extra: 1418/1359,
  42254. bottom: 27/1445
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Macro",
  42261. height: math.unit(35, "feet"),
  42262. default: true
  42263. },
  42264. ]
  42265. ))
  42266. characterMakers.push(() => makeCharacter(
  42267. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42268. {
  42269. front: {
  42270. height: math.unit(6, "feet"),
  42271. weight: math.unit(150, "lb"),
  42272. name: "Front",
  42273. image: {
  42274. source: "./media/characters/numin/front.svg",
  42275. extra: 1433/1388,
  42276. bottom: 12/1445
  42277. }
  42278. },
  42279. },
  42280. [
  42281. {
  42282. name: "Macro",
  42283. height: math.unit(21.5, "km"),
  42284. default: true
  42285. },
  42286. ]
  42287. ))
  42288. characterMakers.push(() => makeCharacter(
  42289. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42290. {
  42291. front: {
  42292. height: math.unit(6, "feet"),
  42293. weight: math.unit(463, "lb"),
  42294. name: "Front",
  42295. image: {
  42296. source: "./media/characters/melwa/front.svg",
  42297. extra: 1307/1248,
  42298. bottom: 93/1400
  42299. }
  42300. },
  42301. },
  42302. [
  42303. {
  42304. name: "Macro",
  42305. height: math.unit(50, "meters"),
  42306. default: true
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42312. {
  42313. front: {
  42314. height: math.unit(325, "feet"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/zorkaiju/front.svg",
  42318. extra: 1955/1814,
  42319. bottom: 40/1995
  42320. }
  42321. },
  42322. frontExtended: {
  42323. height: math.unit(325, "feet"),
  42324. name: "Front (Extended)",
  42325. image: {
  42326. source: "./media/characters/zorkaiju/front-extended.svg",
  42327. extra: 1955/1814,
  42328. bottom: 40/1995
  42329. }
  42330. },
  42331. side: {
  42332. height: math.unit(325, "feet"),
  42333. name: "Side",
  42334. image: {
  42335. source: "./media/characters/zorkaiju/side.svg",
  42336. extra: 1495/1396,
  42337. bottom: 17/1512
  42338. }
  42339. },
  42340. sideExtended: {
  42341. height: math.unit(325, "feet"),
  42342. name: "Side (Extended)",
  42343. image: {
  42344. source: "./media/characters/zorkaiju/side-extended.svg",
  42345. extra: 1495/1396,
  42346. bottom: 17/1512
  42347. }
  42348. },
  42349. back: {
  42350. height: math.unit(325, "feet"),
  42351. name: "Back",
  42352. image: {
  42353. source: "./media/characters/zorkaiju/back.svg",
  42354. extra: 1959/1821,
  42355. bottom: 31/1990
  42356. }
  42357. },
  42358. backExtended: {
  42359. height: math.unit(325, "feet"),
  42360. name: "Back (Extended)",
  42361. image: {
  42362. source: "./media/characters/zorkaiju/back-extended.svg",
  42363. extra: 1959/1821,
  42364. bottom: 31/1990
  42365. }
  42366. },
  42367. hand: {
  42368. height: math.unit(58.4, "feet"),
  42369. name: "Hand",
  42370. image: {
  42371. source: "./media/characters/zorkaiju/hand.svg"
  42372. }
  42373. },
  42374. handExtended: {
  42375. height: math.unit(61.4, "feet"),
  42376. name: "Hand (Extended)",
  42377. image: {
  42378. source: "./media/characters/zorkaiju/hand-extended.svg"
  42379. }
  42380. },
  42381. foot: {
  42382. height: math.unit(95, "feet"),
  42383. name: "Foot",
  42384. image: {
  42385. source: "./media/characters/zorkaiju/foot.svg"
  42386. }
  42387. },
  42388. leftArm: {
  42389. height: math.unit(59, "feet"),
  42390. name: "Left Arm",
  42391. image: {
  42392. source: "./media/characters/zorkaiju/left-arm.svg"
  42393. }
  42394. },
  42395. rightArm: {
  42396. height: math.unit(59, "feet"),
  42397. name: "Right Arm",
  42398. image: {
  42399. source: "./media/characters/zorkaiju/right-arm.svg"
  42400. }
  42401. },
  42402. leftArmExtended: {
  42403. height: math.unit(59 * 1.033546, "feet"),
  42404. name: "Left Arm (Extended)",
  42405. image: {
  42406. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42407. }
  42408. },
  42409. rightArmExtended: {
  42410. height: math.unit(59 * 1.0496, "feet"),
  42411. name: "Right Arm (Extended)",
  42412. image: {
  42413. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42414. }
  42415. },
  42416. tail: {
  42417. height: math.unit(104, "feet"),
  42418. name: "Tail",
  42419. image: {
  42420. source: "./media/characters/zorkaiju/tail.svg"
  42421. }
  42422. },
  42423. tailExtended: {
  42424. height: math.unit(104, "feet"),
  42425. name: "Tail (Extended)",
  42426. image: {
  42427. source: "./media/characters/zorkaiju/tail-extended.svg"
  42428. }
  42429. },
  42430. tailBottom: {
  42431. height: math.unit(104, "feet"),
  42432. name: "Tail Bottom",
  42433. image: {
  42434. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42435. }
  42436. },
  42437. crystal: {
  42438. height: math.unit(27.54, "feet"),
  42439. name: "Crystal",
  42440. image: {
  42441. source: "./media/characters/zorkaiju/crystal.svg"
  42442. }
  42443. },
  42444. },
  42445. [
  42446. {
  42447. name: "Kaiju",
  42448. height: math.unit(325, "feet"),
  42449. default: true
  42450. },
  42451. ]
  42452. ))
  42453. characterMakers.push(() => makeCharacter(
  42454. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42455. {
  42456. front: {
  42457. height: math.unit(6 + 1/12, "feet"),
  42458. weight: math.unit(115, "lb"),
  42459. name: "Front",
  42460. image: {
  42461. source: "./media/characters/bailey-belfry/front.svg",
  42462. extra: 1240/1121,
  42463. bottom: 101/1341
  42464. }
  42465. },
  42466. },
  42467. [
  42468. {
  42469. name: "Normal",
  42470. height: math.unit(6 + 1/12, "feet"),
  42471. default: true
  42472. },
  42473. ]
  42474. ))
  42475. characterMakers.push(() => makeCharacter(
  42476. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42477. {
  42478. side: {
  42479. height: math.unit(4, "meters"),
  42480. weight: math.unit(250, "kg"),
  42481. name: "Side",
  42482. image: {
  42483. source: "./media/characters/blacky/side.svg",
  42484. extra: 1027/919,
  42485. bottom: 43/1070
  42486. }
  42487. },
  42488. maw: {
  42489. height: math.unit(1, "meters"),
  42490. name: "Maw",
  42491. image: {
  42492. source: "./media/characters/blacky/maw.svg"
  42493. }
  42494. },
  42495. paw: {
  42496. height: math.unit(1, "meters"),
  42497. name: "Paw",
  42498. image: {
  42499. source: "./media/characters/blacky/paw.svg"
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Normal",
  42506. height: math.unit(4, "meters"),
  42507. default: true
  42508. },
  42509. ]
  42510. ))
  42511. characterMakers.push(() => makeCharacter(
  42512. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42513. {
  42514. front: {
  42515. height: math.unit(170, "cm"),
  42516. weight: math.unit(66, "kg"),
  42517. name: "Front",
  42518. image: {
  42519. source: "./media/characters/thux-ei/front.svg",
  42520. extra: 1109/1011,
  42521. bottom: 8/1117
  42522. }
  42523. },
  42524. },
  42525. [
  42526. {
  42527. name: "Normal",
  42528. height: math.unit(170, "cm"),
  42529. default: true
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(5, "feet"),
  42538. weight: math.unit(120, "lb"),
  42539. name: "Front",
  42540. image: {
  42541. source: "./media/characters/roxanne-voltaire/front.svg",
  42542. extra: 1901/1779,
  42543. bottom: 53/1954
  42544. }
  42545. },
  42546. },
  42547. [
  42548. {
  42549. name: "Normal",
  42550. height: math.unit(5, "feet"),
  42551. default: true
  42552. },
  42553. {
  42554. name: "Giant",
  42555. height: math.unit(50, "feet")
  42556. },
  42557. {
  42558. name: "Titan",
  42559. height: math.unit(500, "feet")
  42560. },
  42561. {
  42562. name: "Macro",
  42563. height: math.unit(5000, "feet")
  42564. },
  42565. {
  42566. name: "Megamacro",
  42567. height: math.unit(50000, "feet")
  42568. },
  42569. {
  42570. name: "Gigamacro",
  42571. height: math.unit(500000, "feet")
  42572. },
  42573. {
  42574. name: "Teramacro",
  42575. height: math.unit(5e6, "feet")
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42581. {
  42582. front: {
  42583. height: math.unit(6 + 2/12, "feet"),
  42584. name: "Front",
  42585. image: {
  42586. source: "./media/characters/squeaks/front.svg",
  42587. extra: 1823/1768,
  42588. bottom: 138/1961
  42589. }
  42590. },
  42591. },
  42592. [
  42593. {
  42594. name: "Micro",
  42595. height: math.unit(0.5, "inches")
  42596. },
  42597. {
  42598. name: "Normal",
  42599. height: math.unit(6 + 2/12, "feet"),
  42600. default: true
  42601. },
  42602. {
  42603. name: "Macro",
  42604. height: math.unit(600, "feet")
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(1.72, "meters"),
  42613. name: "Front",
  42614. image: {
  42615. source: "./media/characters/archinger/front.svg",
  42616. extra: 1861/1675,
  42617. bottom: 125/1986
  42618. }
  42619. },
  42620. back: {
  42621. height: math.unit(1.72, "meters"),
  42622. name: "Back",
  42623. image: {
  42624. source: "./media/characters/archinger/back.svg",
  42625. extra: 1844/1701,
  42626. bottom: 104/1948
  42627. }
  42628. },
  42629. cock: {
  42630. height: math.unit(0.59, "feet"),
  42631. name: "Cock",
  42632. image: {
  42633. source: "./media/characters/archinger/cock.svg"
  42634. }
  42635. },
  42636. },
  42637. [
  42638. {
  42639. name: "Normal",
  42640. height: math.unit(1.72, "meters"),
  42641. default: true
  42642. },
  42643. {
  42644. name: "Macro",
  42645. height: math.unit(84, "meters")
  42646. },
  42647. {
  42648. name: "Macro+",
  42649. height: math.unit(112, "meters")
  42650. },
  42651. {
  42652. name: "Macro++",
  42653. height: math.unit(960, "meters")
  42654. },
  42655. {
  42656. name: "Macro+++",
  42657. height: math.unit(4, "km")
  42658. },
  42659. {
  42660. name: "Macro++++",
  42661. height: math.unit(48, "km")
  42662. },
  42663. {
  42664. name: "Macro+++++",
  42665. height: math.unit(4500, "km")
  42666. },
  42667. ]
  42668. ))
  42669. characterMakers.push(() => makeCharacter(
  42670. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42671. {
  42672. front: {
  42673. height: math.unit(5 + 5/12, "feet"),
  42674. name: "Front",
  42675. image: {
  42676. source: "./media/characters/alsnapz/front.svg",
  42677. extra: 1157/1065,
  42678. bottom: 42/1199
  42679. }
  42680. },
  42681. },
  42682. [
  42683. {
  42684. name: "Normal",
  42685. height: math.unit(5 + 5/12, "feet"),
  42686. default: true
  42687. },
  42688. ]
  42689. ))
  42690. characterMakers.push(() => makeCharacter(
  42691. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42692. {
  42693. side: {
  42694. height: math.unit(3.2, "earths"),
  42695. name: "Side",
  42696. image: {
  42697. source: "./media/characters/mag/side.svg",
  42698. extra: 1331/1008,
  42699. bottom: 52/1383
  42700. }
  42701. },
  42702. wing: {
  42703. height: math.unit(1.94, "earths"),
  42704. name: "Wing",
  42705. image: {
  42706. source: "./media/characters/mag/wing.svg"
  42707. }
  42708. },
  42709. dick: {
  42710. height: math.unit(1.8, "earths"),
  42711. name: "Dick",
  42712. image: {
  42713. source: "./media/characters/mag/dick.svg"
  42714. }
  42715. },
  42716. ass: {
  42717. height: math.unit(1.33, "earths"),
  42718. name: "Ass",
  42719. image: {
  42720. source: "./media/characters/mag/ass.svg"
  42721. }
  42722. },
  42723. head: {
  42724. height: math.unit(1.1, "earths"),
  42725. name: "Head",
  42726. image: {
  42727. source: "./media/characters/mag/head.svg"
  42728. }
  42729. },
  42730. maw: {
  42731. height: math.unit(1.62, "earths"),
  42732. name: "Maw",
  42733. image: {
  42734. source: "./media/characters/mag/maw.svg"
  42735. }
  42736. },
  42737. },
  42738. [
  42739. {
  42740. name: "Small",
  42741. height: math.unit(162, "feet")
  42742. },
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(3.2, "earths"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(512, "feet"),
  42755. weight: math.unit(63509, "tonnes"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/vorrel-harroc/front.svg",
  42759. extra: 1075/1063,
  42760. bottom: 62/1137
  42761. }
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Normal",
  42767. height: math.unit(10, "feet")
  42768. },
  42769. {
  42770. name: "Macro",
  42771. height: math.unit(512, "feet"),
  42772. default: true
  42773. },
  42774. {
  42775. name: "Megamacro",
  42776. height: math.unit(256, "miles")
  42777. },
  42778. {
  42779. name: "Gigamacro",
  42780. height: math.unit(4096, "miles")
  42781. },
  42782. ]
  42783. ))
  42784. characterMakers.push(() => makeCharacter(
  42785. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42786. {
  42787. side: {
  42788. height: math.unit(50, "feet"),
  42789. name: "Side",
  42790. image: {
  42791. source: "./media/characters/froimar/side.svg",
  42792. extra: 855/638,
  42793. bottom: 99/954
  42794. }
  42795. },
  42796. },
  42797. [
  42798. {
  42799. name: "Macro",
  42800. height: math.unit(50, "feet"),
  42801. default: true
  42802. },
  42803. ]
  42804. ))
  42805. characterMakers.push(() => makeCharacter(
  42806. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42807. {
  42808. front: {
  42809. height: math.unit(210, "miles"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/timothy/front.svg",
  42813. extra: 1007/943,
  42814. bottom: 62/1069
  42815. }
  42816. },
  42817. frontSkirt: {
  42818. height: math.unit(210, "miles"),
  42819. name: "Front (Skirt)",
  42820. image: {
  42821. source: "./media/characters/timothy/front-skirt.svg",
  42822. extra: 1007/943,
  42823. bottom: 62/1069
  42824. }
  42825. },
  42826. frontCoat: {
  42827. height: math.unit(210, "miles"),
  42828. name: "Front (Coat)",
  42829. image: {
  42830. source: "./media/characters/timothy/front-coat.svg",
  42831. extra: 1007/943,
  42832. bottom: 62/1069
  42833. }
  42834. },
  42835. },
  42836. [
  42837. {
  42838. name: "Macro",
  42839. height: math.unit(210, "miles"),
  42840. default: true
  42841. },
  42842. {
  42843. name: "Megamacro",
  42844. height: math.unit(210000, "miles")
  42845. },
  42846. ]
  42847. ))
  42848. characterMakers.push(() => makeCharacter(
  42849. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42850. {
  42851. front: {
  42852. height: math.unit(188, "feet"),
  42853. name: "Front",
  42854. image: {
  42855. source: "./media/characters/pyotr/front.svg",
  42856. extra: 1912/1826,
  42857. bottom: 18/1930
  42858. }
  42859. },
  42860. },
  42861. [
  42862. {
  42863. name: "Macro",
  42864. height: math.unit(188, "feet"),
  42865. default: true
  42866. },
  42867. {
  42868. name: "Megamacro",
  42869. height: math.unit(8, "miles")
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42875. {
  42876. side: {
  42877. height: math.unit(10, "feet"),
  42878. weight: math.unit(4500, "lb"),
  42879. name: "Side",
  42880. image: {
  42881. source: "./media/characters/ackart/side.svg",
  42882. extra: 1776/1668,
  42883. bottom: 116/1892
  42884. }
  42885. },
  42886. },
  42887. [
  42888. {
  42889. name: "Normal",
  42890. height: math.unit(10, "feet"),
  42891. default: true
  42892. },
  42893. ]
  42894. ))
  42895. characterMakers.push(() => makeCharacter(
  42896. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42897. {
  42898. side: {
  42899. height: math.unit(21, "feet"),
  42900. name: "Side",
  42901. image: {
  42902. source: "./media/characters/nolow/side.svg",
  42903. extra: 1484/1434,
  42904. bottom: 85/1569
  42905. }
  42906. },
  42907. sideErect: {
  42908. height: math.unit(21, "feet"),
  42909. name: "Side-erect",
  42910. image: {
  42911. source: "./media/characters/nolow/side-erect.svg",
  42912. extra: 1484/1434,
  42913. bottom: 85/1569
  42914. }
  42915. },
  42916. },
  42917. [
  42918. {
  42919. name: "Regular",
  42920. height: math.unit(12, "feet")
  42921. },
  42922. {
  42923. name: "Big Chee",
  42924. height: math.unit(21, "feet"),
  42925. default: true
  42926. },
  42927. ]
  42928. ))
  42929. characterMakers.push(() => makeCharacter(
  42930. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42931. {
  42932. front: {
  42933. height: math.unit(7, "feet"),
  42934. weight: math.unit(250, "lb"),
  42935. name: "Front",
  42936. image: {
  42937. source: "./media/characters/nines/front.svg",
  42938. extra: 1741/1607,
  42939. bottom: 41/1782
  42940. }
  42941. },
  42942. side: {
  42943. height: math.unit(7, "feet"),
  42944. weight: math.unit(250, "lb"),
  42945. name: "Side",
  42946. image: {
  42947. source: "./media/characters/nines/side.svg",
  42948. extra: 1854/1735,
  42949. bottom: 93/1947
  42950. }
  42951. },
  42952. back: {
  42953. height: math.unit(7, "feet"),
  42954. weight: math.unit(250, "lb"),
  42955. name: "Back",
  42956. image: {
  42957. source: "./media/characters/nines/back.svg",
  42958. extra: 1748/1615,
  42959. bottom: 20/1768
  42960. }
  42961. },
  42962. },
  42963. [
  42964. {
  42965. name: "Megamacro",
  42966. height: math.unit(99, "km"),
  42967. default: true
  42968. },
  42969. ]
  42970. ))
  42971. characterMakers.push(() => makeCharacter(
  42972. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42973. {
  42974. front: {
  42975. height: math.unit(5 + 10/12, "feet"),
  42976. weight: math.unit(210, "lb"),
  42977. name: "Front",
  42978. image: {
  42979. source: "./media/characters/zenith/front.svg",
  42980. extra: 1531/1452,
  42981. bottom: 198/1729
  42982. }
  42983. },
  42984. back: {
  42985. height: math.unit(5 + 10/12, "feet"),
  42986. weight: math.unit(210, "lb"),
  42987. name: "Back",
  42988. image: {
  42989. source: "./media/characters/zenith/back.svg",
  42990. extra: 1571/1487,
  42991. bottom: 75/1646
  42992. }
  42993. },
  42994. },
  42995. [
  42996. {
  42997. name: "Normal",
  42998. height: math.unit(5 + 10/12, "feet"),
  42999. default: true
  43000. }
  43001. ]
  43002. ))
  43003. characterMakers.push(() => makeCharacter(
  43004. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43005. {
  43006. front: {
  43007. height: math.unit(4, "feet"),
  43008. weight: math.unit(60, "lb"),
  43009. name: "Front",
  43010. image: {
  43011. source: "./media/characters/jasper/front.svg",
  43012. extra: 1450/1379,
  43013. bottom: 19/1469
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Normal",
  43020. height: math.unit(4, "feet"),
  43021. default: true
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(6 + 5/12, "feet"),
  43030. weight: math.unit(290, "lb"),
  43031. name: "Front",
  43032. image: {
  43033. source: "./media/characters/tiberius-thyben/front.svg",
  43034. extra: 757/739,
  43035. bottom: 39/796
  43036. }
  43037. },
  43038. },
  43039. [
  43040. {
  43041. name: "Micro",
  43042. height: math.unit(1.5, "inches")
  43043. },
  43044. {
  43045. name: "Normal",
  43046. height: math.unit(6 + 5/12, "feet"),
  43047. default: true
  43048. },
  43049. {
  43050. name: "Macro",
  43051. height: math.unit(300, "feet")
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(5 + 6/12, "feet"),
  43060. weight: math.unit(60, "kg"),
  43061. name: "Front",
  43062. image: {
  43063. source: "./media/characters/sabre/front.svg",
  43064. extra: 738/671,
  43065. bottom: 27/765
  43066. }
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Teeny",
  43072. height: math.unit(2, "inches")
  43073. },
  43074. {
  43075. name: "Smol",
  43076. height: math.unit(8, "inches")
  43077. },
  43078. {
  43079. name: "Normal",
  43080. height: math.unit(5 + 6/12, "feet"),
  43081. default: true
  43082. },
  43083. {
  43084. name: "Mini-Macro",
  43085. height: math.unit(15, "feet")
  43086. },
  43087. {
  43088. name: "Macro",
  43089. height: math.unit(50, "feet")
  43090. },
  43091. ]
  43092. ))
  43093. characterMakers.push(() => makeCharacter(
  43094. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43095. {
  43096. front: {
  43097. height: math.unit(6 + 4/12, "feet"),
  43098. weight: math.unit(170, "lb"),
  43099. name: "Front",
  43100. image: {
  43101. source: "./media/characters/charlie/front.svg",
  43102. extra: 1348/1228,
  43103. bottom: 15/1363
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Macro",
  43110. height: math.unit(1700, "meters"),
  43111. default: true
  43112. },
  43113. {
  43114. name: "MegaMacro",
  43115. height: math.unit(20400, "meters")
  43116. },
  43117. ]
  43118. ))
  43119. characterMakers.push(() => makeCharacter(
  43120. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43121. {
  43122. front: {
  43123. height: math.unit(6 + 3/12, "feet"),
  43124. weight: math.unit(185, "lb"),
  43125. name: "Front",
  43126. image: {
  43127. source: "./media/characters/susan-grant/front.svg",
  43128. extra: 1351/1327,
  43129. bottom: 26/1377
  43130. }
  43131. },
  43132. },
  43133. [
  43134. {
  43135. name: "Normal",
  43136. height: math.unit(6 + 3/12, "feet"),
  43137. default: true
  43138. },
  43139. {
  43140. name: "Macro",
  43141. height: math.unit(225, "feet")
  43142. },
  43143. {
  43144. name: "Macro+",
  43145. height: math.unit(900, "feet")
  43146. },
  43147. {
  43148. name: "MegaMacro",
  43149. height: math.unit(14400, "feet")
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43155. {
  43156. front: {
  43157. height: math.unit(5 + 4/12, "feet"),
  43158. weight: math.unit(110, "lb"),
  43159. name: "Front",
  43160. image: {
  43161. source: "./media/characters/axel-isanov/front.svg",
  43162. extra: 1096/1065,
  43163. bottom: 13/1109
  43164. }
  43165. },
  43166. },
  43167. [
  43168. {
  43169. name: "Normal",
  43170. height: math.unit(5 + 4/12, "feet"),
  43171. default: true
  43172. },
  43173. ]
  43174. ))
  43175. characterMakers.push(() => makeCharacter(
  43176. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43177. {
  43178. front: {
  43179. height: math.unit(9, "feet"),
  43180. weight: math.unit(467, "lb"),
  43181. name: "Front",
  43182. image: {
  43183. source: "./media/characters/necahual/front.svg",
  43184. extra: 920/873,
  43185. bottom: 26/946
  43186. }
  43187. },
  43188. back: {
  43189. height: math.unit(9, "feet"),
  43190. weight: math.unit(467, "lb"),
  43191. name: "Back",
  43192. image: {
  43193. source: "./media/characters/necahual/back.svg",
  43194. extra: 930/884,
  43195. bottom: 16/946
  43196. }
  43197. },
  43198. frontUnderwear: {
  43199. height: math.unit(9, "feet"),
  43200. weight: math.unit(467, "lb"),
  43201. name: "Front (Underwear)",
  43202. image: {
  43203. source: "./media/characters/necahual/front-underwear.svg",
  43204. extra: 920/873,
  43205. bottom: 26/946
  43206. }
  43207. },
  43208. frontDressed: {
  43209. height: math.unit(9, "feet"),
  43210. weight: math.unit(467, "lb"),
  43211. name: "Front (Dressed)",
  43212. image: {
  43213. source: "./media/characters/necahual/front-dressed.svg",
  43214. extra: 920/873,
  43215. bottom: 26/946
  43216. }
  43217. },
  43218. },
  43219. [
  43220. {
  43221. name: "Comprsesed",
  43222. height: math.unit(9, "feet")
  43223. },
  43224. {
  43225. name: "Natural",
  43226. height: math.unit(15, "feet"),
  43227. default: true
  43228. },
  43229. {
  43230. name: "Boosted",
  43231. height: math.unit(50, "feet")
  43232. },
  43233. {
  43234. name: "Boosted+",
  43235. height: math.unit(150, "feet")
  43236. },
  43237. {
  43238. name: "Max",
  43239. height: math.unit(500, "feet")
  43240. },
  43241. ]
  43242. ))
  43243. characterMakers.push(() => makeCharacter(
  43244. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43245. {
  43246. front: {
  43247. height: math.unit(22 + 1/12, "feet"),
  43248. weight: math.unit(3200, "lb"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/theo-acacia/front.svg",
  43252. extra: 1796/1741,
  43253. bottom: 83/1879
  43254. }
  43255. },
  43256. frontUnderwear: {
  43257. height: math.unit(22 + 1/12, "feet"),
  43258. weight: math.unit(3200, "lb"),
  43259. name: "Front (Underwear)",
  43260. image: {
  43261. source: "./media/characters/theo-acacia/front-underwear.svg",
  43262. extra: 1796/1741,
  43263. bottom: 83/1879
  43264. }
  43265. },
  43266. frontNude: {
  43267. height: math.unit(22 + 1/12, "feet"),
  43268. weight: math.unit(3200, "lb"),
  43269. name: "Front (Nude)",
  43270. image: {
  43271. source: "./media/characters/theo-acacia/front-nude.svg",
  43272. extra: 1796/1741,
  43273. bottom: 83/1879
  43274. }
  43275. },
  43276. },
  43277. [
  43278. {
  43279. name: "Normal",
  43280. height: math.unit(22 + 1/12, "feet"),
  43281. default: true
  43282. },
  43283. ]
  43284. ))
  43285. characterMakers.push(() => makeCharacter(
  43286. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43287. {
  43288. front: {
  43289. height: math.unit(20, "feet"),
  43290. name: "Front",
  43291. image: {
  43292. source: "./media/characters/astra/front.svg",
  43293. extra: 1850/1714,
  43294. bottom: 106/1956
  43295. }
  43296. },
  43297. frontUndressed: {
  43298. height: math.unit(20, "feet"),
  43299. name: "Front (Undressed)",
  43300. image: {
  43301. source: "./media/characters/astra/front-undressed.svg",
  43302. extra: 1926/1749,
  43303. bottom: 0/1926
  43304. }
  43305. },
  43306. hand: {
  43307. height: math.unit(1.53, "feet"),
  43308. name: "Hand",
  43309. image: {
  43310. source: "./media/characters/astra/hand.svg"
  43311. }
  43312. },
  43313. paw: {
  43314. height: math.unit(1.53, "feet"),
  43315. name: "Paw",
  43316. image: {
  43317. source: "./media/characters/astra/paw.svg"
  43318. }
  43319. },
  43320. },
  43321. [
  43322. {
  43323. name: "Smallest",
  43324. height: math.unit(20, "feet")
  43325. },
  43326. {
  43327. name: "Normal",
  43328. height: math.unit(1e9, "miles"),
  43329. default: true
  43330. },
  43331. {
  43332. name: "Larger",
  43333. height: math.unit(5, "multiverses")
  43334. },
  43335. {
  43336. name: "Largest",
  43337. height: math.unit(1e9, "multiverses")
  43338. },
  43339. ]
  43340. ))
  43341. characterMakers.push(() => makeCharacter(
  43342. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43343. {
  43344. front: {
  43345. height: math.unit(8, "feet"),
  43346. name: "Front",
  43347. image: {
  43348. source: "./media/characters/breanna/front.svg",
  43349. extra: 1912/1632,
  43350. bottom: 33/1945
  43351. }
  43352. },
  43353. },
  43354. [
  43355. {
  43356. name: "Smallest",
  43357. height: math.unit(8, "feet")
  43358. },
  43359. {
  43360. name: "Normal",
  43361. height: math.unit(1, "mile"),
  43362. default: true
  43363. },
  43364. {
  43365. name: "Maximum",
  43366. height: math.unit(1500000000000, "lightyears")
  43367. },
  43368. ]
  43369. ))
  43370. characterMakers.push(() => makeCharacter(
  43371. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43372. {
  43373. front: {
  43374. height: math.unit(5 + 11/12, "feet"),
  43375. weight: math.unit(155, "lb"),
  43376. name: "Front",
  43377. image: {
  43378. source: "./media/characters/cai/front.svg",
  43379. extra: 1823/1702,
  43380. bottom: 32/1855
  43381. }
  43382. },
  43383. back: {
  43384. height: math.unit(5 + 11/12, "feet"),
  43385. weight: math.unit(155, "lb"),
  43386. name: "Back",
  43387. image: {
  43388. source: "./media/characters/cai/back.svg",
  43389. extra: 1809/1708,
  43390. bottom: 31/1840
  43391. }
  43392. },
  43393. },
  43394. [
  43395. {
  43396. name: "Normal",
  43397. height: math.unit(5 + 11/12, "feet"),
  43398. default: true
  43399. },
  43400. {
  43401. name: "Big",
  43402. height: math.unit(15, "feet")
  43403. },
  43404. {
  43405. name: "Macro",
  43406. height: math.unit(200, "feet")
  43407. },
  43408. ]
  43409. ))
  43410. characterMakers.push(() => makeCharacter(
  43411. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43412. {
  43413. front: {
  43414. height: math.unit(5 + 6/12, "feet"),
  43415. weight: math.unit(160, "lb"),
  43416. name: "Front",
  43417. image: {
  43418. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43419. extra: 1227/1174,
  43420. bottom: 37/1264
  43421. }
  43422. },
  43423. },
  43424. [
  43425. {
  43426. name: "Macro",
  43427. height: math.unit(444, "meters"),
  43428. default: true
  43429. },
  43430. ]
  43431. ))
  43432. characterMakers.push(() => makeCharacter(
  43433. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43434. {
  43435. front: {
  43436. height: math.unit(18 + 7/12, "feet"),
  43437. name: "Front",
  43438. image: {
  43439. source: "./media/characters/rex/front.svg",
  43440. extra: 1941/1807,
  43441. bottom: 66/2007
  43442. }
  43443. },
  43444. back: {
  43445. height: math.unit(18 + 7/12, "feet"),
  43446. name: "Back",
  43447. image: {
  43448. source: "./media/characters/rex/back.svg",
  43449. extra: 1937/1822,
  43450. bottom: 42/1979
  43451. }
  43452. },
  43453. boot: {
  43454. height: math.unit(3.45, "feet"),
  43455. name: "Boot",
  43456. image: {
  43457. source: "./media/characters/rex/boot.svg"
  43458. }
  43459. },
  43460. paw: {
  43461. height: math.unit(4.17, "feet"),
  43462. name: "Paw",
  43463. image: {
  43464. source: "./media/characters/rex/paw.svg"
  43465. }
  43466. },
  43467. head: {
  43468. height: math.unit(6.728, "feet"),
  43469. name: "Head",
  43470. image: {
  43471. source: "./media/characters/rex/head.svg"
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Nano",
  43478. height: math.unit(18 + 7/12, "feet")
  43479. },
  43480. {
  43481. name: "Micro",
  43482. height: math.unit(1.5, "megameters")
  43483. },
  43484. {
  43485. name: "Normal",
  43486. height: math.unit(440, "megameters"),
  43487. default: true
  43488. },
  43489. {
  43490. name: "Macro",
  43491. height: math.unit(2.5, "gigameters")
  43492. },
  43493. {
  43494. name: "Gigamacro",
  43495. height: math.unit(2, "galaxies")
  43496. },
  43497. ]
  43498. ))
  43499. characterMakers.push(() => makeCharacter(
  43500. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43501. {
  43502. side: {
  43503. height: math.unit(32, "feet"),
  43504. weight: math.unit(250000, "lb"),
  43505. name: "Side",
  43506. image: {
  43507. source: "./media/characters/silverwing/side.svg",
  43508. extra: 1100/1019,
  43509. bottom: 204/1304
  43510. }
  43511. },
  43512. },
  43513. [
  43514. {
  43515. name: "Normal",
  43516. height: math.unit(32, "feet"),
  43517. default: true
  43518. },
  43519. ]
  43520. ))
  43521. characterMakers.push(() => makeCharacter(
  43522. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43523. {
  43524. front: {
  43525. height: math.unit(6 + 6/12, "feet"),
  43526. weight: math.unit(350, "lb"),
  43527. name: "Front",
  43528. image: {
  43529. source: "./media/characters/tristan-hawthorne/front.svg",
  43530. extra: 1159/1124,
  43531. bottom: 37/1196
  43532. },
  43533. form: "labrador",
  43534. default: true
  43535. },
  43536. skunkFront: {
  43537. height: math.unit(4 + 6/12, "feet"),
  43538. weight: math.unit(120, "lb"),
  43539. name: "Front",
  43540. image: {
  43541. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43542. extra: 1609/1551,
  43543. bottom: 169/1778
  43544. },
  43545. form: "skunk",
  43546. default: true
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Normal",
  43552. height: math.unit(6 + 6/12, "feet"),
  43553. form: "labrador",
  43554. default: true
  43555. },
  43556. {
  43557. name: "Normal",
  43558. height: math.unit(4 + 6/12, "feet"),
  43559. form: "skunk",
  43560. default: true
  43561. },
  43562. ],
  43563. {
  43564. "labrador": {
  43565. name: "Labrador",
  43566. default: true
  43567. },
  43568. "skunk": {
  43569. name: "Skunk"
  43570. }
  43571. }
  43572. ))
  43573. characterMakers.push(() => makeCharacter(
  43574. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43575. {
  43576. front: {
  43577. height: math.unit(5 + 11/12, "feet"),
  43578. weight: math.unit(190, "lb"),
  43579. name: "Front",
  43580. image: {
  43581. source: "./media/characters/mizu/front.svg",
  43582. extra: 1988/1788,
  43583. bottom: 14/2002
  43584. }
  43585. },
  43586. },
  43587. [
  43588. {
  43589. name: "Normal",
  43590. height: math.unit(5 + 11/12, "feet"),
  43591. default: true
  43592. },
  43593. ]
  43594. ))
  43595. characterMakers.push(() => makeCharacter(
  43596. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43597. {
  43598. front: {
  43599. height: math.unit(1.7, "feet"),
  43600. weight: math.unit(50, "lb"),
  43601. name: "Front",
  43602. image: {
  43603. source: "./media/characters/dechroma/front.svg",
  43604. extra: 1095/859,
  43605. bottom: 64/1159
  43606. }
  43607. },
  43608. },
  43609. [
  43610. {
  43611. name: "Normal",
  43612. height: math.unit(1.7, "feet"),
  43613. default: true
  43614. },
  43615. ]
  43616. ))
  43617. characterMakers.push(() => makeCharacter(
  43618. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43619. {
  43620. side: {
  43621. height: math.unit(30, "feet"),
  43622. name: "Side",
  43623. image: {
  43624. source: "./media/characters/veluren-thanazel/side.svg",
  43625. extra: 1611/633,
  43626. bottom: 118/1729
  43627. }
  43628. },
  43629. front: {
  43630. height: math.unit(30, "feet"),
  43631. name: "Front",
  43632. image: {
  43633. source: "./media/characters/veluren-thanazel/front.svg",
  43634. extra: 1486/636,
  43635. bottom: 238/1724
  43636. }
  43637. },
  43638. head: {
  43639. height: math.unit(21.4, "feet"),
  43640. name: "Head",
  43641. image: {
  43642. source: "./media/characters/veluren-thanazel/head.svg"
  43643. }
  43644. },
  43645. genitals: {
  43646. height: math.unit(19.4, "feet"),
  43647. name: "Genitals",
  43648. image: {
  43649. source: "./media/characters/veluren-thanazel/genitals.svg"
  43650. }
  43651. },
  43652. },
  43653. [
  43654. {
  43655. name: "Social",
  43656. height: math.unit(6, "feet")
  43657. },
  43658. {
  43659. name: "Play",
  43660. height: math.unit(12, "feet")
  43661. },
  43662. {
  43663. name: "True",
  43664. height: math.unit(30, "feet"),
  43665. default: true
  43666. },
  43667. ]
  43668. ))
  43669. characterMakers.push(() => makeCharacter(
  43670. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43671. {
  43672. front: {
  43673. height: math.unit(7 + 6/12, "feet"),
  43674. weight: math.unit(500, "kg"),
  43675. name: "Front",
  43676. image: {
  43677. source: "./media/characters/arcturas/front.svg",
  43678. extra: 1700/1500,
  43679. bottom: 145/1845
  43680. }
  43681. },
  43682. },
  43683. [
  43684. {
  43685. name: "Normal",
  43686. height: math.unit(7 + 6/12, "feet"),
  43687. default: true
  43688. },
  43689. ]
  43690. ))
  43691. characterMakers.push(() => makeCharacter(
  43692. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43693. {
  43694. side: {
  43695. height: math.unit(6, "feet"),
  43696. weight: math.unit(2, "tons"),
  43697. name: "Side",
  43698. image: {
  43699. source: "./media/characters/vitaen/side.svg",
  43700. extra: 1157/617,
  43701. bottom: 122/1279
  43702. }
  43703. },
  43704. },
  43705. [
  43706. {
  43707. name: "Normal",
  43708. height: math.unit(6, "feet"),
  43709. default: true
  43710. },
  43711. ]
  43712. ))
  43713. characterMakers.push(() => makeCharacter(
  43714. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43715. {
  43716. front: {
  43717. height: math.unit(19, "feet"),
  43718. name: "Front",
  43719. image: {
  43720. source: "./media/characters/fia-dreamweaver/front.svg",
  43721. extra: 1630/1504,
  43722. bottom: 25/1655
  43723. }
  43724. },
  43725. },
  43726. [
  43727. {
  43728. name: "Normal",
  43729. height: math.unit(19, "feet"),
  43730. default: true
  43731. },
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43736. {
  43737. front: {
  43738. height: math.unit(5 + 4/12, "feet"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/artan/front.svg",
  43742. extra: 1618/1535,
  43743. bottom: 46/1664
  43744. }
  43745. },
  43746. back: {
  43747. height: math.unit(5 + 4/12, "feet"),
  43748. name: "Back",
  43749. image: {
  43750. source: "./media/characters/artan/back.svg",
  43751. extra: 1618/1543,
  43752. bottom: 31/1649
  43753. }
  43754. },
  43755. },
  43756. [
  43757. {
  43758. name: "Normal",
  43759. height: math.unit(5 + 4/12, "feet"),
  43760. default: true
  43761. },
  43762. ]
  43763. ))
  43764. characterMakers.push(() => makeCharacter(
  43765. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43766. {
  43767. side: {
  43768. height: math.unit(182, "cm"),
  43769. weight: math.unit(1000, "lb"),
  43770. name: "Side",
  43771. image: {
  43772. source: "./media/characters/silver-dragon/side.svg",
  43773. extra: 710/287,
  43774. bottom: 88/798
  43775. }
  43776. },
  43777. },
  43778. [
  43779. {
  43780. name: "Normal",
  43781. height: math.unit(182, "cm"),
  43782. default: true
  43783. },
  43784. ]
  43785. ))
  43786. characterMakers.push(() => makeCharacter(
  43787. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43788. {
  43789. side: {
  43790. height: math.unit(6 + 6/12, "feet"),
  43791. weight: math.unit(1.5, "tons"),
  43792. name: "Side",
  43793. image: {
  43794. source: "./media/characters/zephyr/side.svg",
  43795. extra: 1433/586,
  43796. bottom: 109/1542
  43797. }
  43798. },
  43799. },
  43800. [
  43801. {
  43802. name: "Normal",
  43803. height: math.unit(6 + 6/12, "feet"),
  43804. default: true
  43805. },
  43806. ]
  43807. ))
  43808. characterMakers.push(() => makeCharacter(
  43809. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43810. {
  43811. side: {
  43812. height: math.unit(1, "feet"),
  43813. name: "Side",
  43814. image: {
  43815. source: "./media/characters/vixye/side.svg",
  43816. extra: 632/541,
  43817. bottom: 0/632
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(1, "feet"),
  43825. default: true
  43826. },
  43827. {
  43828. name: "True",
  43829. height: math.unit(1e15, "multiverses")
  43830. },
  43831. ]
  43832. ))
  43833. characterMakers.push(() => makeCharacter(
  43834. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43835. {
  43836. front: {
  43837. height: math.unit(8 + 2/12, "feet"),
  43838. weight: math.unit(650, "lb"),
  43839. name: "Front",
  43840. image: {
  43841. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43842. extra: 1174/1137,
  43843. bottom: 82/1256
  43844. }
  43845. },
  43846. back: {
  43847. height: math.unit(8 + 2/12, "feet"),
  43848. weight: math.unit(650, "lb"),
  43849. name: "Back",
  43850. image: {
  43851. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43852. extra: 1204/1157,
  43853. bottom: 46/1250
  43854. }
  43855. },
  43856. },
  43857. [
  43858. {
  43859. name: "Wildform",
  43860. height: math.unit(8 + 2/12, "feet"),
  43861. default: true
  43862. },
  43863. ]
  43864. ))
  43865. characterMakers.push(() => makeCharacter(
  43866. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43867. {
  43868. front: {
  43869. height: math.unit(18, "feet"),
  43870. name: "Front",
  43871. image: {
  43872. source: "./media/characters/cyphin/front.svg",
  43873. extra: 970/886,
  43874. bottom: 42/1012
  43875. }
  43876. },
  43877. back: {
  43878. height: math.unit(18, "feet"),
  43879. name: "Back",
  43880. image: {
  43881. source: "./media/characters/cyphin/back.svg",
  43882. extra: 1009/894,
  43883. bottom: 24/1033
  43884. }
  43885. },
  43886. head: {
  43887. height: math.unit(5.05, "feet"),
  43888. name: "Head",
  43889. image: {
  43890. source: "./media/characters/cyphin/head.svg"
  43891. }
  43892. },
  43893. tailbud: {
  43894. height: math.unit(5, "feet"),
  43895. name: "Tailbud",
  43896. image: {
  43897. source: "./media/characters/cyphin/tailbud.svg"
  43898. }
  43899. },
  43900. },
  43901. [
  43902. ]
  43903. ))
  43904. characterMakers.push(() => makeCharacter(
  43905. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43906. {
  43907. side: {
  43908. height: math.unit(10, "feet"),
  43909. weight: math.unit(6, "tons"),
  43910. name: "Side",
  43911. image: {
  43912. source: "./media/characters/raijin/side.svg",
  43913. extra: 1529/613,
  43914. bottom: 337/1866
  43915. }
  43916. },
  43917. },
  43918. [
  43919. {
  43920. name: "Normal",
  43921. height: math.unit(10, "feet"),
  43922. default: true
  43923. },
  43924. ]
  43925. ))
  43926. characterMakers.push(() => makeCharacter(
  43927. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43928. {
  43929. side: {
  43930. height: math.unit(9, "feet"),
  43931. name: "Side",
  43932. image: {
  43933. source: "./media/characters/nilghais/side.svg",
  43934. extra: 1047/744,
  43935. bottom: 91/1138
  43936. }
  43937. },
  43938. head: {
  43939. height: math.unit(3.14, "feet"),
  43940. name: "Head",
  43941. image: {
  43942. source: "./media/characters/nilghais/head.svg"
  43943. }
  43944. },
  43945. mouth: {
  43946. height: math.unit(4.6, "feet"),
  43947. name: "Mouth",
  43948. image: {
  43949. source: "./media/characters/nilghais/mouth.svg"
  43950. }
  43951. },
  43952. wings: {
  43953. height: math.unit(24, "feet"),
  43954. name: "Wings",
  43955. image: {
  43956. source: "./media/characters/nilghais/wings.svg"
  43957. }
  43958. },
  43959. ass: {
  43960. height: math.unit(6.12, "feet"),
  43961. name: "Ass",
  43962. image: {
  43963. source: "./media/characters/nilghais/ass.svg"
  43964. }
  43965. },
  43966. },
  43967. [
  43968. {
  43969. name: "Normal",
  43970. height: math.unit(9, "feet"),
  43971. default: true
  43972. },
  43973. ]
  43974. ))
  43975. characterMakers.push(() => makeCharacter(
  43976. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43977. {
  43978. regular: {
  43979. height: math.unit(16 + 2/12, "feet"),
  43980. weight: math.unit(2300, "lb"),
  43981. name: "Regular",
  43982. image: {
  43983. source: "./media/characters/zolgar/regular.svg",
  43984. extra: 1246/1004,
  43985. bottom: 124/1370
  43986. }
  43987. },
  43988. boxers: {
  43989. height: math.unit(16 + 2/12, "feet"),
  43990. weight: math.unit(2300, "lb"),
  43991. name: "Boxers",
  43992. image: {
  43993. source: "./media/characters/zolgar/boxers.svg",
  43994. extra: 1246/1004,
  43995. bottom: 124/1370
  43996. }
  43997. },
  43998. armored: {
  43999. height: math.unit(16 + 2/12, "feet"),
  44000. weight: math.unit(2300, "lb"),
  44001. name: "Armored",
  44002. image: {
  44003. source: "./media/characters/zolgar/armored.svg",
  44004. extra: 1246/1004,
  44005. bottom: 124/1370
  44006. }
  44007. },
  44008. goth: {
  44009. height: math.unit(16 + 2/12, "feet"),
  44010. weight: math.unit(2300, "lb"),
  44011. name: "Goth",
  44012. image: {
  44013. source: "./media/characters/zolgar/goth.svg",
  44014. extra: 1246/1004,
  44015. bottom: 124/1370
  44016. }
  44017. },
  44018. },
  44019. [
  44020. {
  44021. name: "Shrunken Down",
  44022. height: math.unit(9 + 2/12, "feet")
  44023. },
  44024. {
  44025. name: "Normal",
  44026. height: math.unit(16 + 2/12, "feet"),
  44027. default: true
  44028. },
  44029. ]
  44030. ))
  44031. characterMakers.push(() => makeCharacter(
  44032. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44033. {
  44034. front: {
  44035. height: math.unit(6, "feet"),
  44036. weight: math.unit(168, "lb"),
  44037. name: "Front",
  44038. image: {
  44039. source: "./media/characters/luca/front.svg",
  44040. extra: 841/667,
  44041. bottom: 102/943
  44042. }
  44043. },
  44044. },
  44045. [
  44046. {
  44047. name: "Normal",
  44048. height: math.unit(6, "feet"),
  44049. default: true
  44050. },
  44051. ]
  44052. ))
  44053. characterMakers.push(() => makeCharacter(
  44054. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44055. {
  44056. side: {
  44057. height: math.unit(7 + 3/12, "feet"),
  44058. weight: math.unit(312, "lb"),
  44059. name: "Side",
  44060. image: {
  44061. source: "./media/characters/zezo/side.svg",
  44062. extra: 1192/1067,
  44063. bottom: 63/1255
  44064. }
  44065. },
  44066. },
  44067. [
  44068. {
  44069. name: "Normal",
  44070. height: math.unit(7 + 3/12, "feet"),
  44071. default: true
  44072. },
  44073. ]
  44074. ))
  44075. characterMakers.push(() => makeCharacter(
  44076. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44077. {
  44078. front: {
  44079. height: math.unit(5 + 5/12, "feet"),
  44080. weight: math.unit(170, "lb"),
  44081. name: "Front",
  44082. image: {
  44083. source: "./media/characters/mayso/front.svg",
  44084. extra: 1215/1108,
  44085. bottom: 16/1231
  44086. }
  44087. },
  44088. },
  44089. [
  44090. {
  44091. name: "Normal",
  44092. height: math.unit(5 + 5/12, "feet"),
  44093. default: true
  44094. },
  44095. ]
  44096. ))
  44097. characterMakers.push(() => makeCharacter(
  44098. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44099. {
  44100. front: {
  44101. height: math.unit(4 + 3/12, "feet"),
  44102. weight: math.unit(80, "lb"),
  44103. name: "Front",
  44104. image: {
  44105. source: "./media/characters/hess/front.svg",
  44106. extra: 1200/1123,
  44107. bottom: 16/1216
  44108. }
  44109. },
  44110. },
  44111. [
  44112. {
  44113. name: "Normal",
  44114. height: math.unit(4 + 3/12, "feet"),
  44115. default: true
  44116. },
  44117. ]
  44118. ))
  44119. characterMakers.push(() => makeCharacter(
  44120. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44121. {
  44122. front: {
  44123. height: math.unit(1.9, "meters"),
  44124. name: "Front",
  44125. image: {
  44126. source: "./media/characters/ashgar/front.svg",
  44127. extra: 1177/1146,
  44128. bottom: 99/1276
  44129. }
  44130. },
  44131. back: {
  44132. height: math.unit(1.9, "meters"),
  44133. name: "Back",
  44134. image: {
  44135. source: "./media/characters/ashgar/back.svg",
  44136. extra: 1201/1183,
  44137. bottom: 53/1254
  44138. }
  44139. },
  44140. feral: {
  44141. height: math.unit(1.4, "meters"),
  44142. name: "Feral",
  44143. image: {
  44144. source: "./media/characters/ashgar/feral.svg",
  44145. extra: 370/345,
  44146. bottom: 45/415
  44147. }
  44148. },
  44149. },
  44150. [
  44151. {
  44152. name: "Normal",
  44153. height: math.unit(1.9, "meters"),
  44154. default: true
  44155. },
  44156. ]
  44157. ))
  44158. characterMakers.push(() => makeCharacter(
  44159. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44160. {
  44161. regular: {
  44162. height: math.unit(6, "feet"),
  44163. weight: math.unit(220, "lb"),
  44164. name: "Regular",
  44165. image: {
  44166. source: "./media/characters/phillip/regular.svg",
  44167. extra: 1373/1277,
  44168. bottom: 75/1448
  44169. }
  44170. },
  44171. dressed: {
  44172. height: math.unit(6, "feet"),
  44173. weight: math.unit(220, "lb"),
  44174. name: "Dressed",
  44175. image: {
  44176. source: "./media/characters/phillip/dressed.svg",
  44177. extra: 1373/1277,
  44178. bottom: 75/1448
  44179. }
  44180. },
  44181. paw: {
  44182. height: math.unit(1.44, "feet"),
  44183. name: "Paw",
  44184. image: {
  44185. source: "./media/characters/phillip/paw.svg"
  44186. }
  44187. },
  44188. },
  44189. [
  44190. {
  44191. name: "Normal",
  44192. height: math.unit(6, "feet"),
  44193. default: true
  44194. },
  44195. ]
  44196. ))
  44197. characterMakers.push(() => makeCharacter(
  44198. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44199. {
  44200. side: {
  44201. height: math.unit(42, "feet"),
  44202. name: "Side",
  44203. image: {
  44204. source: "./media/characters/uvula/side.svg",
  44205. extra: 683/586,
  44206. bottom: 60/743
  44207. }
  44208. },
  44209. front: {
  44210. height: math.unit(42, "feet"),
  44211. name: "Front",
  44212. image: {
  44213. source: "./media/characters/uvula/front.svg",
  44214. extra: 705/613,
  44215. bottom: 54/759
  44216. }
  44217. },
  44218. maw: {
  44219. height: math.unit(23.5, "feet"),
  44220. name: "Maw",
  44221. image: {
  44222. source: "./media/characters/uvula/maw.svg"
  44223. }
  44224. },
  44225. },
  44226. [
  44227. {
  44228. name: "Original Size",
  44229. height: math.unit(14, "inches")
  44230. },
  44231. {
  44232. name: "Human Size",
  44233. height: math.unit(6, "feet")
  44234. },
  44235. {
  44236. name: "Big",
  44237. height: math.unit(42, "feet"),
  44238. default: true
  44239. },
  44240. {
  44241. name: "Bigger",
  44242. height: math.unit(100, "feet")
  44243. },
  44244. ]
  44245. ))
  44246. characterMakers.push(() => makeCharacter(
  44247. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44248. {
  44249. front: {
  44250. height: math.unit(5 + 11/12, "feet"),
  44251. name: "Front",
  44252. image: {
  44253. source: "./media/characters/lannah/front.svg",
  44254. extra: 1208/1113,
  44255. bottom: 97/1305
  44256. }
  44257. },
  44258. },
  44259. [
  44260. {
  44261. name: "Normal",
  44262. height: math.unit(5 + 11/12, "feet"),
  44263. default: true
  44264. },
  44265. ]
  44266. ))
  44267. characterMakers.push(() => makeCharacter(
  44268. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44269. {
  44270. front: {
  44271. height: math.unit(6 + 3/12, "feet"),
  44272. weight: math.unit(3.5, "tons"),
  44273. name: "Front",
  44274. image: {
  44275. source: "./media/characters/emberflame/front.svg",
  44276. extra: 1198/672,
  44277. bottom: 82/1280
  44278. }
  44279. },
  44280. side: {
  44281. height: math.unit(6 + 3/12, "feet"),
  44282. weight: math.unit(3.5, "tons"),
  44283. name: "Side",
  44284. image: {
  44285. source: "./media/characters/emberflame/side.svg",
  44286. extra: 938/527,
  44287. bottom: 56/994
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Normal",
  44294. height: math.unit(6 + 3/12, "feet"),
  44295. default: true
  44296. },
  44297. ]
  44298. ))
  44299. characterMakers.push(() => makeCharacter(
  44300. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44301. {
  44302. side: {
  44303. height: math.unit(17.5, "feet"),
  44304. weight: math.unit(35, "tons"),
  44305. name: "Side",
  44306. image: {
  44307. source: "./media/characters/sophie-ambrose/side.svg",
  44308. extra: 1573/1242,
  44309. bottom: 71/1644
  44310. }
  44311. },
  44312. maw: {
  44313. height: math.unit(7.4, "feet"),
  44314. name: "Maw",
  44315. image: {
  44316. source: "./media/characters/sophie-ambrose/maw.svg"
  44317. }
  44318. },
  44319. },
  44320. [
  44321. {
  44322. name: "Normal",
  44323. height: math.unit(17.5, "feet"),
  44324. default: true
  44325. },
  44326. ]
  44327. ))
  44328. characterMakers.push(() => makeCharacter(
  44329. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44330. {
  44331. front: {
  44332. height: math.unit(280, "feet"),
  44333. weight: math.unit(550, "tons"),
  44334. name: "Front",
  44335. image: {
  44336. source: "./media/characters/king-mugi/front.svg",
  44337. extra: 1102/947,
  44338. bottom: 104/1206
  44339. }
  44340. },
  44341. },
  44342. [
  44343. {
  44344. name: "King Mugi",
  44345. height: math.unit(280, "feet"),
  44346. default: true
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44352. {
  44353. front: {
  44354. height: math.unit(64, "meters"),
  44355. name: "Front",
  44356. image: {
  44357. source: "./media/characters/nova-fox/front.svg",
  44358. extra: 1310/1246,
  44359. bottom: 65/1375
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Macro",
  44366. height: math.unit(64, "meters"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44373. {
  44374. front: {
  44375. height: math.unit(6 + 3/12, "feet"),
  44376. weight: math.unit(170, "lb"),
  44377. name: "Front",
  44378. image: {
  44379. source: "./media/characters/sam-bat/front.svg",
  44380. extra: 1601/1411,
  44381. bottom: 125/1726
  44382. }
  44383. },
  44384. back: {
  44385. height: math.unit(6 + 3/12, "feet"),
  44386. weight: math.unit(170, "lb"),
  44387. name: "Back",
  44388. image: {
  44389. source: "./media/characters/sam-bat/back.svg",
  44390. extra: 1577/1405,
  44391. bottom: 58/1635
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Normal",
  44398. height: math.unit(6 + 3/12, "feet"),
  44399. default: true
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44405. {
  44406. front: {
  44407. height: math.unit(59, "feet"),
  44408. weight: math.unit(40000, "lb"),
  44409. name: "Front",
  44410. image: {
  44411. source: "./media/characters/inari/front.svg",
  44412. extra: 1884/1350,
  44413. bottom: 95/1979
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Gigantamax",
  44420. height: math.unit(59, "feet"),
  44421. default: true
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44427. {
  44428. front: {
  44429. height: math.unit(5 + 8/12, "feet"),
  44430. name: "Front",
  44431. image: {
  44432. source: "./media/characters/elizabeth/front.svg",
  44433. extra: 1395/1298,
  44434. bottom: 54/1449
  44435. }
  44436. },
  44437. mouth: {
  44438. height: math.unit(1.97, "feet"),
  44439. name: "Mouth",
  44440. image: {
  44441. source: "./media/characters/elizabeth/mouth.svg"
  44442. }
  44443. },
  44444. foot: {
  44445. height: math.unit(1.17, "feet"),
  44446. name: "Foot",
  44447. image: {
  44448. source: "./media/characters/elizabeth/foot.svg"
  44449. }
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Normal",
  44455. height: math.unit(5 + 8/12, "feet"),
  44456. default: true
  44457. },
  44458. {
  44459. name: "Minimacro",
  44460. height: math.unit(18, "feet")
  44461. },
  44462. {
  44463. name: "Macro",
  44464. height: math.unit(180, "feet")
  44465. },
  44466. ]
  44467. ))
  44468. characterMakers.push(() => makeCharacter(
  44469. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44470. {
  44471. front: {
  44472. height: math.unit(5 + 2/12, "feet"),
  44473. name: "Front",
  44474. image: {
  44475. source: "./media/characters/october-gossamer/front.svg",
  44476. extra: 505/454,
  44477. bottom: 7/512
  44478. }
  44479. },
  44480. back: {
  44481. height: math.unit(5 + 2/12, "feet"),
  44482. name: "Back",
  44483. image: {
  44484. source: "./media/characters/october-gossamer/back.svg",
  44485. extra: 501/454,
  44486. bottom: 11/512
  44487. }
  44488. },
  44489. },
  44490. [
  44491. {
  44492. name: "Normal",
  44493. height: math.unit(5 + 2/12, "feet"),
  44494. default: true
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44500. {
  44501. front: {
  44502. height: math.unit(5, "feet"),
  44503. name: "Front",
  44504. image: {
  44505. source: "./media/characters/epiglottis/front.svg",
  44506. extra: 923/849,
  44507. bottom: 17/940
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Original Size",
  44514. height: math.unit(10, "inches")
  44515. },
  44516. {
  44517. name: "Human Size",
  44518. height: math.unit(5, "feet"),
  44519. default: true
  44520. },
  44521. {
  44522. name: "Big",
  44523. height: math.unit(25, "feet")
  44524. },
  44525. {
  44526. name: "Bigger",
  44527. height: math.unit(50, "feet")
  44528. },
  44529. {
  44530. name: "oh lawd",
  44531. height: math.unit(75, "feet")
  44532. },
  44533. ]
  44534. ))
  44535. characterMakers.push(() => makeCharacter(
  44536. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44537. {
  44538. front: {
  44539. height: math.unit(2 + 4/12, "feet"),
  44540. weight: math.unit(60, "lb"),
  44541. name: "Front",
  44542. image: {
  44543. source: "./media/characters/lerm/front.svg",
  44544. extra: 796/790,
  44545. bottom: 79/875
  44546. }
  44547. },
  44548. },
  44549. [
  44550. {
  44551. name: "Normal",
  44552. height: math.unit(2 + 4/12, "feet"),
  44553. default: true
  44554. },
  44555. ]
  44556. ))
  44557. characterMakers.push(() => makeCharacter(
  44558. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44559. {
  44560. front: {
  44561. height: math.unit(5.5, "feet"),
  44562. weight: math.unit(130, "lb"),
  44563. name: "Front",
  44564. image: {
  44565. source: "./media/characters/xena-nebadon/front.svg",
  44566. extra: 1828/1730,
  44567. bottom: 79/1907
  44568. }
  44569. },
  44570. },
  44571. [
  44572. {
  44573. name: "Tiny Puppy",
  44574. height: math.unit(3, "inches")
  44575. },
  44576. {
  44577. name: "Normal",
  44578. height: math.unit(5.5, "feet"),
  44579. default: true
  44580. },
  44581. {
  44582. name: "Lotta Lady",
  44583. height: math.unit(12, "feet")
  44584. },
  44585. {
  44586. name: "Pretty Big",
  44587. height: math.unit(100, "feet")
  44588. },
  44589. {
  44590. name: "Big",
  44591. height: math.unit(500, "feet")
  44592. },
  44593. {
  44594. name: "Skyscraper Toys",
  44595. height: math.unit(2500, "feet")
  44596. },
  44597. {
  44598. name: "Plane Catcher",
  44599. height: math.unit(8, "miles")
  44600. },
  44601. {
  44602. name: "Planet Toys",
  44603. height: math.unit(15, "earths")
  44604. },
  44605. {
  44606. name: "Stardust",
  44607. height: math.unit(0.25, "galaxies")
  44608. },
  44609. {
  44610. name: "Snacks",
  44611. height: math.unit(70, "universes")
  44612. },
  44613. ]
  44614. ))
  44615. characterMakers.push(() => makeCharacter(
  44616. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44617. {
  44618. front: {
  44619. height: math.unit(1.6, "meters"),
  44620. weight: math.unit(60, "kg"),
  44621. name: "Front",
  44622. image: {
  44623. source: "./media/characters/bounty/front.svg",
  44624. extra: 1426/1308,
  44625. bottom: 15/1441
  44626. }
  44627. },
  44628. back: {
  44629. height: math.unit(1.6, "meters"),
  44630. weight: math.unit(60, "kg"),
  44631. name: "Back",
  44632. image: {
  44633. source: "./media/characters/bounty/back.svg",
  44634. extra: 1417/1307,
  44635. bottom: 8/1425
  44636. }
  44637. },
  44638. },
  44639. [
  44640. {
  44641. name: "Normal",
  44642. height: math.unit(1.6, "meters"),
  44643. default: true
  44644. },
  44645. {
  44646. name: "Macro",
  44647. height: math.unit(300, "meters")
  44648. },
  44649. ]
  44650. ))
  44651. characterMakers.push(() => makeCharacter(
  44652. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44653. {
  44654. front: {
  44655. height: math.unit(2 + 8/12, "feet"),
  44656. weight: math.unit(15, "lb"),
  44657. name: "Front",
  44658. image: {
  44659. source: "./media/characters/mochi/front.svg",
  44660. extra: 1022/852,
  44661. bottom: 435/1457
  44662. }
  44663. },
  44664. back: {
  44665. height: math.unit(2 + 8/12, "feet"),
  44666. weight: math.unit(15, "lb"),
  44667. name: "Back",
  44668. image: {
  44669. source: "./media/characters/mochi/back.svg",
  44670. extra: 1335/1119,
  44671. bottom: 39/1374
  44672. }
  44673. },
  44674. bird: {
  44675. height: math.unit(2 + 8/12, "feet"),
  44676. weight: math.unit(15, "lb"),
  44677. name: "Bird",
  44678. image: {
  44679. source: "./media/characters/mochi/bird.svg",
  44680. extra: 1251/1113,
  44681. bottom: 178/1429
  44682. }
  44683. },
  44684. kaiju: {
  44685. height: math.unit(154, "feet"),
  44686. weight: math.unit(1e7, "lb"),
  44687. name: "Kaiju",
  44688. image: {
  44689. source: "./media/characters/mochi/kaiju.svg",
  44690. extra: 460/324,
  44691. bottom: 40/500
  44692. }
  44693. },
  44694. head: {
  44695. height: math.unit(1.21, "feet"),
  44696. name: "Head",
  44697. image: {
  44698. source: "./media/characters/mochi/head.svg"
  44699. }
  44700. },
  44701. alternateTail: {
  44702. height: math.unit(2 + 8/12, "feet"),
  44703. weight: math.unit(45, "lb"),
  44704. name: "Alternate Tail",
  44705. image: {
  44706. source: "./media/characters/mochi/alternate-tail.svg",
  44707. extra: 139/76,
  44708. bottom: 45/184
  44709. }
  44710. },
  44711. },
  44712. [
  44713. {
  44714. name: "Micro",
  44715. height: math.unit(2, "inches")
  44716. },
  44717. {
  44718. name: "Normal",
  44719. height: math.unit(2 + 8/12, "feet"),
  44720. default: true
  44721. },
  44722. {
  44723. name: "Macro",
  44724. height: math.unit(106, "feet")
  44725. },
  44726. ]
  44727. ))
  44728. characterMakers.push(() => makeCharacter(
  44729. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44730. {
  44731. front: {
  44732. height: math.unit(5.67, "feet"),
  44733. weight: math.unit(135, "lb"),
  44734. name: "Front",
  44735. image: {
  44736. source: "./media/characters/sarel/front.svg",
  44737. extra: 865/788,
  44738. bottom: 97/962
  44739. }
  44740. },
  44741. back: {
  44742. height: math.unit(5.67, "feet"),
  44743. weight: math.unit(135, "lb"),
  44744. name: "Back",
  44745. image: {
  44746. source: "./media/characters/sarel/back.svg",
  44747. extra: 857/777,
  44748. bottom: 32/889
  44749. }
  44750. },
  44751. chozoan: {
  44752. height: math.unit(5.67, "feet"),
  44753. weight: math.unit(135, "lb"),
  44754. name: "Chozoan",
  44755. image: {
  44756. source: "./media/characters/sarel/chozoan.svg",
  44757. extra: 865/788,
  44758. bottom: 97/962
  44759. }
  44760. },
  44761. current: {
  44762. height: math.unit(5.67, "feet"),
  44763. weight: math.unit(135, "lb"),
  44764. name: "Current",
  44765. image: {
  44766. source: "./media/characters/sarel/current.svg",
  44767. extra: 865/788,
  44768. bottom: 97/962
  44769. }
  44770. },
  44771. head: {
  44772. height: math.unit(1.77, "feet"),
  44773. name: "Head",
  44774. image: {
  44775. source: "./media/characters/sarel/head.svg"
  44776. }
  44777. },
  44778. claws: {
  44779. height: math.unit(1.8, "feet"),
  44780. name: "Claws",
  44781. image: {
  44782. source: "./media/characters/sarel/claws.svg"
  44783. }
  44784. },
  44785. clawsAlt: {
  44786. height: math.unit(1.8, "feet"),
  44787. name: "Claws-alt",
  44788. image: {
  44789. source: "./media/characters/sarel/claws-alt.svg"
  44790. }
  44791. },
  44792. },
  44793. [
  44794. {
  44795. name: "Normal",
  44796. height: math.unit(5.67, "feet"),
  44797. default: true
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(5500, "feet"),
  44806. name: "Front",
  44807. image: {
  44808. source: "./media/characters/alyonia/front.svg",
  44809. extra: 1200/1135,
  44810. bottom: 29/1229
  44811. }
  44812. },
  44813. back: {
  44814. height: math.unit(5500, "feet"),
  44815. name: "Back",
  44816. image: {
  44817. source: "./media/characters/alyonia/back.svg",
  44818. extra: 1205/1138,
  44819. bottom: 10/1215
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Small",
  44826. height: math.unit(10, "feet")
  44827. },
  44828. {
  44829. name: "Macro",
  44830. height: math.unit(500, "feet")
  44831. },
  44832. {
  44833. name: "Mega Macro",
  44834. height: math.unit(5500, "feet"),
  44835. default: true
  44836. },
  44837. {
  44838. name: "Mega Macro+",
  44839. height: math.unit(500000, "feet")
  44840. },
  44841. {
  44842. name: "Giga Macro",
  44843. height: math.unit(3000, "miles")
  44844. },
  44845. {
  44846. name: "Tera Macro",
  44847. height: math.unit(2.8e6, "miles")
  44848. },
  44849. {
  44850. name: "Galactic",
  44851. height: math.unit(120000, "lightyears")
  44852. },
  44853. ]
  44854. ))
  44855. characterMakers.push(() => makeCharacter(
  44856. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44857. {
  44858. werewolf: {
  44859. height: math.unit(8, "feet"),
  44860. weight: math.unit(425, "lb"),
  44861. name: "Werewolf",
  44862. image: {
  44863. source: "./media/characters/autumn/werewolf.svg",
  44864. extra: 2154/2031,
  44865. bottom: 160/2314
  44866. }
  44867. },
  44868. human: {
  44869. height: math.unit(5 + 8/12, "feet"),
  44870. weight: math.unit(150, "lb"),
  44871. name: "Human",
  44872. image: {
  44873. source: "./media/characters/autumn/human.svg",
  44874. extra: 1200/1149,
  44875. bottom: 30/1230
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(8, "feet"),
  44883. default: true
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44889. {
  44890. front: {
  44891. height: math.unit(8 + 5/12, "feet"),
  44892. weight: math.unit(825, "lb"),
  44893. name: "Front",
  44894. image: {
  44895. source: "./media/characters/cobalt-charizard/front.svg",
  44896. extra: 1268/1155,
  44897. bottom: 122/1390
  44898. }
  44899. },
  44900. side: {
  44901. height: math.unit(8 + 5/12, "feet"),
  44902. weight: math.unit(825, "lb"),
  44903. name: "Side",
  44904. image: {
  44905. source: "./media/characters/cobalt-charizard/side.svg",
  44906. extra: 1348/1257,
  44907. bottom: 58/1406
  44908. }
  44909. },
  44910. gMax: {
  44911. height: math.unit(134 + 11/12, "feet"),
  44912. name: "G-Max",
  44913. image: {
  44914. source: "./media/characters/cobalt-charizard/g-max.svg",
  44915. extra: 1835/1541,
  44916. bottom: 151/1986
  44917. }
  44918. },
  44919. },
  44920. [
  44921. {
  44922. name: "Normal",
  44923. height: math.unit(8 + 5/12, "feet"),
  44924. default: true
  44925. },
  44926. ]
  44927. ))
  44928. characterMakers.push(() => makeCharacter(
  44929. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44930. {
  44931. front: {
  44932. height: math.unit(6 + 3/12, "feet"),
  44933. weight: math.unit(210, "lb"),
  44934. name: "Front",
  44935. image: {
  44936. source: "./media/characters/stella/front.svg",
  44937. extra: 3549/3335,
  44938. bottom: 51/3600
  44939. }
  44940. },
  44941. },
  44942. [
  44943. {
  44944. name: "Normal",
  44945. height: math.unit(6 + 3/12, "feet"),
  44946. default: true
  44947. },
  44948. ]
  44949. ))
  44950. characterMakers.push(() => makeCharacter(
  44951. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44952. {
  44953. front: {
  44954. height: math.unit(5, "feet"),
  44955. weight: math.unit(90, "lb"),
  44956. name: "Front",
  44957. image: {
  44958. source: "./media/characters/riley-bishop/front.svg",
  44959. extra: 1450/1428,
  44960. bottom: 152/1602
  44961. }
  44962. },
  44963. },
  44964. [
  44965. {
  44966. name: "Normal",
  44967. height: math.unit(5, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44974. {
  44975. side: {
  44976. height: math.unit(8 + 2/12, "feet"),
  44977. weight: math.unit(500, "kg"),
  44978. name: "Side",
  44979. image: {
  44980. source: "./media/characters/theo-arcanine/side.svg",
  44981. extra: 1342/1074,
  44982. bottom: 111/1453
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(8 + 2/12, "feet"),
  44990. default: true
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44996. {
  44997. front: {
  44998. height: math.unit(4, "feet"),
  44999. name: "Front",
  45000. image: {
  45001. source: "./media/characters/kali/front.svg",
  45002. extra: 1921/1357,
  45003. bottom: 70/1991
  45004. }
  45005. },
  45006. },
  45007. [
  45008. {
  45009. name: "Normal",
  45010. height: math.unit(4, "feet"),
  45011. default: true
  45012. },
  45013. {
  45014. name: "Macro",
  45015. height: math.unit(32, "meters")
  45016. },
  45017. {
  45018. name: "Macro+",
  45019. height: math.unit(150, "meters")
  45020. },
  45021. {
  45022. name: "Megamacro",
  45023. height: math.unit(7500, "meters")
  45024. },
  45025. {
  45026. name: "Megamacro+",
  45027. height: math.unit(80, "kilometers")
  45028. },
  45029. ]
  45030. ))
  45031. characterMakers.push(() => makeCharacter(
  45032. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45033. {
  45034. side: {
  45035. height: math.unit(5 + 11/12, "feet"),
  45036. weight: math.unit(236, "lb"),
  45037. name: "Side",
  45038. image: {
  45039. source: "./media/characters/gapp/side.svg",
  45040. extra: 775/340,
  45041. bottom: 58/833
  45042. }
  45043. },
  45044. mouth: {
  45045. height: math.unit(2.98, "feet"),
  45046. name: "Mouth",
  45047. image: {
  45048. source: "./media/characters/gapp/mouth.svg"
  45049. }
  45050. },
  45051. },
  45052. [
  45053. {
  45054. name: "Normal",
  45055. height: math.unit(5 + 1/12, "feet"),
  45056. default: true
  45057. },
  45058. ]
  45059. ))
  45060. characterMakers.push(() => makeCharacter(
  45061. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45062. {
  45063. front: {
  45064. height: math.unit(6, "feet"),
  45065. name: "Front",
  45066. image: {
  45067. source: "./media/characters/persephone/front.svg",
  45068. extra: 1895/1717,
  45069. bottom: 96/1991
  45070. }
  45071. },
  45072. back: {
  45073. height: math.unit(6, "feet"),
  45074. name: "Back",
  45075. image: {
  45076. source: "./media/characters/persephone/back.svg",
  45077. extra: 1868/1679,
  45078. bottom: 26/1894
  45079. }
  45080. },
  45081. casual: {
  45082. height: math.unit(6, "feet"),
  45083. name: "Casual",
  45084. image: {
  45085. source: "./media/characters/persephone/casual.svg",
  45086. extra: 1713/1541,
  45087. bottom: 76/1789
  45088. }
  45089. },
  45090. },
  45091. [
  45092. {
  45093. name: "Human Size",
  45094. height: math.unit(6, "feet")
  45095. },
  45096. {
  45097. name: "Big Steppy",
  45098. height: math.unit(600, "meters"),
  45099. default: true
  45100. },
  45101. {
  45102. name: "Galaxy Brain",
  45103. height: math.unit(1, "zettameter")
  45104. },
  45105. ]
  45106. ))
  45107. characterMakers.push(() => makeCharacter(
  45108. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45109. {
  45110. front: {
  45111. height: math.unit(1.85, "meters"),
  45112. name: "Front",
  45113. image: {
  45114. source: "./media/characters/riley-foxthing/front.svg",
  45115. extra: 1495/1354,
  45116. bottom: 122/1617
  45117. }
  45118. },
  45119. frontAlt: {
  45120. height: math.unit(1.85, "meters"),
  45121. name: "Front (Alt)",
  45122. image: {
  45123. source: "./media/characters/riley-foxthing/front-alt.svg",
  45124. extra: 1572/1389,
  45125. bottom: 116/1688
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal Sized",
  45132. height: math.unit(1.85, "meters"),
  45133. default: true
  45134. },
  45135. {
  45136. name: "Quite Sizable",
  45137. height: math.unit(5, "meters")
  45138. },
  45139. {
  45140. name: "Rather Large",
  45141. height: math.unit(20, "meters")
  45142. },
  45143. {
  45144. name: "Macro",
  45145. height: math.unit(450, "meters")
  45146. },
  45147. {
  45148. name: "Giga",
  45149. height: math.unit(5, "km")
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45155. {
  45156. front: {
  45157. height: math.unit(6, "feet"),
  45158. weight: math.unit(200, "lb"),
  45159. name: "Front",
  45160. image: {
  45161. source: "./media/characters/blizzard/front.svg",
  45162. extra: 1136/990,
  45163. bottom: 136/1272
  45164. }
  45165. },
  45166. back: {
  45167. height: math.unit(6, "feet"),
  45168. weight: math.unit(200, "lb"),
  45169. name: "Back",
  45170. image: {
  45171. source: "./media/characters/blizzard/back.svg",
  45172. extra: 1175/1034,
  45173. bottom: 97/1272
  45174. }
  45175. },
  45176. sitting: {
  45177. height: math.unit(3.725, "feet"),
  45178. weight: math.unit(200, "lb"),
  45179. name: "Sitting",
  45180. image: {
  45181. source: "./media/characters/blizzard/sitting.svg",
  45182. extra: 581/485,
  45183. bottom: 90/671
  45184. }
  45185. },
  45186. frontWizard: {
  45187. height: math.unit(7.9, "feet"),
  45188. weight: math.unit(200, "lb"),
  45189. name: "Front (Wizard)",
  45190. image: {
  45191. source: "./media/characters/blizzard/front-wizard.svg"
  45192. }
  45193. },
  45194. backWizard: {
  45195. height: math.unit(7.9, "feet"),
  45196. weight: math.unit(200, "lb"),
  45197. name: "Back (Wizard)",
  45198. image: {
  45199. source: "./media/characters/blizzard/back-wizard.svg"
  45200. }
  45201. },
  45202. frontNsfw: {
  45203. height: math.unit(6, "feet"),
  45204. weight: math.unit(200, "lb"),
  45205. name: "Front (NSFW)",
  45206. image: {
  45207. source: "./media/characters/blizzard/front-nsfw.svg",
  45208. extra: 1136/990,
  45209. bottom: 136/1272
  45210. }
  45211. },
  45212. backNsfw: {
  45213. height: math.unit(6, "feet"),
  45214. weight: math.unit(200, "lb"),
  45215. name: "Back (NSFW)",
  45216. image: {
  45217. source: "./media/characters/blizzard/back-nsfw.svg",
  45218. extra: 1175/1034,
  45219. bottom: 97/1272
  45220. }
  45221. },
  45222. sittingNsfw: {
  45223. height: math.unit(3.725, "feet"),
  45224. weight: math.unit(200, "lb"),
  45225. name: "Sitting (NSFW)",
  45226. image: {
  45227. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45228. extra: 581/485,
  45229. bottom: 90/671
  45230. }
  45231. },
  45232. wizardFrontNsfw: {
  45233. height: math.unit(7.9, "feet"),
  45234. weight: math.unit(200, "lb"),
  45235. name: "Wizard (Front, NSFW)",
  45236. image: {
  45237. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45238. }
  45239. },
  45240. },
  45241. [
  45242. {
  45243. name: "Normal",
  45244. height: math.unit(6, "feet"),
  45245. default: true
  45246. },
  45247. ]
  45248. ))
  45249. characterMakers.push(() => makeCharacter(
  45250. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45251. {
  45252. front: {
  45253. height: math.unit(5 + 2/12, "feet"),
  45254. name: "Front",
  45255. image: {
  45256. source: "./media/characters/lumi/front.svg",
  45257. extra: 1328/1268,
  45258. bottom: 103/1431
  45259. }
  45260. },
  45261. back: {
  45262. height: math.unit(5 + 2/12, "feet"),
  45263. name: "Back",
  45264. image: {
  45265. source: "./media/characters/lumi/back.svg",
  45266. extra: 1381/1327,
  45267. bottom: 43/1424
  45268. }
  45269. },
  45270. },
  45271. [
  45272. {
  45273. name: "Normal",
  45274. height: math.unit(5 + 2/12, "feet"),
  45275. default: true
  45276. },
  45277. ]
  45278. ))
  45279. characterMakers.push(() => makeCharacter(
  45280. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45281. {
  45282. front: {
  45283. height: math.unit(5 + 9/12, "feet"),
  45284. name: "Front",
  45285. image: {
  45286. source: "./media/characters/aliya-cotton/front.svg",
  45287. extra: 577/564,
  45288. bottom: 29/606
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(5 + 9/12, "feet"),
  45296. default: true
  45297. },
  45298. ]
  45299. ))
  45300. characterMakers.push(() => makeCharacter(
  45301. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45302. {
  45303. front: {
  45304. height: math.unit(2.7, "meters"),
  45305. weight: math.unit(25000, "lb"),
  45306. name: "Front",
  45307. image: {
  45308. source: "./media/characters/noah-luxray/front.svg",
  45309. extra: 1644/825,
  45310. bottom: 339/1983
  45311. }
  45312. },
  45313. side: {
  45314. height: math.unit(2.97, "meters"),
  45315. weight: math.unit(25000, "lb"),
  45316. name: "Side",
  45317. image: {
  45318. source: "./media/characters/noah-luxray/side.svg",
  45319. extra: 1319/650,
  45320. bottom: 163/1482
  45321. }
  45322. },
  45323. dick: {
  45324. height: math.unit(7.4, "feet"),
  45325. weight: math.unit(2500, "lb"),
  45326. name: "Dick",
  45327. image: {
  45328. source: "./media/characters/noah-luxray/dick.svg"
  45329. }
  45330. },
  45331. dickAlt: {
  45332. height: math.unit(10.83, "feet"),
  45333. weight: math.unit(2500, "lb"),
  45334. name: "Dick-alt",
  45335. image: {
  45336. source: "./media/characters/noah-luxray/dick-alt.svg"
  45337. }
  45338. },
  45339. },
  45340. [
  45341. {
  45342. name: "BIG",
  45343. height: math.unit(2.7, "meters"),
  45344. default: true
  45345. },
  45346. ]
  45347. ))
  45348. characterMakers.push(() => makeCharacter(
  45349. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45350. {
  45351. standing: {
  45352. height: math.unit(183, "cm"),
  45353. weight: math.unit(68, "kg"),
  45354. name: "Standing",
  45355. image: {
  45356. source: "./media/characters/arion/standing.svg",
  45357. extra: 1869/1807,
  45358. bottom: 93/1962
  45359. }
  45360. },
  45361. reclining: {
  45362. height: math.unit(70.5, "cm"),
  45363. weight: math.unit(68, "lb"),
  45364. name: "Reclining",
  45365. image: {
  45366. source: "./media/characters/arion/reclining.svg",
  45367. extra: 937/870,
  45368. bottom: 63/1000
  45369. }
  45370. },
  45371. },
  45372. [
  45373. {
  45374. name: "Colossus Size, Low",
  45375. height: math.unit(33, "meters"),
  45376. default: true
  45377. },
  45378. {
  45379. name: "Colossus Size, Mid",
  45380. height: math.unit(52, "meters")
  45381. },
  45382. {
  45383. name: "Colossus Size, High",
  45384. height: math.unit(60, "meters")
  45385. },
  45386. {
  45387. name: "Titan Size, Low",
  45388. height: math.unit(91, "meters"),
  45389. },
  45390. {
  45391. name: "Titan Size, Mid",
  45392. height: math.unit(122, "meters")
  45393. },
  45394. {
  45395. name: "Titan Size, High",
  45396. height: math.unit(162, "meters")
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45402. {
  45403. front: {
  45404. height: math.unit(53, "meters"),
  45405. name: "Front",
  45406. image: {
  45407. source: "./media/characters/stellar-marbey/front.svg",
  45408. extra: 1913/1805,
  45409. bottom: 92/2005
  45410. }
  45411. },
  45412. back: {
  45413. height: math.unit(53, "meters"),
  45414. name: "Back",
  45415. image: {
  45416. source: "./media/characters/stellar-marbey/back.svg",
  45417. extra: 1960/1851,
  45418. bottom: 28/1988
  45419. }
  45420. },
  45421. mouth: {
  45422. height: math.unit(3.5, "meters"),
  45423. name: "Mouth",
  45424. image: {
  45425. source: "./media/characters/stellar-marbey/mouth.svg"
  45426. }
  45427. },
  45428. },
  45429. [
  45430. {
  45431. name: "Macro",
  45432. height: math.unit(53, "meters"),
  45433. default: true
  45434. },
  45435. ]
  45436. ))
  45437. characterMakers.push(() => makeCharacter(
  45438. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45439. {
  45440. front: {
  45441. height: math.unit(8 + 1/12, "feet"),
  45442. weight: math.unit(233, "lb"),
  45443. name: "Front",
  45444. image: {
  45445. source: "./media/characters/matsu/front.svg",
  45446. extra: 832/772,
  45447. bottom: 40/872
  45448. }
  45449. },
  45450. back: {
  45451. height: math.unit(8 + 1/12, "feet"),
  45452. weight: math.unit(233, "lb"),
  45453. name: "Back",
  45454. image: {
  45455. source: "./media/characters/matsu/back.svg",
  45456. extra: 839/780,
  45457. bottom: 47/886
  45458. }
  45459. },
  45460. },
  45461. [
  45462. {
  45463. name: "Normal",
  45464. height: math.unit(8 + 1/12, "feet"),
  45465. default: true
  45466. },
  45467. ]
  45468. ))
  45469. characterMakers.push(() => makeCharacter(
  45470. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45471. {
  45472. front: {
  45473. height: math.unit(4, "feet"),
  45474. weight: math.unit(148, "lb"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/thiz/front.svg",
  45478. extra: 1913/1748,
  45479. bottom: 62/1975
  45480. }
  45481. },
  45482. },
  45483. [
  45484. {
  45485. name: "Normal",
  45486. height: math.unit(4, "feet"),
  45487. default: true
  45488. },
  45489. ]
  45490. ))
  45491. characterMakers.push(() => makeCharacter(
  45492. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45493. {
  45494. front: {
  45495. height: math.unit(7 + 6/12, "feet"),
  45496. weight: math.unit(267, "lb"),
  45497. name: "Front",
  45498. image: {
  45499. source: "./media/characters/marcel/front.svg",
  45500. extra: 1221/1096,
  45501. bottom: 76/1297
  45502. }
  45503. },
  45504. },
  45505. [
  45506. {
  45507. name: "Normal",
  45508. height: math.unit(7 + 6/12, "feet"),
  45509. default: true
  45510. },
  45511. ]
  45512. ))
  45513. characterMakers.push(() => makeCharacter(
  45514. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45515. {
  45516. side: {
  45517. height: math.unit(42, "meters"),
  45518. name: "Side",
  45519. image: {
  45520. source: "./media/characters/flake/side.svg",
  45521. extra: 1525/1306,
  45522. bottom: 209/1734
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(42, "meters"),
  45530. default: true
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45536. {
  45537. dressed: {
  45538. height: math.unit(6 + 4/12, "feet"),
  45539. weight: math.unit(520, "lb"),
  45540. name: "Dressed",
  45541. image: {
  45542. source: "./media/characters/someonne/dressed.svg",
  45543. extra: 1020/1010,
  45544. bottom: 178/1198
  45545. }
  45546. },
  45547. undressed: {
  45548. height: math.unit(6 + 4/12, "feet"),
  45549. weight: math.unit(520, "lb"),
  45550. name: "Undressed",
  45551. image: {
  45552. source: "./media/characters/someonne/undressed.svg",
  45553. extra: 1019/1014,
  45554. bottom: 169/1188
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(6 + 4/12, "feet"),
  45562. default: true
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45568. {
  45569. front: {
  45570. height: math.unit(3, "feet"),
  45571. weight: math.unit(30, "lb"),
  45572. name: "Front",
  45573. image: {
  45574. source: "./media/characters/till/front.svg",
  45575. extra: 892/823,
  45576. bottom: 55/947
  45577. }
  45578. },
  45579. },
  45580. [
  45581. {
  45582. name: "Normal",
  45583. height: math.unit(3, "feet"),
  45584. default: true
  45585. },
  45586. ]
  45587. ))
  45588. characterMakers.push(() => makeCharacter(
  45589. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45590. {
  45591. front: {
  45592. height: math.unit(9 + 8/12, "feet"),
  45593. weight: math.unit(800, "lb"),
  45594. name: "Front",
  45595. image: {
  45596. source: "./media/characters/sydney-heki/front.svg",
  45597. extra: 1360/1300,
  45598. bottom: 22/1382
  45599. }
  45600. },
  45601. back: {
  45602. height: math.unit(9 + 8/12, "feet"),
  45603. weight: math.unit(800, "lb"),
  45604. name: "Back",
  45605. image: {
  45606. source: "./media/characters/sydney-heki/back.svg",
  45607. extra: 1356/1293,
  45608. bottom: 12/1368
  45609. }
  45610. },
  45611. frontDressed: {
  45612. height: math.unit(9 + 8/12, "feet"),
  45613. weight: math.unit(800, "lb"),
  45614. name: "Front-dressed",
  45615. image: {
  45616. source: "./media/characters/sydney-heki/front-dressed.svg",
  45617. extra: 1360/1300,
  45618. bottom: 22/1382
  45619. }
  45620. },
  45621. },
  45622. [
  45623. {
  45624. name: "Normal",
  45625. height: math.unit(9 + 8/12, "feet"),
  45626. default: true
  45627. },
  45628. {
  45629. name: "Macro",
  45630. height: math.unit(500, "feet")
  45631. },
  45632. {
  45633. name: "Megamacro",
  45634. height: math.unit(3.6, "miles")
  45635. },
  45636. ]
  45637. ))
  45638. characterMakers.push(() => makeCharacter(
  45639. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45640. {
  45641. front: {
  45642. height: math.unit(200, "cm"),
  45643. weight: math.unit(250, "lb"),
  45644. name: "Front",
  45645. image: {
  45646. source: "./media/characters/fowler-karlsson/front.svg",
  45647. extra: 897/845,
  45648. bottom: 123/1020
  45649. }
  45650. },
  45651. back: {
  45652. height: math.unit(200, "cm"),
  45653. weight: math.unit(250, "lb"),
  45654. name: "Back",
  45655. image: {
  45656. source: "./media/characters/fowler-karlsson/back.svg",
  45657. extra: 999/944,
  45658. bottom: 26/1025
  45659. }
  45660. },
  45661. dick: {
  45662. height: math.unit(1.92, "feet"),
  45663. weight: math.unit(150, "lb"),
  45664. name: "Dick",
  45665. image: {
  45666. source: "./media/characters/fowler-karlsson/dick.svg"
  45667. }
  45668. },
  45669. },
  45670. [
  45671. {
  45672. name: "Normal",
  45673. height: math.unit(200, "cm"),
  45674. default: true
  45675. },
  45676. {
  45677. name: "Smaller Macro",
  45678. height: math.unit(90, "m")
  45679. },
  45680. {
  45681. name: "Macro",
  45682. height: math.unit(150, "m")
  45683. },
  45684. {
  45685. name: "Bigger Macro",
  45686. height: math.unit(300, "m")
  45687. },
  45688. ]
  45689. ))
  45690. characterMakers.push(() => makeCharacter(
  45691. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45692. {
  45693. side: {
  45694. height: math.unit(8 + 2/12, "feet"),
  45695. weight: math.unit(1, "tonne"),
  45696. name: "Side",
  45697. image: {
  45698. source: "./media/characters/rylide/side.svg",
  45699. extra: 1318/1034,
  45700. bottom: 106/1424
  45701. }
  45702. },
  45703. sitting: {
  45704. height: math.unit(303, "cm"),
  45705. weight: math.unit(1, "tonne"),
  45706. name: "Sitting",
  45707. image: {
  45708. source: "./media/characters/rylide/sitting.svg",
  45709. extra: 1303/1103,
  45710. bottom: 36/1339
  45711. }
  45712. },
  45713. },
  45714. [
  45715. {
  45716. name: "Normal",
  45717. height: math.unit(8 + 2/12, "feet"),
  45718. default: true
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45724. {
  45725. front: {
  45726. height: math.unit(5 + 10/12, "feet"),
  45727. weight: math.unit(160, "lb"),
  45728. name: "Front",
  45729. image: {
  45730. source: "./media/characters/pudask/front.svg",
  45731. extra: 1616/1590,
  45732. bottom: 161/1777
  45733. }
  45734. },
  45735. },
  45736. [
  45737. {
  45738. name: "Ferret Height",
  45739. height: math.unit(2 + 5/12, "feet")
  45740. },
  45741. {
  45742. name: "Canon Height",
  45743. height: math.unit(5 + 10/12, "feet"),
  45744. default: true
  45745. },
  45746. ]
  45747. ))
  45748. characterMakers.push(() => makeCharacter(
  45749. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45750. {
  45751. front: {
  45752. height: math.unit(3 + 6/12, "feet"),
  45753. weight: math.unit(60, "lb"),
  45754. name: "Front",
  45755. image: {
  45756. source: "./media/characters/ramita/front.svg",
  45757. extra: 1402/1232,
  45758. bottom: 62/1464
  45759. }
  45760. },
  45761. dressed: {
  45762. height: math.unit(3 + 6/12, "feet"),
  45763. weight: math.unit(60, "lb"),
  45764. name: "Dressed",
  45765. image: {
  45766. source: "./media/characters/ramita/dressed.svg",
  45767. extra: 1534/1249,
  45768. bottom: 50/1584
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Normal",
  45775. height: math.unit(3 + 6/12, "feet"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45782. {
  45783. front: {
  45784. height: math.unit(8, "feet"),
  45785. name: "Front",
  45786. image: {
  45787. source: "./media/characters/ark/front.svg",
  45788. extra: 772/693,
  45789. bottom: 45/817
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(8, "feet"),
  45797. default: true
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45803. {
  45804. front: {
  45805. height: math.unit(6, "feet"),
  45806. weight: math.unit(250, "lb"),
  45807. volume: math.unit(5/8, "gallons"),
  45808. name: "Front",
  45809. image: {
  45810. source: "./media/characters/ludwig-horn/front.svg",
  45811. extra: 1782/1635,
  45812. bottom: 96/1878
  45813. }
  45814. },
  45815. back: {
  45816. height: math.unit(6, "feet"),
  45817. weight: math.unit(250, "lb"),
  45818. volume: math.unit(5/8, "gallons"),
  45819. name: "Back",
  45820. image: {
  45821. source: "./media/characters/ludwig-horn/back.svg",
  45822. extra: 1874/1729,
  45823. bottom: 27/1901
  45824. }
  45825. },
  45826. dick: {
  45827. height: math.unit(1.05, "feet"),
  45828. weight: math.unit(15, "lb"),
  45829. volume: math.unit(5/8, "gallons"),
  45830. name: "Dick",
  45831. image: {
  45832. source: "./media/characters/ludwig-horn/dick.svg"
  45833. }
  45834. },
  45835. },
  45836. [
  45837. {
  45838. name: "Small",
  45839. height: math.unit(6, "feet")
  45840. },
  45841. {
  45842. name: "Typical",
  45843. height: math.unit(12, "feet"),
  45844. default: true
  45845. },
  45846. {
  45847. name: "Building",
  45848. height: math.unit(80, "feet")
  45849. },
  45850. {
  45851. name: "Town",
  45852. height: math.unit(800, "feet")
  45853. },
  45854. {
  45855. name: "Kingdom",
  45856. height: math.unit(80000, "feet")
  45857. },
  45858. {
  45859. name: "Planet",
  45860. height: math.unit(8000000, "feet")
  45861. },
  45862. {
  45863. name: "Universe",
  45864. height: math.unit(8000000000, "feet")
  45865. },
  45866. {
  45867. name: "Transcended",
  45868. height: math.unit(8e27, "feet")
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45874. {
  45875. front: {
  45876. height: math.unit(5, "feet"),
  45877. weight: math.unit(50, "kg"),
  45878. name: "Front",
  45879. image: {
  45880. source: "./media/characters/biot-avery/front.svg",
  45881. extra: 1295/1232,
  45882. bottom: 86/1381
  45883. }
  45884. },
  45885. },
  45886. [
  45887. {
  45888. name: "Normal",
  45889. height: math.unit(5, "feet"),
  45890. default: true
  45891. },
  45892. ]
  45893. ))
  45894. characterMakers.push(() => makeCharacter(
  45895. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45896. {
  45897. front: {
  45898. height: math.unit(6, "feet"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/kitsune-kiro/front.svg",
  45902. extra: 1270/1158,
  45903. bottom: 42/1312
  45904. }
  45905. },
  45906. frontAlt: {
  45907. height: math.unit(6, "feet"),
  45908. name: "Front-alt",
  45909. image: {
  45910. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45911. extra: 1130/1081,
  45912. bottom: 36/1166
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Smol",
  45919. height: math.unit(3, "feet")
  45920. },
  45921. {
  45922. name: "Normal",
  45923. height: math.unit(6, "feet"),
  45924. default: true
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45930. {
  45931. front: {
  45932. height: math.unit(6, "feet"),
  45933. weight: math.unit(125, "lb"),
  45934. name: "Front",
  45935. image: {
  45936. source: "./media/characters/jack-thatcher/front.svg",
  45937. extra: 1474/1370,
  45938. bottom: 26/1500
  45939. }
  45940. },
  45941. back: {
  45942. height: math.unit(6, "feet"),
  45943. weight: math.unit(125, "lb"),
  45944. name: "Back",
  45945. image: {
  45946. source: "./media/characters/jack-thatcher/back.svg",
  45947. extra: 1489/1384,
  45948. bottom: 18/1507
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(6, "feet"),
  45956. default: true
  45957. },
  45958. {
  45959. name: "Macro",
  45960. height: math.unit(75, "feet")
  45961. },
  45962. {
  45963. name: "Macro-er",
  45964. height: math.unit(250, "feet")
  45965. },
  45966. ]
  45967. ))
  45968. characterMakers.push(() => makeCharacter(
  45969. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45970. {
  45971. front: {
  45972. height: math.unit(7, "feet"),
  45973. weight: math.unit(110, "kg"),
  45974. name: "Front",
  45975. image: {
  45976. source: "./media/characters/max-hyper/front.svg",
  45977. extra: 1969/1881,
  45978. bottom: 49/2018
  45979. }
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Normal",
  45985. height: math.unit(7, "feet"),
  45986. default: true
  45987. },
  45988. ]
  45989. ))
  45990. characterMakers.push(() => makeCharacter(
  45991. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45992. {
  45993. front: {
  45994. height: math.unit(5 + 5/12, "feet"),
  45995. weight: math.unit(160, "lb"),
  45996. name: "Front",
  45997. image: {
  45998. source: "./media/characters/spook/front.svg",
  45999. extra: 794/791,
  46000. bottom: 54/848
  46001. }
  46002. },
  46003. back: {
  46004. height: math.unit(5 + 5/12, "feet"),
  46005. weight: math.unit(160, "lb"),
  46006. name: "Back",
  46007. image: {
  46008. source: "./media/characters/spook/back.svg",
  46009. extra: 812/798,
  46010. bottom: 32/844
  46011. }
  46012. },
  46013. },
  46014. [
  46015. {
  46016. name: "Normal",
  46017. height: math.unit(5 + 5/12, "feet"),
  46018. default: true
  46019. },
  46020. ]
  46021. ))
  46022. characterMakers.push(() => makeCharacter(
  46023. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46024. {
  46025. front: {
  46026. height: math.unit(18, "feet"),
  46027. name: "Front",
  46028. image: {
  46029. source: "./media/characters/xeaduulix/front.svg",
  46030. extra: 1380/1166,
  46031. bottom: 110/1490
  46032. }
  46033. },
  46034. back: {
  46035. height: math.unit(18, "feet"),
  46036. name: "Back",
  46037. image: {
  46038. source: "./media/characters/xeaduulix/back.svg",
  46039. extra: 1592/1170,
  46040. bottom: 128/1720
  46041. }
  46042. },
  46043. frontNsfw: {
  46044. height: math.unit(18, "feet"),
  46045. name: "Front (NSFW)",
  46046. image: {
  46047. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46048. extra: 1380/1166,
  46049. bottom: 110/1490
  46050. }
  46051. },
  46052. backNsfw: {
  46053. height: math.unit(18, "feet"),
  46054. name: "Back (NSFW)",
  46055. image: {
  46056. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46057. extra: 1592/1170,
  46058. bottom: 128/1720
  46059. }
  46060. },
  46061. },
  46062. [
  46063. {
  46064. name: "Normal",
  46065. height: math.unit(18, "feet"),
  46066. default: true
  46067. },
  46068. ]
  46069. ))
  46070. characterMakers.push(() => makeCharacter(
  46071. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46072. {
  46073. spreadWings: {
  46074. height: math.unit(20, "feet"),
  46075. name: "Spread Wings",
  46076. image: {
  46077. source: "./media/characters/fledge/spread-wings.svg",
  46078. extra: 693/635,
  46079. bottom: 26/719
  46080. }
  46081. },
  46082. front: {
  46083. height: math.unit(20, "feet"),
  46084. name: "Front",
  46085. image: {
  46086. source: "./media/characters/fledge/front.svg",
  46087. extra: 684/637,
  46088. bottom: 18/702
  46089. }
  46090. },
  46091. frontAlt: {
  46092. height: math.unit(20, "feet"),
  46093. name: "Front (Alt)",
  46094. image: {
  46095. source: "./media/characters/fledge/front-alt.svg",
  46096. extra: 708/664,
  46097. bottom: 13/721
  46098. }
  46099. },
  46100. back: {
  46101. height: math.unit(20, "feet"),
  46102. name: "Back",
  46103. image: {
  46104. source: "./media/characters/fledge/back.svg",
  46105. extra: 718/634,
  46106. bottom: 22/740
  46107. }
  46108. },
  46109. head: {
  46110. height: math.unit(5.55, "feet"),
  46111. name: "Head",
  46112. image: {
  46113. source: "./media/characters/fledge/head.svg"
  46114. }
  46115. },
  46116. headAlt: {
  46117. height: math.unit(5.1, "feet"),
  46118. name: "Head (Alt)",
  46119. image: {
  46120. source: "./media/characters/fledge/head-alt.svg"
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Small",
  46127. height: math.unit(6 + 2/12, "feet")
  46128. },
  46129. {
  46130. name: "Big",
  46131. height: math.unit(20, "feet"),
  46132. default: true
  46133. },
  46134. {
  46135. name: "Giant",
  46136. height: math.unit(100, "feet")
  46137. },
  46138. {
  46139. name: "Macro",
  46140. height: math.unit(200, "feet")
  46141. },
  46142. ]
  46143. ))
  46144. characterMakers.push(() => makeCharacter(
  46145. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46146. {
  46147. front: {
  46148. height: math.unit(1, "meter"),
  46149. name: "Front",
  46150. image: {
  46151. source: "./media/characters/atlas-morenai/front.svg",
  46152. extra: 1275/1043,
  46153. bottom: 19/1294
  46154. }
  46155. },
  46156. back: {
  46157. height: math.unit(1, "meter"),
  46158. name: "Back",
  46159. image: {
  46160. source: "./media/characters/atlas-morenai/back.svg",
  46161. extra: 1141/1001,
  46162. bottom: 25/1166
  46163. }
  46164. },
  46165. },
  46166. [
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(1, "meter"),
  46170. default: true
  46171. },
  46172. {
  46173. name: "Magic-Infused",
  46174. height: math.unit(5, "meters")
  46175. },
  46176. ]
  46177. ))
  46178. characterMakers.push(() => makeCharacter(
  46179. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46180. {
  46181. front: {
  46182. height: math.unit(5, "meters"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/cintia/front.svg",
  46186. extra: 1312/1228,
  46187. bottom: 38/1350
  46188. }
  46189. },
  46190. back: {
  46191. height: math.unit(5, "meters"),
  46192. name: "Back",
  46193. image: {
  46194. source: "./media/characters/cintia/back.svg",
  46195. extra: 1260/1166,
  46196. bottom: 98/1358
  46197. }
  46198. },
  46199. frontDick: {
  46200. height: math.unit(5, "meters"),
  46201. name: "Front (Dick)",
  46202. image: {
  46203. source: "./media/characters/cintia/front-dick.svg",
  46204. extra: 1312/1228,
  46205. bottom: 38/1350
  46206. }
  46207. },
  46208. backDick: {
  46209. height: math.unit(5, "meters"),
  46210. name: "Back (Dick)",
  46211. image: {
  46212. source: "./media/characters/cintia/back-dick.svg",
  46213. extra: 1260/1166,
  46214. bottom: 98/1358
  46215. }
  46216. },
  46217. bust: {
  46218. height: math.unit(1.97, "meters"),
  46219. name: "Bust",
  46220. image: {
  46221. source: "./media/characters/cintia/bust.svg",
  46222. extra: 617/565,
  46223. bottom: 0/617
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Normal",
  46230. height: math.unit(5, "meters"),
  46231. default: true
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46237. {
  46238. side: {
  46239. height: math.unit(100, "feet"),
  46240. name: "Side",
  46241. image: {
  46242. source: "./media/characters/denora/side.svg",
  46243. extra: 875/803,
  46244. bottom: 9/884
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Standard",
  46251. height: math.unit(100, "feet"),
  46252. default: true
  46253. },
  46254. {
  46255. name: "Grand",
  46256. height: math.unit(1000, "feet")
  46257. },
  46258. {
  46259. name: "Conquering",
  46260. height: math.unit(10000, "feet")
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46266. {
  46267. dressed: {
  46268. height: math.unit(8 + 5/12, "feet"),
  46269. weight: math.unit(700, "lb"),
  46270. name: "Dressed",
  46271. image: {
  46272. source: "./media/characters/kiva/dressed.svg",
  46273. extra: 1102/1055,
  46274. bottom: 60/1162
  46275. }
  46276. },
  46277. nude: {
  46278. height: math.unit(8 + 5/12, "feet"),
  46279. weight: math.unit(700, "lb"),
  46280. name: "Nude",
  46281. image: {
  46282. source: "./media/characters/kiva/nude.svg",
  46283. extra: 1102/1055,
  46284. bottom: 60/1162
  46285. }
  46286. },
  46287. },
  46288. [
  46289. {
  46290. name: "Base Height",
  46291. height: math.unit(8 + 5/12, "feet"),
  46292. default: true
  46293. },
  46294. {
  46295. name: "Macro",
  46296. height: math.unit(100, "feet")
  46297. },
  46298. {
  46299. name: "Max",
  46300. height: math.unit(3280, "feet")
  46301. },
  46302. ]
  46303. ))
  46304. characterMakers.push(() => makeCharacter(
  46305. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46306. {
  46307. front: {
  46308. height: math.unit(6 + 8/12, "feet"),
  46309. weight: math.unit(250, "lb"),
  46310. name: "Front",
  46311. image: {
  46312. source: "./media/characters/ztragon/front.svg",
  46313. extra: 1825/1684,
  46314. bottom: 98/1923
  46315. }
  46316. },
  46317. },
  46318. [
  46319. {
  46320. name: "Normal",
  46321. height: math.unit(6 + 8/12, "feet"),
  46322. default: true
  46323. },
  46324. {
  46325. name: "Macro",
  46326. height: math.unit(80, "feet")
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46332. {
  46333. front: {
  46334. height: math.unit(10.4, "feet"),
  46335. weight: math.unit(2, "tons"),
  46336. name: "Front",
  46337. image: {
  46338. source: "./media/characters/yesenia/front.svg",
  46339. extra: 1479/1474,
  46340. bottom: 233/1712
  46341. }
  46342. },
  46343. },
  46344. [
  46345. {
  46346. name: "Normal",
  46347. height: math.unit(10.4, "feet"),
  46348. default: true
  46349. },
  46350. ]
  46351. ))
  46352. characterMakers.push(() => makeCharacter(
  46353. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46354. {
  46355. normal: {
  46356. height: math.unit(6 + 1/12, "feet"),
  46357. weight: math.unit(180, "lb"),
  46358. name: "Normal",
  46359. image: {
  46360. source: "./media/characters/leanne-lycheborne/normal.svg",
  46361. extra: 1748/1660,
  46362. bottom: 98/1846
  46363. }
  46364. },
  46365. were: {
  46366. height: math.unit(12, "feet"),
  46367. weight: math.unit(1600, "lb"),
  46368. name: "Were",
  46369. image: {
  46370. source: "./media/characters/leanne-lycheborne/were.svg",
  46371. extra: 1485/1432,
  46372. bottom: 66/1551
  46373. }
  46374. },
  46375. },
  46376. [
  46377. {
  46378. name: "Normal",
  46379. height: math.unit(6 + 1/12, "feet"),
  46380. default: true
  46381. },
  46382. ]
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46386. {
  46387. side: {
  46388. height: math.unit(13, "feet"),
  46389. name: "Side",
  46390. image: {
  46391. source: "./media/characters/kira-tyler/side.svg",
  46392. extra: 693/393,
  46393. bottom: 58/751
  46394. }
  46395. },
  46396. },
  46397. [
  46398. {
  46399. name: "Normal",
  46400. height: math.unit(13, "feet"),
  46401. default: true
  46402. },
  46403. ]
  46404. ))
  46405. characterMakers.push(() => makeCharacter(
  46406. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46407. {
  46408. front: {
  46409. height: math.unit(10.3, "feet"),
  46410. weight: math.unit(150, "lb"),
  46411. name: "Front",
  46412. image: {
  46413. source: "./media/characters/blaze/front.svg",
  46414. extra: 1378/1286,
  46415. bottom: 172/1550
  46416. }
  46417. },
  46418. },
  46419. [
  46420. {
  46421. name: "Normal",
  46422. height: math.unit(10.3, "feet"),
  46423. default: true
  46424. },
  46425. ]
  46426. ))
  46427. characterMakers.push(() => makeCharacter(
  46428. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46429. {
  46430. side: {
  46431. height: math.unit(2, "meters"),
  46432. weight: math.unit(400, "kg"),
  46433. name: "Side",
  46434. image: {
  46435. source: "./media/characters/anu/side.svg",
  46436. extra: 506/394,
  46437. bottom: 18/524
  46438. }
  46439. },
  46440. },
  46441. [
  46442. {
  46443. name: "Humanoid",
  46444. height: math.unit(2, "meters")
  46445. },
  46446. {
  46447. name: "Normal",
  46448. height: math.unit(5, "meters"),
  46449. default: true
  46450. },
  46451. ]
  46452. ))
  46453. characterMakers.push(() => makeCharacter(
  46454. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46455. {
  46456. front: {
  46457. height: math.unit(5 + 5/12, "feet"),
  46458. weight: math.unit(170, "lb"),
  46459. name: "Front",
  46460. image: {
  46461. source: "./media/characters/synx-the-lynx/front.svg",
  46462. extra: 1893/1745,
  46463. bottom: 17/1910
  46464. }
  46465. },
  46466. side: {
  46467. height: math.unit(5 + 5/12, "feet"),
  46468. weight: math.unit(170, "lb"),
  46469. name: "Side",
  46470. image: {
  46471. source: "./media/characters/synx-the-lynx/side.svg",
  46472. extra: 1884/1740,
  46473. bottom: 39/1923
  46474. }
  46475. },
  46476. back: {
  46477. height: math.unit(5 + 5/12, "feet"),
  46478. weight: math.unit(170, "lb"),
  46479. name: "Back",
  46480. image: {
  46481. source: "./media/characters/synx-the-lynx/back.svg",
  46482. extra: 1903/1755,
  46483. bottom: 14/1917
  46484. }
  46485. },
  46486. },
  46487. [
  46488. {
  46489. name: "Normal",
  46490. height: math.unit(5 + 5/12, "feet"),
  46491. default: true
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46497. {
  46498. back: {
  46499. height: math.unit(15, "feet"),
  46500. name: "Back",
  46501. image: {
  46502. source: "./media/characters/nadezda-fex/back.svg",
  46503. extra: 1695/1481,
  46504. bottom: 25/1720
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(15, "feet"),
  46512. default: true
  46513. },
  46514. {
  46515. name: "Macro",
  46516. height: math.unit(2.5, "miles")
  46517. },
  46518. {
  46519. name: "Goddess",
  46520. height: math.unit(2, "multiverses")
  46521. },
  46522. ]
  46523. ))
  46524. characterMakers.push(() => makeCharacter(
  46525. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46526. {
  46527. front: {
  46528. height: math.unit(216, "cm"),
  46529. name: "Front",
  46530. image: {
  46531. source: "./media/characters/lev/front.svg",
  46532. extra: 1728/1670,
  46533. bottom: 82/1810
  46534. }
  46535. },
  46536. back: {
  46537. height: math.unit(216, "cm"),
  46538. name: "Back",
  46539. image: {
  46540. source: "./media/characters/lev/back.svg",
  46541. extra: 1738/1675,
  46542. bottom: 24/1762
  46543. }
  46544. },
  46545. dressed: {
  46546. height: math.unit(216, "cm"),
  46547. name: "Dressed",
  46548. image: {
  46549. source: "./media/characters/lev/dressed.svg",
  46550. extra: 1397/1351,
  46551. bottom: 73/1470
  46552. }
  46553. },
  46554. head: {
  46555. height: math.unit(0.51, "meter"),
  46556. name: "Head",
  46557. image: {
  46558. source: "./media/characters/lev/head.svg"
  46559. }
  46560. },
  46561. },
  46562. [
  46563. {
  46564. name: "Normal",
  46565. height: math.unit(216, "cm"),
  46566. default: true
  46567. },
  46568. {
  46569. name: "Relatively Macro",
  46570. height: math.unit(80, "meters")
  46571. },
  46572. {
  46573. name: "Megamacro",
  46574. height: math.unit(21600, "meters")
  46575. },
  46576. {
  46577. name: "Megamacro+",
  46578. height: math.unit(64800, "meters")
  46579. },
  46580. ]
  46581. ))
  46582. characterMakers.push(() => makeCharacter(
  46583. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46584. {
  46585. front: {
  46586. height: math.unit(2, "meters"),
  46587. weight: math.unit(80, "kg"),
  46588. name: "Front",
  46589. image: {
  46590. source: "./media/characters/moka/front.svg",
  46591. extra: 1337/1255,
  46592. bottom: 58/1395
  46593. }
  46594. },
  46595. },
  46596. [
  46597. {
  46598. name: "Micro",
  46599. height: math.unit(15, "cm")
  46600. },
  46601. {
  46602. name: "Normal",
  46603. height: math.unit(2, "meters"),
  46604. default: true
  46605. },
  46606. {
  46607. name: "Macro",
  46608. height: math.unit(20, "meters"),
  46609. },
  46610. ]
  46611. ))
  46612. characterMakers.push(() => makeCharacter(
  46613. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46614. {
  46615. front: {
  46616. height: math.unit(9, "feet"),
  46617. weight: math.unit(240, "lb"),
  46618. name: "Front",
  46619. image: {
  46620. source: "./media/characters/kuzco/front.svg",
  46621. extra: 1593/1487,
  46622. bottom: 32/1625
  46623. }
  46624. },
  46625. side: {
  46626. height: math.unit(9, "feet"),
  46627. weight: math.unit(240, "lb"),
  46628. name: "Side",
  46629. image: {
  46630. source: "./media/characters/kuzco/side.svg",
  46631. extra: 1575/1485,
  46632. bottom: 30/1605
  46633. }
  46634. },
  46635. back: {
  46636. height: math.unit(9, "feet"),
  46637. weight: math.unit(240, "lb"),
  46638. name: "Back",
  46639. image: {
  46640. source: "./media/characters/kuzco/back.svg",
  46641. extra: 1603/1514,
  46642. bottom: 14/1617
  46643. }
  46644. },
  46645. },
  46646. [
  46647. {
  46648. name: "Normal",
  46649. height: math.unit(9, "feet"),
  46650. default: true
  46651. },
  46652. ]
  46653. ))
  46654. characterMakers.push(() => makeCharacter(
  46655. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46656. {
  46657. side: {
  46658. height: math.unit(2, "meters"),
  46659. weight: math.unit(300, "kg"),
  46660. name: "Side",
  46661. image: {
  46662. source: "./media/characters/ceruleus/side.svg",
  46663. extra: 1068/974,
  46664. bottom: 126/1194
  46665. }
  46666. },
  46667. },
  46668. [
  46669. {
  46670. name: "Normal",
  46671. height: math.unit(16, "meters"),
  46672. default: true
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46678. {
  46679. front: {
  46680. height: math.unit(9, "feet"),
  46681. weight: math.unit(500, "kg"),
  46682. name: "Front",
  46683. image: {
  46684. source: "./media/characters/acouya/front.svg",
  46685. extra: 1660/1473,
  46686. bottom: 28/1688
  46687. }
  46688. },
  46689. },
  46690. [
  46691. {
  46692. name: "Normal",
  46693. height: math.unit(9, "feet"),
  46694. default: true
  46695. },
  46696. ]
  46697. ))
  46698. characterMakers.push(() => makeCharacter(
  46699. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46700. {
  46701. front: {
  46702. height: math.unit(5 + 6/12, "feet"),
  46703. weight: math.unit(195, "lb"),
  46704. name: "Front",
  46705. image: {
  46706. source: "./media/characters/vant/front.svg",
  46707. extra: 1396/1320,
  46708. bottom: 20/1416
  46709. }
  46710. },
  46711. back: {
  46712. height: math.unit(5 + 6/12, "feet"),
  46713. weight: math.unit(195, "lb"),
  46714. name: "Back",
  46715. image: {
  46716. source: "./media/characters/vant/back.svg",
  46717. extra: 1396/1320,
  46718. bottom: 20/1416
  46719. }
  46720. },
  46721. maw: {
  46722. height: math.unit(0.75, "feet"),
  46723. name: "Maw",
  46724. image: {
  46725. source: "./media/characters/vant/maw.svg"
  46726. }
  46727. },
  46728. paw: {
  46729. height: math.unit(1.07, "feet"),
  46730. name: "Paw",
  46731. image: {
  46732. source: "./media/characters/vant/paw.svg"
  46733. }
  46734. },
  46735. },
  46736. [
  46737. {
  46738. name: "Micro",
  46739. height: math.unit(0.25, "inches")
  46740. },
  46741. {
  46742. name: "Normal",
  46743. height: math.unit(5 + 6/12, "feet"),
  46744. default: true
  46745. },
  46746. {
  46747. name: "Macro",
  46748. height: math.unit(75, "feet")
  46749. },
  46750. ]
  46751. ))
  46752. characterMakers.push(() => makeCharacter(
  46753. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46754. {
  46755. front: {
  46756. height: math.unit(30, "meters"),
  46757. weight: math.unit(363, "tons"),
  46758. name: "Front",
  46759. image: {
  46760. source: "./media/characters/ahra/front.svg",
  46761. extra: 1914/1814,
  46762. bottom: 46/1960
  46763. }
  46764. },
  46765. },
  46766. [
  46767. {
  46768. name: "Macro",
  46769. height: math.unit(30, "meters"),
  46770. default: true
  46771. },
  46772. ]
  46773. ))
  46774. characterMakers.push(() => makeCharacter(
  46775. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46776. {
  46777. undressed: {
  46778. height: math.unit(2, "m"),
  46779. weight: math.unit(250, "kg"),
  46780. name: "Undressed",
  46781. image: {
  46782. source: "./media/characters/coriander/undressed.svg",
  46783. extra: 1757/1606,
  46784. bottom: 107/1864
  46785. }
  46786. },
  46787. dressed: {
  46788. height: math.unit(2, "m"),
  46789. weight: math.unit(250, "kg"),
  46790. name: "Dressed",
  46791. image: {
  46792. source: "./media/characters/coriander/dressed.svg",
  46793. extra: 1757/1606,
  46794. bottom: 107/1864
  46795. }
  46796. },
  46797. },
  46798. [
  46799. {
  46800. name: "Normal",
  46801. height: math.unit(4, "meters"),
  46802. default: true
  46803. },
  46804. {
  46805. name: "XL",
  46806. height: math.unit(6, "meters")
  46807. },
  46808. {
  46809. name: "XXL",
  46810. height: math.unit(8, "meters")
  46811. },
  46812. ]
  46813. ))
  46814. characterMakers.push(() => makeCharacter(
  46815. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46816. {
  46817. front: {
  46818. height: math.unit(6, "feet"),
  46819. name: "Front",
  46820. image: {
  46821. source: "./media/characters/syrinx/front.svg",
  46822. extra: 1557/1259,
  46823. bottom: 171/1728
  46824. }
  46825. },
  46826. },
  46827. [
  46828. {
  46829. name: "Normal",
  46830. height: math.unit(6 + 3/12, "feet"),
  46831. default: true
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(11 + 6/12, "feet"),
  46840. weight: math.unit(1.5, "tons"),
  46841. name: "Front",
  46842. image: {
  46843. source: "./media/characters/bor/front.svg",
  46844. extra: 1189/1109,
  46845. bottom: 170/1359
  46846. }
  46847. },
  46848. },
  46849. [
  46850. {
  46851. name: "Normal",
  46852. height: math.unit(11 + 6/12, "feet"),
  46853. default: true
  46854. },
  46855. {
  46856. name: "Macro",
  46857. height: math.unit(32 + 9/12, "feet")
  46858. },
  46859. ]
  46860. ))
  46861. characterMakers.push(() => makeCharacter(
  46862. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46863. {
  46864. anthro: {
  46865. height: math.unit(9, "feet"),
  46866. weight: math.unit(2076, "lb"),
  46867. name: "Anthro",
  46868. image: {
  46869. source: "./media/characters/abacus/anthro.svg",
  46870. extra: 1540/1494,
  46871. bottom: 233/1773
  46872. }
  46873. },
  46874. pigeon: {
  46875. height: math.unit(1, "feet"),
  46876. name: "Pigeon",
  46877. image: {
  46878. source: "./media/characters/abacus/pigeon.svg",
  46879. extra: 528/525,
  46880. bottom: 46/574
  46881. }
  46882. },
  46883. },
  46884. [
  46885. {
  46886. name: "Normal",
  46887. height: math.unit(9, "feet"),
  46888. default: true
  46889. },
  46890. ]
  46891. ))
  46892. characterMakers.push(() => makeCharacter(
  46893. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46894. {
  46895. side: {
  46896. height: math.unit(6, "feet"),
  46897. name: "Side",
  46898. image: {
  46899. source: "./media/characters/delkhan/side.svg",
  46900. extra: 1884/1786,
  46901. bottom: 308/2192
  46902. }
  46903. },
  46904. head: {
  46905. height: math.unit(3.38, "feet"),
  46906. name: "Head",
  46907. image: {
  46908. source: "./media/characters/delkhan/head.svg"
  46909. }
  46910. },
  46911. },
  46912. [
  46913. {
  46914. name: "Normal",
  46915. height: math.unit(72, "feet"),
  46916. default: true
  46917. },
  46918. {
  46919. name: "Giant",
  46920. height: math.unit(172, "feet")
  46921. },
  46922. ]
  46923. ))
  46924. characterMakers.push(() => makeCharacter(
  46925. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46926. {
  46927. standing: {
  46928. height: math.unit(6, "feet"),
  46929. name: "Standing",
  46930. image: {
  46931. source: "./media/characters/euchidat/standing.svg",
  46932. extra: 1612/1553,
  46933. bottom: 116/1728
  46934. }
  46935. },
  46936. leaning: {
  46937. height: math.unit(6, "feet"),
  46938. name: "Leaning",
  46939. image: {
  46940. source: "./media/characters/euchidat/leaning.svg",
  46941. extra: 1719/1674,
  46942. bottom: 27/1746
  46943. }
  46944. },
  46945. },
  46946. [
  46947. {
  46948. name: "Normal",
  46949. height: math.unit(175, "feet"),
  46950. default: true
  46951. },
  46952. {
  46953. name: "Megamacro",
  46954. height: math.unit(190, "miles")
  46955. },
  46956. {
  46957. name: "Gigamacro",
  46958. height: math.unit(190000, "miles")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46964. {
  46965. front: {
  46966. height: math.unit(6, "feet"),
  46967. weight: math.unit(150, "lb"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/rebecca-stack/front.svg",
  46971. extra: 1256/1201,
  46972. bottom: 18/1274
  46973. }
  46974. },
  46975. },
  46976. [
  46977. {
  46978. name: "Normal",
  46979. height: math.unit(5 + 8/12, "feet"),
  46980. default: true
  46981. },
  46982. {
  46983. name: "Demolitionist",
  46984. height: math.unit(200, "feet")
  46985. },
  46986. {
  46987. name: "Out of Control",
  46988. height: math.unit(2, "miles")
  46989. },
  46990. {
  46991. name: "Giga",
  46992. height: math.unit(7200, "miles")
  46993. },
  46994. ]
  46995. ))
  46996. characterMakers.push(() => makeCharacter(
  46997. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46998. {
  46999. front: {
  47000. height: math.unit(6, "feet"),
  47001. weight: math.unit(150, "lb"),
  47002. name: "Front",
  47003. image: {
  47004. source: "./media/characters/jenny-cartwright/front.svg",
  47005. extra: 1384/1376,
  47006. bottom: 58/1442
  47007. }
  47008. },
  47009. },
  47010. [
  47011. {
  47012. name: "Normal",
  47013. height: math.unit(6 + 7/12, "feet"),
  47014. default: true
  47015. },
  47016. {
  47017. name: "Librarian",
  47018. height: math.unit(55, "feet")
  47019. },
  47020. {
  47021. name: "Sightseer",
  47022. height: math.unit(50, "miles")
  47023. },
  47024. {
  47025. name: "Giga",
  47026. height: math.unit(30000, "miles")
  47027. },
  47028. ]
  47029. ))
  47030. characterMakers.push(() => makeCharacter(
  47031. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47032. {
  47033. nude: {
  47034. height: math.unit(8, "feet"),
  47035. weight: math.unit(225, "lb"),
  47036. name: "Nude",
  47037. image: {
  47038. source: "./media/characters/marvy/nude.svg",
  47039. extra: 1900/1683,
  47040. bottom: 89/1989
  47041. }
  47042. },
  47043. dressed: {
  47044. height: math.unit(8, "feet"),
  47045. weight: math.unit(225, "lb"),
  47046. name: "Dressed",
  47047. image: {
  47048. source: "./media/characters/marvy/dressed.svg",
  47049. extra: 1900/1683,
  47050. bottom: 89/1989
  47051. }
  47052. },
  47053. head: {
  47054. height: math.unit(2.85, "feet"),
  47055. name: "Head",
  47056. image: {
  47057. source: "./media/characters/marvy/head.svg"
  47058. }
  47059. },
  47060. },
  47061. [
  47062. {
  47063. name: "Normal",
  47064. height: math.unit(8, "feet"),
  47065. default: true
  47066. },
  47067. ]
  47068. ))
  47069. characterMakers.push(() => makeCharacter(
  47070. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47071. {
  47072. front: {
  47073. height: math.unit(8, "feet"),
  47074. weight: math.unit(250, "lb"),
  47075. name: "Front",
  47076. image: {
  47077. source: "./media/characters/leah/front.svg",
  47078. extra: 1257/1149,
  47079. bottom: 109/1366
  47080. }
  47081. },
  47082. },
  47083. [
  47084. {
  47085. name: "Normal",
  47086. height: math.unit(8, "feet"),
  47087. default: true
  47088. },
  47089. {
  47090. name: "Minimacro",
  47091. height: math.unit(40, "feet")
  47092. },
  47093. {
  47094. name: "Macro",
  47095. height: math.unit(124, "feet")
  47096. },
  47097. {
  47098. name: "Megamacro",
  47099. height: math.unit(850, "feet")
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47105. {
  47106. side: {
  47107. height: math.unit(13 + 6/12, "feet"),
  47108. weight: math.unit(3200, "lb"),
  47109. name: "Side",
  47110. image: {
  47111. source: "./media/characters/alvir/side.svg",
  47112. extra: 896/589,
  47113. bottom: 26/922
  47114. }
  47115. },
  47116. },
  47117. [
  47118. {
  47119. name: "Normal",
  47120. height: math.unit(13 + 6/12, "feet"),
  47121. default: true
  47122. },
  47123. ]
  47124. ))
  47125. characterMakers.push(() => makeCharacter(
  47126. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47127. {
  47128. front: {
  47129. height: math.unit(5 + 4/12, "feet"),
  47130. weight: math.unit(236, "lb"),
  47131. name: "Front",
  47132. image: {
  47133. source: "./media/characters/zaina-khalil/front.svg",
  47134. extra: 1533/1485,
  47135. bottom: 94/1627
  47136. }
  47137. },
  47138. side: {
  47139. height: math.unit(5 + 4/12, "feet"),
  47140. weight: math.unit(236, "lb"),
  47141. name: "Side",
  47142. image: {
  47143. source: "./media/characters/zaina-khalil/side.svg",
  47144. extra: 1537/1498,
  47145. bottom: 66/1603
  47146. }
  47147. },
  47148. back: {
  47149. height: math.unit(5 + 4/12, "feet"),
  47150. weight: math.unit(236, "lb"),
  47151. name: "Back",
  47152. image: {
  47153. source: "./media/characters/zaina-khalil/back.svg",
  47154. extra: 1546/1494,
  47155. bottom: 89/1635
  47156. }
  47157. },
  47158. },
  47159. [
  47160. {
  47161. name: "Normal",
  47162. height: math.unit(5 + 4/12, "feet"),
  47163. default: true
  47164. },
  47165. ]
  47166. ))
  47167. characterMakers.push(() => makeCharacter(
  47168. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47169. {
  47170. side: {
  47171. height: math.unit(12, "feet"),
  47172. weight: math.unit(4000, "lb"),
  47173. name: "Side",
  47174. image: {
  47175. source: "./media/characters/terry/side.svg",
  47176. extra: 1518/1439,
  47177. bottom: 149/1667
  47178. }
  47179. },
  47180. },
  47181. [
  47182. {
  47183. name: "Normal",
  47184. height: math.unit(12, "feet"),
  47185. default: true
  47186. },
  47187. ]
  47188. ))
  47189. characterMakers.push(() => makeCharacter(
  47190. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47191. {
  47192. front: {
  47193. height: math.unit(12, "feet"),
  47194. weight: math.unit(1500, "lb"),
  47195. name: "Front",
  47196. image: {
  47197. source: "./media/characters/kahea/front.svg",
  47198. extra: 1722/1617,
  47199. bottom: 179/1901
  47200. }
  47201. },
  47202. },
  47203. [
  47204. {
  47205. name: "Normal",
  47206. height: math.unit(12, "feet"),
  47207. default: true
  47208. },
  47209. ]
  47210. ))
  47211. characterMakers.push(() => makeCharacter(
  47212. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47213. {
  47214. demonFront: {
  47215. height: math.unit(36, "feet"),
  47216. name: "Front",
  47217. image: {
  47218. source: "./media/characters/alex-xuria/demon-front.svg",
  47219. extra: 1705/1673,
  47220. bottom: 198/1903
  47221. },
  47222. form: "demon",
  47223. default: true
  47224. },
  47225. demonBack: {
  47226. height: math.unit(36, "feet"),
  47227. name: "Back",
  47228. image: {
  47229. source: "./media/characters/alex-xuria/demon-back.svg",
  47230. extra: 1725/1693,
  47231. bottom: 70/1795
  47232. },
  47233. form: "demon"
  47234. },
  47235. demonHead: {
  47236. height: math.unit(2.14, "meters"),
  47237. name: "Head",
  47238. image: {
  47239. source: "./media/characters/alex-xuria/demon-head.svg"
  47240. },
  47241. form: "demon"
  47242. },
  47243. demonHand: {
  47244. height: math.unit(1.61, "meters"),
  47245. name: "Hand",
  47246. image: {
  47247. source: "./media/characters/alex-xuria/demon-hand.svg"
  47248. },
  47249. form: "demon"
  47250. },
  47251. demonPaw: {
  47252. height: math.unit(1.35, "meters"),
  47253. name: "Paw",
  47254. image: {
  47255. source: "./media/characters/alex-xuria/demon-paw.svg"
  47256. },
  47257. form: "demon"
  47258. },
  47259. demonFoot: {
  47260. height: math.unit(2.2, "meters"),
  47261. name: "Foot",
  47262. image: {
  47263. source: "./media/characters/alex-xuria/demon-foot.svg"
  47264. },
  47265. form: "demon"
  47266. },
  47267. demonCock: {
  47268. height: math.unit(1.74, "meters"),
  47269. name: "Cock",
  47270. image: {
  47271. source: "./media/characters/alex-xuria/demon-cock.svg"
  47272. },
  47273. form: "demon"
  47274. },
  47275. demonTailClosed: {
  47276. height: math.unit(1.47, "meters"),
  47277. name: "Tail (Closed)",
  47278. image: {
  47279. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47280. },
  47281. form: "demon"
  47282. },
  47283. demonTailOpen: {
  47284. height: math.unit(2.85, "meters"),
  47285. name: "Tail (Open)",
  47286. image: {
  47287. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47288. },
  47289. form: "demon"
  47290. },
  47291. incubusFront: {
  47292. height: math.unit(12, "feet"),
  47293. name: "Front",
  47294. image: {
  47295. source: "./media/characters/alex-xuria/incubus-front.svg",
  47296. extra: 1754/1677,
  47297. bottom: 125/1879
  47298. },
  47299. form: "incubus",
  47300. default: true
  47301. },
  47302. incubusBack: {
  47303. height: math.unit(12, "feet"),
  47304. name: "Back",
  47305. image: {
  47306. source: "./media/characters/alex-xuria/incubus-back.svg",
  47307. extra: 1702/1647,
  47308. bottom: 30/1732
  47309. },
  47310. form: "incubus"
  47311. },
  47312. incubusHead: {
  47313. height: math.unit(3.45, "feet"),
  47314. name: "Head",
  47315. image: {
  47316. source: "./media/characters/alex-xuria/incubus-head.svg"
  47317. },
  47318. form: "incubus"
  47319. },
  47320. rabbitFront: {
  47321. height: math.unit(6, "feet"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47325. extra: 1369/1349,
  47326. bottom: 45/1414
  47327. },
  47328. form: "rabbit",
  47329. default: true
  47330. },
  47331. rabbitSide: {
  47332. height: math.unit(6, "feet"),
  47333. name: "Side",
  47334. image: {
  47335. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47336. extra: 1370/1356,
  47337. bottom: 37/1407
  47338. },
  47339. form: "rabbit"
  47340. },
  47341. rabbitBack: {
  47342. height: math.unit(6, "feet"),
  47343. name: "Back",
  47344. image: {
  47345. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47346. extra: 1375/1358,
  47347. bottom: 43/1418
  47348. },
  47349. form: "rabbit"
  47350. },
  47351. },
  47352. [
  47353. {
  47354. name: "Normal",
  47355. height: math.unit(6, "feet"),
  47356. default: true,
  47357. form: "rabbit"
  47358. },
  47359. {
  47360. name: "Incubus",
  47361. height: math.unit(12, "feet"),
  47362. default: true,
  47363. form: "incubus"
  47364. },
  47365. {
  47366. name: "Demon",
  47367. height: math.unit(36, "feet"),
  47368. default: true,
  47369. form: "demon"
  47370. }
  47371. ],
  47372. {
  47373. "demon": {
  47374. name: "Demon",
  47375. default: true
  47376. },
  47377. "incubus": {
  47378. name: "Incubus",
  47379. },
  47380. "rabbit": {
  47381. name: "Rabbit"
  47382. }
  47383. }
  47384. ))
  47385. characterMakers.push(() => makeCharacter(
  47386. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47387. {
  47388. front: {
  47389. height: math.unit(7 + 5/12, "feet"),
  47390. weight: math.unit(510, "lb"),
  47391. name: "Front",
  47392. image: {
  47393. source: "./media/characters/syrup/front.svg",
  47394. extra: 932/916,
  47395. bottom: 26/958
  47396. }
  47397. },
  47398. },
  47399. [
  47400. {
  47401. name: "Normal",
  47402. height: math.unit(7 + 5/12, "feet"),
  47403. default: true
  47404. },
  47405. {
  47406. name: "Big",
  47407. height: math.unit(50, "feet")
  47408. },
  47409. {
  47410. name: "Macro",
  47411. height: math.unit(300, "feet")
  47412. },
  47413. {
  47414. name: "Megamacro",
  47415. height: math.unit(1, "mile")
  47416. },
  47417. ]
  47418. ))
  47419. characterMakers.push(() => makeCharacter(
  47420. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47421. {
  47422. front: {
  47423. height: math.unit(6 + 9/12, "feet"),
  47424. name: "Front",
  47425. image: {
  47426. source: "./media/characters/zeimne/front.svg",
  47427. extra: 1969/1806,
  47428. bottom: 53/2022
  47429. }
  47430. },
  47431. },
  47432. [
  47433. {
  47434. name: "Normal",
  47435. height: math.unit(6 + 9/12, "feet"),
  47436. default: true
  47437. },
  47438. {
  47439. name: "Giant",
  47440. height: math.unit(550, "feet")
  47441. },
  47442. {
  47443. name: "Mega",
  47444. height: math.unit(3, "miles")
  47445. },
  47446. {
  47447. name: "Giga",
  47448. height: math.unit(250, "miles")
  47449. },
  47450. {
  47451. name: "Tera",
  47452. height: math.unit(1, "AU")
  47453. },
  47454. ]
  47455. ))
  47456. characterMakers.push(() => makeCharacter(
  47457. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47458. {
  47459. front: {
  47460. height: math.unit(5 + 2/12, "feet"),
  47461. name: "Front",
  47462. image: {
  47463. source: "./media/characters/grar/front.svg",
  47464. extra: 1331/1119,
  47465. bottom: 60/1391
  47466. }
  47467. },
  47468. back: {
  47469. height: math.unit(5 + 2/12, "feet"),
  47470. name: "Back",
  47471. image: {
  47472. source: "./media/characters/grar/back.svg",
  47473. extra: 1385/1169,
  47474. bottom: 23/1408
  47475. }
  47476. },
  47477. },
  47478. [
  47479. {
  47480. name: "Normal",
  47481. height: math.unit(5 + 2/12, "feet"),
  47482. default: true
  47483. },
  47484. ]
  47485. ))
  47486. characterMakers.push(() => makeCharacter(
  47487. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47488. {
  47489. front: {
  47490. height: math.unit(13 + 7/12, "feet"),
  47491. weight: math.unit(2200, "lb"),
  47492. name: "Front",
  47493. image: {
  47494. source: "./media/characters/endraya/front.svg",
  47495. extra: 1289/1215,
  47496. bottom: 50/1339
  47497. }
  47498. },
  47499. nude: {
  47500. height: math.unit(13 + 7/12, "feet"),
  47501. weight: math.unit(2200, "lb"),
  47502. name: "Nude",
  47503. image: {
  47504. source: "./media/characters/endraya/nude.svg",
  47505. extra: 1247/1171,
  47506. bottom: 40/1287
  47507. }
  47508. },
  47509. head: {
  47510. height: math.unit(2.6, "feet"),
  47511. name: "Head",
  47512. image: {
  47513. source: "./media/characters/endraya/head.svg"
  47514. }
  47515. },
  47516. slit: {
  47517. height: math.unit(3.4, "feet"),
  47518. name: "Slit",
  47519. image: {
  47520. source: "./media/characters/endraya/slit.svg"
  47521. }
  47522. },
  47523. },
  47524. [
  47525. {
  47526. name: "Normal",
  47527. height: math.unit(13 + 7/12, "feet"),
  47528. default: true
  47529. },
  47530. {
  47531. name: "Macro",
  47532. height: math.unit(200, "feet")
  47533. },
  47534. ]
  47535. ))
  47536. characterMakers.push(() => makeCharacter(
  47537. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47538. {
  47539. front: {
  47540. height: math.unit(1.81, "meters"),
  47541. weight: math.unit(69, "kg"),
  47542. name: "Front",
  47543. image: {
  47544. source: "./media/characters/rodryana/front.svg",
  47545. extra: 2002/1921,
  47546. bottom: 53/2055
  47547. }
  47548. },
  47549. back: {
  47550. height: math.unit(1.81, "meters"),
  47551. weight: math.unit(69, "kg"),
  47552. name: "Back",
  47553. image: {
  47554. source: "./media/characters/rodryana/back.svg",
  47555. extra: 1993/1926,
  47556. bottom: 48/2041
  47557. }
  47558. },
  47559. maw: {
  47560. height: math.unit(0.19769417475, "meters"),
  47561. name: "Maw",
  47562. image: {
  47563. source: "./media/characters/rodryana/maw.svg"
  47564. }
  47565. },
  47566. slit: {
  47567. height: math.unit(0.31631067961, "meters"),
  47568. name: "Slit",
  47569. image: {
  47570. source: "./media/characters/rodryana/slit.svg"
  47571. }
  47572. },
  47573. },
  47574. [
  47575. {
  47576. name: "Normal",
  47577. height: math.unit(1.81, "meters")
  47578. },
  47579. {
  47580. name: "Mini Macro",
  47581. height: math.unit(181, "meters")
  47582. },
  47583. {
  47584. name: "Macro",
  47585. height: math.unit(452, "meters"),
  47586. default: true
  47587. },
  47588. {
  47589. name: "Mega Macro",
  47590. height: math.unit(1.375, "km")
  47591. },
  47592. {
  47593. name: "Giga Macro",
  47594. height: math.unit(13.575, "km")
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47600. {
  47601. front: {
  47602. height: math.unit(6, "feet"),
  47603. weight: math.unit(1000, "lb"),
  47604. name: "Front",
  47605. image: {
  47606. source: "./media/characters/asaya/front.svg",
  47607. extra: 1460/1200,
  47608. bottom: 71/1531
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(8, "km"),
  47616. default: true
  47617. },
  47618. ]
  47619. ))
  47620. characterMakers.push(() => makeCharacter(
  47621. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47622. {
  47623. front: {
  47624. height: math.unit(3.5, "meters"),
  47625. name: "Front",
  47626. image: {
  47627. source: "./media/characters/sarzu-and-israz/front.svg",
  47628. extra: 1570/1558,
  47629. bottom: 150/1720
  47630. },
  47631. },
  47632. back: {
  47633. height: math.unit(3.5, "meters"),
  47634. name: "Back",
  47635. image: {
  47636. source: "./media/characters/sarzu-and-israz/back.svg",
  47637. extra: 1523/1509,
  47638. bottom: 132/1655
  47639. },
  47640. },
  47641. frontFemale: {
  47642. height: math.unit(3.5, "meters"),
  47643. name: "Front (Female)",
  47644. image: {
  47645. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47646. extra: 1570/1558,
  47647. bottom: 150/1720
  47648. },
  47649. },
  47650. frontHerm: {
  47651. height: math.unit(3.5, "meters"),
  47652. name: "Front (Herm)",
  47653. image: {
  47654. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47655. extra: 1570/1558,
  47656. bottom: 150/1720
  47657. },
  47658. },
  47659. },
  47660. [
  47661. {
  47662. name: "Normal",
  47663. height: math.unit(3.5, "meters"),
  47664. default: true,
  47665. },
  47666. {
  47667. name: "Macro",
  47668. height: math.unit(65.5, "meters"),
  47669. },
  47670. ],
  47671. ))
  47672. characterMakers.push(() => makeCharacter(
  47673. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47674. {
  47675. front: {
  47676. height: math.unit(6, "feet"),
  47677. weight: math.unit(250, "lb"),
  47678. name: "Front",
  47679. image: {
  47680. source: "./media/characters/zenimma/front.svg",
  47681. extra: 1346/1320,
  47682. bottom: 58/1404
  47683. }
  47684. },
  47685. back: {
  47686. height: math.unit(6, "feet"),
  47687. weight: math.unit(250, "lb"),
  47688. name: "Back",
  47689. image: {
  47690. source: "./media/characters/zenimma/back.svg",
  47691. extra: 1324/1308,
  47692. bottom: 44/1368
  47693. }
  47694. },
  47695. dick: {
  47696. height: math.unit(1.44, "feet"),
  47697. name: "Dick",
  47698. image: {
  47699. source: "./media/characters/zenimma/dick.svg"
  47700. }
  47701. },
  47702. },
  47703. [
  47704. {
  47705. name: "Canon Height",
  47706. height: math.unit(66, "miles"),
  47707. default: true
  47708. },
  47709. ]
  47710. ))
  47711. characterMakers.push(() => makeCharacter(
  47712. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47713. {
  47714. nude: {
  47715. height: math.unit(6, "feet"),
  47716. weight: math.unit(150, "lb"),
  47717. name: "Nude",
  47718. image: {
  47719. source: "./media/characters/shavon/nude.svg",
  47720. extra: 1242/1096,
  47721. bottom: 98/1340
  47722. }
  47723. },
  47724. dressed: {
  47725. height: math.unit(6, "feet"),
  47726. weight: math.unit(150, "lb"),
  47727. name: "Dressed",
  47728. image: {
  47729. source: "./media/characters/shavon/dressed.svg",
  47730. extra: 1242/1096,
  47731. bottom: 98/1340
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Macro",
  47738. height: math.unit(255, "feet"),
  47739. default: true
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47745. {
  47746. front: {
  47747. height: math.unit(6, "feet"),
  47748. name: "Front",
  47749. image: {
  47750. source: "./media/characters/steph/front.svg",
  47751. extra: 1430/1330,
  47752. bottom: 54/1484
  47753. }
  47754. },
  47755. },
  47756. [
  47757. {
  47758. name: "Normal",
  47759. height: math.unit(6, "feet"),
  47760. default: true
  47761. },
  47762. ]
  47763. ))
  47764. characterMakers.push(() => makeCharacter(
  47765. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47766. {
  47767. front: {
  47768. height: math.unit(9, "feet"),
  47769. weight: math.unit(400, "lb"),
  47770. name: "Front",
  47771. image: {
  47772. source: "./media/characters/kil'aman/front.svg",
  47773. extra: 1210/1159,
  47774. bottom: 109/1319
  47775. }
  47776. },
  47777. head: {
  47778. height: math.unit(2.14, "feet"),
  47779. name: "Head",
  47780. image: {
  47781. source: "./media/characters/kil'aman/head.svg"
  47782. }
  47783. },
  47784. maw: {
  47785. height: math.unit(1.21, "feet"),
  47786. name: "Maw",
  47787. image: {
  47788. source: "./media/characters/kil'aman/maw.svg"
  47789. }
  47790. },
  47791. foot: {
  47792. height: math.unit(1.7, "feet"),
  47793. name: "Foot",
  47794. image: {
  47795. source: "./media/characters/kil'aman/foot.svg"
  47796. }
  47797. },
  47798. dick: {
  47799. height: math.unit(2.1, "feet"),
  47800. name: "Dick",
  47801. image: {
  47802. source: "./media/characters/kil'aman/dick.svg"
  47803. }
  47804. },
  47805. },
  47806. [
  47807. {
  47808. name: "Normal",
  47809. height: math.unit(9, "feet")
  47810. },
  47811. {
  47812. name: "Canon Height",
  47813. height: math.unit(10, "miles"),
  47814. default: true
  47815. },
  47816. {
  47817. name: "Maximum",
  47818. height: math.unit(6e9, "miles")
  47819. },
  47820. ]
  47821. ))
  47822. characterMakers.push(() => makeCharacter(
  47823. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47824. {
  47825. front: {
  47826. height: math.unit(90, "feet"),
  47827. weight: math.unit(675000, "lb"),
  47828. name: "Front",
  47829. image: {
  47830. source: "./media/characters/qadan/front.svg",
  47831. extra: 1012/1004,
  47832. bottom: 78/1090
  47833. }
  47834. },
  47835. back: {
  47836. height: math.unit(90, "feet"),
  47837. weight: math.unit(675000, "lb"),
  47838. name: "Back",
  47839. image: {
  47840. source: "./media/characters/qadan/back.svg",
  47841. extra: 1042/1031,
  47842. bottom: 55/1097
  47843. }
  47844. },
  47845. armored: {
  47846. height: math.unit(90, "feet"),
  47847. weight: math.unit(675000, "lb"),
  47848. name: "Armored",
  47849. image: {
  47850. source: "./media/characters/qadan/armored.svg",
  47851. extra: 1047/1037,
  47852. bottom: 48/1095
  47853. }
  47854. },
  47855. },
  47856. [
  47857. {
  47858. name: "Normal",
  47859. height: math.unit(90, "feet"),
  47860. default: true
  47861. },
  47862. ]
  47863. ))
  47864. characterMakers.push(() => makeCharacter(
  47865. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47866. {
  47867. front: {
  47868. height: math.unit(6, "feet"),
  47869. weight: math.unit(225, "lb"),
  47870. name: "Front",
  47871. image: {
  47872. source: "./media/characters/brooke/front.svg",
  47873. extra: 1050/1010,
  47874. bottom: 66/1116
  47875. }
  47876. },
  47877. back: {
  47878. height: math.unit(6, "feet"),
  47879. weight: math.unit(225, "lb"),
  47880. name: "Back",
  47881. image: {
  47882. source: "./media/characters/brooke/back.svg",
  47883. extra: 1053/1013,
  47884. bottom: 41/1094
  47885. }
  47886. },
  47887. dressed: {
  47888. height: math.unit(6, "feet"),
  47889. weight: math.unit(225, "lb"),
  47890. name: "Dressed",
  47891. image: {
  47892. source: "./media/characters/brooke/dressed.svg",
  47893. extra: 1050/1010,
  47894. bottom: 66/1116
  47895. }
  47896. },
  47897. },
  47898. [
  47899. {
  47900. name: "Canon Height",
  47901. height: math.unit(500, "miles"),
  47902. default: true
  47903. },
  47904. ]
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47908. {
  47909. front: {
  47910. height: math.unit(6 + 2/12, "feet"),
  47911. weight: math.unit(210, "lb"),
  47912. name: "Front",
  47913. image: {
  47914. source: "./media/characters/wubs/front.svg",
  47915. extra: 1345/1325,
  47916. bottom: 70/1415
  47917. }
  47918. },
  47919. back: {
  47920. height: math.unit(6 + 2/12, "feet"),
  47921. weight: math.unit(210, "lb"),
  47922. name: "Back",
  47923. image: {
  47924. source: "./media/characters/wubs/back.svg",
  47925. extra: 1296/1275,
  47926. bottom: 58/1354
  47927. }
  47928. },
  47929. },
  47930. [
  47931. {
  47932. name: "Normal",
  47933. height: math.unit(6 + 2/12, "feet"),
  47934. default: true
  47935. },
  47936. {
  47937. name: "Macro",
  47938. height: math.unit(1000, "feet")
  47939. },
  47940. {
  47941. name: "Megamacro",
  47942. height: math.unit(1, "mile")
  47943. },
  47944. ]
  47945. ))
  47946. characterMakers.push(() => makeCharacter(
  47947. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47948. {
  47949. front: {
  47950. height: math.unit(4, "feet"),
  47951. weight: math.unit(120, "lb"),
  47952. name: "Front",
  47953. image: {
  47954. source: "./media/characters/blue/front.svg",
  47955. extra: 1636/1525,
  47956. bottom: 43/1679
  47957. }
  47958. },
  47959. back: {
  47960. height: math.unit(4, "feet"),
  47961. weight: math.unit(120, "lb"),
  47962. name: "Back",
  47963. image: {
  47964. source: "./media/characters/blue/back.svg",
  47965. extra: 1660/1560,
  47966. bottom: 57/1717
  47967. }
  47968. },
  47969. paws: {
  47970. height: math.unit(0.826, "feet"),
  47971. name: "Paws",
  47972. image: {
  47973. source: "./media/characters/blue/paws.svg"
  47974. }
  47975. },
  47976. },
  47977. [
  47978. {
  47979. name: "Micro",
  47980. height: math.unit(3, "inches")
  47981. },
  47982. {
  47983. name: "Normal",
  47984. height: math.unit(4, "feet"),
  47985. default: true
  47986. },
  47987. {
  47988. name: "Femenine Form",
  47989. height: math.unit(14, "feet")
  47990. },
  47991. {
  47992. name: "Werebat Form",
  47993. height: math.unit(18, "feet")
  47994. },
  47995. ]
  47996. ))
  47997. characterMakers.push(() => makeCharacter(
  47998. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47999. {
  48000. female: {
  48001. height: math.unit(7 + 4/12, "feet"),
  48002. weight: math.unit(243, "lb"),
  48003. name: "Female",
  48004. image: {
  48005. source: "./media/characters/kaya/female.svg",
  48006. extra: 975/898,
  48007. bottom: 34/1009
  48008. }
  48009. },
  48010. herm: {
  48011. height: math.unit(7 + 4/12, "feet"),
  48012. weight: math.unit(243, "lb"),
  48013. name: "Herm",
  48014. image: {
  48015. source: "./media/characters/kaya/herm.svg",
  48016. extra: 975/898,
  48017. bottom: 34/1009
  48018. }
  48019. },
  48020. },
  48021. [
  48022. {
  48023. name: "Normal",
  48024. height: math.unit(7 + 4/12, "feet"),
  48025. default: true
  48026. },
  48027. ]
  48028. ))
  48029. characterMakers.push(() => makeCharacter(
  48030. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48031. {
  48032. female: {
  48033. height: math.unit(9 + 4/12, "feet"),
  48034. weight: math.unit(398, "lb"),
  48035. name: "Female",
  48036. image: {
  48037. source: "./media/characters/kassandra/female.svg",
  48038. extra: 908/839,
  48039. bottom: 61/969
  48040. }
  48041. },
  48042. intersex: {
  48043. height: math.unit(9 + 4/12, "feet"),
  48044. weight: math.unit(398, "lb"),
  48045. name: "Intersex",
  48046. image: {
  48047. source: "./media/characters/kassandra/intersex.svg",
  48048. extra: 908/839,
  48049. bottom: 61/969
  48050. }
  48051. },
  48052. },
  48053. [
  48054. {
  48055. name: "Normal",
  48056. height: math.unit(9 + 4/12, "feet"),
  48057. default: true
  48058. },
  48059. ]
  48060. ))
  48061. characterMakers.push(() => makeCharacter(
  48062. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48063. {
  48064. front: {
  48065. height: math.unit(3, "meters"),
  48066. name: "Front",
  48067. image: {
  48068. source: "./media/characters/amy/front.svg",
  48069. extra: 1380/1343,
  48070. bottom: 70/1450
  48071. }
  48072. },
  48073. back: {
  48074. height: math.unit(3, "meters"),
  48075. name: "Back",
  48076. image: {
  48077. source: "./media/characters/amy/back.svg",
  48078. extra: 1380/1347,
  48079. bottom: 66/1446
  48080. }
  48081. },
  48082. },
  48083. [
  48084. {
  48085. name: "Normal",
  48086. height: math.unit(3, "meters"),
  48087. default: true
  48088. },
  48089. ]
  48090. ))
  48091. characterMakers.push(() => makeCharacter(
  48092. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48093. {
  48094. side: {
  48095. height: math.unit(47, "cm"),
  48096. weight: math.unit(10.8, "kg"),
  48097. name: "Side",
  48098. image: {
  48099. source: "./media/characters/alphaschakal/side.svg",
  48100. extra: 1058/568,
  48101. bottom: 62/1120
  48102. }
  48103. },
  48104. back: {
  48105. height: math.unit(78, "cm"),
  48106. weight: math.unit(10.8, "kg"),
  48107. name: "Back",
  48108. image: {
  48109. source: "./media/characters/alphaschakal/back.svg",
  48110. extra: 1102/942,
  48111. bottom: 185/1287
  48112. }
  48113. },
  48114. head: {
  48115. height: math.unit(28, "cm"),
  48116. name: "Head",
  48117. image: {
  48118. source: "./media/characters/alphaschakal/head.svg",
  48119. extra: 696/508,
  48120. bottom: 0/696
  48121. }
  48122. },
  48123. paw: {
  48124. height: math.unit(16, "cm"),
  48125. name: "Paw",
  48126. image: {
  48127. source: "./media/characters/alphaschakal/paw.svg"
  48128. }
  48129. },
  48130. },
  48131. [
  48132. {
  48133. name: "Normal",
  48134. height: math.unit(47, "cm"),
  48135. default: true
  48136. },
  48137. {
  48138. name: "Macro",
  48139. height: math.unit(340, "cm")
  48140. },
  48141. ]
  48142. ))
  48143. characterMakers.push(() => makeCharacter(
  48144. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48145. {
  48146. front: {
  48147. height: math.unit(36, "earths"),
  48148. name: "Front",
  48149. image: {
  48150. source: "./media/characters/ecobyss/front.svg",
  48151. extra: 1282/1215,
  48152. bottom: 11/1293
  48153. }
  48154. },
  48155. back: {
  48156. height: math.unit(36, "earths"),
  48157. name: "Back",
  48158. image: {
  48159. source: "./media/characters/ecobyss/back.svg",
  48160. extra: 1291/1222,
  48161. bottom: 8/1299
  48162. }
  48163. },
  48164. },
  48165. [
  48166. {
  48167. name: "Normal",
  48168. height: math.unit(36, "earths"),
  48169. default: true
  48170. },
  48171. ]
  48172. ))
  48173. characterMakers.push(() => makeCharacter(
  48174. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48175. {
  48176. front: {
  48177. height: math.unit(12, "feet"),
  48178. name: "Front",
  48179. image: {
  48180. source: "./media/characters/vasuk/front.svg",
  48181. extra: 1326/1207,
  48182. bottom: 64/1390
  48183. }
  48184. },
  48185. },
  48186. [
  48187. {
  48188. name: "Normal",
  48189. height: math.unit(12, "feet"),
  48190. default: true
  48191. },
  48192. ]
  48193. ))
  48194. characterMakers.push(() => makeCharacter(
  48195. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48196. {
  48197. side: {
  48198. height: math.unit(100, "feet"),
  48199. name: "Side",
  48200. image: {
  48201. source: "./media/characters/linneaus/side.svg",
  48202. extra: 987/807,
  48203. bottom: 47/1034
  48204. }
  48205. },
  48206. },
  48207. [
  48208. {
  48209. name: "Macro",
  48210. height: math.unit(100, "feet"),
  48211. default: true
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48217. {
  48218. front: {
  48219. height: math.unit(8, "feet"),
  48220. weight: math.unit(1200, "lb"),
  48221. name: "Front",
  48222. image: {
  48223. source: "./media/characters/nyterious-daligdig/front.svg",
  48224. extra: 1284/1094,
  48225. bottom: 84/1368
  48226. }
  48227. },
  48228. back: {
  48229. height: math.unit(8, "feet"),
  48230. weight: math.unit(1200, "lb"),
  48231. name: "Back",
  48232. image: {
  48233. source: "./media/characters/nyterious-daligdig/back.svg",
  48234. extra: 1301/1121,
  48235. bottom: 129/1430
  48236. }
  48237. },
  48238. mouth: {
  48239. height: math.unit(1.464, "feet"),
  48240. name: "Mouth",
  48241. image: {
  48242. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48243. }
  48244. },
  48245. },
  48246. [
  48247. {
  48248. name: "Small",
  48249. height: math.unit(8, "feet"),
  48250. default: true
  48251. },
  48252. {
  48253. name: "Normal",
  48254. height: math.unit(15, "feet")
  48255. },
  48256. {
  48257. name: "Macro",
  48258. height: math.unit(90, "feet")
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48264. {
  48265. front: {
  48266. height: math.unit(7 + 4/12, "feet"),
  48267. weight: math.unit(252, "lb"),
  48268. name: "Front",
  48269. image: {
  48270. source: "./media/characters/bandel/front.svg",
  48271. extra: 1946/1775,
  48272. bottom: 26/1972
  48273. }
  48274. },
  48275. back: {
  48276. height: math.unit(7 + 4/12, "feet"),
  48277. weight: math.unit(252, "lb"),
  48278. name: "Back",
  48279. image: {
  48280. source: "./media/characters/bandel/back.svg",
  48281. extra: 1940/1770,
  48282. bottom: 25/1965
  48283. }
  48284. },
  48285. maw: {
  48286. height: math.unit(2.15, "feet"),
  48287. name: "Maw",
  48288. image: {
  48289. source: "./media/characters/bandel/maw.svg"
  48290. }
  48291. },
  48292. stomach: {
  48293. height: math.unit(1.95, "feet"),
  48294. name: "Stomach",
  48295. image: {
  48296. source: "./media/characters/bandel/stomach.svg"
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Normal",
  48303. height: math.unit(7 + 4/12, "feet"),
  48304. default: true
  48305. },
  48306. ]
  48307. ))
  48308. characterMakers.push(() => makeCharacter(
  48309. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48310. {
  48311. front: {
  48312. height: math.unit(10 + 5/12, "feet"),
  48313. weight: math.unit(773.5, "kg"),
  48314. name: "Front",
  48315. image: {
  48316. source: "./media/characters/zed/front.svg",
  48317. extra: 987/941,
  48318. bottom: 52/1039
  48319. }
  48320. },
  48321. },
  48322. [
  48323. {
  48324. name: "Short",
  48325. height: math.unit(5 + 4/12, "feet")
  48326. },
  48327. {
  48328. name: "Average",
  48329. height: math.unit(10 + 5/12, "feet"),
  48330. default: true
  48331. },
  48332. {
  48333. name: "Mini-Macro",
  48334. height: math.unit(24 + 9/12, "feet")
  48335. },
  48336. {
  48337. name: "Macro",
  48338. height: math.unit(249, "feet")
  48339. },
  48340. {
  48341. name: "Mega-Macro",
  48342. height: math.unit(12490, "feet")
  48343. },
  48344. {
  48345. name: "Giga-Macro",
  48346. height: math.unit(24.9, "miles")
  48347. },
  48348. {
  48349. name: "Tera-Macro",
  48350. height: math.unit(24900, "miles")
  48351. },
  48352. {
  48353. name: "Cosmic Scale",
  48354. height: math.unit(38.9, "lightyears")
  48355. },
  48356. {
  48357. name: "Universal Scale",
  48358. height: math.unit(138e12, "lightyears")
  48359. },
  48360. ]
  48361. ))
  48362. characterMakers.push(() => makeCharacter(
  48363. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48364. {
  48365. front: {
  48366. height: math.unit(1561, "inches"),
  48367. name: "Front",
  48368. image: {
  48369. source: "./media/characters/ivan/front.svg",
  48370. extra: 1126/1071,
  48371. bottom: 26/1152
  48372. }
  48373. },
  48374. back: {
  48375. height: math.unit(1561, "inches"),
  48376. name: "Back",
  48377. image: {
  48378. source: "./media/characters/ivan/back.svg",
  48379. extra: 1134/1079,
  48380. bottom: 30/1164
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(1561, "inches"),
  48388. default: true
  48389. },
  48390. ]
  48391. ))
  48392. characterMakers.push(() => makeCharacter(
  48393. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48394. {
  48395. front: {
  48396. height: math.unit(5 + 7/12, "feet"),
  48397. weight: math.unit(150, "lb"),
  48398. name: "Front",
  48399. image: {
  48400. source: "./media/characters/robin-arctic-hare/front.svg",
  48401. extra: 1148/974,
  48402. bottom: 20/1168
  48403. }
  48404. },
  48405. },
  48406. [
  48407. {
  48408. name: "Normal",
  48409. height: math.unit(5 + 7/12, "feet"),
  48410. default: true
  48411. },
  48412. ]
  48413. ))
  48414. characterMakers.push(() => makeCharacter(
  48415. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48416. {
  48417. side: {
  48418. height: math.unit(5, "feet"),
  48419. name: "Side",
  48420. image: {
  48421. source: "./media/characters/birch/side.svg",
  48422. extra: 985/796,
  48423. bottom: 111/1096
  48424. }
  48425. },
  48426. },
  48427. [
  48428. {
  48429. name: "Normal",
  48430. height: math.unit(5, "feet"),
  48431. default: true
  48432. },
  48433. ]
  48434. ))
  48435. characterMakers.push(() => makeCharacter(
  48436. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48437. {
  48438. front: {
  48439. height: math.unit(4, "feet"),
  48440. name: "Front",
  48441. image: {
  48442. source: "./media/characters/rasp/front.svg",
  48443. extra: 561/478,
  48444. bottom: 74/635
  48445. }
  48446. },
  48447. },
  48448. [
  48449. {
  48450. name: "Normal",
  48451. height: math.unit(4, "feet"),
  48452. default: true
  48453. },
  48454. ]
  48455. ))
  48456. characterMakers.push(() => makeCharacter(
  48457. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48458. {
  48459. front: {
  48460. height: math.unit(4 + 6/12, "feet"),
  48461. name: "Front",
  48462. image: {
  48463. source: "./media/characters/agatha/front.svg",
  48464. extra: 947/933,
  48465. bottom: 42/989
  48466. }
  48467. },
  48468. back: {
  48469. height: math.unit(4 + 6/12, "feet"),
  48470. name: "Back",
  48471. image: {
  48472. source: "./media/characters/agatha/back.svg",
  48473. extra: 935/922,
  48474. bottom: 48/983
  48475. }
  48476. },
  48477. },
  48478. [
  48479. {
  48480. name: "Normal",
  48481. height: math.unit(4 + 6 /12, "feet"),
  48482. default: true
  48483. },
  48484. {
  48485. name: "Max Size",
  48486. height: math.unit(500, "feet")
  48487. },
  48488. ]
  48489. ))
  48490. characterMakers.push(() => makeCharacter(
  48491. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48492. {
  48493. side: {
  48494. height: math.unit(30, "feet"),
  48495. name: "Side",
  48496. image: {
  48497. source: "./media/characters/roggy/side.svg",
  48498. extra: 909/643,
  48499. bottom: 63/972
  48500. }
  48501. },
  48502. lounging: {
  48503. height: math.unit(20, "feet"),
  48504. name: "Lounging",
  48505. image: {
  48506. source: "./media/characters/roggy/lounging.svg",
  48507. extra: 643/479,
  48508. bottom: 145/788
  48509. }
  48510. },
  48511. handpaw: {
  48512. height: math.unit(13.1, "feet"),
  48513. name: "Handpaw",
  48514. image: {
  48515. source: "./media/characters/roggy/handpaw.svg"
  48516. }
  48517. },
  48518. footpaw: {
  48519. height: math.unit(15.8, "feet"),
  48520. name: "Footpaw",
  48521. image: {
  48522. source: "./media/characters/roggy/footpaw.svg"
  48523. }
  48524. },
  48525. },
  48526. [
  48527. {
  48528. name: "Menacing",
  48529. height: math.unit(30, "feet"),
  48530. default: true
  48531. },
  48532. ]
  48533. ))
  48534. characterMakers.push(() => makeCharacter(
  48535. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48536. {
  48537. front: {
  48538. height: math.unit(5 + 7/12, "feet"),
  48539. weight: math.unit(135, "lb"),
  48540. name: "Front",
  48541. image: {
  48542. source: "./media/characters/naomi/front.svg",
  48543. extra: 1209/1154,
  48544. bottom: 129/1338
  48545. }
  48546. },
  48547. back: {
  48548. height: math.unit(5 + 7/12, "feet"),
  48549. weight: math.unit(135, "lb"),
  48550. name: "Back",
  48551. image: {
  48552. source: "./media/characters/naomi/back.svg",
  48553. extra: 1252/1190,
  48554. bottom: 23/1275
  48555. }
  48556. },
  48557. },
  48558. [
  48559. {
  48560. name: "Normal",
  48561. height: math.unit(5 + 7 /12, "feet"),
  48562. default: true
  48563. },
  48564. ]
  48565. ))
  48566. characterMakers.push(() => makeCharacter(
  48567. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48568. {
  48569. side: {
  48570. height: math.unit(35, "meters"),
  48571. name: "Side",
  48572. image: {
  48573. source: "./media/characters/kimpi/side.svg",
  48574. extra: 419/382,
  48575. bottom: 63/482
  48576. }
  48577. },
  48578. hand: {
  48579. height: math.unit(8.96, "meters"),
  48580. name: "Hand",
  48581. image: {
  48582. source: "./media/characters/kimpi/hand.svg"
  48583. }
  48584. },
  48585. },
  48586. [
  48587. {
  48588. name: "Normal",
  48589. height: math.unit(35, "meters"),
  48590. default: true
  48591. },
  48592. ]
  48593. ))
  48594. characterMakers.push(() => makeCharacter(
  48595. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48596. {
  48597. front: {
  48598. height: math.unit(4 + 4/12, "feet"),
  48599. name: "Front",
  48600. image: {
  48601. source: "./media/characters/pepper-purrloin/front.svg",
  48602. extra: 1141/1024,
  48603. bottom: 21/1162
  48604. }
  48605. },
  48606. },
  48607. [
  48608. {
  48609. name: "Normal",
  48610. height: math.unit(4 + 4/12, "feet"),
  48611. default: true
  48612. },
  48613. ]
  48614. ))
  48615. characterMakers.push(() => makeCharacter(
  48616. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48617. {
  48618. front: {
  48619. height: math.unit(6 + 2/12, "feet"),
  48620. name: "Front",
  48621. image: {
  48622. source: "./media/characters/raphael/front.svg",
  48623. extra: 1101/962,
  48624. bottom: 59/1160
  48625. }
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(6 + 2/12, "feet"),
  48632. default: true
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48638. {
  48639. front: {
  48640. height: math.unit(6, "feet"),
  48641. weight: math.unit(150, "lb"),
  48642. name: "Front",
  48643. image: {
  48644. source: "./media/characters/victor-williams/front.svg",
  48645. extra: 1894/1825,
  48646. bottom: 67/1961
  48647. }
  48648. },
  48649. },
  48650. [
  48651. {
  48652. name: "Normal",
  48653. height: math.unit(6, "feet"),
  48654. default: true
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48660. {
  48661. front: {
  48662. height: math.unit(5 + 8/12, "feet"),
  48663. weight: math.unit(150, "lb"),
  48664. name: "Front",
  48665. image: {
  48666. source: "./media/characters/rachel/front.svg",
  48667. extra: 1902/1787,
  48668. bottom: 46/1948
  48669. }
  48670. },
  48671. },
  48672. [
  48673. {
  48674. name: "Base Height",
  48675. height: math.unit(5 + 8/12, "feet"),
  48676. default: true
  48677. },
  48678. {
  48679. name: "Macro",
  48680. height: math.unit(200, "feet")
  48681. },
  48682. {
  48683. name: "Mega Macro",
  48684. height: math.unit(1, "mile")
  48685. },
  48686. {
  48687. name: "Giga Macro",
  48688. height: math.unit(1500, "miles")
  48689. },
  48690. {
  48691. name: "Tera Macro",
  48692. height: math.unit(8000, "miles")
  48693. },
  48694. {
  48695. name: "Tera Macro+",
  48696. height: math.unit(2e5, "miles")
  48697. },
  48698. ]
  48699. ))
  48700. characterMakers.push(() => makeCharacter(
  48701. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48702. {
  48703. front: {
  48704. height: math.unit(6.5, "feet"),
  48705. name: "Front",
  48706. image: {
  48707. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48708. extra: 860/819,
  48709. bottom: 307/1167
  48710. }
  48711. },
  48712. back: {
  48713. height: math.unit(6.5, "feet"),
  48714. name: "Back",
  48715. image: {
  48716. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48717. extra: 880/837,
  48718. bottom: 395/1275
  48719. }
  48720. },
  48721. sleeping: {
  48722. height: math.unit(2.79, "feet"),
  48723. name: "Sleeping",
  48724. image: {
  48725. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48726. extra: 465/383,
  48727. bottom: 263/728
  48728. }
  48729. },
  48730. maw: {
  48731. height: math.unit(2.52, "feet"),
  48732. name: "Maw",
  48733. image: {
  48734. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48735. }
  48736. },
  48737. },
  48738. [
  48739. {
  48740. name: "Normal",
  48741. height: math.unit(6.5, "feet"),
  48742. default: true
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48748. {
  48749. front: {
  48750. height: math.unit(5, "feet"),
  48751. name: "Front",
  48752. image: {
  48753. source: "./media/characters/nova-nerium/front.svg",
  48754. extra: 1548/1392,
  48755. bottom: 374/1922
  48756. }
  48757. },
  48758. back: {
  48759. height: math.unit(5, "feet"),
  48760. name: "Back",
  48761. image: {
  48762. source: "./media/characters/nova-nerium/back.svg",
  48763. extra: 1658/1468,
  48764. bottom: 257/1915
  48765. }
  48766. },
  48767. },
  48768. [
  48769. {
  48770. name: "Normal",
  48771. height: math.unit(5, "feet"),
  48772. default: true
  48773. },
  48774. ]
  48775. ))
  48776. characterMakers.push(() => makeCharacter(
  48777. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48778. {
  48779. front: {
  48780. height: math.unit(5 + 4/12, "feet"),
  48781. name: "Front",
  48782. image: {
  48783. source: "./media/characters/ashe-pyriph/front.svg",
  48784. extra: 1935/1747,
  48785. bottom: 60/1995
  48786. }
  48787. },
  48788. },
  48789. [
  48790. {
  48791. name: "Normal",
  48792. height: math.unit(5 + 4/12, "feet"),
  48793. default: true
  48794. },
  48795. ]
  48796. ))
  48797. characterMakers.push(() => makeCharacter(
  48798. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48799. {
  48800. front: {
  48801. height: math.unit(8.7, "feet"),
  48802. name: "Front",
  48803. image: {
  48804. source: "./media/characters/flicker-wisp/front.svg",
  48805. extra: 1835/1613,
  48806. bottom: 449/2284
  48807. }
  48808. },
  48809. side: {
  48810. height: math.unit(8.7, "feet"),
  48811. name: "Side",
  48812. image: {
  48813. source: "./media/characters/flicker-wisp/side.svg",
  48814. extra: 1841/1642,
  48815. bottom: 336/2177
  48816. },
  48817. default: true
  48818. },
  48819. maw: {
  48820. height: math.unit(3.35, "feet"),
  48821. name: "Maw",
  48822. image: {
  48823. source: "./media/characters/flicker-wisp/maw.svg",
  48824. extra: 2338/1506,
  48825. bottom: 0/2338
  48826. }
  48827. },
  48828. ovipositor: {
  48829. height: math.unit(4.95, "feet"),
  48830. name: "Ovipositor",
  48831. image: {
  48832. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48833. }
  48834. },
  48835. egg: {
  48836. height: math.unit(0.385, "feet"),
  48837. weight: math.unit(2, "lb"),
  48838. name: "Egg",
  48839. image: {
  48840. source: "./media/characters/flicker-wisp/egg.svg"
  48841. }
  48842. },
  48843. },
  48844. [
  48845. {
  48846. name: "Normal",
  48847. height: math.unit(8.7, "feet"),
  48848. default: true
  48849. },
  48850. ]
  48851. ))
  48852. characterMakers.push(() => makeCharacter(
  48853. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48854. {
  48855. side: {
  48856. height: math.unit(11, "feet"),
  48857. name: "Side",
  48858. image: {
  48859. source: "./media/characters/faefnul/side.svg",
  48860. extra: 1100/1007,
  48861. bottom: 0/1100
  48862. }
  48863. },
  48864. },
  48865. [
  48866. {
  48867. name: "Normal",
  48868. height: math.unit(11, "feet"),
  48869. default: true
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48875. {
  48876. front: {
  48877. height: math.unit(6 + 2/12, "feet"),
  48878. name: "Front",
  48879. image: {
  48880. source: "./media/characters/shady/front.svg",
  48881. extra: 502/461,
  48882. bottom: 9/511
  48883. }
  48884. },
  48885. kneeling: {
  48886. height: math.unit(4.6, "feet"),
  48887. name: "Kneeling",
  48888. image: {
  48889. source: "./media/characters/shady/kneeling.svg",
  48890. extra: 1328/1219,
  48891. bottom: 117/1445
  48892. }
  48893. },
  48894. maw: {
  48895. height: math.unit(2, "feet"),
  48896. name: "Maw",
  48897. image: {
  48898. source: "./media/characters/shady/maw.svg"
  48899. }
  48900. },
  48901. },
  48902. [
  48903. {
  48904. name: "Nano",
  48905. height: math.unit(1, "mm")
  48906. },
  48907. {
  48908. name: "Micro",
  48909. height: math.unit(12, "mm")
  48910. },
  48911. {
  48912. name: "Tiny",
  48913. height: math.unit(3, "inches")
  48914. },
  48915. {
  48916. name: "Normal",
  48917. height: math.unit(6 + 2/12, "feet"),
  48918. default: true
  48919. },
  48920. {
  48921. name: "Big",
  48922. height: math.unit(15, "feet")
  48923. },
  48924. {
  48925. name: "Macro",
  48926. height: math.unit(150, "feet")
  48927. },
  48928. {
  48929. name: "Titanic",
  48930. height: math.unit(500, "feet")
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48936. {
  48937. front: {
  48938. height: math.unit(12, "feet"),
  48939. name: "Front",
  48940. image: {
  48941. source: "./media/characters/fenrir/front.svg",
  48942. extra: 968/875,
  48943. bottom: 22/990
  48944. }
  48945. },
  48946. },
  48947. [
  48948. {
  48949. name: "Big",
  48950. height: math.unit(12, "feet"),
  48951. default: true
  48952. },
  48953. ]
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48957. {
  48958. front: {
  48959. height: math.unit(5 + 4/12, "feet"),
  48960. name: "Front",
  48961. image: {
  48962. source: "./media/characters/makar/front.svg",
  48963. extra: 1181/1112,
  48964. bottom: 78/1259
  48965. }
  48966. },
  48967. },
  48968. [
  48969. {
  48970. name: "Normal",
  48971. height: math.unit(5 + 4/12, "feet"),
  48972. default: true
  48973. },
  48974. ]
  48975. ))
  48976. characterMakers.push(() => makeCharacter(
  48977. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48978. {
  48979. front: {
  48980. height: math.unit(5 + 7/12, "feet"),
  48981. name: "Front",
  48982. image: {
  48983. source: "./media/characters/callow/front.svg",
  48984. extra: 1482/1304,
  48985. bottom: 23/1505
  48986. }
  48987. },
  48988. back: {
  48989. height: math.unit(5 + 7/12, "feet"),
  48990. name: "Back",
  48991. image: {
  48992. source: "./media/characters/callow/back.svg",
  48993. extra: 1484/1296,
  48994. bottom: 25/1509
  48995. }
  48996. },
  48997. },
  48998. [
  48999. {
  49000. name: "Micro",
  49001. height: math.unit(3, "inches"),
  49002. default: true
  49003. },
  49004. {
  49005. name: "Normal",
  49006. height: math.unit(5 + 7/12, "feet")
  49007. },
  49008. ]
  49009. ))
  49010. characterMakers.push(() => makeCharacter(
  49011. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49012. {
  49013. front: {
  49014. height: math.unit(6 + 2/12, "feet"),
  49015. name: "Front",
  49016. image: {
  49017. source: "./media/characters/natel/front.svg",
  49018. extra: 1833/1692,
  49019. bottom: 166/1999
  49020. }
  49021. },
  49022. },
  49023. [
  49024. {
  49025. name: "Normal",
  49026. height: math.unit(6 + 2/12, "feet"),
  49027. default: true
  49028. },
  49029. ]
  49030. ))
  49031. characterMakers.push(() => makeCharacter(
  49032. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49033. {
  49034. front: {
  49035. height: math.unit(1.75, "meters"),
  49036. name: "Front",
  49037. image: {
  49038. source: "./media/characters/misu/front.svg",
  49039. extra: 1690/1558,
  49040. bottom: 234/1924
  49041. }
  49042. },
  49043. back: {
  49044. height: math.unit(1.75, "meters"),
  49045. name: "Back",
  49046. image: {
  49047. source: "./media/characters/misu/back.svg",
  49048. extra: 1762/1618,
  49049. bottom: 146/1908
  49050. }
  49051. },
  49052. frontNude: {
  49053. height: math.unit(1.75, "meters"),
  49054. name: "Front (Nude)",
  49055. image: {
  49056. source: "./media/characters/misu/front-nude.svg",
  49057. extra: 1690/1558,
  49058. bottom: 234/1924
  49059. }
  49060. },
  49061. backNude: {
  49062. height: math.unit(1.75, "meters"),
  49063. name: "Back (Nude)",
  49064. image: {
  49065. source: "./media/characters/misu/back-nude.svg",
  49066. extra: 1762/1618,
  49067. bottom: 146/1908
  49068. }
  49069. },
  49070. frontErect: {
  49071. height: math.unit(1.75, "meters"),
  49072. name: "Front (Erect)",
  49073. image: {
  49074. source: "./media/characters/misu/front-erect.svg",
  49075. extra: 1690/1558,
  49076. bottom: 234/1924
  49077. }
  49078. },
  49079. maw: {
  49080. height: math.unit(0.47, "meters"),
  49081. name: "Maw",
  49082. image: {
  49083. source: "./media/characters/misu/maw.svg"
  49084. }
  49085. },
  49086. head: {
  49087. height: math.unit(0.35, "meters"),
  49088. name: "Head",
  49089. image: {
  49090. source: "./media/characters/misu/head.svg"
  49091. }
  49092. },
  49093. rear: {
  49094. height: math.unit(0.47, "meters"),
  49095. name: "Rear",
  49096. image: {
  49097. source: "./media/characters/misu/rear.svg"
  49098. }
  49099. },
  49100. },
  49101. [
  49102. {
  49103. name: "Normal",
  49104. height: math.unit(1.75, "meters")
  49105. },
  49106. {
  49107. name: "Not good for the people",
  49108. height: math.unit(42, "meters")
  49109. },
  49110. {
  49111. name: "Not good for the neighborhood",
  49112. height: math.unit(135, "meters")
  49113. },
  49114. {
  49115. name: "Bit bigger problem",
  49116. height: math.unit(380, "meters"),
  49117. default: true
  49118. },
  49119. {
  49120. name: "Not good for the city",
  49121. height: math.unit(1.5, "km")
  49122. },
  49123. {
  49124. name: "Not good for the county",
  49125. height: math.unit(5.5, "km")
  49126. },
  49127. {
  49128. name: "Not good for the state",
  49129. height: math.unit(25, "km")
  49130. },
  49131. {
  49132. name: "Not good for the country",
  49133. height: math.unit(125, "km")
  49134. },
  49135. {
  49136. name: "Not good for the continent",
  49137. height: math.unit(2100, "km")
  49138. },
  49139. {
  49140. name: "Not good for the planet",
  49141. height: math.unit(35000, "km")
  49142. },
  49143. {
  49144. name: "Just no",
  49145. height: math.unit(8.5e18, "km")
  49146. },
  49147. ]
  49148. ))
  49149. characterMakers.push(() => makeCharacter(
  49150. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49151. {
  49152. front: {
  49153. height: math.unit(6.5, "feet"),
  49154. name: "Front",
  49155. image: {
  49156. source: "./media/characters/poppy/front.svg",
  49157. extra: 1878/1812,
  49158. bottom: 43/1921
  49159. }
  49160. },
  49161. feet: {
  49162. height: math.unit(1.06, "feet"),
  49163. name: "Feet",
  49164. image: {
  49165. source: "./media/characters/poppy/feet.svg",
  49166. extra: 1083/1083,
  49167. bottom: 87/1170
  49168. }
  49169. },
  49170. },
  49171. [
  49172. {
  49173. name: "Human",
  49174. height: math.unit(6.5, "feet")
  49175. },
  49176. {
  49177. name: "Default",
  49178. height: math.unit(300, "feet"),
  49179. default: true
  49180. },
  49181. {
  49182. name: "Huge",
  49183. height: math.unit(850, "feet")
  49184. },
  49185. {
  49186. name: "Mega",
  49187. height: math.unit(8000, "feet")
  49188. },
  49189. {
  49190. name: "Giga",
  49191. height: math.unit(300, "miles")
  49192. },
  49193. ]
  49194. ))
  49195. characterMakers.push(() => makeCharacter(
  49196. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49197. {
  49198. bipedal: {
  49199. height: math.unit(7, "feet"),
  49200. name: "Bipedal",
  49201. image: {
  49202. source: "./media/characters/zener/bipedal.svg",
  49203. extra: 874/805,
  49204. bottom: 109/983
  49205. }
  49206. },
  49207. quadrupedal: {
  49208. height: math.unit(4.64, "feet"),
  49209. name: "Quadrupedal",
  49210. image: {
  49211. source: "./media/characters/zener/quadrupedal.svg",
  49212. extra: 638/507,
  49213. bottom: 190/828
  49214. }
  49215. },
  49216. cock: {
  49217. height: math.unit(18, "inches"),
  49218. name: "Cock",
  49219. image: {
  49220. source: "./media/characters/zener/cock.svg"
  49221. }
  49222. },
  49223. },
  49224. [
  49225. {
  49226. name: "Normal",
  49227. height: math.unit(7, "feet"),
  49228. default: true
  49229. },
  49230. ]
  49231. ))
  49232. characterMakers.push(() => makeCharacter(
  49233. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49234. {
  49235. nude: {
  49236. height: math.unit(5 + 6/12, "feet"),
  49237. name: "Nude",
  49238. image: {
  49239. source: "./media/characters/charlie-dog/nude.svg",
  49240. extra: 768/734,
  49241. bottom: 26/794
  49242. }
  49243. },
  49244. dressed: {
  49245. height: math.unit(5 + 6/12, "feet"),
  49246. name: "Dressed",
  49247. image: {
  49248. source: "./media/characters/charlie-dog/dressed.svg",
  49249. extra: 768/734,
  49250. bottom: 26/794
  49251. }
  49252. },
  49253. },
  49254. [
  49255. {
  49256. name: "Normal",
  49257. height: math.unit(5 + 6/12, "feet"),
  49258. default: true
  49259. },
  49260. ]
  49261. ))
  49262. characterMakers.push(() => makeCharacter(
  49263. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49264. {
  49265. front: {
  49266. height: math.unit(6 + 4/12, "feet"),
  49267. name: "Front",
  49268. image: {
  49269. source: "./media/characters/ir'istrasz/front.svg",
  49270. extra: 1014/977,
  49271. bottom: 65/1079
  49272. }
  49273. },
  49274. back: {
  49275. height: math.unit(6 + 4/12, "feet"),
  49276. name: "Back",
  49277. image: {
  49278. source: "./media/characters/ir'istrasz/back.svg",
  49279. extra: 1024/992,
  49280. bottom: 34/1058
  49281. }
  49282. },
  49283. },
  49284. [
  49285. {
  49286. name: "Normal",
  49287. height: math.unit(6 + 4/12, "feet"),
  49288. default: true
  49289. },
  49290. ]
  49291. ))
  49292. characterMakers.push(() => makeCharacter(
  49293. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49294. {
  49295. front: {
  49296. height: math.unit(5 + 8/12, "feet"),
  49297. name: "Front",
  49298. image: {
  49299. source: "./media/characters/dee-ditto/front.svg",
  49300. extra: 1874/1785,
  49301. bottom: 68/1942
  49302. }
  49303. },
  49304. back: {
  49305. height: math.unit(5 + 8/12, "feet"),
  49306. name: "Back",
  49307. image: {
  49308. source: "./media/characters/dee-ditto/back.svg",
  49309. extra: 1870/1783,
  49310. bottom: 77/1947
  49311. }
  49312. },
  49313. },
  49314. [
  49315. {
  49316. name: "Normal",
  49317. height: math.unit(5 + 8/12, "feet"),
  49318. default: true
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49324. {
  49325. front: {
  49326. height: math.unit(7 + 6/12, "feet"),
  49327. name: "Front",
  49328. image: {
  49329. source: "./media/characters/fey/front.svg",
  49330. extra: 995/979,
  49331. bottom: 30/1025
  49332. }
  49333. },
  49334. back: {
  49335. height: math.unit(7 + 6/12, "feet"),
  49336. name: "Back",
  49337. image: {
  49338. source: "./media/characters/fey/back.svg",
  49339. extra: 1079/1008,
  49340. bottom: 5/1084
  49341. }
  49342. },
  49343. dressed: {
  49344. height: math.unit(7 + 6/12, "feet"),
  49345. name: "Dressed",
  49346. image: {
  49347. source: "./media/characters/fey/dressed.svg",
  49348. extra: 995/979,
  49349. bottom: 30/1025
  49350. }
  49351. },
  49352. },
  49353. [
  49354. {
  49355. name: "Normal",
  49356. height: math.unit(7 + 6/12, "feet"),
  49357. default: true
  49358. },
  49359. ]
  49360. ))
  49361. characterMakers.push(() => makeCharacter(
  49362. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49363. {
  49364. standing: {
  49365. height: math.unit(17, "feet"),
  49366. name: "Standing",
  49367. image: {
  49368. source: "./media/characters/aster/standing.svg",
  49369. extra: 1798/1598,
  49370. bottom: 117/1915
  49371. }
  49372. },
  49373. },
  49374. [
  49375. {
  49376. name: "Normal",
  49377. height: math.unit(17, "feet"),
  49378. default: true
  49379. },
  49380. {
  49381. name: "Homewrecker",
  49382. height: math.unit(95, "feet")
  49383. },
  49384. {
  49385. name: "Planet Devourer",
  49386. height: math.unit(1008000, "miles")
  49387. },
  49388. ]
  49389. ))
  49390. characterMakers.push(() => makeCharacter(
  49391. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49392. {
  49393. front: {
  49394. height: math.unit(6 + 5/12, "feet"),
  49395. weight: math.unit(265, "lb"),
  49396. name: "Front",
  49397. image: {
  49398. source: "./media/characters/devon-childs/front.svg",
  49399. extra: 1795/1721,
  49400. bottom: 41/1836
  49401. }
  49402. },
  49403. side: {
  49404. height: math.unit(6 + 5/12, "feet"),
  49405. weight: math.unit(265, "lb"),
  49406. name: "Side",
  49407. image: {
  49408. source: "./media/characters/devon-childs/side.svg",
  49409. extra: 1812/1738,
  49410. bottom: 30/1842
  49411. }
  49412. },
  49413. back: {
  49414. height: math.unit(6 + 5/12, "feet"),
  49415. weight: math.unit(265, "lb"),
  49416. name: "Back",
  49417. image: {
  49418. source: "./media/characters/devon-childs/back.svg",
  49419. extra: 1808/1735,
  49420. bottom: 23/1831
  49421. }
  49422. },
  49423. hand: {
  49424. height: math.unit(1.464, "feet"),
  49425. name: "Hand",
  49426. image: {
  49427. source: "./media/characters/devon-childs/hand.svg"
  49428. }
  49429. },
  49430. foot: {
  49431. height: math.unit(1.6, "feet"),
  49432. name: "Foot",
  49433. image: {
  49434. source: "./media/characters/devon-childs/foot.svg"
  49435. }
  49436. },
  49437. },
  49438. [
  49439. {
  49440. name: "Micro",
  49441. height: math.unit(7, "cm")
  49442. },
  49443. {
  49444. name: "Normal",
  49445. height: math.unit(6 + 5/12, "feet"),
  49446. default: true
  49447. },
  49448. {
  49449. name: "Macro",
  49450. height: math.unit(154, "feet")
  49451. },
  49452. ]
  49453. ))
  49454. characterMakers.push(() => makeCharacter(
  49455. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49456. {
  49457. front: {
  49458. height: math.unit(6, "feet"),
  49459. weight: math.unit(180, "lb"),
  49460. name: "Front",
  49461. image: {
  49462. source: "./media/characters/lydemox-vir/front.svg",
  49463. extra: 1632/1435,
  49464. bottom: 58/1690
  49465. }
  49466. },
  49467. frontSFW: {
  49468. height: math.unit(6, "feet"),
  49469. weight: math.unit(180, "lb"),
  49470. name: "Front (SFW)",
  49471. image: {
  49472. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49473. extra: 1632/1435,
  49474. bottom: 58/1690
  49475. }
  49476. },
  49477. back: {
  49478. height: math.unit(6, "feet"),
  49479. weight: math.unit(180, "lb"),
  49480. name: "Back",
  49481. image: {
  49482. source: "./media/characters/lydemox-vir/back.svg",
  49483. extra: 1593/1408,
  49484. bottom: 31/1624
  49485. }
  49486. },
  49487. paw: {
  49488. height: math.unit(1.85, "feet"),
  49489. name: "Paw",
  49490. image: {
  49491. source: "./media/characters/lydemox-vir/paw.svg"
  49492. }
  49493. },
  49494. dick: {
  49495. height: math.unit(1.8, "feet"),
  49496. name: "Dick",
  49497. image: {
  49498. source: "./media/characters/lydemox-vir/dick.svg"
  49499. }
  49500. },
  49501. },
  49502. [
  49503. {
  49504. name: "Macro",
  49505. height: math.unit(100, "feet"),
  49506. default: true
  49507. },
  49508. {
  49509. name: "Teramacro",
  49510. height: math.unit(1, "earth")
  49511. },
  49512. {
  49513. name: "Planetary",
  49514. height: math.unit(20, "earths")
  49515. },
  49516. ]
  49517. ))
  49518. characterMakers.push(() => makeCharacter(
  49519. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49520. {
  49521. front: {
  49522. height: math.unit(15 + 8/12, "feet"),
  49523. weight: math.unit(1237, "kg"),
  49524. name: "Front",
  49525. image: {
  49526. source: "./media/characters/mia/front.svg",
  49527. extra: 1573/1446,
  49528. bottom: 58/1631
  49529. }
  49530. },
  49531. },
  49532. [
  49533. {
  49534. name: "Small",
  49535. height: math.unit(9 + 5/12, "feet")
  49536. },
  49537. {
  49538. name: "Normal",
  49539. height: math.unit(15 + 8/12, "feet"),
  49540. default: true
  49541. },
  49542. ]
  49543. ))
  49544. characterMakers.push(() => makeCharacter(
  49545. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49546. {
  49547. front: {
  49548. height: math.unit(10 + 6/12, "feet"),
  49549. weight: math.unit(1.3, "tons"),
  49550. name: "Front",
  49551. image: {
  49552. source: "./media/characters/mr-graves/front.svg",
  49553. extra: 1779/1695,
  49554. bottom: 198/1977
  49555. }
  49556. },
  49557. },
  49558. [
  49559. {
  49560. name: "Normal",
  49561. height: math.unit(10 + 6 /12, "feet"),
  49562. default: true
  49563. },
  49564. ]
  49565. ))
  49566. characterMakers.push(() => makeCharacter(
  49567. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49568. {
  49569. dressedFront: {
  49570. height: math.unit(5 + 8/12, "feet"),
  49571. weight: math.unit(125, "lb"),
  49572. name: "Dressed (Front)",
  49573. image: {
  49574. source: "./media/characters/jess/dressed-front.svg",
  49575. extra: 1176/1152,
  49576. bottom: 42/1218
  49577. }
  49578. },
  49579. dressedSide: {
  49580. height: math.unit(5 + 8/12, "feet"),
  49581. weight: math.unit(125, "lb"),
  49582. name: "Dressed (Side)",
  49583. image: {
  49584. source: "./media/characters/jess/dressed-side.svg",
  49585. extra: 1204/1190,
  49586. bottom: 6/1210
  49587. }
  49588. },
  49589. nudeFront: {
  49590. height: math.unit(5 + 8/12, "feet"),
  49591. weight: math.unit(125, "lb"),
  49592. name: "Nude (Front)",
  49593. image: {
  49594. source: "./media/characters/jess/nude-front.svg",
  49595. extra: 1176/1152,
  49596. bottom: 42/1218
  49597. }
  49598. },
  49599. nudeSide: {
  49600. height: math.unit(5 + 8/12, "feet"),
  49601. weight: math.unit(125, "lb"),
  49602. name: "Nude (Side)",
  49603. image: {
  49604. source: "./media/characters/jess/nude-side.svg",
  49605. extra: 1204/1190,
  49606. bottom: 6/1210
  49607. }
  49608. },
  49609. organsFront: {
  49610. height: math.unit(2.83799342105, "feet"),
  49611. name: "Organs (Front)",
  49612. image: {
  49613. source: "./media/characters/jess/organs-front.svg"
  49614. }
  49615. },
  49616. organsSide: {
  49617. height: math.unit(2.64225290474, "feet"),
  49618. name: "Organs (Side)",
  49619. image: {
  49620. source: "./media/characters/jess/organs-side.svg"
  49621. }
  49622. },
  49623. digestiveTractFront: {
  49624. height: math.unit(2.8106580871, "feet"),
  49625. name: "Digestive Tract (Front)",
  49626. image: {
  49627. source: "./media/characters/jess/digestive-tract-front.svg"
  49628. }
  49629. },
  49630. digestiveTractSide: {
  49631. height: math.unit(2.54365045014, "feet"),
  49632. name: "Digestive Tract (Side)",
  49633. image: {
  49634. source: "./media/characters/jess/digestive-tract-side.svg"
  49635. }
  49636. },
  49637. respiratorySystemFront: {
  49638. height: math.unit(1.11196233456, "feet"),
  49639. name: "Respiratory System (Front)",
  49640. image: {
  49641. source: "./media/characters/jess/respiratory-system-front.svg"
  49642. }
  49643. },
  49644. respiratorySystemSide: {
  49645. height: math.unit(0.89327966297, "feet"),
  49646. name: "Respiratory System (Side)",
  49647. image: {
  49648. source: "./media/characters/jess/respiratory-system-side.svg"
  49649. }
  49650. },
  49651. urinaryTractFront: {
  49652. height: math.unit(1.16126356186, "feet"),
  49653. name: "Urinary Tract (Front)",
  49654. image: {
  49655. source: "./media/characters/jess/urinary-tract-front.svg"
  49656. }
  49657. },
  49658. urinaryTractSide: {
  49659. height: math.unit(1.20910039627, "feet"),
  49660. name: "Urinary Tract (Side)",
  49661. image: {
  49662. source: "./media/characters/jess/urinary-tract-side.svg"
  49663. }
  49664. },
  49665. reproductiveOrgansFront: {
  49666. height: math.unit(0.48422591566, "feet"),
  49667. name: "Reproductive Organs (Front)",
  49668. image: {
  49669. source: "./media/characters/jess/reproductive-organs-front.svg"
  49670. }
  49671. },
  49672. reproductiveOrgansSide: {
  49673. height: math.unit(0.61553314481, "feet"),
  49674. name: "Reproductive Organs (Side)",
  49675. image: {
  49676. source: "./media/characters/jess/reproductive-organs-side.svg"
  49677. }
  49678. },
  49679. breastsFront: {
  49680. height: math.unit(0.47690395121, "feet"),
  49681. name: "Breasts (Front)",
  49682. image: {
  49683. source: "./media/characters/jess/breasts-front.svg"
  49684. }
  49685. },
  49686. breastsSide: {
  49687. height: math.unit(0.30556998307, "feet"),
  49688. name: "Breasts (Side)",
  49689. image: {
  49690. source: "./media/characters/jess/breasts-side.svg"
  49691. }
  49692. },
  49693. heartFront: {
  49694. height: math.unit(0.53011022622, "feet"),
  49695. name: "Heart (Front)",
  49696. image: {
  49697. source: "./media/characters/jess/heart-front.svg"
  49698. }
  49699. },
  49700. heartSide: {
  49701. height: math.unit(0.51790695213, "feet"),
  49702. name: "Heart (Side)",
  49703. image: {
  49704. source: "./media/characters/jess/heart-side.svg"
  49705. }
  49706. },
  49707. earsAndNoseFront: {
  49708. height: math.unit(0.29385483995, "feet"),
  49709. name: "Ears and Nose (Front)",
  49710. image: {
  49711. source: "./media/characters/jess/ears-and-nose-front.svg"
  49712. }
  49713. },
  49714. earsAndNoseSide: {
  49715. height: math.unit(0.18109658741, "feet"),
  49716. name: "Ears and Nose (Side)",
  49717. image: {
  49718. source: "./media/characters/jess/ears-and-nose-side.svg"
  49719. }
  49720. },
  49721. },
  49722. [
  49723. {
  49724. name: "Normal",
  49725. height: math.unit(5 + 8/12, "feet"),
  49726. default: true
  49727. },
  49728. ]
  49729. ))
  49730. characterMakers.push(() => makeCharacter(
  49731. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49732. {
  49733. front: {
  49734. height: math.unit(6, "feet"),
  49735. weight: math.unit(6.64467e-7, "grams"),
  49736. name: "Front",
  49737. image: {
  49738. source: "./media/characters/wimpering/front.svg",
  49739. extra: 597/587,
  49740. bottom: 34/631
  49741. }
  49742. },
  49743. },
  49744. [
  49745. {
  49746. name: "Micro",
  49747. height: math.unit(0.4, "mm"),
  49748. default: true
  49749. },
  49750. ]
  49751. ))
  49752. characterMakers.push(() => makeCharacter(
  49753. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49754. {
  49755. front: {
  49756. height: math.unit(5 + 2/12, "feet"),
  49757. weight: math.unit(110, "lb"),
  49758. name: "Front",
  49759. image: {
  49760. source: "./media/characters/keltre/front.svg",
  49761. extra: 1099/1057,
  49762. bottom: 22/1121
  49763. }
  49764. },
  49765. back: {
  49766. height: math.unit(5 + 2/12, "feet"),
  49767. weight: math.unit(110, "lb"),
  49768. name: "Back",
  49769. image: {
  49770. source: "./media/characters/keltre/back.svg",
  49771. extra: 1095/1053,
  49772. bottom: 17/1112
  49773. }
  49774. },
  49775. dressed: {
  49776. height: math.unit(5 + 2/12, "feet"),
  49777. weight: math.unit(110, "lb"),
  49778. name: "Dressed",
  49779. image: {
  49780. source: "./media/characters/keltre/dressed.svg",
  49781. extra: 1099/1057,
  49782. bottom: 22/1121
  49783. }
  49784. },
  49785. winter: {
  49786. height: math.unit(5 + 2/12, "feet"),
  49787. weight: math.unit(110, "lb"),
  49788. name: "Winter",
  49789. image: {
  49790. source: "./media/characters/keltre/winter.svg",
  49791. extra: 1099/1057,
  49792. bottom: 22/1121
  49793. }
  49794. },
  49795. head: {
  49796. height: math.unit(1.61 * 0.86, "feet"),
  49797. name: "Head",
  49798. image: {
  49799. source: "./media/characters/keltre/head.svg",
  49800. extra: 534/421,
  49801. bottom: 0/534
  49802. }
  49803. },
  49804. hand: {
  49805. height: math.unit(1.3 * 0.86, "feet"),
  49806. name: "Hand",
  49807. image: {
  49808. source: "./media/characters/keltre/hand.svg"
  49809. }
  49810. },
  49811. foot: {
  49812. height: math.unit(1.8 * 0.86, "feet"),
  49813. name: "Foot",
  49814. image: {
  49815. source: "./media/characters/keltre/foot.svg"
  49816. }
  49817. },
  49818. },
  49819. [
  49820. {
  49821. name: "Fine",
  49822. height: math.unit(1, "inch")
  49823. },
  49824. {
  49825. name: "Dimnutive",
  49826. height: math.unit(4, "inches")
  49827. },
  49828. {
  49829. name: "Tiny",
  49830. height: math.unit(1, "foot")
  49831. },
  49832. {
  49833. name: "Small",
  49834. height: math.unit(3, "feet")
  49835. },
  49836. {
  49837. name: "Normal",
  49838. height: math.unit(5 + 2/12, "feet"),
  49839. default: true
  49840. },
  49841. ]
  49842. ))
  49843. characterMakers.push(() => makeCharacter(
  49844. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49845. {
  49846. front: {
  49847. height: math.unit(6 + 2/12, "feet"),
  49848. name: "Front",
  49849. image: {
  49850. source: "./media/characters/nox/front.svg",
  49851. extra: 1917/1830,
  49852. bottom: 74/1991
  49853. }
  49854. },
  49855. back: {
  49856. height: math.unit(6 + 2/12, "feet"),
  49857. name: "Back",
  49858. image: {
  49859. source: "./media/characters/nox/back.svg",
  49860. extra: 1896/1815,
  49861. bottom: 21/1917
  49862. }
  49863. },
  49864. head: {
  49865. height: math.unit(1.1, "feet"),
  49866. name: "Head",
  49867. image: {
  49868. source: "./media/characters/nox/head.svg",
  49869. extra: 874/704,
  49870. bottom: 0/874
  49871. }
  49872. },
  49873. tattoo: {
  49874. height: math.unit(0.729, "feet"),
  49875. name: "Tattoo",
  49876. image: {
  49877. source: "./media/characters/nox/tattoo.svg"
  49878. }
  49879. },
  49880. },
  49881. [
  49882. {
  49883. name: "Normal",
  49884. height: math.unit(6 + 2/12, "feet")
  49885. },
  49886. {
  49887. name: "Gigamacro",
  49888. height: math.unit(2, "earths"),
  49889. default: true
  49890. },
  49891. {
  49892. name: "Cosmic",
  49893. height: math.unit(867, "yottameters")
  49894. },
  49895. ]
  49896. ))
  49897. characterMakers.push(() => makeCharacter(
  49898. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49899. {
  49900. front: {
  49901. height: math.unit(6, "feet"),
  49902. weight: math.unit(150, "lb"),
  49903. name: "Front",
  49904. image: {
  49905. source: "./media/characters/caspian/front.svg",
  49906. extra: 1443/1359,
  49907. bottom: 0/1443
  49908. }
  49909. },
  49910. back: {
  49911. height: math.unit(6, "feet"),
  49912. weight: math.unit(150, "lb"),
  49913. name: "Back",
  49914. image: {
  49915. source: "./media/characters/caspian/back.svg",
  49916. extra: 1379/1309,
  49917. bottom: 0/1379
  49918. }
  49919. },
  49920. head: {
  49921. height: math.unit(0.9, "feet"),
  49922. name: "Head",
  49923. image: {
  49924. source: "./media/characters/caspian/head.svg",
  49925. extra: 692/492,
  49926. bottom: 0/692
  49927. }
  49928. },
  49929. headAlt: {
  49930. height: math.unit(0.95, "feet"),
  49931. name: "Head (Alt)",
  49932. image: {
  49933. source: "./media/characters/caspian/head-alt.svg",
  49934. extra: 668/508,
  49935. bottom: 0/668
  49936. }
  49937. },
  49938. hand: {
  49939. height: math.unit(0.8, "feet"),
  49940. name: "Hand",
  49941. image: {
  49942. source: "./media/characters/caspian/hand.svg"
  49943. }
  49944. },
  49945. paw: {
  49946. height: math.unit(0.95, "feet"),
  49947. name: "Paw",
  49948. image: {
  49949. source: "./media/characters/caspian/paw.svg"
  49950. }
  49951. },
  49952. },
  49953. [
  49954. {
  49955. name: "Normal",
  49956. height: math.unit(162, "feet"),
  49957. default: true
  49958. },
  49959. ]
  49960. ))
  49961. characterMakers.push(() => makeCharacter(
  49962. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49963. {
  49964. front: {
  49965. height: math.unit(6, "feet"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/myra-aisling/front.svg",
  49969. extra: 1268/1166,
  49970. bottom: 73/1341
  49971. }
  49972. },
  49973. back: {
  49974. height: math.unit(6, "feet"),
  49975. name: "Back",
  49976. image: {
  49977. source: "./media/characters/myra-aisling/back.svg",
  49978. extra: 1249/1149,
  49979. bottom: 79/1328
  49980. }
  49981. },
  49982. dressed: {
  49983. height: math.unit(6, "feet"),
  49984. name: "Dressed",
  49985. image: {
  49986. source: "./media/characters/myra-aisling/dressed.svg",
  49987. extra: 1290/1189,
  49988. bottom: 47/1337
  49989. }
  49990. },
  49991. hand: {
  49992. height: math.unit(1.1, "feet"),
  49993. name: "Hand",
  49994. image: {
  49995. source: "./media/characters/myra-aisling/hand.svg"
  49996. }
  49997. },
  49998. paw: {
  49999. height: math.unit(1.23, "feet"),
  50000. name: "Paw",
  50001. image: {
  50002. source: "./media/characters/myra-aisling/paw.svg"
  50003. }
  50004. },
  50005. },
  50006. [
  50007. {
  50008. name: "Normal",
  50009. height: math.unit(160, "feet"),
  50010. default: true
  50011. },
  50012. ]
  50013. ))
  50014. characterMakers.push(() => makeCharacter(
  50015. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50016. {
  50017. front: {
  50018. height: math.unit(6, "feet"),
  50019. name: "Front",
  50020. image: {
  50021. source: "./media/characters/tenley-sidero/front.svg",
  50022. extra: 1365/1276,
  50023. bottom: 47/1412
  50024. }
  50025. },
  50026. back: {
  50027. height: math.unit(6, "feet"),
  50028. name: "Back",
  50029. image: {
  50030. source: "./media/characters/tenley-sidero/back.svg",
  50031. extra: 1383/1283,
  50032. bottom: 35/1418
  50033. }
  50034. },
  50035. dressed: {
  50036. height: math.unit(6, "feet"),
  50037. name: "Dressed",
  50038. image: {
  50039. source: "./media/characters/tenley-sidero/dressed.svg",
  50040. extra: 1364/1275,
  50041. bottom: 42/1406
  50042. }
  50043. },
  50044. head: {
  50045. height: math.unit(1.47, "feet"),
  50046. name: "Head",
  50047. image: {
  50048. source: "./media/characters/tenley-sidero/head.svg",
  50049. extra: 610/490,
  50050. bottom: 0/610
  50051. }
  50052. },
  50053. },
  50054. [
  50055. {
  50056. name: "Normal",
  50057. height: math.unit(154, "feet"),
  50058. default: true
  50059. },
  50060. ]
  50061. ))
  50062. characterMakers.push(() => makeCharacter(
  50063. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50064. {
  50065. front: {
  50066. height: math.unit(5, "inches"),
  50067. name: "Front",
  50068. image: {
  50069. source: "./media/characters/mallory/front.svg",
  50070. extra: 1919/1678,
  50071. bottom: 29/1948
  50072. }
  50073. },
  50074. hand: {
  50075. height: math.unit(0.73, "inches"),
  50076. name: "Hand",
  50077. image: {
  50078. source: "./media/characters/mallory/hand.svg"
  50079. }
  50080. },
  50081. paw: {
  50082. height: math.unit(0.68, "inches"),
  50083. name: "Paw",
  50084. image: {
  50085. source: "./media/characters/mallory/paw.svg"
  50086. }
  50087. },
  50088. },
  50089. [
  50090. {
  50091. name: "Small",
  50092. height: math.unit(5, "inches"),
  50093. default: true
  50094. },
  50095. ]
  50096. ))
  50097. characterMakers.push(() => makeCharacter(
  50098. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50099. {
  50100. naked: {
  50101. height: math.unit(6, "feet"),
  50102. name: "Naked",
  50103. image: {
  50104. source: "./media/characters/mab/naked.svg",
  50105. extra: 1855/1757,
  50106. bottom: 208/2063
  50107. }
  50108. },
  50109. outside: {
  50110. height: math.unit(6, "feet"),
  50111. name: "Outside",
  50112. image: {
  50113. source: "./media/characters/mab/outside.svg",
  50114. extra: 1855/1757,
  50115. bottom: 208/2063
  50116. }
  50117. },
  50118. party: {
  50119. height: math.unit(6, "feet"),
  50120. name: "Party",
  50121. image: {
  50122. source: "./media/characters/mab/party.svg",
  50123. extra: 1855/1757,
  50124. bottom: 208/2063
  50125. }
  50126. },
  50127. },
  50128. [
  50129. {
  50130. name: "Normal",
  50131. height: math.unit(165, "feet"),
  50132. default: true
  50133. },
  50134. ]
  50135. ))
  50136. characterMakers.push(() => makeCharacter(
  50137. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50138. {
  50139. feral: {
  50140. height: math.unit(12, "feet"),
  50141. weight: math.unit(20000, "lb"),
  50142. name: "Side",
  50143. image: {
  50144. source: "./media/characters/winter/feral.svg",
  50145. extra: 1286/943,
  50146. bottom: 112/1398
  50147. },
  50148. form: "feral",
  50149. default: true
  50150. },
  50151. feralNsfw: {
  50152. height: math.unit(12, "feet"),
  50153. weight: math.unit(20000, "lb"),
  50154. name: "Side (NSFW)",
  50155. image: {
  50156. source: "./media/characters/winter/feral-nsfw.svg",
  50157. extra: 1286/943,
  50158. bottom: 112/1398
  50159. },
  50160. form: "feral"
  50161. },
  50162. dick: {
  50163. height: math.unit(3.79, "feet"),
  50164. name: "Dick",
  50165. image: {
  50166. source: "./media/characters/winter/dick.svg"
  50167. },
  50168. form: "feral"
  50169. },
  50170. anthro: {
  50171. height: math.unit(12, "feet"),
  50172. weight: math.unit(10, "tons"),
  50173. name: "Anthro",
  50174. image: {
  50175. source: "./media/characters/winter/anthro.svg",
  50176. extra: 1701/1553,
  50177. bottom: 64/1765
  50178. },
  50179. form: "anthro",
  50180. default: true
  50181. },
  50182. },
  50183. [
  50184. {
  50185. name: "Big",
  50186. height: math.unit(12, "feet"),
  50187. default: true,
  50188. form: "feral"
  50189. },
  50190. {
  50191. name: "Big",
  50192. height: math.unit(12, "feet"),
  50193. default: true,
  50194. form: "anthro"
  50195. },
  50196. ],
  50197. {
  50198. "feral": {
  50199. name: "Feral",
  50200. default: true
  50201. },
  50202. "anthro": {
  50203. name: "Anthro"
  50204. }
  50205. }
  50206. ))
  50207. characterMakers.push(() => makeCharacter(
  50208. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50209. {
  50210. front: {
  50211. height: math.unit(4.1, "inches"),
  50212. name: "Front",
  50213. image: {
  50214. source: "./media/characters/alto/front.svg",
  50215. extra: 736/627,
  50216. bottom: 90/826
  50217. }
  50218. },
  50219. },
  50220. [
  50221. {
  50222. name: "Normal",
  50223. height: math.unit(4.1, "inches"),
  50224. default: true
  50225. },
  50226. ]
  50227. ))
  50228. characterMakers.push(() => makeCharacter(
  50229. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50230. {
  50231. sitting: {
  50232. height: math.unit(3, "feet"),
  50233. name: "Sitting",
  50234. image: {
  50235. source: "./media/characters/ratstrid-v/sitting.svg",
  50236. extra: 355/310,
  50237. bottom: 136/491
  50238. }
  50239. },
  50240. },
  50241. [
  50242. {
  50243. name: "Normal",
  50244. height: math.unit(3, "feet"),
  50245. default: true
  50246. },
  50247. ]
  50248. ))
  50249. characterMakers.push(() => makeCharacter(
  50250. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50251. {
  50252. back: {
  50253. height: math.unit(6, "feet"),
  50254. weight: math.unit(450, "lb"),
  50255. name: "Back",
  50256. image: {
  50257. source: "./media/characters/siz/back.svg",
  50258. extra: 1449/1274,
  50259. bottom: 13/1462
  50260. }
  50261. },
  50262. },
  50263. [
  50264. {
  50265. name: "Smallest",
  50266. height: math.unit(18 + 3/12, "feet")
  50267. },
  50268. {
  50269. name: "Modest",
  50270. height: math.unit(56 + 8/12, "feet"),
  50271. default: true
  50272. },
  50273. {
  50274. name: "Largest",
  50275. height: math.unit(3590, "feet")
  50276. },
  50277. ]
  50278. ))
  50279. characterMakers.push(() => makeCharacter(
  50280. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50281. {
  50282. front: {
  50283. height: math.unit(5 + 9/12, "feet"),
  50284. weight: math.unit(150, "lb"),
  50285. name: "Front",
  50286. image: {
  50287. source: "./media/characters/ven/front.svg",
  50288. extra: 1372/1320,
  50289. bottom: 73/1445
  50290. }
  50291. },
  50292. side: {
  50293. height: math.unit(5 + 9/12, "feet"),
  50294. weight: math.unit(1150, "lb"),
  50295. name: "Side",
  50296. image: {
  50297. source: "./media/characters/ven/side.svg",
  50298. extra: 1119/1070,
  50299. bottom: 42/1161
  50300. },
  50301. default: true
  50302. },
  50303. },
  50304. [
  50305. {
  50306. name: "Normal",
  50307. height: math.unit(5 + 9/12, "feet"),
  50308. default: true
  50309. },
  50310. ]
  50311. ))
  50312. characterMakers.push(() => makeCharacter(
  50313. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50314. {
  50315. front: {
  50316. height: math.unit(12, "feet"),
  50317. weight: math.unit(1000, "kg"),
  50318. name: "Front",
  50319. image: {
  50320. source: "./media/characters/maple/front.svg",
  50321. extra: 1193/1081,
  50322. bottom: 22/1215
  50323. }
  50324. },
  50325. },
  50326. [
  50327. {
  50328. name: "Compressed",
  50329. height: math.unit(7, "feet")
  50330. },
  50331. {
  50332. name: "Normal",
  50333. height: math.unit(12, "feet"),
  50334. default: true
  50335. },
  50336. ]
  50337. ))
  50338. characterMakers.push(() => makeCharacter(
  50339. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50340. {
  50341. front: {
  50342. height: math.unit(9, "feet"),
  50343. weight: math.unit(1500, "lb"),
  50344. name: "Front",
  50345. image: {
  50346. source: "./media/characters/nora/front.svg",
  50347. extra: 1348/1286,
  50348. bottom: 218/1566
  50349. }
  50350. },
  50351. erect: {
  50352. height: math.unit(9, "feet"),
  50353. weight: math.unit(11500, "lb"),
  50354. name: "Erect",
  50355. image: {
  50356. source: "./media/characters/nora/erect.svg",
  50357. extra: 1488/1433,
  50358. bottom: 133/1621
  50359. }
  50360. },
  50361. },
  50362. [
  50363. {
  50364. name: "Normal",
  50365. height: math.unit(9, "feet"),
  50366. default: true
  50367. },
  50368. ]
  50369. ))
  50370. characterMakers.push(() => makeCharacter(
  50371. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50372. {
  50373. front: {
  50374. height: math.unit(25, "feet"),
  50375. weight: math.unit(27500, "lb"),
  50376. name: "Front",
  50377. image: {
  50378. source: "./media/characters/north-caudin/front.svg",
  50379. extra: 1184/1082,
  50380. bottom: 23/1207
  50381. }
  50382. },
  50383. },
  50384. [
  50385. {
  50386. name: "Compressed",
  50387. height: math.unit(10, "feet")
  50388. },
  50389. {
  50390. name: "Normal",
  50391. height: math.unit(25, "feet"),
  50392. default: true
  50393. },
  50394. ]
  50395. ))
  50396. characterMakers.push(() => makeCharacter(
  50397. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50398. {
  50399. front: {
  50400. height: math.unit(9, "feet"),
  50401. weight: math.unit(1250, "lb"),
  50402. name: "Front",
  50403. image: {
  50404. source: "./media/characters/merrian/front.svg",
  50405. extra: 2393/2304,
  50406. bottom: 40/2433
  50407. }
  50408. },
  50409. },
  50410. [
  50411. {
  50412. name: "Normal",
  50413. height: math.unit(9, "feet"),
  50414. default: true
  50415. },
  50416. ]
  50417. ))
  50418. characterMakers.push(() => makeCharacter(
  50419. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50420. {
  50421. front: {
  50422. height: math.unit(9, "feet"),
  50423. weight: math.unit(1000, "lb"),
  50424. name: "Front",
  50425. image: {
  50426. source: "./media/characters/hazel/front.svg",
  50427. extra: 2351/2298,
  50428. bottom: 38/2389
  50429. }
  50430. },
  50431. },
  50432. [
  50433. {
  50434. name: "Normal",
  50435. height: math.unit(9, "feet"),
  50436. default: true
  50437. },
  50438. ]
  50439. ))
  50440. characterMakers.push(() => makeCharacter(
  50441. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50442. {
  50443. front: {
  50444. height: math.unit(13, "feet"),
  50445. weight: math.unit(3200, "lb"),
  50446. name: "Front",
  50447. image: {
  50448. source: "./media/characters/emma/front.svg",
  50449. extra: 2263/2029,
  50450. bottom: 68/2331
  50451. }
  50452. },
  50453. },
  50454. [
  50455. {
  50456. name: "Normal",
  50457. height: math.unit(13, "feet"),
  50458. default: true
  50459. },
  50460. ]
  50461. ))
  50462. characterMakers.push(() => makeCharacter(
  50463. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50464. {
  50465. front: {
  50466. height: math.unit(11 + 9/12, "feet"),
  50467. weight: math.unit(2500, "lb"),
  50468. name: "Front",
  50469. image: {
  50470. source: "./media/characters/ilumina/front.svg",
  50471. extra: 2248/2209,
  50472. bottom: 164/2412
  50473. }
  50474. },
  50475. },
  50476. [
  50477. {
  50478. name: "Normal",
  50479. height: math.unit(11 + 9/12, "feet"),
  50480. default: true
  50481. },
  50482. ]
  50483. ))
  50484. characterMakers.push(() => makeCharacter(
  50485. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50486. {
  50487. front: {
  50488. height: math.unit(8 + 10/12, "feet"),
  50489. weight: math.unit(1350, "lb"),
  50490. name: "Front",
  50491. image: {
  50492. source: "./media/characters/moonshine/front.svg",
  50493. extra: 2395/2288,
  50494. bottom: 40/2435
  50495. }
  50496. },
  50497. },
  50498. [
  50499. {
  50500. name: "Normal",
  50501. height: math.unit(8 + 10/12, "feet"),
  50502. default: true
  50503. },
  50504. ]
  50505. ))
  50506. characterMakers.push(() => makeCharacter(
  50507. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50508. {
  50509. front: {
  50510. height: math.unit(14, "feet"),
  50511. weight: math.unit(3400, "lb"),
  50512. name: "Front",
  50513. image: {
  50514. source: "./media/characters/aletia/front.svg",
  50515. extra: 1185/1052,
  50516. bottom: 21/1206
  50517. }
  50518. },
  50519. },
  50520. [
  50521. {
  50522. name: "Compressed",
  50523. height: math.unit(8, "feet")
  50524. },
  50525. {
  50526. name: "Normal",
  50527. height: math.unit(14, "feet"),
  50528. default: true
  50529. },
  50530. ]
  50531. ))
  50532. characterMakers.push(() => makeCharacter(
  50533. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50534. {
  50535. front: {
  50536. height: math.unit(17, "feet"),
  50537. weight: math.unit(6500, "lb"),
  50538. name: "Front",
  50539. image: {
  50540. source: "./media/characters/deidra/front.svg",
  50541. extra: 1201/1081,
  50542. bottom: 16/1217
  50543. }
  50544. },
  50545. },
  50546. [
  50547. {
  50548. name: "Compressed",
  50549. height: math.unit(9 + 6/12, "feet")
  50550. },
  50551. {
  50552. name: "Normal",
  50553. height: math.unit(17, "feet"),
  50554. default: true
  50555. },
  50556. ]
  50557. ))
  50558. characterMakers.push(() => makeCharacter(
  50559. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50560. {
  50561. front: {
  50562. height: math.unit(7 + 4/12, "feet"),
  50563. weight: math.unit(280, "lb"),
  50564. name: "Front",
  50565. image: {
  50566. source: "./media/characters/freki-yrmori/front.svg",
  50567. extra: 1286/1182,
  50568. bottom: 29/1315
  50569. }
  50570. },
  50571. maw: {
  50572. height: math.unit(0.9, "feet"),
  50573. name: "Maw",
  50574. image: {
  50575. source: "./media/characters/freki-yrmori/maw.svg"
  50576. }
  50577. },
  50578. },
  50579. [
  50580. {
  50581. name: "Normal",
  50582. height: math.unit(7 + 4/12, "feet"),
  50583. default: true
  50584. },
  50585. {
  50586. name: "Macro",
  50587. height: math.unit(38.5, "meters")
  50588. },
  50589. ]
  50590. ))
  50591. characterMakers.push(() => makeCharacter(
  50592. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50593. {
  50594. side: {
  50595. height: math.unit(47.2, "meters"),
  50596. weight: math.unit(10000, "tons"),
  50597. name: "Side",
  50598. image: {
  50599. source: "./media/characters/aetherios/side.svg",
  50600. extra: 2363/642,
  50601. bottom: 221/2584
  50602. }
  50603. },
  50604. top: {
  50605. height: math.unit(240, "meters"),
  50606. weight: math.unit(10000, "tons"),
  50607. name: "Top",
  50608. image: {
  50609. source: "./media/characters/aetherios/top.svg"
  50610. }
  50611. },
  50612. bottom: {
  50613. height: math.unit(240, "meters"),
  50614. weight: math.unit(10000, "tons"),
  50615. name: "Bottom",
  50616. image: {
  50617. source: "./media/characters/aetherios/bottom.svg"
  50618. }
  50619. },
  50620. head: {
  50621. height: math.unit(38.6, "meters"),
  50622. name: "Head",
  50623. image: {
  50624. source: "./media/characters/aetherios/head.svg",
  50625. extra: 1335/1112,
  50626. bottom: 0/1335
  50627. }
  50628. },
  50629. front: {
  50630. height: math.unit(29, "meters"),
  50631. name: "Front",
  50632. image: {
  50633. source: "./media/characters/aetherios/front.svg",
  50634. extra: 1266/953,
  50635. bottom: 158/1424
  50636. }
  50637. },
  50638. maw: {
  50639. height: math.unit(16.37, "meters"),
  50640. name: "Maw",
  50641. image: {
  50642. source: "./media/characters/aetherios/maw.svg",
  50643. extra: 748/637,
  50644. bottom: 0/748
  50645. },
  50646. extraAttributes: {
  50647. preyCapacity: {
  50648. name: "Capacity",
  50649. power: 3,
  50650. type: "volume",
  50651. base: math.unit(1000, "people")
  50652. },
  50653. tongueSize: {
  50654. name: "Tongue Size",
  50655. power: 2,
  50656. type: "area",
  50657. base: math.unit(21, "m^2")
  50658. }
  50659. }
  50660. },
  50661. forepaw: {
  50662. height: math.unit(18, "meters"),
  50663. name: "Forepaw",
  50664. image: {
  50665. source: "./media/characters/aetherios/forepaw.svg"
  50666. }
  50667. },
  50668. hindpaw: {
  50669. height: math.unit(23, "meters"),
  50670. name: "Hindpaw",
  50671. image: {
  50672. source: "./media/characters/aetherios/hindpaw.svg"
  50673. }
  50674. },
  50675. genitals: {
  50676. height: math.unit(42, "meters"),
  50677. name: "Genitals",
  50678. image: {
  50679. source: "./media/characters/aetherios/genitals.svg"
  50680. }
  50681. },
  50682. },
  50683. [
  50684. {
  50685. name: "Normal",
  50686. height: math.unit(47.2, "meters"),
  50687. default: true
  50688. },
  50689. {
  50690. name: "Macro",
  50691. height: math.unit(160, "meters")
  50692. },
  50693. {
  50694. name: "Mega",
  50695. height: math.unit(1.87, "km")
  50696. },
  50697. {
  50698. name: "Giga",
  50699. height: math.unit(40000, "km")
  50700. },
  50701. {
  50702. name: "Stellar",
  50703. height: math.unit(158000000, "km")
  50704. },
  50705. {
  50706. name: "Cosmic",
  50707. height: math.unit(9.46e12, "km")
  50708. },
  50709. ]
  50710. ))
  50711. characterMakers.push(() => makeCharacter(
  50712. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50713. {
  50714. front: {
  50715. height: math.unit(5 + 4/12, "feet"),
  50716. weight: math.unit(80, "lb"),
  50717. name: "Front",
  50718. image: {
  50719. source: "./media/characters/mizu-gieeg/front.svg",
  50720. extra: 850/709,
  50721. bottom: 52/902
  50722. }
  50723. },
  50724. back: {
  50725. height: math.unit(5 + 4/12, "feet"),
  50726. weight: math.unit(80, "lb"),
  50727. name: "Back",
  50728. image: {
  50729. source: "./media/characters/mizu-gieeg/back.svg",
  50730. extra: 882/745,
  50731. bottom: 25/907
  50732. }
  50733. },
  50734. },
  50735. [
  50736. {
  50737. name: "Normal",
  50738. height: math.unit(5 + 4/12, "feet"),
  50739. default: true
  50740. },
  50741. ]
  50742. ))
  50743. characterMakers.push(() => makeCharacter(
  50744. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50745. {
  50746. front: {
  50747. height: math.unit(6, "feet"),
  50748. name: "Front",
  50749. image: {
  50750. source: "./media/characters/roselle-st-papier/front.svg",
  50751. extra: 1430/1280,
  50752. bottom: 37/1467
  50753. }
  50754. },
  50755. back: {
  50756. height: math.unit(6, "feet"),
  50757. name: "Back",
  50758. image: {
  50759. source: "./media/characters/roselle-st-papier/back.svg",
  50760. extra: 1491/1296,
  50761. bottom: 23/1514
  50762. }
  50763. },
  50764. ear: {
  50765. height: math.unit(1.26, "feet"),
  50766. name: "Ear",
  50767. image: {
  50768. source: "./media/characters/roselle-st-papier/ear.svg"
  50769. }
  50770. },
  50771. },
  50772. [
  50773. {
  50774. name: "Normal",
  50775. height: math.unit(150, "feet"),
  50776. default: true
  50777. },
  50778. ]
  50779. ))
  50780. characterMakers.push(() => makeCharacter(
  50781. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50782. {
  50783. front: {
  50784. height: math.unit(1, "inches"),
  50785. name: "Front",
  50786. image: {
  50787. source: "./media/characters/valargent/front.svg",
  50788. extra: 1825/1694,
  50789. bottom: 62/1887
  50790. }
  50791. },
  50792. back: {
  50793. height: math.unit(1, "inches"),
  50794. name: "Back",
  50795. image: {
  50796. source: "./media/characters/valargent/back.svg",
  50797. extra: 1775/1682,
  50798. bottom: 88/1863
  50799. }
  50800. },
  50801. },
  50802. [
  50803. {
  50804. name: "Micro",
  50805. height: math.unit(1, "inch"),
  50806. default: true
  50807. },
  50808. ]
  50809. ))
  50810. characterMakers.push(() => makeCharacter(
  50811. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50812. {
  50813. front: {
  50814. height: math.unit(3.4, "meters"),
  50815. name: "Front",
  50816. image: {
  50817. source: "./media/characters/zarina/front.svg",
  50818. extra: 1733/1425,
  50819. bottom: 93/1826
  50820. }
  50821. },
  50822. squatting: {
  50823. height: math.unit(2.14, "meters"),
  50824. name: "Squatting",
  50825. image: {
  50826. source: "./media/characters/zarina/squatting.svg",
  50827. extra: 1073/788,
  50828. bottom: 63/1136
  50829. }
  50830. },
  50831. back: {
  50832. height: math.unit(2.14, "meters"),
  50833. name: "Back",
  50834. image: {
  50835. source: "./media/characters/zarina/back.svg",
  50836. extra: 1128/885,
  50837. bottom: 0/1128
  50838. }
  50839. },
  50840. },
  50841. [
  50842. {
  50843. name: "Normal",
  50844. height: math.unit(3.4, "meters"),
  50845. default: true
  50846. },
  50847. {
  50848. name: "Big",
  50849. height: math.unit(5, "meters")
  50850. },
  50851. {
  50852. name: "Macro",
  50853. height: math.unit(110, "meters")
  50854. },
  50855. ]
  50856. ))
  50857. characterMakers.push(() => makeCharacter(
  50858. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50859. {
  50860. front: {
  50861. height: math.unit(7, "feet"),
  50862. name: "Front",
  50863. image: {
  50864. source: "./media/characters/ventus-astro-fox/front.svg",
  50865. extra: 1792/1623,
  50866. bottom: 28/1820
  50867. }
  50868. },
  50869. back: {
  50870. height: math.unit(7, "feet"),
  50871. name: "Back",
  50872. image: {
  50873. source: "./media/characters/ventus-astro-fox/back.svg",
  50874. extra: 1789/1620,
  50875. bottom: 31/1820
  50876. }
  50877. },
  50878. outfit: {
  50879. height: math.unit(7, "feet"),
  50880. name: "Outfit",
  50881. image: {
  50882. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50883. extra: 1054/925,
  50884. bottom: 15/1069
  50885. }
  50886. },
  50887. head: {
  50888. height: math.unit(1.12, "feet"),
  50889. name: "Head",
  50890. image: {
  50891. source: "./media/characters/ventus-astro-fox/head.svg",
  50892. extra: 866/504,
  50893. bottom: 0/866
  50894. }
  50895. },
  50896. hand: {
  50897. height: math.unit(1, "feet"),
  50898. name: "Hand",
  50899. image: {
  50900. source: "./media/characters/ventus-astro-fox/hand.svg"
  50901. }
  50902. },
  50903. paw: {
  50904. height: math.unit(1.5, "feet"),
  50905. name: "Paw",
  50906. image: {
  50907. source: "./media/characters/ventus-astro-fox/paw.svg"
  50908. }
  50909. },
  50910. },
  50911. [
  50912. {
  50913. name: "Normal",
  50914. height: math.unit(7, "feet"),
  50915. default: true
  50916. },
  50917. {
  50918. name: "Macro",
  50919. height: math.unit(200, "feet")
  50920. },
  50921. {
  50922. name: "Cosmic",
  50923. height: math.unit(3, "universes")
  50924. },
  50925. ]
  50926. ))
  50927. characterMakers.push(() => makeCharacter(
  50928. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50929. {
  50930. front: {
  50931. height: math.unit(3, "meters"),
  50932. weight: math.unit(7000, "lb"),
  50933. name: "Front",
  50934. image: {
  50935. source: "./media/characters/core-t/front.svg",
  50936. extra: 5729/4941,
  50937. bottom: 1129/6858
  50938. }
  50939. },
  50940. },
  50941. [
  50942. {
  50943. name: "Big",
  50944. height: math.unit(3, "meters"),
  50945. default: true
  50946. },
  50947. ]
  50948. ))
  50949. characterMakers.push(() => makeCharacter(
  50950. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50951. {
  50952. normal: {
  50953. height: math.unit(6 + 6/12, "feet"),
  50954. weight: math.unit(275, "lb"),
  50955. name: "Front",
  50956. image: {
  50957. source: "./media/characters/cadbunny/normal.svg",
  50958. extra: 1129/947,
  50959. bottom: 93/1222
  50960. },
  50961. default: true,
  50962. form: "normal"
  50963. },
  50964. gigantamax: {
  50965. height: math.unit(26, "feet"),
  50966. weight: math.unit(16000, "lb"),
  50967. name: "Front",
  50968. image: {
  50969. source: "./media/characters/cadbunny/gigantamax.svg",
  50970. extra: 1133/944,
  50971. bottom: 90/1223
  50972. },
  50973. default: true,
  50974. form: "gigantamax"
  50975. },
  50976. },
  50977. [
  50978. {
  50979. name: "Normal",
  50980. height: math.unit(6 + 6/12, "feet"),
  50981. default: true,
  50982. form: "normal"
  50983. },
  50984. {
  50985. name: "Small",
  50986. height: math.unit(26, "feet"),
  50987. default: true,
  50988. form: "gigantamax"
  50989. },
  50990. {
  50991. name: "Large",
  50992. height: math.unit(78, "feet"),
  50993. form: "gigantamax"
  50994. },
  50995. ],
  50996. {
  50997. "normal": {
  50998. name: "Normal",
  50999. default: true
  51000. },
  51001. "gigantamax": {
  51002. name: "Gigantamax"
  51003. }
  51004. }
  51005. ))
  51006. characterMakers.push(() => makeCharacter(
  51007. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51008. {
  51009. anthroFront: {
  51010. height: math.unit(8, "feet"),
  51011. weight: math.unit(300, "lb"),
  51012. name: "Front",
  51013. image: {
  51014. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51015. extra: 1272/1176,
  51016. bottom: 53/1325
  51017. },
  51018. form: "anthro",
  51019. default: true
  51020. },
  51021. feralSide: {
  51022. height: math.unit(4, "feet"),
  51023. weight: math.unit(250, "lb"),
  51024. name: "Side",
  51025. image: {
  51026. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51027. extra: 731/621,
  51028. bottom: 0/731
  51029. },
  51030. form: "feral",
  51031. default: true
  51032. },
  51033. },
  51034. [
  51035. {
  51036. name: "Regular",
  51037. height: math.unit(8, "feet"),
  51038. form: "anthro"
  51039. },
  51040. {
  51041. name: "Macro",
  51042. height: math.unit(250, "feet"),
  51043. form: "anthro",
  51044. default: true
  51045. },
  51046. {
  51047. name: "Regular",
  51048. height: math.unit(4, "feet"),
  51049. form: "feral"
  51050. },
  51051. {
  51052. name: "Macro",
  51053. height: math.unit(125, "feet"),
  51054. form: "feral",
  51055. default: true
  51056. },
  51057. ],
  51058. {
  51059. "anthro": {
  51060. name: "Anthro",
  51061. default: true
  51062. },
  51063. "feral": {
  51064. name: "Feral",
  51065. },
  51066. }
  51067. ))
  51068. characterMakers.push(() => makeCharacter(
  51069. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51070. {
  51071. front: {
  51072. height: math.unit(11 + 10/12, "feet"),
  51073. weight: math.unit(1587, "kg"),
  51074. name: "Front",
  51075. image: {
  51076. source: "./media/characters/maple-javira-dragon/front.svg",
  51077. extra: 1136/744,
  51078. bottom: 73/1209
  51079. }
  51080. },
  51081. side: {
  51082. height: math.unit(11 + 10/12, "feet"),
  51083. weight: math.unit(1587, "kg"),
  51084. name: "Side",
  51085. image: {
  51086. source: "./media/characters/maple-javira-dragon/side.svg",
  51087. extra: 712/505,
  51088. bottom: 17/729
  51089. }
  51090. },
  51091. head: {
  51092. height: math.unit(8.05, "feet"),
  51093. name: "Head",
  51094. image: {
  51095. source: "./media/characters/maple-javira-dragon/head.svg",
  51096. extra: 1420/1344,
  51097. bottom: 0/1420
  51098. }
  51099. },
  51100. },
  51101. [
  51102. {
  51103. name: "Normal",
  51104. height: math.unit(11 + 10/12, "feet"),
  51105. default: true
  51106. },
  51107. ]
  51108. ))
  51109. characterMakers.push(() => makeCharacter(
  51110. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51111. {
  51112. front: {
  51113. height: math.unit(117, "cm"),
  51114. weight: math.unit(50, "kg"),
  51115. name: "Front",
  51116. image: {
  51117. source: "./media/characters/sonia-wyverntail/front.svg",
  51118. extra: 708/592,
  51119. bottom: 25/733
  51120. }
  51121. },
  51122. },
  51123. [
  51124. {
  51125. name: "Normal",
  51126. height: math.unit(117, "cm"),
  51127. default: true
  51128. },
  51129. ]
  51130. ))
  51131. characterMakers.push(() => makeCharacter(
  51132. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51133. {
  51134. front: {
  51135. height: math.unit(6 + 5/12, "feet"),
  51136. name: "Front",
  51137. image: {
  51138. source: "./media/characters/micah/front.svg",
  51139. extra: 1758/1546,
  51140. bottom: 214/1972
  51141. }
  51142. },
  51143. },
  51144. [
  51145. {
  51146. name: "Normal",
  51147. height: math.unit(6 + 5/12, "feet"),
  51148. default: true
  51149. },
  51150. ]
  51151. ))
  51152. characterMakers.push(() => makeCharacter(
  51153. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51154. {
  51155. front: {
  51156. height: math.unit(5 + 10/12, "feet"),
  51157. weight: math.unit(220, "lb"),
  51158. name: "Front",
  51159. image: {
  51160. source: "./media/characters/zarya/front.svg",
  51161. extra: 593/572,
  51162. bottom: 50/643
  51163. }
  51164. },
  51165. back: {
  51166. height: math.unit(5 + 10/12, "feet"),
  51167. weight: math.unit(220, "lb"),
  51168. name: "Back",
  51169. image: {
  51170. source: "./media/characters/zarya/back.svg",
  51171. extra: 603/582,
  51172. bottom: 38/641
  51173. }
  51174. },
  51175. },
  51176. [
  51177. {
  51178. name: "Normal",
  51179. height: math.unit(5 + 10/12, "feet"),
  51180. default: true
  51181. },
  51182. ]
  51183. ))
  51184. characterMakers.push(() => makeCharacter(
  51185. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51186. {
  51187. front: {
  51188. height: math.unit(7.5, "feet"),
  51189. name: "Front",
  51190. image: {
  51191. source: "./media/characters/sven-hatisson/front.svg",
  51192. extra: 917/857,
  51193. bottom: 42/959
  51194. }
  51195. },
  51196. back: {
  51197. height: math.unit(7.5, "feet"),
  51198. name: "Back",
  51199. image: {
  51200. source: "./media/characters/sven-hatisson/back.svg",
  51201. extra: 903/856,
  51202. bottom: 15/918
  51203. }
  51204. },
  51205. },
  51206. [
  51207. {
  51208. name: "Base Height",
  51209. height: math.unit(7.5, "feet")
  51210. },
  51211. {
  51212. name: "Usual Height",
  51213. height: math.unit(13.5, "feet"),
  51214. default: true
  51215. },
  51216. {
  51217. name: "Smaller Macro",
  51218. height: math.unit(85, "feet")
  51219. },
  51220. {
  51221. name: "Moderate Macro",
  51222. height: math.unit(320, "feet")
  51223. },
  51224. {
  51225. name: "Large Macro",
  51226. height: math.unit(1000, "feet")
  51227. },
  51228. {
  51229. name: "Largest Size",
  51230. height: math.unit(2, "miles")
  51231. },
  51232. ]
  51233. ))
  51234. characterMakers.push(() => makeCharacter(
  51235. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51236. {
  51237. side: {
  51238. height: math.unit(1.8, "meters"),
  51239. weight: math.unit(275, "kg"),
  51240. name: "Side",
  51241. image: {
  51242. source: "./media/characters/terra/side.svg",
  51243. extra: 1273/1147,
  51244. bottom: 0/1273
  51245. }
  51246. },
  51247. },
  51248. [
  51249. {
  51250. name: "Normal",
  51251. height: math.unit(16.2, "meters"),
  51252. default: true
  51253. },
  51254. ]
  51255. ))
  51256. characterMakers.push(() => makeCharacter(
  51257. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51258. {
  51259. borzoiFront: {
  51260. height: math.unit(6 + 9/12, "feet"),
  51261. name: "Front",
  51262. image: {
  51263. source: "./media/characters/rae/borzoi-front.svg",
  51264. extra: 1161/1098,
  51265. bottom: 31/1192
  51266. },
  51267. form: "borzoi",
  51268. default: true
  51269. },
  51270. werewolfFront: {
  51271. height: math.unit(8 + 7/12, "feet"),
  51272. name: "Front",
  51273. image: {
  51274. source: "./media/characters/rae/werewolf-front.svg",
  51275. extra: 1411/1334,
  51276. bottom: 127/1538
  51277. },
  51278. form: "werewolf",
  51279. default: true
  51280. },
  51281. },
  51282. [
  51283. {
  51284. name: "Normal",
  51285. height: math.unit(6 + 9/12, "feet"),
  51286. default: true,
  51287. form: "borzoi"
  51288. },
  51289. {
  51290. name: "Normal",
  51291. height: math.unit(8 + 7/12, "feet"),
  51292. default: true,
  51293. form: "werewolf"
  51294. },
  51295. ],
  51296. {
  51297. "borzoi": {
  51298. name: "Borzoi",
  51299. default: true
  51300. },
  51301. "werewolf": {
  51302. name: "Werewolf",
  51303. },
  51304. }
  51305. ))
  51306. characterMakers.push(() => makeCharacter(
  51307. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51308. {
  51309. front: {
  51310. height: math.unit(8 + 7/12, "feet"),
  51311. weight: math.unit(482, "lb"),
  51312. name: "Front",
  51313. image: {
  51314. source: "./media/characters/kit/front.svg",
  51315. extra: 1247/1103,
  51316. bottom: 41/1288
  51317. }
  51318. },
  51319. back: {
  51320. height: math.unit(8 + 7/12, "feet"),
  51321. weight: math.unit(482, "lb"),
  51322. name: "Back",
  51323. image: {
  51324. source: "./media/characters/kit/back.svg",
  51325. extra: 1252/1123,
  51326. bottom: 21/1273
  51327. }
  51328. },
  51329. paw: {
  51330. height: math.unit(1.46, "feet"),
  51331. name: "Paw",
  51332. image: {
  51333. source: "./media/characters/kit/paw.svg"
  51334. }
  51335. },
  51336. },
  51337. [
  51338. {
  51339. name: "Normal",
  51340. height: math.unit(2.61, "meters"),
  51341. default: true
  51342. },
  51343. {
  51344. name: "\"Tall\"",
  51345. height: math.unit(8.21, "meters")
  51346. },
  51347. {
  51348. name: "Tall",
  51349. height: math.unit(19.6, "meters")
  51350. },
  51351. {
  51352. name: "Very Tall",
  51353. height: math.unit(57.91, "meters")
  51354. },
  51355. {
  51356. name: "Semi-Macro",
  51357. height: math.unit(138.64, "meters")
  51358. },
  51359. {
  51360. name: "Macro",
  51361. height: math.unit(831.99, "meters")
  51362. },
  51363. {
  51364. name: "EX-Macro",
  51365. height: math.unit(96451121, "meters")
  51366. },
  51367. {
  51368. name: "S1-Omnipotent",
  51369. height: math.unit(4.42074e+9, "meters")
  51370. },
  51371. {
  51372. name: "S2-Omnipotent",
  51373. height: math.unit(9.42074e+17, "meters")
  51374. },
  51375. {
  51376. name: "Omnipotent",
  51377. height: math.unit(4.23112e+24, "meters")
  51378. },
  51379. {
  51380. name: "Hypergod",
  51381. height: math.unit(5.05176e+27, "meters")
  51382. },
  51383. {
  51384. name: "Hypergod-EX",
  51385. height: math.unit(9.45532e+49, "meters")
  51386. },
  51387. {
  51388. name: "Hypergod-SP",
  51389. height: math.unit(9.45532e+195, "meters")
  51390. },
  51391. ]
  51392. ))
  51393. characterMakers.push(() => makeCharacter(
  51394. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51395. {
  51396. side: {
  51397. height: math.unit(0.6, "meters"),
  51398. weight: math.unit(24, "kg"),
  51399. name: "Side",
  51400. image: {
  51401. source: "./media/characters/celeste/side.svg",
  51402. extra: 810/517,
  51403. bottom: 53/863
  51404. }
  51405. },
  51406. },
  51407. [
  51408. {
  51409. name: "Velociraptor",
  51410. height: math.unit(0.6, "meters"),
  51411. default: true
  51412. },
  51413. {
  51414. name: "Utahraptor",
  51415. height: math.unit(1.8, "meters")
  51416. },
  51417. {
  51418. name: "Gallimimus",
  51419. height: math.unit(4.0, "meters")
  51420. },
  51421. {
  51422. name: "Large",
  51423. height: math.unit(20, "meters")
  51424. },
  51425. {
  51426. name: "Planetary",
  51427. height: math.unit(50, "megameters")
  51428. },
  51429. {
  51430. name: "Stellar",
  51431. height: math.unit(1.5, "gigameters")
  51432. },
  51433. {
  51434. name: "Galactic",
  51435. height: math.unit(100, "exameters")
  51436. },
  51437. ]
  51438. ))
  51439. characterMakers.push(() => makeCharacter(
  51440. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51441. {
  51442. front: {
  51443. height: math.unit(6, "feet"),
  51444. weight: math.unit(210, "lb"),
  51445. name: "Front",
  51446. image: {
  51447. source: "./media/characters/glacia/front.svg",
  51448. extra: 958/901,
  51449. bottom: 45/1003
  51450. }
  51451. },
  51452. },
  51453. [
  51454. {
  51455. name: "Macro",
  51456. height: math.unit(1000, "meters"),
  51457. default: true
  51458. },
  51459. ]
  51460. ))
  51461. characterMakers.push(() => makeCharacter(
  51462. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51463. {
  51464. front: {
  51465. height: math.unit(4, "meters"),
  51466. name: "Front",
  51467. image: {
  51468. source: "./media/characters/giri/front.svg",
  51469. extra: 966/894,
  51470. bottom: 21/987
  51471. }
  51472. },
  51473. },
  51474. [
  51475. {
  51476. name: "Normal",
  51477. height: math.unit(4, "meters"),
  51478. default: true
  51479. },
  51480. ]
  51481. ))
  51482. characterMakers.push(() => makeCharacter(
  51483. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51484. {
  51485. back: {
  51486. height: math.unit(4, "feet"),
  51487. weight: math.unit(37, "lb"),
  51488. name: "Back",
  51489. image: {
  51490. source: "./media/characters/tin/back.svg",
  51491. extra: 845/780,
  51492. bottom: 28/873
  51493. }
  51494. },
  51495. },
  51496. [
  51497. {
  51498. name: "Normal",
  51499. height: math.unit(4, "feet"),
  51500. default: true
  51501. },
  51502. ]
  51503. ))
  51504. characterMakers.push(() => makeCharacter(
  51505. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51506. {
  51507. front: {
  51508. height: math.unit(25, "feet"),
  51509. name: "Front",
  51510. image: {
  51511. source: "./media/characters/cadenza-vivace/front.svg",
  51512. extra: 1842/1578,
  51513. bottom: 30/1872
  51514. }
  51515. },
  51516. },
  51517. [
  51518. {
  51519. name: "Macro",
  51520. height: math.unit(25, "feet"),
  51521. default: true
  51522. },
  51523. ]
  51524. ))
  51525. characterMakers.push(() => makeCharacter(
  51526. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51527. {
  51528. front: {
  51529. height: math.unit(10, "feet"),
  51530. weight: math.unit(625, "kg"),
  51531. name: "Front",
  51532. image: {
  51533. source: "./media/characters/zain/front.svg",
  51534. extra: 1682/1498,
  51535. bottom: 223/1905
  51536. }
  51537. },
  51538. back: {
  51539. height: math.unit(10, "feet"),
  51540. weight: math.unit(625, "kg"),
  51541. name: "Back",
  51542. image: {
  51543. source: "./media/characters/zain/back.svg",
  51544. extra: 1814/1657,
  51545. bottom: 152/1966
  51546. }
  51547. },
  51548. head: {
  51549. height: math.unit(10, "feet"),
  51550. weight: math.unit(625, "kg"),
  51551. name: "Head",
  51552. image: {
  51553. source: "./media/characters/zain/head.svg",
  51554. extra: 1059/762,
  51555. bottom: 0/1059
  51556. }
  51557. },
  51558. },
  51559. [
  51560. {
  51561. name: "Normal",
  51562. height: math.unit(10, "feet"),
  51563. default: true
  51564. },
  51565. ]
  51566. ))
  51567. characterMakers.push(() => makeCharacter(
  51568. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51569. {
  51570. front: {
  51571. height: math.unit(6 + 5/12, "feet"),
  51572. weight: math.unit(750, "lb"),
  51573. name: "Front",
  51574. image: {
  51575. source: "./media/characters/ruchex/front.svg",
  51576. extra: 877/820,
  51577. bottom: 17/894
  51578. },
  51579. extraAttributes: {
  51580. "width": {
  51581. name: "Width",
  51582. power: 1,
  51583. type: "length",
  51584. base: math.unit(4.757, "feet")
  51585. },
  51586. }
  51587. },
  51588. },
  51589. [
  51590. {
  51591. name: "Normal",
  51592. height: math.unit(6 + 5/12, "feet"),
  51593. default: true
  51594. },
  51595. ]
  51596. ))
  51597. characterMakers.push(() => makeCharacter(
  51598. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51599. {
  51600. dressedFront: {
  51601. height: math.unit(191, "cm"),
  51602. weight: math.unit(80, "kg"),
  51603. name: "Front",
  51604. image: {
  51605. source: "./media/characters/buster/dressed-front.svg",
  51606. extra: 1022/973,
  51607. bottom: 69/1091
  51608. }
  51609. },
  51610. dressedBack: {
  51611. height: math.unit(191, "cm"),
  51612. weight: math.unit(80, "kg"),
  51613. name: "Back",
  51614. image: {
  51615. source: "./media/characters/buster/dressed-back.svg",
  51616. extra: 1018/970,
  51617. bottom: 55/1073
  51618. }
  51619. },
  51620. nudeFront: {
  51621. height: math.unit(191, "cm"),
  51622. weight: math.unit(80, "kg"),
  51623. name: "Front (Nude)",
  51624. image: {
  51625. source: "./media/characters/buster/nude-front.svg",
  51626. extra: 1022/973,
  51627. bottom: 69/1091
  51628. }
  51629. },
  51630. nudeBack: {
  51631. height: math.unit(191, "cm"),
  51632. weight: math.unit(80, "kg"),
  51633. name: "Back (Nude)",
  51634. image: {
  51635. source: "./media/characters/buster/nude-back.svg",
  51636. extra: 1018/970,
  51637. bottom: 55/1073
  51638. }
  51639. },
  51640. dick: {
  51641. height: math.unit(2.59, "feet"),
  51642. name: "Dick",
  51643. image: {
  51644. source: "./media/characters/buster/dick.svg"
  51645. }
  51646. },
  51647. ass: {
  51648. height: math.unit(1.2, "feet"),
  51649. name: "Ass",
  51650. image: {
  51651. source: "./media/characters/buster/ass.svg"
  51652. }
  51653. },
  51654. },
  51655. [
  51656. {
  51657. name: "Normal",
  51658. height: math.unit(191, "cm"),
  51659. default: true
  51660. },
  51661. ]
  51662. ))
  51663. characterMakers.push(() => makeCharacter(
  51664. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51665. {
  51666. side: {
  51667. height: math.unit(8.1, "feet"),
  51668. weight: math.unit(3500, "lb"),
  51669. name: "Side",
  51670. image: {
  51671. source: "./media/characters/sonya/side.svg",
  51672. extra: 1730/1317,
  51673. bottom: 86/1816
  51674. }
  51675. },
  51676. },
  51677. [
  51678. {
  51679. name: "Normal",
  51680. height: math.unit(8.1, "feet"),
  51681. default: true
  51682. },
  51683. ]
  51684. ))
  51685. characterMakers.push(() => makeCharacter(
  51686. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51687. {
  51688. front: {
  51689. height: math.unit(6, "feet"),
  51690. weight: math.unit(150, "lb"),
  51691. name: "Front",
  51692. image: {
  51693. source: "./media/characters/cadence-andrysiak/front.svg",
  51694. extra: 1164/1121,
  51695. bottom: 60/1224
  51696. }
  51697. },
  51698. back: {
  51699. height: math.unit(6, "feet"),
  51700. weight: math.unit(150, "lb"),
  51701. name: "Back",
  51702. image: {
  51703. source: "./media/characters/cadence-andrysiak/back.svg",
  51704. extra: 1200/1165,
  51705. bottom: 9/1209
  51706. }
  51707. },
  51708. dressed: {
  51709. height: math.unit(6, "feet"),
  51710. weight: math.unit(150, "lb"),
  51711. name: "Dressed",
  51712. image: {
  51713. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51714. extra: 1164/1121,
  51715. bottom: 60/1224
  51716. }
  51717. },
  51718. },
  51719. [
  51720. {
  51721. name: "Micro",
  51722. height: math.unit(1, "mm")
  51723. },
  51724. {
  51725. name: "Normal",
  51726. height: math.unit(6, "feet"),
  51727. default: true
  51728. },
  51729. ]
  51730. ))
  51731. characterMakers.push(() => makeCharacter(
  51732. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51733. {
  51734. front: {
  51735. height: math.unit(60, "inches"),
  51736. weight: math.unit(16, "lb"),
  51737. preyCapacity: math.unit(80, "liters"),
  51738. name: "Front",
  51739. image: {
  51740. source: "./media/characters/penny-lynx/front.svg",
  51741. extra: 1959/1769,
  51742. bottom: 49/2008
  51743. }
  51744. },
  51745. },
  51746. [
  51747. {
  51748. name: "Nokia",
  51749. height: math.unit(2, "inches")
  51750. },
  51751. {
  51752. name: "Desktop",
  51753. height: math.unit(24, "inches")
  51754. },
  51755. {
  51756. name: "TV",
  51757. height: math.unit(60, "inches")
  51758. },
  51759. {
  51760. name: "Jumbotron",
  51761. height: math.unit(12, "feet")
  51762. },
  51763. {
  51764. name: "Billboard",
  51765. height: math.unit(48, "feet"),
  51766. default: true
  51767. },
  51768. {
  51769. name: "IMAX",
  51770. height: math.unit(96, "feet")
  51771. },
  51772. {
  51773. name: "SINGULARITY",
  51774. height: math.unit(864938, "miles")
  51775. },
  51776. ]
  51777. ))
  51778. characterMakers.push(() => makeCharacter(
  51779. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51780. {
  51781. front: {
  51782. height: math.unit(5 + 4/12, "feet"),
  51783. weight: math.unit(230, "lb"),
  51784. name: "Front",
  51785. image: {
  51786. source: "./media/characters/sukebe/front.svg",
  51787. extra: 2130/2038,
  51788. bottom: 90/2220
  51789. }
  51790. },
  51791. back: {
  51792. height: math.unit(3.48, "feet"),
  51793. weight: math.unit(230, "lb"),
  51794. name: "Back",
  51795. image: {
  51796. source: "./media/characters/sukebe/back.svg",
  51797. extra: 1670/1604,
  51798. bottom: 0/1670
  51799. }
  51800. },
  51801. },
  51802. [
  51803. {
  51804. name: "Normal",
  51805. height: math.unit(5 + 4/12, "feet"),
  51806. default: true
  51807. },
  51808. ]
  51809. ))
  51810. characterMakers.push(() => makeCharacter(
  51811. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51812. {
  51813. front: {
  51814. height: math.unit(6, "feet"),
  51815. name: "Front",
  51816. image: {
  51817. source: "./media/characters/nylla/front.svg",
  51818. extra: 1868/1699,
  51819. bottom: 97/1965
  51820. }
  51821. },
  51822. back: {
  51823. height: math.unit(6, "feet"),
  51824. name: "Back",
  51825. image: {
  51826. source: "./media/characters/nylla/back.svg",
  51827. extra: 1889/1712,
  51828. bottom: 93/1982
  51829. }
  51830. },
  51831. frontNsfw: {
  51832. height: math.unit(6, "feet"),
  51833. name: "Front (NSFW)",
  51834. image: {
  51835. source: "./media/characters/nylla/front-nsfw.svg",
  51836. extra: 1868/1699,
  51837. bottom: 97/1965
  51838. },
  51839. extraAttributes: {
  51840. "dickLength": {
  51841. name: "Dick Length",
  51842. power: 1,
  51843. type: "length",
  51844. base: math.unit(1.4, "feet")
  51845. },
  51846. "cumVolume": {
  51847. name: "Cum Volume",
  51848. power: 3,
  51849. type: "volume",
  51850. base: math.unit(100, "mL")
  51851. },
  51852. }
  51853. },
  51854. backNsfw: {
  51855. height: math.unit(6, "feet"),
  51856. name: "Back (NSFW)",
  51857. image: {
  51858. source: "./media/characters/nylla/back-nsfw.svg",
  51859. extra: 1889/1712,
  51860. bottom: 93/1982
  51861. }
  51862. },
  51863. maw: {
  51864. height: math.unit(2.10, "feet"),
  51865. name: "Maw",
  51866. image: {
  51867. source: "./media/characters/nylla/maw.svg"
  51868. }
  51869. },
  51870. paws: {
  51871. height: math.unit(2.06, "feet"),
  51872. name: "Paws",
  51873. image: {
  51874. source: "./media/characters/nylla/paws.svg"
  51875. }
  51876. },
  51877. muzzle: {
  51878. height: math.unit(0.61, "feet"),
  51879. name: "Muzzle",
  51880. image: {
  51881. source: "./media/characters/nylla/muzzle.svg"
  51882. }
  51883. },
  51884. sheath: {
  51885. height: math.unit(1.305, "feet"),
  51886. name: "Sheath",
  51887. image: {
  51888. source: "./media/characters/nylla/sheath.svg"
  51889. }
  51890. },
  51891. },
  51892. [
  51893. {
  51894. name: "Micro",
  51895. height: math.unit(7.5, "inches")
  51896. },
  51897. {
  51898. name: "Normal",
  51899. height: math.unit(7, "feet"),
  51900. default: true
  51901. },
  51902. {
  51903. name: "Macro",
  51904. height: math.unit(60, "feet")
  51905. },
  51906. {
  51907. name: "Mega",
  51908. height: math.unit(200, "feet")
  51909. },
  51910. ]
  51911. ))
  51912. characterMakers.push(() => makeCharacter(
  51913. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51914. {
  51915. front: {
  51916. height: math.unit(10, "feet"),
  51917. weight: math.unit(2300, "lb"),
  51918. name: "Front",
  51919. image: {
  51920. source: "./media/characters/hunt3r/front.svg",
  51921. extra: 1909/1742,
  51922. bottom: 46/1955
  51923. }
  51924. },
  51925. },
  51926. [
  51927. {
  51928. name: "Normal",
  51929. height: math.unit(10, "feet"),
  51930. default: true
  51931. },
  51932. ]
  51933. ))
  51934. characterMakers.push(() => makeCharacter(
  51935. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51936. {
  51937. dressed: {
  51938. height: math.unit(11, "feet"),
  51939. weight: math.unit(18500, "lb"),
  51940. preyCapacity: math.unit(9, "people"),
  51941. name: "Dressed",
  51942. image: {
  51943. source: "./media/characters/cylphis/dressed.svg",
  51944. extra: 1028/1003,
  51945. bottom: 75/1103
  51946. },
  51947. },
  51948. undressed: {
  51949. height: math.unit(11, "feet"),
  51950. weight: math.unit(18500, "lb"),
  51951. preyCapacity: math.unit(9, "people"),
  51952. name: "Undressed",
  51953. image: {
  51954. source: "./media/characters/cylphis/undressed.svg",
  51955. extra: 1028/1003,
  51956. bottom: 75/1103
  51957. }
  51958. },
  51959. full: {
  51960. height: math.unit(11, "feet"),
  51961. weight: math.unit(18500 + 150*9, "lb"),
  51962. preyCapacity: math.unit(9, "people"),
  51963. name: "Full",
  51964. image: {
  51965. source: "./media/characters/cylphis/full.svg",
  51966. extra: 1028/1003,
  51967. bottom: 75/1103
  51968. }
  51969. },
  51970. },
  51971. [
  51972. {
  51973. name: "Small",
  51974. height: math.unit(8, "feet")
  51975. },
  51976. {
  51977. name: "Normal",
  51978. height: math.unit(11, "feet"),
  51979. default: true
  51980. },
  51981. ]
  51982. ))
  51983. characterMakers.push(() => makeCharacter(
  51984. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51985. {
  51986. front: {
  51987. height: math.unit(2 + 7/12, "feet"),
  51988. name: "Front",
  51989. image: {
  51990. source: "./media/characters/orishan/front.svg",
  51991. extra: 1058/1023,
  51992. bottom: 23/1081
  51993. }
  51994. },
  51995. back: {
  51996. height: math.unit(2 + 7/12, "feet"),
  51997. name: "Back",
  51998. image: {
  51999. source: "./media/characters/orishan/back.svg",
  52000. extra: 1058/1023,
  52001. bottom: 23/1081
  52002. }
  52003. },
  52004. },
  52005. [
  52006. {
  52007. name: "Micro",
  52008. height: math.unit(2, "cm")
  52009. },
  52010. {
  52011. name: "Normal",
  52012. height: math.unit(2 + 7/12, "feet"),
  52013. default: true
  52014. },
  52015. ]
  52016. ))
  52017. characterMakers.push(() => makeCharacter(
  52018. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52019. {
  52020. front: {
  52021. height: math.unit(3, "meters"),
  52022. weight: math.unit(508, "kg"),
  52023. name: "Front",
  52024. image: {
  52025. source: "./media/characters/seranis/front.svg",
  52026. extra: 1478/1454,
  52027. bottom: 41/1519
  52028. }
  52029. },
  52030. },
  52031. [
  52032. {
  52033. name: "Normal",
  52034. height: math.unit(3, "meters"),
  52035. default: true
  52036. },
  52037. {
  52038. name: "Macro",
  52039. height: math.unit(108, "meters")
  52040. },
  52041. {
  52042. name: "Megamacro",
  52043. height: math.unit(1250, "meters")
  52044. },
  52045. ]
  52046. ))
  52047. characterMakers.push(() => makeCharacter(
  52048. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52049. {
  52050. undressed: {
  52051. height: math.unit(5 + 3/12, "feet"),
  52052. name: "Undressed",
  52053. image: {
  52054. source: "./media/characters/ankou/undressed.svg",
  52055. extra: 1301/1213,
  52056. bottom: 87/1388
  52057. }
  52058. },
  52059. dressed: {
  52060. height: math.unit(5 + 3/12, "feet"),
  52061. name: "Dressed",
  52062. image: {
  52063. source: "./media/characters/ankou/dressed.svg",
  52064. extra: 1301/1213,
  52065. bottom: 87/1388
  52066. }
  52067. },
  52068. head: {
  52069. height: math.unit(1.61, "feet"),
  52070. name: "Head",
  52071. image: {
  52072. source: "./media/characters/ankou/head.svg"
  52073. }
  52074. },
  52075. },
  52076. [
  52077. {
  52078. name: "Normal",
  52079. height: math.unit(5 + 3/12, "feet"),
  52080. default: true
  52081. },
  52082. ]
  52083. ))
  52084. characterMakers.push(() => makeCharacter(
  52085. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52086. {
  52087. side: {
  52088. height: math.unit(6 + 3/12, "feet"),
  52089. weight: math.unit(200, "kg"),
  52090. name: "Side",
  52091. image: {
  52092. source: "./media/characters/juniper-skunktaur/side.svg",
  52093. extra: 1574/1229,
  52094. bottom: 38/1612
  52095. }
  52096. },
  52097. front: {
  52098. height: math.unit(6 + 3/12, "feet"),
  52099. weight: math.unit(200, "kg"),
  52100. name: "Front",
  52101. image: {
  52102. source: "./media/characters/juniper-skunktaur/front.svg",
  52103. extra: 1337/1278,
  52104. bottom: 22/1359
  52105. }
  52106. },
  52107. back: {
  52108. height: math.unit(6 + 3/12, "feet"),
  52109. weight: math.unit(200, "kg"),
  52110. name: "Back",
  52111. image: {
  52112. source: "./media/characters/juniper-skunktaur/back.svg",
  52113. extra: 1618/1273,
  52114. bottom: 13/1631
  52115. }
  52116. },
  52117. top: {
  52118. height: math.unit(2.62, "feet"),
  52119. weight: math.unit(200, "kg"),
  52120. name: "Top",
  52121. image: {
  52122. source: "./media/characters/juniper-skunktaur/top.svg"
  52123. }
  52124. },
  52125. },
  52126. [
  52127. {
  52128. name: "Normal",
  52129. height: math.unit(6 + 3/12, "feet"),
  52130. default: true
  52131. },
  52132. ]
  52133. ))
  52134. characterMakers.push(() => makeCharacter(
  52135. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52136. {
  52137. front: {
  52138. height: math.unit(20.5, "feet"),
  52139. name: "Front",
  52140. image: {
  52141. source: "./media/characters/rei/front.svg",
  52142. extra: 1349/1195,
  52143. bottom: 31/1380
  52144. }
  52145. },
  52146. back: {
  52147. height: math.unit(20.5, "feet"),
  52148. name: "Back",
  52149. image: {
  52150. source: "./media/characters/rei/back.svg",
  52151. extra: 1358/1204,
  52152. bottom: 22/1380
  52153. }
  52154. },
  52155. pawsDigi: {
  52156. height: math.unit(3.45, "feet"),
  52157. name: "Paws (Digi)",
  52158. image: {
  52159. source: "./media/characters/rei/paws-digi.svg"
  52160. }
  52161. },
  52162. pawsPlanti: {
  52163. height: math.unit(3.45, "feet"),
  52164. name: "Paws (Planti)",
  52165. image: {
  52166. source: "./media/characters/rei/paws-planti.svg"
  52167. }
  52168. },
  52169. },
  52170. [
  52171. {
  52172. name: "Normal",
  52173. height: math.unit(20.5, "feet"),
  52174. default: true
  52175. },
  52176. ]
  52177. ))
  52178. characterMakers.push(() => makeCharacter(
  52179. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52180. {
  52181. front: {
  52182. height: math.unit(5 + 11/12, "feet"),
  52183. name: "Front",
  52184. image: {
  52185. source: "./media/characters/carina/front.svg",
  52186. extra: 1720/1449,
  52187. bottom: 14/1734
  52188. }
  52189. },
  52190. back: {
  52191. height: math.unit(5 + 11/12, "feet"),
  52192. name: "Back",
  52193. image: {
  52194. source: "./media/characters/carina/back.svg",
  52195. extra: 1493/1445,
  52196. bottom: 17/1510
  52197. }
  52198. },
  52199. paw: {
  52200. height: math.unit(0.92, "feet"),
  52201. name: "Paw",
  52202. image: {
  52203. source: "./media/characters/carina/paw.svg"
  52204. }
  52205. },
  52206. },
  52207. [
  52208. {
  52209. name: "Normal",
  52210. height: math.unit(5 + 11/12, "feet"),
  52211. default: true
  52212. },
  52213. ]
  52214. ))
  52215. characterMakers.push(() => makeCharacter(
  52216. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52217. {
  52218. front: {
  52219. height: math.unit(4.88, "meters"),
  52220. name: "Front",
  52221. image: {
  52222. source: "./media/characters/maya/front.svg",
  52223. extra: 1222/1145,
  52224. bottom: 57/1279
  52225. }
  52226. },
  52227. },
  52228. [
  52229. {
  52230. name: "Normal",
  52231. height: math.unit(4.88, "meters"),
  52232. default: true
  52233. },
  52234. {
  52235. name: "Macro",
  52236. height: math.unit(38.1, "meters")
  52237. },
  52238. {
  52239. name: "Macro+",
  52240. height: math.unit(152.4, "meters")
  52241. },
  52242. {
  52243. name: "Macro++",
  52244. height: math.unit(16.09, "km")
  52245. },
  52246. {
  52247. name: "Mega-macro",
  52248. height: math.unit(700, "megameters")
  52249. },
  52250. ]
  52251. ))
  52252. characterMakers.push(() => makeCharacter(
  52253. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52254. {
  52255. front: {
  52256. height: math.unit(6 + 2/12, "feet"),
  52257. weight: math.unit(500, "lb"),
  52258. preyCapacity: math.unit(4, "people"),
  52259. name: "Front",
  52260. image: {
  52261. source: "./media/characters/yepir/front.svg"
  52262. }
  52263. },
  52264. side: {
  52265. height: math.unit(6 + 2/12, "feet"),
  52266. weight: math.unit(500, "lb"),
  52267. preyCapacity: math.unit(4, "people"),
  52268. name: "Side",
  52269. image: {
  52270. source: "./media/characters/yepir/side.svg"
  52271. }
  52272. },
  52273. paw: {
  52274. height: math.unit(1.05, "feet"),
  52275. name: "Paw",
  52276. image: {
  52277. source: "./media/characters/yepir/paw.svg"
  52278. }
  52279. },
  52280. },
  52281. [
  52282. {
  52283. name: "Normal",
  52284. height: math.unit(6 + 2/12, "feet"),
  52285. default: true
  52286. },
  52287. ]
  52288. ))
  52289. characterMakers.push(() => makeCharacter(
  52290. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52291. {
  52292. front: {
  52293. height: math.unit(5 + 4/12, "feet"),
  52294. name: "Front",
  52295. image: {
  52296. source: "./media/characters/russec/front.svg",
  52297. extra: 1926/1626,
  52298. bottom: 72/1998
  52299. }
  52300. },
  52301. back: {
  52302. height: math.unit(5 + 4/12, "feet"),
  52303. name: "Back",
  52304. image: {
  52305. source: "./media/characters/russec/back.svg",
  52306. extra: 1910/1591,
  52307. bottom: 48/1958
  52308. }
  52309. },
  52310. },
  52311. [
  52312. {
  52313. name: "Small",
  52314. height: math.unit(5 + 4/12, "feet")
  52315. },
  52316. {
  52317. name: "Normal",
  52318. height: math.unit(72, "feet"),
  52319. default: true
  52320. },
  52321. ]
  52322. ))
  52323. characterMakers.push(() => makeCharacter(
  52324. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52325. {
  52326. side: {
  52327. height: math.unit(12, "feet"),
  52328. name: "Side",
  52329. image: {
  52330. source: "./media/characters/cianus/side.svg",
  52331. extra: 808/526,
  52332. bottom: 61/869
  52333. }
  52334. },
  52335. },
  52336. [
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(12, "feet"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52346. {
  52347. front: {
  52348. height: math.unit(9 + 6/12, "feet"),
  52349. weight: math.unit(300, "lb"),
  52350. name: "Front",
  52351. image: {
  52352. source: "./media/characters/ahab/front.svg",
  52353. extra: 1897/1868,
  52354. bottom: 121/2018
  52355. }
  52356. },
  52357. frontNsfw: {
  52358. height: math.unit(9 + 6/12, "feet"),
  52359. weight: math.unit(300, "lb"),
  52360. name: "Front-nsfw",
  52361. image: {
  52362. source: "./media/characters/ahab/front-nsfw.svg",
  52363. extra: 1897/1868,
  52364. bottom: 121/2018
  52365. }
  52366. },
  52367. },
  52368. [
  52369. {
  52370. name: "Normal",
  52371. height: math.unit(9 + 6/12, "feet")
  52372. },
  52373. {
  52374. name: "Macro",
  52375. height: math.unit(657, "feet"),
  52376. default: true
  52377. },
  52378. ]
  52379. ))
  52380. characterMakers.push(() => makeCharacter(
  52381. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52382. {
  52383. front: {
  52384. height: math.unit(2.69, "meters"),
  52385. weight: math.unit(132, "kg"),
  52386. name: "Front",
  52387. image: {
  52388. source: "./media/characters/aarkus/front.svg",
  52389. extra: 1400/1231,
  52390. bottom: 34/1434
  52391. }
  52392. },
  52393. back: {
  52394. height: math.unit(2.69, "meters"),
  52395. weight: math.unit(132, "kg"),
  52396. name: "Back",
  52397. image: {
  52398. source: "./media/characters/aarkus/back.svg",
  52399. extra: 1381/1218,
  52400. bottom: 30/1411
  52401. }
  52402. },
  52403. frontNsfw: {
  52404. height: math.unit(2.69, "meters"),
  52405. weight: math.unit(132, "kg"),
  52406. name: "Front (NSFW)",
  52407. image: {
  52408. source: "./media/characters/aarkus/front-nsfw.svg",
  52409. extra: 1400/1231,
  52410. bottom: 34/1434
  52411. }
  52412. },
  52413. foot: {
  52414. height: math.unit(1.45, "feet"),
  52415. name: "Foot",
  52416. image: {
  52417. source: "./media/characters/aarkus/foot.svg"
  52418. }
  52419. },
  52420. head: {
  52421. height: math.unit(2.85, "feet"),
  52422. name: "Head",
  52423. image: {
  52424. source: "./media/characters/aarkus/head.svg"
  52425. }
  52426. },
  52427. headAlt: {
  52428. height: math.unit(3.07, "feet"),
  52429. name: "Head (Alt)",
  52430. image: {
  52431. source: "./media/characters/aarkus/head-alt.svg"
  52432. }
  52433. },
  52434. mouth: {
  52435. height: math.unit(1.25, "feet"),
  52436. name: "Mouth",
  52437. image: {
  52438. source: "./media/characters/aarkus/mouth.svg"
  52439. }
  52440. },
  52441. dick: {
  52442. height: math.unit(1.77, "feet"),
  52443. name: "Dick",
  52444. image: {
  52445. source: "./media/characters/aarkus/dick.svg"
  52446. }
  52447. },
  52448. },
  52449. [
  52450. {
  52451. name: "Normal",
  52452. height: math.unit(2.69, "meters"),
  52453. default: true
  52454. },
  52455. {
  52456. name: "Macro",
  52457. height: math.unit(269, "meters")
  52458. },
  52459. {
  52460. name: "Macro+",
  52461. height: math.unit(672.5, "meters")
  52462. },
  52463. {
  52464. name: "Megamacro",
  52465. height: math.unit(2.017, "km")
  52466. },
  52467. ]
  52468. ))
  52469. characterMakers.push(() => makeCharacter(
  52470. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52471. {
  52472. front: {
  52473. height: math.unit(23.47, "cm"),
  52474. weight: math.unit(600, "grams"),
  52475. name: "Front",
  52476. image: {
  52477. source: "./media/characters/diode/front.svg",
  52478. extra: 1778/1396,
  52479. bottom: 95/1873
  52480. }
  52481. },
  52482. side: {
  52483. height: math.unit(23.47, "cm"),
  52484. weight: math.unit(600, "grams"),
  52485. name: "Side",
  52486. image: {
  52487. source: "./media/characters/diode/side.svg",
  52488. extra: 1831/1404,
  52489. bottom: 86/1917
  52490. }
  52491. },
  52492. wings: {
  52493. height: math.unit(0.683, "feet"),
  52494. name: "Wings",
  52495. image: {
  52496. source: "./media/characters/diode/wings.svg"
  52497. }
  52498. },
  52499. },
  52500. [
  52501. {
  52502. name: "Normal",
  52503. height: math.unit(23.47, "cm"),
  52504. default: true
  52505. },
  52506. ]
  52507. ))
  52508. characterMakers.push(() => makeCharacter(
  52509. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52510. {
  52511. front: {
  52512. height: math.unit(6 + 3/12, "feet"),
  52513. weight: math.unit(250, "lb"),
  52514. name: "Front",
  52515. image: {
  52516. source: "./media/characters/reika/front.svg",
  52517. extra: 1120/1078,
  52518. bottom: 86/1206
  52519. }
  52520. },
  52521. },
  52522. [
  52523. {
  52524. name: "Normal",
  52525. height: math.unit(6 + 3/12, "feet"),
  52526. default: true
  52527. },
  52528. ]
  52529. ))
  52530. characterMakers.push(() => makeCharacter(
  52531. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52532. {
  52533. front: {
  52534. height: math.unit(16 + 8/12, "feet"),
  52535. weight: math.unit(9000, "lb"),
  52536. name: "Front",
  52537. image: {
  52538. source: "./media/characters/lokuto-takama/front.svg",
  52539. extra: 1774/1632,
  52540. bottom: 147/1921
  52541. },
  52542. extraAttributes: {
  52543. "bustWidth": {
  52544. name: "Bust Width",
  52545. power: 1,
  52546. type: "length",
  52547. base: math.unit(2.4, "meters")
  52548. },
  52549. "breastWeight": {
  52550. name: "Breast Weight",
  52551. power: 3,
  52552. type: "mass",
  52553. base: math.unit(1000, "kg")
  52554. },
  52555. }
  52556. },
  52557. },
  52558. [
  52559. {
  52560. name: "Normal",
  52561. height: math.unit(16 + 8/12, "feet"),
  52562. default: true
  52563. },
  52564. ]
  52565. ))
  52566. characterMakers.push(() => makeCharacter(
  52567. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52568. {
  52569. front: {
  52570. height: math.unit(10, "cm"),
  52571. weight: math.unit(850, "grams"),
  52572. name: "Front",
  52573. image: {
  52574. source: "./media/characters/owak-bone/front.svg",
  52575. extra: 1965/1801,
  52576. bottom: 31/1996
  52577. }
  52578. },
  52579. },
  52580. [
  52581. {
  52582. name: "Normal",
  52583. height: math.unit(10, "cm"),
  52584. default: true
  52585. },
  52586. ]
  52587. ))
  52588. characterMakers.push(() => makeCharacter(
  52589. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52590. {
  52591. front: {
  52592. height: math.unit(2 + 6/12, "feet"),
  52593. weight: math.unit(9, "lb"),
  52594. name: "Front",
  52595. image: {
  52596. source: "./media/characters/muffin/front.svg",
  52597. extra: 1220/1195,
  52598. bottom: 84/1304
  52599. }
  52600. },
  52601. },
  52602. [
  52603. {
  52604. name: "Normal",
  52605. height: math.unit(2 + 6/12, "feet"),
  52606. default: true
  52607. },
  52608. ]
  52609. ))
  52610. characterMakers.push(() => makeCharacter(
  52611. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52612. {
  52613. front: {
  52614. height: math.unit(7, "feet"),
  52615. name: "Front",
  52616. image: {
  52617. source: "./media/characters/chimera/front.svg",
  52618. extra: 1752/1614,
  52619. bottom: 68/1820
  52620. }
  52621. },
  52622. },
  52623. [
  52624. {
  52625. name: "Normal",
  52626. height: math.unit(7, "feet")
  52627. },
  52628. {
  52629. name: "Gigamacro",
  52630. height: math.unit(2.9, "gigameters"),
  52631. default: true
  52632. },
  52633. {
  52634. name: "Universal",
  52635. height: math.unit(1.56e26, "yottameters")
  52636. },
  52637. ]
  52638. ))
  52639. characterMakers.push(() => makeCharacter(
  52640. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52641. {
  52642. front: {
  52643. height: math.unit(3, "feet"),
  52644. weight: math.unit(20, "lb"),
  52645. name: "Front",
  52646. image: {
  52647. source: "./media/characters/kit-fennec-fox/front.svg",
  52648. extra: 1027/932,
  52649. bottom: 16/1043
  52650. }
  52651. },
  52652. back: {
  52653. height: math.unit(3, "feet"),
  52654. weight: math.unit(20, "lb"),
  52655. name: "Back",
  52656. image: {
  52657. source: "./media/characters/kit-fennec-fox/back.svg",
  52658. extra: 1027/932,
  52659. bottom: 16/1043
  52660. }
  52661. },
  52662. },
  52663. [
  52664. {
  52665. name: "Normal",
  52666. height: math.unit(3, "feet"),
  52667. default: true
  52668. },
  52669. ]
  52670. ))
  52671. characterMakers.push(() => makeCharacter(
  52672. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52673. {
  52674. front: {
  52675. height: math.unit(167, "cm"),
  52676. name: "Front",
  52677. image: {
  52678. source: "./media/characters/blue-otter/front.svg",
  52679. extra: 1951/1920,
  52680. bottom: 31/1982
  52681. }
  52682. },
  52683. },
  52684. [
  52685. {
  52686. name: "Otter-Sized",
  52687. height: math.unit(100, "cm")
  52688. },
  52689. {
  52690. name: "Normal",
  52691. height: math.unit(167, "cm"),
  52692. default: true
  52693. },
  52694. ]
  52695. ))
  52696. characterMakers.push(() => makeCharacter(
  52697. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52698. {
  52699. front: {
  52700. height: math.unit(4 + 4/12, "feet"),
  52701. name: "Front",
  52702. image: {
  52703. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52704. extra: 1072/1067,
  52705. bottom: 117/1189
  52706. }
  52707. },
  52708. back: {
  52709. height: math.unit(4 + 4/12, "feet"),
  52710. name: "Back",
  52711. image: {
  52712. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52713. extra: 1135/1129,
  52714. bottom: 57/1192
  52715. }
  52716. },
  52717. head: {
  52718. height: math.unit(1.77, "feet"),
  52719. name: "Head",
  52720. image: {
  52721. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52722. }
  52723. },
  52724. },
  52725. [
  52726. {
  52727. name: "Normal",
  52728. height: math.unit(4 + 4/12, "feet"),
  52729. default: true
  52730. },
  52731. ]
  52732. ))
  52733. characterMakers.push(() => makeCharacter(
  52734. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52735. {
  52736. front: {
  52737. height: math.unit(2, "inches"),
  52738. name: "Front",
  52739. image: {
  52740. source: "./media/characters/carley-hartford/front.svg",
  52741. extra: 1035/988,
  52742. bottom: 23/1058
  52743. }
  52744. },
  52745. back: {
  52746. height: math.unit(2, "inches"),
  52747. name: "Back",
  52748. image: {
  52749. source: "./media/characters/carley-hartford/back.svg",
  52750. extra: 1035/988,
  52751. bottom: 23/1058
  52752. }
  52753. },
  52754. dressed: {
  52755. height: math.unit(2, "inches"),
  52756. name: "Dressed",
  52757. image: {
  52758. source: "./media/characters/carley-hartford/dressed.svg",
  52759. extra: 651/620,
  52760. bottom: 0/651
  52761. }
  52762. },
  52763. },
  52764. [
  52765. {
  52766. name: "Micro",
  52767. height: math.unit(2, "inches"),
  52768. default: true
  52769. },
  52770. {
  52771. name: "Macro",
  52772. height: math.unit(6 + 3/12, "feet")
  52773. },
  52774. ]
  52775. ))
  52776. characterMakers.push(() => makeCharacter(
  52777. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52778. {
  52779. front: {
  52780. height: math.unit(2 + 3/12, "feet"),
  52781. weight: math.unit(15 + 7/16, "lb"),
  52782. name: "Front",
  52783. image: {
  52784. source: "./media/characters/duke/front.svg",
  52785. extra: 910/815,
  52786. bottom: 30/940
  52787. }
  52788. },
  52789. },
  52790. [
  52791. {
  52792. name: "Normal",
  52793. height: math.unit(2 + 3/12, "feet"),
  52794. default: true
  52795. },
  52796. ]
  52797. ))
  52798. characterMakers.push(() => makeCharacter(
  52799. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52800. {
  52801. front: {
  52802. height: math.unit(5 + 4/12, "feet"),
  52803. weight: math.unit(156, "lb"),
  52804. name: "Front",
  52805. image: {
  52806. source: "./media/characters/dein/front.svg",
  52807. extra: 855/815,
  52808. bottom: 48/903
  52809. }
  52810. },
  52811. side: {
  52812. height: math.unit(5 + 4/12, "feet"),
  52813. weight: math.unit(156, "lb"),
  52814. name: "side",
  52815. image: {
  52816. source: "./media/characters/dein/side.svg",
  52817. extra: 846/803,
  52818. bottom: 25/871
  52819. }
  52820. },
  52821. maw: {
  52822. height: math.unit(1.45, "feet"),
  52823. name: "Maw",
  52824. image: {
  52825. source: "./media/characters/dein/maw.svg"
  52826. }
  52827. },
  52828. },
  52829. [
  52830. {
  52831. name: "Ferret Sized",
  52832. height: math.unit(2 + 5/12, "feet")
  52833. },
  52834. {
  52835. name: "Normal",
  52836. height: math.unit(5 + 4/12, "feet"),
  52837. default: true
  52838. },
  52839. ]
  52840. ))
  52841. characterMakers.push(() => makeCharacter(
  52842. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52843. {
  52844. front: {
  52845. height: math.unit(84 + 8/12, "feet"),
  52846. weight: math.unit(942180, "lb"),
  52847. name: "Front",
  52848. image: {
  52849. source: "./media/characters/daurine-arima/front.svg",
  52850. extra: 1989/1782,
  52851. bottom: 37/2026
  52852. }
  52853. },
  52854. side: {
  52855. height: math.unit(84 + 8/12, "feet"),
  52856. weight: math.unit(942180, "lb"),
  52857. name: "Side",
  52858. image: {
  52859. source: "./media/characters/daurine-arima/side.svg",
  52860. extra: 1997/1790,
  52861. bottom: 21/2018
  52862. }
  52863. },
  52864. back: {
  52865. height: math.unit(84 + 8/12, "feet"),
  52866. weight: math.unit(942180, "lb"),
  52867. name: "Back",
  52868. image: {
  52869. source: "./media/characters/daurine-arima/back.svg",
  52870. extra: 1992/1800,
  52871. bottom: 12/2004
  52872. }
  52873. },
  52874. head: {
  52875. height: math.unit(15.5, "feet"),
  52876. name: "Head",
  52877. image: {
  52878. source: "./media/characters/daurine-arima/head.svg"
  52879. }
  52880. },
  52881. headAlt: {
  52882. height: math.unit(19.19, "feet"),
  52883. name: "Head (Alt)",
  52884. image: {
  52885. source: "./media/characters/daurine-arima/head-alt.svg"
  52886. }
  52887. },
  52888. },
  52889. [
  52890. {
  52891. name: "Minimum height",
  52892. height: math.unit(8 + 10/12, "feet")
  52893. },
  52894. {
  52895. name: "Comfort height",
  52896. height: math.unit(19 + 6 /12, "feet")
  52897. },
  52898. {
  52899. name: "\"Normal\" height",
  52900. height: math.unit(28 + 10/12, "feet")
  52901. },
  52902. {
  52903. name: "Base height",
  52904. height: math.unit(84 + 8/12, "feet"),
  52905. default: true
  52906. },
  52907. {
  52908. name: "Mini-macro",
  52909. height: math.unit(2360, "feet")
  52910. },
  52911. {
  52912. name: "Macro",
  52913. height: math.unit(10, "miles")
  52914. },
  52915. {
  52916. name: "Goddess",
  52917. height: math.unit(9.99e40, "yottameters")
  52918. },
  52919. ]
  52920. ))
  52921. characterMakers.push(() => makeCharacter(
  52922. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52923. {
  52924. front: {
  52925. height: math.unit(2.3, "meters"),
  52926. name: "Front",
  52927. image: {
  52928. source: "./media/characters/cilenomon/front.svg",
  52929. extra: 1963/1778,
  52930. bottom: 54/2017
  52931. }
  52932. },
  52933. },
  52934. [
  52935. {
  52936. name: "Normal",
  52937. height: math.unit(2.3, "meters"),
  52938. default: true
  52939. },
  52940. {
  52941. name: "Big",
  52942. height: math.unit(5, "meters")
  52943. },
  52944. {
  52945. name: "Macro",
  52946. height: math.unit(30, "meters")
  52947. },
  52948. {
  52949. name: "True",
  52950. height: math.unit(1, "universe")
  52951. },
  52952. ]
  52953. ))
  52954. characterMakers.push(() => makeCharacter(
  52955. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52956. {
  52957. front: {
  52958. height: math.unit(5, "feet"),
  52959. name: "Front",
  52960. image: {
  52961. source: "./media/characters/sen-mink/front.svg",
  52962. extra: 1727/1675,
  52963. bottom: 35/1762
  52964. }
  52965. },
  52966. },
  52967. [
  52968. {
  52969. name: "Normal",
  52970. height: math.unit(5, "feet"),
  52971. default: true
  52972. },
  52973. ]
  52974. ))
  52975. characterMakers.push(() => makeCharacter(
  52976. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52977. {
  52978. front: {
  52979. height: math.unit(5.42999, "feet"),
  52980. weight: math.unit(100, "lb"),
  52981. name: "Front",
  52982. image: {
  52983. source: "./media/characters/ophois/front.svg",
  52984. extra: 1429/1286,
  52985. bottom: 60/1489
  52986. }
  52987. },
  52988. },
  52989. [
  52990. {
  52991. name: "Normal",
  52992. height: math.unit(5.42999, "feet"),
  52993. default: true
  52994. },
  52995. ]
  52996. ))
  52997. characterMakers.push(() => makeCharacter(
  52998. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52999. {
  53000. front: {
  53001. height: math.unit(2, "meters"),
  53002. name: "Front",
  53003. image: {
  53004. source: "./media/characters/riley/front.svg",
  53005. extra: 1779/1754,
  53006. bottom: 139/1918
  53007. }
  53008. },
  53009. },
  53010. [
  53011. {
  53012. name: "Normal",
  53013. height: math.unit(2, "meters"),
  53014. default: true
  53015. },
  53016. ]
  53017. ))
  53018. characterMakers.push(() => makeCharacter(
  53019. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53020. {
  53021. front: {
  53022. height: math.unit(6 + 2/12, "feet"),
  53023. weight: math.unit(195, "lb"),
  53024. preyCapacity: math.unit(6, "people"),
  53025. name: "Front",
  53026. image: {
  53027. source: "./media/characters/shuken-flash/front.svg",
  53028. extra: 1905/1739,
  53029. bottom: 65/1970
  53030. }
  53031. },
  53032. back: {
  53033. height: math.unit(6 + 2/12, "feet"),
  53034. weight: math.unit(195, "lb"),
  53035. preyCapacity: math.unit(6, "people"),
  53036. name: "Back",
  53037. image: {
  53038. source: "./media/characters/shuken-flash/back.svg",
  53039. extra: 1912/1751,
  53040. bottom: 13/1925
  53041. }
  53042. },
  53043. },
  53044. [
  53045. {
  53046. name: "Normal",
  53047. height: math.unit(6 + 2/12, "feet"),
  53048. default: true
  53049. },
  53050. ]
  53051. ))
  53052. characterMakers.push(() => makeCharacter(
  53053. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53054. {
  53055. front: {
  53056. height: math.unit(5 + 9/12, "feet"),
  53057. weight: math.unit(150, "lb"),
  53058. name: "Front",
  53059. image: {
  53060. source: "./media/characters/plat/front.svg",
  53061. extra: 1816/1703,
  53062. bottom: 43/1859
  53063. }
  53064. },
  53065. side: {
  53066. height: math.unit(5 + 9/12, "feet"),
  53067. weight: math.unit(300, "lb"),
  53068. name: "Side",
  53069. image: {
  53070. source: "./media/characters/plat/side.svg",
  53071. extra: 1824/1699,
  53072. bottom: 18/1842
  53073. }
  53074. },
  53075. },
  53076. [
  53077. {
  53078. name: "Normal",
  53079. height: math.unit(5 + 9/12, "feet"),
  53080. default: true
  53081. },
  53082. ]
  53083. ))
  53084. characterMakers.push(() => makeCharacter(
  53085. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53086. {
  53087. front: {
  53088. height: math.unit(9, "feet"),
  53089. weight: math.unit(1800, "lb"),
  53090. name: "Front",
  53091. image: {
  53092. source: "./media/characters/elaine/front.svg",
  53093. extra: 1833/1354,
  53094. bottom: 25/1858
  53095. }
  53096. },
  53097. back: {
  53098. height: math.unit(8.8, "feet"),
  53099. weight: math.unit(1800, "lb"),
  53100. name: "Back",
  53101. image: {
  53102. source: "./media/characters/elaine/back.svg",
  53103. extra: 1641/1233,
  53104. bottom: 53/1694
  53105. }
  53106. },
  53107. },
  53108. [
  53109. {
  53110. name: "Normal",
  53111. height: math.unit(9, "feet"),
  53112. default: true
  53113. },
  53114. ]
  53115. ))
  53116. characterMakers.push(() => makeCharacter(
  53117. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53118. {
  53119. front: {
  53120. height: math.unit(17 + 9/12, "feet"),
  53121. weight: math.unit(8000, "lb"),
  53122. name: "Front",
  53123. image: {
  53124. source: "./media/characters/vera-raven/front.svg",
  53125. extra: 1457/1412,
  53126. bottom: 121/1578
  53127. }
  53128. },
  53129. side: {
  53130. height: math.unit(17 + 9/12, "feet"),
  53131. weight: math.unit(8000, "lb"),
  53132. name: "Side",
  53133. image: {
  53134. source: "./media/characters/vera-raven/side.svg",
  53135. extra: 1510/1464,
  53136. bottom: 54/1564
  53137. }
  53138. },
  53139. },
  53140. [
  53141. {
  53142. name: "Normal",
  53143. height: math.unit(17 + 9/12, "feet"),
  53144. default: true
  53145. },
  53146. ]
  53147. ))
  53148. characterMakers.push(() => makeCharacter(
  53149. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53150. {
  53151. dressed: {
  53152. height: math.unit(6 + 9/12, "feet"),
  53153. name: "Dressed",
  53154. image: {
  53155. source: "./media/characters/nakisha/dressed.svg",
  53156. extra: 1909/1757,
  53157. bottom: 48/1957
  53158. }
  53159. },
  53160. nude: {
  53161. height: math.unit(6 + 9/12, "feet"),
  53162. name: "Nude",
  53163. image: {
  53164. source: "./media/characters/nakisha/nude.svg",
  53165. extra: 1917/1765,
  53166. bottom: 34/1951
  53167. }
  53168. },
  53169. },
  53170. [
  53171. {
  53172. name: "Normal",
  53173. height: math.unit(6 + 9/12, "feet"),
  53174. default: true
  53175. },
  53176. ]
  53177. ))
  53178. characterMakers.push(() => makeCharacter(
  53179. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53180. {
  53181. front: {
  53182. height: math.unit(87, "meters"),
  53183. name: "Front",
  53184. image: {
  53185. source: "./media/characters/serafin/front.svg",
  53186. extra: 1919/1776,
  53187. bottom: 65/1984
  53188. }
  53189. },
  53190. },
  53191. [
  53192. {
  53193. name: "Normal",
  53194. height: math.unit(87, "meters"),
  53195. default: true
  53196. },
  53197. ]
  53198. ))
  53199. characterMakers.push(() => makeCharacter(
  53200. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53201. {
  53202. front: {
  53203. height: math.unit(6, "feet"),
  53204. weight: math.unit(200, "lb"),
  53205. name: "Front",
  53206. image: {
  53207. source: "./media/characters/poptart/front.svg",
  53208. extra: 615/583,
  53209. bottom: 23/638
  53210. }
  53211. },
  53212. back: {
  53213. height: math.unit(6, "feet"),
  53214. weight: math.unit(200, "lb"),
  53215. name: "Back",
  53216. image: {
  53217. source: "./media/characters/poptart/back.svg",
  53218. extra: 617/584,
  53219. bottom: 22/639
  53220. }
  53221. },
  53222. frontNsfw: {
  53223. height: math.unit(6, "feet"),
  53224. weight: math.unit(200, "lb"),
  53225. name: "Front (NSFW)",
  53226. image: {
  53227. source: "./media/characters/poptart/front-nsfw.svg",
  53228. extra: 615/583,
  53229. bottom: 23/638
  53230. }
  53231. },
  53232. backNsfw: {
  53233. height: math.unit(6, "feet"),
  53234. weight: math.unit(200, "lb"),
  53235. name: "Back (NSFW)",
  53236. image: {
  53237. source: "./media/characters/poptart/back-nsfw.svg",
  53238. extra: 617/584,
  53239. bottom: 22/639
  53240. }
  53241. },
  53242. hand: {
  53243. height: math.unit(1.14, "feet"),
  53244. name: "Hand",
  53245. image: {
  53246. source: "./media/characters/poptart/hand.svg"
  53247. }
  53248. },
  53249. foot: {
  53250. height: math.unit(1.5, "feet"),
  53251. name: "Foot",
  53252. image: {
  53253. source: "./media/characters/poptart/foot.svg"
  53254. }
  53255. },
  53256. },
  53257. [
  53258. {
  53259. name: "Normal",
  53260. height: math.unit(6, "feet"),
  53261. default: true
  53262. },
  53263. {
  53264. name: "Grande",
  53265. height: math.unit(350, "feet")
  53266. },
  53267. {
  53268. name: "Massif",
  53269. height: math.unit(967, "feet")
  53270. },
  53271. ]
  53272. ))
  53273. characterMakers.push(() => makeCharacter(
  53274. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53275. {
  53276. hyenaSide: {
  53277. height: math.unit(120, "cm"),
  53278. weight: math.unit(120, "lb"),
  53279. name: "Side",
  53280. image: {
  53281. source: "./media/characters/trance/hyena-side.svg",
  53282. extra: 998/904,
  53283. bottom: 76/1074
  53284. }
  53285. },
  53286. },
  53287. [
  53288. {
  53289. name: "Normal",
  53290. height: math.unit(120, "cm"),
  53291. default: true
  53292. },
  53293. {
  53294. name: "Dire",
  53295. height: math.unit(230, "cm")
  53296. },
  53297. {
  53298. name: "Macro",
  53299. height: math.unit(37, "feet")
  53300. },
  53301. ]
  53302. ))
  53303. characterMakers.push(() => makeCharacter(
  53304. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53305. {
  53306. front: {
  53307. height: math.unit(6 + 3/12, "feet"),
  53308. name: "Front",
  53309. image: {
  53310. source: "./media/characters/michael-berretta/front.svg",
  53311. extra: 515/494,
  53312. bottom: 20/535
  53313. }
  53314. },
  53315. back: {
  53316. height: math.unit(6 + 3/12, "feet"),
  53317. name: "Back",
  53318. image: {
  53319. source: "./media/characters/michael-berretta/back.svg",
  53320. extra: 520/497,
  53321. bottom: 21/541
  53322. }
  53323. },
  53324. frontNsfw: {
  53325. height: math.unit(6 + 3/12, "feet"),
  53326. name: "Front (NSFW)",
  53327. image: {
  53328. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53329. extra: 515/494,
  53330. bottom: 20/535
  53331. }
  53332. },
  53333. dick: {
  53334. height: math.unit(1, "feet"),
  53335. name: "Dick",
  53336. image: {
  53337. source: "./media/characters/michael-berretta/dick.svg"
  53338. }
  53339. },
  53340. },
  53341. [
  53342. {
  53343. name: "Normal",
  53344. height: math.unit(6 + 3/12, "feet"),
  53345. default: true
  53346. },
  53347. {
  53348. name: "Big",
  53349. height: math.unit(12, "feet")
  53350. },
  53351. {
  53352. name: "Macro",
  53353. height: math.unit(187.5, "feet")
  53354. },
  53355. ]
  53356. ))
  53357. characterMakers.push(() => makeCharacter(
  53358. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53359. {
  53360. front: {
  53361. height: math.unit(9 + 9/12, "feet"),
  53362. weight: math.unit(1244, "lb"),
  53363. name: "Front",
  53364. image: {
  53365. source: "./media/characters/stella-edgecomb/front.svg",
  53366. extra: 1835/1706,
  53367. bottom: 49/1884
  53368. }
  53369. },
  53370. pen: {
  53371. height: math.unit(0.95, "feet"),
  53372. name: "Pen",
  53373. image: {
  53374. source: "./media/characters/stella-edgecomb/pen.svg"
  53375. }
  53376. },
  53377. },
  53378. [
  53379. {
  53380. name: "Cozy Bear",
  53381. height: math.unit(0.5, "inches")
  53382. },
  53383. {
  53384. name: "Normal",
  53385. height: math.unit(9 + 9/12, "feet"),
  53386. default: true
  53387. },
  53388. {
  53389. name: "Giga Bear",
  53390. height: math.unit(1, "mile")
  53391. },
  53392. {
  53393. name: "Great Bear",
  53394. height: math.unit(53, "miles")
  53395. },
  53396. {
  53397. name: "Goddess Bear",
  53398. height: math.unit(40000, "miles")
  53399. },
  53400. {
  53401. name: "Sun Bear",
  53402. height: math.unit(900000, "miles")
  53403. },
  53404. ]
  53405. ))
  53406. characterMakers.push(() => makeCharacter(
  53407. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53408. {
  53409. anthroFront: {
  53410. height: math.unit(556, "cm"),
  53411. weight: math.unit(2650, "kg"),
  53412. preyCapacity: math.unit(3, "people"),
  53413. name: "Front",
  53414. image: {
  53415. source: "./media/characters/ash´iika/front.svg",
  53416. extra: 710/673,
  53417. bottom: 15/725
  53418. },
  53419. form: "anthro",
  53420. default: true
  53421. },
  53422. anthroSide: {
  53423. height: math.unit(556, "cm"),
  53424. weight: math.unit(2650, "kg"),
  53425. preyCapacity: math.unit(3, "people"),
  53426. name: "Side",
  53427. image: {
  53428. source: "./media/characters/ash´iika/side.svg",
  53429. extra: 696/676,
  53430. bottom: 13/709
  53431. },
  53432. form: "anthro"
  53433. },
  53434. anthroDressed: {
  53435. height: math.unit(556, "cm"),
  53436. weight: math.unit(2650, "kg"),
  53437. preyCapacity: math.unit(3, "people"),
  53438. name: "Dressed",
  53439. image: {
  53440. source: "./media/characters/ash´iika/dressed.svg",
  53441. extra: 710/673,
  53442. bottom: 15/725
  53443. },
  53444. form: "anthro"
  53445. },
  53446. anthroHead: {
  53447. height: math.unit(3.5, "feet"),
  53448. name: "Head",
  53449. image: {
  53450. source: "./media/characters/ash´iika/head.svg",
  53451. extra: 348/291,
  53452. bottom: 45/393
  53453. },
  53454. form: "anthro"
  53455. },
  53456. feralSide: {
  53457. height: math.unit(870, "cm"),
  53458. weight: math.unit(17500, "kg"),
  53459. preyCapacity: math.unit(15, "people"),
  53460. name: "Side",
  53461. image: {
  53462. source: "./media/characters/ash´iika/feral.svg",
  53463. extra: 595/199,
  53464. bottom: 7/602
  53465. },
  53466. form: "feral",
  53467. default: true,
  53468. },
  53469. },
  53470. [
  53471. {
  53472. name: "Normal",
  53473. height: math.unit(556, "cm"),
  53474. default: true,
  53475. form: "anthro"
  53476. },
  53477. {
  53478. name: "Macro",
  53479. height: math.unit(88, "meters"),
  53480. form: "anthro"
  53481. },
  53482. {
  53483. name: "Normal",
  53484. height: math.unit(870, "cm"),
  53485. default: true,
  53486. form: "feral"
  53487. },
  53488. {
  53489. name: "Large",
  53490. height: math.unit(25, "meters"),
  53491. form: "feral"
  53492. },
  53493. ],
  53494. {
  53495. "anthro": {
  53496. name: "Anthro",
  53497. default: true
  53498. },
  53499. "feral": {
  53500. name: "Feral",
  53501. },
  53502. }
  53503. ))
  53504. characterMakers.push(() => makeCharacter(
  53505. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53506. {
  53507. front: {
  53508. height: math.unit(10, "feet"),
  53509. weight: math.unit(800, "lb"),
  53510. name: "Front",
  53511. image: {
  53512. source: "./media/characters/yen/front.svg",
  53513. extra: 443/411,
  53514. bottom: 6/449
  53515. }
  53516. },
  53517. sleeping: {
  53518. height: math.unit(10, "feet"),
  53519. weight: math.unit(800, "lb"),
  53520. name: "Sleeping",
  53521. image: {
  53522. source: "./media/characters/yen/sleeping.svg",
  53523. extra: 470/422,
  53524. bottom: 0/470
  53525. }
  53526. },
  53527. head: {
  53528. height: math.unit(2.2, "feet"),
  53529. name: "Head",
  53530. image: {
  53531. source: "./media/characters/yen/head.svg"
  53532. }
  53533. },
  53534. headAlt: {
  53535. height: math.unit(2.1, "feet"),
  53536. name: "Head (Alt)",
  53537. image: {
  53538. source: "./media/characters/yen/head-alt.svg"
  53539. }
  53540. },
  53541. },
  53542. [
  53543. {
  53544. name: "Normal",
  53545. height: math.unit(10, "feet"),
  53546. default: true
  53547. },
  53548. ]
  53549. ))
  53550. characterMakers.push(() => makeCharacter(
  53551. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53552. {
  53553. front: {
  53554. height: math.unit(12, "feet"),
  53555. name: "Front",
  53556. image: {
  53557. source: "./media/characters/citra/front.svg",
  53558. extra: 1950/1710,
  53559. bottom: 47/1997
  53560. }
  53561. },
  53562. },
  53563. [
  53564. {
  53565. name: "Normal",
  53566. height: math.unit(12, "feet"),
  53567. default: true
  53568. },
  53569. ]
  53570. ))
  53571. characterMakers.push(() => makeCharacter(
  53572. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53573. {
  53574. side: {
  53575. height: math.unit(7 + 10/12, "feet"),
  53576. name: "Side",
  53577. image: {
  53578. source: "./media/characters/sholstim/side.svg",
  53579. extra: 786/682,
  53580. bottom: 40/826
  53581. }
  53582. },
  53583. },
  53584. [
  53585. {
  53586. name: "Normal",
  53587. height: math.unit(7 + 10/12, "feet"),
  53588. default: true
  53589. },
  53590. ]
  53591. ))
  53592. characterMakers.push(() => makeCharacter(
  53593. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53594. {
  53595. front: {
  53596. height: math.unit(3.10, "meters"),
  53597. name: "Front",
  53598. image: {
  53599. source: "./media/characters/aggyn/front.svg",
  53600. extra: 1188/963,
  53601. bottom: 24/1212
  53602. }
  53603. },
  53604. },
  53605. [
  53606. {
  53607. name: "Normal",
  53608. height: math.unit(3.10, "meters"),
  53609. default: true
  53610. },
  53611. ]
  53612. ))
  53613. characterMakers.push(() => makeCharacter(
  53614. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53615. {
  53616. front: {
  53617. height: math.unit(7 + 5/12, "feet"),
  53618. weight: math.unit(687, "lb"),
  53619. name: "Front",
  53620. image: {
  53621. source: "./media/characters/alsandair-hergenroether/front.svg",
  53622. extra: 1251/1186,
  53623. bottom: 75/1326
  53624. }
  53625. },
  53626. back: {
  53627. height: math.unit(7 + 5/12, "feet"),
  53628. weight: math.unit(687, "lb"),
  53629. name: "Back",
  53630. image: {
  53631. source: "./media/characters/alsandair-hergenroether/back.svg",
  53632. extra: 1290/1229,
  53633. bottom: 17/1307
  53634. }
  53635. },
  53636. },
  53637. [
  53638. {
  53639. name: "Max Compression",
  53640. height: math.unit(7 + 5/12, "feet"),
  53641. default: true
  53642. },
  53643. {
  53644. name: "\"Normal\"",
  53645. height: math.unit(2, "universes")
  53646. },
  53647. ]
  53648. ))
  53649. characterMakers.push(() => makeCharacter(
  53650. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53651. {
  53652. front: {
  53653. height: math.unit(4 + 1/12, "feet"),
  53654. weight: math.unit(92, "lb"),
  53655. name: "Front",
  53656. image: {
  53657. source: "./media/characters/ie/front.svg",
  53658. extra: 1585/1352,
  53659. bottom: 91/1676
  53660. }
  53661. },
  53662. },
  53663. [
  53664. {
  53665. name: "Normal",
  53666. height: math.unit(4 + 1/12, "feet"),
  53667. default: true
  53668. },
  53669. ]
  53670. ))
  53671. characterMakers.push(() => makeCharacter(
  53672. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53673. {
  53674. anthro: {
  53675. height: math.unit(6, "feet"),
  53676. weight: math.unit(150, "lb"),
  53677. name: "Front",
  53678. image: {
  53679. source: "./media/characters/willow/anthro.svg",
  53680. extra: 1073/986,
  53681. bottom: 34/1107
  53682. },
  53683. form: "anthro",
  53684. default: true
  53685. },
  53686. taur: {
  53687. height: math.unit(6, "feet"),
  53688. weight: math.unit(150, "lb"),
  53689. name: "Side",
  53690. image: {
  53691. source: "./media/characters/willow/taur.svg",
  53692. extra: 647/512,
  53693. bottom: 136/783
  53694. },
  53695. form: "taur",
  53696. default: true
  53697. },
  53698. },
  53699. [
  53700. {
  53701. name: "Humanoid",
  53702. height: math.unit(2.7, "meters"),
  53703. form: "anthro"
  53704. },
  53705. {
  53706. name: "Normal",
  53707. height: math.unit(9, "meters"),
  53708. form: "anthro",
  53709. default: true
  53710. },
  53711. {
  53712. name: "Humanoid",
  53713. height: math.unit(2.1, "meters"),
  53714. form: "taur"
  53715. },
  53716. {
  53717. name: "Normal",
  53718. height: math.unit(7, "meters"),
  53719. form: "taur",
  53720. default: true
  53721. },
  53722. ],
  53723. {
  53724. "anthro": {
  53725. name: "Anthro",
  53726. default: true
  53727. },
  53728. "taur": {
  53729. name: "Taur",
  53730. },
  53731. }
  53732. ))
  53733. characterMakers.push(() => makeCharacter(
  53734. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53735. {
  53736. front: {
  53737. height: math.unit(2 + 5/12, "feet"),
  53738. name: "Front",
  53739. image: {
  53740. source: "./media/characters/kyan/front.svg",
  53741. extra: 460/334,
  53742. bottom: 23/483
  53743. },
  53744. extraAttributes: {
  53745. "toeLength": {
  53746. name: "Toe Length",
  53747. power: 1,
  53748. type: "length",
  53749. base: math.unit(7, "cm")
  53750. },
  53751. "toeclawLength": {
  53752. name: "Toeclaw Length",
  53753. power: 1,
  53754. type: "length",
  53755. base: math.unit(4.7, "cm")
  53756. },
  53757. "earHeight": {
  53758. name: "Ear Height",
  53759. power: 1,
  53760. type: "length",
  53761. base: math.unit(14.1, "cm")
  53762. },
  53763. }
  53764. },
  53765. paws: {
  53766. height: math.unit(0.45, "feet"),
  53767. name: "Paws",
  53768. image: {
  53769. source: "./media/characters/kyan/paws.svg",
  53770. extra: 581/581,
  53771. bottom: 114/695
  53772. }
  53773. },
  53774. },
  53775. [
  53776. {
  53777. name: "Normal",
  53778. height: math.unit(2 + 5/12, "feet"),
  53779. default: true
  53780. },
  53781. ]
  53782. ))
  53783. characterMakers.push(() => makeCharacter(
  53784. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53785. {
  53786. front: {
  53787. height: math.unit(2 + 2/3, "feet"),
  53788. name: "Front",
  53789. image: {
  53790. source: "./media/characters/xazzon/front.svg",
  53791. extra: 1109/984,
  53792. bottom: 42/1151
  53793. }
  53794. },
  53795. back: {
  53796. height: math.unit(2 + 2/3, "feet"),
  53797. name: "Back",
  53798. image: {
  53799. source: "./media/characters/xazzon/back.svg",
  53800. extra: 1095/971,
  53801. bottom: 23/1118
  53802. }
  53803. },
  53804. },
  53805. [
  53806. {
  53807. name: "Normal",
  53808. height: math.unit(2 + 2/3, "feet"),
  53809. default: true
  53810. },
  53811. ]
  53812. ))
  53813. characterMakers.push(() => makeCharacter(
  53814. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53815. {
  53816. dressed: {
  53817. height: math.unit(5 + 7/12, "feet"),
  53818. weight: math.unit(173, "lb"),
  53819. name: "Dressed",
  53820. image: {
  53821. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53822. extra: 3262/2862,
  53823. bottom: 188/3450
  53824. }
  53825. },
  53826. undressed: {
  53827. height: math.unit(5 + 7/12, "feet"),
  53828. weight: math.unit(173, "lb"),
  53829. name: "Undressed",
  53830. image: {
  53831. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53832. extra: 3262/2862,
  53833. bottom: 188/3450
  53834. }
  53835. },
  53836. },
  53837. [
  53838. {
  53839. name: "The void",
  53840. height: math.unit(7.29193e-34, "angstroms")
  53841. },
  53842. {
  53843. name: "Uh-Oh.",
  53844. height: math.unit(5.734e-7, "angstroms")
  53845. },
  53846. {
  53847. name: "Pico",
  53848. height: math.unit(0.876, "angstroms")
  53849. },
  53850. {
  53851. name: "Nano",
  53852. height: math.unit(0.000134200, "mm")
  53853. },
  53854. {
  53855. name: "Micro",
  53856. height: math.unit(0.0673020, "mm")
  53857. },
  53858. {
  53859. name: "Tiny",
  53860. height: math.unit(2.4, "mm")
  53861. },
  53862. {
  53863. name: "Actual Normal",
  53864. height: math.unit(3, "inches"),
  53865. default: true
  53866. },
  53867. {
  53868. name: "Normal",
  53869. height: math.unit(5 + 8/12, "feet")
  53870. },
  53871. {
  53872. name: "Giant",
  53873. height: math.unit(12, "feet")
  53874. },
  53875. {
  53876. name: "City Ruler",
  53877. height: math.unit(270, "meters")
  53878. },
  53879. {
  53880. name: "Giga",
  53881. height: math.unit(1117.6, "km")
  53882. },
  53883. {
  53884. name: "All-Powerful Queen",
  53885. height: math.unit(70.8, "gigameters")
  53886. },
  53887. {
  53888. name: "'Goddess'",
  53889. height: math.unit(600, "yottameters")
  53890. },
  53891. {
  53892. name: "Biggest!",
  53893. height: math.unit(4.23e5, "yottameters")
  53894. },
  53895. ]
  53896. ))
  53897. characterMakers.push(() => makeCharacter(
  53898. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53899. {
  53900. front: {
  53901. height: math.unit(8, "feet"),
  53902. weight: math.unit(300, "lb"),
  53903. name: "Front",
  53904. image: {
  53905. source: "./media/characters/khyla-shadowsong/front.svg",
  53906. extra: 861/798,
  53907. bottom: 32/893
  53908. }
  53909. },
  53910. side: {
  53911. height: math.unit(8, "feet"),
  53912. weight: math.unit(300, "lb"),
  53913. name: "Side",
  53914. image: {
  53915. source: "./media/characters/khyla-shadowsong/side.svg",
  53916. extra: 790/750,
  53917. bottom: 87/877
  53918. }
  53919. },
  53920. back: {
  53921. height: math.unit(8, "feet"),
  53922. weight: math.unit(300, "lb"),
  53923. name: "Back",
  53924. image: {
  53925. source: "./media/characters/khyla-shadowsong/back.svg",
  53926. extra: 855/808,
  53927. bottom: 14/869
  53928. }
  53929. },
  53930. head: {
  53931. height: math.unit(2.7, "feet"),
  53932. name: "Head",
  53933. image: {
  53934. source: "./media/characters/khyla-shadowsong/head.svg"
  53935. }
  53936. },
  53937. },
  53938. [
  53939. {
  53940. name: "Micro",
  53941. height: math.unit(6, "inches")
  53942. },
  53943. {
  53944. name: "Normal",
  53945. height: math.unit(8, "feet"),
  53946. default: true
  53947. },
  53948. ]
  53949. ))
  53950. characterMakers.push(() => makeCharacter(
  53951. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53952. {
  53953. hyperFront: {
  53954. height: math.unit(9 + 4/12, "feet"),
  53955. weight: math.unit(2000, "lb"),
  53956. name: "Front",
  53957. image: {
  53958. source: "./media/characters/tiden/hyper-front.svg",
  53959. extra: 400/382,
  53960. bottom: 6/406
  53961. },
  53962. form: "hyper",
  53963. },
  53964. regularFront: {
  53965. height: math.unit(7 + 10/12, "feet"),
  53966. weight: math.unit(470, "lb"),
  53967. name: "Front",
  53968. image: {
  53969. source: "./media/characters/tiden/regular-front.svg",
  53970. extra: 468/442,
  53971. bottom: 6/474
  53972. },
  53973. form: "regular",
  53974. },
  53975. },
  53976. [
  53977. {
  53978. name: "Normal",
  53979. height: math.unit(9 + 4/12, "feet"),
  53980. default: true,
  53981. form: "hyper"
  53982. },
  53983. {
  53984. name: "Normal",
  53985. height: math.unit(7 + 10/12, "feet"),
  53986. default: true,
  53987. form: "regular"
  53988. },
  53989. ],
  53990. {
  53991. "hyper": {
  53992. name: "Hyper",
  53993. default: true
  53994. },
  53995. "regular": {
  53996. name: "Regular",
  53997. },
  53998. }
  53999. ))
  54000. characterMakers.push(() => makeCharacter(
  54001. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54002. {
  54003. side: {
  54004. height: math.unit(6, "feet"),
  54005. weight: math.unit(150, "lb"),
  54006. name: "Side",
  54007. image: {
  54008. source: "./media/characters/jason-crowe/side.svg",
  54009. extra: 1771/766,
  54010. bottom: 219/1990
  54011. }
  54012. },
  54013. },
  54014. [
  54015. {
  54016. name: "Pocket Gryphon",
  54017. height: math.unit(6, "cm")
  54018. },
  54019. {
  54020. name: "Raven",
  54021. height: math.unit(60, "cm")
  54022. },
  54023. {
  54024. name: "Normal",
  54025. height: math.unit(1, "meter"),
  54026. default: true
  54027. },
  54028. ]
  54029. ))
  54030. characterMakers.push(() => makeCharacter(
  54031. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54032. {
  54033. front: {
  54034. height: math.unit(9 + 6/12, "feet"),
  54035. weight: math.unit(1100, "lb"),
  54036. name: "Front",
  54037. image: {
  54038. source: "./media/characters/django/front.svg",
  54039. extra: 1231/1136,
  54040. bottom: 34/1265
  54041. }
  54042. },
  54043. side: {
  54044. height: math.unit(9 + 6/12, "feet"),
  54045. weight: math.unit(1100, "lb"),
  54046. name: "Side",
  54047. image: {
  54048. source: "./media/characters/django/side.svg",
  54049. extra: 1267/1174,
  54050. bottom: 9/1276
  54051. }
  54052. },
  54053. },
  54054. [
  54055. {
  54056. name: "Normal",
  54057. height: math.unit(9 + 6/12, "feet"),
  54058. default: true
  54059. },
  54060. {
  54061. name: "Macro 1",
  54062. height: math.unit(50, "feet")
  54063. },
  54064. {
  54065. name: "Macro 2",
  54066. height: math.unit(500, "feet")
  54067. },
  54068. {
  54069. name: "Mega Macro",
  54070. height: math.unit(5300, "feet")
  54071. },
  54072. ]
  54073. ))
  54074. characterMakers.push(() => makeCharacter(
  54075. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54076. {
  54077. frontSfw: {
  54078. height: math.unit(120, "cm"),
  54079. weight: math.unit(15, "kg"),
  54080. name: "Front (SFW)",
  54081. image: {
  54082. source: "./media/characters/eri/front-sfw.svg",
  54083. extra: 1014/939,
  54084. bottom: 37/1051
  54085. },
  54086. form: "moth",
  54087. },
  54088. frontNsfw: {
  54089. height: math.unit(120, "cm"),
  54090. weight: math.unit(15, "kg"),
  54091. name: "Front (NSFW)",
  54092. image: {
  54093. source: "./media/characters/eri/front-nsfw.svg",
  54094. extra: 1014/939,
  54095. bottom: 37/1051
  54096. },
  54097. form: "moth",
  54098. default: true
  54099. },
  54100. egg: {
  54101. height: math.unit(10, "cm"),
  54102. name: "Egg",
  54103. image: {
  54104. source: "./media/characters/eri/egg.svg"
  54105. },
  54106. form: "egg",
  54107. default: true
  54108. },
  54109. },
  54110. [
  54111. {
  54112. name: "Normal",
  54113. height: math.unit(120, "cm"),
  54114. default: true,
  54115. form: "moth"
  54116. },
  54117. {
  54118. name: "Normal",
  54119. height: math.unit(10, "cm"),
  54120. default: true,
  54121. form: "egg"
  54122. },
  54123. ],
  54124. {
  54125. "moth": {
  54126. name: "Moth",
  54127. default: true
  54128. },
  54129. "egg": {
  54130. name: "Egg",
  54131. },
  54132. }
  54133. ))
  54134. characterMakers.push(() => makeCharacter(
  54135. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54136. {
  54137. front: {
  54138. height: math.unit(200, "feet"),
  54139. name: "Front",
  54140. image: {
  54141. source: "./media/characters/bishop-dowser/front.svg",
  54142. extra: 933/868,
  54143. bottom: 106/1039
  54144. }
  54145. },
  54146. },
  54147. [
  54148. {
  54149. name: "Giant",
  54150. height: math.unit(200, "feet"),
  54151. default: true
  54152. },
  54153. ]
  54154. ))
  54155. characterMakers.push(() => makeCharacter(
  54156. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54157. {
  54158. front: {
  54159. height: math.unit(2, "meters"),
  54160. preyCapacity: math.unit(3, "people"),
  54161. name: "Front",
  54162. image: {
  54163. source: "./media/characters/fryra/front.svg",
  54164. extra: 1025/948,
  54165. bottom: 30/1055
  54166. },
  54167. extraAttributes: {
  54168. "breastVolume": {
  54169. name: "Breast Volume",
  54170. power: 3,
  54171. type: "volume",
  54172. base: math.unit(8, "liters")
  54173. },
  54174. }
  54175. },
  54176. back: {
  54177. height: math.unit(2, "meters"),
  54178. preyCapacity: math.unit(3, "people"),
  54179. name: "Back",
  54180. image: {
  54181. source: "./media/characters/fryra/back.svg",
  54182. extra: 993/938,
  54183. bottom: 38/1031
  54184. },
  54185. extraAttributes: {
  54186. "breastVolume": {
  54187. name: "Breast Volume",
  54188. power: 3,
  54189. type: "volume",
  54190. base: math.unit(8, "liters")
  54191. },
  54192. }
  54193. },
  54194. head: {
  54195. height: math.unit(1.33, "feet"),
  54196. name: "Head",
  54197. image: {
  54198. source: "./media/characters/fryra/head.svg"
  54199. }
  54200. },
  54201. maw: {
  54202. height: math.unit(0.56, "feet"),
  54203. name: "Maw",
  54204. image: {
  54205. source: "./media/characters/fryra/maw.svg"
  54206. }
  54207. },
  54208. },
  54209. [
  54210. {
  54211. name: "Micro",
  54212. height: math.unit(5, "cm")
  54213. },
  54214. {
  54215. name: "Normal",
  54216. height: math.unit(2, "meters"),
  54217. default: true
  54218. },
  54219. {
  54220. name: "Small Macro",
  54221. height: math.unit(8, "meters")
  54222. },
  54223. {
  54224. name: "Macro",
  54225. height: math.unit(50, "meters")
  54226. },
  54227. {
  54228. name: "Megamacro",
  54229. height: math.unit(1, "km")
  54230. },
  54231. {
  54232. name: "Planetary",
  54233. height: math.unit(300000, "km")
  54234. },
  54235. {
  54236. name: "Universal",
  54237. height: math.unit(250, "lightyears")
  54238. },
  54239. {
  54240. name: "Fabric of Reality",
  54241. height: math.unit(1000, "multiverses")
  54242. },
  54243. ]
  54244. ))
  54245. characterMakers.push(() => makeCharacter(
  54246. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54247. {
  54248. frontDressed: {
  54249. height: math.unit(6 + 2/12, "feet"),
  54250. name: "Front (Dressed)",
  54251. image: {
  54252. source: "./media/characters/fiera/front-dressed.svg",
  54253. extra: 1883/1793,
  54254. bottom: 70/1953
  54255. }
  54256. },
  54257. backDressed: {
  54258. height: math.unit(6 + 2/12, "feet"),
  54259. name: "Back (Dressed)",
  54260. image: {
  54261. source: "./media/characters/fiera/back-dressed.svg",
  54262. extra: 1847/1780,
  54263. bottom: 70/1917
  54264. }
  54265. },
  54266. frontNude: {
  54267. height: math.unit(6 + 2/12, "feet"),
  54268. name: "Front (Nude)",
  54269. image: {
  54270. source: "./media/characters/fiera/front-nude.svg",
  54271. extra: 1875/1785,
  54272. bottom: 66/1941
  54273. }
  54274. },
  54275. backNude: {
  54276. height: math.unit(6 + 2/12, "feet"),
  54277. name: "Back (Nude)",
  54278. image: {
  54279. source: "./media/characters/fiera/back-nude.svg",
  54280. extra: 1855/1788,
  54281. bottom: 44/1899
  54282. }
  54283. },
  54284. maw: {
  54285. height: math.unit(1.3, "feet"),
  54286. name: "Maw",
  54287. image: {
  54288. source: "./media/characters/fiera/maw.svg"
  54289. }
  54290. },
  54291. paw: {
  54292. height: math.unit(1, "feet"),
  54293. name: "Paw",
  54294. image: {
  54295. source: "./media/characters/fiera/paw.svg"
  54296. }
  54297. },
  54298. shoe: {
  54299. height: math.unit(1.05, "feet"),
  54300. name: "Shoe",
  54301. image: {
  54302. source: "./media/characters/fiera/shoe.svg"
  54303. }
  54304. },
  54305. },
  54306. [
  54307. {
  54308. name: "Normal",
  54309. height: math.unit(6 + 2/12, "feet"),
  54310. default: true
  54311. },
  54312. {
  54313. name: "Size Difference",
  54314. height: math.unit(13, "feet")
  54315. },
  54316. {
  54317. name: "Macro",
  54318. height: math.unit(60, "feet")
  54319. },
  54320. {
  54321. name: "Mega Macro",
  54322. height: math.unit(200, "feet")
  54323. },
  54324. ]
  54325. ))
  54326. characterMakers.push(() => makeCharacter(
  54327. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54328. {
  54329. back: {
  54330. height: math.unit(6, "feet"),
  54331. name: "Back",
  54332. image: {
  54333. source: "./media/characters/flare/back.svg",
  54334. extra: 1883/1765,
  54335. bottom: 32/1915
  54336. }
  54337. },
  54338. },
  54339. [
  54340. {
  54341. name: "Normal",
  54342. height: math.unit(6 + 2/12, "feet"),
  54343. default: true
  54344. },
  54345. {
  54346. name: "Size Difference",
  54347. height: math.unit(13, "feet")
  54348. },
  54349. {
  54350. name: "Macro",
  54351. height: math.unit(60, "feet")
  54352. },
  54353. {
  54354. name: "Macro 2",
  54355. height: math.unit(100, "feet")
  54356. },
  54357. {
  54358. name: "Mega Macro",
  54359. height: math.unit(200, "feet")
  54360. },
  54361. ]
  54362. ))
  54363. characterMakers.push(() => makeCharacter(
  54364. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54365. {
  54366. front: {
  54367. height: math.unit(2.2, "m"),
  54368. weight: math.unit(300, "kg"),
  54369. name: "Front",
  54370. image: {
  54371. source: "./media/characters/hanna/front.svg",
  54372. extra: 1696/1502,
  54373. bottom: 206/1902
  54374. }
  54375. },
  54376. },
  54377. [
  54378. {
  54379. name: "Humanoid",
  54380. height: math.unit(2.2, "meters")
  54381. },
  54382. {
  54383. name: "Normal",
  54384. height: math.unit(4.8, "meters"),
  54385. default: true
  54386. },
  54387. ]
  54388. ))
  54389. characterMakers.push(() => makeCharacter(
  54390. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54391. {
  54392. front: {
  54393. height: math.unit(2.8, "meters"),
  54394. name: "Front",
  54395. image: {
  54396. source: "./media/characters/argo/front.svg",
  54397. extra: 731/518,
  54398. bottom: 84/815
  54399. }
  54400. },
  54401. },
  54402. [
  54403. {
  54404. name: "Normal",
  54405. height: math.unit(3, "meters"),
  54406. default: true
  54407. },
  54408. ]
  54409. ))
  54410. characterMakers.push(() => makeCharacter(
  54411. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54412. {
  54413. side: {
  54414. height: math.unit(3.8, "meters"),
  54415. name: "Side",
  54416. image: {
  54417. source: "./media/characters/sybil/side.svg",
  54418. extra: 382/361,
  54419. bottom: 25/407
  54420. }
  54421. },
  54422. },
  54423. [
  54424. {
  54425. name: "Normal",
  54426. height: math.unit(3.8, "meters"),
  54427. default: true
  54428. },
  54429. ]
  54430. ))
  54431. characterMakers.push(() => makeCharacter(
  54432. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54433. {
  54434. side: {
  54435. height: math.unit(6, "meters"),
  54436. name: "Side",
  54437. image: {
  54438. source: "./media/characters/plum/side.svg",
  54439. extra: 858/755,
  54440. bottom: 45/903
  54441. },
  54442. form: "taur",
  54443. default: true
  54444. },
  54445. back: {
  54446. height: math.unit(6.3, "meters"),
  54447. name: "Back",
  54448. image: {
  54449. source: "./media/characters/plum/back.svg",
  54450. extra: 887/813,
  54451. bottom: 32/919
  54452. },
  54453. form: "taur",
  54454. },
  54455. feral: {
  54456. height: math.unit(5.5, "meter"),
  54457. name: "Front",
  54458. image: {
  54459. source: "./media/characters/plum/feral.svg",
  54460. extra: 568/403,
  54461. bottom: 51/619
  54462. },
  54463. form: "feral",
  54464. default: true
  54465. },
  54466. head: {
  54467. height: math.unit(1.46, "meter"),
  54468. name: "Head",
  54469. image: {
  54470. source: "./media/characters/plum/head.svg"
  54471. },
  54472. form: "taur"
  54473. },
  54474. tailTop: {
  54475. height: math.unit(5.6, "meter"),
  54476. name: "Tail (Top)",
  54477. image: {
  54478. source: "./media/characters/plum/tail-top.svg"
  54479. },
  54480. form: "taur",
  54481. },
  54482. tailBottom: {
  54483. height: math.unit(5.6, "meter"),
  54484. name: "Tail (Bottom)",
  54485. image: {
  54486. source: "./media/characters/plum/tail-bottom.svg"
  54487. },
  54488. form: "taur",
  54489. },
  54490. feralHead: {
  54491. height: math.unit(2.56549521, "meter"),
  54492. name: "Head",
  54493. image: {
  54494. source: "./media/characters/plum/head.svg"
  54495. },
  54496. form: "feral"
  54497. },
  54498. feralTailTop: {
  54499. height: math.unit(5.44728435, "meter"),
  54500. name: "Tail (Top)",
  54501. image: {
  54502. source: "./media/characters/plum/tail-top.svg"
  54503. },
  54504. form: "feral",
  54505. },
  54506. feralTailBottom: {
  54507. height: math.unit(5.44728435, "meter"),
  54508. name: "Tail (Bottom)",
  54509. image: {
  54510. source: "./media/characters/plum/tail-bottom.svg"
  54511. },
  54512. form: "feral",
  54513. },
  54514. },
  54515. [
  54516. {
  54517. name: "Normal",
  54518. height: math.unit(6, "meters"),
  54519. default: true,
  54520. form: "taur"
  54521. },
  54522. {
  54523. name: "Normal",
  54524. height: math.unit(5.5, "meters"),
  54525. default: true,
  54526. form: "feral"
  54527. },
  54528. ],
  54529. {
  54530. "taur": {
  54531. name: "Taur",
  54532. default: true
  54533. },
  54534. "feral": {
  54535. name: "Feral",
  54536. },
  54537. }
  54538. ))
  54539. characterMakers.push(() => makeCharacter(
  54540. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54541. {
  54542. front: {
  54543. height: math.unit(6, "feet"),
  54544. weight: math.unit(115, "lb"),
  54545. name: "Front",
  54546. image: {
  54547. source: "./media/characters/celeste-kitsune/front.svg",
  54548. extra: 393/366,
  54549. bottom: 7/400
  54550. }
  54551. },
  54552. side: {
  54553. height: math.unit(6, "feet"),
  54554. weight: math.unit(115, "lb"),
  54555. name: "Side",
  54556. image: {
  54557. source: "./media/characters/celeste-kitsune/side.svg",
  54558. extra: 818/765,
  54559. bottom: 40/858
  54560. }
  54561. },
  54562. },
  54563. [
  54564. {
  54565. name: "Megamacro",
  54566. height: math.unit(1500, "miles"),
  54567. default: true
  54568. },
  54569. ]
  54570. ))
  54571. characterMakers.push(() => makeCharacter(
  54572. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54573. {
  54574. front: {
  54575. height: math.unit(8, "meters"),
  54576. name: "Front",
  54577. image: {
  54578. source: "./media/characters/io/front.svg",
  54579. extra: 865/722,
  54580. bottom: 58/923
  54581. }
  54582. },
  54583. back: {
  54584. height: math.unit(8, "meters"),
  54585. name: "Back",
  54586. image: {
  54587. source: "./media/characters/io/back.svg",
  54588. extra: 920/776,
  54589. bottom: 42/962
  54590. }
  54591. },
  54592. head: {
  54593. height: math.unit(5.09, "meters"),
  54594. name: "Head",
  54595. image: {
  54596. source: "./media/characters/io/head.svg"
  54597. }
  54598. },
  54599. hand: {
  54600. height: math.unit(1.6, "meters"),
  54601. name: "Hand",
  54602. image: {
  54603. source: "./media/characters/io/hand.svg"
  54604. }
  54605. },
  54606. foot: {
  54607. height: math.unit(2.4, "meters"),
  54608. name: "Foot",
  54609. image: {
  54610. source: "./media/characters/io/foot.svg"
  54611. }
  54612. },
  54613. },
  54614. [
  54615. {
  54616. name: "Normal",
  54617. height: math.unit(8, "meters"),
  54618. default: true
  54619. },
  54620. ]
  54621. ))
  54622. characterMakers.push(() => makeCharacter(
  54623. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54624. {
  54625. side: {
  54626. height: math.unit(6 + 3/12, "feet"),
  54627. weight: math.unit(225, "lb"),
  54628. name: "Side",
  54629. image: {
  54630. source: "./media/characters/silas/side.svg",
  54631. extra: 703/653,
  54632. bottom: 23/726
  54633. },
  54634. extraAttributes: {
  54635. "pawLength": {
  54636. name: "Paw Length",
  54637. power: 1,
  54638. type: "length",
  54639. base: math.unit(12, "inches")
  54640. },
  54641. "pawWidth": {
  54642. name: "Paw Width",
  54643. power: 1,
  54644. type: "length",
  54645. base: math.unit(4.5, "inches")
  54646. },
  54647. "pawArea": {
  54648. name: "Paw Area",
  54649. power: 2,
  54650. type: "area",
  54651. base: math.unit(12 * 4.5, "inches^2")
  54652. },
  54653. }
  54654. },
  54655. },
  54656. [
  54657. {
  54658. name: "Normal",
  54659. height: math.unit(6 + 3/12, "feet"),
  54660. default: true
  54661. },
  54662. ]
  54663. ))
  54664. characterMakers.push(() => makeCharacter(
  54665. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54666. {
  54667. back: {
  54668. height: math.unit(1.6, "meters"),
  54669. weight: math.unit(150, "lb"),
  54670. name: "Back",
  54671. image: {
  54672. source: "./media/characters/zari/back.svg",
  54673. extra: 424/411,
  54674. bottom: 32/456
  54675. },
  54676. extraAttributes: {
  54677. "bladderCapacity": {
  54678. name: "Bladder Size",
  54679. power: 3,
  54680. type: "volume",
  54681. base: math.unit(500, "mL")
  54682. },
  54683. "bladderFlow": {
  54684. name: "Flow Rate",
  54685. power: 3,
  54686. type: "volume",
  54687. base: math.unit(25, "mL")
  54688. },
  54689. }
  54690. },
  54691. },
  54692. [
  54693. {
  54694. name: "Normal",
  54695. height: math.unit(1.6, "meters"),
  54696. default: true
  54697. },
  54698. ]
  54699. ))
  54700. characterMakers.push(() => makeCharacter(
  54701. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54702. {
  54703. front: {
  54704. height: math.unit(25, "feet"),
  54705. weight: math.unit(5, "tons"),
  54706. name: "Front",
  54707. image: {
  54708. source: "./media/characters/charlie-human/front.svg",
  54709. extra: 1870/1740,
  54710. bottom: 102/1972
  54711. },
  54712. extraAttributes: {
  54713. "dickLength": {
  54714. name: "Dick Length",
  54715. power: 1,
  54716. type: "length",
  54717. base: math.unit(9, "feet")
  54718. },
  54719. }
  54720. },
  54721. back: {
  54722. height: math.unit(25, "feet"),
  54723. weight: math.unit(5, "tons"),
  54724. name: "Back",
  54725. image: {
  54726. source: "./media/characters/charlie-human/back.svg",
  54727. extra: 1858/1733,
  54728. bottom: 105/1963
  54729. },
  54730. extraAttributes: {
  54731. "dickLength": {
  54732. name: "Dick Length",
  54733. power: 1,
  54734. type: "length",
  54735. base: math.unit(9, "feet")
  54736. },
  54737. }
  54738. },
  54739. },
  54740. [
  54741. {
  54742. name: "\"Normal\"",
  54743. height: math.unit(6 + 4/12, "feet")
  54744. },
  54745. {
  54746. name: "Big",
  54747. height: math.unit(25, "feet"),
  54748. default: true
  54749. },
  54750. ]
  54751. ))
  54752. characterMakers.push(() => makeCharacter(
  54753. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54754. {
  54755. front: {
  54756. height: math.unit(6 + 4/12, "feet"),
  54757. weight: math.unit(320, "lb"),
  54758. name: "Front",
  54759. image: {
  54760. source: "./media/characters/ookitsu/front.svg",
  54761. extra: 1160/976,
  54762. bottom: 38/1198
  54763. }
  54764. },
  54765. frontNsfw: {
  54766. height: math.unit(6 + 4/12, "feet"),
  54767. weight: math.unit(320, "lb"),
  54768. name: "Front (NSFW)",
  54769. image: {
  54770. source: "./media/characters/ookitsu/front-nsfw.svg",
  54771. extra: 1160/976,
  54772. bottom: 38/1198
  54773. }
  54774. },
  54775. back: {
  54776. height: math.unit(6 + 4/12, "feet"),
  54777. weight: math.unit(320, "lb"),
  54778. name: "Back",
  54779. image: {
  54780. source: "./media/characters/ookitsu/back.svg",
  54781. extra: 1030/975,
  54782. bottom: 70/1100
  54783. }
  54784. },
  54785. head: {
  54786. height: math.unit(1.79, "feet"),
  54787. name: "Head",
  54788. image: {
  54789. source: "./media/characters/ookitsu/head.svg"
  54790. }
  54791. },
  54792. hand: {
  54793. height: math.unit(0.92, "feet"),
  54794. name: "Hand",
  54795. image: {
  54796. source: "./media/characters/ookitsu/hand.svg"
  54797. }
  54798. },
  54799. tails: {
  54800. height: math.unit(3.3, "feet"),
  54801. name: "Tails",
  54802. image: {
  54803. source: "./media/characters/ookitsu/tails.svg"
  54804. }
  54805. },
  54806. dick: {
  54807. height: math.unit(1.10833, "feet"),
  54808. name: "Dick",
  54809. image: {
  54810. source: "./media/characters/ookitsu/dick.svg"
  54811. }
  54812. },
  54813. },
  54814. [
  54815. {
  54816. name: "Normal",
  54817. height: math.unit(6 + 4/12, "feet"),
  54818. default: true
  54819. },
  54820. {
  54821. name: "Macro",
  54822. height: math.unit(30, "feet")
  54823. },
  54824. ]
  54825. ))
  54826. characterMakers.push(() => makeCharacter(
  54827. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54828. {
  54829. anthroFront: {
  54830. height: math.unit(6, "feet"),
  54831. weight: math.unit(250, "lb"),
  54832. name: "Front",
  54833. image: {
  54834. source: "./media/characters/jhusky/anthro-front.svg",
  54835. extra: 474/439,
  54836. bottom: 7/481
  54837. },
  54838. form: "anthro",
  54839. default: true
  54840. },
  54841. taurSideSfw: {
  54842. height: math.unit(6 + 4/12, "feet"),
  54843. weight: math.unit(500, "lb"),
  54844. name: "Side (SFW)",
  54845. image: {
  54846. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54847. extra: 1741/1629,
  54848. bottom: 196/1937
  54849. },
  54850. form: "taur",
  54851. default: true
  54852. },
  54853. taurSideNsfw: {
  54854. height: math.unit(6 + 4/12, "feet"),
  54855. weight: math.unit(500, "lb"),
  54856. name: "Taur (NSFW)",
  54857. image: {
  54858. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54859. extra: 1741/1629,
  54860. bottom: 196/1937
  54861. },
  54862. form: "taur",
  54863. },
  54864. },
  54865. [
  54866. {
  54867. name: "Huge",
  54868. height: math.unit(500, "feet"),
  54869. form: "anthro"
  54870. },
  54871. {
  54872. name: "Macro",
  54873. height: math.unit(1000, "feet"),
  54874. default: true,
  54875. form: "anthro"
  54876. },
  54877. {
  54878. name: "Megamacro",
  54879. height: math.unit(10000, "feet"),
  54880. form: "anthro"
  54881. },
  54882. {
  54883. name: "Huge",
  54884. height: math.unit(528, "feet"),
  54885. form: "taur"
  54886. },
  54887. {
  54888. name: "Macro",
  54889. height: math.unit(1056, "feet"),
  54890. default: true,
  54891. form: "taur"
  54892. },
  54893. {
  54894. name: "Megamacro",
  54895. height: math.unit(10556, "feet"),
  54896. form: "taur"
  54897. },
  54898. ],
  54899. {
  54900. "anthro": {
  54901. name: "Anthro",
  54902. default: true
  54903. },
  54904. "taur": {
  54905. name: "Taur",
  54906. },
  54907. }
  54908. ))
  54909. characterMakers.push(() => makeCharacter(
  54910. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54911. {
  54912. front: {
  54913. height: math.unit(8, "feet"),
  54914. weight: math.unit(500, "lb"),
  54915. name: "Front",
  54916. image: {
  54917. source: "./media/characters/armail/front.svg",
  54918. extra: 1753/1669,
  54919. bottom: 155/1908
  54920. }
  54921. },
  54922. back: {
  54923. height: math.unit(8, "feet"),
  54924. weight: math.unit(500, "lb"),
  54925. name: "Back",
  54926. image: {
  54927. source: "./media/characters/armail/back.svg",
  54928. extra: 1872/1803,
  54929. bottom: 63/1935
  54930. }
  54931. },
  54932. },
  54933. [
  54934. {
  54935. name: "Micro",
  54936. height: math.unit(0.25, "feet")
  54937. },
  54938. {
  54939. name: "Normal",
  54940. height: math.unit(8, "feet"),
  54941. default: true
  54942. },
  54943. {
  54944. name: "Mini-macro",
  54945. height: math.unit(30, "feet")
  54946. },
  54947. {
  54948. name: "Macro",
  54949. height: math.unit(400, "feet")
  54950. },
  54951. {
  54952. name: "Mega-macro",
  54953. height: math.unit(6000, "feet")
  54954. },
  54955. ]
  54956. ))
  54957. characterMakers.push(() => makeCharacter(
  54958. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54959. {
  54960. front: {
  54961. height: math.unit(6 + 7/12, "feet"),
  54962. weight: math.unit(210, "lb"),
  54963. name: "Front",
  54964. image: {
  54965. source: "./media/characters/wilfred-t-buxton/front.svg",
  54966. extra: 1068/882,
  54967. bottom: 28/1096
  54968. }
  54969. },
  54970. },
  54971. [
  54972. {
  54973. name: "Normal",
  54974. height: math.unit(6 + 7/12, "feet"),
  54975. default: true
  54976. },
  54977. ]
  54978. ))
  54979. characterMakers.push(() => makeCharacter(
  54980. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  54981. {
  54982. front: {
  54983. height: math.unit(5 + 2/12, "feet"),
  54984. weight: math.unit(120, "lb"),
  54985. name: "Front",
  54986. image: {
  54987. source: "./media/characters/leighton-marrow/front.svg",
  54988. extra: 441/409,
  54989. bottom: 37/478
  54990. }
  54991. },
  54992. },
  54993. [
  54994. {
  54995. name: "Normal",
  54996. height: math.unit(5 + 2/12, "feet"),
  54997. default: true
  54998. },
  54999. ]
  55000. ))
  55001. characterMakers.push(() => makeCharacter(
  55002. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55003. {
  55004. front: {
  55005. height: math.unit(4, "meters"),
  55006. weight: math.unit(1200, "kg"),
  55007. name: "Front",
  55008. image: {
  55009. source: "./media/characters/licos/front.svg",
  55010. extra: 1727/1604,
  55011. bottom: 101/1828
  55012. }
  55013. },
  55014. },
  55015. [
  55016. {
  55017. name: "Normal",
  55018. height: math.unit(4, "meters"),
  55019. default: true
  55020. },
  55021. ]
  55022. ))
  55023. characterMakers.push(() => makeCharacter(
  55024. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55025. {
  55026. front: {
  55027. height: math.unit(10 + 3/12, "feet"),
  55028. name: "Front",
  55029. image: {
  55030. source: "./media/characters/theo-monkey/front.svg",
  55031. extra: 1735/1658,
  55032. bottom: 73/1808
  55033. }
  55034. },
  55035. back: {
  55036. height: math.unit(10 + 3/12, "feet"),
  55037. name: "Back",
  55038. image: {
  55039. source: "./media/characters/theo-monkey/back.svg",
  55040. extra: 1742/1664,
  55041. bottom: 33/1775
  55042. }
  55043. },
  55044. head: {
  55045. height: math.unit(2.29, "feet"),
  55046. name: "Head",
  55047. image: {
  55048. source: "./media/characters/theo-monkey/head.svg"
  55049. }
  55050. },
  55051. handPalm: {
  55052. height: math.unit(1.73, "feet"),
  55053. name: "Hand (Palm)",
  55054. image: {
  55055. source: "./media/characters/theo-monkey/hand-palm.svg"
  55056. }
  55057. },
  55058. handBack: {
  55059. height: math.unit(1.63, "feet"),
  55060. name: "Hand (Back)",
  55061. image: {
  55062. source: "./media/characters/theo-monkey/hand-back.svg"
  55063. }
  55064. },
  55065. footSole: {
  55066. height: math.unit(2.15, "feet"),
  55067. name: "Foot (Sole)",
  55068. image: {
  55069. source: "./media/characters/theo-monkey/foot-sole.svg"
  55070. }
  55071. },
  55072. footSide: {
  55073. height: math.unit(1.6, "feet"),
  55074. name: "Foot (Side)",
  55075. image: {
  55076. source: "./media/characters/theo-monkey/foot-side.svg"
  55077. }
  55078. },
  55079. },
  55080. [
  55081. {
  55082. name: "Normal",
  55083. height: math.unit(10 + 3/12, "feet"),
  55084. default: true
  55085. },
  55086. ]
  55087. ))
  55088. characterMakers.push(() => makeCharacter(
  55089. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55090. {
  55091. front: {
  55092. height: math.unit(11, "feet"),
  55093. weight: math.unit(3000, "lb"),
  55094. preyCapacity: math.unit(10, "people"),
  55095. name: "Front",
  55096. image: {
  55097. source: "./media/characters/brook/front.svg",
  55098. extra: 909/835,
  55099. bottom: 108/1017
  55100. }
  55101. },
  55102. back: {
  55103. height: math.unit(11, "feet"),
  55104. weight: math.unit(3000, "lb"),
  55105. preyCapacity: math.unit(10, "people"),
  55106. name: "Back",
  55107. image: {
  55108. source: "./media/characters/brook/back.svg",
  55109. extra: 976/916,
  55110. bottom: 34/1010
  55111. }
  55112. },
  55113. backAlt: {
  55114. height: math.unit(11, "feet"),
  55115. weight: math.unit(3000, "lb"),
  55116. preyCapacity: math.unit(10, "people"),
  55117. name: "Back (Alt)",
  55118. image: {
  55119. source: "./media/characters/brook/back-alt.svg",
  55120. extra: 1283/1213,
  55121. bottom: 35/1318
  55122. }
  55123. },
  55124. bust: {
  55125. height: math.unit(9.0859030837, "feet"),
  55126. weight: math.unit(3000, "lb"),
  55127. preyCapacity: math.unit(10, "people"),
  55128. name: "Bust",
  55129. image: {
  55130. source: "./media/characters/brook/bust.svg",
  55131. extra: 2043/1923,
  55132. bottom: 0/2043
  55133. }
  55134. },
  55135. },
  55136. [
  55137. {
  55138. name: "Small",
  55139. height: math.unit(11, "feet"),
  55140. default: true
  55141. },
  55142. {
  55143. name: "Towering",
  55144. height: math.unit(5, "km")
  55145. },
  55146. {
  55147. name: "Enormous",
  55148. height: math.unit(25, "earths")
  55149. },
  55150. ]
  55151. ))
  55152. characterMakers.push(() => makeCharacter(
  55153. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55154. {
  55155. front: {
  55156. height: math.unit(4, "feet"),
  55157. weight: math.unit(150, "lb"),
  55158. name: "Front",
  55159. image: {
  55160. source: "./media/characters/squishi/front.svg",
  55161. extra: 1428/1271,
  55162. bottom: 30/1458
  55163. },
  55164. extraAttributes: {
  55165. "pawSize": {
  55166. name: "Paw Size",
  55167. power: 1,
  55168. type: "length",
  55169. base: math.unit(14, "ShoeSizeMensUS"),
  55170. defaultUnit: "ShoeSizeMensUS"
  55171. },
  55172. }
  55173. },
  55174. side: {
  55175. height: math.unit(4, "feet"),
  55176. weight: math.unit(150, "lb"),
  55177. name: "Side",
  55178. image: {
  55179. source: "./media/characters/squishi/side.svg",
  55180. extra: 1428/1271,
  55181. bottom: 30/1458
  55182. },
  55183. extraAttributes: {
  55184. "pawSize": {
  55185. name: "Paw Size",
  55186. power: 1,
  55187. type: "length",
  55188. base: math.unit(14, "ShoeSizeMensUS"),
  55189. defaultUnit: "ShoeSizeMensUS"
  55190. },
  55191. }
  55192. },
  55193. back: {
  55194. height: math.unit(4, "feet"),
  55195. weight: math.unit(150, "lb"),
  55196. name: "Back",
  55197. image: {
  55198. source: "./media/characters/squishi/back.svg",
  55199. extra: 1428/1271,
  55200. bottom: 30/1458
  55201. },
  55202. extraAttributes: {
  55203. "pawSize": {
  55204. name: "Paw Size",
  55205. power: 1,
  55206. type: "length",
  55207. base: math.unit(14, "ShoeSizeMensUS"),
  55208. defaultUnit: "ShoeSizeMensUS"
  55209. },
  55210. }
  55211. },
  55212. },
  55213. [
  55214. {
  55215. name: "Normal",
  55216. height: math.unit(4, "feet"),
  55217. default: true
  55218. },
  55219. ]
  55220. ))
  55221. characterMakers.push(() => makeCharacter(
  55222. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55223. {
  55224. front: {
  55225. height: math.unit(7 + 8/12, "feet"),
  55226. weight: math.unit(333, "lb"),
  55227. name: "Front",
  55228. image: {
  55229. source: "./media/characters/vincent-vasroc/front.svg",
  55230. extra: 1962/1860,
  55231. bottom: 41/2003
  55232. }
  55233. },
  55234. back: {
  55235. height: math.unit(7 + 8/12, "feet"),
  55236. weight: math.unit(333, "lb"),
  55237. name: "Back",
  55238. image: {
  55239. source: "./media/characters/vincent-vasroc/back.svg",
  55240. extra: 1952/1815,
  55241. bottom: 33/1985
  55242. }
  55243. },
  55244. paw: {
  55245. height: math.unit(1.24, "feet"),
  55246. name: "Paw",
  55247. image: {
  55248. source: "./media/characters/vincent-vasroc/paw.svg"
  55249. }
  55250. },
  55251. ear: {
  55252. height: math.unit(0.75, "feet"),
  55253. name: "Ear",
  55254. image: {
  55255. source: "./media/characters/vincent-vasroc/ear.svg"
  55256. }
  55257. },
  55258. },
  55259. [
  55260. {
  55261. name: "Nano",
  55262. height: math.unit(92, "micrometers")
  55263. },
  55264. {
  55265. name: "Normal",
  55266. height: math.unit(7 + 8/12, "feet"),
  55267. default: true
  55268. },
  55269. ]
  55270. ))
  55271. characterMakers.push(() => makeCharacter(
  55272. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55273. {
  55274. frontNsfw: {
  55275. height: math.unit(40, "feet"),
  55276. weight: math.unit(58, "tons"),
  55277. name: "Front (NSFW)",
  55278. image: {
  55279. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55280. extra: 1265/965,
  55281. bottom: 155/1420
  55282. }
  55283. },
  55284. frontSfw: {
  55285. height: math.unit(40, "feet"),
  55286. weight: math.unit(58, "tons"),
  55287. name: "Front (SFW)",
  55288. image: {
  55289. source: "./media/characters/ru-kahn/front-sfw.svg",
  55290. extra: 1265/965,
  55291. bottom: 80/1345
  55292. }
  55293. },
  55294. },
  55295. [
  55296. {
  55297. name: "Small",
  55298. height: math.unit(4, "feet")
  55299. },
  55300. {
  55301. name: "Normal",
  55302. height: math.unit(40, "feet"),
  55303. default: true
  55304. },
  55305. {
  55306. name: "Macro",
  55307. height: math.unit(400, "feet")
  55308. },
  55309. ]
  55310. ))
  55311. characterMakers.push(() => makeCharacter(
  55312. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55313. {
  55314. frontNude: {
  55315. height: math.unit(6 + 5/12, "feet"),
  55316. name: "Front (Nude)",
  55317. image: {
  55318. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55319. extra: 1369/1366,
  55320. bottom: 68/1437
  55321. }
  55322. },
  55323. frontDressed: {
  55324. height: math.unit(6 + 5/12, "feet"),
  55325. name: "Front (Dressed)",
  55326. image: {
  55327. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55328. extra: 1369/1366,
  55329. bottom: 68/1437
  55330. }
  55331. },
  55332. },
  55333. [
  55334. {
  55335. name: "Normal",
  55336. height: math.unit(6 + 5/12, "feet"),
  55337. default: true
  55338. },
  55339. {
  55340. name: "Maximum",
  55341. height: math.unit(1930, "feet")
  55342. },
  55343. ]
  55344. ))
  55345. characterMakers.push(() => makeCharacter(
  55346. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55347. {
  55348. front: {
  55349. height: math.unit(5 + 6/12, "feet"),
  55350. name: "Front",
  55351. image: {
  55352. source: "./media/characters/kaja/front.svg",
  55353. extra: 1874/1514,
  55354. bottom: 117/1991
  55355. }
  55356. },
  55357. },
  55358. [
  55359. {
  55360. name: "Normal",
  55361. height: math.unit(5 + 6/12, "feet"),
  55362. default: true
  55363. },
  55364. ]
  55365. ))
  55366. characterMakers.push(() => makeCharacter(
  55367. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55368. {
  55369. front: {
  55370. height: math.unit(5 + 9/12, "feet"),
  55371. weight: math.unit(200, "lb"),
  55372. name: "Front",
  55373. image: {
  55374. source: "./media/characters/mark-smith/front.svg",
  55375. extra: 1004/943,
  55376. bottom: 58/1062
  55377. }
  55378. },
  55379. back: {
  55380. height: math.unit(5 + 9/12, "feet"),
  55381. weight: math.unit(200, "lb"),
  55382. name: "Back",
  55383. image: {
  55384. source: "./media/characters/mark-smith/back.svg",
  55385. extra: 1023/953,
  55386. bottom: 24/1047
  55387. }
  55388. },
  55389. head: {
  55390. height: math.unit(1.82, "feet"),
  55391. name: "Head",
  55392. image: {
  55393. source: "./media/characters/mark-smith/head.svg"
  55394. }
  55395. },
  55396. hand: {
  55397. height: math.unit(1.4, "feet"),
  55398. name: "Hand",
  55399. image: {
  55400. source: "./media/characters/mark-smith/hand.svg"
  55401. }
  55402. },
  55403. paw: {
  55404. height: math.unit(1.69, "feet"),
  55405. name: "Paw",
  55406. image: {
  55407. source: "./media/characters/mark-smith/paw.svg"
  55408. }
  55409. },
  55410. },
  55411. [
  55412. {
  55413. name: "Micro",
  55414. height: math.unit(0.25, "inches")
  55415. },
  55416. {
  55417. name: "Normal",
  55418. height: math.unit(5 + 9/12, "feet"),
  55419. default: true
  55420. },
  55421. {
  55422. name: "Macro",
  55423. height: math.unit(500, "feet")
  55424. },
  55425. ]
  55426. ))
  55427. characterMakers.push(() => makeCharacter(
  55428. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55429. {
  55430. frontNude: {
  55431. height: math.unit(6, "feet"),
  55432. name: "Front (Nude)",
  55433. image: {
  55434. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55435. extra: 1384/1321,
  55436. bottom: 57/1441
  55437. }
  55438. },
  55439. frontDressed: {
  55440. height: math.unit(6, "feet"),
  55441. name: "Front (Dressed)",
  55442. image: {
  55443. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55444. extra: 1384/1321,
  55445. bottom: 57/1441
  55446. }
  55447. },
  55448. },
  55449. [
  55450. {
  55451. name: "Normal",
  55452. height: math.unit(6, "feet"),
  55453. default: true
  55454. },
  55455. {
  55456. name: "Maximum",
  55457. height: math.unit(1776, "feet")
  55458. },
  55459. ]
  55460. ))
  55461. characterMakers.push(() => makeCharacter(
  55462. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55463. {
  55464. front: {
  55465. height: math.unit(2 + 4/12, "feet"),
  55466. weight: math.unit(350, "lb"),
  55467. name: "Front",
  55468. image: {
  55469. source: "./media/characters/devos/front.svg",
  55470. extra: 958/852,
  55471. bottom: 143/1101
  55472. }
  55473. },
  55474. },
  55475. [
  55476. {
  55477. name: "Base",
  55478. height: math.unit(2 + 4/12, "feet"),
  55479. default: true
  55480. },
  55481. ]
  55482. ))
  55483. characterMakers.push(() => makeCharacter(
  55484. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55485. {
  55486. front: {
  55487. height: math.unit(9 + 2/12, "feet"),
  55488. name: "Front",
  55489. image: {
  55490. source: "./media/characters/hiveheart/front.svg",
  55491. extra: 394/364,
  55492. bottom: 65/459
  55493. }
  55494. },
  55495. back: {
  55496. height: math.unit(9 + 2/12, "feet"),
  55497. name: "Back",
  55498. image: {
  55499. source: "./media/characters/hiveheart/back.svg",
  55500. extra: 374/357,
  55501. bottom: 63/437
  55502. }
  55503. },
  55504. },
  55505. [
  55506. {
  55507. name: "Base",
  55508. height: math.unit(9 + 2/12, "feet"),
  55509. default: true
  55510. },
  55511. ]
  55512. ))
  55513. characterMakers.push(() => makeCharacter(
  55514. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55515. {
  55516. front: {
  55517. height: math.unit(2.5, "inches"),
  55518. weight: math.unit(0.6, "oz"),
  55519. name: "Front",
  55520. image: {
  55521. source: "./media/characters/bryn/front.svg",
  55522. extra: 1480/1205,
  55523. bottom: 27/1507
  55524. }
  55525. },
  55526. back: {
  55527. height: math.unit(2.5, "inches"),
  55528. weight: math.unit(0.6, "oz"),
  55529. name: "Back",
  55530. image: {
  55531. source: "./media/characters/bryn/back.svg",
  55532. extra: 1475/1201,
  55533. bottom: 39/1514
  55534. }
  55535. },
  55536. foot: {
  55537. height: math.unit(0.4, "inches"),
  55538. name: "Foot",
  55539. image: {
  55540. source: "./media/characters/bryn/foot.svg"
  55541. }
  55542. },
  55543. },
  55544. [
  55545. {
  55546. name: "Normal",
  55547. height: math.unit(2.5, "inches"),
  55548. default: true
  55549. },
  55550. ]
  55551. ))
  55552. characterMakers.push(() => makeCharacter(
  55553. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55554. {
  55555. side: {
  55556. height: math.unit(7, "feet"),
  55557. weight: math.unit(657, "kg"),
  55558. name: "Side",
  55559. image: {
  55560. source: "./media/characters/delta/side.svg",
  55561. extra: 781/212,
  55562. bottom: 7/788
  55563. },
  55564. extraAttributes: {
  55565. "wingspan": {
  55566. name: "Wingspan",
  55567. power: 1,
  55568. type: "length",
  55569. base: math.unit(48, "feet")
  55570. },
  55571. "length": {
  55572. name: "Length",
  55573. power: 1,
  55574. type: "length",
  55575. base: math.unit(21, "feet")
  55576. },
  55577. "pawSize": {
  55578. name: "Paw Size",
  55579. power: 2,
  55580. type: "area",
  55581. base: math.unit(1.5*1.4, "feet^2")
  55582. },
  55583. }
  55584. },
  55585. },
  55586. [
  55587. {
  55588. name: "Normal",
  55589. height: math.unit(6, "feet"),
  55590. default: true
  55591. },
  55592. ]
  55593. ))
  55594. characterMakers.push(() => makeCharacter(
  55595. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55596. {
  55597. front: {
  55598. height: math.unit(6, "feet"),
  55599. name: "Front",
  55600. image: {
  55601. source: "./media/characters/pyrow/front.svg",
  55602. extra: 513/486,
  55603. bottom: 14/527
  55604. }
  55605. },
  55606. frontWing: {
  55607. height: math.unit(6, "feet"),
  55608. name: "Front (Wing)",
  55609. image: {
  55610. source: "./media/characters/pyrow/front-wing.svg",
  55611. extra: 539/383,
  55612. bottom: 20/559
  55613. }
  55614. },
  55615. back: {
  55616. height: math.unit(6, "feet"),
  55617. name: "Back",
  55618. image: {
  55619. source: "./media/characters/pyrow/back.svg",
  55620. extra: 500/473,
  55621. bottom: 9/509
  55622. }
  55623. },
  55624. },
  55625. [
  55626. {
  55627. name: "Normal",
  55628. height: math.unit(6, "feet"),
  55629. default: true
  55630. },
  55631. ]
  55632. ))
  55633. characterMakers.push(() => makeCharacter(
  55634. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55635. {
  55636. front: {
  55637. height: math.unit(5, "meters"),
  55638. weight: math.unit(3, "tonnes"),
  55639. name: "Front",
  55640. image: {
  55641. source: "./media/characters/velikan/front.svg",
  55642. extra: 867/744,
  55643. bottom: 71/938
  55644. },
  55645. extraAttributes: {
  55646. "shoeSize": {
  55647. name: "Shoe Size",
  55648. power: 1,
  55649. type: "length",
  55650. base: math.unit(135, "ShoeSizeUK"),
  55651. defaultUnit: "ShoeSizeUK"
  55652. },
  55653. }
  55654. },
  55655. },
  55656. [
  55657. {
  55658. name: "Normal",
  55659. height: math.unit(5, "meters"),
  55660. default: true
  55661. },
  55662. {
  55663. name: "Macro",
  55664. height: math.unit(1, "km")
  55665. },
  55666. {
  55667. name: "Mega Macro",
  55668. height: math.unit(100, "km")
  55669. },
  55670. {
  55671. name: "Giga Macro",
  55672. height: math.unit(2, "megameters")
  55673. },
  55674. {
  55675. name: "Planetary",
  55676. height: math.unit(22, "megameters")
  55677. },
  55678. {
  55679. name: "Solar",
  55680. height: math.unit(8, "gigameters")
  55681. },
  55682. {
  55683. name: "Cosmic",
  55684. height: math.unit(10, "zettameters")
  55685. },
  55686. {
  55687. name: "Omni",
  55688. height: math.unit(9e260, "multiverses")
  55689. },
  55690. ]
  55691. ))
  55692. characterMakers.push(() => makeCharacter(
  55693. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55694. {
  55695. front: {
  55696. height: math.unit(4 + 3/12, "feet"),
  55697. weight: math.unit(90, "lb"),
  55698. name: "Front",
  55699. image: {
  55700. source: "./media/characters/sabiki/front.svg",
  55701. extra: 1662/1423,
  55702. bottom: 65/1727
  55703. }
  55704. },
  55705. },
  55706. [
  55707. {
  55708. name: "Normal",
  55709. height: math.unit(4 + 3/12, "feet"),
  55710. default: true
  55711. },
  55712. ]
  55713. ))
  55714. characterMakers.push(() => makeCharacter(
  55715. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55716. {
  55717. frontSfw: {
  55718. height: math.unit(2, "mm"),
  55719. name: "Front (SFW)",
  55720. image: {
  55721. source: "./media/characters/carmel/front-sfw.svg",
  55722. extra: 1131/1006,
  55723. bottom: 66/1197
  55724. }
  55725. },
  55726. frontNsfw: {
  55727. height: math.unit(2, "mm"),
  55728. name: "Front (NSFW)",
  55729. image: {
  55730. source: "./media/characters/carmel/front-nsfw.svg",
  55731. extra: 1131/1006,
  55732. bottom: 66/1197
  55733. }
  55734. },
  55735. foot: {
  55736. height: math.unit(0.3, "mm"),
  55737. name: "Foot",
  55738. image: {
  55739. source: "./media/characters/carmel/foot.svg"
  55740. }
  55741. },
  55742. tongue: {
  55743. height: math.unit(0.71, "mm"),
  55744. name: "Tongue",
  55745. image: {
  55746. source: "./media/characters/carmel/tongue.svg"
  55747. }
  55748. },
  55749. dick: {
  55750. height: math.unit(0.085, "mm"),
  55751. name: "Dick",
  55752. image: {
  55753. source: "./media/characters/carmel/dick.svg"
  55754. }
  55755. },
  55756. },
  55757. [
  55758. {
  55759. name: "Micro",
  55760. height: math.unit(2, "mm"),
  55761. default: true
  55762. },
  55763. {
  55764. name: "Normal",
  55765. height: math.unit(4 + 8/12, "feet")
  55766. },
  55767. {
  55768. name: "Mega Macro",
  55769. height: math.unit(250, "feet")
  55770. },
  55771. {
  55772. name: "BIGGER",
  55773. height: math.unit(1000, "feet")
  55774. },
  55775. {
  55776. name: "BIGGEST",
  55777. height: math.unit(2, "miles")
  55778. },
  55779. ]
  55780. ))
  55781. characterMakers.push(() => makeCharacter(
  55782. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55783. {
  55784. front: {
  55785. height: math.unit(6.5, "feet"),
  55786. weight: math.unit(198, "lb"),
  55787. name: "Front",
  55788. image: {
  55789. source: "./media/characters/tamani/anthro.svg",
  55790. extra: 930/890,
  55791. bottom: 34/964
  55792. },
  55793. form: "anthro",
  55794. default: true
  55795. },
  55796. side: {
  55797. height: math.unit(6, "feet"),
  55798. weight: math.unit(198*2, "lb"),
  55799. name: "Side",
  55800. image: {
  55801. source: "./media/characters/tamani/feral.svg",
  55802. extra: 559/519,
  55803. bottom: 43/602
  55804. },
  55805. form: "feral"
  55806. },
  55807. },
  55808. [
  55809. {
  55810. name: "Normal",
  55811. height: math.unit(6.5, "feet"),
  55812. default: true,
  55813. form: "anthro"
  55814. },
  55815. {
  55816. name: "Normal",
  55817. height: math.unit(6, "feet"),
  55818. default: true,
  55819. form: "feral"
  55820. },
  55821. ],
  55822. {
  55823. "anthro": {
  55824. name: "Anthro",
  55825. default: true
  55826. },
  55827. "feral": {
  55828. name: "Feral",
  55829. },
  55830. }
  55831. ))
  55832. characterMakers.push(() => makeCharacter(
  55833. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  55834. {
  55835. front: {
  55836. height: math.unit(4 + 1/12, "feet"),
  55837. weight: math.unit(114, "lb"),
  55838. name: "Front",
  55839. image: {
  55840. source: "./media/characters/dex/front.svg",
  55841. extra: 787/680,
  55842. bottom: 18/805
  55843. }
  55844. },
  55845. side: {
  55846. height: math.unit(4 + 1/12, "feet"),
  55847. weight: math.unit(114, "lb"),
  55848. name: "Side",
  55849. image: {
  55850. source: "./media/characters/dex/side.svg",
  55851. extra: 785/680,
  55852. bottom: 12/797
  55853. }
  55854. },
  55855. back: {
  55856. height: math.unit(4 + 1/12, "feet"),
  55857. weight: math.unit(114, "lb"),
  55858. name: "Back",
  55859. image: {
  55860. source: "./media/characters/dex/back.svg",
  55861. extra: 785/681,
  55862. bottom: 17/802
  55863. }
  55864. },
  55865. loungewear: {
  55866. height: math.unit(4 + 1/12, "feet"),
  55867. weight: math.unit(114, "lb"),
  55868. name: "Loungewear",
  55869. image: {
  55870. source: "./media/characters/dex/loungewear.svg",
  55871. extra: 787/680,
  55872. bottom: 18/805
  55873. }
  55874. },
  55875. workout: {
  55876. height: math.unit(4 + 1/12, "feet"),
  55877. weight: math.unit(114, "lb"),
  55878. name: "Workout",
  55879. image: {
  55880. source: "./media/characters/dex/workout.svg",
  55881. extra: 787/680,
  55882. bottom: 18/805
  55883. }
  55884. },
  55885. schoolUniform: {
  55886. height: math.unit(4 + 1/12, "feet"),
  55887. weight: math.unit(114, "lb"),
  55888. name: "School-uniform",
  55889. image: {
  55890. source: "./media/characters/dex/school-uniform.svg",
  55891. extra: 787/680,
  55892. bottom: 18/805
  55893. }
  55894. },
  55895. maw: {
  55896. height: math.unit(0.55, "feet"),
  55897. name: "Maw",
  55898. image: {
  55899. source: "./media/characters/dex/maw.svg"
  55900. }
  55901. },
  55902. paw: {
  55903. height: math.unit(0.87, "feet"),
  55904. name: "Paw",
  55905. image: {
  55906. source: "./media/characters/dex/paw.svg"
  55907. }
  55908. },
  55909. bust: {
  55910. height: math.unit(1.67, "feet"),
  55911. name: "Bust",
  55912. image: {
  55913. source: "./media/characters/dex/bust.svg"
  55914. }
  55915. },
  55916. },
  55917. [
  55918. {
  55919. name: "Normal",
  55920. height: math.unit(4 + 1/12, "feet"),
  55921. default: true
  55922. },
  55923. ]
  55924. ))
  55925. characterMakers.push(() => makeCharacter(
  55926. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  55927. {
  55928. front: {
  55929. height: math.unit(4 + 3/12, "feet"),
  55930. weight: math.unit(60, "lb"),
  55931. name: "Front",
  55932. image: {
  55933. source: "./media/characters/silke/front.svg",
  55934. extra: 1334/1122,
  55935. bottom: 21/1355
  55936. }
  55937. },
  55938. back: {
  55939. height: math.unit(4 + 3/12, "feet"),
  55940. weight: math.unit(60, "lb"),
  55941. name: "Back",
  55942. image: {
  55943. source: "./media/characters/silke/back.svg",
  55944. extra: 1328/1092,
  55945. bottom: 16/1344
  55946. }
  55947. },
  55948. dressed: {
  55949. height: math.unit(4 + 3/12, "feet"),
  55950. weight: math.unit(60, "lb"),
  55951. name: "Dressed",
  55952. image: {
  55953. source: "./media/characters/silke/dressed.svg",
  55954. extra: 1334/1122,
  55955. bottom: 43/1377
  55956. }
  55957. },
  55958. },
  55959. [
  55960. {
  55961. name: "Normal",
  55962. height: math.unit(4 + 3/12, "feet"),
  55963. default: true
  55964. },
  55965. ]
  55966. ))
  55967. characterMakers.push(() => makeCharacter(
  55968. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  55969. {
  55970. front: {
  55971. height: math.unit(1.58, "meters"),
  55972. weight: math.unit(47, "kg"),
  55973. name: "Front",
  55974. image: {
  55975. source: "./media/characters/wireshark/front.svg",
  55976. extra: 883/838,
  55977. bottom: 66/949
  55978. }
  55979. },
  55980. },
  55981. [
  55982. {
  55983. name: "Normal",
  55984. height: math.unit(1.58, "meters"),
  55985. default: true
  55986. },
  55987. ]
  55988. ))
  55989. //characters
  55990. function makeCharacters() {
  55991. const results = [];
  55992. characterMakers.forEach(character => {
  55993. results.push(character());
  55994. });
  55995. return results;
  55996. }