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.
 
 
 

56955 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. },
  143. tiger: {
  144. name: "Tiger",
  145. parents: [
  146. "cat"
  147. ]
  148. },
  149. cat: {
  150. name: "Cat",
  151. parents: [
  152. "feliform"
  153. ]
  154. },
  155. "blue-jay": {
  156. name: "Blue Jay",
  157. parents: [
  158. "corvid"
  159. ]
  160. },
  161. wolf: {
  162. name: "Wolf",
  163. parents: [
  164. "mammal"
  165. ]
  166. },
  167. coyote: {
  168. name: "Coyote",
  169. parents: [
  170. "mammal"
  171. ]
  172. },
  173. raccoon: {
  174. name: "Raccoon",
  175. parents: [
  176. "mammal"
  177. ]
  178. },
  179. weasel: {
  180. name: "Weasel",
  181. parents: [
  182. "mustelid"
  183. ]
  184. },
  185. "red-panda": {
  186. name: "Red Panda",
  187. parents: [
  188. "mammal"
  189. ]
  190. },
  191. dolphin: {
  192. name: "Dolphin",
  193. parents: [
  194. "mammal"
  195. ]
  196. },
  197. "african-wild-dog": {
  198. name: "African Wild Dog",
  199. parents: [
  200. "canine"
  201. ]
  202. },
  203. "hyena": {
  204. name: "Hyena",
  205. parents: [
  206. "feliform"
  207. ]
  208. },
  209. "carbuncle": {
  210. name: "Carbuncle",
  211. parents: [
  212. "animal"
  213. ]
  214. },
  215. bat: {
  216. name: "Bat",
  217. parents: [
  218. "mammal"
  219. ]
  220. },
  221. "leaf-nosed-bat": {
  222. name: "Leaf-Nosed Bat",
  223. parents: [
  224. "bat"
  225. ]
  226. },
  227. "fish": {
  228. name: "Fish",
  229. parents: [
  230. "animal"
  231. ]
  232. },
  233. "ram": {
  234. name: "Ram",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "demon": {
  240. name: "Demon",
  241. parents: [
  242. "supernatural"
  243. ]
  244. },
  245. "cougar": {
  246. name: "Cougar",
  247. parents: [
  248. "cat"
  249. ]
  250. },
  251. "goat": {
  252. name: "Goat",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "lion": {
  258. name: "Lion",
  259. parents: [
  260. "cat"
  261. ]
  262. },
  263. "harpy-eager": {
  264. name: "Harpy Eagle",
  265. parents: [
  266. "avian"
  267. ]
  268. },
  269. "deer": {
  270. name: "Deer",
  271. parents: [
  272. "mammal"
  273. ]
  274. },
  275. "phoenix": {
  276. name: "Phoenix",
  277. parents: [
  278. "avian"
  279. ]
  280. },
  281. "aeromorph": {
  282. name: "Aeromorph",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "machine": {
  288. name: "Machine",
  289. },
  290. "android": {
  291. name: "Android",
  292. parents: [
  293. "machine"
  294. ]
  295. },
  296. "jackal": {
  297. name: "Jackal",
  298. parents: [
  299. "canine"
  300. ]
  301. },
  302. "corvid": {
  303. name: "Corvid",
  304. parents: [
  305. "passerine"
  306. ]
  307. },
  308. "pharaoh-hound": {
  309. name: "Pharaoh Hound",
  310. parents: [
  311. "dog"
  312. ]
  313. },
  314. "skunk": {
  315. name: "Skunk",
  316. parents: [
  317. "mammal"
  318. ]
  319. },
  320. "shark": {
  321. name: "Shark",
  322. parents: [
  323. "fish"
  324. ]
  325. },
  326. "black-panther": {
  327. name: "Black Panther",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "umbra": {
  333. name: "Umbra",
  334. parents: [
  335. "animal"
  336. ]
  337. },
  338. "raven": {
  339. name: "Raven",
  340. parents: [
  341. "corvid"
  342. ]
  343. },
  344. "snow-leopard": {
  345. name: "Snow Leopard",
  346. parents: [
  347. "cat"
  348. ]
  349. },
  350. "barbary-lion": {
  351. name: "Barbary Lion",
  352. parents: [
  353. "lion"
  354. ]
  355. },
  356. "dra'gal": {
  357. name: "Dra'Gal",
  358. parents: [
  359. "mammal"
  360. ]
  361. },
  362. "german-shepherd": {
  363. name: "German Shepherd",
  364. parents: [
  365. "dog"
  366. ]
  367. },
  368. "bayleef": {
  369. name: "Bayleef",
  370. parents: [
  371. "pokemon",
  372. "plant",
  373. "animal"
  374. ]
  375. },
  376. "mouse": {
  377. name: "Mouse",
  378. parents: [
  379. "rodent"
  380. ]
  381. },
  382. "rat": {
  383. name: "Rat",
  384. parents: [
  385. "mammal"
  386. ]
  387. },
  388. "hoshiko-beast": {
  389. name: "Hoshiko Beast",
  390. parents: ["animal"]
  391. },
  392. "snow-jugani": {
  393. name: "Snow Jugani",
  394. parents: ["cat"]
  395. },
  396. "patamon": {
  397. name: "Patamon",
  398. parents: ["digimon", "guinea-pig"]
  399. },
  400. "digimon": {
  401. name: "Digimon",
  402. },
  403. "jugani": {
  404. name: "Jugani",
  405. parents: ["cat"]
  406. },
  407. "luxray": {
  408. name: "Luxray",
  409. parents: ["pokemon", "lion"]
  410. },
  411. "mech": {
  412. name: "Mech",
  413. parents: ["machine"]
  414. },
  415. "zoid": {
  416. name: "Zoid",
  417. parents: ["mech"]
  418. },
  419. "monster": {
  420. name: "Monster",
  421. parents: ["animal"]
  422. },
  423. "foo-dog": {
  424. name: "Foo Dog",
  425. parents: ["mammal"]
  426. },
  427. "elephant": {
  428. name: "Elephant",
  429. parents: ["mammal"]
  430. },
  431. "eagle": {
  432. name: "Eagle",
  433. parents: ["bird-of-prey"]
  434. },
  435. "cow": {
  436. name: "Cow",
  437. parents: ["mammal"]
  438. },
  439. "crocodile": {
  440. name: "Crocodile",
  441. parents: ["reptile"]
  442. },
  443. "borzoi": {
  444. name: "Borzoi",
  445. parents: ["dog"]
  446. },
  447. "snake": {
  448. name: "Snake",
  449. parents: ["reptile"]
  450. },
  451. "horned-bush-viper": {
  452. name: "Horned Bush Viper",
  453. parents: ["viper"]
  454. },
  455. "cobra": {
  456. name: "Cobra",
  457. parents: ["snake"]
  458. },
  459. "harpy-eagle": {
  460. name: "Harpy Eagle",
  461. parents: ["eagle"]
  462. },
  463. "raptor": {
  464. name: "Raptor",
  465. parents: ["dinosaur"]
  466. },
  467. "dinosaur": {
  468. name: "Dinosaur",
  469. parents: ["reptile"]
  470. },
  471. "veilhound": {
  472. name: "Veilhound",
  473. parents: ["hellhound"]
  474. },
  475. "hellhound": {
  476. name: "Hellhound",
  477. parents: ["canine", "demon"]
  478. },
  479. "insect": {
  480. name: "Insect",
  481. parents: ["animal"]
  482. },
  483. "beetle": {
  484. name: "Beetle",
  485. parents: ["insect"]
  486. },
  487. "moth": {
  488. name: "Moth",
  489. parents: ["insect"]
  490. },
  491. "eastern-dragon": {
  492. name: "Eastern Dragon",
  493. parents: ["dragon"]
  494. },
  495. "jaguar": {
  496. name: "Jaguar",
  497. parents: ["cat"]
  498. },
  499. "horse": {
  500. name: "Horse",
  501. parents: ["mammal"]
  502. },
  503. "sergal": {
  504. name: "Sergal",
  505. parents: ["mammal", "avian", "vilous"]
  506. },
  507. "gryphon": {
  508. name: "Gryphon",
  509. parents: ["lion", "eagle"]
  510. },
  511. "robot": {
  512. name: "Robot",
  513. parents: ["machine"]
  514. },
  515. "medihound": {
  516. name: "Medihound",
  517. parents: ["robot", "dog"]
  518. },
  519. "sylveon": {
  520. name: "Sylveon",
  521. parents: ["pokemon"]
  522. },
  523. "catgirl": {
  524. name: "Catgirl",
  525. parents: ["mammal"]
  526. },
  527. "cowgirl": {
  528. name: "Cowgirl",
  529. parents: ["mammal"]
  530. },
  531. "pony": {
  532. name: "Pony",
  533. parents: ["horse"]
  534. },
  535. "rabbit": {
  536. name: "Rabbit",
  537. parents: ["leporidae"]
  538. },
  539. "fennec-fox": {
  540. name: "Fennec Fox",
  541. parents: ["fox"]
  542. },
  543. "azodian": {
  544. name: "Azodian",
  545. parents: ["mouse"]
  546. },
  547. "shiba-inu": {
  548. name: "Shiba Inu",
  549. parents: ["dog"]
  550. },
  551. "changeling": {
  552. name: "Changeling",
  553. parents: ["insect"]
  554. },
  555. "cheetah": {
  556. name: "Cheetah",
  557. parents: ["cat"]
  558. },
  559. "golden-jackal": {
  560. name: "Golden Jackal",
  561. parents: ["jackal"]
  562. },
  563. "manectric": {
  564. name: "Manectric",
  565. parents: ["pokemon", "wolf"]
  566. },
  567. "rat": {
  568. name: "Rat",
  569. parents: ["rodent"]
  570. },
  571. "rodent": {
  572. name: "Rodent",
  573. parents: ["mammal"]
  574. },
  575. "octocoon": {
  576. name: "Octocoon",
  577. parents: ["raccoon", "octopus"]
  578. },
  579. "octopus": {
  580. name: "Octopus",
  581. parents: ["fish"]
  582. },
  583. "werewolf": {
  584. name: "Werewolf",
  585. parents: ["wolf", "werebeast"]
  586. },
  587. "werebeast": {
  588. name: "Werebeast",
  589. parents: ["monster"]
  590. },
  591. "meerkat": {
  592. name: "Meerkat",
  593. parents: ["mammal"]
  594. },
  595. "human": {
  596. name: "Human",
  597. parents: ["mammal"]
  598. },
  599. "geth": {
  600. name: "Geth",
  601. parents: ["android"]
  602. },
  603. "husky": {
  604. name: "Husky",
  605. parents: ["dog"]
  606. },
  607. "long-eared-bat": {
  608. name: "Long Eared Bat",
  609. parents: ["bat"]
  610. },
  611. "lizard": {
  612. name: "Lizard",
  613. parents: ["reptile"]
  614. },
  615. "salamander": {
  616. name: "Salamander",
  617. parents: ["lizard"]
  618. },
  619. "chameleon": {
  620. name: "Chameleon",
  621. parents: ["lizard"]
  622. },
  623. "gecko": {
  624. name: "Gecko",
  625. parents: ["lizard"]
  626. },
  627. "kobold": {
  628. name: "Kobold",
  629. parents: ["reptile"]
  630. },
  631. "charizard": {
  632. name: "Charizard",
  633. parents: ["pokemon", "dragon"]
  634. },
  635. "lugia": {
  636. name: "Lugia",
  637. parents: ["pokemon", "avian"]
  638. },
  639. "cerberus": {
  640. name: "Cerberus",
  641. parents: ["dog"]
  642. },
  643. "tyrantrum": {
  644. name: "Tyrantrum",
  645. parents: ["pokemon"]
  646. },
  647. "lemur": {
  648. name: "Lemur",
  649. parents: ["mammal"]
  650. },
  651. "kelpie": {
  652. name: "Kelpie",
  653. parents: ["horse", "monster"]
  654. },
  655. "labrador": {
  656. name: "Labrador",
  657. parents: ["dog"]
  658. },
  659. "sylveon": {
  660. name: "Sylveon",
  661. parents: ["eeveelution"]
  662. },
  663. "eeveelution": {
  664. name: "Eeveelution",
  665. parents: ["pokemon", "cat"]
  666. },
  667. "polar-bear": {
  668. name: "Polar Bear",
  669. parents: ["bear"]
  670. },
  671. "bear": {
  672. name: "Bear",
  673. parents: ["mammal"]
  674. },
  675. "absol": {
  676. name: "Absol",
  677. parents: ["pokemon", "cat"]
  678. },
  679. "wolver": {
  680. name: "Wolver",
  681. parents: ["mammal"]
  682. },
  683. "rottweiler": {
  684. name: "Rottweiler",
  685. parents: ["dog"]
  686. },
  687. "zebra": {
  688. name: "Zebra",
  689. parents: ["horse"]
  690. },
  691. "yoshi": {
  692. name: "Yoshi",
  693. parents: ["lizard"]
  694. },
  695. "lynx": {
  696. name: "Lynx",
  697. parents: ["cat"]
  698. },
  699. "unknown": {
  700. name: "Unknown",
  701. parents: []
  702. },
  703. "thylacine": {
  704. name: "Thylacine",
  705. parents: ["mammal"]
  706. },
  707. "gabumon": {
  708. name: "Gabumon",
  709. parents: ["digimon"]
  710. },
  711. "border-collie": {
  712. name: "Border Collie",
  713. parents: ["dog"]
  714. },
  715. "imp": {
  716. name: "Imp",
  717. parents: ["demon"]
  718. },
  719. "kangaroo": {
  720. name: "Kangaroo",
  721. parents: ["marsupial"]
  722. },
  723. "renamon": {
  724. name: "Renamon",
  725. parents: ["digimon", "fox"]
  726. },
  727. "candy-orca-dragon": {
  728. name: "Candy Orca Dragon",
  729. parents: ["fish", "dragon", "candy"]
  730. },
  731. "sabertooth-tiger": {
  732. name: "Sabertooth Tiger",
  733. parents: ["cat"]
  734. },
  735. "espurr": {
  736. name: "Espurr",
  737. parents: ["pokemon", "cat"]
  738. },
  739. "otter": {
  740. name: "Otter",
  741. parents: ["mustelid"]
  742. },
  743. "elemental": {
  744. name: "Elemental",
  745. parents: ["mammal"]
  746. },
  747. "mew": {
  748. name: "Mew",
  749. parents: ["pokemon"]
  750. },
  751. "goodra": {
  752. name: "Goodra",
  753. parents: ["pokemon"]
  754. },
  755. "fairy": {
  756. name: "Fairy",
  757. parents: ["magical"]
  758. },
  759. "typhlosion": {
  760. name: "Typhlosion",
  761. parents: ["pokemon"]
  762. },
  763. "magical": {
  764. name: "Magical",
  765. parents: []
  766. },
  767. "xenomorph": {
  768. name: "Xenomorph",
  769. parents: ["monster", "alien"]
  770. },
  771. "charr": {
  772. name: "Charr",
  773. parents: ["cat"]
  774. },
  775. "siberian-husky": {
  776. name: "Siberian Husky",
  777. parents: ["husky"]
  778. },
  779. "alligator": {
  780. name: "Alligator",
  781. parents: ["reptile"]
  782. },
  783. "bernese-mountain-dog": {
  784. name: "Bernese Mountain Dog",
  785. parents: ["dog"]
  786. },
  787. "reshiram": {
  788. name: "Reshiram",
  789. parents: ["pokemon", "dragon"]
  790. },
  791. "grizzly-bear": {
  792. name: "Grizzly Bear",
  793. parents: ["bear"]
  794. },
  795. "water-monitor": {
  796. name: "Water Monitor",
  797. parents: ["lizard"]
  798. },
  799. "banchofossa": {
  800. name: "Banchofossa",
  801. parents: ["mammal"]
  802. },
  803. "kirin": {
  804. name: "Kirin",
  805. parents: ["monster"]
  806. },
  807. "quilava": {
  808. name: "Quilava",
  809. parents: ["pokemon"]
  810. },
  811. "seviper": {
  812. name: "Seviper",
  813. parents: ["pokemon", "viper"]
  814. },
  815. "flying-fox": {
  816. name: "Flying Fox",
  817. parents: ["bat"]
  818. },
  819. "keynain": {
  820. name: "Keynain",
  821. parents: ["avian"]
  822. },
  823. "lucario": {
  824. name: "Lucario",
  825. parents: ["pokemon", "jackal"]
  826. },
  827. "siamese-cat": {
  828. name: "Siamese Cat",
  829. parents: ["cat"]
  830. },
  831. "spider": {
  832. name: "Spider",
  833. parents: ["insect"]
  834. },
  835. "samurott": {
  836. name: "Samurott",
  837. parents: ["pokemon", "otter"]
  838. },
  839. "megalodon": {
  840. name: "Megalodon",
  841. parents: ["shark"]
  842. },
  843. "unicorn": {
  844. name: "Unicorn",
  845. parents: ["horse"]
  846. },
  847. "greninja": {
  848. name: "Greninja",
  849. parents: ["pokemon", "frog"]
  850. },
  851. "water-dragon": {
  852. name: "Water Dragon",
  853. parents: ["dragon"]
  854. },
  855. "cross-fox": {
  856. name: "Cross Fox",
  857. parents: ["fox"]
  858. },
  859. "synth": {
  860. name: "Synth",
  861. parents: ["machine"]
  862. },
  863. "construct": {
  864. name: "Construct",
  865. parents: []
  866. },
  867. "mexican-wolf": {
  868. name: "Mexican Wolf",
  869. parents: ["wolf"]
  870. },
  871. "leopard": {
  872. name: "Leopard",
  873. parents: ["cat"]
  874. },
  875. "pig": {
  876. name: "Pig",
  877. parents: ["mammal"]
  878. },
  879. "ampharos": {
  880. name: "Ampharos",
  881. parents: ["pokemon", "sheep"]
  882. },
  883. "orca": {
  884. name: "Orca",
  885. parents: ["fish"]
  886. },
  887. "lycanroc": {
  888. name: "Lycanroc",
  889. parents: ["pokemon", "wolf"]
  890. },
  891. "surkanu": {
  892. name: "Surkanu",
  893. parents: ["monster"]
  894. },
  895. "seal": {
  896. name: "Seal",
  897. parents: ["mammal"]
  898. },
  899. "keldeo": {
  900. name: "Keldeo",
  901. parents: ["pokemon"]
  902. },
  903. "great-dane": {
  904. name: "Great Dane",
  905. parents: ["dog"]
  906. },
  907. "black-backed-jackal": {
  908. name: "Black Backed Jackal",
  909. parents: ["jackal"]
  910. },
  911. "sheep": {
  912. name: "Sheep",
  913. parents: ["mammal"]
  914. },
  915. "leopard-seal": {
  916. name: "Leopard Seal",
  917. parents: ["seal"]
  918. },
  919. "zoroark": {
  920. name: "Zoroark",
  921. parents: ["pokemon", "fox"]
  922. },
  923. "maned-wolf": {
  924. name: "Maned Wolf",
  925. parents: ["canine"]
  926. },
  927. "dracha": {
  928. name: "Dracha",
  929. parents: ["dragon"]
  930. },
  931. "wolxi": {
  932. name: "Wolxi",
  933. parents: ["mammal", "alien"]
  934. },
  935. "dratini": {
  936. name: "Dratini",
  937. parents: ["pokemon", "dragon"]
  938. },
  939. "skaven": {
  940. name: "Skaven",
  941. parents: ["rat"]
  942. },
  943. "mongoose": {
  944. name: "Mongoose",
  945. parents: ["mammal"]
  946. },
  947. "lopunny": {
  948. name: "Lopunny",
  949. parents: ["pokemon", "rabbit"]
  950. },
  951. "feraligatr": {
  952. name: "Feraligatr",
  953. parents: ["pokemon", "alligator"]
  954. },
  955. "houndoom": {
  956. name: "Houndoom",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "protogen": {
  960. name: "Protogen",
  961. parents: ["machine"]
  962. },
  963. "saint-bernard": {
  964. name: "Saint Bernard",
  965. parents: ["dog"]
  966. },
  967. "crow": {
  968. name: "Crow",
  969. parents: ["corvid"]
  970. },
  971. "delphox": {
  972. name: "Delphox",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "moose": {
  976. name: "Moose",
  977. parents: ["mammal"]
  978. },
  979. "joraxian": {
  980. name: "Joraxian",
  981. parents: ["monster", "canine", "demon"]
  982. },
  983. "nimbat": {
  984. name: "Nimbat",
  985. parents: ["mammal"]
  986. },
  987. "aardwolf": {
  988. name: "Aardwolf",
  989. parents: ["canine"]
  990. },
  991. "fluudrani": {
  992. name: "Fluudrani",
  993. parents: ["animal"]
  994. },
  995. "arcanine": {
  996. name: "Arcanine",
  997. parents: ["pokemon", "dog"]
  998. },
  999. "inteleon": {
  1000. name: "Inteleon",
  1001. parents: ["pokemon", "fish"]
  1002. },
  1003. "ninetales": {
  1004. name: "Ninetales",
  1005. parents: ["pokemon", "kitsune"]
  1006. },
  1007. "tigrex": {
  1008. name: "Tigrex",
  1009. parents: ["tiger"]
  1010. },
  1011. "zorua": {
  1012. name: "Zorua",
  1013. parents: ["pokemon", "fox"]
  1014. },
  1015. "vulpix": {
  1016. name: "Vulpix",
  1017. parents: ["pokemon", "fox"]
  1018. },
  1019. "barghest": {
  1020. name: "Barghest",
  1021. parents: ["monster"]
  1022. },
  1023. "gray-wolf": {
  1024. name: "Gray Wolf",
  1025. parents: ["wolf"]
  1026. },
  1027. "ruppells-fox": {
  1028. name: "Rüppell's Fox",
  1029. parents: ["fox"]
  1030. },
  1031. "bull-terrier": {
  1032. name: "Bull Terrier",
  1033. parents: ["dog"]
  1034. },
  1035. "european-honey-buzzard": {
  1036. name: "European Honey Buzzard",
  1037. parents: ["avian"]
  1038. },
  1039. "t-rex": {
  1040. name: "Tyrannosaurus Rex",
  1041. parents: ["dinosaur"]
  1042. },
  1043. "mactarian": {
  1044. name: "Mactarian",
  1045. parents: ["shark", "monster"]
  1046. },
  1047. "mewtwo-y": {
  1048. name: "Mewtwo Y",
  1049. parents: ["mewtwo"]
  1050. },
  1051. "mewtwo": {
  1052. name: "Mewtwo",
  1053. parents: ["pokemon"]
  1054. },
  1055. "eevee": {
  1056. name: "Eevee",
  1057. parents: ["eeveelution"]
  1058. },
  1059. "mienshao": {
  1060. name: "Mienshao",
  1061. parents: ["pokemon"]
  1062. },
  1063. "sugar-glider": {
  1064. name: "Sugar Glider",
  1065. parents: ["opossum"]
  1066. },
  1067. "spectral-bat": {
  1068. name: "Spectral Bat",
  1069. parents: ["bat"]
  1070. },
  1071. "scolipede": {
  1072. name: "Scolipede",
  1073. parents: ["pokemon", "insect"]
  1074. },
  1075. "jackalope": {
  1076. name: "Jackalope",
  1077. parents: ["rabbit", "antelope"]
  1078. },
  1079. "caracal": {
  1080. name: "Caracal",
  1081. parents: ["cat"]
  1082. },
  1083. "stoat": {
  1084. name: "Stoat",
  1085. parents: ["mammal"]
  1086. },
  1087. "african-golden-cat": {
  1088. name: "African Golden Cat",
  1089. parents: ["cat"]
  1090. },
  1091. "gigantosaurus": {
  1092. name: "Gigantosaurus",
  1093. parents: ["dinosaur"]
  1094. },
  1095. "zorgoia": {
  1096. name: "Zorgoia",
  1097. parents: ["mammal"]
  1098. },
  1099. "monitor-lizard": {
  1100. name: "Monitor Lizard",
  1101. parents: ["lizard"]
  1102. },
  1103. "ziralkia": {
  1104. name: "Ziralkia",
  1105. parents: ["mammal"]
  1106. },
  1107. "kiiasi": {
  1108. name: "Kiiasi",
  1109. parents: ["animal"]
  1110. },
  1111. "synx": {
  1112. name: "Synx",
  1113. parents: ["monster"]
  1114. },
  1115. "panther": {
  1116. name: "Panther",
  1117. parents: ["cat"]
  1118. },
  1119. "azumarill": {
  1120. name: "Azumarill",
  1121. parents: ["pokemon"]
  1122. },
  1123. "river-snaptail": {
  1124. name: "River Snaptail",
  1125. parents: ["otter", "crocodile"]
  1126. },
  1127. "great-blue-heron": {
  1128. name: "Great Blue Heron",
  1129. parents: ["avian"]
  1130. },
  1131. "smeargle": {
  1132. name: "Smeargle",
  1133. parents: ["pokemon"]
  1134. },
  1135. "vendeilen": {
  1136. name: "Vendeilen",
  1137. parents: ["monster"]
  1138. },
  1139. "ventura": {
  1140. name: "Ventura",
  1141. parents: ["canine"]
  1142. },
  1143. "clouded-leopard": {
  1144. name: "Clouded Leopard",
  1145. parents: ["leopard"]
  1146. },
  1147. "argonian": {
  1148. name: "Argonian",
  1149. parents: ["lizard"]
  1150. },
  1151. "salazzle": {
  1152. name: "Salazzle",
  1153. parents: ["pokemon", "lizard"]
  1154. },
  1155. "je-stoff-drachen": {
  1156. name: "Je-Stoff Drachen",
  1157. parents: ["dragon"]
  1158. },
  1159. "finnish-spitz-dog": {
  1160. name: "Finnish Spitz Dog",
  1161. parents: ["dog"]
  1162. },
  1163. "gray-fox": {
  1164. name: "Gray Fox",
  1165. parents: ["fox"]
  1166. },
  1167. "opossum": {
  1168. name: "Opossum",
  1169. parents: ["mammal"]
  1170. },
  1171. "antelope": {
  1172. name: "Antelope",
  1173. parents: ["mammal"]
  1174. },
  1175. "weavile": {
  1176. name: "Weavile",
  1177. parents: ["pokemon"]
  1178. },
  1179. "pikachu": {
  1180. name: "Pikachu",
  1181. parents: ["pokemon", "mouse"]
  1182. },
  1183. "grovyle": {
  1184. name: "Grovyle",
  1185. parents: ["pokemon", "plant"]
  1186. },
  1187. "sthara": {
  1188. name: "Sthara",
  1189. parents: ["snow-leopard", "reptile"]
  1190. },
  1191. "star-warrior": {
  1192. name: "Star Warrior",
  1193. parents: ["magical"]
  1194. },
  1195. "dragonoid": {
  1196. name: "Dragonoid",
  1197. parents: ["dragon"]
  1198. },
  1199. "suicune": {
  1200. name: "Suicune",
  1201. parents: ["pokemon"]
  1202. },
  1203. "vole": {
  1204. name: "Vole",
  1205. parents: ["mammal"]
  1206. },
  1207. "blaziken": {
  1208. name: "Blaziken",
  1209. parents: ["pokemon", "avian"]
  1210. },
  1211. "buizel": {
  1212. name: "Buizel",
  1213. parents: ["pokemon", "fish"]
  1214. },
  1215. "floatzel": {
  1216. name: "Floatzel",
  1217. parents: ["pokemon", "fish"]
  1218. },
  1219. "umok": {
  1220. name: "Umok",
  1221. parents: ["avian"]
  1222. },
  1223. "sea-monster": {
  1224. name: "Sea Monster",
  1225. parents: ["monster", "fish"]
  1226. },
  1227. "egyptian-vulture": {
  1228. name: "Egyptian Vulture",
  1229. parents: ["avian"]
  1230. },
  1231. "doberman": {
  1232. name: "Doberman",
  1233. parents: ["dog"]
  1234. },
  1235. "zangoose": {
  1236. name: "Zangoose",
  1237. parents: ["pokemon", "mongoose"]
  1238. },
  1239. "mongoose": {
  1240. name: "Mongoose",
  1241. parents: ["mammal"]
  1242. },
  1243. "wickerbeast": {
  1244. name: "Wickerbeast",
  1245. parents: ["monster"]
  1246. },
  1247. "zenari": {
  1248. name: "Zenari",
  1249. parents: ["lizard"]
  1250. },
  1251. "plant": {
  1252. name: "Plant",
  1253. parents: []
  1254. },
  1255. "raskatox": {
  1256. name: "Raskatox",
  1257. parents: ["raccoon", "skunk", "cat", "fox"]
  1258. },
  1259. "mikromare": {
  1260. name: "mikromare",
  1261. parents: ["alien"]
  1262. },
  1263. "alien": {
  1264. name: "Alien",
  1265. parents: ["animal"]
  1266. },
  1267. "deity": {
  1268. name: "Deity",
  1269. parents: []
  1270. },
  1271. "skarlan": {
  1272. name: "Skarlan",
  1273. parents: ["slug", "dragon"]
  1274. },
  1275. "slug": {
  1276. name: "Slug",
  1277. parents: ["mollusk"]
  1278. },
  1279. "mollusk": {
  1280. name: "Mollusk",
  1281. parents: ["animal"]
  1282. },
  1283. "chimera": {
  1284. name: "Chimera",
  1285. parents: ["monster"]
  1286. },
  1287. "gestalt": {
  1288. name: "Gestalt",
  1289. parents: ["construct"]
  1290. },
  1291. "mimic": {
  1292. name: "Mimic",
  1293. parents: ["monster"]
  1294. },
  1295. "calico-rat": {
  1296. name: "Calico Rat",
  1297. parents: ["rat"]
  1298. },
  1299. "panda": {
  1300. name: "Panda",
  1301. parents: ["mammal"]
  1302. },
  1303. "oni": {
  1304. name: "Oni",
  1305. parents: ["monster"]
  1306. },
  1307. "pegasus": {
  1308. name: "Pegasus",
  1309. parents: ["horse"]
  1310. },
  1311. "vulpera": {
  1312. name: "Vulpera",
  1313. parents: ["fennec-fox"]
  1314. },
  1315. "ceratosaurus": {
  1316. name: "Ceratosaurus",
  1317. parents: ["dinosaur"]
  1318. },
  1319. "nykur": {
  1320. name: "Nykur",
  1321. parents: ["horse", "monster"]
  1322. },
  1323. "giraffe": {
  1324. name: "Giraffe",
  1325. parents: ["mammal"]
  1326. },
  1327. "tauren": {
  1328. name: "Tauren",
  1329. parents: ["cow"]
  1330. },
  1331. "draconi": {
  1332. name: "Draconi",
  1333. parents: ["alien", "cat", "cyborg"]
  1334. },
  1335. "dire-wolf": {
  1336. name: "Dire Wolf",
  1337. parents: ["wolf"]
  1338. },
  1339. "ferromorph": {
  1340. name: "Ferromorph",
  1341. parents: ["construct"]
  1342. },
  1343. "meowth": {
  1344. name: "Meowth",
  1345. parents: ["cat", "pokemon"]
  1346. },
  1347. "pavodragon": {
  1348. name: "Pavodragon",
  1349. parents: ["dragon"]
  1350. },
  1351. "aaltranae": {
  1352. name: "Aaltranae",
  1353. parents: ["dragon"]
  1354. },
  1355. "cyborg": {
  1356. name: "Cyborg",
  1357. parents: ["machine"]
  1358. },
  1359. "draptor": {
  1360. name: "Draptor",
  1361. parents: ["dragon"]
  1362. },
  1363. "candy": {
  1364. name: "Candy",
  1365. parents: []
  1366. },
  1367. "drenath": {
  1368. name: "Drenath",
  1369. parents: ["dragon", "snake", "rabbit"]
  1370. },
  1371. "coyju": {
  1372. name: "Coyju",
  1373. parents: ["coyote", "kaiju"]
  1374. },
  1375. "kaiju": {
  1376. name: "Kaiju",
  1377. parents: ["monster"]
  1378. },
  1379. "nickit": {
  1380. name: "Nickit",
  1381. parents: ["pokemon", "cat"]
  1382. },
  1383. "lopunny": {
  1384. name: "Lopunny",
  1385. parents: ["pokemon", "rabbit"]
  1386. },
  1387. "korean-jindo-dog": {
  1388. name: "Korean Jindo Dog",
  1389. parents: ["dog"]
  1390. },
  1391. "naga": {
  1392. name: "Naga",
  1393. parents: ["snake", "monster"]
  1394. },
  1395. "undead": {
  1396. name: "Undead",
  1397. parents: ["monster"]
  1398. },
  1399. "whale": {
  1400. name: "Whale",
  1401. parents: ["fish"]
  1402. },
  1403. "gelato-bee": {
  1404. name: "Gelato Bee",
  1405. parents: ["bee"]
  1406. },
  1407. "bee": {
  1408. name: "Bee",
  1409. parents: ["insect"]
  1410. },
  1411. "gardevoir": {
  1412. name: "Gardevoir",
  1413. parents: ["pokemon"]
  1414. },
  1415. "ant": {
  1416. name: "Ant",
  1417. parents: ["insect"]
  1418. },
  1419. "frog": {
  1420. name: "Frog",
  1421. parents: ["amphibian"]
  1422. },
  1423. "amphibian": {
  1424. name: "Amphibian",
  1425. parents: ["animal"]
  1426. },
  1427. "pangolin": {
  1428. name: "Pangolin",
  1429. parents: ["mammal"]
  1430. },
  1431. "uragi'viidorn": {
  1432. name: "Uragi'viidorn",
  1433. parents: ["avian", "bear"]
  1434. },
  1435. "gryphdelphais": {
  1436. name: "Gryphdelphais",
  1437. parents: ["dolphin", "gryphon"]
  1438. },
  1439. "plush": {
  1440. name: "Plush",
  1441. parents: ["construct"]
  1442. },
  1443. "draiger": {
  1444. name: "Draiger",
  1445. parents: ["dragon","tiger"]
  1446. },
  1447. "foxsky": {
  1448. name: "Foxsky",
  1449. parents: ["fox", "husky"]
  1450. },
  1451. "umbreon": {
  1452. name: "Umbreon",
  1453. parents: ["eeveelution"]
  1454. },
  1455. "slime-dragon": {
  1456. name: "Slime Dragon",
  1457. parents: ["dragon", "goo"]
  1458. },
  1459. "enderman": {
  1460. name: "Enderman",
  1461. parents: ["monster"]
  1462. },
  1463. "gremlin": {
  1464. name: "Gremlin",
  1465. parents: ["monster"]
  1466. },
  1467. "dragonsune": {
  1468. name: "Dragonsune",
  1469. parents: ["dragon", "kitsune"]
  1470. },
  1471. "ghost": {
  1472. name: "Ghost",
  1473. parents: ["supernatural"]
  1474. },
  1475. "false-vampire-bat": {
  1476. name: "False Vampire Bat",
  1477. parents: ["bat"]
  1478. },
  1479. "succubus": {
  1480. name: "Succubus",
  1481. parents: ["demon"]
  1482. },
  1483. "mia": {
  1484. name: "Mia",
  1485. parents: ["canine"]
  1486. },
  1487. "rainbow": {
  1488. name: "Rainbow",
  1489. parents: ["monster"]
  1490. },
  1491. "solgaleo": {
  1492. name: "Solgaleo",
  1493. parents: ["pokemon"]
  1494. },
  1495. "lucent-nargacuga": {
  1496. name: "Lucent Nargacuga",
  1497. parents: ["nargacuga"]
  1498. },
  1499. "monster-hunter": {
  1500. name: "Monster Hunter",
  1501. parents: ["monster"]
  1502. },
  1503. "leviathan": {
  1504. "name": "Leviathan",
  1505. "url": "sea-monster"
  1506. },
  1507. "bull": {
  1508. name: "Bull",
  1509. parents: ["mammal"]
  1510. },
  1511. "tanuki": {
  1512. name: "Tanuki",
  1513. parents: ["monster"]
  1514. },
  1515. "chakat": {
  1516. name: "Chakat",
  1517. parents: ["cat"]
  1518. },
  1519. "hydra": {
  1520. name: "Hydra",
  1521. parents: ["monster"]
  1522. },
  1523. "zigzagoon": {
  1524. name: "Zigzagoon",
  1525. parents: ["raccoon", "pokemon"]
  1526. },
  1527. "vulture": {
  1528. name: "Vulture",
  1529. parents: ["avian"]
  1530. },
  1531. "eastern-dragon": {
  1532. name: "Eastern Dragon",
  1533. parents: ["dragon"]
  1534. },
  1535. "gryffon": {
  1536. name: "Gryffon",
  1537. parents: ["phoenix", "red-panda"]
  1538. },
  1539. "amtsvane": {
  1540. name: "Amtsvane",
  1541. parents: ["reptile"]
  1542. },
  1543. "kigavi": {
  1544. name: "Kigavi",
  1545. parents: ["avian"]
  1546. },
  1547. "turian": {
  1548. name: "Turian",
  1549. parents: ["avian"]
  1550. },
  1551. "zeraora": {
  1552. name: "Zeraora",
  1553. parents: ["pokemon", "cat"]
  1554. },
  1555. "sandshrew": {
  1556. name: "Sandshrew",
  1557. parents: ["pokemon", "pangolin"]
  1558. },
  1559. "valais-blacknose-sheep": {
  1560. name: "Valais Blacknose Sheep",
  1561. parents: ["sheep"]
  1562. },
  1563. "novaleit": {
  1564. name: "Novaleit",
  1565. parents: ["mammal"]
  1566. },
  1567. "dunnoh": {
  1568. name: "Dunnoh",
  1569. parents: ["mammal"]
  1570. },
  1571. "lunaral-dragon": {
  1572. name: "Lunaral Dragon",
  1573. parents: ["dragon"]
  1574. },
  1575. "arctic-wolf": {
  1576. name: "Arctic Wolf",
  1577. parents: ["wolf"]
  1578. },
  1579. "donkey": {
  1580. name: "Donkey",
  1581. parents: ["horse"]
  1582. },
  1583. "chinchilla": {
  1584. name: "Chinchilla",
  1585. parents: ["rodent"]
  1586. },
  1587. "felkin": {
  1588. name: "Felkin",
  1589. parents: ["dragon"]
  1590. },
  1591. "tykeriel": {
  1592. name: "Tykeriel",
  1593. parents: ["avian"]
  1594. },
  1595. "folf": {
  1596. name: "Folf",
  1597. parents: ["fox", "wolf"]
  1598. },
  1599. "pooltoy": {
  1600. name: "Pooltoy",
  1601. parents: ["construct"]
  1602. },
  1603. "demi": {
  1604. name: "Demi",
  1605. parents: ["human"]
  1606. },
  1607. "stegosaurus": {
  1608. name: "Stegosaurus",
  1609. parents: ["dinosaur"]
  1610. },
  1611. "computer-virus": {
  1612. name: "Computer Virus",
  1613. parents: ["program"]
  1614. },
  1615. "program": {
  1616. name: "Program",
  1617. parents: ["construct"]
  1618. },
  1619. "space-springhare": {
  1620. name: "Space Springhare",
  1621. parents: ["hare"]
  1622. },
  1623. "river-drake": {
  1624. name: "River Drake",
  1625. parents: ["dragon"]
  1626. },
  1627. "djinn": {
  1628. "name": "Djinn",
  1629. "url": "supernatural"
  1630. },
  1631. "supernatural": {
  1632. name: "Supernatural",
  1633. parents: ["monster"]
  1634. },
  1635. "grasshopper-mouse": {
  1636. name: "Grasshopper Mouse",
  1637. parents: ["mouse"]
  1638. },
  1639. "somali-cat": {
  1640. name: "Somali Cat",
  1641. parents: ["cat"]
  1642. },
  1643. "minccino": {
  1644. name: "Minccino",
  1645. parents: ["pokemon", "chinchilla"]
  1646. },
  1647. "pine-marten": {
  1648. name: "Pine Marten",
  1649. parents: ["marten"]
  1650. },
  1651. "marten": {
  1652. name: "Marten",
  1653. parents: ["mustelid"]
  1654. },
  1655. "mustelid": {
  1656. name: "Mustelid",
  1657. parents: ["mammal"]
  1658. },
  1659. "caribou": {
  1660. name: "Caribou",
  1661. parents: ["deer"]
  1662. },
  1663. "gnoll": {
  1664. name: "Gnoll",
  1665. parents: ["hyena", "monster"]
  1666. },
  1667. "peacekeeper": {
  1668. name: "Peacekeeper",
  1669. parents: ["human"]
  1670. },
  1671. "river-otter": {
  1672. name: "River Otter",
  1673. parents: ["otter"]
  1674. },
  1675. "dhole": {
  1676. name: "Dhole",
  1677. parents: ["canine"]
  1678. },
  1679. "springbok": {
  1680. name: "Springbok",
  1681. parents: ["antelope"]
  1682. },
  1683. "marsupial": {
  1684. name: "Marsupial",
  1685. parents: ["mammal"]
  1686. },
  1687. "townsend-big-eared-bat": {
  1688. name: "Townsend Big-eared Bat",
  1689. parents: ["bat"]
  1690. },
  1691. "squirrel": {
  1692. name: "Squirrel",
  1693. parents: ["rodent"]
  1694. },
  1695. "magpie": {
  1696. name: "Magpie",
  1697. parents: ["corvid"]
  1698. },
  1699. "civet": {
  1700. name: "Civet",
  1701. parents: ["feliform"]
  1702. },
  1703. "feliform": {
  1704. name: "Feliform",
  1705. parents: ["mammal"]
  1706. },
  1707. "tiefling": {
  1708. name: "Tiefling",
  1709. parents: ["devil"]
  1710. },
  1711. "devil": {
  1712. name: "Devil",
  1713. parents: ["supernatural"]
  1714. },
  1715. "sika-deer": {
  1716. name: "Sika Deer",
  1717. parents: ["deer"]
  1718. },
  1719. "vaporeon": {
  1720. name: "Vaporeon",
  1721. parents: ["eeveelution"]
  1722. },
  1723. "leafeon": {
  1724. name: "Leafeon",
  1725. parents: ["eeveelution"]
  1726. },
  1727. "jolteon": {
  1728. name: "Jolteon",
  1729. parents: ["eeveelution"]
  1730. },
  1731. "spireborn": {
  1732. name: "Spireborn",
  1733. parents: ["zorgoia"]
  1734. },
  1735. "vampire": {
  1736. name: "Vampire",
  1737. parents: ["monster"]
  1738. },
  1739. "extraplanar": {
  1740. name: "Extraplanar",
  1741. parents: []
  1742. },
  1743. "goo": {
  1744. name: "Goo",
  1745. parents: []
  1746. },
  1747. "skink": {
  1748. name: "Skink",
  1749. parents: ["lizard"]
  1750. },
  1751. "bat-eared-fox": {
  1752. name: "Bat-eared Fox",
  1753. parents: ["fox"]
  1754. },
  1755. "belted-kingfisher": {
  1756. name: "Belted Kingfisher",
  1757. parents: ["avian"]
  1758. },
  1759. "omnifalcon": {
  1760. name: "Omnifalcon",
  1761. parents: ["gryphon", "falcon", "harpy-eagle"]
  1762. },
  1763. "falcon": {
  1764. name: "Falcon",
  1765. parents: ["bird-of-prey"]
  1766. },
  1767. "avali": {
  1768. name: "Avali",
  1769. parents: ["avian", "alien"]
  1770. },
  1771. "arctic-fox": {
  1772. name: "Arctic Fox",
  1773. parents: ["fox"]
  1774. },
  1775. "snow-tiger": {
  1776. name: "Snow Tiger",
  1777. parents: ["tiger"]
  1778. },
  1779. "marble-fox": {
  1780. name: "Marble Fox",
  1781. parents: ["fox"]
  1782. },
  1783. "king-wickerbeast": {
  1784. name: "King Wickerbeast",
  1785. parents: ["wickerbeast"]
  1786. },
  1787. "wickerbeast": {
  1788. name: "Wickerbeast",
  1789. parents: ["mammal"]
  1790. },
  1791. "european-polecat": {
  1792. name: "European Polecat",
  1793. parents: ["mustelid"]
  1794. },
  1795. "teshari": {
  1796. name: "Teshari",
  1797. parents: ["avian", "raptor"]
  1798. },
  1799. "alicorn": {
  1800. name: "Alicorn",
  1801. parents: ["horse"]
  1802. },
  1803. "atlas-moth": {
  1804. name: "Atlas Moth",
  1805. parents: ["moth"]
  1806. },
  1807. "owlbear": {
  1808. name: "Owlbear",
  1809. parents: ["owl", "bear", "monster"]
  1810. },
  1811. "owl": {
  1812. name: "Owl",
  1813. parents: ["avian"]
  1814. },
  1815. "silvertongue": {
  1816. name: "Silvertongue",
  1817. parents: ["reptile"]
  1818. },
  1819. "ahuizotl": {
  1820. name: "Ahuizotl",
  1821. parents: ["monster"]
  1822. },
  1823. "ender-dragon": {
  1824. name: "Ender Dragon",
  1825. parents: ["dragon"]
  1826. },
  1827. "bruhathkayosaurus": {
  1828. name: "Bruhathkayosaurus",
  1829. parents: ["sauropod"]
  1830. },
  1831. "sauropod": {
  1832. name: "Sauropod",
  1833. parents: ["dinosaur"]
  1834. },
  1835. "black-sable-antelope": {
  1836. name: "Black Sable Antelope",
  1837. parents: ["antelope"]
  1838. },
  1839. "slime": {
  1840. name: "Slime",
  1841. parents: ["goo"]
  1842. },
  1843. "utahraptor": {
  1844. name: "Utahraptor",
  1845. parents: ["raptor"]
  1846. },
  1847. "indian-giant-squirrel": {
  1848. name: "Indian Giant Squirrel",
  1849. parents: ["squirrel"]
  1850. },
  1851. "golden-retriever": {
  1852. name: "Golden Retriever",
  1853. parents: ["dog"]
  1854. },
  1855. "triceratops": {
  1856. name: "Triceratops",
  1857. parents: ["dinosaur"]
  1858. },
  1859. "drake": {
  1860. name: "Drake",
  1861. parents: ["dragon"]
  1862. },
  1863. "okapi": {
  1864. name: "Okapi",
  1865. parents: ["giraffe"]
  1866. },
  1867. "arctic-hare": {
  1868. name: "Arctic Hare",
  1869. parents: ["hare"]
  1870. },
  1871. "hare": {
  1872. name: "Hare",
  1873. parents: ["leporidae"]
  1874. },
  1875. "leporidae": {
  1876. name: "Leporidae",
  1877. parents: ["mammal"]
  1878. },
  1879. "leopard-gecko": {
  1880. name: "Leopard Gecko",
  1881. parents: ["gecko"]
  1882. },
  1883. "dreamspawn": {
  1884. name: "Dreamspawn",
  1885. parents: ["illusion"]
  1886. },
  1887. "illusion": {
  1888. name: "Illusion",
  1889. parents: []
  1890. },
  1891. "purrloin": {
  1892. name: "Purrloin",
  1893. parents: ["cat", "pokemon"]
  1894. },
  1895. "noivern": {
  1896. name: "Noivern",
  1897. parents: ["bat", "dragon", "pokemon"]
  1898. },
  1899. "hedgehog": {
  1900. name: "Hedgehog",
  1901. parents: ["mammal"]
  1902. },
  1903. "liger": {
  1904. name: "Liger",
  1905. parents: ["lion", "tiger", "hybrid"]
  1906. },
  1907. "hybrid": {
  1908. name: "Hybrid",
  1909. parents: []
  1910. },
  1911. "drider": {
  1912. name: "Drider",
  1913. parents: ["spider"]
  1914. },
  1915. "sabresune": {
  1916. name: "Sabresune",
  1917. parents: ["kitsune", "sabertooth-tiger"]
  1918. },
  1919. "ditto": {
  1920. name: "Ditto",
  1921. parents: ["pokemon", "goo"]
  1922. },
  1923. "amogus": {
  1924. name: "Amogus",
  1925. parents: ["deity"]
  1926. },
  1927. "ferret": {
  1928. name: "Ferret",
  1929. parents: ["mustelid"]
  1930. },
  1931. "guinea-pig": {
  1932. name: "Guinea Pig",
  1933. parents: ["rodent"]
  1934. },
  1935. "viper": {
  1936. name: "Viper",
  1937. parents: ["snake"]
  1938. },
  1939. "cinderace": {
  1940. name: "Cinderace",
  1941. parents: ["pokemon", "rabbit"]
  1942. },
  1943. "caudin": {
  1944. name: "Caudin",
  1945. parents: ["dragon"]
  1946. },
  1947. "red-winged-blackbird": {
  1948. name: "Red-Winged Blackbird",
  1949. parents: ["avian"]
  1950. },
  1951. "hooded-wheater": {
  1952. name: "Hooded Wheater",
  1953. parents: ["passerine"]
  1954. },
  1955. "passerine": {
  1956. name: "Passerine",
  1957. parents: ["avian"]
  1958. },
  1959. "gieeg": {
  1960. name: "Gieeg",
  1961. parents: ["alien"]
  1962. },
  1963. "ringtail": {
  1964. name: "Ringtail",
  1965. parents: ["raccoon"]
  1966. },
  1967. "hisuian-zoroark": {
  1968. name: "Hisuian Zoroark",
  1969. parents: ["zoroark", "hisuian"]
  1970. },
  1971. "hisuian": {
  1972. name: "Hisuian",
  1973. parents: ["regional-pokemon"]
  1974. },
  1975. "regional-pokemon": {
  1976. name: "Regional Pokemon",
  1977. parents: ["pokemon"]
  1978. },
  1979. "cybeast": {
  1980. name: "Cybeast",
  1981. parents: ["computer-virus"]
  1982. },
  1983. "javira-dragon": {
  1984. name: "Javira Dragon",
  1985. parents: ["dragon"]
  1986. },
  1987. "koopew": {
  1988. name: "Koopew",
  1989. parents: ["dragon", "alien"]
  1990. },
  1991. "nevrean": {
  1992. name: "Nevrean",
  1993. parents: ["avian", "vilous"]
  1994. },
  1995. "vilous": {
  1996. name: "Vilous Species",
  1997. parents: []
  1998. },
  1999. "titanoboa": {
  2000. name: "Titanoboa",
  2001. parents: ["snake"]
  2002. },
  2003. "raichu": {
  2004. name: "Raichu",
  2005. parents: ["pikachu"]
  2006. },
  2007. "taur": {
  2008. name: "Taur",
  2009. parents: []
  2010. },
  2011. "continental-giant-rabbit": {
  2012. name: "Continental Giant Rabbit",
  2013. parents: ["rabbit"]
  2014. },
  2015. "demigryph": {
  2016. name: "Demigryph",
  2017. parents: ["lion", "eagle"]
  2018. },
  2019. "bald-eagle": {
  2020. name: "Bald Eagle",
  2021. parents: ["eagle"]
  2022. },
  2023. "kestrel": {
  2024. name: "Kestrel",
  2025. parents: ["falcon"]
  2026. },
  2027. "mockingbird": {
  2028. name: "Mockingbird",
  2029. parents: ["songbird"]
  2030. },
  2031. "songbird": {
  2032. name: "Songbird",
  2033. parents: ["avian"]
  2034. },
  2035. "bird-of-prey": {
  2036. name: "Bird of Prey",
  2037. parents: ["avian"]
  2038. },
  2039. "marowak": {
  2040. name: "Marowak",
  2041. parents: ["pokemon", "reptile"]
  2042. },
  2043. "joltik": {
  2044. name: "Joltik",
  2045. parents: ["pokemon", "insect"]
  2046. },
  2047. "mink": {
  2048. name: "Mink",
  2049. parents: ["mustelid"]
  2050. },
  2051. "sandcat": {
  2052. name: "Sandcat",
  2053. parents: ["cat"]
  2054. },
  2055. "hrothgar": {
  2056. name: "Hrothgar",
  2057. parents: ["cat"]
  2058. },
  2059. "garchomp": {
  2060. name: "Garchomp",
  2061. parents: ["dragon", "pokemon"]
  2062. },
  2063. "nargacuga": {
  2064. name: "Nargacuga",
  2065. parents: ["monster-hunter"]
  2066. },
  2067. "sable": {
  2068. name: "Sable",
  2069. parents: ["marten"]
  2070. },
  2071. "deino": {
  2072. name: "Deino",
  2073. parents: ["pokemon", "dinosaur"]
  2074. },
  2075. "housecat": {
  2076. name: "Housecat",
  2077. parents: ["cat"]
  2078. },
  2079. "bombay-cat": {
  2080. name: "Bombay Cat",
  2081. parents: ["housecat"]
  2082. },
  2083. "maine-coon": {
  2084. name: "Maine Coon",
  2085. parents: ["housecat"]
  2086. },
  2087. "coelacanth": {
  2088. name: "Coelacanth",
  2089. parents: ["fish"]
  2090. },
  2091. "silvally": {
  2092. name: "Silvally",
  2093. parents: ["legendary-pokemon"]
  2094. },
  2095. "legendary-pokemon": {
  2096. name: "Legendary Pokemon",
  2097. parents: ["pokemon"]
  2098. },
  2099. "great-maccao": {
  2100. name: "Great Maccao",
  2101. parents: ["monster-hunter", "raptor"]
  2102. },
  2103. "shapeshifter": {
  2104. name: "shapeshifter",
  2105. parents: []
  2106. },
  2107. "obstagoon": {
  2108. name: "Obstagoon",
  2109. parents: ["zigzagoon"]
  2110. },
  2111. "thomsons-gazelle": {
  2112. name: "Thomsons Gazelle",
  2113. parents: ["gazelle"]
  2114. },
  2115. "gazelle": {
  2116. name: "Gazelle",
  2117. parents: ["antelope"]
  2118. },
  2119. "monkey": {
  2120. name: "Monkey",
  2121. parents: ["mammal"]
  2122. },
  2123. "serval": {
  2124. name: "Serval",
  2125. parents: ["cat"]
  2126. },
  2127. "swampert": {
  2128. name: "Swampert",
  2129. parents: ["pokemon"]
  2130. },
  2131. "red-fox": {
  2132. name: "Red Fox",
  2133. parents: ["fox"]
  2134. },
  2135. "sliver": {
  2136. name: "Sliver",
  2137. parents: ["alien"]
  2138. },
  2139. }
  2140. //species
  2141. function getSpeciesInfo(speciesList) {
  2142. let result = new Set();
  2143. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2144. result.add(entry)
  2145. });
  2146. return Array.from(result);
  2147. };
  2148. function getSpeciesInfoHelper(species) {
  2149. if (!speciesData[species]) {
  2150. console.warn(species + " doesn't exist");
  2151. return [];
  2152. }
  2153. if (speciesData[species].parents) {
  2154. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2155. } else {
  2156. return [species];
  2157. }
  2158. }
  2159. characterMakers.push(() => makeCharacter(
  2160. {
  2161. name: "Fen",
  2162. species: ["crux"],
  2163. description: {
  2164. title: "Bio",
  2165. text: "Very furry. Sheds on everything."
  2166. },
  2167. tags: [
  2168. "anthro",
  2169. "goo"
  2170. ]
  2171. },
  2172. {
  2173. front: {
  2174. height: math.unit(12, "feet"),
  2175. weight: math.unit(2400, "lb"),
  2176. preyCapacity: math.unit(1, "people"),
  2177. name: "Front",
  2178. image: {
  2179. source: "./media/characters/fen/front.svg",
  2180. extra: 1804/1562,
  2181. bottom: 205/2009
  2182. },
  2183. extraAttributes: {
  2184. pawSize: {
  2185. name: "Paw Size",
  2186. power: 2,
  2187. type: "area",
  2188. base: math.unit(0.35, "m^2")
  2189. }
  2190. }
  2191. },
  2192. diving: {
  2193. height: math.unit(4.9, "meters"),
  2194. weight: math.unit(2400, "lb"),
  2195. name: "Diving",
  2196. image: {
  2197. source: "./media/characters/fen/diving.svg"
  2198. }
  2199. },
  2200. sleeby: {
  2201. height: math.unit(3.45, "meters"),
  2202. weight: math.unit(2400, "lb"),
  2203. name: "Sleeby",
  2204. image: {
  2205. source: "./media/characters/fen/sleeby.svg"
  2206. }
  2207. },
  2208. goo: {
  2209. height: math.unit(12, "feet"),
  2210. weight: math.unit(3600, "lb"),
  2211. volume: math.unit(1000, "liters"),
  2212. preyCapacity: math.unit(6, "people"),
  2213. name: "Goo",
  2214. image: {
  2215. source: "./media/characters/fen/goo.svg",
  2216. extra: 1307/1071,
  2217. bottom: 134/1441
  2218. }
  2219. },
  2220. gooNsfw: {
  2221. height: math.unit(12, "feet"),
  2222. weight: math.unit(3750, "lb"),
  2223. volume: math.unit(1000, "liters"),
  2224. preyCapacity: math.unit(6, "people"),
  2225. name: "Goo (NSFW)",
  2226. image: {
  2227. source: "./media/characters/fen/goo-nsfw.svg",
  2228. extra: 1875/1734,
  2229. bottom: 122/1997
  2230. }
  2231. },
  2232. maw: {
  2233. height: math.unit(5.03, "feet"),
  2234. name: "Maw",
  2235. image: {
  2236. source: "./media/characters/fen/maw.svg"
  2237. }
  2238. },
  2239. gooCeiling: {
  2240. height: math.unit(6.6, "feet"),
  2241. weight: math.unit(3000, "lb"),
  2242. volume: math.unit(1000, "liters"),
  2243. preyCapacity: math.unit(6, "people"),
  2244. name: "Goo (Ceiling)",
  2245. image: {
  2246. source: "./media/characters/fen/goo-ceiling.svg"
  2247. }
  2248. },
  2249. paw: {
  2250. height: math.unit(3.77, "feet"),
  2251. name: "Paw",
  2252. image: {
  2253. source: "./media/characters/fen/paw.svg"
  2254. },
  2255. extraAttributes: {
  2256. "toeSize": {
  2257. name: "Toe Size",
  2258. power: 2,
  2259. type: "area",
  2260. base: math.unit(0.02875, "m^2")
  2261. },
  2262. "pawSize": {
  2263. name: "Paw Size",
  2264. power: 2,
  2265. type: "area",
  2266. base: math.unit(0.378, "m^2")
  2267. },
  2268. }
  2269. },
  2270. tail: {
  2271. height: math.unit(12.1, "feet"),
  2272. name: "Tail",
  2273. image: {
  2274. source: "./media/characters/fen/tail.svg"
  2275. }
  2276. },
  2277. tailFull: {
  2278. height: math.unit(12.1, "feet"),
  2279. name: "Full Tail",
  2280. image: {
  2281. source: "./media/characters/fen/tail-full.svg"
  2282. }
  2283. },
  2284. back: {
  2285. height: math.unit(12, "feet"),
  2286. weight: math.unit(2400, "lb"),
  2287. name: "Back",
  2288. image: {
  2289. source: "./media/characters/fen/back.svg",
  2290. },
  2291. info: {
  2292. description: {
  2293. mode: "append",
  2294. text: "\n\nHe is not currently looking at you."
  2295. }
  2296. }
  2297. },
  2298. full: {
  2299. height: math.unit(1.85, "meter"),
  2300. weight: math.unit(3200, "lb"),
  2301. name: "Full",
  2302. image: {
  2303. source: "./media/characters/fen/full.svg",
  2304. extra: 1133/859,
  2305. bottom: 145/1278
  2306. },
  2307. info: {
  2308. description: {
  2309. mode: "append",
  2310. text: "\n\nMunch."
  2311. }
  2312. }
  2313. },
  2314. gooLounging: {
  2315. height: math.unit(4.53, "feet"),
  2316. weight: math.unit(3000, "lb"),
  2317. preyCapacity: math.unit(6, "people"),
  2318. name: "Goo (Lounging)",
  2319. image: {
  2320. source: "./media/characters/fen/goo-lounging.svg",
  2321. bottom: 116 / 613
  2322. }
  2323. },
  2324. lounging: {
  2325. height: math.unit(10.52, "feet"),
  2326. weight: math.unit(2400, "lb"),
  2327. name: "Lounging",
  2328. image: {
  2329. source: "./media/characters/fen/lounging.svg"
  2330. }
  2331. },
  2332. },
  2333. [
  2334. {
  2335. name: "Small",
  2336. height: math.unit(2.2428, "meter")
  2337. },
  2338. {
  2339. name: "Normal",
  2340. height: math.unit(12, "feet"),
  2341. default: true,
  2342. },
  2343. {
  2344. name: "Big",
  2345. height: math.unit(20, "feet")
  2346. },
  2347. {
  2348. name: "Minimacro",
  2349. height: math.unit(40, "feet"),
  2350. info: {
  2351. description: {
  2352. mode: "append",
  2353. text: "\n\nTOO DAMN BIG"
  2354. }
  2355. }
  2356. },
  2357. {
  2358. name: "Macro",
  2359. height: math.unit(100, "feet"),
  2360. info: {
  2361. description: {
  2362. mode: "append",
  2363. text: "\n\nTOO DAMN BIG"
  2364. }
  2365. }
  2366. },
  2367. {
  2368. name: "Megamacro",
  2369. height: math.unit(2, "miles")
  2370. },
  2371. {
  2372. name: "Gigamacro",
  2373. height: math.unit(10, "earths")
  2374. },
  2375. ]
  2376. ))
  2377. characterMakers.push(() => makeCharacter(
  2378. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2379. {
  2380. front: {
  2381. height: math.unit(183, "cm"),
  2382. weight: math.unit(80, "kg"),
  2383. name: "Front",
  2384. image: {
  2385. source: "./media/characters/sofia-fluttertail/front.svg",
  2386. bottom: 0.01,
  2387. extra: 2154 / 2081
  2388. }
  2389. },
  2390. frontAlt: {
  2391. height: math.unit(183, "cm"),
  2392. weight: math.unit(80, "kg"),
  2393. name: "Front (alt)",
  2394. image: {
  2395. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2396. }
  2397. },
  2398. back: {
  2399. height: math.unit(183, "cm"),
  2400. weight: math.unit(80, "kg"),
  2401. name: "Back",
  2402. image: {
  2403. source: "./media/characters/sofia-fluttertail/back.svg"
  2404. }
  2405. },
  2406. kneeling: {
  2407. height: math.unit(125, "cm"),
  2408. weight: math.unit(80, "kg"),
  2409. name: "Kneeling",
  2410. image: {
  2411. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2412. extra: 1033 / 977,
  2413. bottom: 23.7 / 1057
  2414. }
  2415. },
  2416. maw: {
  2417. height: math.unit(183 / 5, "cm"),
  2418. name: "Maw",
  2419. image: {
  2420. source: "./media/characters/sofia-fluttertail/maw.svg"
  2421. }
  2422. },
  2423. mawcloseup: {
  2424. height: math.unit(183 / 5 * 0.41, "cm"),
  2425. name: "Maw (Closeup)",
  2426. image: {
  2427. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2428. }
  2429. },
  2430. paws: {
  2431. height: math.unit(1.17, "feet"),
  2432. name: "Paws",
  2433. image: {
  2434. source: "./media/characters/sofia-fluttertail/paws.svg",
  2435. extra: 851 / 851,
  2436. bottom: 17 / 868
  2437. }
  2438. },
  2439. },
  2440. [
  2441. {
  2442. name: "Normal",
  2443. height: math.unit(1.83, "meter")
  2444. },
  2445. {
  2446. name: "Size Thief",
  2447. height: math.unit(18, "feet")
  2448. },
  2449. {
  2450. name: "50 Foot Collie",
  2451. height: math.unit(50, "feet")
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(96, "feet"),
  2456. default: true
  2457. },
  2458. {
  2459. name: "Megamerger",
  2460. height: math.unit(650, "feet")
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(7, "feet"),
  2469. weight: math.unit(100, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/march/front.svg",
  2473. extra: 1992/1851,
  2474. bottom: 39/2031
  2475. }
  2476. },
  2477. foot: {
  2478. height: math.unit(0.9, "feet"),
  2479. name: "Foot",
  2480. image: {
  2481. source: "./media/characters/march/foot.svg"
  2482. }
  2483. },
  2484. },
  2485. [
  2486. {
  2487. name: "Normal",
  2488. height: math.unit(7.9, "feet")
  2489. },
  2490. {
  2491. name: "Macro",
  2492. height: math.unit(220, "meters")
  2493. },
  2494. {
  2495. name: "Megamacro",
  2496. height: math.unit(2.98, "km"),
  2497. default: true
  2498. },
  2499. {
  2500. name: "Gigamacro",
  2501. height: math.unit(15963, "km")
  2502. },
  2503. {
  2504. name: "Teramacro",
  2505. height: math.unit(2980000000, "km")
  2506. },
  2507. {
  2508. name: "Examacro",
  2509. height: math.unit(250, "parsecs")
  2510. },
  2511. ]
  2512. ))
  2513. characterMakers.push(() => makeCharacter(
  2514. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2515. {
  2516. front: {
  2517. height: math.unit(6, "feet"),
  2518. weight: math.unit(60, "kg"),
  2519. name: "Front",
  2520. image: {
  2521. source: "./media/characters/noir/front.svg",
  2522. extra: 1,
  2523. bottom: 0.032
  2524. }
  2525. },
  2526. },
  2527. [
  2528. {
  2529. name: "Normal",
  2530. height: math.unit(6.6, "feet")
  2531. },
  2532. {
  2533. name: "Macro",
  2534. height: math.unit(500, "feet")
  2535. },
  2536. {
  2537. name: "Megamacro",
  2538. height: math.unit(2.5, "km"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Gigamacro",
  2543. height: math.unit(22500, "km")
  2544. },
  2545. {
  2546. name: "Teramacro",
  2547. height: math.unit(2500000000, "km")
  2548. },
  2549. {
  2550. name: "Examacro",
  2551. height: math.unit(200, "parsecs")
  2552. },
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(7, "feet"),
  2560. weight: math.unit(100, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/okuri/front.svg",
  2564. extra: 739/665,
  2565. bottom: 39/778
  2566. }
  2567. },
  2568. back: {
  2569. height: math.unit(7, "feet"),
  2570. weight: math.unit(100, "kg"),
  2571. name: "Back",
  2572. image: {
  2573. source: "./media/characters/okuri/back.svg",
  2574. extra: 734/653,
  2575. bottom: 13/747
  2576. }
  2577. },
  2578. sitting: {
  2579. height: math.unit(2.95, "feet"),
  2580. weight: math.unit(100, "kg"),
  2581. name: "Sitting",
  2582. image: {
  2583. source: "./media/characters/okuri/sitting.svg",
  2584. extra: 370/318,
  2585. bottom: 99/469
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Smallest",
  2592. height: math.unit(5 + 2/12, "feet")
  2593. },
  2594. {
  2595. name: "Smaller",
  2596. height: math.unit(300, "feet")
  2597. },
  2598. {
  2599. name: "Small",
  2600. height: math.unit(1000, "feet")
  2601. },
  2602. {
  2603. name: "Macro",
  2604. height: math.unit(1, "mile")
  2605. },
  2606. {
  2607. name: "Mega Macro (Small)",
  2608. height: math.unit(20, "km")
  2609. },
  2610. {
  2611. name: "Mega Macro (Large)",
  2612. height: math.unit(600, "km")
  2613. },
  2614. {
  2615. name: "Giga Macro",
  2616. height: math.unit(10000, "km")
  2617. },
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(577560, "km"),
  2621. default: true
  2622. },
  2623. {
  2624. name: "Large",
  2625. height: math.unit(4, "galaxies")
  2626. },
  2627. {
  2628. name: "Largest",
  2629. height: math.unit(15, "multiverses")
  2630. },
  2631. ]
  2632. ))
  2633. characterMakers.push(() => makeCharacter(
  2634. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2635. {
  2636. front: {
  2637. height: math.unit(7, "feet"),
  2638. weight: math.unit(100, "kg"),
  2639. name: "Front",
  2640. image: {
  2641. source: "./media/characters/manny/front.svg",
  2642. extra: 1,
  2643. bottom: 0.06
  2644. }
  2645. },
  2646. back: {
  2647. height: math.unit(7, "feet"),
  2648. weight: math.unit(100, "kg"),
  2649. name: "Back",
  2650. image: {
  2651. source: "./media/characters/manny/back.svg",
  2652. extra: 1,
  2653. bottom: 0.014
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Normal",
  2660. height: math.unit(7, "feet"),
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(78, "feet"),
  2665. default: true
  2666. },
  2667. {
  2668. name: "Macro+",
  2669. height: math.unit(300, "meters")
  2670. },
  2671. {
  2672. name: "Macro++",
  2673. height: math.unit(2400, "meters")
  2674. },
  2675. {
  2676. name: "Megamacro",
  2677. height: math.unit(5167, "meters")
  2678. },
  2679. {
  2680. name: "Gigamacro",
  2681. height: math.unit(41769, "miles")
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(7, "feet"),
  2690. weight: math.unit(100, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/adake/front-1.svg"
  2694. }
  2695. },
  2696. frontAlt: {
  2697. height: math.unit(7, "feet"),
  2698. weight: math.unit(100, "kg"),
  2699. name: "Front (Alt)",
  2700. image: {
  2701. source: "./media/characters/adake/front-2.svg",
  2702. extra: 1,
  2703. bottom: 0.01
  2704. }
  2705. },
  2706. back: {
  2707. height: math.unit(7, "feet"),
  2708. weight: math.unit(100, "kg"),
  2709. name: "Back",
  2710. image: {
  2711. source: "./media/characters/adake/back.svg",
  2712. }
  2713. },
  2714. kneel: {
  2715. height: math.unit(5.385, "feet"),
  2716. weight: math.unit(100, "kg"),
  2717. name: "Kneeling",
  2718. image: {
  2719. source: "./media/characters/adake/kneel.svg",
  2720. bottom: 0.052
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(7, "feet"),
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(78, "feet"),
  2732. default: true
  2733. },
  2734. {
  2735. name: "Macro+",
  2736. height: math.unit(300, "meters")
  2737. },
  2738. {
  2739. name: "Macro++",
  2740. height: math.unit(2400, "meters")
  2741. },
  2742. {
  2743. name: "Megamacro",
  2744. height: math.unit(5167, "meters")
  2745. },
  2746. {
  2747. name: "Gigamacro",
  2748. height: math.unit(41769, "miles")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(1.65, "meters"),
  2757. weight: math.unit(50, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/elijah/front.svg",
  2761. extra: 858 / 830,
  2762. bottom: 95.5 / 953.8559
  2763. }
  2764. },
  2765. back: {
  2766. height: math.unit(1.65, "meters"),
  2767. weight: math.unit(50, "kg"),
  2768. name: "Back",
  2769. image: {
  2770. source: "./media/characters/elijah/back.svg",
  2771. extra: 895 / 850,
  2772. bottom: 5.3 / 897.956
  2773. }
  2774. },
  2775. frontNsfw: {
  2776. height: math.unit(1.65, "meters"),
  2777. weight: math.unit(50, "kg"),
  2778. name: "Front (NSFW)",
  2779. image: {
  2780. source: "./media/characters/elijah/front-nsfw.svg",
  2781. extra: 858 / 830,
  2782. bottom: 95.5 / 953.8559
  2783. }
  2784. },
  2785. backNsfw: {
  2786. height: math.unit(1.65, "meters"),
  2787. weight: math.unit(50, "kg"),
  2788. name: "Back (NSFW)",
  2789. image: {
  2790. source: "./media/characters/elijah/back-nsfw.svg",
  2791. extra: 895 / 850,
  2792. bottom: 5.3 / 897.956
  2793. }
  2794. },
  2795. dick: {
  2796. height: math.unit(1, "feet"),
  2797. name: "Dick",
  2798. image: {
  2799. source: "./media/characters/elijah/dick.svg"
  2800. }
  2801. },
  2802. beakOpen: {
  2803. height: math.unit(1.25, "feet"),
  2804. name: "Beak (Open)",
  2805. image: {
  2806. source: "./media/characters/elijah/beak-open.svg"
  2807. }
  2808. },
  2809. beakShut: {
  2810. height: math.unit(1.25, "feet"),
  2811. name: "Beak (Shut)",
  2812. image: {
  2813. source: "./media/characters/elijah/beak-shut.svg"
  2814. }
  2815. },
  2816. footFlexing: {
  2817. height: math.unit(1.61, "feet"),
  2818. name: "Foot (Flexing)",
  2819. image: {
  2820. source: "./media/characters/elijah/foot-flexing.svg"
  2821. }
  2822. },
  2823. footStepping: {
  2824. height: math.unit(1.44, "feet"),
  2825. name: "Foot (Stepping)",
  2826. image: {
  2827. source: "./media/characters/elijah/foot-stepping.svg"
  2828. }
  2829. },
  2830. plantigradeLeg: {
  2831. height: math.unit(2.34, "feet"),
  2832. name: "Plantigrade Leg",
  2833. image: {
  2834. source: "./media/characters/elijah/plantigrade-leg.svg"
  2835. }
  2836. },
  2837. plantigradeFootLeft: {
  2838. height: math.unit(0.9, "feet"),
  2839. name: "Plantigrade Foot (Left)",
  2840. image: {
  2841. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2842. }
  2843. },
  2844. plantigradeFootRight: {
  2845. height: math.unit(0.9, "feet"),
  2846. name: "Plantigrade Foot (Right)",
  2847. image: {
  2848. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Normal",
  2855. height: math.unit(1.65, "meters")
  2856. },
  2857. {
  2858. name: "Macro",
  2859. height: math.unit(55, "meters"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Macro+",
  2864. height: math.unit(105, "meters")
  2865. },
  2866. ]
  2867. ))
  2868. characterMakers.push(() => makeCharacter(
  2869. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2870. {
  2871. front: {
  2872. height: math.unit(7 + 2/12, "feet"),
  2873. weight: math.unit(320, "kg"),
  2874. preyCapacity: math.unit(0.276549935, "people"),
  2875. name: "Front",
  2876. image: {
  2877. source: "./media/characters/rai/front.svg",
  2878. extra: 1802/1696,
  2879. bottom: 68/1870
  2880. },
  2881. form: "anthro",
  2882. default: true
  2883. },
  2884. frontDressed: {
  2885. height: math.unit(7 + 2/12, "feet"),
  2886. weight: math.unit(320, "kg"),
  2887. preyCapacity: math.unit(0.276549935, "people"),
  2888. name: "Front (Dressed)",
  2889. image: {
  2890. source: "./media/characters/rai/front-dressed.svg",
  2891. extra: 1802/1696,
  2892. bottom: 68/1870
  2893. },
  2894. form: "anthro"
  2895. },
  2896. side: {
  2897. height: math.unit(7 + 2/12, "feet"),
  2898. weight: math.unit(320, "kg"),
  2899. preyCapacity: math.unit(0.276549935, "people"),
  2900. name: "Side",
  2901. image: {
  2902. source: "./media/characters/rai/side.svg",
  2903. extra: 1789/1710,
  2904. bottom: 115/1904
  2905. },
  2906. form: "anthro"
  2907. },
  2908. back: {
  2909. height: math.unit(7 + 2/12, "feet"),
  2910. weight: math.unit(320, "kg"),
  2911. preyCapacity: math.unit(0.276549935, "people"),
  2912. name: "Back",
  2913. image: {
  2914. source: "./media/characters/rai/back.svg",
  2915. extra: 1770/1707,
  2916. bottom: 28/1798
  2917. },
  2918. form: "anthro"
  2919. },
  2920. feral: {
  2921. height: math.unit(9.5, "feet"),
  2922. weight: math.unit(640, "kg"),
  2923. preyCapacity: math.unit(4, "people"),
  2924. name: "Feral",
  2925. image: {
  2926. source: "./media/characters/rai/feral.svg",
  2927. extra: 945/553,
  2928. bottom: 176/1121
  2929. },
  2930. form: "feral",
  2931. default: true
  2932. },
  2933. dragon: {
  2934. height: math.unit(23, "feet"),
  2935. weight: math.unit(50000, "lb"),
  2936. name: "Dragon",
  2937. image: {
  2938. source: "./media/characters/rai/dragon.svg",
  2939. extra: 2498 / 2030,
  2940. bottom: 85.2 / 2584
  2941. },
  2942. form: "dragon",
  2943. default: true
  2944. },
  2945. maw: {
  2946. height: math.unit(1.69, "feet"),
  2947. name: "Maw",
  2948. image: {
  2949. source: "./media/characters/rai/maw.svg"
  2950. },
  2951. form: "anthro"
  2952. },
  2953. },
  2954. [
  2955. {
  2956. name: "Normal",
  2957. height: math.unit(7 + 2/12, "feet"),
  2958. form: "anthro"
  2959. },
  2960. {
  2961. name: "Big",
  2962. height: math.unit(11, "feet"),
  2963. form: "anthro"
  2964. },
  2965. {
  2966. name: "Minimacro",
  2967. height: math.unit(77, "feet"),
  2968. form: "anthro"
  2969. },
  2970. {
  2971. name: "Macro",
  2972. height: math.unit(302, "feet"),
  2973. default: true,
  2974. form: "anthro"
  2975. },
  2976. {
  2977. name: "Normal",
  2978. height: math.unit(9.5, "feet"),
  2979. form: "feral",
  2980. default: true
  2981. },
  2982. {
  2983. name: "Normal",
  2984. height: math.unit(23, "feet"),
  2985. form: "dragon",
  2986. default: true
  2987. }
  2988. ],
  2989. {
  2990. "anthro": {
  2991. name: "Anthro",
  2992. default: true
  2993. },
  2994. "feral": {
  2995. name: "Feral",
  2996. },
  2997. "dragon": {
  2998. name: "Dragon",
  2999. },
  3000. }
  3001. ))
  3002. characterMakers.push(() => makeCharacter(
  3003. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3004. {
  3005. frontDressed: {
  3006. height: math.unit(216, "feet"),
  3007. weight: math.unit(7000000, "lb"),
  3008. preyCapacity: math.unit(1321, "people"),
  3009. name: "Front (Dressed)",
  3010. image: {
  3011. source: "./media/characters/jazzy/front-dressed.svg",
  3012. extra: 2738 / 2651,
  3013. bottom: 41.8 / 2786
  3014. }
  3015. },
  3016. backDressed: {
  3017. height: math.unit(216, "feet"),
  3018. weight: math.unit(7000000, "lb"),
  3019. preyCapacity: math.unit(1321, "people"),
  3020. name: "Back (Dressed)",
  3021. image: {
  3022. source: "./media/characters/jazzy/back-dressed.svg",
  3023. extra: 2775 / 2673,
  3024. bottom: 36.8 / 2817
  3025. }
  3026. },
  3027. front: {
  3028. height: math.unit(216, "feet"),
  3029. weight: math.unit(7000000, "lb"),
  3030. preyCapacity: math.unit(1321, "people"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/jazzy/front.svg",
  3034. extra: 2738 / 2651,
  3035. bottom: 41.8 / 2786
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(216, "feet"),
  3040. weight: math.unit(7000000, "lb"),
  3041. preyCapacity: math.unit(1321, "people"),
  3042. name: "Back",
  3043. image: {
  3044. source: "./media/characters/jazzy/back.svg",
  3045. extra: 2775 / 2673,
  3046. bottom: 36.8 / 2817
  3047. }
  3048. },
  3049. maw: {
  3050. height: math.unit(20, "feet"),
  3051. name: "Maw",
  3052. image: {
  3053. source: "./media/characters/jazzy/maw.svg"
  3054. }
  3055. },
  3056. paws: {
  3057. height: math.unit(27.5, "feet"),
  3058. name: "Paws",
  3059. image: {
  3060. source: "./media/characters/jazzy/paws.svg"
  3061. }
  3062. },
  3063. eye: {
  3064. height: math.unit(4.4, "feet"),
  3065. name: "Eye",
  3066. image: {
  3067. source: "./media/characters/jazzy/eye.svg"
  3068. }
  3069. },
  3070. droneOffense: {
  3071. height: math.unit(9.5, "inches"),
  3072. name: "Drone (Offense)",
  3073. image: {
  3074. source: "./media/characters/jazzy/drone-offense.svg"
  3075. }
  3076. },
  3077. droneRecon: {
  3078. height: math.unit(9.5, "inches"),
  3079. name: "Drone (Recon)",
  3080. image: {
  3081. source: "./media/characters/jazzy/drone-recon.svg"
  3082. }
  3083. },
  3084. droneDefense: {
  3085. height: math.unit(9.5, "inches"),
  3086. name: "Drone (Defense)",
  3087. image: {
  3088. source: "./media/characters/jazzy/drone-defense.svg"
  3089. }
  3090. },
  3091. },
  3092. [
  3093. {
  3094. name: "Macro",
  3095. height: math.unit(216, "feet"),
  3096. default: true
  3097. },
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3102. {
  3103. front: {
  3104. height: math.unit(9 + 6/12, "feet"),
  3105. weight: math.unit(700, "lb"),
  3106. name: "Front",
  3107. image: {
  3108. source: "./media/characters/flamm/front.svg",
  3109. extra: 1751/1632,
  3110. bottom: 46/1797
  3111. }
  3112. },
  3113. buff: {
  3114. height: math.unit(9 + 6/12, "feet"),
  3115. weight: math.unit(950, "lb"),
  3116. name: "Buff",
  3117. image: {
  3118. source: "./media/characters/flamm/buff.svg",
  3119. extra: 3018/2874,
  3120. bottom: 221/3239
  3121. }
  3122. },
  3123. },
  3124. [
  3125. {
  3126. name: "Normal",
  3127. height: math.unit(9.5, "feet")
  3128. },
  3129. {
  3130. name: "Macro",
  3131. height: math.unit(200, "feet"),
  3132. default: true
  3133. },
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3138. {
  3139. front: {
  3140. height: math.unit(5 + 3/12, "feet"),
  3141. weight: math.unit(60, "kg"),
  3142. name: "Front",
  3143. image: {
  3144. source: "./media/characters/zephiro/front.svg",
  3145. extra: 1873/1761,
  3146. bottom: 147/2020
  3147. }
  3148. },
  3149. side: {
  3150. height: math.unit(5 + 3/12, "feet"),
  3151. weight: math.unit(60, "kg"),
  3152. name: "Side",
  3153. image: {
  3154. source: "./media/characters/zephiro/side.svg",
  3155. extra: 1929/1827,
  3156. bottom: 65/1994
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(5 + 3/12, "feet"),
  3161. weight: math.unit(60, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/zephiro/back.svg",
  3165. extra: 1926/1816,
  3166. bottom: 41/1967
  3167. }
  3168. },
  3169. hand: {
  3170. height: math.unit(0.68, "feet"),
  3171. name: "Hand",
  3172. image: {
  3173. source: "./media/characters/zephiro/hand.svg"
  3174. }
  3175. },
  3176. paw: {
  3177. height: math.unit(1, "feet"),
  3178. name: "Paw",
  3179. image: {
  3180. source: "./media/characters/zephiro/paw.svg"
  3181. }
  3182. },
  3183. beans: {
  3184. height: math.unit(0.93, "feet"),
  3185. name: "Beans",
  3186. image: {
  3187. source: "./media/characters/zephiro/beans.svg"
  3188. }
  3189. },
  3190. },
  3191. [
  3192. {
  3193. name: "Micro",
  3194. height: math.unit(3, "inches")
  3195. },
  3196. {
  3197. name: "Normal",
  3198. height: math.unit(5 + 3 / 12, "feet"),
  3199. default: true
  3200. },
  3201. {
  3202. name: "Macro",
  3203. height: math.unit(118, "feet")
  3204. },
  3205. ]
  3206. ))
  3207. characterMakers.push(() => makeCharacter(
  3208. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3209. {
  3210. front: {
  3211. height: math.unit(5, "feet"),
  3212. weight: math.unit(90, "kg"),
  3213. preyCapacity: math.unit(14, "people"),
  3214. name: "Front",
  3215. image: {
  3216. source: "./media/characters/fory/front.svg",
  3217. extra: 2862 / 2674,
  3218. bottom: 180 / 3043.8
  3219. },
  3220. form: "weaselbun",
  3221. default: true,
  3222. extraAttributes: {
  3223. "pawSize": {
  3224. name: "Paw Size",
  3225. power: 2,
  3226. type: "area",
  3227. base: math.unit(0.1596, "m^2")
  3228. },
  3229. "pawLength": {
  3230. name: "Paw Length",
  3231. power: 1,
  3232. type: "length",
  3233. base: math.unit(0.7, "m")
  3234. }
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(5, "feet"),
  3239. weight: math.unit(90, "kg"),
  3240. preyCapacity: math.unit(14, "people"),
  3241. name: "Back",
  3242. image: {
  3243. source: "./media/characters/fory/back.svg",
  3244. extra: 1790/1672,
  3245. bottom: 84/1874
  3246. },
  3247. form: "weaselbun",
  3248. extraAttributes: {
  3249. "pawSize": {
  3250. name: "Paw Size",
  3251. power: 2,
  3252. type: "area",
  3253. base: math.unit(0.1596, "m^2")
  3254. },
  3255. "pawLength": {
  3256. name: "Paw Length",
  3257. power: 1,
  3258. type: "length",
  3259. base: math.unit(0.7, "m")
  3260. }
  3261. }
  3262. },
  3263. paw: {
  3264. height: math.unit(2.14, "feet"),
  3265. name: "Paw",
  3266. image: {
  3267. source: "./media/characters/fory/paw.svg"
  3268. },
  3269. form: "weaselbun",
  3270. extraAttributes: {
  3271. "pawSize": {
  3272. name: "Paw Size",
  3273. power: 2,
  3274. type: "area",
  3275. base: math.unit(0.1596, "m^2")
  3276. },
  3277. "pawLength": {
  3278. name: "Paw Length",
  3279. power: 1,
  3280. type: "length",
  3281. base: math.unit(0.48, "m")
  3282. }
  3283. }
  3284. },
  3285. bunBack: {
  3286. height: math.unit(3, "feet"),
  3287. weight: math.unit(20, "kg"),
  3288. preyCapacity: math.unit(3, "people"),
  3289. name: "Back",
  3290. image: {
  3291. source: "./media/characters/fory/bun-back.svg",
  3292. extra: 1749/1564,
  3293. bottom: 246/1995
  3294. },
  3295. form: "bun",
  3296. default: true,
  3297. extraAttributes: {
  3298. "pawSize": {
  3299. name: "Paw Size",
  3300. power: 2,
  3301. type: "area",
  3302. base: math.unit(0.072, "m^2")
  3303. },
  3304. "pawLength": {
  3305. name: "Paw Length",
  3306. power: 1,
  3307. type: "length",
  3308. base: math.unit(0.45, "m")
  3309. }
  3310. }
  3311. },
  3312. },
  3313. [
  3314. {
  3315. name: "Normal",
  3316. height: math.unit(5, "feet"),
  3317. form: "weaselbun"
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(50, "feet"),
  3322. default: true,
  3323. form: "weaselbun"
  3324. },
  3325. {
  3326. name: "Megamacro",
  3327. height: math.unit(10, "miles"),
  3328. form: "weaselbun"
  3329. },
  3330. {
  3331. name: "Gigamacro",
  3332. height: math.unit(5, "earths"),
  3333. form: "weaselbun"
  3334. },
  3335. {
  3336. name: "Normal",
  3337. height: math.unit(3, "feet"),
  3338. default: true,
  3339. form: "bun"
  3340. },
  3341. {
  3342. name: "Fun-Size",
  3343. height: math.unit(12, "feet"),
  3344. form: "bun"
  3345. },
  3346. {
  3347. name: "Macro",
  3348. height: math.unit(100, "feet"),
  3349. form: "bun"
  3350. },
  3351. {
  3352. name: "Planetary",
  3353. height: math.unit(3, "earths"),
  3354. form: "bun"
  3355. },
  3356. ],
  3357. {
  3358. "weaselbun": {
  3359. name: "Weaselbun",
  3360. default: true
  3361. },
  3362. "bun": {
  3363. name: "Bun",
  3364. },
  3365. }
  3366. ))
  3367. characterMakers.push(() => makeCharacter(
  3368. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3369. {
  3370. front: {
  3371. height: math.unit(7, "feet"),
  3372. weight: math.unit(90, "kg"),
  3373. name: "Front",
  3374. image: {
  3375. source: "./media/characters/kurrikage/front.svg",
  3376. extra: 1845/1733,
  3377. bottom: 119/1964
  3378. }
  3379. },
  3380. back: {
  3381. height: math.unit(7, "feet"),
  3382. weight: math.unit(90, "kg"),
  3383. name: "Back",
  3384. image: {
  3385. source: "./media/characters/kurrikage/back.svg",
  3386. extra: 1790/1677,
  3387. bottom: 61/1851
  3388. }
  3389. },
  3390. dressed: {
  3391. height: math.unit(7, "feet"),
  3392. weight: math.unit(90, "kg"),
  3393. name: "Dressed",
  3394. image: {
  3395. source: "./media/characters/kurrikage/dressed.svg",
  3396. extra: 1845/1733,
  3397. bottom: 119/1964
  3398. }
  3399. },
  3400. foot: {
  3401. height: math.unit(1.5, "feet"),
  3402. name: "Foot",
  3403. image: {
  3404. source: "./media/characters/kurrikage/foot.svg"
  3405. }
  3406. },
  3407. staff: {
  3408. height: math.unit(6.7, "feet"),
  3409. name: "Staff",
  3410. image: {
  3411. source: "./media/characters/kurrikage/staff.svg"
  3412. }
  3413. },
  3414. peek: {
  3415. height: math.unit(1.05, "feet"),
  3416. name: "Peeking",
  3417. image: {
  3418. source: "./media/characters/kurrikage/peek.svg",
  3419. bottom: 0.08
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Normal",
  3426. height: math.unit(12, "feet"),
  3427. default: true
  3428. },
  3429. {
  3430. name: "Big",
  3431. height: math.unit(20, "feet")
  3432. },
  3433. {
  3434. name: "Macro",
  3435. height: math.unit(500, "feet")
  3436. },
  3437. {
  3438. name: "Megamacro",
  3439. height: math.unit(20, "miles")
  3440. },
  3441. ]
  3442. ))
  3443. characterMakers.push(() => makeCharacter(
  3444. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3445. {
  3446. front: {
  3447. height: math.unit(6, "feet"),
  3448. weight: math.unit(75, "kg"),
  3449. name: "Front",
  3450. image: {
  3451. source: "./media/characters/shingo/front.svg",
  3452. extra: 1900/1825,
  3453. bottom: 82/1982
  3454. }
  3455. },
  3456. side: {
  3457. height: math.unit(6, "feet"),
  3458. weight: math.unit(75, "kg"),
  3459. name: "Side",
  3460. image: {
  3461. source: "./media/characters/shingo/side.svg",
  3462. extra: 1930/1865,
  3463. bottom: 16/1946
  3464. }
  3465. },
  3466. back: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(75, "kg"),
  3469. name: "Back",
  3470. image: {
  3471. source: "./media/characters/shingo/back.svg",
  3472. extra: 1922/1852,
  3473. bottom: 16/1938
  3474. }
  3475. },
  3476. frontDressed: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(150, "lb"),
  3479. name: "Front-dressed",
  3480. image: {
  3481. source: "./media/characters/shingo/front-dressed.svg",
  3482. extra: 1900/1825,
  3483. bottom: 82/1982
  3484. }
  3485. },
  3486. paw: {
  3487. height: math.unit(1.29, "feet"),
  3488. name: "Paw",
  3489. image: {
  3490. source: "./media/characters/shingo/paw.svg"
  3491. }
  3492. },
  3493. hand: {
  3494. height: math.unit(1.07, "feet"),
  3495. name: "Hand",
  3496. image: {
  3497. source: "./media/characters/shingo/hand.svg"
  3498. }
  3499. },
  3500. frontAlt: {
  3501. height: math.unit(6, "feet"),
  3502. weight: math.unit(75, "kg"),
  3503. name: "Front (Alt)",
  3504. image: {
  3505. source: "./media/characters/shingo/front-alt.svg",
  3506. extra: 3511 / 3338,
  3507. bottom: 0.005
  3508. }
  3509. },
  3510. frontAlt2: {
  3511. height: math.unit(6, "feet"),
  3512. weight: math.unit(75, "kg"),
  3513. name: "Front (Alt 2)",
  3514. image: {
  3515. source: "./media/characters/shingo/front-alt-2.svg",
  3516. extra: 706/681,
  3517. bottom: 11/717
  3518. }
  3519. },
  3520. pawAlt: {
  3521. height: math.unit(1, "feet"),
  3522. name: "Paw (Alt)",
  3523. image: {
  3524. source: "./media/characters/shingo/paw-alt.svg"
  3525. }
  3526. },
  3527. },
  3528. [
  3529. {
  3530. name: "Micro",
  3531. height: math.unit(4, "inches")
  3532. },
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(6, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Macro",
  3540. height: math.unit(108, "feet")
  3541. },
  3542. {
  3543. name: "Macro+",
  3544. height: math.unit(1500, "feet")
  3545. },
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3550. {
  3551. side: {
  3552. height: math.unit(6, "feet"),
  3553. weight: math.unit(75, "kg"),
  3554. name: "Side",
  3555. image: {
  3556. source: "./media/characters/aigey/side.svg"
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Macro",
  3563. height: math.unit(200, "feet"),
  3564. default: true
  3565. },
  3566. {
  3567. name: "Megamacro",
  3568. height: math.unit(100, "miles")
  3569. },
  3570. ]
  3571. )
  3572. )
  3573. characterMakers.push(() => makeCharacter(
  3574. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3575. {
  3576. front: {
  3577. height: math.unit(5 + 5 / 12, "feet"),
  3578. weight: math.unit(75, "kg"),
  3579. name: "Front",
  3580. image: {
  3581. source: "./media/characters/natasha/front.svg",
  3582. extra: 859 / 824,
  3583. bottom: 23 / 879.6
  3584. }
  3585. },
  3586. frontNsfw: {
  3587. height: math.unit(5 + 5 / 12, "feet"),
  3588. weight: math.unit(75, "kg"),
  3589. name: "Front (NSFW)",
  3590. image: {
  3591. source: "./media/characters/natasha/front-nsfw.svg",
  3592. extra: 859 / 824,
  3593. bottom: 23 / 879.6
  3594. }
  3595. },
  3596. frontErect: {
  3597. height: math.unit(5 + 5 / 12, "feet"),
  3598. weight: math.unit(75, "kg"),
  3599. name: "Front (Erect)",
  3600. image: {
  3601. source: "./media/characters/natasha/front-erect.svg",
  3602. extra: 859 / 824,
  3603. bottom: 23 / 879.6
  3604. }
  3605. },
  3606. back: {
  3607. height: math.unit(5 + 5 / 12, "feet"),
  3608. weight: math.unit(75, "kg"),
  3609. name: "Back",
  3610. image: {
  3611. source: "./media/characters/natasha/back.svg",
  3612. extra: 887.9 / 852.6,
  3613. bottom: 9.7 / 896.4
  3614. }
  3615. },
  3616. backAlt: {
  3617. height: math.unit(5 + 5 / 12, "feet"),
  3618. weight: math.unit(75, "kg"),
  3619. name: "Back (Alt)",
  3620. image: {
  3621. source: "./media/characters/natasha/back-alt.svg",
  3622. extra: 1236.7 / 1192,
  3623. bottom: 22.3 / 1258.2
  3624. }
  3625. },
  3626. dick: {
  3627. height: math.unit(1.772, "feet"),
  3628. name: "Dick",
  3629. image: {
  3630. source: "./media/characters/natasha/dick.svg"
  3631. }
  3632. },
  3633. paw: {
  3634. height: math.unit(0.250, "meters"),
  3635. name: "Paw",
  3636. image: {
  3637. source: "./media/characters/natasha/paw.svg"
  3638. },
  3639. extraAttributes: {
  3640. "toeSize": {
  3641. name: "Toe Size",
  3642. power: 2,
  3643. type: "area",
  3644. base: math.unit(0.0024, "m^2")
  3645. },
  3646. "padSize": {
  3647. name: "Pad Size",
  3648. power: 2,
  3649. type: "area",
  3650. base: math.unit(0.00889, "m^2")
  3651. },
  3652. "pawSize": {
  3653. name: "Paw Size",
  3654. power: 2,
  3655. type: "area",
  3656. base: math.unit(0.023667, "m^2")
  3657. },
  3658. }
  3659. },
  3660. },
  3661. [
  3662. {
  3663. name: "Shortstack",
  3664. height: math.unit(3, "feet"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Normal",
  3669. height: math.unit(5 + 5 / 12, "feet")
  3670. },
  3671. {
  3672. name: "Large",
  3673. height: math.unit(12, "feet")
  3674. },
  3675. {
  3676. name: "Macro",
  3677. height: math.unit(100, "feet")
  3678. },
  3679. {
  3680. name: "Macro+",
  3681. height: math.unit(260, "feet")
  3682. },
  3683. {
  3684. name: "Macro++",
  3685. height: math.unit(1, "mile")
  3686. },
  3687. ]
  3688. ))
  3689. characterMakers.push(() => makeCharacter(
  3690. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3691. {
  3692. front: {
  3693. height: math.unit(6, "feet"),
  3694. weight: math.unit(75, "kg"),
  3695. name: "Front",
  3696. image: {
  3697. source: "./media/characters/malik/front.svg",
  3698. extra: 1750/1561,
  3699. bottom: 80/1830
  3700. },
  3701. extraAttributes: {
  3702. "toeSize": {
  3703. name: "Toe Size",
  3704. power: 2,
  3705. type: "area",
  3706. base: math.unit(0.0159, "m^2")
  3707. },
  3708. "pawSize": {
  3709. name: "Paw Size",
  3710. power: 2,
  3711. type: "area",
  3712. base: math.unit(0.09834, "m^2")
  3713. },
  3714. }
  3715. },
  3716. side: {
  3717. height: math.unit(6, "feet"),
  3718. weight: math.unit(75, "kg"),
  3719. name: "Side",
  3720. image: {
  3721. source: "./media/characters/malik/side.svg",
  3722. extra: 1802/1685,
  3723. bottom: 42/1844
  3724. },
  3725. extraAttributes: {
  3726. "toeSize": {
  3727. name: "Toe Size",
  3728. power: 2,
  3729. type: "area",
  3730. base: math.unit(0.0159, "m^2")
  3731. },
  3732. "pawSize": {
  3733. name: "Paw Size",
  3734. power: 2,
  3735. type: "area",
  3736. base: math.unit(0.09834, "m^2")
  3737. },
  3738. }
  3739. },
  3740. back: {
  3741. height: math.unit(6, "feet"),
  3742. weight: math.unit(75, "kg"),
  3743. name: "Back",
  3744. image: {
  3745. source: "./media/characters/malik/back.svg",
  3746. extra: 1803/1607,
  3747. bottom: 33/1836
  3748. },
  3749. extraAttributes: {
  3750. "toeSize": {
  3751. name: "Toe Size",
  3752. power: 2,
  3753. type: "area",
  3754. base: math.unit(0.0159, "m^2")
  3755. },
  3756. "pawSize": {
  3757. name: "Paw Size",
  3758. power: 2,
  3759. type: "area",
  3760. base: math.unit(0.09834, "m^2")
  3761. },
  3762. }
  3763. },
  3764. },
  3765. [
  3766. {
  3767. name: "Macro",
  3768. height: math.unit(156, "feet"),
  3769. default: true
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(1188, "feet")
  3774. },
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(6, "feet"),
  3782. weight: math.unit(75, "kg"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/sefer/front.svg",
  3786. extra: 848 / 659,
  3787. bottom: 28.3 / 876.442
  3788. }
  3789. },
  3790. back: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(75, "kg"),
  3793. name: "Back",
  3794. image: {
  3795. source: "./media/characters/sefer/back.svg",
  3796. extra: 864 / 695,
  3797. bottom: 10 / 871
  3798. }
  3799. },
  3800. frontDressed: {
  3801. height: math.unit(6, "feet"),
  3802. weight: math.unit(75, "kg"),
  3803. name: "Dressed",
  3804. image: {
  3805. source: "./media/characters/sefer/dressed.svg",
  3806. extra: 839 / 653,
  3807. bottom: 37.6 / 878
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(6, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Big",
  3819. height: math.unit(8, "meters")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3825. {
  3826. body: {
  3827. height: math.unit(2.2428, "meter"),
  3828. weight: math.unit(124.738, "kg"),
  3829. name: "Body",
  3830. image: {
  3831. extra: 1225 / 1050,
  3832. source: "./media/characters/north/front.svg"
  3833. }
  3834. }
  3835. },
  3836. [
  3837. {
  3838. name: "Micro",
  3839. height: math.unit(4, "inches")
  3840. },
  3841. {
  3842. name: "Macro",
  3843. height: math.unit(63, "meters")
  3844. },
  3845. {
  3846. name: "Megamacro",
  3847. height: math.unit(101, "miles"),
  3848. default: true
  3849. }
  3850. ]
  3851. ))
  3852. characterMakers.push(() => makeCharacter(
  3853. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3854. {
  3855. angled: {
  3856. height: math.unit(4, "meter"),
  3857. weight: math.unit(150, "kg"),
  3858. name: "Angled",
  3859. image: {
  3860. source: "./media/characters/talan/angled-sfw.svg",
  3861. bottom: 29 / 3734
  3862. }
  3863. },
  3864. angledNsfw: {
  3865. height: math.unit(4, "meter"),
  3866. weight: math.unit(150, "kg"),
  3867. name: "Angled (NSFW)",
  3868. image: {
  3869. source: "./media/characters/talan/angled-nsfw.svg",
  3870. bottom: 29 / 3734
  3871. }
  3872. },
  3873. frontNsfw: {
  3874. height: math.unit(4, "meter"),
  3875. weight: math.unit(150, "kg"),
  3876. name: "Front (NSFW)",
  3877. image: {
  3878. source: "./media/characters/talan/front-nsfw.svg",
  3879. bottom: 29 / 3734
  3880. }
  3881. },
  3882. sideNsfw: {
  3883. height: math.unit(4, "meter"),
  3884. weight: math.unit(150, "kg"),
  3885. name: "Side (NSFW)",
  3886. image: {
  3887. source: "./media/characters/talan/side-nsfw.svg",
  3888. bottom: 29 / 3734
  3889. }
  3890. },
  3891. back: {
  3892. height: math.unit(4, "meter"),
  3893. weight: math.unit(150, "kg"),
  3894. name: "Back",
  3895. image: {
  3896. source: "./media/characters/talan/back.svg"
  3897. }
  3898. },
  3899. dickBottom: {
  3900. height: math.unit(0.621, "meter"),
  3901. name: "Dick (Bottom)",
  3902. image: {
  3903. source: "./media/characters/talan/dick-bottom.svg"
  3904. }
  3905. },
  3906. dickTop: {
  3907. height: math.unit(0.621, "meter"),
  3908. name: "Dick (Top)",
  3909. image: {
  3910. source: "./media/characters/talan/dick-top.svg"
  3911. }
  3912. },
  3913. dickSide: {
  3914. height: math.unit(0.305, "meter"),
  3915. name: "Dick (Side)",
  3916. image: {
  3917. source: "./media/characters/talan/dick-side.svg"
  3918. }
  3919. },
  3920. dickFront: {
  3921. height: math.unit(0.305, "meter"),
  3922. name: "Dick (Front)",
  3923. image: {
  3924. source: "./media/characters/talan/dick-front.svg"
  3925. }
  3926. },
  3927. },
  3928. [
  3929. {
  3930. name: "Normal",
  3931. height: math.unit(4, "meters")
  3932. },
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(100, "meters")
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(2, "miles"),
  3940. default: true
  3941. },
  3942. {
  3943. name: "Gigamacro",
  3944. height: math.unit(5000, "miles")
  3945. },
  3946. {
  3947. name: "Teramacro",
  3948. height: math.unit(100, "parsecs")
  3949. }
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(2, "meter"),
  3957. weight: math.unit(90, "kg"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/gael'rathus/front.svg"
  3961. }
  3962. },
  3963. frontAlt: {
  3964. height: math.unit(2, "meter"),
  3965. weight: math.unit(90, "kg"),
  3966. name: "Front (alt)",
  3967. image: {
  3968. source: "./media/characters/gael'rathus/front-alt.svg"
  3969. }
  3970. },
  3971. frontAlt2: {
  3972. height: math.unit(2, "meter"),
  3973. weight: math.unit(90, "kg"),
  3974. name: "Front (alt 2)",
  3975. image: {
  3976. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3977. }
  3978. }
  3979. },
  3980. [
  3981. {
  3982. name: "Normal",
  3983. height: math.unit(9, "feet"),
  3984. default: true
  3985. },
  3986. {
  3987. name: "Large",
  3988. height: math.unit(25, "feet")
  3989. },
  3990. {
  3991. name: "Macro",
  3992. height: math.unit(0.25, "miles")
  3993. },
  3994. {
  3995. name: "Megamacro",
  3996. height: math.unit(10, "miles")
  3997. }
  3998. ]
  3999. ))
  4000. characterMakers.push(() => makeCharacter(
  4001. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4002. {
  4003. side: {
  4004. height: math.unit(2, "meter"),
  4005. weight: math.unit(140, "kg"),
  4006. name: "Side",
  4007. image: {
  4008. source: "./media/characters/sosha/side.svg",
  4009. extra: 1170/1006,
  4010. bottom: 94/1264
  4011. }
  4012. },
  4013. maw: {
  4014. height: math.unit(2.87, "feet"),
  4015. name: "Maw",
  4016. image: {
  4017. source: "./media/characters/sosha/maw.svg",
  4018. extra: 966/865,
  4019. bottom: 0/966
  4020. }
  4021. },
  4022. cooch: {
  4023. height: math.unit(5.6, "feet"),
  4024. name: "Cooch",
  4025. image: {
  4026. source: "./media/characters/sosha/cooch.svg"
  4027. }
  4028. },
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(12, "feet"),
  4034. default: true
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4040. {
  4041. side: {
  4042. height: math.unit(5 + 5 / 12, "feet"),
  4043. weight: math.unit(170, "kg"),
  4044. name: "Side",
  4045. image: {
  4046. source: "./media/characters/runnola/side.svg",
  4047. extra: 741 / 448,
  4048. bottom: 0.05
  4049. }
  4050. },
  4051. },
  4052. [
  4053. {
  4054. name: "Small",
  4055. height: math.unit(3, "feet")
  4056. },
  4057. {
  4058. name: "Normal",
  4059. height: math.unit(5 + 5 / 12, "feet"),
  4060. default: true
  4061. },
  4062. {
  4063. name: "Big",
  4064. height: math.unit(10, "feet")
  4065. },
  4066. ]
  4067. ))
  4068. characterMakers.push(() => makeCharacter(
  4069. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4070. {
  4071. front: {
  4072. height: math.unit(2, "meter"),
  4073. weight: math.unit(50, "kg"),
  4074. name: "Front",
  4075. image: {
  4076. source: "./media/characters/kurribird/front.svg",
  4077. bottom: 0.015
  4078. }
  4079. },
  4080. frontAlt: {
  4081. height: math.unit(1.5, "meter"),
  4082. weight: math.unit(50, "kg"),
  4083. name: "Front (Alt)",
  4084. image: {
  4085. source: "./media/characters/kurribird/front-alt.svg",
  4086. extra: 1.45
  4087. }
  4088. },
  4089. },
  4090. [
  4091. {
  4092. name: "Normal",
  4093. height: math.unit(7, "feet")
  4094. },
  4095. {
  4096. name: "Big",
  4097. height: math.unit(12, "feet"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(1500, "feet")
  4103. },
  4104. {
  4105. name: "Megamacro",
  4106. height: math.unit(2, "miles")
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(2, "meter"),
  4115. weight: math.unit(80, "kg"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/elbial/front.svg",
  4119. extra: 1643 / 1556,
  4120. bottom: 60.2 / 1696
  4121. }
  4122. },
  4123. side: {
  4124. height: math.unit(2, "meter"),
  4125. weight: math.unit(80, "kg"),
  4126. name: "Side",
  4127. image: {
  4128. source: "./media/characters/elbial/side.svg",
  4129. extra: 1601/1528,
  4130. bottom: 97/1698
  4131. }
  4132. },
  4133. back: {
  4134. height: math.unit(2, "meter"),
  4135. weight: math.unit(80, "kg"),
  4136. name: "Back",
  4137. image: {
  4138. source: "./media/characters/elbial/back.svg",
  4139. extra: 1653/1569,
  4140. bottom: 20/1673
  4141. }
  4142. },
  4143. frontDressed: {
  4144. height: math.unit(2, "meter"),
  4145. weight: math.unit(80, "kg"),
  4146. name: "Front (Dressed)",
  4147. image: {
  4148. source: "./media/characters/elbial/front-dressed.svg",
  4149. extra: 1638/1569,
  4150. bottom: 70/1708
  4151. }
  4152. },
  4153. genitals: {
  4154. height: math.unit(2 / 3.367, "meter"),
  4155. name: "Genitals",
  4156. image: {
  4157. source: "./media/characters/elbial/genitals.svg"
  4158. }
  4159. },
  4160. },
  4161. [
  4162. {
  4163. name: "Large",
  4164. height: math.unit(100, "feet")
  4165. },
  4166. {
  4167. name: "Macro",
  4168. height: math.unit(500, "feet"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Megamacro",
  4173. height: math.unit(10, "miles")
  4174. },
  4175. {
  4176. name: "Gigamacro",
  4177. height: math.unit(25000, "miles")
  4178. },
  4179. {
  4180. name: "Full-Size",
  4181. height: math.unit(8000000, "gigaparsecs")
  4182. }
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4187. {
  4188. front: {
  4189. height: math.unit(2, "meter"),
  4190. weight: math.unit(60, "kg"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/noah/front.svg"
  4194. }
  4195. },
  4196. talons: {
  4197. height: math.unit(0.315, "meter"),
  4198. name: "Talons",
  4199. image: {
  4200. source: "./media/characters/noah/talons.svg"
  4201. }
  4202. }
  4203. },
  4204. [
  4205. {
  4206. name: "Large",
  4207. height: math.unit(50, "feet")
  4208. },
  4209. {
  4210. name: "Macro",
  4211. height: math.unit(750, "feet"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Megamacro",
  4216. height: math.unit(50, "miles")
  4217. },
  4218. {
  4219. name: "Gigamacro",
  4220. height: math.unit(100000, "miles")
  4221. },
  4222. {
  4223. name: "Full-Size",
  4224. height: math.unit(3000000000, "miles")
  4225. }
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4230. {
  4231. front: {
  4232. height: math.unit(2, "meter"),
  4233. weight: math.unit(80, "kg"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/natalya/front.svg"
  4237. }
  4238. },
  4239. back: {
  4240. height: math.unit(2, "meter"),
  4241. weight: math.unit(80, "kg"),
  4242. name: "Back",
  4243. image: {
  4244. source: "./media/characters/natalya/back.svg"
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(150, "feet"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(5, "miles")
  4257. },
  4258. {
  4259. name: "Full-Size",
  4260. height: math.unit(600, "kiloparsecs")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(2, "meter"),
  4269. weight: math.unit(50, "kg"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/erestrebah/front.svg",
  4273. extra: 1262/1162,
  4274. bottom: 96/1358
  4275. }
  4276. },
  4277. back: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(50, "kg"),
  4280. name: "Back",
  4281. image: {
  4282. source: "./media/characters/erestrebah/back.svg",
  4283. extra: 1257/1139,
  4284. bottom: 13/1270
  4285. }
  4286. },
  4287. wing: {
  4288. height: math.unit(2, "meter"),
  4289. weight: math.unit(50, "kg"),
  4290. name: "Wing",
  4291. image: {
  4292. source: "./media/characters/erestrebah/wing.svg",
  4293. extra: 1262/1162,
  4294. bottom: 96/1358
  4295. }
  4296. },
  4297. mouth: {
  4298. height: math.unit(0.39, "feet"),
  4299. name: "Mouth",
  4300. image: {
  4301. source: "./media/characters/erestrebah/mouth.svg"
  4302. }
  4303. }
  4304. },
  4305. [
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(10, "feet")
  4309. },
  4310. {
  4311. name: "Large",
  4312. height: math.unit(50, "feet"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Macro",
  4317. height: math.unit(300, "feet")
  4318. },
  4319. {
  4320. name: "Macro+",
  4321. height: math.unit(750, "feet")
  4322. },
  4323. {
  4324. name: "Megamacro",
  4325. height: math.unit(3, "miles")
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4331. {
  4332. front: {
  4333. height: math.unit(2, "meter"),
  4334. weight: math.unit(80, "kg"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/jennifer/front.svg",
  4338. bottom: 0.11,
  4339. extra: 1.16
  4340. }
  4341. },
  4342. frontAlt: {
  4343. height: math.unit(2, "meter"),
  4344. weight: math.unit(80, "kg"),
  4345. name: "Front (Alt)",
  4346. image: {
  4347. source: "./media/characters/jennifer/front-alt.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Canon Height",
  4354. height: math.unit(120, "feet"),
  4355. default: true
  4356. },
  4357. {
  4358. name: "Macro+",
  4359. height: math.unit(300, "feet")
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(20000, "feet")
  4364. }
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4369. {
  4370. front: {
  4371. height: math.unit(2, "meter"),
  4372. weight: math.unit(50, "kg"),
  4373. name: "Front",
  4374. image: {
  4375. source: "./media/characters/kalista/front.svg",
  4376. extra: 1314/1145,
  4377. bottom: 101/1415
  4378. }
  4379. },
  4380. back: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(50, "kg"),
  4383. name: "Back",
  4384. image: {
  4385. source: "./media/characters/kalista/back.svg",
  4386. extra: 1366 / 1156,
  4387. bottom: 33.9 / 1362.78
  4388. }
  4389. }
  4390. },
  4391. [
  4392. {
  4393. name: "Uncomfortably Small",
  4394. height: math.unit(10, "feet")
  4395. },
  4396. {
  4397. name: "Small",
  4398. height: math.unit(30, "feet")
  4399. },
  4400. {
  4401. name: "Macro",
  4402. height: math.unit(100, "feet"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Macro+",
  4407. height: math.unit(2000, "feet")
  4408. },
  4409. {
  4410. name: "True Form",
  4411. height: math.unit(8924, "miles")
  4412. }
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(2, "meter"),
  4420. weight: math.unit(120, "kg"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/ggv/front.svg"
  4424. }
  4425. },
  4426. side: {
  4427. height: math.unit(2, "meter"),
  4428. weight: math.unit(120, "kg"),
  4429. name: "Side",
  4430. image: {
  4431. source: "./media/characters/ggv/side.svg"
  4432. }
  4433. }
  4434. },
  4435. [
  4436. {
  4437. name: "Extremely Puny",
  4438. height: math.unit(9 + 5 / 12, "feet")
  4439. },
  4440. {
  4441. name: "Horribly Small",
  4442. height: math.unit(47.7, "miles"),
  4443. default: true
  4444. },
  4445. {
  4446. name: "Reasonably Sized",
  4447. height: math.unit(25000, "parsecs")
  4448. },
  4449. {
  4450. name: "Slightly Uncompressed",
  4451. height: math.unit(7.77e31, "parsecs")
  4452. },
  4453. {
  4454. name: "Omniversal",
  4455. height: math.unit(1e300, "meters")
  4456. },
  4457. ]
  4458. ))
  4459. characterMakers.push(() => makeCharacter(
  4460. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4461. {
  4462. front: {
  4463. height: math.unit(2, "meter"),
  4464. weight: math.unit(75, "lb"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/napalm/front.svg"
  4468. }
  4469. },
  4470. back: {
  4471. height: math.unit(2, "meter"),
  4472. weight: math.unit(75, "lb"),
  4473. name: "Back",
  4474. image: {
  4475. source: "./media/characters/napalm/back.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Standard",
  4482. height: math.unit(55, "feet"),
  4483. default: true
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(7 + 5 / 6, "feet"),
  4492. weight: math.unit(325, "lb"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/asana/front.svg",
  4496. extra: 1133 / 1060,
  4497. bottom: 15.2 / 1148.6
  4498. }
  4499. },
  4500. back: {
  4501. height: math.unit(7 + 5 / 6, "feet"),
  4502. weight: math.unit(325, "lb"),
  4503. name: "Back",
  4504. image: {
  4505. source: "./media/characters/asana/back.svg",
  4506. extra: 1114 / 1043,
  4507. bottom: 5 / 1120
  4508. }
  4509. },
  4510. dressedDark: {
  4511. height: math.unit(7 + 5 / 6, "feet"),
  4512. weight: math.unit(325, "lb"),
  4513. name: "Dressed (Dark)",
  4514. image: {
  4515. source: "./media/characters/asana/dressed-dark.svg",
  4516. extra: 1133 / 1060,
  4517. bottom: 15.2 / 1148.6
  4518. }
  4519. },
  4520. dressedLight: {
  4521. height: math.unit(7 + 5 / 6, "feet"),
  4522. weight: math.unit(325, "lb"),
  4523. name: "Dressed (Light)",
  4524. image: {
  4525. source: "./media/characters/asana/dressed-light.svg",
  4526. extra: 1133 / 1060,
  4527. bottom: 15.2 / 1148.6
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Standard",
  4534. height: math.unit(7 + 5 / 6, "feet"),
  4535. default: true
  4536. },
  4537. {
  4538. name: "Large",
  4539. height: math.unit(10, "meters")
  4540. },
  4541. {
  4542. name: "Macro",
  4543. height: math.unit(2500, "meters")
  4544. },
  4545. {
  4546. name: "Megamacro",
  4547. height: math.unit(5e6, "meters")
  4548. },
  4549. {
  4550. name: "Examacro",
  4551. height: math.unit(5e12, "lightyears")
  4552. },
  4553. {
  4554. name: "Max Size",
  4555. height: math.unit(1e31, "lightyears")
  4556. }
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4561. {
  4562. front: {
  4563. height: math.unit(2, "meter"),
  4564. weight: math.unit(60, "kg"),
  4565. name: "Front",
  4566. image: {
  4567. source: "./media/characters/ebony/front.svg",
  4568. bottom: 0.03,
  4569. extra: 1045 / 810 + 0.03
  4570. }
  4571. },
  4572. side: {
  4573. height: math.unit(2, "meter"),
  4574. weight: math.unit(60, "kg"),
  4575. name: "Side",
  4576. image: {
  4577. source: "./media/characters/ebony/side.svg",
  4578. bottom: 0.03,
  4579. extra: 1045 / 810 + 0.03
  4580. }
  4581. },
  4582. back: {
  4583. height: math.unit(2, "meter"),
  4584. weight: math.unit(60, "kg"),
  4585. name: "Back",
  4586. image: {
  4587. source: "./media/characters/ebony/back.svg",
  4588. bottom: 0.01,
  4589. extra: 1045 / 810 + 0.01
  4590. }
  4591. },
  4592. },
  4593. [
  4594. // TODO check why I did this lol
  4595. {
  4596. name: "Standard",
  4597. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4598. default: true
  4599. },
  4600. {
  4601. name: "Macro",
  4602. height: math.unit(200, "feet")
  4603. },
  4604. {
  4605. name: "Gigamacro",
  4606. height: math.unit(13000, "km")
  4607. }
  4608. ]
  4609. ))
  4610. characterMakers.push(() => makeCharacter(
  4611. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4612. {
  4613. front: {
  4614. height: math.unit(6, "feet"),
  4615. weight: math.unit(175, "lb"),
  4616. name: "Front",
  4617. image: {
  4618. source: "./media/characters/mountain/front.svg",
  4619. extra: 972 / 955,
  4620. bottom: 64 / 1036.6
  4621. }
  4622. },
  4623. back: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(175, "lb"),
  4626. name: "Back",
  4627. image: {
  4628. source: "./media/characters/mountain/back.svg",
  4629. extra: 970 / 950,
  4630. bottom: 28.25 / 999
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Large",
  4637. height: math.unit(20, "meters")
  4638. },
  4639. {
  4640. name: "Macro",
  4641. height: math.unit(300, "meters")
  4642. },
  4643. {
  4644. name: "Gigamacro",
  4645. height: math.unit(10000, "km"),
  4646. default: true
  4647. },
  4648. {
  4649. name: "Examacro",
  4650. height: math.unit(10e9, "lightyears")
  4651. }
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4656. {
  4657. front: {
  4658. height: math.unit(8, "feet"),
  4659. weight: math.unit(500, "lb"),
  4660. name: "Front",
  4661. image: {
  4662. source: "./media/characters/rick/front.svg"
  4663. }
  4664. }
  4665. },
  4666. [
  4667. {
  4668. name: "Normal",
  4669. height: math.unit(8, "feet"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(5, "km")
  4675. }
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(8, "feet"),
  4683. weight: math.unit(120, "lb"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/ona/front.svg"
  4687. }
  4688. },
  4689. frontAlt: {
  4690. height: math.unit(8, "feet"),
  4691. weight: math.unit(120, "lb"),
  4692. name: "Front (Alt)",
  4693. image: {
  4694. source: "./media/characters/ona/front-alt.svg"
  4695. }
  4696. },
  4697. back: {
  4698. height: math.unit(8, "feet"),
  4699. weight: math.unit(120, "lb"),
  4700. name: "Back",
  4701. image: {
  4702. source: "./media/characters/ona/back.svg"
  4703. }
  4704. },
  4705. foot: {
  4706. height: math.unit(1.1, "feet"),
  4707. name: "Foot",
  4708. image: {
  4709. source: "./media/characters/ona/foot.svg"
  4710. }
  4711. }
  4712. },
  4713. [
  4714. {
  4715. name: "Megamacro",
  4716. height: math.unit(70, "km"),
  4717. default: true
  4718. },
  4719. {
  4720. name: "Gigamacro",
  4721. height: math.unit(681818, "miles")
  4722. },
  4723. {
  4724. name: "Examacro",
  4725. height: math.unit(3800000, "lightyears")
  4726. },
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4731. {
  4732. front: {
  4733. height: math.unit(12, "feet"),
  4734. weight: math.unit(3000, "lb"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/mech/front.svg",
  4738. extra: 2900 / 2770,
  4739. bottom: 110 / 3010
  4740. }
  4741. },
  4742. back: {
  4743. height: math.unit(12, "feet"),
  4744. weight: math.unit(3000, "lb"),
  4745. name: "Back",
  4746. image: {
  4747. source: "./media/characters/mech/back.svg",
  4748. extra: 3011 / 2890,
  4749. bottom: 94 / 3105
  4750. }
  4751. },
  4752. maw: {
  4753. height: math.unit(3.07, "feet"),
  4754. name: "Maw",
  4755. image: {
  4756. source: "./media/characters/mech/maw.svg"
  4757. }
  4758. },
  4759. head: {
  4760. height: math.unit(3.07, "feet"),
  4761. name: "Head",
  4762. image: {
  4763. source: "./media/characters/mech/head.svg"
  4764. }
  4765. },
  4766. dick: {
  4767. height: math.unit(1.43, "feet"),
  4768. name: "Dick",
  4769. image: {
  4770. source: "./media/characters/mech/dick.svg"
  4771. }
  4772. },
  4773. },
  4774. [
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(12, "feet")
  4778. },
  4779. {
  4780. name: "Macro",
  4781. height: math.unit(300, "feet"),
  4782. default: true
  4783. },
  4784. {
  4785. name: "Macro+",
  4786. height: math.unit(1500, "feet")
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4792. {
  4793. front: {
  4794. height: math.unit(1.3, "meter"),
  4795. weight: math.unit(30, "kg"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/gregory/front.svg",
  4799. }
  4800. }
  4801. },
  4802. [
  4803. {
  4804. name: "Normal",
  4805. height: math.unit(1.3, "meter"),
  4806. default: true
  4807. },
  4808. {
  4809. name: "Macro",
  4810. height: math.unit(20, "meter")
  4811. }
  4812. ]
  4813. ))
  4814. characterMakers.push(() => makeCharacter(
  4815. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4816. {
  4817. front: {
  4818. height: math.unit(2.8, "meter"),
  4819. weight: math.unit(200, "kg"),
  4820. name: "Front",
  4821. image: {
  4822. source: "./media/characters/elory/front.svg",
  4823. }
  4824. }
  4825. },
  4826. [
  4827. {
  4828. name: "Normal",
  4829. height: math.unit(2.8, "meter"),
  4830. default: true
  4831. },
  4832. {
  4833. name: "Macro",
  4834. height: math.unit(38, "meter")
  4835. }
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4840. {
  4841. front: {
  4842. height: math.unit(470, "feet"),
  4843. weight: math.unit(924, "tons"),
  4844. name: "Front",
  4845. image: {
  4846. source: "./media/characters/angelpatamon/front.svg",
  4847. }
  4848. }
  4849. },
  4850. [
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(470, "feet"),
  4854. default: true
  4855. },
  4856. {
  4857. name: "Deity Size I",
  4858. height: math.unit(28651.2, "km")
  4859. },
  4860. {
  4861. name: "Deity Size II",
  4862. height: math.unit(171907.2, "km")
  4863. }
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4868. {
  4869. side: {
  4870. height: math.unit(7.2, "meter"),
  4871. weight: math.unit(8.2, "tons"),
  4872. name: "Side",
  4873. image: {
  4874. source: "./media/characters/cryae/side.svg",
  4875. extra: 3500 / 1500
  4876. }
  4877. }
  4878. },
  4879. [
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(7.2, "meter"),
  4883. default: true
  4884. }
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4889. {
  4890. front: {
  4891. height: math.unit(6, "feet"),
  4892. weight: math.unit(175, "lb"),
  4893. name: "Front",
  4894. image: {
  4895. source: "./media/characters/xera/front.svg",
  4896. extra: 2377 / 1972,
  4897. bottom: 75.5 / 2452
  4898. }
  4899. },
  4900. side: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(175, "lb"),
  4903. name: "Side",
  4904. image: {
  4905. source: "./media/characters/xera/side.svg",
  4906. extra: 2345 / 2019,
  4907. bottom: 39.7 / 2384
  4908. }
  4909. },
  4910. back: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(175, "lb"),
  4913. name: "Back",
  4914. image: {
  4915. source: "./media/characters/xera/back.svg",
  4916. extra: 2095 / 1984,
  4917. bottom: 67 / 2166
  4918. }
  4919. },
  4920. },
  4921. [
  4922. {
  4923. name: "Small",
  4924. height: math.unit(10, "feet")
  4925. },
  4926. {
  4927. name: "Macro",
  4928. height: math.unit(500, "meters"),
  4929. default: true
  4930. },
  4931. {
  4932. name: "Macro+",
  4933. height: math.unit(10, "km")
  4934. },
  4935. {
  4936. name: "Gigamacro",
  4937. height: math.unit(25000, "km")
  4938. },
  4939. {
  4940. name: "Teramacro",
  4941. height: math.unit(3e6, "km")
  4942. }
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4947. {
  4948. front: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(175, "lb"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/nebula/front.svg",
  4954. extra: 2566 / 2362,
  4955. bottom: 81 / 2644
  4956. }
  4957. }
  4958. },
  4959. [
  4960. {
  4961. name: "Small",
  4962. height: math.unit(4.5, "meters")
  4963. },
  4964. {
  4965. name: "Macro",
  4966. height: math.unit(1500, "meters"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Megamacro",
  4971. height: math.unit(150, "km")
  4972. },
  4973. {
  4974. name: "Gigamacro",
  4975. height: math.unit(27000, "km")
  4976. }
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(225, "lb"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/abysgar/front.svg",
  4988. extra: 1739/1614,
  4989. bottom: 71/1810
  4990. }
  4991. },
  4992. frontNsfw: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(225, "lb"),
  4995. name: "Front (NSFW)",
  4996. image: {
  4997. source: "./media/characters/abysgar/front-nsfw.svg",
  4998. extra: 1739/1614,
  4999. bottom: 71/1810
  5000. }
  5001. },
  5002. back: {
  5003. height: math.unit(4.6, "feet"),
  5004. weight: math.unit(225, "lb"),
  5005. name: "Back",
  5006. image: {
  5007. source: "./media/characters/abysgar/back.svg",
  5008. extra: 1384/1327,
  5009. bottom: 0/1384
  5010. }
  5011. },
  5012. head: {
  5013. height: math.unit(1.25, "feet"),
  5014. name: "Head",
  5015. image: {
  5016. source: "./media/characters/abysgar/head.svg",
  5017. extra: 669/569,
  5018. bottom: 0/669
  5019. }
  5020. },
  5021. },
  5022. [
  5023. {
  5024. name: "Small",
  5025. height: math.unit(4.5, "meters")
  5026. },
  5027. {
  5028. name: "Macro",
  5029. height: math.unit(1250, "meters"),
  5030. default: true
  5031. },
  5032. {
  5033. name: "Megamacro",
  5034. height: math.unit(125, "km")
  5035. },
  5036. {
  5037. name: "Gigamacro",
  5038. height: math.unit(26000, "km")
  5039. }
  5040. ]
  5041. ))
  5042. characterMakers.push(() => makeCharacter(
  5043. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5044. {
  5045. front: {
  5046. height: math.unit(6, "feet"),
  5047. weight: math.unit(180, "lb"),
  5048. name: "Front",
  5049. image: {
  5050. source: "./media/characters/yakuz/front.svg"
  5051. }
  5052. }
  5053. },
  5054. [
  5055. {
  5056. name: "Small",
  5057. height: math.unit(5, "meters")
  5058. },
  5059. {
  5060. name: "Macro",
  5061. height: math.unit(1500, "meters"),
  5062. default: true
  5063. },
  5064. {
  5065. name: "Megamacro",
  5066. height: math.unit(200, "km")
  5067. },
  5068. {
  5069. name: "Gigamacro",
  5070. height: math.unit(100000, "km")
  5071. }
  5072. ]
  5073. ))
  5074. characterMakers.push(() => makeCharacter(
  5075. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5076. {
  5077. front: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(175, "lb"),
  5080. name: "Front",
  5081. image: {
  5082. source: "./media/characters/mirova/front.svg",
  5083. extra: 3334 / 3071,
  5084. bottom: 42 / 3375.6
  5085. }
  5086. }
  5087. },
  5088. [
  5089. {
  5090. name: "Small",
  5091. height: math.unit(5, "meters")
  5092. },
  5093. {
  5094. name: "Macro",
  5095. height: math.unit(900, "meters"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Megamacro",
  5100. height: math.unit(135, "km")
  5101. },
  5102. {
  5103. name: "Gigamacro",
  5104. height: math.unit(20000, "km")
  5105. }
  5106. ]
  5107. ))
  5108. characterMakers.push(() => makeCharacter(
  5109. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5110. {
  5111. side: {
  5112. height: math.unit(28.35, "feet"),
  5113. weight: math.unit(99.75, "tons"),
  5114. name: "Side",
  5115. image: {
  5116. source: "./media/characters/asana-mech/side.svg",
  5117. extra: 923 / 699,
  5118. bottom: 50 / 975
  5119. }
  5120. },
  5121. chaingun: {
  5122. height: math.unit(7, "feet"),
  5123. weight: math.unit(2400, "lb"),
  5124. name: "Chaingun",
  5125. image: {
  5126. source: "./media/characters/asana-mech/chaingun.svg"
  5127. }
  5128. },
  5129. laser: {
  5130. height: math.unit(7.12, "feet"),
  5131. weight: math.unit(2000, "lb"),
  5132. name: "Laser",
  5133. image: {
  5134. source: "./media/characters/asana-mech/laser.svg"
  5135. }
  5136. },
  5137. },
  5138. [
  5139. {
  5140. name: "Normal",
  5141. height: math.unit(28.35, "feet"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(2500, "feet")
  5147. },
  5148. {
  5149. name: "Megamacro",
  5150. height: math.unit(25, "miles")
  5151. },
  5152. {
  5153. name: "Examacro",
  5154. height: math.unit(6e8, "lightyears")
  5155. },
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5160. {
  5161. front: {
  5162. height: math.unit(5, "meters"),
  5163. weight: math.unit(1000, "kg"),
  5164. name: "Front",
  5165. image: {
  5166. source: "./media/characters/asche/front.svg",
  5167. extra: 1258 / 1190,
  5168. bottom: 47 / 1305
  5169. }
  5170. },
  5171. frontUnderwear: {
  5172. height: math.unit(5, "meters"),
  5173. weight: math.unit(1000, "kg"),
  5174. name: "Front (Underwear)",
  5175. image: {
  5176. source: "./media/characters/asche/front-underwear.svg",
  5177. extra: 1258 / 1190,
  5178. bottom: 47 / 1305
  5179. }
  5180. },
  5181. frontDressed: {
  5182. height: math.unit(5, "meters"),
  5183. weight: math.unit(1000, "kg"),
  5184. name: "Front (Dressed)",
  5185. image: {
  5186. source: "./media/characters/asche/front-dressed.svg",
  5187. extra: 1258 / 1190,
  5188. bottom: 47 / 1305
  5189. }
  5190. },
  5191. frontArmor: {
  5192. height: math.unit(5, "meters"),
  5193. weight: math.unit(1000, "kg"),
  5194. name: "Front (Armored)",
  5195. image: {
  5196. source: "./media/characters/asche/front-armored.svg",
  5197. extra: 1374 / 1308,
  5198. bottom: 23 / 1397
  5199. }
  5200. },
  5201. mp724: {
  5202. height: math.unit(0.96, "meters"),
  5203. weight: math.unit(38, "kg"),
  5204. name: "H&K MP724",
  5205. image: {
  5206. source: "./media/characters/asche/h&k-mp724.svg"
  5207. }
  5208. },
  5209. side: {
  5210. height: math.unit(5, "meters"),
  5211. weight: math.unit(1000, "kg"),
  5212. name: "Side",
  5213. image: {
  5214. source: "./media/characters/asche/side.svg",
  5215. extra: 1717 / 1609,
  5216. bottom: 0.005
  5217. }
  5218. },
  5219. back: {
  5220. height: math.unit(5, "meters"),
  5221. weight: math.unit(1000, "kg"),
  5222. name: "Back",
  5223. image: {
  5224. source: "./media/characters/asche/back.svg",
  5225. extra: 1570 / 1501
  5226. }
  5227. },
  5228. },
  5229. [
  5230. {
  5231. name: "DEFCON 5",
  5232. height: math.unit(5, "meters")
  5233. },
  5234. {
  5235. name: "DEFCON 4",
  5236. height: math.unit(500, "meters"),
  5237. default: true
  5238. },
  5239. {
  5240. name: "DEFCON 3",
  5241. height: math.unit(5, "km")
  5242. },
  5243. {
  5244. name: "DEFCON 2",
  5245. height: math.unit(500, "km")
  5246. },
  5247. {
  5248. name: "DEFCON 1",
  5249. height: math.unit(500000, "km")
  5250. },
  5251. {
  5252. name: "DEFCON 0",
  5253. height: math.unit(3, "gigaparsecs")
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5259. {
  5260. front: {
  5261. height: math.unit(2, "meters"),
  5262. weight: math.unit(76, "kg"),
  5263. name: "Front",
  5264. image: {
  5265. source: "./media/characters/gale/front.svg"
  5266. }
  5267. },
  5268. frontAlt1: {
  5269. height: math.unit(2, "meters"),
  5270. weight: math.unit(76, "kg"),
  5271. name: "Front (Alt 1)",
  5272. image: {
  5273. source: "./media/characters/gale/front-alt-1.svg"
  5274. }
  5275. },
  5276. frontAlt2: {
  5277. height: math.unit(2, "meters"),
  5278. weight: math.unit(76, "kg"),
  5279. name: "Front (Alt 2)",
  5280. image: {
  5281. source: "./media/characters/gale/front-alt-2.svg"
  5282. }
  5283. },
  5284. },
  5285. [
  5286. {
  5287. name: "Normal",
  5288. height: math.unit(7, "feet")
  5289. },
  5290. {
  5291. name: "Macro",
  5292. height: math.unit(150, "feet"),
  5293. default: true
  5294. },
  5295. {
  5296. name: "Macro+",
  5297. height: math.unit(300, "feet")
  5298. },
  5299. ]
  5300. ))
  5301. characterMakers.push(() => makeCharacter(
  5302. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5303. {
  5304. front: {
  5305. height: math.unit(5 + 10/12, "feet"),
  5306. weight: math.unit(67, "kg"),
  5307. name: "Front",
  5308. image: {
  5309. source: "./media/characters/draylen/front.svg",
  5310. extra: 832/777,
  5311. bottom: 85/917
  5312. }
  5313. }
  5314. },
  5315. [
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(5 + 10/12, "feet")
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(150, "feet"),
  5323. default: true
  5324. }
  5325. ]
  5326. ))
  5327. characterMakers.push(() => makeCharacter(
  5328. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5329. {
  5330. front: {
  5331. height: math.unit(7 + 9 / 12, "feet"),
  5332. weight: math.unit(379, "lbs"),
  5333. name: "Front",
  5334. image: {
  5335. source: "./media/characters/chez/front.svg"
  5336. }
  5337. },
  5338. side: {
  5339. height: math.unit(7 + 9 / 12, "feet"),
  5340. weight: math.unit(379, "lbs"),
  5341. name: "Side",
  5342. image: {
  5343. source: "./media/characters/chez/side.svg"
  5344. }
  5345. }
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(7 + 9 / 12, "feet"),
  5351. default: true
  5352. },
  5353. {
  5354. name: "God King",
  5355. height: math.unit(9750000, "meters")
  5356. }
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5361. {
  5362. front: {
  5363. height: math.unit(6, "feet"),
  5364. weight: math.unit(275, "lbs"),
  5365. name: "Front",
  5366. image: {
  5367. source: "./media/characters/kaylum/front.svg",
  5368. bottom: 0.01,
  5369. extra: 1166 / 1031
  5370. }
  5371. },
  5372. frontWingless: {
  5373. height: math.unit(6, "feet"),
  5374. weight: math.unit(275, "lbs"),
  5375. name: "Front (Wingless)",
  5376. image: {
  5377. source: "./media/characters/kaylum/front-wingless.svg",
  5378. bottom: 0.01,
  5379. extra: 1117 / 1031
  5380. }
  5381. }
  5382. },
  5383. [
  5384. {
  5385. name: "Normal",
  5386. height: math.unit(3.05, "meters")
  5387. },
  5388. {
  5389. name: "Master",
  5390. height: math.unit(5.5, "meters")
  5391. },
  5392. {
  5393. name: "Rampage",
  5394. height: math.unit(19, "meters")
  5395. },
  5396. {
  5397. name: "Macro Lite",
  5398. height: math.unit(37, "meters")
  5399. },
  5400. {
  5401. name: "Hyper Predator",
  5402. height: math.unit(61, "meters")
  5403. },
  5404. {
  5405. name: "Macro",
  5406. height: math.unit(138, "meters"),
  5407. default: true
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5413. {
  5414. front: {
  5415. height: math.unit(5 + 5 / 12, "feet"),
  5416. weight: math.unit(120, "lbs"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/geta/front.svg",
  5420. extra: 1003/933,
  5421. bottom: 21/1024
  5422. }
  5423. },
  5424. paw: {
  5425. height: math.unit(0.35, "feet"),
  5426. name: "Paw",
  5427. image: {
  5428. source: "./media/characters/geta/paw.svg"
  5429. }
  5430. },
  5431. },
  5432. [
  5433. {
  5434. name: "Micro",
  5435. height: math.unit(3, "inches"),
  5436. default: true
  5437. },
  5438. {
  5439. name: "Normal",
  5440. height: math.unit(5 + 5 / 12, "feet")
  5441. }
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(300, "lbs"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/tyrnn/front.svg"
  5453. }
  5454. }
  5455. },
  5456. [
  5457. {
  5458. name: "Main Height",
  5459. height: math.unit(355, "feet"),
  5460. default: true
  5461. },
  5462. {
  5463. name: "Fave. Height",
  5464. height: math.unit(2400, "feet")
  5465. }
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5470. {
  5471. front: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(300, "lbs"),
  5474. name: "Front",
  5475. image: {
  5476. source: "./media/characters/appledectomy/front.svg"
  5477. }
  5478. }
  5479. },
  5480. [
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(2500, "feet")
  5484. },
  5485. {
  5486. name: "Megamacro",
  5487. height: math.unit(50, "miles"),
  5488. default: true
  5489. },
  5490. {
  5491. name: "Gigamacro",
  5492. height: math.unit(5000, "miles")
  5493. },
  5494. {
  5495. name: "Teramacro",
  5496. height: math.unit(250000, "miles")
  5497. },
  5498. ]
  5499. ))
  5500. characterMakers.push(() => makeCharacter(
  5501. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5502. {
  5503. front: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(200, "lbs"),
  5506. name: "Front",
  5507. image: {
  5508. source: "./media/characters/vulpes/front.svg",
  5509. extra: 573 / 543,
  5510. bottom: 0.033
  5511. }
  5512. },
  5513. side: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(200, "lbs"),
  5516. name: "Side",
  5517. image: {
  5518. source: "./media/characters/vulpes/side.svg",
  5519. extra: 577 / 549,
  5520. bottom: 11 / 588
  5521. }
  5522. },
  5523. back: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(200, "lbs"),
  5526. name: "Back",
  5527. image: {
  5528. source: "./media/characters/vulpes/back.svg",
  5529. extra: 573 / 549,
  5530. bottom: 20 / 593
  5531. }
  5532. },
  5533. feet: {
  5534. height: math.unit(1.276, "feet"),
  5535. name: "Feet",
  5536. image: {
  5537. source: "./media/characters/vulpes/feet.svg"
  5538. }
  5539. },
  5540. maw: {
  5541. height: math.unit(1.18, "feet"),
  5542. name: "Maw",
  5543. image: {
  5544. source: "./media/characters/vulpes/maw.svg"
  5545. }
  5546. },
  5547. },
  5548. [
  5549. {
  5550. name: "Micro",
  5551. height: math.unit(2, "inches")
  5552. },
  5553. {
  5554. name: "Normal",
  5555. height: math.unit(6.3, "feet")
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(850, "feet")
  5560. },
  5561. {
  5562. name: "Megamacro",
  5563. height: math.unit(7500, "feet"),
  5564. default: true
  5565. },
  5566. {
  5567. name: "Gigamacro",
  5568. height: math.unit(570000, "miles")
  5569. }
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5574. {
  5575. front: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(210, "lbs"),
  5578. name: "Front",
  5579. image: {
  5580. source: "./media/characters/rain-fallen/front.svg"
  5581. }
  5582. },
  5583. side: {
  5584. height: math.unit(6, "feet"),
  5585. weight: math.unit(210, "lbs"),
  5586. name: "Side",
  5587. image: {
  5588. source: "./media/characters/rain-fallen/side.svg"
  5589. }
  5590. },
  5591. back: {
  5592. height: math.unit(6, "feet"),
  5593. weight: math.unit(210, "lbs"),
  5594. name: "Back",
  5595. image: {
  5596. source: "./media/characters/rain-fallen/back.svg"
  5597. }
  5598. },
  5599. feral: {
  5600. height: math.unit(9, "feet"),
  5601. weight: math.unit(700, "lbs"),
  5602. name: "Feral",
  5603. image: {
  5604. source: "./media/characters/rain-fallen/feral.svg"
  5605. }
  5606. },
  5607. },
  5608. [
  5609. {
  5610. name: "Meddling with Mortals",
  5611. height: math.unit(8 + 8/12, "feet")
  5612. },
  5613. {
  5614. name: "Normal",
  5615. height: math.unit(5, "meter")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(150, "meter"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Megamacro",
  5624. height: math.unit(278e6, "meter")
  5625. },
  5626. {
  5627. name: "Gigamacro",
  5628. height: math.unit(2e9, "meter")
  5629. },
  5630. {
  5631. name: "Teramacro",
  5632. height: math.unit(8e12, "meter")
  5633. },
  5634. {
  5635. name: "Devourer",
  5636. height: math.unit(14, "zettameters")
  5637. },
  5638. {
  5639. name: "Scarlet King",
  5640. height: math.unit(18, "yottameters")
  5641. },
  5642. {
  5643. name: "Void",
  5644. height: math.unit(1e88, "yottameters")
  5645. }
  5646. ]
  5647. ))
  5648. characterMakers.push(() => makeCharacter(
  5649. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5650. {
  5651. standing: {
  5652. height: math.unit(6, "feet"),
  5653. weight: math.unit(180, "lbs"),
  5654. name: "Standing",
  5655. image: {
  5656. source: "./media/characters/zaakira/standing.svg",
  5657. extra: 1599/1504,
  5658. bottom: 39/1638
  5659. }
  5660. },
  5661. laying: {
  5662. height: math.unit(3.3, "feet"),
  5663. weight: math.unit(180, "lbs"),
  5664. name: "Laying",
  5665. image: {
  5666. source: "./media/characters/zaakira/laying.svg"
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Normal",
  5673. height: math.unit(12, "feet")
  5674. },
  5675. {
  5676. name: "Macro",
  5677. height: math.unit(279, "feet"),
  5678. default: true
  5679. }
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5684. {
  5685. femSfw: {
  5686. height: math.unit(8, "feet"),
  5687. weight: math.unit(350, "lb"),
  5688. name: "Fem",
  5689. image: {
  5690. source: "./media/characters/sigvald/fem-sfw.svg",
  5691. extra: 182 / 164,
  5692. bottom: 8.7 / 190.5
  5693. }
  5694. },
  5695. femNsfw: {
  5696. height: math.unit(8, "feet"),
  5697. weight: math.unit(350, "lb"),
  5698. name: "Fem (NSFW)",
  5699. image: {
  5700. source: "./media/characters/sigvald/fem-nsfw.svg",
  5701. extra: 182 / 164,
  5702. bottom: 8.7 / 190.5
  5703. }
  5704. },
  5705. maleNsfw: {
  5706. height: math.unit(8, "feet"),
  5707. weight: math.unit(350, "lb"),
  5708. name: "Male (NSFW)",
  5709. image: {
  5710. source: "./media/characters/sigvald/male-nsfw.svg",
  5711. extra: 182 / 164,
  5712. bottom: 8.7 / 190.5
  5713. }
  5714. },
  5715. hermNsfw: {
  5716. height: math.unit(8, "feet"),
  5717. weight: math.unit(350, "lb"),
  5718. name: "Herm (NSFW)",
  5719. image: {
  5720. source: "./media/characters/sigvald/herm-nsfw.svg",
  5721. extra: 182 / 164,
  5722. bottom: 8.7 / 190.5
  5723. }
  5724. },
  5725. dick: {
  5726. height: math.unit(2.36, "feet"),
  5727. name: "Dick",
  5728. image: {
  5729. source: "./media/characters/sigvald/dick.svg"
  5730. }
  5731. },
  5732. eye: {
  5733. height: math.unit(0.31, "feet"),
  5734. name: "Eye",
  5735. image: {
  5736. source: "./media/characters/sigvald/eye.svg"
  5737. }
  5738. },
  5739. mouth: {
  5740. height: math.unit(0.92, "feet"),
  5741. name: "Mouth",
  5742. image: {
  5743. source: "./media/characters/sigvald/mouth.svg"
  5744. }
  5745. },
  5746. paws: {
  5747. height: math.unit(2.2, "feet"),
  5748. name: "Paws",
  5749. image: {
  5750. source: "./media/characters/sigvald/paws.svg"
  5751. }
  5752. }
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(8, "feet")
  5758. },
  5759. {
  5760. name: "Large",
  5761. height: math.unit(12, "feet")
  5762. },
  5763. {
  5764. name: "Larger",
  5765. height: math.unit(20, "feet")
  5766. },
  5767. {
  5768. name: "Macro",
  5769. height: math.unit(150, "feet")
  5770. },
  5771. {
  5772. name: "Macro+",
  5773. height: math.unit(200, "feet"),
  5774. default: true
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5780. {
  5781. side: {
  5782. height: math.unit(12, "feet"),
  5783. weight: math.unit(2000, "kg"),
  5784. name: "Side",
  5785. image: {
  5786. source: "./media/characters/scott/side.svg",
  5787. extra: 754 / 724,
  5788. bottom: 0.069
  5789. }
  5790. },
  5791. upright: {
  5792. height: math.unit(12, "feet"),
  5793. weight: math.unit(2000, "kg"),
  5794. name: "Upright",
  5795. image: {
  5796. source: "./media/characters/scott/upright.svg",
  5797. extra: 3881 / 3722,
  5798. bottom: 0.05
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(12, "feet"),
  5806. default: true
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5812. {
  5813. side: {
  5814. height: math.unit(8, "meters"),
  5815. weight: math.unit(84755, "lbs"),
  5816. name: "Side",
  5817. image: {
  5818. source: "./media/characters/tobias/side.svg",
  5819. extra: 1474 / 1096,
  5820. bottom: 38.9 / 1513.1235
  5821. }
  5822. },
  5823. },
  5824. [
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(8, "meters"),
  5828. default: true
  5829. },
  5830. ]
  5831. ))
  5832. characterMakers.push(() => makeCharacter(
  5833. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5834. {
  5835. front: {
  5836. height: math.unit(5.5, "feet"),
  5837. weight: math.unit(400, "lbs"),
  5838. name: "Front",
  5839. image: {
  5840. source: "./media/characters/kieran/front.svg",
  5841. extra: 2694 / 2364,
  5842. bottom: 217 / 2908
  5843. }
  5844. },
  5845. side: {
  5846. height: math.unit(5.5, "feet"),
  5847. weight: math.unit(400, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/kieran/side.svg",
  5851. extra: 875 / 777,
  5852. bottom: 84.6 / 959
  5853. }
  5854. },
  5855. },
  5856. [
  5857. {
  5858. name: "Normal",
  5859. height: math.unit(5.5, "feet"),
  5860. default: true
  5861. },
  5862. ]
  5863. ))
  5864. characterMakers.push(() => makeCharacter(
  5865. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5866. {
  5867. side: {
  5868. height: math.unit(2, "meters"),
  5869. weight: math.unit(70, "kg"),
  5870. name: "Side",
  5871. image: {
  5872. source: "./media/characters/sanya/side.svg",
  5873. bottom: 0.02,
  5874. extra: 1.02
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Small",
  5881. height: math.unit(2, "meters")
  5882. },
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(3, "meters")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(16, "meters"),
  5890. default: true
  5891. },
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5896. {
  5897. front: {
  5898. height: math.unit(2, "meters"),
  5899. weight: math.unit(120, "kg"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/miranda/front.svg",
  5903. extra: 195 / 185,
  5904. bottom: 10.9 / 206.5
  5905. }
  5906. },
  5907. back: {
  5908. height: math.unit(2, "meters"),
  5909. weight: math.unit(120, "kg"),
  5910. name: "Back",
  5911. image: {
  5912. source: "./media/characters/miranda/back.svg",
  5913. extra: 201 / 193,
  5914. bottom: 2.3 / 203.7
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(10, "feet"),
  5922. default: true
  5923. }
  5924. ]
  5925. ))
  5926. characterMakers.push(() => makeCharacter(
  5927. { name: "James", species: ["deer"], tags: ["anthro"] },
  5928. {
  5929. side: {
  5930. height: math.unit(2, "meters"),
  5931. weight: math.unit(100, "kg"),
  5932. name: "Front",
  5933. image: {
  5934. source: "./media/characters/james/front.svg",
  5935. extra: 10 / 8.5
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(8.5, "feet"),
  5943. default: true
  5944. }
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5949. {
  5950. side: {
  5951. height: math.unit(9.5, "feet"),
  5952. weight: math.unit(2500, "lbs"),
  5953. name: "Side",
  5954. image: {
  5955. source: "./media/characters/heather/side.svg"
  5956. }
  5957. },
  5958. },
  5959. [
  5960. {
  5961. name: "Normal",
  5962. height: math.unit(9.5, "feet"),
  5963. default: true
  5964. }
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5969. {
  5970. side: {
  5971. height: math.unit(6.5, "feet"),
  5972. weight: math.unit(400, "lbs"),
  5973. name: "Side",
  5974. image: {
  5975. source: "./media/characters/lukas/side.svg",
  5976. extra: 7.25 / 6.5
  5977. }
  5978. },
  5979. },
  5980. [
  5981. {
  5982. name: "Normal",
  5983. height: math.unit(6.5, "feet"),
  5984. default: true
  5985. }
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5990. {
  5991. side: {
  5992. height: math.unit(5, "feet"),
  5993. weight: math.unit(3000, "lbs"),
  5994. name: "Side",
  5995. image: {
  5996. source: "./media/characters/louise/side.svg"
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Normal",
  6003. height: math.unit(5, "feet"),
  6004. default: true
  6005. }
  6006. ]
  6007. ))
  6008. characterMakers.push(() => makeCharacter(
  6009. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6010. {
  6011. side: {
  6012. height: math.unit(6, "feet"),
  6013. weight: math.unit(150, "lbs"),
  6014. name: "Side",
  6015. image: {
  6016. source: "./media/characters/ramona/side.svg",
  6017. extra: 871/854,
  6018. bottom: 41/912
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(6 + 4/12, "feet")
  6026. },
  6027. {
  6028. name: "Minimacro",
  6029. height: math.unit(5.3, "meters"),
  6030. default: true
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(20, "stories")
  6035. },
  6036. {
  6037. name: "Macro+",
  6038. height: math.unit(50, "stories")
  6039. },
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6044. {
  6045. standing: {
  6046. height: math.unit(5.75, "feet"),
  6047. weight: math.unit(160, "lbs"),
  6048. name: "Standing",
  6049. image: {
  6050. source: "./media/characters/deerpuff/standing.svg",
  6051. extra: 682 / 624
  6052. }
  6053. },
  6054. sitting: {
  6055. height: math.unit(5.75 / 1.79, "feet"),
  6056. weight: math.unit(160, "lbs"),
  6057. name: "Sitting",
  6058. image: {
  6059. source: "./media/characters/deerpuff/sitting.svg",
  6060. bottom: 44 / 400,
  6061. extra: 1
  6062. }
  6063. },
  6064. taurLaying: {
  6065. height: math.unit(6, "feet"),
  6066. weight: math.unit(400, "lbs"),
  6067. name: "Taur (Laying)",
  6068. image: {
  6069. source: "./media/characters/deerpuff/taur-laying.svg"
  6070. }
  6071. },
  6072. },
  6073. [
  6074. {
  6075. name: "Puffball",
  6076. height: math.unit(6, "inches")
  6077. },
  6078. {
  6079. name: "Normalpuff",
  6080. height: math.unit(5.75, "feet")
  6081. },
  6082. {
  6083. name: "Macropuff",
  6084. height: math.unit(1500, "feet"),
  6085. default: true
  6086. },
  6087. {
  6088. name: "Megapuff",
  6089. height: math.unit(500, "miles")
  6090. },
  6091. {
  6092. name: "Gigapuff",
  6093. height: math.unit(250000, "miles")
  6094. },
  6095. {
  6096. name: "Omegapuff",
  6097. height: math.unit(1000, "lightyears")
  6098. },
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6103. {
  6104. stomping: {
  6105. height: math.unit(6, "feet"),
  6106. weight: math.unit(170, "lbs"),
  6107. name: "Stomping",
  6108. image: {
  6109. source: "./media/characters/vivian/stomping.svg"
  6110. }
  6111. },
  6112. sitting: {
  6113. height: math.unit(6 / 1.75, "feet"),
  6114. weight: math.unit(170, "lbs"),
  6115. name: "Sitting",
  6116. image: {
  6117. source: "./media/characters/vivian/sitting.svg",
  6118. bottom: 1 / 6.4,
  6119. extra: 1,
  6120. }
  6121. },
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(7, "feet"),
  6127. default: true
  6128. },
  6129. {
  6130. name: "Macro",
  6131. height: math.unit(10, "stories")
  6132. },
  6133. {
  6134. name: "Macro+",
  6135. height: math.unit(30, "stories")
  6136. },
  6137. {
  6138. name: "Megamacro",
  6139. height: math.unit(10, "miles")
  6140. },
  6141. {
  6142. name: "Megamacro+",
  6143. height: math.unit(2750000, "meters")
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6149. {
  6150. front: {
  6151. height: math.unit(6, "feet"),
  6152. weight: math.unit(160, "lbs"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/prince/front.svg",
  6156. extra: 1938/1682,
  6157. bottom: 45/1983
  6158. }
  6159. },
  6160. back: {
  6161. height: math.unit(6, "feet"),
  6162. weight: math.unit(160, "lbs"),
  6163. name: "Back",
  6164. image: {
  6165. source: "./media/characters/prince/back.svg",
  6166. extra: 1955/1726,
  6167. bottom: 6/1961
  6168. }
  6169. },
  6170. },
  6171. [
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(7.75, "feet"),
  6175. default: true
  6176. },
  6177. {
  6178. name: "Not cute",
  6179. height: math.unit(17, "feet")
  6180. },
  6181. {
  6182. name: "I said NOT",
  6183. height: math.unit(91, "feet")
  6184. },
  6185. {
  6186. name: "Please stop",
  6187. height: math.unit(560, "feet")
  6188. },
  6189. {
  6190. name: "What have you done",
  6191. height: math.unit(2200, "feet")
  6192. },
  6193. {
  6194. name: "Deer God",
  6195. height: math.unit(3.6, "miles")
  6196. },
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6201. {
  6202. standing: {
  6203. height: math.unit(6, "feet"),
  6204. weight: math.unit(300, "lbs"),
  6205. name: "Standing",
  6206. image: {
  6207. source: "./media/characters/psymon/standing.svg",
  6208. extra: 1888 / 1810,
  6209. bottom: 0.05
  6210. }
  6211. },
  6212. slithering: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(300, "lbs"),
  6215. name: "Slithering",
  6216. image: {
  6217. source: "./media/characters/psymon/slithering.svg",
  6218. extra: 1330 / 1224
  6219. }
  6220. },
  6221. slitheringAlt: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(300, "lbs"),
  6224. name: "Slithering (Alt)",
  6225. image: {
  6226. source: "./media/characters/psymon/slithering-alt.svg",
  6227. extra: 1330 / 1224
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(11.25, "feet"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Large",
  6239. height: math.unit(27, "feet")
  6240. },
  6241. {
  6242. name: "Giant",
  6243. height: math.unit(87, "feet")
  6244. },
  6245. {
  6246. name: "Macro",
  6247. height: math.unit(365, "feet")
  6248. },
  6249. {
  6250. name: "Megamacro",
  6251. height: math.unit(3, "miles")
  6252. },
  6253. {
  6254. name: "World Serpent",
  6255. height: math.unit(8000, "miles")
  6256. },
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(180, "lbs"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/daimos/front.svg",
  6268. extra: 4160 / 3897,
  6269. bottom: 0.021
  6270. }
  6271. }
  6272. },
  6273. [
  6274. {
  6275. name: "Normal",
  6276. height: math.unit(8, "feet"),
  6277. default: true
  6278. },
  6279. {
  6280. name: "Big Dog",
  6281. height: math.unit(22, "feet")
  6282. },
  6283. {
  6284. name: "Macro",
  6285. height: math.unit(127, "feet")
  6286. },
  6287. {
  6288. name: "Megamacro",
  6289. height: math.unit(3600, "feet")
  6290. },
  6291. ]
  6292. ))
  6293. characterMakers.push(() => makeCharacter(
  6294. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6295. {
  6296. side: {
  6297. height: math.unit(6, "feet"),
  6298. weight: math.unit(180, "lbs"),
  6299. name: "Side",
  6300. image: {
  6301. source: "./media/characters/blake/side.svg",
  6302. extra: 1212 / 1120,
  6303. bottom: 0.05
  6304. }
  6305. },
  6306. crouched: {
  6307. height: math.unit(6 * 0.57, "feet"),
  6308. weight: math.unit(180, "lbs"),
  6309. name: "Crouched",
  6310. image: {
  6311. source: "./media/characters/blake/crouched.svg",
  6312. extra: 840 / 587,
  6313. bottom: 0.04
  6314. }
  6315. },
  6316. bent: {
  6317. height: math.unit(6 * 0.75, "feet"),
  6318. weight: math.unit(180, "lbs"),
  6319. name: "Bent",
  6320. image: {
  6321. source: "./media/characters/blake/bent.svg",
  6322. extra: 592 / 544,
  6323. bottom: 0.035
  6324. }
  6325. },
  6326. },
  6327. [
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(8 + 1 / 6, "feet"),
  6331. default: true
  6332. },
  6333. {
  6334. name: "Big Backside",
  6335. height: math.unit(37, "feet")
  6336. },
  6337. {
  6338. name: "Subway Shredder",
  6339. height: math.unit(72, "feet")
  6340. },
  6341. {
  6342. name: "City Carver",
  6343. height: math.unit(1675, "feet")
  6344. },
  6345. {
  6346. name: "Tectonic Tweaker",
  6347. height: math.unit(2300, "miles")
  6348. },
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(180, "lbs"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/guisetto/front.svg",
  6360. extra: 856 / 817,
  6361. bottom: 0.06
  6362. }
  6363. },
  6364. airborne: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(180, "lbs"),
  6367. name: "Airborne",
  6368. image: {
  6369. source: "./media/characters/guisetto/airborne.svg",
  6370. extra: 584 / 525
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(10 + 11 / 12, "feet"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Large",
  6382. height: math.unit(35, "feet")
  6383. },
  6384. {
  6385. name: "Macro",
  6386. height: math.unit(475, "feet")
  6387. },
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6392. {
  6393. front: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(180, "lbs"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/luxor/front.svg",
  6399. extra: 2940 / 2152
  6400. }
  6401. },
  6402. back: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(180, "lbs"),
  6405. name: "Back",
  6406. image: {
  6407. source: "./media/characters/luxor/back.svg",
  6408. extra: 1083 / 960
  6409. }
  6410. },
  6411. },
  6412. [
  6413. {
  6414. name: "Normal",
  6415. height: math.unit(5 + 5 / 6, "feet"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Lamp",
  6420. height: math.unit(50, "feet")
  6421. },
  6422. {
  6423. name: "Lämp",
  6424. height: math.unit(300, "feet")
  6425. },
  6426. {
  6427. name: "The sun is a lamp",
  6428. height: math.unit(250000, "miles")
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6434. {
  6435. front: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(50, "lbs"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/huoyan/front.svg"
  6441. }
  6442. },
  6443. side: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(180, "lbs"),
  6446. name: "Side",
  6447. image: {
  6448. source: "./media/characters/huoyan/side.svg"
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Chef",
  6455. height: math.unit(9, "feet")
  6456. },
  6457. {
  6458. name: "Normal",
  6459. height: math.unit(65, "feet"),
  6460. default: true
  6461. },
  6462. {
  6463. name: "Macro",
  6464. height: math.unit(780, "feet")
  6465. },
  6466. {
  6467. name: "Flaming Mountain",
  6468. height: math.unit(4.8, "miles")
  6469. },
  6470. {
  6471. name: "Celestial",
  6472. height: math.unit(765000, "miles")
  6473. },
  6474. ]
  6475. ))
  6476. characterMakers.push(() => makeCharacter(
  6477. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6478. {
  6479. front: {
  6480. height: math.unit(5 + 3 / 4, "feet"),
  6481. weight: math.unit(120, "lbs"),
  6482. name: "Front",
  6483. image: {
  6484. source: "./media/characters/tails/front.svg"
  6485. }
  6486. }
  6487. },
  6488. [
  6489. {
  6490. name: "Normal",
  6491. height: math.unit(5 + 3 / 4, "feet"),
  6492. default: true
  6493. }
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(4, "feet"),
  6501. weight: math.unit(50, "lbs"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/rainy/front.svg"
  6505. }
  6506. }
  6507. },
  6508. [
  6509. {
  6510. name: "Macro",
  6511. height: math.unit(800, "feet"),
  6512. default: true
  6513. }
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(150, "lbs"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/rainier/front.svg"
  6525. }
  6526. }
  6527. },
  6528. [
  6529. {
  6530. name: "Micro",
  6531. height: math.unit(2, "mm"),
  6532. default: true
  6533. }
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6538. {
  6539. front: {
  6540. height: math.unit(8 + 4/12, "feet"),
  6541. weight: math.unit(450, "kilograms"),
  6542. volume: math.unit(5, "cups"),
  6543. name: "Front",
  6544. image: {
  6545. source: "./media/characters/andy-renard/front.svg",
  6546. extra: 1839/1726,
  6547. bottom: 134/1973
  6548. }
  6549. },
  6550. back: {
  6551. height: math.unit(8 + 4/12, "feet"),
  6552. weight: math.unit(450, "kilograms"),
  6553. volume: math.unit(5, "cups"),
  6554. name: "Back",
  6555. image: {
  6556. source: "./media/characters/andy-renard/back.svg",
  6557. extra: 1838/1710,
  6558. bottom: 105/1943
  6559. }
  6560. },
  6561. },
  6562. [
  6563. {
  6564. name: "Tall",
  6565. height: math.unit(8 + 4/12, "feet")
  6566. },
  6567. {
  6568. name: "Mini Macro",
  6569. height: math.unit(15, "feet"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(100, "feet")
  6575. },
  6576. {
  6577. name: "Mega Macro",
  6578. height: math.unit(1000, "feet")
  6579. },
  6580. {
  6581. name: "Giga Macro",
  6582. height: math.unit(10, "miles")
  6583. },
  6584. {
  6585. name: "God Macro",
  6586. height: math.unit(1, "multiverse")
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(210, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/cimmaron/front-sfw.svg",
  6599. extra: 701 / 676,
  6600. bottom: 0.046
  6601. }
  6602. },
  6603. back: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(210, "lbs"),
  6606. name: "Back",
  6607. image: {
  6608. source: "./media/characters/cimmaron/back-sfw.svg",
  6609. extra: 701 / 676,
  6610. bottom: 0.046
  6611. }
  6612. },
  6613. frontNsfw: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(210, "lbs"),
  6616. name: "Front (NSFW)",
  6617. image: {
  6618. source: "./media/characters/cimmaron/front-nsfw.svg",
  6619. extra: 701 / 676,
  6620. bottom: 0.046
  6621. }
  6622. },
  6623. backNsfw: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(210, "lbs"),
  6626. name: "Back (NSFW)",
  6627. image: {
  6628. source: "./media/characters/cimmaron/back-nsfw.svg",
  6629. extra: 701 / 676,
  6630. bottom: 0.046
  6631. }
  6632. },
  6633. dick: {
  6634. height: math.unit(1.714, "feet"),
  6635. name: "Dick",
  6636. image: {
  6637. source: "./media/characters/cimmaron/dick.svg"
  6638. }
  6639. },
  6640. },
  6641. [
  6642. {
  6643. name: "Normal",
  6644. height: math.unit(6, "feet"),
  6645. default: true
  6646. },
  6647. {
  6648. name: "Macro Mayor",
  6649. height: math.unit(350, "meters")
  6650. },
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6655. {
  6656. front: {
  6657. height: math.unit(6, "feet"),
  6658. weight: math.unit(200, "lbs"),
  6659. name: "Front",
  6660. image: {
  6661. source: "./media/characters/akari/front.svg",
  6662. extra: 962 / 901,
  6663. bottom: 0.04
  6664. }
  6665. }
  6666. },
  6667. [
  6668. {
  6669. name: "Micro",
  6670. height: math.unit(5, "inches"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(7, "feet")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(140, "lbs"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/cynosura/front.svg",
  6688. extra: 437/410,
  6689. bottom: 9/446
  6690. }
  6691. },
  6692. back: {
  6693. height: math.unit(6, "feet"),
  6694. weight: math.unit(140, "lbs"),
  6695. name: "Back",
  6696. image: {
  6697. source: "./media/characters/cynosura/back.svg",
  6698. extra: 1304/1160,
  6699. bottom: 71/1375
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Micro",
  6706. height: math.unit(4, "inches")
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(5.75, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Tall",
  6715. height: math.unit(10, "feet")
  6716. },
  6717. {
  6718. name: "Big",
  6719. height: math.unit(20, "feet")
  6720. },
  6721. {
  6722. name: "Macro",
  6723. height: math.unit(50, "feet")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(13 + 2/12, "feet"),
  6732. weight: math.unit(800, "kg"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/gin/front.svg",
  6736. extra: 1312/1191,
  6737. bottom: 45/1357
  6738. }
  6739. },
  6740. mouth: {
  6741. height: math.unit(2.39 * 1.8, "feet"),
  6742. name: "Mouth",
  6743. image: {
  6744. source: "./media/characters/gin/mouth.svg"
  6745. }
  6746. },
  6747. hand: {
  6748. height: math.unit(1.57 * 2.19, "feet"),
  6749. name: "Hand",
  6750. image: {
  6751. source: "./media/characters/gin/hand.svg"
  6752. }
  6753. },
  6754. foot: {
  6755. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6756. name: "Foot",
  6757. image: {
  6758. source: "./media/characters/gin/foot.svg"
  6759. }
  6760. },
  6761. sole: {
  6762. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6763. name: "Sole",
  6764. image: {
  6765. source: "./media/characters/gin/sole.svg"
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "Very Small",
  6772. height: math.unit(13 + 2 / 12, "feet")
  6773. },
  6774. {
  6775. name: "Micro",
  6776. height: math.unit(600, "miles")
  6777. },
  6778. {
  6779. name: "Regular",
  6780. height: math.unit(20, "earths"),
  6781. default: true
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(2.2, "solarradii")
  6786. },
  6787. {
  6788. name: "Teramacro",
  6789. height: math.unit(1.2, "galaxies")
  6790. },
  6791. {
  6792. name: "Omegamacro",
  6793. height: math.unit(200, "universes")
  6794. },
  6795. ]
  6796. ))
  6797. characterMakers.push(() => makeCharacter(
  6798. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6799. {
  6800. front: {
  6801. height: math.unit(6 + 1 / 6, "feet"),
  6802. weight: math.unit(178, "lbs"),
  6803. name: "Front",
  6804. image: {
  6805. source: "./media/characters/guy/front.svg"
  6806. }
  6807. }
  6808. },
  6809. [
  6810. {
  6811. name: "Normal",
  6812. height: math.unit(6 + 1 / 6, "feet"),
  6813. default: true
  6814. },
  6815. {
  6816. name: "Large",
  6817. height: math.unit(25 + 7 / 12, "feet")
  6818. },
  6819. {
  6820. name: "Macro",
  6821. height: math.unit(60 + 9 / 12, "feet")
  6822. },
  6823. {
  6824. name: "Macro+",
  6825. height: math.unit(246, "feet")
  6826. },
  6827. {
  6828. name: "Macro++",
  6829. height: math.unit(878, "feet")
  6830. }
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6835. {
  6836. front: {
  6837. height: math.unit(9, "feet"),
  6838. weight: math.unit(800, "lbs"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/tiberius/front.svg",
  6842. extra: 2295 / 2071
  6843. }
  6844. },
  6845. back: {
  6846. height: math.unit(9, "feet"),
  6847. weight: math.unit(800, "lbs"),
  6848. name: "Back",
  6849. image: {
  6850. source: "./media/characters/tiberius/back.svg",
  6851. extra: 2373 / 2160
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(9, "feet"),
  6859. default: true
  6860. }
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(600, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/surgo/front.svg",
  6872. extra: 3591 / 2227
  6873. }
  6874. },
  6875. back: {
  6876. height: math.unit(6, "feet"),
  6877. weight: math.unit(600, "lbs"),
  6878. name: "Back",
  6879. image: {
  6880. source: "./media/characters/surgo/back.svg",
  6881. extra: 3557 / 2228
  6882. }
  6883. },
  6884. laying: {
  6885. height: math.unit(6 * 0.85, "feet"),
  6886. weight: math.unit(600, "lbs"),
  6887. name: "Laying",
  6888. image: {
  6889. source: "./media/characters/surgo/laying.svg"
  6890. }
  6891. },
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(6, "feet"),
  6897. default: true
  6898. }
  6899. ]
  6900. ))
  6901. characterMakers.push(() => makeCharacter(
  6902. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6903. {
  6904. side: {
  6905. height: math.unit(6, "feet"),
  6906. weight: math.unit(150, "lbs"),
  6907. name: "Side",
  6908. image: {
  6909. source: "./media/characters/cibus/side.svg",
  6910. extra: 800 / 400
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(6, "feet"),
  6918. default: true
  6919. }
  6920. ]
  6921. ))
  6922. characterMakers.push(() => makeCharacter(
  6923. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6924. {
  6925. front: {
  6926. height: math.unit(6, "feet"),
  6927. weight: math.unit(240, "lbs"),
  6928. name: "Front",
  6929. image: {
  6930. source: "./media/characters/nibbles/front.svg"
  6931. }
  6932. },
  6933. side: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(240, "lbs"),
  6936. name: "Side",
  6937. image: {
  6938. source: "./media/characters/nibbles/side.svg"
  6939. }
  6940. },
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(9, "feet"),
  6946. default: true
  6947. }
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6952. {
  6953. side: {
  6954. height: math.unit(5 + 1 / 6, "feet"),
  6955. weight: math.unit(130, "lbs"),
  6956. name: "Side",
  6957. image: {
  6958. source: "./media/characters/rikky/side.svg",
  6959. extra: 851 / 801
  6960. }
  6961. },
  6962. },
  6963. [
  6964. {
  6965. name: "Normal",
  6966. height: math.unit(5 + 1 / 6, "feet")
  6967. },
  6968. {
  6969. name: "Macro",
  6970. height: math.unit(152, "feet"),
  6971. default: true
  6972. },
  6973. {
  6974. name: "Megamacro",
  6975. height: math.unit(7, "miles")
  6976. }
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6981. {
  6982. side: {
  6983. height: math.unit(370, "cm"),
  6984. weight: math.unit(350, "lbs"),
  6985. name: "Side",
  6986. image: {
  6987. source: "./media/characters/malfressa/side.svg"
  6988. }
  6989. },
  6990. walking: {
  6991. height: math.unit(370, "cm"),
  6992. weight: math.unit(350, "lbs"),
  6993. name: "Walking",
  6994. image: {
  6995. source: "./media/characters/malfressa/walking.svg"
  6996. }
  6997. },
  6998. feral: {
  6999. height: math.unit(2500, "cm"),
  7000. weight: math.unit(100000, "lbs"),
  7001. name: "Feral",
  7002. image: {
  7003. source: "./media/characters/malfressa/feral.svg",
  7004. extra: 2108 / 837,
  7005. bottom: 0.02
  7006. }
  7007. },
  7008. },
  7009. [
  7010. {
  7011. name: "Normal",
  7012. height: math.unit(370, "cm")
  7013. },
  7014. {
  7015. name: "Macro",
  7016. height: math.unit(300, "meters"),
  7017. default: true
  7018. }
  7019. ]
  7020. ))
  7021. characterMakers.push(() => makeCharacter(
  7022. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7023. {
  7024. front: {
  7025. height: math.unit(6, "feet"),
  7026. weight: math.unit(60, "kg"),
  7027. name: "Front",
  7028. image: {
  7029. source: "./media/characters/jaro/front.svg",
  7030. extra: 845/817,
  7031. bottom: 45/890
  7032. }
  7033. },
  7034. back: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(60, "kg"),
  7037. name: "Back",
  7038. image: {
  7039. source: "./media/characters/jaro/back.svg",
  7040. extra: 847/817,
  7041. bottom: 34/881
  7042. }
  7043. },
  7044. },
  7045. [
  7046. {
  7047. name: "Micro",
  7048. height: math.unit(7, "inches")
  7049. },
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(5.5, "feet"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Minimacro",
  7057. height: math.unit(20, "feet")
  7058. },
  7059. {
  7060. name: "Macro",
  7061. height: math.unit(200, "meters")
  7062. }
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7067. {
  7068. front: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(195, "lb"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/rogue/front.svg"
  7074. }
  7075. },
  7076. },
  7077. [
  7078. {
  7079. name: "Macro",
  7080. height: math.unit(90, "feet"),
  7081. default: true
  7082. },
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7087. {
  7088. standing: {
  7089. height: math.unit(5 + 8 / 12, "feet"),
  7090. weight: math.unit(140, "lb"),
  7091. name: "Standing",
  7092. image: {
  7093. source: "./media/characters/piper/standing.svg",
  7094. extra: 1440/1284,
  7095. bottom: 66/1506
  7096. }
  7097. },
  7098. running: {
  7099. height: math.unit(5 + 8 / 12, "feet"),
  7100. weight: math.unit(140, "lb"),
  7101. name: "Running",
  7102. image: {
  7103. source: "./media/characters/piper/running.svg",
  7104. extra: 3948/3655,
  7105. bottom: 0/3948
  7106. }
  7107. },
  7108. sole: {
  7109. height: math.unit(0.81, "feet"),
  7110. weight: math.unit(2, "kg"),
  7111. name: "Sole",
  7112. image: {
  7113. source: "./media/characters/piper/sole.svg"
  7114. }
  7115. },
  7116. nipple: {
  7117. height: math.unit(0.25, "feet"),
  7118. weight: math.unit(1.5, "lb"),
  7119. name: "Nipple",
  7120. image: {
  7121. source: "./media/characters/piper/nipple.svg"
  7122. }
  7123. },
  7124. head: {
  7125. height: math.unit(1.1, "feet"),
  7126. name: "Head",
  7127. image: {
  7128. source: "./media/characters/piper/head.svg"
  7129. }
  7130. },
  7131. },
  7132. [
  7133. {
  7134. name: "Micro",
  7135. height: math.unit(2, "inches")
  7136. },
  7137. {
  7138. name: "Normal",
  7139. height: math.unit(5 + 8 / 12, "feet")
  7140. },
  7141. {
  7142. name: "Macro",
  7143. height: math.unit(250, "feet"),
  7144. default: true
  7145. },
  7146. {
  7147. name: "Megamacro",
  7148. height: math.unit(7, "miles")
  7149. },
  7150. ]
  7151. ))
  7152. characterMakers.push(() => makeCharacter(
  7153. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7154. {
  7155. front: {
  7156. height: math.unit(6, "feet"),
  7157. weight: math.unit(220, "lb"),
  7158. name: "Front",
  7159. image: {
  7160. source: "./media/characters/gemini/front.svg"
  7161. }
  7162. },
  7163. back: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(220, "lb"),
  7166. name: "Back",
  7167. image: {
  7168. source: "./media/characters/gemini/back.svg"
  7169. }
  7170. },
  7171. kneeling: {
  7172. height: math.unit(6 / 1.5, "feet"),
  7173. weight: math.unit(220, "lb"),
  7174. name: "Kneeling",
  7175. image: {
  7176. source: "./media/characters/gemini/kneeling.svg",
  7177. bottom: 0.02
  7178. }
  7179. },
  7180. },
  7181. [
  7182. {
  7183. name: "Macro",
  7184. height: math.unit(300, "meters"),
  7185. default: true
  7186. },
  7187. {
  7188. name: "Megamacro",
  7189. height: math.unit(6900, "meters")
  7190. },
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7195. {
  7196. anthro: {
  7197. height: math.unit(2.35, "meters"),
  7198. weight: math.unit(73, "kg"),
  7199. name: "Anthro",
  7200. image: {
  7201. source: "./media/characters/alicia/anthro.svg",
  7202. extra: 2571 / 2385,
  7203. bottom: 75 / 2648
  7204. }
  7205. },
  7206. paw: {
  7207. height: math.unit(1.32, "feet"),
  7208. name: "Paw",
  7209. image: {
  7210. source: "./media/characters/alicia/paw.svg"
  7211. }
  7212. },
  7213. feral: {
  7214. height: math.unit(1.69, "meters"),
  7215. weight: math.unit(73, "kg"),
  7216. name: "Feral",
  7217. image: {
  7218. source: "./media/characters/alicia/feral.svg",
  7219. extra: 2123 / 1715,
  7220. bottom: 222 / 2349
  7221. }
  7222. },
  7223. },
  7224. [
  7225. {
  7226. name: "Normal",
  7227. height: math.unit(2.35, "meters")
  7228. },
  7229. {
  7230. name: "Macro",
  7231. height: math.unit(60, "meters"),
  7232. default: true
  7233. },
  7234. {
  7235. name: "Megamacro",
  7236. height: math.unit(10000, "kilometers")
  7237. },
  7238. ]
  7239. ))
  7240. characterMakers.push(() => makeCharacter(
  7241. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7242. {
  7243. front: {
  7244. height: math.unit(7, "feet"),
  7245. weight: math.unit(250, "lbs"),
  7246. name: "Front",
  7247. image: {
  7248. source: "./media/characters/archy/front.svg"
  7249. }
  7250. }
  7251. },
  7252. [
  7253. {
  7254. name: "Micro",
  7255. height: math.unit(1, "inch")
  7256. },
  7257. {
  7258. name: "Shorty",
  7259. height: math.unit(5, "feet")
  7260. },
  7261. {
  7262. name: "Normal",
  7263. height: math.unit(7, "feet")
  7264. },
  7265. {
  7266. name: "Macro",
  7267. height: math.unit(600, "meters"),
  7268. default: true
  7269. },
  7270. {
  7271. name: "Megamacro",
  7272. height: math.unit(1, "mile")
  7273. },
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7278. {
  7279. front: {
  7280. height: math.unit(1.65, "meters"),
  7281. weight: math.unit(74, "kg"),
  7282. name: "Front",
  7283. image: {
  7284. source: "./media/characters/berri/front.svg",
  7285. extra: 857 / 837,
  7286. bottom: 18 / 877
  7287. }
  7288. },
  7289. bum: {
  7290. height: math.unit(1.46, "feet"),
  7291. name: "Bum",
  7292. image: {
  7293. source: "./media/characters/berri/bum.svg"
  7294. }
  7295. },
  7296. mouth: {
  7297. height: math.unit(0.44, "feet"),
  7298. name: "Mouth",
  7299. image: {
  7300. source: "./media/characters/berri/mouth.svg"
  7301. }
  7302. },
  7303. paw: {
  7304. height: math.unit(0.826, "feet"),
  7305. name: "Paw",
  7306. image: {
  7307. source: "./media/characters/berri/paw.svg"
  7308. }
  7309. },
  7310. },
  7311. [
  7312. {
  7313. name: "Normal",
  7314. height: math.unit(1.65, "meters")
  7315. },
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(60, "m"),
  7319. default: true
  7320. },
  7321. {
  7322. name: "Megamacro",
  7323. height: math.unit(9.213, "km")
  7324. },
  7325. {
  7326. name: "Planet Eater",
  7327. height: math.unit(489, "megameters")
  7328. },
  7329. {
  7330. name: "Teramacro",
  7331. height: math.unit(2471635000000, "meters")
  7332. },
  7333. {
  7334. name: "Examacro",
  7335. height: math.unit(8.0624e+26, "meters")
  7336. }
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7341. {
  7342. front: {
  7343. height: math.unit(1.72, "meters"),
  7344. weight: math.unit(68, "kg"),
  7345. name: "Front",
  7346. image: {
  7347. source: "./media/characters/lexi/front.svg"
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Very Smol",
  7354. height: math.unit(10, "mm")
  7355. },
  7356. {
  7357. name: "Micro",
  7358. height: math.unit(6.8, "cm"),
  7359. default: true
  7360. },
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(1.72, "m")
  7364. }
  7365. ]
  7366. ))
  7367. characterMakers.push(() => makeCharacter(
  7368. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7369. {
  7370. front: {
  7371. height: math.unit(1.69, "meters"),
  7372. weight: math.unit(68, "kg"),
  7373. name: "Front",
  7374. image: {
  7375. source: "./media/characters/martin/front.svg",
  7376. extra: 596 / 581
  7377. }
  7378. }
  7379. },
  7380. [
  7381. {
  7382. name: "Micro",
  7383. height: math.unit(6.85, "cm"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(1.69, "m")
  7389. }
  7390. ]
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7394. {
  7395. front: {
  7396. height: math.unit(1.69, "meters"),
  7397. weight: math.unit(68, "kg"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/juno/front.svg"
  7401. }
  7402. }
  7403. },
  7404. [
  7405. {
  7406. name: "Micro",
  7407. height: math.unit(7, "cm")
  7408. },
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(1.89, "m")
  7412. },
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(353, "meters"),
  7416. default: true
  7417. }
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(1.93, "meters"),
  7425. weight: math.unit(83, "kg"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/samantha/front.svg"
  7429. }
  7430. },
  7431. frontClothed: {
  7432. height: math.unit(1.93, "meters"),
  7433. weight: math.unit(83, "kg"),
  7434. name: "Front (Clothed)",
  7435. image: {
  7436. source: "./media/characters/samantha/front-clothed.svg"
  7437. }
  7438. },
  7439. back: {
  7440. height: math.unit(1.93, "meters"),
  7441. weight: math.unit(83, "kg"),
  7442. name: "Back",
  7443. image: {
  7444. source: "./media/characters/samantha/back.svg"
  7445. }
  7446. },
  7447. },
  7448. [
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(1.93, "m")
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(74, "meters"),
  7456. default: true
  7457. },
  7458. {
  7459. name: "Macro+",
  7460. height: math.unit(223, "meters"),
  7461. },
  7462. {
  7463. name: "Megamacro",
  7464. height: math.unit(8381, "meters"),
  7465. },
  7466. {
  7467. name: "Megamacro+",
  7468. height: math.unit(12000, "kilometers")
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(1.92, "meters"),
  7477. weight: math.unit(80, "kg"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/dr-clay/front.svg"
  7481. }
  7482. },
  7483. frontClothed: {
  7484. height: math.unit(1.92, "meters"),
  7485. weight: math.unit(80, "kg"),
  7486. name: "Front (Clothed)",
  7487. image: {
  7488. source: "./media/characters/dr-clay/front-clothed.svg"
  7489. }
  7490. }
  7491. },
  7492. [
  7493. {
  7494. name: "Normal",
  7495. height: math.unit(1.92, "m")
  7496. },
  7497. {
  7498. name: "Macro",
  7499. height: math.unit(214, "meters"),
  7500. default: true
  7501. },
  7502. {
  7503. name: "Macro+",
  7504. height: math.unit(12.237, "meters"),
  7505. },
  7506. {
  7507. name: "Megamacro",
  7508. height: math.unit(557, "megameters"),
  7509. },
  7510. {
  7511. name: "Unimaginable",
  7512. height: math.unit(120e9, "lightyears")
  7513. },
  7514. ]
  7515. ))
  7516. characterMakers.push(() => makeCharacter(
  7517. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7518. {
  7519. front: {
  7520. height: math.unit(2, "meters"),
  7521. weight: math.unit(80, "kg"),
  7522. name: "Front",
  7523. image: {
  7524. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7525. }
  7526. }
  7527. },
  7528. [
  7529. {
  7530. name: "Teramacro",
  7531. height: math.unit(500000, "lightyears"),
  7532. default: true
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7538. {
  7539. crux: {
  7540. height: math.unit(2, "meters"),
  7541. weight: math.unit(150, "kg"),
  7542. name: "Crux",
  7543. image: {
  7544. source: "./media/characters/vemus/crux.svg",
  7545. extra: 1074/936,
  7546. bottom: 23/1097
  7547. }
  7548. },
  7549. skunkTanuki: {
  7550. height: math.unit(2, "meters"),
  7551. weight: math.unit(150, "kg"),
  7552. name: "Skunk-Tanuki",
  7553. image: {
  7554. source: "./media/characters/vemus/skunk-tanuki.svg",
  7555. extra: 926/893,
  7556. bottom: 20/946
  7557. }
  7558. },
  7559. },
  7560. [
  7561. {
  7562. name: "Normal",
  7563. height: math.unit(4, "meters"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Big",
  7568. height: math.unit(8, "meters")
  7569. },
  7570. {
  7571. name: "Macro",
  7572. height: math.unit(100, "meters")
  7573. },
  7574. {
  7575. name: "Macro+",
  7576. height: math.unit(1500, "meters")
  7577. },
  7578. {
  7579. name: "Stellar",
  7580. height: math.unit(14e8, "meters")
  7581. },
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7586. {
  7587. front: {
  7588. height: math.unit(2, "meters"),
  7589. weight: math.unit(70, "kg"),
  7590. name: "Front",
  7591. image: {
  7592. source: "./media/characters/beherit/front.svg",
  7593. extra: 1234/1109,
  7594. bottom: 55/1289
  7595. }
  7596. }
  7597. },
  7598. [
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(6, "feet")
  7602. },
  7603. {
  7604. name: "Lorg",
  7605. height: math.unit(25, "feet"),
  7606. default: true
  7607. },
  7608. {
  7609. name: "Lorger",
  7610. height: math.unit(75, "feet")
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(200, "meters")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(2, "meters"),
  7623. weight: math.unit(150, "kg"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/everett/front.svg",
  7627. extra: 1017/866,
  7628. bottom: 86/1103
  7629. }
  7630. },
  7631. paw: {
  7632. height: math.unit(2 / 3.6, "meters"),
  7633. name: "Paw",
  7634. image: {
  7635. source: "./media/characters/everett/paw.svg"
  7636. }
  7637. },
  7638. },
  7639. [
  7640. {
  7641. name: "Normal",
  7642. height: math.unit(15, "feet"),
  7643. default: true
  7644. },
  7645. {
  7646. name: "Lorg",
  7647. height: math.unit(70, "feet"),
  7648. default: true
  7649. },
  7650. {
  7651. name: "Lorger",
  7652. height: math.unit(250, "feet")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(500, "meters")
  7657. },
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(2, "meters"),
  7665. weight: math.unit(86, "kg"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/rose/front.svg",
  7669. extra: 1785/1636,
  7670. bottom: 30/1815
  7671. },
  7672. form: "liom",
  7673. default: true
  7674. },
  7675. frontSporty: {
  7676. height: math.unit(2, "meters"),
  7677. weight: math.unit(86, "kg"),
  7678. name: "Front (Sporty)",
  7679. image: {
  7680. source: "./media/characters/rose/front-sporty.svg",
  7681. extra: 350/335,
  7682. bottom: 10/360
  7683. },
  7684. form: "liom"
  7685. },
  7686. frontAlt: {
  7687. height: math.unit(1.6, "meters"),
  7688. weight: math.unit(86, "kg"),
  7689. name: "Front (Alt)",
  7690. image: {
  7691. source: "./media/characters/rose/front-alt.svg",
  7692. extra: 299/283,
  7693. bottom: 3/302
  7694. },
  7695. form: "liom"
  7696. },
  7697. plush: {
  7698. height: math.unit(2, "meters"),
  7699. weight: math.unit(86/3, "kg"),
  7700. name: "Plush",
  7701. image: {
  7702. source: "./media/characters/rose/plush.svg",
  7703. extra: 361/337,
  7704. bottom: 11/372
  7705. },
  7706. form: "plush",
  7707. default: true
  7708. },
  7709. faeStanding: {
  7710. height: math.unit(10, "cm"),
  7711. weight: math.unit(10, "grams"),
  7712. name: "Standing",
  7713. image: {
  7714. source: "./media/characters/rose/fae-standing.svg",
  7715. extra: 1189/1060,
  7716. bottom: 27/1216
  7717. },
  7718. form: "fae",
  7719. default: true
  7720. },
  7721. faeSitting: {
  7722. height: math.unit(5, "cm"),
  7723. weight: math.unit(10, "grams"),
  7724. name: "Sitting",
  7725. image: {
  7726. source: "./media/characters/rose/fae-sitting.svg",
  7727. extra: 737/577,
  7728. bottom: 356/1093
  7729. },
  7730. form: "fae"
  7731. },
  7732. faePaw: {
  7733. height: math.unit(1.35, "cm"),
  7734. name: "Paw",
  7735. image: {
  7736. source: "./media/characters/rose/fae-paw.svg"
  7737. },
  7738. form: "fae"
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "True Micro",
  7744. height: math.unit(9, "cm"),
  7745. form: "liom"
  7746. },
  7747. {
  7748. name: "Micro",
  7749. height: math.unit(16, "cm"),
  7750. form: "liom"
  7751. },
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(1.85, "meters"),
  7755. default: true,
  7756. form: "liom"
  7757. },
  7758. {
  7759. name: "Mini-Macro",
  7760. height: math.unit(5, "meters"),
  7761. form: "liom"
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(15, "meters"),
  7766. form: "liom"
  7767. },
  7768. {
  7769. name: "True Macro",
  7770. height: math.unit(40, "meters"),
  7771. form: "liom"
  7772. },
  7773. {
  7774. name: "City Scale",
  7775. height: math.unit(1, "km"),
  7776. form: "liom"
  7777. },
  7778. {
  7779. name: "Plushie",
  7780. height: math.unit(9, "cm"),
  7781. form: "plush",
  7782. default: true
  7783. },
  7784. {
  7785. name: "Fae",
  7786. height: math.unit(10, "cm"),
  7787. form: "fae",
  7788. default: true
  7789. },
  7790. ],
  7791. {
  7792. "liom": {
  7793. name: "Liom"
  7794. },
  7795. "plush": {
  7796. name: "Plush"
  7797. },
  7798. "fae": {
  7799. name: "Fae Fox",
  7800. default: true
  7801. }
  7802. }
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(2, "meters"),
  7809. weight: math.unit(350, "lbs"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/regal/front.svg"
  7813. }
  7814. },
  7815. back: {
  7816. height: math.unit(2, "meters"),
  7817. weight: math.unit(350, "lbs"),
  7818. name: "Back",
  7819. image: {
  7820. source: "./media/characters/regal/back.svg"
  7821. }
  7822. },
  7823. },
  7824. [
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(350, "feet"),
  7828. default: true
  7829. }
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(4 + 11 / 12, "feet"),
  7837. weight: math.unit(100, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/opal/front.svg"
  7841. }
  7842. },
  7843. frontAlt: {
  7844. height: math.unit(4 + 11 / 12, "feet"),
  7845. weight: math.unit(100, "lbs"),
  7846. name: "Front (Alt)",
  7847. image: {
  7848. source: "./media/characters/opal/front-alt.svg"
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Small",
  7855. height: math.unit(4 + 11 / 12, "feet")
  7856. },
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(20, "feet"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Macro",
  7864. height: math.unit(120, "feet")
  7865. },
  7866. {
  7867. name: "Megamacro",
  7868. height: math.unit(80, "miles")
  7869. },
  7870. {
  7871. name: "True Size",
  7872. height: math.unit(100000, "lightyears")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(200, "lbs"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/vector-wuff/front.svg"
  7885. }
  7886. }
  7887. },
  7888. [
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(2.8, "meters")
  7892. },
  7893. {
  7894. name: "Macro",
  7895. height: math.unit(450, "meters"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Megamacro",
  7900. height: math.unit(15, "kilometers")
  7901. }
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7906. {
  7907. front: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(256, "lbs"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/dannik/front.svg"
  7913. }
  7914. }
  7915. },
  7916. [
  7917. {
  7918. name: "Macro",
  7919. height: math.unit(69.57, "meters"),
  7920. default: true
  7921. },
  7922. ]
  7923. ))
  7924. characterMakers.push(() => makeCharacter(
  7925. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7926. {
  7927. front: {
  7928. height: math.unit(6, "feet"),
  7929. weight: math.unit(120, "lbs"),
  7930. name: "Front",
  7931. image: {
  7932. source: "./media/characters/azura-saharah/front.svg"
  7933. }
  7934. },
  7935. back: {
  7936. height: math.unit(6, "feet"),
  7937. weight: math.unit(120, "lbs"),
  7938. name: "Back",
  7939. image: {
  7940. source: "./media/characters/azura-saharah/back.svg"
  7941. }
  7942. },
  7943. },
  7944. [
  7945. {
  7946. name: "Macro",
  7947. height: math.unit(100, "feet"),
  7948. default: true
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7954. {
  7955. side: {
  7956. height: math.unit(5 + 4 / 12, "feet"),
  7957. weight: math.unit(163, "lbs"),
  7958. name: "Side",
  7959. image: {
  7960. source: "./media/characters/kennedy/side.svg"
  7961. }
  7962. }
  7963. },
  7964. [
  7965. {
  7966. name: "Standard Doggo",
  7967. height: math.unit(5 + 4 / 12, "feet")
  7968. },
  7969. {
  7970. name: "Big Doggo",
  7971. height: math.unit(25 + 3 / 12, "feet"),
  7972. default: true
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7978. {
  7979. front: {
  7980. height: math.unit(5 + 5/12, "feet"),
  7981. weight: math.unit(100, "lbs"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/odios-de-lunar/front.svg",
  7985. extra: 1468/1323,
  7986. bottom: 22/1490
  7987. }
  7988. }
  7989. },
  7990. [
  7991. {
  7992. name: "Micro",
  7993. height: math.unit(3, "inches")
  7994. },
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(5.5, "feet"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Macro",
  8002. height: math.unit(100, "feet")
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8008. {
  8009. back: {
  8010. height: math.unit(6, "feet"),
  8011. weight: math.unit(220, "lbs"),
  8012. name: "Back",
  8013. image: {
  8014. source: "./media/characters/mandake/back.svg"
  8015. }
  8016. }
  8017. },
  8018. [
  8019. {
  8020. name: "Normal",
  8021. height: math.unit(7, "feet"),
  8022. default: true
  8023. },
  8024. {
  8025. name: "Macro",
  8026. height: math.unit(78, "feet")
  8027. },
  8028. {
  8029. name: "Macro+",
  8030. height: math.unit(300, "meters")
  8031. },
  8032. {
  8033. name: "Macro++",
  8034. height: math.unit(2400, "feet")
  8035. },
  8036. {
  8037. name: "Megamacro",
  8038. height: math.unit(5167, "meters")
  8039. },
  8040. {
  8041. name: "Gigamacro",
  8042. height: math.unit(41769, "miles")
  8043. },
  8044. ]
  8045. ))
  8046. characterMakers.push(() => makeCharacter(
  8047. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8048. {
  8049. front: {
  8050. height: math.unit(6, "feet"),
  8051. weight: math.unit(120, "lbs"),
  8052. name: "Front",
  8053. image: {
  8054. source: "./media/characters/yozey/front.svg"
  8055. }
  8056. },
  8057. frontAlt: {
  8058. height: math.unit(6, "feet"),
  8059. weight: math.unit(120, "lbs"),
  8060. name: "Front (Alt)",
  8061. image: {
  8062. source: "./media/characters/yozey/front-alt.svg"
  8063. }
  8064. },
  8065. side: {
  8066. height: math.unit(6, "feet"),
  8067. weight: math.unit(120, "lbs"),
  8068. name: "Side",
  8069. image: {
  8070. source: "./media/characters/yozey/side.svg"
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Micro",
  8077. height: math.unit(3, "inches"),
  8078. default: true
  8079. },
  8080. {
  8081. name: "Normal",
  8082. height: math.unit(6, "feet")
  8083. }
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(6, "feet"),
  8091. weight: math.unit(103, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/valeska-voss/front.svg"
  8095. }
  8096. }
  8097. },
  8098. [
  8099. {
  8100. name: "Mini-Sized Sub",
  8101. height: math.unit(3.1, "inches")
  8102. },
  8103. {
  8104. name: "Mid-Sized Sub",
  8105. height: math.unit(6.2, "inches")
  8106. },
  8107. {
  8108. name: "Full-Sized Sub",
  8109. height: math.unit(9.3, "inches")
  8110. },
  8111. {
  8112. name: "Normal",
  8113. height: math.unit(5 + 2 / 12, "foot"),
  8114. default: true
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(160, "lbs"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/gene-zeta/front.svg",
  8127. extra: 3006 / 2826,
  8128. bottom: 182 / 3188
  8129. }
  8130. }
  8131. },
  8132. [
  8133. {
  8134. name: "Micro",
  8135. height: math.unit(6, "inches")
  8136. },
  8137. {
  8138. name: "Normal",
  8139. height: math.unit(5 + 11 / 12, "foot"),
  8140. default: true
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(140, "feet")
  8145. },
  8146. {
  8147. name: "Supercharged",
  8148. height: math.unit(2500, "feet")
  8149. },
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(350, "lbs"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/razinox/front.svg",
  8161. extra: 1686 / 1548,
  8162. bottom: 28.2 / 1868
  8163. }
  8164. },
  8165. back: {
  8166. height: math.unit(6, "feet"),
  8167. weight: math.unit(350, "lbs"),
  8168. name: "Back",
  8169. image: {
  8170. source: "./media/characters/razinox/back.svg",
  8171. extra: 1660 / 1590,
  8172. bottom: 15 / 1665
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(10 + 8 / 12, "foot")
  8180. },
  8181. {
  8182. name: "Minimacro",
  8183. height: math.unit(15, "foot")
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(60, "foot"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Megamacro",
  8192. height: math.unit(5, "miles")
  8193. },
  8194. {
  8195. name: "Gigamacro",
  8196. height: math.unit(6000, "miles")
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(6, "feet"),
  8205. weight: math.unit(150, "lbs"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/cobalt/front.svg"
  8209. }
  8210. }
  8211. },
  8212. [
  8213. {
  8214. name: "Normal",
  8215. height: math.unit(8 + 1 / 12, "foot")
  8216. },
  8217. {
  8218. name: "Macro",
  8219. height: math.unit(111, "foot"),
  8220. default: true
  8221. },
  8222. {
  8223. name: "Supracosmic",
  8224. height: math.unit(1e42, "feet")
  8225. },
  8226. ]
  8227. ))
  8228. characterMakers.push(() => makeCharacter(
  8229. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8230. {
  8231. front: {
  8232. height: math.unit(5, "inches"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/amanda/front.svg",
  8236. extra: 926/791,
  8237. bottom: 38/964
  8238. }
  8239. },
  8240. back: {
  8241. height: math.unit(5, "inches"),
  8242. name: "Back",
  8243. image: {
  8244. source: "./media/characters/amanda/back.svg",
  8245. extra: 909/805,
  8246. bottom: 43/952
  8247. }
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "Micro",
  8253. height: math.unit(5, "inches"),
  8254. default: true
  8255. },
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8260. {
  8261. front: {
  8262. height: math.unit(2.75, "meters"),
  8263. weight: math.unit(1200, "lb"),
  8264. name: "Front",
  8265. image: {
  8266. source: "./media/characters/teal/front.svg",
  8267. extra: 2463 / 2320,
  8268. bottom: 166 / 2629
  8269. }
  8270. },
  8271. back: {
  8272. height: math.unit(2.75, "meters"),
  8273. weight: math.unit(1200, "lb"),
  8274. name: "Back",
  8275. image: {
  8276. source: "./media/characters/teal/back.svg",
  8277. extra: 2580 / 2489,
  8278. bottom: 151 / 2731
  8279. }
  8280. },
  8281. sitting: {
  8282. height: math.unit(1.9, "meters"),
  8283. weight: math.unit(1200, "lb"),
  8284. name: "Sitting",
  8285. image: {
  8286. source: "./media/characters/teal/sitting.svg",
  8287. extra: 623 / 590,
  8288. bottom: 121 / 744
  8289. }
  8290. },
  8291. standing: {
  8292. height: math.unit(2.75, "meters"),
  8293. weight: math.unit(1200, "lb"),
  8294. name: "Standing",
  8295. image: {
  8296. source: "./media/characters/teal/standing.svg",
  8297. extra: 923 / 893,
  8298. bottom: 60 / 983
  8299. }
  8300. },
  8301. stretching: {
  8302. height: math.unit(3.65, "meters"),
  8303. weight: math.unit(1200, "lb"),
  8304. name: "Stretching",
  8305. image: {
  8306. source: "./media/characters/teal/stretching.svg",
  8307. extra: 1276 / 1244,
  8308. bottom: 0 / 1276
  8309. }
  8310. },
  8311. legged: {
  8312. height: math.unit(1.3, "meters"),
  8313. weight: math.unit(100, "lb"),
  8314. name: "Legged",
  8315. image: {
  8316. source: "./media/characters/teal/legged.svg",
  8317. extra: 462 / 437,
  8318. bottom: 24 / 486
  8319. }
  8320. },
  8321. naga: {
  8322. height: math.unit(5.4, "meters"),
  8323. weight: math.unit(4000, "lb"),
  8324. name: "Naga",
  8325. image: {
  8326. source: "./media/characters/teal/naga.svg",
  8327. extra: 1902 / 1858,
  8328. bottom: 0 / 1902
  8329. }
  8330. },
  8331. hand: {
  8332. height: math.unit(0.52, "meters"),
  8333. name: "Hand",
  8334. image: {
  8335. source: "./media/characters/teal/hand.svg"
  8336. }
  8337. },
  8338. maw: {
  8339. height: math.unit(0.43, "meters"),
  8340. name: "Maw",
  8341. image: {
  8342. source: "./media/characters/teal/maw.svg"
  8343. }
  8344. },
  8345. slit: {
  8346. height: math.unit(0.25, "meters"),
  8347. name: "Slit",
  8348. image: {
  8349. source: "./media/characters/teal/slit.svg"
  8350. }
  8351. },
  8352. },
  8353. [
  8354. {
  8355. name: "Normal",
  8356. height: math.unit(2.75, "meters"),
  8357. default: true
  8358. },
  8359. {
  8360. name: "Macro",
  8361. height: math.unit(300, "feet")
  8362. },
  8363. {
  8364. name: "Macro+",
  8365. height: math.unit(2000, "feet")
  8366. },
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8371. {
  8372. frontCat: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(180, "lbs"),
  8375. name: "Front (Cat)",
  8376. image: {
  8377. source: "./media/characters/ravin-amulet/front-cat.svg"
  8378. }
  8379. },
  8380. frontCatAlt: {
  8381. height: math.unit(6, "feet"),
  8382. weight: math.unit(180, "lbs"),
  8383. name: "Front (Alt, Cat)",
  8384. image: {
  8385. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8386. }
  8387. },
  8388. frontWerewolf: {
  8389. height: math.unit(6 * 1.2, "feet"),
  8390. weight: math.unit(225, "lbs"),
  8391. name: "Front (Werewolf)",
  8392. image: {
  8393. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8394. }
  8395. },
  8396. backWerewolf: {
  8397. height: math.unit(6 * 1.2, "feet"),
  8398. weight: math.unit(225, "lbs"),
  8399. name: "Back (Werewolf)",
  8400. image: {
  8401. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8402. }
  8403. },
  8404. },
  8405. [
  8406. {
  8407. name: "Nano",
  8408. height: math.unit(1, "micrometer")
  8409. },
  8410. {
  8411. name: "Micro",
  8412. height: math.unit(1, "inch")
  8413. },
  8414. {
  8415. name: "Normal",
  8416. height: math.unit(6, "feet"),
  8417. default: true
  8418. },
  8419. {
  8420. name: "Macro",
  8421. height: math.unit(60, "feet")
  8422. }
  8423. ]
  8424. ))
  8425. characterMakers.push(() => makeCharacter(
  8426. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8427. {
  8428. front: {
  8429. height: math.unit(6, "feet"),
  8430. weight: math.unit(165, "lbs"),
  8431. name: "Front",
  8432. image: {
  8433. source: "./media/characters/fluoresce/front.svg"
  8434. }
  8435. }
  8436. },
  8437. [
  8438. {
  8439. name: "Micro",
  8440. height: math.unit(6, "cm")
  8441. },
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(5 + 7 / 12, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(56, "feet")
  8450. },
  8451. {
  8452. name: "Megamacro",
  8453. height: math.unit(1.9, "miles")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8459. {
  8460. front: {
  8461. height: math.unit(9 + 6 / 12, "feet"),
  8462. weight: math.unit(523, "lbs"),
  8463. name: "Side",
  8464. image: {
  8465. source: "./media/characters/aurora/side.svg",
  8466. extra: 474/393,
  8467. bottom: 5/479
  8468. }
  8469. }
  8470. },
  8471. [
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(9 + 6 / 12, "feet")
  8475. },
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(96, "feet"),
  8479. default: true
  8480. },
  8481. {
  8482. name: "Macro+",
  8483. height: math.unit(243, "feet")
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(194, "cm"),
  8492. weight: math.unit(90, "kg"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/ranek/front.svg",
  8496. extra: 1862/1791,
  8497. bottom: 80/1942
  8498. }
  8499. },
  8500. back: {
  8501. height: math.unit(194, "cm"),
  8502. weight: math.unit(90, "kg"),
  8503. name: "Back",
  8504. image: {
  8505. source: "./media/characters/ranek/back.svg",
  8506. extra: 1853/1787,
  8507. bottom: 74/1927
  8508. }
  8509. },
  8510. feral: {
  8511. height: math.unit(30, "cm"),
  8512. weight: math.unit(1.6, "lbs"),
  8513. name: "Feral",
  8514. image: {
  8515. source: "./media/characters/ranek/feral.svg",
  8516. extra: 990/631,
  8517. bottom: 29/1019
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(194, "cm"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(100, "meters")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(5 + 6 / 12, "feet"),
  8538. weight: math.unit(153, "lbs"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/andrew-cooper/front.svg"
  8542. }
  8543. },
  8544. },
  8545. [
  8546. {
  8547. name: "Nano",
  8548. height: math.unit(1, "mm")
  8549. },
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(2, "inches")
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(5 + 6 / 12, "feet"),
  8557. default: true
  8558. }
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(180, "lbs"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/akane-sato/front.svg",
  8570. extra: 1219 / 1140
  8571. }
  8572. },
  8573. back: {
  8574. height: math.unit(6, "feet"),
  8575. weight: math.unit(180, "lbs"),
  8576. name: "Back",
  8577. image: {
  8578. source: "./media/characters/akane-sato/back.svg",
  8579. extra: 1219 / 1170
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(2.5, "meters")
  8587. },
  8588. {
  8589. name: "Macro",
  8590. height: math.unit(250, "meters"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Megamacro",
  8595. height: math.unit(25, "km")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(6, "feet"),
  8604. weight: math.unit(65, "kg"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/rook/front.svg",
  8608. extra: 960 / 950
  8609. }
  8610. }
  8611. },
  8612. [
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(8.8, "feet")
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(88, "feet"),
  8620. default: true
  8621. },
  8622. {
  8623. name: "Megamacro",
  8624. height: math.unit(8, "miles")
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8630. {
  8631. front: {
  8632. height: math.unit(12 + 2 / 12, "feet"),
  8633. weight: math.unit(808, "lbs"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/prodigy/front.svg"
  8637. }
  8638. }
  8639. },
  8640. [
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(12 + 2 / 12, "feet"),
  8644. default: true
  8645. },
  8646. {
  8647. name: "Macro",
  8648. height: math.unit(143, "feet")
  8649. },
  8650. {
  8651. name: "Macro+",
  8652. height: math.unit(400, "feet")
  8653. },
  8654. ]
  8655. ))
  8656. characterMakers.push(() => makeCharacter(
  8657. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8658. {
  8659. front: {
  8660. height: math.unit(6, "feet"),
  8661. weight: math.unit(225, "lbs"),
  8662. name: "Front",
  8663. image: {
  8664. source: "./media/characters/daniel/front.svg"
  8665. }
  8666. },
  8667. leaning: {
  8668. height: math.unit(6, "feet"),
  8669. weight: math.unit(225, "lbs"),
  8670. name: "Leaning",
  8671. image: {
  8672. source: "./media/characters/daniel/leaning.svg"
  8673. }
  8674. },
  8675. },
  8676. [
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(1000, "feet"),
  8680. default: true
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8686. {
  8687. front: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(88, "lbs"),
  8690. name: "Front",
  8691. image: {
  8692. source: "./media/characters/chiros/front.svg",
  8693. extra: 306 / 226
  8694. }
  8695. },
  8696. side: {
  8697. height: math.unit(6, "feet"),
  8698. weight: math.unit(88, "lbs"),
  8699. name: "Side",
  8700. image: {
  8701. source: "./media/characters/chiros/side.svg",
  8702. extra: 306 / 226
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(6, "cm"),
  8710. default: true
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8716. {
  8717. front: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(100, "lbs"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/selka/front.svg",
  8723. extra: 947 / 887
  8724. }
  8725. }
  8726. },
  8727. [
  8728. {
  8729. name: "Normal",
  8730. height: math.unit(5, "cm"),
  8731. default: true
  8732. },
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(8 + 3 / 12, "feet"),
  8740. weight: math.unit(424, "lbs"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/verin/front.svg",
  8744. extra: 1845 / 1550
  8745. }
  8746. },
  8747. frontArmored: {
  8748. height: math.unit(8 + 3 / 12, "feet"),
  8749. weight: math.unit(424, "lbs"),
  8750. name: "Front (Armored)",
  8751. image: {
  8752. source: "./media/characters/verin/front-armor.svg",
  8753. extra: 1845 / 1550,
  8754. bottom: 0.01
  8755. }
  8756. },
  8757. back: {
  8758. height: math.unit(8 + 3 / 12, "feet"),
  8759. weight: math.unit(424, "lbs"),
  8760. name: "Back",
  8761. image: {
  8762. source: "./media/characters/verin/back.svg",
  8763. bottom: 0.1,
  8764. extra: 1
  8765. }
  8766. },
  8767. foot: {
  8768. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8769. name: "Foot",
  8770. image: {
  8771. source: "./media/characters/verin/foot.svg"
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(8 + 3 / 12, "feet")
  8779. },
  8780. {
  8781. name: "Minimacro",
  8782. height: math.unit(21, "feet"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "Macro",
  8787. height: math.unit(626, "feet")
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(2.718, "meters"),
  8796. weight: math.unit(150, "lbs"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/sovrim-terraquian/front.svg",
  8800. extra: 1752/1689,
  8801. bottom: 36/1788
  8802. }
  8803. },
  8804. back: {
  8805. height: math.unit(2.718, "meters"),
  8806. weight: math.unit(150, "lbs"),
  8807. name: "Back",
  8808. image: {
  8809. source: "./media/characters/sovrim-terraquian/back.svg",
  8810. extra: 1698/1657,
  8811. bottom: 58/1756
  8812. }
  8813. },
  8814. tongue: {
  8815. height: math.unit(2.865, "feet"),
  8816. name: "Tongue",
  8817. image: {
  8818. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8819. }
  8820. },
  8821. hand: {
  8822. height: math.unit(1.61, "feet"),
  8823. name: "Hand",
  8824. image: {
  8825. source: "./media/characters/sovrim-terraquian/hand.svg"
  8826. }
  8827. },
  8828. foot: {
  8829. height: math.unit(1.05, "feet"),
  8830. name: "Foot",
  8831. image: {
  8832. source: "./media/characters/sovrim-terraquian/foot.svg"
  8833. }
  8834. },
  8835. footAlt: {
  8836. height: math.unit(0.88, "feet"),
  8837. name: "Foot (Alt)",
  8838. image: {
  8839. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Micro",
  8846. height: math.unit(2, "inches")
  8847. },
  8848. {
  8849. name: "Small",
  8850. height: math.unit(1, "meter")
  8851. },
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(Math.E, "meters"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Macro",
  8859. height: math.unit(20, "meters")
  8860. },
  8861. {
  8862. name: "Macro+",
  8863. height: math.unit(400, "meters")
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(7, "feet"),
  8872. weight: math.unit(489, "lbs"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/reece-silvermane/front.svg",
  8876. bottom: 0.02,
  8877. extra: 1
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Macro",
  8884. height: math.unit(1.5, "miles"),
  8885. default: true
  8886. },
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8891. {
  8892. front: {
  8893. height: math.unit(6, "feet"),
  8894. weight: math.unit(78, "kg"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/kane/front.svg",
  8898. extra: 978 / 899
  8899. }
  8900. },
  8901. },
  8902. [
  8903. {
  8904. name: "Normal",
  8905. height: math.unit(2.1, "m"),
  8906. },
  8907. {
  8908. name: "Macro",
  8909. height: math.unit(1, "km"),
  8910. default: true
  8911. },
  8912. ]
  8913. ))
  8914. characterMakers.push(() => makeCharacter(
  8915. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8916. {
  8917. front: {
  8918. height: math.unit(6, "feet"),
  8919. weight: math.unit(200, "kg"),
  8920. name: "Front",
  8921. image: {
  8922. source: "./media/characters/tegon/front.svg",
  8923. bottom: 0.01,
  8924. extra: 1
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Micro",
  8931. height: math.unit(1, "inch")
  8932. },
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(6 + 3 / 12, "feet"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(300, "feet")
  8941. },
  8942. {
  8943. name: "Megamacro",
  8944. height: math.unit(69, "miles")
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8950. {
  8951. side: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(2304, "lbs"),
  8954. name: "Side",
  8955. image: {
  8956. source: "./media/characters/arcturax/side.svg",
  8957. extra: 790 / 376,
  8958. bottom: 0.01
  8959. }
  8960. },
  8961. },
  8962. [
  8963. {
  8964. name: "Micro",
  8965. height: math.unit(2, "inch")
  8966. },
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(6, "feet")
  8970. },
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(39, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Megamacro",
  8978. height: math.unit(7, "miles")
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(50, "lbs"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/sentri/front.svg",
  8991. extra: 1750 / 1570,
  8992. bottom: 0.025
  8993. }
  8994. },
  8995. frontAlt: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(50, "lbs"),
  8998. name: "Front (Alt)",
  8999. image: {
  9000. source: "./media/characters/sentri/front-alt.svg",
  9001. extra: 1750 / 1570,
  9002. bottom: 0.025
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Normal",
  9009. height: math.unit(15, "feet"),
  9010. default: true
  9011. },
  9012. {
  9013. name: "Macro",
  9014. height: math.unit(2500, "feet")
  9015. }
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(5 + 8 / 12, "feet"),
  9023. weight: math.unit(130, "lbs"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/corvin/front.svg",
  9027. extra: 1803 / 1629
  9028. }
  9029. },
  9030. frontShirt: {
  9031. height: math.unit(5 + 8 / 12, "feet"),
  9032. weight: math.unit(130, "lbs"),
  9033. name: "Front (Shirt)",
  9034. image: {
  9035. source: "./media/characters/corvin/front-shirt.svg",
  9036. extra: 1803 / 1629
  9037. }
  9038. },
  9039. frontPoncho: {
  9040. height: math.unit(5 + 8 / 12, "feet"),
  9041. weight: math.unit(130, "lbs"),
  9042. name: "Front (Poncho)",
  9043. image: {
  9044. source: "./media/characters/corvin/front-poncho.svg",
  9045. extra: 1803 / 1629
  9046. }
  9047. },
  9048. side: {
  9049. height: math.unit(5 + 8 / 12, "feet"),
  9050. weight: math.unit(130, "lbs"),
  9051. name: "Side",
  9052. image: {
  9053. source: "./media/characters/corvin/side.svg",
  9054. extra: 1012 / 945
  9055. }
  9056. },
  9057. back: {
  9058. height: math.unit(5 + 8 / 12, "feet"),
  9059. weight: math.unit(130, "lbs"),
  9060. name: "Back",
  9061. image: {
  9062. source: "./media/characters/corvin/back.svg",
  9063. extra: 1803 / 1629
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Micro",
  9070. height: math.unit(3, "inches")
  9071. },
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(5 + 8 / 12, "feet")
  9075. },
  9076. {
  9077. name: "Macro",
  9078. height: math.unit(300, "feet"),
  9079. default: true
  9080. },
  9081. {
  9082. name: "Megamacro",
  9083. height: math.unit(500, "miles")
  9084. }
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(6, "feet"),
  9092. weight: math.unit(135, "lbs"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/q/front.svg",
  9096. extra: 854 / 752,
  9097. bottom: 0.005
  9098. }
  9099. },
  9100. back: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(130, "lbs"),
  9103. name: "Back",
  9104. image: {
  9105. source: "./media/characters/q/back.svg",
  9106. extra: 854 / 752
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Macro",
  9113. height: math.unit(90, "feet"),
  9114. default: true
  9115. },
  9116. {
  9117. name: "Extra Macro",
  9118. height: math.unit(300, "feet"),
  9119. },
  9120. {
  9121. name: "BIG WALF",
  9122. height: math.unit(750, "feet"),
  9123. },
  9124. ]
  9125. ))
  9126. characterMakers.push(() => makeCharacter(
  9127. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9128. {
  9129. front: {
  9130. height: math.unit(3, "feet"),
  9131. weight: math.unit(28, "lbs"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/citrine/front.svg"
  9135. }
  9136. }
  9137. },
  9138. [
  9139. {
  9140. name: "Normal",
  9141. height: math.unit(3, "feet"),
  9142. default: true
  9143. }
  9144. ]
  9145. ))
  9146. characterMakers.push(() => makeCharacter(
  9147. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9148. {
  9149. front: {
  9150. height: math.unit(14, "feet"),
  9151. weight: math.unit(1450, "kg"),
  9152. preyCapacity: math.unit(15, "people"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/aura-starwind/front.svg",
  9156. extra: 1440/1327,
  9157. bottom: 11/1451
  9158. }
  9159. },
  9160. side: {
  9161. height: math.unit(14, "feet"),
  9162. weight: math.unit(1450, "kg"),
  9163. preyCapacity: math.unit(15, "people"),
  9164. name: "Side",
  9165. image: {
  9166. source: "./media/characters/aura-starwind/side.svg",
  9167. extra: 1654 / 1497
  9168. }
  9169. },
  9170. taur: {
  9171. height: math.unit(18, "feet"),
  9172. weight: math.unit(5500, "kg"),
  9173. preyCapacity: math.unit(50, "people"),
  9174. name: "Taur",
  9175. image: {
  9176. source: "./media/characters/aura-starwind/taur.svg",
  9177. extra: 1760 / 1650
  9178. }
  9179. },
  9180. feral: {
  9181. height: math.unit(46, "feet"),
  9182. weight: math.unit(25000, "kg"),
  9183. preyCapacity: math.unit(120, "people"),
  9184. name: "Feral",
  9185. image: {
  9186. source: "./media/characters/aura-starwind/feral.svg"
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(14, "feet"),
  9194. default: true
  9195. },
  9196. {
  9197. name: "Macro",
  9198. height: math.unit(50, "meters")
  9199. },
  9200. {
  9201. name: "Megamacro",
  9202. height: math.unit(5000, "meters")
  9203. },
  9204. {
  9205. name: "Gigamacro",
  9206. height: math.unit(100000, "kilometers")
  9207. },
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(2 + 7 / 12, "feet"),
  9215. weight: math.unit(32, "lbs"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/rivet/front.svg",
  9219. extra: 1716 / 1658,
  9220. bottom: 0.03
  9221. }
  9222. },
  9223. foot: {
  9224. height: math.unit(0.551, "feet"),
  9225. name: "Rivet's Foot",
  9226. image: {
  9227. source: "./media/characters/rivet/foot.svg"
  9228. },
  9229. rename: true
  9230. }
  9231. },
  9232. [
  9233. {
  9234. name: "Micro",
  9235. height: math.unit(1.5, "inches"),
  9236. },
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(2 + 7 / 12, "feet"),
  9240. default: true
  9241. },
  9242. {
  9243. name: "Macro",
  9244. height: math.unit(85, "feet")
  9245. },
  9246. {
  9247. name: "Megamacro",
  9248. height: math.unit(2.2, "km")
  9249. }
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(5 + 9 / 12, "feet"),
  9257. weight: math.unit(150, "lbs"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/coffee/front.svg",
  9261. extra: 946/880,
  9262. bottom: 66/1012
  9263. }
  9264. },
  9265. foot: {
  9266. height: math.unit(1.29, "feet"),
  9267. name: "Foot",
  9268. image: {
  9269. source: "./media/characters/coffee/foot.svg"
  9270. }
  9271. },
  9272. },
  9273. [
  9274. {
  9275. name: "Micro",
  9276. height: math.unit(2, "inches"),
  9277. },
  9278. {
  9279. name: "Normal",
  9280. height: math.unit(5 + 9 / 12, "feet"),
  9281. default: true
  9282. },
  9283. {
  9284. name: "Macro",
  9285. height: math.unit(800, "feet")
  9286. },
  9287. {
  9288. name: "Megamacro",
  9289. height: math.unit(25, "miles")
  9290. }
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(200, "lbs"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/chari-gal/front.svg",
  9302. extra: 1568 / 1385,
  9303. bottom: 0.047
  9304. }
  9305. },
  9306. gigantamax: {
  9307. height: math.unit(6 * 16, "feet"),
  9308. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9309. name: "Gigantamax",
  9310. image: {
  9311. source: "./media/characters/chari-gal/gigantamax.svg",
  9312. extra: 1124 / 888,
  9313. bottom: 0.03
  9314. }
  9315. },
  9316. },
  9317. [
  9318. {
  9319. name: "Normal",
  9320. height: math.unit(5 + 7 / 12, "feet")
  9321. },
  9322. {
  9323. name: "Macro",
  9324. height: math.unit(200, "feet"),
  9325. default: true
  9326. }
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9331. {
  9332. front: {
  9333. height: math.unit(6, "feet"),
  9334. weight: math.unit(150, "lbs"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/nova/front.svg",
  9338. extra: 5000 / 4722,
  9339. bottom: 0.02
  9340. }
  9341. }
  9342. },
  9343. [
  9344. {
  9345. name: "Micro-",
  9346. height: math.unit(0.8, "inches")
  9347. },
  9348. {
  9349. name: "Micro",
  9350. height: math.unit(2, "inches"),
  9351. default: true
  9352. },
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9357. {
  9358. koboldFront: {
  9359. height: math.unit(3 + 1 / 12, "feet"),
  9360. weight: math.unit(21.7, "lbs"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/argent/kobold-front.svg",
  9364. extra: 1471 / 1331,
  9365. bottom: 100.8 / 1575.5
  9366. },
  9367. form: "kobold",
  9368. default: true
  9369. },
  9370. dragonFront: {
  9371. height: math.unit(75, "inches"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/argent/dragon-front.svg",
  9375. extra: 1389/1248,
  9376. bottom: 54/1443
  9377. },
  9378. form: "dragon",
  9379. },
  9380. dragonBack: {
  9381. height: math.unit(75, "inches"),
  9382. name: "Back",
  9383. image: {
  9384. source: "./media/characters/argent/dragon-back.svg",
  9385. extra: 1399/1271,
  9386. bottom: 23/1422
  9387. },
  9388. form: "dragon",
  9389. },
  9390. dragonDressed: {
  9391. height: math.unit(75, "inches"),
  9392. name: "Dressed",
  9393. image: {
  9394. source: "./media/characters/argent/dragon-dressed.svg",
  9395. extra: 1350/1215,
  9396. bottom: 26/1376
  9397. },
  9398. form: "dragon"
  9399. },
  9400. dragonHead: {
  9401. height: math.unit(23.5, "inches"),
  9402. name: "Head",
  9403. image: {
  9404. source: "./media/characters/argent/dragon-head.svg"
  9405. },
  9406. form: "dragon",
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Micro",
  9412. height: math.unit(2, "inches"),
  9413. form: "kobold",
  9414. },
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(3 + 1 / 12, "feet"),
  9418. form: "kobold",
  9419. default: true
  9420. },
  9421. {
  9422. name: "Macro",
  9423. height: math.unit(120, "feet"),
  9424. form: "kobold",
  9425. },
  9426. {
  9427. name: "Speck",
  9428. height: math.unit(1, "mm"),
  9429. form: "dragon",
  9430. },
  9431. {
  9432. name: "Tiny",
  9433. height: math.unit(1, "cm"),
  9434. form: "dragon",
  9435. },
  9436. {
  9437. name: "Micro",
  9438. height: math.unit(5, "cm"),
  9439. form: "dragon",
  9440. },
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(75, "inches"),
  9444. form: "dragon",
  9445. default: true
  9446. },
  9447. {
  9448. name: "Extra Tall",
  9449. height: math.unit(9, "feet"),
  9450. form: "dragon",
  9451. },
  9452. {
  9453. name: "Inconvenient",
  9454. height: math.unit(5, "meters"),
  9455. form: "dragon",
  9456. },
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(70, "meters"),
  9460. form: "dragon",
  9461. },
  9462. {
  9463. name: "Macro+",
  9464. height: math.unit(250, "meters"),
  9465. form: "dragon",
  9466. },
  9467. {
  9468. name: "Megamacro",
  9469. height: math.unit(20, "km"),
  9470. form: "dragon",
  9471. },
  9472. {
  9473. name: "Mountainous",
  9474. height: math.unit(100, "km"),
  9475. form: "dragon",
  9476. },
  9477. {
  9478. name: "Continental",
  9479. height: math.unit(2, "megameters"),
  9480. form: "dragon",
  9481. },
  9482. {
  9483. name: "Too Big",
  9484. height: math.unit(900, "megameters"),
  9485. form: "dragon",
  9486. },
  9487. ],
  9488. {
  9489. "kobold": {
  9490. name: "Kobold",
  9491. default: true
  9492. },
  9493. "dragon": {
  9494. name: "Dragon",
  9495. },
  9496. }
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9500. {
  9501. lamp: {
  9502. height: math.unit(7 * 1559 / 989, "feet"),
  9503. name: "Magic Lamp",
  9504. image: {
  9505. source: "./media/characters/mira-al-cul/lamp.svg",
  9506. extra: 1617 / 1559
  9507. }
  9508. },
  9509. front: {
  9510. height: math.unit(7, "feet"),
  9511. name: "Front",
  9512. image: {
  9513. source: "./media/characters/mira-al-cul/front.svg",
  9514. extra: 1044 / 990
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Heavily Restricted",
  9521. height: math.unit(7 * 1559 / 989, "feet")
  9522. },
  9523. {
  9524. name: "Freshly Freed",
  9525. height: math.unit(50 * 1559 / 989, "feet")
  9526. },
  9527. {
  9528. name: "World Encompassing",
  9529. height: math.unit(10000 * 1559 / 989, "miles")
  9530. },
  9531. {
  9532. name: "Galactic",
  9533. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9534. },
  9535. {
  9536. name: "Palmed Universe",
  9537. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9538. default: true
  9539. },
  9540. {
  9541. name: "Multiversal Matriarch",
  9542. height: math.unit(8.87e10, "yottameters")
  9543. },
  9544. {
  9545. name: "Void Mother",
  9546. height: math.unit(3.14e110, "yottaparsecs")
  9547. },
  9548. {
  9549. name: "Toying with Transcendence",
  9550. height: math.unit(1e307, "meters")
  9551. },
  9552. ]
  9553. ))
  9554. characterMakers.push(() => makeCharacter(
  9555. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9556. {
  9557. front: {
  9558. height: math.unit(17 + 1 / 12, "feet"),
  9559. weight: math.unit(476.2 * 5, "lbs"),
  9560. name: "Front",
  9561. image: {
  9562. source: "./media/characters/kuro-shi-uchū/front.svg",
  9563. extra: 2329 / 1835,
  9564. bottom: 0.02
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Micro",
  9571. height: math.unit(2, "inches")
  9572. },
  9573. {
  9574. name: "Normal",
  9575. height: math.unit(12, "meters")
  9576. },
  9577. {
  9578. name: "Planetary",
  9579. height: math.unit(0.00929, "AU"),
  9580. default: true
  9581. },
  9582. {
  9583. name: "Universal",
  9584. height: math.unit(20, "gigaparsecs")
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9590. {
  9591. front: {
  9592. height: math.unit(5 + 2 / 12, "feet"),
  9593. weight: math.unit(120, "lbs"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/katherine/front.svg",
  9597. extra: 2075 / 1969
  9598. }
  9599. },
  9600. dress: {
  9601. height: math.unit(5 + 2 / 12, "feet"),
  9602. weight: math.unit(120, "lbs"),
  9603. name: "Dress",
  9604. image: {
  9605. source: "./media/characters/katherine/dress.svg",
  9606. extra: 2258 / 2064
  9607. }
  9608. },
  9609. },
  9610. [
  9611. {
  9612. name: "Micro",
  9613. height: math.unit(1, "inches"),
  9614. default: true
  9615. },
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(5 + 2 / 12, "feet")
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(100, "meters")
  9623. },
  9624. {
  9625. name: "Megamacro",
  9626. height: math.unit(80, "miles")
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9632. {
  9633. front: {
  9634. height: math.unit(7 + 8 / 12, "feet"),
  9635. weight: math.unit(250, "lbs"),
  9636. name: "Front",
  9637. image: {
  9638. source: "./media/characters/yevis/front.svg",
  9639. extra: 1938 / 1755
  9640. }
  9641. }
  9642. },
  9643. [
  9644. {
  9645. name: "Mortal",
  9646. height: math.unit(7 + 8 / 12, "feet")
  9647. },
  9648. {
  9649. name: "Battle",
  9650. height: math.unit(25 + 11 / 12, "feet")
  9651. },
  9652. {
  9653. name: "Wrath",
  9654. height: math.unit(1654 + 11 / 12, "feet")
  9655. },
  9656. {
  9657. name: "Planet Destroyer",
  9658. height: math.unit(12000, "miles")
  9659. },
  9660. {
  9661. name: "Galaxy Conqueror",
  9662. height: math.unit(1.45, "zettameters"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Universal War",
  9667. height: math.unit(184, "gigaparsecs")
  9668. },
  9669. {
  9670. name: "Eternity War",
  9671. height: math.unit(1.98e55, "yottaparsecs")
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9677. {
  9678. front: {
  9679. height: math.unit(5 + 8 / 12, "feet"),
  9680. weight: math.unit(63, "kg"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/xavier/front.svg",
  9684. extra: 944 / 883
  9685. }
  9686. },
  9687. frontStretch: {
  9688. height: math.unit(5 + 8 / 12, "feet"),
  9689. weight: math.unit(63, "kg"),
  9690. name: "Stretching",
  9691. image: {
  9692. source: "./media/characters/xavier/front-stretch.svg",
  9693. extra: 962 / 820
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(5 + 8 / 12, "feet")
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(100, "meters"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "McLargeHuge",
  9709. height: math.unit(10, "miles")
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(5 + 5 / 12, "feet"),
  9718. weight: math.unit(150, "lb"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/joshii/front.svg",
  9722. extra: 765 / 653,
  9723. bottom: 51 / 816
  9724. }
  9725. },
  9726. foot: {
  9727. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9728. name: "Foot",
  9729. image: {
  9730. source: "./media/characters/joshii/foot.svg"
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Micro",
  9737. height: math.unit(2, "inches")
  9738. },
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(5 + 5 / 12, "feet")
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(785, "feet"),
  9746. default: true
  9747. },
  9748. {
  9749. name: "Megamacro",
  9750. height: math.unit(24.5, "miles")
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(6, "feet"),
  9759. weight: math.unit(150, "lb"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/goddess-elizabeth/front.svg",
  9763. extra: 1800 / 1525,
  9764. bottom: 0.005
  9765. }
  9766. },
  9767. foot: {
  9768. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9769. name: "Foot",
  9770. image: {
  9771. source: "./media/characters/goddess-elizabeth/foot.svg"
  9772. }
  9773. },
  9774. mouth: {
  9775. height: math.unit(6, "feet"),
  9776. name: "Mouth",
  9777. image: {
  9778. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Micro",
  9785. height: math.unit(12, "feet")
  9786. },
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(80, "miles"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Macro",
  9794. height: math.unit(15000, "parsecs")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(5 + 9 / 12, "feet"),
  9803. weight: math.unit(144, "lb"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/kara/front.svg"
  9807. }
  9808. },
  9809. feet: {
  9810. height: math.unit(6 / 6.765, "feet"),
  9811. name: "Kara's Feet",
  9812. rename: true,
  9813. image: {
  9814. source: "./media/characters/kara/feet.svg"
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(5 + 9 / 12, "feet")
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(174, "feet"),
  9826. default: true
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9832. {
  9833. front: {
  9834. height: math.unit(18, "feet"),
  9835. weight: math.unit(4050, "lb"),
  9836. name: "Front",
  9837. image: {
  9838. source: "./media/characters/tyrone/front.svg",
  9839. extra: 2405 / 2270,
  9840. bottom: 182 / 2587
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(18, "feet"),
  9848. default: true
  9849. },
  9850. {
  9851. name: "Macro",
  9852. height: math.unit(300, "feet")
  9853. },
  9854. {
  9855. name: "Megamacro",
  9856. height: math.unit(15, "km")
  9857. },
  9858. {
  9859. name: "Gigamacro",
  9860. height: math.unit(500, "km")
  9861. },
  9862. {
  9863. name: "Teramacro",
  9864. height: math.unit(0.5, "gigameters")
  9865. },
  9866. {
  9867. name: "Omnimacro",
  9868. height: math.unit(1e252, "yottauniverse")
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9874. {
  9875. front: {
  9876. height: math.unit(7 + 8 / 12, "feet"),
  9877. weight: math.unit(120, "lb"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/danny/front.svg",
  9881. extra: 1490 / 1350
  9882. }
  9883. },
  9884. back: {
  9885. height: math.unit(7 + 8 / 12, "feet"),
  9886. weight: math.unit(120, "lb"),
  9887. name: "Back",
  9888. image: {
  9889. source: "./media/characters/danny/back.svg",
  9890. extra: 1490 / 1350
  9891. }
  9892. },
  9893. },
  9894. [
  9895. {
  9896. name: "Normal",
  9897. height: math.unit(7 + 8 / 12, "feet"),
  9898. default: true
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(3.5, "inches"),
  9907. weight: math.unit(19, "grams"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/mallow/front.svg",
  9911. extra: 471 / 431
  9912. }
  9913. },
  9914. back: {
  9915. height: math.unit(3.5, "inches"),
  9916. weight: math.unit(19, "grams"),
  9917. name: "Back",
  9918. image: {
  9919. source: "./media/characters/mallow/back.svg",
  9920. extra: 471 / 431
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(3.5, "inches"),
  9928. default: true
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9934. {
  9935. front: {
  9936. height: math.unit(9, "feet"),
  9937. weight: math.unit(230, "kg"),
  9938. name: "Front",
  9939. image: {
  9940. source: "./media/characters/starry-aqua/front.svg"
  9941. }
  9942. },
  9943. back: {
  9944. height: math.unit(9, "feet"),
  9945. weight: math.unit(230, "kg"),
  9946. name: "Back",
  9947. image: {
  9948. source: "./media/characters/starry-aqua/back.svg"
  9949. }
  9950. },
  9951. hand: {
  9952. height: math.unit(9 * 0.1168, "feet"),
  9953. name: "Hand",
  9954. image: {
  9955. source: "./media/characters/starry-aqua/hand.svg"
  9956. }
  9957. },
  9958. foot: {
  9959. height: math.unit(9 * 0.18, "feet"),
  9960. name: "Foot",
  9961. image: {
  9962. source: "./media/characters/starry-aqua/foot.svg"
  9963. }
  9964. }
  9965. },
  9966. [
  9967. {
  9968. name: "Micro",
  9969. height: math.unit(3, "inches")
  9970. },
  9971. {
  9972. name: "Normal",
  9973. height: math.unit(9, "feet")
  9974. },
  9975. {
  9976. name: "Macro",
  9977. height: math.unit(300, "feet"),
  9978. default: true
  9979. },
  9980. {
  9981. name: "Megamacro",
  9982. height: math.unit(3200, "feet")
  9983. }
  9984. ]
  9985. ))
  9986. characterMakers.push(() => makeCharacter(
  9987. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9988. {
  9989. front: {
  9990. height: math.unit(15, "feet"),
  9991. weight: math.unit(5026, "lb"),
  9992. name: "Front",
  9993. image: {
  9994. source: "./media/characters/luka-towers/front.svg",
  9995. extra: 1269/1133,
  9996. bottom: 51/1320
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(15, "feet"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Minimacro",
  10008. height: math.unit(25, "feet")
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(320, "feet")
  10013. },
  10014. {
  10015. name: "Megamacro",
  10016. height: math.unit(35000, "feet")
  10017. },
  10018. {
  10019. name: "Gigamacro",
  10020. height: math.unit(4000, "miles")
  10021. },
  10022. {
  10023. name: "Teramacro",
  10024. height: math.unit(15000, "miles")
  10025. },
  10026. ]
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10030. {
  10031. front: {
  10032. height: math.unit(6, "feet"),
  10033. weight: math.unit(150, "lb"),
  10034. name: "Front",
  10035. image: {
  10036. source: "./media/characters/natalie-nightring/front.svg",
  10037. extra: 1,
  10038. bottom: 0.06
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Uh Oh",
  10045. height: math.unit(0.1, "mm")
  10046. },
  10047. {
  10048. name: "Small",
  10049. height: math.unit(3, "inches")
  10050. },
  10051. {
  10052. name: "Human Scale",
  10053. height: math.unit(6, "feet")
  10054. },
  10055. {
  10056. name: "Librarian",
  10057. height: math.unit(50, "feet"),
  10058. default: true
  10059. },
  10060. {
  10061. name: "Immense",
  10062. height: math.unit(200, "miles")
  10063. },
  10064. ]
  10065. ))
  10066. characterMakers.push(() => makeCharacter(
  10067. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10068. {
  10069. front: {
  10070. height: math.unit(6, "feet"),
  10071. weight: math.unit(180, "lbs"),
  10072. name: "Front",
  10073. image: {
  10074. source: "./media/characters/danni-rosie/front.svg",
  10075. extra: 1260 / 1128,
  10076. bottom: 0.022
  10077. }
  10078. },
  10079. },
  10080. [
  10081. {
  10082. name: "Micro",
  10083. height: math.unit(2, "inches"),
  10084. default: true
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(5 + 9 / 12, "feet"),
  10093. weight: math.unit(220, "lb"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/samantha-kruse/front.svg",
  10097. extra: (985 / 935),
  10098. bottom: 0.03
  10099. }
  10100. },
  10101. frontUndressed: {
  10102. height: math.unit(5 + 9 / 12, "feet"),
  10103. weight: math.unit(220, "lb"),
  10104. name: "Front (Undressed)",
  10105. image: {
  10106. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10107. extra: (973 / 923),
  10108. bottom: 0.025
  10109. }
  10110. },
  10111. fat: {
  10112. height: math.unit(5 + 9 / 12, "feet"),
  10113. weight: math.unit(900, "lb"),
  10114. name: "Front (Fat)",
  10115. image: {
  10116. source: "./media/characters/samantha-kruse/fat.svg",
  10117. extra: 2688 / 2561
  10118. }
  10119. },
  10120. },
  10121. [
  10122. {
  10123. name: "Normal",
  10124. height: math.unit(5 + 9 / 12, "feet"),
  10125. default: true
  10126. }
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10131. {
  10132. back: {
  10133. height: math.unit(5 + 4 / 12, "feet"),
  10134. weight: math.unit(4963, "lb"),
  10135. name: "Back",
  10136. image: {
  10137. source: "./media/characters/amelia-rosie/back.svg",
  10138. extra: 1113 / 963,
  10139. bottom: 0.01
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Level 0",
  10146. height: math.unit(5 + 4 / 12, "feet")
  10147. },
  10148. {
  10149. name: "Level 1",
  10150. height: math.unit(164597, "feet"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Level 2",
  10155. height: math.unit(956243, "miles")
  10156. },
  10157. {
  10158. name: "Level 3",
  10159. height: math.unit(29421709423, "miles")
  10160. },
  10161. {
  10162. name: "Level 4",
  10163. height: math.unit(154, "lightyears")
  10164. },
  10165. {
  10166. name: "Level 5",
  10167. height: math.unit(4738272, "lightyears")
  10168. },
  10169. {
  10170. name: "Level 6",
  10171. height: math.unit(145787152896, "lightyears")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(5 + 11 / 12, "feet"),
  10180. weight: math.unit(65, "kg"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/rook-kitara/front.svg",
  10184. extra: 1347 / 1274,
  10185. bottom: 0.005
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Totally Unfair",
  10192. height: math.unit(1.8, "mm")
  10193. },
  10194. {
  10195. name: "Lap Rookie",
  10196. height: math.unit(1.4, "feet")
  10197. },
  10198. {
  10199. name: "Normal",
  10200. height: math.unit(5 + 11 / 12, "feet"),
  10201. default: true
  10202. },
  10203. {
  10204. name: "How Did This Happen",
  10205. height: math.unit(80, "miles")
  10206. }
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10211. {
  10212. front: {
  10213. height: math.unit(7, "feet"),
  10214. weight: math.unit(300, "lb"),
  10215. name: "Front",
  10216. image: {
  10217. source: "./media/characters/pisces/front.svg",
  10218. extra: 2255 / 2115,
  10219. bottom: 0.03
  10220. }
  10221. },
  10222. back: {
  10223. height: math.unit(7, "feet"),
  10224. weight: math.unit(300, "lb"),
  10225. name: "Back",
  10226. image: {
  10227. source: "./media/characters/pisces/back.svg",
  10228. extra: 2146 / 2055,
  10229. bottom: 0.04
  10230. }
  10231. },
  10232. },
  10233. [
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(7, "feet"),
  10237. default: true
  10238. },
  10239. {
  10240. name: "Swimming Pool",
  10241. height: math.unit(12.2, "meters")
  10242. },
  10243. {
  10244. name: "Olympic Swimming Pool",
  10245. height: math.unit(56.3, "meters")
  10246. },
  10247. {
  10248. name: "Lake Superior",
  10249. height: math.unit(93900, "meters")
  10250. },
  10251. {
  10252. name: "Mediterranean Sea",
  10253. height: math.unit(644457, "meters")
  10254. },
  10255. {
  10256. name: "World's Oceans",
  10257. height: math.unit(4567491, "meters")
  10258. },
  10259. ]
  10260. ))
  10261. characterMakers.push(() => makeCharacter(
  10262. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10263. {
  10264. front: {
  10265. height: math.unit(2.3, "meters"),
  10266. weight: math.unit(120, "kg"),
  10267. name: "Front",
  10268. image: {
  10269. source: "./media/characters/zelas/front.svg"
  10270. }
  10271. },
  10272. side: {
  10273. height: math.unit(2.3, "meters"),
  10274. weight: math.unit(120, "kg"),
  10275. name: "Side",
  10276. image: {
  10277. source: "./media/characters/zelas/side.svg"
  10278. }
  10279. },
  10280. back: {
  10281. height: math.unit(2.3, "meters"),
  10282. weight: math.unit(120, "kg"),
  10283. name: "Back",
  10284. image: {
  10285. source: "./media/characters/zelas/back.svg"
  10286. }
  10287. },
  10288. foot: {
  10289. height: math.unit(1.116, "feet"),
  10290. name: "Foot",
  10291. image: {
  10292. source: "./media/characters/zelas/foot.svg"
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(2.3, "meters")
  10300. },
  10301. {
  10302. name: "Macro",
  10303. height: math.unit(30, "meters"),
  10304. default: true
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(1, "inch"),
  10313. weight: math.unit(0.21, "grams"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/talbot/front.svg",
  10317. extra: 594 / 544
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Micro",
  10324. height: math.unit(1, "inch"),
  10325. default: true
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10331. {
  10332. front: {
  10333. height: math.unit(3 + 3 / 12, "feet"),
  10334. weight: math.unit(51.8, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/fliss/front.svg",
  10338. extra: 840 / 640
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Teeny Tiny",
  10345. height: math.unit(1, "mm")
  10346. },
  10347. {
  10348. name: "Small",
  10349. height: math.unit(1, "inch"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Standard Sylveon",
  10354. height: math.unit(3 + 3 / 12, "feet")
  10355. },
  10356. {
  10357. name: "Large Nuisance",
  10358. height: math.unit(33, "feet")
  10359. },
  10360. {
  10361. name: "City Filler",
  10362. height: math.unit(3000, "feet")
  10363. },
  10364. {
  10365. name: "New Horizon",
  10366. height: math.unit(6000, "miles")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(5, "cm"),
  10375. weight: math.unit(1.94, "g"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/fleta/front.svg",
  10379. extra: 835 / 803
  10380. }
  10381. },
  10382. back: {
  10383. height: math.unit(5, "cm"),
  10384. weight: math.unit(1.94, "g"),
  10385. name: "Back",
  10386. image: {
  10387. source: "./media/characters/fleta/back.svg",
  10388. extra: 835 / 803
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Micro",
  10395. height: math.unit(5, "cm"),
  10396. default: true
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(6, "feet"),
  10405. weight: math.unit(225, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/dominic/front.svg",
  10409. extra: 1770 / 1620,
  10410. bottom: 0.025
  10411. }
  10412. },
  10413. back: {
  10414. height: math.unit(6, "feet"),
  10415. weight: math.unit(225, "lb"),
  10416. name: "Back",
  10417. image: {
  10418. source: "./media/characters/dominic/back.svg",
  10419. extra: 1745 / 1620,
  10420. bottom: 0.065
  10421. }
  10422. },
  10423. },
  10424. [
  10425. {
  10426. name: "Nano",
  10427. height: math.unit(0.1, "mm")
  10428. },
  10429. {
  10430. name: "Micro-",
  10431. height: math.unit(1, "mm")
  10432. },
  10433. {
  10434. name: "Micro",
  10435. height: math.unit(4, "inches")
  10436. },
  10437. {
  10438. name: "Normal",
  10439. height: math.unit(6 + 4 / 12, "feet"),
  10440. default: true
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(115, "feet")
  10445. },
  10446. {
  10447. name: "Macro+",
  10448. height: math.unit(955, "feet")
  10449. },
  10450. {
  10451. name: "Megamacro",
  10452. height: math.unit(8990, "feet")
  10453. },
  10454. {
  10455. name: "Gigmacro",
  10456. height: math.unit(9310, "miles")
  10457. },
  10458. {
  10459. name: "Teramacro",
  10460. height: math.unit(1567005010, "miles")
  10461. },
  10462. {
  10463. name: "Examacro",
  10464. height: math.unit(1425, "parsecs")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(400, "feet"),
  10473. weight: math.unit(44444444, "lb"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/major-colonel/front.svg"
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(400, "feet"),
  10481. weight: math.unit(44444444, "lb"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/major-colonel/back.svg"
  10485. }
  10486. },
  10487. },
  10488. [
  10489. {
  10490. name: "Macro",
  10491. height: math.unit(400, "feet"),
  10492. default: true
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10498. {
  10499. catFront: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(120, "lb"),
  10502. name: "Front (Cat Side)",
  10503. image: {
  10504. source: "./media/characters/axel-lycan/cat-front.svg",
  10505. extra: 430 / 402,
  10506. bottom: 43 / 472.35
  10507. }
  10508. },
  10509. catBack: {
  10510. height: math.unit(6, "feet"),
  10511. weight: math.unit(120, "lb"),
  10512. name: "Back (Cat Side)",
  10513. image: {
  10514. source: "./media/characters/axel-lycan/cat-back.svg",
  10515. extra: 447 / 419,
  10516. bottom: 23.3 / 469
  10517. }
  10518. },
  10519. wolfFront: {
  10520. height: math.unit(6, "feet"),
  10521. weight: math.unit(120, "lb"),
  10522. name: "Front (Wolf Side)",
  10523. image: {
  10524. source: "./media/characters/axel-lycan/wolf-front.svg",
  10525. extra: 485 / 456,
  10526. bottom: 19 / 504
  10527. }
  10528. },
  10529. wolfBack: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(120, "lb"),
  10532. name: "Back (Wolf Side)",
  10533. image: {
  10534. source: "./media/characters/axel-lycan/wolf-back.svg",
  10535. extra: 475 / 438,
  10536. bottom: 39.2 / 514
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Macro",
  10543. height: math.unit(1, "km"),
  10544. default: true
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(5 + 9 / 12, "feet"),
  10553. weight: math.unit(175, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/vanrel-hyena/front.svg",
  10557. extra: 1086 / 1010,
  10558. bottom: 0.04
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(5 + 9 / 12, "feet"),
  10566. default: true
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(6, "feet"),
  10575. weight: math.unit(103, "lb"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/abbott-absol/front.svg",
  10579. extra: 2010 / 1842
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Megamicro",
  10586. height: math.unit(0.1, "mm")
  10587. },
  10588. {
  10589. name: "Micro",
  10590. height: math.unit(1, "inch")
  10591. },
  10592. {
  10593. name: "Normal",
  10594. height: math.unit(6, "feet"),
  10595. default: true
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10601. {
  10602. front: {
  10603. height: math.unit(6, "feet"),
  10604. weight: math.unit(264, "lb"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/hector/front.svg",
  10608. extra: 2280 / 2130,
  10609. bottom: 0.07
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Normal",
  10616. height: math.unit(12.25, "foot"),
  10617. default: true
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(160, "feet")
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(150, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/sal/front.svg",
  10634. extra: 1846 / 1699,
  10635. bottom: 0.04
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(10, "miles"),
  10643. default: true
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10649. {
  10650. front: {
  10651. height: math.unit(3, "meters"),
  10652. weight: math.unit(450, "kg"),
  10653. name: "front",
  10654. image: {
  10655. source: "./media/characters/ranger/front.svg",
  10656. extra: 2401 / 2243,
  10657. bottom: 0.05
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(3, "meters"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10671. {
  10672. front: {
  10673. height: math.unit(14, "feet"),
  10674. weight: math.unit(800, "kg"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/theresa/front.svg",
  10678. extra: 3575 / 3346,
  10679. bottom: 0.03
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Normal",
  10686. height: math.unit(14, "feet"),
  10687. default: true
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10693. {
  10694. front: {
  10695. height: math.unit(6, "feet"),
  10696. weight: math.unit(3, "kg"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/ine/front.svg",
  10700. extra: 678 / 539,
  10701. bottom: 0.023
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Normal",
  10708. height: math.unit(2.265, "feet"),
  10709. default: true
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10715. {
  10716. front: {
  10717. height: math.unit(5, "feet"),
  10718. weight: math.unit(30, "kg"),
  10719. name: "Front",
  10720. image: {
  10721. source: "./media/characters/vial/front.svg",
  10722. extra: 1365 / 1277,
  10723. bottom: 0.04
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(5, "feet"),
  10731. default: true
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10737. {
  10738. side: {
  10739. height: math.unit(3.4, "meters"),
  10740. weight: math.unit(1000, "lb"),
  10741. name: "Side",
  10742. image: {
  10743. source: "./media/characters/rovoska/side.svg",
  10744. extra: 4403 / 1515
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(3.4, "meters"),
  10752. default: true
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10758. {
  10759. front: {
  10760. height: math.unit(8, "feet"),
  10761. weight: math.unit(315, "lb"),
  10762. name: "Front",
  10763. image: {
  10764. source: "./media/characters/gunner-rotthbauer/front.svg"
  10765. }
  10766. },
  10767. back: {
  10768. height: math.unit(8, "feet"),
  10769. weight: math.unit(315, "lb"),
  10770. name: "Back",
  10771. image: {
  10772. source: "./media/characters/gunner-rotthbauer/back.svg"
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Micro",
  10779. height: math.unit(3.5, "inches")
  10780. },
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(8, "feet"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Macro",
  10788. height: math.unit(250, "feet")
  10789. },
  10790. {
  10791. name: "Megamacro",
  10792. height: math.unit(1, "AU")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(5 + 5 / 12, "feet"),
  10801. weight: math.unit(140, "lb"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/allatia/front.svg",
  10805. extra: 1227 / 1180,
  10806. bottom: 0.027
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(5 + 5 / 12, "feet")
  10814. },
  10815. {
  10816. name: "Macro",
  10817. height: math.unit(250, "feet"),
  10818. default: true
  10819. },
  10820. {
  10821. name: "Megamacro",
  10822. height: math.unit(8, "miles")
  10823. }
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(120, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/tene/front.svg",
  10835. extra: 814/750,
  10836. bottom: 36/850
  10837. }
  10838. },
  10839. stomping: {
  10840. height: math.unit(2.025, "meters"),
  10841. weight: math.unit(120, "lb"),
  10842. name: "Stomping",
  10843. image: {
  10844. source: "./media/characters/tene/stomping.svg",
  10845. extra: 885/821,
  10846. bottom: 15/900
  10847. }
  10848. },
  10849. sitting: {
  10850. height: math.unit(1, "meter"),
  10851. weight: math.unit(120, "lb"),
  10852. name: "Sitting",
  10853. image: {
  10854. source: "./media/characters/tene/sitting.svg",
  10855. extra: 396/366,
  10856. bottom: 79/475
  10857. }
  10858. },
  10859. smiling: {
  10860. height: math.unit(1.2, "feet"),
  10861. name: "Smiling",
  10862. image: {
  10863. source: "./media/characters/tene/smiling.svg",
  10864. extra: 1364/1071,
  10865. bottom: 0/1364
  10866. }
  10867. },
  10868. smug: {
  10869. height: math.unit(1.3, "feet"),
  10870. name: "Smug",
  10871. image: {
  10872. source: "./media/characters/tene/smug.svg",
  10873. extra: 1323/1082,
  10874. bottom: 0/1323
  10875. }
  10876. },
  10877. feral: {
  10878. height: math.unit(3.9, "feet"),
  10879. weight: math.unit(250, "lb"),
  10880. name: "Feral",
  10881. image: {
  10882. source: "./media/characters/tene/feral.svg",
  10883. extra: 717 / 458,
  10884. bottom: 0.179
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Normal",
  10891. height: math.unit(6, "feet")
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(300, "feet"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Megamacro",
  10900. height: math.unit(5, "miles")
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10906. {
  10907. side: {
  10908. height: math.unit(6, "feet"),
  10909. name: "Side",
  10910. image: {
  10911. source: "./media/characters/evander/side.svg",
  10912. extra: 877 / 477
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Normal",
  10919. height: math.unit(0.83, "meters"),
  10920. default: true
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(12, "feet"),
  10929. weight: math.unit(1000, "lb"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10933. extra: 1762 / 1611
  10934. }
  10935. },
  10936. back: {
  10937. height: math.unit(12, "feet"),
  10938. weight: math.unit(1000, "lb"),
  10939. name: "Back",
  10940. image: {
  10941. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10942. extra: 1762 / 1611
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(12, "feet"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Kaiju",
  10954. height: math.unit(150, "feet")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/zero-alurus/front.svg"
  10967. }
  10968. },
  10969. back: {
  10970. height: math.unit(6, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Back",
  10973. image: {
  10974. source: "./media/characters/zero-alurus/back.svg"
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Normal",
  10981. height: math.unit(5 + 10 / 12, "feet")
  10982. },
  10983. {
  10984. name: "Macro",
  10985. height: math.unit(60, "feet"),
  10986. default: true
  10987. },
  10988. {
  10989. name: "Macro+",
  10990. height: math.unit(450, "feet")
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(6, "feet"),
  10999. weight: math.unit(200, "lb"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/mega-shi/front.svg",
  11003. extra: 1279 / 1250,
  11004. bottom: 0.02
  11005. }
  11006. },
  11007. back: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(200, "lb"),
  11010. name: "Back",
  11011. image: {
  11012. source: "./media/characters/mega-shi/back.svg",
  11013. extra: 1279 / 1250,
  11014. bottom: 0.02
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Micro",
  11021. height: math.unit(16 + 6 / 12, "feet")
  11022. },
  11023. {
  11024. name: "Third Dimension",
  11025. height: math.unit(40, "meters")
  11026. },
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(660, "feet"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Megamacro",
  11034. height: math.unit(10, "miles")
  11035. },
  11036. {
  11037. name: "Planetary Launch",
  11038. height: math.unit(500, "miles")
  11039. },
  11040. {
  11041. name: "Interstellar",
  11042. height: math.unit(1e9, "miles")
  11043. },
  11044. {
  11045. name: "Leaving the Universe",
  11046. height: math.unit(1, "gigaparsec")
  11047. },
  11048. {
  11049. name: "Travelling Universes",
  11050. height: math.unit(30e15, "parsecs")
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(5 + 4/12, "feet"),
  11059. weight: math.unit(120, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/odyssey/front.svg",
  11063. extra: 1747/1571,
  11064. bottom: 47/1794
  11065. }
  11066. },
  11067. side: {
  11068. height: math.unit(5.1, "feet"),
  11069. weight: math.unit(120, "lb"),
  11070. name: "Side",
  11071. image: {
  11072. source: "./media/characters/odyssey/side.svg",
  11073. extra: 1847/1619,
  11074. bottom: 47/1894
  11075. }
  11076. },
  11077. lounging: {
  11078. height: math.unit(1.464, "feet"),
  11079. weight: math.unit(120, "lb"),
  11080. name: "Lounging",
  11081. image: {
  11082. source: "./media/characters/odyssey/lounging.svg",
  11083. extra: 1235/837,
  11084. bottom: 551/1786
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(5 + 4 / 12, "feet")
  11092. },
  11093. {
  11094. name: "Macro",
  11095. height: math.unit(1, "km")
  11096. },
  11097. {
  11098. name: "Megamacro",
  11099. height: math.unit(3000, "km")
  11100. },
  11101. {
  11102. name: "Gigamacro",
  11103. height: math.unit(1, "AU"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Omniversal",
  11108. height: math.unit(100e14, "lightyears")
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11114. {
  11115. front: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(300, "lb"),
  11118. name: "Front",
  11119. image: {
  11120. source: "./media/characters/mekuto/front.svg",
  11121. extra: 921 / 832,
  11122. bottom: 0.03
  11123. }
  11124. },
  11125. hand: {
  11126. height: math.unit(6 / 10.24, "feet"),
  11127. name: "Hand",
  11128. image: {
  11129. source: "./media/characters/mekuto/hand.svg"
  11130. }
  11131. },
  11132. foot: {
  11133. height: math.unit(6 / 5.05, "feet"),
  11134. name: "Foot",
  11135. image: {
  11136. source: "./media/characters/mekuto/foot.svg"
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Minimicro",
  11143. height: math.unit(0.2, "inches")
  11144. },
  11145. {
  11146. name: "Micro",
  11147. height: math.unit(1.5, "inches")
  11148. },
  11149. {
  11150. name: "Normal",
  11151. height: math.unit(5 + 11 / 12, "feet"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Minimacro",
  11156. height: math.unit(17 + 9 / 12, "feet")
  11157. },
  11158. {
  11159. name: "Macro",
  11160. height: math.unit(177.5, "feet")
  11161. },
  11162. {
  11163. name: "Megamacro",
  11164. height: math.unit(152, "miles")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6.5, "inches"),
  11173. weight: math.unit(13, "oz"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/dafydd-tomos/front.svg",
  11177. extra: 2990 / 2603,
  11178. bottom: 0.03
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Micro",
  11185. height: math.unit(6.5, "inches"),
  11186. default: true
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(150, "lb"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/splinter/front.svg",
  11199. extra: 2990 / 2882,
  11200. bottom: 0.04
  11201. }
  11202. },
  11203. back: {
  11204. height: math.unit(6, "feet"),
  11205. weight: math.unit(150, "lb"),
  11206. name: "Back",
  11207. image: {
  11208. source: "./media/characters/splinter/back.svg",
  11209. extra: 2990 / 2882,
  11210. bottom: 0.04
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Normal",
  11217. height: math.unit(6, "feet")
  11218. },
  11219. {
  11220. name: "Macro",
  11221. height: math.unit(230, "meters"),
  11222. default: true
  11223. },
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11228. {
  11229. front: {
  11230. height: math.unit(4 + 10 / 12, "feet"),
  11231. weight: math.unit(480, "lb"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/snow-gabumon/front.svg",
  11235. extra: 1140 / 963,
  11236. bottom: 0.058
  11237. }
  11238. },
  11239. back: {
  11240. height: math.unit(4 + 10 / 12, "feet"),
  11241. weight: math.unit(480, "lb"),
  11242. name: "Back",
  11243. image: {
  11244. source: "./media/characters/snow-gabumon/back.svg",
  11245. extra: 1115 / 962,
  11246. bottom: 0.041
  11247. }
  11248. },
  11249. frontUndresed: {
  11250. height: math.unit(4 + 10 / 12, "feet"),
  11251. weight: math.unit(480, "lb"),
  11252. name: "Front (Undressed)",
  11253. image: {
  11254. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11255. extra: 1061 / 960,
  11256. bottom: 0.045
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Micro",
  11263. height: math.unit(1, "inch")
  11264. },
  11265. {
  11266. name: "Normal",
  11267. height: math.unit(4 + 10 / 12, "feet"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Macro",
  11272. height: math.unit(200, "feet")
  11273. },
  11274. {
  11275. name: "Megamacro",
  11276. height: math.unit(120, "miles")
  11277. },
  11278. {
  11279. name: "Gigamacro",
  11280. height: math.unit(9800, "miles")
  11281. },
  11282. ]
  11283. ))
  11284. characterMakers.push(() => makeCharacter(
  11285. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11286. {
  11287. front: {
  11288. height: math.unit(1.7, "meters"),
  11289. weight: math.unit(140, "lb"),
  11290. name: "Front",
  11291. image: {
  11292. source: "./media/characters/moody/front.svg",
  11293. extra: 3226 / 3007,
  11294. bottom: 0.087
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Micro",
  11301. height: math.unit(1, "mm")
  11302. },
  11303. {
  11304. name: "Normal",
  11305. height: math.unit(1.7, "meters"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(80, "meters")
  11311. },
  11312. {
  11313. name: "Macro+",
  11314. height: math.unit(500, "meters")
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(150, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/zyas/front.svg",
  11327. extra: 1180 / 1120,
  11328. bottom: 0.045
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Normal",
  11335. height: math.unit(10, "feet"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Macro",
  11340. height: math.unit(500, "feet")
  11341. },
  11342. {
  11343. name: "Megamacro",
  11344. height: math.unit(5, "miles")
  11345. },
  11346. {
  11347. name: "Teramacro",
  11348. height: math.unit(150000, "miles")
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(150, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/cuon/front.svg",
  11361. extra: 1390 / 1320,
  11362. bottom: 0.008
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Micro",
  11369. height: math.unit(3, "inches")
  11370. },
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(18 + 9 / 12, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(360, "feet")
  11379. },
  11380. {
  11381. name: "Megamacro",
  11382. height: math.unit(360, "miles")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(2.4, "meters"),
  11391. weight: math.unit(70, "kg"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/nyanuxk/front.svg",
  11395. extra: 1172 / 1084,
  11396. bottom: 0.065
  11397. }
  11398. },
  11399. side: {
  11400. height: math.unit(2.4, "meters"),
  11401. weight: math.unit(70, "kg"),
  11402. name: "Side",
  11403. image: {
  11404. source: "./media/characters/nyanuxk/side.svg",
  11405. extra: 1190 / 1132,
  11406. bottom: 0.007
  11407. }
  11408. },
  11409. back: {
  11410. height: math.unit(2.4, "meters"),
  11411. weight: math.unit(70, "kg"),
  11412. name: "Back",
  11413. image: {
  11414. source: "./media/characters/nyanuxk/back.svg",
  11415. extra: 1200 / 1141,
  11416. bottom: 0.015
  11417. }
  11418. },
  11419. foot: {
  11420. height: math.unit(0.52, "meters"),
  11421. name: "Foot",
  11422. image: {
  11423. source: "./media/characters/nyanuxk/foot.svg"
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Micro",
  11430. height: math.unit(2, "cm")
  11431. },
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(2.4, "meters"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Smaller Macro",
  11439. height: math.unit(120, "meters")
  11440. },
  11441. {
  11442. name: "Bigger Macro",
  11443. height: math.unit(1.2, "km")
  11444. },
  11445. {
  11446. name: "Megamacro",
  11447. height: math.unit(15, "kilometers")
  11448. },
  11449. {
  11450. name: "Gigamacro",
  11451. height: math.unit(2000, "km")
  11452. },
  11453. {
  11454. name: "Teramacro",
  11455. height: math.unit(500000, "km")
  11456. },
  11457. ]
  11458. ))
  11459. characterMakers.push(() => makeCharacter(
  11460. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11461. {
  11462. side: {
  11463. height: math.unit(6, "feet"),
  11464. name: "Side",
  11465. image: {
  11466. source: "./media/characters/ailbhe/side.svg",
  11467. extra: 757 / 464,
  11468. bottom: 0.041
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(1.07, "meters"),
  11476. default: true
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(120, "kg"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/zevulfius/front.svg",
  11489. extra: 965 / 903
  11490. }
  11491. },
  11492. side: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(120, "kg"),
  11495. name: "Side",
  11496. image: {
  11497. source: "./media/characters/zevulfius/side.svg",
  11498. extra: 939 / 900
  11499. }
  11500. },
  11501. back: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(120, "kg"),
  11504. name: "Back",
  11505. image: {
  11506. source: "./media/characters/zevulfius/back.svg",
  11507. extra: 918 / 854,
  11508. bottom: 0.005
  11509. }
  11510. },
  11511. foot: {
  11512. height: math.unit(6 / 3.72, "feet"),
  11513. name: "Foot",
  11514. image: {
  11515. source: "./media/characters/zevulfius/foot.svg"
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Macro",
  11522. height: math.unit(750, "meters")
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(20, "km"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Gigamacro",
  11531. height: math.unit(2000, "km")
  11532. },
  11533. {
  11534. name: "Teramacro",
  11535. height: math.unit(250000, "km")
  11536. },
  11537. ]
  11538. ))
  11539. characterMakers.push(() => makeCharacter(
  11540. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11541. {
  11542. front: {
  11543. height: math.unit(100, "feet"),
  11544. weight: math.unit(350, "kg"),
  11545. name: "Front",
  11546. image: {
  11547. source: "./media/characters/rikes/front.svg",
  11548. extra: 1565 / 1483,
  11549. bottom: 0.017
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Macro",
  11556. height: math.unit(100, "feet"),
  11557. default: true
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(8, "feet"),
  11566. weight: math.unit(356, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/adam-silver-mane/front.svg",
  11570. extra: 1036/937,
  11571. bottom: 63/1099
  11572. }
  11573. },
  11574. side: {
  11575. height: math.unit(8, "feet"),
  11576. weight: math.unit(356, "lb"),
  11577. name: "Side",
  11578. image: {
  11579. source: "./media/characters/adam-silver-mane/side.svg",
  11580. extra: 997/901,
  11581. bottom: 59/1056
  11582. }
  11583. },
  11584. frontNsfw: {
  11585. height: math.unit(8, "feet"),
  11586. weight: math.unit(356, "lb"),
  11587. name: "Front (NSFW)",
  11588. image: {
  11589. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11590. extra: 1036/937,
  11591. bottom: 63/1099
  11592. }
  11593. },
  11594. sideNsfw: {
  11595. height: math.unit(8, "feet"),
  11596. weight: math.unit(356, "lb"),
  11597. name: "Side (NSFW)",
  11598. image: {
  11599. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11600. extra: 997/901,
  11601. bottom: 59/1056
  11602. }
  11603. },
  11604. dick: {
  11605. height: math.unit(2.1, "feet"),
  11606. name: "Dick",
  11607. image: {
  11608. source: "./media/characters/adam-silver-mane/dick.svg"
  11609. }
  11610. },
  11611. taur: {
  11612. height: math.unit(16, "feet"),
  11613. weight: math.unit(1500, "kg"),
  11614. name: "Taur",
  11615. image: {
  11616. source: "./media/characters/adam-silver-mane/taur.svg",
  11617. extra: 1713 / 1571,
  11618. bottom: 0.01
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Normal",
  11625. height: math.unit(8, "feet")
  11626. },
  11627. {
  11628. name: "Minimacro",
  11629. height: math.unit(80, "feet")
  11630. },
  11631. {
  11632. name: "MDA",
  11633. height: math.unit(80, "meters")
  11634. },
  11635. {
  11636. name: "Macro",
  11637. height: math.unit(800, "feet"),
  11638. default: true
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(8000, "feet")
  11643. },
  11644. {
  11645. name: "Gigamacro",
  11646. height: math.unit(800, "miles")
  11647. },
  11648. {
  11649. name: "Teramacro",
  11650. height: math.unit(80000, "miles")
  11651. },
  11652. {
  11653. name: "Celestial",
  11654. height: math.unit(8e6, "miles")
  11655. },
  11656. {
  11657. name: "Star Dragon",
  11658. height: math.unit(800000, "parsecs")
  11659. },
  11660. {
  11661. name: "Godly",
  11662. height: math.unit(800, "teraparsecs")
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(150, "lb"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/ky'owin/front.svg",
  11675. extra: 3862/3053,
  11676. bottom: 74/3936
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(6 + 8 / 12, "feet")
  11684. },
  11685. {
  11686. name: "Large",
  11687. height: math.unit(68, "feet")
  11688. },
  11689. {
  11690. name: "Macro",
  11691. height: math.unit(132, "feet")
  11692. },
  11693. {
  11694. name: "Macro+",
  11695. height: math.unit(340, "feet")
  11696. },
  11697. {
  11698. name: "Macro++",
  11699. height: math.unit(680, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Megamacro",
  11704. height: math.unit(1, "mile")
  11705. },
  11706. {
  11707. name: "Megamacro+",
  11708. height: math.unit(10, "miles")
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11714. {
  11715. front: {
  11716. height: math.unit(4, "feet"),
  11717. weight: math.unit(50, "lb"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/mal/front.svg",
  11721. extra: 785 / 724,
  11722. bottom: 0.07
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Micro",
  11729. height: math.unit(4, "inches")
  11730. },
  11731. {
  11732. name: "Normal",
  11733. height: math.unit(4, "feet"),
  11734. default: true
  11735. },
  11736. {
  11737. name: "Macro",
  11738. height: math.unit(200, "feet")
  11739. },
  11740. ]
  11741. ))
  11742. characterMakers.push(() => makeCharacter(
  11743. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11744. {
  11745. front: {
  11746. height: math.unit(6, "feet"),
  11747. weight: math.unit(150, "lb"),
  11748. name: "Front",
  11749. image: {
  11750. source: "./media/characters/jordan-deware/front.svg",
  11751. extra: 1191 / 1012
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Nano",
  11758. height: math.unit(0.01, "mm")
  11759. },
  11760. {
  11761. name: "Minimicro",
  11762. height: math.unit(1, "mm")
  11763. },
  11764. {
  11765. name: "Micro",
  11766. height: math.unit(0.5, "inches")
  11767. },
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(4, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Minimacro",
  11775. height: math.unit(40, "meters")
  11776. },
  11777. {
  11778. name: "Small Macro",
  11779. height: math.unit(400, "meters")
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(4, "miles")
  11784. },
  11785. {
  11786. name: "Megamacro",
  11787. height: math.unit(40, "miles")
  11788. },
  11789. {
  11790. name: "Megamacro+",
  11791. height: math.unit(400, "miles")
  11792. },
  11793. {
  11794. name: "Gigamacro",
  11795. height: math.unit(400000, "miles")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11801. {
  11802. side: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(150, "lb"),
  11805. name: "Side",
  11806. image: {
  11807. source: "./media/characters/kimiko/side.svg",
  11808. extra: 600 / 358
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(15, "feet"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Macro",
  11820. height: math.unit(220, "feet")
  11821. },
  11822. {
  11823. name: "Macro+",
  11824. height: math.unit(1450, "feet")
  11825. },
  11826. {
  11827. name: "Megamacro",
  11828. height: math.unit(11500, "feet")
  11829. },
  11830. {
  11831. name: "Gigamacro",
  11832. height: math.unit(9500, "miles")
  11833. },
  11834. {
  11835. name: "Teramacro",
  11836. height: math.unit(2208005005, "miles")
  11837. },
  11838. {
  11839. name: "Examacro",
  11840. height: math.unit(2750, "parsecs")
  11841. },
  11842. {
  11843. name: "Zettamacro",
  11844. height: math.unit(101500, "parsecs")
  11845. },
  11846. ]
  11847. ))
  11848. characterMakers.push(() => makeCharacter(
  11849. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11850. {
  11851. front: {
  11852. height: math.unit(6, "feet"),
  11853. weight: math.unit(70, "kg"),
  11854. name: "Front",
  11855. image: {
  11856. source: "./media/characters/andrew-sleepy/front.svg"
  11857. }
  11858. },
  11859. side: {
  11860. height: math.unit(6, "feet"),
  11861. weight: math.unit(70, "kg"),
  11862. name: "Side",
  11863. image: {
  11864. source: "./media/characters/andrew-sleepy/side.svg"
  11865. }
  11866. },
  11867. },
  11868. [
  11869. {
  11870. name: "Micro",
  11871. height: math.unit(1, "mm"),
  11872. default: true
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11878. {
  11879. front: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(150, "lb"),
  11882. name: "Front",
  11883. image: {
  11884. source: "./media/characters/judio/front.svg",
  11885. extra: 1258 / 1110
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(5 + 6 / 12, "feet")
  11893. },
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(1000, "feet"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(10, "miles")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11907. {
  11908. frontDressed: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(68, "kg"),
  11911. name: "Front (Dressed)",
  11912. image: {
  11913. source: "./media/characters/nomaxice/front-dressed.svg",
  11914. extra: 1137/824,
  11915. bottom: 74/1211
  11916. }
  11917. },
  11918. frontShorts: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(68, "kg"),
  11921. name: "Front (Shorts)",
  11922. image: {
  11923. source: "./media/characters/nomaxice/front-shorts.svg",
  11924. extra: 1137/824,
  11925. bottom: 74/1211
  11926. }
  11927. },
  11928. back: {
  11929. height: math.unit(6, "feet"),
  11930. weight: math.unit(68, "kg"),
  11931. name: "Back",
  11932. image: {
  11933. source: "./media/characters/nomaxice/back.svg",
  11934. extra: 822/786,
  11935. bottom: 39/861
  11936. }
  11937. },
  11938. hand: {
  11939. height: math.unit(0.565, "feet"),
  11940. name: "Hand",
  11941. image: {
  11942. source: "./media/characters/nomaxice/hand.svg"
  11943. }
  11944. },
  11945. foot: {
  11946. height: math.unit(1, "feet"),
  11947. name: "Foot",
  11948. image: {
  11949. source: "./media/characters/nomaxice/foot.svg"
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Micro",
  11956. height: math.unit(8, "cm")
  11957. },
  11958. {
  11959. name: "Norm",
  11960. height: math.unit(1.82, "m")
  11961. },
  11962. {
  11963. name: "Norm+",
  11964. height: math.unit(8.8, "feet"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Big",
  11969. height: math.unit(8, "meters")
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(18, "meters")
  11974. },
  11975. {
  11976. name: "Macro+",
  11977. height: math.unit(88, "meters")
  11978. },
  11979. ]
  11980. ))
  11981. characterMakers.push(() => makeCharacter(
  11982. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11983. {
  11984. front: {
  11985. height: math.unit(12, "feet"),
  11986. weight: math.unit(1.5, "tons"),
  11987. name: "Front",
  11988. image: {
  11989. source: "./media/characters/dydros/front.svg",
  11990. extra: 863 / 800,
  11991. bottom: 0.015
  11992. }
  11993. },
  11994. back: {
  11995. height: math.unit(12, "feet"),
  11996. weight: math.unit(1.5, "tons"),
  11997. name: "Back",
  11998. image: {
  11999. source: "./media/characters/dydros/back.svg",
  12000. extra: 900 / 843,
  12001. bottom: 0.005
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Normal",
  12008. height: math.unit(12, "feet"),
  12009. default: true
  12010. },
  12011. ]
  12012. ))
  12013. characterMakers.push(() => makeCharacter(
  12014. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12015. {
  12016. front: {
  12017. height: math.unit(6, "feet"),
  12018. weight: math.unit(100, "kg"),
  12019. name: "Front",
  12020. image: {
  12021. source: "./media/characters/riggi/front.svg",
  12022. extra: 5787 / 5303
  12023. }
  12024. },
  12025. hyper: {
  12026. height: math.unit(6 * 5 / 3, "feet"),
  12027. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12028. name: "Hyper",
  12029. image: {
  12030. source: "./media/characters/riggi/hyper.svg",
  12031. extra: 3595 / 3485
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Small Macro",
  12038. height: math.unit(50, "feet")
  12039. },
  12040. {
  12041. name: "Default",
  12042. height: math.unit(200, "feet"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Loom",
  12047. height: math.unit(10000, "feet")
  12048. },
  12049. {
  12050. name: "Cruising Altitude",
  12051. height: math.unit(30000, "feet")
  12052. },
  12053. {
  12054. name: "Megamacro",
  12055. height: math.unit(100, "miles")
  12056. },
  12057. {
  12058. name: "Continent Sized",
  12059. height: math.unit(2800, "miles")
  12060. },
  12061. {
  12062. name: "Earth Sized",
  12063. height: math.unit(8000, "miles")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(250, "lb"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/alexi/front.svg",
  12076. extra: 3483 / 3291,
  12077. bottom: 0.04
  12078. }
  12079. },
  12080. back: {
  12081. height: math.unit(6, "feet"),
  12082. weight: math.unit(250, "lb"),
  12083. name: "Back",
  12084. image: {
  12085. source: "./media/characters/alexi/back.svg",
  12086. extra: 3533 / 3356,
  12087. bottom: 0.021
  12088. }
  12089. },
  12090. frontTransforming: {
  12091. height: math.unit(8.58, "feet"),
  12092. weight: math.unit(1300, "lb"),
  12093. name: "Transforming",
  12094. image: {
  12095. source: "./media/characters/alexi/front-transforming.svg",
  12096. extra: 437 / 409,
  12097. bottom: 19 / 458.66
  12098. }
  12099. },
  12100. frontTransformed: {
  12101. height: math.unit(12.5, "feet"),
  12102. weight: math.unit(4000, "lb"),
  12103. name: "Transformed",
  12104. image: {
  12105. source: "./media/characters/alexi/front-transformed.svg",
  12106. extra: 639 / 614,
  12107. bottom: 30.55 / 671
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Normal",
  12114. height: math.unit(14, "feet"),
  12115. default: true
  12116. },
  12117. {
  12118. name: "Minimacro",
  12119. height: math.unit(30, "meters")
  12120. },
  12121. {
  12122. name: "Macro",
  12123. height: math.unit(500, "meters")
  12124. },
  12125. {
  12126. name: "Megamacro",
  12127. height: math.unit(9000, "km")
  12128. },
  12129. {
  12130. name: "Teramacro",
  12131. height: math.unit(384000, "km")
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(150, "lb"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/kayroo/front.svg",
  12144. extra: 1153 / 1038,
  12145. bottom: 0.06
  12146. }
  12147. },
  12148. foot: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(150, "lb"),
  12151. name: "Foot",
  12152. image: {
  12153. source: "./media/characters/kayroo/foot.svg"
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(8, "feet"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Minimacro",
  12165. height: math.unit(250, "feet")
  12166. },
  12167. {
  12168. name: "Macro",
  12169. height: math.unit(2800, "feet")
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(5200, "feet")
  12174. },
  12175. {
  12176. name: "Gigamacro",
  12177. height: math.unit(27000, "feet")
  12178. },
  12179. {
  12180. name: "Omega",
  12181. height: math.unit(45000, "feet")
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(18, "feet"),
  12190. weight: math.unit(5800, "lb"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/rhys/front.svg",
  12194. extra: 3386 / 3090,
  12195. bottom: 0.07
  12196. }
  12197. },
  12198. },
  12199. [
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(18, "feet"),
  12203. default: true
  12204. },
  12205. {
  12206. name: "Working Size",
  12207. height: math.unit(200, "feet")
  12208. },
  12209. {
  12210. name: "Demolition Size",
  12211. height: math.unit(2000, "feet")
  12212. },
  12213. {
  12214. name: "Maximum Licensed Size",
  12215. height: math.unit(5, "miles")
  12216. },
  12217. {
  12218. name: "Maximum Observed Size",
  12219. height: math.unit(10, "yottameters")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12225. {
  12226. front: {
  12227. height: math.unit(6, "feet"),
  12228. weight: math.unit(250, "lb"),
  12229. name: "Front",
  12230. image: {
  12231. source: "./media/characters/toto/front.svg",
  12232. extra: 527 / 479,
  12233. bottom: 0.05
  12234. }
  12235. },
  12236. },
  12237. [
  12238. {
  12239. name: "Micro",
  12240. height: math.unit(3, "feet")
  12241. },
  12242. {
  12243. name: "Normal",
  12244. height: math.unit(10, "feet")
  12245. },
  12246. {
  12247. name: "Macro",
  12248. height: math.unit(150, "feet"),
  12249. default: true
  12250. },
  12251. {
  12252. name: "Megamacro",
  12253. height: math.unit(1200, "feet")
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "King", species: ["lion"], tags: ["anthro"] },
  12259. {
  12260. back: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(150, "lb"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/king/back.svg"
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Micro",
  12272. height: math.unit(2, "inches")
  12273. },
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(8, "feet")
  12277. },
  12278. {
  12279. name: "Macro",
  12280. height: math.unit(200, "feet"),
  12281. default: true
  12282. },
  12283. {
  12284. name: "Megamacro",
  12285. height: math.unit(50, "miles")
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12291. {
  12292. front: {
  12293. height: math.unit(11, "feet"),
  12294. weight: math.unit(1400, "lb"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/cordite/front.svg",
  12298. extra: 1919/1827,
  12299. bottom: 40/1959
  12300. }
  12301. },
  12302. side: {
  12303. height: math.unit(11, "feet"),
  12304. weight: math.unit(1400, "lb"),
  12305. name: "Side",
  12306. image: {
  12307. source: "./media/characters/cordite/side.svg",
  12308. extra: 1908/1793,
  12309. bottom: 38/1946
  12310. }
  12311. },
  12312. back: {
  12313. height: math.unit(11, "feet"),
  12314. weight: math.unit(1400, "lb"),
  12315. name: "Back",
  12316. image: {
  12317. source: "./media/characters/cordite/back.svg",
  12318. extra: 1938/1837,
  12319. bottom: 10/1948
  12320. }
  12321. },
  12322. feral: {
  12323. height: math.unit(2, "feet"),
  12324. weight: math.unit(90, "lb"),
  12325. name: "Feral",
  12326. image: {
  12327. source: "./media/characters/cordite/feral.svg",
  12328. extra: 1260 / 755,
  12329. bottom: 0.05
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(11, "feet"),
  12337. default: true
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(6, "feet"),
  12346. weight: math.unit(150, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/pianostrong/front.svg",
  12350. extra: 6577 / 6254,
  12351. bottom: 0.02
  12352. }
  12353. },
  12354. side: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(150, "lb"),
  12357. name: "Side",
  12358. image: {
  12359. source: "./media/characters/pianostrong/side.svg",
  12360. extra: 6106 / 5730
  12361. }
  12362. },
  12363. back: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(150, "lb"),
  12366. name: "Back",
  12367. image: {
  12368. source: "./media/characters/pianostrong/back.svg",
  12369. extra: 6085 / 5733,
  12370. bottom: 0.01
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Macro",
  12377. height: math.unit(100, "feet")
  12378. },
  12379. {
  12380. name: "Macro+",
  12381. height: math.unit(300, "feet"),
  12382. default: true
  12383. },
  12384. {
  12385. name: "Macro++",
  12386. height: math.unit(1000, "feet")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(150, "lb"),
  12396. name: "Front",
  12397. image: {
  12398. source: "./media/characters/kona/front.svg",
  12399. extra: 2960 / 2629,
  12400. bottom: 0.005
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(11 + 8 / 12, "feet")
  12408. },
  12409. {
  12410. name: "Macro",
  12411. height: math.unit(850, "feet"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Macro+",
  12416. height: math.unit(1.5, "km"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Megamacro",
  12421. height: math.unit(80, "miles")
  12422. },
  12423. {
  12424. name: "Gigamacro",
  12425. height: math.unit(3500, "miles")
  12426. },
  12427. ]
  12428. ))
  12429. characterMakers.push(() => makeCharacter(
  12430. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12431. {
  12432. side: {
  12433. height: math.unit(1.9, "meters"),
  12434. weight: math.unit(326, "kg"),
  12435. name: "Side",
  12436. image: {
  12437. source: "./media/characters/levi/side.svg",
  12438. extra: 1704 / 1334,
  12439. bottom: 0.02
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(1.9, "meters"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(20, "meters")
  12452. },
  12453. {
  12454. name: "Macro+",
  12455. height: math.unit(200, "meters")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(2, "km")
  12460. },
  12461. {
  12462. name: "Megamacro+",
  12463. height: math.unit(20, "km")
  12464. },
  12465. {
  12466. name: "Gigamacro",
  12467. height: math.unit(2500, "km")
  12468. },
  12469. {
  12470. name: "Gigamacro+",
  12471. height: math.unit(120000, "km")
  12472. },
  12473. {
  12474. name: "Teramacro",
  12475. height: math.unit(7.77e6, "km")
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12481. {
  12482. front: {
  12483. height: math.unit(6 + 4/12, "feet"),
  12484. weight: math.unit(190, "lb"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/bmc/front.svg",
  12488. extra: 1626/1472,
  12489. bottom: 79/1705
  12490. }
  12491. },
  12492. back: {
  12493. height: math.unit(6 + 4/12, "feet"),
  12494. weight: math.unit(190, "lb"),
  12495. name: "Back",
  12496. image: {
  12497. source: "./media/characters/bmc/back.svg",
  12498. extra: 1640/1479,
  12499. bottom: 45/1685
  12500. }
  12501. },
  12502. frontArmor: {
  12503. height: math.unit(6 + 4/12, "feet"),
  12504. weight: math.unit(190, "lb"),
  12505. name: "Front-armor",
  12506. image: {
  12507. source: "./media/characters/bmc/front-armor.svg",
  12508. extra: 1538/1468,
  12509. bottom: 79/1617
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Human-sized",
  12516. height: math.unit(6 + 4 / 12, "feet")
  12517. },
  12518. {
  12519. name: "Interactive Size",
  12520. height: math.unit(25, "feet")
  12521. },
  12522. {
  12523. name: "Small",
  12524. height: math.unit(250, "feet")
  12525. },
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(1250, "feet"),
  12529. default: true
  12530. },
  12531. {
  12532. name: "Good Day",
  12533. height: math.unit(88, "miles")
  12534. },
  12535. {
  12536. name: "Largest Measured Size",
  12537. height: math.unit(105.960, "galaxies")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(20, "feet"),
  12546. weight: math.unit(2016, "kg"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/sven-the-kaiju/front.svg",
  12550. extra: 1277/1250,
  12551. bottom: 35/1312
  12552. }
  12553. },
  12554. mouth: {
  12555. height: math.unit(1.85, "feet"),
  12556. name: "Mouth",
  12557. image: {
  12558. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Fairy",
  12565. height: math.unit(6, "inches")
  12566. },
  12567. {
  12568. name: "Normal",
  12569. height: math.unit(20, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Rampage",
  12574. height: math.unit(200, "feet")
  12575. },
  12576. {
  12577. name: "Archfey Forest Guardian",
  12578. height: math.unit(1, "mile")
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12584. {
  12585. front: {
  12586. height: math.unit(4, "meters"),
  12587. weight: math.unit(2, "tons"),
  12588. name: "Front",
  12589. image: {
  12590. source: "./media/characters/marik/front.svg",
  12591. extra: 1057 / 1003,
  12592. bottom: 0.08
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(4, "meters"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Macro",
  12604. height: math.unit(20, "meters")
  12605. },
  12606. {
  12607. name: "Megamacro",
  12608. height: math.unit(50, "km")
  12609. },
  12610. {
  12611. name: "Gigamacro",
  12612. height: math.unit(100, "km")
  12613. },
  12614. {
  12615. name: "Alpha Macro",
  12616. height: math.unit(7.88e7, "yottameters")
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(110, "lb"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/mel/front.svg",
  12629. extra: 736 / 617,
  12630. bottom: 0.017
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Pico",
  12637. height: math.unit(3, "pm")
  12638. },
  12639. {
  12640. name: "Nano",
  12641. height: math.unit(3, "nm")
  12642. },
  12643. {
  12644. name: "Micro",
  12645. height: math.unit(0.3, "mm"),
  12646. default: true
  12647. },
  12648. {
  12649. name: "Micro+",
  12650. height: math.unit(3, "mm")
  12651. },
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(5 + 10.5 / 12, "feet")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12660. {
  12661. kaiju: {
  12662. height: math.unit(1.75, "meters"),
  12663. weight: math.unit(55, "kg"),
  12664. name: "Kaiju",
  12665. image: {
  12666. source: "./media/characters/lykonous/kaiju.svg",
  12667. extra: 1055 / 946,
  12668. bottom: 0.135
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(2.5, "meters"),
  12676. default: true
  12677. },
  12678. {
  12679. name: "Kaiju Dragon",
  12680. height: math.unit(60, "meters")
  12681. },
  12682. {
  12683. name: "Mega Kaiju",
  12684. height: math.unit(120, "km")
  12685. },
  12686. {
  12687. name: "Giga Kaiju",
  12688. height: math.unit(200, "megameters")
  12689. },
  12690. {
  12691. name: "Terra Kaiju",
  12692. height: math.unit(400, "gigameters")
  12693. },
  12694. {
  12695. name: "Kaiju Dragon God",
  12696. height: math.unit(13000, "exaparsecs")
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(150, "lb"),
  12706. name: "Front",
  12707. image: {
  12708. source: "./media/characters/blü/front.svg",
  12709. extra: 1883 / 1564,
  12710. bottom: 0.031
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Normal",
  12717. height: math.unit(13, "feet"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Big Boi",
  12722. height: math.unit(150, "meters")
  12723. },
  12724. {
  12725. name: "Mini Stomper",
  12726. height: math.unit(300, "meters")
  12727. },
  12728. {
  12729. name: "Macro",
  12730. height: math.unit(1000, "meters")
  12731. },
  12732. {
  12733. name: "Megamacro",
  12734. height: math.unit(11000, "meters")
  12735. },
  12736. {
  12737. name: "Gigamacro",
  12738. height: math.unit(11000, "km")
  12739. },
  12740. {
  12741. name: "Teramacro",
  12742. height: math.unit(420000, "km")
  12743. },
  12744. {
  12745. name: "Examacro",
  12746. height: math.unit(120, "parsecs")
  12747. },
  12748. {
  12749. name: "God Tho",
  12750. height: math.unit(98000000000, "parsecs")
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12756. {
  12757. taurFront: {
  12758. height: math.unit(6, "feet"),
  12759. weight: math.unit(200, "lb"),
  12760. name: "Taur (Front)",
  12761. image: {
  12762. source: "./media/characters/scales/taur-front.svg",
  12763. extra: 1,
  12764. bottom: 0.05
  12765. }
  12766. },
  12767. taurBack: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(200, "lb"),
  12770. name: "Taur (Back)",
  12771. image: {
  12772. source: "./media/characters/scales/taur-back.svg",
  12773. extra: 1,
  12774. bottom: 0.08
  12775. }
  12776. },
  12777. anthro: {
  12778. height: math.unit(6 * 7 / 12, "feet"),
  12779. weight: math.unit(100, "lb"),
  12780. name: "Anthro",
  12781. image: {
  12782. source: "./media/characters/scales/anthro.svg",
  12783. extra: 1,
  12784. bottom: 0.06
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(12, "feet"),
  12792. default: true
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12798. {
  12799. front: {
  12800. height: math.unit(6, "feet"),
  12801. weight: math.unit(150, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/koragos/front.svg",
  12805. extra: 841 / 794,
  12806. bottom: 0.035
  12807. }
  12808. },
  12809. back: {
  12810. height: math.unit(6, "feet"),
  12811. weight: math.unit(150, "lb"),
  12812. name: "Back",
  12813. image: {
  12814. source: "./media/characters/koragos/back.svg",
  12815. extra: 841 / 810,
  12816. bottom: 0.022
  12817. }
  12818. },
  12819. },
  12820. [
  12821. {
  12822. name: "Normal",
  12823. height: math.unit(6 + 11 / 12, "feet"),
  12824. default: true
  12825. },
  12826. {
  12827. name: "Macro",
  12828. height: math.unit(490, "feet")
  12829. },
  12830. {
  12831. name: "Megamacro",
  12832. height: math.unit(10, "miles")
  12833. },
  12834. {
  12835. name: "Gigamacro",
  12836. height: math.unit(50, "miles")
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12842. {
  12843. front: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(250, "lb"),
  12846. name: "Front",
  12847. image: {
  12848. source: "./media/characters/xylrem/front.svg",
  12849. extra: 3323 / 3050,
  12850. bottom: 0.065
  12851. }
  12852. },
  12853. },
  12854. [
  12855. {
  12856. name: "Micro",
  12857. height: math.unit(4, "feet")
  12858. },
  12859. {
  12860. name: "Normal",
  12861. height: math.unit(16, "feet"),
  12862. default: true
  12863. },
  12864. {
  12865. name: "Macro",
  12866. height: math.unit(2720, "feet")
  12867. },
  12868. {
  12869. name: "Megamacro",
  12870. height: math.unit(25000, "miles")
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(8, "feet"),
  12879. weight: math.unit(250, "kg"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/ikideru/front.svg",
  12883. extra: 930 / 870,
  12884. bottom: 0.087
  12885. }
  12886. },
  12887. back: {
  12888. height: math.unit(8, "feet"),
  12889. weight: math.unit(250, "kg"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/ikideru/back.svg",
  12893. extra: 919 / 852,
  12894. bottom: 0.055
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Rare",
  12901. height: math.unit(8, "feet"),
  12902. default: true
  12903. },
  12904. {
  12905. name: "Playful Loom",
  12906. height: math.unit(80, "feet")
  12907. },
  12908. {
  12909. name: "City Leaner",
  12910. height: math.unit(230, "feet")
  12911. },
  12912. {
  12913. name: "Megamacro",
  12914. height: math.unit(2500, "feet")
  12915. },
  12916. {
  12917. name: "Gigamacro",
  12918. height: math.unit(26400, "feet")
  12919. },
  12920. {
  12921. name: "Tectonic Shifter",
  12922. height: math.unit(1.7, "megameters")
  12923. },
  12924. {
  12925. name: "Planet Carer",
  12926. height: math.unit(21, "megameters")
  12927. },
  12928. {
  12929. name: "God",
  12930. height: math.unit(11157.22, "parsecs")
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(120, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/neo/front.svg"
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Micro",
  12949. height: math.unit(2, "inches"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Human Size",
  12954. height: math.unit(5 + 8 / 12, "feet")
  12955. },
  12956. ]
  12957. ))
  12958. characterMakers.push(() => makeCharacter(
  12959. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12960. {
  12961. front: {
  12962. height: math.unit(13 + 10 / 12, "feet"),
  12963. weight: math.unit(5320, "lb"),
  12964. name: "Front",
  12965. image: {
  12966. source: "./media/characters/chauncey-chantz/front.svg",
  12967. extra: 1587 / 1435,
  12968. bottom: 0.02
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(13 + 10 / 12, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(45, "feet")
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(250, "miles")
  12985. },
  12986. {
  12987. name: "Planetary",
  12988. height: math.unit(10000, "miles")
  12989. },
  12990. {
  12991. name: "Galactic",
  12992. height: math.unit(40000, "parsecs")
  12993. },
  12994. {
  12995. name: "Universal",
  12996. height: math.unit(1, "yottameter")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13002. {
  13003. front: {
  13004. height: math.unit(6, "feet"),
  13005. weight: math.unit(150, "lb"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/epifox/front.svg",
  13009. extra: 1,
  13010. bottom: 0.075
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Micro",
  13017. height: math.unit(6, "inches")
  13018. },
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(12, "feet"),
  13022. default: true
  13023. },
  13024. {
  13025. name: "Macro",
  13026. height: math.unit(3810, "feet")
  13027. },
  13028. {
  13029. name: "Megamacro",
  13030. height: math.unit(500, "miles")
  13031. },
  13032. ]
  13033. ))
  13034. characterMakers.push(() => makeCharacter(
  13035. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13036. {
  13037. front: {
  13038. height: math.unit(1.8796, "m"),
  13039. weight: math.unit(230, "lb"),
  13040. name: "Front",
  13041. image: {
  13042. source: "./media/characters/colin-t/front.svg",
  13043. extra: 1272 / 1193,
  13044. bottom: 0.07
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Micro",
  13051. height: math.unit(0.571, "meters")
  13052. },
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(1.8796, "meters"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Tall",
  13060. height: math.unit(4, "meters")
  13061. },
  13062. {
  13063. name: "Macro",
  13064. height: math.unit(67.241, "meters")
  13065. },
  13066. {
  13067. name: "Megamacro",
  13068. height: math.unit(371.856, "meters")
  13069. },
  13070. {
  13071. name: "Planetary",
  13072. height: math.unit(12631.5689, "km")
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13078. {
  13079. front: {
  13080. height: math.unit(1.85, "meters"),
  13081. weight: math.unit(80, "kg"),
  13082. name: "Front",
  13083. image: {
  13084. source: "./media/characters/matvei/front.svg",
  13085. extra: 456/447,
  13086. bottom: 8/464
  13087. }
  13088. },
  13089. back: {
  13090. height: math.unit(1.85, "meters"),
  13091. weight: math.unit(80, "kg"),
  13092. name: "Back",
  13093. image: {
  13094. source: "./media/characters/matvei/back.svg",
  13095. extra: 434/427,
  13096. bottom: 11/445
  13097. }
  13098. },
  13099. },
  13100. [
  13101. {
  13102. name: "Normal",
  13103. height: math.unit(1.85, "meters"),
  13104. default: true
  13105. },
  13106. ]
  13107. ))
  13108. characterMakers.push(() => makeCharacter(
  13109. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13110. {
  13111. front: {
  13112. height: math.unit(5 + 9 / 12, "feet"),
  13113. weight: math.unit(70, "lb"),
  13114. name: "Front",
  13115. image: {
  13116. source: "./media/characters/quincy/front.svg",
  13117. extra: 3041 / 2751
  13118. }
  13119. },
  13120. back: {
  13121. height: math.unit(5 + 9 / 12, "feet"),
  13122. weight: math.unit(70, "lb"),
  13123. name: "Back",
  13124. image: {
  13125. source: "./media/characters/quincy/back.svg",
  13126. extra: 3041 / 2751
  13127. }
  13128. },
  13129. flying: {
  13130. height: math.unit(5 + 4 / 12, "feet"),
  13131. weight: math.unit(70, "lb"),
  13132. name: "Flying",
  13133. image: {
  13134. source: "./media/characters/quincy/flying.svg",
  13135. extra: 1044 / 930
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Micro",
  13142. height: math.unit(3, "cm")
  13143. },
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(5 + 9 / 12, "feet")
  13147. },
  13148. {
  13149. name: "Macro",
  13150. height: math.unit(200, "meters"),
  13151. default: true
  13152. },
  13153. {
  13154. name: "Megamacro",
  13155. height: math.unit(1000, "meters")
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(3 + 11/12, "feet"),
  13164. weight: math.unit(50, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/vanrel/front.svg",
  13168. extra: 1104/949,
  13169. bottom: 52/1156
  13170. }
  13171. },
  13172. back: {
  13173. height: math.unit(3 + 11/12, "feet"),
  13174. weight: math.unit(50, "lb"),
  13175. name: "Back",
  13176. image: {
  13177. source: "./media/characters/vanrel/back.svg",
  13178. extra: 1119/976,
  13179. bottom: 37/1156
  13180. }
  13181. },
  13182. tome: {
  13183. height: math.unit(1.35, "feet"),
  13184. weight: math.unit(10, "lb"),
  13185. name: "Vanrel's Tome",
  13186. rename: true,
  13187. image: {
  13188. source: "./media/characters/vanrel/tome.svg"
  13189. }
  13190. },
  13191. beans: {
  13192. height: math.unit(0.89, "feet"),
  13193. name: "Beans",
  13194. image: {
  13195. source: "./media/characters/vanrel/beans.svg"
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(3 + 11/12, "feet"),
  13203. default: true
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(7 + 5 / 12, "feet"),
  13212. name: "Front",
  13213. image: {
  13214. source: "./media/characters/kuiper-vanrel/front.svg",
  13215. extra: 1219/1169,
  13216. bottom: 69/1288
  13217. }
  13218. },
  13219. back: {
  13220. height: math.unit(7 + 5 / 12, "feet"),
  13221. name: "Back",
  13222. image: {
  13223. source: "./media/characters/kuiper-vanrel/back.svg",
  13224. extra: 1236/1193,
  13225. bottom: 27/1263
  13226. }
  13227. },
  13228. foot: {
  13229. height: math.unit(0.55, "meters"),
  13230. name: "Foot",
  13231. image: {
  13232. source: "./media/characters/kuiper-vanrel/foot.svg",
  13233. }
  13234. },
  13235. battle: {
  13236. height: math.unit(6.824, "feet"),
  13237. name: "Battle",
  13238. image: {
  13239. source: "./media/characters/kuiper-vanrel/battle.svg",
  13240. extra: 1466 / 1327,
  13241. bottom: 29 / 1492.5
  13242. }
  13243. },
  13244. meerkui: {
  13245. height: math.unit(18, "inches"),
  13246. name: "Meerkui",
  13247. image: {
  13248. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13249. extra: 1354/1289,
  13250. bottom: 69/1423
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Normal",
  13257. height: math.unit(7 + 5 / 12, "feet"),
  13258. default: true
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13264. {
  13265. front: {
  13266. height: math.unit(8 + 5 / 12, "feet"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/keset-vanrel/front.svg",
  13270. extra: 1231/1148,
  13271. bottom: 82/1313
  13272. }
  13273. },
  13274. back: {
  13275. height: math.unit(8 + 5 / 12, "feet"),
  13276. name: "Back",
  13277. image: {
  13278. source: "./media/characters/keset-vanrel/back.svg",
  13279. extra: 1240/1174,
  13280. bottom: 33/1273
  13281. }
  13282. },
  13283. hand: {
  13284. height: math.unit(0.6, "meters"),
  13285. name: "Hand",
  13286. image: {
  13287. source: "./media/characters/keset-vanrel/hand.svg"
  13288. }
  13289. },
  13290. foot: {
  13291. height: math.unit(0.94978, "meters"),
  13292. name: "Foot",
  13293. image: {
  13294. source: "./media/characters/keset-vanrel/foot.svg"
  13295. }
  13296. },
  13297. battle: {
  13298. height: math.unit(7.408, "feet"),
  13299. name: "Battle",
  13300. image: {
  13301. source: "./media/characters/keset-vanrel/battle.svg",
  13302. extra: 1890 / 1386,
  13303. bottom: 73.28 / 1970
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Normal",
  13310. height: math.unit(8 + 5 / 12, "feet"),
  13311. default: true
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(6, "feet"),
  13320. weight: math.unit(150, "lb"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/neos/front.svg",
  13324. extra: 1696 / 992,
  13325. bottom: 0.14
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(54, "cm"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Macro",
  13337. height: math.unit(100, "m")
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(10, "km")
  13342. },
  13343. {
  13344. name: "Megamacro+",
  13345. height: math.unit(100, "km")
  13346. },
  13347. {
  13348. name: "Gigamacro",
  13349. height: math.unit(100, "Mm")
  13350. },
  13351. {
  13352. name: "Teramacro",
  13353. height: math.unit(100, "Gm")
  13354. },
  13355. {
  13356. name: "Examacro",
  13357. height: math.unit(100, "Em")
  13358. },
  13359. {
  13360. name: "Godly",
  13361. height: math.unit(10000, "Ym")
  13362. },
  13363. {
  13364. name: "Beyond Godly",
  13365. height: math.unit(25, "multiverses")
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13371. {
  13372. feminine: {
  13373. height: math.unit(5, "feet"),
  13374. weight: math.unit(100, "lb"),
  13375. name: "Feminine",
  13376. image: {
  13377. source: "./media/characters/sammy-mouse/feminine.svg",
  13378. extra: 2526 / 2425,
  13379. bottom: 0.123
  13380. }
  13381. },
  13382. masculine: {
  13383. height: math.unit(5, "feet"),
  13384. weight: math.unit(100, "lb"),
  13385. name: "Masculine",
  13386. image: {
  13387. source: "./media/characters/sammy-mouse/masculine.svg",
  13388. extra: 2526 / 2425,
  13389. bottom: 0.123
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Micro",
  13396. height: math.unit(5, "inches")
  13397. },
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(5, "feet"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Macro",
  13405. height: math.unit(60, "feet")
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(4, "feet"),
  13414. weight: math.unit(50, "lb"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/kole/front.svg",
  13418. extra: 1423 / 1303,
  13419. bottom: 0.025
  13420. }
  13421. },
  13422. back: {
  13423. height: math.unit(4, "feet"),
  13424. weight: math.unit(50, "lb"),
  13425. name: "Back",
  13426. image: {
  13427. source: "./media/characters/kole/back.svg",
  13428. extra: 1426 / 1280,
  13429. bottom: 0.02
  13430. }
  13431. },
  13432. },
  13433. [
  13434. {
  13435. name: "Normal",
  13436. height: math.unit(4, "feet"),
  13437. default: true
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(2.5, "feet"),
  13446. weight: math.unit(32, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/rufran/front.svg",
  13450. extra: 1313/885,
  13451. bottom: 94/1407
  13452. }
  13453. },
  13454. side: {
  13455. height: math.unit(2.5, "feet"),
  13456. weight: math.unit(32, "lb"),
  13457. name: "Side",
  13458. image: {
  13459. source: "./media/characters/rufran/side.svg",
  13460. extra: 1109/852,
  13461. bottom: 118/1227
  13462. }
  13463. },
  13464. back: {
  13465. height: math.unit(2.5, "feet"),
  13466. weight: math.unit(32, "lb"),
  13467. name: "Back",
  13468. image: {
  13469. source: "./media/characters/rufran/back.svg",
  13470. extra: 1280/878,
  13471. bottom: 131/1411
  13472. }
  13473. },
  13474. mouth: {
  13475. height: math.unit(1.13, "feet"),
  13476. name: "Mouth",
  13477. image: {
  13478. source: "./media/characters/rufran/mouth.svg"
  13479. }
  13480. },
  13481. foot: {
  13482. height: math.unit(1.33, "feet"),
  13483. name: "Foot",
  13484. image: {
  13485. source: "./media/characters/rufran/foot.svg"
  13486. }
  13487. },
  13488. koboldFront: {
  13489. height: math.unit(2 + 6 / 12, "feet"),
  13490. weight: math.unit(20, "lb"),
  13491. name: "Front (Kobold)",
  13492. image: {
  13493. source: "./media/characters/rufran/kobold-front.svg",
  13494. extra: 2041 / 1839,
  13495. bottom: 0.055
  13496. }
  13497. },
  13498. koboldBack: {
  13499. height: math.unit(2 + 6 / 12, "feet"),
  13500. weight: math.unit(20, "lb"),
  13501. name: "Back (Kobold)",
  13502. image: {
  13503. source: "./media/characters/rufran/kobold-back.svg",
  13504. extra: 2054 / 1839,
  13505. bottom: 0.01
  13506. }
  13507. },
  13508. koboldHand: {
  13509. height: math.unit(0.2166, "meters"),
  13510. name: "Hand (Kobold)",
  13511. image: {
  13512. source: "./media/characters/rufran/kobold-hand.svg"
  13513. }
  13514. },
  13515. koboldFoot: {
  13516. height: math.unit(0.185, "meters"),
  13517. name: "Foot (Kobold)",
  13518. image: {
  13519. source: "./media/characters/rufran/kobold-foot.svg"
  13520. }
  13521. },
  13522. },
  13523. [
  13524. {
  13525. name: "Micro",
  13526. height: math.unit(1, "inch")
  13527. },
  13528. {
  13529. name: "Normal",
  13530. height: math.unit(2 + 6 / 12, "feet"),
  13531. default: true
  13532. },
  13533. {
  13534. name: "Big",
  13535. height: math.unit(60, "feet")
  13536. },
  13537. {
  13538. name: "Macro",
  13539. height: math.unit(325, "feet")
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(0.3, "meters"),
  13548. weight: math.unit(3.5, "kg"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/chip/front.svg",
  13552. extra: 748 / 674
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Micro",
  13559. height: math.unit(1, "inch"),
  13560. default: true
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13566. {
  13567. side: {
  13568. height: math.unit(2.3, "meters"),
  13569. weight: math.unit(3500, "lb"),
  13570. name: "Side",
  13571. image: {
  13572. source: "./media/characters/torvid/side.svg",
  13573. extra: 1972 / 722,
  13574. bottom: 0.035
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(2.3, "meters"),
  13582. default: true
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(2, "meters"),
  13591. weight: math.unit(150.5, "kg"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/susan/front.svg",
  13595. extra: 693 / 635,
  13596. bottom: 0.05
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Megamacro",
  13603. height: math.unit(505, "miles"),
  13604. default: true
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(6, "feet"),
  13613. weight: math.unit(150, "lb"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/raindrops/front.svg",
  13617. extra: 2655 / 2461,
  13618. bottom: 49 / 2705
  13619. }
  13620. },
  13621. back: {
  13622. height: math.unit(6, "feet"),
  13623. weight: math.unit(150, "lb"),
  13624. name: "Back",
  13625. image: {
  13626. source: "./media/characters/raindrops/back.svg",
  13627. extra: 2574 / 2400,
  13628. bottom: 65 / 2634
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Micro",
  13635. height: math.unit(6, "inches")
  13636. },
  13637. {
  13638. name: "Normal",
  13639. height: math.unit(6 + 2 / 12, "feet")
  13640. },
  13641. {
  13642. name: "Macro",
  13643. height: math.unit(131, "feet"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Megamacro",
  13648. height: math.unit(15, "miles")
  13649. },
  13650. {
  13651. name: "Gigamacro",
  13652. height: math.unit(4000, "miles")
  13653. },
  13654. {
  13655. name: "Teramacro",
  13656. height: math.unit(315000, "miles")
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13662. {
  13663. front: {
  13664. height: math.unit(2.794, "meters"),
  13665. weight: math.unit(325, "kg"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/tezwa/front.svg",
  13669. extra: 2083 / 1906,
  13670. bottom: 0.031
  13671. }
  13672. },
  13673. foot: {
  13674. height: math.unit(0.687, "meters"),
  13675. name: "Foot",
  13676. image: {
  13677. source: "./media/characters/tezwa/foot.svg"
  13678. }
  13679. },
  13680. },
  13681. [
  13682. {
  13683. name: "Normal",
  13684. height: math.unit(9 + 2 / 12, "feet"),
  13685. default: true
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(58, "feet"),
  13694. weight: math.unit(89000, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/typhus/front.svg",
  13698. extra: 816 / 800,
  13699. bottom: 0.065
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Macro",
  13706. height: math.unit(58, "feet"),
  13707. default: true
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(12, "feet"),
  13716. weight: math.unit(6, "tonnes"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/lyra-von-wulf/front.svg",
  13720. extra: 1,
  13721. bottom: 0.10
  13722. }
  13723. },
  13724. frontMecha: {
  13725. height: math.unit(12, "feet"),
  13726. weight: math.unit(12, "tonnes"),
  13727. name: "Front (Mecha)",
  13728. image: {
  13729. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13730. extra: 1,
  13731. bottom: 0.042
  13732. }
  13733. },
  13734. maw: {
  13735. height: math.unit(2.2, "feet"),
  13736. name: "Maw",
  13737. image: {
  13738. source: "./media/characters/lyra-von-wulf/maw.svg"
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Normal",
  13745. height: math.unit(12, "feet"),
  13746. default: true
  13747. },
  13748. {
  13749. name: "Classic",
  13750. height: math.unit(50, "feet")
  13751. },
  13752. {
  13753. name: "Macro",
  13754. height: math.unit(500, "feet")
  13755. },
  13756. {
  13757. name: "Megamacro",
  13758. height: math.unit(1, "mile")
  13759. },
  13760. {
  13761. name: "Gigamacro",
  13762. height: math.unit(400, "miles")
  13763. },
  13764. {
  13765. name: "Teramacro",
  13766. height: math.unit(22000, "miles")
  13767. },
  13768. {
  13769. name: "Solarmacro",
  13770. height: math.unit(8600000, "miles")
  13771. },
  13772. {
  13773. name: "Galactic",
  13774. height: math.unit(1057000, "lightyears")
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(6 + 10 / 12, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Front",
  13785. image: {
  13786. source: "./media/characters/dixon/front.svg",
  13787. extra: 3361 / 3209,
  13788. bottom: 0.01
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Normal",
  13795. height: math.unit(6 + 10 / 12, "feet"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Big",
  13800. height: math.unit(12, "meters")
  13801. },
  13802. {
  13803. name: "Macro",
  13804. height: math.unit(500, "meters")
  13805. },
  13806. {
  13807. name: "Megamacro",
  13808. height: math.unit(2, "km")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13814. {
  13815. front: {
  13816. height: math.unit(185, "cm"),
  13817. weight: math.unit(68, "kg"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/kauko/front.svg",
  13821. extra: 1455 / 1421,
  13822. bottom: 0.03
  13823. }
  13824. },
  13825. back: {
  13826. height: math.unit(185, "cm"),
  13827. weight: math.unit(68, "kg"),
  13828. name: "Back",
  13829. image: {
  13830. source: "./media/characters/kauko/back.svg",
  13831. extra: 1455 / 1421,
  13832. bottom: 0.004
  13833. }
  13834. },
  13835. },
  13836. [
  13837. {
  13838. name: "Normal",
  13839. height: math.unit(185, "cm"),
  13840. default: true
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13846. {
  13847. frontSfw: {
  13848. height: math.unit(5, "meters"),
  13849. weight: math.unit(4250, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/varg/front-sfw.svg",
  13853. extra: 1103/1010,
  13854. bottom: 50/1153
  13855. },
  13856. form: "anthro",
  13857. default: true
  13858. },
  13859. backSfw: {
  13860. height: math.unit(5, "meters"),
  13861. weight: math.unit(4250, "lb"),
  13862. name: "Back",
  13863. image: {
  13864. source: "./media/characters/varg/back-sfw.svg",
  13865. extra: 1038/1022,
  13866. bottom: 36/1074
  13867. },
  13868. form: "anthro"
  13869. },
  13870. frontNsfw: {
  13871. height: math.unit(5, "meters"),
  13872. weight: math.unit(4250, "lb"),
  13873. name: "Front (NSFW)",
  13874. image: {
  13875. source: "./media/characters/varg/front-nsfw.svg",
  13876. extra: 1103/1010,
  13877. bottom: 50/1153
  13878. },
  13879. form: "anthro"
  13880. },
  13881. sheath: {
  13882. height: math.unit(3.8, "feet"),
  13883. weight: math.unit(90, "kilograms"),
  13884. name: "Sheath",
  13885. image: {
  13886. source: "./media/characters/varg/sheath.svg"
  13887. },
  13888. form: "anthro"
  13889. },
  13890. dick: {
  13891. height: math.unit(4.6, "feet"),
  13892. weight: math.unit(451, "kilograms"),
  13893. name: "Dick",
  13894. image: {
  13895. source: "./media/characters/varg/dick.svg"
  13896. },
  13897. form: "anthro"
  13898. },
  13899. feralSfw: {
  13900. height: math.unit(5, "meters"),
  13901. weight: math.unit(100000, "lb"),
  13902. name: "Side",
  13903. image: {
  13904. source: "./media/characters/varg/feral-sfw.svg",
  13905. extra: 1065/511,
  13906. bottom: 211/1276
  13907. },
  13908. form: "feral",
  13909. default: true
  13910. },
  13911. feralNsfw: {
  13912. height: math.unit(5, "meters"),
  13913. weight: math.unit(100000, "lb"),
  13914. name: "Side (NSFW)",
  13915. image: {
  13916. source: "./media/characters/varg/feral-nsfw.svg",
  13917. extra: 1065/511,
  13918. bottom: 211/1276
  13919. },
  13920. form: "feral",
  13921. },
  13922. feralSheath: {
  13923. height: math.unit(9.8, "feet"),
  13924. weight: math.unit(2000, "kilograms"),
  13925. name: "Sheath",
  13926. image: {
  13927. source: "./media/characters/varg/sheath.svg"
  13928. },
  13929. form: "feral"
  13930. },
  13931. feralDick: {
  13932. height: math.unit(13.11, "feet"),
  13933. weight: math.unit(10440, "kilograms"),
  13934. name: "Dick",
  13935. image: {
  13936. source: "./media/characters/varg/dick.svg"
  13937. },
  13938. form: "feral"
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Normal",
  13944. height: math.unit(5, "meters"),
  13945. form: "anthro"
  13946. },
  13947. {
  13948. name: "Macro",
  13949. height: math.unit(200, "meters"),
  13950. form: "anthro"
  13951. },
  13952. {
  13953. name: "Megamacro",
  13954. height: math.unit(20, "kilometers"),
  13955. form: "anthro"
  13956. },
  13957. {
  13958. name: "True Size",
  13959. height: math.unit(211, "km"),
  13960. form: "anthro",
  13961. default: true
  13962. },
  13963. {
  13964. name: "Gigamacro",
  13965. height: math.unit(1000, "km"),
  13966. form: "anthro"
  13967. },
  13968. {
  13969. name: "Gigamacro+",
  13970. height: math.unit(8000, "km"),
  13971. form: "anthro"
  13972. },
  13973. {
  13974. name: "Teramacro",
  13975. height: math.unit(1000000, "km"),
  13976. form: "anthro"
  13977. },
  13978. {
  13979. name: "Normal",
  13980. height: math.unit(5, "meters"),
  13981. form: "feral"
  13982. },
  13983. {
  13984. name: "Macro",
  13985. height: math.unit(200, "meters"),
  13986. form: "feral"
  13987. },
  13988. {
  13989. name: "Megamacro",
  13990. height: math.unit(20, "kilometers"),
  13991. form: "feral"
  13992. },
  13993. {
  13994. name: "True Size",
  13995. height: math.unit(211, "km"),
  13996. form: "feral",
  13997. default: true
  13998. },
  13999. {
  14000. name: "Gigamacro",
  14001. height: math.unit(1000, "km"),
  14002. form: "feral"
  14003. },
  14004. {
  14005. name: "Gigamacro+",
  14006. height: math.unit(8000, "km"),
  14007. form: "feral"
  14008. },
  14009. {
  14010. name: "Teramacro",
  14011. height: math.unit(1000000, "km"),
  14012. form: "feral"
  14013. },
  14014. ],
  14015. {
  14016. "anthro": {
  14017. name: "Anthro",
  14018. default: true
  14019. },
  14020. "feral": {
  14021. name: "Feral",
  14022. },
  14023. }
  14024. ))
  14025. characterMakers.push(() => makeCharacter(
  14026. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14027. {
  14028. front: {
  14029. height: math.unit(7 + 7 / 12, "feet"),
  14030. weight: math.unit(267, "lb"),
  14031. name: "Front",
  14032. image: {
  14033. source: "./media/characters/dayza/front.svg",
  14034. extra: 1262 / 1200,
  14035. bottom: 0.035
  14036. }
  14037. },
  14038. side: {
  14039. height: math.unit(7 + 7 / 12, "feet"),
  14040. weight: math.unit(267, "lb"),
  14041. name: "Side",
  14042. image: {
  14043. source: "./media/characters/dayza/side.svg",
  14044. extra: 1295 / 1245,
  14045. bottom: 0.05
  14046. }
  14047. },
  14048. back: {
  14049. height: math.unit(7 + 7 / 12, "feet"),
  14050. weight: math.unit(267, "lb"),
  14051. name: "Back",
  14052. image: {
  14053. source: "./media/characters/dayza/back.svg",
  14054. extra: 1241 / 1170
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(7 + 7 / 12, "feet"),
  14062. default: true
  14063. },
  14064. {
  14065. name: "Macro",
  14066. height: math.unit(155, "feet")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(6 + 5 / 12, "feet"),
  14075. weight: math.unit(160, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/xanthos/front.svg",
  14079. extra: 1,
  14080. bottom: 0.04
  14081. }
  14082. },
  14083. back: {
  14084. height: math.unit(6 + 5 / 12, "feet"),
  14085. weight: math.unit(160, "lb"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/xanthos/back.svg",
  14089. extra: 1,
  14090. bottom: 0.03
  14091. }
  14092. },
  14093. hand: {
  14094. height: math.unit(0.928, "feet"),
  14095. name: "Hand",
  14096. image: {
  14097. source: "./media/characters/xanthos/hand.svg"
  14098. }
  14099. },
  14100. foot: {
  14101. height: math.unit(1.286, "feet"),
  14102. name: "Foot",
  14103. image: {
  14104. source: "./media/characters/xanthos/foot.svg"
  14105. }
  14106. },
  14107. },
  14108. [
  14109. {
  14110. name: "Normal",
  14111. height: math.unit(6 + 5 / 12, "feet"),
  14112. default: true
  14113. },
  14114. {
  14115. name: "Normal+",
  14116. height: math.unit(6, "meters")
  14117. },
  14118. {
  14119. name: "Macro",
  14120. height: math.unit(40, "feet")
  14121. },
  14122. {
  14123. name: "Macro+",
  14124. height: math.unit(200, "meters")
  14125. },
  14126. {
  14127. name: "Megamacro",
  14128. height: math.unit(20, "km")
  14129. },
  14130. {
  14131. name: "Megamacro+",
  14132. height: math.unit(100, "km")
  14133. },
  14134. {
  14135. name: "Gigamacro",
  14136. height: math.unit(200, "megameters")
  14137. },
  14138. {
  14139. name: "Gigamacro+",
  14140. height: math.unit(1.5, "gigameters")
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(6 + 3 / 12, "feet"),
  14149. weight: math.unit(215, "lb"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/grynn/front.svg",
  14153. extra: 4627 / 4209,
  14154. bottom: 0.047
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(6, "inches")
  14162. },
  14163. {
  14164. name: "Normal",
  14165. height: math.unit(6 + 3 / 12, "feet"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Big",
  14170. height: math.unit(104, "feet")
  14171. },
  14172. {
  14173. name: "Macro",
  14174. height: math.unit(944, "feet")
  14175. },
  14176. {
  14177. name: "Macro+",
  14178. height: math.unit(9480, "feet")
  14179. },
  14180. {
  14181. name: "Megamacro",
  14182. height: math.unit(78752, "feet")
  14183. },
  14184. {
  14185. name: "Megamacro+",
  14186. height: math.unit(630128, "feet")
  14187. },
  14188. {
  14189. name: "Megamacro++",
  14190. height: math.unit(3150695, "feet")
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(7 + 5 / 12, "feet"),
  14199. weight: math.unit(450, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/mocha-aura/front.svg",
  14203. extra: 1907 / 1817,
  14204. bottom: 0.04
  14205. }
  14206. },
  14207. back: {
  14208. height: math.unit(7 + 5 / 12, "feet"),
  14209. weight: math.unit(450, "lb"),
  14210. name: "Back",
  14211. image: {
  14212. source: "./media/characters/mocha-aura/back.svg",
  14213. extra: 1900 / 1825,
  14214. bottom: 0.045
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Nano",
  14221. height: math.unit(1, "nm")
  14222. },
  14223. {
  14224. name: "Megamicro",
  14225. height: math.unit(1, "mm")
  14226. },
  14227. {
  14228. name: "Micro",
  14229. height: math.unit(3, "inches")
  14230. },
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(7 + 5 / 12, "feet"),
  14234. default: true
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(30, "feet")
  14239. },
  14240. {
  14241. name: "Megamacro",
  14242. height: math.unit(3500, "feet")
  14243. },
  14244. {
  14245. name: "Teramacro",
  14246. height: math.unit(500000, "miles")
  14247. },
  14248. {
  14249. name: "Petamacro",
  14250. height: math.unit(50000000000000000, "parsecs")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/ilisha-devya/front.svg",
  14263. extra: 1053/1049,
  14264. bottom: 270/1323
  14265. }
  14266. },
  14267. back: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(150, "lb"),
  14270. name: "Back",
  14271. image: {
  14272. source: "./media/characters/ilisha-devya/back.svg",
  14273. extra: 1131/1128,
  14274. bottom: 39/1170
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(500, "feet"),
  14282. default: true
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(10, "miles")
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(100000, "miles")
  14291. },
  14292. {
  14293. name: "Examacro",
  14294. height: math.unit(1e9, "lightyears")
  14295. },
  14296. {
  14297. name: "Omniversal",
  14298. height: math.unit(1e33, "lightyears")
  14299. },
  14300. {
  14301. name: "Beyond Infinite",
  14302. height: math.unit(1e100, "lightyears")
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14308. {
  14309. Side: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(150, "lb"),
  14312. name: "Side",
  14313. image: {
  14314. source: "./media/characters/mira/side.svg",
  14315. extra: 900 / 799,
  14316. bottom: 0.02
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Human Size",
  14323. height: math.unit(6, "feet")
  14324. },
  14325. {
  14326. name: "Macro",
  14327. height: math.unit(100, "feet"),
  14328. default: true
  14329. },
  14330. {
  14331. name: "Megamacro",
  14332. height: math.unit(10, "miles")
  14333. },
  14334. {
  14335. name: "Gigamacro",
  14336. height: math.unit(25000, "miles")
  14337. },
  14338. {
  14339. name: "Teramacro",
  14340. height: math.unit(300, "AU")
  14341. },
  14342. {
  14343. name: "Full Size",
  14344. height: math.unit(4.5e10, "lightyears")
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(150, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/holly/front.svg",
  14357. extra: 639 / 606
  14358. }
  14359. },
  14360. back: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(150, "lb"),
  14363. name: "Back",
  14364. image: {
  14365. source: "./media/characters/holly/back.svg",
  14366. extra: 623 / 598
  14367. }
  14368. },
  14369. frontWorking: {
  14370. height: math.unit(6, "feet"),
  14371. weight: math.unit(150, "lb"),
  14372. name: "Front (Working)",
  14373. image: {
  14374. source: "./media/characters/holly/front-working.svg",
  14375. extra: 607 / 577,
  14376. bottom: 0.048
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Normal",
  14383. height: math.unit(12 + 3 / 12, "feet"),
  14384. default: true
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(6, "feet"),
  14393. weight: math.unit(150, "lb"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/porter/front.svg",
  14397. extra: 1,
  14398. bottom: 0.01
  14399. }
  14400. },
  14401. frontRobes: {
  14402. height: math.unit(6, "feet"),
  14403. weight: math.unit(150, "lb"),
  14404. name: "Front (Robes)",
  14405. image: {
  14406. source: "./media/characters/porter/front-robes.svg",
  14407. extra: 1.01,
  14408. bottom: 0.01
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(11 + 9 / 12, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14422. {
  14423. legendary: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(150, "lb"),
  14426. name: "Legendary",
  14427. image: {
  14428. source: "./media/characters/lucy/legendary.svg",
  14429. extra: 1355 / 1100,
  14430. bottom: 0.045
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Legendary",
  14437. height: math.unit(86882 * 2, "miles"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14444. {
  14445. front: {
  14446. height: math.unit(6, "feet"),
  14447. weight: math.unit(150, "lb"),
  14448. name: "Front",
  14449. image: {
  14450. source: "./media/characters/drusilla/front.svg",
  14451. extra: 678 / 635,
  14452. bottom: 0.03
  14453. }
  14454. },
  14455. back: {
  14456. height: math.unit(6, "feet"),
  14457. weight: math.unit(150, "lb"),
  14458. name: "Back",
  14459. image: {
  14460. source: "./media/characters/drusilla/back.svg",
  14461. extra: 678 / 635,
  14462. bottom: 0.005
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(100, "feet")
  14470. },
  14471. {
  14472. name: "Canon Height",
  14473. height: math.unit(2000, "feet"),
  14474. default: true
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14480. {
  14481. front: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(180, "lb"),
  14484. name: "Front",
  14485. image: {
  14486. source: "./media/characters/renard-thatch/front.svg",
  14487. extra: 2411 / 2275,
  14488. bottom: 0.01
  14489. }
  14490. },
  14491. frontPosing: {
  14492. height: math.unit(6, "feet"),
  14493. weight: math.unit(180, "lb"),
  14494. name: "Front (Posing)",
  14495. image: {
  14496. source: "./media/characters/renard-thatch/front-posing.svg",
  14497. extra: 2381 / 2261,
  14498. bottom: 0.01
  14499. }
  14500. },
  14501. back: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(180, "lb"),
  14504. name: "Back",
  14505. image: {
  14506. source: "./media/characters/renard-thatch/back.svg",
  14507. extra: 2428 / 2288
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Micro",
  14514. height: math.unit(3, "inches")
  14515. },
  14516. {
  14517. name: "Default",
  14518. height: math.unit(6, "feet"),
  14519. default: true
  14520. },
  14521. {
  14522. name: "Macro",
  14523. height: math.unit(75, "feet")
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14529. {
  14530. front: {
  14531. height: math.unit(1450, "feet"),
  14532. weight: math.unit(1.21e6, "tons"),
  14533. name: "Front",
  14534. image: {
  14535. source: "./media/characters/sekvra/front.svg",
  14536. extra: 1193/1190,
  14537. bottom: 78/1271
  14538. }
  14539. },
  14540. side: {
  14541. height: math.unit(1450, "feet"),
  14542. weight: math.unit(1.21e6, "tons"),
  14543. name: "Side",
  14544. image: {
  14545. source: "./media/characters/sekvra/side.svg",
  14546. extra: 1193/1190,
  14547. bottom: 52/1245
  14548. }
  14549. },
  14550. back: {
  14551. height: math.unit(1450, "feet"),
  14552. weight: math.unit(1.21e6, "tons"),
  14553. name: "Back",
  14554. image: {
  14555. source: "./media/characters/sekvra/back.svg",
  14556. extra: 1219/1216,
  14557. bottom: 21/1240
  14558. }
  14559. },
  14560. frontClothed: {
  14561. height: math.unit(1450, "feet"),
  14562. weight: math.unit(1.21e6, "tons"),
  14563. name: "Front (Clothed)",
  14564. image: {
  14565. source: "./media/characters/sekvra/front-clothed.svg",
  14566. extra: 1192/1189,
  14567. bottom: 79/1271
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(1450, "feet"),
  14575. default: true
  14576. },
  14577. {
  14578. name: "Megamacro",
  14579. height: math.unit(15000, "feet")
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(6, "feet"),
  14588. weight: math.unit(150, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/carmine/front.svg",
  14592. extra: 1,
  14593. bottom: 0.035
  14594. }
  14595. },
  14596. frontArmor: {
  14597. height: math.unit(6, "feet"),
  14598. weight: math.unit(150, "lb"),
  14599. name: "Front (Armor)",
  14600. image: {
  14601. source: "./media/characters/carmine/front-armor.svg",
  14602. extra: 1,
  14603. bottom: 0.035
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Large",
  14610. height: math.unit(1, "mile")
  14611. },
  14612. {
  14613. name: "Huge",
  14614. height: math.unit(40, "miles"),
  14615. default: true
  14616. },
  14617. {
  14618. name: "Colossal",
  14619. height: math.unit(2500, "miles")
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(6, "feet"),
  14628. weight: math.unit(150, "lb"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/elyssia/front.svg",
  14632. extra: 2201 / 2035,
  14633. bottom: 0.05
  14634. }
  14635. },
  14636. frontClothed: {
  14637. height: math.unit(6, "feet"),
  14638. weight: math.unit(150, "lb"),
  14639. name: "Front (Clothed)",
  14640. image: {
  14641. source: "./media/characters/elyssia/front-clothed.svg",
  14642. extra: 2201 / 2035,
  14643. bottom: 0.05
  14644. }
  14645. },
  14646. back: {
  14647. height: math.unit(6, "feet"),
  14648. weight: math.unit(150, "lb"),
  14649. name: "Back",
  14650. image: {
  14651. source: "./media/characters/elyssia/back.svg",
  14652. extra: 2201 / 2035,
  14653. bottom: 0.013
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Smaller",
  14660. height: math.unit(150, "feet")
  14661. },
  14662. {
  14663. name: "Standard",
  14664. height: math.unit(1400, "feet"),
  14665. default: true
  14666. },
  14667. {
  14668. name: "Distracted",
  14669. height: math.unit(15000, "feet")
  14670. },
  14671. ]
  14672. ))
  14673. characterMakers.push(() => makeCharacter(
  14674. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14675. {
  14676. front: {
  14677. height: math.unit(7 + 4/12, "feet"),
  14678. weight: math.unit(690, "lb"),
  14679. name: "Front",
  14680. image: {
  14681. source: "./media/characters/geno-maxwell/front.svg",
  14682. extra: 984/856,
  14683. bottom: 87/1071
  14684. }
  14685. },
  14686. back: {
  14687. height: math.unit(7 + 4/12, "feet"),
  14688. weight: math.unit(690, "lb"),
  14689. name: "Back",
  14690. image: {
  14691. source: "./media/characters/geno-maxwell/back.svg",
  14692. extra: 981/854,
  14693. bottom: 57/1038
  14694. }
  14695. },
  14696. frontCostume: {
  14697. height: math.unit(7 + 4/12, "feet"),
  14698. weight: math.unit(690, "lb"),
  14699. name: "Front (Costume)",
  14700. image: {
  14701. source: "./media/characters/geno-maxwell/front-costume.svg",
  14702. extra: 984/856,
  14703. bottom: 87/1071
  14704. }
  14705. },
  14706. backcostume: {
  14707. height: math.unit(7 + 4/12, "feet"),
  14708. weight: math.unit(690, "lb"),
  14709. name: "Back (Costume)",
  14710. image: {
  14711. source: "./media/characters/geno-maxwell/back-costume.svg",
  14712. extra: 981/854,
  14713. bottom: 57/1038
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Micro",
  14720. height: math.unit(3, "inches")
  14721. },
  14722. {
  14723. name: "Normal",
  14724. height: math.unit(7 + 4 / 12, "feet"),
  14725. default: true
  14726. },
  14727. {
  14728. name: "Macro",
  14729. height: math.unit(220, "feet")
  14730. },
  14731. {
  14732. name: "Megamacro",
  14733. height: math.unit(11, "miles")
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14739. {
  14740. front: {
  14741. height: math.unit(7 + 4/12, "feet"),
  14742. weight: math.unit(750, "lb"),
  14743. name: "Front",
  14744. image: {
  14745. source: "./media/characters/regena-maxwell/front.svg",
  14746. extra: 984/856,
  14747. bottom: 87/1071
  14748. }
  14749. },
  14750. back: {
  14751. height: math.unit(7 + 4/12, "feet"),
  14752. weight: math.unit(750, "lb"),
  14753. name: "Back",
  14754. image: {
  14755. source: "./media/characters/regena-maxwell/back.svg",
  14756. extra: 981/854,
  14757. bottom: 57/1038
  14758. }
  14759. },
  14760. frontCostume: {
  14761. height: math.unit(7 + 4/12, "feet"),
  14762. weight: math.unit(750, "lb"),
  14763. name: "Front (Costume)",
  14764. image: {
  14765. source: "./media/characters/regena-maxwell/front-costume.svg",
  14766. extra: 984/856,
  14767. bottom: 87/1071
  14768. }
  14769. },
  14770. backcostume: {
  14771. height: math.unit(7 + 4/12, "feet"),
  14772. weight: math.unit(750, "lb"),
  14773. name: "Back (Costume)",
  14774. image: {
  14775. source: "./media/characters/regena-maxwell/back-costume.svg",
  14776. extra: 981/854,
  14777. bottom: 57/1038
  14778. }
  14779. },
  14780. },
  14781. [
  14782. {
  14783. name: "Normal",
  14784. height: math.unit(7 + 4 / 12, "feet"),
  14785. default: true
  14786. },
  14787. {
  14788. name: "Macro",
  14789. height: math.unit(220, "feet")
  14790. },
  14791. {
  14792. name: "Megamacro",
  14793. height: math.unit(11, "miles")
  14794. },
  14795. ]
  14796. ))
  14797. characterMakers.push(() => makeCharacter(
  14798. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14799. {
  14800. front: {
  14801. height: math.unit(6, "feet"),
  14802. weight: math.unit(150, "lb"),
  14803. name: "Front",
  14804. image: {
  14805. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14806. extra: 860 / 690,
  14807. bottom: 0.03
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(1.7, "meters"),
  14815. default: true
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(6, "feet"),
  14824. weight: math.unit(150, "lb"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/quilly/front.svg",
  14828. extra: 890 / 776
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Gigamacro",
  14835. height: math.unit(404090, "miles"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(7 + 8 / 12, "feet"),
  14845. weight: math.unit(350, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/tempest/front.svg",
  14849. extra: 1175 / 1086,
  14850. bottom: 0.02
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(7 + 8 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14864. {
  14865. side: {
  14866. height: math.unit(4 + 5 / 12, "feet"),
  14867. weight: math.unit(80, "lb"),
  14868. name: "Side",
  14869. image: {
  14870. source: "./media/characters/rodger/side.svg",
  14871. extra: 1235 / 1118
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Micro",
  14878. height: math.unit(1, "inch")
  14879. },
  14880. {
  14881. name: "Normal",
  14882. height: math.unit(4 + 5 / 12, "feet"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Macro",
  14887. height: math.unit(120, "feet")
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(6, "feet"),
  14896. weight: math.unit(150, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/danyel/front.svg",
  14900. extra: 1185 / 1123,
  14901. bottom: 0.05
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Shrunken",
  14908. height: math.unit(0.5, "mm")
  14909. },
  14910. {
  14911. name: "Micro",
  14912. height: math.unit(1, "mm"),
  14913. default: true
  14914. },
  14915. {
  14916. name: "Upsized",
  14917. height: math.unit(5 + 5 / 12, "feet")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(5 + 6 / 12, "feet"),
  14926. weight: math.unit(200, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/vivian-bijoux/front.svg",
  14930. extra: 1217/1209,
  14931. bottom: 76/1293
  14932. }
  14933. },
  14934. back: {
  14935. height: math.unit(5 + 6 / 12, "feet"),
  14936. weight: math.unit(200, "lb"),
  14937. name: "Back",
  14938. image: {
  14939. source: "./media/characters/vivian-bijoux/back.svg",
  14940. extra: 1214/1208,
  14941. bottom: 51/1265
  14942. }
  14943. },
  14944. dressed: {
  14945. height: math.unit(5 + 6 / 12, "feet"),
  14946. weight: math.unit(200, "lb"),
  14947. name: "Dressed",
  14948. image: {
  14949. source: "./media/characters/vivian-bijoux/dressed.svg",
  14950. extra: 1217/1209,
  14951. bottom: 76/1293
  14952. }
  14953. },
  14954. },
  14955. [
  14956. {
  14957. name: "Normal",
  14958. height: math.unit(5 + 6 / 12, "feet"),
  14959. default: true
  14960. },
  14961. {
  14962. name: "Bad Dream",
  14963. height: math.unit(500, "feet")
  14964. },
  14965. {
  14966. name: "Nightmare",
  14967. height: math.unit(500, "miles")
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(6 + 1 / 12, "feet"),
  14976. weight: math.unit(260, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/zeta/front.svg",
  14980. extra: 1968 / 1889,
  14981. bottom: 0.06
  14982. }
  14983. },
  14984. back: {
  14985. height: math.unit(6 + 1 / 12, "feet"),
  14986. weight: math.unit(260, "lb"),
  14987. name: "Back",
  14988. image: {
  14989. source: "./media/characters/zeta/back.svg",
  14990. extra: 1944 / 1858,
  14991. bottom: 0.03
  14992. }
  14993. },
  14994. hand: {
  14995. height: math.unit(1.112, "feet"),
  14996. name: "Hand",
  14997. image: {
  14998. source: "./media/characters/zeta/hand.svg"
  14999. }
  15000. },
  15001. foot: {
  15002. height: math.unit(1.48, "feet"),
  15003. name: "Foot",
  15004. image: {
  15005. source: "./media/characters/zeta/foot.svg"
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Micro",
  15012. height: math.unit(6, "inches")
  15013. },
  15014. {
  15015. name: "Normal",
  15016. height: math.unit(6 + 1 / 12, "feet"),
  15017. default: true
  15018. },
  15019. {
  15020. name: "Macro",
  15021. height: math.unit(20, "feet")
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(6, "feet"),
  15030. weight: math.unit(150, "lb"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/jamie-larsen/front.svg",
  15034. extra: 962 / 933,
  15035. bottom: 0.02
  15036. }
  15037. },
  15038. back: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(150, "lb"),
  15041. name: "Back",
  15042. image: {
  15043. source: "./media/characters/jamie-larsen/back.svg",
  15044. extra: 997 / 946
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Macro",
  15051. height: math.unit(28 + 7 / 12, "feet"),
  15052. default: true
  15053. },
  15054. {
  15055. name: "Macro+",
  15056. height: math.unit(180, "feet")
  15057. },
  15058. {
  15059. name: "Megamacro",
  15060. height: math.unit(10, "miles")
  15061. },
  15062. {
  15063. name: "Gigamacro",
  15064. height: math.unit(200000, "miles")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(120, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/vance/front.svg",
  15077. extra: 1980 / 1890,
  15078. bottom: 0.09
  15079. }
  15080. },
  15081. back: {
  15082. height: math.unit(6, "feet"),
  15083. weight: math.unit(120, "lb"),
  15084. name: "Back",
  15085. image: {
  15086. source: "./media/characters/vance/back.svg",
  15087. extra: 2081 / 1994,
  15088. bottom: 0.014
  15089. }
  15090. },
  15091. hand: {
  15092. height: math.unit(0.88, "feet"),
  15093. name: "Hand",
  15094. image: {
  15095. source: "./media/characters/vance/hand.svg"
  15096. }
  15097. },
  15098. foot: {
  15099. height: math.unit(0.64, "feet"),
  15100. name: "Foot",
  15101. image: {
  15102. source: "./media/characters/vance/foot.svg"
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Small",
  15109. height: math.unit(90, "feet"),
  15110. default: true
  15111. },
  15112. {
  15113. name: "Macro",
  15114. height: math.unit(100, "meters")
  15115. },
  15116. {
  15117. name: "Megamacro",
  15118. height: math.unit(15, "miles")
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(6, "feet"),
  15127. weight: math.unit(180, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/xochitl/front.svg",
  15131. extra: 2297 / 2261,
  15132. bottom: 0.065
  15133. }
  15134. },
  15135. back: {
  15136. height: math.unit(6, "feet"),
  15137. weight: math.unit(180, "lb"),
  15138. name: "Back",
  15139. image: {
  15140. source: "./media/characters/xochitl/back.svg",
  15141. extra: 2386 / 2354,
  15142. bottom: 0.01
  15143. }
  15144. },
  15145. foot: {
  15146. height: math.unit(6 / 5 * 1.15, "feet"),
  15147. weight: math.unit(150, "lb"),
  15148. name: "Foot",
  15149. image: {
  15150. source: "./media/characters/xochitl/foot.svg"
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(80, "feet")
  15158. },
  15159. {
  15160. name: "Macro+",
  15161. height: math.unit(400, "feet"),
  15162. default: true
  15163. },
  15164. {
  15165. name: "Gigamacro",
  15166. height: math.unit(80000, "miles")
  15167. },
  15168. {
  15169. name: "Gigamacro+",
  15170. height: math.unit(400000, "miles")
  15171. },
  15172. {
  15173. name: "Teramacro",
  15174. height: math.unit(300, "AU")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/vincent/front.svg",
  15187. extra: 1130 / 1080,
  15188. bottom: 0.055
  15189. }
  15190. },
  15191. beak: {
  15192. height: math.unit(6 * 0.1, "feet"),
  15193. name: "Beak",
  15194. image: {
  15195. source: "./media/characters/vincent/beak.svg"
  15196. }
  15197. },
  15198. hand: {
  15199. height: math.unit(6 * 0.85, "feet"),
  15200. weight: math.unit(150, "lb"),
  15201. name: "Hand",
  15202. image: {
  15203. source: "./media/characters/vincent/hand.svg"
  15204. }
  15205. },
  15206. foot: {
  15207. height: math.unit(6 * 0.19, "feet"),
  15208. weight: math.unit(150, "lb"),
  15209. name: "Foot",
  15210. image: {
  15211. source: "./media/characters/vincent/foot.svg"
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Base",
  15218. height: math.unit(6 + 5 / 12, "feet"),
  15219. default: true
  15220. },
  15221. {
  15222. name: "Macro",
  15223. height: math.unit(300, "feet")
  15224. },
  15225. {
  15226. name: "Megamacro",
  15227. height: math.unit(2, "miles")
  15228. },
  15229. {
  15230. name: "Gigamacro",
  15231. height: math.unit(1000, "miles")
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(2, "meters"),
  15240. weight: math.unit(500, "kg"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/coatl/front.svg",
  15244. extra: 3948 / 3500,
  15245. bottom: 0.082
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(4, "meters")
  15253. },
  15254. {
  15255. name: "Macro",
  15256. height: math.unit(100, "meters"),
  15257. default: true
  15258. },
  15259. {
  15260. name: "Macro+",
  15261. height: math.unit(300, "meters")
  15262. },
  15263. {
  15264. name: "Megamacro",
  15265. height: math.unit(3, "gigameters")
  15266. },
  15267. {
  15268. name: "Megamacro+",
  15269. height: math.unit(300, "terameters")
  15270. },
  15271. {
  15272. name: "Megamacro++",
  15273. height: math.unit(3, "lightyears")
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15279. {
  15280. front: {
  15281. height: math.unit(6, "feet"),
  15282. weight: math.unit(50, "kg"),
  15283. name: "front",
  15284. image: {
  15285. source: "./media/characters/shiroryu/front.svg",
  15286. extra: 1990 / 1935
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Mortal Mingling",
  15293. height: math.unit(3, "meters")
  15294. },
  15295. {
  15296. name: "Kaiju-ish",
  15297. height: math.unit(250, "meters")
  15298. },
  15299. {
  15300. name: "Somewhat Godly",
  15301. height: math.unit(400, "km"),
  15302. default: true
  15303. },
  15304. {
  15305. name: "Planetary",
  15306. height: math.unit(300, "megameters")
  15307. },
  15308. {
  15309. name: "Galaxy-dwarfing",
  15310. height: math.unit(450, "kiloparsecs")
  15311. },
  15312. {
  15313. name: "Universe Eater",
  15314. height: math.unit(150, "gigaparsecs")
  15315. },
  15316. {
  15317. name: "Almost Immeasurable",
  15318. height: math.unit(1.3e266, "yottaparsecs")
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(6, "feet"),
  15327. weight: math.unit(150, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/umeko/front.svg",
  15331. extra: 1,
  15332. bottom: 0.019
  15333. }
  15334. },
  15335. frontArmored: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(150, "lb"),
  15338. name: "Front (Armored)",
  15339. image: {
  15340. source: "./media/characters/umeko/front-armored.svg",
  15341. extra: 1,
  15342. bottom: 0.021
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Macro",
  15349. height: math.unit(220, "feet"),
  15350. default: true
  15351. },
  15352. {
  15353. name: "Guardian Dragon",
  15354. height: math.unit(50, "miles")
  15355. },
  15356. {
  15357. name: "Cosmic",
  15358. height: math.unit(800000, "miles")
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15364. {
  15365. front: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(150, "lb"),
  15368. name: "Front",
  15369. image: {
  15370. source: "./media/characters/cassidy/front.svg",
  15371. extra: 810/808,
  15372. bottom: 41/851
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Canon Height",
  15379. height: math.unit(120, "feet"),
  15380. default: true
  15381. },
  15382. {
  15383. name: "Macro+",
  15384. height: math.unit(400, "feet")
  15385. },
  15386. {
  15387. name: "Macro++",
  15388. height: math.unit(4000, "feet")
  15389. },
  15390. {
  15391. name: "Megamacro",
  15392. height: math.unit(3, "miles")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/isaac/front.svg",
  15405. extra: 896 / 815,
  15406. bottom: 0.11
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Human Size",
  15413. height: math.unit(8, "feet"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Macro",
  15418. height: math.unit(400, "feet")
  15419. },
  15420. {
  15421. name: "Megamacro",
  15422. height: math.unit(50, "miles")
  15423. },
  15424. {
  15425. name: "Canon Height",
  15426. height: math.unit(200, "AU")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15432. {
  15433. front: {
  15434. height: math.unit(6, "feet"),
  15435. weight: math.unit(72, "kg"),
  15436. name: "Front",
  15437. image: {
  15438. source: "./media/characters/sleekit/front.svg",
  15439. extra: 4693 / 4487,
  15440. bottom: 0.012
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Minimum Height",
  15447. height: math.unit(10, "meters")
  15448. },
  15449. {
  15450. name: "Smaller",
  15451. height: math.unit(25, "meters")
  15452. },
  15453. {
  15454. name: "Larger",
  15455. height: math.unit(38, "meters"),
  15456. default: true
  15457. },
  15458. {
  15459. name: "Maximum height",
  15460. height: math.unit(100, "meters")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/nillia/front.svg",
  15473. extra: 2195 / 2037,
  15474. bottom: 0.005
  15475. }
  15476. },
  15477. back: {
  15478. height: math.unit(6, "feet"),
  15479. weight: math.unit(150, "lb"),
  15480. name: "Back",
  15481. image: {
  15482. source: "./media/characters/nillia/back.svg",
  15483. extra: 2195 / 2037,
  15484. bottom: 0.005
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Canon Height",
  15491. height: math.unit(489, "feet"),
  15492. default: true
  15493. }
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(150, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/mesmyriza/front.svg",
  15505. extra: 2067 / 1784,
  15506. bottom: 0.035
  15507. }
  15508. },
  15509. foot: {
  15510. height: math.unit(6 / (250 / 35), "feet"),
  15511. name: "Foot",
  15512. image: {
  15513. source: "./media/characters/mesmyriza/foot.svg"
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Macro",
  15520. height: math.unit(457, "meters"),
  15521. default: true
  15522. },
  15523. {
  15524. name: "Megamacro",
  15525. height: math.unit(8, "megameters")
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(6, "feet"),
  15534. weight: math.unit(250, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/saudade/front.svg",
  15538. extra: 1172 / 1139,
  15539. bottom: 0.035
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Micro",
  15546. height: math.unit(3, "inches")
  15547. },
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(6, "feet"),
  15551. default: true
  15552. },
  15553. {
  15554. name: "Macro",
  15555. height: math.unit(50, "feet")
  15556. },
  15557. {
  15558. name: "Megamacro",
  15559. height: math.unit(2800, "feet")
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15565. {
  15566. front: {
  15567. height: math.unit(5 + 4 / 12, "feet"),
  15568. weight: math.unit(100, "lb"),
  15569. name: "Front",
  15570. image: {
  15571. source: "./media/characters/keireer/front.svg",
  15572. extra: 716 / 666,
  15573. bottom: 0.05
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(5 + 4 / 12, "feet"),
  15581. default: true
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15587. {
  15588. front: {
  15589. height: math.unit(5.5, "feet"),
  15590. weight: math.unit(90, "kg"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/mirja/front.svg",
  15594. extra: 1452/1262,
  15595. bottom: 67/1519
  15596. }
  15597. },
  15598. frontDressed: {
  15599. height: math.unit(5.5, "feet"),
  15600. weight: math.unit(90, "lb"),
  15601. name: "Front (Dressed)",
  15602. image: {
  15603. source: "./media/characters/mirja/dressed.svg",
  15604. extra: 1452/1262,
  15605. bottom: 67/1519
  15606. }
  15607. },
  15608. back: {
  15609. height: math.unit(6, "feet"),
  15610. weight: math.unit(90, "lb"),
  15611. name: "Back",
  15612. image: {
  15613. source: "./media/characters/mirja/back.svg",
  15614. extra: 1892/1795,
  15615. bottom: 48/1940
  15616. }
  15617. },
  15618. maw: {
  15619. height: math.unit(1.312, "feet"),
  15620. name: "Maw",
  15621. image: {
  15622. source: "./media/characters/mirja/maw.svg"
  15623. }
  15624. },
  15625. paw: {
  15626. height: math.unit(1.15, "feet"),
  15627. name: "Paw",
  15628. image: {
  15629. source: "./media/characters/mirja/paw.svg"
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "\"Incognito\"",
  15636. height: math.unit(3, "meters")
  15637. },
  15638. {
  15639. name: "Strolling Size",
  15640. height: math.unit(15, "km")
  15641. },
  15642. {
  15643. name: "Larger Strolling Size",
  15644. height: math.unit(400, "km")
  15645. },
  15646. {
  15647. name: "Preferred Size",
  15648. height: math.unit(5000, "km"),
  15649. default: true
  15650. },
  15651. {
  15652. name: "True Size",
  15653. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(15, "feet"),
  15662. weight: math.unit(880, "kg"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/nightraver/front.svg",
  15666. extra: 2444 / 2160,
  15667. bottom: 0.027
  15668. }
  15669. },
  15670. back: {
  15671. height: math.unit(15, "feet"),
  15672. weight: math.unit(880, "kg"),
  15673. name: "Back",
  15674. image: {
  15675. source: "./media/characters/nightraver/back.svg",
  15676. extra: 2309 / 2180,
  15677. bottom: 0.005
  15678. }
  15679. },
  15680. sole: {
  15681. height: math.unit(2.878, "feet"),
  15682. name: "Sole",
  15683. image: {
  15684. source: "./media/characters/nightraver/sole.svg"
  15685. }
  15686. },
  15687. foot: {
  15688. height: math.unit(2.285, "feet"),
  15689. name: "Foot",
  15690. image: {
  15691. source: "./media/characters/nightraver/foot.svg"
  15692. }
  15693. },
  15694. maw: {
  15695. height: math.unit(2.67, "feet"),
  15696. name: "Maw",
  15697. image: {
  15698. source: "./media/characters/nightraver/maw.svg"
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Micro",
  15705. height: math.unit(1, "cm")
  15706. },
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(15, "feet"),
  15710. default: true
  15711. },
  15712. {
  15713. name: "Macro",
  15714. height: math.unit(300, "feet")
  15715. },
  15716. {
  15717. name: "Megamacro",
  15718. height: math.unit(300, "miles")
  15719. },
  15720. {
  15721. name: "Gigamacro",
  15722. height: math.unit(10000, "miles")
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15728. {
  15729. side: {
  15730. height: math.unit(2, "inches"),
  15731. weight: math.unit(5, "grams"),
  15732. name: "Side",
  15733. image: {
  15734. source: "./media/characters/arc/side.svg"
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Micro",
  15741. height: math.unit(2, "inches"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15748. {
  15749. front: {
  15750. height: math.unit(1.1938, "meters"),
  15751. weight: math.unit(54, "kg"),
  15752. name: "Front",
  15753. image: {
  15754. source: "./media/characters/nebula-shahar/front.svg",
  15755. extra: 1642 / 1436,
  15756. bottom: 0.06
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Megamicro",
  15763. height: math.unit(0.3, "mm")
  15764. },
  15765. {
  15766. name: "Micro",
  15767. height: math.unit(3, "cm")
  15768. },
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(138, "cm"),
  15772. default: true
  15773. },
  15774. {
  15775. name: "Macro",
  15776. height: math.unit(30, "m")
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(5.24, "feet"),
  15785. weight: math.unit(150, "lb"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/shayla/front.svg",
  15789. extra: 1512 / 1414,
  15790. bottom: 0.01
  15791. }
  15792. },
  15793. back: {
  15794. height: math.unit(5.24, "feet"),
  15795. weight: math.unit(150, "lb"),
  15796. name: "Back",
  15797. image: {
  15798. source: "./media/characters/shayla/back.svg",
  15799. extra: 1512 / 1414
  15800. }
  15801. },
  15802. hand: {
  15803. height: math.unit(0.7781496062992126, "feet"),
  15804. name: "Hand",
  15805. image: {
  15806. source: "./media/characters/shayla/hand.svg"
  15807. }
  15808. },
  15809. foot: {
  15810. height: math.unit(1.4206036745406823, "feet"),
  15811. name: "Foot",
  15812. image: {
  15813. source: "./media/characters/shayla/foot.svg"
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Micro",
  15820. height: math.unit(0.32, "feet")
  15821. },
  15822. {
  15823. name: "Normal",
  15824. height: math.unit(5.24, "feet"),
  15825. default: true
  15826. },
  15827. {
  15828. name: "Macro",
  15829. height: math.unit(492.12, "feet")
  15830. },
  15831. {
  15832. name: "Megamacro",
  15833. height: math.unit(186.41, "miles")
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(2.2, "m"),
  15842. weight: math.unit(120, "kg"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/pia-jr/front.svg",
  15846. extra: 1000 / 970,
  15847. bottom: 0.035
  15848. }
  15849. },
  15850. hand: {
  15851. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15852. name: "Hand",
  15853. image: {
  15854. source: "./media/characters/pia-jr/hand.svg"
  15855. }
  15856. },
  15857. paw: {
  15858. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15859. name: "Paw",
  15860. image: {
  15861. source: "./media/characters/pia-jr/paw.svg"
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Micro",
  15868. height: math.unit(1.2, "cm")
  15869. },
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(2.2, "m"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Macro",
  15877. height: math.unit(180, "m")
  15878. },
  15879. {
  15880. name: "Megamacro",
  15881. height: math.unit(420, "km")
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(2, "m"),
  15890. weight: math.unit(115, "kg"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/pia-sr/front.svg",
  15894. extra: 760 / 730,
  15895. bottom: 0.015
  15896. }
  15897. },
  15898. back: {
  15899. height: math.unit(2, "m"),
  15900. weight: math.unit(115, "kg"),
  15901. name: "Back",
  15902. image: {
  15903. source: "./media/characters/pia-sr/back.svg",
  15904. extra: 760 / 730,
  15905. bottom: 0.01
  15906. }
  15907. },
  15908. hand: {
  15909. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15910. name: "Hand",
  15911. image: {
  15912. source: "./media/characters/pia-sr/hand.svg"
  15913. }
  15914. },
  15915. foot: {
  15916. height: math.unit(1.83, "feet"),
  15917. name: "Foot",
  15918. image: {
  15919. source: "./media/characters/pia-sr/foot.svg"
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Micro",
  15926. height: math.unit(88, "mm")
  15927. },
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(2, "m"),
  15931. default: true
  15932. },
  15933. {
  15934. name: "Macro",
  15935. height: math.unit(200, "m")
  15936. },
  15937. {
  15938. name: "Megamacro",
  15939. height: math.unit(420, "km")
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(8 + 2 / 12, "feet"),
  15948. weight: math.unit(300, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/kibibyte/front.svg",
  15952. extra: 2221 / 2098,
  15953. bottom: 0.04
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(8 + 2 / 12, "feet"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Socialable Macro",
  15965. height: math.unit(50, "feet")
  15966. },
  15967. {
  15968. name: "Macro",
  15969. height: math.unit(300, "feet")
  15970. },
  15971. {
  15972. name: "Megamacro",
  15973. height: math.unit(500, "miles")
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(6, "feet"),
  15982. weight: math.unit(150, "lb"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/felix/front.svg",
  15986. extra: 762 / 722,
  15987. bottom: 0.02
  15988. }
  15989. },
  15990. frontClothed: {
  15991. height: math.unit(6, "feet"),
  15992. weight: math.unit(150, "lb"),
  15993. name: "Front (Clothed)",
  15994. image: {
  15995. source: "./media/characters/felix/front-clothed.svg",
  15996. extra: 762 / 722,
  15997. bottom: 0.02
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(6 + 8 / 12, "feet"),
  16005. default: true
  16006. },
  16007. {
  16008. name: "Macro",
  16009. height: math.unit(2600, "feet")
  16010. },
  16011. {
  16012. name: "Megamacro",
  16013. height: math.unit(450, "miles")
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16019. {
  16020. front: {
  16021. height: math.unit(6 + 1 / 12, "feet"),
  16022. weight: math.unit(250, "lb"),
  16023. name: "Front",
  16024. image: {
  16025. source: "./media/characters/tobo/front.svg",
  16026. extra: 608 / 586,
  16027. bottom: 0.023
  16028. }
  16029. },
  16030. back: {
  16031. height: math.unit(6 + 1 / 12, "feet"),
  16032. weight: math.unit(250, "lb"),
  16033. name: "Back",
  16034. image: {
  16035. source: "./media/characters/tobo/back.svg",
  16036. extra: 608 / 586
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Nano",
  16043. height: math.unit(2, "nm")
  16044. },
  16045. {
  16046. name: "Megamicro",
  16047. height: math.unit(0.1, "mm")
  16048. },
  16049. {
  16050. name: "Micro",
  16051. height: math.unit(1, "inch"),
  16052. default: true
  16053. },
  16054. {
  16055. name: "Human-sized",
  16056. height: math.unit(6 + 1 / 12, "feet")
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(250, "feet")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(75, "miles")
  16065. },
  16066. {
  16067. name: "Texas-sized",
  16068. height: math.unit(750, "miles")
  16069. },
  16070. {
  16071. name: "Teramacro",
  16072. height: math.unit(50000, "miles")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(269, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/danny-kapowsky/front.svg",
  16085. extra: 766 / 736,
  16086. bottom: 0.044
  16087. }
  16088. },
  16089. back: {
  16090. height: math.unit(6, "feet"),
  16091. weight: math.unit(269, "lb"),
  16092. name: "Back",
  16093. image: {
  16094. source: "./media/characters/danny-kapowsky/back.svg",
  16095. extra: 797 / 760,
  16096. bottom: 0.025
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Macro",
  16103. height: math.unit(150, "feet"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Macro+",
  16108. height: math.unit(200, "feet")
  16109. },
  16110. {
  16111. name: "Macro++",
  16112. height: math.unit(300, "feet")
  16113. },
  16114. {
  16115. name: "Macro+++",
  16116. height: math.unit(400, "feet")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16122. {
  16123. side: {
  16124. height: math.unit(6, "feet"),
  16125. weight: math.unit(170, "lb"),
  16126. name: "Side",
  16127. image: {
  16128. source: "./media/characters/finn/side.svg",
  16129. extra: 1953 / 1807,
  16130. bottom: 0.057
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Megamacro",
  16137. height: math.unit(14445, "feet"),
  16138. default: true
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(5 + 6 / 12, "feet"),
  16147. weight: math.unit(125, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/roy/front.svg",
  16151. extra: 1,
  16152. bottom: 0.11
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Micro",
  16159. height: math.unit(3, "inches"),
  16160. default: true
  16161. },
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(5 + 6 / 12, "feet")
  16165. },
  16166. {
  16167. name: "Lesser Macro",
  16168. height: math.unit(60, "feet")
  16169. },
  16170. {
  16171. name: "Greater Macro",
  16172. height: math.unit(120, "feet")
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(100, "lb"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/aevsivs/front.svg",
  16185. extra: 1,
  16186. bottom: 0.03
  16187. }
  16188. },
  16189. back: {
  16190. height: math.unit(6, "feet"),
  16191. weight: math.unit(100, "lb"),
  16192. name: "Back",
  16193. image: {
  16194. source: "./media/characters/aevsivs/back.svg"
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Micro",
  16201. height: math.unit(2, "inches"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(5, "feet")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(5 + 7 / 12, "feet"),
  16215. weight: math.unit(159, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/hildegard/front.svg",
  16219. extra: 289 / 269,
  16220. bottom: 7.63 / 297.8
  16221. }
  16222. },
  16223. back: {
  16224. height: math.unit(5 + 7 / 12, "feet"),
  16225. weight: math.unit(159, "lb"),
  16226. name: "Back",
  16227. image: {
  16228. source: "./media/characters/hildegard/back.svg",
  16229. extra: 280 / 260,
  16230. bottom: 2.3 / 282
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(5 + 7 / 12, "feet"),
  16238. default: true
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16244. {
  16245. bernard: {
  16246. height: math.unit(2 + 7 / 12, "feet"),
  16247. weight: math.unit(66, "lb"),
  16248. name: "Bernard",
  16249. rename: true,
  16250. image: {
  16251. source: "./media/characters/bernard-wilder/bernard.svg",
  16252. extra: 192 / 128,
  16253. bottom: 0.05
  16254. }
  16255. },
  16256. wilder: {
  16257. height: math.unit(5 + 8 / 12, "feet"),
  16258. weight: math.unit(143, "lb"),
  16259. name: "Wilder",
  16260. rename: true,
  16261. image: {
  16262. source: "./media/characters/bernard-wilder/wilder.svg",
  16263. extra: 361 / 312,
  16264. bottom: 0.02
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(2 + 7 / 12, "feet"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16278. {
  16279. anthro: {
  16280. height: math.unit(6 + 1 / 12, "feet"),
  16281. weight: math.unit(155, "lb"),
  16282. name: "Anthro",
  16283. image: {
  16284. source: "./media/characters/hearth/anthro.svg",
  16285. extra: 1178/1136,
  16286. bottom: 28/1206
  16287. }
  16288. },
  16289. feral: {
  16290. height: math.unit(3.78, "feet"),
  16291. weight: math.unit(35, "kg"),
  16292. name: "Feral",
  16293. image: {
  16294. source: "./media/characters/hearth/feral.svg",
  16295. extra: 153 / 135,
  16296. bottom: 0.03
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(6 + 1 / 12, "feet"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(6, "feet"),
  16313. weight: math.unit(182, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/ingrid/front.svg",
  16317. extra: 294 / 268,
  16318. bottom: 0.027
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(6, "feet"),
  16326. default: true
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16332. {
  16333. eevee: {
  16334. height: math.unit(2 + 10 / 12, "feet"),
  16335. weight: math.unit(86, "lb"),
  16336. name: "Malgam",
  16337. image: {
  16338. source: "./media/characters/malgam/eevee.svg",
  16339. extra: 952/784,
  16340. bottom: 38/990
  16341. }
  16342. },
  16343. sylveon: {
  16344. height: math.unit(4, "feet"),
  16345. weight: math.unit(101, "lb"),
  16346. name: "Future Malgam",
  16347. rename: true,
  16348. image: {
  16349. source: "./media/characters/malgam/sylveon.svg",
  16350. extra: 371 / 325,
  16351. bottom: 0.015
  16352. }
  16353. },
  16354. gigantamax: {
  16355. height: math.unit(50, "feet"),
  16356. name: "Gigantamax Malgam",
  16357. rename: true,
  16358. image: {
  16359. source: "./media/characters/malgam/gigantamax.svg"
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(2 + 10 / 12, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(5 + 11 / 12, "feet"),
  16376. weight: math.unit(188, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/fleur/front.svg",
  16380. extra: 309 / 283,
  16381. bottom: 0.007
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(5 + 11 / 12, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(5 + 4 / 12, "feet"),
  16398. weight: math.unit(122, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/jude/front.svg",
  16402. extra: 288 / 273,
  16403. bottom: 0.03
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(5 + 4 / 12, "feet"),
  16411. default: true
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(5 + 11 / 12, "feet"),
  16420. weight: math.unit(190, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/seara/front.svg",
  16424. extra: 1,
  16425. bottom: 0.05
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(5 + 11 / 12, "feet"),
  16433. default: true
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16439. {
  16440. front: {
  16441. height: math.unit(16 + 5 / 12, "feet"),
  16442. weight: math.unit(524, "lb"),
  16443. name: "Front",
  16444. image: {
  16445. source: "./media/characters/caspian-lugia/front.svg",
  16446. extra: 1,
  16447. bottom: 0.04
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(16 + 5 / 12, "feet"),
  16455. default: true
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(5 + 7 / 12, "feet"),
  16464. weight: math.unit(170, "lb"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/mika/front.svg",
  16468. extra: 1,
  16469. bottom: 0.016
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(5 + 7 / 12, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(6 + 2 / 12, "feet"),
  16486. weight: math.unit(268, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/sol/front.svg",
  16490. extra: 247 / 231,
  16491. bottom: 0.05
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(6 + 2 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16505. {
  16506. buizel: {
  16507. height: math.unit(2 + 5 / 12, "feet"),
  16508. weight: math.unit(87, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/umiko/buizel.svg",
  16512. extra: 172 / 157,
  16513. bottom: 0.01
  16514. },
  16515. form: "buizel",
  16516. default: true
  16517. },
  16518. floatzel: {
  16519. height: math.unit(5 + 9 / 12, "feet"),
  16520. weight: math.unit(250, "lb"),
  16521. name: "Front",
  16522. image: {
  16523. source: "./media/characters/umiko/floatzel.svg",
  16524. extra: 1076/1006,
  16525. bottom: 15/1091
  16526. },
  16527. form: "floatzel",
  16528. default: true
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(2 + 5 / 12, "feet"),
  16535. form: "buizel",
  16536. default: true
  16537. },
  16538. {
  16539. name: "Normal",
  16540. height: math.unit(5 + 9 / 12, "feet"),
  16541. form: "floatzel",
  16542. default: true
  16543. },
  16544. ],
  16545. {
  16546. "buizel": {
  16547. name: "Buizel"
  16548. },
  16549. "floatzel": {
  16550. name: "Floatzel",
  16551. default: true
  16552. }
  16553. }
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(6 + 2 / 12, "feet"),
  16560. weight: math.unit(146, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/iliac/front.svg",
  16564. extra: 389 / 365,
  16565. bottom: 0.035
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(6 + 2 / 12, "feet"),
  16573. default: true
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(6, "feet"),
  16582. weight: math.unit(170, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/topaz/front.svg",
  16586. extra: 317 / 303,
  16587. bottom: 0.055
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(6, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(5 + 11 / 12, "feet"),
  16604. weight: math.unit(144, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/gabriel/front.svg",
  16608. extra: 285 / 262,
  16609. bottom: 0.004
  16610. }
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Normal",
  16616. height: math.unit(5 + 11 / 12, "feet"),
  16617. default: true
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16623. {
  16624. side: {
  16625. height: math.unit(6 + 5 / 12, "feet"),
  16626. weight: math.unit(300, "lb"),
  16627. name: "Side",
  16628. image: {
  16629. source: "./media/characters/tempest-suicune/side.svg",
  16630. extra: 195 / 154,
  16631. bottom: 0.04
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(6 + 5 / 12, "feet"),
  16639. default: true
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16645. {
  16646. front: {
  16647. height: math.unit(7 + 2 / 12, "feet"),
  16648. weight: math.unit(322, "lb"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/vulcan/front.svg",
  16652. extra: 154 / 147,
  16653. bottom: 0.04
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Normal",
  16660. height: math.unit(7 + 2 / 12, "feet"),
  16661. default: true
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(5 + 10 / 12, "feet"),
  16670. weight: math.unit(264, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/gault/front.svg",
  16674. extra: 161 / 140,
  16675. bottom: 0.028
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(5 + 10 / 12, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(6, "feet"),
  16692. weight: math.unit(150, "lb"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/shard/front.svg",
  16696. extra: 273 / 238,
  16697. bottom: 0.02
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(3 + 6 / 12, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(5 + 11 / 12, "feet"),
  16714. weight: math.unit(146, "lb"),
  16715. name: "Front",
  16716. image: {
  16717. source: "./media/characters/ashe/front.svg",
  16718. extra: 400 / 373,
  16719. bottom: 0.01
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(5 + 11 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(5 + 5 / 12, "feet"),
  16736. weight: math.unit(135, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/beatrix/front.svg",
  16740. extra: 392 / 379,
  16741. bottom: 0.01
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(6, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16755. {
  16756. front: {
  16757. height: math.unit(6 + 2/12, "feet"),
  16758. weight: math.unit(135, "lb"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/ignatius/front.svg",
  16762. extra: 1380/1259,
  16763. bottom: 27/1407
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(6 + 2/12, "feet"),
  16771. default: true
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6 + 2 / 12, "feet"),
  16780. weight: math.unit(138, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/mei-li/front.svg",
  16784. extra: 237 / 229,
  16785. bottom: 0.03
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(6 + 2 / 12, "feet"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(2 + 4 / 12, "feet"),
  16802. weight: math.unit(62, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/puru/front.svg",
  16806. extra: 206 / 149,
  16807. bottom: 0.06
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(2 + 4 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16821. {
  16822. anthro: {
  16823. height: math.unit(5 + 8/12, "feet"),
  16824. weight: math.unit(200, "lb"),
  16825. energyNeed: math.unit(2000, "kcal"),
  16826. name: "Anthro",
  16827. image: {
  16828. source: "./media/characters/kee/anthro.svg",
  16829. extra: 3251/3184,
  16830. bottom: 250/3501
  16831. }
  16832. },
  16833. taur: {
  16834. height: math.unit(11, "feet"),
  16835. weight: math.unit(500, "lb"),
  16836. energyNeed: math.unit(5000, "kcal"),
  16837. name: "Taur",
  16838. image: {
  16839. source: "./media/characters/kee/taur.svg",
  16840. extra: 1362/1320,
  16841. bottom: 83/1445
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(5 + 8/12, "feet"),
  16849. default: true
  16850. },
  16851. {
  16852. name: "Macro",
  16853. height: math.unit(35, "feet")
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16859. {
  16860. anthro: {
  16861. height: math.unit(7, "feet"),
  16862. weight: math.unit(190, "lb"),
  16863. name: "Anthro",
  16864. image: {
  16865. source: "./media/characters/cobalt-dracha/anthro.svg",
  16866. extra: 231 / 225,
  16867. bottom: 0.04
  16868. }
  16869. },
  16870. feral: {
  16871. height: math.unit(9 + 7 / 12, "feet"),
  16872. weight: math.unit(294, "lb"),
  16873. name: "Feral",
  16874. image: {
  16875. source: "./media/characters/cobalt-dracha/feral.svg",
  16876. extra: 692 / 633,
  16877. bottom: 0.05
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Normal",
  16884. height: math.unit(7, "feet"),
  16885. default: true
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16891. {
  16892. fallen: {
  16893. height: math.unit(11 + 8 / 12, "feet"),
  16894. weight: math.unit(485, "lb"),
  16895. name: "Java (Fallen)",
  16896. rename: true,
  16897. image: {
  16898. source: "./media/characters/java/fallen.svg",
  16899. extra: 226 / 208,
  16900. bottom: 0.005
  16901. }
  16902. },
  16903. godkin: {
  16904. height: math.unit(10 + 6 / 12, "feet"),
  16905. weight: math.unit(328, "lb"),
  16906. name: "Java (Godkin)",
  16907. rename: true,
  16908. image: {
  16909. source: "./media/characters/java/godkin.svg",
  16910. extra: 1104/1068,
  16911. bottom: 36/1140
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(11 + 8 / 12, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(5 + 9 / 12, "feet"),
  16928. weight: math.unit(170, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/purna/front.svg",
  16932. extra: 239 / 229,
  16933. bottom: 0.01
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(5 + 9 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(5 + 9 / 12, "feet"),
  16950. weight: math.unit(142, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/kuva/front.svg",
  16954. extra: 281 / 271,
  16955. bottom: 0.006
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(5 + 9 / 12, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16969. {
  16970. anthro: {
  16971. height: math.unit(9 + 2 / 12, "feet"),
  16972. weight: math.unit(270, "lb"),
  16973. name: "Anthro",
  16974. image: {
  16975. source: "./media/characters/embra/anthro.svg",
  16976. extra: 200 / 187,
  16977. bottom: 0.02
  16978. }
  16979. },
  16980. feral: {
  16981. height: math.unit(18 + 8 / 12, "feet"),
  16982. weight: math.unit(576, "lb"),
  16983. name: "Feral",
  16984. image: {
  16985. source: "./media/characters/embra/feral.svg",
  16986. extra: 152 / 137,
  16987. bottom: 0.037
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(9 + 2 / 12, "feet"),
  16995. default: true
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17001. {
  17002. anthro: {
  17003. height: math.unit(10 + 9 / 12, "feet"),
  17004. weight: math.unit(224, "lb"),
  17005. name: "Anthro",
  17006. image: {
  17007. source: "./media/characters/grottos/anthro.svg",
  17008. extra: 350 / 332,
  17009. bottom: 0.045
  17010. }
  17011. },
  17012. feral: {
  17013. height: math.unit(20 + 7 / 12, "feet"),
  17014. weight: math.unit(629, "lb"),
  17015. name: "Feral",
  17016. image: {
  17017. source: "./media/characters/grottos/feral.svg",
  17018. extra: 207 / 190,
  17019. bottom: 0.05
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(10 + 9 / 12, "feet"),
  17027. default: true
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17033. {
  17034. anthro: {
  17035. height: math.unit(9 + 6 / 12, "feet"),
  17036. weight: math.unit(298, "lb"),
  17037. name: "Anthro",
  17038. image: {
  17039. source: "./media/characters/frifna/anthro.svg",
  17040. extra: 282 / 269,
  17041. bottom: 0.015
  17042. }
  17043. },
  17044. feral: {
  17045. height: math.unit(16 + 2 / 12, "feet"),
  17046. weight: math.unit(624, "lb"),
  17047. name: "Feral",
  17048. image: {
  17049. source: "./media/characters/frifna/feral.svg"
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(9 + 6 / 12, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(6 + 2 / 12, "feet"),
  17066. weight: math.unit(168, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/elise/front.svg",
  17070. extra: 276 / 271
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(6 + 2 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(5 + 10 / 12, "feet"),
  17087. weight: math.unit(210, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/glade/front.svg",
  17091. extra: 258 / 247,
  17092. bottom: 0.008
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(5 + 10 / 12, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(5 + 10 / 12, "feet"),
  17109. weight: math.unit(129, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/rina/front.svg",
  17113. extra: 266 / 255,
  17114. bottom: 0.005
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(5 + 10 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(6 + 1 / 12, "feet"),
  17131. weight: math.unit(192, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/veronica/front.svg",
  17135. extra: 319 / 309,
  17136. bottom: 0.005
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(6 + 1 / 12, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(9 + 3 / 12, "feet"),
  17153. weight: math.unit(1100, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/braxton/front.svg",
  17157. extra: 1057 / 984,
  17158. bottom: 0.05
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(9 + 3 / 12, "feet")
  17166. },
  17167. {
  17168. name: "Giant",
  17169. height: math.unit(300, "feet"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Macro",
  17174. height: math.unit(700, "feet")
  17175. },
  17176. {
  17177. name: "Megamacro",
  17178. height: math.unit(6000, "feet")
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17184. {
  17185. front: {
  17186. height: math.unit(6 + 7 / 12, "feet"),
  17187. weight: math.unit(150, "lb"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/blue-feyonics/front.svg",
  17191. extra: 1403 / 1306,
  17192. bottom: 0.047
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Normal",
  17199. height: math.unit(6 + 7 / 12, "feet"),
  17200. default: true
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(1.8, "meters"),
  17209. weight: math.unit(60, "kg"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/maxwell/front.svg",
  17213. extra: 2060 / 1873
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Micro",
  17220. height: math.unit(1, "mm")
  17221. },
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(1.8, "meter"),
  17225. default: true
  17226. },
  17227. {
  17228. name: "Macro",
  17229. height: math.unit(30, "meters")
  17230. },
  17231. {
  17232. name: "Megamacro",
  17233. height: math.unit(10, "km")
  17234. },
  17235. ]
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17239. {
  17240. front: {
  17241. height: math.unit(6, "feet"),
  17242. weight: math.unit(150, "lb"),
  17243. name: "Front",
  17244. image: {
  17245. source: "./media/characters/jack/front.svg",
  17246. extra: 1754 / 1640,
  17247. bottom: 0.01
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(80000, "feet"),
  17255. default: true
  17256. },
  17257. {
  17258. name: "Max size",
  17259. height: math.unit(10, "lightyears")
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17265. {
  17266. urban: {
  17267. height: math.unit(5, "feet"),
  17268. weight: math.unit(240, "lb"),
  17269. name: "Urban",
  17270. image: {
  17271. source: "./media/characters/cafat/urban.svg",
  17272. extra: 1223/1126,
  17273. bottom: 205/1428
  17274. }
  17275. },
  17276. summer: {
  17277. height: math.unit(5, "feet"),
  17278. weight: math.unit(240, "lb"),
  17279. name: "Summer",
  17280. image: {
  17281. source: "./media/characters/cafat/summer.svg",
  17282. extra: 1223/1126,
  17283. bottom: 205/1428
  17284. }
  17285. },
  17286. winter: {
  17287. height: math.unit(5, "feet"),
  17288. weight: math.unit(240, "lb"),
  17289. name: "Winter",
  17290. image: {
  17291. source: "./media/characters/cafat/winter.svg",
  17292. extra: 1223/1126,
  17293. bottom: 205/1428
  17294. }
  17295. },
  17296. lingerie: {
  17297. height: math.unit(5, "feet"),
  17298. weight: math.unit(240, "lb"),
  17299. name: "Lingerie",
  17300. image: {
  17301. source: "./media/characters/cafat/lingerie.svg",
  17302. extra: 1223/1126,
  17303. bottom: 205/1428
  17304. }
  17305. },
  17306. upright: {
  17307. height: math.unit(6.3, "feet"),
  17308. weight: math.unit(240, "lb"),
  17309. name: "Upright",
  17310. image: {
  17311. source: "./media/characters/cafat/upright.svg",
  17312. bottom: 0.01
  17313. }
  17314. },
  17315. uprightFull: {
  17316. height: math.unit(6.3, "feet"),
  17317. weight: math.unit(240, "lb"),
  17318. name: "Upright (Full)",
  17319. image: {
  17320. source: "./media/characters/cafat/upright-full.svg",
  17321. bottom: 0.01
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Small",
  17328. height: math.unit(5, "feet"),
  17329. default: true
  17330. },
  17331. {
  17332. name: "Large",
  17333. height: math.unit(13, "feet")
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17339. {
  17340. front: {
  17341. height: math.unit(6, "feet"),
  17342. weight: math.unit(150, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/verin-raharra/front.svg",
  17346. extra: 5019 / 4835,
  17347. bottom: 0.023
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(7 + 5 / 12, "feet"),
  17355. default: true
  17356. },
  17357. {
  17358. name: "Upsized",
  17359. height: math.unit(20, "feet")
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(7, "feet"),
  17368. weight: math.unit(230, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/nakata/front.svg",
  17372. extra: 1.005,
  17373. bottom: 0.01
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(7, "feet"),
  17381. default: true
  17382. },
  17383. {
  17384. name: "Big",
  17385. height: math.unit(14, "feet")
  17386. },
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(400, "feet")
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(4.91, "feet"),
  17398. weight: math.unit(100, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/lily/front.svg",
  17402. extra: 1585 / 1415,
  17403. bottom: 0.02
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(4.91, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17417. {
  17418. laying: {
  17419. height: math.unit(4 + 4 / 12, "feet"),
  17420. weight: math.unit(600, "lb"),
  17421. name: "Laying",
  17422. image: {
  17423. source: "./media/characters/sheila/laying.svg",
  17424. extra: 1333 / 1265,
  17425. bottom: 0.16
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(4 + 4 / 12, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(6, "feet"),
  17442. weight: math.unit(190, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/sax/front.svg",
  17446. extra: 1187 / 973,
  17447. bottom: 0.042
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Micro",
  17454. height: math.unit(4, "inches"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(6, "feet"),
  17464. weight: math.unit(150, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/pandora/front.svg",
  17468. extra: 2720 / 2556,
  17469. bottom: 0.015
  17470. }
  17471. },
  17472. back: {
  17473. height: math.unit(6, "feet"),
  17474. weight: math.unit(150, "lb"),
  17475. name: "Back",
  17476. image: {
  17477. source: "./media/characters/pandora/back.svg",
  17478. extra: 2720 / 2556,
  17479. bottom: 0.01
  17480. }
  17481. },
  17482. beans: {
  17483. height: math.unit(6 / 8, "feet"),
  17484. name: "Beans",
  17485. image: {
  17486. source: "./media/characters/pandora/beans.svg"
  17487. }
  17488. },
  17489. collar: {
  17490. height: math.unit(0.31, "feet"),
  17491. name: "Collar",
  17492. image: {
  17493. source: "./media/characters/pandora/collar.svg"
  17494. }
  17495. },
  17496. skirt: {
  17497. height: math.unit(6, "feet"),
  17498. weight: math.unit(150, "lb"),
  17499. name: "Skirt",
  17500. image: {
  17501. source: "./media/characters/pandora/skirt.svg",
  17502. extra: 1622 / 1525,
  17503. bottom: 0.015
  17504. }
  17505. },
  17506. hoodie: {
  17507. height: math.unit(6, "feet"),
  17508. weight: math.unit(150, "lb"),
  17509. name: "Hoodie",
  17510. image: {
  17511. source: "./media/characters/pandora/hoodie.svg",
  17512. extra: 1622 / 1525,
  17513. bottom: 0.015
  17514. }
  17515. },
  17516. casual: {
  17517. height: math.unit(6, "feet"),
  17518. weight: math.unit(150, "lb"),
  17519. name: "Casual",
  17520. image: {
  17521. source: "./media/characters/pandora/casual.svg",
  17522. extra: 1622 / 1525,
  17523. bottom: 0.015
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(6, "feet")
  17531. },
  17532. {
  17533. name: "Big Steppy",
  17534. height: math.unit(1, "km"),
  17535. default: true
  17536. },
  17537. {
  17538. name: "Galactic Steppy",
  17539. height: math.unit(2, "gigameters")
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17545. {
  17546. side: {
  17547. height: math.unit(10, "feet"),
  17548. weight: math.unit(800, "kg"),
  17549. name: "Side",
  17550. image: {
  17551. source: "./media/characters/venio-darcony/side.svg",
  17552. extra: 1373 / 1003,
  17553. bottom: 0.037
  17554. }
  17555. },
  17556. front: {
  17557. height: math.unit(19, "feet"),
  17558. weight: math.unit(800, "kg"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/venio-darcony/front.svg"
  17562. }
  17563. },
  17564. back: {
  17565. height: math.unit(19, "feet"),
  17566. weight: math.unit(800, "kg"),
  17567. name: "Back",
  17568. image: {
  17569. source: "./media/characters/venio-darcony/back.svg"
  17570. }
  17571. },
  17572. sideNsfw: {
  17573. height: math.unit(10, "feet"),
  17574. weight: math.unit(800, "kg"),
  17575. name: "Side (NSFW)",
  17576. image: {
  17577. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17578. extra: 1373 / 1003,
  17579. bottom: 0.037
  17580. }
  17581. },
  17582. frontNsfw: {
  17583. height: math.unit(19, "feet"),
  17584. weight: math.unit(800, "kg"),
  17585. name: "Front (NSFW)",
  17586. image: {
  17587. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17588. }
  17589. },
  17590. backNsfw: {
  17591. height: math.unit(19, "feet"),
  17592. weight: math.unit(800, "kg"),
  17593. name: "Back (NSFW)",
  17594. image: {
  17595. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17596. }
  17597. },
  17598. sideArmored: {
  17599. height: math.unit(10, "feet"),
  17600. weight: math.unit(800, "kg"),
  17601. name: "Side (Armored)",
  17602. image: {
  17603. source: "./media/characters/venio-darcony/side-armored.svg",
  17604. extra: 1373 / 1003,
  17605. bottom: 0.037
  17606. }
  17607. },
  17608. frontArmored: {
  17609. height: math.unit(19, "feet"),
  17610. weight: math.unit(900, "kg"),
  17611. name: "Front (Armored)",
  17612. image: {
  17613. source: "./media/characters/venio-darcony/front-armored.svg"
  17614. }
  17615. },
  17616. backArmored: {
  17617. height: math.unit(19, "feet"),
  17618. weight: math.unit(900, "kg"),
  17619. name: "Back (Armored)",
  17620. image: {
  17621. source: "./media/characters/venio-darcony/back-armored.svg"
  17622. }
  17623. },
  17624. sword: {
  17625. height: math.unit(10, "feet"),
  17626. weight: math.unit(50, "lb"),
  17627. name: "Sword",
  17628. image: {
  17629. source: "./media/characters/venio-darcony/sword.svg"
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Normal",
  17636. height: math.unit(10, "feet")
  17637. },
  17638. {
  17639. name: "Macro",
  17640. height: math.unit(130, "feet"),
  17641. default: true
  17642. },
  17643. {
  17644. name: "Macro+",
  17645. height: math.unit(240, "feet")
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(6, "feet"),
  17654. weight: math.unit(150, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/veski/front.svg",
  17658. extra: 1299 / 1225,
  17659. bottom: 0.04
  17660. }
  17661. },
  17662. back: {
  17663. height: math.unit(6, "feet"),
  17664. weight: math.unit(150, "lb"),
  17665. name: "Back",
  17666. image: {
  17667. source: "./media/characters/veski/back.svg",
  17668. extra: 1299 / 1225,
  17669. bottom: 0.008
  17670. }
  17671. },
  17672. maw: {
  17673. height: math.unit(1.5 * 1.21, "feet"),
  17674. name: "Maw",
  17675. image: {
  17676. source: "./media/characters/veski/maw.svg"
  17677. }
  17678. },
  17679. },
  17680. [
  17681. {
  17682. name: "Macro",
  17683. height: math.unit(2, "km"),
  17684. default: true
  17685. },
  17686. ]
  17687. ))
  17688. characterMakers.push(() => makeCharacter(
  17689. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17690. {
  17691. front: {
  17692. height: math.unit(5 + 7 / 12, "feet"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/isabelle/front.svg",
  17696. extra: 2130 / 1976,
  17697. bottom: 0.05
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Supermicro",
  17704. height: math.unit(10, "micrometers")
  17705. },
  17706. {
  17707. name: "Micro",
  17708. height: math.unit(1, "inch")
  17709. },
  17710. {
  17711. name: "Tiny",
  17712. height: math.unit(5, "inches")
  17713. },
  17714. {
  17715. name: "Standard",
  17716. height: math.unit(5 + 7 / 12, "inches")
  17717. },
  17718. {
  17719. name: "Macro",
  17720. height: math.unit(80, "meters"),
  17721. default: true
  17722. },
  17723. {
  17724. name: "Megamacro",
  17725. height: math.unit(250, "meters")
  17726. },
  17727. {
  17728. name: "Gigamacro",
  17729. height: math.unit(5, "km")
  17730. },
  17731. {
  17732. name: "Cosmic",
  17733. height: math.unit(2.5e6, "miles")
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(6, "feet"),
  17742. weight: math.unit(150, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/hanzo/front.svg",
  17746. extra: 374 / 344,
  17747. bottom: 0.02
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(8, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(7, "feet"),
  17764. weight: math.unit(130, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/anna/front.svg",
  17768. extra: 169 / 145,
  17769. bottom: 0.06
  17770. }
  17771. },
  17772. full: {
  17773. height: math.unit(4.96, "feet"),
  17774. weight: math.unit(220, "lb"),
  17775. name: "Full",
  17776. image: {
  17777. source: "./media/characters/anna/full.svg",
  17778. extra: 138 / 114,
  17779. bottom: 0.15
  17780. }
  17781. },
  17782. tongue: {
  17783. height: math.unit(2.53, "feet"),
  17784. name: "Tongue",
  17785. image: {
  17786. source: "./media/characters/anna/tongue.svg"
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(7, "feet"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(7, "feet"),
  17803. weight: math.unit(150, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/ian-corvid/front.svg",
  17807. extra: 150 / 142,
  17808. bottom: 0.02
  17809. }
  17810. },
  17811. back: {
  17812. height: math.unit(7, "feet"),
  17813. weight: math.unit(150, "lb"),
  17814. name: "Back",
  17815. image: {
  17816. source: "./media/characters/ian-corvid/back.svg",
  17817. extra: 150 / 143,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. stomping: {
  17822. height: math.unit(7, "feet"),
  17823. weight: math.unit(150, "lb"),
  17824. name: "Stomping",
  17825. image: {
  17826. source: "./media/characters/ian-corvid/stomping.svg",
  17827. extra: 76 / 72
  17828. }
  17829. },
  17830. sitting: {
  17831. height: math.unit(7 / 1.8, "feet"),
  17832. weight: math.unit(150, "lb"),
  17833. name: "Sitting",
  17834. image: {
  17835. source: "./media/characters/ian-corvid/sitting.svg",
  17836. extra: 1400 / 1269,
  17837. bottom: 0.15
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Tiny Microw",
  17844. height: math.unit(1, "inch")
  17845. },
  17846. {
  17847. name: "Microw",
  17848. height: math.unit(6, "inches")
  17849. },
  17850. {
  17851. name: "Crow",
  17852. height: math.unit(7 + 1 / 12, "feet"),
  17853. default: true
  17854. },
  17855. {
  17856. name: "Macrow",
  17857. height: math.unit(176, "feet")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(5 + 7 / 12, "feet"),
  17866. weight: math.unit(147, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/natalie-kellon/front.svg",
  17870. extra: 1214 / 1141,
  17871. bottom: 0.02
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Micro",
  17878. height: math.unit(1 / 16, "inch")
  17879. },
  17880. {
  17881. name: "Tiny",
  17882. height: math.unit(4, "inches")
  17883. },
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(5 + 7 / 12, "feet"),
  17887. default: true
  17888. },
  17889. {
  17890. name: "Amazon",
  17891. height: math.unit(12, "feet")
  17892. },
  17893. {
  17894. name: "Giantess",
  17895. height: math.unit(160, "meters")
  17896. },
  17897. {
  17898. name: "Titaness",
  17899. height: math.unit(800, "meters")
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(6, "feet"),
  17908. weight: math.unit(150, "lb"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/alluria/front.svg",
  17912. extra: 806 / 738,
  17913. bottom: 0.01
  17914. }
  17915. },
  17916. side: {
  17917. height: math.unit(6, "feet"),
  17918. weight: math.unit(150, "lb"),
  17919. name: "Side",
  17920. image: {
  17921. source: "./media/characters/alluria/side.svg",
  17922. extra: 800 / 750,
  17923. }
  17924. },
  17925. back: {
  17926. height: math.unit(6, "feet"),
  17927. weight: math.unit(150, "lb"),
  17928. name: "Back",
  17929. image: {
  17930. source: "./media/characters/alluria/back.svg",
  17931. extra: 806 / 738,
  17932. }
  17933. },
  17934. frontMaid: {
  17935. height: math.unit(6, "feet"),
  17936. weight: math.unit(150, "lb"),
  17937. name: "Front (Maid)",
  17938. image: {
  17939. source: "./media/characters/alluria/front-maid.svg",
  17940. extra: 806 / 738,
  17941. bottom: 0.01
  17942. }
  17943. },
  17944. sideMaid: {
  17945. height: math.unit(6, "feet"),
  17946. weight: math.unit(150, "lb"),
  17947. name: "Side (Maid)",
  17948. image: {
  17949. source: "./media/characters/alluria/side-maid.svg",
  17950. extra: 800 / 750,
  17951. bottom: 0.005
  17952. }
  17953. },
  17954. backMaid: {
  17955. height: math.unit(6, "feet"),
  17956. weight: math.unit(150, "lb"),
  17957. name: "Back (Maid)",
  17958. image: {
  17959. source: "./media/characters/alluria/back-maid.svg",
  17960. extra: 806 / 738,
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Micro",
  17967. height: math.unit(6, "inches"),
  17968. default: true
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(6, "feet"),
  17977. weight: math.unit(150, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/kyle/front.svg",
  17981. extra: 1069 / 962,
  17982. bottom: 77.228 / 1727.45
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Macro",
  17989. height: math.unit(150, "feet"),
  17990. default: true
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(6, "feet"),
  17999. weight: math.unit(300, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/duncan/front.svg",
  18003. extra: 1650 / 1482,
  18004. bottom: 0.05
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Macro",
  18011. height: math.unit(100, "feet"),
  18012. default: true
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(5 + 4 / 12, "feet"),
  18021. weight: math.unit(220, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/memory/front.svg",
  18025. extra: 3641 / 3545,
  18026. bottom: 0.03
  18027. }
  18028. },
  18029. back: {
  18030. height: math.unit(5 + 4 / 12, "feet"),
  18031. weight: math.unit(220, "lb"),
  18032. name: "Back",
  18033. image: {
  18034. source: "./media/characters/memory/back.svg",
  18035. extra: 3641 / 3545,
  18036. bottom: 0.025
  18037. }
  18038. },
  18039. frontSkirt: {
  18040. height: math.unit(5 + 4 / 12, "feet"),
  18041. weight: math.unit(220, "lb"),
  18042. name: "Front (Skirt)",
  18043. image: {
  18044. source: "./media/characters/memory/front-skirt.svg",
  18045. extra: 3641 / 3545,
  18046. bottom: 0.03
  18047. }
  18048. },
  18049. frontDress: {
  18050. height: math.unit(5 + 4 / 12, "feet"),
  18051. weight: math.unit(220, "lb"),
  18052. name: "Front (Dress)",
  18053. image: {
  18054. source: "./media/characters/memory/front-dress.svg",
  18055. extra: 3641 / 3545,
  18056. bottom: 0.03
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Micro",
  18063. height: math.unit(6, "inches"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Normal",
  18068. height: math.unit(5 + 4 / 12, "feet")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(4 + 11 / 12, "feet"),
  18077. weight: math.unit(100, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/luno/front.svg",
  18081. extra: 1535 / 1487,
  18082. bottom: 0.03
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Micro",
  18089. height: math.unit(3, "inches")
  18090. },
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(4 + 11 / 12, "feet"),
  18094. default: true
  18095. },
  18096. {
  18097. name: "Macro",
  18098. height: math.unit(300, "feet")
  18099. },
  18100. {
  18101. name: "Megamacro",
  18102. height: math.unit(700, "miles")
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6 + 2 / 12, "feet"),
  18111. weight: math.unit(170, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/jamesy/front.svg",
  18115. extra: 440 / 382,
  18116. bottom: 0.005
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Micro",
  18123. height: math.unit(3, "inches")
  18124. },
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(6 + 2 / 12, "feet"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Macro",
  18132. height: math.unit(300, "feet")
  18133. },
  18134. {
  18135. name: "Megamacro",
  18136. height: math.unit(700, "miles")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(6, "feet"),
  18145. weight: math.unit(160, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/mark/front.svg",
  18149. extra: 3300 / 3100,
  18150. bottom: 136.42 / 3440.47
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Macro",
  18157. height: math.unit(120, "meters")
  18158. },
  18159. {
  18160. name: "Bigger Macro",
  18161. height: math.unit(350, "meters")
  18162. },
  18163. {
  18164. name: "Megamacro",
  18165. height: math.unit(8, "km"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Continental",
  18170. height: math.unit(4550, "km")
  18171. },
  18172. {
  18173. name: "Planetary",
  18174. height: math.unit(65000, "km")
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(6, "feet"),
  18183. weight: math.unit(400, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/mac/front.svg",
  18187. extra: 1048 / 987.7,
  18188. bottom: 60 / 1107.6,
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(500, "feet"),
  18196. default: true
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(5 + 2 / 12, "feet"),
  18205. weight: math.unit(190, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/bari/front.svg",
  18209. extra: 3156 / 2880,
  18210. bottom: 0.03
  18211. }
  18212. },
  18213. back: {
  18214. height: math.unit(5 + 2 / 12, "feet"),
  18215. weight: math.unit(190, "lb"),
  18216. name: "Back",
  18217. image: {
  18218. source: "./media/characters/bari/back.svg",
  18219. extra: 3260 / 2834,
  18220. bottom: 0.025
  18221. }
  18222. },
  18223. frontPlush: {
  18224. height: math.unit(5 + 2 / 12, "feet"),
  18225. weight: math.unit(190, "lb"),
  18226. name: "Front (Plush)",
  18227. image: {
  18228. source: "./media/characters/bari/front-plush.svg",
  18229. extra: 1112 / 1061,
  18230. bottom: 0.002
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Micro",
  18237. height: math.unit(3, "inches")
  18238. },
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(5 + 2 / 12, "feet"),
  18242. default: true
  18243. },
  18244. {
  18245. name: "Macro",
  18246. height: math.unit(20, "feet")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(6 + 1 / 12, "feet"),
  18255. weight: math.unit(275, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/hunter-misha-raven/front.svg"
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Mortal",
  18265. height: math.unit(6 + 1 / 12, "feet")
  18266. },
  18267. {
  18268. name: "Divine",
  18269. height: math.unit(1.12134e34, "parsecs"),
  18270. default: true
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(6 + 3 / 12, "feet"),
  18279. weight: math.unit(220, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/max-calore/front.svg",
  18283. extra: 1700 / 1648,
  18284. bottom: 0.01
  18285. }
  18286. },
  18287. back: {
  18288. height: math.unit(6 + 3 / 12, "feet"),
  18289. weight: math.unit(220, "lb"),
  18290. name: "Back",
  18291. image: {
  18292. source: "./media/characters/max-calore/back.svg",
  18293. extra: 1700 / 1648,
  18294. bottom: 0.01
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Normal",
  18301. height: math.unit(6 + 3 / 12, "feet"),
  18302. default: true
  18303. },
  18304. ]
  18305. ))
  18306. characterMakers.push(() => makeCharacter(
  18307. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18308. {
  18309. side: {
  18310. height: math.unit(2 + 8 / 12, "feet"),
  18311. weight: math.unit(99, "lb"),
  18312. name: "Side",
  18313. image: {
  18314. source: "./media/characters/aspen/side.svg",
  18315. extra: 152 / 138,
  18316. bottom: 0.032
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(2 + 8 / 12, "feet"),
  18324. default: true
  18325. },
  18326. ]
  18327. ))
  18328. characterMakers.push(() => makeCharacter(
  18329. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18330. {
  18331. side: {
  18332. height: math.unit(3 + 2 / 12, "feet"),
  18333. weight: math.unit(224, "lb"),
  18334. name: "Side",
  18335. image: {
  18336. source: "./media/characters/sheila-feral-wolf/side.svg",
  18337. extra: 179 / 166,
  18338. bottom: 0.03
  18339. }
  18340. },
  18341. },
  18342. [
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(3 + 2 / 12, "feet"),
  18346. default: true
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18352. {
  18353. side: {
  18354. height: math.unit(1 + 9 / 12, "feet"),
  18355. weight: math.unit(38, "lb"),
  18356. name: "Side",
  18357. image: {
  18358. source: "./media/characters/michelle/side.svg",
  18359. extra: 147 / 136.7,
  18360. bottom: 0.03
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(1 + 9 / 12, "feet"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(1.54, "feet"),
  18377. weight: math.unit(50, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/nino/front.svg"
  18381. }
  18382. },
  18383. },
  18384. [
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(1.54, "feet"),
  18388. default: true
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18394. {
  18395. front: {
  18396. height: math.unit(1.49, "feet"),
  18397. weight: math.unit(45, "lb"),
  18398. name: "Front",
  18399. image: {
  18400. source: "./media/characters/viola/front.svg"
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(1.49, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(6 + 5 / 12, "feet"),
  18417. weight: math.unit(580, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/atlas/front.svg",
  18421. extra: 298.5 / 290,
  18422. bottom: 0.015
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(6 + 5 / 12, "feet"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18436. {
  18437. side: {
  18438. height: math.unit(15.6, "inches"),
  18439. weight: math.unit(10, "lb"),
  18440. name: "Side",
  18441. image: {
  18442. source: "./media/characters/davy/side.svg",
  18443. extra: 200 / 170,
  18444. bottom: 0.01
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(15.6, "inches"),
  18452. default: true
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18458. {
  18459. side: {
  18460. height: math.unit(4 + 8 / 12, "feet"),
  18461. weight: math.unit(166, "lb"),
  18462. name: "Side",
  18463. image: {
  18464. source: "./media/characters/fiona/side.svg",
  18465. extra: 232 / 220,
  18466. bottom: 0.03
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(4 + 8 / 12, "feet"),
  18474. default: true
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18480. {
  18481. front: {
  18482. height: math.unit(26, "inches"),
  18483. weight: math.unit(35, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/lyla/front.svg",
  18487. bottom: 0.1
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Normal",
  18494. height: math.unit(3, "feet"),
  18495. default: true
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18501. {
  18502. side: {
  18503. height: math.unit(1.8, "feet"),
  18504. weight: math.unit(44, "lb"),
  18505. name: "Side",
  18506. image: {
  18507. source: "./media/characters/perseus/side.svg",
  18508. bottom: 0.21
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(1.8, "feet"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18522. {
  18523. side: {
  18524. height: math.unit(4 + 2 / 12, "feet"),
  18525. weight: math.unit(20, "lb"),
  18526. name: "Side",
  18527. image: {
  18528. source: "./media/characters/remus/side.svg"
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(4 + 2 / 12, "feet"),
  18536. default: true
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18542. {
  18543. front: {
  18544. height: math.unit(4 + 11 / 12, "feet"),
  18545. weight: math.unit(114, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/raf/front.svg",
  18549. extra: 1504/1339,
  18550. bottom: 26/1530
  18551. }
  18552. },
  18553. side: {
  18554. height: math.unit(4 + 11 / 12, "feet"),
  18555. weight: math.unit(114, "lb"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/raf/side.svg",
  18559. extra: 1466/1316,
  18560. bottom: 29/1495
  18561. }
  18562. },
  18563. paw: {
  18564. height: math.unit(1.45, "feet"),
  18565. name: "Paw",
  18566. image: {
  18567. source: "./media/characters/raf/paw.svg"
  18568. },
  18569. extraAttributes: {
  18570. "toeSize": {
  18571. name: "Toe Size",
  18572. power: 2,
  18573. type: "area",
  18574. base: math.unit(0.004, "m^2")
  18575. },
  18576. "padSize": {
  18577. name: "Pad Size",
  18578. power: 2,
  18579. type: "area",
  18580. base: math.unit(0.04, "m^2")
  18581. },
  18582. "footSize": {
  18583. name: "Foot Size",
  18584. power: 2,
  18585. type: "area",
  18586. base: math.unit(0.08, "m^2")
  18587. },
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Micro",
  18594. height: math.unit(2, "inches")
  18595. },
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(4 + 11 / 12, "feet"),
  18599. default: true
  18600. },
  18601. {
  18602. name: "Macro",
  18603. height: math.unit(70, "feet")
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(1.5, "meters"),
  18612. weight: math.unit(68, "kg"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/liam-einarr/front.svg",
  18616. extra: 2822 / 2666
  18617. }
  18618. },
  18619. back: {
  18620. height: math.unit(1.5, "meters"),
  18621. weight: math.unit(68, "kg"),
  18622. name: "Back",
  18623. image: {
  18624. source: "./media/characters/liam-einarr/back.svg",
  18625. extra: 2822 / 2666,
  18626. bottom: 0.015
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(1.5, "meters"),
  18634. default: true
  18635. },
  18636. {
  18637. name: "Macro",
  18638. height: math.unit(150, "meters")
  18639. },
  18640. {
  18641. name: "Megamacro",
  18642. height: math.unit(35, "km")
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18648. {
  18649. front: {
  18650. height: math.unit(6, "feet"),
  18651. weight: math.unit(75, "kg"),
  18652. name: "Front",
  18653. image: {
  18654. source: "./media/characters/linda/front.svg",
  18655. extra: 930 / 874,
  18656. bottom: 0.004
  18657. }
  18658. },
  18659. },
  18660. [
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(6, "feet"),
  18664. default: true
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18670. {
  18671. front: {
  18672. height: math.unit(6 + 8 / 12, "feet"),
  18673. weight: math.unit(220, "lb"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/caylex/front.svg",
  18677. extra: 821 / 772,
  18678. bottom: 0.07
  18679. }
  18680. },
  18681. back: {
  18682. height: math.unit(6 + 8 / 12, "feet"),
  18683. weight: math.unit(220, "lb"),
  18684. name: "Back",
  18685. image: {
  18686. source: "./media/characters/caylex/back.svg",
  18687. extra: 821 / 772,
  18688. bottom: 0.022
  18689. }
  18690. },
  18691. hand: {
  18692. height: math.unit(1.25, "feet"),
  18693. name: "Hand",
  18694. image: {
  18695. source: "./media/characters/caylex/hand.svg"
  18696. }
  18697. },
  18698. foot: {
  18699. height: math.unit(1.6, "feet"),
  18700. name: "Foot",
  18701. image: {
  18702. source: "./media/characters/caylex/foot.svg"
  18703. }
  18704. },
  18705. armored: {
  18706. height: math.unit(6 + 8 / 12, "feet"),
  18707. weight: math.unit(250, "lb"),
  18708. name: "Armored",
  18709. image: {
  18710. source: "./media/characters/caylex/armored.svg",
  18711. extra: 1420 / 1310,
  18712. bottom: 0.045
  18713. }
  18714. },
  18715. },
  18716. [
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(6 + 8 / 12, "feet"),
  18720. default: true
  18721. },
  18722. {
  18723. name: "Normal+",
  18724. height: math.unit(12, "feet")
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18730. {
  18731. front: {
  18732. height: math.unit(7 + 6 / 12, "feet"),
  18733. weight: math.unit(288, "lb"),
  18734. name: "Front",
  18735. image: {
  18736. source: "./media/characters/alana/front.svg",
  18737. extra: 679 / 653,
  18738. bottom: 22.5 / 701
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(7 + 6 / 12, "feet")
  18746. },
  18747. {
  18748. name: "Large",
  18749. height: math.unit(50, "feet")
  18750. },
  18751. {
  18752. name: "Macro",
  18753. height: math.unit(100, "feet"),
  18754. default: true
  18755. },
  18756. {
  18757. name: "Macro+",
  18758. height: math.unit(200, "feet")
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(6 + 1 / 12, "feet"),
  18767. weight: math.unit(210, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/hasani/front.svg",
  18771. extra: 244 / 232,
  18772. bottom: 0.01
  18773. }
  18774. },
  18775. back: {
  18776. height: math.unit(6 + 1 / 12, "feet"),
  18777. weight: math.unit(210, "lb"),
  18778. name: "Back",
  18779. image: {
  18780. source: "./media/characters/hasani/back.svg",
  18781. extra: 244 / 232,
  18782. bottom: 0.01
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(6 + 1 / 12, "feet")
  18790. },
  18791. {
  18792. name: "Macro",
  18793. height: math.unit(175, "feet"),
  18794. default: true
  18795. },
  18796. ]
  18797. ))
  18798. characterMakers.push(() => makeCharacter(
  18799. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18800. {
  18801. front: {
  18802. height: math.unit(1.82, "meters"),
  18803. weight: math.unit(140, "lb"),
  18804. name: "Front",
  18805. image: {
  18806. source: "./media/characters/nita/front.svg",
  18807. extra: 2473 / 2363,
  18808. bottom: 0.01
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(1.82, "m")
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(300, "m")
  18820. },
  18821. {
  18822. name: "Mistake Canon",
  18823. height: math.unit(0.5, "miles"),
  18824. default: true
  18825. },
  18826. {
  18827. name: "Big Mistake",
  18828. height: math.unit(13, "miles")
  18829. },
  18830. {
  18831. name: "Playing God",
  18832. height: math.unit(2450, "miles")
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(4, "feet"),
  18841. weight: math.unit(120, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/shiriko/front.svg",
  18845. extra: 970/934,
  18846. bottom: 5/975
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(4, "feet"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(6, "feet"),
  18863. name: "front",
  18864. image: {
  18865. source: "./media/characters/deja/front.svg",
  18866. extra: 926 / 840,
  18867. bottom: 0.07
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Planck Length",
  18874. height: math.unit(1.6e-35, "meters")
  18875. },
  18876. {
  18877. name: "Normal",
  18878. height: math.unit(30.48, "meters"),
  18879. default: true
  18880. },
  18881. {
  18882. name: "Universal",
  18883. height: math.unit(8.8e26, "meters")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18889. {
  18890. side: {
  18891. height: math.unit(8, "feet"),
  18892. weight: math.unit(6300, "lb"),
  18893. name: "Side",
  18894. image: {
  18895. source: "./media/characters/anima/side.svg",
  18896. bottom: 0.035
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Normal",
  18903. height: math.unit(8, "feet"),
  18904. default: true
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(8, "feet"),
  18913. weight: math.unit(350, "lb"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/bianca/front.svg",
  18917. extra: 234 / 225,
  18918. bottom: 0.03
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(8, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(11 + 5/12, "feet"),
  18935. weight: math.unit(1200, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/adinia/front.svg",
  18939. extra: 1767/1641,
  18940. bottom: 44/1811
  18941. },
  18942. extraAttributes: {
  18943. "energyIntake": {
  18944. name: "Energy Intake",
  18945. power: 3,
  18946. type: "energy",
  18947. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18948. },
  18949. }
  18950. },
  18951. back: {
  18952. height: math.unit(11 + 5/12, "feet"),
  18953. weight: math.unit(1200, "lb"),
  18954. name: "Back",
  18955. image: {
  18956. source: "./media/characters/adinia/back.svg",
  18957. extra: 1834/1684,
  18958. bottom: 14/1848
  18959. },
  18960. extraAttributes: {
  18961. "energyIntake": {
  18962. name: "Energy Intake",
  18963. power: 3,
  18964. type: "energy",
  18965. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18966. },
  18967. }
  18968. },
  18969. maw: {
  18970. height: math.unit(3.79, "feet"),
  18971. name: "Maw",
  18972. image: {
  18973. source: "./media/characters/adinia/maw.svg"
  18974. }
  18975. },
  18976. rump: {
  18977. height: math.unit(4.6, "feet"),
  18978. name: "Rump",
  18979. image: {
  18980. source: "./media/characters/adinia/rump.svg"
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(11 + 5 / 12, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(3, "meters"),
  18997. weight: math.unit(200, "kg"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/lykasa/front.svg",
  19001. extra: 1076 / 976,
  19002. bottom: 0.06
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(3, "meters")
  19010. },
  19011. {
  19012. name: "Kaiju",
  19013. height: math.unit(120, "meters"),
  19014. default: true
  19015. },
  19016. {
  19017. name: "Mega Kaiju",
  19018. height: math.unit(240, "km")
  19019. },
  19020. {
  19021. name: "Giga Kaiju",
  19022. height: math.unit(400, "megameters")
  19023. },
  19024. {
  19025. name: "Tera Kaiju",
  19026. height: math.unit(800, "gigameters")
  19027. },
  19028. {
  19029. name: "Kaiju Dragon Goddess",
  19030. height: math.unit(26, "zettaparsecs")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19036. {
  19037. side: {
  19038. height: math.unit(283 / 124 * 6, "feet"),
  19039. weight: math.unit(35000, "lb"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/malfaren/side.svg",
  19043. extra: 1310/529,
  19044. bottom: 24/1334
  19045. }
  19046. },
  19047. front: {
  19048. height: math.unit(22.36, "feet"),
  19049. weight: math.unit(35000, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/malfaren/front.svg",
  19053. extra: 1237/1115,
  19054. bottom: 32/1269
  19055. }
  19056. },
  19057. maw: {
  19058. height: math.unit(6.9, "feet"),
  19059. name: "Maw",
  19060. image: {
  19061. source: "./media/characters/malfaren/maw.svg"
  19062. }
  19063. },
  19064. dick: {
  19065. height: math.unit(6.19, "feet"),
  19066. name: "Dick",
  19067. image: {
  19068. source: "./media/characters/malfaren/dick.svg"
  19069. }
  19070. },
  19071. eye: {
  19072. height: math.unit(0.69, "feet"),
  19073. name: "Eye",
  19074. image: {
  19075. source: "./media/characters/malfaren/eye.svg"
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Big",
  19082. height: math.unit(283 / 162 * 6, "feet"),
  19083. },
  19084. {
  19085. name: "Bigger",
  19086. height: math.unit(283 / 124 * 6, "feet")
  19087. },
  19088. {
  19089. name: "Massive",
  19090. height: math.unit(283 / 92 * 6, "feet"),
  19091. default: true
  19092. },
  19093. {
  19094. name: "👀💦",
  19095. height: math.unit(283 / 73 * 6, "feet"),
  19096. },
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19101. {
  19102. front: {
  19103. height: math.unit(1.7, "m"),
  19104. weight: math.unit(70, "kg"),
  19105. name: "Front",
  19106. image: {
  19107. source: "./media/characters/kernel/front.svg",
  19108. extra: 222 / 210,
  19109. bottom: 0.007
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Nano",
  19116. height: math.unit(17, "micrometers")
  19117. },
  19118. {
  19119. name: "Micro",
  19120. height: math.unit(1.7, "mm")
  19121. },
  19122. {
  19123. name: "Small",
  19124. height: math.unit(1.7, "cm")
  19125. },
  19126. {
  19127. name: "Normal",
  19128. height: math.unit(1.7, "m"),
  19129. default: true
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(1.75, "meters"),
  19138. weight: math.unit(65, "kg"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/jayne-folest/front.svg",
  19142. extra: 2115 / 2007,
  19143. bottom: 0.02
  19144. }
  19145. },
  19146. back: {
  19147. height: math.unit(1.75, "meters"),
  19148. weight: math.unit(65, "kg"),
  19149. name: "Back",
  19150. image: {
  19151. source: "./media/characters/jayne-folest/back.svg",
  19152. extra: 2115 / 2007,
  19153. bottom: 0.005
  19154. }
  19155. },
  19156. frontClothed: {
  19157. height: math.unit(1.75, "meters"),
  19158. weight: math.unit(65, "kg"),
  19159. name: "Front (Clothed)",
  19160. image: {
  19161. source: "./media/characters/jayne-folest/front-clothed.svg",
  19162. extra: 2115 / 2007,
  19163. bottom: 0.035
  19164. }
  19165. },
  19166. hand: {
  19167. height: math.unit(1 / 1.260, "feet"),
  19168. name: "Hand",
  19169. image: {
  19170. source: "./media/characters/jayne-folest/hand.svg"
  19171. }
  19172. },
  19173. foot: {
  19174. height: math.unit(1 / 0.918, "feet"),
  19175. name: "Foot",
  19176. image: {
  19177. source: "./media/characters/jayne-folest/foot.svg"
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Micro",
  19184. height: math.unit(4, "cm")
  19185. },
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(1.75, "meters")
  19189. },
  19190. {
  19191. name: "Macro",
  19192. height: math.unit(47.5, "meters"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(180, "cm"),
  19202. weight: math.unit(70, "kg"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/algier/front.svg",
  19206. extra: 596 / 572,
  19207. bottom: 0.04
  19208. }
  19209. },
  19210. back: {
  19211. height: math.unit(180, "cm"),
  19212. weight: math.unit(70, "kg"),
  19213. name: "Back",
  19214. image: {
  19215. source: "./media/characters/algier/back.svg",
  19216. extra: 596 / 572,
  19217. bottom: 0.025
  19218. }
  19219. },
  19220. frontdressed: {
  19221. height: math.unit(180, "cm"),
  19222. weight: math.unit(150, "kg"),
  19223. name: "Front-dressed",
  19224. image: {
  19225. source: "./media/characters/algier/front-dressed.svg",
  19226. extra: 596 / 572,
  19227. bottom: 0.038
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Micro",
  19234. height: math.unit(5, "cm")
  19235. },
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(180, "cm"),
  19239. default: true
  19240. },
  19241. {
  19242. name: "Macro",
  19243. height: math.unit(64, "m")
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19249. {
  19250. upright: {
  19251. height: math.unit(7, "feet"),
  19252. weight: math.unit(300, "lb"),
  19253. name: "Upright",
  19254. image: {
  19255. source: "./media/characters/pretzel/upright.svg",
  19256. extra: 534 / 522,
  19257. bottom: 0.065
  19258. }
  19259. },
  19260. sprawling: {
  19261. height: math.unit(3.75, "feet"),
  19262. weight: math.unit(300, "lb"),
  19263. name: "Sprawling",
  19264. image: {
  19265. source: "./media/characters/pretzel/sprawling.svg",
  19266. extra: 314 / 281,
  19267. bottom: 0.1
  19268. }
  19269. },
  19270. tongue: {
  19271. height: math.unit(2, "feet"),
  19272. name: "Tongue",
  19273. image: {
  19274. source: "./media/characters/pretzel/tongue.svg"
  19275. }
  19276. },
  19277. },
  19278. [
  19279. {
  19280. name: "Normal",
  19281. height: math.unit(7, "feet"),
  19282. default: true
  19283. },
  19284. {
  19285. name: "Oversized",
  19286. height: math.unit(15, "feet")
  19287. },
  19288. {
  19289. name: "Huge",
  19290. height: math.unit(30, "feet")
  19291. },
  19292. {
  19293. name: "Macro",
  19294. height: math.unit(250, "feet")
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19300. {
  19301. sideFront: {
  19302. height: math.unit(5 + 2 / 12, "feet"),
  19303. weight: math.unit(120, "lb"),
  19304. name: "Front Side",
  19305. image: {
  19306. source: "./media/characters/roxi/side-front.svg",
  19307. extra: 2924 / 2717,
  19308. bottom: 0.08
  19309. }
  19310. },
  19311. sideBack: {
  19312. height: math.unit(5 + 2 / 12, "feet"),
  19313. weight: math.unit(120, "lb"),
  19314. name: "Back Side",
  19315. image: {
  19316. source: "./media/characters/roxi/side-back.svg",
  19317. extra: 2904 / 2693,
  19318. bottom: 0.06
  19319. }
  19320. },
  19321. front: {
  19322. height: math.unit(5 + 2 / 12, "feet"),
  19323. weight: math.unit(120, "lb"),
  19324. name: "Front",
  19325. image: {
  19326. source: "./media/characters/roxi/front.svg",
  19327. extra: 2028 / 1907,
  19328. bottom: 0.01
  19329. }
  19330. },
  19331. frontAlt: {
  19332. height: math.unit(5 + 2 / 12, "feet"),
  19333. weight: math.unit(120, "lb"),
  19334. name: "Front (Alt)",
  19335. image: {
  19336. source: "./media/characters/roxi/front-alt.svg",
  19337. extra: 1828 / 1798,
  19338. bottom: 0.01
  19339. }
  19340. },
  19341. sitting: {
  19342. height: math.unit(2.8, "feet"),
  19343. weight: math.unit(120, "lb"),
  19344. name: "Sitting",
  19345. image: {
  19346. source: "./media/characters/roxi/sitting.svg",
  19347. extra: 2660 / 2462,
  19348. bottom: 0.1
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(5 + 2 / 12, "feet"),
  19356. default: true
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19362. {
  19363. side: {
  19364. height: math.unit(55, "feet"),
  19365. weight: math.unit(153, "tons"),
  19366. name: "Side",
  19367. image: {
  19368. source: "./media/characters/shadow/side.svg",
  19369. extra: 701 / 628,
  19370. bottom: 0.02
  19371. }
  19372. },
  19373. flying: {
  19374. height: math.unit(145, "feet"),
  19375. weight: math.unit(153, "tons"),
  19376. name: "Flying",
  19377. image: {
  19378. source: "./media/characters/shadow/flying.svg"
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(55, "feet"),
  19386. default: true
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19392. {
  19393. front: {
  19394. height: math.unit(6, "feet"),
  19395. weight: math.unit(200, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/marcie/front.svg",
  19399. extra: 960 / 876,
  19400. bottom: 58 / 1017.87
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Macro",
  19407. height: math.unit(1, "mile"),
  19408. default: true
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(7, "feet"),
  19417. weight: math.unit(200, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/kachina/front.svg",
  19421. extra: 1290.68 / 1119,
  19422. bottom: 36.5 / 1327.18
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Normal",
  19429. height: math.unit(7, "feet"),
  19430. default: true
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19436. {
  19437. looking: {
  19438. height: math.unit(2, "meters"),
  19439. weight: math.unit(300, "kg"),
  19440. name: "Looking",
  19441. image: {
  19442. source: "./media/characters/kash/looking.svg",
  19443. extra: 474 / 344,
  19444. bottom: 0.03
  19445. }
  19446. },
  19447. side: {
  19448. height: math.unit(2, "meters"),
  19449. weight: math.unit(300, "kg"),
  19450. name: "Side",
  19451. image: {
  19452. source: "./media/characters/kash/side.svg",
  19453. extra: 302 / 251,
  19454. bottom: 0.03
  19455. }
  19456. },
  19457. front: {
  19458. height: math.unit(2, "meters"),
  19459. weight: math.unit(300, "kg"),
  19460. name: "Front",
  19461. image: {
  19462. source: "./media/characters/kash/front.svg",
  19463. extra: 495 / 360,
  19464. bottom: 0.015
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(2, "meters"),
  19472. default: true
  19473. },
  19474. {
  19475. name: "Big",
  19476. height: math.unit(3, "meters")
  19477. },
  19478. {
  19479. name: "Large",
  19480. height: math.unit(5, "meters")
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19486. {
  19487. feeding: {
  19488. height: math.unit(6.7, "feet"),
  19489. weight: math.unit(350, "lb"),
  19490. name: "Feeding",
  19491. image: {
  19492. source: "./media/characters/lalim/feeding.svg",
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(6.7, "feet"),
  19500. default: true
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19506. {
  19507. front: {
  19508. height: math.unit(9.5, "feet"),
  19509. weight: math.unit(600, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/de'vout/front.svg",
  19513. extra: 1443 / 1328,
  19514. bottom: 0.025
  19515. }
  19516. },
  19517. back: {
  19518. height: math.unit(9.5, "feet"),
  19519. weight: math.unit(600, "lb"),
  19520. name: "Back",
  19521. image: {
  19522. source: "./media/characters/de'vout/back.svg",
  19523. extra: 1443 / 1328
  19524. }
  19525. },
  19526. frontDressed: {
  19527. height: math.unit(9.5, "feet"),
  19528. weight: math.unit(600, "lb"),
  19529. name: "Front (Dressed",
  19530. image: {
  19531. source: "./media/characters/de'vout/front-dressed.svg",
  19532. extra: 1443 / 1328,
  19533. bottom: 0.025
  19534. }
  19535. },
  19536. backDressed: {
  19537. height: math.unit(9.5, "feet"),
  19538. weight: math.unit(600, "lb"),
  19539. name: "Back (Dressed",
  19540. image: {
  19541. source: "./media/characters/de'vout/back-dressed.svg",
  19542. extra: 1443 / 1328
  19543. }
  19544. },
  19545. },
  19546. [
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(9.5, "feet"),
  19550. default: true
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19556. {
  19557. front: {
  19558. height: math.unit(8, "feet"),
  19559. weight: math.unit(225, "lb"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/talana/front.svg",
  19563. extra: 1410 / 1300,
  19564. bottom: 0.015
  19565. }
  19566. },
  19567. frontDressed: {
  19568. height: math.unit(8, "feet"),
  19569. weight: math.unit(225, "lb"),
  19570. name: "Front (Dressed",
  19571. image: {
  19572. source: "./media/characters/talana/front-dressed.svg",
  19573. extra: 1410 / 1300,
  19574. bottom: 0.015
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Normal",
  19581. height: math.unit(8, "feet"),
  19582. default: true
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19588. {
  19589. side: {
  19590. height: math.unit(7.2, "feet"),
  19591. weight: math.unit(150, "lb"),
  19592. name: "Side",
  19593. image: {
  19594. source: "./media/characters/xeauvok/side.svg",
  19595. extra: 1975 / 1523,
  19596. bottom: 0.07
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(7.2, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19610. {
  19611. side: {
  19612. height: math.unit(4, "meters"),
  19613. weight: math.unit(2200, "kg"),
  19614. name: "Side",
  19615. image: {
  19616. source: "./media/characters/zara/side.svg",
  19617. extra: 765/744,
  19618. bottom: 156/921
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(4, "meters"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19632. {
  19633. side: {
  19634. height: math.unit(6, "feet"),
  19635. weight: math.unit(150, "lb"),
  19636. name: "Side",
  19637. image: {
  19638. source: "./media/characters/richard-dragon/side.svg",
  19639. extra: 845 / 340,
  19640. bottom: 0.017
  19641. }
  19642. },
  19643. maw: {
  19644. height: math.unit(2.97, "feet"),
  19645. name: "Maw",
  19646. image: {
  19647. source: "./media/characters/richard-dragon/maw.svg"
  19648. }
  19649. },
  19650. },
  19651. [
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19656. {
  19657. front: {
  19658. height: math.unit(4, "feet"),
  19659. weight: math.unit(100, "lb"),
  19660. name: "Front",
  19661. image: {
  19662. source: "./media/characters/richard-smeargle/front.svg",
  19663. extra: 2952 / 2820,
  19664. bottom: 0.028
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(4, "feet"),
  19672. default: true
  19673. },
  19674. {
  19675. name: "Dynamax",
  19676. height: math.unit(20, "meters")
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19682. {
  19683. front: {
  19684. height: math.unit(6, "feet"),
  19685. weight: math.unit(110, "lb"),
  19686. name: "Front",
  19687. image: {
  19688. source: "./media/characters/klay/front.svg",
  19689. extra: 962 / 883,
  19690. bottom: 0.04
  19691. }
  19692. },
  19693. back: {
  19694. height: math.unit(6, "feet"),
  19695. weight: math.unit(110, "lb"),
  19696. name: "Back",
  19697. image: {
  19698. source: "./media/characters/klay/back.svg",
  19699. extra: 962 / 883
  19700. }
  19701. },
  19702. beans: {
  19703. height: math.unit(1.15, "feet"),
  19704. name: "Beans",
  19705. image: {
  19706. source: "./media/characters/klay/beans.svg"
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Micro",
  19713. height: math.unit(6, "inches")
  19714. },
  19715. {
  19716. name: "Mini",
  19717. height: math.unit(3, "feet")
  19718. },
  19719. {
  19720. name: "Normal",
  19721. height: math.unit(6, "feet"),
  19722. default: true
  19723. },
  19724. {
  19725. name: "Big",
  19726. height: math.unit(25, "feet")
  19727. },
  19728. {
  19729. name: "Macro",
  19730. height: math.unit(100, "feet")
  19731. },
  19732. {
  19733. name: "Megamacro",
  19734. height: math.unit(400, "feet")
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19740. {
  19741. front: {
  19742. height: math.unit(6, "feet"),
  19743. weight: math.unit(160, "lb"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/marcus/front.svg",
  19747. extra: 734 / 676,
  19748. bottom: 0.03
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Little",
  19755. height: math.unit(6, "feet")
  19756. },
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(110, "feet"),
  19760. default: true
  19761. },
  19762. {
  19763. name: "Macro",
  19764. height: math.unit(250, "feet")
  19765. },
  19766. {
  19767. name: "Megamacro",
  19768. height: math.unit(1000, "feet")
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19774. {
  19775. front: {
  19776. height: math.unit(7, "feet"),
  19777. weight: math.unit(275, "lb"),
  19778. name: "Front",
  19779. image: {
  19780. source: "./media/characters/claude-delroute/front.svg",
  19781. extra: 902/827,
  19782. bottom: 26/928
  19783. }
  19784. },
  19785. side: {
  19786. height: math.unit(7, "feet"),
  19787. weight: math.unit(275, "lb"),
  19788. name: "Side",
  19789. image: {
  19790. source: "./media/characters/claude-delroute/side.svg",
  19791. extra: 908/853,
  19792. bottom: 16/924
  19793. }
  19794. },
  19795. back: {
  19796. height: math.unit(7, "feet"),
  19797. weight: math.unit(275, "lb"),
  19798. name: "Back",
  19799. image: {
  19800. source: "./media/characters/claude-delroute/back.svg",
  19801. extra: 911/829,
  19802. bottom: 18/929
  19803. }
  19804. },
  19805. maw: {
  19806. height: math.unit(0.6407, "meters"),
  19807. name: "Maw",
  19808. image: {
  19809. source: "./media/characters/claude-delroute/maw.svg"
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(7, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Lorge",
  19821. height: math.unit(20, "feet")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(8 + 4 / 12, "feet"),
  19830. weight: math.unit(600, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/dragonien/front.svg",
  19834. extra: 100 / 94,
  19835. bottom: 3.3 / 103.3445
  19836. }
  19837. },
  19838. back: {
  19839. height: math.unit(8 + 4 / 12, "feet"),
  19840. weight: math.unit(600, "lb"),
  19841. name: "Back",
  19842. image: {
  19843. source: "./media/characters/dragonien/back.svg",
  19844. extra: 776 / 746,
  19845. bottom: 6.4 / 782.0616
  19846. }
  19847. },
  19848. foot: {
  19849. height: math.unit(1.54, "feet"),
  19850. name: "Foot",
  19851. image: {
  19852. source: "./media/characters/dragonien/foot.svg",
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(8 + 4 / 12, "feet"),
  19860. default: true
  19861. },
  19862. {
  19863. name: "Macro",
  19864. height: math.unit(200, "feet")
  19865. },
  19866. {
  19867. name: "Megamacro",
  19868. height: math.unit(1, "mile")
  19869. },
  19870. {
  19871. name: "Gigamacro",
  19872. height: math.unit(1000, "miles")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(5 + 2 / 12, "feet"),
  19881. weight: math.unit(110, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/desta/front.svg",
  19885. extra: 767 / 726,
  19886. bottom: 11.7 / 779
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(5 + 2 / 12, "feet"),
  19891. weight: math.unit(110, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/desta/back.svg",
  19895. extra: 777 / 728,
  19896. bottom: 6 / 784
  19897. }
  19898. },
  19899. frontAlt: {
  19900. height: math.unit(5 + 2 / 12, "feet"),
  19901. weight: math.unit(110, "lb"),
  19902. name: "Front",
  19903. image: {
  19904. source: "./media/characters/desta/front-alt.svg",
  19905. extra: 1482 / 1417
  19906. }
  19907. },
  19908. side: {
  19909. height: math.unit(5 + 2 / 12, "feet"),
  19910. weight: math.unit(110, "lb"),
  19911. name: "Side",
  19912. image: {
  19913. source: "./media/characters/desta/side.svg",
  19914. extra: 2579 / 2491,
  19915. bottom: 0.053
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Micro",
  19922. height: math.unit(6, "inches")
  19923. },
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(5 + 2 / 12, "feet"),
  19927. default: true
  19928. },
  19929. {
  19930. name: "Macro",
  19931. height: math.unit(62, "feet")
  19932. },
  19933. {
  19934. name: "Megamacro",
  19935. height: math.unit(1800, "feet")
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(10, "feet"),
  19944. weight: math.unit(700, "lb"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/storm-alystar/front.svg",
  19948. extra: 2112 / 1898,
  19949. bottom: 0.034
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Micro",
  19956. height: math.unit(3.5, "inches")
  19957. },
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(10, "feet"),
  19961. default: true
  19962. },
  19963. {
  19964. name: "Macro",
  19965. height: math.unit(400, "feet")
  19966. },
  19967. {
  19968. name: "Deific",
  19969. height: math.unit(60, "miles")
  19970. },
  19971. ]
  19972. ))
  19973. characterMakers.push(() => makeCharacter(
  19974. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19975. {
  19976. front: {
  19977. height: math.unit(2.35, "meters"),
  19978. weight: math.unit(119, "kg"),
  19979. name: "Front",
  19980. image: {
  19981. source: "./media/characters/ilia/front.svg",
  19982. extra: 1285 / 1255,
  19983. bottom: 0.06
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(2.35, "meters")
  19991. },
  19992. {
  19993. name: "Macro",
  19994. height: math.unit(140, "meters"),
  19995. default: true
  19996. },
  19997. {
  19998. name: "Megamacro",
  19999. height: math.unit(100, "miles")
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(6 + 5 / 12, "feet"),
  20008. weight: math.unit(190, "lb"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/kingdead/front.svg",
  20012. extra: 1228 / 1177
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Micro",
  20019. height: math.unit(7, "inches")
  20020. },
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(6 + 5 / 12, "feet")
  20024. },
  20025. {
  20026. name: "Macro",
  20027. height: math.unit(150, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "Megamacro",
  20032. height: math.unit(200, "miles")
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(8, "feet"),
  20041. weight: math.unit(600, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/kyrehx/front.svg",
  20045. extra: 1195 / 1095,
  20046. bottom: 0.034
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Micro",
  20053. height: math.unit(2, "inches")
  20054. },
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(8, "feet"),
  20058. default: true
  20059. },
  20060. {
  20061. name: "Macro",
  20062. height: math.unit(255, "feet")
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20068. {
  20069. front: {
  20070. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20071. weight: math.unit(184, "lb"),
  20072. name: "Front",
  20073. image: {
  20074. source: "./media/characters/xang/front.svg",
  20075. extra: 845 / 755
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Macro",
  20087. height: math.unit(0.935 * 146, "feet")
  20088. },
  20089. {
  20090. name: "Megamacro",
  20091. height: math.unit(0.935 * 3, "miles")
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20097. {
  20098. frontDressed: {
  20099. height: math.unit(5 + 7 / 12, "feet"),
  20100. weight: math.unit(140, "lb"),
  20101. name: "Front (Dressed)",
  20102. image: {
  20103. source: "./media/characters/doc-weardno/front-dressed.svg",
  20104. extra: 263 / 234
  20105. }
  20106. },
  20107. backDressed: {
  20108. height: math.unit(5 + 7 / 12, "feet"),
  20109. weight: math.unit(140, "lb"),
  20110. name: "Back (Dressed)",
  20111. image: {
  20112. source: "./media/characters/doc-weardno/back-dressed.svg",
  20113. extra: 266 / 238
  20114. }
  20115. },
  20116. front: {
  20117. height: math.unit(5 + 7 / 12, "feet"),
  20118. weight: math.unit(140, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/doc-weardno/front.svg",
  20122. extra: 254 / 233
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Micro",
  20129. height: math.unit(3, "inches")
  20130. },
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(5 + 7 / 12, "feet"),
  20134. default: true
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(25, "feet")
  20139. },
  20140. {
  20141. name: "Megamacro",
  20142. height: math.unit(2, "miles")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(6 + 2 / 12, "feet"),
  20151. weight: math.unit(153, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/seth-whilst/front.svg",
  20155. bottom: 0.07
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Micro",
  20162. height: math.unit(5, "inches")
  20163. },
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(6 + 2 / 12, "feet"),
  20167. default: true
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(3, "inches"),
  20176. weight: math.unit(8, "grams"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/pocket-jabari/front.svg",
  20180. extra: 1024 / 974,
  20181. bottom: 0.039
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Minimicro",
  20188. height: math.unit(8, "mm")
  20189. },
  20190. {
  20191. name: "Micro",
  20192. height: math.unit(3, "inches"),
  20193. default: true
  20194. },
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(3, "feet")
  20198. },
  20199. ]
  20200. ))
  20201. characterMakers.push(() => makeCharacter(
  20202. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20203. {
  20204. frontDressed: {
  20205. height: math.unit(15, "feet"),
  20206. weight: math.unit(3280, "lb"),
  20207. name: "Front (Dressed)",
  20208. image: {
  20209. source: "./media/characters/sapphy/front-dressed.svg",
  20210. extra: 1951/1654,
  20211. bottom: 194/2145
  20212. },
  20213. form: "anthro",
  20214. default: true
  20215. },
  20216. backDressed: {
  20217. height: math.unit(15, "feet"),
  20218. weight: math.unit(3280, "lb"),
  20219. name: "Back (Dressed)",
  20220. image: {
  20221. source: "./media/characters/sapphy/back-dressed.svg",
  20222. extra: 2058/1918,
  20223. bottom: 125/2183
  20224. },
  20225. form: "anthro"
  20226. },
  20227. frontNude: {
  20228. height: math.unit(15, "feet"),
  20229. weight: math.unit(3280, "lb"),
  20230. name: "Front (Nude)",
  20231. image: {
  20232. source: "./media/characters/sapphy/front-nude.svg",
  20233. extra: 1951/1654,
  20234. bottom: 194/2145
  20235. },
  20236. form: "anthro"
  20237. },
  20238. backNude: {
  20239. height: math.unit(15, "feet"),
  20240. weight: math.unit(3280, "lb"),
  20241. name: "Back (Nude)",
  20242. image: {
  20243. source: "./media/characters/sapphy/back-nude.svg",
  20244. extra: 2058/1918,
  20245. bottom: 125/2183
  20246. },
  20247. form: "anthro"
  20248. },
  20249. full: {
  20250. height: math.unit(15, "feet"),
  20251. weight: math.unit(3280, "lb"),
  20252. name: "Full",
  20253. image: {
  20254. source: "./media/characters/sapphy/full.svg",
  20255. extra: 1396/1317,
  20256. bottom: 44/1440
  20257. },
  20258. form: "anthro"
  20259. },
  20260. dick: {
  20261. height: math.unit(3.8, "feet"),
  20262. name: "Dick",
  20263. image: {
  20264. source: "./media/characters/sapphy/dick.svg"
  20265. },
  20266. form: "anthro"
  20267. },
  20268. feral: {
  20269. height: math.unit(35, "feet"),
  20270. weight: math.unit(160, "tons"),
  20271. name: "Feral",
  20272. image: {
  20273. source: "./media/characters/sapphy/feral.svg",
  20274. extra: 1050/573,
  20275. bottom: 60/1110
  20276. },
  20277. form: "feral",
  20278. default: true
  20279. },
  20280. },
  20281. [
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(15, "feet"),
  20285. form: "anthro"
  20286. },
  20287. {
  20288. name: "Casual Macro",
  20289. height: math.unit(120, "feet"),
  20290. form: "anthro"
  20291. },
  20292. {
  20293. name: "Macro",
  20294. height: math.unit(2150, "feet"),
  20295. default: true,
  20296. form: "anthro"
  20297. },
  20298. {
  20299. name: "Megamacro",
  20300. height: math.unit(8, "miles"),
  20301. form: "anthro"
  20302. },
  20303. {
  20304. name: "Galaxy Mom",
  20305. height: math.unit(6, "megalightyears"),
  20306. form: "anthro"
  20307. },
  20308. {
  20309. name: "Normal",
  20310. height: math.unit(35, "feet"),
  20311. form: "feral",
  20312. default: true
  20313. },
  20314. {
  20315. name: "Macro",
  20316. height: math.unit(300, "feet"),
  20317. form: "feral"
  20318. },
  20319. {
  20320. name: "Galaxy Mom",
  20321. height: math.unit(10, "megalightyears"),
  20322. form: "feral"
  20323. },
  20324. ],
  20325. {
  20326. "anthro": {
  20327. name: "Anthro",
  20328. default: true
  20329. },
  20330. "feral": {
  20331. name: "Feral"
  20332. }
  20333. }
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20337. {
  20338. hyenaFront: {
  20339. height: math.unit(6, "feet"),
  20340. weight: math.unit(190, "lb"),
  20341. name: "Front",
  20342. image: {
  20343. source: "./media/characters/kiro/hyena-front.svg",
  20344. extra: 927/839,
  20345. bottom: 91/1018
  20346. },
  20347. form: "hyena",
  20348. default: true
  20349. },
  20350. front: {
  20351. height: math.unit(6, "feet"),
  20352. weight: math.unit(170, "lb"),
  20353. name: "Front",
  20354. image: {
  20355. source: "./media/characters/kiro/front.svg",
  20356. extra: 1064 / 1012,
  20357. bottom: 0.052
  20358. },
  20359. form: "folf",
  20360. default: true
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Micro",
  20366. height: math.unit(6, "inches"),
  20367. form: "folf"
  20368. },
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(6, "feet"),
  20372. form: "folf",
  20373. default: true
  20374. },
  20375. {
  20376. name: "Macro",
  20377. height: math.unit(72, "feet"),
  20378. form: "folf"
  20379. },
  20380. {
  20381. name: "Micro",
  20382. height: math.unit(6, "inches"),
  20383. form: "hyena"
  20384. },
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(6, "feet"),
  20388. form: "hyena",
  20389. default: true
  20390. },
  20391. {
  20392. name: "Macro",
  20393. height: math.unit(72, "feet"),
  20394. form: "hyena"
  20395. },
  20396. ],
  20397. {
  20398. "hyena": {
  20399. name: "Hyena",
  20400. default: true
  20401. },
  20402. "folf": {
  20403. name: "Folf",
  20404. },
  20405. }
  20406. ))
  20407. characterMakers.push(() => makeCharacter(
  20408. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20409. {
  20410. front: {
  20411. height: math.unit(5 + 9 / 12, "feet"),
  20412. weight: math.unit(175, "lb"),
  20413. name: "Front",
  20414. image: {
  20415. source: "./media/characters/irishfox/front.svg",
  20416. extra: 1912 / 1680,
  20417. bottom: 0.02
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Nano",
  20424. height: math.unit(1, "mm")
  20425. },
  20426. {
  20427. name: "Micro",
  20428. height: math.unit(2, "inches")
  20429. },
  20430. {
  20431. name: "Normal",
  20432. height: math.unit(5 + 9 / 12, "feet"),
  20433. default: true
  20434. },
  20435. {
  20436. name: "Macro",
  20437. height: math.unit(45, "feet")
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20443. {
  20444. front: {
  20445. height: math.unit(6 + 1 / 12, "feet"),
  20446. weight: math.unit(75, "lb"),
  20447. name: "Front",
  20448. image: {
  20449. source: "./media/characters/aronai-sieyes/front.svg",
  20450. extra: 1532/1450,
  20451. bottom: 42/1574
  20452. }
  20453. },
  20454. side: {
  20455. height: math.unit(6 + 1 / 12, "feet"),
  20456. weight: math.unit(75, "lb"),
  20457. name: "Side",
  20458. image: {
  20459. source: "./media/characters/aronai-sieyes/side.svg",
  20460. extra: 1422/1365,
  20461. bottom: 148/1570
  20462. }
  20463. },
  20464. back: {
  20465. height: math.unit(6 + 1 / 12, "feet"),
  20466. weight: math.unit(75, "lb"),
  20467. name: "Back",
  20468. image: {
  20469. source: "./media/characters/aronai-sieyes/back.svg",
  20470. extra: 1526/1464,
  20471. bottom: 51/1577
  20472. }
  20473. },
  20474. dressed: {
  20475. height: math.unit(6 + 1 / 12, "feet"),
  20476. weight: math.unit(75, "lb"),
  20477. name: "Dressed",
  20478. image: {
  20479. source: "./media/characters/aronai-sieyes/dressed.svg",
  20480. extra: 1559/1483,
  20481. bottom: 39/1598
  20482. }
  20483. },
  20484. slit: {
  20485. height: math.unit(1.3, "feet"),
  20486. name: "Slit",
  20487. image: {
  20488. source: "./media/characters/aronai-sieyes/slit.svg"
  20489. }
  20490. },
  20491. slitSpread: {
  20492. height: math.unit(0.9, "feet"),
  20493. name: "Slit (Spread)",
  20494. image: {
  20495. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20496. }
  20497. },
  20498. rump: {
  20499. height: math.unit(1.3, "feet"),
  20500. name: "Rump",
  20501. image: {
  20502. source: "./media/characters/aronai-sieyes/rump.svg"
  20503. }
  20504. },
  20505. maw: {
  20506. height: math.unit(1.25, "feet"),
  20507. name: "Maw",
  20508. image: {
  20509. source: "./media/characters/aronai-sieyes/maw.svg"
  20510. }
  20511. },
  20512. feral: {
  20513. height: math.unit(18, "feet"),
  20514. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20515. name: "Feral",
  20516. image: {
  20517. source: "./media/characters/aronai-sieyes/feral.svg",
  20518. extra: 1530 / 1240,
  20519. bottom: 0.035
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Micro",
  20526. height: math.unit(2, "inches")
  20527. },
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(6 + 1 / 12, "feet"),
  20531. default: true
  20532. }
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20537. {
  20538. front: {
  20539. height: math.unit(12, "feet"),
  20540. weight: math.unit(410, "kg"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/xuna/front.svg",
  20544. extra: 2184 / 1980
  20545. }
  20546. },
  20547. side: {
  20548. height: math.unit(12, "feet"),
  20549. weight: math.unit(410, "kg"),
  20550. name: "Side",
  20551. image: {
  20552. source: "./media/characters/xuna/side.svg",
  20553. extra: 2184 / 1980
  20554. }
  20555. },
  20556. back: {
  20557. height: math.unit(12, "feet"),
  20558. weight: math.unit(410, "kg"),
  20559. name: "Back",
  20560. image: {
  20561. source: "./media/characters/xuna/back.svg",
  20562. extra: 2184 / 1980
  20563. }
  20564. },
  20565. },
  20566. [
  20567. {
  20568. name: "Nano glow",
  20569. height: math.unit(10, "nm")
  20570. },
  20571. {
  20572. name: "Micro floof",
  20573. height: math.unit(0.3, "m")
  20574. },
  20575. {
  20576. name: "Huggable softy boi",
  20577. height: math.unit(3.6576, "m"),
  20578. default: true
  20579. },
  20580. {
  20581. name: "Admirable floof",
  20582. height: math.unit(80, "meters")
  20583. },
  20584. {
  20585. name: "Gentle macro",
  20586. height: math.unit(300, "meters")
  20587. },
  20588. {
  20589. name: "Very careful floof",
  20590. height: math.unit(3200, "meters")
  20591. },
  20592. {
  20593. name: "The mega floof",
  20594. height: math.unit(36000, "meters")
  20595. },
  20596. {
  20597. name: "Giga-fur-Wicker",
  20598. height: math.unit(4800000, "meters")
  20599. },
  20600. {
  20601. name: "Licky world",
  20602. height: math.unit(20000000, "meters")
  20603. },
  20604. {
  20605. name: "Floofy cyan sun",
  20606. height: math.unit(1500000000, "meters")
  20607. },
  20608. {
  20609. name: "Milky Wicker",
  20610. height: math.unit(1000000000000000000000, "meters")
  20611. },
  20612. {
  20613. name: "The observing Wicker",
  20614. height: math.unit(999999999999999999999999999, "meters")
  20615. },
  20616. ]
  20617. ))
  20618. characterMakers.push(() => makeCharacter(
  20619. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20620. {
  20621. front: {
  20622. height: math.unit(5 + 9 / 12, "feet"),
  20623. weight: math.unit(150, "lb"),
  20624. name: "Front",
  20625. image: {
  20626. source: "./media/characters/arokha-sieyes/front.svg",
  20627. extra: 1425 / 1284,
  20628. bottom: 0.05
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Normal",
  20635. height: math.unit(5 + 9 / 12, "feet")
  20636. },
  20637. {
  20638. name: "Macro",
  20639. height: math.unit(30, "meters"),
  20640. default: true
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(6, "feet"),
  20649. weight: math.unit(180, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/arokh-sieyes/front.svg",
  20653. extra: 1830 / 1769,
  20654. bottom: 0.01
  20655. }
  20656. },
  20657. },
  20658. [
  20659. {
  20660. name: "Normal",
  20661. height: math.unit(6, "feet")
  20662. },
  20663. {
  20664. name: "Macro",
  20665. height: math.unit(30, "meters"),
  20666. default: true
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20672. {
  20673. side: {
  20674. height: math.unit(13 + 1 / 12, "feet"),
  20675. weight: math.unit(8.5, "tonnes"),
  20676. preyCapacity: math.unit(36, "people"),
  20677. name: "Side",
  20678. image: {
  20679. source: "./media/characters/goldeneye/side.svg",
  20680. extra: 1139/741,
  20681. bottom: 98/1237
  20682. }
  20683. },
  20684. front: {
  20685. height: math.unit(5.1, "feet"),
  20686. weight: math.unit(8.5, "tonnes"),
  20687. preyCapacity: math.unit(36, "people"),
  20688. name: "Front",
  20689. image: {
  20690. source: "./media/characters/goldeneye/front.svg",
  20691. extra: 635/365,
  20692. bottom: 598/1233
  20693. }
  20694. },
  20695. maw: {
  20696. height: math.unit(6.6, "feet"),
  20697. name: "Maw",
  20698. image: {
  20699. source: "./media/characters/goldeneye/maw.svg"
  20700. }
  20701. },
  20702. headFront: {
  20703. height: math.unit(8, "feet"),
  20704. name: "Head (Front)",
  20705. image: {
  20706. source: "./media/characters/goldeneye/head-front.svg"
  20707. }
  20708. },
  20709. headSide: {
  20710. height: math.unit(6, "feet"),
  20711. name: "Head (Side)",
  20712. image: {
  20713. source: "./media/characters/goldeneye/head-side.svg"
  20714. }
  20715. },
  20716. headBack: {
  20717. height: math.unit(8, "feet"),
  20718. name: "Head (Back)",
  20719. image: {
  20720. source: "./media/characters/goldeneye/head-back.svg"
  20721. }
  20722. },
  20723. paw: {
  20724. height: math.unit(3.4, "feet"),
  20725. name: "Paw",
  20726. image: {
  20727. source: "./media/characters/goldeneye/paw.svg"
  20728. }
  20729. },
  20730. toering: {
  20731. height: math.unit(0.45, "feet"),
  20732. name: "Toering",
  20733. image: {
  20734. source: "./media/characters/goldeneye/toering.svg"
  20735. }
  20736. },
  20737. eyes: {
  20738. height: math.unit(0.5, "feet"),
  20739. name: "Eyes",
  20740. image: {
  20741. source: "./media/characters/goldeneye/eyes.svg"
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(13 + 1 / 12, "feet"),
  20749. default: true
  20750. },
  20751. ]
  20752. ))
  20753. characterMakers.push(() => makeCharacter(
  20754. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20755. {
  20756. front: {
  20757. height: math.unit(6 + 1 / 12, "feet"),
  20758. weight: math.unit(210, "lb"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/leonardo-lycheborne/front.svg",
  20762. extra: 776/723,
  20763. bottom: 34/810
  20764. }
  20765. },
  20766. side: {
  20767. height: math.unit(6 + 1 / 12, "feet"),
  20768. weight: math.unit(210, "lb"),
  20769. name: "Side",
  20770. image: {
  20771. source: "./media/characters/leonardo-lycheborne/side.svg",
  20772. extra: 780/728,
  20773. bottom: 12/792
  20774. }
  20775. },
  20776. back: {
  20777. height: math.unit(6 + 1 / 12, "feet"),
  20778. weight: math.unit(210, "lb"),
  20779. name: "Back",
  20780. image: {
  20781. source: "./media/characters/leonardo-lycheborne/back.svg",
  20782. extra: 775/721,
  20783. bottom: 17/792
  20784. }
  20785. },
  20786. hand: {
  20787. height: math.unit(1.08, "feet"),
  20788. name: "Hand",
  20789. image: {
  20790. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20791. }
  20792. },
  20793. foot: {
  20794. height: math.unit(1.32, "feet"),
  20795. name: "Foot",
  20796. image: {
  20797. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20798. }
  20799. },
  20800. maw: {
  20801. height: math.unit(1, "feet"),
  20802. name: "Maw",
  20803. image: {
  20804. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20805. }
  20806. },
  20807. were: {
  20808. height: math.unit(20, "feet"),
  20809. weight: math.unit(7800, "lb"),
  20810. name: "Were",
  20811. image: {
  20812. source: "./media/characters/leonardo-lycheborne/were.svg",
  20813. extra: 1224/1165,
  20814. bottom: 72/1296
  20815. }
  20816. },
  20817. feral: {
  20818. height: math.unit(7.5, "feet"),
  20819. weight: math.unit(600, "lb"),
  20820. name: "Feral",
  20821. image: {
  20822. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20823. extra: 797/702,
  20824. bottom: 139/936
  20825. }
  20826. },
  20827. taur: {
  20828. height: math.unit(11, "feet"),
  20829. weight: math.unit(3300, "lb"),
  20830. name: "Taur",
  20831. image: {
  20832. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20833. extra: 1271/1197,
  20834. bottom: 47/1318
  20835. }
  20836. },
  20837. barghest: {
  20838. height: math.unit(11, "feet"),
  20839. weight: math.unit(1300, "lb"),
  20840. name: "Barghest",
  20841. image: {
  20842. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20843. extra: 1291/1204,
  20844. bottom: 37/1328
  20845. }
  20846. },
  20847. dick: {
  20848. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20849. name: "Dick",
  20850. image: {
  20851. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20852. }
  20853. },
  20854. dickWere: {
  20855. height: math.unit((20) / 3.8, "feet"),
  20856. name: "Dick (Were)",
  20857. image: {
  20858. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(6 + 1 / 12, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(10, "feet"),
  20875. weight: math.unit(350, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/jet/front.svg",
  20879. extra: 2050 / 1980,
  20880. bottom: 0.013
  20881. }
  20882. },
  20883. back: {
  20884. height: math.unit(10, "feet"),
  20885. weight: math.unit(350, "lb"),
  20886. name: "Back",
  20887. image: {
  20888. source: "./media/characters/jet/back.svg",
  20889. extra: 2050 / 1980,
  20890. bottom: 0.013
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Micro",
  20897. height: math.unit(6, "inches")
  20898. },
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(10, "feet"),
  20902. default: true
  20903. },
  20904. {
  20905. name: "Macro",
  20906. height: math.unit(100, "feet")
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20912. {
  20913. front: {
  20914. height: math.unit(15, "feet"),
  20915. weight: math.unit(2800, "lb"),
  20916. name: "Front",
  20917. image: {
  20918. source: "./media/characters/tanarath/front.svg",
  20919. extra: 2392 / 2220,
  20920. bottom: 0.03
  20921. }
  20922. },
  20923. back: {
  20924. height: math.unit(15, "feet"),
  20925. weight: math.unit(2800, "lb"),
  20926. name: "Back",
  20927. image: {
  20928. source: "./media/characters/tanarath/back.svg",
  20929. extra: 2392 / 2220,
  20930. bottom: 0.03
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(15, "feet"),
  20938. default: true
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(7 + 1 / 12, "feet"),
  20947. weight: math.unit(175, "lb"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/patty-cattybatty/front.svg",
  20951. extra: 908 / 874,
  20952. bottom: 0.025
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Micro",
  20959. height: math.unit(1, "inch")
  20960. },
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(7 + 1 / 12, "feet")
  20964. },
  20965. {
  20966. name: "Mini Macro",
  20967. height: math.unit(155, "feet")
  20968. },
  20969. {
  20970. name: "Macro",
  20971. height: math.unit(1077, "feet")
  20972. },
  20973. {
  20974. name: "Mega Macro",
  20975. height: math.unit(47650, "feet"),
  20976. default: true
  20977. },
  20978. {
  20979. name: "Giga Macro",
  20980. height: math.unit(440, "miles")
  20981. },
  20982. {
  20983. name: "Tera Macro",
  20984. height: math.unit(8700, "miles")
  20985. },
  20986. {
  20987. name: "Planetary Macro",
  20988. height: math.unit(32700, "miles")
  20989. },
  20990. {
  20991. name: "Solar Macro",
  20992. height: math.unit(550000, "miles")
  20993. },
  20994. {
  20995. name: "Celestial Macro",
  20996. height: math.unit(2.5, "AU")
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(4 + 5 / 12, "feet"),
  21005. weight: math.unit(90, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/cappu/front.svg",
  21009. extra: 1247 / 1152,
  21010. bottom: 0.012
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(4 + 5 / 12, "feet"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21024. {
  21025. frontDressed: {
  21026. height: math.unit(70, "cm"),
  21027. weight: math.unit(6, "kg"),
  21028. name: "Front (Dressed)",
  21029. image: {
  21030. source: "./media/characters/sebi/front-dressed.svg",
  21031. extra: 713.5 / 686.5,
  21032. bottom: 0.003
  21033. }
  21034. },
  21035. front: {
  21036. height: math.unit(70, "cm"),
  21037. weight: math.unit(5, "kg"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/sebi/front.svg",
  21041. extra: 713.5 / 686.5,
  21042. bottom: 0.003
  21043. }
  21044. }
  21045. },
  21046. [
  21047. {
  21048. name: "Normal",
  21049. height: math.unit(70, "cm"),
  21050. default: true
  21051. },
  21052. {
  21053. name: "Macro",
  21054. height: math.unit(8, "meters")
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(6, "feet"),
  21063. weight: math.unit(150, "lb"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/typhek/front.svg",
  21067. extra: 1948 / 1929,
  21068. bottom: 0.025
  21069. }
  21070. },
  21071. side: {
  21072. height: math.unit(6, "feet"),
  21073. weight: math.unit(150, "lb"),
  21074. name: "Side",
  21075. image: {
  21076. source: "./media/characters/typhek/side.svg",
  21077. extra: 2034 / 2010,
  21078. bottom: 0.003
  21079. }
  21080. },
  21081. back: {
  21082. height: math.unit(6, "feet"),
  21083. weight: math.unit(150, "lb"),
  21084. name: "Back",
  21085. image: {
  21086. source: "./media/characters/typhek/back.svg",
  21087. extra: 2005 / 1978,
  21088. bottom: 0.004
  21089. }
  21090. },
  21091. palm: {
  21092. height: math.unit(1.2, "feet"),
  21093. name: "Palm",
  21094. image: {
  21095. source: "./media/characters/typhek/palm.svg"
  21096. }
  21097. },
  21098. fist: {
  21099. height: math.unit(1.1, "feet"),
  21100. name: "Fist",
  21101. image: {
  21102. source: "./media/characters/typhek/fist.svg"
  21103. }
  21104. },
  21105. foot: {
  21106. height: math.unit(1.57, "feet"),
  21107. name: "Foot",
  21108. image: {
  21109. source: "./media/characters/typhek/foot.svg"
  21110. }
  21111. },
  21112. sole: {
  21113. height: math.unit(2.05, "feet"),
  21114. name: "Sole",
  21115. image: {
  21116. source: "./media/characters/typhek/sole.svg"
  21117. }
  21118. },
  21119. },
  21120. [
  21121. {
  21122. name: "Macro",
  21123. height: math.unit(40, "stories"),
  21124. default: true
  21125. },
  21126. {
  21127. name: "Megamacro",
  21128. height: math.unit(1, "mile")
  21129. },
  21130. {
  21131. name: "Gigamacro",
  21132. height: math.unit(4000, "solarradii")
  21133. },
  21134. {
  21135. name: "Universal",
  21136. height: math.unit(1.1, "universes")
  21137. }
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21142. {
  21143. side: {
  21144. height: math.unit(5 + 7 / 12, "feet"),
  21145. weight: math.unit(150, "lb"),
  21146. name: "Side",
  21147. image: {
  21148. source: "./media/characters/kassy/side.svg",
  21149. extra: 1280 / 1225,
  21150. bottom: 0.002
  21151. }
  21152. },
  21153. front: {
  21154. height: math.unit(5 + 7 / 12, "feet"),
  21155. weight: math.unit(150, "lb"),
  21156. name: "Front",
  21157. image: {
  21158. source: "./media/characters/kassy/front.svg",
  21159. extra: 1280 / 1225,
  21160. bottom: 0.025
  21161. }
  21162. },
  21163. back: {
  21164. height: math.unit(5 + 7 / 12, "feet"),
  21165. weight: math.unit(150, "lb"),
  21166. name: "Back",
  21167. image: {
  21168. source: "./media/characters/kassy/back.svg",
  21169. extra: 1280 / 1225,
  21170. bottom: 0.002
  21171. }
  21172. },
  21173. foot: {
  21174. height: math.unit(1.266, "feet"),
  21175. name: "Foot",
  21176. image: {
  21177. source: "./media/characters/kassy/foot.svg"
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(5 + 7 / 12, "feet")
  21185. },
  21186. {
  21187. name: "Macro",
  21188. height: math.unit(137, "feet"),
  21189. default: true
  21190. },
  21191. {
  21192. name: "Megamacro",
  21193. height: math.unit(1, "mile")
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21199. {
  21200. front: {
  21201. height: math.unit(6 + 1 / 12, "feet"),
  21202. weight: math.unit(200, "lb"),
  21203. name: "Front",
  21204. image: {
  21205. source: "./media/characters/neil/front.svg",
  21206. extra: 1326 / 1250,
  21207. bottom: 0.023
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(6 + 1 / 12, "feet"),
  21215. default: true
  21216. },
  21217. {
  21218. name: "Macro",
  21219. height: math.unit(200, "feet")
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21225. {
  21226. front: {
  21227. height: math.unit(5 + 9 / 12, "feet"),
  21228. weight: math.unit(190, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/atticus/front.svg",
  21232. extra: 2934 / 2785,
  21233. bottom: 0.025
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(5 + 9 / 12, "feet"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(180, "feet")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21251. {
  21252. side: {
  21253. height: math.unit(9, "feet"),
  21254. weight: math.unit(650, "lb"),
  21255. name: "Side",
  21256. image: {
  21257. source: "./media/characters/milo/side.svg",
  21258. extra: 2644 / 2310,
  21259. bottom: 0.032
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(9, "feet"),
  21267. default: true
  21268. },
  21269. {
  21270. name: "Macro",
  21271. height: math.unit(300, "feet")
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21277. {
  21278. side: {
  21279. height: math.unit(8, "meters"),
  21280. weight: math.unit(90000, "kg"),
  21281. name: "Side",
  21282. image: {
  21283. source: "./media/characters/ijzer/side.svg",
  21284. extra: 2756 / 1600,
  21285. bottom: 0.01
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Small",
  21292. height: math.unit(3, "meters")
  21293. },
  21294. {
  21295. name: "Normal",
  21296. height: math.unit(8, "meters"),
  21297. default: true
  21298. },
  21299. {
  21300. name: "Normal+",
  21301. height: math.unit(10, "meters")
  21302. },
  21303. {
  21304. name: "Bigger",
  21305. height: math.unit(24, "meters")
  21306. },
  21307. {
  21308. name: "Huge",
  21309. height: math.unit(80, "meters")
  21310. },
  21311. ]
  21312. ))
  21313. characterMakers.push(() => makeCharacter(
  21314. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21315. {
  21316. front: {
  21317. height: math.unit(6 + 2 / 12, "feet"),
  21318. weight: math.unit(153, "lb"),
  21319. name: "Front",
  21320. image: {
  21321. source: "./media/characters/luca-cervicum/front.svg",
  21322. extra: 370 / 327,
  21323. bottom: 0.015
  21324. }
  21325. },
  21326. back: {
  21327. height: math.unit(6 + 2 / 12, "feet"),
  21328. weight: math.unit(153, "lb"),
  21329. name: "Back",
  21330. image: {
  21331. source: "./media/characters/luca-cervicum/back.svg",
  21332. extra: 367 / 333,
  21333. bottom: 0.005
  21334. }
  21335. },
  21336. frontGear: {
  21337. height: math.unit(6 + 2 / 12, "feet"),
  21338. weight: math.unit(173, "lb"),
  21339. name: "Front (Gear)",
  21340. image: {
  21341. source: "./media/characters/luca-cervicum/front-gear.svg",
  21342. extra: 377 / 333,
  21343. bottom: 0.006
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(6 + 2 / 12, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(6 + 1 / 12, "feet"),
  21360. weight: math.unit(304, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/oliver/front.svg",
  21364. extra: 157 / 143,
  21365. bottom: 0.08
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Normal",
  21372. height: math.unit(6 + 1 / 12, "feet"),
  21373. default: true
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21379. {
  21380. front: {
  21381. height: math.unit(5 + 7 / 12, "feet"),
  21382. weight: math.unit(140, "lb"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/shane/front.svg",
  21386. extra: 304 / 289,
  21387. bottom: 0.005
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(5 + 7 / 12, "feet"),
  21395. default: true
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(5 + 9 / 12, "feet"),
  21404. weight: math.unit(178, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/shin/front.svg",
  21408. extra: 159 / 151,
  21409. bottom: 0.015
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(5 + 9 / 12, "feet"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21423. {
  21424. front: {
  21425. height: math.unit(5 + 10 / 12, "feet"),
  21426. weight: math.unit(168, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/xerxes/front.svg",
  21430. extra: 282 / 260,
  21431. bottom: 0.045
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(5 + 10 / 12, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(6 + 7 / 12, "feet"),
  21448. weight: math.unit(208, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/chaska/front.svg",
  21452. extra: 332 / 319,
  21453. bottom: 0.015
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(6 + 7 / 12, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(5 + 8 / 12, "feet"),
  21470. weight: math.unit(208, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/enuk/front.svg",
  21474. extra: 437 / 406,
  21475. bottom: 0.02
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(5 + 8 / 12, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(5 + 10 / 12, "feet"),
  21492. weight: math.unit(252, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/bruun/front.svg",
  21496. extra: 197 / 187,
  21497. bottom: 0.012
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(5 + 10 / 12, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(6 + 10 / 12, "feet"),
  21514. weight: math.unit(255, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/alexeev/front.svg",
  21518. extra: 213 / 200,
  21519. bottom: 0.05
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(6 + 10 / 12, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(2 + 8 / 12, "feet"),
  21536. weight: math.unit(22, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/evelyn/front.svg",
  21540. extra: 208 / 180
  21541. }
  21542. },
  21543. },
  21544. [
  21545. {
  21546. name: "Normal",
  21547. height: math.unit(2 + 8 / 12, "feet"),
  21548. default: true
  21549. },
  21550. ]
  21551. ))
  21552. characterMakers.push(() => makeCharacter(
  21553. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21554. {
  21555. front: {
  21556. height: math.unit(5 + 9 / 12, "feet"),
  21557. weight: math.unit(139, "lb"),
  21558. name: "Front",
  21559. image: {
  21560. source: "./media/characters/inca/front.svg",
  21561. extra: 294 / 291,
  21562. bottom: 0.03
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(5 + 9 / 12, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(6 + 3 / 12, "feet"),
  21579. weight: math.unit(185, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/mera/front.svg",
  21583. extra: 291 / 277,
  21584. bottom: 0.03
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(6 + 3 / 12, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(6 + 7 / 12, "feet"),
  21601. weight: math.unit(160, "lb"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/ceres/front.svg",
  21605. extra: 1023 / 950,
  21606. bottom: 0.027
  21607. }
  21608. },
  21609. back: {
  21610. height: math.unit(6 + 7 / 12, "feet"),
  21611. weight: math.unit(160, "lb"),
  21612. name: "Back",
  21613. image: {
  21614. source: "./media/characters/ceres/back.svg",
  21615. extra: 1023 / 950
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(6 + 7 / 12, "feet"),
  21623. default: true
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21629. {
  21630. front: {
  21631. height: math.unit(5 + 10 / 12, "feet"),
  21632. weight: math.unit(150, "lb"),
  21633. name: "Front",
  21634. image: {
  21635. source: "./media/characters/kris/front.svg",
  21636. extra: 885 / 803,
  21637. bottom: 0.03
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(5 + 10 / 12, "feet"),
  21645. default: true
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21651. {
  21652. front: {
  21653. height: math.unit(7, "feet"),
  21654. weight: math.unit(120, "kg"),
  21655. name: "Front",
  21656. image: {
  21657. source: "./media/characters/taluthus/front.svg",
  21658. extra: 903 / 833,
  21659. bottom: 0.015
  21660. }
  21661. },
  21662. },
  21663. [
  21664. {
  21665. name: "Normal",
  21666. height: math.unit(7, "feet"),
  21667. default: true
  21668. },
  21669. {
  21670. name: "Macro",
  21671. height: math.unit(300, "feet")
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(5 + 9 / 12, "feet"),
  21680. weight: math.unit(145, "lb"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/dawn/front.svg",
  21684. extra: 2094 / 2016,
  21685. bottom: 0.025
  21686. }
  21687. },
  21688. back: {
  21689. height: math.unit(5 + 9 / 12, "feet"),
  21690. weight: math.unit(160, "lb"),
  21691. name: "Back",
  21692. image: {
  21693. source: "./media/characters/dawn/back.svg",
  21694. extra: 2112 / 2080,
  21695. bottom: 0.005
  21696. }
  21697. },
  21698. },
  21699. [
  21700. {
  21701. name: "Normal",
  21702. height: math.unit(6 + 7 / 12, "feet"),
  21703. default: true
  21704. },
  21705. ]
  21706. ))
  21707. characterMakers.push(() => makeCharacter(
  21708. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21709. {
  21710. anthro: {
  21711. height: math.unit(8 + 3 / 12, "feet"),
  21712. weight: math.unit(450, "lb"),
  21713. name: "Anthro",
  21714. image: {
  21715. source: "./media/characters/arador/anthro.svg",
  21716. extra: 1835 / 1718,
  21717. bottom: 0.025
  21718. }
  21719. },
  21720. feral: {
  21721. height: math.unit(4, "feet"),
  21722. weight: math.unit(200, "lb"),
  21723. name: "Feral",
  21724. image: {
  21725. source: "./media/characters/arador/feral.svg",
  21726. extra: 1683 / 1514,
  21727. bottom: 0.07
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(8 + 3 / 12, "feet")
  21735. },
  21736. {
  21737. name: "Macro",
  21738. height: math.unit(82.5, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(5 + 10 / 12, "feet"),
  21748. weight: math.unit(125, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/dharsi/front.svg",
  21752. extra: 716 / 630,
  21753. bottom: 0.035
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Nano",
  21760. height: math.unit(100, "nm")
  21761. },
  21762. {
  21763. name: "Micro",
  21764. height: math.unit(2, "inches")
  21765. },
  21766. {
  21767. name: "Normal",
  21768. height: math.unit(5 + 10 / 12, "feet"),
  21769. default: true
  21770. },
  21771. {
  21772. name: "Macro",
  21773. height: math.unit(1000, "feet")
  21774. },
  21775. {
  21776. name: "Megamacro",
  21777. height: math.unit(10, "miles")
  21778. },
  21779. {
  21780. name: "Gigamacro",
  21781. height: math.unit(3000, "miles")
  21782. },
  21783. {
  21784. name: "Teramacro",
  21785. height: math.unit(500000, "miles")
  21786. },
  21787. {
  21788. name: "Teramacro+",
  21789. height: math.unit(30, "galaxies")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(6, "feet"),
  21798. weight: math.unit(150, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/deathy/front.svg",
  21802. extra: 1552 / 1463,
  21803. bottom: 0.025
  21804. }
  21805. },
  21806. side: {
  21807. height: math.unit(6, "feet"),
  21808. weight: math.unit(150, "lb"),
  21809. name: "Side",
  21810. image: {
  21811. source: "./media/characters/deathy/side.svg",
  21812. extra: 1604 / 1455,
  21813. bottom: 0.025
  21814. }
  21815. },
  21816. back: {
  21817. height: math.unit(6, "feet"),
  21818. weight: math.unit(150, "lb"),
  21819. name: "Back",
  21820. image: {
  21821. source: "./media/characters/deathy/back.svg",
  21822. extra: 1580 / 1463,
  21823. bottom: 0.005
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Micro",
  21830. height: math.unit(5, "millimeters")
  21831. },
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(6 + 5 / 12, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21841. {
  21842. front: {
  21843. height: math.unit(16, "feet"),
  21844. weight: math.unit(4000, "lb"),
  21845. name: "Front",
  21846. image: {
  21847. source: "./media/characters/juniper/front.svg",
  21848. bottom: 0.04
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(16, "feet"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(6, "feet"),
  21865. weight: math.unit(150, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/hipster/front.svg",
  21869. extra: 1312 / 1209,
  21870. bottom: 0.025
  21871. }
  21872. },
  21873. back: {
  21874. height: math.unit(6, "feet"),
  21875. weight: math.unit(150, "lb"),
  21876. name: "Back",
  21877. image: {
  21878. source: "./media/characters/hipster/back.svg",
  21879. extra: 1281 / 1196,
  21880. bottom: 0.01
  21881. }
  21882. },
  21883. },
  21884. [
  21885. {
  21886. name: "Micro",
  21887. height: math.unit(1, "mm")
  21888. },
  21889. {
  21890. name: "Normal",
  21891. height: math.unit(4, "inches"),
  21892. default: true
  21893. },
  21894. {
  21895. name: "Macro",
  21896. height: math.unit(500, "feet")
  21897. },
  21898. {
  21899. name: "Megamacro",
  21900. height: math.unit(1000, "miles")
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21906. {
  21907. front: {
  21908. height: math.unit(6, "feet"),
  21909. weight: math.unit(150, "lb"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/tendirmuldr/front.svg",
  21913. extra: 1878 / 1772,
  21914. bottom: 0.015
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Megamacro",
  21921. height: math.unit(1500, "miles"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21928. {
  21929. front: {
  21930. height: math.unit(14, "feet"),
  21931. weight: math.unit(12000, "lb"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/mort/front.svg",
  21935. extra: 365 / 318,
  21936. bottom: 0.01
  21937. }
  21938. },
  21939. side: {
  21940. height: math.unit(14, "feet"),
  21941. weight: math.unit(12000, "lb"),
  21942. name: "Side",
  21943. image: {
  21944. source: "./media/characters/mort/side.svg",
  21945. extra: 365 / 318,
  21946. bottom: 0.052
  21947. },
  21948. default: true
  21949. },
  21950. back: {
  21951. height: math.unit(14, "feet"),
  21952. weight: math.unit(12000, "lb"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/mort/back.svg",
  21956. extra: 371 / 332,
  21957. bottom: 0.18
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(14, "feet"),
  21965. default: true
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21971. {
  21972. front: {
  21973. height: math.unit(8, "feet"),
  21974. weight: math.unit(1, "ton"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/lycoa/front.svg",
  21978. extra: 1836/1728,
  21979. bottom: 81/1917
  21980. }
  21981. },
  21982. back: {
  21983. height: math.unit(8, "feet"),
  21984. weight: math.unit(1, "ton"),
  21985. name: "Back",
  21986. image: {
  21987. source: "./media/characters/lycoa/back.svg",
  21988. extra: 1785/1720,
  21989. bottom: 91/1876
  21990. }
  21991. },
  21992. head: {
  21993. height: math.unit(1.6243, "feet"),
  21994. name: "Head",
  21995. image: {
  21996. source: "./media/characters/lycoa/head.svg",
  21997. extra: 1011/782,
  21998. bottom: 0/1011
  21999. }
  22000. },
  22001. tailmaw: {
  22002. height: math.unit(1.9, "feet"),
  22003. name: "Tailmaw",
  22004. image: {
  22005. source: "./media/characters/lycoa/tailmaw.svg"
  22006. }
  22007. },
  22008. tentacles: {
  22009. height: math.unit(2.1, "feet"),
  22010. name: "Tentacles",
  22011. image: {
  22012. source: "./media/characters/lycoa/tentacles.svg"
  22013. }
  22014. },
  22015. dick: {
  22016. height: math.unit(1.73, "feet"),
  22017. name: "Dick",
  22018. image: {
  22019. source: "./media/characters/lycoa/dick.svg"
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(8, "feet"),
  22027. default: true
  22028. },
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(30, "feet")
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22037. {
  22038. front: {
  22039. height: math.unit(4 + 2 / 12, "feet"),
  22040. weight: math.unit(70, "lb"),
  22041. name: "Front",
  22042. image: {
  22043. source: "./media/characters/naldara/front.svg",
  22044. extra: 1664/1387,
  22045. bottom: 81/1745
  22046. },
  22047. form: "anthro",
  22048. default: true
  22049. },
  22050. naga: {
  22051. height: math.unit(20, "feet"),
  22052. weight: math.unit(15000, "kg"),
  22053. name: "Front",
  22054. image: {
  22055. source: "./media/characters/naldara/naga.svg",
  22056. extra: 1590/1396,
  22057. bottom: 285/1875
  22058. },
  22059. form: "naga",
  22060. default: true
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Normal",
  22066. height: math.unit(4 + 2 / 12, "feet"),
  22067. form: "anthro",
  22068. default: true
  22069. },
  22070. {
  22071. name: "Normal",
  22072. height: math.unit(20, "feet"),
  22073. form: "naga",
  22074. default: true
  22075. },
  22076. ],
  22077. {
  22078. "anthro": {
  22079. name: "Anthro",
  22080. default: true
  22081. },
  22082. "naga": {
  22083. name: "Naga"
  22084. }
  22085. }
  22086. ))
  22087. characterMakers.push(() => makeCharacter(
  22088. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22089. {
  22090. front: {
  22091. height: math.unit(13 + 7 / 12, "feet"),
  22092. weight: math.unit(1500, "lb"),
  22093. name: "Front",
  22094. image: {
  22095. source: "./media/characters/briar/front.svg",
  22096. extra: 1223/1157,
  22097. bottom: 123/1346
  22098. }
  22099. },
  22100. },
  22101. [
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(13 + 7 / 12, "feet"),
  22105. default: true
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22111. {
  22112. side: {
  22113. height: math.unit(16, "feet"),
  22114. weight: math.unit(500, "lb"),
  22115. name: "Side",
  22116. image: {
  22117. source: "./media/characters/vanguard/side.svg",
  22118. extra: 1022/914,
  22119. bottom: 30/1052
  22120. }
  22121. },
  22122. sideAlt: {
  22123. height: math.unit(10, "feet"),
  22124. weight: math.unit(500, "lb"),
  22125. name: "Side (Alt)",
  22126. image: {
  22127. source: "./media/characters/vanguard/side-alt.svg",
  22128. extra: 502 / 425,
  22129. bottom: 0.087
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(17.71, "feet"),
  22137. default: true
  22138. },
  22139. ]
  22140. ))
  22141. characterMakers.push(() => makeCharacter(
  22142. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22143. {
  22144. front: {
  22145. height: math.unit(7.5, "feet"),
  22146. weight: math.unit(2, "lb"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/artemis/work-safe-front.svg",
  22150. extra: 1192 / 1075,
  22151. bottom: 0.07
  22152. },
  22153. form: "work-safe",
  22154. default: true
  22155. },
  22156. frontNsfw: {
  22157. height: math.unit(7.5, "feet"),
  22158. weight: math.unit(2, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/artemis/calibrating-front.svg",
  22162. extra: 1192 / 1075,
  22163. bottom: 0.07
  22164. },
  22165. form: "calibrating",
  22166. default: true
  22167. },
  22168. frontNsfwer: {
  22169. height: math.unit(7.5, "feet"),
  22170. weight: math.unit(2, "lb"),
  22171. name: "Front",
  22172. image: {
  22173. source: "./media/characters/artemis/oversize-load-front.svg",
  22174. extra: 1192 / 1075,
  22175. bottom: 0.07
  22176. },
  22177. form: "oversize-load",
  22178. default: true
  22179. },
  22180. side: {
  22181. height: math.unit(7.5, "feet"),
  22182. weight: math.unit(2, "lb"),
  22183. name: "Side",
  22184. image: {
  22185. source: "./media/characters/artemis/work-safe-side.svg",
  22186. extra: 1192 / 1075,
  22187. bottom: 0.07
  22188. },
  22189. form: "work-safe"
  22190. },
  22191. sideNsfw: {
  22192. height: math.unit(7.5, "feet"),
  22193. weight: math.unit(2, "lb"),
  22194. name: "Side",
  22195. image: {
  22196. source: "./media/characters/artemis/calibrating-side.svg",
  22197. extra: 1192 / 1075,
  22198. bottom: 0.07
  22199. },
  22200. form: "calibrating"
  22201. },
  22202. sideNsfwer: {
  22203. height: math.unit(7.5, "feet"),
  22204. weight: math.unit(2, "lb"),
  22205. name: "Side",
  22206. image: {
  22207. source: "./media/characters/artemis/oversize-load-side.svg",
  22208. extra: 1192 / 1075,
  22209. bottom: 0.07
  22210. },
  22211. form: "oversize-load"
  22212. },
  22213. maw: {
  22214. height: math.unit(1.1, "feet"),
  22215. name: "Maw",
  22216. image: {
  22217. source: "./media/characters/artemis/maw.svg"
  22218. },
  22219. form: "work-safe"
  22220. },
  22221. stomach: {
  22222. height: math.unit(0.95, "feet"),
  22223. name: "Stomach",
  22224. image: {
  22225. source: "./media/characters/artemis/stomach.svg"
  22226. },
  22227. form: "work-safe"
  22228. },
  22229. dickCanine: {
  22230. height: math.unit(1, "feet"),
  22231. name: "Dick (Canine)",
  22232. image: {
  22233. source: "./media/characters/artemis/dick-canine.svg"
  22234. },
  22235. form: "calibrating"
  22236. },
  22237. dickEquine: {
  22238. height: math.unit(0.85, "feet"),
  22239. name: "Dick (Equine)",
  22240. image: {
  22241. source: "./media/characters/artemis/dick-equine.svg"
  22242. },
  22243. form: "calibrating"
  22244. },
  22245. dickExotic: {
  22246. height: math.unit(0.85, "feet"),
  22247. name: "Dick (Exotic)",
  22248. image: {
  22249. source: "./media/characters/artemis/dick-exotic.svg"
  22250. },
  22251. form: "calibrating"
  22252. },
  22253. dickCanineBigger: {
  22254. height: math.unit(1 * 1.33, "feet"),
  22255. name: "Dick (Canine)",
  22256. image: {
  22257. source: "./media/characters/artemis/dick-canine.svg"
  22258. },
  22259. form: "oversize-load"
  22260. },
  22261. dickEquineBigger: {
  22262. height: math.unit(0.85 * 1.33, "feet"),
  22263. name: "Dick (Equine)",
  22264. image: {
  22265. source: "./media/characters/artemis/dick-equine.svg"
  22266. },
  22267. form: "oversize-load"
  22268. },
  22269. dickExoticBigger: {
  22270. height: math.unit(0.85 * 1.33, "feet"),
  22271. name: "Dick (Exotic)",
  22272. image: {
  22273. source: "./media/characters/artemis/dick-exotic.svg"
  22274. },
  22275. form: "oversize-load"
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(7.5, "feet"),
  22282. form: "work-safe",
  22283. default: true
  22284. },
  22285. {
  22286. name: "Normal",
  22287. height: math.unit(7.5, "feet"),
  22288. form: "calibrating",
  22289. default: true
  22290. },
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(7.5, "feet"),
  22294. form: "oversize-load",
  22295. default: true
  22296. },
  22297. {
  22298. name: "Enlarged",
  22299. height: math.unit(12, "feet"),
  22300. form: "work-safe",
  22301. },
  22302. {
  22303. name: "Enlarged",
  22304. height: math.unit(12, "feet"),
  22305. form: "calibrating",
  22306. },
  22307. {
  22308. name: "Enlarged",
  22309. height: math.unit(12, "feet"),
  22310. form: "oversize-load",
  22311. },
  22312. ],
  22313. {
  22314. "work-safe": {
  22315. name: "Work-Safe",
  22316. default: true
  22317. },
  22318. "calibrating": {
  22319. name: "Calibrating"
  22320. },
  22321. "oversize-load": {
  22322. name: "Oversize Load"
  22323. }
  22324. }
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(5 + 3 / 12, "feet"),
  22331. weight: math.unit(160, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/kira/front.svg",
  22335. extra: 906 / 786,
  22336. bottom: 0.01
  22337. }
  22338. },
  22339. back: {
  22340. height: math.unit(5 + 3 / 12, "feet"),
  22341. weight: math.unit(160, "lb"),
  22342. name: "Back",
  22343. image: {
  22344. source: "./media/characters/kira/back.svg",
  22345. extra: 882 / 757,
  22346. bottom: 0.005
  22347. }
  22348. },
  22349. frontDressed: {
  22350. height: math.unit(5 + 3 / 12, "feet"),
  22351. weight: math.unit(160, "lb"),
  22352. name: "Front (Dressed)",
  22353. image: {
  22354. source: "./media/characters/kira/front-dressed.svg",
  22355. extra: 906 / 786,
  22356. bottom: 0.01
  22357. }
  22358. },
  22359. beans: {
  22360. height: math.unit(0.92, "feet"),
  22361. name: "Beans",
  22362. image: {
  22363. source: "./media/characters/kira/beans.svg"
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Normal",
  22370. height: math.unit(5 + 3 / 12, "feet"),
  22371. default: true
  22372. },
  22373. ]
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(5 + 4 / 12, "feet"),
  22380. weight: math.unit(145, "lb"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/scramble/front.svg",
  22384. extra: 763 / 727,
  22385. bottom: 0.05
  22386. }
  22387. },
  22388. back: {
  22389. height: math.unit(5 + 4 / 12, "feet"),
  22390. weight: math.unit(145, "lb"),
  22391. name: "Back",
  22392. image: {
  22393. source: "./media/characters/scramble/back.svg",
  22394. extra: 826 / 737,
  22395. bottom: 0.002
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(5 + 4 / 12, "feet"),
  22403. default: true
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22409. {
  22410. side: {
  22411. height: math.unit(6 + 2 / 12, "feet"),
  22412. weight: math.unit(190, "lb"),
  22413. name: "Side",
  22414. image: {
  22415. source: "./media/characters/biscuit/side.svg",
  22416. extra: 858 / 791,
  22417. bottom: 0.044
  22418. }
  22419. },
  22420. },
  22421. [
  22422. {
  22423. name: "Normal",
  22424. height: math.unit(6 + 2 / 12, "feet"),
  22425. default: true
  22426. },
  22427. ]
  22428. ))
  22429. characterMakers.push(() => makeCharacter(
  22430. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22431. {
  22432. front: {
  22433. height: math.unit(5 + 2 / 12, "feet"),
  22434. weight: math.unit(120, "lb"),
  22435. name: "Front",
  22436. image: {
  22437. source: "./media/characters/poffin/front.svg",
  22438. extra: 786 / 680,
  22439. bottom: 0.005
  22440. }
  22441. },
  22442. },
  22443. [
  22444. {
  22445. name: "Normal",
  22446. height: math.unit(5 + 2 / 12, "feet"),
  22447. default: true
  22448. },
  22449. ]
  22450. ))
  22451. characterMakers.push(() => makeCharacter(
  22452. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22453. {
  22454. front: {
  22455. height: math.unit(6 + 3 / 12, "feet"),
  22456. weight: math.unit(519, "lb"),
  22457. name: "Front",
  22458. image: {
  22459. source: "./media/characters/dhari/front.svg",
  22460. extra: 1048 / 946,
  22461. bottom: 0.015
  22462. }
  22463. },
  22464. back: {
  22465. height: math.unit(6 + 3 / 12, "feet"),
  22466. weight: math.unit(519, "lb"),
  22467. name: "Back",
  22468. image: {
  22469. source: "./media/characters/dhari/back.svg",
  22470. extra: 1048 / 931,
  22471. bottom: 0.005
  22472. }
  22473. },
  22474. frontDressed: {
  22475. height: math.unit(6 + 3 / 12, "feet"),
  22476. weight: math.unit(519, "lb"),
  22477. name: "Front (Dressed)",
  22478. image: {
  22479. source: "./media/characters/dhari/front-dressed.svg",
  22480. extra: 1713 / 1546,
  22481. bottom: 0.02
  22482. }
  22483. },
  22484. backDressed: {
  22485. height: math.unit(6 + 3 / 12, "feet"),
  22486. weight: math.unit(519, "lb"),
  22487. name: "Back (Dressed)",
  22488. image: {
  22489. source: "./media/characters/dhari/back-dressed.svg",
  22490. extra: 1699 / 1537,
  22491. bottom: 0.01
  22492. }
  22493. },
  22494. maw: {
  22495. height: math.unit(0.95, "feet"),
  22496. name: "Maw",
  22497. image: {
  22498. source: "./media/characters/dhari/maw.svg"
  22499. }
  22500. },
  22501. wereFront: {
  22502. height: math.unit(12 + 8 / 12, "feet"),
  22503. weight: math.unit(4000, "lb"),
  22504. name: "Front (Were)",
  22505. image: {
  22506. source: "./media/characters/dhari/were-front.svg",
  22507. extra: 1065 / 969,
  22508. bottom: 0.015
  22509. }
  22510. },
  22511. wereBack: {
  22512. height: math.unit(12 + 8 / 12, "feet"),
  22513. weight: math.unit(4000, "lb"),
  22514. name: "Back (Were)",
  22515. image: {
  22516. source: "./media/characters/dhari/were-back.svg",
  22517. extra: 1065 / 969,
  22518. bottom: 0.012
  22519. }
  22520. },
  22521. wereMaw: {
  22522. height: math.unit(0.625, "meters"),
  22523. name: "Maw (Were)",
  22524. image: {
  22525. source: "./media/characters/dhari/were-maw.svg"
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(6 + 3 / 12, "feet"),
  22533. default: true
  22534. },
  22535. ]
  22536. ))
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22539. {
  22540. anthro: {
  22541. height: math.unit(5 + 7 / 12, "feet"),
  22542. weight: math.unit(175, "lb"),
  22543. name: "Anthro",
  22544. image: {
  22545. source: "./media/characters/rena-dyne/anthro.svg",
  22546. extra: 1849 / 1785,
  22547. bottom: 0.005
  22548. }
  22549. },
  22550. taur: {
  22551. height: math.unit(15 + 6 / 12, "feet"),
  22552. weight: math.unit(8000, "lb"),
  22553. name: "Taur",
  22554. image: {
  22555. source: "./media/characters/rena-dyne/taur.svg",
  22556. extra: 2315 / 2234,
  22557. bottom: 0.033
  22558. }
  22559. },
  22560. },
  22561. [
  22562. {
  22563. name: "Normal",
  22564. height: math.unit(5 + 7 / 12, "feet"),
  22565. default: true
  22566. },
  22567. ]
  22568. ))
  22569. characterMakers.push(() => makeCharacter(
  22570. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22571. {
  22572. front: {
  22573. height: math.unit(8, "feet"),
  22574. weight: math.unit(600, "lb"),
  22575. name: "Front",
  22576. image: {
  22577. source: "./media/characters/weremeep/front.svg",
  22578. extra: 970/849,
  22579. bottom: 7/977
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(8, "feet"),
  22587. default: true
  22588. },
  22589. {
  22590. name: "Lorg",
  22591. height: math.unit(12, "feet")
  22592. },
  22593. {
  22594. name: "Oh Lawd She Comin'",
  22595. height: math.unit(20, "feet")
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22601. {
  22602. front: {
  22603. height: math.unit(4, "feet"),
  22604. weight: math.unit(90, "lb"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/reza/front.svg",
  22608. extra: 1183 / 1111,
  22609. bottom: 0.017
  22610. }
  22611. },
  22612. back: {
  22613. height: math.unit(4, "feet"),
  22614. weight: math.unit(90, "lb"),
  22615. name: "Back",
  22616. image: {
  22617. source: "./media/characters/reza/back.svg",
  22618. extra: 1183 / 1111,
  22619. bottom: 0.01
  22620. }
  22621. },
  22622. drake: {
  22623. height: math.unit(30, "feet"),
  22624. weight: math.unit(246960, "lb"),
  22625. name: "Drake",
  22626. image: {
  22627. source: "./media/characters/reza/drake.svg",
  22628. extra: 2350 / 2024,
  22629. bottom: 60.7 / 2403
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(4, "feet"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22643. {
  22644. side: {
  22645. height: math.unit(15, "feet"),
  22646. weight: math.unit(14, "tons"),
  22647. name: "Side",
  22648. image: {
  22649. source: "./media/characters/athea/side.svg",
  22650. extra: 960 / 540,
  22651. bottom: 0.003
  22652. }
  22653. },
  22654. sitting: {
  22655. height: math.unit(6 * 2.85, "feet"),
  22656. weight: math.unit(14, "tons"),
  22657. name: "Sitting",
  22658. image: {
  22659. source: "./media/characters/athea/sitting.svg",
  22660. extra: 621 / 581,
  22661. bottom: 0.075
  22662. }
  22663. },
  22664. maw: {
  22665. height: math.unit(7.59498031496063, "feet"),
  22666. name: "Maw",
  22667. image: {
  22668. source: "./media/characters/athea/maw.svg"
  22669. }
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Lap Cat",
  22675. height: math.unit(2.5, "feet")
  22676. },
  22677. {
  22678. name: "Minimacro",
  22679. height: math.unit(15, "feet"),
  22680. default: true
  22681. },
  22682. {
  22683. name: "Macro",
  22684. height: math.unit(120, "feet")
  22685. },
  22686. {
  22687. name: "Macro+",
  22688. height: math.unit(640, "feet")
  22689. },
  22690. {
  22691. name: "Colossus",
  22692. height: math.unit(2.2, "miles")
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22698. {
  22699. front: {
  22700. height: math.unit(8 + 8 / 12, "feet"),
  22701. weight: math.unit(130, "kg"),
  22702. name: "Front",
  22703. image: {
  22704. source: "./media/characters/seroko/front.svg",
  22705. extra: 1385 / 1280,
  22706. bottom: 0.025
  22707. }
  22708. },
  22709. back: {
  22710. height: math.unit(8 + 8 / 12, "feet"),
  22711. weight: math.unit(130, "kg"),
  22712. name: "Back",
  22713. image: {
  22714. source: "./media/characters/seroko/back.svg",
  22715. extra: 1369 / 1238,
  22716. bottom: 0.018
  22717. }
  22718. },
  22719. frontDressed: {
  22720. height: math.unit(8 + 8 / 12, "feet"),
  22721. weight: math.unit(130, "kg"),
  22722. name: "Front (Dressed)",
  22723. image: {
  22724. source: "./media/characters/seroko/front-dressed.svg",
  22725. extra: 1366 / 1275,
  22726. bottom: 0.03
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Normal",
  22733. height: math.unit(8 + 8 / 12, "feet"),
  22734. default: true
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(5.5, "feet"),
  22743. weight: math.unit(160, "lb"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/quatzi/front.svg",
  22747. extra: 2346 / 2242,
  22748. bottom: 0.015
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Normal",
  22755. height: math.unit(5.5, "feet"),
  22756. default: true
  22757. },
  22758. {
  22759. name: "Big",
  22760. height: math.unit(7.7, "feet")
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(5 + 11 / 12, "feet"),
  22769. weight: math.unit(180, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/sen/front.svg",
  22773. extra: 1321 / 1254,
  22774. bottom: 0.015
  22775. }
  22776. },
  22777. side: {
  22778. height: math.unit(5 + 11 / 12, "feet"),
  22779. weight: math.unit(180, "lb"),
  22780. name: "Side",
  22781. image: {
  22782. source: "./media/characters/sen/side.svg",
  22783. extra: 1321 / 1254,
  22784. bottom: 0.007
  22785. }
  22786. },
  22787. back: {
  22788. height: math.unit(5 + 11 / 12, "feet"),
  22789. weight: math.unit(180, "lb"),
  22790. name: "Back",
  22791. image: {
  22792. source: "./media/characters/sen/back.svg",
  22793. extra: 1321 / 1254
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(5 + 11 / 12, "feet"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(166.6, "cm"),
  22810. weight: math.unit(66.6, "kg"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/fruity/front.svg",
  22814. extra: 1510 / 1386,
  22815. bottom: 0.04
  22816. }
  22817. },
  22818. back: {
  22819. height: math.unit(166.6, "cm"),
  22820. weight: math.unit(66.6, "lb"),
  22821. name: "Back",
  22822. image: {
  22823. source: "./media/characters/fruity/back.svg",
  22824. extra: 1563 / 1435,
  22825. bottom: 0.005
  22826. }
  22827. },
  22828. },
  22829. [
  22830. {
  22831. name: "Normal",
  22832. height: math.unit(166.6, "cm"),
  22833. default: true
  22834. },
  22835. {
  22836. name: "Demonic",
  22837. height: math.unit(166.6, "feet")
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22843. {
  22844. side: {
  22845. height: math.unit(10, "feet"),
  22846. weight: math.unit(500, "lb"),
  22847. name: "Side",
  22848. image: {
  22849. source: "./media/characters/zost/side.svg",
  22850. extra: 2870/2533,
  22851. bottom: 252/3122
  22852. }
  22853. },
  22854. mawFront: {
  22855. height: math.unit(1.08, "meters"),
  22856. name: "Maw (Front)",
  22857. image: {
  22858. source: "./media/characters/zost/maw-front.svg"
  22859. }
  22860. },
  22861. mawSide: {
  22862. height: math.unit(2.66, "feet"),
  22863. name: "Maw (Side)",
  22864. image: {
  22865. source: "./media/characters/zost/maw-side.svg"
  22866. }
  22867. },
  22868. wingspan: {
  22869. height: math.unit(7.4, "feet"),
  22870. name: "Wingspan",
  22871. image: {
  22872. source: "./media/characters/zost/wingspan.svg"
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Normal",
  22879. height: math.unit(10, "feet"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(5 + 4 / 12, "feet"),
  22889. weight: math.unit(120, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/luci/front.svg",
  22893. extra: 1985 / 1884,
  22894. bottom: 0.04
  22895. }
  22896. },
  22897. back: {
  22898. height: math.unit(5 + 4 / 12, "feet"),
  22899. weight: math.unit(120, "lb"),
  22900. name: "Back",
  22901. image: {
  22902. source: "./media/characters/luci/back.svg",
  22903. extra: 1892 / 1791,
  22904. bottom: 0.002
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(5 + 4 / 12, "feet"),
  22912. default: true
  22913. },
  22914. ]
  22915. ))
  22916. characterMakers.push(() => makeCharacter(
  22917. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22918. {
  22919. front: {
  22920. height: math.unit(1500, "feet"),
  22921. weight: math.unit(3.8e6, "tons"),
  22922. name: "Front",
  22923. image: {
  22924. source: "./media/characters/2th/front.svg",
  22925. extra: 3489 / 3350,
  22926. bottom: 0.1
  22927. }
  22928. },
  22929. foot: {
  22930. height: math.unit(461, "feet"),
  22931. name: "Foot",
  22932. image: {
  22933. source: "./media/characters/2th/foot.svg"
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "\"Micro\"",
  22940. height: math.unit(15 + 7 / 12, "feet")
  22941. },
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(1500, "feet"),
  22945. default: true
  22946. },
  22947. {
  22948. name: "Macro",
  22949. height: math.unit(5000, "feet")
  22950. },
  22951. {
  22952. name: "Megamacro",
  22953. height: math.unit(15, "miles")
  22954. },
  22955. {
  22956. name: "Gigamacro",
  22957. height: math.unit(4000, "miles")
  22958. },
  22959. {
  22960. name: "Galactic",
  22961. height: math.unit(50, "AU")
  22962. },
  22963. ]
  22964. ))
  22965. characterMakers.push(() => makeCharacter(
  22966. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22967. {
  22968. front: {
  22969. height: math.unit(5 + 6 / 12, "feet"),
  22970. weight: math.unit(220, "lb"),
  22971. name: "Front",
  22972. image: {
  22973. source: "./media/characters/amethyst/front.svg",
  22974. extra: 2078 / 2040,
  22975. bottom: 0.045
  22976. }
  22977. },
  22978. back: {
  22979. height: math.unit(5 + 6 / 12, "feet"),
  22980. weight: math.unit(220, "lb"),
  22981. name: "Back",
  22982. image: {
  22983. source: "./media/characters/amethyst/back.svg",
  22984. extra: 2021 / 1989,
  22985. bottom: 0.02
  22986. }
  22987. },
  22988. },
  22989. [
  22990. {
  22991. name: "Normal",
  22992. height: math.unit(5 + 6 / 12, "feet"),
  22993. default: true
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22999. {
  23000. front: {
  23001. height: math.unit(4 + 11 / 12, "feet"),
  23002. weight: math.unit(120, "lb"),
  23003. name: "Front",
  23004. image: {
  23005. source: "./media/characters/yumi-akiyama/front.svg",
  23006. extra: 1327 / 1235,
  23007. bottom: 0.02
  23008. }
  23009. },
  23010. back: {
  23011. height: math.unit(4 + 11 / 12, "feet"),
  23012. weight: math.unit(120, "lb"),
  23013. name: "Back",
  23014. image: {
  23015. source: "./media/characters/yumi-akiyama/back.svg",
  23016. extra: 1287 / 1245,
  23017. bottom: 0.002
  23018. }
  23019. },
  23020. },
  23021. [
  23022. {
  23023. name: "Galactic",
  23024. height: math.unit(50, "galaxies"),
  23025. default: true
  23026. },
  23027. {
  23028. name: "Universal",
  23029. height: math.unit(100, "universes")
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23035. {
  23036. front: {
  23037. height: math.unit(8, "feet"),
  23038. weight: math.unit(500, "lb"),
  23039. name: "Front",
  23040. image: {
  23041. source: "./media/characters/rifter-yrmori/front.svg",
  23042. extra: 1180 / 1125,
  23043. bottom: 0.02
  23044. }
  23045. },
  23046. back: {
  23047. height: math.unit(8, "feet"),
  23048. weight: math.unit(500, "lb"),
  23049. name: "Back",
  23050. image: {
  23051. source: "./media/characters/rifter-yrmori/back.svg",
  23052. extra: 1190 / 1145,
  23053. bottom: 0.001
  23054. }
  23055. },
  23056. wings: {
  23057. height: math.unit(7.75, "feet"),
  23058. weight: math.unit(500, "lb"),
  23059. name: "Wings",
  23060. image: {
  23061. source: "./media/characters/rifter-yrmori/wings.svg",
  23062. extra: 1357 / 1285
  23063. }
  23064. },
  23065. maw: {
  23066. height: math.unit(0.8, "feet"),
  23067. name: "Maw",
  23068. image: {
  23069. source: "./media/characters/rifter-yrmori/maw.svg"
  23070. }
  23071. },
  23072. mawfront: {
  23073. height: math.unit(1.45, "feet"),
  23074. name: "Maw (Front)",
  23075. image: {
  23076. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23077. }
  23078. },
  23079. },
  23080. [
  23081. {
  23082. name: "Normal",
  23083. height: math.unit(8, "feet"),
  23084. default: true
  23085. },
  23086. {
  23087. name: "Macro",
  23088. height: math.unit(42, "meters")
  23089. },
  23090. ]
  23091. ))
  23092. characterMakers.push(() => makeCharacter(
  23093. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23094. {
  23095. were: {
  23096. height: math.unit(25 + 6 / 12, "feet"),
  23097. weight: math.unit(10000, "lb"),
  23098. name: "Were",
  23099. image: {
  23100. source: "./media/characters/tahajin/were.svg",
  23101. extra: 801 / 770,
  23102. bottom: 0.042
  23103. }
  23104. },
  23105. aquatic: {
  23106. height: math.unit(6 + 4 / 12, "feet"),
  23107. weight: math.unit(160, "lb"),
  23108. name: "Aquatic",
  23109. image: {
  23110. source: "./media/characters/tahajin/aquatic.svg",
  23111. extra: 572 / 542,
  23112. bottom: 0.04
  23113. }
  23114. },
  23115. chow: {
  23116. height: math.unit(8 + 11 / 12, "feet"),
  23117. weight: math.unit(450, "lb"),
  23118. name: "Chow",
  23119. image: {
  23120. source: "./media/characters/tahajin/chow.svg",
  23121. extra: 660 / 640,
  23122. bottom: 0.015
  23123. }
  23124. },
  23125. demiNaga: {
  23126. height: math.unit(6 + 8 / 12, "feet"),
  23127. weight: math.unit(300, "lb"),
  23128. name: "Demi Naga",
  23129. image: {
  23130. source: "./media/characters/tahajin/demi-naga.svg",
  23131. extra: 643 / 615,
  23132. bottom: 0.1
  23133. }
  23134. },
  23135. data: {
  23136. height: math.unit(5, "inches"),
  23137. weight: math.unit(0.1, "lb"),
  23138. name: "Data",
  23139. image: {
  23140. source: "./media/characters/tahajin/data.svg"
  23141. }
  23142. },
  23143. fluu: {
  23144. height: math.unit(5 + 7 / 12, "feet"),
  23145. weight: math.unit(140, "lb"),
  23146. name: "Fluu",
  23147. image: {
  23148. source: "./media/characters/tahajin/fluu.svg",
  23149. extra: 628 / 592,
  23150. bottom: 0.02
  23151. }
  23152. },
  23153. starWarrior: {
  23154. height: math.unit(4 + 5 / 12, "feet"),
  23155. weight: math.unit(50, "lb"),
  23156. name: "Star Warrior",
  23157. image: {
  23158. source: "./media/characters/tahajin/star-warrior.svg"
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Normal",
  23165. height: math.unit(25 + 6 / 12, "feet"),
  23166. default: true
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(8, "feet"),
  23175. weight: math.unit(350, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/gabira/front.svg",
  23179. extra: 1261/1154,
  23180. bottom: 51/1312
  23181. }
  23182. },
  23183. back: {
  23184. height: math.unit(8, "feet"),
  23185. weight: math.unit(350, "lb"),
  23186. name: "Back",
  23187. image: {
  23188. source: "./media/characters/gabira/back.svg",
  23189. extra: 1265/1163,
  23190. bottom: 46/1311
  23191. }
  23192. },
  23193. head: {
  23194. height: math.unit(2.85, "feet"),
  23195. name: "Head",
  23196. image: {
  23197. source: "./media/characters/gabira/head.svg"
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(8, "feet"),
  23205. default: true
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23211. {
  23212. front: {
  23213. height: math.unit(5 + 3 / 12, "feet"),
  23214. weight: math.unit(137, "lb"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/sasha-katraine/front.svg",
  23218. extra: 1745/1694,
  23219. bottom: 37/1782
  23220. }
  23221. },
  23222. back: {
  23223. height: math.unit(5 + 3 / 12, "feet"),
  23224. weight: math.unit(137, "lb"),
  23225. name: "Back",
  23226. image: {
  23227. source: "./media/characters/sasha-katraine/back.svg",
  23228. extra: 1776/1699,
  23229. bottom: 26/1802
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Micro",
  23236. height: math.unit(5, "inches")
  23237. },
  23238. {
  23239. name: "Normal",
  23240. height: math.unit(5 + 3 / 12, "feet"),
  23241. default: true
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23247. {
  23248. side: {
  23249. height: math.unit(4, "inches"),
  23250. weight: math.unit(200, "grams"),
  23251. name: "Side",
  23252. image: {
  23253. source: "./media/characters/der/side.svg",
  23254. extra: 719 / 400,
  23255. bottom: 30.6 / 749.9187
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Micro",
  23262. height: math.unit(4, "inches"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23269. {
  23270. side: {
  23271. height: math.unit(30, "meters"),
  23272. weight: math.unit(700, "tonnes"),
  23273. name: "Side",
  23274. image: {
  23275. source: "./media/characters/fixerdragon/side.svg",
  23276. extra: (1293.0514 - 116.03) / 1106.86,
  23277. bottom: 116.03 / 1293.0514
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Planck",
  23284. height: math.unit(1.6e-35, "meters")
  23285. },
  23286. {
  23287. name: "Micro",
  23288. height: math.unit(0.4, "meters")
  23289. },
  23290. {
  23291. name: "Normal",
  23292. height: math.unit(30, "meters"),
  23293. default: true
  23294. },
  23295. {
  23296. name: "Megamacro",
  23297. height: math.unit(1.2, "megameters")
  23298. },
  23299. {
  23300. name: "Teramacro",
  23301. height: math.unit(130, "terameters")
  23302. },
  23303. {
  23304. name: "Yottamacro",
  23305. height: math.unit(6200, "yottameters")
  23306. },
  23307. ]
  23308. ));
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23311. {
  23312. front: {
  23313. height: math.unit(8, "feet"),
  23314. weight: math.unit(250, "lb"),
  23315. name: "Front",
  23316. image: {
  23317. source: "./media/characters/kite/front.svg",
  23318. extra: 2796 / 2659,
  23319. bottom: 0.002
  23320. }
  23321. },
  23322. },
  23323. [
  23324. {
  23325. name: "Normal",
  23326. height: math.unit(8, "feet"),
  23327. default: true
  23328. },
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(360, "feet")
  23332. },
  23333. {
  23334. name: "Megamacro",
  23335. height: math.unit(1500, "feet")
  23336. },
  23337. ]
  23338. ))
  23339. characterMakers.push(() => makeCharacter(
  23340. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23341. {
  23342. front: {
  23343. height: math.unit(5 + 11/12, "feet"),
  23344. weight: math.unit(170, "lb"),
  23345. name: "Front",
  23346. image: {
  23347. source: "./media/characters/poojawa-vynar/front.svg",
  23348. extra: 1735/1585,
  23349. bottom: 96/1831
  23350. }
  23351. },
  23352. back: {
  23353. height: math.unit(5 + 11/12, "feet"),
  23354. weight: math.unit(170, "lb"),
  23355. name: "Back",
  23356. image: {
  23357. source: "./media/characters/poojawa-vynar/back.svg",
  23358. extra: 1749/1607,
  23359. bottom: 28/1777
  23360. }
  23361. },
  23362. male: {
  23363. height: math.unit(5 + 11/12, "feet"),
  23364. weight: math.unit(170, "lb"),
  23365. name: "Male",
  23366. image: {
  23367. source: "./media/characters/poojawa-vynar/male.svg",
  23368. extra: 1855/1713,
  23369. bottom: 63/1918
  23370. }
  23371. },
  23372. taur: {
  23373. height: math.unit(5 + 11/12, "feet"),
  23374. weight: math.unit(170, "lb"),
  23375. name: "Taur",
  23376. image: {
  23377. source: "./media/characters/poojawa-vynar/taur.svg",
  23378. extra: 1151/1059,
  23379. bottom: 356/1507
  23380. }
  23381. },
  23382. frontDressed: {
  23383. height: math.unit(5 + 11/12, "feet"),
  23384. weight: math.unit(170, "lb"),
  23385. name: "Front (Dressed)",
  23386. image: {
  23387. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23388. extra: 1735/1585,
  23389. bottom: 96/1831
  23390. }
  23391. },
  23392. backDressed: {
  23393. height: math.unit(5 + 11/12, "feet"),
  23394. weight: math.unit(170, "lb"),
  23395. name: "Back (Dressed)",
  23396. image: {
  23397. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23398. extra: 1749/1607,
  23399. bottom: 28/1777
  23400. }
  23401. },
  23402. maleDressed: {
  23403. height: math.unit(5 + 11/12, "feet"),
  23404. weight: math.unit(170, "lb"),
  23405. name: "Male (Dressed)",
  23406. image: {
  23407. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23408. extra: 1855/1713,
  23409. bottom: 63/1918
  23410. }
  23411. },
  23412. taurDressed: {
  23413. height: math.unit(5 + 11/12, "feet"),
  23414. weight: math.unit(170, "lb"),
  23415. name: "Taur (Dressed)",
  23416. image: {
  23417. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23418. extra: 1151/1059,
  23419. bottom: 356/1507
  23420. }
  23421. },
  23422. maw: {
  23423. height: math.unit(1.46, "feet"),
  23424. name: "Maw",
  23425. image: {
  23426. source: "./media/characters/poojawa-vynar/maw.svg"
  23427. }
  23428. },
  23429. head: {
  23430. height: math.unit(2.34, "feet"),
  23431. name: "Head",
  23432. image: {
  23433. source: "./media/characters/poojawa-vynar/head.svg"
  23434. }
  23435. },
  23436. paw: {
  23437. height: math.unit(1.61, "feet"),
  23438. name: "Paw",
  23439. image: {
  23440. source: "./media/characters/poojawa-vynar/paw.svg"
  23441. }
  23442. },
  23443. pawToering: {
  23444. height: math.unit(1.72, "feet"),
  23445. name: "Paw (Toering)",
  23446. image: {
  23447. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23448. }
  23449. },
  23450. toering: {
  23451. height: math.unit(2.9, "inches"),
  23452. name: "Toering",
  23453. image: {
  23454. source: "./media/characters/poojawa-vynar/toering.svg"
  23455. }
  23456. },
  23457. shaft: {
  23458. height: math.unit(0.625, "feet"),
  23459. name: "Shaft",
  23460. image: {
  23461. source: "./media/characters/poojawa-vynar/shaft.svg"
  23462. }
  23463. },
  23464. spade: {
  23465. height: math.unit(0.42, "feet"),
  23466. name: "Spade",
  23467. image: {
  23468. source: "./media/characters/poojawa-vynar/spade.svg"
  23469. }
  23470. },
  23471. },
  23472. [
  23473. {
  23474. name: "Shortstack",
  23475. height: math.unit(4, "feet")
  23476. },
  23477. {
  23478. name: "Normal",
  23479. height: math.unit(5 + 11 / 12, "feet"),
  23480. default: true
  23481. },
  23482. {
  23483. name: "Tauric",
  23484. height: math.unit(4, "meters")
  23485. },
  23486. ]
  23487. ))
  23488. characterMakers.push(() => makeCharacter(
  23489. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23490. {
  23491. front: {
  23492. height: math.unit(293, "meters"),
  23493. weight: math.unit(70400, "tons"),
  23494. name: "Front",
  23495. image: {
  23496. source: "./media/characters/violette/front.svg",
  23497. extra: 1227 / 1180,
  23498. bottom: 0.005
  23499. }
  23500. },
  23501. back: {
  23502. height: math.unit(293, "meters"),
  23503. weight: math.unit(70400, "tons"),
  23504. name: "Back",
  23505. image: {
  23506. source: "./media/characters/violette/back.svg",
  23507. extra: 1227 / 1180,
  23508. bottom: 0.005
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(293, "meters"),
  23516. default: true
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23522. {
  23523. front: {
  23524. height: math.unit(1050, "feet"),
  23525. weight: math.unit(200000, "tons"),
  23526. name: "Front",
  23527. image: {
  23528. source: "./media/characters/alessandra/front.svg",
  23529. extra: 960 / 912,
  23530. bottom: 0.06
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(1050, "feet")
  23538. },
  23539. {
  23540. name: "Macro+",
  23541. height: math.unit(900, "meters"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(5, "feet"),
  23551. weight: math.unit(187, "lb"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/person/front.svg",
  23555. extra: 3087 / 2945,
  23556. bottom: 91 / 3181
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Micro",
  23563. height: math.unit(3, "inches")
  23564. },
  23565. {
  23566. name: "Normal",
  23567. height: math.unit(5, "feet"),
  23568. default: true
  23569. },
  23570. {
  23571. name: "Macro",
  23572. height: math.unit(90, "feet")
  23573. },
  23574. {
  23575. name: "Max Size",
  23576. height: math.unit(280, "feet")
  23577. },
  23578. ]
  23579. ))
  23580. characterMakers.push(() => makeCharacter(
  23581. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23582. {
  23583. front: {
  23584. height: math.unit(4.5, "meters"),
  23585. weight: math.unit(3200, "lb"),
  23586. name: "Front",
  23587. image: {
  23588. source: "./media/characters/ty/front.svg",
  23589. extra: 1038 / 960,
  23590. bottom: 31.156 / 1068
  23591. }
  23592. },
  23593. back: {
  23594. height: math.unit(4.5, "meters"),
  23595. weight: math.unit(3200, "lb"),
  23596. name: "Back",
  23597. image: {
  23598. source: "./media/characters/ty/back.svg",
  23599. extra: 1044 / 966,
  23600. bottom: 7.48 / 1049
  23601. }
  23602. },
  23603. },
  23604. [
  23605. {
  23606. name: "Normal",
  23607. height: math.unit(4.5, "meters"),
  23608. default: true
  23609. },
  23610. ]
  23611. ))
  23612. characterMakers.push(() => makeCharacter(
  23613. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23614. {
  23615. front: {
  23616. height: math.unit(5 + 4 / 12, "feet"),
  23617. weight: math.unit(115, "lb"),
  23618. name: "Front",
  23619. image: {
  23620. source: "./media/characters/rocky/front.svg",
  23621. extra: 1012 / 975,
  23622. bottom: 54 / 1066
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Normal",
  23629. height: math.unit(5 + 4 / 12, "feet"),
  23630. default: true
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23636. {
  23637. upright: {
  23638. height: math.unit(6, "meters"),
  23639. weight: math.unit(4000, "kg"),
  23640. name: "Upright",
  23641. image: {
  23642. source: "./media/characters/ruin/upright.svg",
  23643. extra: 668 / 661,
  23644. bottom: 42 / 799.8396
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Normal",
  23651. height: math.unit(6, "meters"),
  23652. default: true
  23653. },
  23654. ]
  23655. ))
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23658. {
  23659. front: {
  23660. height: math.unit(5, "feet"),
  23661. weight: math.unit(106, "lb"),
  23662. name: "Front",
  23663. image: {
  23664. source: "./media/characters/robin/front.svg",
  23665. extra: 862 / 799,
  23666. bottom: 42.4 / 914.8856
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Normal",
  23673. height: math.unit(5, "feet"),
  23674. default: true
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23680. {
  23681. side: {
  23682. height: math.unit(3, "feet"),
  23683. weight: math.unit(225, "lb"),
  23684. name: "Side",
  23685. image: {
  23686. source: "./media/characters/saian/side.svg",
  23687. extra: 566 / 356,
  23688. bottom: 79.7 / 643
  23689. }
  23690. },
  23691. maw: {
  23692. height: math.unit(2.85, "feet"),
  23693. name: "Maw",
  23694. image: {
  23695. source: "./media/characters/saian/maw.svg"
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(3, "feet"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23709. {
  23710. side: {
  23711. height: math.unit(8, "feet"),
  23712. weight: math.unit(300, "lb"),
  23713. name: "Side",
  23714. image: {
  23715. source: "./media/characters/equus-silvermane/side.svg",
  23716. extra: 2176 / 2050,
  23717. bottom: 65.7 / 2245
  23718. }
  23719. },
  23720. front: {
  23721. height: math.unit(8, "feet"),
  23722. weight: math.unit(300, "lb"),
  23723. name: "Front",
  23724. image: {
  23725. source: "./media/characters/equus-silvermane/front.svg",
  23726. extra: 4633 / 4400,
  23727. bottom: 71.3 / 4706.915
  23728. }
  23729. },
  23730. sideStepping: {
  23731. height: math.unit(8, "feet"),
  23732. weight: math.unit(300, "lb"),
  23733. name: "Side (Stepping)",
  23734. image: {
  23735. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23736. extra: 1968 / 1860,
  23737. bottom: 16.4 / 1989
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Normal",
  23744. height: math.unit(8, "feet")
  23745. },
  23746. {
  23747. name: "Minimacro",
  23748. height: math.unit(75, "feet"),
  23749. default: true
  23750. },
  23751. {
  23752. name: "Macro",
  23753. height: math.unit(150, "feet")
  23754. },
  23755. {
  23756. name: "Macro+",
  23757. height: math.unit(1000, "feet")
  23758. },
  23759. {
  23760. name: "Megamacro",
  23761. height: math.unit(1, "mile")
  23762. },
  23763. ]
  23764. ))
  23765. characterMakers.push(() => makeCharacter(
  23766. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23767. {
  23768. side: {
  23769. height: math.unit(20, "feet"),
  23770. weight: math.unit(30000, "kg"),
  23771. name: "Side",
  23772. image: {
  23773. source: "./media/characters/windar/side.svg",
  23774. extra: 1491 / 1248,
  23775. bottom: 82.56 / 1568
  23776. }
  23777. },
  23778. },
  23779. [
  23780. {
  23781. name: "Normal",
  23782. height: math.unit(20, "feet"),
  23783. default: true
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23789. {
  23790. side: {
  23791. height: math.unit(15.66, "feet"),
  23792. weight: math.unit(150, "lb"),
  23793. name: "Side",
  23794. image: {
  23795. source: "./media/characters/melody/side.svg",
  23796. extra: 1097 / 944,
  23797. bottom: 11.8 / 1109
  23798. }
  23799. },
  23800. sideOutfit: {
  23801. height: math.unit(15.66, "feet"),
  23802. weight: math.unit(150, "lb"),
  23803. name: "Side (Outfit)",
  23804. image: {
  23805. source: "./media/characters/melody/side-outfit.svg",
  23806. extra: 1097 / 944,
  23807. bottom: 11.8 / 1109
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Normal",
  23814. height: math.unit(15.66, "feet"),
  23815. default: true
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23821. {
  23822. armoredFront: {
  23823. height: math.unit(8, "feet"),
  23824. weight: math.unit(325, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/windera/armored-front.svg",
  23828. extra: 1830/1598,
  23829. bottom: 151/1981
  23830. },
  23831. form: "armored",
  23832. default: true
  23833. },
  23834. macroFront: {
  23835. height: math.unit(70, "feet"),
  23836. weight: math.unit(315453, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/windera/macro-front.svg",
  23840. extra: 963/883,
  23841. bottom: 23/986
  23842. },
  23843. form: "macro",
  23844. default: true
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Normal",
  23850. height: math.unit(8, "feet"),
  23851. default: true,
  23852. form: "armored"
  23853. },
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(70, "feet"),
  23857. default: true,
  23858. form: "macro"
  23859. },
  23860. ],
  23861. {
  23862. "armored": {
  23863. name: "Armored",
  23864. default: true
  23865. },
  23866. "macro": {
  23867. name: "Macro",
  23868. },
  23869. }
  23870. ))
  23871. characterMakers.push(() => makeCharacter(
  23872. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23873. {
  23874. front: {
  23875. height: math.unit(28.75, "feet"),
  23876. weight: math.unit(2000, "kg"),
  23877. name: "Front",
  23878. image: {
  23879. source: "./media/characters/sonear/front.svg",
  23880. extra: 1041.1 / 964.9,
  23881. bottom: 53.7 / 1096.6
  23882. }
  23883. },
  23884. },
  23885. [
  23886. {
  23887. name: "Normal",
  23888. height: math.unit(28.75, "feet"),
  23889. default: true
  23890. },
  23891. ]
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23895. {
  23896. side: {
  23897. height: math.unit(25.5, "feet"),
  23898. weight: math.unit(23000, "kg"),
  23899. name: "Side",
  23900. image: {
  23901. source: "./media/characters/kanara/side.svg"
  23902. }
  23903. },
  23904. },
  23905. [
  23906. {
  23907. name: "Normal",
  23908. height: math.unit(25.5, "feet"),
  23909. default: true
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23915. {
  23916. side: {
  23917. height: math.unit(10, "feet"),
  23918. weight: math.unit(1000, "kg"),
  23919. name: "Side",
  23920. image: {
  23921. source: "./media/characters/ereus/side.svg",
  23922. extra: 1157 / 959,
  23923. bottom: 153 / 1312.5
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Normal",
  23930. height: math.unit(10, "feet"),
  23931. default: true
  23932. },
  23933. ]
  23934. ))
  23935. characterMakers.push(() => makeCharacter(
  23936. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23937. {
  23938. side: {
  23939. height: math.unit(4.5, "feet"),
  23940. weight: math.unit(500, "lb"),
  23941. name: "Side",
  23942. image: {
  23943. source: "./media/characters/e-ter/side.svg",
  23944. extra: 1550 / 1248,
  23945. bottom: 146 / 1694
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(4.5, "feet"),
  23953. default: true
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23959. {
  23960. side: {
  23961. height: math.unit(9.7, "feet"),
  23962. weight: math.unit(4000, "kg"),
  23963. name: "Side",
  23964. image: {
  23965. source: "./media/characters/yamie/side.svg"
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Normal",
  23972. height: math.unit(9.7, "feet"),
  23973. default: true
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23979. {
  23980. front: {
  23981. height: math.unit(50, "feet"),
  23982. weight: math.unit(50000, "kg"),
  23983. name: "Front",
  23984. image: {
  23985. source: "./media/characters/anders/front.svg",
  23986. extra: 570 / 539,
  23987. bottom: 14.7 / 586.7
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Large",
  23994. height: math.unit(50, "feet")
  23995. },
  23996. {
  23997. name: "Macro",
  23998. height: math.unit(2000, "feet"),
  23999. default: true
  24000. },
  24001. {
  24002. name: "Megamacro",
  24003. height: math.unit(12, "miles")
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24009. {
  24010. front: {
  24011. height: math.unit(7 + 2 / 12, "feet"),
  24012. weight: math.unit(300, "lb"),
  24013. name: "Front",
  24014. image: {
  24015. source: "./media/characters/reban/front.svg",
  24016. extra: 1287/1212,
  24017. bottom: 148/1435
  24018. }
  24019. },
  24020. head: {
  24021. height: math.unit(1.95, "feet"),
  24022. name: "Head",
  24023. image: {
  24024. source: "./media/characters/reban/head.svg"
  24025. }
  24026. },
  24027. maw: {
  24028. height: math.unit(0.95, "feet"),
  24029. name: "Maw",
  24030. image: {
  24031. source: "./media/characters/reban/maw.svg"
  24032. }
  24033. },
  24034. foot: {
  24035. height: math.unit(1.65, "feet"),
  24036. name: "Foot",
  24037. image: {
  24038. source: "./media/characters/reban/foot.svg"
  24039. }
  24040. },
  24041. dick: {
  24042. height: math.unit(7 / 5, "feet"),
  24043. name: "Dick",
  24044. image: {
  24045. source: "./media/characters/reban/dick.svg"
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Natural Height",
  24052. height: math.unit(7 + 2 / 12, "feet")
  24053. },
  24054. {
  24055. name: "Macro",
  24056. height: math.unit(500, "feet"),
  24057. default: true
  24058. },
  24059. {
  24060. name: "Canon Height",
  24061. height: math.unit(50, "AU")
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24067. {
  24068. front: {
  24069. height: math.unit(6, "feet"),
  24070. weight: math.unit(150, "lb"),
  24071. name: "Front",
  24072. image: {
  24073. source: "./media/characters/terrance-keayes/front.svg",
  24074. extra: 1.005,
  24075. bottom: 151 / 1615
  24076. }
  24077. },
  24078. side: {
  24079. height: math.unit(6, "feet"),
  24080. weight: math.unit(150, "lb"),
  24081. name: "Side",
  24082. image: {
  24083. source: "./media/characters/terrance-keayes/side.svg",
  24084. extra: 1.005,
  24085. bottom: 129.4 / 1544
  24086. }
  24087. },
  24088. back: {
  24089. height: math.unit(6, "feet"),
  24090. weight: math.unit(150, "lb"),
  24091. name: "Back",
  24092. image: {
  24093. source: "./media/characters/terrance-keayes/back.svg",
  24094. extra: 1.005,
  24095. bottom: 58.4 / 1557.3
  24096. }
  24097. },
  24098. dick: {
  24099. height: math.unit(6 * 0.208, "feet"),
  24100. name: "Dick",
  24101. image: {
  24102. source: "./media/characters/terrance-keayes/dick.svg"
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Canon Height",
  24109. height: math.unit(35, "miles"),
  24110. default: true
  24111. },
  24112. ]
  24113. ))
  24114. characterMakers.push(() => makeCharacter(
  24115. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24116. {
  24117. front: {
  24118. height: math.unit(6, "feet"),
  24119. weight: math.unit(150, "lb"),
  24120. name: "Front",
  24121. image: {
  24122. source: "./media/characters/ofelia/front.svg",
  24123. extra: 1130/1117,
  24124. bottom: 91/1221
  24125. }
  24126. },
  24127. back: {
  24128. height: math.unit(6, "feet"),
  24129. weight: math.unit(150, "lb"),
  24130. name: "Back",
  24131. image: {
  24132. source: "./media/characters/ofelia/back.svg",
  24133. extra: 1172/1159,
  24134. bottom: 28/1200
  24135. }
  24136. },
  24137. maw: {
  24138. height: math.unit(1, "feet"),
  24139. name: "Maw",
  24140. image: {
  24141. source: "./media/characters/ofelia/maw.svg"
  24142. }
  24143. },
  24144. foot: {
  24145. height: math.unit(1.949, "feet"),
  24146. name: "Foot",
  24147. image: {
  24148. source: "./media/characters/ofelia/foot.svg"
  24149. }
  24150. },
  24151. },
  24152. [
  24153. {
  24154. name: "Canon Height",
  24155. height: math.unit(2000, "miles"),
  24156. default: true
  24157. },
  24158. ]
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24162. {
  24163. front: {
  24164. height: math.unit(6, "feet"),
  24165. weight: math.unit(150, "lb"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/samuel/front.svg",
  24169. extra: 265 / 258,
  24170. bottom: 2 / 266.1566
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Macro",
  24177. height: math.unit(100, "feet"),
  24178. default: true
  24179. },
  24180. {
  24181. name: "Full Size",
  24182. height: math.unit(1000, "miles")
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(6, "feet"),
  24191. weight: math.unit(300, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/beishir-kiel/front.svg",
  24195. extra: 569 / 547,
  24196. bottom: 41.9 / 609
  24197. }
  24198. },
  24199. maw: {
  24200. height: math.unit(6 * 0.202, "feet"),
  24201. name: "Maw",
  24202. image: {
  24203. source: "./media/characters/beishir-kiel/maw.svg"
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Macro",
  24210. height: math.unit(300, "feet"),
  24211. default: true
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24217. {
  24218. front: {
  24219. height: math.unit(5 + 7/12, "feet"),
  24220. weight: math.unit(120, "lb"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/logan-grey/front.svg",
  24224. extra: 1836/1738,
  24225. bottom: 108/1944
  24226. }
  24227. },
  24228. back: {
  24229. height: math.unit(5 + 7/12, "feet"),
  24230. weight: math.unit(120, "lb"),
  24231. name: "Back",
  24232. image: {
  24233. source: "./media/characters/logan-grey/back.svg",
  24234. extra: 1880/1794,
  24235. bottom: 24/1904
  24236. }
  24237. },
  24238. frontSfw: {
  24239. height: math.unit(5 + 7/12, "feet"),
  24240. weight: math.unit(120, "lb"),
  24241. name: "Front (SFW)",
  24242. image: {
  24243. source: "./media/characters/logan-grey/front-sfw.svg",
  24244. extra: 1836/1738,
  24245. bottom: 108/1944
  24246. }
  24247. },
  24248. backSfw: {
  24249. height: math.unit(5 + 7/12, "feet"),
  24250. weight: math.unit(120, "lb"),
  24251. name: "Back (SFW)",
  24252. image: {
  24253. source: "./media/characters/logan-grey/back-sfw.svg",
  24254. extra: 1880/1794,
  24255. bottom: 24/1904
  24256. }
  24257. },
  24258. hands: {
  24259. height: math.unit(0.84, "feet"),
  24260. name: "Hands",
  24261. image: {
  24262. source: "./media/characters/logan-grey/hands.svg"
  24263. }
  24264. },
  24265. paws: {
  24266. height: math.unit(0.72, "feet"),
  24267. name: "Paws",
  24268. image: {
  24269. source: "./media/characters/logan-grey/paws.svg"
  24270. }
  24271. },
  24272. cock: {
  24273. height: math.unit(1.45, "feet"),
  24274. name: "Cock",
  24275. image: {
  24276. source: "./media/characters/logan-grey/cock.svg"
  24277. }
  24278. },
  24279. cockAlt: {
  24280. height: math.unit(1.437, "feet"),
  24281. name: "Cock (alt)",
  24282. image: {
  24283. source: "./media/characters/logan-grey/cock-alt.svg"
  24284. }
  24285. },
  24286. },
  24287. [
  24288. {
  24289. name: "Normal",
  24290. height: math.unit(5 + 8 / 12, "feet")
  24291. },
  24292. {
  24293. name: "The 500 Foot Femboy",
  24294. height: math.unit(500, "feet"),
  24295. default: true
  24296. },
  24297. {
  24298. name: "Megmacro",
  24299. height: math.unit(20, "miles")
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(8 + 2 / 12, "feet"),
  24308. weight: math.unit(275, "lb"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/draganta/front.svg",
  24312. extra: 1177 / 1135,
  24313. bottom: 33.46 / 1212.1
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(8 + 6 / 12, "feet"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Macro",
  24325. height: math.unit(150, "feet")
  24326. },
  24327. {
  24328. name: "Megamacro",
  24329. height: math.unit(1000, "miles")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(1.72, "m"),
  24338. weight: math.unit(80, "lb"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/voski/front.svg",
  24342. extra: 2076.22 / 2022.4,
  24343. bottom: 102.7 / 2177.3866
  24344. }
  24345. },
  24346. frontFlaccid: {
  24347. height: math.unit(1.72, "m"),
  24348. weight: math.unit(80, "lb"),
  24349. name: "Front (Flaccid)",
  24350. image: {
  24351. source: "./media/characters/voski/front-flaccid.svg",
  24352. extra: 2076.22 / 2022.4,
  24353. bottom: 102.7 / 2177.3866
  24354. }
  24355. },
  24356. frontErect: {
  24357. height: math.unit(1.72, "m"),
  24358. weight: math.unit(80, "lb"),
  24359. name: "Front (Erect)",
  24360. image: {
  24361. source: "./media/characters/voski/front-erect.svg",
  24362. extra: 2076.22 / 2022.4,
  24363. bottom: 102.7 / 2177.3866
  24364. }
  24365. },
  24366. back: {
  24367. height: math.unit(1.72, "m"),
  24368. weight: math.unit(80, "lb"),
  24369. name: "Back",
  24370. image: {
  24371. source: "./media/characters/voski/back.svg",
  24372. extra: 2104 / 2051,
  24373. bottom: 10.45 / 2113.63
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Normal",
  24380. height: math.unit(1.72, "m")
  24381. },
  24382. {
  24383. name: "Macro",
  24384. height: math.unit(55, "m"),
  24385. default: true
  24386. },
  24387. {
  24388. name: "Macro+",
  24389. height: math.unit(300, "m")
  24390. },
  24391. {
  24392. name: "Macro++",
  24393. height: math.unit(700, "m")
  24394. },
  24395. {
  24396. name: "Macro+++",
  24397. height: math.unit(4500, "m")
  24398. },
  24399. {
  24400. name: "Macro++++",
  24401. height: math.unit(45, "km")
  24402. },
  24403. {
  24404. name: "Macro+++++",
  24405. height: math.unit(1220, "km")
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(2.3, "m"),
  24414. weight: math.unit(304, "kg"),
  24415. name: "Front",
  24416. image: {
  24417. source: "./media/characters/icowom-lee/front.svg",
  24418. extra: 985 / 955,
  24419. bottom: 25.4 / 1012
  24420. }
  24421. },
  24422. fronttentacles: {
  24423. height: math.unit(2.3, "m"),
  24424. weight: math.unit(304, "kg"),
  24425. name: "Front-tentacles",
  24426. image: {
  24427. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24428. extra: 985 / 955,
  24429. bottom: 25.4 / 1012
  24430. }
  24431. },
  24432. back: {
  24433. height: math.unit(2.3, "m"),
  24434. weight: math.unit(304, "kg"),
  24435. name: "Back",
  24436. image: {
  24437. source: "./media/characters/icowom-lee/back.svg",
  24438. extra: 975 / 954,
  24439. bottom: 9.5 / 985
  24440. }
  24441. },
  24442. backtentacles: {
  24443. height: math.unit(2.3, "m"),
  24444. weight: math.unit(304, "kg"),
  24445. name: "Back-tentacles",
  24446. image: {
  24447. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24448. extra: 975 / 954,
  24449. bottom: 9.5 / 985
  24450. }
  24451. },
  24452. frontDressed: {
  24453. height: math.unit(2.3, "m"),
  24454. weight: math.unit(304, "kg"),
  24455. name: "Front (Dressed)",
  24456. image: {
  24457. source: "./media/characters/icowom-lee/front-dressed.svg",
  24458. extra: 3076 / 2933,
  24459. bottom: 51.4 / 3125.1889
  24460. }
  24461. },
  24462. rump: {
  24463. height: math.unit(0.776, "meters"),
  24464. name: "Rump",
  24465. image: {
  24466. source: "./media/characters/icowom-lee/rump.svg"
  24467. }
  24468. },
  24469. genitals: {
  24470. height: math.unit(0.78, "meters"),
  24471. name: "Genitals",
  24472. image: {
  24473. source: "./media/characters/icowom-lee/genitals.svg"
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Normal",
  24480. height: math.unit(2.3, "meters"),
  24481. default: true
  24482. },
  24483. {
  24484. name: "Macro",
  24485. height: math.unit(94, "meters"),
  24486. default: true
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24492. {
  24493. front: {
  24494. height: math.unit(22, "meters"),
  24495. weight: math.unit(21000, "kg"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/shock-diamond/front.svg",
  24499. extra: 2204 / 2053,
  24500. bottom: 65 / 2239.47
  24501. }
  24502. },
  24503. frontNude: {
  24504. height: math.unit(22, "meters"),
  24505. weight: math.unit(21000, "kg"),
  24506. name: "Front (Nude)",
  24507. image: {
  24508. source: "./media/characters/shock-diamond/front-nude.svg",
  24509. extra: 2514 / 2285,
  24510. bottom: 13 / 2527.56
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(3, "meters")
  24518. },
  24519. {
  24520. name: "Macro",
  24521. height: math.unit(22, "meters"),
  24522. default: true
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(5 + 4/12, "feet"),
  24531. weight: math.unit(125, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/rory/front.svg",
  24535. extra: 1790/1681,
  24536. bottom: 66/1856
  24537. }
  24538. },
  24539. back: {
  24540. height: math.unit(5 + 4/12, "feet"),
  24541. weight: math.unit(125, "lb"),
  24542. name: "Back",
  24543. image: {
  24544. source: "./media/characters/rory/back.svg",
  24545. extra: 1805/1690,
  24546. bottom: 56/1861
  24547. }
  24548. },
  24549. frontDressed: {
  24550. height: math.unit(5 + 4/12, "feet"),
  24551. weight: math.unit(125, "lb"),
  24552. name: "Front (Dressed)",
  24553. image: {
  24554. source: "./media/characters/rory/front-dressed.svg",
  24555. extra: 1790/1681,
  24556. bottom: 66/1856
  24557. }
  24558. },
  24559. backDressed: {
  24560. height: math.unit(5 + 4/12, "feet"),
  24561. weight: math.unit(125, "lb"),
  24562. name: "Back (Dressed)",
  24563. image: {
  24564. source: "./media/characters/rory/back-dressed.svg",
  24565. extra: 1805/1690,
  24566. bottom: 56/1861
  24567. }
  24568. },
  24569. frontNsfw: {
  24570. height: math.unit(5 + 4/12, "feet"),
  24571. weight: math.unit(125, "lb"),
  24572. name: "Front (NSFW)",
  24573. image: {
  24574. source: "./media/characters/rory/front-nsfw.svg",
  24575. extra: 1790/1681,
  24576. bottom: 66/1856
  24577. }
  24578. },
  24579. backNsfw: {
  24580. height: math.unit(5 + 4/12, "feet"),
  24581. weight: math.unit(125, "lb"),
  24582. name: "Back (NSFW)",
  24583. image: {
  24584. source: "./media/characters/rory/back-nsfw.svg",
  24585. extra: 1805/1690,
  24586. bottom: 56/1861
  24587. }
  24588. },
  24589. dick: {
  24590. height: math.unit(0.8, "feet"),
  24591. name: "Dick",
  24592. image: {
  24593. source: "./media/characters/rory/dick.svg"
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Micro",
  24600. height: math.unit(3, "inches")
  24601. },
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(5 + 4/12, "feet"),
  24605. default: true
  24606. },
  24607. {
  24608. name: "Macro",
  24609. height: math.unit(90, "feet")
  24610. },
  24611. {
  24612. name: "Supercharged",
  24613. height: math.unit(270, "feet")
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(5 + 9 / 12, "feet"),
  24622. weight: math.unit(190, "lb"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/sprisk/front.svg",
  24626. extra: 1225 / 1180,
  24627. bottom: 42.7 / 1266.4
  24628. }
  24629. },
  24630. frontNsfw: {
  24631. height: math.unit(5 + 9 / 12, "feet"),
  24632. weight: math.unit(190, "lb"),
  24633. name: "Front (NSFW)",
  24634. image: {
  24635. source: "./media/characters/sprisk/front-nsfw.svg",
  24636. extra: 1225 / 1180,
  24637. bottom: 42.7 / 1266.4
  24638. }
  24639. },
  24640. back: {
  24641. height: math.unit(5 + 9 / 12, "feet"),
  24642. weight: math.unit(190, "lb"),
  24643. name: "Back",
  24644. image: {
  24645. source: "./media/characters/sprisk/back.svg",
  24646. extra: 1247 / 1200,
  24647. bottom: 5.6 / 1253.04
  24648. }
  24649. },
  24650. },
  24651. [
  24652. {
  24653. name: "Tiny",
  24654. height: math.unit(2, "inches")
  24655. },
  24656. {
  24657. name: "Normal",
  24658. height: math.unit(5 + 9 / 12, "feet"),
  24659. default: true
  24660. },
  24661. {
  24662. name: "Mini Macro",
  24663. height: math.unit(18, "feet")
  24664. },
  24665. {
  24666. name: "Macro",
  24667. height: math.unit(100, "feet")
  24668. },
  24669. {
  24670. name: "MACRO",
  24671. height: math.unit(50, "miles")
  24672. },
  24673. {
  24674. name: "M A C R O",
  24675. height: math.unit(300, "miles")
  24676. },
  24677. ]
  24678. ))
  24679. characterMakers.push(() => makeCharacter(
  24680. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24681. {
  24682. side: {
  24683. height: math.unit(15.6, "meters"),
  24684. weight: math.unit(700000, "kg"),
  24685. name: "Side",
  24686. image: {
  24687. source: "./media/characters/bunsen/side.svg",
  24688. extra: 1644 / 358
  24689. }
  24690. },
  24691. foot: {
  24692. height: math.unit(1.611 * 1644 / 358, "meter"),
  24693. name: "Foot",
  24694. image: {
  24695. source: "./media/characters/bunsen/foot.svg"
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Small",
  24702. height: math.unit(10, "feet")
  24703. },
  24704. {
  24705. name: "Normal",
  24706. height: math.unit(15.6, "meters"),
  24707. default: true
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24713. {
  24714. front: {
  24715. height: math.unit(4 + 11 / 12, "feet"),
  24716. weight: math.unit(140, "lb"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/sesh/front.svg",
  24720. extra: 3420 / 3231,
  24721. bottom: 72 / 3949.5
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(4 + 11 / 12, "feet")
  24729. },
  24730. {
  24731. name: "Grown",
  24732. height: math.unit(15, "feet"),
  24733. default: true
  24734. },
  24735. {
  24736. name: "Macro",
  24737. height: math.unit(1500, "feet")
  24738. },
  24739. {
  24740. name: "Megamacro",
  24741. height: math.unit(30, "miles")
  24742. },
  24743. {
  24744. name: "Continental",
  24745. height: math.unit(3000, "miles")
  24746. },
  24747. {
  24748. name: "Gravity Mass",
  24749. height: math.unit(300000, "miles")
  24750. },
  24751. {
  24752. name: "Planet Buster",
  24753. height: math.unit(30000000, "miles")
  24754. },
  24755. {
  24756. name: "Big",
  24757. height: math.unit(3000000000, "miles")
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24763. {
  24764. front: {
  24765. height: math.unit(9, "feet"),
  24766. weight: math.unit(350, "lb"),
  24767. name: "Front",
  24768. image: {
  24769. source: "./media/characters/pepper/front.svg",
  24770. extra: 1448 / 1312,
  24771. bottom: 9.4 / 1457.88
  24772. }
  24773. },
  24774. back: {
  24775. height: math.unit(9, "feet"),
  24776. weight: math.unit(350, "lb"),
  24777. name: "Back",
  24778. image: {
  24779. source: "./media/characters/pepper/back.svg",
  24780. extra: 1423 / 1300,
  24781. bottom: 4.6 / 1429
  24782. }
  24783. },
  24784. maw: {
  24785. height: math.unit(0.932, "feet"),
  24786. name: "Maw",
  24787. image: {
  24788. source: "./media/characters/pepper/maw.svg"
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Normal",
  24795. height: math.unit(9, "feet"),
  24796. default: true
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24802. {
  24803. front: {
  24804. height: math.unit(6, "feet"),
  24805. weight: math.unit(150, "lb"),
  24806. name: "Front",
  24807. image: {
  24808. source: "./media/characters/maelstrom/front.svg",
  24809. extra: 2100 / 1883,
  24810. bottom: 94 / 2196.7
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Less Kaiju",
  24817. height: math.unit(200, "feet")
  24818. },
  24819. {
  24820. name: "Kaiju",
  24821. height: math.unit(400, "feet"),
  24822. default: true
  24823. },
  24824. {
  24825. name: "Kaiju-er",
  24826. height: math.unit(600, "feet")
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(6 + 5 / 12, "feet"),
  24835. weight: math.unit(180, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/lexir/front.svg",
  24839. extra: 180 / 172,
  24840. bottom: 12 / 192
  24841. }
  24842. },
  24843. back: {
  24844. height: math.unit(6 + 5 / 12, "feet"),
  24845. weight: math.unit(180, "lb"),
  24846. name: "Back",
  24847. image: {
  24848. source: "./media/characters/lexir/back.svg",
  24849. extra: 1273/1201,
  24850. bottom: 39/1312
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Very Smal",
  24857. height: math.unit(1, "nm")
  24858. },
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(6 + 5 / 12, "feet"),
  24862. default: true
  24863. },
  24864. {
  24865. name: "Macro",
  24866. height: math.unit(1, "mile")
  24867. },
  24868. {
  24869. name: "Megamacro",
  24870. height: math.unit(50, "miles")
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24876. {
  24877. front: {
  24878. height: math.unit(1.5, "meters"),
  24879. weight: math.unit(100, "lb"),
  24880. name: "Front",
  24881. image: {
  24882. source: "./media/characters/maksio/front.svg",
  24883. extra: 1549 / 1531,
  24884. bottom: 123.7 / 1674.5429
  24885. }
  24886. },
  24887. back: {
  24888. height: math.unit(1.5, "meters"),
  24889. weight: math.unit(100, "lb"),
  24890. name: "Back",
  24891. image: {
  24892. source: "./media/characters/maksio/back.svg",
  24893. extra: 1541 / 1509,
  24894. bottom: 97 / 1639
  24895. }
  24896. },
  24897. hand: {
  24898. height: math.unit(0.621, "feet"),
  24899. name: "Hand",
  24900. image: {
  24901. source: "./media/characters/maksio/hand.svg"
  24902. }
  24903. },
  24904. foot: {
  24905. height: math.unit(1.611, "feet"),
  24906. name: "Foot",
  24907. image: {
  24908. source: "./media/characters/maksio/foot.svg"
  24909. }
  24910. },
  24911. },
  24912. [
  24913. {
  24914. name: "Shrunken",
  24915. height: math.unit(10, "cm")
  24916. },
  24917. {
  24918. name: "Normal",
  24919. height: math.unit(150, "cm"),
  24920. default: true
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24926. {
  24927. front: {
  24928. height: math.unit(100, "feet"),
  24929. name: "Front",
  24930. image: {
  24931. source: "./media/characters/erza-bear/front.svg",
  24932. extra: 2449 / 2390,
  24933. bottom: 46 / 2494
  24934. }
  24935. },
  24936. back: {
  24937. height: math.unit(100, "feet"),
  24938. name: "Back",
  24939. image: {
  24940. source: "./media/characters/erza-bear/back.svg",
  24941. extra: 2489 / 2430,
  24942. bottom: 85.4 / 2480
  24943. }
  24944. },
  24945. tail: {
  24946. height: math.unit(42, "feet"),
  24947. name: "Tail",
  24948. image: {
  24949. source: "./media/characters/erza-bear/tail.svg"
  24950. }
  24951. },
  24952. tongue: {
  24953. height: math.unit(8, "feet"),
  24954. name: "Tongue",
  24955. image: {
  24956. source: "./media/characters/erza-bear/tongue.svg"
  24957. }
  24958. },
  24959. dick: {
  24960. height: math.unit(10.5, "feet"),
  24961. name: "Dick",
  24962. image: {
  24963. source: "./media/characters/erza-bear/dick.svg"
  24964. }
  24965. },
  24966. dickVertical: {
  24967. height: math.unit(16.9, "feet"),
  24968. name: "Dick (Vertical)",
  24969. image: {
  24970. source: "./media/characters/erza-bear/dick-vertical.svg"
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Macro",
  24977. height: math.unit(100, "feet"),
  24978. default: true
  24979. },
  24980. ]
  24981. ))
  24982. characterMakers.push(() => makeCharacter(
  24983. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24984. {
  24985. front: {
  24986. height: math.unit(172, "cm"),
  24987. weight: math.unit(73, "kg"),
  24988. name: "Front",
  24989. image: {
  24990. source: "./media/characters/violet-flor/front.svg",
  24991. extra: 1530 / 1442,
  24992. bottom: 61.9 / 1588.8
  24993. }
  24994. },
  24995. back: {
  24996. height: math.unit(180, "cm"),
  24997. weight: math.unit(73, "kg"),
  24998. name: "Back",
  24999. image: {
  25000. source: "./media/characters/violet-flor/back.svg",
  25001. extra: 1692 / 1630,
  25002. bottom: 20 / 1712
  25003. }
  25004. },
  25005. },
  25006. [
  25007. {
  25008. name: "Normal",
  25009. height: math.unit(172, "cm"),
  25010. default: true
  25011. },
  25012. ]
  25013. ))
  25014. characterMakers.push(() => makeCharacter(
  25015. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25016. {
  25017. front: {
  25018. height: math.unit(6, "feet"),
  25019. weight: math.unit(220, "lb"),
  25020. name: "Front",
  25021. image: {
  25022. source: "./media/characters/lynn-rhea/front.svg",
  25023. extra: 310 / 273
  25024. }
  25025. },
  25026. back: {
  25027. height: math.unit(6, "feet"),
  25028. weight: math.unit(220, "lb"),
  25029. name: "Back",
  25030. image: {
  25031. source: "./media/characters/lynn-rhea/back.svg",
  25032. extra: 310 / 273
  25033. }
  25034. },
  25035. dicks: {
  25036. height: math.unit(0.9, "feet"),
  25037. name: "Dicks",
  25038. image: {
  25039. source: "./media/characters/lynn-rhea/dicks.svg"
  25040. }
  25041. },
  25042. slit: {
  25043. height: math.unit(0.4, "feet"),
  25044. name: "Slit",
  25045. image: {
  25046. source: "./media/characters/lynn-rhea/slit.svg"
  25047. }
  25048. },
  25049. },
  25050. [
  25051. {
  25052. name: "Micro",
  25053. height: math.unit(1, "inch")
  25054. },
  25055. {
  25056. name: "Macro",
  25057. height: math.unit(60, "feet"),
  25058. default: true
  25059. },
  25060. {
  25061. name: "Megamacro",
  25062. height: math.unit(2, "miles")
  25063. },
  25064. {
  25065. name: "Gigamacro",
  25066. height: math.unit(3, "earths")
  25067. },
  25068. {
  25069. name: "Galactic",
  25070. height: math.unit(0.8, "galaxies")
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25076. {
  25077. front: {
  25078. height: math.unit(1600, "feet"),
  25079. weight: math.unit(85758785169, "kg"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/valathos/front.svg",
  25083. extra: 1451 / 1339
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Macro",
  25090. height: math.unit(1600, "feet"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(7 + 5 / 12, "feet"),
  25100. weight: math.unit(300, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/azula/front.svg",
  25104. extra: 3208 / 2880,
  25105. bottom: 80.2 / 3277
  25106. }
  25107. },
  25108. back: {
  25109. height: math.unit(7 + 5 / 12, "feet"),
  25110. weight: math.unit(300, "lb"),
  25111. name: "Back",
  25112. image: {
  25113. source: "./media/characters/azula/back.svg",
  25114. extra: 3169 / 2822,
  25115. bottom: 150.6 / 3321
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Normal",
  25122. height: math.unit(7 + 5 / 12, "feet"),
  25123. default: true
  25124. },
  25125. {
  25126. name: "Big",
  25127. height: math.unit(20, "feet")
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(5 + 1 / 12, "feet"),
  25136. weight: math.unit(110, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/rupert/front.svg",
  25140. extra: 1549 / 1495,
  25141. bottom: 54.2 / 1604.4
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(5 + 1 / 12, "feet"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25155. {
  25156. front: {
  25157. height: math.unit(8 + 4 / 12, "feet"),
  25158. weight: math.unit(350, "lb"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/sheera-castellar/front.svg",
  25162. extra: 1957 / 1894,
  25163. bottom: 26.97 / 1975.017
  25164. }
  25165. },
  25166. side: {
  25167. height: math.unit(8 + 4 / 12, "feet"),
  25168. weight: math.unit(350, "lb"),
  25169. name: "Side",
  25170. image: {
  25171. source: "./media/characters/sheera-castellar/side.svg",
  25172. extra: 1957 / 1894
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(8 + 4 / 12, "feet"),
  25177. weight: math.unit(350, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/sheera-castellar/back.svg",
  25181. extra: 1957 / 1894
  25182. }
  25183. },
  25184. angled: {
  25185. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25186. weight: math.unit(350, "lb"),
  25187. name: "Angled",
  25188. image: {
  25189. source: "./media/characters/sheera-castellar/angled.svg",
  25190. extra: 1807 / 1707,
  25191. bottom: 68 / 1875
  25192. }
  25193. },
  25194. genitals: {
  25195. height: math.unit(2.2, "feet"),
  25196. name: "Genitals",
  25197. image: {
  25198. source: "./media/characters/sheera-castellar/genitals.svg"
  25199. }
  25200. },
  25201. taur: {
  25202. height: math.unit(10 + 6/12, "feet"),
  25203. name: "Taur",
  25204. image: {
  25205. source: "./media/characters/sheera-castellar/taur.svg",
  25206. extra: 2017/1909,
  25207. bottom: 185/2202
  25208. }
  25209. },
  25210. },
  25211. [
  25212. {
  25213. name: "Normal",
  25214. height: math.unit(8 + 4 / 12, "feet")
  25215. },
  25216. {
  25217. name: "Macro",
  25218. height: math.unit(150, "feet"),
  25219. default: true
  25220. },
  25221. {
  25222. name: "Macro+",
  25223. height: math.unit(800, "feet")
  25224. },
  25225. ]
  25226. ))
  25227. characterMakers.push(() => makeCharacter(
  25228. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25229. {
  25230. front: {
  25231. height: math.unit(6, "feet"),
  25232. weight: math.unit(150, "lb"),
  25233. name: "Front",
  25234. image: {
  25235. source: "./media/characters/jaipur/front.svg",
  25236. extra: 3860 / 3731,
  25237. bottom: 287 / 4140
  25238. }
  25239. },
  25240. back: {
  25241. height: math.unit(6, "feet"),
  25242. weight: math.unit(150, "lb"),
  25243. name: "Back",
  25244. image: {
  25245. source: "./media/characters/jaipur/back.svg",
  25246. extra: 1637/1561,
  25247. bottom: 154/1791
  25248. }
  25249. },
  25250. },
  25251. [
  25252. {
  25253. name: "Normal",
  25254. height: math.unit(1.85, "meters"),
  25255. default: true
  25256. },
  25257. {
  25258. name: "Macro",
  25259. height: math.unit(150, "meters")
  25260. },
  25261. {
  25262. name: "Macro+",
  25263. height: math.unit(0.5, "miles")
  25264. },
  25265. {
  25266. name: "Macro++",
  25267. height: math.unit(2.5, "miles")
  25268. },
  25269. {
  25270. name: "Macro+++",
  25271. height: math.unit(12, "miles")
  25272. },
  25273. {
  25274. name: "Macro++++",
  25275. height: math.unit(120, "miles")
  25276. },
  25277. {
  25278. name: "Macro+++++",
  25279. height: math.unit(1200, "miles")
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25285. {
  25286. front: {
  25287. height: math.unit(6, "feet"),
  25288. weight: math.unit(150, "lb"),
  25289. name: "Front",
  25290. image: {
  25291. source: "./media/characters/sheila-wolf/front.svg",
  25292. extra: 1931 / 1808,
  25293. bottom: 29.5 / 1960
  25294. }
  25295. },
  25296. dick: {
  25297. height: math.unit(1.464, "feet"),
  25298. name: "Dick",
  25299. image: {
  25300. source: "./media/characters/sheila-wolf/dick.svg"
  25301. }
  25302. },
  25303. muzzle: {
  25304. height: math.unit(0.513, "feet"),
  25305. name: "Muzzle",
  25306. image: {
  25307. source: "./media/characters/sheila-wolf/muzzle.svg"
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Macro",
  25314. height: math.unit(70, "feet"),
  25315. default: true
  25316. },
  25317. ]
  25318. ))
  25319. characterMakers.push(() => makeCharacter(
  25320. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25321. {
  25322. front: {
  25323. height: math.unit(32, "meters"),
  25324. weight: math.unit(300000, "kg"),
  25325. name: "Front",
  25326. image: {
  25327. source: "./media/characters/almor/front.svg",
  25328. extra: 1408 / 1322,
  25329. bottom: 94.6 / 1506.5
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Macro",
  25336. height: math.unit(32, "meters"),
  25337. default: true
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(7, "feet"),
  25346. weight: math.unit(200, "lb"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/silver/front.svg",
  25350. extra: 472.1 / 450.5,
  25351. bottom: 26.5 / 499.424
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(7, "feet"),
  25359. default: true
  25360. },
  25361. {
  25362. name: "Macro",
  25363. height: math.unit(800, "feet")
  25364. },
  25365. {
  25366. name: "Megamacro",
  25367. height: math.unit(250, "miles")
  25368. },
  25369. ]
  25370. ))
  25371. characterMakers.push(() => makeCharacter(
  25372. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25373. {
  25374. front: {
  25375. height: math.unit(6, "feet"),
  25376. weight: math.unit(150, "lb"),
  25377. name: "Front",
  25378. image: {
  25379. source: "./media/characters/pliskin/front.svg",
  25380. extra: 1469 / 1359,
  25381. bottom: 70 / 1540
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Micro",
  25388. height: math.unit(3, "inches")
  25389. },
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(5 + 11 / 12, "feet"),
  25393. default: true
  25394. },
  25395. {
  25396. name: "Macro",
  25397. height: math.unit(120, "feet")
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(6, "feet"),
  25406. weight: math.unit(150, "lb"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/sammy/front.svg",
  25410. extra: 1193 / 1089,
  25411. bottom: 30.5 / 1226
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Macro",
  25418. height: math.unit(1700, "feet"),
  25419. default: true
  25420. },
  25421. {
  25422. name: "Examacro",
  25423. height: math.unit(2.5e9, "lightyears")
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(21, "meters"),
  25432. weight: math.unit(12, "tonnes"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/kuru/front.svg",
  25436. extra: 4301 / 3785,
  25437. bottom: 371.3 / 4691
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Macro",
  25444. height: math.unit(21, "meters"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(23, "meters"),
  25454. weight: math.unit(12.2, "tonnes"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/rakka/front.svg",
  25458. extra: 4670 / 4169,
  25459. bottom: 301 / 4968.7
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Macro",
  25466. height: math.unit(23, "meters"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(6, "feet"),
  25476. weight: math.unit(150, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/rhys-feline/front.svg",
  25480. extra: 2488 / 2308,
  25481. bottom: 35.67 / 2519.19
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Really Small",
  25488. height: math.unit(1, "nm")
  25489. },
  25490. {
  25491. name: "Micro",
  25492. height: math.unit(4, "inches")
  25493. },
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(4 + 10 / 12, "feet"),
  25497. default: true
  25498. },
  25499. {
  25500. name: "Macro",
  25501. height: math.unit(100, "feet")
  25502. },
  25503. {
  25504. name: "Megamacto",
  25505. height: math.unit(50, "miles")
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25511. {
  25512. side: {
  25513. height: math.unit(30, "feet"),
  25514. weight: math.unit(35000, "kg"),
  25515. name: "Side",
  25516. image: {
  25517. source: "./media/characters/alydar/side.svg",
  25518. extra: 234 / 222,
  25519. bottom: 6.5 / 241
  25520. }
  25521. },
  25522. front: {
  25523. height: math.unit(30, "feet"),
  25524. weight: math.unit(35000, "kg"),
  25525. name: "Front",
  25526. image: {
  25527. source: "./media/characters/alydar/front.svg",
  25528. extra: 223.37 / 210.2,
  25529. bottom: 22.3 / 246.76
  25530. }
  25531. },
  25532. top: {
  25533. height: math.unit(64.54, "feet"),
  25534. weight: math.unit(35000, "kg"),
  25535. name: "Top",
  25536. image: {
  25537. source: "./media/characters/alydar/top.svg"
  25538. }
  25539. },
  25540. anthro: {
  25541. height: math.unit(30, "feet"),
  25542. weight: math.unit(9000, "kg"),
  25543. name: "Anthro",
  25544. image: {
  25545. source: "./media/characters/alydar/anthro.svg",
  25546. extra: 432 / 421,
  25547. bottom: 7.18 / 440
  25548. }
  25549. },
  25550. maw: {
  25551. height: math.unit(11.693, "feet"),
  25552. name: "Maw",
  25553. image: {
  25554. source: "./media/characters/alydar/maw.svg"
  25555. }
  25556. },
  25557. head: {
  25558. height: math.unit(11.693, "feet"),
  25559. name: "Head",
  25560. image: {
  25561. source: "./media/characters/alydar/head.svg"
  25562. }
  25563. },
  25564. headAlt: {
  25565. height: math.unit(12.861, "feet"),
  25566. name: "Head (Alt)",
  25567. image: {
  25568. source: "./media/characters/alydar/head-alt.svg"
  25569. }
  25570. },
  25571. wing: {
  25572. height: math.unit(20.712, "feet"),
  25573. name: "Wing",
  25574. image: {
  25575. source: "./media/characters/alydar/wing.svg"
  25576. }
  25577. },
  25578. wingFeather: {
  25579. height: math.unit(9.662, "feet"),
  25580. name: "Wing Feather",
  25581. image: {
  25582. source: "./media/characters/alydar/wing-feather.svg"
  25583. }
  25584. },
  25585. countourFeather: {
  25586. height: math.unit(4.154, "feet"),
  25587. name: "Contour Feather",
  25588. image: {
  25589. source: "./media/characters/alydar/contour-feather.svg"
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Diplomatic",
  25596. height: math.unit(13, "feet"),
  25597. default: true
  25598. },
  25599. {
  25600. name: "Small",
  25601. height: math.unit(30, "feet")
  25602. },
  25603. {
  25604. name: "Normal",
  25605. height: math.unit(95, "feet"),
  25606. default: true
  25607. },
  25608. {
  25609. name: "Large",
  25610. height: math.unit(285, "feet")
  25611. },
  25612. {
  25613. name: "Incomprehensible",
  25614. height: math.unit(450, "megameters")
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25620. {
  25621. side: {
  25622. height: math.unit(11, "feet"),
  25623. weight: math.unit(1750, "kg"),
  25624. name: "Side",
  25625. image: {
  25626. source: "./media/characters/selicia/side.svg",
  25627. extra: 440 / 396,
  25628. bottom: 24.8 / 465.979
  25629. }
  25630. },
  25631. maw: {
  25632. height: math.unit(4.665, "feet"),
  25633. name: "Maw",
  25634. image: {
  25635. source: "./media/characters/selicia/maw.svg"
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(11, "feet"),
  25643. default: true
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25649. {
  25650. side: {
  25651. height: math.unit(2 + 6 / 12, "feet"),
  25652. weight: math.unit(30, "lb"),
  25653. name: "Side",
  25654. image: {
  25655. source: "./media/characters/layla/side.svg",
  25656. extra: 244 / 188,
  25657. bottom: 18.2 / 262.1
  25658. }
  25659. },
  25660. back: {
  25661. height: math.unit(2 + 6 / 12, "feet"),
  25662. weight: math.unit(30, "lb"),
  25663. name: "Back",
  25664. image: {
  25665. source: "./media/characters/layla/back.svg",
  25666. extra: 308 / 241.5,
  25667. bottom: 8.9 / 316.8
  25668. }
  25669. },
  25670. cumming: {
  25671. height: math.unit(2 + 6 / 12, "feet"),
  25672. weight: math.unit(30, "lb"),
  25673. name: "Cumming",
  25674. image: {
  25675. source: "./media/characters/layla/cumming.svg",
  25676. extra: 342 / 279,
  25677. bottom: 595 / 938
  25678. }
  25679. },
  25680. dickFlaccid: {
  25681. height: math.unit(2.595, "feet"),
  25682. name: "Flaccid Genitals",
  25683. image: {
  25684. source: "./media/characters/layla/dick-flaccid.svg"
  25685. }
  25686. },
  25687. dickErect: {
  25688. height: math.unit(2.359, "feet"),
  25689. name: "Erect Genitals",
  25690. image: {
  25691. source: "./media/characters/layla/dick-erect.svg"
  25692. }
  25693. },
  25694. dragon: {
  25695. height: math.unit(40, "feet"),
  25696. name: "Dragon",
  25697. image: {
  25698. source: "./media/characters/layla/dragon.svg",
  25699. extra: 610/535,
  25700. bottom: 367/977
  25701. }
  25702. },
  25703. taur: {
  25704. height: math.unit(30, "feet"),
  25705. name: "Taur",
  25706. image: {
  25707. source: "./media/characters/layla/taur.svg",
  25708. extra: 1268/1199,
  25709. bottom: 112/1380
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Micro",
  25716. height: math.unit(1, "inch")
  25717. },
  25718. {
  25719. name: "Small",
  25720. height: math.unit(1, "foot")
  25721. },
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(2 + 6 / 12, "feet"),
  25725. default: true
  25726. },
  25727. {
  25728. name: "Macro",
  25729. height: math.unit(200, "feet")
  25730. },
  25731. {
  25732. name: "Megamacro",
  25733. height: math.unit(1000, "miles")
  25734. },
  25735. {
  25736. name: "Planetary",
  25737. height: math.unit(8000, "miles")
  25738. },
  25739. {
  25740. name: "True Layla",
  25741. height: math.unit(200000 * 7, "multiverses")
  25742. },
  25743. ]
  25744. ))
  25745. characterMakers.push(() => makeCharacter(
  25746. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25747. {
  25748. back: {
  25749. height: math.unit(10.5, "feet"),
  25750. weight: math.unit(800, "lb"),
  25751. name: "Back",
  25752. image: {
  25753. source: "./media/characters/knox/back.svg",
  25754. extra: 1486 / 1089,
  25755. bottom: 107 / 1601.4
  25756. }
  25757. },
  25758. side: {
  25759. height: math.unit(10.5, "feet"),
  25760. weight: math.unit(800, "lb"),
  25761. name: "Side",
  25762. image: {
  25763. source: "./media/characters/knox/side.svg",
  25764. extra: 244 / 218,
  25765. bottom: 14 / 260
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Compact",
  25772. height: math.unit(10.5, "feet"),
  25773. default: true
  25774. },
  25775. {
  25776. name: "Dynamax",
  25777. height: math.unit(210, "feet")
  25778. },
  25779. {
  25780. name: "Full Macro",
  25781. height: math.unit(850, "feet")
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(28, "feet"),
  25790. weight: math.unit(10500, "lb"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/kayda/front.svg",
  25794. extra: 1536 / 1428,
  25795. bottom: 68.7 / 1603
  25796. }
  25797. },
  25798. back: {
  25799. height: math.unit(28, "feet"),
  25800. weight: math.unit(10500, "lb"),
  25801. name: "Back",
  25802. image: {
  25803. source: "./media/characters/kayda/back.svg",
  25804. extra: 1557 / 1464,
  25805. bottom: 39.5 / 1597.49
  25806. }
  25807. },
  25808. dick: {
  25809. height: math.unit(3.858, "feet"),
  25810. name: "Dick",
  25811. image: {
  25812. source: "./media/characters/kayda/dick.svg"
  25813. }
  25814. },
  25815. },
  25816. [
  25817. {
  25818. name: "Macro",
  25819. height: math.unit(28, "feet"),
  25820. default: true
  25821. },
  25822. ]
  25823. ))
  25824. characterMakers.push(() => makeCharacter(
  25825. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25826. {
  25827. front: {
  25828. height: math.unit(10 + 11 / 12, "feet"),
  25829. weight: math.unit(1400, "lb"),
  25830. name: "Front",
  25831. image: {
  25832. source: "./media/characters/brian/front.svg",
  25833. extra: 737 / 692,
  25834. bottom: 55.4 / 785
  25835. }
  25836. },
  25837. },
  25838. [
  25839. {
  25840. name: "Normal",
  25841. height: math.unit(10 + 11 / 12, "feet"),
  25842. default: true
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(5 + 8 / 12, "feet"),
  25851. weight: math.unit(140, "lb"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/khemri/front.svg",
  25855. extra: 4780 / 4059,
  25856. bottom: 80.1 / 4859.25
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Micro",
  25863. height: math.unit(6, "inches")
  25864. },
  25865. {
  25866. name: "Normal",
  25867. height: math.unit(5 + 8 / 12, "feet"),
  25868. default: true
  25869. },
  25870. ]
  25871. ))
  25872. characterMakers.push(() => makeCharacter(
  25873. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25874. {
  25875. front: {
  25876. height: math.unit(13, "feet"),
  25877. weight: math.unit(1700, "lb"),
  25878. name: "Front",
  25879. image: {
  25880. source: "./media/characters/felix-braveheart/front.svg",
  25881. extra: 1222 / 1157,
  25882. bottom: 53.2 / 1280
  25883. }
  25884. },
  25885. back: {
  25886. height: math.unit(13, "feet"),
  25887. weight: math.unit(1700, "lb"),
  25888. name: "Back",
  25889. image: {
  25890. source: "./media/characters/felix-braveheart/back.svg",
  25891. extra: 1277 / 1203,
  25892. bottom: 50.2 / 1327
  25893. }
  25894. },
  25895. feral: {
  25896. height: math.unit(6, "feet"),
  25897. weight: math.unit(400, "lb"),
  25898. name: "Feral",
  25899. image: {
  25900. source: "./media/characters/felix-braveheart/feral.svg",
  25901. extra: 682 / 625,
  25902. bottom: 6.9 / 688
  25903. }
  25904. },
  25905. },
  25906. [
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(13, "feet"),
  25910. default: true
  25911. },
  25912. ]
  25913. ))
  25914. characterMakers.push(() => makeCharacter(
  25915. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25916. {
  25917. side: {
  25918. height: math.unit(5 + 11 / 12, "feet"),
  25919. weight: math.unit(1400, "lb"),
  25920. name: "Side",
  25921. image: {
  25922. source: "./media/characters/shadow-blade/side.svg",
  25923. extra: 1726 / 1267,
  25924. bottom: 58.4 / 1785
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Normal",
  25931. height: math.unit(5 + 11 / 12, "feet"),
  25932. default: true
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25938. {
  25939. front: {
  25940. height: math.unit(1 + 6 / 12, "feet"),
  25941. weight: math.unit(25, "lb"),
  25942. name: "Front",
  25943. image: {
  25944. source: "./media/characters/karla-halldor/front.svg",
  25945. extra: 1459 / 1383,
  25946. bottom: 12 / 1472
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(1 + 6 / 12, "feet"),
  25954. default: true
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(6 + 2 / 12, "feet"),
  25963. weight: math.unit(160, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/ariam/front.svg",
  25967. extra: 1073/976,
  25968. bottom: 52/1125
  25969. }
  25970. },
  25971. back: {
  25972. height: math.unit(6 + 2/12, "feet"),
  25973. weight: math.unit(160, "lb"),
  25974. name: "Back",
  25975. image: {
  25976. source: "./media/characters/ariam/back.svg",
  25977. extra: 1103/1023,
  25978. bottom: 9/1112
  25979. }
  25980. },
  25981. dressed: {
  25982. height: math.unit(6 + 2/12, "feet"),
  25983. weight: math.unit(160, "lb"),
  25984. name: "Dressed",
  25985. image: {
  25986. source: "./media/characters/ariam/dressed.svg",
  25987. extra: 1099/1009,
  25988. bottom: 25/1124
  25989. }
  25990. },
  25991. squatting: {
  25992. height: math.unit(4.1, "feet"),
  25993. weight: math.unit(160, "lb"),
  25994. name: "Squatting",
  25995. image: {
  25996. source: "./media/characters/ariam/squatting.svg",
  25997. extra: 2617 / 2112,
  25998. bottom: 61.2 / 2681,
  25999. }
  26000. },
  26001. },
  26002. [
  26003. {
  26004. name: "Normal",
  26005. height: math.unit(6 + 2 / 12, "feet"),
  26006. default: true
  26007. },
  26008. {
  26009. name: "Normal+",
  26010. height: math.unit(4, "meters")
  26011. },
  26012. {
  26013. name: "Macro",
  26014. height: math.unit(50, "meters")
  26015. },
  26016. {
  26017. name: "Macro+",
  26018. height: math.unit(100, "meters")
  26019. },
  26020. {
  26021. name: "Megamacro",
  26022. height: math.unit(20, "km")
  26023. },
  26024. {
  26025. name: "Caretaker",
  26026. height: math.unit(444, "megameters")
  26027. },
  26028. ]
  26029. ))
  26030. characterMakers.push(() => makeCharacter(
  26031. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26032. {
  26033. front: {
  26034. height: math.unit(1.67, "meters"),
  26035. weight: math.unit(140, "lb"),
  26036. name: "Front",
  26037. image: {
  26038. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26039. extra: 438 / 410,
  26040. bottom: 0.75 / 439
  26041. }
  26042. },
  26043. },
  26044. [
  26045. {
  26046. name: "Shrunken",
  26047. height: math.unit(7.6, "cm")
  26048. },
  26049. {
  26050. name: "Human Scale",
  26051. height: math.unit(1.67, "meters")
  26052. },
  26053. {
  26054. name: "Wolxi Scale",
  26055. height: math.unit(36.7, "meters"),
  26056. default: true
  26057. },
  26058. ]
  26059. ))
  26060. characterMakers.push(() => makeCharacter(
  26061. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26062. {
  26063. front: {
  26064. height: math.unit(1.73, "meters"),
  26065. weight: math.unit(240, "lb"),
  26066. name: "Front",
  26067. image: {
  26068. source: "./media/characters/izue-two-mothers/front.svg",
  26069. extra: 469 / 437,
  26070. bottom: 1.24 / 470.6
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Shrunken",
  26077. height: math.unit(7.86, "cm")
  26078. },
  26079. {
  26080. name: "Human Scale",
  26081. height: math.unit(1.73, "meters")
  26082. },
  26083. {
  26084. name: "Wolxi Scale",
  26085. height: math.unit(38, "meters"),
  26086. default: true
  26087. },
  26088. ]
  26089. ))
  26090. characterMakers.push(() => makeCharacter(
  26091. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26092. {
  26093. front: {
  26094. height: math.unit(1.55, "meters"),
  26095. weight: math.unit(120, "lb"),
  26096. name: "Front",
  26097. image: {
  26098. source: "./media/characters/teeku-love-shack/front.svg",
  26099. extra: 387 / 362,
  26100. bottom: 1.51 / 388
  26101. }
  26102. },
  26103. },
  26104. [
  26105. {
  26106. name: "Shrunken",
  26107. height: math.unit(7, "cm")
  26108. },
  26109. {
  26110. name: "Human Scale",
  26111. height: math.unit(1.55, "meters")
  26112. },
  26113. {
  26114. name: "Wolxi Scale",
  26115. height: math.unit(34.1, "meters"),
  26116. default: true
  26117. },
  26118. ]
  26119. ))
  26120. characterMakers.push(() => makeCharacter(
  26121. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26122. {
  26123. front: {
  26124. height: math.unit(1.83, "meters"),
  26125. weight: math.unit(135, "lb"),
  26126. name: "Front",
  26127. image: {
  26128. source: "./media/characters/dejma-the-red/front.svg",
  26129. extra: 480 / 458,
  26130. bottom: 1.8 / 482
  26131. }
  26132. },
  26133. },
  26134. [
  26135. {
  26136. name: "Shrunken",
  26137. height: math.unit(8.3, "cm")
  26138. },
  26139. {
  26140. name: "Human Scale",
  26141. height: math.unit(1.83, "meters")
  26142. },
  26143. {
  26144. name: "Wolxi Scale",
  26145. height: math.unit(40, "meters"),
  26146. default: true
  26147. },
  26148. ]
  26149. ))
  26150. characterMakers.push(() => makeCharacter(
  26151. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26152. {
  26153. front: {
  26154. height: math.unit(1.78, "meters"),
  26155. weight: math.unit(65, "kg"),
  26156. name: "Front",
  26157. image: {
  26158. source: "./media/characters/aki/front.svg",
  26159. extra: 452 / 415
  26160. }
  26161. },
  26162. frontNsfw: {
  26163. height: math.unit(1.78, "meters"),
  26164. weight: math.unit(65, "kg"),
  26165. name: "Front (NSFW)",
  26166. image: {
  26167. source: "./media/characters/aki/front-nsfw.svg",
  26168. extra: 452 / 415
  26169. }
  26170. },
  26171. back: {
  26172. height: math.unit(1.78, "meters"),
  26173. weight: math.unit(65, "kg"),
  26174. name: "Back",
  26175. image: {
  26176. source: "./media/characters/aki/back.svg",
  26177. extra: 452 / 415
  26178. }
  26179. },
  26180. rump: {
  26181. height: math.unit(2.05, "feet"),
  26182. name: "Rump",
  26183. image: {
  26184. source: "./media/characters/aki/rump.svg"
  26185. }
  26186. },
  26187. dick: {
  26188. height: math.unit(0.95, "feet"),
  26189. name: "Dick",
  26190. image: {
  26191. source: "./media/characters/aki/dick.svg"
  26192. }
  26193. },
  26194. },
  26195. [
  26196. {
  26197. name: "Micro",
  26198. height: math.unit(15, "cm")
  26199. },
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(178, "cm"),
  26203. default: true
  26204. },
  26205. {
  26206. name: "Macro",
  26207. height: math.unit(214, "m")
  26208. },
  26209. {
  26210. name: "Macro+",
  26211. height: math.unit(534, "m")
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26217. {
  26218. front: {
  26219. height: math.unit(5 + 5 / 12, "feet"),
  26220. weight: math.unit(120, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/ari/front.svg",
  26224. extra: 1550/1471,
  26225. bottom: 39/1589
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Normal",
  26232. height: math.unit(5 + 5 / 12, "feet")
  26233. },
  26234. {
  26235. name: "Macro",
  26236. height: math.unit(100, "feet"),
  26237. default: true
  26238. },
  26239. {
  26240. name: "Megamacro",
  26241. height: math.unit(100, "miles")
  26242. },
  26243. {
  26244. name: "Gigamacro",
  26245. height: math.unit(80000, "miles")
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26251. {
  26252. side: {
  26253. height: math.unit(9, "feet"),
  26254. weight: math.unit(400, "kg"),
  26255. name: "Side",
  26256. image: {
  26257. source: "./media/characters/bolt/side.svg",
  26258. extra: 1126 / 896,
  26259. bottom: 60 / 1187.3,
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Micro",
  26266. height: math.unit(5, "inches")
  26267. },
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(9, "feet"),
  26271. default: true
  26272. },
  26273. {
  26274. name: "Macro",
  26275. height: math.unit(700, "feet")
  26276. },
  26277. {
  26278. name: "Max Size",
  26279. height: math.unit(1.52e22, "yottameters")
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(4.3, "meters"),
  26288. weight: math.unit(3, "tons"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/draekon-sylviar/front.svg",
  26292. extra: 2072/1512,
  26293. bottom: 74/2146
  26294. }
  26295. },
  26296. back: {
  26297. height: math.unit(4.3, "meters"),
  26298. weight: math.unit(3, "tons"),
  26299. name: "Back",
  26300. image: {
  26301. source: "./media/characters/draekon-sylviar/back.svg",
  26302. extra: 1639/1483,
  26303. bottom: 41/1680
  26304. }
  26305. },
  26306. feral: {
  26307. height: math.unit(1.15, "meters"),
  26308. weight: math.unit(3, "tons"),
  26309. name: "Feral",
  26310. image: {
  26311. source: "./media/characters/draekon-sylviar/feral.svg",
  26312. extra: 1033/395,
  26313. bottom: 130/1163
  26314. }
  26315. },
  26316. maw: {
  26317. height: math.unit(1.3, "meters"),
  26318. name: "Maw",
  26319. image: {
  26320. source: "./media/characters/draekon-sylviar/maw.svg"
  26321. }
  26322. },
  26323. mawSeparated: {
  26324. height: math.unit(1.53, "meters"),
  26325. name: "Separated Maw",
  26326. image: {
  26327. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26328. }
  26329. },
  26330. tail: {
  26331. height: math.unit(1.15, "meters"),
  26332. name: "Tail",
  26333. image: {
  26334. source: "./media/characters/draekon-sylviar/tail.svg"
  26335. }
  26336. },
  26337. tailDick: {
  26338. height: math.unit(1.15, "meters"),
  26339. name: "Tail (Dick)",
  26340. image: {
  26341. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26342. }
  26343. },
  26344. tailDickSeparated: {
  26345. height: math.unit(1.19, "meters"),
  26346. name: "Tail (Separated Dick)",
  26347. image: {
  26348. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26349. }
  26350. },
  26351. slit: {
  26352. height: math.unit(1, "meters"),
  26353. name: "Slit",
  26354. image: {
  26355. source: "./media/characters/draekon-sylviar/slit.svg"
  26356. }
  26357. },
  26358. dick: {
  26359. height: math.unit(1.15, "meters"),
  26360. name: "Dick",
  26361. image: {
  26362. source: "./media/characters/draekon-sylviar/dick.svg"
  26363. }
  26364. },
  26365. dickSeparated: {
  26366. height: math.unit(1.1, "meters"),
  26367. name: "Separated Dick",
  26368. image: {
  26369. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26370. }
  26371. },
  26372. sheath: {
  26373. height: math.unit(1.15, "meters"),
  26374. name: "Sheath",
  26375. image: {
  26376. source: "./media/characters/draekon-sylviar/sheath.svg"
  26377. }
  26378. },
  26379. },
  26380. [
  26381. {
  26382. name: "Small",
  26383. height: math.unit(4.53 / 2, "meters"),
  26384. default: true
  26385. },
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(4.53, "meters"),
  26389. default: true
  26390. },
  26391. {
  26392. name: "Large",
  26393. height: math.unit(4.53 * 2, "meters"),
  26394. },
  26395. ]
  26396. ))
  26397. characterMakers.push(() => makeCharacter(
  26398. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26399. {
  26400. front: {
  26401. height: math.unit(6 + 2 / 12, "feet"),
  26402. weight: math.unit(180, "lb"),
  26403. name: "Front",
  26404. image: {
  26405. source: "./media/characters/brawler/front.svg",
  26406. extra: 3301 / 3027,
  26407. bottom: 138 / 3439
  26408. }
  26409. },
  26410. },
  26411. [
  26412. {
  26413. name: "Normal",
  26414. height: math.unit(6 + 2 / 12, "feet"),
  26415. default: true
  26416. },
  26417. ]
  26418. ))
  26419. characterMakers.push(() => makeCharacter(
  26420. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26421. {
  26422. front: {
  26423. height: math.unit(11, "feet"),
  26424. weight: math.unit(1000, "lb"),
  26425. name: "Front",
  26426. image: {
  26427. source: "./media/characters/alex/front.svg",
  26428. bottom: 44.5 / 620
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Micro",
  26435. height: math.unit(5, "inches")
  26436. },
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(11, "feet"),
  26440. default: true
  26441. },
  26442. {
  26443. name: "Macro",
  26444. height: math.unit(9.5e9, "feet")
  26445. },
  26446. {
  26447. name: "Max Size",
  26448. height: math.unit(1.4e283, "yottameters")
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26454. {
  26455. female: {
  26456. height: math.unit(29.9, "m"),
  26457. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26458. name: "Female",
  26459. image: {
  26460. source: "./media/characters/zenari/female.svg",
  26461. extra: 3281.6 / 3217,
  26462. bottom: 72.2 / 3353
  26463. }
  26464. },
  26465. male: {
  26466. height: math.unit(27.7, "m"),
  26467. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26468. name: "Male",
  26469. image: {
  26470. source: "./media/characters/zenari/male.svg",
  26471. extra: 3008 / 2991,
  26472. bottom: 54.6 / 3069
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Macro",
  26479. height: math.unit(29.7, "meters"),
  26480. default: true
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26486. {
  26487. female: {
  26488. height: math.unit(23.8, "m"),
  26489. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26490. name: "Female",
  26491. image: {
  26492. source: "./media/characters/mactarian/female.svg",
  26493. extra: 2662 / 2569,
  26494. bottom: 73 / 2736
  26495. }
  26496. },
  26497. male: {
  26498. height: math.unit(23.8, "m"),
  26499. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26500. name: "Male",
  26501. image: {
  26502. source: "./media/characters/mactarian/male.svg",
  26503. extra: 2673 / 2600,
  26504. bottom: 76 / 2750
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Macro",
  26511. height: math.unit(23.8, "meters"),
  26512. default: true
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26518. {
  26519. female: {
  26520. height: math.unit(19.3, "m"),
  26521. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26522. name: "Female",
  26523. image: {
  26524. source: "./media/characters/umok/female.svg",
  26525. extra: 2186 / 2078,
  26526. bottom: 87 / 2277
  26527. }
  26528. },
  26529. male: {
  26530. height: math.unit(19.5, "m"),
  26531. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26532. name: "Male",
  26533. image: {
  26534. source: "./media/characters/umok/male.svg",
  26535. extra: 2233 / 2140,
  26536. bottom: 24.4 / 2258
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Macro",
  26543. height: math.unit(19.3, "meters"),
  26544. default: true
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26550. {
  26551. female: {
  26552. height: math.unit(26.15, "m"),
  26553. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26554. name: "Female",
  26555. image: {
  26556. source: "./media/characters/joraxian/female.svg",
  26557. extra: 2912 / 2824,
  26558. bottom: 36 / 2956
  26559. }
  26560. },
  26561. male: {
  26562. height: math.unit(25.4, "m"),
  26563. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26564. name: "Male",
  26565. image: {
  26566. source: "./media/characters/joraxian/male.svg",
  26567. extra: 2877 / 2721,
  26568. bottom: 82 / 2967
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Macro",
  26575. height: math.unit(26.15, "meters"),
  26576. default: true
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26582. {
  26583. female: {
  26584. height: math.unit(21.6, "m"),
  26585. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26586. name: "Female",
  26587. image: {
  26588. source: "./media/characters/sthara/female.svg",
  26589. extra: 2516 / 2347,
  26590. bottom: 21.5 / 2537
  26591. }
  26592. },
  26593. male: {
  26594. height: math.unit(24, "m"),
  26595. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26596. name: "Male",
  26597. image: {
  26598. source: "./media/characters/sthara/male.svg",
  26599. extra: 2732 / 2607,
  26600. bottom: 23 / 2732
  26601. }
  26602. },
  26603. },
  26604. [
  26605. {
  26606. name: "Macro",
  26607. height: math.unit(21.6, "meters"),
  26608. default: true
  26609. },
  26610. ]
  26611. ))
  26612. characterMakers.push(() => makeCharacter(
  26613. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26614. {
  26615. front: {
  26616. height: math.unit(6 + 4 / 12, "feet"),
  26617. weight: math.unit(175, "lb"),
  26618. name: "Front",
  26619. image: {
  26620. source: "./media/characters/luka-bryzant/front.svg",
  26621. extra: 311 / 289,
  26622. bottom: 4 / 315
  26623. }
  26624. },
  26625. back: {
  26626. height: math.unit(6 + 4 / 12, "feet"),
  26627. weight: math.unit(175, "lb"),
  26628. name: "Back",
  26629. image: {
  26630. source: "./media/characters/luka-bryzant/back.svg",
  26631. extra: 311 / 289,
  26632. bottom: 3.8 / 313.7
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Micro",
  26639. height: math.unit(10, "inches")
  26640. },
  26641. {
  26642. name: "Normal",
  26643. height: math.unit(6 + 4 / 12, "feet"),
  26644. default: true
  26645. },
  26646. {
  26647. name: "Large",
  26648. height: math.unit(12, "feet")
  26649. },
  26650. ]
  26651. ))
  26652. characterMakers.push(() => makeCharacter(
  26653. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26654. {
  26655. front: {
  26656. height: math.unit(5 + 7 / 12, "feet"),
  26657. weight: math.unit(185, "lb"),
  26658. name: "Front",
  26659. image: {
  26660. source: "./media/characters/aman-aquila/front.svg",
  26661. extra: 1013 / 976,
  26662. bottom: 45.6 / 1057
  26663. }
  26664. },
  26665. side: {
  26666. height: math.unit(5 + 7 / 12, "feet"),
  26667. weight: math.unit(185, "lb"),
  26668. name: "Side",
  26669. image: {
  26670. source: "./media/characters/aman-aquila/side.svg",
  26671. extra: 1054 / 1011,
  26672. bottom: 15 / 1070
  26673. }
  26674. },
  26675. back: {
  26676. height: math.unit(5 + 7 / 12, "feet"),
  26677. weight: math.unit(185, "lb"),
  26678. name: "Back",
  26679. image: {
  26680. source: "./media/characters/aman-aquila/back.svg",
  26681. extra: 1026 / 970,
  26682. bottom: 12 / 1039
  26683. }
  26684. },
  26685. head: {
  26686. height: math.unit(1.211, "feet"),
  26687. name: "Head",
  26688. image: {
  26689. source: "./media/characters/aman-aquila/head.svg",
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Minimicro",
  26696. height: math.unit(0.057, "inches")
  26697. },
  26698. {
  26699. name: "Micro",
  26700. height: math.unit(7, "inches")
  26701. },
  26702. {
  26703. name: "Mini",
  26704. height: math.unit(3 + 7 / 12, "feet")
  26705. },
  26706. {
  26707. name: "Normal",
  26708. height: math.unit(5 + 7 / 12, "feet"),
  26709. default: true
  26710. },
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(157 + 7 / 12, "feet")
  26714. },
  26715. {
  26716. name: "Megamacro",
  26717. height: math.unit(1557 + 7 / 12, "feet")
  26718. },
  26719. {
  26720. name: "Gigamacro",
  26721. height: math.unit(15557 + 7 / 12, "feet")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(3 + 2 / 12, "inches"),
  26730. weight: math.unit(0.3, "ounces"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/hiphae/front.svg",
  26734. extra: 1931 / 1683,
  26735. bottom: 24 / 1955
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Normal",
  26742. height: math.unit(3 + 1 / 2, "inches"),
  26743. default: true
  26744. },
  26745. ]
  26746. ))
  26747. characterMakers.push(() => makeCharacter(
  26748. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26749. {
  26750. front: {
  26751. height: math.unit(5 + 10 / 12, "feet"),
  26752. weight: math.unit(165, "lb"),
  26753. name: "Front",
  26754. image: {
  26755. source: "./media/characters/nicky/front.svg",
  26756. extra: 3144 / 2886,
  26757. bottom: 45.6 / 3192
  26758. }
  26759. },
  26760. back: {
  26761. height: math.unit(5 + 10 / 12, "feet"),
  26762. weight: math.unit(165, "lb"),
  26763. name: "Back",
  26764. image: {
  26765. source: "./media/characters/nicky/back.svg",
  26766. extra: 3055 / 2804,
  26767. bottom: 28.4 / 3087
  26768. }
  26769. },
  26770. frontclothed: {
  26771. height: math.unit(5 + 10 / 12, "feet"),
  26772. weight: math.unit(165, "lb"),
  26773. name: "Front-clothed",
  26774. image: {
  26775. source: "./media/characters/nicky/front-clothed.svg",
  26776. extra: 3184.9 / 2926.9,
  26777. bottom: 86.5 / 3239.9
  26778. }
  26779. },
  26780. foot: {
  26781. height: math.unit(1.16, "feet"),
  26782. name: "Foot",
  26783. image: {
  26784. source: "./media/characters/nicky/foot.svg"
  26785. }
  26786. },
  26787. feet: {
  26788. height: math.unit(1.34, "feet"),
  26789. name: "Feet",
  26790. image: {
  26791. source: "./media/characters/nicky/feet.svg"
  26792. }
  26793. },
  26794. maw: {
  26795. height: math.unit(0.9, "feet"),
  26796. name: "Maw",
  26797. image: {
  26798. source: "./media/characters/nicky/maw.svg"
  26799. }
  26800. },
  26801. },
  26802. [
  26803. {
  26804. name: "Normal",
  26805. height: math.unit(5 + 10 / 12, "feet"),
  26806. default: true
  26807. },
  26808. {
  26809. name: "Macro",
  26810. height: math.unit(60, "feet")
  26811. },
  26812. {
  26813. name: "Megamacro",
  26814. height: math.unit(1, "mile")
  26815. },
  26816. ]
  26817. ))
  26818. characterMakers.push(() => makeCharacter(
  26819. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26820. {
  26821. side: {
  26822. height: math.unit(10, "feet"),
  26823. weight: math.unit(600, "lb"),
  26824. name: "Side",
  26825. image: {
  26826. source: "./media/characters/blair/side.svg",
  26827. bottom: 16.6 / 475,
  26828. extra: 458 / 431
  26829. }
  26830. },
  26831. },
  26832. [
  26833. {
  26834. name: "Micro",
  26835. height: math.unit(8, "inches")
  26836. },
  26837. {
  26838. name: "Normal",
  26839. height: math.unit(10, "feet"),
  26840. default: true
  26841. },
  26842. {
  26843. name: "Macro",
  26844. height: math.unit(180, "feet")
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(5 + 4 / 12, "feet"),
  26853. weight: math.unit(125, "lb"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/fisher/front.svg",
  26857. extra: 444 / 390,
  26858. bottom: 2 / 444.8
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Micro",
  26865. height: math.unit(4, "inches")
  26866. },
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(5 + 4 / 12, "feet"),
  26870. default: true
  26871. },
  26872. {
  26873. name: "Macro",
  26874. height: math.unit(100, "feet")
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(6.71, "feet"),
  26883. weight: math.unit(200, "lb"),
  26884. preyCapacity: math.unit(1000000, "people"),
  26885. name: "Front",
  26886. image: {
  26887. source: "./media/characters/gliss/front.svg",
  26888. extra: 2347 / 2231,
  26889. bottom: 113 / 2462
  26890. }
  26891. },
  26892. hammerspaceSize: {
  26893. height: math.unit(6.71 * 717, "feet"),
  26894. weight: math.unit(200, "lb"),
  26895. preyCapacity: math.unit(1000000, "people"),
  26896. name: "Hammerspace Size",
  26897. image: {
  26898. source: "./media/characters/gliss/front.svg",
  26899. extra: 2347 / 2231,
  26900. bottom: 113 / 2462
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Normal",
  26907. height: math.unit(6.71, "feet"),
  26908. default: true
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26914. {
  26915. side: {
  26916. height: math.unit(1.44, "m"),
  26917. weight: math.unit(80, "kg"),
  26918. name: "Side",
  26919. image: {
  26920. source: "./media/characters/dune-anderson/side.svg",
  26921. bottom: 49 / 1426
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Wolf-sized",
  26928. height: math.unit(1.44, "meters")
  26929. },
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(5.05, "meters"),
  26933. default: true
  26934. },
  26935. {
  26936. name: "Big",
  26937. height: math.unit(14.4, "meters")
  26938. },
  26939. {
  26940. name: "Huge",
  26941. height: math.unit(144, "meters")
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(7, "feet"),
  26950. weight: math.unit(425, "lb"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/hind/front.svg",
  26954. extra: 2091 / 1860,
  26955. bottom: 129 / 2220
  26956. }
  26957. },
  26958. back: {
  26959. height: math.unit(7, "feet"),
  26960. weight: math.unit(425, "lb"),
  26961. name: "Back",
  26962. image: {
  26963. source: "./media/characters/hind/back.svg",
  26964. extra: 2091 / 1860,
  26965. bottom: 24.6 / 2309
  26966. }
  26967. },
  26968. tail: {
  26969. height: math.unit(2.8, "feet"),
  26970. name: "Tail",
  26971. image: {
  26972. source: "./media/characters/hind/tail.svg"
  26973. }
  26974. },
  26975. head: {
  26976. height: math.unit(2.55, "feet"),
  26977. name: "Head",
  26978. image: {
  26979. source: "./media/characters/hind/head.svg"
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "XS",
  26986. height: math.unit(0.7, "feet")
  26987. },
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(7, "feet"),
  26991. default: true
  26992. },
  26993. {
  26994. name: "XL",
  26995. height: math.unit(70, "feet")
  26996. },
  26997. ]
  26998. ))
  26999. characterMakers.push(() => makeCharacter(
  27000. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27001. {
  27002. front: {
  27003. height: math.unit(2.1, "meters"),
  27004. weight: math.unit(150, "lb"),
  27005. name: "Front",
  27006. image: {
  27007. source: "./media/characters/tharquench-sizestealer/front.svg",
  27008. extra: 1605/1470,
  27009. bottom: 36/1641
  27010. }
  27011. },
  27012. frontAlt: {
  27013. height: math.unit(2.1, "meters"),
  27014. weight: math.unit(150, "lb"),
  27015. name: "Front (Alt)",
  27016. image: {
  27017. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27018. extra: 2318 / 2063,
  27019. bottom: 93.4 / 2410
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Nano",
  27026. height: math.unit(1, "mm")
  27027. },
  27028. {
  27029. name: "Micro",
  27030. height: math.unit(1, "cm")
  27031. },
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(2.1, "meters"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(7 + 5 / 12, "feet"),
  27044. weight: math.unit(357, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/solex-draconov/front.svg",
  27048. extra: 1993 / 1865,
  27049. bottom: 117 / 2111
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Natural Height",
  27056. height: math.unit(7 + 5 / 12, "feet"),
  27057. default: true
  27058. },
  27059. {
  27060. name: "Macro",
  27061. height: math.unit(350, "feet")
  27062. },
  27063. {
  27064. name: "Macro+",
  27065. height: math.unit(1000, "feet")
  27066. },
  27067. {
  27068. name: "Megamacro",
  27069. height: math.unit(20, "km")
  27070. },
  27071. {
  27072. name: "Megamacro+",
  27073. height: math.unit(1000, "km")
  27074. },
  27075. {
  27076. name: "Gigamacro",
  27077. height: math.unit(2.5, "Gm")
  27078. },
  27079. {
  27080. name: "Teramacro",
  27081. height: math.unit(15, "Tm")
  27082. },
  27083. {
  27084. name: "Galactic",
  27085. height: math.unit(30, "Zm")
  27086. },
  27087. {
  27088. name: "Universal",
  27089. height: math.unit(21000, "Ym")
  27090. },
  27091. {
  27092. name: "Omniversal",
  27093. height: math.unit(9.861e50, "Ym")
  27094. },
  27095. {
  27096. name: "Existential",
  27097. height: math.unit(1e300, "meters")
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27103. {
  27104. side: {
  27105. height: math.unit(25, "feet"),
  27106. weight: math.unit(90000, "lb"),
  27107. name: "Side",
  27108. image: {
  27109. source: "./media/characters/mandarax/side.svg",
  27110. extra: 614 / 332,
  27111. bottom: 55 / 630
  27112. }
  27113. },
  27114. lounging: {
  27115. height: math.unit(15.4, "feet"),
  27116. weight: math.unit(90000, "lb"),
  27117. name: "Lounging",
  27118. image: {
  27119. source: "./media/characters/mandarax/lounging.svg",
  27120. extra: 817/609,
  27121. bottom: 685/1502
  27122. }
  27123. },
  27124. head: {
  27125. height: math.unit(11.4, "feet"),
  27126. name: "Head",
  27127. image: {
  27128. source: "./media/characters/mandarax/head.svg"
  27129. }
  27130. },
  27131. belly: {
  27132. height: math.unit(33, "feet"),
  27133. name: "Belly",
  27134. preyCapacity: math.unit(500, "people"),
  27135. image: {
  27136. source: "./media/characters/mandarax/belly.svg"
  27137. }
  27138. },
  27139. dick: {
  27140. height: math.unit(8.46, "feet"),
  27141. name: "Dick",
  27142. image: {
  27143. source: "./media/characters/mandarax/dick.svg"
  27144. }
  27145. },
  27146. top: {
  27147. height: math.unit(28, "meters"),
  27148. name: "Top",
  27149. image: {
  27150. source: "./media/characters/mandarax/top.svg"
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(25, "feet"),
  27158. default: true
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(5, "feet"),
  27167. weight: math.unit(90, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/pixil/front.svg",
  27171. extra: 2000 / 1618,
  27172. bottom: 12.3 / 2011
  27173. }
  27174. },
  27175. },
  27176. [
  27177. {
  27178. name: "Normal",
  27179. height: math.unit(5, "feet"),
  27180. default: true
  27181. },
  27182. {
  27183. name: "Megamacro",
  27184. height: math.unit(10, "miles"),
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27190. {
  27191. front: {
  27192. height: math.unit(7 + 2 / 12, "feet"),
  27193. weight: math.unit(200, "lb"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/angel/front.svg",
  27197. extra: 1830 / 1737,
  27198. bottom: 22.6 / 1854,
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(7 + 2 / 12, "feet"),
  27206. default: true
  27207. },
  27208. {
  27209. name: "Macro",
  27210. height: math.unit(1000, "feet")
  27211. },
  27212. {
  27213. name: "Megamacro",
  27214. height: math.unit(2, "miles")
  27215. },
  27216. {
  27217. name: "Gigamacro",
  27218. height: math.unit(20, "earths")
  27219. },
  27220. ]
  27221. ))
  27222. characterMakers.push(() => makeCharacter(
  27223. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27224. {
  27225. front: {
  27226. height: math.unit(5, "feet"),
  27227. weight: math.unit(180, "lb"),
  27228. name: "Front",
  27229. image: {
  27230. source: "./media/characters/mekana/front.svg",
  27231. extra: 1671 / 1605,
  27232. bottom: 3.5 / 1691
  27233. }
  27234. },
  27235. side: {
  27236. height: math.unit(5, "feet"),
  27237. weight: math.unit(180, "lb"),
  27238. name: "Side",
  27239. image: {
  27240. source: "./media/characters/mekana/side.svg",
  27241. extra: 1671 / 1605,
  27242. bottom: 3.5 / 1691
  27243. }
  27244. },
  27245. back: {
  27246. height: math.unit(5, "feet"),
  27247. weight: math.unit(180, "lb"),
  27248. name: "Back",
  27249. image: {
  27250. source: "./media/characters/mekana/back.svg",
  27251. extra: 1671 / 1605,
  27252. bottom: 3.5 / 1691
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(5, "feet"),
  27260. default: true
  27261. },
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27266. {
  27267. front: {
  27268. height: math.unit(4 + 6 / 12, "feet"),
  27269. weight: math.unit(80, "lb"),
  27270. name: "Front",
  27271. image: {
  27272. source: "./media/characters/pixie/front.svg",
  27273. extra: 1924 / 1825,
  27274. bottom: 22.4 / 1946
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Normal",
  27281. height: math.unit(4 + 6 / 12, "feet"),
  27282. default: true
  27283. },
  27284. {
  27285. name: "Macro",
  27286. height: math.unit(40, "feet")
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(2.1, "meters"),
  27295. weight: math.unit(200, "lb"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/the-lascivious/front.svg",
  27299. extra: 1 / 0.893,
  27300. bottom: 3.5 / 573.7
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Human Scale",
  27307. height: math.unit(2.1, "meters")
  27308. },
  27309. {
  27310. name: "Wolxi Scale",
  27311. height: math.unit(46.2, "m"),
  27312. default: true
  27313. },
  27314. {
  27315. name: "Boinker of Buildings",
  27316. height: math.unit(10, "km")
  27317. },
  27318. {
  27319. name: "Shagger of Skyscrapers",
  27320. height: math.unit(40, "km")
  27321. },
  27322. {
  27323. name: "Banger of Boroughs",
  27324. height: math.unit(4000, "km")
  27325. },
  27326. {
  27327. name: "Screwer of States",
  27328. height: math.unit(100000, "km")
  27329. },
  27330. {
  27331. name: "Pounder of Planets",
  27332. height: math.unit(2000000, "km")
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(6, "feet"),
  27341. weight: math.unit(150, "lb"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/aj/front.svg",
  27345. extra: 2039 / 1562,
  27346. bottom: 40 / 2079
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Normal",
  27353. height: math.unit(11 + 6 / 12, "feet"),
  27354. default: true
  27355. },
  27356. {
  27357. name: "Megamacro",
  27358. height: math.unit(60, "megameters")
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27364. {
  27365. side: {
  27366. height: math.unit(31 + 8 / 12, "feet"),
  27367. weight: math.unit(75000, "kg"),
  27368. name: "Side",
  27369. image: {
  27370. source: "./media/characters/koros/side.svg",
  27371. extra: 1442 / 1297,
  27372. bottom: 122.7 / 1562
  27373. }
  27374. },
  27375. dicksKingsCrown: {
  27376. height: math.unit(6, "feet"),
  27377. name: "Dicks (King's Crown)",
  27378. image: {
  27379. source: "./media/characters/koros/dicks-kings-crown.svg"
  27380. }
  27381. },
  27382. dicksTailSet: {
  27383. height: math.unit(3, "feet"),
  27384. name: "Dicks (Tail Set)",
  27385. image: {
  27386. source: "./media/characters/koros/dicks-tail-set.svg"
  27387. }
  27388. },
  27389. dickCumming: {
  27390. height: math.unit(7.98, "feet"),
  27391. name: "Dick (Cumming)",
  27392. image: {
  27393. source: "./media/characters/koros/dick-cumming.svg"
  27394. }
  27395. },
  27396. dicksBack: {
  27397. height: math.unit(5.9, "feet"),
  27398. name: "Dicks (Back)",
  27399. image: {
  27400. source: "./media/characters/koros/dicks-back.svg"
  27401. }
  27402. },
  27403. dicksFront: {
  27404. height: math.unit(3.72, "feet"),
  27405. name: "Dicks (Front)",
  27406. image: {
  27407. source: "./media/characters/koros/dicks-front.svg"
  27408. }
  27409. },
  27410. dicksPeeking: {
  27411. height: math.unit(3.0, "feet"),
  27412. name: "Dicks (Peeking)",
  27413. image: {
  27414. source: "./media/characters/koros/dicks-peeking.svg"
  27415. }
  27416. },
  27417. eye: {
  27418. height: math.unit(1.7, "feet"),
  27419. name: "Eye",
  27420. image: {
  27421. source: "./media/characters/koros/eye.svg"
  27422. }
  27423. },
  27424. headFront: {
  27425. height: math.unit(11.69, "feet"),
  27426. name: "Head (Front)",
  27427. image: {
  27428. source: "./media/characters/koros/head-front.svg"
  27429. }
  27430. },
  27431. headSide: {
  27432. height: math.unit(14, "feet"),
  27433. name: "Head (Side)",
  27434. image: {
  27435. source: "./media/characters/koros/head-side.svg"
  27436. }
  27437. },
  27438. leg: {
  27439. height: math.unit(17, "feet"),
  27440. name: "Leg",
  27441. image: {
  27442. source: "./media/characters/koros/leg.svg"
  27443. }
  27444. },
  27445. mawSide: {
  27446. height: math.unit(12.8, "feet"),
  27447. name: "Maw (Side)",
  27448. image: {
  27449. source: "./media/characters/koros/maw-side.svg"
  27450. }
  27451. },
  27452. mawSpitting: {
  27453. height: math.unit(17, "feet"),
  27454. name: "Maw (Spitting)",
  27455. image: {
  27456. source: "./media/characters/koros/maw-spitting.svg"
  27457. }
  27458. },
  27459. slit: {
  27460. height: math.unit(2.8, "feet"),
  27461. name: "Slit",
  27462. image: {
  27463. source: "./media/characters/koros/slit.svg"
  27464. }
  27465. },
  27466. stomach: {
  27467. height: math.unit(6.8, "feet"),
  27468. preyCapacity: math.unit(20, "people"),
  27469. name: "Stomach",
  27470. image: {
  27471. source: "./media/characters/koros/stomach.svg"
  27472. }
  27473. },
  27474. wingspanBottom: {
  27475. height: math.unit(114, "feet"),
  27476. name: "Wingspan (Bottom)",
  27477. image: {
  27478. source: "./media/characters/koros/wingspan-bottom.svg"
  27479. }
  27480. },
  27481. wingspanTop: {
  27482. height: math.unit(104, "feet"),
  27483. name: "Wingspan (Top)",
  27484. image: {
  27485. source: "./media/characters/koros/wingspan-top.svg"
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Normal",
  27492. height: math.unit(31 + 8 / 12, "feet"),
  27493. default: true
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(18 + 5 / 12, "feet"),
  27502. weight: math.unit(3750, "kg"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/vexx/front.svg",
  27506. extra: 426 / 396,
  27507. bottom: 31.5 / 458
  27508. }
  27509. },
  27510. maw: {
  27511. height: math.unit(6, "feet"),
  27512. name: "Maw",
  27513. image: {
  27514. source: "./media/characters/vexx/maw.svg"
  27515. }
  27516. },
  27517. },
  27518. [
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(18 + 5 / 12, "feet"),
  27522. default: true
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27528. {
  27529. front: {
  27530. height: math.unit(17 + 6 / 12, "feet"),
  27531. weight: math.unit(150, "lb"),
  27532. name: "Front",
  27533. image: {
  27534. source: "./media/characters/baadra/front.svg",
  27535. extra: 1694/1553,
  27536. bottom: 179/1873
  27537. }
  27538. },
  27539. frontAlt: {
  27540. height: math.unit(17 + 6 / 12, "feet"),
  27541. weight: math.unit(150, "lb"),
  27542. name: "Front (Alt)",
  27543. image: {
  27544. source: "./media/characters/baadra/front-alt.svg",
  27545. extra: 3137 / 2890,
  27546. bottom: 168.4 / 3305
  27547. }
  27548. },
  27549. back: {
  27550. height: math.unit(17 + 6 / 12, "feet"),
  27551. weight: math.unit(150, "lb"),
  27552. name: "Back",
  27553. image: {
  27554. source: "./media/characters/baadra/back.svg",
  27555. extra: 3142 / 2890,
  27556. bottom: 220 / 3371
  27557. }
  27558. },
  27559. head: {
  27560. height: math.unit(5.45, "feet"),
  27561. name: "Head",
  27562. image: {
  27563. source: "./media/characters/baadra/head.svg"
  27564. }
  27565. },
  27566. headAngry: {
  27567. height: math.unit(4.95, "feet"),
  27568. name: "Head (Angry)",
  27569. image: {
  27570. source: "./media/characters/baadra/head-angry.svg"
  27571. }
  27572. },
  27573. headOpen: {
  27574. height: math.unit(6, "feet"),
  27575. name: "Head (Open)",
  27576. image: {
  27577. source: "./media/characters/baadra/head-open.svg"
  27578. }
  27579. },
  27580. },
  27581. [
  27582. {
  27583. name: "Normal",
  27584. height: math.unit(17 + 6 / 12, "feet"),
  27585. default: true
  27586. },
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27591. {
  27592. front: {
  27593. height: math.unit(7 + 3 / 12, "feet"),
  27594. weight: math.unit(180, "lb"),
  27595. name: "Front",
  27596. image: {
  27597. source: "./media/characters/juri/front.svg",
  27598. extra: 1401 / 1237,
  27599. bottom: 18.5 / 1418
  27600. }
  27601. },
  27602. side: {
  27603. height: math.unit(7 + 3 / 12, "feet"),
  27604. weight: math.unit(180, "lb"),
  27605. name: "Side",
  27606. image: {
  27607. source: "./media/characters/juri/side.svg",
  27608. extra: 1424 / 1242,
  27609. bottom: 18.5 / 1447
  27610. }
  27611. },
  27612. sitting: {
  27613. height: math.unit(6, "feet"),
  27614. weight: math.unit(180, "lb"),
  27615. name: "Sitting",
  27616. image: {
  27617. source: "./media/characters/juri/sitting.svg",
  27618. extra: 1270 / 1143,
  27619. bottom: 100 / 1343
  27620. }
  27621. },
  27622. back: {
  27623. height: math.unit(7 + 3 / 12, "feet"),
  27624. weight: math.unit(180, "lb"),
  27625. name: "Back",
  27626. image: {
  27627. source: "./media/characters/juri/back.svg",
  27628. extra: 1377 / 1240,
  27629. bottom: 23.7 / 1405
  27630. }
  27631. },
  27632. maw: {
  27633. height: math.unit(2.8, "feet"),
  27634. name: "Maw",
  27635. image: {
  27636. source: "./media/characters/juri/maw.svg"
  27637. }
  27638. },
  27639. stomach: {
  27640. height: math.unit(0.89, "feet"),
  27641. preyCapacity: math.unit(4, "liters"),
  27642. name: "Stomach",
  27643. image: {
  27644. source: "./media/characters/juri/stomach.svg"
  27645. }
  27646. },
  27647. },
  27648. [
  27649. {
  27650. name: "Normal",
  27651. height: math.unit(7 + 3 / 12, "feet"),
  27652. default: true
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27658. {
  27659. fox: {
  27660. height: math.unit(5 + 6 / 12, "feet"),
  27661. weight: math.unit(140, "lb"),
  27662. name: "Fox",
  27663. image: {
  27664. source: "./media/characters/maxene-sita/fox.svg",
  27665. extra: 146 / 138,
  27666. bottom: 2.1 / 148.19
  27667. }
  27668. },
  27669. foxLaying: {
  27670. height: math.unit(1.70, "feet"),
  27671. weight: math.unit(140, "lb"),
  27672. name: "Fox (Laying)",
  27673. image: {
  27674. source: "./media/characters/maxene-sita/fox-laying.svg",
  27675. extra: 910 / 572,
  27676. bottom: 71 / 981
  27677. }
  27678. },
  27679. kitsune: {
  27680. height: math.unit(10, "feet"),
  27681. weight: math.unit(800, "lb"),
  27682. name: "Kitsune",
  27683. image: {
  27684. source: "./media/characters/maxene-sita/kitsune.svg",
  27685. extra: 185 / 176,
  27686. bottom: 4.7 / 189.9
  27687. }
  27688. },
  27689. hellhound: {
  27690. height: math.unit(10, "feet"),
  27691. weight: math.unit(700, "lb"),
  27692. name: "Hellhound",
  27693. image: {
  27694. source: "./media/characters/maxene-sita/hellhound.svg",
  27695. extra: 1600 / 1545,
  27696. bottom: 81 / 1681
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Normal",
  27703. height: math.unit(5 + 6 / 12, "feet"),
  27704. default: true
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27710. {
  27711. front: {
  27712. height: math.unit(3 + 4 / 12, "feet"),
  27713. weight: math.unit(70, "lb"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/maia/front.svg",
  27717. extra: 227 / 219.5,
  27718. bottom: 40 / 267
  27719. }
  27720. },
  27721. back: {
  27722. height: math.unit(3 + 4 / 12, "feet"),
  27723. weight: math.unit(70, "lb"),
  27724. name: "Back",
  27725. image: {
  27726. source: "./media/characters/maia/back.svg",
  27727. extra: 237 / 225
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(3 + 4 / 12, "feet"),
  27735. default: true
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(5 + 10 / 12, "feet"),
  27744. weight: math.unit(197, "lb"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/jabaro/front.svg",
  27748. extra: 225 / 216,
  27749. bottom: 5.06 / 230
  27750. }
  27751. },
  27752. back: {
  27753. height: math.unit(5 + 10 / 12, "feet"),
  27754. weight: math.unit(197, "lb"),
  27755. name: "Back",
  27756. image: {
  27757. source: "./media/characters/jabaro/back.svg",
  27758. extra: 225 / 219,
  27759. bottom: 1.9 / 227
  27760. }
  27761. },
  27762. },
  27763. [
  27764. {
  27765. name: "Normal",
  27766. height: math.unit(5 + 10 / 12, "feet"),
  27767. default: true
  27768. },
  27769. ]
  27770. ))
  27771. characterMakers.push(() => makeCharacter(
  27772. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27773. {
  27774. front: {
  27775. height: math.unit(5 + 8 / 12, "feet"),
  27776. weight: math.unit(139, "lb"),
  27777. name: "Front",
  27778. image: {
  27779. source: "./media/characters/risa/front.svg",
  27780. extra: 270 / 260,
  27781. bottom: 11.2 / 282
  27782. }
  27783. },
  27784. back: {
  27785. height: math.unit(5 + 8 / 12, "feet"),
  27786. weight: math.unit(139, "lb"),
  27787. name: "Back",
  27788. image: {
  27789. source: "./media/characters/risa/back.svg",
  27790. extra: 264 / 255,
  27791. bottom: 4 / 268
  27792. }
  27793. },
  27794. },
  27795. [
  27796. {
  27797. name: "Normal",
  27798. height: math.unit(5 + 8 / 12, "feet"),
  27799. default: true
  27800. },
  27801. ]
  27802. ))
  27803. characterMakers.push(() => makeCharacter(
  27804. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27805. {
  27806. front: {
  27807. height: math.unit(2 + 11 / 12, "feet"),
  27808. weight: math.unit(30, "lb"),
  27809. name: "Front",
  27810. image: {
  27811. source: "./media/characters/weatley/front.svg",
  27812. bottom: 10.7 / 414,
  27813. extra: 403.5 / 362
  27814. }
  27815. },
  27816. back: {
  27817. height: math.unit(2 + 11 / 12, "feet"),
  27818. weight: math.unit(30, "lb"),
  27819. name: "Back",
  27820. image: {
  27821. source: "./media/characters/weatley/back.svg",
  27822. bottom: 10.7 / 414,
  27823. extra: 403.5 / 362
  27824. }
  27825. },
  27826. },
  27827. [
  27828. {
  27829. name: "Normal",
  27830. height: math.unit(2 + 11 / 12, "feet"),
  27831. default: true
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27837. {
  27838. front: {
  27839. height: math.unit(5 + 2 / 12, "feet"),
  27840. weight: math.unit(50, "kg"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/mercury-crescent/front.svg",
  27844. extra: 1088 / 1033,
  27845. bottom: 18.9 / 1109
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(5 + 2 / 12, "feet"),
  27853. default: true
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(2, "feet"),
  27862. weight: math.unit(15, "kg"),
  27863. name: "Front",
  27864. image: {
  27865. source: "./media/characters/diamond-jones/front.svg",
  27866. extra: 727/723,
  27867. bottom: 46/773
  27868. }
  27869. },
  27870. },
  27871. [
  27872. {
  27873. name: "Normal",
  27874. height: math.unit(2, "feet"),
  27875. default: true
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(3, "feet"),
  27884. weight: math.unit(30, "kg"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/sweet-bit/front.svg",
  27888. extra: 675 / 567,
  27889. bottom: 27.7 / 703
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(3, "feet"),
  27897. default: true
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27903. {
  27904. side: {
  27905. height: math.unit(9.178, "feet"),
  27906. weight: math.unit(500, "lb"),
  27907. name: "Side",
  27908. image: {
  27909. source: "./media/characters/umbrazen/side.svg",
  27910. extra: 1730 / 1473,
  27911. bottom: 34.6 / 1765
  27912. }
  27913. },
  27914. },
  27915. [
  27916. {
  27917. name: "Normal",
  27918. height: math.unit(9.178, "feet"),
  27919. default: true
  27920. },
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27925. {
  27926. front: {
  27927. height: math.unit(10, "feet"),
  27928. weight: math.unit(750, "lb"),
  27929. name: "Front",
  27930. image: {
  27931. source: "./media/characters/arlist/front.svg",
  27932. extra: 961 / 778,
  27933. bottom: 6.2 / 986
  27934. }
  27935. },
  27936. },
  27937. [
  27938. {
  27939. name: "Normal",
  27940. height: math.unit(10, "feet"),
  27941. default: true
  27942. },
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(5 + 1 / 12, "feet"),
  27950. weight: math.unit(110, "lb"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/aradel/front.svg",
  27954. extra: 324 / 303,
  27955. bottom: 3.6 / 329.4
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Normal",
  27962. height: math.unit(5 + 1 / 12, "feet"),
  27963. default: true
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27969. {
  27970. dressed: {
  27971. height: math.unit(3 + 8 / 12, "feet"),
  27972. weight: math.unit(50, "lb"),
  27973. name: "Dressed",
  27974. image: {
  27975. source: "./media/characters/serryn/dressed.svg",
  27976. extra: 1792 / 1656,
  27977. bottom: 43.5 / 1840
  27978. }
  27979. },
  27980. nude: {
  27981. height: math.unit(3 + 8 / 12, "feet"),
  27982. weight: math.unit(50, "lb"),
  27983. name: "Nude",
  27984. image: {
  27985. source: "./media/characters/serryn/nude.svg",
  27986. extra: 1792 / 1656,
  27987. bottom: 43.5 / 1840
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(3 + 8 / 12, "feet"),
  27995. default: true
  27996. },
  27997. ]
  27998. ))
  27999. characterMakers.push(() => makeCharacter(
  28000. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28001. {
  28002. front: {
  28003. height: math.unit(7 + 10 / 12, "feet"),
  28004. weight: math.unit(255, "lb"),
  28005. name: "Front",
  28006. image: {
  28007. source: "./media/characters/xavier-thyme/front.svg",
  28008. extra: 3733 / 3642,
  28009. bottom: 131 / 3869
  28010. }
  28011. },
  28012. frontRaven: {
  28013. height: math.unit(7 + 10 / 12, "feet"),
  28014. weight: math.unit(255, "lb"),
  28015. name: "Front (Raven)",
  28016. image: {
  28017. source: "./media/characters/xavier-thyme/front-raven.svg",
  28018. extra: 4385 / 3642,
  28019. bottom: 131 / 4517
  28020. }
  28021. },
  28022. },
  28023. [
  28024. {
  28025. name: "Normal",
  28026. height: math.unit(7 + 10 / 12, "feet"),
  28027. default: true
  28028. },
  28029. ]
  28030. ))
  28031. characterMakers.push(() => makeCharacter(
  28032. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28033. {
  28034. front: {
  28035. height: math.unit(1.6, "m"),
  28036. weight: math.unit(50, "kg"),
  28037. name: "Front",
  28038. image: {
  28039. source: "./media/characters/kiki/front.svg",
  28040. extra: 4682 / 3610,
  28041. bottom: 115 / 4777
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(1.6, "meters"),
  28049. default: true
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(50, "m"),
  28058. weight: math.unit(500, "tonnes"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/ryoko/front.svg",
  28062. extra: 4632 / 3926,
  28063. bottom: 193 / 4823
  28064. }
  28065. },
  28066. },
  28067. [
  28068. {
  28069. name: "Normal",
  28070. height: math.unit(50, "meters"),
  28071. default: true
  28072. },
  28073. ]
  28074. ))
  28075. characterMakers.push(() => makeCharacter(
  28076. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28077. {
  28078. front: {
  28079. height: math.unit(30, "m"),
  28080. weight: math.unit(22, "tonnes"),
  28081. name: "Front",
  28082. image: {
  28083. source: "./media/characters/elio/front.svg",
  28084. extra: 4582 / 3720,
  28085. bottom: 236 / 4828
  28086. }
  28087. },
  28088. },
  28089. [
  28090. {
  28091. name: "Normal",
  28092. height: math.unit(30, "meters"),
  28093. default: true
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28099. {
  28100. front: {
  28101. height: math.unit(6 + 3 / 12, "feet"),
  28102. weight: math.unit(120, "lb"),
  28103. name: "Front",
  28104. image: {
  28105. source: "./media/characters/azura/front.svg",
  28106. extra: 1149 / 1135,
  28107. bottom: 45 / 1194
  28108. }
  28109. },
  28110. frontClothed: {
  28111. height: math.unit(6 + 3 / 12, "feet"),
  28112. weight: math.unit(120, "lb"),
  28113. name: "Front (Clothed)",
  28114. image: {
  28115. source: "./media/characters/azura/front-clothed.svg",
  28116. extra: 1149 / 1135,
  28117. bottom: 45 / 1194
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Normal",
  28124. height: math.unit(6 + 3 / 12, "feet"),
  28125. default: true
  28126. },
  28127. {
  28128. name: "Macro",
  28129. height: math.unit(20 + 6 / 12, "feet")
  28130. },
  28131. {
  28132. name: "Megamacro",
  28133. height: math.unit(12, "miles")
  28134. },
  28135. {
  28136. name: "Gigamacro",
  28137. height: math.unit(10000, "miles")
  28138. },
  28139. {
  28140. name: "Teramacro",
  28141. height: math.unit(900000, "miles")
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28147. {
  28148. front: {
  28149. height: math.unit(12, "feet"),
  28150. weight: math.unit(1, "ton"),
  28151. capacity: math.unit(660000, "gallons"),
  28152. name: "Front",
  28153. image: {
  28154. source: "./media/characters/zeus/front.svg",
  28155. extra: 5005 / 4717,
  28156. bottom: 363 / 5388
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(12, "feet")
  28164. },
  28165. {
  28166. name: "Preferred Size",
  28167. height: math.unit(0.5, "miles"),
  28168. default: true
  28169. },
  28170. {
  28171. name: "Giga Horse",
  28172. height: math.unit(300, "miles")
  28173. },
  28174. {
  28175. name: "Riding Planets",
  28176. height: math.unit(30, "megameters")
  28177. },
  28178. {
  28179. name: "Cosmic Giant",
  28180. height: math.unit(3, "zettameters")
  28181. },
  28182. {
  28183. name: "Breeding God",
  28184. height: math.unit(9.92e22, "yottameters")
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28190. {
  28191. side: {
  28192. height: math.unit(9, "feet"),
  28193. weight: math.unit(1500, "kg"),
  28194. name: "Side",
  28195. image: {
  28196. source: "./media/characters/fang/side.svg",
  28197. extra: 924 / 866,
  28198. bottom: 47.5 / 972.3
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(9, "feet"),
  28206. default: true
  28207. },
  28208. {
  28209. name: "Macro",
  28210. height: math.unit(75 + 6 / 12, "feet")
  28211. },
  28212. {
  28213. name: "Teramacro",
  28214. height: math.unit(50000, "miles")
  28215. },
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28220. {
  28221. front: {
  28222. height: math.unit(10, "feet"),
  28223. weight: math.unit(2, "tons"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/rekhit/front.svg",
  28227. extra: 2796 / 2590,
  28228. bottom: 225 / 3022
  28229. }
  28230. },
  28231. },
  28232. [
  28233. {
  28234. name: "Normal",
  28235. height: math.unit(10, "feet"),
  28236. default: true
  28237. },
  28238. {
  28239. name: "Macro",
  28240. height: math.unit(500, "feet")
  28241. },
  28242. ]
  28243. ))
  28244. characterMakers.push(() => makeCharacter(
  28245. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28246. {
  28247. front: {
  28248. height: math.unit(7 + 6.451 / 12, "feet"),
  28249. weight: math.unit(310, "lb"),
  28250. name: "Front",
  28251. image: {
  28252. source: "./media/characters/dahlia-verrick/front.svg",
  28253. extra: 1488 / 1365,
  28254. bottom: 6.2 / 1495
  28255. }
  28256. },
  28257. back: {
  28258. height: math.unit(7 + 6.451 / 12, "feet"),
  28259. weight: math.unit(310, "lb"),
  28260. name: "Back",
  28261. image: {
  28262. source: "./media/characters/dahlia-verrick/back.svg",
  28263. extra: 1472 / 1351,
  28264. bottom: 5.28 / 1477
  28265. }
  28266. },
  28267. frontBusiness: {
  28268. height: math.unit(7 + 6.451 / 12, "feet"),
  28269. weight: math.unit(200, "lb"),
  28270. name: "Front (Business)",
  28271. image: {
  28272. source: "./media/characters/dahlia-verrick/front-business.svg",
  28273. extra: 1478 / 1381,
  28274. bottom: 5.5 / 1484
  28275. }
  28276. },
  28277. frontCasual: {
  28278. height: math.unit(7 + 6.451 / 12, "feet"),
  28279. weight: math.unit(200, "lb"),
  28280. name: "Front (Casual)",
  28281. image: {
  28282. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28283. extra: 1478 / 1381,
  28284. bottom: 5.5 / 1484
  28285. }
  28286. },
  28287. },
  28288. [
  28289. {
  28290. name: "Travel-Sized",
  28291. height: math.unit(7.45, "inches")
  28292. },
  28293. {
  28294. name: "Normal",
  28295. height: math.unit(7 + 6.451 / 12, "feet"),
  28296. default: true
  28297. },
  28298. {
  28299. name: "Hitting the Town",
  28300. height: math.unit(37 + 8 / 12, "feet")
  28301. },
  28302. {
  28303. name: "Stomp in the Suburbs",
  28304. height: math.unit(964 + 9.728 / 12, "feet")
  28305. },
  28306. {
  28307. name: "Sit on the City",
  28308. height: math.unit(61747 + 10.592 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Glomp the Globe",
  28312. height: math.unit(252919327 + 4.832 / 12, "feet")
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28318. {
  28319. front: {
  28320. height: math.unit(6 + 4 / 12, "feet"),
  28321. weight: math.unit(320, "lb"),
  28322. name: "Front",
  28323. image: {
  28324. source: "./media/characters/balina-mahigan/front.svg",
  28325. extra: 447 / 428,
  28326. bottom: 18 / 466
  28327. }
  28328. },
  28329. back: {
  28330. height: math.unit(6 + 4 / 12, "feet"),
  28331. weight: math.unit(320, "lb"),
  28332. name: "Back",
  28333. image: {
  28334. source: "./media/characters/balina-mahigan/back.svg",
  28335. extra: 445 / 428,
  28336. bottom: 4.07 / 448
  28337. }
  28338. },
  28339. arm: {
  28340. height: math.unit(1.88, "feet"),
  28341. name: "Arm",
  28342. image: {
  28343. source: "./media/characters/balina-mahigan/arm.svg"
  28344. }
  28345. },
  28346. backPort: {
  28347. height: math.unit(0.685, "feet"),
  28348. name: "Back Port",
  28349. image: {
  28350. source: "./media/characters/balina-mahigan/back-port.svg"
  28351. }
  28352. },
  28353. hoofpaw: {
  28354. height: math.unit(1.41, "feet"),
  28355. name: "Hoofpaw",
  28356. image: {
  28357. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28358. }
  28359. },
  28360. leftHandBack: {
  28361. height: math.unit(0.938, "feet"),
  28362. name: "Left Hand (Back)",
  28363. image: {
  28364. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28365. }
  28366. },
  28367. leftHandFront: {
  28368. height: math.unit(0.938, "feet"),
  28369. name: "Left Hand (Front)",
  28370. image: {
  28371. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28372. }
  28373. },
  28374. rightHandBack: {
  28375. height: math.unit(0.95, "feet"),
  28376. name: "Right Hand (Back)",
  28377. image: {
  28378. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28379. }
  28380. },
  28381. rightHandFront: {
  28382. height: math.unit(0.95, "feet"),
  28383. name: "Right Hand (Front)",
  28384. image: {
  28385. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(6 + 4 / 12, "feet"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(6, "feet"),
  28402. weight: math.unit(320, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/balina-mejeri/front.svg",
  28406. extra: 517 / 488,
  28407. bottom: 44.2 / 561
  28408. }
  28409. },
  28410. },
  28411. [
  28412. {
  28413. name: "Normal",
  28414. height: math.unit(6 + 4 / 12, "feet")
  28415. },
  28416. {
  28417. name: "Business",
  28418. height: math.unit(155, "feet"),
  28419. default: true
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28425. {
  28426. kneeling: {
  28427. height: math.unit(6 + 4 / 12, "feet"),
  28428. weight: math.unit(300 * 20, "lb"),
  28429. name: "Kneeling",
  28430. image: {
  28431. source: "./media/characters/balbarian/kneeling.svg",
  28432. extra: 922 / 862,
  28433. bottom: 42.4 / 965
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(6 + 4 / 12, "feet")
  28441. },
  28442. {
  28443. name: "Treasured",
  28444. height: math.unit(18 + 9 / 12, "feet"),
  28445. default: true
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(900, "feet")
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(6 + 4 / 12, "feet"),
  28458. weight: math.unit(325, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/balina-amarini/front.svg",
  28462. extra: 415 / 403,
  28463. bottom: 19 / 433.4
  28464. }
  28465. },
  28466. back: {
  28467. height: math.unit(6 + 4 / 12, "feet"),
  28468. weight: math.unit(325, "lb"),
  28469. name: "Back",
  28470. image: {
  28471. source: "./media/characters/balina-amarini/back.svg",
  28472. extra: 415 / 403,
  28473. bottom: 13.5 / 432
  28474. }
  28475. },
  28476. overdrive: {
  28477. height: math.unit(6 + 4 / 12, "feet"),
  28478. weight: math.unit(400, "lb"),
  28479. name: "Overdrive",
  28480. image: {
  28481. source: "./media/characters/balina-amarini/overdrive.svg",
  28482. extra: 269 / 259,
  28483. bottom: 12 / 282
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Boom",
  28490. height: math.unit(9 + 10 / 12, "feet"),
  28491. default: true
  28492. },
  28493. {
  28494. name: "Macro",
  28495. height: math.unit(280, "feet")
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28501. {
  28502. goddess: {
  28503. height: math.unit(600, "feet"),
  28504. weight: math.unit(2000000, "tons"),
  28505. name: "Goddess",
  28506. image: {
  28507. source: "./media/characters/lady-kubwa/goddess.svg",
  28508. extra: 1240.5 / 1223,
  28509. bottom: 22 / 1263
  28510. }
  28511. },
  28512. goddesser: {
  28513. height: math.unit(900, "feet"),
  28514. weight: math.unit(20000000, "lb"),
  28515. name: "Goddess-er",
  28516. image: {
  28517. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28518. extra: 899 / 888,
  28519. bottom: 12.6 / 912
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Macro",
  28526. height: math.unit(600, "feet"),
  28527. default: true
  28528. },
  28529. {
  28530. name: "Megamacro",
  28531. height: math.unit(250, "miles")
  28532. },
  28533. ]
  28534. ))
  28535. characterMakers.push(() => makeCharacter(
  28536. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28537. {
  28538. front: {
  28539. height: math.unit(7 + 7 / 12, "feet"),
  28540. weight: math.unit(250, "lb"),
  28541. name: "Front",
  28542. image: {
  28543. source: "./media/characters/tala-grovehorn/front.svg",
  28544. extra: 2636 / 2525,
  28545. bottom: 147 / 2781
  28546. }
  28547. },
  28548. back: {
  28549. height: math.unit(7 + 7 / 12, "feet"),
  28550. weight: math.unit(250, "lb"),
  28551. name: "Back",
  28552. image: {
  28553. source: "./media/characters/tala-grovehorn/back.svg",
  28554. extra: 2635 / 2539,
  28555. bottom: 100 / 2732.8
  28556. }
  28557. },
  28558. mouth: {
  28559. height: math.unit(1.15, "feet"),
  28560. name: "Mouth",
  28561. image: {
  28562. source: "./media/characters/tala-grovehorn/mouth.svg"
  28563. }
  28564. },
  28565. dick: {
  28566. height: math.unit(2.36, "feet"),
  28567. name: "Dick",
  28568. image: {
  28569. source: "./media/characters/tala-grovehorn/dick.svg"
  28570. }
  28571. },
  28572. slit: {
  28573. height: math.unit(0.61, "feet"),
  28574. name: "Slit",
  28575. image: {
  28576. source: "./media/characters/tala-grovehorn/slit.svg"
  28577. }
  28578. },
  28579. },
  28580. [
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28585. {
  28586. front: {
  28587. height: math.unit(7 + 7 / 12, "feet"),
  28588. weight: math.unit(225, "lb"),
  28589. name: "Front",
  28590. image: {
  28591. source: "./media/characters/epona/front.svg",
  28592. extra: 2445 / 2290,
  28593. bottom: 251 / 2696
  28594. }
  28595. },
  28596. back: {
  28597. height: math.unit(7 + 7 / 12, "feet"),
  28598. weight: math.unit(225, "lb"),
  28599. name: "Back",
  28600. image: {
  28601. source: "./media/characters/epona/back.svg",
  28602. extra: 2546 / 2408,
  28603. bottom: 44 / 2589
  28604. }
  28605. },
  28606. genitals: {
  28607. height: math.unit(1.5, "feet"),
  28608. name: "Genitals",
  28609. image: {
  28610. source: "./media/characters/epona/genitals.svg"
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Normal",
  28617. height: math.unit(7 + 7 / 12, "feet"),
  28618. default: true
  28619. },
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(7, "feet"),
  28627. weight: math.unit(518, "lb"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/avia-bloodbourn/front.svg",
  28631. extra: 1466 / 1350,
  28632. bottom: 65 / 1527
  28633. }
  28634. },
  28635. },
  28636. [
  28637. ]
  28638. ))
  28639. characterMakers.push(() => makeCharacter(
  28640. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28641. {
  28642. front: {
  28643. height: math.unit(9.35, "feet"),
  28644. weight: math.unit(600, "lb"),
  28645. name: "Front",
  28646. image: {
  28647. source: "./media/characters/amera/front.svg",
  28648. extra: 891 / 818,
  28649. bottom: 30 / 922.7
  28650. }
  28651. },
  28652. back: {
  28653. height: math.unit(9.35, "feet"),
  28654. weight: math.unit(600, "lb"),
  28655. name: "Back",
  28656. image: {
  28657. source: "./media/characters/amera/back.svg",
  28658. extra: 876 / 824,
  28659. bottom: 6.8 / 884
  28660. }
  28661. },
  28662. dick: {
  28663. height: math.unit(2.14, "feet"),
  28664. name: "Dick",
  28665. image: {
  28666. source: "./media/characters/amera/dick.svg"
  28667. }
  28668. },
  28669. },
  28670. [
  28671. {
  28672. name: "Normal",
  28673. height: math.unit(9.35, "feet"),
  28674. default: true
  28675. },
  28676. ]
  28677. ))
  28678. characterMakers.push(() => makeCharacter(
  28679. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28680. {
  28681. kneeling: {
  28682. height: math.unit(3 + 4 / 12, "feet"),
  28683. weight: math.unit(90, "lb"),
  28684. name: "Kneeling",
  28685. image: {
  28686. source: "./media/characters/rosewen/kneeling.svg",
  28687. extra: 1835 / 1571,
  28688. bottom: 27.7 / 1862
  28689. }
  28690. },
  28691. },
  28692. [
  28693. {
  28694. name: "Normal",
  28695. height: math.unit(3 + 4 / 12, "feet"),
  28696. default: true
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28702. {
  28703. front: {
  28704. height: math.unit(5 + 10 / 12, "feet"),
  28705. weight: math.unit(200, "lb"),
  28706. name: "Front",
  28707. image: {
  28708. source: "./media/characters/sabah/front.svg",
  28709. extra: 849 / 763,
  28710. bottom: 33.9 / 881
  28711. }
  28712. },
  28713. },
  28714. [
  28715. {
  28716. name: "Normal",
  28717. height: math.unit(5 + 10 / 12, "feet"),
  28718. default: true
  28719. },
  28720. ]
  28721. ))
  28722. characterMakers.push(() => makeCharacter(
  28723. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28724. {
  28725. front: {
  28726. height: math.unit(3 + 5 / 12, "feet"),
  28727. weight: math.unit(40, "kg"),
  28728. name: "Front",
  28729. image: {
  28730. source: "./media/characters/purple-flame/front.svg",
  28731. extra: 1577 / 1412,
  28732. bottom: 97 / 1694
  28733. }
  28734. },
  28735. frontDressed: {
  28736. height: math.unit(3 + 5 / 12, "feet"),
  28737. weight: math.unit(40, "kg"),
  28738. name: "Front (Dressed)",
  28739. image: {
  28740. source: "./media/characters/purple-flame/front-dressed.svg",
  28741. extra: 1577 / 1412,
  28742. bottom: 97 / 1694
  28743. }
  28744. },
  28745. headphones: {
  28746. height: math.unit(0.85, "feet"),
  28747. name: "Headphones",
  28748. image: {
  28749. source: "./media/characters/purple-flame/headphones.svg"
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Really Small",
  28756. height: math.unit(5, "cm")
  28757. },
  28758. {
  28759. name: "Micro",
  28760. height: math.unit(1 + 5 / 12, "feet")
  28761. },
  28762. {
  28763. name: "Normal",
  28764. height: math.unit(3 + 5 / 12, "feet"),
  28765. default: true
  28766. },
  28767. {
  28768. name: "Minimacro",
  28769. height: math.unit(125, "feet")
  28770. },
  28771. {
  28772. name: "Macro",
  28773. height: math.unit(0.5, "miles")
  28774. },
  28775. {
  28776. name: "Megamacro",
  28777. height: math.unit(50, "miles")
  28778. },
  28779. {
  28780. name: "Gigantic",
  28781. height: math.unit(750, "miles")
  28782. },
  28783. {
  28784. name: "Planetary",
  28785. height: math.unit(15000, "miles")
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28791. {
  28792. front: {
  28793. height: math.unit(14, "feet"),
  28794. weight: math.unit(959, "lb"),
  28795. name: "Front",
  28796. image: {
  28797. source: "./media/characters/arsenal/front.svg",
  28798. extra: 2357 / 2157,
  28799. bottom: 93 / 2458
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Normal",
  28806. height: math.unit(14, "feet"),
  28807. default: true
  28808. },
  28809. ]
  28810. ))
  28811. characterMakers.push(() => makeCharacter(
  28812. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28813. {
  28814. front: {
  28815. height: math.unit(6, "feet"),
  28816. weight: math.unit(150, "lb"),
  28817. name: "Front",
  28818. image: {
  28819. source: "./media/characters/adira/front.svg",
  28820. extra: 1078 / 1029,
  28821. bottom: 87 / 1166
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Micro",
  28828. height: math.unit(4, "inches"),
  28829. default: true
  28830. },
  28831. {
  28832. name: "Macro",
  28833. height: math.unit(50, "feet")
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(16, "feet"),
  28842. weight: math.unit(1000, "lb"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/grim/front.svg",
  28846. extra: 622 / 614,
  28847. bottom: 18.1 / 642
  28848. }
  28849. },
  28850. back: {
  28851. height: math.unit(16, "feet"),
  28852. weight: math.unit(1000, "lb"),
  28853. name: "Back",
  28854. image: {
  28855. source: "./media/characters/grim/back.svg",
  28856. extra: 610.6 / 602,
  28857. bottom: 40.8 / 652
  28858. }
  28859. },
  28860. hunched: {
  28861. height: math.unit(9.75, "feet"),
  28862. weight: math.unit(1000, "lb"),
  28863. name: "Hunched",
  28864. image: {
  28865. source: "./media/characters/grim/hunched.svg",
  28866. extra: 304 / 297,
  28867. bottom: 35.4 / 394
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(16, "feet"),
  28875. default: true
  28876. },
  28877. ]
  28878. ))
  28879. characterMakers.push(() => makeCharacter(
  28880. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28881. {
  28882. front: {
  28883. height: math.unit(2.3, "meters"),
  28884. weight: math.unit(300, "lb"),
  28885. name: "Front",
  28886. image: {
  28887. source: "./media/characters/sinja/front-sfw.svg",
  28888. extra: 1393 / 1294,
  28889. bottom: 70 / 1463
  28890. }
  28891. },
  28892. frontNsfw: {
  28893. height: math.unit(2.3, "meters"),
  28894. weight: math.unit(300, "lb"),
  28895. name: "Front (NSFW)",
  28896. image: {
  28897. source: "./media/characters/sinja/front-nsfw.svg",
  28898. extra: 1393 / 1294,
  28899. bottom: 70 / 1463
  28900. }
  28901. },
  28902. back: {
  28903. height: math.unit(2.3, "meters"),
  28904. weight: math.unit(300, "lb"),
  28905. name: "Back",
  28906. image: {
  28907. source: "./media/characters/sinja/back.svg",
  28908. extra: 1393 / 1294,
  28909. bottom: 70 / 1463
  28910. }
  28911. },
  28912. head: {
  28913. height: math.unit(1.771, "feet"),
  28914. name: "Head",
  28915. image: {
  28916. source: "./media/characters/sinja/head.svg"
  28917. }
  28918. },
  28919. slit: {
  28920. height: math.unit(0.8, "feet"),
  28921. name: "Slit",
  28922. image: {
  28923. source: "./media/characters/sinja/slit.svg"
  28924. }
  28925. },
  28926. },
  28927. [
  28928. {
  28929. name: "Normal",
  28930. height: math.unit(2.3, "meters")
  28931. },
  28932. {
  28933. name: "Macro",
  28934. height: math.unit(91, "meters"),
  28935. default: true
  28936. },
  28937. {
  28938. name: "Megamacro",
  28939. height: math.unit(91440, "meters")
  28940. },
  28941. {
  28942. name: "Gigamacro",
  28943. height: math.unit(60960000, "meters")
  28944. },
  28945. {
  28946. name: "Teramacro",
  28947. height: math.unit(9144000000, "meters")
  28948. },
  28949. ]
  28950. ))
  28951. characterMakers.push(() => makeCharacter(
  28952. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28953. {
  28954. front: {
  28955. height: math.unit(1.7, "meters"),
  28956. weight: math.unit(130, "lb"),
  28957. name: "Front",
  28958. image: {
  28959. source: "./media/characters/kyu/front.svg",
  28960. extra: 415 / 395,
  28961. bottom: 5 / 420
  28962. }
  28963. },
  28964. head: {
  28965. height: math.unit(1.75, "feet"),
  28966. name: "Head",
  28967. image: {
  28968. source: "./media/characters/kyu/head.svg"
  28969. }
  28970. },
  28971. foot: {
  28972. height: math.unit(0.81, "feet"),
  28973. name: "Foot",
  28974. image: {
  28975. source: "./media/characters/kyu/foot.svg"
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Normal",
  28982. height: math.unit(1.7, "meters")
  28983. },
  28984. {
  28985. name: "Macro",
  28986. height: math.unit(131, "feet"),
  28987. default: true
  28988. },
  28989. {
  28990. name: "Megamacro",
  28991. height: math.unit(91440, "meters")
  28992. },
  28993. {
  28994. name: "Gigamacro",
  28995. height: math.unit(60960000, "meters")
  28996. },
  28997. {
  28998. name: "Teramacro",
  28999. height: math.unit(9144000000, "meters")
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29005. {
  29006. front: {
  29007. height: math.unit(7 + 1 / 12, "feet"),
  29008. weight: math.unit(250, "lb"),
  29009. name: "Front",
  29010. image: {
  29011. source: "./media/characters/joey/front.svg",
  29012. extra: 1791 / 1537,
  29013. bottom: 28 / 1816
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Micro",
  29020. height: math.unit(3, "inches")
  29021. },
  29022. {
  29023. name: "Normal",
  29024. height: math.unit(7 + 1 / 12, "feet"),
  29025. default: true
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(165, "cm"),
  29034. weight: math.unit(140, "lb"),
  29035. name: "Front",
  29036. image: {
  29037. source: "./media/characters/sam-evans/front.svg",
  29038. extra: 3417 / 3230,
  29039. bottom: 41.3 / 3417
  29040. }
  29041. },
  29042. frontSixTails: {
  29043. height: math.unit(165, "cm"),
  29044. weight: math.unit(140, "lb"),
  29045. name: "Front-six-tails",
  29046. image: {
  29047. source: "./media/characters/sam-evans/front-six-tails.svg",
  29048. extra: 3417 / 3230,
  29049. bottom: 41.3 / 3417
  29050. }
  29051. },
  29052. back: {
  29053. height: math.unit(165, "cm"),
  29054. weight: math.unit(140, "lb"),
  29055. name: "Back",
  29056. image: {
  29057. source: "./media/characters/sam-evans/back.svg",
  29058. extra: 3227 / 3032,
  29059. bottom: 6.8 / 3234
  29060. }
  29061. },
  29062. face: {
  29063. height: math.unit(0.68, "feet"),
  29064. name: "Face",
  29065. image: {
  29066. source: "./media/characters/sam-evans/face.svg"
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Normal",
  29073. height: math.unit(165, "cm"),
  29074. default: true
  29075. },
  29076. {
  29077. name: "Macro",
  29078. height: math.unit(100, "meters")
  29079. },
  29080. {
  29081. name: "Macro+",
  29082. height: math.unit(800, "meters")
  29083. },
  29084. {
  29085. name: "Macro++",
  29086. height: math.unit(3, "km")
  29087. },
  29088. {
  29089. name: "Macro+++",
  29090. height: math.unit(30, "km")
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(10, "feet"),
  29099. weight: math.unit(750, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/juliet-a/front.svg",
  29103. extra: 1766 / 1720,
  29104. bottom: 43 / 1809
  29105. }
  29106. },
  29107. back: {
  29108. height: math.unit(10, "feet"),
  29109. weight: math.unit(750, "lb"),
  29110. name: "Back",
  29111. image: {
  29112. source: "./media/characters/juliet-a/back.svg",
  29113. extra: 1781 / 1734,
  29114. bottom: 35 / 1810,
  29115. }
  29116. },
  29117. },
  29118. [
  29119. {
  29120. name: "Normal",
  29121. height: math.unit(10, "feet"),
  29122. default: true
  29123. },
  29124. {
  29125. name: "Dragon Form",
  29126. height: math.unit(250, "feet")
  29127. },
  29128. {
  29129. name: "Macro",
  29130. height: math.unit(1000, "feet")
  29131. },
  29132. {
  29133. name: "Megamacro",
  29134. height: math.unit(10000, "feet")
  29135. }
  29136. ]
  29137. ))
  29138. characterMakers.push(() => makeCharacter(
  29139. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29140. {
  29141. regular: {
  29142. height: math.unit(7 + 3 / 12, "feet"),
  29143. weight: math.unit(260, "lb"),
  29144. name: "Regular",
  29145. image: {
  29146. source: "./media/characters/wild/regular.svg",
  29147. extra: 97.45 / 92,
  29148. bottom: 6.8 / 104.3
  29149. }
  29150. },
  29151. biggums: {
  29152. height: math.unit(8 + 6 / 12, "feet"),
  29153. weight: math.unit(425, "lb"),
  29154. name: "Biggums",
  29155. image: {
  29156. source: "./media/characters/wild/biggums.svg",
  29157. extra: 97.45 / 92,
  29158. bottom: 7.5 / 132.34
  29159. }
  29160. },
  29161. mawRegular: {
  29162. height: math.unit(1.24, "feet"),
  29163. name: "Maw (Regular)",
  29164. image: {
  29165. source: "./media/characters/wild/maw.svg"
  29166. }
  29167. },
  29168. mawBiggums: {
  29169. height: math.unit(1.47, "feet"),
  29170. name: "Maw (Biggums)",
  29171. image: {
  29172. source: "./media/characters/wild/maw.svg"
  29173. }
  29174. },
  29175. },
  29176. [
  29177. {
  29178. name: "Normal",
  29179. height: math.unit(7 + 3 / 12, "feet"),
  29180. default: true
  29181. },
  29182. ]
  29183. ))
  29184. characterMakers.push(() => makeCharacter(
  29185. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29186. {
  29187. front: {
  29188. height: math.unit(2.5, "meters"),
  29189. weight: math.unit(200, "kg"),
  29190. name: "Front",
  29191. image: {
  29192. source: "./media/characters/vidar/front.svg",
  29193. extra: 2994 / 2795,
  29194. bottom: 56 / 3061
  29195. }
  29196. },
  29197. back: {
  29198. height: math.unit(2.5, "meters"),
  29199. weight: math.unit(200, "kg"),
  29200. name: "Back",
  29201. image: {
  29202. source: "./media/characters/vidar/back.svg",
  29203. extra: 3131 / 2928,
  29204. bottom: 13.5 / 3141.5
  29205. }
  29206. },
  29207. feral: {
  29208. height: math.unit(2.5, "meters"),
  29209. weight: math.unit(2000, "kg"),
  29210. name: "Feral",
  29211. image: {
  29212. source: "./media/characters/vidar/feral.svg",
  29213. extra: 2790 / 1765,
  29214. bottom: 6 / 2796
  29215. }
  29216. },
  29217. },
  29218. [
  29219. {
  29220. name: "Normal",
  29221. height: math.unit(2.5, "meters"),
  29222. default: true
  29223. },
  29224. {
  29225. name: "Macro",
  29226. height: math.unit(100, "meters")
  29227. },
  29228. ]
  29229. ))
  29230. characterMakers.push(() => makeCharacter(
  29231. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29232. {
  29233. front: {
  29234. height: math.unit(5 + 9 / 12, "feet"),
  29235. weight: math.unit(120, "lb"),
  29236. name: "Front",
  29237. image: {
  29238. source: "./media/characters/ash/front.svg",
  29239. extra: 2189 / 1961,
  29240. bottom: 5.2 / 2194
  29241. }
  29242. },
  29243. },
  29244. [
  29245. {
  29246. name: "Normal",
  29247. height: math.unit(5 + 9 / 12, "feet"),
  29248. default: true
  29249. },
  29250. ]
  29251. ))
  29252. characterMakers.push(() => makeCharacter(
  29253. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29254. {
  29255. front: {
  29256. height: math.unit(9, "feet"),
  29257. weight: math.unit(10000, "lb"),
  29258. name: "Front",
  29259. image: {
  29260. source: "./media/characters/gygabite/front.svg",
  29261. bottom: 31.7 / 537.8,
  29262. extra: 505 / 370
  29263. }
  29264. },
  29265. },
  29266. [
  29267. {
  29268. name: "Normal",
  29269. height: math.unit(9, "feet"),
  29270. default: true
  29271. },
  29272. ]
  29273. ))
  29274. characterMakers.push(() => makeCharacter(
  29275. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29276. {
  29277. front: {
  29278. height: math.unit(12, "feet"),
  29279. weight: math.unit(4000, "lb"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/p0tat0/front.svg",
  29283. extra: 1065 / 921,
  29284. bottom: 55.7 / 1121.25
  29285. }
  29286. },
  29287. },
  29288. [
  29289. {
  29290. name: "Normal",
  29291. height: math.unit(12, "feet"),
  29292. default: true
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29298. {
  29299. side: {
  29300. height: math.unit(6.5, "feet"),
  29301. weight: math.unit(800, "lb"),
  29302. name: "Side",
  29303. image: {
  29304. source: "./media/characters/dusk/side.svg",
  29305. extra: 615 / 373,
  29306. bottom: 53 / 664
  29307. }
  29308. },
  29309. sitting: {
  29310. height: math.unit(7, "feet"),
  29311. weight: math.unit(800, "lb"),
  29312. name: "Sitting",
  29313. image: {
  29314. source: "./media/characters/dusk/sitting.svg",
  29315. extra: 753 / 425,
  29316. bottom: 33 / 774
  29317. }
  29318. },
  29319. head: {
  29320. height: math.unit(6.1, "feet"),
  29321. name: "Head",
  29322. image: {
  29323. source: "./media/characters/dusk/head.svg"
  29324. }
  29325. },
  29326. },
  29327. [
  29328. {
  29329. name: "Normal",
  29330. height: math.unit(7, "feet"),
  29331. default: true
  29332. },
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29337. {
  29338. front: {
  29339. height: math.unit(15, "feet"),
  29340. weight: math.unit(7000, "lb"),
  29341. name: "Front",
  29342. image: {
  29343. source: "./media/characters/jay-direwolf/front.svg",
  29344. extra: 1810 / 1732,
  29345. bottom: 66 / 1892
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Normal",
  29352. height: math.unit(15, "feet"),
  29353. default: true
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29359. {
  29360. front: {
  29361. height: math.unit(4 + 9 / 12, "feet"),
  29362. weight: math.unit(130, "lb"),
  29363. name: "Front",
  29364. image: {
  29365. source: "./media/characters/anchovie/front.svg",
  29366. extra: 382 / 350,
  29367. bottom: 25 / 409
  29368. }
  29369. },
  29370. back: {
  29371. height: math.unit(4 + 9 / 12, "feet"),
  29372. weight: math.unit(130, "lb"),
  29373. name: "Back",
  29374. image: {
  29375. source: "./media/characters/anchovie/back.svg",
  29376. extra: 385 / 352,
  29377. bottom: 16.6 / 402
  29378. }
  29379. },
  29380. frontDressed: {
  29381. height: math.unit(4 + 9 / 12, "feet"),
  29382. weight: math.unit(130, "lb"),
  29383. name: "Front (Dressed)",
  29384. image: {
  29385. source: "./media/characters/anchovie/front-dressed.svg",
  29386. extra: 382 / 350,
  29387. bottom: 25 / 409
  29388. }
  29389. },
  29390. backDressed: {
  29391. height: math.unit(4 + 9 / 12, "feet"),
  29392. weight: math.unit(130, "lb"),
  29393. name: "Back (Dressed)",
  29394. image: {
  29395. source: "./media/characters/anchovie/back-dressed.svg",
  29396. extra: 385 / 352,
  29397. bottom: 16.6 / 402
  29398. }
  29399. },
  29400. },
  29401. [
  29402. {
  29403. name: "Micro",
  29404. height: math.unit(6.4, "inches")
  29405. },
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(4 + 9 / 12, "feet"),
  29409. default: true
  29410. },
  29411. ]
  29412. ))
  29413. characterMakers.push(() => makeCharacter(
  29414. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29415. {
  29416. front: {
  29417. height: math.unit(2, "meters"),
  29418. weight: math.unit(180, "lb"),
  29419. name: "Front",
  29420. image: {
  29421. source: "./media/characters/acidrenamon/front.svg",
  29422. extra: 987 / 890,
  29423. bottom: 22.8 / 1009
  29424. }
  29425. },
  29426. back: {
  29427. height: math.unit(2, "meters"),
  29428. weight: math.unit(180, "lb"),
  29429. name: "Back",
  29430. image: {
  29431. source: "./media/characters/acidrenamon/back.svg",
  29432. extra: 983 / 891,
  29433. bottom: 8.4 / 992
  29434. }
  29435. },
  29436. head: {
  29437. height: math.unit(1.92, "feet"),
  29438. name: "Head",
  29439. image: {
  29440. source: "./media/characters/acidrenamon/head.svg"
  29441. }
  29442. },
  29443. rump: {
  29444. height: math.unit(1.72, "feet"),
  29445. name: "Rump",
  29446. image: {
  29447. source: "./media/characters/acidrenamon/rump.svg"
  29448. }
  29449. },
  29450. tail: {
  29451. height: math.unit(4.2, "feet"),
  29452. name: "Tail",
  29453. image: {
  29454. source: "./media/characters/acidrenamon/tail.svg"
  29455. }
  29456. },
  29457. },
  29458. [
  29459. {
  29460. name: "Normal",
  29461. height: math.unit(2, "meters"),
  29462. default: true
  29463. },
  29464. {
  29465. name: "Minimacro",
  29466. height: math.unit(7, "meters")
  29467. },
  29468. {
  29469. name: "Macro",
  29470. height: math.unit(200, "meters")
  29471. },
  29472. {
  29473. name: "Gigamacro",
  29474. height: math.unit(0.2, "earths")
  29475. },
  29476. ]
  29477. ))
  29478. characterMakers.push(() => makeCharacter(
  29479. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29480. {
  29481. front: {
  29482. height: math.unit(152, "feet"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/kenzie-lee/front.svg",
  29486. extra: 1869/1774,
  29487. bottom: 128/1997
  29488. }
  29489. },
  29490. side: {
  29491. height: math.unit(86, "feet"),
  29492. name: "Side",
  29493. image: {
  29494. source: "./media/characters/kenzie-lee/side.svg",
  29495. extra: 930/815,
  29496. bottom: 177/1107
  29497. }
  29498. },
  29499. paw: {
  29500. height: math.unit(15, "feet"),
  29501. name: "Paw",
  29502. image: {
  29503. source: "./media/characters/kenzie-lee/paw.svg"
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Kenzie Flea",
  29510. height: math.unit(2, "mm"),
  29511. default: true
  29512. },
  29513. {
  29514. name: "Micro",
  29515. height: math.unit(2, "inches")
  29516. },
  29517. {
  29518. name: "Normal",
  29519. height: math.unit(152, "feet")
  29520. },
  29521. {
  29522. name: "Megamacro",
  29523. height: math.unit(7, "miles")
  29524. },
  29525. {
  29526. name: "Gigamacro",
  29527. height: math.unit(8000, "miles")
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29533. {
  29534. front: {
  29535. height: math.unit(6, "feet"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/withers/front.svg",
  29539. extra: 1935/1760,
  29540. bottom: 72/2007
  29541. }
  29542. },
  29543. back: {
  29544. height: math.unit(6, "feet"),
  29545. name: "Back",
  29546. image: {
  29547. source: "./media/characters/withers/back.svg",
  29548. extra: 1944/1792,
  29549. bottom: 12/1956
  29550. }
  29551. },
  29552. dressed: {
  29553. height: math.unit(6, "feet"),
  29554. name: "Dressed",
  29555. image: {
  29556. source: "./media/characters/withers/dressed.svg",
  29557. extra: 1937/1765,
  29558. bottom: 73/2010
  29559. }
  29560. },
  29561. phase1: {
  29562. height: math.unit(1.1, "feet"),
  29563. name: "Phase 1",
  29564. image: {
  29565. source: "./media/characters/withers/phase-1.svg",
  29566. extra: 1885/1232,
  29567. bottom: 0/1885
  29568. }
  29569. },
  29570. phase2: {
  29571. height: math.unit(1.05, "feet"),
  29572. name: "Phase 2",
  29573. image: {
  29574. source: "./media/characters/withers/phase-2.svg",
  29575. extra: 1792/1090,
  29576. bottom: 0/1792
  29577. }
  29578. },
  29579. partyWipe: {
  29580. height: math.unit(1.1, "feet"),
  29581. name: "Party Wipe",
  29582. image: {
  29583. source: "./media/characters/withers/party-wipe.svg",
  29584. extra: 1864/1207,
  29585. bottom: 0/1864
  29586. }
  29587. },
  29588. },
  29589. [
  29590. {
  29591. name: "Macro",
  29592. height: math.unit(167, "feet"),
  29593. default: true
  29594. },
  29595. {
  29596. name: "Megamacro",
  29597. height: math.unit(15, "miles")
  29598. }
  29599. ]
  29600. ))
  29601. characterMakers.push(() => makeCharacter(
  29602. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29603. {
  29604. front: {
  29605. height: math.unit(6 + 7 / 12, "feet"),
  29606. weight: math.unit(250, "lb"),
  29607. name: "Front",
  29608. image: {
  29609. source: "./media/characters/nemoskii/front.svg",
  29610. extra: 2270 / 1734,
  29611. bottom: 86 / 2354
  29612. }
  29613. },
  29614. back: {
  29615. height: math.unit(6 + 7 / 12, "feet"),
  29616. weight: math.unit(250, "lb"),
  29617. name: "Back",
  29618. image: {
  29619. source: "./media/characters/nemoskii/back.svg",
  29620. extra: 1845 / 1788,
  29621. bottom: 10.5 / 1852
  29622. }
  29623. },
  29624. head: {
  29625. height: math.unit(1.31, "feet"),
  29626. name: "Head",
  29627. image: {
  29628. source: "./media/characters/nemoskii/head.svg"
  29629. }
  29630. },
  29631. },
  29632. [
  29633. {
  29634. name: "Micro",
  29635. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29636. },
  29637. {
  29638. name: "Normal",
  29639. height: math.unit(6 + 7 / 12, "feet"),
  29640. default: true
  29641. },
  29642. {
  29643. name: "Macro",
  29644. height: math.unit((6 + 7 / 12) * 150, "feet")
  29645. },
  29646. {
  29647. name: "Macro+",
  29648. height: math.unit((6 + 7 / 12) * 500, "feet")
  29649. },
  29650. {
  29651. name: "Megamacro",
  29652. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29653. },
  29654. ]
  29655. ))
  29656. characterMakers.push(() => makeCharacter(
  29657. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29658. {
  29659. front: {
  29660. height: math.unit(1, "mile"),
  29661. weight: math.unit(265261.9, "lb"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/shui/front.svg",
  29665. extra: 1633 / 1564,
  29666. bottom: 91.5 / 1726
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Macro",
  29673. height: math.unit(1, "mile"),
  29674. default: true
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29680. {
  29681. front: {
  29682. height: math.unit(12 + 6 / 12, "feet"),
  29683. weight: math.unit(1342, "lb"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/arokh-takakura/front.svg",
  29687. extra: 1089 / 1043,
  29688. bottom: 77.4 / 1176.7
  29689. }
  29690. },
  29691. back: {
  29692. height: math.unit(12 + 6 / 12, "feet"),
  29693. weight: math.unit(1342, "lb"),
  29694. name: "Back",
  29695. image: {
  29696. source: "./media/characters/arokh-takakura/back.svg",
  29697. extra: 1046 / 1019,
  29698. bottom: 102 / 1150
  29699. }
  29700. },
  29701. },
  29702. [
  29703. {
  29704. name: "Big",
  29705. height: math.unit(12 + 6 / 12, "feet"),
  29706. default: true
  29707. },
  29708. ]
  29709. ))
  29710. characterMakers.push(() => makeCharacter(
  29711. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29712. {
  29713. front: {
  29714. height: math.unit(5 + 6 / 12, "feet"),
  29715. weight: math.unit(150, "lb"),
  29716. name: "Front",
  29717. image: {
  29718. source: "./media/characters/theo/front.svg",
  29719. extra: 1184 / 1131,
  29720. bottom: 7.4 / 1191
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Micro",
  29727. height: math.unit(5, "inches")
  29728. },
  29729. {
  29730. name: "Normal",
  29731. height: math.unit(5 + 6 / 12, "feet"),
  29732. default: true
  29733. },
  29734. ]
  29735. ))
  29736. characterMakers.push(() => makeCharacter(
  29737. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29738. {
  29739. front: {
  29740. height: math.unit(5 + 9 / 12, "feet"),
  29741. weight: math.unit(130, "lb"),
  29742. name: "Front",
  29743. image: {
  29744. source: "./media/characters/cecelia-swift/front.svg",
  29745. extra: 502 / 484,
  29746. bottom: 23 / 523
  29747. }
  29748. },
  29749. back: {
  29750. height: math.unit(5 + 9 / 12, "feet"),
  29751. weight: math.unit(130, "lb"),
  29752. name: "Back",
  29753. image: {
  29754. source: "./media/characters/cecelia-swift/back.svg",
  29755. extra: 499 / 485,
  29756. bottom: 12 / 511
  29757. }
  29758. },
  29759. head: {
  29760. height: math.unit(0.90, "feet"),
  29761. name: "Head",
  29762. image: {
  29763. source: "./media/characters/cecelia-swift/head.svg"
  29764. }
  29765. },
  29766. rump: {
  29767. height: math.unit(1.75, "feet"),
  29768. name: "Rump",
  29769. image: {
  29770. source: "./media/characters/cecelia-swift/rump.svg"
  29771. }
  29772. },
  29773. },
  29774. [
  29775. {
  29776. name: "Normal",
  29777. height: math.unit(5 + 9 / 12, "feet"),
  29778. default: true
  29779. },
  29780. {
  29781. name: "Big",
  29782. height: math.unit(50, "feet")
  29783. },
  29784. {
  29785. name: "Macro",
  29786. height: math.unit(100, "feet")
  29787. },
  29788. {
  29789. name: "Macro+",
  29790. height: math.unit(500, "feet")
  29791. },
  29792. {
  29793. name: "Macro++",
  29794. height: math.unit(1000, "feet")
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(6, "feet"),
  29803. weight: math.unit(150, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/kaunan/front.svg",
  29807. extra: 2890 / 2523,
  29808. bottom: 49 / 2939
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Macro",
  29815. height: math.unit(150, "feet"),
  29816. default: true
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29822. {
  29823. dressed: {
  29824. height: math.unit(175, "cm"),
  29825. weight: math.unit(60, "kg"),
  29826. name: "Dressed",
  29827. image: {
  29828. source: "./media/characters/fei/dressed.svg",
  29829. extra: 1402/1278,
  29830. bottom: 27/1429
  29831. }
  29832. },
  29833. nude: {
  29834. height: math.unit(175, "cm"),
  29835. weight: math.unit(60, "kg"),
  29836. name: "Nude",
  29837. image: {
  29838. source: "./media/characters/fei/nude.svg",
  29839. extra: 1402/1278,
  29840. bottom: 27/1429
  29841. }
  29842. },
  29843. heels: {
  29844. height: math.unit(0.466, "feet"),
  29845. name: "Heels",
  29846. image: {
  29847. source: "./media/characters/fei/heels.svg",
  29848. extra: 156/152,
  29849. bottom: 28/184
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "Mortal",
  29856. height: math.unit(175, "cm")
  29857. },
  29858. {
  29859. name: "Normal",
  29860. height: math.unit(3500, "m")
  29861. },
  29862. {
  29863. name: "Stroll",
  29864. height: math.unit(18.4, "km"),
  29865. default: true
  29866. },
  29867. {
  29868. name: "Showoff",
  29869. height: math.unit(175, "km")
  29870. },
  29871. ]
  29872. ))
  29873. characterMakers.push(() => makeCharacter(
  29874. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29875. {
  29876. front: {
  29877. height: math.unit(7, "feet"),
  29878. weight: math.unit(1000, "kg"),
  29879. name: "Front",
  29880. image: {
  29881. source: "./media/characters/edrax/front.svg",
  29882. extra: 2838 / 2550,
  29883. bottom: 130 / 2968
  29884. }
  29885. },
  29886. },
  29887. [
  29888. {
  29889. name: "Small",
  29890. height: math.unit(7, "feet")
  29891. },
  29892. {
  29893. name: "Normal",
  29894. height: math.unit(1500, "meters")
  29895. },
  29896. {
  29897. name: "Mega",
  29898. height: math.unit(12000000, "km"),
  29899. default: true
  29900. },
  29901. {
  29902. name: "Megamacro",
  29903. height: math.unit(10600000, "lightyears")
  29904. },
  29905. {
  29906. name: "Hypermacro",
  29907. height: math.unit(256, "yottameters")
  29908. },
  29909. ]
  29910. ))
  29911. characterMakers.push(() => makeCharacter(
  29912. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29913. {
  29914. front: {
  29915. height: math.unit(10, "feet"),
  29916. weight: math.unit(750, "lb"),
  29917. name: "Front",
  29918. image: {
  29919. source: "./media/characters/clove/front.svg",
  29920. extra: 1918/1751,
  29921. bottom: 52/1970
  29922. }
  29923. },
  29924. back: {
  29925. height: math.unit(10, "feet"),
  29926. weight: math.unit(750, "lb"),
  29927. name: "Back",
  29928. image: {
  29929. source: "./media/characters/clove/back.svg",
  29930. extra: 1912/1747,
  29931. bottom: 50/1962
  29932. }
  29933. },
  29934. },
  29935. [
  29936. {
  29937. name: "Normal",
  29938. height: math.unit(10, "feet"),
  29939. default: true
  29940. },
  29941. ]
  29942. ))
  29943. characterMakers.push(() => makeCharacter(
  29944. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29945. {
  29946. front: {
  29947. height: math.unit(4, "feet"),
  29948. weight: math.unit(50, "lb"),
  29949. name: "Front",
  29950. image: {
  29951. source: "./media/characters/alex-rabbit/front.svg",
  29952. extra: 507 / 458,
  29953. bottom: 18.5 / 527
  29954. }
  29955. },
  29956. back: {
  29957. height: math.unit(4, "feet"),
  29958. weight: math.unit(50, "lb"),
  29959. name: "Back",
  29960. image: {
  29961. source: "./media/characters/alex-rabbit/back.svg",
  29962. extra: 502 / 460,
  29963. bottom: 18.9 / 521
  29964. }
  29965. },
  29966. },
  29967. [
  29968. {
  29969. name: "Normal",
  29970. height: math.unit(4, "feet"),
  29971. default: true
  29972. },
  29973. ]
  29974. ))
  29975. characterMakers.push(() => makeCharacter(
  29976. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29977. {
  29978. front: {
  29979. height: math.unit(1 + 3 / 12, "feet"),
  29980. weight: math.unit(80, "lb"),
  29981. name: "Front",
  29982. image: {
  29983. source: "./media/characters/zander-rose/front.svg",
  29984. extra: 916 / 797,
  29985. bottom: 17 / 933
  29986. }
  29987. },
  29988. back: {
  29989. height: math.unit(1 + 3 / 12, "feet"),
  29990. weight: math.unit(80, "lb"),
  29991. name: "Back",
  29992. image: {
  29993. source: "./media/characters/zander-rose/back.svg",
  29994. extra: 903 / 779,
  29995. bottom: 31 / 934
  29996. }
  29997. },
  29998. },
  29999. [
  30000. {
  30001. name: "Normal",
  30002. height: math.unit(1 + 3 / 12, "feet"),
  30003. default: true
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30009. {
  30010. anthro: {
  30011. height: math.unit(6, "feet"),
  30012. weight: math.unit(150, "lb"),
  30013. name: "Anthro",
  30014. image: {
  30015. source: "./media/characters/razz/anthro.svg",
  30016. extra: 1437 / 1343,
  30017. bottom: 48 / 1485
  30018. }
  30019. },
  30020. feral: {
  30021. height: math.unit(6, "feet"),
  30022. weight: math.unit(150, "lb"),
  30023. name: "Feral",
  30024. image: {
  30025. source: "./media/characters/razz/feral.svg",
  30026. extra: 2569 / 1385,
  30027. bottom: 95 / 2664
  30028. }
  30029. },
  30030. },
  30031. [
  30032. {
  30033. name: "Normal",
  30034. height: math.unit(6, "feet"),
  30035. default: true
  30036. },
  30037. ]
  30038. ))
  30039. characterMakers.push(() => makeCharacter(
  30040. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30041. {
  30042. front: {
  30043. height: math.unit(9 + 4 / 12, "feet"),
  30044. weight: math.unit(500, "lb"),
  30045. name: "Front",
  30046. image: {
  30047. source: "./media/characters/morrigan/front.svg",
  30048. extra: 2707 / 2579,
  30049. bottom: 156 / 2863
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Normal",
  30056. height: math.unit(9 + 4 / 12, "feet"),
  30057. default: true
  30058. },
  30059. ]
  30060. ))
  30061. characterMakers.push(() => makeCharacter(
  30062. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30063. {
  30064. front: {
  30065. height: math.unit(5, "stories"),
  30066. weight: math.unit(4000, "lb"),
  30067. name: "Front",
  30068. image: {
  30069. source: "./media/characters/jenene/front.svg",
  30070. extra: 1780 / 1710,
  30071. bottom: 57 / 1837
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(5, "stories"),
  30079. default: true
  30080. },
  30081. ]
  30082. ))
  30083. characterMakers.push(() => makeCharacter(
  30084. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30085. {
  30086. taurSfw: {
  30087. height: math.unit(10, "meters"),
  30088. weight: math.unit(17500, "kg"),
  30089. name: "Taur",
  30090. image: {
  30091. source: "./media/characters/faey/taur-sfw.svg",
  30092. extra: 1200 / 968,
  30093. bottom: 41 / 1241
  30094. }
  30095. },
  30096. chestmaw: {
  30097. height: math.unit(2.01, "meters"),
  30098. name: "Chestmaw",
  30099. image: {
  30100. source: "./media/characters/faey/chestmaw.svg"
  30101. }
  30102. },
  30103. foot: {
  30104. height: math.unit(2.43, "meters"),
  30105. name: "Foot",
  30106. image: {
  30107. source: "./media/characters/faey/foot.svg"
  30108. }
  30109. },
  30110. jaws: {
  30111. height: math.unit(1.66, "meters"),
  30112. name: "Jaws",
  30113. image: {
  30114. source: "./media/characters/faey/jaws.svg"
  30115. }
  30116. },
  30117. tongues: {
  30118. height: math.unit(2.01, "meters"),
  30119. name: "Tongues",
  30120. image: {
  30121. source: "./media/characters/faey/tongues.svg"
  30122. }
  30123. },
  30124. },
  30125. [
  30126. {
  30127. name: "Small",
  30128. height: math.unit(10, "meters"),
  30129. default: true
  30130. },
  30131. {
  30132. name: "Big",
  30133. height: math.unit(500000, "km")
  30134. },
  30135. ]
  30136. ))
  30137. characterMakers.push(() => makeCharacter(
  30138. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30139. {
  30140. front: {
  30141. height: math.unit(7, "feet"),
  30142. weight: math.unit(275, "lb"),
  30143. name: "Front",
  30144. image: {
  30145. source: "./media/characters/roku/front.svg",
  30146. extra: 903 / 878,
  30147. bottom: 37 / 940
  30148. }
  30149. },
  30150. },
  30151. [
  30152. {
  30153. name: "Normal",
  30154. height: math.unit(7, "feet"),
  30155. default: true
  30156. },
  30157. {
  30158. name: "Macro",
  30159. height: math.unit(500, "feet")
  30160. },
  30161. {
  30162. name: "Megamacro",
  30163. height: math.unit(200, "miles")
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30169. {
  30170. front: {
  30171. height: math.unit(6 + 2 / 12, "feet"),
  30172. weight: math.unit(150, "lb"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/lira/front.svg",
  30176. extra: 1727 / 1605,
  30177. bottom: 26 / 1753
  30178. }
  30179. },
  30180. back: {
  30181. height: math.unit(6 + 2 / 12, "feet"),
  30182. weight: math.unit(150, "lb"),
  30183. name: "Back",
  30184. image: {
  30185. source: "./media/characters/lira/back.svg",
  30186. extra: 1713/1621,
  30187. bottom: 20/1733
  30188. }
  30189. },
  30190. hand: {
  30191. height: math.unit(0.75, "feet"),
  30192. name: "Hand",
  30193. image: {
  30194. source: "./media/characters/lira/hand.svg"
  30195. }
  30196. },
  30197. maw: {
  30198. height: math.unit(0.65, "feet"),
  30199. name: "Maw",
  30200. image: {
  30201. source: "./media/characters/lira/maw.svg"
  30202. }
  30203. },
  30204. pawDigi: {
  30205. height: math.unit(1.6, "feet"),
  30206. name: "Paw Digi",
  30207. image: {
  30208. source: "./media/characters/lira/paw-digi.svg"
  30209. }
  30210. },
  30211. pawPlanti: {
  30212. height: math.unit(1.4, "feet"),
  30213. name: "Paw Planti",
  30214. image: {
  30215. source: "./media/characters/lira/paw-planti.svg"
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Normal",
  30222. height: math.unit(6 + 2 / 12, "feet"),
  30223. default: true
  30224. },
  30225. {
  30226. name: "Macro",
  30227. height: math.unit(100, "feet")
  30228. },
  30229. {
  30230. name: "Macro²",
  30231. height: math.unit(1600, "feet")
  30232. },
  30233. {
  30234. name: "Planetary",
  30235. height: math.unit(20, "earths")
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(6, "feet"),
  30244. weight: math.unit(150, "lb"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/hadjet/front.svg",
  30248. extra: 1480 / 1346,
  30249. bottom: 26 / 1506
  30250. }
  30251. },
  30252. frontNsfw: {
  30253. height: math.unit(6, "feet"),
  30254. weight: math.unit(150, "lb"),
  30255. name: "Front (NSFW)",
  30256. image: {
  30257. source: "./media/characters/hadjet/front-nsfw.svg",
  30258. extra: 1440 / 1358,
  30259. bottom: 52 / 1492
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Macro",
  30266. height: math.unit(10, "stories"),
  30267. default: true
  30268. },
  30269. {
  30270. name: "Megamacro",
  30271. height: math.unit(1.5, "miles")
  30272. },
  30273. {
  30274. name: "Megamacro+",
  30275. height: math.unit(5, "miles")
  30276. },
  30277. ]
  30278. ))
  30279. characterMakers.push(() => makeCharacter(
  30280. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30281. {
  30282. side: {
  30283. height: math.unit(106, "feet"),
  30284. weight: math.unit(500, "tonnes"),
  30285. name: "Side",
  30286. image: {
  30287. source: "./media/characters/kodran/side.svg",
  30288. extra: 553 / 480,
  30289. bottom: 33 / 586
  30290. }
  30291. },
  30292. front: {
  30293. height: math.unit(132, "feet"),
  30294. weight: math.unit(500, "tonnes"),
  30295. name: "Front",
  30296. image: {
  30297. source: "./media/characters/kodran/front.svg",
  30298. extra: 667 / 643,
  30299. bottom: 42 / 709
  30300. }
  30301. },
  30302. flying: {
  30303. height: math.unit(350, "feet"),
  30304. weight: math.unit(500, "tonnes"),
  30305. name: "Flying",
  30306. image: {
  30307. source: "./media/characters/kodran/flying.svg"
  30308. }
  30309. },
  30310. foot: {
  30311. height: math.unit(33, "feet"),
  30312. name: "Foot",
  30313. image: {
  30314. source: "./media/characters/kodran/foot.svg"
  30315. }
  30316. },
  30317. footFront: {
  30318. height: math.unit(19, "feet"),
  30319. name: "Foot (Front)",
  30320. image: {
  30321. source: "./media/characters/kodran/foot-front.svg",
  30322. extra: 261 / 261,
  30323. bottom: 91 / 352
  30324. }
  30325. },
  30326. headFront: {
  30327. height: math.unit(53, "feet"),
  30328. name: "Head (Front)",
  30329. image: {
  30330. source: "./media/characters/kodran/head-front.svg"
  30331. }
  30332. },
  30333. headSide: {
  30334. height: math.unit(65, "feet"),
  30335. name: "Head (Side)",
  30336. image: {
  30337. source: "./media/characters/kodran/head-side.svg"
  30338. }
  30339. },
  30340. throat: {
  30341. height: math.unit(79, "feet"),
  30342. name: "Throat",
  30343. image: {
  30344. source: "./media/characters/kodran/throat.svg"
  30345. }
  30346. },
  30347. },
  30348. [
  30349. {
  30350. name: "Large",
  30351. height: math.unit(106, "feet"),
  30352. default: true
  30353. },
  30354. ]
  30355. ))
  30356. characterMakers.push(() => makeCharacter(
  30357. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30358. {
  30359. side: {
  30360. height: math.unit(11, "feet"),
  30361. weight: math.unit(150, "lb"),
  30362. name: "Side",
  30363. image: {
  30364. source: "./media/characters/pyxaron/side.svg",
  30365. extra: 305 / 195,
  30366. bottom: 17 / 322
  30367. }
  30368. },
  30369. },
  30370. [
  30371. {
  30372. name: "Normal",
  30373. height: math.unit(11, "feet"),
  30374. default: true
  30375. },
  30376. ]
  30377. ))
  30378. characterMakers.push(() => makeCharacter(
  30379. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30380. {
  30381. front: {
  30382. height: math.unit(6, "feet"),
  30383. weight: math.unit(150, "lb"),
  30384. name: "Front",
  30385. image: {
  30386. source: "./media/characters/meep/front.svg",
  30387. extra: 88 / 80,
  30388. bottom: 6 / 94
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Fun Sized",
  30395. height: math.unit(2, "inches"),
  30396. default: true
  30397. },
  30398. {
  30399. name: "Friend Sized",
  30400. height: math.unit(8, "inches")
  30401. },
  30402. ]
  30403. ))
  30404. characterMakers.push(() => makeCharacter(
  30405. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30406. {
  30407. front: {
  30408. height: math.unit(15, "feet"),
  30409. weight: math.unit(2500, "lb"),
  30410. name: "Front",
  30411. image: {
  30412. source: "./media/characters/holly-rabbit/front.svg",
  30413. extra: 1433 / 1233,
  30414. bottom: 125 / 1558
  30415. }
  30416. },
  30417. dick: {
  30418. height: math.unit(4.6, "feet"),
  30419. name: "Dick",
  30420. image: {
  30421. source: "./media/characters/holly-rabbit/dick.svg"
  30422. }
  30423. },
  30424. },
  30425. [
  30426. {
  30427. name: "Normal",
  30428. height: math.unit(15, "feet"),
  30429. default: true
  30430. },
  30431. {
  30432. name: "Macro",
  30433. height: math.unit(250, "feet")
  30434. },
  30435. {
  30436. name: "Macro+",
  30437. height: math.unit(2500, "feet")
  30438. },
  30439. ]
  30440. ))
  30441. characterMakers.push(() => makeCharacter(
  30442. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30443. {
  30444. front: {
  30445. height: math.unit(3.02, "meters"),
  30446. weight: math.unit(500, "kg"),
  30447. name: "Front",
  30448. image: {
  30449. source: "./media/characters/drena/front.svg",
  30450. extra: 282 / 243,
  30451. bottom: 8 / 290
  30452. }
  30453. },
  30454. side: {
  30455. height: math.unit(3.02, "meters"),
  30456. weight: math.unit(500, "kg"),
  30457. name: "Side",
  30458. image: {
  30459. source: "./media/characters/drena/side.svg",
  30460. extra: 280 / 245,
  30461. bottom: 10 / 290
  30462. }
  30463. },
  30464. back: {
  30465. height: math.unit(3.02, "meters"),
  30466. weight: math.unit(500, "kg"),
  30467. name: "Back",
  30468. image: {
  30469. source: "./media/characters/drena/back.svg",
  30470. extra: 278 / 243,
  30471. bottom: 2 / 280
  30472. }
  30473. },
  30474. foot: {
  30475. height: math.unit(0.75, "meters"),
  30476. name: "Foot",
  30477. image: {
  30478. source: "./media/characters/drena/foot.svg"
  30479. }
  30480. },
  30481. maw: {
  30482. height: math.unit(0.82, "meters"),
  30483. name: "Maw",
  30484. image: {
  30485. source: "./media/characters/drena/maw.svg"
  30486. }
  30487. },
  30488. eating: {
  30489. height: math.unit(0.75, "meters"),
  30490. name: "Eating",
  30491. image: {
  30492. source: "./media/characters/drena/eating.svg"
  30493. }
  30494. },
  30495. rump: {
  30496. height: math.unit(0.93, "meters"),
  30497. name: "Rump",
  30498. image: {
  30499. source: "./media/characters/drena/rump.svg"
  30500. }
  30501. },
  30502. },
  30503. [
  30504. {
  30505. name: "Normal",
  30506. height: math.unit(3.02, "meters"),
  30507. default: true
  30508. },
  30509. ]
  30510. ))
  30511. characterMakers.push(() => makeCharacter(
  30512. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30513. {
  30514. front: {
  30515. height: math.unit(6 + 4 / 12, "feet"),
  30516. weight: math.unit(250, "lb"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/remmyzilla/front.svg",
  30520. extra: 4033 / 3588,
  30521. bottom: 123 / 4156
  30522. }
  30523. },
  30524. back: {
  30525. height: math.unit(6 + 4 / 12, "feet"),
  30526. weight: math.unit(250, "lb"),
  30527. name: "Back",
  30528. image: {
  30529. source: "./media/characters/remmyzilla/back.svg",
  30530. extra: 2687 / 2555,
  30531. bottom: 48 / 2735
  30532. }
  30533. },
  30534. paw: {
  30535. height: math.unit(1.73, "feet"),
  30536. name: "Paw",
  30537. image: {
  30538. source: "./media/characters/remmyzilla/paw.svg"
  30539. },
  30540. extraAttributes: {
  30541. "toeSize": {
  30542. name: "Toe Size",
  30543. power: 2,
  30544. type: "area",
  30545. base: math.unit(0.0035, "m^2")
  30546. },
  30547. "padSize": {
  30548. name: "Pad Size",
  30549. power: 2,
  30550. type: "area",
  30551. base: math.unit(0.015, "m^2")
  30552. },
  30553. "pawsize": {
  30554. name: "Paw Size",
  30555. power: 2,
  30556. type: "area",
  30557. base: math.unit(0.072, "m^2")
  30558. },
  30559. }
  30560. },
  30561. maw: {
  30562. height: math.unit(1.73, "feet"),
  30563. name: "Maw",
  30564. image: {
  30565. source: "./media/characters/remmyzilla/maw.svg"
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(6 + 4 / 12, "feet")
  30573. },
  30574. {
  30575. name: "Minimacro",
  30576. height: math.unit(12 + 8 / 12, "feet")
  30577. },
  30578. {
  30579. name: "Normal",
  30580. height: math.unit(640, "feet"),
  30581. default: true
  30582. },
  30583. {
  30584. name: "Megamacro",
  30585. height: math.unit(6400, "feet")
  30586. },
  30587. {
  30588. name: "Gigamacro",
  30589. height: math.unit(64000, "miles")
  30590. },
  30591. ]
  30592. ))
  30593. characterMakers.push(() => makeCharacter(
  30594. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30595. {
  30596. front: {
  30597. height: math.unit(2.5, "meters"),
  30598. weight: math.unit(300, "lb"),
  30599. name: "Front",
  30600. image: {
  30601. source: "./media/characters/lawrence/front.svg",
  30602. extra: 357 / 335,
  30603. bottom: 30 / 387
  30604. }
  30605. },
  30606. back: {
  30607. height: math.unit(2.5, "meters"),
  30608. weight: math.unit(300, "lb"),
  30609. name: "Back",
  30610. image: {
  30611. source: "./media/characters/lawrence/back.svg",
  30612. extra: 357 / 338,
  30613. bottom: 16 / 373
  30614. }
  30615. },
  30616. head: {
  30617. height: math.unit(0.9, "meter"),
  30618. name: "Head",
  30619. image: {
  30620. source: "./media/characters/lawrence/head.svg"
  30621. }
  30622. },
  30623. maw: {
  30624. height: math.unit(0.7, "meter"),
  30625. name: "Maw",
  30626. image: {
  30627. source: "./media/characters/lawrence/maw.svg"
  30628. }
  30629. },
  30630. footBottom: {
  30631. height: math.unit(0.5, "meter"),
  30632. name: "Foot (Bottom)",
  30633. image: {
  30634. source: "./media/characters/lawrence/foot-bottom.svg"
  30635. }
  30636. },
  30637. footTop: {
  30638. height: math.unit(0.5, "meter"),
  30639. name: "Foot (Top)",
  30640. image: {
  30641. source: "./media/characters/lawrence/foot-top.svg"
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Normal",
  30648. height: math.unit(2.5, "meters"),
  30649. default: true
  30650. },
  30651. {
  30652. name: "Macro",
  30653. height: math.unit(95, "meters")
  30654. },
  30655. {
  30656. name: "Megamacro",
  30657. height: math.unit(150, "km")
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30663. {
  30664. front: {
  30665. height: math.unit(4.2, "meters"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/sydney/front.svg",
  30669. extra: 1323 / 1277,
  30670. bottom: 111 / 1434
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Normal",
  30677. height: math.unit(4.2, "meters"),
  30678. default: true
  30679. },
  30680. ]
  30681. ))
  30682. characterMakers.push(() => makeCharacter(
  30683. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30684. {
  30685. back: {
  30686. height: math.unit(201, "feet"),
  30687. name: "Back",
  30688. image: {
  30689. source: "./media/characters/jessica/back.svg",
  30690. extra: 273 / 259,
  30691. bottom: 7 / 280
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Normal",
  30698. height: math.unit(201, "feet"),
  30699. default: true
  30700. },
  30701. {
  30702. name: "Megamacro",
  30703. height: math.unit(8, "miles")
  30704. },
  30705. ]
  30706. ))
  30707. characterMakers.push(() => makeCharacter(
  30708. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30709. {
  30710. side: {
  30711. height: math.unit(5.6, "m"),
  30712. weight: math.unit(8000, "kg"),
  30713. name: "Side",
  30714. image: {
  30715. source: "./media/characters/victoria/side.svg",
  30716. extra: 1542/1229,
  30717. bottom: 124/1666
  30718. }
  30719. },
  30720. maw: {
  30721. height: math.unit(7.14, "feet"),
  30722. name: "Maw",
  30723. image: {
  30724. source: "./media/characters/victoria/maw.svg"
  30725. }
  30726. },
  30727. },
  30728. [
  30729. {
  30730. name: "Normal",
  30731. height: math.unit(5.6, "m"),
  30732. default: true
  30733. },
  30734. ]
  30735. ))
  30736. characterMakers.push(() => makeCharacter(
  30737. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30738. {
  30739. front: {
  30740. height: math.unit(5 + 6 / 12, "feet"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/cat/front.svg",
  30744. extra: 1449/1295,
  30745. bottom: 34/1483
  30746. },
  30747. form: "cat",
  30748. default: true
  30749. },
  30750. back: {
  30751. height: math.unit(5 + 6 / 12, "feet"),
  30752. name: "Back",
  30753. image: {
  30754. source: "./media/characters/cat/back.svg",
  30755. extra: 1466/1301,
  30756. bottom: 19/1485
  30757. },
  30758. form: "cat"
  30759. },
  30760. taur: {
  30761. height: math.unit(7, "feet"),
  30762. name: "Taur",
  30763. image: {
  30764. source: "./media/characters/cat/taur.svg",
  30765. extra: 1389/1233,
  30766. bottom: 83/1472
  30767. },
  30768. form: "taur",
  30769. default: true
  30770. },
  30771. lucarioFront: {
  30772. height: math.unit(4, "feet"),
  30773. name: "Lucario (Front)",
  30774. image: {
  30775. source: "./media/characters/cat/lucario-front.svg",
  30776. extra: 1149/1019,
  30777. bottom: 84/1233
  30778. },
  30779. form: "lucario",
  30780. default: true
  30781. },
  30782. lucarioBack: {
  30783. height: math.unit(4, "feet"),
  30784. name: "Lucario (Back)",
  30785. image: {
  30786. source: "./media/characters/cat/lucario-back.svg",
  30787. extra: 1190/1059,
  30788. bottom: 33/1223
  30789. },
  30790. form: "lucario"
  30791. },
  30792. megaLucario: {
  30793. height: math.unit(4, "feet"),
  30794. name: "Mega Lucario",
  30795. image: {
  30796. source: "./media/characters/cat/mega-lucario.svg",
  30797. extra: 1515 / 1319,
  30798. bottom: 63 / 1578
  30799. },
  30800. form: "lucario"
  30801. },
  30802. nickit: {
  30803. height: math.unit(2, "feet"),
  30804. name: "Nickit",
  30805. image: {
  30806. source: "./media/characters/cat/nickit.svg",
  30807. extra: 1980 / 1585,
  30808. bottom: 102 / 2082
  30809. },
  30810. form: "nickit",
  30811. default: true
  30812. },
  30813. lopunnyFront: {
  30814. height: math.unit(5, "feet"),
  30815. name: "Lopunny (Front)",
  30816. image: {
  30817. source: "./media/characters/cat/lopunny-front.svg",
  30818. extra: 1782 / 1469,
  30819. bottom: 38 / 1820
  30820. },
  30821. form: "lopunny",
  30822. default: true
  30823. },
  30824. lopunnyBack: {
  30825. height: math.unit(5, "feet"),
  30826. name: "Lopunny (Back)",
  30827. image: {
  30828. source: "./media/characters/cat/lopunny-back.svg",
  30829. extra: 1660 / 1490,
  30830. bottom: 25 / 1685
  30831. },
  30832. form: "lopunny"
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Really small",
  30838. height: math.unit(1, "nm")
  30839. },
  30840. {
  30841. name: "Micro",
  30842. height: math.unit(5, "inches")
  30843. },
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(5 + 6 / 12, "feet"),
  30847. default: true
  30848. },
  30849. {
  30850. name: "Macro",
  30851. height: math.unit(50, "feet")
  30852. },
  30853. {
  30854. name: "Macro+",
  30855. height: math.unit(150, "feet")
  30856. },
  30857. {
  30858. name: "Megamacro",
  30859. height: math.unit(100, "miles")
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30865. {
  30866. front: {
  30867. height: math.unit(63.4, "meters"),
  30868. weight: math.unit(3.28349e+6, "kilograms"),
  30869. name: "Front",
  30870. image: {
  30871. source: "./media/characters/kirina-violet/front.svg",
  30872. extra: 2812 / 2725,
  30873. bottom: 0 / 2812
  30874. }
  30875. },
  30876. back: {
  30877. height: math.unit(63.4, "meters"),
  30878. weight: math.unit(3.28349e+6, "kilograms"),
  30879. name: "Back",
  30880. image: {
  30881. source: "./media/characters/kirina-violet/back.svg",
  30882. extra: 2812 / 2725,
  30883. bottom: 0 / 2812
  30884. }
  30885. },
  30886. mouth: {
  30887. height: math.unit(4.35, "meters"),
  30888. name: "Mouth",
  30889. image: {
  30890. source: "./media/characters/kirina-violet/mouth.svg"
  30891. }
  30892. },
  30893. paw: {
  30894. height: math.unit(5.6, "meters"),
  30895. name: "Paw",
  30896. image: {
  30897. source: "./media/characters/kirina-violet/paw.svg"
  30898. }
  30899. },
  30900. tail: {
  30901. height: math.unit(18, "meters"),
  30902. name: "Tail",
  30903. image: {
  30904. source: "./media/characters/kirina-violet/tail.svg"
  30905. }
  30906. },
  30907. },
  30908. [
  30909. {
  30910. name: "Macro",
  30911. height: math.unit(63.4, "meters"),
  30912. default: true
  30913. },
  30914. ]
  30915. ))
  30916. characterMakers.push(() => makeCharacter(
  30917. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30918. {
  30919. front: {
  30920. height: math.unit(75, "feet"),
  30921. name: "Front",
  30922. image: {
  30923. source: "./media/characters/cat-gigachu/front.svg",
  30924. extra: 1239/1027,
  30925. bottom: 32/1271
  30926. }
  30927. },
  30928. back: {
  30929. height: math.unit(75, "feet"),
  30930. name: "Back",
  30931. image: {
  30932. source: "./media/characters/cat-gigachu/back.svg",
  30933. extra: 1229/1030,
  30934. bottom: 9/1238
  30935. }
  30936. },
  30937. },
  30938. [
  30939. {
  30940. name: "Dynamax",
  30941. height: math.unit(75, "feet"),
  30942. default: true
  30943. },
  30944. ]
  30945. ))
  30946. characterMakers.push(() => makeCharacter(
  30947. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30948. {
  30949. front: {
  30950. height: math.unit(6, "feet"),
  30951. weight: math.unit(150, "lb"),
  30952. name: "Front",
  30953. image: {
  30954. source: "./media/characters/sfaiyan/front.svg",
  30955. extra: 999 / 978,
  30956. bottom: 5 / 1004
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Normal",
  30963. height: math.unit(1.82, "meters")
  30964. },
  30965. {
  30966. name: "Giant",
  30967. height: math.unit(2.27, "km"),
  30968. default: true
  30969. },
  30970. ]
  30971. ))
  30972. characterMakers.push(() => makeCharacter(
  30973. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30974. {
  30975. front: {
  30976. height: math.unit(179, "cm"),
  30977. weight: math.unit(100, "kg"),
  30978. name: "Front",
  30979. image: {
  30980. source: "./media/characters/raunehkeli/front.svg",
  30981. extra: 1934 / 1926,
  30982. bottom: 0 / 1934
  30983. }
  30984. },
  30985. },
  30986. [
  30987. {
  30988. name: "Normal",
  30989. height: math.unit(179, "cm")
  30990. },
  30991. {
  30992. name: "Maximum",
  30993. height: math.unit(575, "meters"),
  30994. default: true
  30995. },
  30996. ]
  30997. ))
  30998. characterMakers.push(() => makeCharacter(
  30999. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31000. {
  31001. front: {
  31002. height: math.unit(6, "feet"),
  31003. weight: math.unit(150, "lb"),
  31004. name: "Front",
  31005. image: {
  31006. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31007. extra: 2625 / 2518,
  31008. bottom: 60 / 2685
  31009. }
  31010. },
  31011. },
  31012. [
  31013. {
  31014. name: "Normal",
  31015. height: math.unit(6 + 2 / 12, "feet")
  31016. },
  31017. {
  31018. name: "Macro",
  31019. height: math.unit(1180, "feet"),
  31020. default: true
  31021. },
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31026. {
  31027. front: {
  31028. height: math.unit(5 + 6 / 12, "feet"),
  31029. weight: math.unit(108, "lb"),
  31030. name: "Front",
  31031. image: {
  31032. source: "./media/characters/lilith-zott/front.svg",
  31033. extra: 2510 / 2238,
  31034. bottom: 100 / 2610
  31035. }
  31036. },
  31037. frontDressed: {
  31038. height: math.unit(5 + 6 / 12, "feet"),
  31039. weight: math.unit(108, "lb"),
  31040. name: "Front (Dressed)",
  31041. image: {
  31042. source: "./media/characters/lilith-zott/front-dressed.svg",
  31043. extra: 2510 / 2238,
  31044. bottom: 100 / 2610
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Normal",
  31051. height: math.unit(5 + 6 / 12, "feet")
  31052. },
  31053. {
  31054. name: "Macro",
  31055. height: math.unit(1030, "feet"),
  31056. default: true
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31062. {
  31063. front: {
  31064. height: math.unit(6, "feet"),
  31065. weight: math.unit(150, "lb"),
  31066. name: "Front",
  31067. image: {
  31068. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31069. extra: 2567 / 2435,
  31070. bottom: 39 / 2606
  31071. }
  31072. },
  31073. frontSuper: {
  31074. height: math.unit(6, "feet"),
  31075. name: "Front (Super)",
  31076. image: {
  31077. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31078. extra: 2567 / 2435,
  31079. bottom: 39 / 2606
  31080. }
  31081. },
  31082. },
  31083. [
  31084. {
  31085. name: "Normal",
  31086. height: math.unit(5 + 10 / 12, "feet")
  31087. },
  31088. {
  31089. name: "Macro",
  31090. height: math.unit(1100, "feet"),
  31091. default: true
  31092. },
  31093. ]
  31094. ))
  31095. characterMakers.push(() => makeCharacter(
  31096. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31097. {
  31098. front: {
  31099. height: math.unit(100, "miles"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/sona/front.svg",
  31103. extra: 2433 / 2201,
  31104. bottom: 53 / 2486
  31105. }
  31106. },
  31107. foot: {
  31108. height: math.unit(16.1, "miles"),
  31109. name: "Foot",
  31110. image: {
  31111. source: "./media/characters/sona/foot.svg"
  31112. }
  31113. },
  31114. },
  31115. [
  31116. {
  31117. name: "Macro",
  31118. height: math.unit(100, "miles"),
  31119. default: true
  31120. },
  31121. ]
  31122. ))
  31123. characterMakers.push(() => makeCharacter(
  31124. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31125. {
  31126. front: {
  31127. height: math.unit(6, "feet"),
  31128. weight: math.unit(150, "lb"),
  31129. name: "Front",
  31130. image: {
  31131. source: "./media/characters/bailey/front.svg",
  31132. extra: 1778 / 1724,
  31133. bottom: 30 / 1808
  31134. }
  31135. },
  31136. },
  31137. [
  31138. {
  31139. name: "Micro",
  31140. height: math.unit(4, "inches")
  31141. },
  31142. {
  31143. name: "Normal",
  31144. height: math.unit(5 + 5 / 12, "feet"),
  31145. default: true
  31146. },
  31147. {
  31148. name: "Macro",
  31149. height: math.unit(250, "feet")
  31150. },
  31151. {
  31152. name: "Megamacro",
  31153. height: math.unit(100, "miles")
  31154. },
  31155. ]
  31156. ))
  31157. characterMakers.push(() => makeCharacter(
  31158. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31159. {
  31160. front: {
  31161. height: math.unit(5 + 2 / 12, "feet"),
  31162. weight: math.unit(120, "lb"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/snaps/front.svg",
  31166. extra: 2370 / 2177,
  31167. bottom: 48 / 2418
  31168. }
  31169. },
  31170. back: {
  31171. height: math.unit(5 + 2 / 12, "feet"),
  31172. weight: math.unit(120, "lb"),
  31173. name: "Back",
  31174. image: {
  31175. source: "./media/characters/snaps/back.svg",
  31176. extra: 2408 / 2258,
  31177. bottom: 15 / 2423
  31178. }
  31179. },
  31180. },
  31181. [
  31182. {
  31183. name: "Micro",
  31184. height: math.unit(9, "inches")
  31185. },
  31186. {
  31187. name: "Normal",
  31188. height: math.unit(5 + 2 / 12, "feet"),
  31189. default: true
  31190. },
  31191. {
  31192. name: "Mini Macro",
  31193. height: math.unit(10, "feet")
  31194. },
  31195. ]
  31196. ))
  31197. characterMakers.push(() => makeCharacter(
  31198. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31199. {
  31200. front: {
  31201. height: math.unit(1.8, "meters"),
  31202. weight: math.unit(85, "kg"),
  31203. name: "Front",
  31204. image: {
  31205. source: "./media/characters/azteck/front.svg",
  31206. extra: 2815 / 2625,
  31207. bottom: 89 / 2904
  31208. }
  31209. },
  31210. back: {
  31211. height: math.unit(1.8, "meters"),
  31212. weight: math.unit(85, "kg"),
  31213. name: "Back",
  31214. image: {
  31215. source: "./media/characters/azteck/back.svg",
  31216. extra: 2856 / 2648,
  31217. bottom: 85 / 2941
  31218. }
  31219. },
  31220. frontDressed: {
  31221. height: math.unit(1.8, "meters"),
  31222. weight: math.unit(85, "kg"),
  31223. name: "Front (Dressed)",
  31224. image: {
  31225. source: "./media/characters/azteck/front-dressed.svg",
  31226. extra: 2147 / 2003,
  31227. bottom: 68 / 2215
  31228. }
  31229. },
  31230. head: {
  31231. height: math.unit(0.47, "meters"),
  31232. weight: math.unit(85, "kg"),
  31233. name: "Head",
  31234. image: {
  31235. source: "./media/characters/azteck/head.svg"
  31236. }
  31237. },
  31238. },
  31239. [
  31240. {
  31241. name: "Bite sized",
  31242. height: math.unit(16, "cm")
  31243. },
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(1.8, "meters"),
  31247. default: true
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31253. {
  31254. front: {
  31255. height: math.unit(6, "feet"),
  31256. weight: math.unit(150, "lb"),
  31257. name: "Front",
  31258. image: {
  31259. source: "./media/characters/pidge/front.svg",
  31260. extra: 1936/1820,
  31261. bottom: 0/1936
  31262. }
  31263. },
  31264. back: {
  31265. height: math.unit(6, "feet"),
  31266. weight: math.unit(150, "lb"),
  31267. name: "Back",
  31268. image: {
  31269. source: "./media/characters/pidge/back.svg",
  31270. extra: 1938/1843,
  31271. bottom: 0/1938
  31272. }
  31273. },
  31274. casual: {
  31275. height: math.unit(6, "feet"),
  31276. weight: math.unit(150, "lb"),
  31277. name: "Casual",
  31278. image: {
  31279. source: "./media/characters/pidge/casual.svg",
  31280. extra: 1936/1820,
  31281. bottom: 0/1936
  31282. }
  31283. },
  31284. tech: {
  31285. height: math.unit(6, "feet"),
  31286. weight: math.unit(150, "lb"),
  31287. name: "Tech",
  31288. image: {
  31289. source: "./media/characters/pidge/tech.svg",
  31290. extra: 1802/1682,
  31291. bottom: 0/1802
  31292. }
  31293. },
  31294. head: {
  31295. height: math.unit(1.61, "feet"),
  31296. name: "Head",
  31297. image: {
  31298. source: "./media/characters/pidge/head.svg"
  31299. }
  31300. },
  31301. collar: {
  31302. height: math.unit(0.82, "feet"),
  31303. name: "Collar",
  31304. image: {
  31305. source: "./media/characters/pidge/collar.svg"
  31306. }
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Macro",
  31312. height: math.unit(2, "mile"),
  31313. default: true
  31314. },
  31315. {
  31316. name: "PUPPY",
  31317. height: math.unit(20, "miles")
  31318. },
  31319. ]
  31320. ))
  31321. characterMakers.push(() => makeCharacter(
  31322. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31323. {
  31324. front: {
  31325. height: math.unit(6, "feet"),
  31326. weight: math.unit(150, "lb"),
  31327. name: "Front",
  31328. image: {
  31329. source: "./media/characters/en/front.svg",
  31330. extra: 1697 / 1563,
  31331. bottom: 103 / 1800
  31332. }
  31333. },
  31334. back: {
  31335. height: math.unit(6, "feet"),
  31336. weight: math.unit(150, "lb"),
  31337. name: "Back",
  31338. image: {
  31339. source: "./media/characters/en/back.svg",
  31340. extra: 1700 / 1570,
  31341. bottom: 51 / 1751
  31342. }
  31343. },
  31344. frontDressed: {
  31345. height: math.unit(6, "feet"),
  31346. weight: math.unit(150, "lb"),
  31347. name: "Front (Dressed)",
  31348. image: {
  31349. source: "./media/characters/en/front-dressed.svg",
  31350. extra: 1697 / 1563,
  31351. bottom: 103 / 1800
  31352. }
  31353. },
  31354. backDressed: {
  31355. height: math.unit(6, "feet"),
  31356. weight: math.unit(150, "lb"),
  31357. name: "Back (Dressed)",
  31358. image: {
  31359. source: "./media/characters/en/back-dressed.svg",
  31360. extra: 1700 / 1570,
  31361. bottom: 51 / 1751
  31362. }
  31363. },
  31364. },
  31365. [
  31366. {
  31367. name: "Macro",
  31368. height: math.unit(210, "feet"),
  31369. default: true
  31370. },
  31371. ]
  31372. ))
  31373. characterMakers.push(() => makeCharacter(
  31374. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31375. {
  31376. front: {
  31377. height: math.unit(6, "feet"),
  31378. weight: math.unit(150, "lb"),
  31379. name: "Front",
  31380. image: {
  31381. source: "./media/characters/haze-orris/front.svg",
  31382. extra: 3975 / 3525,
  31383. bottom: 137 / 4112
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Micro",
  31390. height: math.unit(150, "mm"),
  31391. default: true
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31397. {
  31398. front: {
  31399. height: math.unit(6, "feet"),
  31400. weight: math.unit(150, "lb"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/casselene-yaro/front.svg",
  31404. extra: 4721 / 4541,
  31405. bottom: 82 / 4803
  31406. }
  31407. },
  31408. back: {
  31409. height: math.unit(6, "feet"),
  31410. weight: math.unit(150, "lb"),
  31411. name: "Back",
  31412. image: {
  31413. source: "./media/characters/casselene-yaro/back.svg",
  31414. extra: 4569 / 4377,
  31415. bottom: 69 / 4638
  31416. }
  31417. },
  31418. dressed: {
  31419. height: math.unit(6, "feet"),
  31420. weight: math.unit(150, "lb"),
  31421. name: "Dressed",
  31422. image: {
  31423. source: "./media/characters/casselene-yaro/dressed.svg",
  31424. extra: 4721 / 4541,
  31425. bottom: 82 / 4803
  31426. }
  31427. },
  31428. maw: {
  31429. height: math.unit(1, "feet"),
  31430. name: "Maw",
  31431. image: {
  31432. source: "./media/characters/casselene-yaro/maw.svg"
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Macro",
  31439. height: math.unit(190, "feet"),
  31440. default: true
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31446. {
  31447. front: {
  31448. height: math.unit(10, "feet"),
  31449. weight: math.unit(15015, "lb"),
  31450. name: "Front",
  31451. image: {
  31452. source: "./media/characters/platine/front.svg",
  31453. extra: 1741/1650,
  31454. bottom: 84/1825
  31455. }
  31456. },
  31457. side: {
  31458. height: math.unit(10, "feet"),
  31459. weight: math.unit(15015, "lb"),
  31460. name: "Side",
  31461. image: {
  31462. source: "./media/characters/platine/side.svg",
  31463. extra: 1790/1705,
  31464. bottom: 29/1819
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Normal",
  31471. height: math.unit(10, "feet"),
  31472. default: true
  31473. },
  31474. {
  31475. name: "Macro",
  31476. height: math.unit(100, "feet")
  31477. },
  31478. {
  31479. name: "Megamacro",
  31480. height: math.unit(1000, "feet")
  31481. },
  31482. ]
  31483. ))
  31484. characterMakers.push(() => makeCharacter(
  31485. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31486. {
  31487. front: {
  31488. height: math.unit(15 + 5 / 12, "feet"),
  31489. weight: math.unit(4600, "lb"),
  31490. name: "Front",
  31491. image: {
  31492. source: "./media/characters/neapolitan-ananassa/front.svg",
  31493. extra: 2903 / 2736,
  31494. bottom: 0 / 2903
  31495. }
  31496. },
  31497. side: {
  31498. height: math.unit(15 + 5 / 12, "feet"),
  31499. weight: math.unit(4600, "lb"),
  31500. name: "Side",
  31501. image: {
  31502. source: "./media/characters/neapolitan-ananassa/side.svg",
  31503. extra: 2925 / 2719,
  31504. bottom: 0 / 2925
  31505. }
  31506. },
  31507. back: {
  31508. height: math.unit(15 + 5 / 12, "feet"),
  31509. weight: math.unit(4600, "lb"),
  31510. name: "Back",
  31511. image: {
  31512. source: "./media/characters/neapolitan-ananassa/back.svg",
  31513. extra: 2903 / 2736,
  31514. bottom: 0 / 2903
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(15 + 5 / 12, "feet"),
  31522. default: true
  31523. },
  31524. {
  31525. name: "Post-Millenium",
  31526. height: math.unit(35 + 5 / 12, "feet")
  31527. },
  31528. {
  31529. name: "Post-Era",
  31530. height: math.unit(450 + 5 / 12, "feet")
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(300, "meters"),
  31539. weight: math.unit(125000, "tonnes"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/pazuzu/front.svg",
  31543. extra: 877 / 794,
  31544. bottom: 47 / 924
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Macro",
  31551. height: math.unit(300, "meters"),
  31552. default: true
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31558. {
  31559. side: {
  31560. height: math.unit(10 + 7 / 12, "feet"),
  31561. weight: math.unit(2.5, "tons"),
  31562. name: "Side",
  31563. image: {
  31564. source: "./media/characters/aasha/side.svg",
  31565. extra: 1345 / 1245,
  31566. bottom: 111 / 1456
  31567. }
  31568. },
  31569. back: {
  31570. height: math.unit(10 + 7 / 12, "feet"),
  31571. weight: math.unit(2.5, "tons"),
  31572. name: "Back",
  31573. image: {
  31574. source: "./media/characters/aasha/back.svg",
  31575. extra: 1133 / 1057,
  31576. bottom: 257 / 1390
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(10 + 7 / 12, "feet"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(6 + 3 / 12, "feet"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/nevan/front.svg",
  31596. extra: 704 / 704,
  31597. bottom: 28 / 732
  31598. }
  31599. },
  31600. back: {
  31601. height: math.unit(6 + 3 / 12, "feet"),
  31602. name: "Back",
  31603. image: {
  31604. source: "./media/characters/nevan/back.svg",
  31605. extra: 714 / 714,
  31606. bottom: 21 / 735
  31607. }
  31608. },
  31609. frontFlaccid: {
  31610. height: math.unit(6 + 3 / 12, "feet"),
  31611. name: "Front (Flaccid)",
  31612. image: {
  31613. source: "./media/characters/nevan/front-flaccid.svg",
  31614. extra: 704 / 704,
  31615. bottom: 28 / 732
  31616. }
  31617. },
  31618. frontErect: {
  31619. height: math.unit(6 + 3 / 12, "feet"),
  31620. name: "Front (Erect)",
  31621. image: {
  31622. source: "./media/characters/nevan/front-erect.svg",
  31623. extra: 704 / 704,
  31624. bottom: 28 / 732
  31625. }
  31626. },
  31627. backFlaccid: {
  31628. height: math.unit(6 + 3 / 12, "feet"),
  31629. name: "Back (Flaccid)",
  31630. image: {
  31631. source: "./media/characters/nevan/back-flaccid.svg",
  31632. extra: 714 / 714,
  31633. bottom: 21 / 735
  31634. }
  31635. },
  31636. },
  31637. [
  31638. {
  31639. name: "Normal",
  31640. height: math.unit(6 + 3 / 12, "feet"),
  31641. default: true
  31642. },
  31643. ]
  31644. ))
  31645. characterMakers.push(() => makeCharacter(
  31646. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31647. {
  31648. front: {
  31649. height: math.unit(4, "feet"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/arhan/front.svg",
  31653. extra: 3368 / 3133,
  31654. bottom: 0 / 3368
  31655. }
  31656. },
  31657. side: {
  31658. height: math.unit(4, "feet"),
  31659. name: "Side",
  31660. image: {
  31661. source: "./media/characters/arhan/side.svg",
  31662. extra: 3347 / 3105,
  31663. bottom: 0 / 3347
  31664. }
  31665. },
  31666. tongue: {
  31667. height: math.unit(1.42, "feet"),
  31668. name: "Tongue",
  31669. image: {
  31670. source: "./media/characters/arhan/tongue.svg"
  31671. }
  31672. },
  31673. head: {
  31674. height: math.unit(0.85, "feet"),
  31675. name: "Head",
  31676. image: {
  31677. source: "./media/characters/arhan/head.svg"
  31678. }
  31679. },
  31680. },
  31681. [
  31682. {
  31683. name: "Normal",
  31684. height: math.unit(4, "feet"),
  31685. default: true
  31686. },
  31687. ]
  31688. ))
  31689. characterMakers.push(() => makeCharacter(
  31690. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31691. {
  31692. front: {
  31693. height: math.unit(5 + 7.5 / 12, "feet"),
  31694. weight: math.unit(120, "lb"),
  31695. name: "Front",
  31696. image: {
  31697. source: "./media/characters/digi-duncan/front.svg",
  31698. extra: 330 / 326,
  31699. bottom: 16 / 346
  31700. }
  31701. },
  31702. side: {
  31703. height: math.unit(5 + 7.5 / 12, "feet"),
  31704. weight: math.unit(120, "lb"),
  31705. name: "Side",
  31706. image: {
  31707. source: "./media/characters/digi-duncan/side.svg",
  31708. extra: 341 / 337,
  31709. bottom: 1 / 342
  31710. }
  31711. },
  31712. back: {
  31713. height: math.unit(5 + 7.5 / 12, "feet"),
  31714. weight: math.unit(120, "lb"),
  31715. name: "Back",
  31716. image: {
  31717. source: "./media/characters/digi-duncan/back.svg",
  31718. extra: 330 / 326,
  31719. bottom: 12 / 342
  31720. }
  31721. },
  31722. },
  31723. [
  31724. {
  31725. name: "Speck",
  31726. height: math.unit(0.25, "mm")
  31727. },
  31728. {
  31729. name: "Micro",
  31730. height: math.unit(5, "mm")
  31731. },
  31732. {
  31733. name: "Tiny",
  31734. height: math.unit(0.5, "inches"),
  31735. default: true
  31736. },
  31737. {
  31738. name: "Human",
  31739. height: math.unit(5 + 7.5 / 12, "feet")
  31740. },
  31741. {
  31742. name: "Minigiant",
  31743. height: math.unit(8 + 5.25, "feet")
  31744. },
  31745. {
  31746. name: "Giant",
  31747. height: math.unit(2000, "feet")
  31748. },
  31749. {
  31750. name: "Mega",
  31751. height: math.unit(371.1, "miles")
  31752. },
  31753. ]
  31754. ))
  31755. characterMakers.push(() => makeCharacter(
  31756. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31757. {
  31758. front: {
  31759. height: math.unit(2, "meters"),
  31760. weight: math.unit(350, "kg"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31764. extra: 898 / 838,
  31765. bottom: 9 / 907
  31766. }
  31767. },
  31768. },
  31769. [
  31770. {
  31771. name: "Micro",
  31772. height: math.unit(8, "meters")
  31773. },
  31774. {
  31775. name: "Normal",
  31776. height: math.unit(50, "meters"),
  31777. default: true
  31778. },
  31779. {
  31780. name: "Macro",
  31781. height: math.unit(500, "meters")
  31782. },
  31783. ]
  31784. ))
  31785. characterMakers.push(() => makeCharacter(
  31786. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31787. {
  31788. front: {
  31789. height: math.unit(6 + 6 / 12, "feet"),
  31790. name: "Front",
  31791. image: {
  31792. source: "./media/characters/khardesh/front.svg",
  31793. extra: 1788/1596,
  31794. bottom: 66/1854
  31795. }
  31796. },
  31797. back: {
  31798. height: math.unit(6 + 6 / 12, "feet"),
  31799. name: "Back",
  31800. image: {
  31801. source: "./media/characters/khardesh/back.svg",
  31802. extra: 1781/1584,
  31803. bottom: 68/1849
  31804. }
  31805. },
  31806. },
  31807. [
  31808. {
  31809. name: "Normal",
  31810. height: math.unit(6 + 6 / 12, "feet"),
  31811. default: true
  31812. },
  31813. {
  31814. name: "Normal+",
  31815. height: math.unit(4, "meters")
  31816. },
  31817. {
  31818. name: "Macro",
  31819. height: math.unit(50, "meters")
  31820. },
  31821. {
  31822. name: "Macro+",
  31823. height: math.unit(100, "meters")
  31824. },
  31825. {
  31826. name: "Megamacro",
  31827. height: math.unit(20, "km")
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31833. {
  31834. front: {
  31835. height: math.unit(6, "feet"),
  31836. weight: math.unit(150, "lb"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/kosho/front.svg",
  31840. extra: 1847 / 1847,
  31841. bottom: 86 / 1933
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Second-stage micro",
  31848. height: math.unit(0.5, "inches")
  31849. },
  31850. {
  31851. name: "First-stage micro",
  31852. height: math.unit(6, "inches")
  31853. },
  31854. {
  31855. name: "Normal",
  31856. height: math.unit(6, "feet"),
  31857. default: true
  31858. },
  31859. {
  31860. name: "First-stage macro",
  31861. height: math.unit(72, "feet")
  31862. },
  31863. {
  31864. name: "Second-stage macro",
  31865. height: math.unit(864, "feet")
  31866. },
  31867. ]
  31868. ))
  31869. characterMakers.push(() => makeCharacter(
  31870. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31871. {
  31872. normal: {
  31873. height: math.unit(4 + 6 / 12, "feet"),
  31874. name: "Normal",
  31875. image: {
  31876. source: "./media/characters/hydra/normal.svg",
  31877. extra: 2833 / 2634,
  31878. bottom: 68 / 2901
  31879. }
  31880. },
  31881. smol: {
  31882. height: math.unit(0.705, "inches"),
  31883. name: "Smol",
  31884. image: {
  31885. source: "./media/characters/hydra/smol.svg",
  31886. extra: 2715 / 2540,
  31887. bottom: 0 / 2715
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(4 + 6 / 12, "feet"),
  31895. default: true
  31896. }
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31901. {
  31902. front: {
  31903. height: math.unit(0.6, "cm"),
  31904. name: "Front",
  31905. image: {
  31906. source: "./media/characters/daz/front.svg",
  31907. extra: 1682 / 1164,
  31908. bottom: 42 / 1724
  31909. }
  31910. },
  31911. },
  31912. [
  31913. {
  31914. name: "Normal",
  31915. height: math.unit(0.6, "cm"),
  31916. default: true
  31917. },
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31922. {
  31923. front: {
  31924. height: math.unit(6, "feet"),
  31925. weight: math.unit(235, "lb"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/theo-pangolin/front.svg",
  31929. extra: 1996 / 1969,
  31930. bottom: 115 / 2111
  31931. }
  31932. },
  31933. back: {
  31934. height: math.unit(6, "feet"),
  31935. weight: math.unit(235, "lb"),
  31936. name: "Back",
  31937. image: {
  31938. source: "./media/characters/theo-pangolin/back.svg",
  31939. extra: 1979 / 1979,
  31940. bottom: 40 / 2019
  31941. }
  31942. },
  31943. feral: {
  31944. height: math.unit(2, "feet"),
  31945. weight: math.unit(30, "lb"),
  31946. name: "Feral",
  31947. image: {
  31948. source: "./media/characters/theo-pangolin/feral.svg",
  31949. extra: 803 / 791,
  31950. bottom: 181 / 984
  31951. }
  31952. },
  31953. footFive: {
  31954. height: math.unit(1.43, "feet"),
  31955. name: "Foot (Five Toes)",
  31956. image: {
  31957. source: "./media/characters/theo-pangolin/foot-five.svg"
  31958. }
  31959. },
  31960. footFour: {
  31961. height: math.unit(1.43, "feet"),
  31962. name: "Foot (Four Toes)",
  31963. image: {
  31964. source: "./media/characters/theo-pangolin/foot-four.svg"
  31965. }
  31966. },
  31967. handFour: {
  31968. height: math.unit(0.81, "feet"),
  31969. name: "Hand (Four Fingers)",
  31970. image: {
  31971. source: "./media/characters/theo-pangolin/hand-four.svg"
  31972. }
  31973. },
  31974. handThree: {
  31975. height: math.unit(0.81, "feet"),
  31976. name: "Hand (Three Fingers)",
  31977. image: {
  31978. source: "./media/characters/theo-pangolin/hand-three.svg"
  31979. }
  31980. },
  31981. headFront: {
  31982. height: math.unit(1.37, "feet"),
  31983. name: "Head (Front)",
  31984. image: {
  31985. source: "./media/characters/theo-pangolin/head-front.svg"
  31986. }
  31987. },
  31988. headSide: {
  31989. height: math.unit(1.43, "feet"),
  31990. name: "Head (Side)",
  31991. image: {
  31992. source: "./media/characters/theo-pangolin/head-side.svg"
  31993. }
  31994. },
  31995. tongue: {
  31996. height: math.unit(2.29, "feet"),
  31997. name: "Tongue",
  31998. image: {
  31999. source: "./media/characters/theo-pangolin/tongue.svg"
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(6, "feet")
  32007. },
  32008. {
  32009. name: "Macro",
  32010. height: math.unit(400, "feet"),
  32011. default: true
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32017. {
  32018. front: {
  32019. height: math.unit(6, "inches"),
  32020. weight: math.unit(0.036, "kg"),
  32021. name: "Front",
  32022. image: {
  32023. source: "./media/characters/renée/front.svg",
  32024. extra: 900 / 886,
  32025. bottom: 8 / 908
  32026. }
  32027. },
  32028. },
  32029. [
  32030. {
  32031. name: "Nano",
  32032. height: math.unit(1, "nm")
  32033. },
  32034. {
  32035. name: "Micro",
  32036. height: math.unit(1, "mm")
  32037. },
  32038. {
  32039. name: "Normal",
  32040. height: math.unit(6, "inches")
  32041. },
  32042. {
  32043. name: "Macro",
  32044. height: math.unit(2000, "feet"),
  32045. default: true
  32046. },
  32047. {
  32048. name: "Megamacro",
  32049. height: math.unit(2, "km")
  32050. },
  32051. {
  32052. name: "Gigamacro",
  32053. height: math.unit(2000, "km")
  32054. },
  32055. {
  32056. name: "Teramacro",
  32057. height: math.unit(250000, "km")
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32063. {
  32064. front: {
  32065. height: math.unit(4, "meters"),
  32066. weight: math.unit(150, "kg"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/caledvwlch/front.svg",
  32070. extra: 1757/1537,
  32071. bottom: 31/1788
  32072. }
  32073. },
  32074. side: {
  32075. height: math.unit(4, "meters"),
  32076. weight: math.unit(150, "kg"),
  32077. name: "Side",
  32078. image: {
  32079. source: "./media/characters/caledvwlch/side.svg",
  32080. extra: 1605 / 1536,
  32081. bottom: 31 / 1636
  32082. }
  32083. },
  32084. back: {
  32085. height: math.unit(4, "meters"),
  32086. weight: math.unit(150, "kg"),
  32087. name: "Back",
  32088. image: {
  32089. source: "./media/characters/caledvwlch/back.svg",
  32090. extra: 1635 / 1565,
  32091. bottom: 27 / 1662
  32092. }
  32093. },
  32094. },
  32095. [
  32096. {
  32097. name: "\"Incognito\"",
  32098. height: math.unit(4, "meters")
  32099. },
  32100. {
  32101. name: "Small rampage",
  32102. height: math.unit(600, "meters")
  32103. },
  32104. {
  32105. name: "Mega",
  32106. height: math.unit(30, "km")
  32107. },
  32108. {
  32109. name: "Home-size",
  32110. height: math.unit(50, "km"),
  32111. default: true
  32112. },
  32113. {
  32114. name: "Giga",
  32115. height: math.unit(300, "km")
  32116. },
  32117. {
  32118. name: "Lounging",
  32119. height: math.unit(11000, "km")
  32120. },
  32121. {
  32122. name: "Planet snacking",
  32123. height: math.unit(2000000, "km")
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(6, "feet"),
  32132. weight: math.unit(215, "lb"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/sapphire-svell/front.svg",
  32136. extra: 495 / 455,
  32137. bottom: 20 / 515
  32138. }
  32139. },
  32140. back: {
  32141. height: math.unit(6, "feet"),
  32142. weight: math.unit(216, "lb"),
  32143. name: "Back",
  32144. image: {
  32145. source: "./media/characters/sapphire-svell/back.svg",
  32146. extra: 497 / 477,
  32147. bottom: 7 / 504
  32148. }
  32149. },
  32150. maw: {
  32151. height: math.unit(1.57, "feet"),
  32152. name: "Maw",
  32153. image: {
  32154. source: "./media/characters/sapphire-svell/maw.svg"
  32155. }
  32156. },
  32157. foot: {
  32158. height: math.unit(1.07, "feet"),
  32159. name: "Foot",
  32160. image: {
  32161. source: "./media/characters/sapphire-svell/foot.svg"
  32162. }
  32163. },
  32164. toering: {
  32165. height: math.unit(1.7, "inch"),
  32166. name: "Toering",
  32167. image: {
  32168. source: "./media/characters/sapphire-svell/toering.svg"
  32169. }
  32170. },
  32171. },
  32172. [
  32173. {
  32174. name: "Normal",
  32175. height: math.unit(300, "feet"),
  32176. default: true
  32177. },
  32178. {
  32179. name: "Augmented",
  32180. height: math.unit(1250, "feet")
  32181. },
  32182. {
  32183. name: "Unleashed",
  32184. height: math.unit(3000, "feet")
  32185. },
  32186. ]
  32187. ))
  32188. characterMakers.push(() => makeCharacter(
  32189. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32190. {
  32191. side: {
  32192. height: math.unit(2 + 3 / 12, "feet"),
  32193. weight: math.unit(110, "lb"),
  32194. name: "Side",
  32195. image: {
  32196. source: "./media/characters/glitch-flux/side.svg",
  32197. extra: 997 / 805,
  32198. bottom: 20 / 1017
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(2 + 3 / 12, "feet"),
  32206. default: true
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32212. {
  32213. front: {
  32214. height: math.unit(4, "meters"),
  32215. name: "Front",
  32216. image: {
  32217. source: "./media/characters/mid/front.svg",
  32218. extra: 507 / 476,
  32219. bottom: 17 / 524
  32220. }
  32221. },
  32222. back: {
  32223. height: math.unit(4, "meters"),
  32224. name: "Back",
  32225. image: {
  32226. source: "./media/characters/mid/back.svg",
  32227. extra: 519 / 487,
  32228. bottom: 7 / 526
  32229. }
  32230. },
  32231. stuck: {
  32232. height: math.unit(2.2, "meters"),
  32233. name: "Stuck",
  32234. image: {
  32235. source: "./media/characters/mid/stuck.svg",
  32236. extra: 1951 / 1869,
  32237. bottom: 88 / 2039
  32238. }
  32239. }
  32240. },
  32241. [
  32242. {
  32243. name: "Normal",
  32244. height: math.unit(4, "meters"),
  32245. default: true
  32246. },
  32247. {
  32248. name: "Big",
  32249. height: math.unit(10, "meters")
  32250. },
  32251. {
  32252. name: "Macro",
  32253. height: math.unit(800, "meters")
  32254. },
  32255. {
  32256. name: "Megamacro",
  32257. height: math.unit(100, "km")
  32258. },
  32259. {
  32260. name: "Overgrown",
  32261. height: math.unit(1, "parsec")
  32262. },
  32263. ]
  32264. ))
  32265. characterMakers.push(() => makeCharacter(
  32266. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32267. {
  32268. front: {
  32269. height: math.unit(2.5, "meters"),
  32270. weight: math.unit(225, "kg"),
  32271. name: "Front",
  32272. image: {
  32273. source: "./media/characters/iris/front.svg",
  32274. extra: 3348 / 3251,
  32275. bottom: 205 / 3553
  32276. }
  32277. },
  32278. maw: {
  32279. height: math.unit(0.56, "meter"),
  32280. name: "Maw",
  32281. image: {
  32282. source: "./media/characters/iris/maw.svg"
  32283. }
  32284. },
  32285. },
  32286. [
  32287. {
  32288. name: "Mewter cat",
  32289. height: math.unit(1.2, "meters")
  32290. },
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(2.5, "meters"),
  32294. default: true
  32295. },
  32296. {
  32297. name: "Minimacro",
  32298. height: math.unit(18, "feet")
  32299. },
  32300. {
  32301. name: "Macro",
  32302. height: math.unit(140, "feet")
  32303. },
  32304. {
  32305. name: "Macro+",
  32306. height: math.unit(180, "meters")
  32307. },
  32308. {
  32309. name: "Megamacro",
  32310. height: math.unit(2746, "meters")
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(6, "feet"),
  32319. weight: math.unit(135, "lb"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/axel/front.svg",
  32323. extra: 908 / 908,
  32324. bottom: 58 / 966
  32325. }
  32326. },
  32327. side: {
  32328. height: math.unit(6, "feet"),
  32329. weight: math.unit(135, "lb"),
  32330. name: "Side",
  32331. image: {
  32332. source: "./media/characters/axel/side.svg",
  32333. extra: 958 / 958,
  32334. bottom: 11 / 969
  32335. }
  32336. },
  32337. back: {
  32338. height: math.unit(6, "feet"),
  32339. weight: math.unit(135, "lb"),
  32340. name: "Back",
  32341. image: {
  32342. source: "./media/characters/axel/back.svg",
  32343. extra: 887 / 887,
  32344. bottom: 34 / 921
  32345. }
  32346. },
  32347. head: {
  32348. height: math.unit(1.07, "feet"),
  32349. name: "Head",
  32350. image: {
  32351. source: "./media/characters/axel/head.svg"
  32352. }
  32353. },
  32354. beak: {
  32355. height: math.unit(1.4, "feet"),
  32356. name: "Beak",
  32357. image: {
  32358. source: "./media/characters/axel/beak.svg"
  32359. }
  32360. },
  32361. beakSide: {
  32362. height: math.unit(1.4, "feet"),
  32363. name: "Beak Side",
  32364. image: {
  32365. source: "./media/characters/axel/beak-side.svg"
  32366. }
  32367. },
  32368. sheath: {
  32369. height: math.unit(0.5, "feet"),
  32370. name: "Sheath",
  32371. image: {
  32372. source: "./media/characters/axel/sheath.svg"
  32373. }
  32374. },
  32375. dick: {
  32376. height: math.unit(0.98, "feet"),
  32377. name: "Dick",
  32378. image: {
  32379. source: "./media/characters/axel/dick.svg"
  32380. }
  32381. },
  32382. },
  32383. [
  32384. {
  32385. name: "Macro",
  32386. height: math.unit(68, "meters"),
  32387. default: true
  32388. },
  32389. ]
  32390. ))
  32391. characterMakers.push(() => makeCharacter(
  32392. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32393. {
  32394. front: {
  32395. height: math.unit(3.5, "meters"),
  32396. weight: math.unit(1200, "kg"),
  32397. name: "Front",
  32398. image: {
  32399. source: "./media/characters/joanna/front.svg",
  32400. extra: 1596 / 1488,
  32401. bottom: 29 / 1625
  32402. }
  32403. },
  32404. back: {
  32405. height: math.unit(3.5, "meters"),
  32406. weight: math.unit(1200, "kg"),
  32407. name: "Back",
  32408. image: {
  32409. source: "./media/characters/joanna/back.svg",
  32410. extra: 1594 / 1495,
  32411. bottom: 26 / 1620
  32412. }
  32413. },
  32414. frontShorts: {
  32415. height: math.unit(3.5, "meters"),
  32416. weight: math.unit(1200, "kg"),
  32417. name: "Front (Shorts)",
  32418. image: {
  32419. source: "./media/characters/joanna/front-shorts.svg",
  32420. extra: 1596 / 1488,
  32421. bottom: 29 / 1625
  32422. }
  32423. },
  32424. frontBiker: {
  32425. height: math.unit(3.5, "meters"),
  32426. weight: math.unit(1200, "kg"),
  32427. name: "Front (Biker)",
  32428. image: {
  32429. source: "./media/characters/joanna/front-biker.svg",
  32430. extra: 1596 / 1488,
  32431. bottom: 29 / 1625
  32432. }
  32433. },
  32434. backBiker: {
  32435. height: math.unit(3.5, "meters"),
  32436. weight: math.unit(1200, "kg"),
  32437. name: "Back (Biker)",
  32438. image: {
  32439. source: "./media/characters/joanna/back-biker.svg",
  32440. extra: 1594 / 1495,
  32441. bottom: 88 / 1682
  32442. }
  32443. },
  32444. bikeLeft: {
  32445. height: math.unit(2.4, "meters"),
  32446. weight: math.unit(1600, "kg"),
  32447. name: "Bike (Left)",
  32448. image: {
  32449. source: "./media/characters/joanna/bike-left.svg",
  32450. extra: 720 / 720,
  32451. bottom: 8 / 728
  32452. }
  32453. },
  32454. bikeRight: {
  32455. height: math.unit(2.4, "meters"),
  32456. weight: math.unit(1600, "kg"),
  32457. name: "Bike (Right)",
  32458. image: {
  32459. source: "./media/characters/joanna/bike-right.svg",
  32460. extra: 720 / 720,
  32461. bottom: 8 / 728
  32462. }
  32463. },
  32464. },
  32465. [
  32466. {
  32467. name: "Incognito",
  32468. height: math.unit(3.5, "meters")
  32469. },
  32470. {
  32471. name: "Casual Big",
  32472. height: math.unit(200, "meters")
  32473. },
  32474. {
  32475. name: "Macro",
  32476. height: math.unit(600, "meters")
  32477. },
  32478. {
  32479. name: "Original",
  32480. height: math.unit(20, "km"),
  32481. default: true
  32482. },
  32483. {
  32484. name: "Giga",
  32485. height: math.unit(400, "km")
  32486. },
  32487. {
  32488. name: "Lounging",
  32489. height: math.unit(1500, "km")
  32490. },
  32491. {
  32492. name: "Planetary",
  32493. height: math.unit(200000, "km")
  32494. },
  32495. ]
  32496. ))
  32497. characterMakers.push(() => makeCharacter(
  32498. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32499. {
  32500. front: {
  32501. height: math.unit(6, "feet"),
  32502. weight: math.unit(150, "lb"),
  32503. name: "Front",
  32504. image: {
  32505. source: "./media/characters/hugo-sigil/front.svg",
  32506. extra: 522 / 500,
  32507. bottom: 2 / 524
  32508. }
  32509. },
  32510. back: {
  32511. height: math.unit(6, "feet"),
  32512. weight: math.unit(150, "lb"),
  32513. name: "Back",
  32514. image: {
  32515. source: "./media/characters/hugo-sigil/back.svg",
  32516. extra: 519 / 495,
  32517. bottom: 5 / 524
  32518. }
  32519. },
  32520. maw: {
  32521. height: math.unit(1.4, "feet"),
  32522. weight: math.unit(150, "lb"),
  32523. name: "Maw",
  32524. image: {
  32525. source: "./media/characters/hugo-sigil/maw.svg"
  32526. }
  32527. },
  32528. feet: {
  32529. height: math.unit(1.56, "feet"),
  32530. weight: math.unit(150, "lb"),
  32531. name: "Feet",
  32532. image: {
  32533. source: "./media/characters/hugo-sigil/feet.svg",
  32534. extra: 177 / 177,
  32535. bottom: 12 / 189
  32536. }
  32537. },
  32538. },
  32539. [
  32540. {
  32541. name: "Normal",
  32542. height: math.unit(6, "feet")
  32543. },
  32544. {
  32545. name: "Macro",
  32546. height: math.unit(200, "feet"),
  32547. default: true
  32548. },
  32549. ]
  32550. ))
  32551. characterMakers.push(() => makeCharacter(
  32552. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32553. {
  32554. front: {
  32555. height: math.unit(6, "feet"),
  32556. weight: math.unit(150, "lb"),
  32557. name: "Front",
  32558. image: {
  32559. source: "./media/characters/peri/front.svg",
  32560. extra: 2354 / 2233,
  32561. bottom: 49 / 2403
  32562. }
  32563. },
  32564. },
  32565. [
  32566. {
  32567. name: "Really Small",
  32568. height: math.unit(1, "nm")
  32569. },
  32570. {
  32571. name: "Micro",
  32572. height: math.unit(4, "inches")
  32573. },
  32574. {
  32575. name: "Normal",
  32576. height: math.unit(7, "inches"),
  32577. default: true
  32578. },
  32579. {
  32580. name: "Macro",
  32581. height: math.unit(400, "feet")
  32582. },
  32583. {
  32584. name: "Megamacro",
  32585. height: math.unit(100, "miles")
  32586. },
  32587. ]
  32588. ))
  32589. characterMakers.push(() => makeCharacter(
  32590. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32591. {
  32592. frontSlim: {
  32593. height: math.unit(7, "feet"),
  32594. name: "Front (Slim)",
  32595. image: {
  32596. source: "./media/characters/issilora/front-slim.svg",
  32597. extra: 529 / 449,
  32598. bottom: 53 / 582
  32599. }
  32600. },
  32601. sideSlim: {
  32602. height: math.unit(7, "feet"),
  32603. name: "Side (Slim)",
  32604. image: {
  32605. source: "./media/characters/issilora/side-slim.svg",
  32606. extra: 570 / 480,
  32607. bottom: 30 / 600
  32608. }
  32609. },
  32610. backSlim: {
  32611. height: math.unit(7, "feet"),
  32612. name: "Back (Slim)",
  32613. image: {
  32614. source: "./media/characters/issilora/back-slim.svg",
  32615. extra: 537 / 455,
  32616. bottom: 46 / 583
  32617. }
  32618. },
  32619. frontBuff: {
  32620. height: math.unit(7, "feet"),
  32621. name: "Front (Buff)",
  32622. image: {
  32623. source: "./media/characters/issilora/front-buff.svg",
  32624. extra: 2310 / 2035,
  32625. bottom: 335 / 2645
  32626. }
  32627. },
  32628. head: {
  32629. height: math.unit(1.94, "feet"),
  32630. name: "Head",
  32631. image: {
  32632. source: "./media/characters/issilora/head.svg"
  32633. }
  32634. },
  32635. },
  32636. [
  32637. {
  32638. name: "Minimum",
  32639. height: math.unit(7, "feet")
  32640. },
  32641. {
  32642. name: "Comfortable",
  32643. height: math.unit(17, "feet")
  32644. },
  32645. {
  32646. name: "Fun Size",
  32647. height: math.unit(47, "feet")
  32648. },
  32649. {
  32650. name: "Natural Macro",
  32651. height: math.unit(137, "feet"),
  32652. default: true
  32653. },
  32654. {
  32655. name: "Maximum Kaiju",
  32656. height: math.unit(397, "feet")
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32662. {
  32663. front: {
  32664. height: math.unit(50 + 9/12, "feet"),
  32665. weight: math.unit(32.8, "tons"),
  32666. name: "Front",
  32667. image: {
  32668. source: "./media/characters/irb'iiritaahn/front.svg",
  32669. extra: 1878/1826,
  32670. bottom: 326/2204
  32671. }
  32672. },
  32673. back: {
  32674. height: math.unit(50 + 9/12, "feet"),
  32675. weight: math.unit(32.8, "tons"),
  32676. name: "Back",
  32677. image: {
  32678. source: "./media/characters/irb'iiritaahn/back.svg",
  32679. extra: 2052/2018,
  32680. bottom: 152/2204
  32681. }
  32682. },
  32683. head: {
  32684. height: math.unit(12.86, "feet"),
  32685. name: "Head",
  32686. image: {
  32687. source: "./media/characters/irb'iiritaahn/head.svg"
  32688. }
  32689. },
  32690. maw: {
  32691. height: math.unit(9.66, "feet"),
  32692. name: "Maw",
  32693. image: {
  32694. source: "./media/characters/irb'iiritaahn/maw.svg"
  32695. }
  32696. },
  32697. frontDick: {
  32698. height: math.unit(8.78461, "feet"),
  32699. name: "Front Dick",
  32700. image: {
  32701. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32702. }
  32703. },
  32704. rearDick: {
  32705. height: math.unit(8.78461, "feet"),
  32706. name: "Rear Dick",
  32707. image: {
  32708. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32709. }
  32710. },
  32711. rearDickUnfolded: {
  32712. height: math.unit(8.78, "feet"),
  32713. name: "Rear Dick (Unfolded)",
  32714. image: {
  32715. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32716. }
  32717. },
  32718. wings: {
  32719. height: math.unit(43, "feet"),
  32720. name: "Wings",
  32721. image: {
  32722. source: "./media/characters/irb'iiritaahn/wings.svg"
  32723. }
  32724. },
  32725. },
  32726. [
  32727. {
  32728. name: "Macro",
  32729. height: math.unit(50 + 9/12, "feet"),
  32730. default: true
  32731. },
  32732. ]
  32733. ))
  32734. characterMakers.push(() => makeCharacter(
  32735. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32736. {
  32737. front: {
  32738. height: math.unit(205, "cm"),
  32739. weight: math.unit(102, "kg"),
  32740. name: "Front",
  32741. image: {
  32742. source: "./media/characters/irbisgreif/front.svg",
  32743. extra: 785/706,
  32744. bottom: 13/798
  32745. }
  32746. },
  32747. back: {
  32748. height: math.unit(205, "cm"),
  32749. weight: math.unit(102, "kg"),
  32750. name: "Back",
  32751. image: {
  32752. source: "./media/characters/irbisgreif/back.svg",
  32753. extra: 713/701,
  32754. bottom: 26/739
  32755. }
  32756. },
  32757. frontDressed: {
  32758. height: math.unit(216, "cm"),
  32759. weight: math.unit(102, "kg"),
  32760. name: "Front-dressed",
  32761. image: {
  32762. source: "./media/characters/irbisgreif/front-dressed.svg",
  32763. extra: 902/776,
  32764. bottom: 14/916
  32765. }
  32766. },
  32767. sideDressed: {
  32768. height: math.unit(195, "cm"),
  32769. weight: math.unit(102, "kg"),
  32770. name: "Side-dressed",
  32771. image: {
  32772. source: "./media/characters/irbisgreif/side-dressed.svg",
  32773. extra: 788/688,
  32774. bottom: 21/809
  32775. }
  32776. },
  32777. backDressed: {
  32778. height: math.unit(216, "cm"),
  32779. weight: math.unit(102, "kg"),
  32780. name: "Back-dressed",
  32781. image: {
  32782. source: "./media/characters/irbisgreif/back-dressed.svg",
  32783. extra: 901/783,
  32784. bottom: 10/911
  32785. }
  32786. },
  32787. dick: {
  32788. height: math.unit(0.49, "feet"),
  32789. name: "Dick",
  32790. image: {
  32791. source: "./media/characters/irbisgreif/dick.svg"
  32792. }
  32793. },
  32794. wingTop: {
  32795. height: math.unit(1.93 , "feet"),
  32796. name: "Wing-top",
  32797. image: {
  32798. source: "./media/characters/irbisgreif/wing-top.svg"
  32799. }
  32800. },
  32801. wingBottom: {
  32802. height: math.unit(1.93 , "feet"),
  32803. name: "Wing-bottom",
  32804. image: {
  32805. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32806. }
  32807. },
  32808. },
  32809. [
  32810. {
  32811. name: "Normal",
  32812. height: math.unit(216, "cm"),
  32813. default: true
  32814. },
  32815. ]
  32816. ))
  32817. characterMakers.push(() => makeCharacter(
  32818. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32819. {
  32820. front: {
  32821. height: math.unit(6, "feet"),
  32822. weight: math.unit(150, "lb"),
  32823. name: "Front",
  32824. image: {
  32825. source: "./media/characters/pride/front.svg",
  32826. extra: 1299/1230,
  32827. bottom: 18/1317
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Normal",
  32834. height: math.unit(7, "feet")
  32835. },
  32836. {
  32837. name: "Mini-macro",
  32838. height: math.unit(11, "feet")
  32839. },
  32840. {
  32841. name: "Macro",
  32842. height: math.unit(15, "meters"),
  32843. default: true
  32844. },
  32845. {
  32846. name: "Macro+",
  32847. height: math.unit(40, "meters")
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32853. {
  32854. front: {
  32855. height: math.unit(4 + 2 / 12, "feet"),
  32856. weight: math.unit(95, "lb"),
  32857. name: "Front",
  32858. image: {
  32859. source: "./media/characters/vaelophis-nyx/front.svg",
  32860. extra: 2532/2330,
  32861. bottom: 0/2532
  32862. }
  32863. },
  32864. back: {
  32865. height: math.unit(4 + 2 / 12, "feet"),
  32866. weight: math.unit(95, "lb"),
  32867. name: "Back",
  32868. image: {
  32869. source: "./media/characters/vaelophis-nyx/back.svg",
  32870. extra: 2484/2361,
  32871. bottom: 0/2484
  32872. }
  32873. },
  32874. feralSide: {
  32875. height: math.unit(2 + 1/12, "feet"),
  32876. weight: math.unit(20, "lb"),
  32877. name: "Feral (Side)",
  32878. image: {
  32879. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32880. extra: 1721/1581,
  32881. bottom: 70/1791
  32882. }
  32883. },
  32884. feralLazing: {
  32885. height: math.unit(1.08, "feet"),
  32886. weight: math.unit(20, "lb"),
  32887. name: "Feral (Lazing)",
  32888. image: {
  32889. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32890. extra: 822/822,
  32891. bottom: 248/1070
  32892. }
  32893. },
  32894. ear: {
  32895. height: math.unit(0.416, "feet"),
  32896. name: "Ear",
  32897. image: {
  32898. source: "./media/characters/vaelophis-nyx/ear.svg"
  32899. }
  32900. },
  32901. eye: {
  32902. height: math.unit(0.0748, "feet"),
  32903. name: "Eye",
  32904. image: {
  32905. source: "./media/characters/vaelophis-nyx/eye.svg"
  32906. }
  32907. },
  32908. mouth: {
  32909. height: math.unit(0.378, "feet"),
  32910. name: "Mouth",
  32911. image: {
  32912. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32913. }
  32914. },
  32915. spade: {
  32916. height: math.unit(0.55, "feet"),
  32917. name: "Spade",
  32918. image: {
  32919. source: "./media/characters/vaelophis-nyx/spade.svg"
  32920. }
  32921. },
  32922. },
  32923. [
  32924. {
  32925. name: "Normal",
  32926. height: math.unit(4 + 2/12, "feet"),
  32927. default: true
  32928. },
  32929. ]
  32930. ))
  32931. characterMakers.push(() => makeCharacter(
  32932. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32933. {
  32934. front: {
  32935. height: math.unit(7, "feet"),
  32936. weight: math.unit(231, "lb"),
  32937. name: "Front",
  32938. image: {
  32939. source: "./media/characters/flux/front.svg",
  32940. extra: 919/871,
  32941. bottom: 0/919
  32942. }
  32943. },
  32944. back: {
  32945. height: math.unit(7, "feet"),
  32946. weight: math.unit(231, "lb"),
  32947. name: "Back",
  32948. image: {
  32949. source: "./media/characters/flux/back.svg",
  32950. extra: 1040/992,
  32951. bottom: 0/1040
  32952. }
  32953. },
  32954. frontDressed: {
  32955. height: math.unit(7, "feet"),
  32956. weight: math.unit(231, "lb"),
  32957. name: "Front (Dressed)",
  32958. image: {
  32959. source: "./media/characters/flux/front-dressed.svg",
  32960. extra: 919/871,
  32961. bottom: 0/919
  32962. }
  32963. },
  32964. feralSide: {
  32965. height: math.unit(5, "feet"),
  32966. weight: math.unit(150, "lb"),
  32967. name: "Feral (Side)",
  32968. image: {
  32969. source: "./media/characters/flux/feral-side.svg",
  32970. extra: 598/528,
  32971. bottom: 28/626
  32972. }
  32973. },
  32974. head: {
  32975. height: math.unit(1.585, "feet"),
  32976. name: "Head",
  32977. image: {
  32978. source: "./media/characters/flux/head.svg"
  32979. }
  32980. },
  32981. headSide: {
  32982. height: math.unit(1.74, "feet"),
  32983. name: "Head (Side)",
  32984. image: {
  32985. source: "./media/characters/flux/head-side.svg"
  32986. }
  32987. },
  32988. headSideFire: {
  32989. height: math.unit(1.76, "feet"),
  32990. name: "Head (Side, Fire)",
  32991. image: {
  32992. source: "./media/characters/flux/head-side-fire.svg"
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Normal",
  32999. height: math.unit(7, "feet"),
  33000. default: true
  33001. },
  33002. ]
  33003. ))
  33004. characterMakers.push(() => makeCharacter(
  33005. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33006. {
  33007. front: {
  33008. height: math.unit(9, "feet"),
  33009. weight: math.unit(1012, "lb"),
  33010. name: "Front",
  33011. image: {
  33012. source: "./media/characters/ulfra-lupae/front.svg",
  33013. extra: 1083/1011,
  33014. bottom: 67/1150
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Micro",
  33021. height: math.unit(6, "inches")
  33022. },
  33023. {
  33024. name: "Socializing",
  33025. height: math.unit(6 + 5/12, "feet")
  33026. },
  33027. {
  33028. name: "Normal",
  33029. height: math.unit(9, "feet"),
  33030. default: true
  33031. },
  33032. {
  33033. name: "Macro",
  33034. height: math.unit(150, "feet")
  33035. },
  33036. ]
  33037. ))
  33038. characterMakers.push(() => makeCharacter(
  33039. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33040. {
  33041. front: {
  33042. height: math.unit(5 + 2/12, "feet"),
  33043. weight: math.unit(120, "lb"),
  33044. name: "Front",
  33045. image: {
  33046. source: "./media/characters/timber/front.svg",
  33047. extra: 2814/2705,
  33048. bottom: 181/2995
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(5 + 2/12, "feet"),
  33056. default: true
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(9, "feet"),
  33065. name: "Front",
  33066. image: {
  33067. source: "./media/characters/nicki/front.svg",
  33068. extra: 1240/990,
  33069. bottom: 45/1285
  33070. },
  33071. form: "anthro",
  33072. default: true
  33073. },
  33074. side: {
  33075. height: math.unit(9, "feet"),
  33076. name: "Side",
  33077. image: {
  33078. source: "./media/characters/nicki/side.svg",
  33079. extra: 1047/973,
  33080. bottom: 61/1108
  33081. },
  33082. form: "anthro"
  33083. },
  33084. back: {
  33085. height: math.unit(9, "feet"),
  33086. name: "Back",
  33087. image: {
  33088. source: "./media/characters/nicki/back.svg",
  33089. extra: 1006/965,
  33090. bottom: 39/1045
  33091. },
  33092. form: "anthro"
  33093. },
  33094. taur: {
  33095. height: math.unit(15, "feet"),
  33096. name: "Taur",
  33097. image: {
  33098. source: "./media/characters/nicki/taur.svg",
  33099. extra: 1592/1347,
  33100. bottom: 0/1592
  33101. },
  33102. form: "taur",
  33103. default: true
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Normal",
  33109. height: math.unit(9, "feet"),
  33110. form: "anthro",
  33111. default: true
  33112. },
  33113. {
  33114. name: "Normal",
  33115. height: math.unit(15, "feet"),
  33116. form: "taur",
  33117. default: true
  33118. }
  33119. ],
  33120. {
  33121. "anthro": {
  33122. name: "Anthro",
  33123. default: true
  33124. },
  33125. "taur": {
  33126. name: "Taur"
  33127. }
  33128. }
  33129. ))
  33130. characterMakers.push(() => makeCharacter(
  33131. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33132. {
  33133. front: {
  33134. height: math.unit(7 + 10/12, "feet"),
  33135. weight: math.unit(3.5, "tons"),
  33136. name: "Front",
  33137. image: {
  33138. source: "./media/characters/lee/front.svg",
  33139. extra: 1773/1615,
  33140. bottom: 86/1859
  33141. }
  33142. },
  33143. hand: {
  33144. height: math.unit(1.78, "feet"),
  33145. name: "Hand",
  33146. image: {
  33147. source: "./media/characters/lee/hand.svg"
  33148. }
  33149. },
  33150. maw: {
  33151. height: math.unit(1.18, "feet"),
  33152. name: "Maw",
  33153. image: {
  33154. source: "./media/characters/lee/maw.svg"
  33155. }
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "Normal",
  33161. height: math.unit(7 + 10/12, "feet"),
  33162. default: true
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33168. {
  33169. front: {
  33170. height: math.unit(9, "feet"),
  33171. name: "Front",
  33172. image: {
  33173. source: "./media/characters/guti/front.svg",
  33174. extra: 4551/4355,
  33175. bottom: 123/4674
  33176. }
  33177. },
  33178. tongue: {
  33179. height: math.unit(1, "feet"),
  33180. name: "Tongue",
  33181. image: {
  33182. source: "./media/characters/guti/tongue.svg"
  33183. }
  33184. },
  33185. paw: {
  33186. height: math.unit(1.18, "feet"),
  33187. name: "Paw",
  33188. image: {
  33189. source: "./media/characters/guti/paw.svg"
  33190. }
  33191. },
  33192. },
  33193. [
  33194. {
  33195. name: "Normal",
  33196. height: math.unit(9, "feet"),
  33197. default: true
  33198. },
  33199. ]
  33200. ))
  33201. characterMakers.push(() => makeCharacter(
  33202. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33203. {
  33204. side: {
  33205. height: math.unit(5, "meters"),
  33206. name: "Side",
  33207. image: {
  33208. source: "./media/characters/vesper/side.svg",
  33209. extra: 1605/1518,
  33210. bottom: 0/1605
  33211. }
  33212. },
  33213. },
  33214. [
  33215. {
  33216. name: "Small",
  33217. height: math.unit(5, "meters")
  33218. },
  33219. {
  33220. name: "Sage",
  33221. height: math.unit(100, "meters"),
  33222. default: true
  33223. },
  33224. {
  33225. name: "Fun Size",
  33226. height: math.unit(600, "meters")
  33227. },
  33228. {
  33229. name: "Goddess",
  33230. height: math.unit(20000, "km")
  33231. },
  33232. {
  33233. name: "Maximum",
  33234. height: math.unit(5, "galaxies")
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33240. {
  33241. front: {
  33242. height: math.unit(6 + 3/12, "feet"),
  33243. weight: math.unit(190, "lb"),
  33244. name: "Front",
  33245. image: {
  33246. source: "./media/characters/gawain/front.svg",
  33247. extra: 2222/2139,
  33248. bottom: 90/2312
  33249. }
  33250. },
  33251. back: {
  33252. height: math.unit(6 + 3/12, "feet"),
  33253. weight: math.unit(190, "lb"),
  33254. name: "Back",
  33255. image: {
  33256. source: "./media/characters/gawain/back.svg",
  33257. extra: 2199/2111,
  33258. bottom: 73/2272
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(6 + 3/12, "feet"),
  33266. default: true
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33272. {
  33273. side: {
  33274. height: math.unit(3.5, "meters"),
  33275. weight: math.unit(16000, "lb"),
  33276. name: "Side",
  33277. image: {
  33278. source: "./media/characters/dascalti/side.svg",
  33279. extra: 392/273,
  33280. bottom: 47/439
  33281. }
  33282. },
  33283. breath: {
  33284. height: math.unit(7.4, "feet"),
  33285. name: "Breath",
  33286. image: {
  33287. source: "./media/characters/dascalti/breath.svg"
  33288. }
  33289. },
  33290. fed: {
  33291. height: math.unit(3.6, "meters"),
  33292. weight: math.unit(16000, "lb"),
  33293. name: "Fed",
  33294. image: {
  33295. source: "./media/characters/dascalti/fed.svg",
  33296. extra: 1419/820,
  33297. bottom: 95/1514
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(3.5, "meters"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(3 + 5/12, "feet"),
  33314. name: "Front",
  33315. image: {
  33316. source: "./media/characters/mauve/front.svg",
  33317. extra: 1126/1033,
  33318. bottom: 65/1191
  33319. }
  33320. },
  33321. side: {
  33322. height: math.unit(3 + 5/12, "feet"),
  33323. name: "Side",
  33324. image: {
  33325. source: "./media/characters/mauve/side.svg",
  33326. extra: 1089/1001,
  33327. bottom: 29/1118
  33328. }
  33329. },
  33330. back: {
  33331. height: math.unit(3 + 5/12, "feet"),
  33332. name: "Back",
  33333. image: {
  33334. source: "./media/characters/mauve/back.svg",
  33335. extra: 1173/1053,
  33336. bottom: 109/1282
  33337. }
  33338. },
  33339. },
  33340. [
  33341. {
  33342. name: "Normal",
  33343. height: math.unit(3 + 5/12, "feet"),
  33344. default: true
  33345. },
  33346. ]
  33347. ))
  33348. characterMakers.push(() => makeCharacter(
  33349. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33350. {
  33351. front: {
  33352. height: math.unit(6 + 3/12, "feet"),
  33353. weight: math.unit(430, "lb"),
  33354. name: "Front",
  33355. image: {
  33356. source: "./media/characters/carlos/front.svg",
  33357. extra: 1964/1913,
  33358. bottom: 70/2034
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(6 + 3/12, "feet"),
  33366. default: true
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33372. {
  33373. back: {
  33374. height: math.unit(5 + 10/12, "feet"),
  33375. weight: math.unit(200, "lb"),
  33376. name: "Back",
  33377. image: {
  33378. source: "./media/characters/jax/back.svg",
  33379. extra: 764/739,
  33380. bottom: 25/789
  33381. }
  33382. },
  33383. },
  33384. [
  33385. {
  33386. name: "Normal",
  33387. height: math.unit(5 + 10/12, "feet"),
  33388. default: true
  33389. },
  33390. ]
  33391. ))
  33392. characterMakers.push(() => makeCharacter(
  33393. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33394. {
  33395. front: {
  33396. height: math.unit(8, "feet"),
  33397. weight: math.unit(250, "lb"),
  33398. name: "Front",
  33399. image: {
  33400. source: "./media/characters/eikthynir/front.svg",
  33401. extra: 1332/1166,
  33402. bottom: 82/1414
  33403. }
  33404. },
  33405. back: {
  33406. height: math.unit(8, "feet"),
  33407. weight: math.unit(250, "lb"),
  33408. name: "Back",
  33409. image: {
  33410. source: "./media/characters/eikthynir/back.svg",
  33411. extra: 1342/1190,
  33412. bottom: 19/1361
  33413. }
  33414. },
  33415. dick: {
  33416. height: math.unit(2.35, "feet"),
  33417. name: "Dick",
  33418. image: {
  33419. source: "./media/characters/eikthynir/dick.svg"
  33420. }
  33421. },
  33422. },
  33423. [
  33424. {
  33425. name: "Normal",
  33426. height: math.unit(8, "feet"),
  33427. default: true
  33428. },
  33429. ]
  33430. ))
  33431. characterMakers.push(() => makeCharacter(
  33432. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33433. {
  33434. front: {
  33435. height: math.unit(99, "meters"),
  33436. weight: math.unit(13000, "tons"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/zlmos/front.svg",
  33440. extra: 2202/1992,
  33441. bottom: 315/2517
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Macro",
  33448. height: math.unit(99, "meters"),
  33449. default: true
  33450. },
  33451. ]
  33452. ))
  33453. characterMakers.push(() => makeCharacter(
  33454. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33455. {
  33456. front: {
  33457. height: math.unit(6 + 5/12, "feet"),
  33458. name: "Front",
  33459. image: {
  33460. source: "./media/characters/purri/front.svg",
  33461. extra: 1698/1610,
  33462. bottom: 32/1730
  33463. }
  33464. },
  33465. frontAlt: {
  33466. height: math.unit(6 + 5/12, "feet"),
  33467. name: "Front (Alt)",
  33468. image: {
  33469. source: "./media/characters/purri/front-alt.svg",
  33470. extra: 450/420,
  33471. bottom: 26/476
  33472. }
  33473. },
  33474. boots: {
  33475. height: math.unit(5.5, "feet"),
  33476. name: "Boots",
  33477. image: {
  33478. source: "./media/characters/purri/boots.svg",
  33479. extra: 905/853,
  33480. bottom: 18/923
  33481. }
  33482. },
  33483. lying: {
  33484. height: math.unit(2, "feet"),
  33485. name: "Lying",
  33486. image: {
  33487. source: "./media/characters/purri/lying.svg",
  33488. extra: 940/843,
  33489. bottom: 146/1086
  33490. }
  33491. },
  33492. devious: {
  33493. height: math.unit(1.77, "feet"),
  33494. name: "Devious",
  33495. image: {
  33496. source: "./media/characters/purri/devious.svg",
  33497. extra: 1440/1155,
  33498. bottom: 147/1587
  33499. }
  33500. },
  33501. bean: {
  33502. height: math.unit(1.94, "feet"),
  33503. name: "Bean",
  33504. image: {
  33505. source: "./media/characters/purri/bean.svg"
  33506. }
  33507. },
  33508. },
  33509. [
  33510. {
  33511. name: "Micro",
  33512. height: math.unit(1, "mm")
  33513. },
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(6 + 5/12, "feet"),
  33517. default: true
  33518. },
  33519. {
  33520. name: "Macro :3c",
  33521. height: math.unit(2, "miles")
  33522. },
  33523. ]
  33524. ))
  33525. characterMakers.push(() => makeCharacter(
  33526. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33527. {
  33528. front: {
  33529. height: math.unit(6 + 2/12, "feet"),
  33530. weight: math.unit(250, "lb"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/moonlight/front.svg",
  33534. extra: 1044/908,
  33535. bottom: 56/1100
  33536. }
  33537. },
  33538. feral: {
  33539. height: math.unit(3 + 1/12, "feet"),
  33540. weight: math.unit(50, "kg"),
  33541. name: "Feral",
  33542. image: {
  33543. source: "./media/characters/moonlight/feral.svg",
  33544. extra: 3705/2791,
  33545. bottom: 145/3850
  33546. }
  33547. },
  33548. paw: {
  33549. height: math.unit(1, "feet"),
  33550. name: "Paw",
  33551. image: {
  33552. source: "./media/characters/moonlight/paw.svg"
  33553. }
  33554. },
  33555. paws: {
  33556. height: math.unit(0.98, "feet"),
  33557. name: "Paws",
  33558. image: {
  33559. source: "./media/characters/moonlight/paws.svg",
  33560. extra: 939/939,
  33561. bottom: 50/989
  33562. }
  33563. },
  33564. mouth: {
  33565. height: math.unit(0.48, "feet"),
  33566. name: "Mouth",
  33567. image: {
  33568. source: "./media/characters/moonlight/mouth.svg"
  33569. }
  33570. },
  33571. dick: {
  33572. height: math.unit(1.46, "feet"),
  33573. name: "Dick",
  33574. image: {
  33575. source: "./media/characters/moonlight/dick.svg"
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(6 + 2/12, "feet"),
  33583. default: true
  33584. },
  33585. {
  33586. name: "Macro",
  33587. height: math.unit(300, "feet")
  33588. },
  33589. {
  33590. name: "Macro+",
  33591. height: math.unit(1, "mile")
  33592. },
  33593. {
  33594. name: "Mt. Moon",
  33595. height: math.unit(5, "miles")
  33596. },
  33597. {
  33598. name: "Megamacro",
  33599. height: math.unit(15, "miles")
  33600. },
  33601. ]
  33602. ))
  33603. characterMakers.push(() => makeCharacter(
  33604. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33605. {
  33606. back: {
  33607. height: math.unit(6, "feet"),
  33608. weight: math.unit(150, "lb"),
  33609. name: "Back",
  33610. image: {
  33611. source: "./media/characters/sylen/back.svg",
  33612. extra: 1335/1273,
  33613. bottom: 107/1442
  33614. }
  33615. },
  33616. },
  33617. [
  33618. {
  33619. name: "Normal",
  33620. height: math.unit(5 + 5/12, "feet")
  33621. },
  33622. {
  33623. name: "Megamacro",
  33624. height: math.unit(3, "miles"),
  33625. default: true
  33626. },
  33627. ]
  33628. ))
  33629. characterMakers.push(() => makeCharacter(
  33630. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33631. {
  33632. front: {
  33633. height: math.unit(6, "feet"),
  33634. weight: math.unit(190, "lb"),
  33635. name: "Front",
  33636. image: {
  33637. source: "./media/characters/huttser/front.svg",
  33638. extra: 1152/1058,
  33639. bottom: 23/1175
  33640. }
  33641. },
  33642. side: {
  33643. height: math.unit(6, "feet"),
  33644. weight: math.unit(190, "lb"),
  33645. name: "Side",
  33646. image: {
  33647. source: "./media/characters/huttser/side.svg",
  33648. extra: 1174/1065,
  33649. bottom: 18/1192
  33650. }
  33651. },
  33652. back: {
  33653. height: math.unit(6, "feet"),
  33654. weight: math.unit(190, "lb"),
  33655. name: "Back",
  33656. image: {
  33657. source: "./media/characters/huttser/back.svg",
  33658. extra: 1158/1056,
  33659. bottom: 12/1170
  33660. }
  33661. },
  33662. },
  33663. [
  33664. ]
  33665. ))
  33666. characterMakers.push(() => makeCharacter(
  33667. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33668. {
  33669. side: {
  33670. height: math.unit(12 + 9/12, "feet"),
  33671. weight: math.unit(15000, "lb"),
  33672. name: "Side",
  33673. image: {
  33674. source: "./media/characters/faan/side.svg",
  33675. extra: 2747/2697,
  33676. bottom: 0/2747
  33677. }
  33678. },
  33679. front: {
  33680. height: math.unit(12 + 9/12, "feet"),
  33681. weight: math.unit(15000, "lb"),
  33682. name: "Front",
  33683. image: {
  33684. source: "./media/characters/faan/front.svg",
  33685. extra: 607/571,
  33686. bottom: 24/631
  33687. }
  33688. },
  33689. head: {
  33690. height: math.unit(2.85, "feet"),
  33691. name: "Head",
  33692. image: {
  33693. source: "./media/characters/faan/head.svg"
  33694. }
  33695. },
  33696. headAlt: {
  33697. height: math.unit(3.13, "feet"),
  33698. name: "Head-alt",
  33699. image: {
  33700. source: "./media/characters/faan/head-alt.svg"
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(12 + 9/12, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(6, "feet"),
  33717. weight: math.unit(300, "lb"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/tanio/front.svg",
  33721. extra: 711/673,
  33722. bottom: 25/736
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(6, "feet"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(3, "inches"),
  33739. name: "Front",
  33740. image: {
  33741. source: "./media/characters/noboru/front.svg",
  33742. extra: 1039/932,
  33743. bottom: 18/1057
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Micro",
  33750. height: math.unit(3, "inches"),
  33751. default: true
  33752. },
  33753. ]
  33754. ))
  33755. characterMakers.push(() => makeCharacter(
  33756. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33757. {
  33758. front: {
  33759. height: math.unit(1.85, "meters"),
  33760. weight: math.unit(80, "kg"),
  33761. name: "Front",
  33762. image: {
  33763. source: "./media/characters/daniel-barrett/front.svg",
  33764. extra: 355/337,
  33765. bottom: 9/364
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Pico",
  33772. height: math.unit(0.0433, "mm")
  33773. },
  33774. {
  33775. name: "Nano",
  33776. height: math.unit(1.5, "mm")
  33777. },
  33778. {
  33779. name: "Micro",
  33780. height: math.unit(5.3, "cm"),
  33781. default: true
  33782. },
  33783. {
  33784. name: "Normal",
  33785. height: math.unit(1.85, "meters")
  33786. },
  33787. {
  33788. name: "Macro",
  33789. height: math.unit(64.7, "meters")
  33790. },
  33791. {
  33792. name: "Megamacro",
  33793. height: math.unit(2.26, "km")
  33794. },
  33795. {
  33796. name: "Gigamacro",
  33797. height: math.unit(79, "km")
  33798. },
  33799. {
  33800. name: "Teramacro",
  33801. height: math.unit(2765, "km")
  33802. },
  33803. {
  33804. name: "Petamacro",
  33805. height: math.unit(96678, "km")
  33806. },
  33807. ]
  33808. ))
  33809. characterMakers.push(() => makeCharacter(
  33810. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33811. {
  33812. front: {
  33813. height: math.unit(30, "meters"),
  33814. weight: math.unit(400, "tons"),
  33815. name: "Front",
  33816. image: {
  33817. source: "./media/characters/zeel/front.svg",
  33818. extra: 2599/2599,
  33819. bottom: 226/2825
  33820. }
  33821. },
  33822. },
  33823. [
  33824. {
  33825. name: "Macro",
  33826. height: math.unit(30, "meters"),
  33827. default: true
  33828. },
  33829. ]
  33830. ))
  33831. characterMakers.push(() => makeCharacter(
  33832. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33833. {
  33834. front: {
  33835. height: math.unit(6 + 7/12, "feet"),
  33836. weight: math.unit(210, "lb"),
  33837. name: "Front",
  33838. image: {
  33839. source: "./media/characters/tarn/front.svg",
  33840. extra: 3517/3220,
  33841. bottom: 91/3608
  33842. }
  33843. },
  33844. back: {
  33845. height: math.unit(6 + 7/12, "feet"),
  33846. weight: math.unit(210, "lb"),
  33847. name: "Back",
  33848. image: {
  33849. source: "./media/characters/tarn/back.svg",
  33850. extra: 3566/3241,
  33851. bottom: 34/3600
  33852. }
  33853. },
  33854. dick: {
  33855. height: math.unit(1.65, "feet"),
  33856. name: "Dick",
  33857. image: {
  33858. source: "./media/characters/tarn/dick.svg"
  33859. }
  33860. },
  33861. paw: {
  33862. height: math.unit(1.80, "feet"),
  33863. name: "Paw",
  33864. image: {
  33865. source: "./media/characters/tarn/paw.svg"
  33866. }
  33867. },
  33868. tongue: {
  33869. height: math.unit(0.97, "feet"),
  33870. name: "Tongue",
  33871. image: {
  33872. source: "./media/characters/tarn/tongue.svg"
  33873. }
  33874. },
  33875. },
  33876. [
  33877. {
  33878. name: "Micro",
  33879. height: math.unit(4, "inches")
  33880. },
  33881. {
  33882. name: "Normal",
  33883. height: math.unit(6 + 7/12, "feet"),
  33884. default: true
  33885. },
  33886. {
  33887. name: "Macro",
  33888. height: math.unit(300, "feet")
  33889. },
  33890. ]
  33891. ))
  33892. characterMakers.push(() => makeCharacter(
  33893. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33894. {
  33895. front: {
  33896. height: math.unit(5 + 7/12, "feet"),
  33897. weight: math.unit(80, "kg"),
  33898. name: "Front",
  33899. image: {
  33900. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33901. extra: 3023/2865,
  33902. bottom: 33/3056
  33903. }
  33904. },
  33905. back: {
  33906. height: math.unit(5 + 7/12, "feet"),
  33907. weight: math.unit(80, "kg"),
  33908. name: "Back",
  33909. image: {
  33910. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33911. extra: 3020/2886,
  33912. bottom: 30/3050
  33913. }
  33914. },
  33915. dick: {
  33916. height: math.unit(0.98, "feet"),
  33917. name: "Dick",
  33918. image: {
  33919. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33920. }
  33921. },
  33922. anatomy: {
  33923. height: math.unit(2.86, "feet"),
  33924. name: "Anatomy",
  33925. image: {
  33926. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Really Small",
  33933. height: math.unit(2, "inches")
  33934. },
  33935. {
  33936. name: "Micro",
  33937. height: math.unit(5.583, "inches")
  33938. },
  33939. {
  33940. name: "Normal",
  33941. height: math.unit(5 + 7/12, "feet"),
  33942. default: true
  33943. },
  33944. {
  33945. name: "Macro",
  33946. height: math.unit(67, "feet")
  33947. },
  33948. {
  33949. name: "Megamacro",
  33950. height: math.unit(134, "feet")
  33951. },
  33952. ]
  33953. ))
  33954. characterMakers.push(() => makeCharacter(
  33955. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33956. {
  33957. front: {
  33958. height: math.unit(9, "feet"),
  33959. weight: math.unit(120, "lb"),
  33960. name: "Front",
  33961. image: {
  33962. source: "./media/characters/sally/front.svg",
  33963. extra: 1506/1349,
  33964. bottom: 66/1572
  33965. }
  33966. },
  33967. },
  33968. [
  33969. {
  33970. name: "Normal",
  33971. height: math.unit(9, "feet"),
  33972. default: true
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33978. {
  33979. front: {
  33980. height: math.unit(8, "feet"),
  33981. weight: math.unit(900, "lb"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/owen/front.svg",
  33985. extra: 1761/1657,
  33986. bottom: 74/1835
  33987. }
  33988. },
  33989. side: {
  33990. height: math.unit(8, "feet"),
  33991. weight: math.unit(900, "lb"),
  33992. name: "Side",
  33993. image: {
  33994. source: "./media/characters/owen/side.svg",
  33995. extra: 1797/1734,
  33996. bottom: 30/1827
  33997. }
  33998. },
  33999. back: {
  34000. height: math.unit(8, "feet"),
  34001. weight: math.unit(900, "lb"),
  34002. name: "Back",
  34003. image: {
  34004. source: "./media/characters/owen/back.svg",
  34005. extra: 1796/1706,
  34006. bottom: 59/1855
  34007. }
  34008. },
  34009. maw: {
  34010. height: math.unit(1.76, "feet"),
  34011. name: "Maw",
  34012. image: {
  34013. source: "./media/characters/owen/maw.svg"
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Normal",
  34020. height: math.unit(8, "feet"),
  34021. default: true
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34027. {
  34028. front: {
  34029. height: math.unit(4, "feet"),
  34030. weight: math.unit(400, "lb"),
  34031. name: "Front",
  34032. image: {
  34033. source: "./media/characters/ryth/front.svg",
  34034. extra: 1920/1748,
  34035. bottom: 42/1962
  34036. }
  34037. },
  34038. back: {
  34039. height: math.unit(4, "feet"),
  34040. weight: math.unit(400, "lb"),
  34041. name: "Back",
  34042. image: {
  34043. source: "./media/characters/ryth/back.svg",
  34044. extra: 1897/1690,
  34045. bottom: 89/1986
  34046. }
  34047. },
  34048. mouth: {
  34049. height: math.unit(1.39, "feet"),
  34050. name: "Mouth",
  34051. image: {
  34052. source: "./media/characters/ryth/mouth.svg"
  34053. }
  34054. },
  34055. tailmaw: {
  34056. height: math.unit(1.23, "feet"),
  34057. name: "Tailmaw",
  34058. image: {
  34059. source: "./media/characters/ryth/tailmaw.svg"
  34060. }
  34061. },
  34062. goia: {
  34063. height: math.unit(4, "meters"),
  34064. weight: math.unit(10800, "lb"),
  34065. name: "Goia",
  34066. image: {
  34067. source: "./media/characters/ryth/goia.svg",
  34068. extra: 745/640,
  34069. bottom: 107/852
  34070. }
  34071. },
  34072. goiaFront: {
  34073. height: math.unit(4, "meters"),
  34074. weight: math.unit(10800, "lb"),
  34075. name: "Goia (Front)",
  34076. image: {
  34077. source: "./media/characters/ryth/goia-front.svg",
  34078. extra: 750/586,
  34079. bottom: 114/864
  34080. }
  34081. },
  34082. goiaMaw: {
  34083. height: math.unit(5.55, "feet"),
  34084. name: "Goia Maw",
  34085. image: {
  34086. source: "./media/characters/ryth/goia-maw.svg"
  34087. }
  34088. },
  34089. goiaForepaw: {
  34090. height: math.unit(3.5, "feet"),
  34091. name: "Goia Forepaw",
  34092. image: {
  34093. source: "./media/characters/ryth/goia-forepaw.svg"
  34094. }
  34095. },
  34096. goiaHindpaw: {
  34097. height: math.unit(5.55, "feet"),
  34098. name: "Goia Hindpaw",
  34099. image: {
  34100. source: "./media/characters/ryth/goia-hindpaw.svg"
  34101. }
  34102. },
  34103. },
  34104. [
  34105. {
  34106. name: "Normal",
  34107. height: math.unit(4, "feet"),
  34108. default: true
  34109. },
  34110. ]
  34111. ))
  34112. characterMakers.push(() => makeCharacter(
  34113. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34114. {
  34115. front: {
  34116. height: math.unit(7, "feet"),
  34117. weight: math.unit(180, "lb"),
  34118. name: "Front",
  34119. image: {
  34120. source: "./media/characters/necrolance/front.svg",
  34121. extra: 1062/947,
  34122. bottom: 41/1103
  34123. }
  34124. },
  34125. back: {
  34126. height: math.unit(7, "feet"),
  34127. weight: math.unit(180, "lb"),
  34128. name: "Back",
  34129. image: {
  34130. source: "./media/characters/necrolance/back.svg",
  34131. extra: 1045/984,
  34132. bottom: 14/1059
  34133. }
  34134. },
  34135. wing: {
  34136. height: math.unit(2.67, "feet"),
  34137. name: "Wing",
  34138. image: {
  34139. source: "./media/characters/necrolance/wing.svg"
  34140. }
  34141. },
  34142. },
  34143. [
  34144. {
  34145. name: "Normal",
  34146. height: math.unit(7, "feet"),
  34147. default: true
  34148. },
  34149. ]
  34150. ))
  34151. characterMakers.push(() => makeCharacter(
  34152. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34153. {
  34154. front: {
  34155. height: math.unit(76, "meters"),
  34156. weight: math.unit(30000, "tons"),
  34157. name: "Front",
  34158. image: {
  34159. source: "./media/characters/tyler/front.svg",
  34160. extra: 1640/1640,
  34161. bottom: 114/1754
  34162. }
  34163. },
  34164. },
  34165. [
  34166. {
  34167. name: "Macro",
  34168. height: math.unit(76, "meters"),
  34169. default: true
  34170. },
  34171. ]
  34172. ))
  34173. characterMakers.push(() => makeCharacter(
  34174. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34175. {
  34176. front: {
  34177. height: math.unit(4 + 11/12, "feet"),
  34178. weight: math.unit(132, "lb"),
  34179. name: "Front",
  34180. image: {
  34181. source: "./media/characters/icey/front.svg",
  34182. extra: 2750/2550,
  34183. bottom: 33/2783
  34184. }
  34185. },
  34186. back: {
  34187. height: math.unit(4 + 11/12, "feet"),
  34188. weight: math.unit(132, "lb"),
  34189. name: "Back",
  34190. image: {
  34191. source: "./media/characters/icey/back.svg",
  34192. extra: 2624/2481,
  34193. bottom: 35/2659
  34194. }
  34195. },
  34196. },
  34197. [
  34198. {
  34199. name: "Normal",
  34200. height: math.unit(4 + 11/12, "feet"),
  34201. default: true
  34202. },
  34203. ]
  34204. ))
  34205. characterMakers.push(() => makeCharacter(
  34206. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34207. {
  34208. front: {
  34209. height: math.unit(100, "feet"),
  34210. weight: math.unit(0, "lb"),
  34211. name: "Front",
  34212. image: {
  34213. source: "./media/characters/smile/front.svg",
  34214. extra: 2983/2912,
  34215. bottom: 162/3145
  34216. }
  34217. },
  34218. back: {
  34219. height: math.unit(100, "feet"),
  34220. weight: math.unit(0, "lb"),
  34221. name: "Back",
  34222. image: {
  34223. source: "./media/characters/smile/back.svg",
  34224. extra: 3143/3031,
  34225. bottom: 91/3234
  34226. }
  34227. },
  34228. head: {
  34229. height: math.unit(26.3, "feet"),
  34230. weight: math.unit(0, "lb"),
  34231. name: "Head",
  34232. image: {
  34233. source: "./media/characters/smile/head.svg"
  34234. }
  34235. },
  34236. collar: {
  34237. height: math.unit(5.3, "feet"),
  34238. weight: math.unit(0, "lb"),
  34239. name: "Collar",
  34240. image: {
  34241. source: "./media/characters/smile/collar.svg"
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Macro",
  34248. height: math.unit(100, "feet"),
  34249. default: true
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34255. {
  34256. dragon: {
  34257. height: math.unit(26, "feet"),
  34258. weight: math.unit(36, "tons"),
  34259. name: "Dragon",
  34260. image: {
  34261. source: "./media/characters/arimphae/dragon.svg",
  34262. extra: 1574/983,
  34263. bottom: 357/1931
  34264. }
  34265. },
  34266. drake: {
  34267. height: math.unit(9, "feet"),
  34268. weight: math.unit(1.5, "tons"),
  34269. name: "Drake",
  34270. image: {
  34271. source: "./media/characters/arimphae/drake.svg",
  34272. extra: 1120/925,
  34273. bottom: 435/1555
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Small",
  34280. height: math.unit(26*5/9, "feet")
  34281. },
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(26, "feet"),
  34285. default: true
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34291. {
  34292. front: {
  34293. height: math.unit(8 + 9/12, "feet"),
  34294. name: "Front",
  34295. image: {
  34296. source: "./media/characters/xander/front.svg",
  34297. extra: 1237/974,
  34298. bottom: 94/1331
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(8 + 9/12, "feet"),
  34306. default: true
  34307. },
  34308. {
  34309. name: "Gaze Grabber",
  34310. height: math.unit(13 + 8/12, "feet")
  34311. },
  34312. {
  34313. name: "Jaw Dropper",
  34314. height: math.unit(27, "feet")
  34315. },
  34316. {
  34317. name: "Show Stopper",
  34318. height: math.unit(136, "feet")
  34319. },
  34320. {
  34321. name: "Superstar",
  34322. height: math.unit(1.9e6, "miles")
  34323. },
  34324. ]
  34325. ))
  34326. characterMakers.push(() => makeCharacter(
  34327. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34328. {
  34329. side: {
  34330. height: math.unit(2100, "feet"),
  34331. name: "Side",
  34332. image: {
  34333. source: "./media/characters/osiris/side.svg",
  34334. extra: 1105/939,
  34335. bottom: 167/1272
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Macro",
  34342. height: math.unit(2100, "feet"),
  34343. default: true
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34349. {
  34350. front: {
  34351. height: math.unit(6 + 8/12, "feet"),
  34352. weight: math.unit(225, "lb"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/rhys-londe/front.svg",
  34356. extra: 2258/2141,
  34357. bottom: 188/2446
  34358. }
  34359. },
  34360. back: {
  34361. height: math.unit(6 + 8/12, "feet"),
  34362. weight: math.unit(225, "lb"),
  34363. name: "Back",
  34364. image: {
  34365. source: "./media/characters/rhys-londe/back.svg",
  34366. extra: 2237/2137,
  34367. bottom: 63/2300
  34368. }
  34369. },
  34370. frontNsfw: {
  34371. height: math.unit(6 + 8/12, "feet"),
  34372. weight: math.unit(225, "lb"),
  34373. name: "Front (NSFW)",
  34374. image: {
  34375. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34376. extra: 2258/2141,
  34377. bottom: 188/2446
  34378. }
  34379. },
  34380. backNsfw: {
  34381. height: math.unit(6 + 8/12, "feet"),
  34382. weight: math.unit(225, "lb"),
  34383. name: "Back (NSFW)",
  34384. image: {
  34385. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34386. extra: 2237/2137,
  34387. bottom: 63/2300
  34388. }
  34389. },
  34390. dick: {
  34391. height: math.unit(30, "inches"),
  34392. name: "Dick",
  34393. image: {
  34394. source: "./media/characters/rhys-londe/dick.svg"
  34395. }
  34396. },
  34397. maw: {
  34398. height: math.unit(1.6, "feet"),
  34399. name: "Maw",
  34400. image: {
  34401. source: "./media/characters/rhys-londe/maw.svg"
  34402. }
  34403. },
  34404. },
  34405. [
  34406. {
  34407. name: "Normal",
  34408. height: math.unit(6 + 8/12, "feet"),
  34409. default: true
  34410. },
  34411. ]
  34412. ))
  34413. characterMakers.push(() => makeCharacter(
  34414. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34415. {
  34416. front: {
  34417. height: math.unit(3 + 10/12, "feet"),
  34418. weight: math.unit(90, "lb"),
  34419. name: "Front",
  34420. image: {
  34421. source: "./media/characters/taivas-ensim/front.svg",
  34422. extra: 1327/1216,
  34423. bottom: 96/1423
  34424. }
  34425. },
  34426. back: {
  34427. height: math.unit(3 + 10/12, "feet"),
  34428. weight: math.unit(90, "lb"),
  34429. name: "Back",
  34430. image: {
  34431. source: "./media/characters/taivas-ensim/back.svg",
  34432. extra: 1355/1247,
  34433. bottom: 11/1366
  34434. }
  34435. },
  34436. frontNsfw: {
  34437. height: math.unit(3 + 10/12, "feet"),
  34438. weight: math.unit(90, "lb"),
  34439. name: "Front (NSFW)",
  34440. image: {
  34441. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34442. extra: 1327/1216,
  34443. bottom: 96/1423
  34444. }
  34445. },
  34446. backNsfw: {
  34447. height: math.unit(3 + 10/12, "feet"),
  34448. weight: math.unit(90, "lb"),
  34449. name: "Back (NSFW)",
  34450. image: {
  34451. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34452. extra: 1355/1247,
  34453. bottom: 11/1366
  34454. }
  34455. },
  34456. },
  34457. [
  34458. {
  34459. name: "Normal",
  34460. height: math.unit(3 + 10/12, "feet"),
  34461. default: true
  34462. },
  34463. ]
  34464. ))
  34465. characterMakers.push(() => makeCharacter(
  34466. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34467. {
  34468. front: {
  34469. height: math.unit(9 + 6/12, "feet"),
  34470. weight: math.unit(940, "lb"),
  34471. name: "Front",
  34472. image: {
  34473. source: "./media/characters/byliss/front.svg",
  34474. extra: 1327/1290,
  34475. bottom: 82/1409
  34476. }
  34477. },
  34478. back: {
  34479. height: math.unit(9 + 6/12, "feet"),
  34480. weight: math.unit(940, "lb"),
  34481. name: "Back",
  34482. image: {
  34483. source: "./media/characters/byliss/back.svg",
  34484. extra: 1376/1349,
  34485. bottom: 9/1385
  34486. }
  34487. },
  34488. frontNsfw: {
  34489. height: math.unit(9 + 6/12, "feet"),
  34490. weight: math.unit(940, "lb"),
  34491. name: "Front (NSFW)",
  34492. image: {
  34493. source: "./media/characters/byliss/front-nsfw.svg",
  34494. extra: 1327/1290,
  34495. bottom: 82/1409
  34496. }
  34497. },
  34498. backNsfw: {
  34499. height: math.unit(9 + 6/12, "feet"),
  34500. weight: math.unit(940, "lb"),
  34501. name: "Back (NSFW)",
  34502. image: {
  34503. source: "./media/characters/byliss/back-nsfw.svg",
  34504. extra: 1376/1349,
  34505. bottom: 9/1385
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Normal",
  34512. height: math.unit(9 + 6/12, "feet"),
  34513. default: true
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(5 + 2/12, "feet"),
  34522. weight: math.unit(200, "lb"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/noraly/front.svg",
  34526. extra: 4985/4773,
  34527. bottom: 150/5135
  34528. }
  34529. },
  34530. full: {
  34531. height: math.unit(5 + 2/12, "feet"),
  34532. weight: math.unit(164, "lb"),
  34533. name: "Full",
  34534. image: {
  34535. source: "./media/characters/noraly/full.svg",
  34536. extra: 1114/1059,
  34537. bottom: 35/1149
  34538. }
  34539. },
  34540. fuller: {
  34541. height: math.unit(5 + 2/12, "feet"),
  34542. weight: math.unit(230, "lb"),
  34543. name: "Fuller",
  34544. image: {
  34545. source: "./media/characters/noraly/fuller.svg",
  34546. extra: 1114/1059,
  34547. bottom: 35/1149
  34548. }
  34549. },
  34550. fullest: {
  34551. height: math.unit(5 + 2/12, "feet"),
  34552. weight: math.unit(300, "lb"),
  34553. name: "Fullest",
  34554. image: {
  34555. source: "./media/characters/noraly/fullest.svg",
  34556. extra: 1114/1059,
  34557. bottom: 35/1149
  34558. }
  34559. },
  34560. },
  34561. [
  34562. {
  34563. name: "Normal",
  34564. height: math.unit(5 + 2/12, "feet"),
  34565. default: true
  34566. },
  34567. ]
  34568. ))
  34569. characterMakers.push(() => makeCharacter(
  34570. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34571. {
  34572. front: {
  34573. height: math.unit(5 + 2/12, "feet"),
  34574. weight: math.unit(210, "lb"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/pera/front.svg",
  34578. extra: 1560/1531,
  34579. bottom: 165/1725
  34580. }
  34581. },
  34582. back: {
  34583. height: math.unit(5 + 2/12, "feet"),
  34584. weight: math.unit(210, "lb"),
  34585. name: "Back",
  34586. image: {
  34587. source: "./media/characters/pera/back.svg",
  34588. extra: 1523/1493,
  34589. bottom: 152/1675
  34590. }
  34591. },
  34592. dick: {
  34593. height: math.unit(2.4, "feet"),
  34594. name: "Dick",
  34595. image: {
  34596. source: "./media/characters/pera/dick.svg"
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Normal",
  34603. height: math.unit(5 + 2/12, "feet"),
  34604. default: true
  34605. },
  34606. ]
  34607. ))
  34608. characterMakers.push(() => makeCharacter(
  34609. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34610. {
  34611. front: {
  34612. height: math.unit(12, "feet"),
  34613. weight: math.unit(3200, "lb"),
  34614. name: "Front",
  34615. image: {
  34616. source: "./media/characters/julian/front.svg",
  34617. extra: 2962/2701,
  34618. bottom: 184/3146
  34619. }
  34620. },
  34621. maw: {
  34622. height: math.unit(5.35, "feet"),
  34623. name: "Maw",
  34624. image: {
  34625. source: "./media/characters/julian/maw.svg"
  34626. }
  34627. },
  34628. paw: {
  34629. height: math.unit(3.07, "feet"),
  34630. name: "Paw",
  34631. image: {
  34632. source: "./media/characters/julian/paw.svg"
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Default",
  34639. height: math.unit(12, "feet"),
  34640. default: true
  34641. },
  34642. {
  34643. name: "Big",
  34644. height: math.unit(50, "feet")
  34645. },
  34646. {
  34647. name: "Really Big",
  34648. height: math.unit(1, "mile")
  34649. },
  34650. {
  34651. name: "Extremely Big",
  34652. height: math.unit(100, "miles")
  34653. },
  34654. {
  34655. name: "Planet Hugger",
  34656. height: math.unit(200, "megameters")
  34657. },
  34658. {
  34659. name: "Unreasonably Big",
  34660. height: math.unit(1e300, "meters")
  34661. },
  34662. ]
  34663. ))
  34664. characterMakers.push(() => makeCharacter(
  34665. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34666. {
  34667. solgooleo: {
  34668. height: math.unit(4, "meters"),
  34669. weight: math.unit(6000*1.5, "kg"),
  34670. volume: math.unit(6000, "liters"),
  34671. name: "Solgooleo",
  34672. image: {
  34673. source: "./media/characters/pi/solgooleo.svg",
  34674. extra: 388/331,
  34675. bottom: 29/417
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(4, "meters"),
  34683. default: true
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(8, "feet"),
  34692. weight: math.unit(4, "tons"),
  34693. name: "Front",
  34694. image: {
  34695. source: "./media/characters/shaun/front.svg",
  34696. extra: 503/495,
  34697. bottom: 20/523
  34698. }
  34699. },
  34700. back: {
  34701. height: math.unit(8, "feet"),
  34702. weight: math.unit(4, "tons"),
  34703. name: "Back",
  34704. image: {
  34705. source: "./media/characters/shaun/back.svg",
  34706. extra: 487/480,
  34707. bottom: 20/507
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Lorg",
  34714. height: math.unit(8, "feet"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34721. {
  34722. frontAnthro: {
  34723. height: math.unit(7, "feet"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/sini/front-anthro.svg",
  34727. extra: 726/678,
  34728. bottom: 35/761
  34729. },
  34730. form: "anthro",
  34731. default: true
  34732. },
  34733. backAnthro: {
  34734. height: math.unit(7, "feet"),
  34735. name: "Back",
  34736. image: {
  34737. source: "./media/characters/sini/back-anthro.svg",
  34738. extra: 743/701,
  34739. bottom: 12/755
  34740. },
  34741. form: "anthro",
  34742. },
  34743. frontAnthroNsfw: {
  34744. height: math.unit(7, "feet"),
  34745. name: "Front (NSFW)",
  34746. image: {
  34747. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34748. extra: 726/678,
  34749. bottom: 35/761
  34750. },
  34751. form: "anthro"
  34752. },
  34753. backAnthroNsfw: {
  34754. height: math.unit(7, "feet"),
  34755. name: "Back (NSFW)",
  34756. image: {
  34757. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34758. extra: 743/701,
  34759. bottom: 12/755
  34760. },
  34761. form: "anthro",
  34762. },
  34763. mawAnthro: {
  34764. height: math.unit(2.14, "feet"),
  34765. name: "Maw",
  34766. image: {
  34767. source: "./media/characters/sini/maw-anthro.svg"
  34768. },
  34769. form: "anthro"
  34770. },
  34771. dick: {
  34772. height: math.unit(1.45, "feet"),
  34773. name: "Dick",
  34774. image: {
  34775. source: "./media/characters/sini/dick-anthro.svg"
  34776. },
  34777. form: "anthro"
  34778. },
  34779. feral: {
  34780. height: math.unit(16, "feet"),
  34781. name: "Feral",
  34782. image: {
  34783. source: "./media/characters/sini/feral.svg",
  34784. extra: 814/605,
  34785. bottom: 11/825
  34786. },
  34787. form: "feral",
  34788. default: true
  34789. },
  34790. feralNsfw: {
  34791. height: math.unit(16, "feet"),
  34792. name: "Feral (NSFW)",
  34793. image: {
  34794. source: "./media/characters/sini/feral-nsfw.svg",
  34795. extra: 814/605,
  34796. bottom: 11/825
  34797. },
  34798. form: "feral"
  34799. },
  34800. mawFeral: {
  34801. height: math.unit(5.66, "feet"),
  34802. name: "Maw",
  34803. image: {
  34804. source: "./media/characters/sini/maw-feral.svg"
  34805. },
  34806. form: "feral",
  34807. },
  34808. pawFeral: {
  34809. height: math.unit(5.17, "feet"),
  34810. name: "Paw",
  34811. image: {
  34812. source: "./media/characters/sini/paw-feral.svg"
  34813. },
  34814. form: "feral",
  34815. },
  34816. rumpFeral: {
  34817. height: math.unit(13.11, "feet"),
  34818. name: "Rump",
  34819. image: {
  34820. source: "./media/characters/sini/rump-feral.svg"
  34821. },
  34822. form: "feral",
  34823. },
  34824. dickFeral: {
  34825. height: math.unit(1, "feet"),
  34826. name: "Dick",
  34827. image: {
  34828. source: "./media/characters/sini/dick-feral.svg"
  34829. },
  34830. form: "feral",
  34831. },
  34832. eyeFeral: {
  34833. height: math.unit(1.23, "feet"),
  34834. name: "Eye",
  34835. image: {
  34836. source: "./media/characters/sini/eye-feral.svg"
  34837. },
  34838. form: "feral",
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Normal",
  34844. height: math.unit(7, "feet"),
  34845. default: true,
  34846. form: "anthro"
  34847. },
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(16, "feet"),
  34851. default: true,
  34852. form: "feral"
  34853. },
  34854. ],
  34855. {
  34856. "anthro": {
  34857. name: "Anthro",
  34858. default: true
  34859. },
  34860. "feral": {
  34861. name: "Feral",
  34862. }
  34863. }
  34864. ))
  34865. characterMakers.push(() => makeCharacter(
  34866. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34867. {
  34868. side: {
  34869. height: math.unit(47.2, "meters"),
  34870. weight: math.unit(10000, "tons"),
  34871. name: "Side",
  34872. image: {
  34873. source: "./media/characters/raylldo/side.svg",
  34874. extra: 2363/642,
  34875. bottom: 221/2584
  34876. }
  34877. },
  34878. top: {
  34879. height: math.unit(240, "meters"),
  34880. weight: math.unit(10000, "tons"),
  34881. name: "Top",
  34882. image: {
  34883. source: "./media/characters/raylldo/top.svg"
  34884. }
  34885. },
  34886. bottom: {
  34887. height: math.unit(240, "meters"),
  34888. weight: math.unit(10000, "tons"),
  34889. name: "Bottom",
  34890. image: {
  34891. source: "./media/characters/raylldo/bottom.svg"
  34892. }
  34893. },
  34894. head: {
  34895. height: math.unit(38.6, "meters"),
  34896. name: "Head",
  34897. image: {
  34898. source: "./media/characters/raylldo/head.svg",
  34899. extra: 1335/1112,
  34900. bottom: 0/1335
  34901. }
  34902. },
  34903. maw: {
  34904. height: math.unit(16.37, "meters"),
  34905. name: "Maw",
  34906. image: {
  34907. source: "./media/characters/raylldo/maw.svg",
  34908. extra: 883/660,
  34909. bottom: 0/883
  34910. },
  34911. extraAttributes: {
  34912. preyCapacity: {
  34913. name: "Capacity",
  34914. power: 3,
  34915. type: "volume",
  34916. base: math.unit(1000, "people")
  34917. },
  34918. tongueSize: {
  34919. name: "Tongue Size",
  34920. power: 2,
  34921. type: "area",
  34922. base: math.unit(21, "m^2")
  34923. }
  34924. }
  34925. },
  34926. forepaw: {
  34927. height: math.unit(18, "meters"),
  34928. name: "Forepaw",
  34929. image: {
  34930. source: "./media/characters/raylldo/forepaw.svg"
  34931. }
  34932. },
  34933. hindpaw: {
  34934. height: math.unit(23, "meters"),
  34935. name: "Hindpaw",
  34936. image: {
  34937. source: "./media/characters/raylldo/hindpaw.svg"
  34938. }
  34939. },
  34940. genitals: {
  34941. height: math.unit(42, "meters"),
  34942. name: "Genitals",
  34943. image: {
  34944. source: "./media/characters/raylldo/genitals.svg"
  34945. }
  34946. },
  34947. },
  34948. [
  34949. {
  34950. name: "Normal",
  34951. height: math.unit(47.2, "meters"),
  34952. default: true
  34953. },
  34954. ]
  34955. ))
  34956. characterMakers.push(() => makeCharacter(
  34957. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34958. {
  34959. anthroFront: {
  34960. height: math.unit(9, "feet"),
  34961. weight: math.unit(600, "lb"),
  34962. name: "Anthro (Front)",
  34963. image: {
  34964. source: "./media/characters/glint/anthro-front.svg",
  34965. extra: 1097/1018,
  34966. bottom: 28/1125
  34967. }
  34968. },
  34969. anthroBack: {
  34970. height: math.unit(9, "feet"),
  34971. weight: math.unit(600, "lb"),
  34972. name: "Anthro (Back)",
  34973. image: {
  34974. source: "./media/characters/glint/anthro-back.svg",
  34975. extra: 1154/997,
  34976. bottom: 36/1190
  34977. }
  34978. },
  34979. feral: {
  34980. height: math.unit(11, "feet"),
  34981. weight: math.unit(50000, "lb"),
  34982. name: "Feral",
  34983. image: {
  34984. source: "./media/characters/glint/feral.svg",
  34985. extra: 3035/1585,
  34986. bottom: 1169/4204
  34987. }
  34988. },
  34989. dickAnthro: {
  34990. height: math.unit(0.7, "meters"),
  34991. name: "Dick (Anthro)",
  34992. image: {
  34993. source: "./media/characters/glint/dick-anthro.svg"
  34994. }
  34995. },
  34996. dickFeral: {
  34997. height: math.unit(2.65, "meters"),
  34998. name: "Dick (Feral)",
  34999. image: {
  35000. source: "./media/characters/glint/dick-feral.svg"
  35001. }
  35002. },
  35003. slitHidden: {
  35004. height: math.unit(5.85, "meters"),
  35005. name: "Slit (Hidden)",
  35006. image: {
  35007. source: "./media/characters/glint/slit-hidden.svg"
  35008. }
  35009. },
  35010. slitErect: {
  35011. height: math.unit(5.85, "meters"),
  35012. name: "Slit (Erect)",
  35013. image: {
  35014. source: "./media/characters/glint/slit-erect.svg"
  35015. }
  35016. },
  35017. mawAnthro: {
  35018. height: math.unit(0.63, "meters"),
  35019. name: "Maw (Anthro)",
  35020. image: {
  35021. source: "./media/characters/glint/maw.svg"
  35022. }
  35023. },
  35024. mawFeral: {
  35025. height: math.unit(2.89, "meters"),
  35026. name: "Maw (Feral)",
  35027. image: {
  35028. source: "./media/characters/glint/maw.svg"
  35029. }
  35030. },
  35031. },
  35032. [
  35033. {
  35034. name: "Normal",
  35035. height: math.unit(9, "feet"),
  35036. default: true
  35037. },
  35038. ]
  35039. ))
  35040. characterMakers.push(() => makeCharacter(
  35041. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35042. {
  35043. side: {
  35044. height: math.unit(15, "feet"),
  35045. weight: math.unit(5000, "kg"),
  35046. name: "Side",
  35047. image: {
  35048. source: "./media/characters/kairne/side.svg",
  35049. extra: 979/811,
  35050. bottom: 13/992
  35051. }
  35052. },
  35053. front: {
  35054. height: math.unit(15, "feet"),
  35055. weight: math.unit(5000, "kg"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/kairne/front.svg",
  35059. extra: 908/814,
  35060. bottom: 26/934
  35061. }
  35062. },
  35063. sideNsfw: {
  35064. height: math.unit(15, "feet"),
  35065. weight: math.unit(5000, "kg"),
  35066. name: "Side (NSFW)",
  35067. image: {
  35068. source: "./media/characters/kairne/side-nsfw.svg",
  35069. extra: 979/811,
  35070. bottom: 13/992
  35071. }
  35072. },
  35073. frontNsfw: {
  35074. height: math.unit(15, "feet"),
  35075. weight: math.unit(5000, "kg"),
  35076. name: "Front (NSFW)",
  35077. image: {
  35078. source: "./media/characters/kairne/front-nsfw.svg",
  35079. extra: 908/814,
  35080. bottom: 26/934
  35081. }
  35082. },
  35083. dickCaged: {
  35084. height: math.unit(0.65, "meters"),
  35085. name: "Dick-caged",
  35086. image: {
  35087. source: "./media/characters/kairne/dick-caged.svg"
  35088. }
  35089. },
  35090. dick: {
  35091. height: math.unit(0.79, "meters"),
  35092. name: "Dick",
  35093. image: {
  35094. source: "./media/characters/kairne/dick.svg"
  35095. }
  35096. },
  35097. genitals: {
  35098. height: math.unit(1.29, "meters"),
  35099. name: "Genitals",
  35100. image: {
  35101. source: "./media/characters/kairne/genitals.svg"
  35102. }
  35103. },
  35104. maw: {
  35105. height: math.unit(1.73, "meters"),
  35106. name: "Maw",
  35107. image: {
  35108. source: "./media/characters/kairne/maw.svg"
  35109. }
  35110. },
  35111. },
  35112. [
  35113. {
  35114. name: "Normal",
  35115. height: math.unit(15, "feet"),
  35116. default: true
  35117. },
  35118. ]
  35119. ))
  35120. characterMakers.push(() => makeCharacter(
  35121. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35122. {
  35123. front: {
  35124. height: math.unit(5 + 8/12, "feet"),
  35125. weight: math.unit(139, "lb"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/biscuit-jackal/front.svg",
  35129. extra: 2106/1961,
  35130. bottom: 58/2164
  35131. }
  35132. },
  35133. back: {
  35134. height: math.unit(5 + 8/12, "feet"),
  35135. weight: math.unit(139, "lb"),
  35136. name: "Back",
  35137. image: {
  35138. source: "./media/characters/biscuit-jackal/back.svg",
  35139. extra: 2132/1976,
  35140. bottom: 57/2189
  35141. }
  35142. },
  35143. werejackal: {
  35144. height: math.unit(6 + 3/12, "feet"),
  35145. weight: math.unit(188, "lb"),
  35146. name: "Werejackal",
  35147. image: {
  35148. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35149. extra: 2373/2178,
  35150. bottom: 53/2426
  35151. }
  35152. },
  35153. },
  35154. [
  35155. {
  35156. name: "Normal",
  35157. height: math.unit(5 + 8/12, "feet"),
  35158. default: true
  35159. },
  35160. ]
  35161. ))
  35162. characterMakers.push(() => makeCharacter(
  35163. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35164. {
  35165. front: {
  35166. height: math.unit(140, "cm"),
  35167. weight: math.unit(45, "kg"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/tayra-white/front.svg",
  35171. extra: 2229/2192,
  35172. bottom: 75/2304
  35173. }
  35174. },
  35175. },
  35176. [
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(140, "cm"),
  35180. default: true
  35181. },
  35182. ]
  35183. ))
  35184. characterMakers.push(() => makeCharacter(
  35185. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35186. {
  35187. front: {
  35188. height: math.unit(4 + 5/12, "feet"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/scoop/front.svg",
  35192. extra: 1257/1136,
  35193. bottom: 69/1326
  35194. }
  35195. },
  35196. back: {
  35197. height: math.unit(4 + 5/12, "feet"),
  35198. name: "Back",
  35199. image: {
  35200. source: "./media/characters/scoop/back.svg",
  35201. extra: 1321/1152,
  35202. bottom: 32/1353
  35203. }
  35204. },
  35205. maw: {
  35206. height: math.unit(0.68, "feet"),
  35207. name: "Maw",
  35208. image: {
  35209. source: "./media/characters/scoop/maw.svg"
  35210. }
  35211. },
  35212. },
  35213. [
  35214. {
  35215. name: "Really Small",
  35216. height: math.unit(1, "mm")
  35217. },
  35218. {
  35219. name: "Micro",
  35220. height: math.unit(1, "inch")
  35221. },
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(4 + 5/12, "feet"),
  35225. default: true
  35226. },
  35227. {
  35228. name: "Macro",
  35229. height: math.unit(200, "feet")
  35230. },
  35231. {
  35232. name: "Megamacro",
  35233. height: math.unit(3240, "feet")
  35234. },
  35235. {
  35236. name: "Teramacro",
  35237. height: math.unit(2500, "miles")
  35238. },
  35239. ]
  35240. ))
  35241. characterMakers.push(() => makeCharacter(
  35242. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35243. {
  35244. front: {
  35245. height: math.unit(15 + 7/12, "feet"),
  35246. weight: math.unit(1150, "tons"),
  35247. name: "Front",
  35248. image: {
  35249. source: "./media/characters/saphinara/front.svg",
  35250. extra: 1837/1643,
  35251. bottom: 84/1921
  35252. },
  35253. form: "normal",
  35254. default: true
  35255. },
  35256. side: {
  35257. height: math.unit(15 + 7/12, "feet"),
  35258. weight: math.unit(1150, "tons"),
  35259. name: "Side",
  35260. image: {
  35261. source: "./media/characters/saphinara/side.svg",
  35262. extra: 605/547,
  35263. bottom: 6/611
  35264. },
  35265. form: "normal"
  35266. },
  35267. back: {
  35268. height: math.unit(15 + 7/12, "feet"),
  35269. weight: math.unit(1150, "tons"),
  35270. name: "Back",
  35271. image: {
  35272. source: "./media/characters/saphinara/back.svg",
  35273. extra: 591/531,
  35274. bottom: 13/604
  35275. },
  35276. form: "normal"
  35277. },
  35278. frontTail: {
  35279. height: math.unit(15 + 7/12, "feet"),
  35280. weight: math.unit(1150, "tons"),
  35281. name: "Front (Full Tail)",
  35282. image: {
  35283. source: "./media/characters/saphinara/front-tail.svg",
  35284. extra: 2256/1630,
  35285. bottom: 261/2517
  35286. },
  35287. form: "normal"
  35288. },
  35289. insides: {
  35290. height: math.unit(11.92, "feet"),
  35291. name: "Insides",
  35292. image: {
  35293. source: "./media/characters/saphinara/insides.svg"
  35294. },
  35295. form: "normal"
  35296. },
  35297. head: {
  35298. height: math.unit(4.17, "feet"),
  35299. name: "Head",
  35300. image: {
  35301. source: "./media/characters/saphinara/head.svg"
  35302. },
  35303. form: "normal"
  35304. },
  35305. tongue: {
  35306. height: math.unit(4.60, "feet"),
  35307. name: "Tongue",
  35308. image: {
  35309. source: "./media/characters/saphinara/tongue.svg"
  35310. },
  35311. form: "normal"
  35312. },
  35313. headEnraged: {
  35314. height: math.unit(5.55, "feet"),
  35315. name: "Head (Enraged)",
  35316. image: {
  35317. source: "./media/characters/saphinara/head-enraged.svg"
  35318. },
  35319. form: "normal"
  35320. },
  35321. wings: {
  35322. height: math.unit(11.95, "feet"),
  35323. name: "Wings",
  35324. image: {
  35325. source: "./media/characters/saphinara/wings.svg"
  35326. },
  35327. form: "normal"
  35328. },
  35329. feathers: {
  35330. height: math.unit(8.92, "feet"),
  35331. name: "Feathers",
  35332. image: {
  35333. source: "./media/characters/saphinara/feathers.svg"
  35334. },
  35335. form: "normal"
  35336. },
  35337. shackles: {
  35338. height: math.unit(2, "feet"),
  35339. name: "Shackles",
  35340. image: {
  35341. source: "./media/characters/saphinara/shackles.svg"
  35342. },
  35343. form: "normal"
  35344. },
  35345. eyes: {
  35346. height: math.unit(1.331, "feet"),
  35347. name: "Eyes",
  35348. image: {
  35349. source: "./media/characters/saphinara/eyes.svg"
  35350. },
  35351. form: "normal"
  35352. },
  35353. eyesEnraged: {
  35354. height: math.unit(1.331, "feet"),
  35355. name: "Eyes (Enraged)",
  35356. image: {
  35357. source: "./media/characters/saphinara/eyes-enraged.svg"
  35358. },
  35359. form: "normal"
  35360. },
  35361. trueFormSide: {
  35362. height: math.unit(200, "feet"),
  35363. weight: math.unit(1e7, "tons"),
  35364. name: "Side",
  35365. image: {
  35366. source: "./media/characters/saphinara/true-form-side.svg",
  35367. extra: 1399/770,
  35368. bottom: 97/1496
  35369. },
  35370. form: "true-form",
  35371. default: true
  35372. },
  35373. trueFormMaw: {
  35374. height: math.unit(71.5, "feet"),
  35375. name: "Maw",
  35376. image: {
  35377. source: "./media/characters/saphinara/true-form-maw.svg",
  35378. extra: 2302/1453,
  35379. bottom: 0/2302
  35380. },
  35381. form: "true-form"
  35382. },
  35383. meowberusSide: {
  35384. height: math.unit(75, "feet"),
  35385. weight: math.unit(180000, "kg"),
  35386. preyCapacity: math.unit(50000, "people"),
  35387. name: "Side",
  35388. image: {
  35389. source: "./media/characters/saphinara/meowberus-side.svg",
  35390. extra: 1400/711,
  35391. bottom: 126/1526
  35392. },
  35393. form: "meowberus",
  35394. extraAttributes: {
  35395. "pawArea": {
  35396. name: "Paw Size",
  35397. power: 2,
  35398. type: "area",
  35399. base: math.unit(35, "m^2")
  35400. }
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Normal",
  35407. height: math.unit(15 + 7/12, "feet"),
  35408. default: true,
  35409. form: "normal"
  35410. },
  35411. {
  35412. name: "Angry",
  35413. height: math.unit(30 + 6/12, "feet"),
  35414. form: "normal"
  35415. },
  35416. {
  35417. name: "Enraged",
  35418. height: math.unit(102 + 1/12, "feet"),
  35419. form: "normal"
  35420. },
  35421. {
  35422. name: "True",
  35423. height: math.unit(200, "feet"),
  35424. default: true,
  35425. form: "true-form"
  35426. },
  35427. {
  35428. name: "Normal",
  35429. height: math.unit(75, "feet"),
  35430. default: true,
  35431. form: "meowberus"
  35432. },
  35433. ],
  35434. {
  35435. "normal": {
  35436. name: "Normal",
  35437. default: true
  35438. },
  35439. "true-form": {
  35440. name: "True Form"
  35441. },
  35442. "meowberus": {
  35443. name: "Meowberus",
  35444. },
  35445. }
  35446. ))
  35447. characterMakers.push(() => makeCharacter(
  35448. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35449. {
  35450. front: {
  35451. height: math.unit(6 + 8/12, "feet"),
  35452. weight: math.unit(300, "lb"),
  35453. name: "Front",
  35454. image: {
  35455. source: "./media/characters/jrain/front.svg",
  35456. extra: 3039/2865,
  35457. bottom: 399/3438
  35458. }
  35459. },
  35460. back: {
  35461. height: math.unit(6 + 8/12, "feet"),
  35462. weight: math.unit(300, "lb"),
  35463. name: "Back",
  35464. image: {
  35465. source: "./media/characters/jrain/back.svg",
  35466. extra: 3089/2938,
  35467. bottom: 172/3261
  35468. }
  35469. },
  35470. head: {
  35471. height: math.unit(2.14, "feet"),
  35472. name: "Head",
  35473. image: {
  35474. source: "./media/characters/jrain/head.svg"
  35475. }
  35476. },
  35477. maw: {
  35478. height: math.unit(1.77, "feet"),
  35479. name: "Maw",
  35480. image: {
  35481. source: "./media/characters/jrain/maw.svg"
  35482. }
  35483. },
  35484. leftHand: {
  35485. height: math.unit(1.1, "feet"),
  35486. name: "Left Hand",
  35487. image: {
  35488. source: "./media/characters/jrain/left-hand.svg"
  35489. }
  35490. },
  35491. rightHand: {
  35492. height: math.unit(1.1, "feet"),
  35493. name: "Right Hand",
  35494. image: {
  35495. source: "./media/characters/jrain/right-hand.svg"
  35496. }
  35497. },
  35498. eye: {
  35499. height: math.unit(0.35, "feet"),
  35500. name: "Eye",
  35501. image: {
  35502. source: "./media/characters/jrain/eye.svg"
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(6 + 8/12, "feet"),
  35510. default: true
  35511. },
  35512. {
  35513. name: "Casually Large",
  35514. height: math.unit(25, "feet")
  35515. },
  35516. {
  35517. name: "Giant",
  35518. height: math.unit(100, "feet")
  35519. },
  35520. {
  35521. name: "Kaiju",
  35522. height: math.unit(300, "feet")
  35523. },
  35524. ]
  35525. ))
  35526. characterMakers.push(() => makeCharacter(
  35527. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35528. {
  35529. dragon: {
  35530. height: math.unit(5, "meters"),
  35531. name: "Dragon",
  35532. image: {
  35533. source: "./media/characters/sabrina/dragon.svg",
  35534. extra: 3670 / 2365,
  35535. bottom: 333 / 4003
  35536. }
  35537. },
  35538. gryphon: {
  35539. height: math.unit(3, "meters"),
  35540. name: "Gryphon",
  35541. image: {
  35542. source: "./media/characters/sabrina/gryphon.svg",
  35543. extra: 1576 / 945,
  35544. bottom: 71 / 1647
  35545. }
  35546. },
  35547. snake: {
  35548. height: math.unit(12, "meters"),
  35549. name: "Snake",
  35550. image: {
  35551. source: "./media/characters/sabrina/snake.svg",
  35552. extra: 1758 / 1320,
  35553. bottom: 186 / 1944
  35554. }
  35555. },
  35556. collar: {
  35557. height: math.unit(1.86, "meters"),
  35558. name: "Collar",
  35559. image: {
  35560. source: "./media/characters/sabrina/collar.svg"
  35561. }
  35562. },
  35563. eye: {
  35564. height: math.unit(0.53, "meters"),
  35565. name: "Eye",
  35566. image: {
  35567. source: "./media/characters/sabrina/eye.svg"
  35568. }
  35569. },
  35570. foot: {
  35571. height: math.unit(1.86, "meters"),
  35572. name: "Foot",
  35573. image: {
  35574. source: "./media/characters/sabrina/foot.svg"
  35575. }
  35576. },
  35577. hand: {
  35578. height: math.unit(1.32, "meters"),
  35579. name: "Hand",
  35580. image: {
  35581. source: "./media/characters/sabrina/hand.svg"
  35582. }
  35583. },
  35584. head: {
  35585. height: math.unit(2.44, "meters"),
  35586. name: "Head",
  35587. image: {
  35588. source: "./media/characters/sabrina/head.svg"
  35589. }
  35590. },
  35591. headAngry: {
  35592. height: math.unit(2.44, "meters"),
  35593. name: "Head (Angry))",
  35594. image: {
  35595. source: "./media/characters/sabrina/head-angry.svg"
  35596. }
  35597. },
  35598. maw: {
  35599. height: math.unit(1.65, "meters"),
  35600. name: "Maw",
  35601. image: {
  35602. source: "./media/characters/sabrina/maw.svg"
  35603. }
  35604. },
  35605. spikes: {
  35606. height: math.unit(1.69, "meters"),
  35607. name: "Spikes",
  35608. image: {
  35609. source: "./media/characters/sabrina/spikes.svg"
  35610. }
  35611. },
  35612. stomach: {
  35613. height: math.unit(1.15, "meters"),
  35614. name: "Stomach",
  35615. image: {
  35616. source: "./media/characters/sabrina/stomach.svg"
  35617. }
  35618. },
  35619. tongue: {
  35620. height: math.unit(1.27, "meters"),
  35621. name: "Tongue",
  35622. image: {
  35623. source: "./media/characters/sabrina/tongue.svg"
  35624. }
  35625. },
  35626. wingDorsal: {
  35627. height: math.unit(4.85, "meters"),
  35628. name: "Wing (Dorsal)",
  35629. image: {
  35630. source: "./media/characters/sabrina/wing-dorsal.svg"
  35631. }
  35632. },
  35633. wingVentral: {
  35634. height: math.unit(4.85, "meters"),
  35635. name: "Wing (Ventral)",
  35636. image: {
  35637. source: "./media/characters/sabrina/wing-ventral.svg"
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Normal",
  35644. height: math.unit(5, "meters"),
  35645. default: true
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35651. {
  35652. frontMaid: {
  35653. height: math.unit(5 + 5/12, "feet"),
  35654. weight: math.unit(130, "lb"),
  35655. name: "Front (Maid)",
  35656. image: {
  35657. source: "./media/characters/midnight-tales/front-maid.svg",
  35658. extra: 489/454,
  35659. bottom: 61/550
  35660. }
  35661. },
  35662. frontFormal: {
  35663. height: math.unit(5 + 5/12, "feet"),
  35664. weight: math.unit(130, "lb"),
  35665. name: "Front (Formal)",
  35666. image: {
  35667. source: "./media/characters/midnight-tales/front-formal.svg",
  35668. extra: 489/454,
  35669. bottom: 61/550
  35670. }
  35671. },
  35672. back: {
  35673. height: math.unit(5 + 5/12, "feet"),
  35674. weight: math.unit(130, "lb"),
  35675. name: "Back",
  35676. image: {
  35677. source: "./media/characters/midnight-tales/back.svg",
  35678. extra: 498/456,
  35679. bottom: 33/531
  35680. }
  35681. },
  35682. frontBeast: {
  35683. height: math.unit(40, "feet"),
  35684. weight: math.unit(64000, "lb"),
  35685. name: "Front (Beast)",
  35686. image: {
  35687. source: "./media/characters/midnight-tales/front-beast.svg",
  35688. extra: 927/860,
  35689. bottom: 53/980
  35690. }
  35691. },
  35692. backBeast: {
  35693. height: math.unit(40, "feet"),
  35694. weight: math.unit(64000, "lb"),
  35695. name: "Back (Beast)",
  35696. image: {
  35697. source: "./media/characters/midnight-tales/back-beast.svg",
  35698. extra: 929/855,
  35699. bottom: 16/945
  35700. }
  35701. },
  35702. footBeast: {
  35703. height: math.unit(6.7, "feet"),
  35704. name: "Foot (Beast)",
  35705. image: {
  35706. source: "./media/characters/midnight-tales/foot-beast.svg"
  35707. }
  35708. },
  35709. headBeast: {
  35710. height: math.unit(8, "feet"),
  35711. name: "Head (Beast)",
  35712. image: {
  35713. source: "./media/characters/midnight-tales/head-beast.svg"
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Normal",
  35720. height: math.unit(5 + 5 / 12, "feet"),
  35721. default: true
  35722. },
  35723. {
  35724. name: "Macro",
  35725. height: math.unit(25, "feet")
  35726. },
  35727. ]
  35728. ))
  35729. characterMakers.push(() => makeCharacter(
  35730. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35731. {
  35732. front: {
  35733. height: math.unit(5 + 10/12, "feet"),
  35734. name: "Front",
  35735. image: {
  35736. source: "./media/characters/argon/front.svg",
  35737. extra: 2009/1935,
  35738. bottom: 118/2127
  35739. }
  35740. },
  35741. back: {
  35742. height: math.unit(5 + 10/12, "feet"),
  35743. name: "Back",
  35744. image: {
  35745. source: "./media/characters/argon/back.svg",
  35746. extra: 2047/1992,
  35747. bottom: 20/2067
  35748. }
  35749. },
  35750. frontDressed: {
  35751. height: math.unit(5 + 10/12, "feet"),
  35752. name: "Front (Dressed)",
  35753. image: {
  35754. source: "./media/characters/argon/front-dressed.svg",
  35755. extra: 2009/1935,
  35756. bottom: 118/2127
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal",
  35763. height: math.unit(5 + 10/12, "feet"),
  35764. default: true
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(8 + 6/12, "feet"),
  35773. weight: math.unit(1150, "lb"),
  35774. name: "Front",
  35775. image: {
  35776. source: "./media/characters/kichi/front.svg",
  35777. extra: 1267/1164,
  35778. bottom: 61/1328
  35779. }
  35780. },
  35781. back: {
  35782. height: math.unit(8 + 6/12, "feet"),
  35783. weight: math.unit(1150, "lb"),
  35784. name: "Back",
  35785. image: {
  35786. source: "./media/characters/kichi/back.svg",
  35787. extra: 1273/1166,
  35788. bottom: 33/1306
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(8 + 6/12, "feet"),
  35796. default: true
  35797. },
  35798. ]
  35799. ))
  35800. characterMakers.push(() => makeCharacter(
  35801. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35802. {
  35803. front: {
  35804. height: math.unit(6, "feet"),
  35805. weight: math.unit(210, "lb"),
  35806. name: "Front",
  35807. image: {
  35808. source: "./media/characters/manetel-greyscale/front.svg",
  35809. extra: 350/312,
  35810. bottom: 8/358
  35811. }
  35812. },
  35813. },
  35814. [
  35815. {
  35816. name: "Micro",
  35817. height: math.unit(2, "inches")
  35818. },
  35819. {
  35820. name: "Normal",
  35821. height: math.unit(6, "feet"),
  35822. default: true
  35823. },
  35824. {
  35825. name: "Minimacro",
  35826. height: math.unit(17, "feet")
  35827. },
  35828. {
  35829. name: "Macro",
  35830. height: math.unit(117, "feet")
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35836. {
  35837. side: {
  35838. height: math.unit(5 + 1/12, "feet"),
  35839. weight: math.unit(418, "lb"),
  35840. name: "Side",
  35841. image: {
  35842. source: "./media/characters/softpurr/side.svg",
  35843. extra: 1993/1945,
  35844. bottom: 134/2127
  35845. }
  35846. },
  35847. front: {
  35848. height: math.unit(5 + 1/12, "feet"),
  35849. weight: math.unit(418, "lb"),
  35850. name: "Front",
  35851. image: {
  35852. source: "./media/characters/softpurr/front.svg",
  35853. extra: 1950/1856,
  35854. bottom: 174/2124
  35855. }
  35856. },
  35857. paw: {
  35858. height: math.unit(1, "feet"),
  35859. name: "Paw",
  35860. image: {
  35861. source: "./media/characters/softpurr/paw.svg"
  35862. }
  35863. },
  35864. },
  35865. [
  35866. {
  35867. name: "Normal",
  35868. height: math.unit(5 + 1/12, "feet"),
  35869. default: true
  35870. },
  35871. ]
  35872. ))
  35873. characterMakers.push(() => makeCharacter(
  35874. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35875. {
  35876. front: {
  35877. height: math.unit(260, "meters"),
  35878. name: "Front",
  35879. image: {
  35880. source: "./media/characters/anahita/front.svg",
  35881. extra: 665/635,
  35882. bottom: 89/754
  35883. }
  35884. },
  35885. },
  35886. [
  35887. {
  35888. name: "Macro",
  35889. height: math.unit(260, "meters"),
  35890. default: true
  35891. },
  35892. ]
  35893. ))
  35894. characterMakers.push(() => makeCharacter(
  35895. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35896. {
  35897. front: {
  35898. height: math.unit(4 + 10/12, "feet"),
  35899. weight: math.unit(160, "lb"),
  35900. name: "Front",
  35901. image: {
  35902. source: "./media/characters/chip-mouse/front.svg",
  35903. extra: 3528/3408,
  35904. bottom: 0/3528
  35905. }
  35906. },
  35907. frontNsfw: {
  35908. height: math.unit(4 + 10/12, "feet"),
  35909. weight: math.unit(160, "lb"),
  35910. name: "Front (NSFW)",
  35911. image: {
  35912. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35913. extra: 3528/3408,
  35914. bottom: 0/3528
  35915. }
  35916. },
  35917. },
  35918. [
  35919. {
  35920. name: "Normal",
  35921. height: math.unit(4 + 10/12, "feet"),
  35922. default: true
  35923. },
  35924. ]
  35925. ))
  35926. characterMakers.push(() => makeCharacter(
  35927. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35928. {
  35929. side: {
  35930. height: math.unit(10, "feet"),
  35931. weight: math.unit(14000, "lb"),
  35932. name: "Side",
  35933. image: {
  35934. source: "./media/characters/kremm/side.svg",
  35935. extra: 1390/1053,
  35936. bottom: 90/1480
  35937. }
  35938. },
  35939. gut: {
  35940. height: math.unit(5.8, "feet"),
  35941. name: "Gut",
  35942. image: {
  35943. source: "./media/characters/kremm/gut.svg"
  35944. }
  35945. },
  35946. ass: {
  35947. height: math.unit(6.1, "feet"),
  35948. name: "Ass",
  35949. image: {
  35950. source: "./media/characters/kremm/ass.svg"
  35951. }
  35952. },
  35953. jaws: {
  35954. height: math.unit(2.2, "feet"),
  35955. name: "Jaws",
  35956. image: {
  35957. source: "./media/characters/kremm/jaws.svg"
  35958. }
  35959. },
  35960. dick: {
  35961. height: math.unit(4.26, "feet"),
  35962. name: "Dick",
  35963. image: {
  35964. source: "./media/characters/kremm/dick.svg"
  35965. }
  35966. },
  35967. },
  35968. [
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(10, "feet"),
  35972. default: true
  35973. },
  35974. ]
  35975. ))
  35976. characterMakers.push(() => makeCharacter(
  35977. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35978. {
  35979. front: {
  35980. height: math.unit(30, "stories"),
  35981. name: "Front",
  35982. image: {
  35983. source: "./media/characters/kai/front.svg",
  35984. extra: 1892/1718,
  35985. bottom: 162/2054
  35986. }
  35987. },
  35988. },
  35989. [
  35990. {
  35991. name: "Macro",
  35992. height: math.unit(30, "stories"),
  35993. default: true
  35994. },
  35995. ]
  35996. ))
  35997. characterMakers.push(() => makeCharacter(
  35998. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35999. {
  36000. front: {
  36001. height: math.unit(6 + 4/12, "feet"),
  36002. weight: math.unit(145, "lb"),
  36003. name: "Front",
  36004. image: {
  36005. source: "./media/characters/sykes/front.svg",
  36006. extra: 1321 / 1187,
  36007. bottom: 66 / 1387
  36008. }
  36009. },
  36010. back: {
  36011. height: math.unit(6 + 4/12, "feet"),
  36012. weight: math.unit(145, "lb"),
  36013. name: "Back",
  36014. image: {
  36015. source: "./media/characters/sykes/back.svg",
  36016. extra: 1326/1181,
  36017. bottom: 31/1357
  36018. }
  36019. },
  36020. traditionalOutfit: {
  36021. height: math.unit(6 + 4/12, "feet"),
  36022. weight: math.unit(145, "lb"),
  36023. name: "Traditional Outfit",
  36024. image: {
  36025. source: "./media/characters/sykes/traditional-outfit.svg",
  36026. extra: 1321 / 1187,
  36027. bottom: 66 / 1387
  36028. }
  36029. },
  36030. adventureOutfit: {
  36031. height: math.unit(6 + 4/12, "feet"),
  36032. weight: math.unit(145, "lb"),
  36033. name: "Adventure Outfit",
  36034. image: {
  36035. source: "./media/characters/sykes/adventure-outfit.svg",
  36036. extra: 1321 / 1187,
  36037. bottom: 66 / 1387
  36038. }
  36039. },
  36040. handLeft: {
  36041. height: math.unit(0.9, "feet"),
  36042. name: "Hand (Left)",
  36043. image: {
  36044. source: "./media/characters/sykes/hand-left.svg"
  36045. }
  36046. },
  36047. handRight: {
  36048. height: math.unit(0.839, "feet"),
  36049. name: "Hand (Right)",
  36050. image: {
  36051. source: "./media/characters/sykes/hand-right.svg"
  36052. }
  36053. },
  36054. leftFoot: {
  36055. height: math.unit(1.2, "feet"),
  36056. name: "Foot (Left)",
  36057. image: {
  36058. source: "./media/characters/sykes/foot-left.svg"
  36059. }
  36060. },
  36061. rightFoot: {
  36062. height: math.unit(1.2, "feet"),
  36063. name: "Foot (Right)",
  36064. image: {
  36065. source: "./media/characters/sykes/foot-right.svg"
  36066. }
  36067. },
  36068. maw: {
  36069. height: math.unit(1.93, "feet"),
  36070. name: "Maw",
  36071. image: {
  36072. source: "./media/characters/sykes/maw.svg"
  36073. }
  36074. },
  36075. teeth: {
  36076. height: math.unit(0.51, "feet"),
  36077. name: "Teeth",
  36078. image: {
  36079. source: "./media/characters/sykes/teeth.svg"
  36080. }
  36081. },
  36082. tongue: {
  36083. height: math.unit(2.13, "feet"),
  36084. name: "Tongue",
  36085. image: {
  36086. source: "./media/characters/sykes/tongue.svg"
  36087. }
  36088. },
  36089. uvula: {
  36090. height: math.unit(0.16, "feet"),
  36091. name: "Uvula",
  36092. image: {
  36093. source: "./media/characters/sykes/uvula.svg"
  36094. }
  36095. },
  36096. collar: {
  36097. height: math.unit(0.287, "feet"),
  36098. name: "Collar",
  36099. image: {
  36100. source: "./media/characters/sykes/collar.svg"
  36101. }
  36102. },
  36103. tail: {
  36104. height: math.unit(3.8, "feet"),
  36105. name: "Tail",
  36106. image: {
  36107. source: "./media/characters/sykes/tail.svg"
  36108. }
  36109. },
  36110. },
  36111. [
  36112. {
  36113. name: "Shrunken",
  36114. height: math.unit(5, "inches")
  36115. },
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(6 + 4 / 12, "feet"),
  36119. default: true
  36120. },
  36121. {
  36122. name: "Big",
  36123. height: math.unit(15, "feet")
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(5 + 8/12, "feet"),
  36132. weight: math.unit(190, "lb"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/oven-otter/front.svg",
  36136. extra: 1809/1740,
  36137. bottom: 181/1990
  36138. }
  36139. },
  36140. back: {
  36141. height: math.unit(5 + 8/12, "feet"),
  36142. weight: math.unit(190, "lb"),
  36143. name: "Back",
  36144. image: {
  36145. source: "./media/characters/oven-otter/back.svg",
  36146. extra: 1709/1635,
  36147. bottom: 118/1827
  36148. }
  36149. },
  36150. hand: {
  36151. height: math.unit(1.07, "feet"),
  36152. name: "Hand",
  36153. image: {
  36154. source: "./media/characters/oven-otter/hand.svg"
  36155. }
  36156. },
  36157. beans: {
  36158. height: math.unit(1.74, "feet"),
  36159. name: "Beans",
  36160. image: {
  36161. source: "./media/characters/oven-otter/beans.svg"
  36162. }
  36163. },
  36164. },
  36165. [
  36166. {
  36167. name: "Micro",
  36168. height: math.unit(0.5, "inches")
  36169. },
  36170. {
  36171. name: "Normal",
  36172. height: math.unit(5 + 8/12, "feet"),
  36173. default: true
  36174. },
  36175. {
  36176. name: "Macro",
  36177. height: math.unit(250, "feet")
  36178. },
  36179. {
  36180. name: "Really High",
  36181. height: math.unit(420, "feet")
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(5, "meters"),
  36190. weight: math.unit(292000000000000, "kg"),
  36191. name: "Front",
  36192. image: {
  36193. source: "./media/characters/devourer/front.svg",
  36194. extra: 1800/1733,
  36195. bottom: 211/2011
  36196. }
  36197. },
  36198. maw: {
  36199. height: math.unit(1.1, "meter"),
  36200. name: "Maw",
  36201. image: {
  36202. source: "./media/characters/devourer/maw.svg"
  36203. }
  36204. },
  36205. },
  36206. [
  36207. {
  36208. name: "Small",
  36209. height: math.unit(3, "meters")
  36210. },
  36211. {
  36212. name: "Large",
  36213. height: math.unit(5, "meters"),
  36214. default: true
  36215. },
  36216. ]
  36217. ))
  36218. characterMakers.push(() => makeCharacter(
  36219. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36220. {
  36221. front: {
  36222. height: math.unit(6, "feet"),
  36223. weight: math.unit(400, "lb"),
  36224. name: "Front",
  36225. image: {
  36226. source: "./media/characters/ellarby/front.svg",
  36227. extra: 1909/1763,
  36228. bottom: 80/1989
  36229. }
  36230. },
  36231. back: {
  36232. height: math.unit(6, "feet"),
  36233. weight: math.unit(400, "lb"),
  36234. name: "Back",
  36235. image: {
  36236. source: "./media/characters/ellarby/back.svg",
  36237. extra: 1914/1784,
  36238. bottom: 172/2086
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Mischief",
  36245. height: math.unit(18, "inches")
  36246. },
  36247. {
  36248. name: "Trouble",
  36249. height: math.unit(12, "feet")
  36250. },
  36251. {
  36252. name: "Havoc",
  36253. height: math.unit(200, "feet"),
  36254. default: true
  36255. },
  36256. {
  36257. name: "Pandemonium",
  36258. height: math.unit(1, "mile")
  36259. },
  36260. {
  36261. name: "Catastrophe",
  36262. height: math.unit(100, "miles")
  36263. },
  36264. ]
  36265. ))
  36266. characterMakers.push(() => makeCharacter(
  36267. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36268. {
  36269. front: {
  36270. height: math.unit(4.7, "meters"),
  36271. weight: math.unit(6500, "kg"),
  36272. name: "Front",
  36273. image: {
  36274. source: "./media/characters/vex/front.svg",
  36275. extra: 1288/1140,
  36276. bottom: 100/1388
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(4.7, "meters"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36290. {
  36291. normal: {
  36292. height: math.unit(6, "feet"),
  36293. weight: math.unit(350, "lb"),
  36294. name: "Normal",
  36295. image: {
  36296. source: "./media/characters/teshy/normal.svg",
  36297. extra: 1795/1735,
  36298. bottom: 16/1811
  36299. }
  36300. },
  36301. monsterFront: {
  36302. height: math.unit(12, "feet"),
  36303. weight: math.unit(4700, "lb"),
  36304. name: "Monster (Front)",
  36305. image: {
  36306. source: "./media/characters/teshy/monster-front.svg",
  36307. extra: 2042/2034,
  36308. bottom: 128/2170
  36309. }
  36310. },
  36311. monsterSide: {
  36312. height: math.unit(12, "feet"),
  36313. weight: math.unit(4700, "lb"),
  36314. name: "Monster (Side)",
  36315. image: {
  36316. source: "./media/characters/teshy/monster-side.svg",
  36317. extra: 2067/2056,
  36318. bottom: 70/2137
  36319. }
  36320. },
  36321. monsterBack: {
  36322. height: math.unit(12, "feet"),
  36323. weight: math.unit(4700, "lb"),
  36324. name: "Monster (Back)",
  36325. image: {
  36326. source: "./media/characters/teshy/monster-back.svg",
  36327. extra: 1921/1914,
  36328. bottom: 171/2092
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(6, "feet"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36342. {
  36343. front: {
  36344. height: math.unit(6, "feet"),
  36345. name: "Front",
  36346. image: {
  36347. source: "./media/characters/ramey/front.svg",
  36348. extra: 790/787,
  36349. bottom: 27/817
  36350. }
  36351. },
  36352. },
  36353. [
  36354. {
  36355. name: "Normal",
  36356. height: math.unit(6, "feet"),
  36357. default: true
  36358. },
  36359. ]
  36360. ))
  36361. characterMakers.push(() => makeCharacter(
  36362. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36363. {
  36364. front: {
  36365. height: math.unit(5 + 5/12, "feet"),
  36366. weight: math.unit(120, "lb"),
  36367. name: "Front",
  36368. image: {
  36369. source: "./media/characters/phirae/front.svg",
  36370. extra: 2491/2436,
  36371. bottom: 38/2529
  36372. }
  36373. },
  36374. },
  36375. [
  36376. {
  36377. name: "Normal",
  36378. height: math.unit(5 + 5/12, "feet"),
  36379. default: true
  36380. },
  36381. ]
  36382. ))
  36383. characterMakers.push(() => makeCharacter(
  36384. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36385. {
  36386. front: {
  36387. height: math.unit(5 + 3/12, "feet"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/stagglas/front.svg",
  36391. extra: 962/882,
  36392. bottom: 53/1015
  36393. }
  36394. },
  36395. feral: {
  36396. height: math.unit(335, "cm"),
  36397. name: "Feral",
  36398. image: {
  36399. source: "./media/characters/stagglas/feral.svg",
  36400. extra: 1732/1090,
  36401. bottom: 48/1780
  36402. }
  36403. },
  36404. },
  36405. [
  36406. {
  36407. name: "Normal",
  36408. height: math.unit(5 + 3/12, "feet"),
  36409. default: true
  36410. },
  36411. ]
  36412. ))
  36413. characterMakers.push(() => makeCharacter(
  36414. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36415. {
  36416. front: {
  36417. height: math.unit(5 + 4/12, "feet"),
  36418. weight: math.unit(145, "lb"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/starra/front.svg",
  36422. extra: 1790/1691,
  36423. bottom: 91/1881
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Normal",
  36430. height: math.unit(5 + 4/12, "feet"),
  36431. default: true
  36432. },
  36433. ]
  36434. ))
  36435. characterMakers.push(() => makeCharacter(
  36436. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36437. {
  36438. front: {
  36439. height: math.unit(2.2, "meters"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36443. extra: 1248/972,
  36444. bottom: 38/1286
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(2.2, "meters"),
  36452. default: true
  36453. },
  36454. ]
  36455. ))
  36456. characterMakers.push(() => makeCharacter(
  36457. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36458. {
  36459. side: {
  36460. height: math.unit(8 + 2/12, "feet"),
  36461. weight: math.unit(1240, "lb"),
  36462. name: "Side",
  36463. image: {
  36464. source: "./media/characters/mika-valentine/side.svg",
  36465. extra: 2670/2501,
  36466. bottom: 250/2920
  36467. }
  36468. },
  36469. },
  36470. [
  36471. {
  36472. name: "Normal",
  36473. height: math.unit(8 + 2/12, "feet"),
  36474. default: true
  36475. },
  36476. ]
  36477. ))
  36478. characterMakers.push(() => makeCharacter(
  36479. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36480. {
  36481. front: {
  36482. height: math.unit(7 + 2/12, "feet"),
  36483. name: "Front",
  36484. image: {
  36485. source: "./media/characters/xoltol/front.svg",
  36486. extra: 2212/2124,
  36487. bottom: 84/2296
  36488. }
  36489. },
  36490. side: {
  36491. height: math.unit(7 + 2/12, "feet"),
  36492. name: "Side",
  36493. image: {
  36494. source: "./media/characters/xoltol/side.svg",
  36495. extra: 2273/2197,
  36496. bottom: 26/2299
  36497. }
  36498. },
  36499. hand: {
  36500. height: math.unit(2.5, "feet"),
  36501. name: "Hand",
  36502. image: {
  36503. source: "./media/characters/xoltol/hand.svg"
  36504. }
  36505. },
  36506. },
  36507. [
  36508. {
  36509. name: "Small-ish",
  36510. height: math.unit(5 + 11/12, "feet")
  36511. },
  36512. {
  36513. name: "Normal",
  36514. height: math.unit(7 + 2/12, "feet")
  36515. },
  36516. {
  36517. name: "\"Macro\"",
  36518. height: math.unit(14 + 9/12, "feet"),
  36519. default: true
  36520. },
  36521. {
  36522. name: "Alternate Height",
  36523. height: math.unit(20, "feet")
  36524. },
  36525. {
  36526. name: "Actually Macro",
  36527. height: math.unit(100, "feet")
  36528. },
  36529. ]
  36530. ))
  36531. characterMakers.push(() => makeCharacter(
  36532. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36533. {
  36534. front: {
  36535. height: math.unit(5 + 2/12, "feet"),
  36536. name: "Front",
  36537. image: {
  36538. source: "./media/characters/kotetsu-redwood/front.svg",
  36539. extra: 1053/942,
  36540. bottom: 60/1113
  36541. }
  36542. },
  36543. },
  36544. [
  36545. {
  36546. name: "Normal",
  36547. height: math.unit(5 + 2/12, "feet"),
  36548. default: true
  36549. },
  36550. ]
  36551. ))
  36552. characterMakers.push(() => makeCharacter(
  36553. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36554. {
  36555. front: {
  36556. height: math.unit(2.4, "meters"),
  36557. weight: math.unit(125, "kg"),
  36558. name: "Front",
  36559. image: {
  36560. source: "./media/characters/lilith/front.svg",
  36561. extra: 1590/1513,
  36562. bottom: 203/1793
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Humanoid",
  36569. height: math.unit(2.4, "meters")
  36570. },
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(6, "meters"),
  36574. default: true
  36575. },
  36576. {
  36577. name: "Largest",
  36578. height: math.unit(55, "meters")
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(8 + 4/12, "feet"),
  36587. weight: math.unit(535, "lb"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/beh'kah-bolger/front.svg",
  36591. extra: 1660/1603,
  36592. bottom: 37/1697
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(8 + 4/12, "feet"),
  36600. default: true
  36601. },
  36602. {
  36603. name: "Kaiju",
  36604. height: math.unit(250, "feet")
  36605. },
  36606. {
  36607. name: "Still Growing",
  36608. height: math.unit(10, "miles")
  36609. },
  36610. {
  36611. name: "Continental",
  36612. height: math.unit(5000, "miles")
  36613. },
  36614. {
  36615. name: "Final Form",
  36616. height: math.unit(2500000, "miles")
  36617. },
  36618. ]
  36619. ))
  36620. characterMakers.push(() => makeCharacter(
  36621. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36622. {
  36623. front: {
  36624. height: math.unit(7 + 2/12, "feet"),
  36625. weight: math.unit(230, "kg"),
  36626. name: "Front",
  36627. image: {
  36628. source: "./media/characters/tatyana-milewska/front.svg",
  36629. extra: 1199/1150,
  36630. bottom: 86/1285
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(7 + 2/12, "feet"),
  36638. default: true
  36639. },
  36640. {
  36641. name: "Big",
  36642. height: math.unit(12, "feet")
  36643. },
  36644. {
  36645. name: "Minimacro",
  36646. height: math.unit(20, "feet")
  36647. },
  36648. {
  36649. name: "Macro",
  36650. height: math.unit(120, "feet")
  36651. },
  36652. ]
  36653. ))
  36654. characterMakers.push(() => makeCharacter(
  36655. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36656. {
  36657. front: {
  36658. height: math.unit(7 + 8/12, "feet"),
  36659. weight: math.unit(152, "kg"),
  36660. name: "Front",
  36661. image: {
  36662. source: "./media/characters/helen-arri/front.svg",
  36663. extra: 440/423,
  36664. bottom: 14/454
  36665. }
  36666. },
  36667. back: {
  36668. height: math.unit(7 + 8/12, "feet"),
  36669. weight: math.unit(152, "kg"),
  36670. name: "Back",
  36671. image: {
  36672. source: "./media/characters/helen-arri/back.svg",
  36673. extra: 443/426,
  36674. bottom: 8/451
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(7 + 8/12, "feet"),
  36682. default: true
  36683. },
  36684. {
  36685. name: "Big",
  36686. height: math.unit(14, "feet")
  36687. },
  36688. {
  36689. name: "Minimacro",
  36690. height: math.unit(24, "feet")
  36691. },
  36692. {
  36693. name: "Macro",
  36694. height: math.unit(140, "feet")
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36700. {
  36701. front: {
  36702. height: math.unit(6, "meters"),
  36703. name: "Front",
  36704. image: {
  36705. source: "./media/characters/ehanu-rehu/front.svg",
  36706. extra: 1800/1800,
  36707. bottom: 59/1859
  36708. }
  36709. },
  36710. },
  36711. [
  36712. {
  36713. name: "Normal",
  36714. height: math.unit(6, "meters"),
  36715. default: true
  36716. },
  36717. ]
  36718. ))
  36719. characterMakers.push(() => makeCharacter(
  36720. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36721. {
  36722. front: {
  36723. height: math.unit(7 + 3/12, "feet"),
  36724. name: "Front",
  36725. image: {
  36726. source: "./media/characters/renholder/front.svg",
  36727. extra: 3096/2960,
  36728. bottom: 250/3346
  36729. }
  36730. },
  36731. },
  36732. [
  36733. {
  36734. name: "Normal Bat",
  36735. height: math.unit(7 + 3/12, "feet"),
  36736. default: true
  36737. },
  36738. {
  36739. name: "Slightly Tall Bat",
  36740. height: math.unit(100, "feet")
  36741. },
  36742. {
  36743. name: "Big Bat",
  36744. height: math.unit(1000, "feet")
  36745. },
  36746. {
  36747. name: "City-Sized Bat",
  36748. height: math.unit(200000, "feet")
  36749. },
  36750. {
  36751. name: "Bigger Bat",
  36752. height: math.unit(10000, "miles")
  36753. },
  36754. {
  36755. name: "Solar Sized Bat",
  36756. height: math.unit(100, "AU")
  36757. },
  36758. {
  36759. name: "Galactic Bat",
  36760. height: math.unit(200000, "lightyears")
  36761. },
  36762. {
  36763. name: "Universally Known Bat",
  36764. height: math.unit(1, "universe")
  36765. },
  36766. ]
  36767. ))
  36768. characterMakers.push(() => makeCharacter(
  36769. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36770. {
  36771. front: {
  36772. height: math.unit(6 + 11/12, "feet"),
  36773. weight: math.unit(250, "lb"),
  36774. name: "Front",
  36775. image: {
  36776. source: "./media/characters/cookiecat/front.svg",
  36777. extra: 893/827,
  36778. bottom: 14/907
  36779. }
  36780. },
  36781. },
  36782. [
  36783. {
  36784. name: "Micro",
  36785. height: math.unit(3, "inches")
  36786. },
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(6 + 11/12, "feet"),
  36790. default: true
  36791. },
  36792. {
  36793. name: "Macro",
  36794. height: math.unit(100, "feet")
  36795. },
  36796. {
  36797. name: "Macro+",
  36798. height: math.unit(404, "feet")
  36799. },
  36800. {
  36801. name: "Megamacro",
  36802. height: math.unit(165, "miles")
  36803. },
  36804. {
  36805. name: "Planetary",
  36806. height: math.unit(4600, "miles")
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(10 + 3/12, "feet"),
  36815. weight: math.unit(1500, "lb"),
  36816. name: "Front",
  36817. image: {
  36818. source: "./media/characters/tux-kusanagi/front.svg",
  36819. extra: 944/840,
  36820. bottom: 39/983
  36821. }
  36822. },
  36823. back: {
  36824. height: math.unit(10 + 3/12, "feet"),
  36825. weight: math.unit(1500, "lb"),
  36826. name: "Back",
  36827. image: {
  36828. source: "./media/characters/tux-kusanagi/back.svg",
  36829. extra: 941/842,
  36830. bottom: 28/969
  36831. }
  36832. },
  36833. rump: {
  36834. height: math.unit(5.25, "feet"),
  36835. name: "Rump",
  36836. image: {
  36837. source: "./media/characters/tux-kusanagi/rump.svg"
  36838. }
  36839. },
  36840. beak: {
  36841. height: math.unit(1.54, "feet"),
  36842. name: "Beak",
  36843. image: {
  36844. source: "./media/characters/tux-kusanagi/beak.svg"
  36845. }
  36846. },
  36847. },
  36848. [
  36849. {
  36850. name: "Normal",
  36851. height: math.unit(10 + 3/12, "feet"),
  36852. default: true
  36853. },
  36854. ]
  36855. ))
  36856. characterMakers.push(() => makeCharacter(
  36857. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36858. {
  36859. front: {
  36860. height: math.unit(58, "feet"),
  36861. weight: math.unit(200, "tons"),
  36862. name: "Front",
  36863. image: {
  36864. source: "./media/characters/uzarmazari/front.svg",
  36865. extra: 1575/1455,
  36866. bottom: 152/1727
  36867. }
  36868. },
  36869. back: {
  36870. height: math.unit(58, "feet"),
  36871. weight: math.unit(200, "tons"),
  36872. name: "Back",
  36873. image: {
  36874. source: "./media/characters/uzarmazari/back.svg",
  36875. extra: 1585/1510,
  36876. bottom: 157/1742
  36877. }
  36878. },
  36879. head: {
  36880. height: math.unit(26, "feet"),
  36881. name: "Head",
  36882. image: {
  36883. source: "./media/characters/uzarmazari/head.svg"
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(58, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36897. {
  36898. side: {
  36899. height: math.unit(15, "feet"),
  36900. name: "Side",
  36901. image: {
  36902. source: "./media/characters/akitu/side.svg",
  36903. extra: 1421/1321,
  36904. bottom: 157/1578
  36905. }
  36906. },
  36907. front: {
  36908. height: math.unit(15, "feet"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/akitu/front.svg",
  36912. extra: 1435/1326,
  36913. bottom: 232/1667
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Normal",
  36920. height: math.unit(15, "feet"),
  36921. default: true
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36927. {
  36928. front: {
  36929. height: math.unit(10 + 8/12, "feet"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/azalie-croixland/front.svg",
  36933. extra: 1972/1856,
  36934. bottom: 31/2003
  36935. }
  36936. },
  36937. },
  36938. [
  36939. {
  36940. name: "Original Height",
  36941. height: math.unit(5 + 4/12, "feet")
  36942. },
  36943. {
  36944. name: "Normal Height",
  36945. height: math.unit(10 + 8/12, "feet"),
  36946. default: true
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36952. {
  36953. side: {
  36954. height: math.unit(7 + 1/12, "feet"),
  36955. weight: math.unit(245, "lb"),
  36956. name: "Side",
  36957. image: {
  36958. source: "./media/characters/kavus-kazian/side.svg",
  36959. extra: 349/342,
  36960. bottom: 15/364
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Normal",
  36967. height: math.unit(7 + 1/12, "feet"),
  36968. default: true
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36974. {
  36975. normalFront: {
  36976. height: math.unit(5 + 11/12, "feet"),
  36977. name: "Front",
  36978. image: {
  36979. source: "./media/characters/moonlight-rose/normal-front.svg",
  36980. extra: 1980/1825,
  36981. bottom: 18/1998
  36982. },
  36983. form: "normal",
  36984. default: true
  36985. },
  36986. normalBack: {
  36987. height: math.unit(5 + 11/12, "feet"),
  36988. name: "Back",
  36989. image: {
  36990. source: "./media/characters/moonlight-rose/normal-back.svg",
  36991. extra: 2010/1839,
  36992. bottom: 10/2020
  36993. },
  36994. form: "normal"
  36995. },
  36996. demonFront: {
  36997. height: math.unit(1.5, "earths"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/moonlight-rose/demon.svg",
  37001. extra: 1400/1294,
  37002. bottom: 45/1445
  37003. },
  37004. form: "demon",
  37005. default: true
  37006. },
  37007. terraFront: {
  37008. height: math.unit(1.5, "earths"),
  37009. name: "Front",
  37010. image: {
  37011. source: "./media/characters/moonlight-rose/terra.svg"
  37012. },
  37013. form: "terra",
  37014. default: true
  37015. },
  37016. jupiterFront: {
  37017. height: math.unit(69911*2, "km"),
  37018. name: "Front",
  37019. image: {
  37020. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37021. extra: 1367/1286,
  37022. bottom: 55/1422
  37023. },
  37024. form: "jupiter",
  37025. default: true
  37026. },
  37027. neptuneFront: {
  37028. height: math.unit(24622*2, "feet"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37032. extra: 1851/1712,
  37033. bottom: 0/1851
  37034. },
  37035. form: "neptune",
  37036. default: true
  37037. },
  37038. },
  37039. [
  37040. {
  37041. name: "\"Natural\" Height",
  37042. height: math.unit(5 + 11/12, "feet"),
  37043. form: "normal"
  37044. },
  37045. {
  37046. name: "Smallest comfortable size",
  37047. height: math.unit(40, "meters"),
  37048. form: "normal"
  37049. },
  37050. {
  37051. name: "Common size",
  37052. height: math.unit(50, "km"),
  37053. form: "normal",
  37054. default: true
  37055. },
  37056. {
  37057. name: "Normal",
  37058. height: math.unit(1.5, "earths"),
  37059. form: "demon",
  37060. default: true
  37061. },
  37062. {
  37063. name: "Universal",
  37064. height: math.unit(15, "universes"),
  37065. form: "demon"
  37066. },
  37067. {
  37068. name: "Earth",
  37069. height: math.unit(1.5, "earths"),
  37070. form: "terra",
  37071. default: true
  37072. },
  37073. {
  37074. name: "Super Earth",
  37075. height: math.unit(67.5, "earths"),
  37076. form: "terra"
  37077. },
  37078. {
  37079. name: "Doesn't fit in a solar system...",
  37080. height: math.unit(1, "galaxy"),
  37081. form: "terra"
  37082. },
  37083. {
  37084. name: "Saturn",
  37085. height: math.unit(58232*2, "km"),
  37086. form: "jupiter"
  37087. },
  37088. {
  37089. name: "Jupiter",
  37090. height: math.unit(69911*2, "km"),
  37091. form: "jupiter",
  37092. default: true
  37093. },
  37094. {
  37095. name: "HD 100546 b",
  37096. height: math.unit(482938, "km"),
  37097. form: "jupiter"
  37098. },
  37099. {
  37100. name: "Enceladus",
  37101. height: math.unit(513*2, "km"),
  37102. form: "neptune"
  37103. },
  37104. {
  37105. name: "Europe",
  37106. height: math.unit(1560*2, "km"),
  37107. form: "neptune"
  37108. },
  37109. {
  37110. name: "Neptune",
  37111. height: math.unit(24622*2, "km"),
  37112. form: "neptune",
  37113. default: true
  37114. },
  37115. {
  37116. name: "CoRoT-9b",
  37117. height: math.unit(75067*2, "km"),
  37118. form: "neptune"
  37119. },
  37120. ],
  37121. {
  37122. "normal": {
  37123. name: "Normal",
  37124. default: true
  37125. },
  37126. "demon": {
  37127. name: "Demon"
  37128. },
  37129. "terra": {
  37130. name: "Terra"
  37131. },
  37132. "jupiter": {
  37133. name: "Jupiter"
  37134. },
  37135. "neptune": {
  37136. name: "Neptune"
  37137. }
  37138. }
  37139. ))
  37140. characterMakers.push(() => makeCharacter(
  37141. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37142. {
  37143. front: {
  37144. height: math.unit(16, "feet"),
  37145. weight: math.unit(610, "kg"),
  37146. name: "Front",
  37147. image: {
  37148. source: "./media/characters/huckle/front.svg",
  37149. extra: 1731/1625,
  37150. bottom: 33/1764
  37151. }
  37152. },
  37153. back: {
  37154. height: math.unit(16, "feet"),
  37155. weight: math.unit(610, "kg"),
  37156. name: "Back",
  37157. image: {
  37158. source: "./media/characters/huckle/back.svg",
  37159. extra: 1738/1651,
  37160. bottom: 37/1775
  37161. }
  37162. },
  37163. laughing: {
  37164. height: math.unit(3.75, "feet"),
  37165. name: "Laughing",
  37166. image: {
  37167. source: "./media/characters/huckle/laughing.svg"
  37168. }
  37169. },
  37170. angry: {
  37171. height: math.unit(4.15, "feet"),
  37172. name: "Angry",
  37173. image: {
  37174. source: "./media/characters/huckle/angry.svg"
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(16, "feet"),
  37182. default: true
  37183. },
  37184. {
  37185. name: "Mini Macro",
  37186. height: math.unit(463, "feet")
  37187. },
  37188. {
  37189. name: "Macro",
  37190. height: math.unit(1680, "meters")
  37191. },
  37192. {
  37193. name: "Mega Macro",
  37194. height: math.unit(175, "km")
  37195. },
  37196. {
  37197. name: "Terra Macro",
  37198. height: math.unit(32, "gigameters")
  37199. },
  37200. {
  37201. name: "Multiverse+",
  37202. height: math.unit(2.56e23, "yottameters")
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(6 + 9/12, "feet"),
  37211. weight: math.unit(280, "lb"),
  37212. name: "Front",
  37213. image: {
  37214. source: "./media/characters/candy/front.svg",
  37215. extra: 234/217,
  37216. bottom: 11/245
  37217. }
  37218. },
  37219. },
  37220. [
  37221. {
  37222. name: "Really Small",
  37223. height: math.unit(0.1, "nm")
  37224. },
  37225. {
  37226. name: "Micro",
  37227. height: math.unit(2, "inches")
  37228. },
  37229. {
  37230. name: "Normal",
  37231. height: math.unit(6 + 9/12, "feet"),
  37232. default: true
  37233. },
  37234. {
  37235. name: "Small Macro",
  37236. height: math.unit(69, "feet")
  37237. },
  37238. {
  37239. name: "Macro",
  37240. height: math.unit(160, "feet")
  37241. },
  37242. {
  37243. name: "Megamacro",
  37244. height: math.unit(22000, "miles")
  37245. },
  37246. {
  37247. name: "Gigamacro",
  37248. height: math.unit(50000, "miles")
  37249. },
  37250. ]
  37251. ))
  37252. characterMakers.push(() => makeCharacter(
  37253. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37254. {
  37255. front: {
  37256. height: math.unit(4, "feet"),
  37257. weight: math.unit(90, "lb"),
  37258. name: "Front",
  37259. image: {
  37260. source: "./media/characters/joey-mcdonald/front.svg",
  37261. extra: 1059/852,
  37262. bottom: 33/1092
  37263. }
  37264. },
  37265. back: {
  37266. height: math.unit(4, "feet"),
  37267. weight: math.unit(90, "lb"),
  37268. name: "Back",
  37269. image: {
  37270. source: "./media/characters/joey-mcdonald/back.svg",
  37271. extra: 1077/879,
  37272. bottom: 5/1082
  37273. }
  37274. },
  37275. frontKobold: {
  37276. height: math.unit(4, "feet"),
  37277. weight: math.unit(100, "lb"),
  37278. name: "Front-kobold",
  37279. image: {
  37280. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37281. extra: 1480/1367,
  37282. bottom: 0/1480
  37283. }
  37284. },
  37285. backKobold: {
  37286. height: math.unit(4, "feet"),
  37287. weight: math.unit(100, "lb"),
  37288. name: "Back-kobold",
  37289. image: {
  37290. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37291. extra: 1449/1361,
  37292. bottom: 0/1449
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Normal",
  37299. height: math.unit(4, "feet"),
  37300. default: true
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37306. {
  37307. front: {
  37308. height: math.unit(12 + 6/12, "feet"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/kass-lockheed/front.svg",
  37312. extra: 354/343,
  37313. bottom: 9/363
  37314. }
  37315. },
  37316. back: {
  37317. height: math.unit(12 + 6/12, "feet"),
  37318. name: "Back",
  37319. image: {
  37320. source: "./media/characters/kass-lockheed/back.svg",
  37321. extra: 364/352,
  37322. bottom: 3/367
  37323. }
  37324. },
  37325. dick: {
  37326. height: math.unit(3.12, "feet"),
  37327. name: "Dick",
  37328. image: {
  37329. source: "./media/characters/kass-lockheed/dick.svg"
  37330. }
  37331. },
  37332. head: {
  37333. height: math.unit(2.6, "feet"),
  37334. name: "Head",
  37335. image: {
  37336. source: "./media/characters/kass-lockheed/head.svg"
  37337. }
  37338. },
  37339. bleh: {
  37340. height: math.unit(2.85, "feet"),
  37341. name: "Bleh",
  37342. image: {
  37343. source: "./media/characters/kass-lockheed/bleh.svg"
  37344. }
  37345. },
  37346. smug: {
  37347. height: math.unit(2.85, "feet"),
  37348. name: "Smug",
  37349. image: {
  37350. source: "./media/characters/kass-lockheed/smug.svg"
  37351. }
  37352. },
  37353. },
  37354. [
  37355. {
  37356. name: "Normal",
  37357. height: math.unit(12 + 6/12, "feet"),
  37358. default: true
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37364. {
  37365. front: {
  37366. height: math.unit(6 + 2/12, "feet"),
  37367. name: "Front",
  37368. image: {
  37369. source: "./media/characters/taylor/front.svg",
  37370. extra: 639/495,
  37371. bottom: 12/651
  37372. }
  37373. },
  37374. },
  37375. [
  37376. {
  37377. name: "Normal",
  37378. height: math.unit(6 + 2/12, "feet"),
  37379. default: true
  37380. },
  37381. {
  37382. name: "Big",
  37383. height: math.unit(15, "feet")
  37384. },
  37385. {
  37386. name: "Lorg",
  37387. height: math.unit(80, "feet")
  37388. },
  37389. {
  37390. name: "Too Lorg",
  37391. height: math.unit(120, "feet")
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(15, "feet"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/kaizer/front.svg",
  37403. extra: 1612/1436,
  37404. bottom: 43/1655
  37405. }
  37406. },
  37407. },
  37408. [
  37409. {
  37410. name: "Normal",
  37411. height: math.unit(15, "feet"),
  37412. default: true
  37413. },
  37414. ]
  37415. ))
  37416. characterMakers.push(() => makeCharacter(
  37417. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37418. {
  37419. front: {
  37420. height: math.unit(2, "feet"),
  37421. weight: math.unit(30, "lb"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/sandy/front.svg",
  37425. extra: 1439/1307,
  37426. bottom: 194/1633
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(2, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37440. {
  37441. front: {
  37442. height: math.unit(3, "feet"),
  37443. name: "Front",
  37444. image: {
  37445. source: "./media/characters/mellvi/front.svg",
  37446. extra: 1831/1630,
  37447. bottom: 58/1889
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(3, "feet"),
  37455. default: true
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(5 + 11/12, "feet"),
  37464. weight: math.unit(200, "lb"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/shirou/front.svg",
  37468. extra: 2491/2383,
  37469. bottom: 189/2680
  37470. }
  37471. },
  37472. back: {
  37473. height: math.unit(5 + 11/12, "feet"),
  37474. weight: math.unit(200, "lb"),
  37475. name: "Back",
  37476. image: {
  37477. source: "./media/characters/shirou/back.svg",
  37478. extra: 2554/2450,
  37479. bottom: 76/2630
  37480. }
  37481. },
  37482. },
  37483. [
  37484. {
  37485. name: "Normal",
  37486. height: math.unit(5 + 11/12, "feet"),
  37487. default: true
  37488. },
  37489. ]
  37490. ))
  37491. characterMakers.push(() => makeCharacter(
  37492. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37493. {
  37494. front: {
  37495. height: math.unit(6 + 3/12, "feet"),
  37496. weight: math.unit(177, "lb"),
  37497. name: "Front",
  37498. image: {
  37499. source: "./media/characters/noryu/front.svg",
  37500. extra: 973/885,
  37501. bottom: 10/983
  37502. }
  37503. },
  37504. },
  37505. [
  37506. {
  37507. name: "Normal",
  37508. height: math.unit(6 + 3/12, "feet"),
  37509. default: true
  37510. },
  37511. ]
  37512. ))
  37513. characterMakers.push(() => makeCharacter(
  37514. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37515. {
  37516. front: {
  37517. height: math.unit(5 + 6/12, "feet"),
  37518. weight: math.unit(170, "lb"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/mevolas-rubenido/front.svg",
  37522. extra: 2109/1901,
  37523. bottom: 96/2205
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Normal",
  37530. height: math.unit(5 + 6/12, "feet"),
  37531. default: true
  37532. },
  37533. ]
  37534. ))
  37535. characterMakers.push(() => makeCharacter(
  37536. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37537. {
  37538. front: {
  37539. height: math.unit(100, "feet"),
  37540. name: "Front",
  37541. image: {
  37542. source: "./media/characters/dee/front.svg",
  37543. extra: 2153/2036,
  37544. bottom: 59/2212
  37545. }
  37546. },
  37547. back: {
  37548. height: math.unit(100, "feet"),
  37549. name: "Back",
  37550. image: {
  37551. source: "./media/characters/dee/back.svg",
  37552. extra: 2183/2058,
  37553. bottom: 75/2258
  37554. }
  37555. },
  37556. foot: {
  37557. height: math.unit(19.43, "feet"),
  37558. name: "Foot",
  37559. image: {
  37560. source: "./media/characters/dee/foot.svg"
  37561. }
  37562. },
  37563. hoof: {
  37564. height: math.unit(20.6, "feet"),
  37565. name: "Hoof",
  37566. image: {
  37567. source: "./media/characters/dee/hoof.svg"
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Macro",
  37574. height: math.unit(100, "feet"),
  37575. default: true
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37581. {
  37582. front: {
  37583. height: math.unit(5 + 6/12, "feet"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/teh/front.svg",
  37587. extra: 1002/847,
  37588. bottom: 62/1064
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(5 + 6/12, "feet"),
  37596. default: true
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37602. {
  37603. side: {
  37604. height: math.unit(6 + 1/12, "feet"),
  37605. weight: math.unit(204, "lb"),
  37606. name: "Side",
  37607. image: {
  37608. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37609. extra: 974/775,
  37610. bottom: 169/1143
  37611. }
  37612. },
  37613. sitting: {
  37614. height: math.unit(6 + 2/12, "feet"),
  37615. weight: math.unit(204, "lb"),
  37616. name: "Sitting",
  37617. image: {
  37618. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37619. extra: 1175/964,
  37620. bottom: 378/1553
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Normal",
  37627. height: math.unit(6 + 1/12, "feet"),
  37628. default: true
  37629. },
  37630. ]
  37631. ))
  37632. characterMakers.push(() => makeCharacter(
  37633. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37634. {
  37635. front: {
  37636. height: math.unit(6, "inches"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/tululi/front.svg",
  37640. extra: 1997/1876,
  37641. bottom: 20/2017
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(6, "inches"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(4 + 1/12, "feet"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/star/front.svg",
  37661. extra: 1493/1189,
  37662. bottom: 48/1541
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Normal",
  37669. height: math.unit(4 + 1/12, "feet"),
  37670. default: true
  37671. },
  37672. ]
  37673. ))
  37674. characterMakers.push(() => makeCharacter(
  37675. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37676. {
  37677. front: {
  37678. height: math.unit(6 + 3/12, "feet"),
  37679. name: "Front",
  37680. image: {
  37681. source: "./media/characters/comet/front.svg",
  37682. extra: 1681/1462,
  37683. bottom: 26/1707
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Normal",
  37690. height: math.unit(6 + 3/12, "feet"),
  37691. default: true
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37697. {
  37698. front: {
  37699. height: math.unit(950, "feet"),
  37700. name: "Front",
  37701. image: {
  37702. source: "./media/characters/vortex/front.svg",
  37703. extra: 1497/1434,
  37704. bottom: 56/1553
  37705. }
  37706. },
  37707. maw: {
  37708. height: math.unit(285, "feet"),
  37709. name: "Maw",
  37710. image: {
  37711. source: "./media/characters/vortex/maw.svg"
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Macro",
  37718. height: math.unit(950, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37725. {
  37726. front: {
  37727. height: math.unit(600, "feet"),
  37728. weight: math.unit(0.02, "grams"),
  37729. name: "Front",
  37730. image: {
  37731. source: "./media/characters/doodle/front.svg",
  37732. extra: 1578/1413,
  37733. bottom: 37/1615
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Macro",
  37740. height: math.unit(600, "feet"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(6 + 6/12, "feet"),
  37750. name: "Front",
  37751. image: {
  37752. source: "./media/characters/jai/front.svg",
  37753. extra: 1645/1534,
  37754. bottom: 115/1760
  37755. }
  37756. },
  37757. },
  37758. [
  37759. {
  37760. name: "Normal",
  37761. height: math.unit(6 + 6/12, "feet"),
  37762. default: true
  37763. },
  37764. ]
  37765. ))
  37766. characterMakers.push(() => makeCharacter(
  37767. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37768. {
  37769. front: {
  37770. height: math.unit(6 + 8/12, "feet"),
  37771. name: "Front",
  37772. image: {
  37773. source: "./media/characters/pixel/front.svg",
  37774. extra: 1900/1735,
  37775. bottom: 63/1963
  37776. }
  37777. },
  37778. },
  37779. [
  37780. {
  37781. name: "Normal",
  37782. height: math.unit(6 + 8/12, "feet"),
  37783. default: true
  37784. },
  37785. ]
  37786. ))
  37787. characterMakers.push(() => makeCharacter(
  37788. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37789. {
  37790. back: {
  37791. height: math.unit(4 + 1/12, "feet"),
  37792. weight: math.unit(75, "lb"),
  37793. name: "Back",
  37794. image: {
  37795. source: "./media/characters/rhett/back.svg",
  37796. extra: 930/878,
  37797. bottom: 25/955
  37798. }
  37799. },
  37800. front: {
  37801. height: math.unit(4 + 1/12, "feet"),
  37802. weight: math.unit(75, "lb"),
  37803. name: "Front",
  37804. image: {
  37805. source: "./media/characters/rhett/front.svg",
  37806. extra: 1682/1586,
  37807. bottom: 92/1774
  37808. }
  37809. },
  37810. },
  37811. [
  37812. {
  37813. name: "Micro",
  37814. height: math.unit(8, "inches")
  37815. },
  37816. {
  37817. name: "Tiny",
  37818. height: math.unit(2, "feet")
  37819. },
  37820. {
  37821. name: "Normal",
  37822. height: math.unit(4 + 1/12, "feet"),
  37823. default: true
  37824. },
  37825. ]
  37826. ))
  37827. characterMakers.push(() => makeCharacter(
  37828. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37829. {
  37830. front: {
  37831. height: math.unit(3 + 3/12, "feet"),
  37832. name: "Front",
  37833. image: {
  37834. source: "./media/characters/penny/front.svg",
  37835. extra: 1406/1311,
  37836. bottom: 26/1432
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Normal",
  37843. height: math.unit(3 + 3/12, "feet"),
  37844. default: true
  37845. },
  37846. ]
  37847. ))
  37848. characterMakers.push(() => makeCharacter(
  37849. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37850. {
  37851. front: {
  37852. height: math.unit(4 + 11/12, "feet"),
  37853. name: "Front",
  37854. image: {
  37855. source: "./media/characters/monty/front.svg",
  37856. extra: 1479/1209,
  37857. bottom: 0/1479
  37858. }
  37859. },
  37860. },
  37861. [
  37862. {
  37863. name: "Normal",
  37864. height: math.unit(4 + 11/12, "feet"),
  37865. default: true
  37866. },
  37867. ]
  37868. ))
  37869. characterMakers.push(() => makeCharacter(
  37870. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37871. {
  37872. front: {
  37873. height: math.unit(8 + 4/12, "feet"),
  37874. name: "Front",
  37875. image: {
  37876. source: "./media/characters/sterling/front.svg",
  37877. extra: 1420/1236,
  37878. bottom: 27/1447
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(8 + 4/12, "feet"),
  37886. default: true
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37892. {
  37893. front: {
  37894. height: math.unit(15, "feet"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/marble/front.svg",
  37898. extra: 973/937,
  37899. bottom: 32/1005
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(15, "feet"),
  37907. default: true
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37913. {
  37914. front: {
  37915. height: math.unit(3, "inches"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/powder/front.svg",
  37919. extra: 1504/1334,
  37920. bottom: 518/2022
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal",
  37927. height: math.unit(3, "inches"),
  37928. default: true
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37934. {
  37935. front: {
  37936. height: math.unit(4 + 5/12, "feet"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/joey-raccoon/front.svg",
  37940. extra: 1273/1197,
  37941. bottom: 0/1273
  37942. }
  37943. },
  37944. },
  37945. [
  37946. {
  37947. name: "Normal",
  37948. height: math.unit(4 + 5/12, "feet"),
  37949. default: true
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37955. {
  37956. front: {
  37957. height: math.unit(8 + 4/12, "feet"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/vick/front.svg",
  37961. extra: 2187/2118,
  37962. bottom: 47/2234
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Normal",
  37969. height: math.unit(8 + 4/12, "feet"),
  37970. default: true
  37971. },
  37972. ]
  37973. ))
  37974. characterMakers.push(() => makeCharacter(
  37975. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37976. {
  37977. front: {
  37978. height: math.unit(5 + 5/12, "feet"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/mitsy/front.svg",
  37982. extra: 1842/1695,
  37983. bottom: 0/1842
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(5 + 5/12, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(6 + 3/12, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/silvy/front.svg",
  38003. extra: 1995/1836,
  38004. bottom: 225/2220
  38005. }
  38006. },
  38007. },
  38008. [
  38009. {
  38010. name: "Normal",
  38011. height: math.unit(6 + 3/12, "feet"),
  38012. default: true
  38013. },
  38014. ]
  38015. ))
  38016. characterMakers.push(() => makeCharacter(
  38017. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38018. {
  38019. front: {
  38020. height: math.unit(3 + 8/12, "feet"),
  38021. name: "Front",
  38022. image: {
  38023. source: "./media/characters/rodney/front.svg",
  38024. extra: 1956/1747,
  38025. bottom: 31/1987
  38026. }
  38027. },
  38028. frontDressed: {
  38029. height: math.unit(2.9, "feet"),
  38030. name: "Front (Dressed)",
  38031. image: {
  38032. source: "./media/characters/rodney/front-dressed.svg",
  38033. extra: 1382/1241,
  38034. bottom: 385/1767
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(3 + 8/12, "feet"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(5 + 9/12, "feet"),
  38051. weight: math.unit(194, "lbs"),
  38052. name: "Front",
  38053. image: {
  38054. source: "./media/characters/zakail-sudekai/front.svg",
  38055. extra: 2696/2533,
  38056. bottom: 248/2944
  38057. }
  38058. },
  38059. maw: {
  38060. height: math.unit(1.35, "feet"),
  38061. name: "Maw",
  38062. image: {
  38063. source: "./media/characters/zakail-sudekai/maw.svg"
  38064. }
  38065. },
  38066. },
  38067. [
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(5 + 9/12, "feet"),
  38071. default: true
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38077. {
  38078. front: {
  38079. height: math.unit(8 + 4/12, "feet"),
  38080. weight: math.unit(1200, "lb"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/eleanor/front.svg",
  38084. extra: 1226/1192,
  38085. bottom: 52/1278
  38086. }
  38087. },
  38088. back: {
  38089. height: math.unit(8 + 4/12, "feet"),
  38090. weight: math.unit(1200, "lb"),
  38091. name: "Back",
  38092. image: {
  38093. source: "./media/characters/eleanor/back.svg",
  38094. extra: 1242/1184,
  38095. bottom: 60/1302
  38096. }
  38097. },
  38098. head: {
  38099. height: math.unit(2.62, "feet"),
  38100. name: "Head",
  38101. image: {
  38102. source: "./media/characters/eleanor/head.svg"
  38103. }
  38104. },
  38105. },
  38106. [
  38107. {
  38108. name: "Normal",
  38109. height: math.unit(8 + 4/12, "feet"),
  38110. default: true
  38111. },
  38112. ]
  38113. ))
  38114. characterMakers.push(() => makeCharacter(
  38115. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38116. {
  38117. front: {
  38118. height: math.unit(8 + 4/12, "feet"),
  38119. weight: math.unit(750, "lb"),
  38120. name: "Front",
  38121. image: {
  38122. source: "./media/characters/tanya/front.svg",
  38123. extra: 1749/1615,
  38124. bottom: 33/1782
  38125. }
  38126. },
  38127. },
  38128. [
  38129. {
  38130. name: "Normal",
  38131. height: math.unit(8 + 4/12, "feet"),
  38132. default: true
  38133. },
  38134. ]
  38135. ))
  38136. characterMakers.push(() => makeCharacter(
  38137. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38138. {
  38139. front: {
  38140. height: math.unit(5, "feet"),
  38141. weight: math.unit(225, "lb"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/cindy/front.svg",
  38145. extra: 1320/1250,
  38146. bottom: 42/1362
  38147. }
  38148. },
  38149. frontDressed: {
  38150. height: math.unit(5, "feet"),
  38151. weight: math.unit(225, "lb"),
  38152. name: "Front (Dressed)",
  38153. image: {
  38154. source: "./media/characters/cindy/front-dressed.svg",
  38155. extra: 1320/1250,
  38156. bottom: 42/1362
  38157. }
  38158. },
  38159. back: {
  38160. height: math.unit(5, "feet"),
  38161. weight: math.unit(225, "lb"),
  38162. name: "Back",
  38163. image: {
  38164. source: "./media/characters/cindy/back.svg",
  38165. extra: 1384/1346,
  38166. bottom: 14/1398
  38167. }
  38168. },
  38169. },
  38170. [
  38171. {
  38172. name: "Normal",
  38173. height: math.unit(5, "feet"),
  38174. default: true
  38175. },
  38176. ]
  38177. ))
  38178. characterMakers.push(() => makeCharacter(
  38179. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38180. {
  38181. front: {
  38182. height: math.unit(6 + 9/12, "feet"),
  38183. weight: math.unit(440, "lb"),
  38184. name: "Front",
  38185. image: {
  38186. source: "./media/characters/wilbur-owen/front.svg",
  38187. extra: 1575/1448,
  38188. bottom: 72/1647
  38189. }
  38190. },
  38191. back: {
  38192. height: math.unit(6 + 9/12, "feet"),
  38193. weight: math.unit(440, "lb"),
  38194. name: "Back",
  38195. image: {
  38196. source: "./media/characters/wilbur-owen/back.svg",
  38197. extra: 1578/1445,
  38198. bottom: 36/1614
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(6 + 9/12, "feet"),
  38206. default: true
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38212. {
  38213. front: {
  38214. height: math.unit(6 + 5/12, "feet"),
  38215. weight: math.unit(650, "lb"),
  38216. name: "Front",
  38217. image: {
  38218. source: "./media/characters/keegan/front.svg",
  38219. extra: 2387/2198,
  38220. bottom: 33/2420
  38221. }
  38222. },
  38223. side: {
  38224. height: math.unit(6 + 5/12, "feet"),
  38225. weight: math.unit(650, "lb"),
  38226. name: "Side",
  38227. image: {
  38228. source: "./media/characters/keegan/side.svg",
  38229. extra: 2390/2202,
  38230. bottom: 47/2437
  38231. }
  38232. },
  38233. back: {
  38234. height: math.unit(6 + 5/12, "feet"),
  38235. weight: math.unit(650, "lb"),
  38236. name: "Back",
  38237. image: {
  38238. source: "./media/characters/keegan/back.svg",
  38239. extra: 2418/2268,
  38240. bottom: 15/2433
  38241. }
  38242. },
  38243. frontSfw: {
  38244. height: math.unit(6 + 5/12, "feet"),
  38245. weight: math.unit(650, "lb"),
  38246. name: "Front (SFW)",
  38247. image: {
  38248. source: "./media/characters/keegan/front-sfw.svg",
  38249. extra: 2387/2198,
  38250. bottom: 33/2420
  38251. }
  38252. },
  38253. beans: {
  38254. height: math.unit(1.85, "feet"),
  38255. name: "Beans",
  38256. image: {
  38257. source: "./media/characters/keegan/beans.svg"
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(6 + 5/12, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38271. {
  38272. front: {
  38273. height: math.unit(9, "feet"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/colton/front.svg",
  38277. extra: 1589/1326,
  38278. bottom: 139/1728
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(9, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(2 + 9/12, "feet"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/bora/front.svg",
  38298. extra: 1265/1250,
  38299. bottom: 24/1289
  38300. }
  38301. },
  38302. },
  38303. [
  38304. {
  38305. name: "Normal",
  38306. height: math.unit(2 + 9/12, "feet"),
  38307. default: true
  38308. },
  38309. ]
  38310. ))
  38311. characterMakers.push(() => makeCharacter(
  38312. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38313. {
  38314. front: {
  38315. height: math.unit(8, "feet"),
  38316. name: "Front",
  38317. image: {
  38318. source: "./media/characters/myu-myu/front.svg",
  38319. extra: 1949/1857,
  38320. bottom: 90/2039
  38321. }
  38322. },
  38323. },
  38324. [
  38325. {
  38326. name: "Normal",
  38327. height: math.unit(8, "feet"),
  38328. default: true
  38329. },
  38330. {
  38331. name: "Big",
  38332. height: math.unit(15, "feet")
  38333. },
  38334. {
  38335. name: "BIG",
  38336. height: math.unit(25, "feet")
  38337. },
  38338. ]
  38339. ))
  38340. characterMakers.push(() => makeCharacter(
  38341. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38342. {
  38343. side: {
  38344. height: math.unit(7 + 5/12, "feet"),
  38345. weight: math.unit(2800, "lb"),
  38346. name: "Side",
  38347. image: {
  38348. source: "./media/characters/haloren/side.svg",
  38349. extra: 1793/409,
  38350. bottom: 59/1852
  38351. }
  38352. },
  38353. frontPaw: {
  38354. height: math.unit(2.36, "feet"),
  38355. name: "Front paw",
  38356. image: {
  38357. source: "./media/characters/haloren/front-paw.svg"
  38358. }
  38359. },
  38360. hindPaw: {
  38361. height: math.unit(3.18, "feet"),
  38362. name: "Hind paw",
  38363. image: {
  38364. source: "./media/characters/haloren/hind-paw.svg"
  38365. }
  38366. },
  38367. maw: {
  38368. height: math.unit(5.05, "feet"),
  38369. name: "Maw",
  38370. image: {
  38371. source: "./media/characters/haloren/maw.svg"
  38372. }
  38373. },
  38374. dick: {
  38375. height: math.unit(2.90, "feet"),
  38376. name: "Dick",
  38377. image: {
  38378. source: "./media/characters/haloren/dick.svg"
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(7 + 5/12, "feet"),
  38386. default: true
  38387. },
  38388. {
  38389. name: "Enhanced",
  38390. height: math.unit(14 + 3/12, "feet")
  38391. },
  38392. ]
  38393. ))
  38394. characterMakers.push(() => makeCharacter(
  38395. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38396. {
  38397. front: {
  38398. height: math.unit(171, "cm"),
  38399. name: "Front",
  38400. image: {
  38401. source: "./media/characters/kimmy/front.svg",
  38402. extra: 1491/1435,
  38403. bottom: 53/1544
  38404. }
  38405. },
  38406. },
  38407. [
  38408. {
  38409. name: "Small",
  38410. height: math.unit(9, "cm")
  38411. },
  38412. {
  38413. name: "Normal",
  38414. height: math.unit(171, "cm"),
  38415. default: true
  38416. },
  38417. ]
  38418. ))
  38419. characterMakers.push(() => makeCharacter(
  38420. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38421. {
  38422. front: {
  38423. height: math.unit(8, "feet"),
  38424. weight: math.unit(300, "lb"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/galeboomer/front.svg",
  38428. extra: 4651/4415,
  38429. bottom: 162/4813
  38430. }
  38431. },
  38432. back: {
  38433. height: math.unit(8, "feet"),
  38434. weight: math.unit(300, "lb"),
  38435. name: "Back",
  38436. image: {
  38437. source: "./media/characters/galeboomer/back.svg",
  38438. extra: 4544/4314,
  38439. bottom: 16/4560
  38440. }
  38441. },
  38442. frontAlt: {
  38443. height: math.unit(8, "feet"),
  38444. weight: math.unit(300, "lb"),
  38445. name: "Front (Alt)",
  38446. image: {
  38447. source: "./media/characters/galeboomer/front-alt.svg",
  38448. extra: 4458/4228,
  38449. bottom: 68/4526
  38450. }
  38451. },
  38452. maw: {
  38453. height: math.unit(1.2, "feet"),
  38454. name: "Maw",
  38455. image: {
  38456. source: "./media/characters/galeboomer/maw.svg"
  38457. }
  38458. },
  38459. },
  38460. [
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(8, "feet"),
  38464. default: true
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(5 + 9/12, "feet"),
  38473. weight: math.unit(120, "lb"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/chyr/front.svg",
  38477. extra: 1323/1254,
  38478. bottom: 63/1386
  38479. }
  38480. },
  38481. back: {
  38482. height: math.unit(5 + 9/12, "feet"),
  38483. weight: math.unit(120, "lb"),
  38484. name: "Back",
  38485. image: {
  38486. source: "./media/characters/chyr/back.svg",
  38487. extra: 1323/1252,
  38488. bottom: 48/1371
  38489. }
  38490. },
  38491. },
  38492. [
  38493. {
  38494. name: "Normal",
  38495. height: math.unit(5 + 9/12, "feet"),
  38496. default: true
  38497. },
  38498. ]
  38499. ))
  38500. characterMakers.push(() => makeCharacter(
  38501. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38502. {
  38503. front: {
  38504. height: math.unit(7, "feet"),
  38505. weight: math.unit(310, "lb"),
  38506. name: "Front",
  38507. image: {
  38508. source: "./media/characters/solarus/front.svg",
  38509. extra: 2415/2021,
  38510. bottom: 103/2518
  38511. }
  38512. },
  38513. back: {
  38514. height: math.unit(7, "feet"),
  38515. weight: math.unit(310, "lb"),
  38516. name: "Back",
  38517. image: {
  38518. source: "./media/characters/solarus/back.svg",
  38519. extra: 2463/2089,
  38520. bottom: 79/2542
  38521. }
  38522. },
  38523. },
  38524. [
  38525. {
  38526. name: "Normal",
  38527. height: math.unit(7, "feet"),
  38528. default: true
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38534. {
  38535. front: {
  38536. height: math.unit(16, "feet"),
  38537. name: "Front",
  38538. image: {
  38539. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38540. extra: 1844/1780,
  38541. bottom: 58/1902
  38542. }
  38543. },
  38544. winterCoat: {
  38545. height: math.unit(16, "feet"),
  38546. name: "Winter Coat",
  38547. image: {
  38548. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38549. extra: 1807/1775,
  38550. bottom: 69/1876
  38551. }
  38552. },
  38553. },
  38554. [
  38555. {
  38556. name: "Normal",
  38557. height: math.unit(16, "feet"),
  38558. default: true
  38559. },
  38560. {
  38561. name: "Chicago Size",
  38562. height: math.unit(560, "feet")
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38568. {
  38569. front: {
  38570. height: math.unit(11 + 6/12, "feet"),
  38571. weight: math.unit(1366, "lb"),
  38572. name: "Front",
  38573. image: {
  38574. source: "./media/characters/lexor/front.svg",
  38575. extra: 1560/1481,
  38576. bottom: 211/1771
  38577. }
  38578. },
  38579. back: {
  38580. height: math.unit(11 + 6/12, "feet"),
  38581. weight: math.unit(1366, "lb"),
  38582. name: "Back",
  38583. image: {
  38584. source: "./media/characters/lexor/back.svg",
  38585. extra: 1614/1533,
  38586. bottom: 76/1690
  38587. }
  38588. },
  38589. maw: {
  38590. height: math.unit(3, "feet"),
  38591. name: "Maw",
  38592. image: {
  38593. source: "./media/characters/lexor/maw.svg"
  38594. }
  38595. },
  38596. dick: {
  38597. height: math.unit(2.59, "feet"),
  38598. name: "Dick",
  38599. image: {
  38600. source: "./media/characters/lexor/dick.svg"
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(11 + 6/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(5 + 8/12, "feet"),
  38617. name: "Front",
  38618. image: {
  38619. source: "./media/characters/magnum/front.svg",
  38620. extra: 942/855,
  38621. bottom: 26/968
  38622. }
  38623. },
  38624. },
  38625. [
  38626. {
  38627. name: "Normal",
  38628. height: math.unit(5 + 8/12, "feet"),
  38629. default: true
  38630. },
  38631. ]
  38632. ))
  38633. characterMakers.push(() => makeCharacter(
  38634. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38635. {
  38636. front: {
  38637. height: math.unit(18 + 4/12, "feet"),
  38638. weight: math.unit(1500, "kg"),
  38639. name: "Front",
  38640. image: {
  38641. source: "./media/characters/solas-sharpsman/front.svg",
  38642. extra: 1698/1589,
  38643. bottom: 0/1698
  38644. }
  38645. },
  38646. },
  38647. [
  38648. {
  38649. name: "Normal",
  38650. height: math.unit(18 + 4/12, "feet"),
  38651. default: true
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(5 + 5/12, "feet"),
  38660. weight: math.unit(180, "lb"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/october/front.svg",
  38664. extra: 1800/1650,
  38665. bottom: 0/1800
  38666. }
  38667. },
  38668. frontNsfw: {
  38669. height: math.unit(5 + 5/12, "feet"),
  38670. weight: math.unit(180, "lb"),
  38671. name: "Front (NSFW)",
  38672. image: {
  38673. source: "./media/characters/october/front-nsfw.svg",
  38674. extra: 1392/1307,
  38675. bottom: 42/1434
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(5 + 5/12, "feet"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(8 + 6/12, "feet"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/essynkardi/front.svg",
  38695. extra: 1914/1846,
  38696. bottom: 22/1936
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Normal",
  38703. height: math.unit(8 + 6/12, "feet"),
  38704. default: true
  38705. },
  38706. ]
  38707. ))
  38708. characterMakers.push(() => makeCharacter(
  38709. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38710. {
  38711. front: {
  38712. height: math.unit(6 + 6/12, "feet"),
  38713. weight: math.unit(7, "lb"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/icky/front.svg",
  38717. extra: 813/782,
  38718. bottom: 66/879
  38719. }
  38720. },
  38721. back: {
  38722. height: math.unit(6 + 6/12, "feet"),
  38723. weight: math.unit(7, "lb"),
  38724. name: "Back",
  38725. image: {
  38726. source: "./media/characters/icky/back.svg",
  38727. extra: 754/735,
  38728. bottom: 56/810
  38729. }
  38730. },
  38731. },
  38732. [
  38733. {
  38734. name: "Normal",
  38735. height: math.unit(6 + 6/12, "feet"),
  38736. default: true
  38737. },
  38738. ]
  38739. ))
  38740. characterMakers.push(() => makeCharacter(
  38741. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38742. {
  38743. front: {
  38744. height: math.unit(15, "feet"),
  38745. name: "Front",
  38746. image: {
  38747. source: "./media/characters/rojas/front.svg",
  38748. extra: 1462/1408,
  38749. bottom: 95/1557
  38750. }
  38751. },
  38752. back: {
  38753. height: math.unit(15, "feet"),
  38754. name: "Back",
  38755. image: {
  38756. source: "./media/characters/rojas/back.svg",
  38757. extra: 1023/954,
  38758. bottom: 28/1051
  38759. }
  38760. },
  38761. },
  38762. [
  38763. {
  38764. name: "Normal",
  38765. height: math.unit(15, "feet"),
  38766. default: true
  38767. },
  38768. ]
  38769. ))
  38770. characterMakers.push(() => makeCharacter(
  38771. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38772. {
  38773. frontHuman: {
  38774. height: math.unit(5 + 7/12, "feet"),
  38775. name: "Front (Human)",
  38776. image: {
  38777. source: "./media/characters/alek-dryagan/front-human.svg",
  38778. extra: 1687/1667,
  38779. bottom: 69/1756
  38780. }
  38781. },
  38782. backHuman: {
  38783. height: math.unit(5 + 7/12, "feet"),
  38784. name: "Back (Human)",
  38785. image: {
  38786. source: "./media/characters/alek-dryagan/back-human.svg",
  38787. extra: 1670/1649,
  38788. bottom: 65/1735
  38789. }
  38790. },
  38791. frontDemi: {
  38792. height: math.unit(65, "feet"),
  38793. name: "Front (Demi)",
  38794. image: {
  38795. source: "./media/characters/alek-dryagan/front-demi.svg",
  38796. extra: 1669/1642,
  38797. bottom: 49/1718
  38798. }
  38799. },
  38800. backDemi: {
  38801. height: math.unit(65, "feet"),
  38802. name: "Back (Demi)",
  38803. image: {
  38804. source: "./media/characters/alek-dryagan/back-demi.svg",
  38805. extra: 1658/1637,
  38806. bottom: 40/1698
  38807. }
  38808. },
  38809. mawHuman: {
  38810. height: math.unit(0.3, "feet"),
  38811. name: "Maw (Human)",
  38812. image: {
  38813. source: "./media/characters/alek-dryagan/maw-human.svg"
  38814. }
  38815. },
  38816. mawDemi: {
  38817. height: math.unit(3.8, "feet"),
  38818. name: "Maw (Demi)",
  38819. image: {
  38820. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38821. }
  38822. },
  38823. },
  38824. [
  38825. {
  38826. name: "Normal",
  38827. height: math.unit(5 + 7/12, "feet"),
  38828. default: true
  38829. },
  38830. ]
  38831. ))
  38832. characterMakers.push(() => makeCharacter(
  38833. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38834. {
  38835. frontHuman: {
  38836. height: math.unit(5 + 2/12, "feet"),
  38837. name: "Front (Human)",
  38838. image: {
  38839. source: "./media/characters/gen/front-human.svg",
  38840. extra: 1627/1538,
  38841. bottom: 71/1698
  38842. }
  38843. },
  38844. backHuman: {
  38845. height: math.unit(5 + 2/12, "feet"),
  38846. name: "Back (Human)",
  38847. image: {
  38848. source: "./media/characters/gen/back-human.svg",
  38849. extra: 1638/1548,
  38850. bottom: 69/1707
  38851. }
  38852. },
  38853. frontDemi: {
  38854. height: math.unit(5 + 2/12, "feet"),
  38855. name: "Front (Demi)",
  38856. image: {
  38857. source: "./media/characters/gen/front-demi.svg",
  38858. extra: 1627/1538,
  38859. bottom: 71/1698
  38860. }
  38861. },
  38862. backDemi: {
  38863. height: math.unit(5 + 2/12, "feet"),
  38864. name: "Back (Demi)",
  38865. image: {
  38866. source: "./media/characters/gen/back-demi.svg",
  38867. extra: 1638/1548,
  38868. bottom: 69/1707
  38869. }
  38870. },
  38871. },
  38872. [
  38873. {
  38874. name: "Normal",
  38875. height: math.unit(5 + 2/12, "feet"),
  38876. default: true
  38877. },
  38878. ]
  38879. ))
  38880. characterMakers.push(() => makeCharacter(
  38881. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38882. {
  38883. frontImp: {
  38884. height: math.unit(1 + 11/12, "feet"),
  38885. name: "Front (Imp)",
  38886. image: {
  38887. source: "./media/characters/max-kobold/front-imp.svg",
  38888. extra: 1238/1134,
  38889. bottom: 81/1319
  38890. }
  38891. },
  38892. backImp: {
  38893. height: math.unit(1 + 11/12, "feet"),
  38894. name: "Back (Imp)",
  38895. image: {
  38896. source: "./media/characters/max-kobold/back-imp.svg",
  38897. extra: 1334/1175,
  38898. bottom: 34/1368
  38899. }
  38900. },
  38901. frontDemi: {
  38902. height: math.unit(5 + 9/12, "feet"),
  38903. name: "Front (Demi)",
  38904. image: {
  38905. source: "./media/characters/max-kobold/front-demi.svg",
  38906. extra: 1715/1685,
  38907. bottom: 54/1769
  38908. }
  38909. },
  38910. backDemi: {
  38911. height: math.unit(5 + 9/12, "feet"),
  38912. name: "Back (Demi)",
  38913. image: {
  38914. source: "./media/characters/max-kobold/back-demi.svg",
  38915. extra: 1752/1729,
  38916. bottom: 41/1793
  38917. }
  38918. },
  38919. handImp: {
  38920. height: math.unit(0.45, "feet"),
  38921. name: "Hand (Imp)",
  38922. image: {
  38923. source: "./media/characters/max-kobold/hand.svg"
  38924. }
  38925. },
  38926. pawImp: {
  38927. height: math.unit(0.46, "feet"),
  38928. name: "Paw (Imp)",
  38929. image: {
  38930. source: "./media/characters/max-kobold/paw.svg"
  38931. }
  38932. },
  38933. handDemi: {
  38934. height: math.unit(0.80, "feet"),
  38935. name: "Hand (Demi)",
  38936. image: {
  38937. source: "./media/characters/max-kobold/hand.svg"
  38938. }
  38939. },
  38940. pawDemi: {
  38941. height: math.unit(1.1, "feet"),
  38942. name: "Paw (Demi)",
  38943. image: {
  38944. source: "./media/characters/max-kobold/paw.svg"
  38945. }
  38946. },
  38947. headImp: {
  38948. height: math.unit(1.33, "feet"),
  38949. name: "Head (Imp)",
  38950. image: {
  38951. source: "./media/characters/max-kobold/head-imp.svg"
  38952. }
  38953. },
  38954. mawImp: {
  38955. height: math.unit(0.75, "feet"),
  38956. name: "Maw (Imp)",
  38957. image: {
  38958. source: "./media/characters/max-kobold/maw-imp.svg"
  38959. }
  38960. },
  38961. mawDemi: {
  38962. height: math.unit(0.42, "feet"),
  38963. name: "Maw (Demi)",
  38964. image: {
  38965. source: "./media/characters/max-kobold/maw-demi.svg"
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(1 + 11/12, "feet"),
  38973. default: true
  38974. },
  38975. ]
  38976. ))
  38977. characterMakers.push(() => makeCharacter(
  38978. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38979. {
  38980. front: {
  38981. height: math.unit(7 + 5/12, "feet"),
  38982. name: "Front",
  38983. image: {
  38984. source: "./media/characters/carbon/front.svg",
  38985. extra: 1754/1689,
  38986. bottom: 65/1819
  38987. }
  38988. },
  38989. back: {
  38990. height: math.unit(7 + 5/12, "feet"),
  38991. name: "Back",
  38992. image: {
  38993. source: "./media/characters/carbon/back.svg",
  38994. extra: 1762/1695,
  38995. bottom: 24/1786
  38996. }
  38997. },
  38998. frontGigantamax: {
  38999. height: math.unit(150, "feet"),
  39000. name: "Front (Gigantamax)",
  39001. image: {
  39002. source: "./media/characters/carbon/front-gigantamax.svg",
  39003. extra: 1826/1669,
  39004. bottom: 59/1885
  39005. }
  39006. },
  39007. backGigantamax: {
  39008. height: math.unit(150, "feet"),
  39009. name: "Back (Gigantamax)",
  39010. image: {
  39011. source: "./media/characters/carbon/back-gigantamax.svg",
  39012. extra: 1796/1653,
  39013. bottom: 53/1849
  39014. }
  39015. },
  39016. maw: {
  39017. height: math.unit(0.48, "feet"),
  39018. name: "Maw",
  39019. image: {
  39020. source: "./media/characters/carbon/maw.svg"
  39021. }
  39022. },
  39023. mawGigantamax: {
  39024. height: math.unit(7.5, "feet"),
  39025. name: "Maw (Gigantamax)",
  39026. image: {
  39027. source: "./media/characters/carbon/maw-gigantamax.svg"
  39028. }
  39029. },
  39030. },
  39031. [
  39032. {
  39033. name: "Normal",
  39034. height: math.unit(7 + 5/12, "feet"),
  39035. default: true
  39036. },
  39037. ]
  39038. ))
  39039. characterMakers.push(() => makeCharacter(
  39040. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39041. {
  39042. front: {
  39043. height: math.unit(6, "feet"),
  39044. name: "Front",
  39045. image: {
  39046. source: "./media/characters/maverick/front.svg",
  39047. extra: 1672/1661,
  39048. bottom: 85/1757
  39049. }
  39050. },
  39051. back: {
  39052. height: math.unit(6, "feet"),
  39053. name: "Back",
  39054. image: {
  39055. source: "./media/characters/maverick/back.svg",
  39056. extra: 1642/1631,
  39057. bottom: 38/1680
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(6, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(15, "feet"),
  39074. weight: math.unit(615, "lb"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/grockle/front.svg",
  39078. extra: 1535/1427,
  39079. bottom: 56/1591
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Normal",
  39086. height: math.unit(15, "feet"),
  39087. default: true
  39088. },
  39089. {
  39090. name: "Large",
  39091. height: math.unit(150, "feet")
  39092. },
  39093. {
  39094. name: "Macro",
  39095. height: math.unit(1876, "feet")
  39096. },
  39097. {
  39098. name: "Mega Macro",
  39099. height: math.unit(121940, "feet")
  39100. },
  39101. {
  39102. name: "Giga Macro",
  39103. height: math.unit(750, "km")
  39104. },
  39105. {
  39106. name: "Tera Macro",
  39107. height: math.unit(750000, "km")
  39108. },
  39109. {
  39110. name: "Galactic",
  39111. height: math.unit(1.4e5, "km")
  39112. },
  39113. {
  39114. name: "Godlike",
  39115. height: math.unit(9.8e280, "galaxies")
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39121. {
  39122. front: {
  39123. height: math.unit(11, "meters"),
  39124. weight: math.unit(20, "tonnes"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/alistair/front.svg",
  39128. extra: 1265/1009,
  39129. bottom: 93/1358
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Normal",
  39136. height: math.unit(11, "meters"),
  39137. default: true
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(5 + 8/12, "feet"),
  39146. name: "Front",
  39147. image: {
  39148. source: "./media/characters/haruka/front.svg",
  39149. extra: 2012/1952,
  39150. bottom: 0/2012
  39151. }
  39152. },
  39153. },
  39154. [
  39155. {
  39156. name: "Normal",
  39157. height: math.unit(5 + 8/12, "feet"),
  39158. default: true
  39159. },
  39160. ]
  39161. ))
  39162. characterMakers.push(() => makeCharacter(
  39163. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39164. {
  39165. back: {
  39166. height: math.unit(9, "feet"),
  39167. name: "Back",
  39168. image: {
  39169. source: "./media/characters/vivian-sylveon/back.svg",
  39170. extra: 1853/1714,
  39171. bottom: 0/1853
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Normal",
  39178. height: math.unit(9, "feet"),
  39179. default: true
  39180. },
  39181. {
  39182. name: "Macro",
  39183. height: math.unit(500, "feet")
  39184. },
  39185. {
  39186. name: "Megamacro",
  39187. height: math.unit(600, "miles")
  39188. },
  39189. {
  39190. name: "Gigamacro",
  39191. height: math.unit(30000, "miles")
  39192. },
  39193. ]
  39194. ))
  39195. characterMakers.push(() => makeCharacter(
  39196. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39197. {
  39198. anthro: {
  39199. height: math.unit(5 + 10/12, "feet"),
  39200. weight: math.unit(100, "lb"),
  39201. name: "Anthro",
  39202. image: {
  39203. source: "./media/characters/daiki/anthro.svg",
  39204. extra: 1115/1027,
  39205. bottom: 69/1184
  39206. }
  39207. },
  39208. feral: {
  39209. height: math.unit(200, "feet"),
  39210. name: "Feral",
  39211. image: {
  39212. source: "./media/characters/daiki/feral.svg",
  39213. extra: 1256/313,
  39214. bottom: 39/1295
  39215. }
  39216. },
  39217. feralHead: {
  39218. height: math.unit(171, "feet"),
  39219. name: "Feral Head",
  39220. image: {
  39221. source: "./media/characters/daiki/feral-head.svg"
  39222. }
  39223. },
  39224. manaDragon: {
  39225. height: math.unit(170, "meters"),
  39226. name: "Mana-dragon",
  39227. image: {
  39228. source: "./media/characters/daiki/mana-dragon.svg",
  39229. extra: 763/420,
  39230. bottom: 97/860
  39231. }
  39232. },
  39233. },
  39234. [
  39235. {
  39236. name: "Normal",
  39237. height: math.unit(5 + 10/12, "feet"),
  39238. default: true
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39244. {
  39245. fullyEquippedFront: {
  39246. height: math.unit(3 + 1/12, "feet"),
  39247. weight: math.unit(24, "lb"),
  39248. name: "Fully Equipped (Front)",
  39249. image: {
  39250. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39251. extra: 687/605,
  39252. bottom: 18/705
  39253. }
  39254. },
  39255. fullyEquippedBack: {
  39256. height: math.unit(3 + 1/12, "feet"),
  39257. weight: math.unit(24, "lb"),
  39258. name: "Fully Equipped (Back)",
  39259. image: {
  39260. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39261. extra: 689/590,
  39262. bottom: 18/707
  39263. }
  39264. },
  39265. dailyWear: {
  39266. height: math.unit(3 + 1/12, "feet"),
  39267. weight: math.unit(24, "lb"),
  39268. name: "Daily Wear",
  39269. image: {
  39270. source: "./media/characters/tea-spot/daily-wear.svg",
  39271. extra: 701/620,
  39272. bottom: 21/722
  39273. }
  39274. },
  39275. maidWork: {
  39276. height: math.unit(3 + 1/12, "feet"),
  39277. weight: math.unit(24, "lb"),
  39278. name: "Maid Work",
  39279. image: {
  39280. source: "./media/characters/tea-spot/maid-work.svg",
  39281. extra: 693/609,
  39282. bottom: 15/708
  39283. }
  39284. },
  39285. },
  39286. [
  39287. {
  39288. name: "Normal",
  39289. height: math.unit(3 + 1/12, "feet"),
  39290. default: true
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39296. {
  39297. front: {
  39298. height: math.unit(175, "cm"),
  39299. weight: math.unit(75, "kg"),
  39300. name: "Front",
  39301. image: {
  39302. source: "./media/characters/chee/front.svg",
  39303. extra: 1796/1740,
  39304. bottom: 40/1836
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Micro-Micro",
  39311. height: math.unit(1, "nm")
  39312. },
  39313. {
  39314. name: "Micro-erst",
  39315. height: math.unit(1, "micrometer")
  39316. },
  39317. {
  39318. name: "Micro-er",
  39319. height: math.unit(1, "cm")
  39320. },
  39321. {
  39322. name: "Normal",
  39323. height: math.unit(175, "cm"),
  39324. default: true
  39325. },
  39326. {
  39327. name: "Macro",
  39328. height: math.unit(100, "m")
  39329. },
  39330. {
  39331. name: "Macro-er",
  39332. height: math.unit(1, "km")
  39333. },
  39334. {
  39335. name: "Macro-erst",
  39336. height: math.unit(10, "km")
  39337. },
  39338. {
  39339. name: "Macro-Macro",
  39340. height: math.unit(100, "km")
  39341. },
  39342. ]
  39343. ))
  39344. characterMakers.push(() => makeCharacter(
  39345. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39346. {
  39347. front: {
  39348. height: math.unit(11 + 9/12, "feet"),
  39349. weight: math.unit(935, "lb"),
  39350. name: "Front",
  39351. image: {
  39352. source: "./media/characters/kingsley/front.svg",
  39353. extra: 1803/1674,
  39354. bottom: 127/1930
  39355. }
  39356. },
  39357. frontNude: {
  39358. height: math.unit(11 + 9/12, "feet"),
  39359. weight: math.unit(935, "lb"),
  39360. name: "Front (Nude)",
  39361. image: {
  39362. source: "./media/characters/kingsley/front-nude.svg",
  39363. extra: 1803/1674,
  39364. bottom: 127/1930
  39365. }
  39366. },
  39367. },
  39368. [
  39369. {
  39370. name: "Normal",
  39371. height: math.unit(11 + 9/12, "feet"),
  39372. default: true
  39373. },
  39374. ]
  39375. ))
  39376. characterMakers.push(() => makeCharacter(
  39377. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39378. {
  39379. side: {
  39380. height: math.unit(9, "feet"),
  39381. name: "Side",
  39382. image: {
  39383. source: "./media/characters/rymel/side.svg",
  39384. extra: 792/469,
  39385. bottom: 121/913
  39386. }
  39387. },
  39388. maw: {
  39389. height: math.unit(2.4, "meters"),
  39390. name: "Maw",
  39391. image: {
  39392. source: "./media/characters/rymel/maw.svg"
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "House Drake",
  39399. height: math.unit(2, "feet")
  39400. },
  39401. {
  39402. name: "Reduced",
  39403. height: math.unit(4.5, "feet")
  39404. },
  39405. {
  39406. name: "Normal",
  39407. height: math.unit(9, "feet"),
  39408. default: true
  39409. },
  39410. ]
  39411. ))
  39412. characterMakers.push(() => makeCharacter(
  39413. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39414. {
  39415. front: {
  39416. height: math.unit(1.74, "meters"),
  39417. weight: math.unit(55, "kg"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/rubus/front.svg",
  39421. extra: 1894/1742,
  39422. bottom: 44/1938
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(1.74, "meters"),
  39430. default: true
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(5 + 2/12, "feet"),
  39439. weight: math.unit(112, "lb"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/cassie-kingston/front.svg",
  39443. extra: 1438/1390,
  39444. bottom: 47/1485
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Normal",
  39451. height: math.unit(5 + 2/12, "feet"),
  39452. default: true
  39453. },
  39454. {
  39455. name: "Macro",
  39456. height: math.unit(128, "feet")
  39457. },
  39458. {
  39459. name: "Megamacro",
  39460. height: math.unit(2.56, "miles")
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39466. {
  39467. front: {
  39468. height: math.unit(7, "feet"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/fox/front.svg",
  39472. extra: 1798/1703,
  39473. bottom: 55/1853
  39474. }
  39475. },
  39476. back: {
  39477. height: math.unit(7, "feet"),
  39478. name: "Back",
  39479. image: {
  39480. source: "./media/characters/fox/back.svg",
  39481. extra: 1748/1649,
  39482. bottom: 32/1780
  39483. }
  39484. },
  39485. head: {
  39486. height: math.unit(1.95, "feet"),
  39487. name: "Head",
  39488. image: {
  39489. source: "./media/characters/fox/head.svg"
  39490. }
  39491. },
  39492. dick: {
  39493. height: math.unit(1.33, "feet"),
  39494. name: "Dick",
  39495. image: {
  39496. source: "./media/characters/fox/dick.svg"
  39497. }
  39498. },
  39499. foot: {
  39500. height: math.unit(1, "feet"),
  39501. name: "Foot",
  39502. image: {
  39503. source: "./media/characters/fox/foot.svg"
  39504. }
  39505. },
  39506. paw: {
  39507. height: math.unit(0.92, "feet"),
  39508. name: "Paw",
  39509. image: {
  39510. source: "./media/characters/fox/paw.svg"
  39511. }
  39512. },
  39513. },
  39514. [
  39515. {
  39516. name: "Small",
  39517. height: math.unit(3, "inches")
  39518. },
  39519. {
  39520. name: "\"Realistic\"",
  39521. height: math.unit(7, "feet")
  39522. },
  39523. {
  39524. name: "Normal",
  39525. height: math.unit(150, "feet"),
  39526. default: true
  39527. },
  39528. {
  39529. name: "BIG",
  39530. height: math.unit(1200, "feet")
  39531. },
  39532. {
  39533. name: "👀",
  39534. height: math.unit(5, "miles")
  39535. },
  39536. {
  39537. name: "👀👀👀",
  39538. height: math.unit(64, "miles")
  39539. },
  39540. ]
  39541. ))
  39542. characterMakers.push(() => makeCharacter(
  39543. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39544. {
  39545. front: {
  39546. height: math.unit(625, "feet"),
  39547. name: "Front",
  39548. image: {
  39549. source: "./media/characters/asonja-rossa/front.svg",
  39550. extra: 1833/1686,
  39551. bottom: 24/1857
  39552. }
  39553. },
  39554. back: {
  39555. height: math.unit(625, "feet"),
  39556. name: "Back",
  39557. image: {
  39558. source: "./media/characters/asonja-rossa/back.svg",
  39559. extra: 1852/1753,
  39560. bottom: 26/1878
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "Macro",
  39567. height: math.unit(625, "feet"),
  39568. default: true
  39569. },
  39570. ]
  39571. ))
  39572. characterMakers.push(() => makeCharacter(
  39573. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39574. {
  39575. side: {
  39576. height: math.unit(8, "feet"),
  39577. name: "Side",
  39578. image: {
  39579. source: "./media/characters/rezukii/side.svg",
  39580. extra: 979/542,
  39581. bottom: 87/1066
  39582. }
  39583. },
  39584. sitting: {
  39585. height: math.unit(14.6, "feet"),
  39586. name: "Sitting",
  39587. image: {
  39588. source: "./media/characters/rezukii/sitting.svg",
  39589. extra: 1023/813,
  39590. bottom: 45/1068
  39591. }
  39592. },
  39593. },
  39594. [
  39595. {
  39596. name: "Tiny",
  39597. height: math.unit(2, "feet")
  39598. },
  39599. {
  39600. name: "Smol",
  39601. height: math.unit(4, "feet")
  39602. },
  39603. {
  39604. name: "Normal",
  39605. height: math.unit(8, "feet"),
  39606. default: true
  39607. },
  39608. {
  39609. name: "Big",
  39610. height: math.unit(12, "feet")
  39611. },
  39612. {
  39613. name: "Macro",
  39614. height: math.unit(30, "feet")
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(14, "feet"),
  39623. weight: math.unit(9.5, "tonnes"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/dawnheart/front.svg",
  39627. extra: 2792/2675,
  39628. bottom: 64/2856
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(14, "feet"),
  39636. default: true
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39642. {
  39643. front: {
  39644. height: math.unit(1.7, "m"),
  39645. name: "Front",
  39646. image: {
  39647. source: "./media/characters/gladi/front.svg",
  39648. extra: 1460/1362,
  39649. bottom: 19/1479
  39650. }
  39651. },
  39652. back: {
  39653. height: math.unit(1.7, "m"),
  39654. name: "Back",
  39655. image: {
  39656. source: "./media/characters/gladi/back.svg",
  39657. extra: 1459/1357,
  39658. bottom: 12/1471
  39659. }
  39660. },
  39661. feral: {
  39662. height: math.unit(2.05, "m"),
  39663. name: "Feral",
  39664. image: {
  39665. source: "./media/characters/gladi/feral.svg",
  39666. extra: 821/557,
  39667. bottom: 91/912
  39668. }
  39669. },
  39670. },
  39671. [
  39672. {
  39673. name: "Shortest",
  39674. height: math.unit(70, "cm")
  39675. },
  39676. {
  39677. name: "Normal",
  39678. height: math.unit(1.7, "m")
  39679. },
  39680. {
  39681. name: "Macro",
  39682. height: math.unit(10, "m"),
  39683. default: true
  39684. },
  39685. {
  39686. name: "Tallest",
  39687. height: math.unit(200, "m")
  39688. },
  39689. ]
  39690. ))
  39691. characterMakers.push(() => makeCharacter(
  39692. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39693. {
  39694. front: {
  39695. height: math.unit(5 + 7/12, "feet"),
  39696. weight: math.unit(2, "tons"),
  39697. name: "Front",
  39698. image: {
  39699. source: "./media/characters/erdno/front.svg",
  39700. extra: 1234/1129,
  39701. bottom: 35/1269
  39702. }
  39703. },
  39704. angled: {
  39705. height: math.unit(5 + 7/12, "feet"),
  39706. weight: math.unit(2, "tons"),
  39707. name: "Angled",
  39708. image: {
  39709. source: "./media/characters/erdno/angled.svg",
  39710. extra: 1185/1139,
  39711. bottom: 36/1221
  39712. }
  39713. },
  39714. side: {
  39715. height: math.unit(5 + 7/12, "feet"),
  39716. weight: math.unit(2, "tons"),
  39717. name: "Side",
  39718. image: {
  39719. source: "./media/characters/erdno/side.svg",
  39720. extra: 1191/1144,
  39721. bottom: 40/1231
  39722. }
  39723. },
  39724. back: {
  39725. height: math.unit(5 + 7/12, "feet"),
  39726. weight: math.unit(2, "tons"),
  39727. name: "Back",
  39728. image: {
  39729. source: "./media/characters/erdno/back.svg",
  39730. extra: 1202/1146,
  39731. bottom: 17/1219
  39732. }
  39733. },
  39734. frontNsfw: {
  39735. height: math.unit(5 + 7/12, "feet"),
  39736. weight: math.unit(2, "tons"),
  39737. name: "Front (NSFW)",
  39738. image: {
  39739. source: "./media/characters/erdno/front-nsfw.svg",
  39740. extra: 1234/1129,
  39741. bottom: 35/1269
  39742. }
  39743. },
  39744. angledNsfw: {
  39745. height: math.unit(5 + 7/12, "feet"),
  39746. weight: math.unit(2, "tons"),
  39747. name: "Angled (NSFW)",
  39748. image: {
  39749. source: "./media/characters/erdno/angled-nsfw.svg",
  39750. extra: 1185/1139,
  39751. bottom: 36/1221
  39752. }
  39753. },
  39754. sideNsfw: {
  39755. height: math.unit(5 + 7/12, "feet"),
  39756. weight: math.unit(2, "tons"),
  39757. name: "Side (NSFW)",
  39758. image: {
  39759. source: "./media/characters/erdno/side-nsfw.svg",
  39760. extra: 1191/1144,
  39761. bottom: 40/1231
  39762. }
  39763. },
  39764. backNsfw: {
  39765. height: math.unit(5 + 7/12, "feet"),
  39766. weight: math.unit(2, "tons"),
  39767. name: "Back (NSFW)",
  39768. image: {
  39769. source: "./media/characters/erdno/back-nsfw.svg",
  39770. extra: 1202/1146,
  39771. bottom: 17/1219
  39772. }
  39773. },
  39774. frontHyper: {
  39775. height: math.unit(5 + 7/12, "feet"),
  39776. weight: math.unit(2, "tons"),
  39777. name: "Front (Hyper)",
  39778. image: {
  39779. source: "./media/characters/erdno/front-hyper.svg",
  39780. extra: 1298/1136,
  39781. bottom: 35/1333
  39782. }
  39783. },
  39784. },
  39785. [
  39786. {
  39787. name: "Normal",
  39788. height: math.unit(5 + 7/12, "feet"),
  39789. default: true
  39790. },
  39791. {
  39792. name: "Big",
  39793. height: math.unit(5.7, "meters")
  39794. },
  39795. {
  39796. name: "Macro",
  39797. height: math.unit(5.7, "kilometers")
  39798. },
  39799. {
  39800. name: "Megamacro",
  39801. height: math.unit(5.7, "earths")
  39802. },
  39803. ]
  39804. ))
  39805. characterMakers.push(() => makeCharacter(
  39806. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39807. {
  39808. front: {
  39809. height: math.unit(5 + 10/12, "feet"),
  39810. weight: math.unit(150, "lb"),
  39811. name: "Front",
  39812. image: {
  39813. source: "./media/characters/jamie/front.svg",
  39814. extra: 1908/1768,
  39815. bottom: 19/1927
  39816. }
  39817. },
  39818. },
  39819. [
  39820. {
  39821. name: "Minimum",
  39822. height: math.unit(2, "cm")
  39823. },
  39824. {
  39825. name: "Micro",
  39826. height: math.unit(3, "inches")
  39827. },
  39828. {
  39829. name: "Normal",
  39830. height: math.unit(5 + 10/12, "feet"),
  39831. default: true
  39832. },
  39833. {
  39834. name: "Macro",
  39835. height: math.unit(150, "feet")
  39836. },
  39837. {
  39838. name: "Megamacro",
  39839. height: math.unit(10000, "m")
  39840. },
  39841. ]
  39842. ))
  39843. characterMakers.push(() => makeCharacter(
  39844. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39845. {
  39846. front: {
  39847. height: math.unit(2, "meters"),
  39848. weight: math.unit(100, "kg"),
  39849. name: "Front",
  39850. image: {
  39851. source: "./media/characters/shiron/front.svg",
  39852. extra: 2103/1985,
  39853. bottom: 98/2201
  39854. }
  39855. },
  39856. back: {
  39857. height: math.unit(2, "meters"),
  39858. weight: math.unit(100, "kg"),
  39859. name: "Back",
  39860. image: {
  39861. source: "./media/characters/shiron/back.svg",
  39862. extra: 2110/2015,
  39863. bottom: 89/2199
  39864. }
  39865. },
  39866. hand: {
  39867. height: math.unit(0.96, "feet"),
  39868. name: "Hand",
  39869. image: {
  39870. source: "./media/characters/shiron/hand.svg"
  39871. }
  39872. },
  39873. foot: {
  39874. height: math.unit(1.464, "feet"),
  39875. name: "Foot",
  39876. image: {
  39877. source: "./media/characters/shiron/foot.svg"
  39878. }
  39879. },
  39880. },
  39881. [
  39882. {
  39883. name: "Normal",
  39884. height: math.unit(2, "meters")
  39885. },
  39886. {
  39887. name: "Macro",
  39888. height: math.unit(500, "meters"),
  39889. default: true
  39890. },
  39891. {
  39892. name: "Megamacro",
  39893. height: math.unit(20, "km")
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(6, "feet"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/sam/front.svg",
  39905. extra: 849/826,
  39906. bottom: 19/868
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Normal",
  39913. height: math.unit(6, "feet"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(8 + 4/12, "feet"),
  39923. weight: math.unit(122, "kg"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/namori-kurogawa/front.svg",
  39927. extra: 1894/1576,
  39928. bottom: 34/1928
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Normal",
  39935. height: math.unit(8 + 4/12, "feet"),
  39936. default: true
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(9, "feet"),
  39945. weight: math.unit(621, "lb"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/unmru/front.svg",
  39949. extra: 1853/1747,
  39950. bottom: 73/1926
  39951. }
  39952. },
  39953. side: {
  39954. height: math.unit(9, "feet"),
  39955. weight: math.unit(621, "lb"),
  39956. name: "Side",
  39957. image: {
  39958. source: "./media/characters/unmru/side.svg",
  39959. extra: 1781/1671,
  39960. bottom: 127/1908
  39961. }
  39962. },
  39963. back: {
  39964. height: math.unit(9, "feet"),
  39965. weight: math.unit(621, "lb"),
  39966. name: "Back",
  39967. image: {
  39968. source: "./media/characters/unmru/back.svg",
  39969. extra: 1894/1765,
  39970. bottom: 75/1969
  39971. }
  39972. },
  39973. dick: {
  39974. height: math.unit(3, "feet"),
  39975. weight: math.unit(35, "lb"),
  39976. name: "Dick",
  39977. image: {
  39978. source: "./media/characters/unmru/dick.svg"
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Normal",
  39985. height: math.unit(9, "feet")
  39986. },
  39987. {
  39988. name: "Natural",
  39989. height: math.unit(27, "feet"),
  39990. default: true
  39991. },
  39992. {
  39993. name: "Giant",
  39994. height: math.unit(90, "feet")
  39995. },
  39996. {
  39997. name: "Kaiju",
  39998. height: math.unit(270, "feet")
  39999. },
  40000. {
  40001. name: "Macro",
  40002. height: math.unit(900, "feet")
  40003. },
  40004. {
  40005. name: "Macro+",
  40006. height: math.unit(2700, "feet")
  40007. },
  40008. {
  40009. name: "Megamacro",
  40010. height: math.unit(9000, "feet")
  40011. },
  40012. {
  40013. name: "City-Crushing",
  40014. height: math.unit(27000, "feet")
  40015. },
  40016. {
  40017. name: "Mountain-Mashing",
  40018. height: math.unit(90000, "feet")
  40019. },
  40020. {
  40021. name: "Earth-Eclipsing",
  40022. height: math.unit(2.7e8, "feet")
  40023. },
  40024. {
  40025. name: "Sol-Swallowing",
  40026. height: math.unit(9e10, "feet")
  40027. },
  40028. {
  40029. name: "Majoris-Munching",
  40030. height: math.unit(2.7e13, "feet")
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40036. {
  40037. front: {
  40038. height: math.unit(1, "inch"),
  40039. name: "Front",
  40040. image: {
  40041. source: "./media/characters/squeaks-mouse/front.svg",
  40042. extra: 352/308,
  40043. bottom: 25/377
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Micro",
  40050. height: math.unit(1, "inch"),
  40051. default: true
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40057. {
  40058. side: {
  40059. height: math.unit(35, "feet"),
  40060. name: "Side",
  40061. image: {
  40062. source: "./media/characters/sayko/side.svg",
  40063. extra: 1697/1021,
  40064. bottom: 82/1779
  40065. }
  40066. },
  40067. head: {
  40068. height: math.unit(16, "feet"),
  40069. name: "Head",
  40070. image: {
  40071. source: "./media/characters/sayko/head.svg"
  40072. }
  40073. },
  40074. forepaw: {
  40075. height: math.unit(7.85, "feet"),
  40076. name: "Forepaw",
  40077. image: {
  40078. source: "./media/characters/sayko/forepaw.svg"
  40079. }
  40080. },
  40081. hindpaw: {
  40082. height: math.unit(8.8, "feet"),
  40083. name: "Hindpaw",
  40084. image: {
  40085. source: "./media/characters/sayko/hindpaw.svg"
  40086. }
  40087. },
  40088. },
  40089. [
  40090. {
  40091. name: "Normal",
  40092. height: math.unit(35, "feet"),
  40093. default: true
  40094. },
  40095. {
  40096. name: "Colossus",
  40097. height: math.unit(100, "meters")
  40098. },
  40099. {
  40100. name: "\"Small\" Deity",
  40101. height: math.unit(1, "km")
  40102. },
  40103. {
  40104. name: "\"Large\" Deity",
  40105. height: math.unit(15, "km")
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40111. {
  40112. front: {
  40113. height: math.unit(6, "feet"),
  40114. weight: math.unit(250, "lb"),
  40115. name: "Front",
  40116. image: {
  40117. source: "./media/characters/mukiro/front.svg",
  40118. extra: 1368/1310,
  40119. bottom: 34/1402
  40120. }
  40121. },
  40122. },
  40123. [
  40124. {
  40125. name: "Normal",
  40126. height: math.unit(6, "feet"),
  40127. default: true
  40128. },
  40129. ]
  40130. ))
  40131. characterMakers.push(() => makeCharacter(
  40132. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40133. {
  40134. front: {
  40135. height: math.unit(12 + 4/12, "feet"),
  40136. name: "Front",
  40137. image: {
  40138. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40139. extra: 1346/1311,
  40140. bottom: 65/1411
  40141. }
  40142. },
  40143. },
  40144. [
  40145. {
  40146. name: "Base",
  40147. height: math.unit(12 + 4/12, "feet"),
  40148. default: true
  40149. },
  40150. {
  40151. name: "Macro",
  40152. height: math.unit(150, "feet")
  40153. },
  40154. {
  40155. name: "Mega",
  40156. height: math.unit(2, "miles")
  40157. },
  40158. {
  40159. name: "Demi God",
  40160. height: math.unit(4, "AU")
  40161. },
  40162. {
  40163. name: "God Size",
  40164. height: math.unit(1, "universe")
  40165. },
  40166. ]
  40167. ))
  40168. characterMakers.push(() => makeCharacter(
  40169. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40170. {
  40171. front: {
  40172. height: math.unit(3 + 3/12, "feet"),
  40173. weight: math.unit(88, "lb"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/trey/front.svg",
  40177. extra: 1815/1509,
  40178. bottom: 60/1875
  40179. }
  40180. },
  40181. },
  40182. [
  40183. {
  40184. name: "Normal",
  40185. height: math.unit(3 + 3/12, "feet"),
  40186. default: true
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40192. {
  40193. front: {
  40194. height: math.unit(4, "meters"),
  40195. name: "Front",
  40196. image: {
  40197. source: "./media/characters/adelonda/front.svg",
  40198. extra: 1077/982,
  40199. bottom: 39/1116
  40200. }
  40201. },
  40202. back: {
  40203. height: math.unit(4, "meters"),
  40204. name: "Back",
  40205. image: {
  40206. source: "./media/characters/adelonda/back.svg",
  40207. extra: 1105/1003,
  40208. bottom: 25/1130
  40209. }
  40210. },
  40211. feral: {
  40212. height: math.unit(40/1.5, "meters"),
  40213. name: "Feral",
  40214. image: {
  40215. source: "./media/characters/adelonda/feral.svg",
  40216. extra: 597/271,
  40217. bottom: 387/984
  40218. }
  40219. },
  40220. },
  40221. [
  40222. {
  40223. name: "Normal",
  40224. height: math.unit(4, "meters"),
  40225. default: true
  40226. },
  40227. ]
  40228. ))
  40229. characterMakers.push(() => makeCharacter(
  40230. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40231. {
  40232. front: {
  40233. height: math.unit(8 + 4/12, "feet"),
  40234. weight: math.unit(670, "lb"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/acadiel/front.svg",
  40238. extra: 1901/1595,
  40239. bottom: 142/2043
  40240. }
  40241. },
  40242. },
  40243. [
  40244. {
  40245. name: "Normal",
  40246. height: math.unit(8 + 4/12, "feet"),
  40247. default: true
  40248. },
  40249. {
  40250. name: "Macro",
  40251. height: math.unit(200, "feet")
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(6 + 2/12, "feet"),
  40260. weight: math.unit(185, "lb"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/kayne-ein/front.svg",
  40264. extra: 1780/1560,
  40265. bottom: 81/1861
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(6 + 2/12, "feet"),
  40273. default: true
  40274. },
  40275. {
  40276. name: "Transformation Stage",
  40277. height: math.unit(15, "feet")
  40278. },
  40279. {
  40280. name: "Macro",
  40281. height: math.unit(150, "feet")
  40282. },
  40283. {
  40284. name: "Earth's Shadow",
  40285. height: math.unit(6200, "miles")
  40286. },
  40287. {
  40288. name: "Universal Demon",
  40289. height: math.unit(28e9, "parsecs")
  40290. },
  40291. {
  40292. name: "Multiverse God",
  40293. height: math.unit(3, "multiverses")
  40294. },
  40295. ]
  40296. ))
  40297. characterMakers.push(() => makeCharacter(
  40298. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40299. {
  40300. front: {
  40301. height: math.unit(5 + 5/12, "feet"),
  40302. name: "Front",
  40303. image: {
  40304. source: "./media/characters/fawn/front.svg",
  40305. extra: 1873/1731,
  40306. bottom: 95/1968
  40307. }
  40308. },
  40309. back: {
  40310. height: math.unit(5 + 5/12, "feet"),
  40311. name: "Back",
  40312. image: {
  40313. source: "./media/characters/fawn/back.svg",
  40314. extra: 1813/1700,
  40315. bottom: 14/1827
  40316. }
  40317. },
  40318. hoof: {
  40319. height: math.unit(1.45, "feet"),
  40320. name: "Hoof",
  40321. image: {
  40322. source: "./media/characters/fawn/hoof.svg"
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Normal",
  40329. height: math.unit(5 + 5/12, "feet"),
  40330. default: true
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(2 + 5/12, "feet"),
  40339. name: "Front",
  40340. image: {
  40341. source: "./media/characters/orion/front.svg",
  40342. extra: 1366/1304,
  40343. bottom: 43/1409
  40344. }
  40345. },
  40346. paw: {
  40347. height: math.unit(0.52, "feet"),
  40348. name: "Paw",
  40349. image: {
  40350. source: "./media/characters/orion/paw.svg"
  40351. }
  40352. },
  40353. },
  40354. [
  40355. {
  40356. name: "Normal",
  40357. height: math.unit(2 + 5/12, "feet"),
  40358. default: true
  40359. },
  40360. ]
  40361. ))
  40362. characterMakers.push(() => makeCharacter(
  40363. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40364. {
  40365. front: {
  40366. height: math.unit(5 + 10/12, "feet"),
  40367. name: "Front",
  40368. image: {
  40369. source: "./media/characters/vera/front.svg",
  40370. extra: 1680/1575,
  40371. bottom: 49/1729
  40372. }
  40373. },
  40374. back: {
  40375. height: math.unit(5 + 10/12, "feet"),
  40376. name: "Back",
  40377. image: {
  40378. source: "./media/characters/vera/back.svg",
  40379. extra: 1700/1588,
  40380. bottom: 18/1718
  40381. }
  40382. },
  40383. arcanine: {
  40384. height: math.unit(6 + 8/12, "feet"),
  40385. name: "Arcanine",
  40386. image: {
  40387. source: "./media/characters/vera/arcanine.svg",
  40388. extra: 1590/1511,
  40389. bottom: 71/1661
  40390. }
  40391. },
  40392. maw: {
  40393. height: math.unit(0.82, "feet"),
  40394. name: "Maw",
  40395. image: {
  40396. source: "./media/characters/vera/maw.svg"
  40397. }
  40398. },
  40399. mawArcanine: {
  40400. height: math.unit(0.97, "feet"),
  40401. name: "Maw (Arcanine)",
  40402. image: {
  40403. source: "./media/characters/vera/maw-arcanine.svg"
  40404. }
  40405. },
  40406. paw: {
  40407. height: math.unit(0.75, "feet"),
  40408. name: "Paw",
  40409. image: {
  40410. source: "./media/characters/vera/paw.svg"
  40411. }
  40412. },
  40413. pawprint: {
  40414. height: math.unit(0.52, "feet"),
  40415. name: "Pawprint",
  40416. image: {
  40417. source: "./media/characters/vera/pawprint.svg"
  40418. }
  40419. },
  40420. },
  40421. [
  40422. {
  40423. name: "Normal",
  40424. height: math.unit(5 + 10/12, "feet"),
  40425. default: true
  40426. },
  40427. {
  40428. name: "Macro",
  40429. height: math.unit(75, "feet")
  40430. },
  40431. ]
  40432. ))
  40433. characterMakers.push(() => makeCharacter(
  40434. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40435. {
  40436. front: {
  40437. height: math.unit(4, "feet"),
  40438. weight: math.unit(40, "lb"),
  40439. name: "Front",
  40440. image: {
  40441. source: "./media/characters/orvan-rabbit/front.svg",
  40442. extra: 1896/1642,
  40443. bottom: 29/1925
  40444. }
  40445. },
  40446. },
  40447. [
  40448. {
  40449. name: "Normal",
  40450. height: math.unit(4, "feet"),
  40451. default: true
  40452. },
  40453. ]
  40454. ))
  40455. characterMakers.push(() => makeCharacter(
  40456. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40457. {
  40458. front: {
  40459. height: math.unit(6, "feet"),
  40460. weight: math.unit(168, "lb"),
  40461. name: "Front",
  40462. image: {
  40463. source: "./media/characters/lisa/front.svg",
  40464. extra: 2065/1867,
  40465. bottom: 46/2111
  40466. }
  40467. },
  40468. back: {
  40469. height: math.unit(6, "feet"),
  40470. weight: math.unit(168, "lb"),
  40471. name: "Back",
  40472. image: {
  40473. source: "./media/characters/lisa/back.svg",
  40474. extra: 1982/1838,
  40475. bottom: 29/2011
  40476. }
  40477. },
  40478. maw: {
  40479. height: math.unit(0.81, "feet"),
  40480. name: "Maw",
  40481. image: {
  40482. source: "./media/characters/lisa/maw.svg"
  40483. }
  40484. },
  40485. paw: {
  40486. height: math.unit(0.9, "feet"),
  40487. name: "Paw",
  40488. image: {
  40489. source: "./media/characters/lisa/paw.svg"
  40490. }
  40491. },
  40492. caribousune: {
  40493. height: math.unit(7 + 2/12, "feet"),
  40494. weight: math.unit(268, "lb"),
  40495. name: "Caribousune",
  40496. image: {
  40497. source: "./media/characters/lisa/caribousune.svg",
  40498. extra: 1843/1633,
  40499. bottom: 29/1872
  40500. }
  40501. },
  40502. frontCaribousune: {
  40503. height: math.unit(7 + 2/12, "feet"),
  40504. weight: math.unit(268, "lb"),
  40505. name: "Front (Caribousune)",
  40506. image: {
  40507. source: "./media/characters/lisa/front-caribousune.svg",
  40508. extra: 1818/1638,
  40509. bottom: 52/1870
  40510. }
  40511. },
  40512. sideCaribousune: {
  40513. height: math.unit(7 + 2/12, "feet"),
  40514. weight: math.unit(268, "lb"),
  40515. name: "Side (Caribousune)",
  40516. image: {
  40517. source: "./media/characters/lisa/side-caribousune.svg",
  40518. extra: 1851/1635,
  40519. bottom: 16/1867
  40520. }
  40521. },
  40522. backCaribousune: {
  40523. height: math.unit(7 + 2/12, "feet"),
  40524. weight: math.unit(268, "lb"),
  40525. name: "Back (Caribousune)",
  40526. image: {
  40527. source: "./media/characters/lisa/back-caribousune.svg",
  40528. extra: 1801/1604,
  40529. bottom: 44/1845
  40530. }
  40531. },
  40532. caribou: {
  40533. height: math.unit(7 + 2/12, "feet"),
  40534. weight: math.unit(268, "lb"),
  40535. name: "Caribou",
  40536. image: {
  40537. source: "./media/characters/lisa/caribou.svg",
  40538. extra: 1843/1633,
  40539. bottom: 29/1872
  40540. }
  40541. },
  40542. frontCaribou: {
  40543. height: math.unit(7 + 2/12, "feet"),
  40544. weight: math.unit(268, "lb"),
  40545. name: "Front (Caribou)",
  40546. image: {
  40547. source: "./media/characters/lisa/front-caribou.svg",
  40548. extra: 1818/1638,
  40549. bottom: 52/1870
  40550. }
  40551. },
  40552. sideCaribou: {
  40553. height: math.unit(7 + 2/12, "feet"),
  40554. weight: math.unit(268, "lb"),
  40555. name: "Side (Caribou)",
  40556. image: {
  40557. source: "./media/characters/lisa/side-caribou.svg",
  40558. extra: 1851/1635,
  40559. bottom: 16/1867
  40560. }
  40561. },
  40562. backCaribou: {
  40563. height: math.unit(7 + 2/12, "feet"),
  40564. weight: math.unit(268, "lb"),
  40565. name: "Back (Caribou)",
  40566. image: {
  40567. source: "./media/characters/lisa/back-caribou.svg",
  40568. extra: 1801/1604,
  40569. bottom: 44/1845
  40570. }
  40571. },
  40572. mawCaribou: {
  40573. height: math.unit(1.45, "feet"),
  40574. name: "Maw (Caribou)",
  40575. image: {
  40576. source: "./media/characters/lisa/maw-caribou.svg"
  40577. }
  40578. },
  40579. mawCaribousune: {
  40580. height: math.unit(1.45, "feet"),
  40581. name: "Maw (Caribousune)",
  40582. image: {
  40583. source: "./media/characters/lisa/maw-caribousune.svg"
  40584. }
  40585. },
  40586. pawCaribousune: {
  40587. height: math.unit(1.61, "feet"),
  40588. name: "Paw (Caribou)",
  40589. image: {
  40590. source: "./media/characters/lisa/paw-caribousune.svg"
  40591. }
  40592. },
  40593. },
  40594. [
  40595. {
  40596. name: "Normal",
  40597. height: math.unit(6, "feet")
  40598. },
  40599. {
  40600. name: "God Size",
  40601. height: math.unit(72, "feet"),
  40602. default: true
  40603. },
  40604. {
  40605. name: "Towering",
  40606. height: math.unit(288, "feet")
  40607. },
  40608. {
  40609. name: "City Size",
  40610. height: math.unit(48384, "feet")
  40611. },
  40612. {
  40613. name: "Continental",
  40614. height: math.unit(4200, "miles")
  40615. },
  40616. {
  40617. name: "Planet Eater",
  40618. height: math.unit(42, "earths")
  40619. },
  40620. {
  40621. name: "Star Swallower",
  40622. height: math.unit(42, "solarradii")
  40623. },
  40624. {
  40625. name: "System Swallower",
  40626. height: math.unit(84000, "AU")
  40627. },
  40628. {
  40629. name: "Galaxy Gobbler",
  40630. height: math.unit(42, "galaxies")
  40631. },
  40632. {
  40633. name: "Universe Devourer",
  40634. height: math.unit(42, "universes")
  40635. },
  40636. {
  40637. name: "Multiverse Muncher",
  40638. height: math.unit(42, "multiverses")
  40639. },
  40640. ]
  40641. ))
  40642. characterMakers.push(() => makeCharacter(
  40643. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40644. {
  40645. front: {
  40646. height: math.unit(36, "feet"),
  40647. name: "Front",
  40648. image: {
  40649. source: "./media/characters/shadow-rat/front.svg",
  40650. extra: 1845/1758,
  40651. bottom: 83/1928
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(36, "feet"),
  40659. default: true
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40665. {
  40666. side: {
  40667. height: math.unit(8, "feet"),
  40668. weight: math.unit(2630, "lb"),
  40669. name: "Side",
  40670. image: {
  40671. source: "./media/characters/torallia/side.svg",
  40672. extra: 2164/2021,
  40673. bottom: 371/2535
  40674. }
  40675. },
  40676. },
  40677. [
  40678. {
  40679. name: "Mortal Interaction",
  40680. height: math.unit(8, "feet")
  40681. },
  40682. {
  40683. name: "Natural",
  40684. height: math.unit(24, "feet"),
  40685. default: true
  40686. },
  40687. {
  40688. name: "Giant",
  40689. height: math.unit(80, "feet")
  40690. },
  40691. {
  40692. name: "Kaiju",
  40693. height: math.unit(240, "feet")
  40694. },
  40695. {
  40696. name: "Macro",
  40697. height: math.unit(800, "feet")
  40698. },
  40699. {
  40700. name: "Macro+",
  40701. height: math.unit(2400, "feet")
  40702. },
  40703. {
  40704. name: "Macro++",
  40705. height: math.unit(8000, "feet")
  40706. },
  40707. {
  40708. name: "City-Crushing",
  40709. height: math.unit(24000, "feet")
  40710. },
  40711. {
  40712. name: "Mountain-Mashing",
  40713. height: math.unit(80000, "feet")
  40714. },
  40715. {
  40716. name: "District Demolisher",
  40717. height: math.unit(240000, "feet")
  40718. },
  40719. {
  40720. name: "Tri-County Terror",
  40721. height: math.unit(800000, "feet")
  40722. },
  40723. {
  40724. name: "State Smasher",
  40725. height: math.unit(2.4e6, "feet")
  40726. },
  40727. {
  40728. name: "Nation Nemesis",
  40729. height: math.unit(8e6, "feet")
  40730. },
  40731. {
  40732. name: "Continent Cracker",
  40733. height: math.unit(2.4e7, "feet")
  40734. },
  40735. {
  40736. name: "Planet-Pillaging",
  40737. height: math.unit(8e7, "feet")
  40738. },
  40739. {
  40740. name: "Earth-Eclipsing",
  40741. height: math.unit(2.4e8, "feet")
  40742. },
  40743. {
  40744. name: "Jovian-Jostling",
  40745. height: math.unit(8e8, "feet")
  40746. },
  40747. {
  40748. name: "Gas Giant Gulper",
  40749. height: math.unit(2.4e9, "feet")
  40750. },
  40751. {
  40752. name: "Astral Annihilator",
  40753. height: math.unit(8e9, "feet")
  40754. },
  40755. {
  40756. name: "Celestial Conqueror",
  40757. height: math.unit(2.4e10, "feet")
  40758. },
  40759. {
  40760. name: "Sol-Swallowing",
  40761. height: math.unit(8e10, "feet")
  40762. },
  40763. {
  40764. name: "Hunter of the Heavens",
  40765. height: math.unit(2.4e13, "feet")
  40766. },
  40767. ]
  40768. ))
  40769. characterMakers.push(() => makeCharacter(
  40770. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40771. {
  40772. front: {
  40773. height: math.unit(6 + 8/12, "feet"),
  40774. weight: math.unit(250, "kilograms"),
  40775. volume: math.unit(28, "liters"),
  40776. name: "Front",
  40777. image: {
  40778. source: "./media/characters/rebecca-pawlson/front.svg",
  40779. extra: 1737/1596,
  40780. bottom: 107/1844
  40781. }
  40782. },
  40783. back: {
  40784. height: math.unit(6 + 8/12, "feet"),
  40785. weight: math.unit(250, "kilograms"),
  40786. volume: math.unit(28, "liters"),
  40787. name: "Back",
  40788. image: {
  40789. source: "./media/characters/rebecca-pawlson/back.svg",
  40790. extra: 1702/1523,
  40791. bottom: 86/1788
  40792. }
  40793. },
  40794. },
  40795. [
  40796. {
  40797. name: "Normal",
  40798. height: math.unit(6 + 8/12, "feet")
  40799. },
  40800. {
  40801. name: "Mini Macro",
  40802. height: math.unit(10, "feet"),
  40803. default: true
  40804. },
  40805. {
  40806. name: "Macro",
  40807. height: math.unit(100, "feet")
  40808. },
  40809. {
  40810. name: "Mega Macro",
  40811. height: math.unit(2500, "feet")
  40812. },
  40813. {
  40814. name: "Giga Macro",
  40815. height: math.unit(50, "miles")
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(7 + 6/12, "feet"),
  40824. weight: math.unit(600, "lb"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/moxie-nova/front.svg",
  40828. extra: 1734/1652,
  40829. bottom: 41/1775
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Normal",
  40836. height: math.unit(7 + 6/12, "feet"),
  40837. default: true
  40838. },
  40839. ]
  40840. ))
  40841. characterMakers.push(() => makeCharacter(
  40842. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40843. {
  40844. goat: {
  40845. height: math.unit(4, "feet"),
  40846. weight: math.unit(180, "lb"),
  40847. name: "Goat",
  40848. image: {
  40849. source: "./media/characters/tiffany/goat.svg",
  40850. extra: 1845/1595,
  40851. bottom: 106/1951
  40852. }
  40853. },
  40854. front: {
  40855. height: math.unit(5, "feet"),
  40856. weight: math.unit(150, "lb"),
  40857. name: "Foxcoon",
  40858. image: {
  40859. source: "./media/characters/tiffany/foxcoon.svg",
  40860. extra: 1941/1845,
  40861. bottom: 58/1999
  40862. }
  40863. },
  40864. },
  40865. [
  40866. {
  40867. name: "Normal",
  40868. height: math.unit(5, "feet"),
  40869. default: true
  40870. },
  40871. ]
  40872. ))
  40873. characterMakers.push(() => makeCharacter(
  40874. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40875. {
  40876. front: {
  40877. height: math.unit(8, "feet"),
  40878. weight: math.unit(300, "lb"),
  40879. name: "Front",
  40880. image: {
  40881. source: "./media/characters/raxinath/front.svg",
  40882. extra: 1407/1309,
  40883. bottom: 39/1446
  40884. }
  40885. },
  40886. back: {
  40887. height: math.unit(8, "feet"),
  40888. weight: math.unit(300, "lb"),
  40889. name: "Back",
  40890. image: {
  40891. source: "./media/characters/raxinath/back.svg",
  40892. extra: 1405/1315,
  40893. bottom: 9/1414
  40894. }
  40895. },
  40896. },
  40897. [
  40898. {
  40899. name: "Speck",
  40900. height: math.unit(0.5, "nm")
  40901. },
  40902. {
  40903. name: "Micro",
  40904. height: math.unit(3, "inches")
  40905. },
  40906. {
  40907. name: "Kobold",
  40908. height: math.unit(3, "feet")
  40909. },
  40910. {
  40911. name: "Normal",
  40912. height: math.unit(8, "feet"),
  40913. default: true
  40914. },
  40915. {
  40916. name: "Giant",
  40917. height: math.unit(50, "feet")
  40918. },
  40919. {
  40920. name: "Macro",
  40921. height: math.unit(1000, "feet")
  40922. },
  40923. {
  40924. name: "Megamacro",
  40925. height: math.unit(1, "mile")
  40926. },
  40927. ]
  40928. ))
  40929. characterMakers.push(() => makeCharacter(
  40930. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40931. {
  40932. front: {
  40933. height: math.unit(10, "feet"),
  40934. weight: math.unit(1442, "lb"),
  40935. name: "Front",
  40936. image: {
  40937. source: "./media/characters/mal-dragon/front.svg",
  40938. extra: 1515/1444,
  40939. bottom: 113/1628
  40940. }
  40941. },
  40942. back: {
  40943. height: math.unit(10, "feet"),
  40944. weight: math.unit(1442, "lb"),
  40945. name: "Back",
  40946. image: {
  40947. source: "./media/characters/mal-dragon/back.svg",
  40948. extra: 1527/1434,
  40949. bottom: 25/1552
  40950. }
  40951. },
  40952. },
  40953. [
  40954. {
  40955. name: "Mortal Interaction",
  40956. height: math.unit(10, "feet"),
  40957. default: true
  40958. },
  40959. {
  40960. name: "Large",
  40961. height: math.unit(30, "feet")
  40962. },
  40963. {
  40964. name: "Kaiju",
  40965. height: math.unit(300, "feet")
  40966. },
  40967. {
  40968. name: "Megamacro",
  40969. height: math.unit(10000, "feet")
  40970. },
  40971. {
  40972. name: "Continent Cracker",
  40973. height: math.unit(30000000, "feet")
  40974. },
  40975. {
  40976. name: "Sol-Swallowing",
  40977. height: math.unit(1e11, "feet")
  40978. },
  40979. {
  40980. name: "Light Universal",
  40981. height: math.unit(5, "universes")
  40982. },
  40983. {
  40984. name: "Universe Atoms",
  40985. height: math.unit(1.829e9, "universes")
  40986. },
  40987. {
  40988. name: "Light Multiversal",
  40989. height: math.unit(5, "multiverses")
  40990. },
  40991. {
  40992. name: "Multiverse Atoms",
  40993. height: math.unit(1.829e9, "multiverses")
  40994. },
  40995. {
  40996. name: "Fabric of Time",
  40997. height: math.unit(1e262, "multiverses")
  40998. },
  40999. ]
  41000. ))
  41001. characterMakers.push(() => makeCharacter(
  41002. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41003. {
  41004. front: {
  41005. height: math.unit(9, "feet"),
  41006. weight: math.unit(1050, "lb"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/tabitha/front.svg",
  41010. extra: 2083/1994,
  41011. bottom: 68/2151
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Baseline",
  41018. height: math.unit(9, "feet"),
  41019. default: true
  41020. },
  41021. {
  41022. name: "Giant",
  41023. height: math.unit(90, "feet")
  41024. },
  41025. {
  41026. name: "Macro",
  41027. height: math.unit(900, "feet")
  41028. },
  41029. {
  41030. name: "Megamacro",
  41031. height: math.unit(9000, "feet")
  41032. },
  41033. {
  41034. name: "City-Crushing",
  41035. height: math.unit(27000, "feet")
  41036. },
  41037. {
  41038. name: "Mountain-Mashing",
  41039. height: math.unit(90000, "feet")
  41040. },
  41041. {
  41042. name: "Nation Nemesis",
  41043. height: math.unit(9e6, "feet")
  41044. },
  41045. {
  41046. name: "Continent Cracker",
  41047. height: math.unit(27e6, "feet")
  41048. },
  41049. {
  41050. name: "Earth-Eclipsing",
  41051. height: math.unit(2.7e8, "feet")
  41052. },
  41053. {
  41054. name: "Gas Giant Gulper",
  41055. height: math.unit(2.7e9, "feet")
  41056. },
  41057. {
  41058. name: "Sol-Swallowing",
  41059. height: math.unit(9e10, "feet")
  41060. },
  41061. {
  41062. name: "Galaxy Gulper",
  41063. height: math.unit(9, "galaxies")
  41064. },
  41065. {
  41066. name: "Cosmos Churner",
  41067. height: math.unit(9, "universes")
  41068. },
  41069. ]
  41070. ))
  41071. characterMakers.push(() => makeCharacter(
  41072. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41073. {
  41074. front: {
  41075. height: math.unit(160, "cm"),
  41076. weight: math.unit(55, "kg"),
  41077. name: "Front",
  41078. image: {
  41079. source: "./media/characters/tow/front.svg",
  41080. extra: 1751/1722,
  41081. bottom: 74/1825
  41082. }
  41083. },
  41084. },
  41085. [
  41086. {
  41087. name: "Norm",
  41088. height: math.unit(160, "cm")
  41089. },
  41090. {
  41091. name: "Casual",
  41092. height: math.unit(3200, "m"),
  41093. default: true
  41094. },
  41095. {
  41096. name: "Show-Off",
  41097. height: math.unit(160, "km")
  41098. },
  41099. ]
  41100. ))
  41101. characterMakers.push(() => makeCharacter(
  41102. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41103. {
  41104. front: {
  41105. height: math.unit(7 + 11/12, "feet"),
  41106. weight: math.unit(342.8, "lb"),
  41107. name: "Front",
  41108. image: {
  41109. source: "./media/characters/vivian-orca-dragon/front.svg",
  41110. extra: 1890/1865,
  41111. bottom: 28/1918
  41112. }
  41113. },
  41114. },
  41115. [
  41116. {
  41117. name: "Micro",
  41118. height: math.unit(5, "inches")
  41119. },
  41120. {
  41121. name: "Normal",
  41122. height: math.unit(7 + 11/12, "feet"),
  41123. default: true
  41124. },
  41125. {
  41126. name: "Macro",
  41127. height: math.unit(395 + 7/12, "feet")
  41128. },
  41129. ]
  41130. ))
  41131. characterMakers.push(() => makeCharacter(
  41132. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41133. {
  41134. side: {
  41135. height: math.unit(10, "feet"),
  41136. weight: math.unit(1442, "lb"),
  41137. name: "Side",
  41138. image: {
  41139. source: "./media/characters/lotherakon/side.svg",
  41140. extra: 1604/1497,
  41141. bottom: 89/1693
  41142. }
  41143. },
  41144. },
  41145. [
  41146. {
  41147. name: "Mortal Interaction",
  41148. height: math.unit(10, "feet")
  41149. },
  41150. {
  41151. name: "Large",
  41152. height: math.unit(30, "feet"),
  41153. default: true
  41154. },
  41155. {
  41156. name: "Giant",
  41157. height: math.unit(100, "feet")
  41158. },
  41159. {
  41160. name: "Kaiju",
  41161. height: math.unit(300, "feet")
  41162. },
  41163. {
  41164. name: "Macro",
  41165. height: math.unit(1000, "feet")
  41166. },
  41167. {
  41168. name: "Macro+",
  41169. height: math.unit(3000, "feet")
  41170. },
  41171. {
  41172. name: "Megamacro",
  41173. height: math.unit(10000, "feet")
  41174. },
  41175. {
  41176. name: "City-Crushing",
  41177. height: math.unit(30000, "feet")
  41178. },
  41179. {
  41180. name: "Continent Cracker",
  41181. height: math.unit(30e6, "feet")
  41182. },
  41183. {
  41184. name: "Earth Eclipsing",
  41185. height: math.unit(3e8, "feet")
  41186. },
  41187. {
  41188. name: "Gas Giant Gulper",
  41189. height: math.unit(3e9, "feet")
  41190. },
  41191. {
  41192. name: "Sol-Swallowing",
  41193. height: math.unit(1e11, "feet")
  41194. },
  41195. {
  41196. name: "System Swallower",
  41197. height: math.unit(3e14, "feet")
  41198. },
  41199. {
  41200. name: "Galaxy Gulper",
  41201. height: math.unit(10, "galaxies")
  41202. },
  41203. {
  41204. name: "Light Universal",
  41205. height: math.unit(5, "universes")
  41206. },
  41207. {
  41208. name: "Universe Palm",
  41209. height: math.unit(20, "universes")
  41210. },
  41211. {
  41212. name: "Light Multiversal",
  41213. height: math.unit(5, "multiverses")
  41214. },
  41215. {
  41216. name: "Multiverse Palm",
  41217. height: math.unit(20, "multiverses")
  41218. },
  41219. {
  41220. name: "Inferno Incarnate",
  41221. height: math.unit(1e7, "multiverses")
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(8, "feet"),
  41230. weight: math.unit(1200, "lb"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/malithee/front.svg",
  41234. extra: 1675/1640,
  41235. bottom: 162/1837
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Mortal Interaction",
  41242. height: math.unit(8, "feet"),
  41243. default: true
  41244. },
  41245. {
  41246. name: "Large",
  41247. height: math.unit(24, "feet")
  41248. },
  41249. {
  41250. name: "Kaiju",
  41251. height: math.unit(240, "feet")
  41252. },
  41253. {
  41254. name: "Megamacro",
  41255. height: math.unit(8000, "feet")
  41256. },
  41257. {
  41258. name: "Continent Cracker",
  41259. height: math.unit(24e6, "feet")
  41260. },
  41261. {
  41262. name: "Earth-Eclipsing",
  41263. height: math.unit(2.4e8, "feet")
  41264. },
  41265. {
  41266. name: "Sol-Swallowing",
  41267. height: math.unit(8e10, "feet")
  41268. },
  41269. {
  41270. name: "Galaxy Gulper",
  41271. height: math.unit(8, "galaxies")
  41272. },
  41273. {
  41274. name: "Light Universal",
  41275. height: math.unit(4, "universes")
  41276. },
  41277. {
  41278. name: "Universe Atoms",
  41279. height: math.unit(1.829e9, "universes")
  41280. },
  41281. {
  41282. name: "Light Multiversal",
  41283. height: math.unit(4, "multiverses")
  41284. },
  41285. {
  41286. name: "Multiverse Atoms",
  41287. height: math.unit(1.829e9, "multiverses")
  41288. },
  41289. {
  41290. name: "Nigh-Omnipresence",
  41291. height: math.unit(8e261, "multiverses")
  41292. },
  41293. ]
  41294. ))
  41295. characterMakers.push(() => makeCharacter(
  41296. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41297. {
  41298. front: {
  41299. height: math.unit(10, "feet"),
  41300. weight: math.unit(1500, "lb"),
  41301. name: "Front",
  41302. image: {
  41303. source: "./media/characters/miles-thestia/front.svg",
  41304. extra: 1812/1727,
  41305. bottom: 86/1898
  41306. }
  41307. },
  41308. back: {
  41309. height: math.unit(10, "feet"),
  41310. weight: math.unit(1500, "lb"),
  41311. name: "Back",
  41312. image: {
  41313. source: "./media/characters/miles-thestia/back.svg",
  41314. extra: 1799/1690,
  41315. bottom: 47/1846
  41316. }
  41317. },
  41318. frontNsfw: {
  41319. height: math.unit(10, "feet"),
  41320. weight: math.unit(1500, "lb"),
  41321. name: "Front (NSFW)",
  41322. image: {
  41323. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41324. extra: 1812/1727,
  41325. bottom: 86/1898
  41326. }
  41327. },
  41328. },
  41329. [
  41330. {
  41331. name: "Mini-Macro",
  41332. height: math.unit(10, "feet"),
  41333. default: true
  41334. },
  41335. ]
  41336. ))
  41337. characterMakers.push(() => makeCharacter(
  41338. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41339. {
  41340. front: {
  41341. height: math.unit(25, "feet"),
  41342. name: "Front",
  41343. image: {
  41344. source: "./media/characters/titan-s-wulf/front.svg",
  41345. extra: 1560/1484,
  41346. bottom: 76/1636
  41347. }
  41348. },
  41349. },
  41350. [
  41351. {
  41352. name: "Smallest",
  41353. height: math.unit(25, "feet"),
  41354. default: true
  41355. },
  41356. {
  41357. name: "Normal",
  41358. height: math.unit(200, "feet")
  41359. },
  41360. {
  41361. name: "Macro",
  41362. height: math.unit(200000, "feet")
  41363. },
  41364. {
  41365. name: "Multiversal Original",
  41366. height: math.unit(10000, "multiverses")
  41367. },
  41368. ]
  41369. ))
  41370. characterMakers.push(() => makeCharacter(
  41371. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41372. {
  41373. front: {
  41374. height: math.unit(8, "feet"),
  41375. weight: math.unit(553, "lb"),
  41376. name: "Front",
  41377. image: {
  41378. source: "./media/characters/tawendeh/front.svg",
  41379. extra: 2365/2268,
  41380. bottom: 83/2448
  41381. }
  41382. },
  41383. frontClothed: {
  41384. height: math.unit(8, "feet"),
  41385. weight: math.unit(553, "lb"),
  41386. name: "Front (Clothed)",
  41387. image: {
  41388. source: "./media/characters/tawendeh/front-clothed.svg",
  41389. extra: 2365/2268,
  41390. bottom: 83/2448
  41391. }
  41392. },
  41393. back: {
  41394. height: math.unit(8, "feet"),
  41395. weight: math.unit(553, "lb"),
  41396. name: "Back",
  41397. image: {
  41398. source: "./media/characters/tawendeh/back.svg",
  41399. extra: 2397/2294,
  41400. bottom: 42/2439
  41401. }
  41402. },
  41403. },
  41404. [
  41405. {
  41406. name: "Mortal Interaction",
  41407. height: math.unit(8, "feet"),
  41408. default: true
  41409. },
  41410. {
  41411. name: "Giant",
  41412. height: math.unit(80, "feet")
  41413. },
  41414. {
  41415. name: "Macro",
  41416. height: math.unit(800, "feet")
  41417. },
  41418. {
  41419. name: "Megamacro",
  41420. height: math.unit(8000, "feet")
  41421. },
  41422. {
  41423. name: "City-Crushing",
  41424. height: math.unit(24000, "feet")
  41425. },
  41426. {
  41427. name: "Mountain-Mashing",
  41428. height: math.unit(80000, "feet")
  41429. },
  41430. {
  41431. name: "Nation Nemesis",
  41432. height: math.unit(8e6, "feet")
  41433. },
  41434. {
  41435. name: "Continent Cracker",
  41436. height: math.unit(24e6, "feet")
  41437. },
  41438. {
  41439. name: "Earth-Eclipsing",
  41440. height: math.unit(2.4e8, "feet")
  41441. },
  41442. {
  41443. name: "Gas Giant Gulper",
  41444. height: math.unit(2.4e9, "feet")
  41445. },
  41446. {
  41447. name: "Sol-Swallowing",
  41448. height: math.unit(8e10, "feet")
  41449. },
  41450. {
  41451. name: "Galaxy Gulper",
  41452. height: math.unit(8, "galaxies")
  41453. },
  41454. {
  41455. name: "Cosmos Churner",
  41456. height: math.unit(8, "universes")
  41457. },
  41458. {
  41459. name: "Omnipotent Otter",
  41460. height: math.unit(80, "universes")
  41461. },
  41462. ]
  41463. ))
  41464. characterMakers.push(() => makeCharacter(
  41465. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41466. {
  41467. front: {
  41468. height: math.unit(2.6, "meters"),
  41469. weight: math.unit(900, "kg"),
  41470. name: "Front",
  41471. image: {
  41472. source: "./media/characters/neesha/front.svg",
  41473. extra: 1803/1653,
  41474. bottom: 128/1931
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Normal",
  41481. height: math.unit(2.6, "meters"),
  41482. default: true
  41483. },
  41484. {
  41485. name: "Macro",
  41486. height: math.unit(50, "meters")
  41487. },
  41488. ]
  41489. ))
  41490. characterMakers.push(() => makeCharacter(
  41491. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41492. {
  41493. front: {
  41494. height: math.unit(5, "feet"),
  41495. weight: math.unit(185, "lb"),
  41496. name: "Front",
  41497. image: {
  41498. source: "./media/characters/kyera/front.svg",
  41499. extra: 1875/1790,
  41500. bottom: 96/1971
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Normal",
  41507. height: math.unit(5, "feet"),
  41508. default: true
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41514. {
  41515. front: {
  41516. height: math.unit(7 + 6/12, "feet"),
  41517. weight: math.unit(540, "lb"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/yuko/front.svg",
  41521. extra: 1282/1222,
  41522. bottom: 101/1383
  41523. }
  41524. },
  41525. frontClothed: {
  41526. height: math.unit(7 + 6/12, "feet"),
  41527. weight: math.unit(540, "lb"),
  41528. name: "Front (Clothed)",
  41529. image: {
  41530. source: "./media/characters/yuko/front-clothed.svg",
  41531. extra: 1282/1222,
  41532. bottom: 101/1383
  41533. }
  41534. },
  41535. },
  41536. [
  41537. {
  41538. name: "Normal",
  41539. height: math.unit(7 + 6/12, "feet"),
  41540. default: true
  41541. },
  41542. {
  41543. name: "Macro",
  41544. height: math.unit(26 + 9/12, "feet")
  41545. },
  41546. {
  41547. name: "Megamacro",
  41548. height: math.unit(300, "feet")
  41549. },
  41550. {
  41551. name: "Gigamacro",
  41552. height: math.unit(5000, "feet")
  41553. },
  41554. {
  41555. name: "Planetary",
  41556. height: math.unit(10000, "miles")
  41557. },
  41558. ]
  41559. ))
  41560. characterMakers.push(() => makeCharacter(
  41561. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41562. {
  41563. front: {
  41564. height: math.unit(8 + 2/12, "feet"),
  41565. weight: math.unit(600, "lb"),
  41566. name: "Front",
  41567. image: {
  41568. source: "./media/characters/deam-nitrel/front.svg",
  41569. extra: 1308/1234,
  41570. bottom: 125/1433
  41571. }
  41572. },
  41573. },
  41574. [
  41575. {
  41576. name: "Normal",
  41577. height: math.unit(8 + 2/12, "feet"),
  41578. default: true
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(6.1, "feet"),
  41587. weight: math.unit(180, "lb"),
  41588. name: "Front",
  41589. image: {
  41590. source: "./media/characters/skyress/front.svg",
  41591. extra: 1045/915,
  41592. bottom: 28/1073
  41593. }
  41594. },
  41595. maw: {
  41596. height: math.unit(1, "feet"),
  41597. name: "Maw",
  41598. image: {
  41599. source: "./media/characters/skyress/maw.svg"
  41600. }
  41601. },
  41602. },
  41603. [
  41604. {
  41605. name: "Normal",
  41606. height: math.unit(6.1, "feet"),
  41607. default: true
  41608. },
  41609. {
  41610. name: "Macro",
  41611. height: math.unit(200, "feet")
  41612. },
  41613. ]
  41614. ))
  41615. characterMakers.push(() => makeCharacter(
  41616. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41617. {
  41618. front: {
  41619. height: math.unit(4 + 2/12, "feet"),
  41620. weight: math.unit(40, "kg"),
  41621. name: "Front",
  41622. image: {
  41623. source: "./media/characters/amethyst-jones/front.svg",
  41624. extra: 1220/1150,
  41625. bottom: 101/1321
  41626. }
  41627. },
  41628. },
  41629. [
  41630. {
  41631. name: "Normal",
  41632. height: math.unit(4 + 2/12, "feet"),
  41633. default: true
  41634. },
  41635. ]
  41636. ))
  41637. characterMakers.push(() => makeCharacter(
  41638. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41639. {
  41640. front: {
  41641. height: math.unit(1.7, "m"),
  41642. weight: math.unit(135, "lb"),
  41643. name: "Front",
  41644. image: {
  41645. source: "./media/characters/jade/front.svg",
  41646. extra: 1818/1767,
  41647. bottom: 32/1850
  41648. }
  41649. },
  41650. back: {
  41651. height: math.unit(1.7, "m"),
  41652. weight: math.unit(135, "lb"),
  41653. name: "Back",
  41654. image: {
  41655. source: "./media/characters/jade/back.svg",
  41656. extra: 1869/1809,
  41657. bottom: 35/1904
  41658. }
  41659. },
  41660. hand: {
  41661. height: math.unit(0.24, "m"),
  41662. name: "Hand",
  41663. image: {
  41664. source: "./media/characters/jade/hand.svg"
  41665. }
  41666. },
  41667. foot: {
  41668. height: math.unit(0.263, "m"),
  41669. name: "Foot",
  41670. image: {
  41671. source: "./media/characters/jade/foot.svg"
  41672. }
  41673. },
  41674. dick: {
  41675. height: math.unit(0.47, "m"),
  41676. name: "Dick",
  41677. image: {
  41678. source: "./media/characters/jade/dick.svg"
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Micro",
  41685. height: math.unit(22, "cm")
  41686. },
  41687. {
  41688. name: "Normal",
  41689. height: math.unit(1.7, "m"),
  41690. default: true
  41691. },
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(152, "m")
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(100, "miles"),
  41703. weight: math.unit(20000, "tons"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/cookie/front.svg",
  41707. extra: 1125/1070,
  41708. bottom: 30/1155
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Big",
  41715. height: math.unit(50, "feet")
  41716. },
  41717. {
  41718. name: "Macro",
  41719. height: math.unit(100, "miles"),
  41720. default: true
  41721. },
  41722. {
  41723. name: "Megamacro",
  41724. height: math.unit(90000, "miles")
  41725. },
  41726. ]
  41727. ))
  41728. characterMakers.push(() => makeCharacter(
  41729. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41730. {
  41731. front: {
  41732. height: math.unit(6, "feet"),
  41733. weight: math.unit(145, "lb"),
  41734. name: "Front",
  41735. image: {
  41736. source: "./media/characters/farzian/front.svg",
  41737. extra: 1902/1693,
  41738. bottom: 108/2010
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Macro",
  41745. height: math.unit(500, "feet"),
  41746. default: true
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(3 + 6/12, "feet"),
  41755. weight: math.unit(50, "lb"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/kimberly-tilson/front.svg",
  41759. extra: 1400/1322,
  41760. bottom: 36/1436
  41761. }
  41762. },
  41763. back: {
  41764. height: math.unit(3 + 6/12, "feet"),
  41765. weight: math.unit(50, "lb"),
  41766. name: "Back",
  41767. image: {
  41768. source: "./media/characters/kimberly-tilson/back.svg",
  41769. extra: 1370/1307,
  41770. bottom: 20/1390
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Normal",
  41777. height: math.unit(3 + 6/12, "feet"),
  41778. default: true
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41784. {
  41785. front: {
  41786. height: math.unit(1148, "feet"),
  41787. weight: math.unit(34057, "lb"),
  41788. name: "Front",
  41789. image: {
  41790. source: "./media/characters/harthos/front.svg",
  41791. extra: 1391/1339,
  41792. bottom: 13/1404
  41793. }
  41794. },
  41795. },
  41796. [
  41797. {
  41798. name: "Macro",
  41799. height: math.unit(1148, "feet"),
  41800. default: true
  41801. },
  41802. ]
  41803. ))
  41804. characterMakers.push(() => makeCharacter(
  41805. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41806. {
  41807. front: {
  41808. height: math.unit(15, "feet"),
  41809. name: "Front",
  41810. image: {
  41811. source: "./media/characters/hypatia/front.svg",
  41812. extra: 1653/1591,
  41813. bottom: 79/1732
  41814. }
  41815. },
  41816. },
  41817. [
  41818. {
  41819. name: "Normal",
  41820. height: math.unit(15, "feet")
  41821. },
  41822. {
  41823. name: "Small",
  41824. height: math.unit(300, "feet")
  41825. },
  41826. {
  41827. name: "Macro",
  41828. height: math.unit(2500, "feet"),
  41829. default: true
  41830. },
  41831. {
  41832. name: "Mega Macro",
  41833. height: math.unit(1500, "miles")
  41834. },
  41835. {
  41836. name: "Giga Macro",
  41837. height: math.unit(1.5e6, "miles")
  41838. },
  41839. ]
  41840. ))
  41841. characterMakers.push(() => makeCharacter(
  41842. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41843. {
  41844. front: {
  41845. height: math.unit(6, "feet"),
  41846. weight: math.unit(200, "lb"),
  41847. name: "Front",
  41848. image: {
  41849. source: "./media/characters/wulver/front.svg",
  41850. extra: 1724/1632,
  41851. bottom: 130/1854
  41852. }
  41853. },
  41854. frontNsfw: {
  41855. height: math.unit(6, "feet"),
  41856. weight: math.unit(200, "lb"),
  41857. name: "Front (NSFW)",
  41858. image: {
  41859. source: "./media/characters/wulver/front-nsfw.svg",
  41860. extra: 1724/1632,
  41861. bottom: 130/1854
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Human-Sized",
  41868. height: math.unit(6, "feet")
  41869. },
  41870. {
  41871. name: "Normal",
  41872. height: math.unit(4, "meters"),
  41873. default: true
  41874. },
  41875. {
  41876. name: "Large",
  41877. height: math.unit(6, "m")
  41878. },
  41879. ]
  41880. ))
  41881. characterMakers.push(() => makeCharacter(
  41882. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41883. {
  41884. front: {
  41885. height: math.unit(7, "feet"),
  41886. name: "Front",
  41887. image: {
  41888. source: "./media/characters/maru/front.svg",
  41889. extra: 1595/1570,
  41890. bottom: 0/1595
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Normal",
  41897. height: math.unit(7, "feet"),
  41898. default: true
  41899. },
  41900. {
  41901. name: "Macro",
  41902. height: math.unit(700, "feet")
  41903. },
  41904. {
  41905. name: "Mega Macro",
  41906. height: math.unit(25, "miles")
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41912. {
  41913. front: {
  41914. height: math.unit(6, "feet"),
  41915. weight: math.unit(170, "lb"),
  41916. name: "Front",
  41917. image: {
  41918. source: "./media/characters/xenon/front.svg",
  41919. extra: 1376/1305,
  41920. bottom: 56/1432
  41921. }
  41922. },
  41923. back: {
  41924. height: math.unit(6, "feet"),
  41925. weight: math.unit(170, "lb"),
  41926. name: "Back",
  41927. image: {
  41928. source: "./media/characters/xenon/back.svg",
  41929. extra: 1328/1259,
  41930. bottom: 95/1423
  41931. }
  41932. },
  41933. maw: {
  41934. height: math.unit(0.52, "feet"),
  41935. name: "Maw",
  41936. image: {
  41937. source: "./media/characters/xenon/maw.svg"
  41938. }
  41939. },
  41940. handLeft: {
  41941. height: math.unit(0.82 * 169 / 153, "feet"),
  41942. name: "Hand (Left)",
  41943. image: {
  41944. source: "./media/characters/xenon/hand-left.svg"
  41945. }
  41946. },
  41947. handRight: {
  41948. height: math.unit(0.82, "feet"),
  41949. name: "Hand (Right)",
  41950. image: {
  41951. source: "./media/characters/xenon/hand-right.svg"
  41952. }
  41953. },
  41954. footLeft: {
  41955. height: math.unit(1.13, "feet"),
  41956. name: "Foot (Left)",
  41957. image: {
  41958. source: "./media/characters/xenon/foot-left.svg"
  41959. }
  41960. },
  41961. footRight: {
  41962. height: math.unit(1.13 * 194 / 196, "feet"),
  41963. name: "Foot (Right)",
  41964. image: {
  41965. source: "./media/characters/xenon/foot-right.svg"
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Micro",
  41972. height: math.unit(0.8, "inches")
  41973. },
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(6, "feet")
  41977. },
  41978. {
  41979. name: "Macro",
  41980. height: math.unit(50, "feet"),
  41981. default: true
  41982. },
  41983. {
  41984. name: "Macro+",
  41985. height: math.unit(250, "feet")
  41986. },
  41987. {
  41988. name: "Megamacro",
  41989. height: math.unit(1500, "feet")
  41990. },
  41991. ]
  41992. ))
  41993. characterMakers.push(() => makeCharacter(
  41994. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41995. {
  41996. front: {
  41997. height: math.unit(7 + 5/12, "feet"),
  41998. name: "Front",
  41999. image: {
  42000. source: "./media/characters/zane/front.svg",
  42001. extra: 1260/1203,
  42002. bottom: 94/1354
  42003. }
  42004. },
  42005. back: {
  42006. height: math.unit(5.05, "feet"),
  42007. name: "Back",
  42008. image: {
  42009. source: "./media/characters/zane/back.svg",
  42010. extra: 893/829,
  42011. bottom: 30/923
  42012. }
  42013. },
  42014. werewolf: {
  42015. height: math.unit(11, "feet"),
  42016. name: "Werewolf",
  42017. image: {
  42018. source: "./media/characters/zane/werewolf.svg",
  42019. extra: 1383/1323,
  42020. bottom: 89/1472
  42021. }
  42022. },
  42023. foot: {
  42024. height: math.unit(1.46, "feet"),
  42025. name: "Foot",
  42026. image: {
  42027. source: "./media/characters/zane/foot.svg"
  42028. }
  42029. },
  42030. footFront: {
  42031. height: math.unit(0.784, "feet"),
  42032. name: "Foot (Front)",
  42033. image: {
  42034. source: "./media/characters/zane/foot-front.svg"
  42035. }
  42036. },
  42037. dick: {
  42038. height: math.unit(1.95, "feet"),
  42039. name: "Dick",
  42040. image: {
  42041. source: "./media/characters/zane/dick.svg"
  42042. }
  42043. },
  42044. dickWerewolf: {
  42045. height: math.unit(3.77, "feet"),
  42046. name: "Dick (Werewolf)",
  42047. image: {
  42048. source: "./media/characters/zane/dick.svg"
  42049. }
  42050. },
  42051. },
  42052. [
  42053. {
  42054. name: "Normal",
  42055. height: math.unit(7 + 5/12, "feet"),
  42056. default: true
  42057. },
  42058. ]
  42059. ))
  42060. characterMakers.push(() => makeCharacter(
  42061. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42062. {
  42063. front: {
  42064. height: math.unit(6 + 2/12, "feet"),
  42065. weight: math.unit(284, "lb"),
  42066. name: "Front",
  42067. image: {
  42068. source: "./media/characters/benni-desparque/front.svg",
  42069. extra: 1353/1126,
  42070. bottom: 69/1422
  42071. }
  42072. },
  42073. },
  42074. [
  42075. {
  42076. name: "Civilian",
  42077. height: math.unit(6 + 2/12, "feet")
  42078. },
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(98, "feet"),
  42082. default: true
  42083. },
  42084. {
  42085. name: "Kaiju Fighter",
  42086. height: math.unit(268, "feet")
  42087. },
  42088. ]
  42089. ))
  42090. characterMakers.push(() => makeCharacter(
  42091. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42092. {
  42093. front: {
  42094. height: math.unit(5, "feet"),
  42095. weight: math.unit(105, "lb"),
  42096. name: "Front",
  42097. image: {
  42098. source: "./media/characters/maxine/front.svg",
  42099. extra: 1386/1250,
  42100. bottom: 71/1457
  42101. }
  42102. },
  42103. },
  42104. [
  42105. {
  42106. name: "Normal",
  42107. height: math.unit(5, "feet"),
  42108. default: true
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42114. {
  42115. front: {
  42116. height: math.unit(11 + 7/12, "feet"),
  42117. weight: math.unit(9576, "lb"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/scaly/front.svg",
  42121. extra: 888/867,
  42122. bottom: 36/924
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Normal",
  42129. height: math.unit(11 + 7/12, "feet"),
  42130. default: true
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42136. {
  42137. front: {
  42138. height: math.unit(6 + 3/12, "feet"),
  42139. name: "Front",
  42140. image: {
  42141. source: "./media/characters/saelria/front.svg",
  42142. extra: 1243/1138,
  42143. bottom: 46/1289
  42144. }
  42145. },
  42146. },
  42147. [
  42148. {
  42149. name: "Micro",
  42150. height: math.unit(6, "inches"),
  42151. },
  42152. {
  42153. name: "Normal",
  42154. height: math.unit(6 + 3/12, "feet"),
  42155. default: true
  42156. },
  42157. {
  42158. name: "Macro",
  42159. height: math.unit(25, "feet")
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42165. {
  42166. front: {
  42167. height: math.unit(80, "meters"),
  42168. weight: math.unit(7000, "tonnes"),
  42169. name: "Front",
  42170. image: {
  42171. source: "./media/characters/tef/front.svg",
  42172. extra: 2036/1991,
  42173. bottom: 54/2090
  42174. }
  42175. },
  42176. back: {
  42177. height: math.unit(80, "meters"),
  42178. weight: math.unit(7000, "tonnes"),
  42179. name: "Back",
  42180. image: {
  42181. source: "./media/characters/tef/back.svg",
  42182. extra: 2036/1991,
  42183. bottom: 54/2090
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Macro",
  42190. height: math.unit(80, "meters"),
  42191. default: true
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42197. {
  42198. front: {
  42199. height: math.unit(13, "feet"),
  42200. weight: math.unit(6, "tons"),
  42201. name: "Front",
  42202. image: {
  42203. source: "./media/characters/rover/front.svg",
  42204. extra: 1233/1156,
  42205. bottom: 50/1283
  42206. }
  42207. },
  42208. back: {
  42209. height: math.unit(13, "feet"),
  42210. weight: math.unit(6, "tons"),
  42211. name: "Back",
  42212. image: {
  42213. source: "./media/characters/rover/back.svg",
  42214. extra: 1327/1258,
  42215. bottom: 39/1366
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Normal",
  42222. height: math.unit(13, "feet"),
  42223. default: true
  42224. },
  42225. {
  42226. name: "Macro",
  42227. height: math.unit(1300, "feet")
  42228. },
  42229. {
  42230. name: "Megamacro",
  42231. height: math.unit(1300, "miles")
  42232. },
  42233. {
  42234. name: "Gigamacro",
  42235. height: math.unit(1300000, "miles")
  42236. },
  42237. ]
  42238. ))
  42239. characterMakers.push(() => makeCharacter(
  42240. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42241. {
  42242. front: {
  42243. height: math.unit(6, "feet"),
  42244. weight: math.unit(150, "lb"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/ariz/front.svg",
  42248. extra: 1401/1346,
  42249. bottom: 5/1406
  42250. }
  42251. },
  42252. },
  42253. [
  42254. {
  42255. name: "Normal",
  42256. height: math.unit(10, "feet"),
  42257. default: true
  42258. },
  42259. ]
  42260. ))
  42261. characterMakers.push(() => makeCharacter(
  42262. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42263. {
  42264. front: {
  42265. height: math.unit(6, "feet"),
  42266. weight: math.unit(140, "lb"),
  42267. name: "Front",
  42268. image: {
  42269. source: "./media/characters/sigrun/front.svg",
  42270. extra: 1418/1359,
  42271. bottom: 27/1445
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Macro",
  42278. height: math.unit(35, "feet"),
  42279. default: true
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(6, "feet"),
  42288. weight: math.unit(150, "lb"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/numin/front.svg",
  42292. extra: 1433/1388,
  42293. bottom: 12/1445
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Macro",
  42300. height: math.unit(21.5, "km"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42307. {
  42308. front: {
  42309. height: math.unit(6, "feet"),
  42310. weight: math.unit(463, "lb"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/melwa/front.svg",
  42314. extra: 1307/1248,
  42315. bottom: 93/1400
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Macro",
  42322. height: math.unit(50, "meters"),
  42323. default: true
  42324. },
  42325. ]
  42326. ))
  42327. characterMakers.push(() => makeCharacter(
  42328. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42329. {
  42330. front: {
  42331. height: math.unit(325, "feet"),
  42332. name: "Front",
  42333. image: {
  42334. source: "./media/characters/zorkaiju/front.svg",
  42335. extra: 1955/1814,
  42336. bottom: 40/1995
  42337. }
  42338. },
  42339. frontExtended: {
  42340. height: math.unit(325, "feet"),
  42341. name: "Front (Extended)",
  42342. image: {
  42343. source: "./media/characters/zorkaiju/front-extended.svg",
  42344. extra: 1955/1814,
  42345. bottom: 40/1995
  42346. }
  42347. },
  42348. side: {
  42349. height: math.unit(325, "feet"),
  42350. name: "Side",
  42351. image: {
  42352. source: "./media/characters/zorkaiju/side.svg",
  42353. extra: 1495/1396,
  42354. bottom: 17/1512
  42355. }
  42356. },
  42357. sideExtended: {
  42358. height: math.unit(325, "feet"),
  42359. name: "Side (Extended)",
  42360. image: {
  42361. source: "./media/characters/zorkaiju/side-extended.svg",
  42362. extra: 1495/1396,
  42363. bottom: 17/1512
  42364. }
  42365. },
  42366. back: {
  42367. height: math.unit(325, "feet"),
  42368. name: "Back",
  42369. image: {
  42370. source: "./media/characters/zorkaiju/back.svg",
  42371. extra: 1959/1821,
  42372. bottom: 31/1990
  42373. }
  42374. },
  42375. backExtended: {
  42376. height: math.unit(325, "feet"),
  42377. name: "Back (Extended)",
  42378. image: {
  42379. source: "./media/characters/zorkaiju/back-extended.svg",
  42380. extra: 1959/1821,
  42381. bottom: 31/1990
  42382. }
  42383. },
  42384. hand: {
  42385. height: math.unit(58.4, "feet"),
  42386. name: "Hand",
  42387. image: {
  42388. source: "./media/characters/zorkaiju/hand.svg"
  42389. }
  42390. },
  42391. handExtended: {
  42392. height: math.unit(61.4, "feet"),
  42393. name: "Hand (Extended)",
  42394. image: {
  42395. source: "./media/characters/zorkaiju/hand-extended.svg"
  42396. }
  42397. },
  42398. foot: {
  42399. height: math.unit(95, "feet"),
  42400. name: "Foot",
  42401. image: {
  42402. source: "./media/characters/zorkaiju/foot.svg"
  42403. }
  42404. },
  42405. leftArm: {
  42406. height: math.unit(59, "feet"),
  42407. name: "Left Arm",
  42408. image: {
  42409. source: "./media/characters/zorkaiju/left-arm.svg"
  42410. }
  42411. },
  42412. rightArm: {
  42413. height: math.unit(59, "feet"),
  42414. name: "Right Arm",
  42415. image: {
  42416. source: "./media/characters/zorkaiju/right-arm.svg"
  42417. }
  42418. },
  42419. leftArmExtended: {
  42420. height: math.unit(59 * 1.033546, "feet"),
  42421. name: "Left Arm (Extended)",
  42422. image: {
  42423. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42424. }
  42425. },
  42426. rightArmExtended: {
  42427. height: math.unit(59 * 1.0496, "feet"),
  42428. name: "Right Arm (Extended)",
  42429. image: {
  42430. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42431. }
  42432. },
  42433. tail: {
  42434. height: math.unit(104, "feet"),
  42435. name: "Tail",
  42436. image: {
  42437. source: "./media/characters/zorkaiju/tail.svg"
  42438. }
  42439. },
  42440. tailExtended: {
  42441. height: math.unit(104, "feet"),
  42442. name: "Tail (Extended)",
  42443. image: {
  42444. source: "./media/characters/zorkaiju/tail-extended.svg"
  42445. }
  42446. },
  42447. tailBottom: {
  42448. height: math.unit(104, "feet"),
  42449. name: "Tail Bottom",
  42450. image: {
  42451. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42452. }
  42453. },
  42454. crystal: {
  42455. height: math.unit(27.54, "feet"),
  42456. name: "Crystal",
  42457. image: {
  42458. source: "./media/characters/zorkaiju/crystal.svg"
  42459. }
  42460. },
  42461. },
  42462. [
  42463. {
  42464. name: "Kaiju",
  42465. height: math.unit(325, "feet"),
  42466. default: true
  42467. },
  42468. ]
  42469. ))
  42470. characterMakers.push(() => makeCharacter(
  42471. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42472. {
  42473. front: {
  42474. height: math.unit(6 + 1/12, "feet"),
  42475. weight: math.unit(115, "lb"),
  42476. name: "Front",
  42477. image: {
  42478. source: "./media/characters/bailey-belfry/front.svg",
  42479. extra: 1240/1121,
  42480. bottom: 101/1341
  42481. }
  42482. },
  42483. },
  42484. [
  42485. {
  42486. name: "Normal",
  42487. height: math.unit(6 + 1/12, "feet"),
  42488. default: true
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42494. {
  42495. side: {
  42496. height: math.unit(4, "meters"),
  42497. weight: math.unit(250, "kg"),
  42498. name: "Side",
  42499. image: {
  42500. source: "./media/characters/blacky/side.svg",
  42501. extra: 1027/919,
  42502. bottom: 43/1070
  42503. }
  42504. },
  42505. maw: {
  42506. height: math.unit(1, "meters"),
  42507. name: "Maw",
  42508. image: {
  42509. source: "./media/characters/blacky/maw.svg"
  42510. }
  42511. },
  42512. paw: {
  42513. height: math.unit(1, "meters"),
  42514. name: "Paw",
  42515. image: {
  42516. source: "./media/characters/blacky/paw.svg"
  42517. }
  42518. },
  42519. },
  42520. [
  42521. {
  42522. name: "Normal",
  42523. height: math.unit(4, "meters"),
  42524. default: true
  42525. },
  42526. ]
  42527. ))
  42528. characterMakers.push(() => makeCharacter(
  42529. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42530. {
  42531. front: {
  42532. height: math.unit(170, "cm"),
  42533. weight: math.unit(66, "kg"),
  42534. name: "Front",
  42535. image: {
  42536. source: "./media/characters/thux-ei/front.svg",
  42537. extra: 1109/1011,
  42538. bottom: 8/1117
  42539. }
  42540. },
  42541. },
  42542. [
  42543. {
  42544. name: "Normal",
  42545. height: math.unit(170, "cm"),
  42546. default: true
  42547. },
  42548. ]
  42549. ))
  42550. characterMakers.push(() => makeCharacter(
  42551. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42552. {
  42553. front: {
  42554. height: math.unit(5, "feet"),
  42555. weight: math.unit(120, "lb"),
  42556. name: "Front",
  42557. image: {
  42558. source: "./media/characters/roxanne-voltaire/front.svg",
  42559. extra: 1901/1779,
  42560. bottom: 53/1954
  42561. }
  42562. },
  42563. },
  42564. [
  42565. {
  42566. name: "Normal",
  42567. height: math.unit(5, "feet"),
  42568. default: true
  42569. },
  42570. {
  42571. name: "Giant",
  42572. height: math.unit(50, "feet")
  42573. },
  42574. {
  42575. name: "Titan",
  42576. height: math.unit(500, "feet")
  42577. },
  42578. {
  42579. name: "Macro",
  42580. height: math.unit(5000, "feet")
  42581. },
  42582. {
  42583. name: "Megamacro",
  42584. height: math.unit(50000, "feet")
  42585. },
  42586. {
  42587. name: "Gigamacro",
  42588. height: math.unit(500000, "feet")
  42589. },
  42590. {
  42591. name: "Teramacro",
  42592. height: math.unit(5e6, "feet")
  42593. },
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42598. {
  42599. front: {
  42600. height: math.unit(6 + 2/12, "feet"),
  42601. name: "Front",
  42602. image: {
  42603. source: "./media/characters/squeaks/front.svg",
  42604. extra: 1823/1768,
  42605. bottom: 138/1961
  42606. }
  42607. },
  42608. },
  42609. [
  42610. {
  42611. name: "Micro",
  42612. height: math.unit(0.5, "inches")
  42613. },
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(6 + 2/12, "feet"),
  42617. default: true
  42618. },
  42619. {
  42620. name: "Macro",
  42621. height: math.unit(600, "feet")
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42627. {
  42628. front: {
  42629. height: math.unit(1.72, "meters"),
  42630. name: "Front",
  42631. image: {
  42632. source: "./media/characters/archinger/front.svg",
  42633. extra: 1861/1675,
  42634. bottom: 125/1986
  42635. }
  42636. },
  42637. back: {
  42638. height: math.unit(1.72, "meters"),
  42639. name: "Back",
  42640. image: {
  42641. source: "./media/characters/archinger/back.svg",
  42642. extra: 1844/1701,
  42643. bottom: 104/1948
  42644. }
  42645. },
  42646. cock: {
  42647. height: math.unit(0.59, "feet"),
  42648. name: "Cock",
  42649. image: {
  42650. source: "./media/characters/archinger/cock.svg"
  42651. }
  42652. },
  42653. },
  42654. [
  42655. {
  42656. name: "Normal",
  42657. height: math.unit(1.72, "meters"),
  42658. default: true
  42659. },
  42660. {
  42661. name: "Macro",
  42662. height: math.unit(84, "meters")
  42663. },
  42664. {
  42665. name: "Macro+",
  42666. height: math.unit(112, "meters")
  42667. },
  42668. {
  42669. name: "Macro++",
  42670. height: math.unit(960, "meters")
  42671. },
  42672. {
  42673. name: "Macro+++",
  42674. height: math.unit(4, "km")
  42675. },
  42676. {
  42677. name: "Macro++++",
  42678. height: math.unit(48, "km")
  42679. },
  42680. {
  42681. name: "Macro+++++",
  42682. height: math.unit(4500, "km")
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42688. {
  42689. front: {
  42690. height: math.unit(5 + 5/12, "feet"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/alsnapz/front.svg",
  42694. extra: 1157/1065,
  42695. bottom: 42/1199
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Normal",
  42702. height: math.unit(5 + 5/12, "feet"),
  42703. default: true
  42704. },
  42705. ]
  42706. ))
  42707. characterMakers.push(() => makeCharacter(
  42708. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42709. {
  42710. side: {
  42711. height: math.unit(3.2, "earths"),
  42712. name: "Side",
  42713. image: {
  42714. source: "./media/characters/mag/side.svg",
  42715. extra: 1331/1008,
  42716. bottom: 52/1383
  42717. }
  42718. },
  42719. wing: {
  42720. height: math.unit(1.94, "earths"),
  42721. name: "Wing",
  42722. image: {
  42723. source: "./media/characters/mag/wing.svg"
  42724. }
  42725. },
  42726. dick: {
  42727. height: math.unit(1.8, "earths"),
  42728. name: "Dick",
  42729. image: {
  42730. source: "./media/characters/mag/dick.svg"
  42731. }
  42732. },
  42733. ass: {
  42734. height: math.unit(1.33, "earths"),
  42735. name: "Ass",
  42736. image: {
  42737. source: "./media/characters/mag/ass.svg"
  42738. }
  42739. },
  42740. head: {
  42741. height: math.unit(1.1, "earths"),
  42742. name: "Head",
  42743. image: {
  42744. source: "./media/characters/mag/head.svg"
  42745. }
  42746. },
  42747. maw: {
  42748. height: math.unit(1.62, "earths"),
  42749. name: "Maw",
  42750. image: {
  42751. source: "./media/characters/mag/maw.svg"
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Small",
  42758. height: math.unit(162, "feet")
  42759. },
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(3.2, "earths"),
  42763. default: true
  42764. },
  42765. ]
  42766. ))
  42767. characterMakers.push(() => makeCharacter(
  42768. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42769. {
  42770. front: {
  42771. height: math.unit(512, "feet"),
  42772. weight: math.unit(63509, "tonnes"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/vorrel-harroc/front.svg",
  42776. extra: 1075/1063,
  42777. bottom: 62/1137
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Normal",
  42784. height: math.unit(10, "feet")
  42785. },
  42786. {
  42787. name: "Macro",
  42788. height: math.unit(512, "feet"),
  42789. default: true
  42790. },
  42791. {
  42792. name: "Megamacro",
  42793. height: math.unit(256, "miles")
  42794. },
  42795. {
  42796. name: "Gigamacro",
  42797. height: math.unit(4096, "miles")
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42803. {
  42804. side: {
  42805. height: math.unit(50, "feet"),
  42806. name: "Side",
  42807. image: {
  42808. source: "./media/characters/froimar/side.svg",
  42809. extra: 855/638,
  42810. bottom: 99/954
  42811. }
  42812. },
  42813. },
  42814. [
  42815. {
  42816. name: "Macro",
  42817. height: math.unit(50, "feet"),
  42818. default: true
  42819. },
  42820. ]
  42821. ))
  42822. characterMakers.push(() => makeCharacter(
  42823. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42824. {
  42825. front: {
  42826. height: math.unit(210, "miles"),
  42827. name: "Front",
  42828. image: {
  42829. source: "./media/characters/timothy/front.svg",
  42830. extra: 1007/943,
  42831. bottom: 62/1069
  42832. }
  42833. },
  42834. frontSkirt: {
  42835. height: math.unit(210, "miles"),
  42836. name: "Front (Skirt)",
  42837. image: {
  42838. source: "./media/characters/timothy/front-skirt.svg",
  42839. extra: 1007/943,
  42840. bottom: 62/1069
  42841. }
  42842. },
  42843. frontCoat: {
  42844. height: math.unit(210, "miles"),
  42845. name: "Front (Coat)",
  42846. image: {
  42847. source: "./media/characters/timothy/front-coat.svg",
  42848. extra: 1007/943,
  42849. bottom: 62/1069
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Macro",
  42856. height: math.unit(210, "miles"),
  42857. default: true
  42858. },
  42859. {
  42860. name: "Megamacro",
  42861. height: math.unit(210000, "miles")
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42867. {
  42868. front: {
  42869. height: math.unit(188, "feet"),
  42870. name: "Front",
  42871. image: {
  42872. source: "./media/characters/pyotr/front.svg",
  42873. extra: 1912/1826,
  42874. bottom: 18/1930
  42875. }
  42876. },
  42877. },
  42878. [
  42879. {
  42880. name: "Macro",
  42881. height: math.unit(188, "feet"),
  42882. default: true
  42883. },
  42884. {
  42885. name: "Megamacro",
  42886. height: math.unit(8, "miles")
  42887. },
  42888. ]
  42889. ))
  42890. characterMakers.push(() => makeCharacter(
  42891. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42892. {
  42893. side: {
  42894. height: math.unit(10, "feet"),
  42895. weight: math.unit(4500, "lb"),
  42896. name: "Side",
  42897. image: {
  42898. source: "./media/characters/ackart/side.svg",
  42899. extra: 1776/1668,
  42900. bottom: 116/1892
  42901. }
  42902. },
  42903. },
  42904. [
  42905. {
  42906. name: "Normal",
  42907. height: math.unit(10, "feet"),
  42908. default: true
  42909. },
  42910. ]
  42911. ))
  42912. characterMakers.push(() => makeCharacter(
  42913. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42914. {
  42915. side: {
  42916. height: math.unit(21, "feet"),
  42917. name: "Side",
  42918. image: {
  42919. source: "./media/characters/nolow/side.svg",
  42920. extra: 1484/1434,
  42921. bottom: 85/1569
  42922. }
  42923. },
  42924. sideErect: {
  42925. height: math.unit(21, "feet"),
  42926. name: "Side-erect",
  42927. image: {
  42928. source: "./media/characters/nolow/side-erect.svg",
  42929. extra: 1484/1434,
  42930. bottom: 85/1569
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Regular",
  42937. height: math.unit(12, "feet")
  42938. },
  42939. {
  42940. name: "Big Chee",
  42941. height: math.unit(21, "feet"),
  42942. default: true
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42948. {
  42949. front: {
  42950. height: math.unit(7, "feet"),
  42951. weight: math.unit(250, "lb"),
  42952. name: "Front",
  42953. image: {
  42954. source: "./media/characters/nines/front.svg",
  42955. extra: 1741/1607,
  42956. bottom: 41/1782
  42957. }
  42958. },
  42959. side: {
  42960. height: math.unit(7, "feet"),
  42961. weight: math.unit(250, "lb"),
  42962. name: "Side",
  42963. image: {
  42964. source: "./media/characters/nines/side.svg",
  42965. extra: 1854/1735,
  42966. bottom: 93/1947
  42967. }
  42968. },
  42969. back: {
  42970. height: math.unit(7, "feet"),
  42971. weight: math.unit(250, "lb"),
  42972. name: "Back",
  42973. image: {
  42974. source: "./media/characters/nines/back.svg",
  42975. extra: 1748/1615,
  42976. bottom: 20/1768
  42977. }
  42978. },
  42979. },
  42980. [
  42981. {
  42982. name: "Megamacro",
  42983. height: math.unit(99, "km"),
  42984. default: true
  42985. },
  42986. ]
  42987. ))
  42988. characterMakers.push(() => makeCharacter(
  42989. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42990. {
  42991. front: {
  42992. height: math.unit(5 + 10/12, "feet"),
  42993. weight: math.unit(210, "lb"),
  42994. name: "Front",
  42995. image: {
  42996. source: "./media/characters/zenith/front.svg",
  42997. extra: 1531/1452,
  42998. bottom: 198/1729
  42999. }
  43000. },
  43001. back: {
  43002. height: math.unit(5 + 10/12, "feet"),
  43003. weight: math.unit(210, "lb"),
  43004. name: "Back",
  43005. image: {
  43006. source: "./media/characters/zenith/back.svg",
  43007. extra: 1571/1487,
  43008. bottom: 75/1646
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(5 + 10/12, "feet"),
  43016. default: true
  43017. }
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43022. {
  43023. front: {
  43024. height: math.unit(4, "feet"),
  43025. weight: math.unit(60, "lb"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/jasper/front.svg",
  43029. extra: 1450/1379,
  43030. bottom: 19/1469
  43031. }
  43032. },
  43033. },
  43034. [
  43035. {
  43036. name: "Normal",
  43037. height: math.unit(4, "feet"),
  43038. default: true
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43044. {
  43045. front: {
  43046. height: math.unit(6 + 5/12, "feet"),
  43047. weight: math.unit(290, "lb"),
  43048. name: "Front",
  43049. image: {
  43050. source: "./media/characters/tiberius-thyben/front.svg",
  43051. extra: 757/739,
  43052. bottom: 39/796
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Micro",
  43059. height: math.unit(1.5, "inches")
  43060. },
  43061. {
  43062. name: "Normal",
  43063. height: math.unit(6 + 5/12, "feet"),
  43064. default: true
  43065. },
  43066. {
  43067. name: "Macro",
  43068. height: math.unit(300, "feet")
  43069. },
  43070. ]
  43071. ))
  43072. characterMakers.push(() => makeCharacter(
  43073. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43074. {
  43075. front: {
  43076. height: math.unit(5 + 6/12, "feet"),
  43077. weight: math.unit(60, "kg"),
  43078. name: "Front",
  43079. image: {
  43080. source: "./media/characters/sabre/front.svg",
  43081. extra: 738/671,
  43082. bottom: 27/765
  43083. }
  43084. },
  43085. },
  43086. [
  43087. {
  43088. name: "Teeny",
  43089. height: math.unit(2, "inches")
  43090. },
  43091. {
  43092. name: "Smol",
  43093. height: math.unit(8, "inches")
  43094. },
  43095. {
  43096. name: "Normal",
  43097. height: math.unit(5 + 6/12, "feet"),
  43098. default: true
  43099. },
  43100. {
  43101. name: "Mini-Macro",
  43102. height: math.unit(15, "feet")
  43103. },
  43104. {
  43105. name: "Macro",
  43106. height: math.unit(50, "feet")
  43107. },
  43108. ]
  43109. ))
  43110. characterMakers.push(() => makeCharacter(
  43111. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43112. {
  43113. front: {
  43114. height: math.unit(6 + 4/12, "feet"),
  43115. weight: math.unit(170, "lb"),
  43116. name: "Front",
  43117. image: {
  43118. source: "./media/characters/charlie/front.svg",
  43119. extra: 1348/1228,
  43120. bottom: 15/1363
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Macro",
  43127. height: math.unit(1700, "meters"),
  43128. default: true
  43129. },
  43130. {
  43131. name: "MegaMacro",
  43132. height: math.unit(20400, "meters")
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(6 + 3/12, "feet"),
  43141. weight: math.unit(185, "lb"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/susan-grant/front.svg",
  43145. extra: 1351/1327,
  43146. bottom: 26/1377
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "Normal",
  43153. height: math.unit(6 + 3/12, "feet"),
  43154. default: true
  43155. },
  43156. {
  43157. name: "Macro",
  43158. height: math.unit(225, "feet")
  43159. },
  43160. {
  43161. name: "Macro+",
  43162. height: math.unit(900, "feet")
  43163. },
  43164. {
  43165. name: "MegaMacro",
  43166. height: math.unit(14400, "feet")
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43172. {
  43173. front: {
  43174. height: math.unit(5 + 4/12, "feet"),
  43175. weight: math.unit(110, "lb"),
  43176. name: "Front",
  43177. image: {
  43178. source: "./media/characters/axel-isanov/front.svg",
  43179. extra: 1096/1065,
  43180. bottom: 13/1109
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Normal",
  43187. height: math.unit(5 + 4/12, "feet"),
  43188. default: true
  43189. },
  43190. ]
  43191. ))
  43192. characterMakers.push(() => makeCharacter(
  43193. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43194. {
  43195. front: {
  43196. height: math.unit(9, "feet"),
  43197. weight: math.unit(467, "lb"),
  43198. name: "Front",
  43199. image: {
  43200. source: "./media/characters/necahual/front.svg",
  43201. extra: 920/873,
  43202. bottom: 26/946
  43203. }
  43204. },
  43205. back: {
  43206. height: math.unit(9, "feet"),
  43207. weight: math.unit(467, "lb"),
  43208. name: "Back",
  43209. image: {
  43210. source: "./media/characters/necahual/back.svg",
  43211. extra: 930/884,
  43212. bottom: 16/946
  43213. }
  43214. },
  43215. frontUnderwear: {
  43216. height: math.unit(9, "feet"),
  43217. weight: math.unit(467, "lb"),
  43218. name: "Front (Underwear)",
  43219. image: {
  43220. source: "./media/characters/necahual/front-underwear.svg",
  43221. extra: 920/873,
  43222. bottom: 26/946
  43223. }
  43224. },
  43225. frontDressed: {
  43226. height: math.unit(9, "feet"),
  43227. weight: math.unit(467, "lb"),
  43228. name: "Front (Dressed)",
  43229. image: {
  43230. source: "./media/characters/necahual/front-dressed.svg",
  43231. extra: 920/873,
  43232. bottom: 26/946
  43233. }
  43234. },
  43235. },
  43236. [
  43237. {
  43238. name: "Comprsesed",
  43239. height: math.unit(9, "feet")
  43240. },
  43241. {
  43242. name: "Natural",
  43243. height: math.unit(15, "feet"),
  43244. default: true
  43245. },
  43246. {
  43247. name: "Boosted",
  43248. height: math.unit(50, "feet")
  43249. },
  43250. {
  43251. name: "Boosted+",
  43252. height: math.unit(150, "feet")
  43253. },
  43254. {
  43255. name: "Max",
  43256. height: math.unit(500, "feet")
  43257. },
  43258. ]
  43259. ))
  43260. characterMakers.push(() => makeCharacter(
  43261. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43262. {
  43263. front: {
  43264. height: math.unit(22 + 1/12, "feet"),
  43265. weight: math.unit(3200, "lb"),
  43266. name: "Front",
  43267. image: {
  43268. source: "./media/characters/theo-acacia/front.svg",
  43269. extra: 1796/1741,
  43270. bottom: 83/1879
  43271. }
  43272. },
  43273. frontUnderwear: {
  43274. height: math.unit(22 + 1/12, "feet"),
  43275. weight: math.unit(3200, "lb"),
  43276. name: "Front (Underwear)",
  43277. image: {
  43278. source: "./media/characters/theo-acacia/front-underwear.svg",
  43279. extra: 1796/1741,
  43280. bottom: 83/1879
  43281. }
  43282. },
  43283. frontNude: {
  43284. height: math.unit(22 + 1/12, "feet"),
  43285. weight: math.unit(3200, "lb"),
  43286. name: "Front (Nude)",
  43287. image: {
  43288. source: "./media/characters/theo-acacia/front-nude.svg",
  43289. extra: 1796/1741,
  43290. bottom: 83/1879
  43291. }
  43292. },
  43293. },
  43294. [
  43295. {
  43296. name: "Normal",
  43297. height: math.unit(22 + 1/12, "feet"),
  43298. default: true
  43299. },
  43300. ]
  43301. ))
  43302. characterMakers.push(() => makeCharacter(
  43303. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43304. {
  43305. front: {
  43306. height: math.unit(20, "feet"),
  43307. name: "Front",
  43308. image: {
  43309. source: "./media/characters/astra/front.svg",
  43310. extra: 1850/1714,
  43311. bottom: 106/1956
  43312. }
  43313. },
  43314. frontUndressed: {
  43315. height: math.unit(20, "feet"),
  43316. name: "Front (Undressed)",
  43317. image: {
  43318. source: "./media/characters/astra/front-undressed.svg",
  43319. extra: 1926/1749,
  43320. bottom: 0/1926
  43321. }
  43322. },
  43323. hand: {
  43324. height: math.unit(1.53, "feet"),
  43325. name: "Hand",
  43326. image: {
  43327. source: "./media/characters/astra/hand.svg"
  43328. }
  43329. },
  43330. paw: {
  43331. height: math.unit(1.53, "feet"),
  43332. name: "Paw",
  43333. image: {
  43334. source: "./media/characters/astra/paw.svg"
  43335. }
  43336. },
  43337. },
  43338. [
  43339. {
  43340. name: "Smallest",
  43341. height: math.unit(20, "feet")
  43342. },
  43343. {
  43344. name: "Normal",
  43345. height: math.unit(1e9, "miles"),
  43346. default: true
  43347. },
  43348. {
  43349. name: "Larger",
  43350. height: math.unit(5, "multiverses")
  43351. },
  43352. {
  43353. name: "Largest",
  43354. height: math.unit(1e9, "multiverses")
  43355. },
  43356. ]
  43357. ))
  43358. characterMakers.push(() => makeCharacter(
  43359. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43360. {
  43361. front: {
  43362. height: math.unit(8, "feet"),
  43363. name: "Front",
  43364. image: {
  43365. source: "./media/characters/breanna/front.svg",
  43366. extra: 1912/1632,
  43367. bottom: 33/1945
  43368. }
  43369. },
  43370. },
  43371. [
  43372. {
  43373. name: "Smallest",
  43374. height: math.unit(8, "feet")
  43375. },
  43376. {
  43377. name: "Normal",
  43378. height: math.unit(1, "mile"),
  43379. default: true
  43380. },
  43381. {
  43382. name: "Maximum",
  43383. height: math.unit(1500000000000, "lightyears")
  43384. },
  43385. ]
  43386. ))
  43387. characterMakers.push(() => makeCharacter(
  43388. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43389. {
  43390. front: {
  43391. height: math.unit(5 + 11/12, "feet"),
  43392. weight: math.unit(155, "lb"),
  43393. name: "Front",
  43394. image: {
  43395. source: "./media/characters/cai/front.svg",
  43396. extra: 1823/1702,
  43397. bottom: 32/1855
  43398. }
  43399. },
  43400. back: {
  43401. height: math.unit(5 + 11/12, "feet"),
  43402. weight: math.unit(155, "lb"),
  43403. name: "Back",
  43404. image: {
  43405. source: "./media/characters/cai/back.svg",
  43406. extra: 1809/1708,
  43407. bottom: 31/1840
  43408. }
  43409. },
  43410. },
  43411. [
  43412. {
  43413. name: "Normal",
  43414. height: math.unit(5 + 11/12, "feet"),
  43415. default: true
  43416. },
  43417. {
  43418. name: "Big",
  43419. height: math.unit(15, "feet")
  43420. },
  43421. {
  43422. name: "Macro",
  43423. height: math.unit(200, "feet")
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43429. {
  43430. front: {
  43431. height: math.unit(5 + 6/12, "feet"),
  43432. weight: math.unit(160, "lb"),
  43433. name: "Front",
  43434. image: {
  43435. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43436. extra: 1227/1174,
  43437. bottom: 37/1264
  43438. }
  43439. },
  43440. },
  43441. [
  43442. {
  43443. name: "Macro",
  43444. height: math.unit(444, "meters"),
  43445. default: true
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43451. {
  43452. front: {
  43453. height: math.unit(18 + 7/12, "feet"),
  43454. name: "Front",
  43455. image: {
  43456. source: "./media/characters/rex/front.svg",
  43457. extra: 1941/1807,
  43458. bottom: 66/2007
  43459. }
  43460. },
  43461. back: {
  43462. height: math.unit(18 + 7/12, "feet"),
  43463. name: "Back",
  43464. image: {
  43465. source: "./media/characters/rex/back.svg",
  43466. extra: 1937/1822,
  43467. bottom: 42/1979
  43468. }
  43469. },
  43470. boot: {
  43471. height: math.unit(3.45, "feet"),
  43472. name: "Boot",
  43473. image: {
  43474. source: "./media/characters/rex/boot.svg"
  43475. }
  43476. },
  43477. paw: {
  43478. height: math.unit(4.17, "feet"),
  43479. name: "Paw",
  43480. image: {
  43481. source: "./media/characters/rex/paw.svg"
  43482. }
  43483. },
  43484. head: {
  43485. height: math.unit(6.728, "feet"),
  43486. name: "Head",
  43487. image: {
  43488. source: "./media/characters/rex/head.svg"
  43489. }
  43490. },
  43491. },
  43492. [
  43493. {
  43494. name: "Nano",
  43495. height: math.unit(18 + 7/12, "feet")
  43496. },
  43497. {
  43498. name: "Micro",
  43499. height: math.unit(1.5, "megameters")
  43500. },
  43501. {
  43502. name: "Normal",
  43503. height: math.unit(440, "megameters"),
  43504. default: true
  43505. },
  43506. {
  43507. name: "Macro",
  43508. height: math.unit(2.5, "gigameters")
  43509. },
  43510. {
  43511. name: "Gigamacro",
  43512. height: math.unit(2, "galaxies")
  43513. },
  43514. ]
  43515. ))
  43516. characterMakers.push(() => makeCharacter(
  43517. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43518. {
  43519. side: {
  43520. height: math.unit(32, "feet"),
  43521. weight: math.unit(250000, "lb"),
  43522. name: "Side",
  43523. image: {
  43524. source: "./media/characters/silverwing/side.svg",
  43525. extra: 1100/1019,
  43526. bottom: 204/1304
  43527. }
  43528. },
  43529. },
  43530. [
  43531. {
  43532. name: "Normal",
  43533. height: math.unit(32, "feet"),
  43534. default: true
  43535. },
  43536. ]
  43537. ))
  43538. characterMakers.push(() => makeCharacter(
  43539. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43540. {
  43541. front: {
  43542. height: math.unit(6 + 6/12, "feet"),
  43543. weight: math.unit(350, "lb"),
  43544. name: "Front",
  43545. image: {
  43546. source: "./media/characters/tristan-hawthorne/front.svg",
  43547. extra: 1159/1124,
  43548. bottom: 37/1196
  43549. },
  43550. form: "labrador",
  43551. default: true
  43552. },
  43553. skunkFront: {
  43554. height: math.unit(4 + 6/12, "feet"),
  43555. weight: math.unit(120, "lb"),
  43556. name: "Front",
  43557. image: {
  43558. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43559. extra: 1609/1551,
  43560. bottom: 169/1778
  43561. },
  43562. form: "skunk",
  43563. default: true
  43564. },
  43565. },
  43566. [
  43567. {
  43568. name: "Normal",
  43569. height: math.unit(6 + 6/12, "feet"),
  43570. form: "labrador",
  43571. default: true
  43572. },
  43573. {
  43574. name: "Normal",
  43575. height: math.unit(4 + 6/12, "feet"),
  43576. form: "skunk",
  43577. default: true
  43578. },
  43579. ],
  43580. {
  43581. "labrador": {
  43582. name: "Labrador",
  43583. default: true
  43584. },
  43585. "skunk": {
  43586. name: "Skunk"
  43587. }
  43588. }
  43589. ))
  43590. characterMakers.push(() => makeCharacter(
  43591. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43592. {
  43593. front: {
  43594. height: math.unit(5 + 11/12, "feet"),
  43595. weight: math.unit(190, "lb"),
  43596. name: "Front",
  43597. image: {
  43598. source: "./media/characters/mizu/front.svg",
  43599. extra: 1988/1788,
  43600. bottom: 14/2002
  43601. }
  43602. },
  43603. },
  43604. [
  43605. {
  43606. name: "Normal",
  43607. height: math.unit(5 + 11/12, "feet"),
  43608. default: true
  43609. },
  43610. ]
  43611. ))
  43612. characterMakers.push(() => makeCharacter(
  43613. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43614. {
  43615. front: {
  43616. height: math.unit(1.7, "feet"),
  43617. weight: math.unit(50, "lb"),
  43618. name: "Front",
  43619. image: {
  43620. source: "./media/characters/dechroma/front.svg",
  43621. extra: 1095/859,
  43622. bottom: 64/1159
  43623. }
  43624. },
  43625. },
  43626. [
  43627. {
  43628. name: "Normal",
  43629. height: math.unit(1.7, "feet"),
  43630. default: true
  43631. },
  43632. ]
  43633. ))
  43634. characterMakers.push(() => makeCharacter(
  43635. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43636. {
  43637. side: {
  43638. height: math.unit(30, "feet"),
  43639. name: "Side",
  43640. image: {
  43641. source: "./media/characters/veluren-thanazel/side.svg",
  43642. extra: 1611/633,
  43643. bottom: 118/1729
  43644. }
  43645. },
  43646. front: {
  43647. height: math.unit(30, "feet"),
  43648. name: "Front",
  43649. image: {
  43650. source: "./media/characters/veluren-thanazel/front.svg",
  43651. extra: 1486/636,
  43652. bottom: 238/1724
  43653. }
  43654. },
  43655. head: {
  43656. height: math.unit(21.4, "feet"),
  43657. name: "Head",
  43658. image: {
  43659. source: "./media/characters/veluren-thanazel/head.svg"
  43660. }
  43661. },
  43662. genitals: {
  43663. height: math.unit(19.4, "feet"),
  43664. name: "Genitals",
  43665. image: {
  43666. source: "./media/characters/veluren-thanazel/genitals.svg"
  43667. }
  43668. },
  43669. },
  43670. [
  43671. {
  43672. name: "Social",
  43673. height: math.unit(6, "feet")
  43674. },
  43675. {
  43676. name: "Play",
  43677. height: math.unit(12, "feet")
  43678. },
  43679. {
  43680. name: "True",
  43681. height: math.unit(30, "feet"),
  43682. default: true
  43683. },
  43684. ]
  43685. ))
  43686. characterMakers.push(() => makeCharacter(
  43687. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43688. {
  43689. front: {
  43690. height: math.unit(7 + 6/12, "feet"),
  43691. weight: math.unit(500, "kg"),
  43692. name: "Front",
  43693. image: {
  43694. source: "./media/characters/arcturas/front.svg",
  43695. extra: 1700/1500,
  43696. bottom: 145/1845
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Normal",
  43703. height: math.unit(7 + 6/12, "feet"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43710. {
  43711. side: {
  43712. height: math.unit(6, "feet"),
  43713. weight: math.unit(2, "tons"),
  43714. name: "Side",
  43715. image: {
  43716. source: "./media/characters/vitaen/side.svg",
  43717. extra: 1157/617,
  43718. bottom: 122/1279
  43719. }
  43720. },
  43721. },
  43722. [
  43723. {
  43724. name: "Normal",
  43725. height: math.unit(6, "feet"),
  43726. default: true
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(19, "feet"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/fia-dreamweaver/front.svg",
  43738. extra: 1630/1504,
  43739. bottom: 25/1655
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Normal",
  43746. height: math.unit(19, "feet"),
  43747. default: true
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43753. {
  43754. front: {
  43755. height: math.unit(5 + 4/12, "feet"),
  43756. name: "Front",
  43757. image: {
  43758. source: "./media/characters/artan/front.svg",
  43759. extra: 1618/1535,
  43760. bottom: 46/1664
  43761. }
  43762. },
  43763. back: {
  43764. height: math.unit(5 + 4/12, "feet"),
  43765. name: "Back",
  43766. image: {
  43767. source: "./media/characters/artan/back.svg",
  43768. extra: 1618/1543,
  43769. bottom: 31/1649
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Normal",
  43776. height: math.unit(5 + 4/12, "feet"),
  43777. default: true
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43783. {
  43784. side: {
  43785. height: math.unit(182, "cm"),
  43786. weight: math.unit(1000, "lb"),
  43787. name: "Side",
  43788. image: {
  43789. source: "./media/characters/silver-dragon/side.svg",
  43790. extra: 710/287,
  43791. bottom: 88/798
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(182, "cm"),
  43799. default: true
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43805. {
  43806. side: {
  43807. height: math.unit(6 + 6/12, "feet"),
  43808. weight: math.unit(1.5, "tons"),
  43809. name: "Side",
  43810. image: {
  43811. source: "./media/characters/zephyr/side.svg",
  43812. extra: 1433/586,
  43813. bottom: 109/1542
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(6 + 6/12, "feet"),
  43821. default: true
  43822. },
  43823. ]
  43824. ))
  43825. characterMakers.push(() => makeCharacter(
  43826. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43827. {
  43828. side: {
  43829. height: math.unit(1, "feet"),
  43830. name: "Side",
  43831. image: {
  43832. source: "./media/characters/vixye/side.svg",
  43833. extra: 632/541,
  43834. bottom: 0/632
  43835. }
  43836. },
  43837. },
  43838. [
  43839. {
  43840. name: "Normal",
  43841. height: math.unit(1, "feet"),
  43842. default: true
  43843. },
  43844. {
  43845. name: "True",
  43846. height: math.unit(1e15, "multiverses")
  43847. },
  43848. ]
  43849. ))
  43850. characterMakers.push(() => makeCharacter(
  43851. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43852. {
  43853. front: {
  43854. height: math.unit(8 + 2/12, "feet"),
  43855. weight: math.unit(650, "lb"),
  43856. name: "Front",
  43857. image: {
  43858. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43859. extra: 1174/1137,
  43860. bottom: 82/1256
  43861. }
  43862. },
  43863. back: {
  43864. height: math.unit(8 + 2/12, "feet"),
  43865. weight: math.unit(650, "lb"),
  43866. name: "Back",
  43867. image: {
  43868. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43869. extra: 1204/1157,
  43870. bottom: 46/1250
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Wildform",
  43877. height: math.unit(8 + 2/12, "feet"),
  43878. default: true
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43884. {
  43885. front: {
  43886. height: math.unit(18, "feet"),
  43887. name: "Front",
  43888. image: {
  43889. source: "./media/characters/cyphin/front.svg",
  43890. extra: 970/886,
  43891. bottom: 42/1012
  43892. }
  43893. },
  43894. back: {
  43895. height: math.unit(18, "feet"),
  43896. name: "Back",
  43897. image: {
  43898. source: "./media/characters/cyphin/back.svg",
  43899. extra: 1009/894,
  43900. bottom: 24/1033
  43901. }
  43902. },
  43903. head: {
  43904. height: math.unit(5.05, "feet"),
  43905. name: "Head",
  43906. image: {
  43907. source: "./media/characters/cyphin/head.svg"
  43908. }
  43909. },
  43910. tailbud: {
  43911. height: math.unit(5, "feet"),
  43912. name: "Tailbud",
  43913. image: {
  43914. source: "./media/characters/cyphin/tailbud.svg"
  43915. }
  43916. },
  43917. },
  43918. [
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43923. {
  43924. side: {
  43925. height: math.unit(10, "feet"),
  43926. weight: math.unit(6, "tons"),
  43927. name: "Side",
  43928. image: {
  43929. source: "./media/characters/raijin/side.svg",
  43930. extra: 1529/613,
  43931. bottom: 337/1866
  43932. }
  43933. },
  43934. },
  43935. [
  43936. {
  43937. name: "Normal",
  43938. height: math.unit(10, "feet"),
  43939. default: true
  43940. },
  43941. ]
  43942. ))
  43943. characterMakers.push(() => makeCharacter(
  43944. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43945. {
  43946. side: {
  43947. height: math.unit(9, "feet"),
  43948. name: "Side",
  43949. image: {
  43950. source: "./media/characters/nilghais/side.svg",
  43951. extra: 1047/744,
  43952. bottom: 91/1138
  43953. }
  43954. },
  43955. head: {
  43956. height: math.unit(3.14, "feet"),
  43957. name: "Head",
  43958. image: {
  43959. source: "./media/characters/nilghais/head.svg"
  43960. }
  43961. },
  43962. mouth: {
  43963. height: math.unit(4.6, "feet"),
  43964. name: "Mouth",
  43965. image: {
  43966. source: "./media/characters/nilghais/mouth.svg"
  43967. }
  43968. },
  43969. wings: {
  43970. height: math.unit(24, "feet"),
  43971. name: "Wings",
  43972. image: {
  43973. source: "./media/characters/nilghais/wings.svg"
  43974. }
  43975. },
  43976. ass: {
  43977. height: math.unit(6.12, "feet"),
  43978. name: "Ass",
  43979. image: {
  43980. source: "./media/characters/nilghais/ass.svg"
  43981. }
  43982. },
  43983. },
  43984. [
  43985. {
  43986. name: "Normal",
  43987. height: math.unit(9, "feet"),
  43988. default: true
  43989. },
  43990. ]
  43991. ))
  43992. characterMakers.push(() => makeCharacter(
  43993. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43994. {
  43995. regular: {
  43996. height: math.unit(16 + 2/12, "feet"),
  43997. weight: math.unit(2300, "lb"),
  43998. name: "Regular",
  43999. image: {
  44000. source: "./media/characters/zolgar/regular.svg",
  44001. extra: 1246/1004,
  44002. bottom: 124/1370
  44003. }
  44004. },
  44005. boxers: {
  44006. height: math.unit(16 + 2/12, "feet"),
  44007. weight: math.unit(2300, "lb"),
  44008. name: "Boxers",
  44009. image: {
  44010. source: "./media/characters/zolgar/boxers.svg",
  44011. extra: 1246/1004,
  44012. bottom: 124/1370
  44013. }
  44014. },
  44015. armored: {
  44016. height: math.unit(16 + 2/12, "feet"),
  44017. weight: math.unit(2300, "lb"),
  44018. name: "Armored",
  44019. image: {
  44020. source: "./media/characters/zolgar/armored.svg",
  44021. extra: 1246/1004,
  44022. bottom: 124/1370
  44023. }
  44024. },
  44025. goth: {
  44026. height: math.unit(16 + 2/12, "feet"),
  44027. weight: math.unit(2300, "lb"),
  44028. name: "Goth",
  44029. image: {
  44030. source: "./media/characters/zolgar/goth.svg",
  44031. extra: 1246/1004,
  44032. bottom: 124/1370
  44033. }
  44034. },
  44035. },
  44036. [
  44037. {
  44038. name: "Shrunken Down",
  44039. height: math.unit(9 + 2/12, "feet")
  44040. },
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(16 + 2/12, "feet"),
  44044. default: true
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44050. {
  44051. front: {
  44052. height: math.unit(6, "feet"),
  44053. weight: math.unit(168, "lb"),
  44054. name: "Front",
  44055. image: {
  44056. source: "./media/characters/luca/front.svg",
  44057. extra: 841/667,
  44058. bottom: 102/943
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Normal",
  44065. height: math.unit(6, "feet"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44072. {
  44073. side: {
  44074. height: math.unit(7 + 3/12, "feet"),
  44075. weight: math.unit(312, "lb"),
  44076. name: "Side",
  44077. image: {
  44078. source: "./media/characters/zezo/side.svg",
  44079. extra: 1192/1067,
  44080. bottom: 63/1255
  44081. }
  44082. },
  44083. },
  44084. [
  44085. {
  44086. name: "Normal",
  44087. height: math.unit(7 + 3/12, "feet"),
  44088. default: true
  44089. },
  44090. ]
  44091. ))
  44092. characterMakers.push(() => makeCharacter(
  44093. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44094. {
  44095. front: {
  44096. height: math.unit(5 + 5/12, "feet"),
  44097. weight: math.unit(170, "lb"),
  44098. name: "Front",
  44099. image: {
  44100. source: "./media/characters/mayso/front.svg",
  44101. extra: 1215/1108,
  44102. bottom: 16/1231
  44103. }
  44104. },
  44105. },
  44106. [
  44107. {
  44108. name: "Normal",
  44109. height: math.unit(5 + 5/12, "feet"),
  44110. default: true
  44111. },
  44112. ]
  44113. ))
  44114. characterMakers.push(() => makeCharacter(
  44115. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44116. {
  44117. front: {
  44118. height: math.unit(4 + 3/12, "feet"),
  44119. weight: math.unit(80, "lb"),
  44120. name: "Front",
  44121. image: {
  44122. source: "./media/characters/hess/front.svg",
  44123. extra: 1200/1123,
  44124. bottom: 16/1216
  44125. }
  44126. },
  44127. },
  44128. [
  44129. {
  44130. name: "Normal",
  44131. height: math.unit(4 + 3/12, "feet"),
  44132. default: true
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44138. {
  44139. front: {
  44140. height: math.unit(1.9, "meters"),
  44141. name: "Front",
  44142. image: {
  44143. source: "./media/characters/ashgar/front.svg",
  44144. extra: 1177/1146,
  44145. bottom: 99/1276
  44146. }
  44147. },
  44148. back: {
  44149. height: math.unit(1.9, "meters"),
  44150. name: "Back",
  44151. image: {
  44152. source: "./media/characters/ashgar/back.svg",
  44153. extra: 1201/1183,
  44154. bottom: 53/1254
  44155. }
  44156. },
  44157. feral: {
  44158. height: math.unit(1.4, "meters"),
  44159. name: "Feral",
  44160. image: {
  44161. source: "./media/characters/ashgar/feral.svg",
  44162. extra: 370/345,
  44163. bottom: 45/415
  44164. }
  44165. },
  44166. },
  44167. [
  44168. {
  44169. name: "Normal",
  44170. height: math.unit(1.9, "meters"),
  44171. default: true
  44172. },
  44173. ]
  44174. ))
  44175. characterMakers.push(() => makeCharacter(
  44176. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44177. {
  44178. regular: {
  44179. height: math.unit(6, "feet"),
  44180. weight: math.unit(220, "lb"),
  44181. name: "Regular",
  44182. image: {
  44183. source: "./media/characters/phillip/regular.svg",
  44184. extra: 1373/1277,
  44185. bottom: 75/1448
  44186. }
  44187. },
  44188. dressed: {
  44189. height: math.unit(6, "feet"),
  44190. weight: math.unit(220, "lb"),
  44191. name: "Dressed",
  44192. image: {
  44193. source: "./media/characters/phillip/dressed.svg",
  44194. extra: 1373/1277,
  44195. bottom: 75/1448
  44196. }
  44197. },
  44198. paw: {
  44199. height: math.unit(1.44, "feet"),
  44200. name: "Paw",
  44201. image: {
  44202. source: "./media/characters/phillip/paw.svg"
  44203. }
  44204. },
  44205. },
  44206. [
  44207. {
  44208. name: "Normal",
  44209. height: math.unit(6, "feet"),
  44210. default: true
  44211. },
  44212. ]
  44213. ))
  44214. characterMakers.push(() => makeCharacter(
  44215. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44216. {
  44217. side: {
  44218. height: math.unit(42, "feet"),
  44219. name: "Side",
  44220. image: {
  44221. source: "./media/characters/uvula/side.svg",
  44222. extra: 683/586,
  44223. bottom: 60/743
  44224. }
  44225. },
  44226. front: {
  44227. height: math.unit(42, "feet"),
  44228. name: "Front",
  44229. image: {
  44230. source: "./media/characters/uvula/front.svg",
  44231. extra: 705/613,
  44232. bottom: 54/759
  44233. }
  44234. },
  44235. maw: {
  44236. height: math.unit(23.5, "feet"),
  44237. name: "Maw",
  44238. image: {
  44239. source: "./media/characters/uvula/maw.svg"
  44240. }
  44241. },
  44242. },
  44243. [
  44244. {
  44245. name: "Original Size",
  44246. height: math.unit(14, "inches")
  44247. },
  44248. {
  44249. name: "Human Size",
  44250. height: math.unit(6, "feet")
  44251. },
  44252. {
  44253. name: "Big",
  44254. height: math.unit(42, "feet"),
  44255. default: true
  44256. },
  44257. {
  44258. name: "Bigger",
  44259. height: math.unit(100, "feet")
  44260. },
  44261. ]
  44262. ))
  44263. characterMakers.push(() => makeCharacter(
  44264. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44265. {
  44266. front: {
  44267. height: math.unit(5 + 11/12, "feet"),
  44268. name: "Front",
  44269. image: {
  44270. source: "./media/characters/lannah/front.svg",
  44271. extra: 1208/1113,
  44272. bottom: 97/1305
  44273. }
  44274. },
  44275. },
  44276. [
  44277. {
  44278. name: "Normal",
  44279. height: math.unit(5 + 11/12, "feet"),
  44280. default: true
  44281. },
  44282. ]
  44283. ))
  44284. characterMakers.push(() => makeCharacter(
  44285. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44286. {
  44287. front: {
  44288. height: math.unit(6 + 3/12, "feet"),
  44289. weight: math.unit(3.5, "tons"),
  44290. name: "Front",
  44291. image: {
  44292. source: "./media/characters/emberflame/front.svg",
  44293. extra: 1198/672,
  44294. bottom: 82/1280
  44295. }
  44296. },
  44297. side: {
  44298. height: math.unit(6 + 3/12, "feet"),
  44299. weight: math.unit(3.5, "tons"),
  44300. name: "Side",
  44301. image: {
  44302. source: "./media/characters/emberflame/side.svg",
  44303. extra: 938/527,
  44304. bottom: 56/994
  44305. }
  44306. },
  44307. },
  44308. [
  44309. {
  44310. name: "Normal",
  44311. height: math.unit(6 + 3/12, "feet"),
  44312. default: true
  44313. },
  44314. ]
  44315. ))
  44316. characterMakers.push(() => makeCharacter(
  44317. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44318. {
  44319. side: {
  44320. height: math.unit(17.5, "feet"),
  44321. weight: math.unit(35, "tons"),
  44322. name: "Side",
  44323. image: {
  44324. source: "./media/characters/sophie-ambrose/side.svg",
  44325. extra: 1573/1242,
  44326. bottom: 71/1644
  44327. }
  44328. },
  44329. maw: {
  44330. height: math.unit(7.4, "feet"),
  44331. name: "Maw",
  44332. image: {
  44333. source: "./media/characters/sophie-ambrose/maw.svg"
  44334. }
  44335. },
  44336. },
  44337. [
  44338. {
  44339. name: "Normal",
  44340. height: math.unit(17.5, "feet"),
  44341. default: true
  44342. },
  44343. ]
  44344. ))
  44345. characterMakers.push(() => makeCharacter(
  44346. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44347. {
  44348. front: {
  44349. height: math.unit(280, "feet"),
  44350. weight: math.unit(550, "tons"),
  44351. name: "Front",
  44352. image: {
  44353. source: "./media/characters/king-mugi/front.svg",
  44354. extra: 1102/947,
  44355. bottom: 104/1206
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "King Mugi",
  44362. height: math.unit(280, "feet"),
  44363. default: true
  44364. },
  44365. ]
  44366. ))
  44367. characterMakers.push(() => makeCharacter(
  44368. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44369. {
  44370. front: {
  44371. height: math.unit(64, "meters"),
  44372. name: "Front",
  44373. image: {
  44374. source: "./media/characters/nova-fox/front.svg",
  44375. extra: 1310/1246,
  44376. bottom: 65/1375
  44377. }
  44378. },
  44379. },
  44380. [
  44381. {
  44382. name: "Macro",
  44383. height: math.unit(64, "meters"),
  44384. default: true
  44385. },
  44386. ]
  44387. ))
  44388. characterMakers.push(() => makeCharacter(
  44389. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44390. {
  44391. front: {
  44392. height: math.unit(6 + 3/12, "feet"),
  44393. weight: math.unit(170, "lb"),
  44394. name: "Front",
  44395. image: {
  44396. source: "./media/characters/sam-bat/front.svg",
  44397. extra: 1601/1411,
  44398. bottom: 125/1726
  44399. }
  44400. },
  44401. back: {
  44402. height: math.unit(6 + 3/12, "feet"),
  44403. weight: math.unit(170, "lb"),
  44404. name: "Back",
  44405. image: {
  44406. source: "./media/characters/sam-bat/back.svg",
  44407. extra: 1577/1405,
  44408. bottom: 58/1635
  44409. }
  44410. },
  44411. },
  44412. [
  44413. {
  44414. name: "Normal",
  44415. height: math.unit(6 + 3/12, "feet"),
  44416. default: true
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44422. {
  44423. front: {
  44424. height: math.unit(59, "feet"),
  44425. weight: math.unit(40000, "lb"),
  44426. name: "Front",
  44427. image: {
  44428. source: "./media/characters/inari/front.svg",
  44429. extra: 1884/1350,
  44430. bottom: 95/1979
  44431. }
  44432. },
  44433. },
  44434. [
  44435. {
  44436. name: "Gigantamax",
  44437. height: math.unit(59, "feet"),
  44438. default: true
  44439. },
  44440. ]
  44441. ))
  44442. characterMakers.push(() => makeCharacter(
  44443. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44444. {
  44445. front: {
  44446. height: math.unit(5 + 8/12, "feet"),
  44447. name: "Front",
  44448. image: {
  44449. source: "./media/characters/elizabeth/front.svg",
  44450. extra: 1395/1298,
  44451. bottom: 54/1449
  44452. }
  44453. },
  44454. mouth: {
  44455. height: math.unit(1.97, "feet"),
  44456. name: "Mouth",
  44457. image: {
  44458. source: "./media/characters/elizabeth/mouth.svg"
  44459. }
  44460. },
  44461. foot: {
  44462. height: math.unit(1.17, "feet"),
  44463. name: "Foot",
  44464. image: {
  44465. source: "./media/characters/elizabeth/foot.svg"
  44466. }
  44467. },
  44468. },
  44469. [
  44470. {
  44471. name: "Normal",
  44472. height: math.unit(5 + 8/12, "feet"),
  44473. default: true
  44474. },
  44475. {
  44476. name: "Minimacro",
  44477. height: math.unit(18, "feet")
  44478. },
  44479. {
  44480. name: "Macro",
  44481. height: math.unit(180, "feet")
  44482. },
  44483. ]
  44484. ))
  44485. characterMakers.push(() => makeCharacter(
  44486. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44487. {
  44488. front: {
  44489. height: math.unit(5 + 2/12, "feet"),
  44490. name: "Front",
  44491. image: {
  44492. source: "./media/characters/october-gossamer/front.svg",
  44493. extra: 505/454,
  44494. bottom: 7/512
  44495. }
  44496. },
  44497. back: {
  44498. height: math.unit(5 + 2/12, "feet"),
  44499. name: "Back",
  44500. image: {
  44501. source: "./media/characters/october-gossamer/back.svg",
  44502. extra: 501/454,
  44503. bottom: 11/512
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Normal",
  44510. height: math.unit(5 + 2/12, "feet"),
  44511. default: true
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44517. {
  44518. front: {
  44519. height: math.unit(5, "feet"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/epiglottis/front.svg",
  44523. extra: 923/849,
  44524. bottom: 17/940
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Original Size",
  44531. height: math.unit(10, "inches")
  44532. },
  44533. {
  44534. name: "Human Size",
  44535. height: math.unit(5, "feet"),
  44536. default: true
  44537. },
  44538. {
  44539. name: "Big",
  44540. height: math.unit(25, "feet")
  44541. },
  44542. {
  44543. name: "Bigger",
  44544. height: math.unit(50, "feet")
  44545. },
  44546. {
  44547. name: "oh lawd",
  44548. height: math.unit(75, "feet")
  44549. },
  44550. ]
  44551. ))
  44552. characterMakers.push(() => makeCharacter(
  44553. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44554. {
  44555. front: {
  44556. height: math.unit(2 + 4/12, "feet"),
  44557. weight: math.unit(60, "lb"),
  44558. name: "Front",
  44559. image: {
  44560. source: "./media/characters/lerm/front.svg",
  44561. extra: 796/790,
  44562. bottom: 79/875
  44563. }
  44564. },
  44565. },
  44566. [
  44567. {
  44568. name: "Normal",
  44569. height: math.unit(2 + 4/12, "feet"),
  44570. default: true
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(5.5, "feet"),
  44579. weight: math.unit(130, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/xena-nebadon/front.svg",
  44583. extra: 1828/1730,
  44584. bottom: 79/1907
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Tiny Puppy",
  44591. height: math.unit(3, "inches")
  44592. },
  44593. {
  44594. name: "Normal",
  44595. height: math.unit(5.5, "feet"),
  44596. default: true
  44597. },
  44598. {
  44599. name: "Lotta Lady",
  44600. height: math.unit(12, "feet")
  44601. },
  44602. {
  44603. name: "Pretty Big",
  44604. height: math.unit(100, "feet")
  44605. },
  44606. {
  44607. name: "Big",
  44608. height: math.unit(500, "feet")
  44609. },
  44610. {
  44611. name: "Skyscraper Toys",
  44612. height: math.unit(2500, "feet")
  44613. },
  44614. {
  44615. name: "Plane Catcher",
  44616. height: math.unit(8, "miles")
  44617. },
  44618. {
  44619. name: "Planet Toys",
  44620. height: math.unit(15, "earths")
  44621. },
  44622. {
  44623. name: "Stardust",
  44624. height: math.unit(0.25, "galaxies")
  44625. },
  44626. {
  44627. name: "Snacks",
  44628. height: math.unit(70, "universes")
  44629. },
  44630. ]
  44631. ))
  44632. characterMakers.push(() => makeCharacter(
  44633. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44634. {
  44635. front: {
  44636. height: math.unit(1.6, "meters"),
  44637. weight: math.unit(60, "kg"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/bounty/front.svg",
  44641. extra: 1426/1308,
  44642. bottom: 15/1441
  44643. }
  44644. },
  44645. back: {
  44646. height: math.unit(1.6, "meters"),
  44647. weight: math.unit(60, "kg"),
  44648. name: "Back",
  44649. image: {
  44650. source: "./media/characters/bounty/back.svg",
  44651. extra: 1417/1307,
  44652. bottom: 8/1425
  44653. }
  44654. },
  44655. },
  44656. [
  44657. {
  44658. name: "Normal",
  44659. height: math.unit(1.6, "meters"),
  44660. default: true
  44661. },
  44662. {
  44663. name: "Macro",
  44664. height: math.unit(300, "meters")
  44665. },
  44666. ]
  44667. ))
  44668. characterMakers.push(() => makeCharacter(
  44669. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44670. {
  44671. front: {
  44672. height: math.unit(2 + 8/12, "feet"),
  44673. weight: math.unit(15, "lb"),
  44674. name: "Front",
  44675. image: {
  44676. source: "./media/characters/mochi/front.svg",
  44677. extra: 1022/852,
  44678. bottom: 435/1457
  44679. }
  44680. },
  44681. back: {
  44682. height: math.unit(2 + 8/12, "feet"),
  44683. weight: math.unit(15, "lb"),
  44684. name: "Back",
  44685. image: {
  44686. source: "./media/characters/mochi/back.svg",
  44687. extra: 1335/1119,
  44688. bottom: 39/1374
  44689. }
  44690. },
  44691. bird: {
  44692. height: math.unit(2 + 8/12, "feet"),
  44693. weight: math.unit(15, "lb"),
  44694. name: "Bird",
  44695. image: {
  44696. source: "./media/characters/mochi/bird.svg",
  44697. extra: 1251/1113,
  44698. bottom: 178/1429
  44699. }
  44700. },
  44701. kaiju: {
  44702. height: math.unit(154, "feet"),
  44703. weight: math.unit(1e7, "lb"),
  44704. name: "Kaiju",
  44705. image: {
  44706. source: "./media/characters/mochi/kaiju.svg",
  44707. extra: 460/324,
  44708. bottom: 40/500
  44709. }
  44710. },
  44711. head: {
  44712. height: math.unit(1.21, "feet"),
  44713. name: "Head",
  44714. image: {
  44715. source: "./media/characters/mochi/head.svg"
  44716. }
  44717. },
  44718. alternateTail: {
  44719. height: math.unit(2 + 8/12, "feet"),
  44720. weight: math.unit(45, "lb"),
  44721. name: "Alternate Tail",
  44722. image: {
  44723. source: "./media/characters/mochi/alternate-tail.svg",
  44724. extra: 139/76,
  44725. bottom: 45/184
  44726. }
  44727. },
  44728. },
  44729. [
  44730. {
  44731. name: "Micro",
  44732. height: math.unit(2, "inches")
  44733. },
  44734. {
  44735. name: "Normal",
  44736. height: math.unit(2 + 8/12, "feet"),
  44737. default: true
  44738. },
  44739. {
  44740. name: "Macro",
  44741. height: math.unit(106, "feet")
  44742. },
  44743. ]
  44744. ))
  44745. characterMakers.push(() => makeCharacter(
  44746. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44747. {
  44748. front: {
  44749. height: math.unit(5.67, "feet"),
  44750. weight: math.unit(135, "lb"),
  44751. name: "Front",
  44752. image: {
  44753. source: "./media/characters/sarel/front.svg",
  44754. extra: 865/788,
  44755. bottom: 97/962
  44756. }
  44757. },
  44758. back: {
  44759. height: math.unit(5.67, "feet"),
  44760. weight: math.unit(135, "lb"),
  44761. name: "Back",
  44762. image: {
  44763. source: "./media/characters/sarel/back.svg",
  44764. extra: 857/777,
  44765. bottom: 32/889
  44766. }
  44767. },
  44768. chozoan: {
  44769. height: math.unit(5.67, "feet"),
  44770. weight: math.unit(135, "lb"),
  44771. name: "Chozoan",
  44772. image: {
  44773. source: "./media/characters/sarel/chozoan.svg",
  44774. extra: 865/788,
  44775. bottom: 97/962
  44776. }
  44777. },
  44778. current: {
  44779. height: math.unit(5.67, "feet"),
  44780. weight: math.unit(135, "lb"),
  44781. name: "Current",
  44782. image: {
  44783. source: "./media/characters/sarel/current.svg",
  44784. extra: 865/788,
  44785. bottom: 97/962
  44786. }
  44787. },
  44788. head: {
  44789. height: math.unit(1.77, "feet"),
  44790. name: "Head",
  44791. image: {
  44792. source: "./media/characters/sarel/head.svg"
  44793. }
  44794. },
  44795. claws: {
  44796. height: math.unit(1.8, "feet"),
  44797. name: "Claws",
  44798. image: {
  44799. source: "./media/characters/sarel/claws.svg"
  44800. }
  44801. },
  44802. clawsAlt: {
  44803. height: math.unit(1.8, "feet"),
  44804. name: "Claws-alt",
  44805. image: {
  44806. source: "./media/characters/sarel/claws-alt.svg"
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(5.67, "feet"),
  44814. default: true
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44820. {
  44821. front: {
  44822. height: math.unit(5500, "feet"),
  44823. name: "Front",
  44824. image: {
  44825. source: "./media/characters/alyonia/front.svg",
  44826. extra: 1200/1135,
  44827. bottom: 29/1229
  44828. }
  44829. },
  44830. back: {
  44831. height: math.unit(5500, "feet"),
  44832. name: "Back",
  44833. image: {
  44834. source: "./media/characters/alyonia/back.svg",
  44835. extra: 1205/1138,
  44836. bottom: 10/1215
  44837. }
  44838. },
  44839. },
  44840. [
  44841. {
  44842. name: "Small",
  44843. height: math.unit(10, "feet")
  44844. },
  44845. {
  44846. name: "Macro",
  44847. height: math.unit(500, "feet")
  44848. },
  44849. {
  44850. name: "Mega Macro",
  44851. height: math.unit(5500, "feet"),
  44852. default: true
  44853. },
  44854. {
  44855. name: "Mega Macro+",
  44856. height: math.unit(500000, "feet")
  44857. },
  44858. {
  44859. name: "Giga Macro",
  44860. height: math.unit(3000, "miles")
  44861. },
  44862. {
  44863. name: "Tera Macro",
  44864. height: math.unit(2.8e6, "miles")
  44865. },
  44866. {
  44867. name: "Galactic",
  44868. height: math.unit(120000, "lightyears")
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44874. {
  44875. werewolf: {
  44876. height: math.unit(8, "feet"),
  44877. weight: math.unit(425, "lb"),
  44878. name: "Werewolf",
  44879. image: {
  44880. source: "./media/characters/autumn/werewolf.svg",
  44881. extra: 2154/2031,
  44882. bottom: 160/2314
  44883. }
  44884. },
  44885. human: {
  44886. height: math.unit(5 + 8/12, "feet"),
  44887. weight: math.unit(150, "lb"),
  44888. name: "Human",
  44889. image: {
  44890. source: "./media/characters/autumn/human.svg",
  44891. extra: 1200/1149,
  44892. bottom: 30/1230
  44893. }
  44894. },
  44895. },
  44896. [
  44897. {
  44898. name: "Normal",
  44899. height: math.unit(8, "feet"),
  44900. default: true
  44901. },
  44902. ]
  44903. ))
  44904. characterMakers.push(() => makeCharacter(
  44905. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44906. {
  44907. front: {
  44908. height: math.unit(8 + 5/12, "feet"),
  44909. weight: math.unit(825, "lb"),
  44910. name: "Front",
  44911. image: {
  44912. source: "./media/characters/cobalt-charizard/front.svg",
  44913. extra: 1268/1155,
  44914. bottom: 122/1390
  44915. }
  44916. },
  44917. side: {
  44918. height: math.unit(8 + 5/12, "feet"),
  44919. weight: math.unit(825, "lb"),
  44920. name: "Side",
  44921. image: {
  44922. source: "./media/characters/cobalt-charizard/side.svg",
  44923. extra: 1348/1257,
  44924. bottom: 58/1406
  44925. }
  44926. },
  44927. gMax: {
  44928. height: math.unit(134 + 11/12, "feet"),
  44929. name: "G-Max",
  44930. image: {
  44931. source: "./media/characters/cobalt-charizard/g-max.svg",
  44932. extra: 1835/1541,
  44933. bottom: 151/1986
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(8 + 5/12, "feet"),
  44941. default: true
  44942. },
  44943. ]
  44944. ))
  44945. characterMakers.push(() => makeCharacter(
  44946. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44947. {
  44948. front: {
  44949. height: math.unit(6 + 3/12, "feet"),
  44950. weight: math.unit(210, "lb"),
  44951. name: "Front",
  44952. image: {
  44953. source: "./media/characters/stella/front.svg",
  44954. extra: 3549/3335,
  44955. bottom: 51/3600
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Normal",
  44962. height: math.unit(6 + 3/12, "feet"),
  44963. default: true
  44964. },
  44965. ]
  44966. ))
  44967. characterMakers.push(() => makeCharacter(
  44968. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44969. {
  44970. front: {
  44971. height: math.unit(5, "feet"),
  44972. weight: math.unit(90, "lb"),
  44973. name: "Front",
  44974. image: {
  44975. source: "./media/characters/riley-bishop/front.svg",
  44976. extra: 1450/1428,
  44977. bottom: 152/1602
  44978. }
  44979. },
  44980. },
  44981. [
  44982. {
  44983. name: "Normal",
  44984. height: math.unit(5, "feet"),
  44985. default: true
  44986. },
  44987. ]
  44988. ))
  44989. characterMakers.push(() => makeCharacter(
  44990. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44991. {
  44992. side: {
  44993. height: math.unit(8 + 2/12, "feet"),
  44994. weight: math.unit(500, "kg"),
  44995. name: "Side",
  44996. image: {
  44997. source: "./media/characters/theo-arcanine/side.svg",
  44998. extra: 1342/1074,
  44999. bottom: 111/1453
  45000. }
  45001. },
  45002. },
  45003. [
  45004. {
  45005. name: "Normal",
  45006. height: math.unit(8 + 2/12, "feet"),
  45007. default: true
  45008. },
  45009. ]
  45010. ))
  45011. characterMakers.push(() => makeCharacter(
  45012. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45013. {
  45014. front: {
  45015. height: math.unit(4, "feet"),
  45016. name: "Front",
  45017. image: {
  45018. source: "./media/characters/kali/front.svg",
  45019. extra: 1921/1357,
  45020. bottom: 70/1991
  45021. }
  45022. },
  45023. },
  45024. [
  45025. {
  45026. name: "Normal",
  45027. height: math.unit(4, "feet"),
  45028. default: true
  45029. },
  45030. {
  45031. name: "Macro",
  45032. height: math.unit(32, "meters")
  45033. },
  45034. {
  45035. name: "Macro+",
  45036. height: math.unit(150, "meters")
  45037. },
  45038. {
  45039. name: "Megamacro",
  45040. height: math.unit(7500, "meters")
  45041. },
  45042. {
  45043. name: "Megamacro+",
  45044. height: math.unit(80, "kilometers")
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45050. {
  45051. side: {
  45052. height: math.unit(5 + 11/12, "feet"),
  45053. weight: math.unit(236, "lb"),
  45054. name: "Side",
  45055. image: {
  45056. source: "./media/characters/gapp/side.svg",
  45057. extra: 775/340,
  45058. bottom: 58/833
  45059. }
  45060. },
  45061. mouth: {
  45062. height: math.unit(2.98, "feet"),
  45063. name: "Mouth",
  45064. image: {
  45065. source: "./media/characters/gapp/mouth.svg"
  45066. }
  45067. },
  45068. },
  45069. [
  45070. {
  45071. name: "Normal",
  45072. height: math.unit(5 + 1/12, "feet"),
  45073. default: true
  45074. },
  45075. ]
  45076. ))
  45077. characterMakers.push(() => makeCharacter(
  45078. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45079. {
  45080. front: {
  45081. height: math.unit(6, "feet"),
  45082. name: "Front",
  45083. image: {
  45084. source: "./media/characters/persephone/front.svg",
  45085. extra: 1895/1717,
  45086. bottom: 96/1991
  45087. }
  45088. },
  45089. back: {
  45090. height: math.unit(6, "feet"),
  45091. name: "Back",
  45092. image: {
  45093. source: "./media/characters/persephone/back.svg",
  45094. extra: 1868/1679,
  45095. bottom: 26/1894
  45096. }
  45097. },
  45098. casual: {
  45099. height: math.unit(6, "feet"),
  45100. name: "Casual",
  45101. image: {
  45102. source: "./media/characters/persephone/casual.svg",
  45103. extra: 1713/1541,
  45104. bottom: 76/1789
  45105. }
  45106. },
  45107. },
  45108. [
  45109. {
  45110. name: "Human Size",
  45111. height: math.unit(6, "feet")
  45112. },
  45113. {
  45114. name: "Big Steppy",
  45115. height: math.unit(600, "meters"),
  45116. default: true
  45117. },
  45118. {
  45119. name: "Galaxy Brain",
  45120. height: math.unit(1, "zettameter")
  45121. },
  45122. ]
  45123. ))
  45124. characterMakers.push(() => makeCharacter(
  45125. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45126. {
  45127. front: {
  45128. height: math.unit(1.85, "meters"),
  45129. name: "Front",
  45130. image: {
  45131. source: "./media/characters/riley-foxthing/front.svg",
  45132. extra: 1495/1354,
  45133. bottom: 122/1617
  45134. }
  45135. },
  45136. frontAlt: {
  45137. height: math.unit(1.85, "meters"),
  45138. name: "Front (Alt)",
  45139. image: {
  45140. source: "./media/characters/riley-foxthing/front-alt.svg",
  45141. extra: 1572/1389,
  45142. bottom: 116/1688
  45143. }
  45144. },
  45145. },
  45146. [
  45147. {
  45148. name: "Normal Sized",
  45149. height: math.unit(1.85, "meters"),
  45150. default: true
  45151. },
  45152. {
  45153. name: "Quite Sizable",
  45154. height: math.unit(5, "meters")
  45155. },
  45156. {
  45157. name: "Rather Large",
  45158. height: math.unit(20, "meters")
  45159. },
  45160. {
  45161. name: "Macro",
  45162. height: math.unit(450, "meters")
  45163. },
  45164. {
  45165. name: "Giga",
  45166. height: math.unit(5, "km")
  45167. },
  45168. ]
  45169. ))
  45170. characterMakers.push(() => makeCharacter(
  45171. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45172. {
  45173. front: {
  45174. height: math.unit(6, "feet"),
  45175. weight: math.unit(200, "lb"),
  45176. name: "Front",
  45177. image: {
  45178. source: "./media/characters/blizzard/front.svg",
  45179. extra: 1136/990,
  45180. bottom: 136/1272
  45181. }
  45182. },
  45183. back: {
  45184. height: math.unit(6, "feet"),
  45185. weight: math.unit(200, "lb"),
  45186. name: "Back",
  45187. image: {
  45188. source: "./media/characters/blizzard/back.svg",
  45189. extra: 1175/1034,
  45190. bottom: 97/1272
  45191. }
  45192. },
  45193. sitting: {
  45194. height: math.unit(3.725, "feet"),
  45195. weight: math.unit(200, "lb"),
  45196. name: "Sitting",
  45197. image: {
  45198. source: "./media/characters/blizzard/sitting.svg",
  45199. extra: 581/485,
  45200. bottom: 90/671
  45201. }
  45202. },
  45203. frontWizard: {
  45204. height: math.unit(7.9, "feet"),
  45205. weight: math.unit(200, "lb"),
  45206. name: "Front (Wizard)",
  45207. image: {
  45208. source: "./media/characters/blizzard/front-wizard.svg"
  45209. }
  45210. },
  45211. backWizard: {
  45212. height: math.unit(7.9, "feet"),
  45213. weight: math.unit(200, "lb"),
  45214. name: "Back (Wizard)",
  45215. image: {
  45216. source: "./media/characters/blizzard/back-wizard.svg"
  45217. }
  45218. },
  45219. frontNsfw: {
  45220. height: math.unit(6, "feet"),
  45221. weight: math.unit(200, "lb"),
  45222. name: "Front (NSFW)",
  45223. image: {
  45224. source: "./media/characters/blizzard/front-nsfw.svg",
  45225. extra: 1136/990,
  45226. bottom: 136/1272
  45227. }
  45228. },
  45229. backNsfw: {
  45230. height: math.unit(6, "feet"),
  45231. weight: math.unit(200, "lb"),
  45232. name: "Back (NSFW)",
  45233. image: {
  45234. source: "./media/characters/blizzard/back-nsfw.svg",
  45235. extra: 1175/1034,
  45236. bottom: 97/1272
  45237. }
  45238. },
  45239. sittingNsfw: {
  45240. height: math.unit(3.725, "feet"),
  45241. weight: math.unit(200, "lb"),
  45242. name: "Sitting (NSFW)",
  45243. image: {
  45244. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45245. extra: 581/485,
  45246. bottom: 90/671
  45247. }
  45248. },
  45249. wizardFrontNsfw: {
  45250. height: math.unit(7.9, "feet"),
  45251. weight: math.unit(200, "lb"),
  45252. name: "Wizard (Front, NSFW)",
  45253. image: {
  45254. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45255. }
  45256. },
  45257. },
  45258. [
  45259. {
  45260. name: "Normal",
  45261. height: math.unit(6, "feet"),
  45262. default: true
  45263. },
  45264. ]
  45265. ))
  45266. characterMakers.push(() => makeCharacter(
  45267. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45268. {
  45269. front: {
  45270. height: math.unit(5 + 2/12, "feet"),
  45271. name: "Front",
  45272. image: {
  45273. source: "./media/characters/lumi/front.svg",
  45274. extra: 1328/1268,
  45275. bottom: 103/1431
  45276. }
  45277. },
  45278. back: {
  45279. height: math.unit(5 + 2/12, "feet"),
  45280. name: "Back",
  45281. image: {
  45282. source: "./media/characters/lumi/back.svg",
  45283. extra: 1381/1327,
  45284. bottom: 43/1424
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Normal",
  45291. height: math.unit(5 + 2/12, "feet"),
  45292. default: true
  45293. },
  45294. ]
  45295. ))
  45296. characterMakers.push(() => makeCharacter(
  45297. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45298. {
  45299. front: {
  45300. height: math.unit(5 + 9/12, "feet"),
  45301. name: "Front",
  45302. image: {
  45303. source: "./media/characters/aliya-cotton/front.svg",
  45304. extra: 577/564,
  45305. bottom: 29/606
  45306. }
  45307. },
  45308. },
  45309. [
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(5 + 9/12, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45319. {
  45320. front: {
  45321. height: math.unit(2.7, "meters"),
  45322. weight: math.unit(25000, "lb"),
  45323. name: "Front",
  45324. image: {
  45325. source: "./media/characters/noah-luxray/front.svg",
  45326. extra: 1644/825,
  45327. bottom: 339/1983
  45328. }
  45329. },
  45330. side: {
  45331. height: math.unit(2.97, "meters"),
  45332. weight: math.unit(25000, "lb"),
  45333. name: "Side",
  45334. image: {
  45335. source: "./media/characters/noah-luxray/side.svg",
  45336. extra: 1319/650,
  45337. bottom: 163/1482
  45338. }
  45339. },
  45340. dick: {
  45341. height: math.unit(7.4, "feet"),
  45342. weight: math.unit(2500, "lb"),
  45343. name: "Dick",
  45344. image: {
  45345. source: "./media/characters/noah-luxray/dick.svg"
  45346. }
  45347. },
  45348. dickAlt: {
  45349. height: math.unit(10.83, "feet"),
  45350. weight: math.unit(2500, "lb"),
  45351. name: "Dick-alt",
  45352. image: {
  45353. source: "./media/characters/noah-luxray/dick-alt.svg"
  45354. }
  45355. },
  45356. },
  45357. [
  45358. {
  45359. name: "BIG",
  45360. height: math.unit(2.7, "meters"),
  45361. default: true
  45362. },
  45363. ]
  45364. ))
  45365. characterMakers.push(() => makeCharacter(
  45366. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45367. {
  45368. standing: {
  45369. height: math.unit(183, "cm"),
  45370. weight: math.unit(68, "kg"),
  45371. name: "Standing",
  45372. image: {
  45373. source: "./media/characters/arion/standing.svg",
  45374. extra: 1869/1807,
  45375. bottom: 93/1962
  45376. }
  45377. },
  45378. reclining: {
  45379. height: math.unit(70.5, "cm"),
  45380. weight: math.unit(68, "lb"),
  45381. name: "Reclining",
  45382. image: {
  45383. source: "./media/characters/arion/reclining.svg",
  45384. extra: 937/870,
  45385. bottom: 63/1000
  45386. }
  45387. },
  45388. },
  45389. [
  45390. {
  45391. name: "Colossus Size, Low",
  45392. height: math.unit(33, "meters"),
  45393. default: true
  45394. },
  45395. {
  45396. name: "Colossus Size, Mid",
  45397. height: math.unit(52, "meters")
  45398. },
  45399. {
  45400. name: "Colossus Size, High",
  45401. height: math.unit(60, "meters")
  45402. },
  45403. {
  45404. name: "Titan Size, Low",
  45405. height: math.unit(91, "meters"),
  45406. },
  45407. {
  45408. name: "Titan Size, Mid",
  45409. height: math.unit(122, "meters")
  45410. },
  45411. {
  45412. name: "Titan Size, High",
  45413. height: math.unit(162, "meters")
  45414. },
  45415. ]
  45416. ))
  45417. characterMakers.push(() => makeCharacter(
  45418. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45419. {
  45420. front: {
  45421. height: math.unit(53, "meters"),
  45422. name: "Front",
  45423. image: {
  45424. source: "./media/characters/stellar-marbey/front.svg",
  45425. extra: 1913/1805,
  45426. bottom: 92/2005
  45427. }
  45428. },
  45429. back: {
  45430. height: math.unit(53, "meters"),
  45431. name: "Back",
  45432. image: {
  45433. source: "./media/characters/stellar-marbey/back.svg",
  45434. extra: 1960/1851,
  45435. bottom: 28/1988
  45436. }
  45437. },
  45438. mouth: {
  45439. height: math.unit(3.5, "meters"),
  45440. name: "Mouth",
  45441. image: {
  45442. source: "./media/characters/stellar-marbey/mouth.svg"
  45443. }
  45444. },
  45445. },
  45446. [
  45447. {
  45448. name: "Macro",
  45449. height: math.unit(53, "meters"),
  45450. default: true
  45451. },
  45452. ]
  45453. ))
  45454. characterMakers.push(() => makeCharacter(
  45455. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45456. {
  45457. front: {
  45458. height: math.unit(8 + 1/12, "feet"),
  45459. weight: math.unit(233, "lb"),
  45460. name: "Front",
  45461. image: {
  45462. source: "./media/characters/matsu/front.svg",
  45463. extra: 832/772,
  45464. bottom: 40/872
  45465. }
  45466. },
  45467. back: {
  45468. height: math.unit(8 + 1/12, "feet"),
  45469. weight: math.unit(233, "lb"),
  45470. name: "Back",
  45471. image: {
  45472. source: "./media/characters/matsu/back.svg",
  45473. extra: 839/780,
  45474. bottom: 47/886
  45475. }
  45476. },
  45477. },
  45478. [
  45479. {
  45480. name: "Normal",
  45481. height: math.unit(8 + 1/12, "feet"),
  45482. default: true
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45488. {
  45489. front: {
  45490. height: math.unit(4, "feet"),
  45491. weight: math.unit(148, "lb"),
  45492. name: "Front",
  45493. image: {
  45494. source: "./media/characters/thiz/front.svg",
  45495. extra: 1913/1748,
  45496. bottom: 62/1975
  45497. }
  45498. },
  45499. },
  45500. [
  45501. {
  45502. name: "Normal",
  45503. height: math.unit(4, "feet"),
  45504. default: true
  45505. },
  45506. ]
  45507. ))
  45508. characterMakers.push(() => makeCharacter(
  45509. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45510. {
  45511. front: {
  45512. height: math.unit(7 + 6/12, "feet"),
  45513. weight: math.unit(267, "lb"),
  45514. name: "Front",
  45515. image: {
  45516. source: "./media/characters/marcel/front.svg",
  45517. extra: 1221/1096,
  45518. bottom: 76/1297
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Normal",
  45525. height: math.unit(7 + 6/12, "feet"),
  45526. default: true
  45527. },
  45528. ]
  45529. ))
  45530. characterMakers.push(() => makeCharacter(
  45531. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45532. {
  45533. side: {
  45534. height: math.unit(42, "meters"),
  45535. name: "Side",
  45536. image: {
  45537. source: "./media/characters/flake/side.svg",
  45538. extra: 1525/1306,
  45539. bottom: 209/1734
  45540. }
  45541. },
  45542. },
  45543. [
  45544. {
  45545. name: "Normal",
  45546. height: math.unit(42, "meters"),
  45547. default: true
  45548. },
  45549. ]
  45550. ))
  45551. characterMakers.push(() => makeCharacter(
  45552. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45553. {
  45554. dressed: {
  45555. height: math.unit(6 + 4/12, "feet"),
  45556. weight: math.unit(520, "lb"),
  45557. name: "Dressed",
  45558. image: {
  45559. source: "./media/characters/someonne/dressed.svg",
  45560. extra: 1020/1010,
  45561. bottom: 178/1198
  45562. }
  45563. },
  45564. undressed: {
  45565. height: math.unit(6 + 4/12, "feet"),
  45566. weight: math.unit(520, "lb"),
  45567. name: "Undressed",
  45568. image: {
  45569. source: "./media/characters/someonne/undressed.svg",
  45570. extra: 1019/1014,
  45571. bottom: 169/1188
  45572. }
  45573. },
  45574. },
  45575. [
  45576. {
  45577. name: "Normal",
  45578. height: math.unit(6 + 4/12, "feet"),
  45579. default: true
  45580. },
  45581. ]
  45582. ))
  45583. characterMakers.push(() => makeCharacter(
  45584. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45585. {
  45586. front: {
  45587. height: math.unit(3, "feet"),
  45588. weight: math.unit(30, "lb"),
  45589. name: "Front",
  45590. image: {
  45591. source: "./media/characters/till/front.svg",
  45592. extra: 892/823,
  45593. bottom: 55/947
  45594. }
  45595. },
  45596. },
  45597. [
  45598. {
  45599. name: "Normal",
  45600. height: math.unit(3, "feet"),
  45601. default: true
  45602. },
  45603. ]
  45604. ))
  45605. characterMakers.push(() => makeCharacter(
  45606. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45607. {
  45608. front: {
  45609. height: math.unit(9 + 8/12, "feet"),
  45610. weight: math.unit(800, "lb"),
  45611. name: "Front",
  45612. image: {
  45613. source: "./media/characters/sydney-heki/front.svg",
  45614. extra: 1360/1300,
  45615. bottom: 22/1382
  45616. }
  45617. },
  45618. back: {
  45619. height: math.unit(9 + 8/12, "feet"),
  45620. weight: math.unit(800, "lb"),
  45621. name: "Back",
  45622. image: {
  45623. source: "./media/characters/sydney-heki/back.svg",
  45624. extra: 1356/1293,
  45625. bottom: 12/1368
  45626. }
  45627. },
  45628. frontDressed: {
  45629. height: math.unit(9 + 8/12, "feet"),
  45630. weight: math.unit(800, "lb"),
  45631. name: "Front-dressed",
  45632. image: {
  45633. source: "./media/characters/sydney-heki/front-dressed.svg",
  45634. extra: 1360/1300,
  45635. bottom: 22/1382
  45636. }
  45637. },
  45638. },
  45639. [
  45640. {
  45641. name: "Normal",
  45642. height: math.unit(9 + 8/12, "feet"),
  45643. default: true
  45644. },
  45645. {
  45646. name: "Macro",
  45647. height: math.unit(500, "feet")
  45648. },
  45649. {
  45650. name: "Megamacro",
  45651. height: math.unit(3.6, "miles")
  45652. },
  45653. ]
  45654. ))
  45655. characterMakers.push(() => makeCharacter(
  45656. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45657. {
  45658. front: {
  45659. height: math.unit(200, "cm"),
  45660. weight: math.unit(250, "lb"),
  45661. name: "Front",
  45662. image: {
  45663. source: "./media/characters/fowler-karlsson/front.svg",
  45664. extra: 897/845,
  45665. bottom: 123/1020
  45666. }
  45667. },
  45668. back: {
  45669. height: math.unit(200, "cm"),
  45670. weight: math.unit(250, "lb"),
  45671. name: "Back",
  45672. image: {
  45673. source: "./media/characters/fowler-karlsson/back.svg",
  45674. extra: 999/944,
  45675. bottom: 26/1025
  45676. }
  45677. },
  45678. dick: {
  45679. height: math.unit(1.92, "feet"),
  45680. weight: math.unit(150, "lb"),
  45681. name: "Dick",
  45682. image: {
  45683. source: "./media/characters/fowler-karlsson/dick.svg"
  45684. }
  45685. },
  45686. },
  45687. [
  45688. {
  45689. name: "Normal",
  45690. height: math.unit(200, "cm"),
  45691. default: true
  45692. },
  45693. {
  45694. name: "Smaller Macro",
  45695. height: math.unit(90, "m")
  45696. },
  45697. {
  45698. name: "Macro",
  45699. height: math.unit(150, "m")
  45700. },
  45701. {
  45702. name: "Bigger Macro",
  45703. height: math.unit(300, "m")
  45704. },
  45705. ]
  45706. ))
  45707. characterMakers.push(() => makeCharacter(
  45708. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45709. {
  45710. side: {
  45711. height: math.unit(8 + 2/12, "feet"),
  45712. weight: math.unit(1, "tonne"),
  45713. name: "Side",
  45714. image: {
  45715. source: "./media/characters/rylide/side.svg",
  45716. extra: 1318/1034,
  45717. bottom: 106/1424
  45718. }
  45719. },
  45720. sitting: {
  45721. height: math.unit(303, "cm"),
  45722. weight: math.unit(1, "tonne"),
  45723. name: "Sitting",
  45724. image: {
  45725. source: "./media/characters/rylide/sitting.svg",
  45726. extra: 1303/1103,
  45727. bottom: 36/1339
  45728. }
  45729. },
  45730. },
  45731. [
  45732. {
  45733. name: "Normal",
  45734. height: math.unit(8 + 2/12, "feet"),
  45735. default: true
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45741. {
  45742. front: {
  45743. height: math.unit(5 + 10/12, "feet"),
  45744. weight: math.unit(160, "lb"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/pudask/front.svg",
  45748. extra: 1616/1590,
  45749. bottom: 161/1777
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Ferret Height",
  45756. height: math.unit(2 + 5/12, "feet")
  45757. },
  45758. {
  45759. name: "Canon Height",
  45760. height: math.unit(5 + 10/12, "feet"),
  45761. default: true
  45762. },
  45763. ]
  45764. ))
  45765. characterMakers.push(() => makeCharacter(
  45766. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45767. {
  45768. front: {
  45769. height: math.unit(3 + 6/12, "feet"),
  45770. weight: math.unit(60, "lb"),
  45771. name: "Front",
  45772. image: {
  45773. source: "./media/characters/ramita/front.svg",
  45774. extra: 1402/1232,
  45775. bottom: 62/1464
  45776. }
  45777. },
  45778. dressed: {
  45779. height: math.unit(3 + 6/12, "feet"),
  45780. weight: math.unit(60, "lb"),
  45781. name: "Dressed",
  45782. image: {
  45783. source: "./media/characters/ramita/dressed.svg",
  45784. extra: 1534/1249,
  45785. bottom: 50/1584
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(3 + 6/12, "feet"),
  45793. default: true
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(8, "feet"),
  45802. name: "Front",
  45803. image: {
  45804. source: "./media/characters/ark/front.svg",
  45805. extra: 772/693,
  45806. bottom: 45/817
  45807. }
  45808. },
  45809. },
  45810. [
  45811. {
  45812. name: "Normal",
  45813. height: math.unit(8, "feet"),
  45814. default: true
  45815. },
  45816. ]
  45817. ))
  45818. characterMakers.push(() => makeCharacter(
  45819. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45820. {
  45821. front: {
  45822. height: math.unit(6, "feet"),
  45823. weight: math.unit(250, "lb"),
  45824. volume: math.unit(5/8, "gallons"),
  45825. name: "Front",
  45826. image: {
  45827. source: "./media/characters/ludwig-horn/front.svg",
  45828. extra: 1782/1635,
  45829. bottom: 96/1878
  45830. }
  45831. },
  45832. back: {
  45833. height: math.unit(6, "feet"),
  45834. weight: math.unit(250, "lb"),
  45835. volume: math.unit(5/8, "gallons"),
  45836. name: "Back",
  45837. image: {
  45838. source: "./media/characters/ludwig-horn/back.svg",
  45839. extra: 1874/1729,
  45840. bottom: 27/1901
  45841. }
  45842. },
  45843. dick: {
  45844. height: math.unit(1.05, "feet"),
  45845. weight: math.unit(15, "lb"),
  45846. volume: math.unit(5/8, "gallons"),
  45847. name: "Dick",
  45848. image: {
  45849. source: "./media/characters/ludwig-horn/dick.svg"
  45850. }
  45851. },
  45852. },
  45853. [
  45854. {
  45855. name: "Small",
  45856. height: math.unit(6, "feet")
  45857. },
  45858. {
  45859. name: "Typical",
  45860. height: math.unit(12, "feet"),
  45861. default: true
  45862. },
  45863. {
  45864. name: "Building",
  45865. height: math.unit(80, "feet")
  45866. },
  45867. {
  45868. name: "Town",
  45869. height: math.unit(800, "feet")
  45870. },
  45871. {
  45872. name: "Kingdom",
  45873. height: math.unit(80000, "feet")
  45874. },
  45875. {
  45876. name: "Planet",
  45877. height: math.unit(8000000, "feet")
  45878. },
  45879. {
  45880. name: "Universe",
  45881. height: math.unit(8000000000, "feet")
  45882. },
  45883. {
  45884. name: "Transcended",
  45885. height: math.unit(8e27, "feet")
  45886. },
  45887. ]
  45888. ))
  45889. characterMakers.push(() => makeCharacter(
  45890. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45891. {
  45892. front: {
  45893. height: math.unit(5, "feet"),
  45894. weight: math.unit(50, "kg"),
  45895. name: "Front",
  45896. image: {
  45897. source: "./media/characters/biot-avery/front.svg",
  45898. extra: 1295/1232,
  45899. bottom: 86/1381
  45900. }
  45901. },
  45902. },
  45903. [
  45904. {
  45905. name: "Normal",
  45906. height: math.unit(5, "feet"),
  45907. default: true
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45913. {
  45914. front: {
  45915. height: math.unit(6, "feet"),
  45916. name: "Front",
  45917. image: {
  45918. source: "./media/characters/kitsune-kiro/front.svg",
  45919. extra: 1270/1158,
  45920. bottom: 42/1312
  45921. }
  45922. },
  45923. frontAlt: {
  45924. height: math.unit(6, "feet"),
  45925. name: "Front-alt",
  45926. image: {
  45927. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45928. extra: 1130/1081,
  45929. bottom: 36/1166
  45930. }
  45931. },
  45932. },
  45933. [
  45934. {
  45935. name: "Smol",
  45936. height: math.unit(3, "feet")
  45937. },
  45938. {
  45939. name: "Normal",
  45940. height: math.unit(6, "feet"),
  45941. default: true
  45942. },
  45943. ]
  45944. ))
  45945. characterMakers.push(() => makeCharacter(
  45946. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45947. {
  45948. front: {
  45949. height: math.unit(6, "feet"),
  45950. weight: math.unit(125, "lb"),
  45951. name: "Front",
  45952. image: {
  45953. source: "./media/characters/jack-thatcher/front.svg",
  45954. extra: 1474/1370,
  45955. bottom: 26/1500
  45956. }
  45957. },
  45958. back: {
  45959. height: math.unit(6, "feet"),
  45960. weight: math.unit(125, "lb"),
  45961. name: "Back",
  45962. image: {
  45963. source: "./media/characters/jack-thatcher/back.svg",
  45964. extra: 1489/1384,
  45965. bottom: 18/1507
  45966. }
  45967. },
  45968. },
  45969. [
  45970. {
  45971. name: "Normal",
  45972. height: math.unit(6, "feet"),
  45973. default: true
  45974. },
  45975. {
  45976. name: "Macro",
  45977. height: math.unit(75, "feet")
  45978. },
  45979. {
  45980. name: "Macro-er",
  45981. height: math.unit(250, "feet")
  45982. },
  45983. ]
  45984. ))
  45985. characterMakers.push(() => makeCharacter(
  45986. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45987. {
  45988. front: {
  45989. height: math.unit(7, "feet"),
  45990. weight: math.unit(110, "kg"),
  45991. name: "Front",
  45992. image: {
  45993. source: "./media/characters/max-hyper/front.svg",
  45994. extra: 1969/1881,
  45995. bottom: 49/2018
  45996. }
  45997. },
  45998. },
  45999. [
  46000. {
  46001. name: "Normal",
  46002. height: math.unit(7, "feet"),
  46003. default: true
  46004. },
  46005. ]
  46006. ))
  46007. characterMakers.push(() => makeCharacter(
  46008. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46009. {
  46010. front: {
  46011. height: math.unit(5 + 5/12, "feet"),
  46012. weight: math.unit(160, "lb"),
  46013. name: "Front",
  46014. image: {
  46015. source: "./media/characters/spook/front.svg",
  46016. extra: 794/791,
  46017. bottom: 54/848
  46018. }
  46019. },
  46020. back: {
  46021. height: math.unit(5 + 5/12, "feet"),
  46022. weight: math.unit(160, "lb"),
  46023. name: "Back",
  46024. image: {
  46025. source: "./media/characters/spook/back.svg",
  46026. extra: 812/798,
  46027. bottom: 32/844
  46028. }
  46029. },
  46030. },
  46031. [
  46032. {
  46033. name: "Normal",
  46034. height: math.unit(5 + 5/12, "feet"),
  46035. default: true
  46036. },
  46037. ]
  46038. ))
  46039. characterMakers.push(() => makeCharacter(
  46040. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46041. {
  46042. front: {
  46043. height: math.unit(18, "feet"),
  46044. name: "Front",
  46045. image: {
  46046. source: "./media/characters/xeaduulix/front.svg",
  46047. extra: 1380/1166,
  46048. bottom: 110/1490
  46049. }
  46050. },
  46051. back: {
  46052. height: math.unit(18, "feet"),
  46053. name: "Back",
  46054. image: {
  46055. source: "./media/characters/xeaduulix/back.svg",
  46056. extra: 1592/1170,
  46057. bottom: 128/1720
  46058. }
  46059. },
  46060. frontNsfw: {
  46061. height: math.unit(18, "feet"),
  46062. name: "Front (NSFW)",
  46063. image: {
  46064. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46065. extra: 1380/1166,
  46066. bottom: 110/1490
  46067. }
  46068. },
  46069. backNsfw: {
  46070. height: math.unit(18, "feet"),
  46071. name: "Back (NSFW)",
  46072. image: {
  46073. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46074. extra: 1592/1170,
  46075. bottom: 128/1720
  46076. }
  46077. },
  46078. },
  46079. [
  46080. {
  46081. name: "Normal",
  46082. height: math.unit(18, "feet"),
  46083. default: true
  46084. },
  46085. ]
  46086. ))
  46087. characterMakers.push(() => makeCharacter(
  46088. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46089. {
  46090. spreadWings: {
  46091. height: math.unit(20, "feet"),
  46092. name: "Spread Wings",
  46093. image: {
  46094. source: "./media/characters/fledge/spread-wings.svg",
  46095. extra: 693/635,
  46096. bottom: 26/719
  46097. }
  46098. },
  46099. front: {
  46100. height: math.unit(20, "feet"),
  46101. name: "Front",
  46102. image: {
  46103. source: "./media/characters/fledge/front.svg",
  46104. extra: 684/637,
  46105. bottom: 18/702
  46106. }
  46107. },
  46108. frontAlt: {
  46109. height: math.unit(20, "feet"),
  46110. name: "Front (Alt)",
  46111. image: {
  46112. source: "./media/characters/fledge/front-alt.svg",
  46113. extra: 708/664,
  46114. bottom: 13/721
  46115. }
  46116. },
  46117. back: {
  46118. height: math.unit(20, "feet"),
  46119. name: "Back",
  46120. image: {
  46121. source: "./media/characters/fledge/back.svg",
  46122. extra: 718/634,
  46123. bottom: 22/740
  46124. }
  46125. },
  46126. head: {
  46127. height: math.unit(5.55, "feet"),
  46128. name: "Head",
  46129. image: {
  46130. source: "./media/characters/fledge/head.svg"
  46131. }
  46132. },
  46133. headAlt: {
  46134. height: math.unit(5.1, "feet"),
  46135. name: "Head (Alt)",
  46136. image: {
  46137. source: "./media/characters/fledge/head-alt.svg"
  46138. }
  46139. },
  46140. },
  46141. [
  46142. {
  46143. name: "Small",
  46144. height: math.unit(6 + 2/12, "feet")
  46145. },
  46146. {
  46147. name: "Big",
  46148. height: math.unit(20, "feet"),
  46149. default: true
  46150. },
  46151. {
  46152. name: "Giant",
  46153. height: math.unit(100, "feet")
  46154. },
  46155. {
  46156. name: "Macro",
  46157. height: math.unit(200, "feet")
  46158. },
  46159. ]
  46160. ))
  46161. characterMakers.push(() => makeCharacter(
  46162. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46163. {
  46164. front: {
  46165. height: math.unit(1, "meter"),
  46166. name: "Front",
  46167. image: {
  46168. source: "./media/characters/atlas-morenai/front.svg",
  46169. extra: 1275/1043,
  46170. bottom: 19/1294
  46171. }
  46172. },
  46173. back: {
  46174. height: math.unit(1, "meter"),
  46175. name: "Back",
  46176. image: {
  46177. source: "./media/characters/atlas-morenai/back.svg",
  46178. extra: 1141/1001,
  46179. bottom: 25/1166
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Normal",
  46186. height: math.unit(1, "meter"),
  46187. default: true
  46188. },
  46189. {
  46190. name: "Magic-Infused",
  46191. height: math.unit(5, "meters")
  46192. },
  46193. ]
  46194. ))
  46195. characterMakers.push(() => makeCharacter(
  46196. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46197. {
  46198. front: {
  46199. height: math.unit(5, "meters"),
  46200. name: "Front",
  46201. image: {
  46202. source: "./media/characters/cintia/front.svg",
  46203. extra: 1312/1228,
  46204. bottom: 38/1350
  46205. }
  46206. },
  46207. back: {
  46208. height: math.unit(5, "meters"),
  46209. name: "Back",
  46210. image: {
  46211. source: "./media/characters/cintia/back.svg",
  46212. extra: 1260/1166,
  46213. bottom: 98/1358
  46214. }
  46215. },
  46216. frontDick: {
  46217. height: math.unit(5, "meters"),
  46218. name: "Front (Dick)",
  46219. image: {
  46220. source: "./media/characters/cintia/front-dick.svg",
  46221. extra: 1312/1228,
  46222. bottom: 38/1350
  46223. }
  46224. },
  46225. backDick: {
  46226. height: math.unit(5, "meters"),
  46227. name: "Back (Dick)",
  46228. image: {
  46229. source: "./media/characters/cintia/back-dick.svg",
  46230. extra: 1260/1166,
  46231. bottom: 98/1358
  46232. }
  46233. },
  46234. bust: {
  46235. height: math.unit(1.97, "meters"),
  46236. name: "Bust",
  46237. image: {
  46238. source: "./media/characters/cintia/bust.svg",
  46239. extra: 617/565,
  46240. bottom: 0/617
  46241. }
  46242. },
  46243. },
  46244. [
  46245. {
  46246. name: "Normal",
  46247. height: math.unit(5, "meters"),
  46248. default: true
  46249. },
  46250. ]
  46251. ))
  46252. characterMakers.push(() => makeCharacter(
  46253. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46254. {
  46255. side: {
  46256. height: math.unit(100, "feet"),
  46257. name: "Side",
  46258. image: {
  46259. source: "./media/characters/denora/side.svg",
  46260. extra: 875/803,
  46261. bottom: 9/884
  46262. }
  46263. },
  46264. },
  46265. [
  46266. {
  46267. name: "Standard",
  46268. height: math.unit(100, "feet"),
  46269. default: true
  46270. },
  46271. {
  46272. name: "Grand",
  46273. height: math.unit(1000, "feet")
  46274. },
  46275. {
  46276. name: "Conquering",
  46277. height: math.unit(10000, "feet")
  46278. },
  46279. ]
  46280. ))
  46281. characterMakers.push(() => makeCharacter(
  46282. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46283. {
  46284. dressed: {
  46285. height: math.unit(8 + 5/12, "feet"),
  46286. weight: math.unit(700, "lb"),
  46287. name: "Dressed",
  46288. image: {
  46289. source: "./media/characters/kiva/dressed.svg",
  46290. extra: 1102/1055,
  46291. bottom: 60/1162
  46292. }
  46293. },
  46294. nude: {
  46295. height: math.unit(8 + 5/12, "feet"),
  46296. weight: math.unit(700, "lb"),
  46297. name: "Nude",
  46298. image: {
  46299. source: "./media/characters/kiva/nude.svg",
  46300. extra: 1102/1055,
  46301. bottom: 60/1162
  46302. }
  46303. },
  46304. },
  46305. [
  46306. {
  46307. name: "Base Height",
  46308. height: math.unit(8 + 5/12, "feet"),
  46309. default: true
  46310. },
  46311. {
  46312. name: "Macro",
  46313. height: math.unit(100, "feet")
  46314. },
  46315. {
  46316. name: "Max",
  46317. height: math.unit(3280, "feet")
  46318. },
  46319. ]
  46320. ))
  46321. characterMakers.push(() => makeCharacter(
  46322. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46323. {
  46324. front: {
  46325. height: math.unit(6 + 8/12, "feet"),
  46326. weight: math.unit(250, "lb"),
  46327. name: "Front",
  46328. image: {
  46329. source: "./media/characters/ztragon/front.svg",
  46330. extra: 1825/1684,
  46331. bottom: 98/1923
  46332. }
  46333. },
  46334. },
  46335. [
  46336. {
  46337. name: "Normal",
  46338. height: math.unit(6 + 8/12, "feet"),
  46339. default: true
  46340. },
  46341. {
  46342. name: "Macro",
  46343. height: math.unit(80, "feet")
  46344. },
  46345. ]
  46346. ))
  46347. characterMakers.push(() => makeCharacter(
  46348. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46349. {
  46350. front: {
  46351. height: math.unit(10.4, "feet"),
  46352. weight: math.unit(2, "tons"),
  46353. name: "Front",
  46354. image: {
  46355. source: "./media/characters/yesenia/front.svg",
  46356. extra: 1479/1474,
  46357. bottom: 233/1712
  46358. }
  46359. },
  46360. },
  46361. [
  46362. {
  46363. name: "Normal",
  46364. height: math.unit(10.4, "feet"),
  46365. default: true
  46366. },
  46367. ]
  46368. ))
  46369. characterMakers.push(() => makeCharacter(
  46370. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46371. {
  46372. normal: {
  46373. height: math.unit(6 + 1/12, "feet"),
  46374. weight: math.unit(180, "lb"),
  46375. name: "Normal",
  46376. image: {
  46377. source: "./media/characters/leanne-lycheborne/normal.svg",
  46378. extra: 1748/1660,
  46379. bottom: 98/1846
  46380. }
  46381. },
  46382. were: {
  46383. height: math.unit(12, "feet"),
  46384. weight: math.unit(1600, "lb"),
  46385. name: "Were",
  46386. image: {
  46387. source: "./media/characters/leanne-lycheborne/were.svg",
  46388. extra: 1485/1432,
  46389. bottom: 66/1551
  46390. }
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(6 + 1/12, "feet"),
  46397. default: true
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46403. {
  46404. side: {
  46405. height: math.unit(13, "feet"),
  46406. name: "Side",
  46407. image: {
  46408. source: "./media/characters/kira-tyler/side.svg",
  46409. extra: 693/393,
  46410. bottom: 58/751
  46411. }
  46412. },
  46413. },
  46414. [
  46415. {
  46416. name: "Normal",
  46417. height: math.unit(13, "feet"),
  46418. default: true
  46419. },
  46420. ]
  46421. ))
  46422. characterMakers.push(() => makeCharacter(
  46423. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46424. {
  46425. front: {
  46426. height: math.unit(10.3, "feet"),
  46427. weight: math.unit(150, "lb"),
  46428. name: "Front",
  46429. image: {
  46430. source: "./media/characters/blaze/front.svg",
  46431. extra: 1378/1286,
  46432. bottom: 172/1550
  46433. }
  46434. },
  46435. },
  46436. [
  46437. {
  46438. name: "Normal",
  46439. height: math.unit(10.3, "feet"),
  46440. default: true
  46441. },
  46442. ]
  46443. ))
  46444. characterMakers.push(() => makeCharacter(
  46445. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46446. {
  46447. side: {
  46448. height: math.unit(2, "meters"),
  46449. weight: math.unit(400, "kg"),
  46450. name: "Side",
  46451. image: {
  46452. source: "./media/characters/anu/side.svg",
  46453. extra: 506/394,
  46454. bottom: 18/524
  46455. }
  46456. },
  46457. },
  46458. [
  46459. {
  46460. name: "Humanoid",
  46461. height: math.unit(2, "meters")
  46462. },
  46463. {
  46464. name: "Normal",
  46465. height: math.unit(5, "meters"),
  46466. default: true
  46467. },
  46468. ]
  46469. ))
  46470. characterMakers.push(() => makeCharacter(
  46471. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46472. {
  46473. front: {
  46474. height: math.unit(5 + 5/12, "feet"),
  46475. weight: math.unit(170, "lb"),
  46476. name: "Front",
  46477. image: {
  46478. source: "./media/characters/synx-the-lynx/front.svg",
  46479. extra: 1893/1745,
  46480. bottom: 17/1910
  46481. }
  46482. },
  46483. side: {
  46484. height: math.unit(5 + 5/12, "feet"),
  46485. weight: math.unit(170, "lb"),
  46486. name: "Side",
  46487. image: {
  46488. source: "./media/characters/synx-the-lynx/side.svg",
  46489. extra: 1884/1740,
  46490. bottom: 39/1923
  46491. }
  46492. },
  46493. back: {
  46494. height: math.unit(5 + 5/12, "feet"),
  46495. weight: math.unit(170, "lb"),
  46496. name: "Back",
  46497. image: {
  46498. source: "./media/characters/synx-the-lynx/back.svg",
  46499. extra: 1903/1755,
  46500. bottom: 14/1917
  46501. }
  46502. },
  46503. },
  46504. [
  46505. {
  46506. name: "Normal",
  46507. height: math.unit(5 + 5/12, "feet"),
  46508. default: true
  46509. },
  46510. ]
  46511. ))
  46512. characterMakers.push(() => makeCharacter(
  46513. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46514. {
  46515. back: {
  46516. height: math.unit(15, "feet"),
  46517. name: "Back",
  46518. image: {
  46519. source: "./media/characters/nadezda-fex/back.svg",
  46520. extra: 1695/1481,
  46521. bottom: 25/1720
  46522. }
  46523. },
  46524. },
  46525. [
  46526. {
  46527. name: "Normal",
  46528. height: math.unit(15, "feet"),
  46529. default: true
  46530. },
  46531. {
  46532. name: "Macro",
  46533. height: math.unit(2.5, "miles")
  46534. },
  46535. {
  46536. name: "Goddess",
  46537. height: math.unit(2, "multiverses")
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46543. {
  46544. front: {
  46545. height: math.unit(216, "cm"),
  46546. name: "Front",
  46547. image: {
  46548. source: "./media/characters/lev/front.svg",
  46549. extra: 1728/1670,
  46550. bottom: 82/1810
  46551. }
  46552. },
  46553. back: {
  46554. height: math.unit(216, "cm"),
  46555. name: "Back",
  46556. image: {
  46557. source: "./media/characters/lev/back.svg",
  46558. extra: 1738/1675,
  46559. bottom: 24/1762
  46560. }
  46561. },
  46562. dressed: {
  46563. height: math.unit(216, "cm"),
  46564. name: "Dressed",
  46565. image: {
  46566. source: "./media/characters/lev/dressed.svg",
  46567. extra: 1397/1351,
  46568. bottom: 73/1470
  46569. }
  46570. },
  46571. head: {
  46572. height: math.unit(0.51, "meter"),
  46573. name: "Head",
  46574. image: {
  46575. source: "./media/characters/lev/head.svg"
  46576. }
  46577. },
  46578. },
  46579. [
  46580. {
  46581. name: "Normal",
  46582. height: math.unit(216, "cm"),
  46583. default: true
  46584. },
  46585. {
  46586. name: "Relatively Macro",
  46587. height: math.unit(80, "meters")
  46588. },
  46589. {
  46590. name: "Megamacro",
  46591. height: math.unit(21600, "meters")
  46592. },
  46593. {
  46594. name: "Megamacro+",
  46595. height: math.unit(64800, "meters")
  46596. },
  46597. ]
  46598. ))
  46599. characterMakers.push(() => makeCharacter(
  46600. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46601. {
  46602. front: {
  46603. height: math.unit(2, "meters"),
  46604. weight: math.unit(80, "kg"),
  46605. name: "Front",
  46606. image: {
  46607. source: "./media/characters/moka/front.svg",
  46608. extra: 1337/1255,
  46609. bottom: 58/1395
  46610. }
  46611. },
  46612. },
  46613. [
  46614. {
  46615. name: "Micro",
  46616. height: math.unit(15, "cm")
  46617. },
  46618. {
  46619. name: "Normal",
  46620. height: math.unit(2, "meters"),
  46621. default: true
  46622. },
  46623. {
  46624. name: "Macro",
  46625. height: math.unit(20, "meters"),
  46626. },
  46627. ]
  46628. ))
  46629. characterMakers.push(() => makeCharacter(
  46630. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46631. {
  46632. front: {
  46633. height: math.unit(9, "feet"),
  46634. weight: math.unit(240, "lb"),
  46635. name: "Front",
  46636. image: {
  46637. source: "./media/characters/kuzco/front.svg",
  46638. extra: 1593/1487,
  46639. bottom: 32/1625
  46640. }
  46641. },
  46642. side: {
  46643. height: math.unit(9, "feet"),
  46644. weight: math.unit(240, "lb"),
  46645. name: "Side",
  46646. image: {
  46647. source: "./media/characters/kuzco/side.svg",
  46648. extra: 1575/1485,
  46649. bottom: 30/1605
  46650. }
  46651. },
  46652. back: {
  46653. height: math.unit(9, "feet"),
  46654. weight: math.unit(240, "lb"),
  46655. name: "Back",
  46656. image: {
  46657. source: "./media/characters/kuzco/back.svg",
  46658. extra: 1603/1514,
  46659. bottom: 14/1617
  46660. }
  46661. },
  46662. },
  46663. [
  46664. {
  46665. name: "Normal",
  46666. height: math.unit(9, "feet"),
  46667. default: true
  46668. },
  46669. ]
  46670. ))
  46671. characterMakers.push(() => makeCharacter(
  46672. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46673. {
  46674. side: {
  46675. height: math.unit(2, "meters"),
  46676. weight: math.unit(300, "kg"),
  46677. name: "Side",
  46678. image: {
  46679. source: "./media/characters/ceruleus/side.svg",
  46680. extra: 1068/974,
  46681. bottom: 126/1194
  46682. }
  46683. },
  46684. },
  46685. [
  46686. {
  46687. name: "Normal",
  46688. height: math.unit(16, "meters"),
  46689. default: true
  46690. },
  46691. ]
  46692. ))
  46693. characterMakers.push(() => makeCharacter(
  46694. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46695. {
  46696. front: {
  46697. height: math.unit(9, "feet"),
  46698. weight: math.unit(500, "kg"),
  46699. name: "Front",
  46700. image: {
  46701. source: "./media/characters/acouya/front.svg",
  46702. extra: 1660/1473,
  46703. bottom: 28/1688
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Normal",
  46710. height: math.unit(9, "feet"),
  46711. default: true
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46717. {
  46718. front: {
  46719. height: math.unit(5 + 6/12, "feet"),
  46720. weight: math.unit(195, "lb"),
  46721. name: "Front",
  46722. image: {
  46723. source: "./media/characters/vant/front.svg",
  46724. extra: 1396/1320,
  46725. bottom: 20/1416
  46726. }
  46727. },
  46728. back: {
  46729. height: math.unit(5 + 6/12, "feet"),
  46730. weight: math.unit(195, "lb"),
  46731. name: "Back",
  46732. image: {
  46733. source: "./media/characters/vant/back.svg",
  46734. extra: 1396/1320,
  46735. bottom: 20/1416
  46736. }
  46737. },
  46738. maw: {
  46739. height: math.unit(0.75, "feet"),
  46740. name: "Maw",
  46741. image: {
  46742. source: "./media/characters/vant/maw.svg"
  46743. }
  46744. },
  46745. paw: {
  46746. height: math.unit(1.07, "feet"),
  46747. name: "Paw",
  46748. image: {
  46749. source: "./media/characters/vant/paw.svg"
  46750. }
  46751. },
  46752. },
  46753. [
  46754. {
  46755. name: "Micro",
  46756. height: math.unit(0.25, "inches")
  46757. },
  46758. {
  46759. name: "Normal",
  46760. height: math.unit(5 + 6/12, "feet"),
  46761. default: true
  46762. },
  46763. {
  46764. name: "Macro",
  46765. height: math.unit(75, "feet")
  46766. },
  46767. ]
  46768. ))
  46769. characterMakers.push(() => makeCharacter(
  46770. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46771. {
  46772. front: {
  46773. height: math.unit(30, "meters"),
  46774. weight: math.unit(363, "tons"),
  46775. name: "Front",
  46776. image: {
  46777. source: "./media/characters/ahra/front.svg",
  46778. extra: 1914/1814,
  46779. bottom: 46/1960
  46780. }
  46781. },
  46782. },
  46783. [
  46784. {
  46785. name: "Macro",
  46786. height: math.unit(30, "meters"),
  46787. default: true
  46788. },
  46789. ]
  46790. ))
  46791. characterMakers.push(() => makeCharacter(
  46792. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46793. {
  46794. undressed: {
  46795. height: math.unit(2, "m"),
  46796. weight: math.unit(250, "kg"),
  46797. name: "Undressed",
  46798. image: {
  46799. source: "./media/characters/coriander/undressed.svg",
  46800. extra: 1757/1606,
  46801. bottom: 107/1864
  46802. }
  46803. },
  46804. dressed: {
  46805. height: math.unit(2, "m"),
  46806. weight: math.unit(250, "kg"),
  46807. name: "Dressed",
  46808. image: {
  46809. source: "./media/characters/coriander/dressed.svg",
  46810. extra: 1757/1606,
  46811. bottom: 107/1864
  46812. }
  46813. },
  46814. },
  46815. [
  46816. {
  46817. name: "Normal",
  46818. height: math.unit(4, "meters"),
  46819. default: true
  46820. },
  46821. {
  46822. name: "XL",
  46823. height: math.unit(6, "meters")
  46824. },
  46825. {
  46826. name: "XXL",
  46827. height: math.unit(8, "meters")
  46828. },
  46829. ]
  46830. ))
  46831. characterMakers.push(() => makeCharacter(
  46832. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46833. {
  46834. front: {
  46835. height: math.unit(6, "feet"),
  46836. name: "Front",
  46837. image: {
  46838. source: "./media/characters/syrinx/front.svg",
  46839. extra: 1557/1259,
  46840. bottom: 171/1728
  46841. }
  46842. },
  46843. },
  46844. [
  46845. {
  46846. name: "Normal",
  46847. height: math.unit(6 + 3/12, "feet"),
  46848. default: true
  46849. },
  46850. ]
  46851. ))
  46852. characterMakers.push(() => makeCharacter(
  46853. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46854. {
  46855. front: {
  46856. height: math.unit(11 + 6/12, "feet"),
  46857. weight: math.unit(1.5, "tons"),
  46858. name: "Front",
  46859. image: {
  46860. source: "./media/characters/bor/front.svg",
  46861. extra: 1189/1109,
  46862. bottom: 170/1359
  46863. }
  46864. },
  46865. },
  46866. [
  46867. {
  46868. name: "Normal",
  46869. height: math.unit(11 + 6/12, "feet"),
  46870. default: true
  46871. },
  46872. {
  46873. name: "Macro",
  46874. height: math.unit(32 + 9/12, "feet")
  46875. },
  46876. ]
  46877. ))
  46878. characterMakers.push(() => makeCharacter(
  46879. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46880. {
  46881. anthro: {
  46882. height: math.unit(9, "feet"),
  46883. weight: math.unit(2076, "lb"),
  46884. name: "Anthro",
  46885. image: {
  46886. source: "./media/characters/abacus/anthro.svg",
  46887. extra: 1540/1494,
  46888. bottom: 233/1773
  46889. }
  46890. },
  46891. pigeon: {
  46892. height: math.unit(1, "feet"),
  46893. name: "Pigeon",
  46894. image: {
  46895. source: "./media/characters/abacus/pigeon.svg",
  46896. extra: 528/525,
  46897. bottom: 46/574
  46898. }
  46899. },
  46900. },
  46901. [
  46902. {
  46903. name: "Normal",
  46904. height: math.unit(9, "feet"),
  46905. default: true
  46906. },
  46907. ]
  46908. ))
  46909. characterMakers.push(() => makeCharacter(
  46910. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46911. {
  46912. side: {
  46913. height: math.unit(6, "feet"),
  46914. name: "Side",
  46915. image: {
  46916. source: "./media/characters/delkhan/side.svg",
  46917. extra: 1884/1786,
  46918. bottom: 308/2192
  46919. }
  46920. },
  46921. head: {
  46922. height: math.unit(3.38, "feet"),
  46923. name: "Head",
  46924. image: {
  46925. source: "./media/characters/delkhan/head.svg"
  46926. }
  46927. },
  46928. },
  46929. [
  46930. {
  46931. name: "Normal",
  46932. height: math.unit(72, "feet"),
  46933. default: true
  46934. },
  46935. {
  46936. name: "Giant",
  46937. height: math.unit(172, "feet")
  46938. },
  46939. ]
  46940. ))
  46941. characterMakers.push(() => makeCharacter(
  46942. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46943. {
  46944. standing: {
  46945. height: math.unit(6, "feet"),
  46946. name: "Standing",
  46947. image: {
  46948. source: "./media/characters/euchidat/standing.svg",
  46949. extra: 1612/1553,
  46950. bottom: 116/1728
  46951. }
  46952. },
  46953. leaning: {
  46954. height: math.unit(6, "feet"),
  46955. name: "Leaning",
  46956. image: {
  46957. source: "./media/characters/euchidat/leaning.svg",
  46958. extra: 1719/1674,
  46959. bottom: 27/1746
  46960. }
  46961. },
  46962. },
  46963. [
  46964. {
  46965. name: "Normal",
  46966. height: math.unit(175, "feet"),
  46967. default: true
  46968. },
  46969. {
  46970. name: "Megamacro",
  46971. height: math.unit(190, "miles")
  46972. },
  46973. {
  46974. name: "Gigamacro",
  46975. height: math.unit(190000, "miles")
  46976. },
  46977. ]
  46978. ))
  46979. characterMakers.push(() => makeCharacter(
  46980. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46981. {
  46982. front: {
  46983. height: math.unit(6, "feet"),
  46984. weight: math.unit(150, "lb"),
  46985. name: "Front",
  46986. image: {
  46987. source: "./media/characters/rebecca-stack/front.svg",
  46988. extra: 1256/1201,
  46989. bottom: 18/1274
  46990. }
  46991. },
  46992. },
  46993. [
  46994. {
  46995. name: "Normal",
  46996. height: math.unit(5 + 8/12, "feet"),
  46997. default: true
  46998. },
  46999. {
  47000. name: "Demolitionist",
  47001. height: math.unit(200, "feet")
  47002. },
  47003. {
  47004. name: "Out of Control",
  47005. height: math.unit(2, "miles")
  47006. },
  47007. {
  47008. name: "Giga",
  47009. height: math.unit(7200, "miles")
  47010. },
  47011. ]
  47012. ))
  47013. characterMakers.push(() => makeCharacter(
  47014. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47015. {
  47016. front: {
  47017. height: math.unit(6, "feet"),
  47018. weight: math.unit(150, "lb"),
  47019. name: "Front",
  47020. image: {
  47021. source: "./media/characters/jenny-cartwright/front.svg",
  47022. extra: 1384/1376,
  47023. bottom: 58/1442
  47024. }
  47025. },
  47026. },
  47027. [
  47028. {
  47029. name: "Normal",
  47030. height: math.unit(6 + 7/12, "feet"),
  47031. default: true
  47032. },
  47033. {
  47034. name: "Librarian",
  47035. height: math.unit(55, "feet")
  47036. },
  47037. {
  47038. name: "Sightseer",
  47039. height: math.unit(50, "miles")
  47040. },
  47041. {
  47042. name: "Giga",
  47043. height: math.unit(30000, "miles")
  47044. },
  47045. ]
  47046. ))
  47047. characterMakers.push(() => makeCharacter(
  47048. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47049. {
  47050. nude: {
  47051. height: math.unit(8, "feet"),
  47052. weight: math.unit(225, "lb"),
  47053. name: "Nude",
  47054. image: {
  47055. source: "./media/characters/marvy/nude.svg",
  47056. extra: 1900/1683,
  47057. bottom: 89/1989
  47058. }
  47059. },
  47060. dressed: {
  47061. height: math.unit(8, "feet"),
  47062. weight: math.unit(225, "lb"),
  47063. name: "Dressed",
  47064. image: {
  47065. source: "./media/characters/marvy/dressed.svg",
  47066. extra: 1900/1683,
  47067. bottom: 89/1989
  47068. }
  47069. },
  47070. head: {
  47071. height: math.unit(2.85, "feet"),
  47072. name: "Head",
  47073. image: {
  47074. source: "./media/characters/marvy/head.svg"
  47075. }
  47076. },
  47077. },
  47078. [
  47079. {
  47080. name: "Normal",
  47081. height: math.unit(8, "feet"),
  47082. default: true
  47083. },
  47084. ]
  47085. ))
  47086. characterMakers.push(() => makeCharacter(
  47087. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47088. {
  47089. front: {
  47090. height: math.unit(8, "feet"),
  47091. weight: math.unit(250, "lb"),
  47092. name: "Front",
  47093. image: {
  47094. source: "./media/characters/leah/front.svg",
  47095. extra: 1257/1149,
  47096. bottom: 109/1366
  47097. }
  47098. },
  47099. },
  47100. [
  47101. {
  47102. name: "Normal",
  47103. height: math.unit(8, "feet"),
  47104. default: true
  47105. },
  47106. {
  47107. name: "Minimacro",
  47108. height: math.unit(40, "feet")
  47109. },
  47110. {
  47111. name: "Macro",
  47112. height: math.unit(124, "feet")
  47113. },
  47114. {
  47115. name: "Megamacro",
  47116. height: math.unit(850, "feet")
  47117. },
  47118. ]
  47119. ))
  47120. characterMakers.push(() => makeCharacter(
  47121. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47122. {
  47123. side: {
  47124. height: math.unit(13 + 6/12, "feet"),
  47125. weight: math.unit(3200, "lb"),
  47126. name: "Side",
  47127. image: {
  47128. source: "./media/characters/alvir/side.svg",
  47129. extra: 896/589,
  47130. bottom: 26/922
  47131. }
  47132. },
  47133. },
  47134. [
  47135. {
  47136. name: "Normal",
  47137. height: math.unit(13 + 6/12, "feet"),
  47138. default: true
  47139. },
  47140. ]
  47141. ))
  47142. characterMakers.push(() => makeCharacter(
  47143. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47144. {
  47145. front: {
  47146. height: math.unit(5 + 4/12, "feet"),
  47147. weight: math.unit(236, "lb"),
  47148. name: "Front",
  47149. image: {
  47150. source: "./media/characters/zaina-khalil/front.svg",
  47151. extra: 1533/1485,
  47152. bottom: 94/1627
  47153. }
  47154. },
  47155. side: {
  47156. height: math.unit(5 + 4/12, "feet"),
  47157. weight: math.unit(236, "lb"),
  47158. name: "Side",
  47159. image: {
  47160. source: "./media/characters/zaina-khalil/side.svg",
  47161. extra: 1537/1498,
  47162. bottom: 66/1603
  47163. }
  47164. },
  47165. back: {
  47166. height: math.unit(5 + 4/12, "feet"),
  47167. weight: math.unit(236, "lb"),
  47168. name: "Back",
  47169. image: {
  47170. source: "./media/characters/zaina-khalil/back.svg",
  47171. extra: 1546/1494,
  47172. bottom: 89/1635
  47173. }
  47174. },
  47175. },
  47176. [
  47177. {
  47178. name: "Normal",
  47179. height: math.unit(5 + 4/12, "feet"),
  47180. default: true
  47181. },
  47182. ]
  47183. ))
  47184. characterMakers.push(() => makeCharacter(
  47185. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47186. {
  47187. side: {
  47188. height: math.unit(12, "feet"),
  47189. weight: math.unit(4000, "lb"),
  47190. name: "Side",
  47191. image: {
  47192. source: "./media/characters/terry/side.svg",
  47193. extra: 1518/1439,
  47194. bottom: 149/1667
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Normal",
  47201. height: math.unit(12, "feet"),
  47202. default: true
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47208. {
  47209. front: {
  47210. height: math.unit(12, "feet"),
  47211. weight: math.unit(1500, "lb"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/kahea/front.svg",
  47215. extra: 1722/1617,
  47216. bottom: 179/1901
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(12, "feet"),
  47224. default: true
  47225. },
  47226. ]
  47227. ))
  47228. characterMakers.push(() => makeCharacter(
  47229. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47230. {
  47231. demonFront: {
  47232. height: math.unit(36, "feet"),
  47233. name: "Front",
  47234. image: {
  47235. source: "./media/characters/alex-xuria/demon-front.svg",
  47236. extra: 1705/1673,
  47237. bottom: 198/1903
  47238. },
  47239. form: "demon",
  47240. default: true
  47241. },
  47242. demonBack: {
  47243. height: math.unit(36, "feet"),
  47244. name: "Back",
  47245. image: {
  47246. source: "./media/characters/alex-xuria/demon-back.svg",
  47247. extra: 1725/1693,
  47248. bottom: 70/1795
  47249. },
  47250. form: "demon"
  47251. },
  47252. demonHead: {
  47253. height: math.unit(2.14, "meters"),
  47254. name: "Head",
  47255. image: {
  47256. source: "./media/characters/alex-xuria/demon-head.svg"
  47257. },
  47258. form: "demon"
  47259. },
  47260. demonHand: {
  47261. height: math.unit(1.61, "meters"),
  47262. name: "Hand",
  47263. image: {
  47264. source: "./media/characters/alex-xuria/demon-hand.svg"
  47265. },
  47266. form: "demon"
  47267. },
  47268. demonPaw: {
  47269. height: math.unit(1.35, "meters"),
  47270. name: "Paw",
  47271. image: {
  47272. source: "./media/characters/alex-xuria/demon-paw.svg"
  47273. },
  47274. form: "demon"
  47275. },
  47276. demonFoot: {
  47277. height: math.unit(2.2, "meters"),
  47278. name: "Foot",
  47279. image: {
  47280. source: "./media/characters/alex-xuria/demon-foot.svg"
  47281. },
  47282. form: "demon"
  47283. },
  47284. demonCock: {
  47285. height: math.unit(1.74, "meters"),
  47286. name: "Cock",
  47287. image: {
  47288. source: "./media/characters/alex-xuria/demon-cock.svg"
  47289. },
  47290. form: "demon"
  47291. },
  47292. demonTailClosed: {
  47293. height: math.unit(1.47, "meters"),
  47294. name: "Tail (Closed)",
  47295. image: {
  47296. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47297. },
  47298. form: "demon"
  47299. },
  47300. demonTailOpen: {
  47301. height: math.unit(2.85, "meters"),
  47302. name: "Tail (Open)",
  47303. image: {
  47304. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47305. },
  47306. form: "demon"
  47307. },
  47308. incubusFront: {
  47309. height: math.unit(12, "feet"),
  47310. name: "Front",
  47311. image: {
  47312. source: "./media/characters/alex-xuria/incubus-front.svg",
  47313. extra: 1754/1677,
  47314. bottom: 125/1879
  47315. },
  47316. form: "incubus",
  47317. default: true
  47318. },
  47319. incubusBack: {
  47320. height: math.unit(12, "feet"),
  47321. name: "Back",
  47322. image: {
  47323. source: "./media/characters/alex-xuria/incubus-back.svg",
  47324. extra: 1702/1647,
  47325. bottom: 30/1732
  47326. },
  47327. form: "incubus"
  47328. },
  47329. incubusHead: {
  47330. height: math.unit(3.45, "feet"),
  47331. name: "Head",
  47332. image: {
  47333. source: "./media/characters/alex-xuria/incubus-head.svg"
  47334. },
  47335. form: "incubus"
  47336. },
  47337. rabbitFront: {
  47338. height: math.unit(6, "feet"),
  47339. name: "Front",
  47340. image: {
  47341. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47342. extra: 1369/1349,
  47343. bottom: 45/1414
  47344. },
  47345. form: "rabbit",
  47346. default: true
  47347. },
  47348. rabbitSide: {
  47349. height: math.unit(6, "feet"),
  47350. name: "Side",
  47351. image: {
  47352. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47353. extra: 1370/1356,
  47354. bottom: 37/1407
  47355. },
  47356. form: "rabbit"
  47357. },
  47358. rabbitBack: {
  47359. height: math.unit(6, "feet"),
  47360. name: "Back",
  47361. image: {
  47362. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47363. extra: 1375/1358,
  47364. bottom: 43/1418
  47365. },
  47366. form: "rabbit"
  47367. },
  47368. },
  47369. [
  47370. {
  47371. name: "Normal",
  47372. height: math.unit(6, "feet"),
  47373. default: true,
  47374. form: "rabbit"
  47375. },
  47376. {
  47377. name: "Incubus",
  47378. height: math.unit(12, "feet"),
  47379. default: true,
  47380. form: "incubus"
  47381. },
  47382. {
  47383. name: "Demon",
  47384. height: math.unit(36, "feet"),
  47385. default: true,
  47386. form: "demon"
  47387. }
  47388. ],
  47389. {
  47390. "demon": {
  47391. name: "Demon",
  47392. default: true
  47393. },
  47394. "incubus": {
  47395. name: "Incubus",
  47396. },
  47397. "rabbit": {
  47398. name: "Rabbit"
  47399. }
  47400. }
  47401. ))
  47402. characterMakers.push(() => makeCharacter(
  47403. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47404. {
  47405. front: {
  47406. height: math.unit(7 + 5/12, "feet"),
  47407. weight: math.unit(510, "lb"),
  47408. name: "Front",
  47409. image: {
  47410. source: "./media/characters/syrup/front.svg",
  47411. extra: 932/916,
  47412. bottom: 26/958
  47413. }
  47414. },
  47415. },
  47416. [
  47417. {
  47418. name: "Normal",
  47419. height: math.unit(7 + 5/12, "feet"),
  47420. default: true
  47421. },
  47422. {
  47423. name: "Big",
  47424. height: math.unit(50, "feet")
  47425. },
  47426. {
  47427. name: "Macro",
  47428. height: math.unit(300, "feet")
  47429. },
  47430. {
  47431. name: "Megamacro",
  47432. height: math.unit(1, "mile")
  47433. },
  47434. ]
  47435. ))
  47436. characterMakers.push(() => makeCharacter(
  47437. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47438. {
  47439. front: {
  47440. height: math.unit(6 + 9/12, "feet"),
  47441. name: "Front",
  47442. image: {
  47443. source: "./media/characters/zeimne/front.svg",
  47444. extra: 1969/1806,
  47445. bottom: 53/2022
  47446. }
  47447. },
  47448. },
  47449. [
  47450. {
  47451. name: "Normal",
  47452. height: math.unit(6 + 9/12, "feet"),
  47453. default: true
  47454. },
  47455. {
  47456. name: "Giant",
  47457. height: math.unit(550, "feet")
  47458. },
  47459. {
  47460. name: "Mega",
  47461. height: math.unit(3, "miles")
  47462. },
  47463. {
  47464. name: "Giga",
  47465. height: math.unit(250, "miles")
  47466. },
  47467. {
  47468. name: "Tera",
  47469. height: math.unit(1, "AU")
  47470. },
  47471. ]
  47472. ))
  47473. characterMakers.push(() => makeCharacter(
  47474. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47475. {
  47476. front: {
  47477. height: math.unit(5 + 2/12, "feet"),
  47478. name: "Front",
  47479. image: {
  47480. source: "./media/characters/grar/front.svg",
  47481. extra: 1331/1119,
  47482. bottom: 60/1391
  47483. }
  47484. },
  47485. back: {
  47486. height: math.unit(5 + 2/12, "feet"),
  47487. name: "Back",
  47488. image: {
  47489. source: "./media/characters/grar/back.svg",
  47490. extra: 1385/1169,
  47491. bottom: 23/1408
  47492. }
  47493. },
  47494. },
  47495. [
  47496. {
  47497. name: "Normal",
  47498. height: math.unit(5 + 2/12, "feet"),
  47499. default: true
  47500. },
  47501. ]
  47502. ))
  47503. characterMakers.push(() => makeCharacter(
  47504. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47505. {
  47506. front: {
  47507. height: math.unit(13 + 7/12, "feet"),
  47508. weight: math.unit(2200, "lb"),
  47509. name: "Front",
  47510. image: {
  47511. source: "./media/characters/endraya/front.svg",
  47512. extra: 1289/1215,
  47513. bottom: 50/1339
  47514. }
  47515. },
  47516. nude: {
  47517. height: math.unit(13 + 7/12, "feet"),
  47518. weight: math.unit(2200, "lb"),
  47519. name: "Nude",
  47520. image: {
  47521. source: "./media/characters/endraya/nude.svg",
  47522. extra: 1247/1171,
  47523. bottom: 40/1287
  47524. }
  47525. },
  47526. head: {
  47527. height: math.unit(2.6, "feet"),
  47528. name: "Head",
  47529. image: {
  47530. source: "./media/characters/endraya/head.svg"
  47531. }
  47532. },
  47533. slit: {
  47534. height: math.unit(3.4, "feet"),
  47535. name: "Slit",
  47536. image: {
  47537. source: "./media/characters/endraya/slit.svg"
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Normal",
  47544. height: math.unit(13 + 7/12, "feet"),
  47545. default: true
  47546. },
  47547. {
  47548. name: "Macro",
  47549. height: math.unit(200, "feet")
  47550. },
  47551. ]
  47552. ))
  47553. characterMakers.push(() => makeCharacter(
  47554. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47555. {
  47556. front: {
  47557. height: math.unit(1.81, "meters"),
  47558. weight: math.unit(69, "kg"),
  47559. name: "Front",
  47560. image: {
  47561. source: "./media/characters/rodryana/front.svg",
  47562. extra: 2002/1921,
  47563. bottom: 53/2055
  47564. }
  47565. },
  47566. back: {
  47567. height: math.unit(1.81, "meters"),
  47568. weight: math.unit(69, "kg"),
  47569. name: "Back",
  47570. image: {
  47571. source: "./media/characters/rodryana/back.svg",
  47572. extra: 1993/1926,
  47573. bottom: 48/2041
  47574. }
  47575. },
  47576. maw: {
  47577. height: math.unit(0.19769417475, "meters"),
  47578. name: "Maw",
  47579. image: {
  47580. source: "./media/characters/rodryana/maw.svg"
  47581. }
  47582. },
  47583. slit: {
  47584. height: math.unit(0.31631067961, "meters"),
  47585. name: "Slit",
  47586. image: {
  47587. source: "./media/characters/rodryana/slit.svg"
  47588. }
  47589. },
  47590. },
  47591. [
  47592. {
  47593. name: "Normal",
  47594. height: math.unit(1.81, "meters")
  47595. },
  47596. {
  47597. name: "Mini Macro",
  47598. height: math.unit(181, "meters")
  47599. },
  47600. {
  47601. name: "Macro",
  47602. height: math.unit(452, "meters"),
  47603. default: true
  47604. },
  47605. {
  47606. name: "Mega Macro",
  47607. height: math.unit(1.375, "km")
  47608. },
  47609. {
  47610. name: "Giga Macro",
  47611. height: math.unit(13.575, "km")
  47612. },
  47613. ]
  47614. ))
  47615. characterMakers.push(() => makeCharacter(
  47616. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47617. {
  47618. front: {
  47619. height: math.unit(6, "feet"),
  47620. weight: math.unit(1000, "lb"),
  47621. name: "Front",
  47622. image: {
  47623. source: "./media/characters/asaya/front.svg",
  47624. extra: 1460/1200,
  47625. bottom: 71/1531
  47626. }
  47627. },
  47628. },
  47629. [
  47630. {
  47631. name: "Normal",
  47632. height: math.unit(8, "km"),
  47633. default: true
  47634. },
  47635. ]
  47636. ))
  47637. characterMakers.push(() => makeCharacter(
  47638. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47639. {
  47640. front: {
  47641. height: math.unit(3.5, "meters"),
  47642. name: "Front",
  47643. image: {
  47644. source: "./media/characters/sarzu-and-israz/front.svg",
  47645. extra: 1570/1558,
  47646. bottom: 150/1720
  47647. },
  47648. },
  47649. back: {
  47650. height: math.unit(3.5, "meters"),
  47651. name: "Back",
  47652. image: {
  47653. source: "./media/characters/sarzu-and-israz/back.svg",
  47654. extra: 1523/1509,
  47655. bottom: 132/1655
  47656. },
  47657. },
  47658. frontFemale: {
  47659. height: math.unit(3.5, "meters"),
  47660. name: "Front (Female)",
  47661. image: {
  47662. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47663. extra: 1570/1558,
  47664. bottom: 150/1720
  47665. },
  47666. },
  47667. frontHerm: {
  47668. height: math.unit(3.5, "meters"),
  47669. name: "Front (Herm)",
  47670. image: {
  47671. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47672. extra: 1570/1558,
  47673. bottom: 150/1720
  47674. },
  47675. },
  47676. },
  47677. [
  47678. {
  47679. name: "Normal",
  47680. height: math.unit(3.5, "meters"),
  47681. default: true,
  47682. },
  47683. {
  47684. name: "Macro",
  47685. height: math.unit(65.5, "meters"),
  47686. },
  47687. ],
  47688. ))
  47689. characterMakers.push(() => makeCharacter(
  47690. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47691. {
  47692. front: {
  47693. height: math.unit(6, "feet"),
  47694. weight: math.unit(250, "lb"),
  47695. name: "Front",
  47696. image: {
  47697. source: "./media/characters/zenimma/front.svg",
  47698. extra: 1346/1320,
  47699. bottom: 58/1404
  47700. }
  47701. },
  47702. back: {
  47703. height: math.unit(6, "feet"),
  47704. weight: math.unit(250, "lb"),
  47705. name: "Back",
  47706. image: {
  47707. source: "./media/characters/zenimma/back.svg",
  47708. extra: 1324/1308,
  47709. bottom: 44/1368
  47710. }
  47711. },
  47712. dick: {
  47713. height: math.unit(1.44, "feet"),
  47714. name: "Dick",
  47715. image: {
  47716. source: "./media/characters/zenimma/dick.svg"
  47717. }
  47718. },
  47719. },
  47720. [
  47721. {
  47722. name: "Canon Height",
  47723. height: math.unit(66, "miles"),
  47724. default: true
  47725. },
  47726. ]
  47727. ))
  47728. characterMakers.push(() => makeCharacter(
  47729. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47730. {
  47731. nude: {
  47732. height: math.unit(6, "feet"),
  47733. weight: math.unit(150, "lb"),
  47734. name: "Nude",
  47735. image: {
  47736. source: "./media/characters/shavon/nude.svg",
  47737. extra: 1242/1096,
  47738. bottom: 98/1340
  47739. }
  47740. },
  47741. dressed: {
  47742. height: math.unit(6, "feet"),
  47743. weight: math.unit(150, "lb"),
  47744. name: "Dressed",
  47745. image: {
  47746. source: "./media/characters/shavon/dressed.svg",
  47747. extra: 1242/1096,
  47748. bottom: 98/1340
  47749. }
  47750. },
  47751. },
  47752. [
  47753. {
  47754. name: "Macro",
  47755. height: math.unit(255, "feet"),
  47756. default: true
  47757. },
  47758. ]
  47759. ))
  47760. characterMakers.push(() => makeCharacter(
  47761. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47762. {
  47763. front: {
  47764. height: math.unit(6, "feet"),
  47765. name: "Front",
  47766. image: {
  47767. source: "./media/characters/steph/front.svg",
  47768. extra: 1430/1330,
  47769. bottom: 54/1484
  47770. }
  47771. },
  47772. },
  47773. [
  47774. {
  47775. name: "Normal",
  47776. height: math.unit(6, "feet"),
  47777. default: true
  47778. },
  47779. ]
  47780. ))
  47781. characterMakers.push(() => makeCharacter(
  47782. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47783. {
  47784. front: {
  47785. height: math.unit(9, "feet"),
  47786. weight: math.unit(400, "lb"),
  47787. name: "Front",
  47788. image: {
  47789. source: "./media/characters/kil'aman/front.svg",
  47790. extra: 1210/1159,
  47791. bottom: 109/1319
  47792. }
  47793. },
  47794. head: {
  47795. height: math.unit(2.14, "feet"),
  47796. name: "Head",
  47797. image: {
  47798. source: "./media/characters/kil'aman/head.svg"
  47799. }
  47800. },
  47801. maw: {
  47802. height: math.unit(1.21, "feet"),
  47803. name: "Maw",
  47804. image: {
  47805. source: "./media/characters/kil'aman/maw.svg"
  47806. }
  47807. },
  47808. foot: {
  47809. height: math.unit(1.7, "feet"),
  47810. name: "Foot",
  47811. image: {
  47812. source: "./media/characters/kil'aman/foot.svg"
  47813. }
  47814. },
  47815. dick: {
  47816. height: math.unit(2.1, "feet"),
  47817. name: "Dick",
  47818. image: {
  47819. source: "./media/characters/kil'aman/dick.svg"
  47820. }
  47821. },
  47822. },
  47823. [
  47824. {
  47825. name: "Normal",
  47826. height: math.unit(9, "feet")
  47827. },
  47828. {
  47829. name: "Canon Height",
  47830. height: math.unit(10, "miles"),
  47831. default: true
  47832. },
  47833. {
  47834. name: "Maximum",
  47835. height: math.unit(6e9, "miles")
  47836. },
  47837. ]
  47838. ))
  47839. characterMakers.push(() => makeCharacter(
  47840. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47841. {
  47842. front: {
  47843. height: math.unit(90, "feet"),
  47844. weight: math.unit(675000, "lb"),
  47845. name: "Front",
  47846. image: {
  47847. source: "./media/characters/qadan/front.svg",
  47848. extra: 1012/1004,
  47849. bottom: 78/1090
  47850. }
  47851. },
  47852. back: {
  47853. height: math.unit(90, "feet"),
  47854. weight: math.unit(675000, "lb"),
  47855. name: "Back",
  47856. image: {
  47857. source: "./media/characters/qadan/back.svg",
  47858. extra: 1042/1031,
  47859. bottom: 55/1097
  47860. }
  47861. },
  47862. armored: {
  47863. height: math.unit(90, "feet"),
  47864. weight: math.unit(675000, "lb"),
  47865. name: "Armored",
  47866. image: {
  47867. source: "./media/characters/qadan/armored.svg",
  47868. extra: 1047/1037,
  47869. bottom: 48/1095
  47870. }
  47871. },
  47872. },
  47873. [
  47874. {
  47875. name: "Normal",
  47876. height: math.unit(90, "feet"),
  47877. default: true
  47878. },
  47879. ]
  47880. ))
  47881. characterMakers.push(() => makeCharacter(
  47882. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47883. {
  47884. front: {
  47885. height: math.unit(6, "feet"),
  47886. weight: math.unit(225, "lb"),
  47887. name: "Front",
  47888. image: {
  47889. source: "./media/characters/brooke/front.svg",
  47890. extra: 1050/1010,
  47891. bottom: 66/1116
  47892. }
  47893. },
  47894. back: {
  47895. height: math.unit(6, "feet"),
  47896. weight: math.unit(225, "lb"),
  47897. name: "Back",
  47898. image: {
  47899. source: "./media/characters/brooke/back.svg",
  47900. extra: 1053/1013,
  47901. bottom: 41/1094
  47902. }
  47903. },
  47904. dressed: {
  47905. height: math.unit(6, "feet"),
  47906. weight: math.unit(225, "lb"),
  47907. name: "Dressed",
  47908. image: {
  47909. source: "./media/characters/brooke/dressed.svg",
  47910. extra: 1050/1010,
  47911. bottom: 66/1116
  47912. }
  47913. },
  47914. },
  47915. [
  47916. {
  47917. name: "Canon Height",
  47918. height: math.unit(500, "miles"),
  47919. default: true
  47920. },
  47921. ]
  47922. ))
  47923. characterMakers.push(() => makeCharacter(
  47924. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47925. {
  47926. front: {
  47927. height: math.unit(6 + 2/12, "feet"),
  47928. weight: math.unit(210, "lb"),
  47929. name: "Front",
  47930. image: {
  47931. source: "./media/characters/wubs/front.svg",
  47932. extra: 1345/1325,
  47933. bottom: 70/1415
  47934. }
  47935. },
  47936. back: {
  47937. height: math.unit(6 + 2/12, "feet"),
  47938. weight: math.unit(210, "lb"),
  47939. name: "Back",
  47940. image: {
  47941. source: "./media/characters/wubs/back.svg",
  47942. extra: 1296/1275,
  47943. bottom: 58/1354
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Normal",
  47950. height: math.unit(6 + 2/12, "feet"),
  47951. default: true
  47952. },
  47953. {
  47954. name: "Macro",
  47955. height: math.unit(1000, "feet")
  47956. },
  47957. {
  47958. name: "Megamacro",
  47959. height: math.unit(1, "mile")
  47960. },
  47961. ]
  47962. ))
  47963. characterMakers.push(() => makeCharacter(
  47964. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47965. {
  47966. front: {
  47967. height: math.unit(4, "feet"),
  47968. weight: math.unit(120, "lb"),
  47969. name: "Front",
  47970. image: {
  47971. source: "./media/characters/blue/front.svg",
  47972. extra: 1636/1525,
  47973. bottom: 43/1679
  47974. }
  47975. },
  47976. back: {
  47977. height: math.unit(4, "feet"),
  47978. weight: math.unit(120, "lb"),
  47979. name: "Back",
  47980. image: {
  47981. source: "./media/characters/blue/back.svg",
  47982. extra: 1660/1560,
  47983. bottom: 57/1717
  47984. }
  47985. },
  47986. paws: {
  47987. height: math.unit(0.826, "feet"),
  47988. name: "Paws",
  47989. image: {
  47990. source: "./media/characters/blue/paws.svg"
  47991. }
  47992. },
  47993. },
  47994. [
  47995. {
  47996. name: "Micro",
  47997. height: math.unit(3, "inches")
  47998. },
  47999. {
  48000. name: "Normal",
  48001. height: math.unit(4, "feet"),
  48002. default: true
  48003. },
  48004. {
  48005. name: "Femenine Form",
  48006. height: math.unit(14, "feet")
  48007. },
  48008. {
  48009. name: "Werebat Form",
  48010. height: math.unit(18, "feet")
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48016. {
  48017. female: {
  48018. height: math.unit(7 + 4/12, "feet"),
  48019. weight: math.unit(243, "lb"),
  48020. name: "Female",
  48021. image: {
  48022. source: "./media/characters/kaya/female.svg",
  48023. extra: 975/898,
  48024. bottom: 34/1009
  48025. }
  48026. },
  48027. herm: {
  48028. height: math.unit(7 + 4/12, "feet"),
  48029. weight: math.unit(243, "lb"),
  48030. name: "Herm",
  48031. image: {
  48032. source: "./media/characters/kaya/herm.svg",
  48033. extra: 975/898,
  48034. bottom: 34/1009
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(7 + 4/12, "feet"),
  48042. default: true
  48043. },
  48044. ]
  48045. ))
  48046. characterMakers.push(() => makeCharacter(
  48047. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48048. {
  48049. female: {
  48050. height: math.unit(9 + 4/12, "feet"),
  48051. weight: math.unit(398, "lb"),
  48052. name: "Female",
  48053. image: {
  48054. source: "./media/characters/kassandra/female.svg",
  48055. extra: 908/839,
  48056. bottom: 61/969
  48057. }
  48058. },
  48059. intersex: {
  48060. height: math.unit(9 + 4/12, "feet"),
  48061. weight: math.unit(398, "lb"),
  48062. name: "Intersex",
  48063. image: {
  48064. source: "./media/characters/kassandra/intersex.svg",
  48065. extra: 908/839,
  48066. bottom: 61/969
  48067. }
  48068. },
  48069. },
  48070. [
  48071. {
  48072. name: "Normal",
  48073. height: math.unit(9 + 4/12, "feet"),
  48074. default: true
  48075. },
  48076. ]
  48077. ))
  48078. characterMakers.push(() => makeCharacter(
  48079. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48080. {
  48081. front: {
  48082. height: math.unit(3, "meters"),
  48083. name: "Front",
  48084. image: {
  48085. source: "./media/characters/amy/front.svg",
  48086. extra: 1380/1343,
  48087. bottom: 70/1450
  48088. }
  48089. },
  48090. back: {
  48091. height: math.unit(3, "meters"),
  48092. name: "Back",
  48093. image: {
  48094. source: "./media/characters/amy/back.svg",
  48095. extra: 1380/1347,
  48096. bottom: 66/1446
  48097. }
  48098. },
  48099. },
  48100. [
  48101. {
  48102. name: "Normal",
  48103. height: math.unit(3, "meters"),
  48104. default: true
  48105. },
  48106. ]
  48107. ))
  48108. characterMakers.push(() => makeCharacter(
  48109. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48110. {
  48111. side: {
  48112. height: math.unit(47, "cm"),
  48113. weight: math.unit(10.8, "kg"),
  48114. name: "Side",
  48115. image: {
  48116. source: "./media/characters/alphaschakal/side.svg",
  48117. extra: 1058/568,
  48118. bottom: 62/1120
  48119. }
  48120. },
  48121. back: {
  48122. height: math.unit(78, "cm"),
  48123. weight: math.unit(10.8, "kg"),
  48124. name: "Back",
  48125. image: {
  48126. source: "./media/characters/alphaschakal/back.svg",
  48127. extra: 1102/942,
  48128. bottom: 185/1287
  48129. }
  48130. },
  48131. head: {
  48132. height: math.unit(28, "cm"),
  48133. name: "Head",
  48134. image: {
  48135. source: "./media/characters/alphaschakal/head.svg",
  48136. extra: 696/508,
  48137. bottom: 0/696
  48138. }
  48139. },
  48140. paw: {
  48141. height: math.unit(16, "cm"),
  48142. name: "Paw",
  48143. image: {
  48144. source: "./media/characters/alphaschakal/paw.svg"
  48145. }
  48146. },
  48147. },
  48148. [
  48149. {
  48150. name: "Normal",
  48151. height: math.unit(47, "cm"),
  48152. default: true
  48153. },
  48154. {
  48155. name: "Macro",
  48156. height: math.unit(340, "cm")
  48157. },
  48158. ]
  48159. ))
  48160. characterMakers.push(() => makeCharacter(
  48161. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48162. {
  48163. front: {
  48164. height: math.unit(36, "earths"),
  48165. name: "Front",
  48166. image: {
  48167. source: "./media/characters/ecobyss/front.svg",
  48168. extra: 1282/1215,
  48169. bottom: 11/1293
  48170. }
  48171. },
  48172. back: {
  48173. height: math.unit(36, "earths"),
  48174. name: "Back",
  48175. image: {
  48176. source: "./media/characters/ecobyss/back.svg",
  48177. extra: 1291/1222,
  48178. bottom: 8/1299
  48179. }
  48180. },
  48181. },
  48182. [
  48183. {
  48184. name: "Normal",
  48185. height: math.unit(36, "earths"),
  48186. default: true
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48192. {
  48193. front: {
  48194. height: math.unit(12, "feet"),
  48195. name: "Front",
  48196. image: {
  48197. source: "./media/characters/vasuk/front.svg",
  48198. extra: 1326/1207,
  48199. bottom: 64/1390
  48200. }
  48201. },
  48202. },
  48203. [
  48204. {
  48205. name: "Normal",
  48206. height: math.unit(12, "feet"),
  48207. default: true
  48208. },
  48209. ]
  48210. ))
  48211. characterMakers.push(() => makeCharacter(
  48212. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48213. {
  48214. side: {
  48215. height: math.unit(100, "feet"),
  48216. name: "Side",
  48217. image: {
  48218. source: "./media/characters/linneaus/side.svg",
  48219. extra: 987/807,
  48220. bottom: 47/1034
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Macro",
  48227. height: math.unit(100, "feet"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48234. {
  48235. front: {
  48236. height: math.unit(8, "feet"),
  48237. weight: math.unit(1200, "lb"),
  48238. name: "Front",
  48239. image: {
  48240. source: "./media/characters/nyterious-daligdig/front.svg",
  48241. extra: 1284/1094,
  48242. bottom: 84/1368
  48243. }
  48244. },
  48245. back: {
  48246. height: math.unit(8, "feet"),
  48247. weight: math.unit(1200, "lb"),
  48248. name: "Back",
  48249. image: {
  48250. source: "./media/characters/nyterious-daligdig/back.svg",
  48251. extra: 1301/1121,
  48252. bottom: 129/1430
  48253. }
  48254. },
  48255. mouth: {
  48256. height: math.unit(1.464, "feet"),
  48257. name: "Mouth",
  48258. image: {
  48259. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48260. }
  48261. },
  48262. },
  48263. [
  48264. {
  48265. name: "Small",
  48266. height: math.unit(8, "feet"),
  48267. default: true
  48268. },
  48269. {
  48270. name: "Normal",
  48271. height: math.unit(15, "feet")
  48272. },
  48273. {
  48274. name: "Macro",
  48275. height: math.unit(90, "feet")
  48276. },
  48277. ]
  48278. ))
  48279. characterMakers.push(() => makeCharacter(
  48280. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48281. {
  48282. front: {
  48283. height: math.unit(7 + 4/12, "feet"),
  48284. weight: math.unit(252, "lb"),
  48285. name: "Front",
  48286. image: {
  48287. source: "./media/characters/bandel/front.svg",
  48288. extra: 1946/1775,
  48289. bottom: 26/1972
  48290. }
  48291. },
  48292. back: {
  48293. height: math.unit(7 + 4/12, "feet"),
  48294. weight: math.unit(252, "lb"),
  48295. name: "Back",
  48296. image: {
  48297. source: "./media/characters/bandel/back.svg",
  48298. extra: 1940/1770,
  48299. bottom: 25/1965
  48300. }
  48301. },
  48302. maw: {
  48303. height: math.unit(2.15, "feet"),
  48304. name: "Maw",
  48305. image: {
  48306. source: "./media/characters/bandel/maw.svg"
  48307. }
  48308. },
  48309. stomach: {
  48310. height: math.unit(1.95, "feet"),
  48311. name: "Stomach",
  48312. image: {
  48313. source: "./media/characters/bandel/stomach.svg"
  48314. }
  48315. },
  48316. },
  48317. [
  48318. {
  48319. name: "Normal",
  48320. height: math.unit(7 + 4/12, "feet"),
  48321. default: true
  48322. },
  48323. ]
  48324. ))
  48325. characterMakers.push(() => makeCharacter(
  48326. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48327. {
  48328. front: {
  48329. height: math.unit(10 + 5/12, "feet"),
  48330. weight: math.unit(773.5, "kg"),
  48331. name: "Front",
  48332. image: {
  48333. source: "./media/characters/zed/front.svg",
  48334. extra: 987/941,
  48335. bottom: 52/1039
  48336. }
  48337. },
  48338. },
  48339. [
  48340. {
  48341. name: "Short",
  48342. height: math.unit(5 + 4/12, "feet")
  48343. },
  48344. {
  48345. name: "Average",
  48346. height: math.unit(10 + 5/12, "feet"),
  48347. default: true
  48348. },
  48349. {
  48350. name: "Mini-Macro",
  48351. height: math.unit(24 + 9/12, "feet")
  48352. },
  48353. {
  48354. name: "Macro",
  48355. height: math.unit(249, "feet")
  48356. },
  48357. {
  48358. name: "Mega-Macro",
  48359. height: math.unit(12490, "feet")
  48360. },
  48361. {
  48362. name: "Giga-Macro",
  48363. height: math.unit(24.9, "miles")
  48364. },
  48365. {
  48366. name: "Tera-Macro",
  48367. height: math.unit(24900, "miles")
  48368. },
  48369. {
  48370. name: "Cosmic Scale",
  48371. height: math.unit(38.9, "lightyears")
  48372. },
  48373. {
  48374. name: "Universal Scale",
  48375. height: math.unit(138e12, "lightyears")
  48376. },
  48377. ]
  48378. ))
  48379. characterMakers.push(() => makeCharacter(
  48380. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48381. {
  48382. front: {
  48383. height: math.unit(1561, "inches"),
  48384. name: "Front",
  48385. image: {
  48386. source: "./media/characters/ivan/front.svg",
  48387. extra: 1126/1071,
  48388. bottom: 26/1152
  48389. }
  48390. },
  48391. back: {
  48392. height: math.unit(1561, "inches"),
  48393. name: "Back",
  48394. image: {
  48395. source: "./media/characters/ivan/back.svg",
  48396. extra: 1134/1079,
  48397. bottom: 30/1164
  48398. }
  48399. },
  48400. },
  48401. [
  48402. {
  48403. name: "Normal",
  48404. height: math.unit(1561, "inches"),
  48405. default: true
  48406. },
  48407. ]
  48408. ))
  48409. characterMakers.push(() => makeCharacter(
  48410. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48411. {
  48412. front: {
  48413. height: math.unit(5 + 7/12, "feet"),
  48414. weight: math.unit(150, "lb"),
  48415. name: "Front",
  48416. image: {
  48417. source: "./media/characters/robin-arctic-hare/front.svg",
  48418. extra: 1148/974,
  48419. bottom: 20/1168
  48420. }
  48421. },
  48422. },
  48423. [
  48424. {
  48425. name: "Normal",
  48426. height: math.unit(5 + 7/12, "feet"),
  48427. default: true
  48428. },
  48429. ]
  48430. ))
  48431. characterMakers.push(() => makeCharacter(
  48432. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48433. {
  48434. side: {
  48435. height: math.unit(5, "feet"),
  48436. name: "Side",
  48437. image: {
  48438. source: "./media/characters/birch/side.svg",
  48439. extra: 985/796,
  48440. bottom: 111/1096
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(5, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48454. {
  48455. front: {
  48456. height: math.unit(4, "feet"),
  48457. name: "Front",
  48458. image: {
  48459. source: "./media/characters/rasp/front.svg",
  48460. extra: 561/478,
  48461. bottom: 74/635
  48462. }
  48463. },
  48464. },
  48465. [
  48466. {
  48467. name: "Normal",
  48468. height: math.unit(4, "feet"),
  48469. default: true
  48470. },
  48471. ]
  48472. ))
  48473. characterMakers.push(() => makeCharacter(
  48474. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48475. {
  48476. front: {
  48477. height: math.unit(4 + 6/12, "feet"),
  48478. name: "Front",
  48479. image: {
  48480. source: "./media/characters/agatha/front.svg",
  48481. extra: 947/933,
  48482. bottom: 42/989
  48483. }
  48484. },
  48485. back: {
  48486. height: math.unit(4 + 6/12, "feet"),
  48487. name: "Back",
  48488. image: {
  48489. source: "./media/characters/agatha/back.svg",
  48490. extra: 935/922,
  48491. bottom: 48/983
  48492. }
  48493. },
  48494. },
  48495. [
  48496. {
  48497. name: "Normal",
  48498. height: math.unit(4 + 6 /12, "feet"),
  48499. default: true
  48500. },
  48501. {
  48502. name: "Max Size",
  48503. height: math.unit(500, "feet")
  48504. },
  48505. ]
  48506. ))
  48507. characterMakers.push(() => makeCharacter(
  48508. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48509. {
  48510. side: {
  48511. height: math.unit(30, "feet"),
  48512. name: "Side",
  48513. image: {
  48514. source: "./media/characters/roggy/side.svg",
  48515. extra: 909/643,
  48516. bottom: 63/972
  48517. }
  48518. },
  48519. lounging: {
  48520. height: math.unit(20, "feet"),
  48521. name: "Lounging",
  48522. image: {
  48523. source: "./media/characters/roggy/lounging.svg",
  48524. extra: 643/479,
  48525. bottom: 145/788
  48526. }
  48527. },
  48528. handpaw: {
  48529. height: math.unit(13.1, "feet"),
  48530. name: "Handpaw",
  48531. image: {
  48532. source: "./media/characters/roggy/handpaw.svg"
  48533. }
  48534. },
  48535. footpaw: {
  48536. height: math.unit(15.8, "feet"),
  48537. name: "Footpaw",
  48538. image: {
  48539. source: "./media/characters/roggy/footpaw.svg"
  48540. }
  48541. },
  48542. },
  48543. [
  48544. {
  48545. name: "Menacing",
  48546. height: math.unit(30, "feet"),
  48547. default: true
  48548. },
  48549. ]
  48550. ))
  48551. characterMakers.push(() => makeCharacter(
  48552. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48553. {
  48554. front: {
  48555. height: math.unit(5 + 7/12, "feet"),
  48556. weight: math.unit(135, "lb"),
  48557. name: "Front",
  48558. image: {
  48559. source: "./media/characters/naomi/front.svg",
  48560. extra: 1209/1154,
  48561. bottom: 129/1338
  48562. }
  48563. },
  48564. back: {
  48565. height: math.unit(5 + 7/12, "feet"),
  48566. weight: math.unit(135, "lb"),
  48567. name: "Back",
  48568. image: {
  48569. source: "./media/characters/naomi/back.svg",
  48570. extra: 1252/1190,
  48571. bottom: 23/1275
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Normal",
  48578. height: math.unit(5 + 7 /12, "feet"),
  48579. default: true
  48580. },
  48581. ]
  48582. ))
  48583. characterMakers.push(() => makeCharacter(
  48584. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48585. {
  48586. side: {
  48587. height: math.unit(35, "meters"),
  48588. name: "Side",
  48589. image: {
  48590. source: "./media/characters/kimpi/side.svg",
  48591. extra: 419/382,
  48592. bottom: 63/482
  48593. }
  48594. },
  48595. hand: {
  48596. height: math.unit(8.96, "meters"),
  48597. name: "Hand",
  48598. image: {
  48599. source: "./media/characters/kimpi/hand.svg"
  48600. }
  48601. },
  48602. },
  48603. [
  48604. {
  48605. name: "Normal",
  48606. height: math.unit(35, "meters"),
  48607. default: true
  48608. },
  48609. ]
  48610. ))
  48611. characterMakers.push(() => makeCharacter(
  48612. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48613. {
  48614. front: {
  48615. height: math.unit(4 + 4/12, "feet"),
  48616. name: "Front",
  48617. image: {
  48618. source: "./media/characters/pepper-purrloin/front.svg",
  48619. extra: 1141/1024,
  48620. bottom: 21/1162
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(4 + 4/12, "feet"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48634. {
  48635. front: {
  48636. height: math.unit(6 + 2/12, "feet"),
  48637. name: "Front",
  48638. image: {
  48639. source: "./media/characters/raphael/front.svg",
  48640. extra: 1101/962,
  48641. bottom: 59/1160
  48642. }
  48643. },
  48644. },
  48645. [
  48646. {
  48647. name: "Normal",
  48648. height: math.unit(6 + 2/12, "feet"),
  48649. default: true
  48650. },
  48651. ]
  48652. ))
  48653. characterMakers.push(() => makeCharacter(
  48654. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48655. {
  48656. front: {
  48657. height: math.unit(6, "feet"),
  48658. weight: math.unit(150, "lb"),
  48659. name: "Front",
  48660. image: {
  48661. source: "./media/characters/victor-williams/front.svg",
  48662. extra: 1894/1825,
  48663. bottom: 67/1961
  48664. }
  48665. },
  48666. },
  48667. [
  48668. {
  48669. name: "Normal",
  48670. height: math.unit(6, "feet"),
  48671. default: true
  48672. },
  48673. ]
  48674. ))
  48675. characterMakers.push(() => makeCharacter(
  48676. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48677. {
  48678. front: {
  48679. height: math.unit(5 + 8/12, "feet"),
  48680. weight: math.unit(150, "lb"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/rachel/front.svg",
  48684. extra: 1902/1787,
  48685. bottom: 46/1948
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Base Height",
  48692. height: math.unit(5 + 8/12, "feet"),
  48693. default: true
  48694. },
  48695. {
  48696. name: "Macro",
  48697. height: math.unit(200, "feet")
  48698. },
  48699. {
  48700. name: "Mega Macro",
  48701. height: math.unit(1, "mile")
  48702. },
  48703. {
  48704. name: "Giga Macro",
  48705. height: math.unit(1500, "miles")
  48706. },
  48707. {
  48708. name: "Tera Macro",
  48709. height: math.unit(8000, "miles")
  48710. },
  48711. {
  48712. name: "Tera Macro+",
  48713. height: math.unit(2e5, "miles")
  48714. },
  48715. ]
  48716. ))
  48717. characterMakers.push(() => makeCharacter(
  48718. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48719. {
  48720. front: {
  48721. height: math.unit(6.5, "feet"),
  48722. name: "Front",
  48723. image: {
  48724. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48725. extra: 860/819,
  48726. bottom: 307/1167
  48727. }
  48728. },
  48729. back: {
  48730. height: math.unit(6.5, "feet"),
  48731. name: "Back",
  48732. image: {
  48733. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48734. extra: 880/837,
  48735. bottom: 395/1275
  48736. }
  48737. },
  48738. sleeping: {
  48739. height: math.unit(2.79, "feet"),
  48740. name: "Sleeping",
  48741. image: {
  48742. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48743. extra: 465/383,
  48744. bottom: 263/728
  48745. }
  48746. },
  48747. maw: {
  48748. height: math.unit(2.52, "feet"),
  48749. name: "Maw",
  48750. image: {
  48751. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48752. }
  48753. },
  48754. },
  48755. [
  48756. {
  48757. name: "Normal",
  48758. height: math.unit(6.5, "feet"),
  48759. default: true
  48760. },
  48761. ]
  48762. ))
  48763. characterMakers.push(() => makeCharacter(
  48764. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48765. {
  48766. front: {
  48767. height: math.unit(5, "feet"),
  48768. name: "Front",
  48769. image: {
  48770. source: "./media/characters/nova-nerium/front.svg",
  48771. extra: 1548/1392,
  48772. bottom: 374/1922
  48773. }
  48774. },
  48775. back: {
  48776. height: math.unit(5, "feet"),
  48777. name: "Back",
  48778. image: {
  48779. source: "./media/characters/nova-nerium/back.svg",
  48780. extra: 1658/1468,
  48781. bottom: 257/1915
  48782. }
  48783. },
  48784. },
  48785. [
  48786. {
  48787. name: "Normal",
  48788. height: math.unit(5, "feet"),
  48789. default: true
  48790. },
  48791. ]
  48792. ))
  48793. characterMakers.push(() => makeCharacter(
  48794. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48795. {
  48796. front: {
  48797. height: math.unit(5 + 4/12, "feet"),
  48798. name: "Front",
  48799. image: {
  48800. source: "./media/characters/ashe-pyriph/front.svg",
  48801. extra: 1935/1747,
  48802. bottom: 60/1995
  48803. }
  48804. },
  48805. },
  48806. [
  48807. {
  48808. name: "Normal",
  48809. height: math.unit(5 + 4/12, "feet"),
  48810. default: true
  48811. },
  48812. ]
  48813. ))
  48814. characterMakers.push(() => makeCharacter(
  48815. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48816. {
  48817. front: {
  48818. height: math.unit(8.7, "feet"),
  48819. name: "Front",
  48820. image: {
  48821. source: "./media/characters/flicker-wisp/front.svg",
  48822. extra: 1835/1613,
  48823. bottom: 449/2284
  48824. }
  48825. },
  48826. side: {
  48827. height: math.unit(8.7, "feet"),
  48828. name: "Side",
  48829. image: {
  48830. source: "./media/characters/flicker-wisp/side.svg",
  48831. extra: 1841/1642,
  48832. bottom: 336/2177
  48833. },
  48834. default: true
  48835. },
  48836. maw: {
  48837. height: math.unit(3.35, "feet"),
  48838. name: "Maw",
  48839. image: {
  48840. source: "./media/characters/flicker-wisp/maw.svg",
  48841. extra: 2338/1506,
  48842. bottom: 0/2338
  48843. }
  48844. },
  48845. ovipositor: {
  48846. height: math.unit(4.95, "feet"),
  48847. name: "Ovipositor",
  48848. image: {
  48849. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48850. }
  48851. },
  48852. egg: {
  48853. height: math.unit(0.385, "feet"),
  48854. weight: math.unit(2, "lb"),
  48855. name: "Egg",
  48856. image: {
  48857. source: "./media/characters/flicker-wisp/egg.svg"
  48858. }
  48859. },
  48860. },
  48861. [
  48862. {
  48863. name: "Normal",
  48864. height: math.unit(8.7, "feet"),
  48865. default: true
  48866. },
  48867. ]
  48868. ))
  48869. characterMakers.push(() => makeCharacter(
  48870. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48871. {
  48872. side: {
  48873. height: math.unit(11, "feet"),
  48874. name: "Side",
  48875. image: {
  48876. source: "./media/characters/faefnul/side.svg",
  48877. extra: 1100/1007,
  48878. bottom: 0/1100
  48879. }
  48880. },
  48881. },
  48882. [
  48883. {
  48884. name: "Normal",
  48885. height: math.unit(11, "feet"),
  48886. default: true
  48887. },
  48888. ]
  48889. ))
  48890. characterMakers.push(() => makeCharacter(
  48891. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48892. {
  48893. front: {
  48894. height: math.unit(6 + 2/12, "feet"),
  48895. name: "Front",
  48896. image: {
  48897. source: "./media/characters/shady/front.svg",
  48898. extra: 502/461,
  48899. bottom: 9/511
  48900. }
  48901. },
  48902. kneeling: {
  48903. height: math.unit(4.6, "feet"),
  48904. name: "Kneeling",
  48905. image: {
  48906. source: "./media/characters/shady/kneeling.svg",
  48907. extra: 1328/1219,
  48908. bottom: 117/1445
  48909. }
  48910. },
  48911. maw: {
  48912. height: math.unit(2, "feet"),
  48913. name: "Maw",
  48914. image: {
  48915. source: "./media/characters/shady/maw.svg"
  48916. }
  48917. },
  48918. },
  48919. [
  48920. {
  48921. name: "Nano",
  48922. height: math.unit(1, "mm")
  48923. },
  48924. {
  48925. name: "Micro",
  48926. height: math.unit(12, "mm")
  48927. },
  48928. {
  48929. name: "Tiny",
  48930. height: math.unit(3, "inches")
  48931. },
  48932. {
  48933. name: "Normal",
  48934. height: math.unit(6 + 2/12, "feet"),
  48935. default: true
  48936. },
  48937. {
  48938. name: "Big",
  48939. height: math.unit(15, "feet")
  48940. },
  48941. {
  48942. name: "Macro",
  48943. height: math.unit(150, "feet")
  48944. },
  48945. {
  48946. name: "Titanic",
  48947. height: math.unit(500, "feet")
  48948. },
  48949. ]
  48950. ))
  48951. characterMakers.push(() => makeCharacter(
  48952. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48953. {
  48954. front: {
  48955. height: math.unit(12, "feet"),
  48956. name: "Front",
  48957. image: {
  48958. source: "./media/characters/fenrir/front.svg",
  48959. extra: 968/875,
  48960. bottom: 22/990
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Big",
  48967. height: math.unit(12, "feet"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(5 + 4/12, "feet"),
  48977. name: "Front",
  48978. image: {
  48979. source: "./media/characters/makar/front.svg",
  48980. extra: 1181/1112,
  48981. bottom: 78/1259
  48982. }
  48983. },
  48984. },
  48985. [
  48986. {
  48987. name: "Normal",
  48988. height: math.unit(5 + 4/12, "feet"),
  48989. default: true
  48990. },
  48991. ]
  48992. ))
  48993. characterMakers.push(() => makeCharacter(
  48994. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48995. {
  48996. front: {
  48997. height: math.unit(5 + 7/12, "feet"),
  48998. name: "Front",
  48999. image: {
  49000. source: "./media/characters/callow/front.svg",
  49001. extra: 1482/1304,
  49002. bottom: 23/1505
  49003. }
  49004. },
  49005. back: {
  49006. height: math.unit(5 + 7/12, "feet"),
  49007. name: "Back",
  49008. image: {
  49009. source: "./media/characters/callow/back.svg",
  49010. extra: 1484/1296,
  49011. bottom: 25/1509
  49012. }
  49013. },
  49014. },
  49015. [
  49016. {
  49017. name: "Micro",
  49018. height: math.unit(3, "inches"),
  49019. default: true
  49020. },
  49021. {
  49022. name: "Normal",
  49023. height: math.unit(5 + 7/12, "feet")
  49024. },
  49025. ]
  49026. ))
  49027. characterMakers.push(() => makeCharacter(
  49028. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49029. {
  49030. front: {
  49031. height: math.unit(6 + 2/12, "feet"),
  49032. name: "Front",
  49033. image: {
  49034. source: "./media/characters/natel/front.svg",
  49035. extra: 1833/1692,
  49036. bottom: 166/1999
  49037. }
  49038. },
  49039. },
  49040. [
  49041. {
  49042. name: "Normal",
  49043. height: math.unit(6 + 2/12, "feet"),
  49044. default: true
  49045. },
  49046. ]
  49047. ))
  49048. characterMakers.push(() => makeCharacter(
  49049. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49050. {
  49051. front: {
  49052. height: math.unit(1.75, "meters"),
  49053. name: "Front",
  49054. image: {
  49055. source: "./media/characters/misu/front.svg",
  49056. extra: 1690/1558,
  49057. bottom: 234/1924
  49058. }
  49059. },
  49060. back: {
  49061. height: math.unit(1.75, "meters"),
  49062. name: "Back",
  49063. image: {
  49064. source: "./media/characters/misu/back.svg",
  49065. extra: 1762/1618,
  49066. bottom: 146/1908
  49067. }
  49068. },
  49069. frontNude: {
  49070. height: math.unit(1.75, "meters"),
  49071. name: "Front (Nude)",
  49072. image: {
  49073. source: "./media/characters/misu/front-nude.svg",
  49074. extra: 1690/1558,
  49075. bottom: 234/1924
  49076. }
  49077. },
  49078. backNude: {
  49079. height: math.unit(1.75, "meters"),
  49080. name: "Back (Nude)",
  49081. image: {
  49082. source: "./media/characters/misu/back-nude.svg",
  49083. extra: 1762/1618,
  49084. bottom: 146/1908
  49085. }
  49086. },
  49087. frontErect: {
  49088. height: math.unit(1.75, "meters"),
  49089. name: "Front (Erect)",
  49090. image: {
  49091. source: "./media/characters/misu/front-erect.svg",
  49092. extra: 1690/1558,
  49093. bottom: 234/1924
  49094. }
  49095. },
  49096. maw: {
  49097. height: math.unit(0.47, "meters"),
  49098. name: "Maw",
  49099. image: {
  49100. source: "./media/characters/misu/maw.svg"
  49101. }
  49102. },
  49103. head: {
  49104. height: math.unit(0.35, "meters"),
  49105. name: "Head",
  49106. image: {
  49107. source: "./media/characters/misu/head.svg"
  49108. }
  49109. },
  49110. rear: {
  49111. height: math.unit(0.47, "meters"),
  49112. name: "Rear",
  49113. image: {
  49114. source: "./media/characters/misu/rear.svg"
  49115. }
  49116. },
  49117. },
  49118. [
  49119. {
  49120. name: "Normal",
  49121. height: math.unit(1.75, "meters")
  49122. },
  49123. {
  49124. name: "Not good for the people",
  49125. height: math.unit(42, "meters")
  49126. },
  49127. {
  49128. name: "Not good for the neighborhood",
  49129. height: math.unit(135, "meters")
  49130. },
  49131. {
  49132. name: "Bit bigger problem",
  49133. height: math.unit(380, "meters"),
  49134. default: true
  49135. },
  49136. {
  49137. name: "Not good for the city",
  49138. height: math.unit(1.5, "km")
  49139. },
  49140. {
  49141. name: "Not good for the county",
  49142. height: math.unit(5.5, "km")
  49143. },
  49144. {
  49145. name: "Not good for the state",
  49146. height: math.unit(25, "km")
  49147. },
  49148. {
  49149. name: "Not good for the country",
  49150. height: math.unit(125, "km")
  49151. },
  49152. {
  49153. name: "Not good for the continent",
  49154. height: math.unit(2100, "km")
  49155. },
  49156. {
  49157. name: "Not good for the planet",
  49158. height: math.unit(35000, "km")
  49159. },
  49160. {
  49161. name: "Just no",
  49162. height: math.unit(8.5e18, "km")
  49163. },
  49164. ]
  49165. ))
  49166. characterMakers.push(() => makeCharacter(
  49167. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49168. {
  49169. front: {
  49170. height: math.unit(6.5, "feet"),
  49171. name: "Front",
  49172. image: {
  49173. source: "./media/characters/poppy/front.svg",
  49174. extra: 1878/1812,
  49175. bottom: 43/1921
  49176. }
  49177. },
  49178. feet: {
  49179. height: math.unit(1.06, "feet"),
  49180. name: "Feet",
  49181. image: {
  49182. source: "./media/characters/poppy/feet.svg",
  49183. extra: 1083/1083,
  49184. bottom: 87/1170
  49185. }
  49186. },
  49187. },
  49188. [
  49189. {
  49190. name: "Human",
  49191. height: math.unit(6.5, "feet")
  49192. },
  49193. {
  49194. name: "Default",
  49195. height: math.unit(300, "feet"),
  49196. default: true
  49197. },
  49198. {
  49199. name: "Huge",
  49200. height: math.unit(850, "feet")
  49201. },
  49202. {
  49203. name: "Mega",
  49204. height: math.unit(8000, "feet")
  49205. },
  49206. {
  49207. name: "Giga",
  49208. height: math.unit(300, "miles")
  49209. },
  49210. ]
  49211. ))
  49212. characterMakers.push(() => makeCharacter(
  49213. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49214. {
  49215. bipedal: {
  49216. height: math.unit(7, "feet"),
  49217. name: "Bipedal",
  49218. image: {
  49219. source: "./media/characters/zener/bipedal.svg",
  49220. extra: 874/805,
  49221. bottom: 109/983
  49222. }
  49223. },
  49224. quadrupedal: {
  49225. height: math.unit(4.64, "feet"),
  49226. name: "Quadrupedal",
  49227. image: {
  49228. source: "./media/characters/zener/quadrupedal.svg",
  49229. extra: 638/507,
  49230. bottom: 190/828
  49231. }
  49232. },
  49233. cock: {
  49234. height: math.unit(18, "inches"),
  49235. name: "Cock",
  49236. image: {
  49237. source: "./media/characters/zener/cock.svg"
  49238. }
  49239. },
  49240. },
  49241. [
  49242. {
  49243. name: "Normal",
  49244. height: math.unit(7, "feet"),
  49245. default: true
  49246. },
  49247. ]
  49248. ))
  49249. characterMakers.push(() => makeCharacter(
  49250. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49251. {
  49252. nude: {
  49253. height: math.unit(5 + 6/12, "feet"),
  49254. name: "Nude",
  49255. image: {
  49256. source: "./media/characters/charlie-dog/nude.svg",
  49257. extra: 768/734,
  49258. bottom: 26/794
  49259. }
  49260. },
  49261. dressed: {
  49262. height: math.unit(5 + 6/12, "feet"),
  49263. name: "Dressed",
  49264. image: {
  49265. source: "./media/characters/charlie-dog/dressed.svg",
  49266. extra: 768/734,
  49267. bottom: 26/794
  49268. }
  49269. },
  49270. },
  49271. [
  49272. {
  49273. name: "Normal",
  49274. height: math.unit(5 + 6/12, "feet"),
  49275. default: true
  49276. },
  49277. ]
  49278. ))
  49279. characterMakers.push(() => makeCharacter(
  49280. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49281. {
  49282. front: {
  49283. height: math.unit(6 + 4/12, "feet"),
  49284. name: "Front",
  49285. image: {
  49286. source: "./media/characters/ir'istrasz/front.svg",
  49287. extra: 1014/977,
  49288. bottom: 65/1079
  49289. }
  49290. },
  49291. back: {
  49292. height: math.unit(6 + 4/12, "feet"),
  49293. name: "Back",
  49294. image: {
  49295. source: "./media/characters/ir'istrasz/back.svg",
  49296. extra: 1024/992,
  49297. bottom: 34/1058
  49298. }
  49299. },
  49300. },
  49301. [
  49302. {
  49303. name: "Normal",
  49304. height: math.unit(6 + 4/12, "feet"),
  49305. default: true
  49306. },
  49307. ]
  49308. ))
  49309. characterMakers.push(() => makeCharacter(
  49310. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49311. {
  49312. front: {
  49313. height: math.unit(5 + 8/12, "feet"),
  49314. name: "Front",
  49315. image: {
  49316. source: "./media/characters/dee-ditto/front.svg",
  49317. extra: 1874/1785,
  49318. bottom: 68/1942
  49319. }
  49320. },
  49321. back: {
  49322. height: math.unit(5 + 8/12, "feet"),
  49323. name: "Back",
  49324. image: {
  49325. source: "./media/characters/dee-ditto/back.svg",
  49326. extra: 1870/1783,
  49327. bottom: 77/1947
  49328. }
  49329. },
  49330. },
  49331. [
  49332. {
  49333. name: "Normal",
  49334. height: math.unit(5 + 8/12, "feet"),
  49335. default: true
  49336. },
  49337. ]
  49338. ))
  49339. characterMakers.push(() => makeCharacter(
  49340. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49341. {
  49342. front: {
  49343. height: math.unit(7 + 6/12, "feet"),
  49344. name: "Front",
  49345. image: {
  49346. source: "./media/characters/fey/front.svg",
  49347. extra: 995/979,
  49348. bottom: 30/1025
  49349. }
  49350. },
  49351. back: {
  49352. height: math.unit(7 + 6/12, "feet"),
  49353. name: "Back",
  49354. image: {
  49355. source: "./media/characters/fey/back.svg",
  49356. extra: 1079/1008,
  49357. bottom: 5/1084
  49358. }
  49359. },
  49360. dressed: {
  49361. height: math.unit(7 + 6/12, "feet"),
  49362. name: "Dressed",
  49363. image: {
  49364. source: "./media/characters/fey/dressed.svg",
  49365. extra: 995/979,
  49366. bottom: 30/1025
  49367. }
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(7 + 6/12, "feet"),
  49374. default: true
  49375. },
  49376. ]
  49377. ))
  49378. characterMakers.push(() => makeCharacter(
  49379. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49380. {
  49381. standing: {
  49382. height: math.unit(17, "feet"),
  49383. name: "Standing",
  49384. image: {
  49385. source: "./media/characters/aster/standing.svg",
  49386. extra: 1798/1598,
  49387. bottom: 117/1915
  49388. }
  49389. },
  49390. },
  49391. [
  49392. {
  49393. name: "Normal",
  49394. height: math.unit(17, "feet"),
  49395. default: true
  49396. },
  49397. {
  49398. name: "Homewrecker",
  49399. height: math.unit(95, "feet")
  49400. },
  49401. {
  49402. name: "Planet Devourer",
  49403. height: math.unit(1008000, "miles")
  49404. },
  49405. ]
  49406. ))
  49407. characterMakers.push(() => makeCharacter(
  49408. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49409. {
  49410. front: {
  49411. height: math.unit(6 + 5/12, "feet"),
  49412. weight: math.unit(265, "lb"),
  49413. name: "Front",
  49414. image: {
  49415. source: "./media/characters/devon-childs/front.svg",
  49416. extra: 1795/1721,
  49417. bottom: 41/1836
  49418. }
  49419. },
  49420. side: {
  49421. height: math.unit(6 + 5/12, "feet"),
  49422. weight: math.unit(265, "lb"),
  49423. name: "Side",
  49424. image: {
  49425. source: "./media/characters/devon-childs/side.svg",
  49426. extra: 1812/1738,
  49427. bottom: 30/1842
  49428. }
  49429. },
  49430. back: {
  49431. height: math.unit(6 + 5/12, "feet"),
  49432. weight: math.unit(265, "lb"),
  49433. name: "Back",
  49434. image: {
  49435. source: "./media/characters/devon-childs/back.svg",
  49436. extra: 1808/1735,
  49437. bottom: 23/1831
  49438. }
  49439. },
  49440. hand: {
  49441. height: math.unit(1.464, "feet"),
  49442. name: "Hand",
  49443. image: {
  49444. source: "./media/characters/devon-childs/hand.svg"
  49445. }
  49446. },
  49447. foot: {
  49448. height: math.unit(1.6, "feet"),
  49449. name: "Foot",
  49450. image: {
  49451. source: "./media/characters/devon-childs/foot.svg"
  49452. }
  49453. },
  49454. },
  49455. [
  49456. {
  49457. name: "Micro",
  49458. height: math.unit(7, "cm")
  49459. },
  49460. {
  49461. name: "Normal",
  49462. height: math.unit(6 + 5/12, "feet"),
  49463. default: true
  49464. },
  49465. {
  49466. name: "Macro",
  49467. height: math.unit(154, "feet")
  49468. },
  49469. ]
  49470. ))
  49471. characterMakers.push(() => makeCharacter(
  49472. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49473. {
  49474. front: {
  49475. height: math.unit(6, "feet"),
  49476. weight: math.unit(180, "lb"),
  49477. name: "Front",
  49478. image: {
  49479. source: "./media/characters/lydemox-vir/front.svg",
  49480. extra: 1632/1435,
  49481. bottom: 58/1690
  49482. }
  49483. },
  49484. frontSFW: {
  49485. height: math.unit(6, "feet"),
  49486. weight: math.unit(180, "lb"),
  49487. name: "Front (SFW)",
  49488. image: {
  49489. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49490. extra: 1632/1435,
  49491. bottom: 58/1690
  49492. }
  49493. },
  49494. back: {
  49495. height: math.unit(6, "feet"),
  49496. weight: math.unit(180, "lb"),
  49497. name: "Back",
  49498. image: {
  49499. source: "./media/characters/lydemox-vir/back.svg",
  49500. extra: 1593/1408,
  49501. bottom: 31/1624
  49502. }
  49503. },
  49504. paw: {
  49505. height: math.unit(1.85, "feet"),
  49506. name: "Paw",
  49507. image: {
  49508. source: "./media/characters/lydemox-vir/paw.svg"
  49509. }
  49510. },
  49511. dick: {
  49512. height: math.unit(1.8, "feet"),
  49513. name: "Dick",
  49514. image: {
  49515. source: "./media/characters/lydemox-vir/dick.svg"
  49516. }
  49517. },
  49518. },
  49519. [
  49520. {
  49521. name: "Macro",
  49522. height: math.unit(100, "feet"),
  49523. default: true
  49524. },
  49525. {
  49526. name: "Teramacro",
  49527. height: math.unit(1, "earth")
  49528. },
  49529. {
  49530. name: "Planetary",
  49531. height: math.unit(20, "earths")
  49532. },
  49533. ]
  49534. ))
  49535. characterMakers.push(() => makeCharacter(
  49536. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49537. {
  49538. front: {
  49539. height: math.unit(15 + 8/12, "feet"),
  49540. weight: math.unit(1237, "kg"),
  49541. name: "Front",
  49542. image: {
  49543. source: "./media/characters/mia/front.svg",
  49544. extra: 1573/1446,
  49545. bottom: 58/1631
  49546. }
  49547. },
  49548. },
  49549. [
  49550. {
  49551. name: "Small",
  49552. height: math.unit(9 + 5/12, "feet")
  49553. },
  49554. {
  49555. name: "Normal",
  49556. height: math.unit(15 + 8/12, "feet"),
  49557. default: true
  49558. },
  49559. ]
  49560. ))
  49561. characterMakers.push(() => makeCharacter(
  49562. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49563. {
  49564. front: {
  49565. height: math.unit(10 + 6/12, "feet"),
  49566. weight: math.unit(1.3, "tons"),
  49567. name: "Front",
  49568. image: {
  49569. source: "./media/characters/mr-graves/front.svg",
  49570. extra: 1779/1695,
  49571. bottom: 198/1977
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(10 + 6 /12, "feet"),
  49579. default: true
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49585. {
  49586. dressedFront: {
  49587. height: math.unit(5 + 8/12, "feet"),
  49588. weight: math.unit(125, "lb"),
  49589. name: "Dressed (Front)",
  49590. image: {
  49591. source: "./media/characters/jess/dressed-front.svg",
  49592. extra: 1176/1152,
  49593. bottom: 42/1218
  49594. }
  49595. },
  49596. dressedSide: {
  49597. height: math.unit(5 + 8/12, "feet"),
  49598. weight: math.unit(125, "lb"),
  49599. name: "Dressed (Side)",
  49600. image: {
  49601. source: "./media/characters/jess/dressed-side.svg",
  49602. extra: 1204/1190,
  49603. bottom: 6/1210
  49604. }
  49605. },
  49606. nudeFront: {
  49607. height: math.unit(5 + 8/12, "feet"),
  49608. weight: math.unit(125, "lb"),
  49609. name: "Nude (Front)",
  49610. image: {
  49611. source: "./media/characters/jess/nude-front.svg",
  49612. extra: 1176/1152,
  49613. bottom: 42/1218
  49614. }
  49615. },
  49616. nudeSide: {
  49617. height: math.unit(5 + 8/12, "feet"),
  49618. weight: math.unit(125, "lb"),
  49619. name: "Nude (Side)",
  49620. image: {
  49621. source: "./media/characters/jess/nude-side.svg",
  49622. extra: 1204/1190,
  49623. bottom: 6/1210
  49624. }
  49625. },
  49626. organsFront: {
  49627. height: math.unit(2.83799342105, "feet"),
  49628. name: "Organs (Front)",
  49629. image: {
  49630. source: "./media/characters/jess/organs-front.svg"
  49631. }
  49632. },
  49633. organsSide: {
  49634. height: math.unit(2.64225290474, "feet"),
  49635. name: "Organs (Side)",
  49636. image: {
  49637. source: "./media/characters/jess/organs-side.svg"
  49638. }
  49639. },
  49640. digestiveTractFront: {
  49641. height: math.unit(2.8106580871, "feet"),
  49642. name: "Digestive Tract (Front)",
  49643. image: {
  49644. source: "./media/characters/jess/digestive-tract-front.svg"
  49645. }
  49646. },
  49647. digestiveTractSide: {
  49648. height: math.unit(2.54365045014, "feet"),
  49649. name: "Digestive Tract (Side)",
  49650. image: {
  49651. source: "./media/characters/jess/digestive-tract-side.svg"
  49652. }
  49653. },
  49654. respiratorySystemFront: {
  49655. height: math.unit(1.11196233456, "feet"),
  49656. name: "Respiratory System (Front)",
  49657. image: {
  49658. source: "./media/characters/jess/respiratory-system-front.svg"
  49659. }
  49660. },
  49661. respiratorySystemSide: {
  49662. height: math.unit(0.89327966297, "feet"),
  49663. name: "Respiratory System (Side)",
  49664. image: {
  49665. source: "./media/characters/jess/respiratory-system-side.svg"
  49666. }
  49667. },
  49668. urinaryTractFront: {
  49669. height: math.unit(1.16126356186, "feet"),
  49670. name: "Urinary Tract (Front)",
  49671. image: {
  49672. source: "./media/characters/jess/urinary-tract-front.svg"
  49673. }
  49674. },
  49675. urinaryTractSide: {
  49676. height: math.unit(1.20910039627, "feet"),
  49677. name: "Urinary Tract (Side)",
  49678. image: {
  49679. source: "./media/characters/jess/urinary-tract-side.svg"
  49680. }
  49681. },
  49682. reproductiveOrgansFront: {
  49683. height: math.unit(0.48422591566, "feet"),
  49684. name: "Reproductive Organs (Front)",
  49685. image: {
  49686. source: "./media/characters/jess/reproductive-organs-front.svg"
  49687. }
  49688. },
  49689. reproductiveOrgansSide: {
  49690. height: math.unit(0.61553314481, "feet"),
  49691. name: "Reproductive Organs (Side)",
  49692. image: {
  49693. source: "./media/characters/jess/reproductive-organs-side.svg"
  49694. }
  49695. },
  49696. breastsFront: {
  49697. height: math.unit(0.47690395121, "feet"),
  49698. name: "Breasts (Front)",
  49699. image: {
  49700. source: "./media/characters/jess/breasts-front.svg"
  49701. }
  49702. },
  49703. breastsSide: {
  49704. height: math.unit(0.30556998307, "feet"),
  49705. name: "Breasts (Side)",
  49706. image: {
  49707. source: "./media/characters/jess/breasts-side.svg"
  49708. }
  49709. },
  49710. heartFront: {
  49711. height: math.unit(0.53011022622, "feet"),
  49712. name: "Heart (Front)",
  49713. image: {
  49714. source: "./media/characters/jess/heart-front.svg"
  49715. }
  49716. },
  49717. heartSide: {
  49718. height: math.unit(0.51790695213, "feet"),
  49719. name: "Heart (Side)",
  49720. image: {
  49721. source: "./media/characters/jess/heart-side.svg"
  49722. }
  49723. },
  49724. earsAndNoseFront: {
  49725. height: math.unit(0.29385483995, "feet"),
  49726. name: "Ears and Nose (Front)",
  49727. image: {
  49728. source: "./media/characters/jess/ears-and-nose-front.svg"
  49729. }
  49730. },
  49731. earsAndNoseSide: {
  49732. height: math.unit(0.18109658741, "feet"),
  49733. name: "Ears and Nose (Side)",
  49734. image: {
  49735. source: "./media/characters/jess/ears-and-nose-side.svg"
  49736. }
  49737. },
  49738. },
  49739. [
  49740. {
  49741. name: "Normal",
  49742. height: math.unit(5 + 8/12, "feet"),
  49743. default: true
  49744. },
  49745. ]
  49746. ))
  49747. characterMakers.push(() => makeCharacter(
  49748. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49749. {
  49750. front: {
  49751. height: math.unit(6, "feet"),
  49752. weight: math.unit(6.64467e-7, "grams"),
  49753. name: "Front",
  49754. image: {
  49755. source: "./media/characters/wimpering/front.svg",
  49756. extra: 597/587,
  49757. bottom: 34/631
  49758. }
  49759. },
  49760. },
  49761. [
  49762. {
  49763. name: "Micro",
  49764. height: math.unit(0.4, "mm"),
  49765. default: true
  49766. },
  49767. ]
  49768. ))
  49769. characterMakers.push(() => makeCharacter(
  49770. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49771. {
  49772. front: {
  49773. height: math.unit(5 + 2/12, "feet"),
  49774. weight: math.unit(110, "lb"),
  49775. name: "Front",
  49776. image: {
  49777. source: "./media/characters/keltre/front.svg",
  49778. extra: 1099/1057,
  49779. bottom: 22/1121
  49780. }
  49781. },
  49782. back: {
  49783. height: math.unit(5 + 2/12, "feet"),
  49784. weight: math.unit(110, "lb"),
  49785. name: "Back",
  49786. image: {
  49787. source: "./media/characters/keltre/back.svg",
  49788. extra: 1095/1053,
  49789. bottom: 17/1112
  49790. }
  49791. },
  49792. dressed: {
  49793. height: math.unit(5 + 2/12, "feet"),
  49794. weight: math.unit(110, "lb"),
  49795. name: "Dressed",
  49796. image: {
  49797. source: "./media/characters/keltre/dressed.svg",
  49798. extra: 1099/1057,
  49799. bottom: 22/1121
  49800. }
  49801. },
  49802. winter: {
  49803. height: math.unit(5 + 2/12, "feet"),
  49804. weight: math.unit(110, "lb"),
  49805. name: "Winter",
  49806. image: {
  49807. source: "./media/characters/keltre/winter.svg",
  49808. extra: 1099/1057,
  49809. bottom: 22/1121
  49810. }
  49811. },
  49812. head: {
  49813. height: math.unit(1.61 * 0.86, "feet"),
  49814. name: "Head",
  49815. image: {
  49816. source: "./media/characters/keltre/head.svg",
  49817. extra: 534/421,
  49818. bottom: 0/534
  49819. }
  49820. },
  49821. hand: {
  49822. height: math.unit(1.3 * 0.86, "feet"),
  49823. name: "Hand",
  49824. image: {
  49825. source: "./media/characters/keltre/hand.svg"
  49826. }
  49827. },
  49828. foot: {
  49829. height: math.unit(1.8 * 0.86, "feet"),
  49830. name: "Foot",
  49831. image: {
  49832. source: "./media/characters/keltre/foot.svg"
  49833. }
  49834. },
  49835. },
  49836. [
  49837. {
  49838. name: "Fine",
  49839. height: math.unit(1, "inch")
  49840. },
  49841. {
  49842. name: "Dimnutive",
  49843. height: math.unit(4, "inches")
  49844. },
  49845. {
  49846. name: "Tiny",
  49847. height: math.unit(1, "foot")
  49848. },
  49849. {
  49850. name: "Small",
  49851. height: math.unit(3, "feet")
  49852. },
  49853. {
  49854. name: "Normal",
  49855. height: math.unit(5 + 2/12, "feet"),
  49856. default: true
  49857. },
  49858. ]
  49859. ))
  49860. characterMakers.push(() => makeCharacter(
  49861. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49862. {
  49863. front: {
  49864. height: math.unit(6 + 2/12, "feet"),
  49865. name: "Front",
  49866. image: {
  49867. source: "./media/characters/nox/front.svg",
  49868. extra: 1917/1830,
  49869. bottom: 74/1991
  49870. }
  49871. },
  49872. back: {
  49873. height: math.unit(6 + 2/12, "feet"),
  49874. name: "Back",
  49875. image: {
  49876. source: "./media/characters/nox/back.svg",
  49877. extra: 1896/1815,
  49878. bottom: 21/1917
  49879. }
  49880. },
  49881. head: {
  49882. height: math.unit(1.1, "feet"),
  49883. name: "Head",
  49884. image: {
  49885. source: "./media/characters/nox/head.svg",
  49886. extra: 874/704,
  49887. bottom: 0/874
  49888. }
  49889. },
  49890. tattoo: {
  49891. height: math.unit(0.729, "feet"),
  49892. name: "Tattoo",
  49893. image: {
  49894. source: "./media/characters/nox/tattoo.svg"
  49895. }
  49896. },
  49897. },
  49898. [
  49899. {
  49900. name: "Normal",
  49901. height: math.unit(6 + 2/12, "feet")
  49902. },
  49903. {
  49904. name: "Gigamacro",
  49905. height: math.unit(2, "earths"),
  49906. default: true
  49907. },
  49908. {
  49909. name: "Cosmic",
  49910. height: math.unit(867, "yottameters")
  49911. },
  49912. ]
  49913. ))
  49914. characterMakers.push(() => makeCharacter(
  49915. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49916. {
  49917. front: {
  49918. height: math.unit(6, "feet"),
  49919. weight: math.unit(150, "lb"),
  49920. name: "Front",
  49921. image: {
  49922. source: "./media/characters/caspian/front.svg",
  49923. extra: 1443/1359,
  49924. bottom: 0/1443
  49925. }
  49926. },
  49927. back: {
  49928. height: math.unit(6, "feet"),
  49929. weight: math.unit(150, "lb"),
  49930. name: "Back",
  49931. image: {
  49932. source: "./media/characters/caspian/back.svg",
  49933. extra: 1379/1309,
  49934. bottom: 0/1379
  49935. }
  49936. },
  49937. head: {
  49938. height: math.unit(0.9, "feet"),
  49939. name: "Head",
  49940. image: {
  49941. source: "./media/characters/caspian/head.svg",
  49942. extra: 692/492,
  49943. bottom: 0/692
  49944. }
  49945. },
  49946. headAlt: {
  49947. height: math.unit(0.95, "feet"),
  49948. name: "Head (Alt)",
  49949. image: {
  49950. source: "./media/characters/caspian/head-alt.svg",
  49951. extra: 668/508,
  49952. bottom: 0/668
  49953. }
  49954. },
  49955. hand: {
  49956. height: math.unit(0.8, "feet"),
  49957. name: "Hand",
  49958. image: {
  49959. source: "./media/characters/caspian/hand.svg"
  49960. }
  49961. },
  49962. paw: {
  49963. height: math.unit(0.95, "feet"),
  49964. name: "Paw",
  49965. image: {
  49966. source: "./media/characters/caspian/paw.svg"
  49967. }
  49968. },
  49969. },
  49970. [
  49971. {
  49972. name: "Normal",
  49973. height: math.unit(162, "feet"),
  49974. default: true
  49975. },
  49976. ]
  49977. ))
  49978. characterMakers.push(() => makeCharacter(
  49979. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49980. {
  49981. front: {
  49982. height: math.unit(6, "feet"),
  49983. name: "Front",
  49984. image: {
  49985. source: "./media/characters/myra-aisling/front.svg",
  49986. extra: 1268/1166,
  49987. bottom: 73/1341
  49988. }
  49989. },
  49990. back: {
  49991. height: math.unit(6, "feet"),
  49992. name: "Back",
  49993. image: {
  49994. source: "./media/characters/myra-aisling/back.svg",
  49995. extra: 1249/1149,
  49996. bottom: 79/1328
  49997. }
  49998. },
  49999. dressed: {
  50000. height: math.unit(6, "feet"),
  50001. name: "Dressed",
  50002. image: {
  50003. source: "./media/characters/myra-aisling/dressed.svg",
  50004. extra: 1290/1189,
  50005. bottom: 47/1337
  50006. }
  50007. },
  50008. hand: {
  50009. height: math.unit(1.1, "feet"),
  50010. name: "Hand",
  50011. image: {
  50012. source: "./media/characters/myra-aisling/hand.svg"
  50013. }
  50014. },
  50015. paw: {
  50016. height: math.unit(1.23, "feet"),
  50017. name: "Paw",
  50018. image: {
  50019. source: "./media/characters/myra-aisling/paw.svg"
  50020. }
  50021. },
  50022. },
  50023. [
  50024. {
  50025. name: "Normal",
  50026. height: math.unit(160, "feet"),
  50027. default: true
  50028. },
  50029. ]
  50030. ))
  50031. characterMakers.push(() => makeCharacter(
  50032. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50033. {
  50034. front: {
  50035. height: math.unit(6, "feet"),
  50036. name: "Front",
  50037. image: {
  50038. source: "./media/characters/tenley-sidero/front.svg",
  50039. extra: 1365/1276,
  50040. bottom: 47/1412
  50041. }
  50042. },
  50043. back: {
  50044. height: math.unit(6, "feet"),
  50045. name: "Back",
  50046. image: {
  50047. source: "./media/characters/tenley-sidero/back.svg",
  50048. extra: 1383/1283,
  50049. bottom: 35/1418
  50050. }
  50051. },
  50052. dressed: {
  50053. height: math.unit(6, "feet"),
  50054. name: "Dressed",
  50055. image: {
  50056. source: "./media/characters/tenley-sidero/dressed.svg",
  50057. extra: 1364/1275,
  50058. bottom: 42/1406
  50059. }
  50060. },
  50061. head: {
  50062. height: math.unit(1.47, "feet"),
  50063. name: "Head",
  50064. image: {
  50065. source: "./media/characters/tenley-sidero/head.svg",
  50066. extra: 610/490,
  50067. bottom: 0/610
  50068. }
  50069. },
  50070. },
  50071. [
  50072. {
  50073. name: "Normal",
  50074. height: math.unit(154, "feet"),
  50075. default: true
  50076. },
  50077. ]
  50078. ))
  50079. characterMakers.push(() => makeCharacter(
  50080. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50081. {
  50082. front: {
  50083. height: math.unit(5, "inches"),
  50084. name: "Front",
  50085. image: {
  50086. source: "./media/characters/mallory/front.svg",
  50087. extra: 1919/1678,
  50088. bottom: 29/1948
  50089. }
  50090. },
  50091. hand: {
  50092. height: math.unit(0.73, "inches"),
  50093. name: "Hand",
  50094. image: {
  50095. source: "./media/characters/mallory/hand.svg"
  50096. }
  50097. },
  50098. paw: {
  50099. height: math.unit(0.68, "inches"),
  50100. name: "Paw",
  50101. image: {
  50102. source: "./media/characters/mallory/paw.svg"
  50103. }
  50104. },
  50105. },
  50106. [
  50107. {
  50108. name: "Small",
  50109. height: math.unit(5, "inches"),
  50110. default: true
  50111. },
  50112. ]
  50113. ))
  50114. characterMakers.push(() => makeCharacter(
  50115. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50116. {
  50117. naked: {
  50118. height: math.unit(6, "feet"),
  50119. name: "Naked",
  50120. image: {
  50121. source: "./media/characters/mab/naked.svg",
  50122. extra: 1855/1757,
  50123. bottom: 208/2063
  50124. }
  50125. },
  50126. outside: {
  50127. height: math.unit(6, "feet"),
  50128. name: "Outside",
  50129. image: {
  50130. source: "./media/characters/mab/outside.svg",
  50131. extra: 1855/1757,
  50132. bottom: 208/2063
  50133. }
  50134. },
  50135. party: {
  50136. height: math.unit(6, "feet"),
  50137. name: "Party",
  50138. image: {
  50139. source: "./media/characters/mab/party.svg",
  50140. extra: 1855/1757,
  50141. bottom: 208/2063
  50142. }
  50143. },
  50144. },
  50145. [
  50146. {
  50147. name: "Normal",
  50148. height: math.unit(165, "feet"),
  50149. default: true
  50150. },
  50151. ]
  50152. ))
  50153. characterMakers.push(() => makeCharacter(
  50154. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50155. {
  50156. feral: {
  50157. height: math.unit(12, "feet"),
  50158. weight: math.unit(20000, "lb"),
  50159. name: "Side",
  50160. image: {
  50161. source: "./media/characters/winter/feral.svg",
  50162. extra: 1286/943,
  50163. bottom: 112/1398
  50164. },
  50165. form: "feral",
  50166. default: true
  50167. },
  50168. feralNsfw: {
  50169. height: math.unit(12, "feet"),
  50170. weight: math.unit(20000, "lb"),
  50171. name: "Side (NSFW)",
  50172. image: {
  50173. source: "./media/characters/winter/feral-nsfw.svg",
  50174. extra: 1286/943,
  50175. bottom: 112/1398
  50176. },
  50177. form: "feral"
  50178. },
  50179. dick: {
  50180. height: math.unit(3.79, "feet"),
  50181. name: "Dick",
  50182. image: {
  50183. source: "./media/characters/winter/dick.svg"
  50184. },
  50185. form: "feral"
  50186. },
  50187. anthro: {
  50188. height: math.unit(12, "feet"),
  50189. weight: math.unit(10, "tons"),
  50190. name: "Anthro",
  50191. image: {
  50192. source: "./media/characters/winter/anthro.svg",
  50193. extra: 1701/1553,
  50194. bottom: 64/1765
  50195. },
  50196. form: "anthro",
  50197. default: true
  50198. },
  50199. },
  50200. [
  50201. {
  50202. name: "Big",
  50203. height: math.unit(12, "feet"),
  50204. default: true,
  50205. form: "feral"
  50206. },
  50207. {
  50208. name: "Big",
  50209. height: math.unit(12, "feet"),
  50210. default: true,
  50211. form: "anthro"
  50212. },
  50213. ],
  50214. {
  50215. "feral": {
  50216. name: "Feral",
  50217. default: true
  50218. },
  50219. "anthro": {
  50220. name: "Anthro"
  50221. }
  50222. }
  50223. ))
  50224. characterMakers.push(() => makeCharacter(
  50225. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50226. {
  50227. front: {
  50228. height: math.unit(4.1, "inches"),
  50229. name: "Front",
  50230. image: {
  50231. source: "./media/characters/alto/front.svg",
  50232. extra: 736/627,
  50233. bottom: 90/826
  50234. }
  50235. },
  50236. },
  50237. [
  50238. {
  50239. name: "Normal",
  50240. height: math.unit(4.1, "inches"),
  50241. default: true
  50242. },
  50243. ]
  50244. ))
  50245. characterMakers.push(() => makeCharacter(
  50246. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50247. {
  50248. sitting: {
  50249. height: math.unit(3, "feet"),
  50250. name: "Sitting",
  50251. image: {
  50252. source: "./media/characters/ratstrid-v/sitting.svg",
  50253. extra: 355/310,
  50254. bottom: 136/491
  50255. }
  50256. },
  50257. },
  50258. [
  50259. {
  50260. name: "Normal",
  50261. height: math.unit(3, "feet"),
  50262. default: true
  50263. },
  50264. ]
  50265. ))
  50266. characterMakers.push(() => makeCharacter(
  50267. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50268. {
  50269. back: {
  50270. height: math.unit(6, "feet"),
  50271. weight: math.unit(450, "lb"),
  50272. name: "Back",
  50273. image: {
  50274. source: "./media/characters/siz/back.svg",
  50275. extra: 1449/1274,
  50276. bottom: 13/1462
  50277. }
  50278. },
  50279. },
  50280. [
  50281. {
  50282. name: "Smallest",
  50283. height: math.unit(18 + 3/12, "feet")
  50284. },
  50285. {
  50286. name: "Modest",
  50287. height: math.unit(56 + 8/12, "feet"),
  50288. default: true
  50289. },
  50290. {
  50291. name: "Largest",
  50292. height: math.unit(3590, "feet")
  50293. },
  50294. ]
  50295. ))
  50296. characterMakers.push(() => makeCharacter(
  50297. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50298. {
  50299. front: {
  50300. height: math.unit(5 + 9/12, "feet"),
  50301. weight: math.unit(150, "lb"),
  50302. name: "Front",
  50303. image: {
  50304. source: "./media/characters/ven/front.svg",
  50305. extra: 1372/1320,
  50306. bottom: 73/1445
  50307. }
  50308. },
  50309. side: {
  50310. height: math.unit(5 + 9/12, "feet"),
  50311. weight: math.unit(1150, "lb"),
  50312. name: "Side",
  50313. image: {
  50314. source: "./media/characters/ven/side.svg",
  50315. extra: 1119/1070,
  50316. bottom: 42/1161
  50317. },
  50318. default: true
  50319. },
  50320. },
  50321. [
  50322. {
  50323. name: "Normal",
  50324. height: math.unit(5 + 9/12, "feet"),
  50325. default: true
  50326. },
  50327. ]
  50328. ))
  50329. characterMakers.push(() => makeCharacter(
  50330. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50331. {
  50332. front: {
  50333. height: math.unit(12, "feet"),
  50334. weight: math.unit(1000, "kg"),
  50335. name: "Front",
  50336. image: {
  50337. source: "./media/characters/maple/front.svg",
  50338. extra: 1193/1081,
  50339. bottom: 22/1215
  50340. }
  50341. },
  50342. },
  50343. [
  50344. {
  50345. name: "Compressed",
  50346. height: math.unit(7, "feet")
  50347. },
  50348. {
  50349. name: "Normal",
  50350. height: math.unit(12, "feet"),
  50351. default: true
  50352. },
  50353. ]
  50354. ))
  50355. characterMakers.push(() => makeCharacter(
  50356. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50357. {
  50358. front: {
  50359. height: math.unit(9, "feet"),
  50360. weight: math.unit(1500, "lb"),
  50361. name: "Front",
  50362. image: {
  50363. source: "./media/characters/nora/front.svg",
  50364. extra: 1348/1286,
  50365. bottom: 218/1566
  50366. }
  50367. },
  50368. erect: {
  50369. height: math.unit(9, "feet"),
  50370. weight: math.unit(11500, "lb"),
  50371. name: "Erect",
  50372. image: {
  50373. source: "./media/characters/nora/erect.svg",
  50374. extra: 1488/1433,
  50375. bottom: 133/1621
  50376. }
  50377. },
  50378. },
  50379. [
  50380. {
  50381. name: "Normal",
  50382. height: math.unit(9, "feet"),
  50383. default: true
  50384. },
  50385. ]
  50386. ))
  50387. characterMakers.push(() => makeCharacter(
  50388. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50389. {
  50390. front: {
  50391. height: math.unit(25, "feet"),
  50392. weight: math.unit(27500, "lb"),
  50393. name: "Front",
  50394. image: {
  50395. source: "./media/characters/north-caudin/front.svg",
  50396. extra: 1184/1082,
  50397. bottom: 23/1207
  50398. }
  50399. },
  50400. },
  50401. [
  50402. {
  50403. name: "Compressed",
  50404. height: math.unit(10, "feet")
  50405. },
  50406. {
  50407. name: "Normal",
  50408. height: math.unit(25, "feet"),
  50409. default: true
  50410. },
  50411. ]
  50412. ))
  50413. characterMakers.push(() => makeCharacter(
  50414. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50415. {
  50416. front: {
  50417. height: math.unit(9, "feet"),
  50418. weight: math.unit(1250, "lb"),
  50419. name: "Front",
  50420. image: {
  50421. source: "./media/characters/merrian/front.svg",
  50422. extra: 2393/2304,
  50423. bottom: 40/2433
  50424. }
  50425. },
  50426. },
  50427. [
  50428. {
  50429. name: "Normal",
  50430. height: math.unit(9, "feet"),
  50431. default: true
  50432. },
  50433. ]
  50434. ))
  50435. characterMakers.push(() => makeCharacter(
  50436. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50437. {
  50438. front: {
  50439. height: math.unit(9, "feet"),
  50440. weight: math.unit(1000, "lb"),
  50441. name: "Front",
  50442. image: {
  50443. source: "./media/characters/hazel/front.svg",
  50444. extra: 2351/2298,
  50445. bottom: 38/2389
  50446. }
  50447. },
  50448. },
  50449. [
  50450. {
  50451. name: "Normal",
  50452. height: math.unit(9, "feet"),
  50453. default: true
  50454. },
  50455. ]
  50456. ))
  50457. characterMakers.push(() => makeCharacter(
  50458. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50459. {
  50460. front: {
  50461. height: math.unit(13, "feet"),
  50462. weight: math.unit(3200, "lb"),
  50463. name: "Front",
  50464. image: {
  50465. source: "./media/characters/emma/front.svg",
  50466. extra: 2263/2029,
  50467. bottom: 68/2331
  50468. }
  50469. },
  50470. },
  50471. [
  50472. {
  50473. name: "Normal",
  50474. height: math.unit(13, "feet"),
  50475. default: true
  50476. },
  50477. ]
  50478. ))
  50479. characterMakers.push(() => makeCharacter(
  50480. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50481. {
  50482. front: {
  50483. height: math.unit(11 + 9/12, "feet"),
  50484. weight: math.unit(2500, "lb"),
  50485. name: "Front",
  50486. image: {
  50487. source: "./media/characters/ilumina/front.svg",
  50488. extra: 2248/2209,
  50489. bottom: 164/2412
  50490. }
  50491. },
  50492. },
  50493. [
  50494. {
  50495. name: "Normal",
  50496. height: math.unit(11 + 9/12, "feet"),
  50497. default: true
  50498. },
  50499. ]
  50500. ))
  50501. characterMakers.push(() => makeCharacter(
  50502. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50503. {
  50504. front: {
  50505. height: math.unit(8 + 10/12, "feet"),
  50506. weight: math.unit(1350, "lb"),
  50507. name: "Front",
  50508. image: {
  50509. source: "./media/characters/moonshine/front.svg",
  50510. extra: 2395/2288,
  50511. bottom: 40/2435
  50512. }
  50513. },
  50514. },
  50515. [
  50516. {
  50517. name: "Normal",
  50518. height: math.unit(8 + 10/12, "feet"),
  50519. default: true
  50520. },
  50521. ]
  50522. ))
  50523. characterMakers.push(() => makeCharacter(
  50524. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50525. {
  50526. front: {
  50527. height: math.unit(14, "feet"),
  50528. weight: math.unit(3400, "lb"),
  50529. name: "Front",
  50530. image: {
  50531. source: "./media/characters/aletia/front.svg",
  50532. extra: 1185/1052,
  50533. bottom: 21/1206
  50534. }
  50535. },
  50536. },
  50537. [
  50538. {
  50539. name: "Compressed",
  50540. height: math.unit(8, "feet")
  50541. },
  50542. {
  50543. name: "Normal",
  50544. height: math.unit(14, "feet"),
  50545. default: true
  50546. },
  50547. ]
  50548. ))
  50549. characterMakers.push(() => makeCharacter(
  50550. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50551. {
  50552. front: {
  50553. height: math.unit(17, "feet"),
  50554. weight: math.unit(6500, "lb"),
  50555. name: "Front",
  50556. image: {
  50557. source: "./media/characters/deidra/front.svg",
  50558. extra: 1201/1081,
  50559. bottom: 16/1217
  50560. }
  50561. },
  50562. },
  50563. [
  50564. {
  50565. name: "Compressed",
  50566. height: math.unit(9 + 6/12, "feet")
  50567. },
  50568. {
  50569. name: "Normal",
  50570. height: math.unit(17, "feet"),
  50571. default: true
  50572. },
  50573. ]
  50574. ))
  50575. characterMakers.push(() => makeCharacter(
  50576. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50577. {
  50578. front: {
  50579. height: math.unit(7 + 4/12, "feet"),
  50580. weight: math.unit(280, "lb"),
  50581. name: "Front",
  50582. image: {
  50583. source: "./media/characters/freki-yrmori/front.svg",
  50584. extra: 1286/1182,
  50585. bottom: 29/1315
  50586. }
  50587. },
  50588. maw: {
  50589. height: math.unit(0.9, "feet"),
  50590. name: "Maw",
  50591. image: {
  50592. source: "./media/characters/freki-yrmori/maw.svg"
  50593. }
  50594. },
  50595. },
  50596. [
  50597. {
  50598. name: "Normal",
  50599. height: math.unit(7 + 4/12, "feet"),
  50600. default: true
  50601. },
  50602. {
  50603. name: "Macro",
  50604. height: math.unit(38.5, "meters")
  50605. },
  50606. ]
  50607. ))
  50608. characterMakers.push(() => makeCharacter(
  50609. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50610. {
  50611. side: {
  50612. height: math.unit(47.2, "meters"),
  50613. weight: math.unit(10000, "tons"),
  50614. name: "Side",
  50615. image: {
  50616. source: "./media/characters/aetherios/side.svg",
  50617. extra: 2363/642,
  50618. bottom: 221/2584
  50619. }
  50620. },
  50621. top: {
  50622. height: math.unit(240, "meters"),
  50623. weight: math.unit(10000, "tons"),
  50624. name: "Top",
  50625. image: {
  50626. source: "./media/characters/aetherios/top.svg"
  50627. }
  50628. },
  50629. bottom: {
  50630. height: math.unit(240, "meters"),
  50631. weight: math.unit(10000, "tons"),
  50632. name: "Bottom",
  50633. image: {
  50634. source: "./media/characters/aetherios/bottom.svg"
  50635. }
  50636. },
  50637. head: {
  50638. height: math.unit(38.6, "meters"),
  50639. name: "Head",
  50640. image: {
  50641. source: "./media/characters/aetherios/head.svg",
  50642. extra: 1335/1112,
  50643. bottom: 0/1335
  50644. }
  50645. },
  50646. front: {
  50647. height: math.unit(29, "meters"),
  50648. name: "Front",
  50649. image: {
  50650. source: "./media/characters/aetherios/front.svg",
  50651. extra: 1266/953,
  50652. bottom: 158/1424
  50653. }
  50654. },
  50655. maw: {
  50656. height: math.unit(16.37, "meters"),
  50657. name: "Maw",
  50658. image: {
  50659. source: "./media/characters/aetherios/maw.svg",
  50660. extra: 748/637,
  50661. bottom: 0/748
  50662. },
  50663. extraAttributes: {
  50664. preyCapacity: {
  50665. name: "Capacity",
  50666. power: 3,
  50667. type: "volume",
  50668. base: math.unit(1000, "people")
  50669. },
  50670. tongueSize: {
  50671. name: "Tongue Size",
  50672. power: 2,
  50673. type: "area",
  50674. base: math.unit(21, "m^2")
  50675. }
  50676. }
  50677. },
  50678. forepaw: {
  50679. height: math.unit(18, "meters"),
  50680. name: "Forepaw",
  50681. image: {
  50682. source: "./media/characters/aetherios/forepaw.svg"
  50683. }
  50684. },
  50685. hindpaw: {
  50686. height: math.unit(23, "meters"),
  50687. name: "Hindpaw",
  50688. image: {
  50689. source: "./media/characters/aetherios/hindpaw.svg"
  50690. }
  50691. },
  50692. genitals: {
  50693. height: math.unit(42, "meters"),
  50694. name: "Genitals",
  50695. image: {
  50696. source: "./media/characters/aetherios/genitals.svg"
  50697. }
  50698. },
  50699. },
  50700. [
  50701. {
  50702. name: "Normal",
  50703. height: math.unit(47.2, "meters"),
  50704. default: true
  50705. },
  50706. {
  50707. name: "Macro",
  50708. height: math.unit(160, "meters")
  50709. },
  50710. {
  50711. name: "Mega",
  50712. height: math.unit(1.87, "km")
  50713. },
  50714. {
  50715. name: "Giga",
  50716. height: math.unit(40000, "km")
  50717. },
  50718. {
  50719. name: "Stellar",
  50720. height: math.unit(158000000, "km")
  50721. },
  50722. {
  50723. name: "Cosmic",
  50724. height: math.unit(9.46e12, "km")
  50725. },
  50726. ]
  50727. ))
  50728. characterMakers.push(() => makeCharacter(
  50729. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50730. {
  50731. front: {
  50732. height: math.unit(5 + 4/12, "feet"),
  50733. weight: math.unit(80, "lb"),
  50734. name: "Front",
  50735. image: {
  50736. source: "./media/characters/mizu-gieeg/front.svg",
  50737. extra: 850/709,
  50738. bottom: 52/902
  50739. }
  50740. },
  50741. back: {
  50742. height: math.unit(5 + 4/12, "feet"),
  50743. weight: math.unit(80, "lb"),
  50744. name: "Back",
  50745. image: {
  50746. source: "./media/characters/mizu-gieeg/back.svg",
  50747. extra: 882/745,
  50748. bottom: 25/907
  50749. }
  50750. },
  50751. },
  50752. [
  50753. {
  50754. name: "Normal",
  50755. height: math.unit(5 + 4/12, "feet"),
  50756. default: true
  50757. },
  50758. ]
  50759. ))
  50760. characterMakers.push(() => makeCharacter(
  50761. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50762. {
  50763. front: {
  50764. height: math.unit(6, "feet"),
  50765. name: "Front",
  50766. image: {
  50767. source: "./media/characters/roselle-st-papier/front.svg",
  50768. extra: 1430/1280,
  50769. bottom: 37/1467
  50770. }
  50771. },
  50772. back: {
  50773. height: math.unit(6, "feet"),
  50774. name: "Back",
  50775. image: {
  50776. source: "./media/characters/roselle-st-papier/back.svg",
  50777. extra: 1491/1296,
  50778. bottom: 23/1514
  50779. }
  50780. },
  50781. ear: {
  50782. height: math.unit(1.26, "feet"),
  50783. name: "Ear",
  50784. image: {
  50785. source: "./media/characters/roselle-st-papier/ear.svg"
  50786. }
  50787. },
  50788. },
  50789. [
  50790. {
  50791. name: "Normal",
  50792. height: math.unit(150, "feet"),
  50793. default: true
  50794. },
  50795. ]
  50796. ))
  50797. characterMakers.push(() => makeCharacter(
  50798. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50799. {
  50800. front: {
  50801. height: math.unit(1, "inches"),
  50802. name: "Front",
  50803. image: {
  50804. source: "./media/characters/valargent/front.svg",
  50805. extra: 1825/1694,
  50806. bottom: 62/1887
  50807. }
  50808. },
  50809. back: {
  50810. height: math.unit(1, "inches"),
  50811. name: "Back",
  50812. image: {
  50813. source: "./media/characters/valargent/back.svg",
  50814. extra: 1775/1682,
  50815. bottom: 88/1863
  50816. }
  50817. },
  50818. },
  50819. [
  50820. {
  50821. name: "Micro",
  50822. height: math.unit(1, "inch"),
  50823. default: true
  50824. },
  50825. ]
  50826. ))
  50827. characterMakers.push(() => makeCharacter(
  50828. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50829. {
  50830. front: {
  50831. height: math.unit(3.4, "meters"),
  50832. name: "Front",
  50833. image: {
  50834. source: "./media/characters/zarina/front.svg",
  50835. extra: 1733/1425,
  50836. bottom: 93/1826
  50837. }
  50838. },
  50839. squatting: {
  50840. height: math.unit(2.14, "meters"),
  50841. name: "Squatting",
  50842. image: {
  50843. source: "./media/characters/zarina/squatting.svg",
  50844. extra: 1073/788,
  50845. bottom: 63/1136
  50846. }
  50847. },
  50848. back: {
  50849. height: math.unit(2.14, "meters"),
  50850. name: "Back",
  50851. image: {
  50852. source: "./media/characters/zarina/back.svg",
  50853. extra: 1128/885,
  50854. bottom: 0/1128
  50855. }
  50856. },
  50857. },
  50858. [
  50859. {
  50860. name: "Normal",
  50861. height: math.unit(3.4, "meters"),
  50862. default: true
  50863. },
  50864. {
  50865. name: "Big",
  50866. height: math.unit(5, "meters")
  50867. },
  50868. {
  50869. name: "Macro",
  50870. height: math.unit(110, "meters")
  50871. },
  50872. ]
  50873. ))
  50874. characterMakers.push(() => makeCharacter(
  50875. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50876. {
  50877. front: {
  50878. height: math.unit(7, "feet"),
  50879. name: "Front",
  50880. image: {
  50881. source: "./media/characters/ventus-astro-fox/front.svg",
  50882. extra: 1792/1623,
  50883. bottom: 28/1820
  50884. }
  50885. },
  50886. back: {
  50887. height: math.unit(7, "feet"),
  50888. name: "Back",
  50889. image: {
  50890. source: "./media/characters/ventus-astro-fox/back.svg",
  50891. extra: 1789/1620,
  50892. bottom: 31/1820
  50893. }
  50894. },
  50895. outfit: {
  50896. height: math.unit(7, "feet"),
  50897. name: "Outfit",
  50898. image: {
  50899. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50900. extra: 1054/925,
  50901. bottom: 15/1069
  50902. }
  50903. },
  50904. head: {
  50905. height: math.unit(1.12, "feet"),
  50906. name: "Head",
  50907. image: {
  50908. source: "./media/characters/ventus-astro-fox/head.svg",
  50909. extra: 866/504,
  50910. bottom: 0/866
  50911. }
  50912. },
  50913. hand: {
  50914. height: math.unit(1, "feet"),
  50915. name: "Hand",
  50916. image: {
  50917. source: "./media/characters/ventus-astro-fox/hand.svg"
  50918. }
  50919. },
  50920. paw: {
  50921. height: math.unit(1.5, "feet"),
  50922. name: "Paw",
  50923. image: {
  50924. source: "./media/characters/ventus-astro-fox/paw.svg"
  50925. }
  50926. },
  50927. },
  50928. [
  50929. {
  50930. name: "Normal",
  50931. height: math.unit(7, "feet"),
  50932. default: true
  50933. },
  50934. {
  50935. name: "Macro",
  50936. height: math.unit(200, "feet")
  50937. },
  50938. {
  50939. name: "Cosmic",
  50940. height: math.unit(3, "universes")
  50941. },
  50942. ]
  50943. ))
  50944. characterMakers.push(() => makeCharacter(
  50945. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50946. {
  50947. front: {
  50948. height: math.unit(3, "meters"),
  50949. weight: math.unit(7000, "lb"),
  50950. name: "Front",
  50951. image: {
  50952. source: "./media/characters/core-t/front.svg",
  50953. extra: 5729/4941,
  50954. bottom: 1129/6858
  50955. }
  50956. },
  50957. },
  50958. [
  50959. {
  50960. name: "Big",
  50961. height: math.unit(3, "meters"),
  50962. default: true
  50963. },
  50964. ]
  50965. ))
  50966. characterMakers.push(() => makeCharacter(
  50967. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50968. {
  50969. normal: {
  50970. height: math.unit(6 + 6/12, "feet"),
  50971. weight: math.unit(275, "lb"),
  50972. name: "Front",
  50973. image: {
  50974. source: "./media/characters/cadbunny/normal.svg",
  50975. extra: 1129/947,
  50976. bottom: 93/1222
  50977. },
  50978. default: true,
  50979. form: "normal"
  50980. },
  50981. gigantamax: {
  50982. height: math.unit(26, "feet"),
  50983. weight: math.unit(16000, "lb"),
  50984. name: "Front",
  50985. image: {
  50986. source: "./media/characters/cadbunny/gigantamax.svg",
  50987. extra: 1133/944,
  50988. bottom: 90/1223
  50989. },
  50990. default: true,
  50991. form: "gigantamax"
  50992. },
  50993. },
  50994. [
  50995. {
  50996. name: "Normal",
  50997. height: math.unit(6 + 6/12, "feet"),
  50998. default: true,
  50999. form: "normal"
  51000. },
  51001. {
  51002. name: "Small",
  51003. height: math.unit(26, "feet"),
  51004. default: true,
  51005. form: "gigantamax"
  51006. },
  51007. {
  51008. name: "Large",
  51009. height: math.unit(78, "feet"),
  51010. form: "gigantamax"
  51011. },
  51012. ],
  51013. {
  51014. "normal": {
  51015. name: "Normal",
  51016. default: true
  51017. },
  51018. "gigantamax": {
  51019. name: "Gigantamax"
  51020. }
  51021. }
  51022. ))
  51023. characterMakers.push(() => makeCharacter(
  51024. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51025. {
  51026. anthroFront: {
  51027. height: math.unit(8, "feet"),
  51028. weight: math.unit(300, "lb"),
  51029. name: "Front",
  51030. image: {
  51031. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51032. extra: 1272/1176,
  51033. bottom: 53/1325
  51034. },
  51035. form: "anthro",
  51036. default: true
  51037. },
  51038. feralSide: {
  51039. height: math.unit(4, "feet"),
  51040. weight: math.unit(250, "lb"),
  51041. name: "Side",
  51042. image: {
  51043. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51044. extra: 731/621,
  51045. bottom: 0/731
  51046. },
  51047. form: "feral",
  51048. default: true
  51049. },
  51050. },
  51051. [
  51052. {
  51053. name: "Regular",
  51054. height: math.unit(8, "feet"),
  51055. form: "anthro"
  51056. },
  51057. {
  51058. name: "Macro",
  51059. height: math.unit(250, "feet"),
  51060. form: "anthro",
  51061. default: true
  51062. },
  51063. {
  51064. name: "Regular",
  51065. height: math.unit(4, "feet"),
  51066. form: "feral"
  51067. },
  51068. {
  51069. name: "Macro",
  51070. height: math.unit(125, "feet"),
  51071. form: "feral",
  51072. default: true
  51073. },
  51074. ],
  51075. {
  51076. "anthro": {
  51077. name: "Anthro",
  51078. default: true
  51079. },
  51080. "feral": {
  51081. name: "Feral",
  51082. },
  51083. }
  51084. ))
  51085. characterMakers.push(() => makeCharacter(
  51086. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51087. {
  51088. front: {
  51089. height: math.unit(11 + 10/12, "feet"),
  51090. weight: math.unit(1587, "kg"),
  51091. name: "Front",
  51092. image: {
  51093. source: "./media/characters/maple-javira-dragon/front.svg",
  51094. extra: 1136/744,
  51095. bottom: 73/1209
  51096. }
  51097. },
  51098. side: {
  51099. height: math.unit(11 + 10/12, "feet"),
  51100. weight: math.unit(1587, "kg"),
  51101. name: "Side",
  51102. image: {
  51103. source: "./media/characters/maple-javira-dragon/side.svg",
  51104. extra: 712/505,
  51105. bottom: 17/729
  51106. }
  51107. },
  51108. head: {
  51109. height: math.unit(8.05, "feet"),
  51110. name: "Head",
  51111. image: {
  51112. source: "./media/characters/maple-javira-dragon/head.svg",
  51113. extra: 1420/1344,
  51114. bottom: 0/1420
  51115. }
  51116. },
  51117. },
  51118. [
  51119. {
  51120. name: "Normal",
  51121. height: math.unit(11 + 10/12, "feet"),
  51122. default: true
  51123. },
  51124. ]
  51125. ))
  51126. characterMakers.push(() => makeCharacter(
  51127. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51128. {
  51129. front: {
  51130. height: math.unit(117, "cm"),
  51131. weight: math.unit(50, "kg"),
  51132. name: "Front",
  51133. image: {
  51134. source: "./media/characters/sonia-wyverntail/front.svg",
  51135. extra: 708/592,
  51136. bottom: 25/733
  51137. }
  51138. },
  51139. },
  51140. [
  51141. {
  51142. name: "Normal",
  51143. height: math.unit(117, "cm"),
  51144. default: true
  51145. },
  51146. ]
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51150. {
  51151. front: {
  51152. height: math.unit(6 + 5/12, "feet"),
  51153. name: "Front",
  51154. image: {
  51155. source: "./media/characters/micah/front.svg",
  51156. extra: 1758/1546,
  51157. bottom: 214/1972
  51158. }
  51159. },
  51160. },
  51161. [
  51162. {
  51163. name: "Normal",
  51164. height: math.unit(6 + 5/12, "feet"),
  51165. default: true
  51166. },
  51167. ]
  51168. ))
  51169. characterMakers.push(() => makeCharacter(
  51170. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51171. {
  51172. front: {
  51173. height: math.unit(5 + 10/12, "feet"),
  51174. weight: math.unit(220, "lb"),
  51175. name: "Front",
  51176. image: {
  51177. source: "./media/characters/zarya/front.svg",
  51178. extra: 593/572,
  51179. bottom: 50/643
  51180. }
  51181. },
  51182. back: {
  51183. height: math.unit(5 + 10/12, "feet"),
  51184. weight: math.unit(220, "lb"),
  51185. name: "Back",
  51186. image: {
  51187. source: "./media/characters/zarya/back.svg",
  51188. extra: 603/582,
  51189. bottom: 38/641
  51190. }
  51191. },
  51192. },
  51193. [
  51194. {
  51195. name: "Normal",
  51196. height: math.unit(5 + 10/12, "feet"),
  51197. default: true
  51198. },
  51199. ]
  51200. ))
  51201. characterMakers.push(() => makeCharacter(
  51202. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51203. {
  51204. front: {
  51205. height: math.unit(7.5, "feet"),
  51206. name: "Front",
  51207. image: {
  51208. source: "./media/characters/sven-hatisson/front.svg",
  51209. extra: 917/857,
  51210. bottom: 42/959
  51211. }
  51212. },
  51213. back: {
  51214. height: math.unit(7.5, "feet"),
  51215. name: "Back",
  51216. image: {
  51217. source: "./media/characters/sven-hatisson/back.svg",
  51218. extra: 903/856,
  51219. bottom: 15/918
  51220. }
  51221. },
  51222. },
  51223. [
  51224. {
  51225. name: "Base Height",
  51226. height: math.unit(7.5, "feet")
  51227. },
  51228. {
  51229. name: "Usual Height",
  51230. height: math.unit(13.5, "feet"),
  51231. default: true
  51232. },
  51233. {
  51234. name: "Smaller Macro",
  51235. height: math.unit(85, "feet")
  51236. },
  51237. {
  51238. name: "Moderate Macro",
  51239. height: math.unit(320, "feet")
  51240. },
  51241. {
  51242. name: "Large Macro",
  51243. height: math.unit(1000, "feet")
  51244. },
  51245. {
  51246. name: "Largest Size",
  51247. height: math.unit(2, "miles")
  51248. },
  51249. ]
  51250. ))
  51251. characterMakers.push(() => makeCharacter(
  51252. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51253. {
  51254. side: {
  51255. height: math.unit(1.8, "meters"),
  51256. weight: math.unit(275, "kg"),
  51257. name: "Side",
  51258. image: {
  51259. source: "./media/characters/terra/side.svg",
  51260. extra: 1273/1147,
  51261. bottom: 0/1273
  51262. }
  51263. },
  51264. },
  51265. [
  51266. {
  51267. name: "Normal",
  51268. height: math.unit(16.2, "meters"),
  51269. default: true
  51270. },
  51271. ]
  51272. ))
  51273. characterMakers.push(() => makeCharacter(
  51274. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51275. {
  51276. borzoiFront: {
  51277. height: math.unit(6 + 9/12, "feet"),
  51278. name: "Front",
  51279. image: {
  51280. source: "./media/characters/rae/borzoi-front.svg",
  51281. extra: 1161/1098,
  51282. bottom: 31/1192
  51283. },
  51284. form: "borzoi",
  51285. default: true
  51286. },
  51287. werewolfFront: {
  51288. height: math.unit(8 + 7/12, "feet"),
  51289. name: "Front",
  51290. image: {
  51291. source: "./media/characters/rae/werewolf-front.svg",
  51292. extra: 1411/1334,
  51293. bottom: 127/1538
  51294. },
  51295. form: "werewolf",
  51296. default: true
  51297. },
  51298. },
  51299. [
  51300. {
  51301. name: "Normal",
  51302. height: math.unit(6 + 9/12, "feet"),
  51303. default: true,
  51304. form: "borzoi"
  51305. },
  51306. {
  51307. name: "Normal",
  51308. height: math.unit(8 + 7/12, "feet"),
  51309. default: true,
  51310. form: "werewolf"
  51311. },
  51312. ],
  51313. {
  51314. "borzoi": {
  51315. name: "Borzoi",
  51316. default: true
  51317. },
  51318. "werewolf": {
  51319. name: "Werewolf",
  51320. },
  51321. }
  51322. ))
  51323. characterMakers.push(() => makeCharacter(
  51324. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51325. {
  51326. front: {
  51327. height: math.unit(8 + 7/12, "feet"),
  51328. weight: math.unit(482, "lb"),
  51329. name: "Front",
  51330. image: {
  51331. source: "./media/characters/kit/front.svg",
  51332. extra: 1247/1103,
  51333. bottom: 41/1288
  51334. }
  51335. },
  51336. back: {
  51337. height: math.unit(8 + 7/12, "feet"),
  51338. weight: math.unit(482, "lb"),
  51339. name: "Back",
  51340. image: {
  51341. source: "./media/characters/kit/back.svg",
  51342. extra: 1252/1123,
  51343. bottom: 21/1273
  51344. }
  51345. },
  51346. paw: {
  51347. height: math.unit(1.46, "feet"),
  51348. name: "Paw",
  51349. image: {
  51350. source: "./media/characters/kit/paw.svg"
  51351. }
  51352. },
  51353. },
  51354. [
  51355. {
  51356. name: "Normal",
  51357. height: math.unit(2.61, "meters"),
  51358. default: true
  51359. },
  51360. {
  51361. name: "\"Tall\"",
  51362. height: math.unit(8.21, "meters")
  51363. },
  51364. {
  51365. name: "Tall",
  51366. height: math.unit(19.6, "meters")
  51367. },
  51368. {
  51369. name: "Very Tall",
  51370. height: math.unit(57.91, "meters")
  51371. },
  51372. {
  51373. name: "Semi-Macro",
  51374. height: math.unit(138.64, "meters")
  51375. },
  51376. {
  51377. name: "Macro",
  51378. height: math.unit(831.99, "meters")
  51379. },
  51380. {
  51381. name: "EX-Macro",
  51382. height: math.unit(96451121, "meters")
  51383. },
  51384. {
  51385. name: "S1-Omnipotent",
  51386. height: math.unit(4.42074e+9, "meters")
  51387. },
  51388. {
  51389. name: "S2-Omnipotent",
  51390. height: math.unit(9.42074e+17, "meters")
  51391. },
  51392. {
  51393. name: "Omnipotent",
  51394. height: math.unit(4.23112e+24, "meters")
  51395. },
  51396. {
  51397. name: "Hypergod",
  51398. height: math.unit(5.05176e+27, "meters")
  51399. },
  51400. {
  51401. name: "Hypergod-EX",
  51402. height: math.unit(9.45532e+49, "meters")
  51403. },
  51404. {
  51405. name: "Hypergod-SP",
  51406. height: math.unit(9.45532e+195, "meters")
  51407. },
  51408. ]
  51409. ))
  51410. characterMakers.push(() => makeCharacter(
  51411. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51412. {
  51413. side: {
  51414. height: math.unit(0.6, "meters"),
  51415. weight: math.unit(24, "kg"),
  51416. name: "Side",
  51417. image: {
  51418. source: "./media/characters/celeste/side.svg",
  51419. extra: 810/517,
  51420. bottom: 53/863
  51421. }
  51422. },
  51423. },
  51424. [
  51425. {
  51426. name: "Velociraptor",
  51427. height: math.unit(0.6, "meters"),
  51428. default: true
  51429. },
  51430. {
  51431. name: "Utahraptor",
  51432. height: math.unit(1.8, "meters")
  51433. },
  51434. {
  51435. name: "Gallimimus",
  51436. height: math.unit(4.0, "meters")
  51437. },
  51438. {
  51439. name: "Large",
  51440. height: math.unit(20, "meters")
  51441. },
  51442. {
  51443. name: "Planetary",
  51444. height: math.unit(50, "megameters")
  51445. },
  51446. {
  51447. name: "Stellar",
  51448. height: math.unit(1.5, "gigameters")
  51449. },
  51450. {
  51451. name: "Galactic",
  51452. height: math.unit(100, "exameters")
  51453. },
  51454. ]
  51455. ))
  51456. characterMakers.push(() => makeCharacter(
  51457. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51458. {
  51459. front: {
  51460. height: math.unit(6, "feet"),
  51461. weight: math.unit(210, "lb"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/glacia/front.svg",
  51465. extra: 958/901,
  51466. bottom: 45/1003
  51467. }
  51468. },
  51469. },
  51470. [
  51471. {
  51472. name: "Macro",
  51473. height: math.unit(1000, "meters"),
  51474. default: true
  51475. },
  51476. ]
  51477. ))
  51478. characterMakers.push(() => makeCharacter(
  51479. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51480. {
  51481. front: {
  51482. height: math.unit(4, "meters"),
  51483. name: "Front",
  51484. image: {
  51485. source: "./media/characters/giri/front.svg",
  51486. extra: 966/894,
  51487. bottom: 21/987
  51488. }
  51489. },
  51490. },
  51491. [
  51492. {
  51493. name: "Normal",
  51494. height: math.unit(4, "meters"),
  51495. default: true
  51496. },
  51497. ]
  51498. ))
  51499. characterMakers.push(() => makeCharacter(
  51500. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51501. {
  51502. back: {
  51503. height: math.unit(4, "feet"),
  51504. weight: math.unit(37, "lb"),
  51505. name: "Back",
  51506. image: {
  51507. source: "./media/characters/tin/back.svg",
  51508. extra: 845/780,
  51509. bottom: 28/873
  51510. }
  51511. },
  51512. },
  51513. [
  51514. {
  51515. name: "Normal",
  51516. height: math.unit(4, "feet"),
  51517. default: true
  51518. },
  51519. ]
  51520. ))
  51521. characterMakers.push(() => makeCharacter(
  51522. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51523. {
  51524. front: {
  51525. height: math.unit(25, "feet"),
  51526. name: "Front",
  51527. image: {
  51528. source: "./media/characters/cadenza-vivace/front.svg",
  51529. extra: 1842/1578,
  51530. bottom: 30/1872
  51531. }
  51532. },
  51533. },
  51534. [
  51535. {
  51536. name: "Macro",
  51537. height: math.unit(25, "feet"),
  51538. default: true
  51539. },
  51540. ]
  51541. ))
  51542. characterMakers.push(() => makeCharacter(
  51543. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51544. {
  51545. front: {
  51546. height: math.unit(10, "feet"),
  51547. weight: math.unit(625, "kg"),
  51548. name: "Front",
  51549. image: {
  51550. source: "./media/characters/zain/front.svg",
  51551. extra: 1682/1498,
  51552. bottom: 223/1905
  51553. }
  51554. },
  51555. back: {
  51556. height: math.unit(10, "feet"),
  51557. weight: math.unit(625, "kg"),
  51558. name: "Back",
  51559. image: {
  51560. source: "./media/characters/zain/back.svg",
  51561. extra: 1814/1657,
  51562. bottom: 152/1966
  51563. }
  51564. },
  51565. head: {
  51566. height: math.unit(10, "feet"),
  51567. weight: math.unit(625, "kg"),
  51568. name: "Head",
  51569. image: {
  51570. source: "./media/characters/zain/head.svg",
  51571. extra: 1059/762,
  51572. bottom: 0/1059
  51573. }
  51574. },
  51575. },
  51576. [
  51577. {
  51578. name: "Normal",
  51579. height: math.unit(10, "feet"),
  51580. default: true
  51581. },
  51582. ]
  51583. ))
  51584. characterMakers.push(() => makeCharacter(
  51585. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51586. {
  51587. front: {
  51588. height: math.unit(6 + 5/12, "feet"),
  51589. weight: math.unit(750, "lb"),
  51590. name: "Front",
  51591. image: {
  51592. source: "./media/characters/ruchex/front.svg",
  51593. extra: 877/820,
  51594. bottom: 17/894
  51595. },
  51596. extraAttributes: {
  51597. "width": {
  51598. name: "Width",
  51599. power: 1,
  51600. type: "length",
  51601. base: math.unit(4.757, "feet")
  51602. },
  51603. }
  51604. },
  51605. },
  51606. [
  51607. {
  51608. name: "Normal",
  51609. height: math.unit(6 + 5/12, "feet"),
  51610. default: true
  51611. },
  51612. ]
  51613. ))
  51614. characterMakers.push(() => makeCharacter(
  51615. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51616. {
  51617. dressedFront: {
  51618. height: math.unit(191, "cm"),
  51619. weight: math.unit(80, "kg"),
  51620. name: "Front",
  51621. image: {
  51622. source: "./media/characters/buster/dressed-front.svg",
  51623. extra: 1022/973,
  51624. bottom: 69/1091
  51625. }
  51626. },
  51627. dressedBack: {
  51628. height: math.unit(191, "cm"),
  51629. weight: math.unit(80, "kg"),
  51630. name: "Back",
  51631. image: {
  51632. source: "./media/characters/buster/dressed-back.svg",
  51633. extra: 1018/970,
  51634. bottom: 55/1073
  51635. }
  51636. },
  51637. nudeFront: {
  51638. height: math.unit(191, "cm"),
  51639. weight: math.unit(80, "kg"),
  51640. name: "Front (Nude)",
  51641. image: {
  51642. source: "./media/characters/buster/nude-front.svg",
  51643. extra: 1022/973,
  51644. bottom: 69/1091
  51645. }
  51646. },
  51647. nudeBack: {
  51648. height: math.unit(191, "cm"),
  51649. weight: math.unit(80, "kg"),
  51650. name: "Back (Nude)",
  51651. image: {
  51652. source: "./media/characters/buster/nude-back.svg",
  51653. extra: 1018/970,
  51654. bottom: 55/1073
  51655. }
  51656. },
  51657. dick: {
  51658. height: math.unit(2.59, "feet"),
  51659. name: "Dick",
  51660. image: {
  51661. source: "./media/characters/buster/dick.svg"
  51662. }
  51663. },
  51664. ass: {
  51665. height: math.unit(1.2, "feet"),
  51666. name: "Ass",
  51667. image: {
  51668. source: "./media/characters/buster/ass.svg"
  51669. }
  51670. },
  51671. },
  51672. [
  51673. {
  51674. name: "Normal",
  51675. height: math.unit(191, "cm"),
  51676. default: true
  51677. },
  51678. ]
  51679. ))
  51680. characterMakers.push(() => makeCharacter(
  51681. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51682. {
  51683. side: {
  51684. height: math.unit(8.1, "feet"),
  51685. weight: math.unit(3500, "lb"),
  51686. name: "Side",
  51687. image: {
  51688. source: "./media/characters/sonya/side.svg",
  51689. extra: 1730/1317,
  51690. bottom: 86/1816
  51691. }
  51692. },
  51693. },
  51694. [
  51695. {
  51696. name: "Normal",
  51697. height: math.unit(8.1, "feet"),
  51698. default: true
  51699. },
  51700. ]
  51701. ))
  51702. characterMakers.push(() => makeCharacter(
  51703. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51704. {
  51705. front: {
  51706. height: math.unit(6, "feet"),
  51707. weight: math.unit(150, "lb"),
  51708. name: "Front",
  51709. image: {
  51710. source: "./media/characters/cadence-andrysiak/front.svg",
  51711. extra: 1164/1121,
  51712. bottom: 60/1224
  51713. }
  51714. },
  51715. back: {
  51716. height: math.unit(6, "feet"),
  51717. weight: math.unit(150, "lb"),
  51718. name: "Back",
  51719. image: {
  51720. source: "./media/characters/cadence-andrysiak/back.svg",
  51721. extra: 1200/1165,
  51722. bottom: 9/1209
  51723. }
  51724. },
  51725. dressed: {
  51726. height: math.unit(6, "feet"),
  51727. weight: math.unit(150, "lb"),
  51728. name: "Dressed",
  51729. image: {
  51730. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51731. extra: 1164/1121,
  51732. bottom: 60/1224
  51733. }
  51734. },
  51735. },
  51736. [
  51737. {
  51738. name: "Micro",
  51739. height: math.unit(1, "mm")
  51740. },
  51741. {
  51742. name: "Normal",
  51743. height: math.unit(6, "feet"),
  51744. default: true
  51745. },
  51746. ]
  51747. ))
  51748. characterMakers.push(() => makeCharacter(
  51749. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51750. {
  51751. front: {
  51752. height: math.unit(60, "inches"),
  51753. weight: math.unit(16, "lb"),
  51754. preyCapacity: math.unit(80, "liters"),
  51755. name: "Front",
  51756. image: {
  51757. source: "./media/characters/penny-lynx/front.svg",
  51758. extra: 1959/1769,
  51759. bottom: 49/2008
  51760. }
  51761. },
  51762. },
  51763. [
  51764. {
  51765. name: "Nokia",
  51766. height: math.unit(2, "inches")
  51767. },
  51768. {
  51769. name: "Desktop",
  51770. height: math.unit(24, "inches")
  51771. },
  51772. {
  51773. name: "TV",
  51774. height: math.unit(60, "inches")
  51775. },
  51776. {
  51777. name: "Jumbotron",
  51778. height: math.unit(12, "feet")
  51779. },
  51780. {
  51781. name: "Billboard",
  51782. height: math.unit(48, "feet"),
  51783. default: true
  51784. },
  51785. {
  51786. name: "IMAX",
  51787. height: math.unit(96, "feet")
  51788. },
  51789. {
  51790. name: "SINGULARITY",
  51791. height: math.unit(864938, "miles")
  51792. },
  51793. ]
  51794. ))
  51795. characterMakers.push(() => makeCharacter(
  51796. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51797. {
  51798. front: {
  51799. height: math.unit(5 + 4/12, "feet"),
  51800. weight: math.unit(230, "lb"),
  51801. name: "Front",
  51802. image: {
  51803. source: "./media/characters/sukebe/front.svg",
  51804. extra: 2130/2038,
  51805. bottom: 90/2220
  51806. }
  51807. },
  51808. back: {
  51809. height: math.unit(3.48, "feet"),
  51810. weight: math.unit(230, "lb"),
  51811. name: "Back",
  51812. image: {
  51813. source: "./media/characters/sukebe/back.svg",
  51814. extra: 1670/1604,
  51815. bottom: 0/1670
  51816. }
  51817. },
  51818. },
  51819. [
  51820. {
  51821. name: "Normal",
  51822. height: math.unit(5 + 4/12, "feet"),
  51823. default: true
  51824. },
  51825. ]
  51826. ))
  51827. characterMakers.push(() => makeCharacter(
  51828. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51829. {
  51830. front: {
  51831. height: math.unit(6, "feet"),
  51832. name: "Front",
  51833. image: {
  51834. source: "./media/characters/nylla/front.svg",
  51835. extra: 1868/1699,
  51836. bottom: 97/1965
  51837. }
  51838. },
  51839. back: {
  51840. height: math.unit(6, "feet"),
  51841. name: "Back",
  51842. image: {
  51843. source: "./media/characters/nylla/back.svg",
  51844. extra: 1889/1712,
  51845. bottom: 93/1982
  51846. }
  51847. },
  51848. frontNsfw: {
  51849. height: math.unit(6, "feet"),
  51850. name: "Front (NSFW)",
  51851. image: {
  51852. source: "./media/characters/nylla/front-nsfw.svg",
  51853. extra: 1868/1699,
  51854. bottom: 97/1965
  51855. },
  51856. extraAttributes: {
  51857. "dickLength": {
  51858. name: "Dick Length",
  51859. power: 1,
  51860. type: "length",
  51861. base: math.unit(1.4, "feet")
  51862. },
  51863. "cumVolume": {
  51864. name: "Cum Volume",
  51865. power: 3,
  51866. type: "volume",
  51867. base: math.unit(100, "mL")
  51868. },
  51869. }
  51870. },
  51871. backNsfw: {
  51872. height: math.unit(6, "feet"),
  51873. name: "Back (NSFW)",
  51874. image: {
  51875. source: "./media/characters/nylla/back-nsfw.svg",
  51876. extra: 1889/1712,
  51877. bottom: 93/1982
  51878. }
  51879. },
  51880. maw: {
  51881. height: math.unit(2.10, "feet"),
  51882. name: "Maw",
  51883. image: {
  51884. source: "./media/characters/nylla/maw.svg"
  51885. }
  51886. },
  51887. paws: {
  51888. height: math.unit(2.06, "feet"),
  51889. name: "Paws",
  51890. image: {
  51891. source: "./media/characters/nylla/paws.svg"
  51892. }
  51893. },
  51894. muzzle: {
  51895. height: math.unit(0.61, "feet"),
  51896. name: "Muzzle",
  51897. image: {
  51898. source: "./media/characters/nylla/muzzle.svg"
  51899. }
  51900. },
  51901. sheath: {
  51902. height: math.unit(1.305, "feet"),
  51903. name: "Sheath",
  51904. image: {
  51905. source: "./media/characters/nylla/sheath.svg"
  51906. }
  51907. },
  51908. },
  51909. [
  51910. {
  51911. name: "Micro",
  51912. height: math.unit(7.5, "inches")
  51913. },
  51914. {
  51915. name: "Normal",
  51916. height: math.unit(7, "feet"),
  51917. default: true
  51918. },
  51919. {
  51920. name: "Macro",
  51921. height: math.unit(60, "feet")
  51922. },
  51923. {
  51924. name: "Mega",
  51925. height: math.unit(200, "feet")
  51926. },
  51927. ]
  51928. ))
  51929. characterMakers.push(() => makeCharacter(
  51930. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51931. {
  51932. front: {
  51933. height: math.unit(10, "feet"),
  51934. weight: math.unit(2300, "lb"),
  51935. name: "Front",
  51936. image: {
  51937. source: "./media/characters/hunt3r/front.svg",
  51938. extra: 1909/1742,
  51939. bottom: 46/1955
  51940. }
  51941. },
  51942. },
  51943. [
  51944. {
  51945. name: "Normal",
  51946. height: math.unit(10, "feet"),
  51947. default: true
  51948. },
  51949. ]
  51950. ))
  51951. characterMakers.push(() => makeCharacter(
  51952. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51953. {
  51954. dressed: {
  51955. height: math.unit(11, "feet"),
  51956. weight: math.unit(18500, "lb"),
  51957. preyCapacity: math.unit(9, "people"),
  51958. name: "Dressed",
  51959. image: {
  51960. source: "./media/characters/cylphis/dressed.svg",
  51961. extra: 1028/1003,
  51962. bottom: 75/1103
  51963. },
  51964. },
  51965. undressed: {
  51966. height: math.unit(11, "feet"),
  51967. weight: math.unit(18500, "lb"),
  51968. preyCapacity: math.unit(9, "people"),
  51969. name: "Undressed",
  51970. image: {
  51971. source: "./media/characters/cylphis/undressed.svg",
  51972. extra: 1028/1003,
  51973. bottom: 75/1103
  51974. }
  51975. },
  51976. full: {
  51977. height: math.unit(11, "feet"),
  51978. weight: math.unit(18500 + 150*9, "lb"),
  51979. preyCapacity: math.unit(9, "people"),
  51980. name: "Full",
  51981. image: {
  51982. source: "./media/characters/cylphis/full.svg",
  51983. extra: 1028/1003,
  51984. bottom: 75/1103
  51985. }
  51986. },
  51987. },
  51988. [
  51989. {
  51990. name: "Small",
  51991. height: math.unit(8, "feet")
  51992. },
  51993. {
  51994. name: "Normal",
  51995. height: math.unit(11, "feet"),
  51996. default: true
  51997. },
  51998. ]
  51999. ))
  52000. characterMakers.push(() => makeCharacter(
  52001. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52002. {
  52003. front: {
  52004. height: math.unit(2 + 7/12, "feet"),
  52005. name: "Front",
  52006. image: {
  52007. source: "./media/characters/orishan/front.svg",
  52008. extra: 1058/1023,
  52009. bottom: 23/1081
  52010. }
  52011. },
  52012. back: {
  52013. height: math.unit(2 + 7/12, "feet"),
  52014. name: "Back",
  52015. image: {
  52016. source: "./media/characters/orishan/back.svg",
  52017. extra: 1058/1023,
  52018. bottom: 23/1081
  52019. }
  52020. },
  52021. },
  52022. [
  52023. {
  52024. name: "Micro",
  52025. height: math.unit(2, "cm")
  52026. },
  52027. {
  52028. name: "Normal",
  52029. height: math.unit(2 + 7/12, "feet"),
  52030. default: true
  52031. },
  52032. ]
  52033. ))
  52034. characterMakers.push(() => makeCharacter(
  52035. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52036. {
  52037. front: {
  52038. height: math.unit(3, "meters"),
  52039. weight: math.unit(508, "kg"),
  52040. name: "Front",
  52041. image: {
  52042. source: "./media/characters/seranis/front.svg",
  52043. extra: 1478/1454,
  52044. bottom: 41/1519
  52045. }
  52046. },
  52047. },
  52048. [
  52049. {
  52050. name: "Normal",
  52051. height: math.unit(3, "meters"),
  52052. default: true
  52053. },
  52054. {
  52055. name: "Macro",
  52056. height: math.unit(108, "meters")
  52057. },
  52058. {
  52059. name: "Megamacro",
  52060. height: math.unit(1250, "meters")
  52061. },
  52062. ]
  52063. ))
  52064. characterMakers.push(() => makeCharacter(
  52065. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52066. {
  52067. undressed: {
  52068. height: math.unit(5 + 3/12, "feet"),
  52069. name: "Undressed",
  52070. image: {
  52071. source: "./media/characters/ankou/undressed.svg",
  52072. extra: 1301/1213,
  52073. bottom: 87/1388
  52074. }
  52075. },
  52076. dressed: {
  52077. height: math.unit(5 + 3/12, "feet"),
  52078. name: "Dressed",
  52079. image: {
  52080. source: "./media/characters/ankou/dressed.svg",
  52081. extra: 1301/1213,
  52082. bottom: 87/1388
  52083. }
  52084. },
  52085. head: {
  52086. height: math.unit(1.61, "feet"),
  52087. name: "Head",
  52088. image: {
  52089. source: "./media/characters/ankou/head.svg"
  52090. }
  52091. },
  52092. },
  52093. [
  52094. {
  52095. name: "Normal",
  52096. height: math.unit(5 + 3/12, "feet"),
  52097. default: true
  52098. },
  52099. ]
  52100. ))
  52101. characterMakers.push(() => makeCharacter(
  52102. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52103. {
  52104. side: {
  52105. height: math.unit(6 + 3/12, "feet"),
  52106. weight: math.unit(200, "kg"),
  52107. name: "Side",
  52108. image: {
  52109. source: "./media/characters/juniper-skunktaur/side.svg",
  52110. extra: 1574/1229,
  52111. bottom: 38/1612
  52112. }
  52113. },
  52114. front: {
  52115. height: math.unit(6 + 3/12, "feet"),
  52116. weight: math.unit(200, "kg"),
  52117. name: "Front",
  52118. image: {
  52119. source: "./media/characters/juniper-skunktaur/front.svg",
  52120. extra: 1337/1278,
  52121. bottom: 22/1359
  52122. }
  52123. },
  52124. back: {
  52125. height: math.unit(6 + 3/12, "feet"),
  52126. weight: math.unit(200, "kg"),
  52127. name: "Back",
  52128. image: {
  52129. source: "./media/characters/juniper-skunktaur/back.svg",
  52130. extra: 1618/1273,
  52131. bottom: 13/1631
  52132. }
  52133. },
  52134. top: {
  52135. height: math.unit(2.62, "feet"),
  52136. weight: math.unit(200, "kg"),
  52137. name: "Top",
  52138. image: {
  52139. source: "./media/characters/juniper-skunktaur/top.svg"
  52140. }
  52141. },
  52142. },
  52143. [
  52144. {
  52145. name: "Normal",
  52146. height: math.unit(6 + 3/12, "feet"),
  52147. default: true
  52148. },
  52149. ]
  52150. ))
  52151. characterMakers.push(() => makeCharacter(
  52152. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52153. {
  52154. front: {
  52155. height: math.unit(20.5, "feet"),
  52156. name: "Front",
  52157. image: {
  52158. source: "./media/characters/rei/front.svg",
  52159. extra: 1349/1195,
  52160. bottom: 31/1380
  52161. }
  52162. },
  52163. back: {
  52164. height: math.unit(20.5, "feet"),
  52165. name: "Back",
  52166. image: {
  52167. source: "./media/characters/rei/back.svg",
  52168. extra: 1358/1204,
  52169. bottom: 22/1380
  52170. }
  52171. },
  52172. pawsDigi: {
  52173. height: math.unit(3.45, "feet"),
  52174. name: "Paws (Digi)",
  52175. image: {
  52176. source: "./media/characters/rei/paws-digi.svg"
  52177. }
  52178. },
  52179. pawsPlanti: {
  52180. height: math.unit(3.45, "feet"),
  52181. name: "Paws (Planti)",
  52182. image: {
  52183. source: "./media/characters/rei/paws-planti.svg"
  52184. }
  52185. },
  52186. },
  52187. [
  52188. {
  52189. name: "Normal",
  52190. height: math.unit(20.5, "feet"),
  52191. default: true
  52192. },
  52193. ]
  52194. ))
  52195. characterMakers.push(() => makeCharacter(
  52196. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52197. {
  52198. front: {
  52199. height: math.unit(5 + 11/12, "feet"),
  52200. name: "Front",
  52201. image: {
  52202. source: "./media/characters/carina/front.svg",
  52203. extra: 1720/1449,
  52204. bottom: 14/1734
  52205. }
  52206. },
  52207. back: {
  52208. height: math.unit(5 + 11/12, "feet"),
  52209. name: "Back",
  52210. image: {
  52211. source: "./media/characters/carina/back.svg",
  52212. extra: 1493/1445,
  52213. bottom: 17/1510
  52214. }
  52215. },
  52216. paw: {
  52217. height: math.unit(0.92, "feet"),
  52218. name: "Paw",
  52219. image: {
  52220. source: "./media/characters/carina/paw.svg"
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Normal",
  52227. height: math.unit(5 + 11/12, "feet"),
  52228. default: true
  52229. },
  52230. ]
  52231. ))
  52232. characterMakers.push(() => makeCharacter(
  52233. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52234. {
  52235. front: {
  52236. height: math.unit(4.88, "meters"),
  52237. name: "Front",
  52238. image: {
  52239. source: "./media/characters/maya/front.svg",
  52240. extra: 1222/1145,
  52241. bottom: 57/1279
  52242. }
  52243. },
  52244. },
  52245. [
  52246. {
  52247. name: "Normal",
  52248. height: math.unit(4.88, "meters"),
  52249. default: true
  52250. },
  52251. {
  52252. name: "Macro",
  52253. height: math.unit(38.1, "meters")
  52254. },
  52255. {
  52256. name: "Macro+",
  52257. height: math.unit(152.4, "meters")
  52258. },
  52259. {
  52260. name: "Macro++",
  52261. height: math.unit(16.09, "km")
  52262. },
  52263. {
  52264. name: "Mega-macro",
  52265. height: math.unit(700, "megameters")
  52266. },
  52267. ]
  52268. ))
  52269. characterMakers.push(() => makeCharacter(
  52270. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52271. {
  52272. front: {
  52273. height: math.unit(6 + 2/12, "feet"),
  52274. weight: math.unit(500, "lb"),
  52275. preyCapacity: math.unit(4, "people"),
  52276. name: "Front",
  52277. image: {
  52278. source: "./media/characters/yepir/front.svg"
  52279. }
  52280. },
  52281. side: {
  52282. height: math.unit(6 + 2/12, "feet"),
  52283. weight: math.unit(500, "lb"),
  52284. preyCapacity: math.unit(4, "people"),
  52285. name: "Side",
  52286. image: {
  52287. source: "./media/characters/yepir/side.svg"
  52288. }
  52289. },
  52290. paw: {
  52291. height: math.unit(1.05, "feet"),
  52292. name: "Paw",
  52293. image: {
  52294. source: "./media/characters/yepir/paw.svg"
  52295. }
  52296. },
  52297. },
  52298. [
  52299. {
  52300. name: "Normal",
  52301. height: math.unit(6 + 2/12, "feet"),
  52302. default: true
  52303. },
  52304. ]
  52305. ))
  52306. characterMakers.push(() => makeCharacter(
  52307. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52308. {
  52309. front: {
  52310. height: math.unit(5 + 4/12, "feet"),
  52311. name: "Front",
  52312. image: {
  52313. source: "./media/characters/russec/front.svg",
  52314. extra: 1926/1626,
  52315. bottom: 72/1998
  52316. }
  52317. },
  52318. back: {
  52319. height: math.unit(5 + 4/12, "feet"),
  52320. name: "Back",
  52321. image: {
  52322. source: "./media/characters/russec/back.svg",
  52323. extra: 1910/1591,
  52324. bottom: 48/1958
  52325. }
  52326. },
  52327. },
  52328. [
  52329. {
  52330. name: "Small",
  52331. height: math.unit(5 + 4/12, "feet")
  52332. },
  52333. {
  52334. name: "Normal",
  52335. height: math.unit(72, "feet"),
  52336. default: true
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52342. {
  52343. side: {
  52344. height: math.unit(12, "feet"),
  52345. name: "Side",
  52346. image: {
  52347. source: "./media/characters/cianus/side.svg",
  52348. extra: 808/526,
  52349. bottom: 61/869
  52350. }
  52351. },
  52352. },
  52353. [
  52354. {
  52355. name: "Normal",
  52356. height: math.unit(12, "feet"),
  52357. default: true
  52358. },
  52359. ]
  52360. ))
  52361. characterMakers.push(() => makeCharacter(
  52362. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52363. {
  52364. front: {
  52365. height: math.unit(9 + 6/12, "feet"),
  52366. weight: math.unit(300, "lb"),
  52367. name: "Front",
  52368. image: {
  52369. source: "./media/characters/ahab/front.svg",
  52370. extra: 1897/1868,
  52371. bottom: 121/2018
  52372. }
  52373. },
  52374. frontNsfw: {
  52375. height: math.unit(9 + 6/12, "feet"),
  52376. weight: math.unit(300, "lb"),
  52377. name: "Front-nsfw",
  52378. image: {
  52379. source: "./media/characters/ahab/front-nsfw.svg",
  52380. extra: 1897/1868,
  52381. bottom: 121/2018
  52382. }
  52383. },
  52384. },
  52385. [
  52386. {
  52387. name: "Normal",
  52388. height: math.unit(9 + 6/12, "feet")
  52389. },
  52390. {
  52391. name: "Macro",
  52392. height: math.unit(657, "feet"),
  52393. default: true
  52394. },
  52395. ]
  52396. ))
  52397. characterMakers.push(() => makeCharacter(
  52398. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52399. {
  52400. front: {
  52401. height: math.unit(2.69, "meters"),
  52402. weight: math.unit(132, "kg"),
  52403. name: "Front",
  52404. image: {
  52405. source: "./media/characters/aarkus/front.svg",
  52406. extra: 1400/1231,
  52407. bottom: 34/1434
  52408. }
  52409. },
  52410. back: {
  52411. height: math.unit(2.69, "meters"),
  52412. weight: math.unit(132, "kg"),
  52413. name: "Back",
  52414. image: {
  52415. source: "./media/characters/aarkus/back.svg",
  52416. extra: 1381/1218,
  52417. bottom: 30/1411
  52418. }
  52419. },
  52420. frontNsfw: {
  52421. height: math.unit(2.69, "meters"),
  52422. weight: math.unit(132, "kg"),
  52423. name: "Front (NSFW)",
  52424. image: {
  52425. source: "./media/characters/aarkus/front-nsfw.svg",
  52426. extra: 1400/1231,
  52427. bottom: 34/1434
  52428. }
  52429. },
  52430. foot: {
  52431. height: math.unit(1.45, "feet"),
  52432. name: "Foot",
  52433. image: {
  52434. source: "./media/characters/aarkus/foot.svg"
  52435. }
  52436. },
  52437. head: {
  52438. height: math.unit(2.85, "feet"),
  52439. name: "Head",
  52440. image: {
  52441. source: "./media/characters/aarkus/head.svg"
  52442. }
  52443. },
  52444. headAlt: {
  52445. height: math.unit(3.07, "feet"),
  52446. name: "Head (Alt)",
  52447. image: {
  52448. source: "./media/characters/aarkus/head-alt.svg"
  52449. }
  52450. },
  52451. mouth: {
  52452. height: math.unit(1.25, "feet"),
  52453. name: "Mouth",
  52454. image: {
  52455. source: "./media/characters/aarkus/mouth.svg"
  52456. }
  52457. },
  52458. dick: {
  52459. height: math.unit(1.77, "feet"),
  52460. name: "Dick",
  52461. image: {
  52462. source: "./media/characters/aarkus/dick.svg"
  52463. }
  52464. },
  52465. },
  52466. [
  52467. {
  52468. name: "Normal",
  52469. height: math.unit(2.69, "meters"),
  52470. default: true
  52471. },
  52472. {
  52473. name: "Macro",
  52474. height: math.unit(269, "meters")
  52475. },
  52476. {
  52477. name: "Macro+",
  52478. height: math.unit(672.5, "meters")
  52479. },
  52480. {
  52481. name: "Megamacro",
  52482. height: math.unit(2.017, "km")
  52483. },
  52484. ]
  52485. ))
  52486. characterMakers.push(() => makeCharacter(
  52487. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52488. {
  52489. front: {
  52490. height: math.unit(23.47, "cm"),
  52491. weight: math.unit(600, "grams"),
  52492. name: "Front",
  52493. image: {
  52494. source: "./media/characters/diode/front.svg",
  52495. extra: 1778/1396,
  52496. bottom: 95/1873
  52497. }
  52498. },
  52499. side: {
  52500. height: math.unit(23.47, "cm"),
  52501. weight: math.unit(600, "grams"),
  52502. name: "Side",
  52503. image: {
  52504. source: "./media/characters/diode/side.svg",
  52505. extra: 1831/1404,
  52506. bottom: 86/1917
  52507. }
  52508. },
  52509. wings: {
  52510. height: math.unit(0.683, "feet"),
  52511. name: "Wings",
  52512. image: {
  52513. source: "./media/characters/diode/wings.svg"
  52514. }
  52515. },
  52516. },
  52517. [
  52518. {
  52519. name: "Normal",
  52520. height: math.unit(23.47, "cm"),
  52521. default: true
  52522. },
  52523. ]
  52524. ))
  52525. characterMakers.push(() => makeCharacter(
  52526. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52527. {
  52528. front: {
  52529. height: math.unit(6 + 3/12, "feet"),
  52530. weight: math.unit(250, "lb"),
  52531. name: "Front",
  52532. image: {
  52533. source: "./media/characters/reika/front.svg",
  52534. extra: 1120/1078,
  52535. bottom: 86/1206
  52536. }
  52537. },
  52538. },
  52539. [
  52540. {
  52541. name: "Normal",
  52542. height: math.unit(6 + 3/12, "feet"),
  52543. default: true
  52544. },
  52545. ]
  52546. ))
  52547. characterMakers.push(() => makeCharacter(
  52548. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52549. {
  52550. front: {
  52551. height: math.unit(16 + 8/12, "feet"),
  52552. weight: math.unit(9000, "lb"),
  52553. name: "Front",
  52554. image: {
  52555. source: "./media/characters/lokuto-takama/front.svg",
  52556. extra: 1774/1632,
  52557. bottom: 147/1921
  52558. },
  52559. extraAttributes: {
  52560. "bustWidth": {
  52561. name: "Bust Width",
  52562. power: 1,
  52563. type: "length",
  52564. base: math.unit(2.4, "meters")
  52565. },
  52566. "breastWeight": {
  52567. name: "Breast Weight",
  52568. power: 3,
  52569. type: "mass",
  52570. base: math.unit(1000, "kg")
  52571. },
  52572. }
  52573. },
  52574. },
  52575. [
  52576. {
  52577. name: "Normal",
  52578. height: math.unit(16 + 8/12, "feet"),
  52579. default: true
  52580. },
  52581. ]
  52582. ))
  52583. characterMakers.push(() => makeCharacter(
  52584. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52585. {
  52586. front: {
  52587. height: math.unit(10, "cm"),
  52588. weight: math.unit(850, "grams"),
  52589. name: "Front",
  52590. image: {
  52591. source: "./media/characters/owak-bone/front.svg",
  52592. extra: 1965/1801,
  52593. bottom: 31/1996
  52594. }
  52595. },
  52596. },
  52597. [
  52598. {
  52599. name: "Normal",
  52600. height: math.unit(10, "cm"),
  52601. default: true
  52602. },
  52603. ]
  52604. ))
  52605. characterMakers.push(() => makeCharacter(
  52606. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52607. {
  52608. front: {
  52609. height: math.unit(2 + 6/12, "feet"),
  52610. weight: math.unit(9, "lb"),
  52611. name: "Front",
  52612. image: {
  52613. source: "./media/characters/muffin/front.svg",
  52614. extra: 1220/1195,
  52615. bottom: 84/1304
  52616. }
  52617. },
  52618. },
  52619. [
  52620. {
  52621. name: "Normal",
  52622. height: math.unit(2 + 6/12, "feet"),
  52623. default: true
  52624. },
  52625. ]
  52626. ))
  52627. characterMakers.push(() => makeCharacter(
  52628. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52629. {
  52630. front: {
  52631. height: math.unit(7, "feet"),
  52632. name: "Front",
  52633. image: {
  52634. source: "./media/characters/chimera/front.svg",
  52635. extra: 1752/1614,
  52636. bottom: 68/1820
  52637. }
  52638. },
  52639. },
  52640. [
  52641. {
  52642. name: "Normal",
  52643. height: math.unit(7, "feet")
  52644. },
  52645. {
  52646. name: "Gigamacro",
  52647. height: math.unit(2.9, "gigameters"),
  52648. default: true
  52649. },
  52650. {
  52651. name: "Universal",
  52652. height: math.unit(1.56e26, "yottameters")
  52653. },
  52654. ]
  52655. ))
  52656. characterMakers.push(() => makeCharacter(
  52657. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52658. {
  52659. front: {
  52660. height: math.unit(3, "feet"),
  52661. weight: math.unit(20, "lb"),
  52662. name: "Front",
  52663. image: {
  52664. source: "./media/characters/kit-fennec-fox/front.svg",
  52665. extra: 1027/932,
  52666. bottom: 16/1043
  52667. }
  52668. },
  52669. back: {
  52670. height: math.unit(3, "feet"),
  52671. weight: math.unit(20, "lb"),
  52672. name: "Back",
  52673. image: {
  52674. source: "./media/characters/kit-fennec-fox/back.svg",
  52675. extra: 1027/932,
  52676. bottom: 16/1043
  52677. }
  52678. },
  52679. },
  52680. [
  52681. {
  52682. name: "Normal",
  52683. height: math.unit(3, "feet"),
  52684. default: true
  52685. },
  52686. ]
  52687. ))
  52688. characterMakers.push(() => makeCharacter(
  52689. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52690. {
  52691. front: {
  52692. height: math.unit(167, "cm"),
  52693. name: "Front",
  52694. image: {
  52695. source: "./media/characters/blue-otter/front.svg",
  52696. extra: 1951/1920,
  52697. bottom: 31/1982
  52698. }
  52699. },
  52700. },
  52701. [
  52702. {
  52703. name: "Otter-Sized",
  52704. height: math.unit(100, "cm")
  52705. },
  52706. {
  52707. name: "Normal",
  52708. height: math.unit(167, "cm"),
  52709. default: true
  52710. },
  52711. ]
  52712. ))
  52713. characterMakers.push(() => makeCharacter(
  52714. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52715. {
  52716. front: {
  52717. height: math.unit(4 + 4/12, "feet"),
  52718. name: "Front",
  52719. image: {
  52720. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52721. extra: 1072/1067,
  52722. bottom: 117/1189
  52723. }
  52724. },
  52725. back: {
  52726. height: math.unit(4 + 4/12, "feet"),
  52727. name: "Back",
  52728. image: {
  52729. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52730. extra: 1135/1129,
  52731. bottom: 57/1192
  52732. }
  52733. },
  52734. head: {
  52735. height: math.unit(1.77, "feet"),
  52736. name: "Head",
  52737. image: {
  52738. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52739. }
  52740. },
  52741. },
  52742. [
  52743. {
  52744. name: "Normal",
  52745. height: math.unit(4 + 4/12, "feet"),
  52746. default: true
  52747. },
  52748. ]
  52749. ))
  52750. characterMakers.push(() => makeCharacter(
  52751. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52752. {
  52753. front: {
  52754. height: math.unit(2, "inches"),
  52755. name: "Front",
  52756. image: {
  52757. source: "./media/characters/carley-hartford/front.svg",
  52758. extra: 1035/988,
  52759. bottom: 23/1058
  52760. }
  52761. },
  52762. back: {
  52763. height: math.unit(2, "inches"),
  52764. name: "Back",
  52765. image: {
  52766. source: "./media/characters/carley-hartford/back.svg",
  52767. extra: 1035/988,
  52768. bottom: 23/1058
  52769. }
  52770. },
  52771. dressed: {
  52772. height: math.unit(2, "inches"),
  52773. name: "Dressed",
  52774. image: {
  52775. source: "./media/characters/carley-hartford/dressed.svg",
  52776. extra: 651/620,
  52777. bottom: 0/651
  52778. }
  52779. },
  52780. },
  52781. [
  52782. {
  52783. name: "Micro",
  52784. height: math.unit(2, "inches"),
  52785. default: true
  52786. },
  52787. {
  52788. name: "Macro",
  52789. height: math.unit(6 + 3/12, "feet")
  52790. },
  52791. ]
  52792. ))
  52793. characterMakers.push(() => makeCharacter(
  52794. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52795. {
  52796. front: {
  52797. height: math.unit(2 + 3/12, "feet"),
  52798. weight: math.unit(15 + 7/16, "lb"),
  52799. name: "Front",
  52800. image: {
  52801. source: "./media/characters/duke/front.svg",
  52802. extra: 910/815,
  52803. bottom: 30/940
  52804. }
  52805. },
  52806. },
  52807. [
  52808. {
  52809. name: "Normal",
  52810. height: math.unit(2 + 3/12, "feet"),
  52811. default: true
  52812. },
  52813. ]
  52814. ))
  52815. characterMakers.push(() => makeCharacter(
  52816. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52817. {
  52818. front: {
  52819. height: math.unit(5 + 4/12, "feet"),
  52820. weight: math.unit(156, "lb"),
  52821. name: "Front",
  52822. image: {
  52823. source: "./media/characters/dein/front.svg",
  52824. extra: 855/815,
  52825. bottom: 48/903
  52826. }
  52827. },
  52828. side: {
  52829. height: math.unit(5 + 4/12, "feet"),
  52830. weight: math.unit(156, "lb"),
  52831. name: "side",
  52832. image: {
  52833. source: "./media/characters/dein/side.svg",
  52834. extra: 846/803,
  52835. bottom: 25/871
  52836. }
  52837. },
  52838. maw: {
  52839. height: math.unit(1.45, "feet"),
  52840. name: "Maw",
  52841. image: {
  52842. source: "./media/characters/dein/maw.svg"
  52843. }
  52844. },
  52845. },
  52846. [
  52847. {
  52848. name: "Ferret Sized",
  52849. height: math.unit(2 + 5/12, "feet")
  52850. },
  52851. {
  52852. name: "Normal",
  52853. height: math.unit(5 + 4/12, "feet"),
  52854. default: true
  52855. },
  52856. ]
  52857. ))
  52858. characterMakers.push(() => makeCharacter(
  52859. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52860. {
  52861. front: {
  52862. height: math.unit(84 + 8/12, "feet"),
  52863. weight: math.unit(942180, "lb"),
  52864. name: "Front",
  52865. image: {
  52866. source: "./media/characters/daurine-arima/front.svg",
  52867. extra: 1989/1782,
  52868. bottom: 37/2026
  52869. }
  52870. },
  52871. side: {
  52872. height: math.unit(84 + 8/12, "feet"),
  52873. weight: math.unit(942180, "lb"),
  52874. name: "Side",
  52875. image: {
  52876. source: "./media/characters/daurine-arima/side.svg",
  52877. extra: 1997/1790,
  52878. bottom: 21/2018
  52879. }
  52880. },
  52881. back: {
  52882. height: math.unit(84 + 8/12, "feet"),
  52883. weight: math.unit(942180, "lb"),
  52884. name: "Back",
  52885. image: {
  52886. source: "./media/characters/daurine-arima/back.svg",
  52887. extra: 1992/1800,
  52888. bottom: 12/2004
  52889. }
  52890. },
  52891. head: {
  52892. height: math.unit(15.5, "feet"),
  52893. name: "Head",
  52894. image: {
  52895. source: "./media/characters/daurine-arima/head.svg"
  52896. }
  52897. },
  52898. headAlt: {
  52899. height: math.unit(19.19, "feet"),
  52900. name: "Head (Alt)",
  52901. image: {
  52902. source: "./media/characters/daurine-arima/head-alt.svg"
  52903. }
  52904. },
  52905. },
  52906. [
  52907. {
  52908. name: "Minimum height",
  52909. height: math.unit(8 + 10/12, "feet")
  52910. },
  52911. {
  52912. name: "Comfort height",
  52913. height: math.unit(19 + 6 /12, "feet")
  52914. },
  52915. {
  52916. name: "\"Normal\" height",
  52917. height: math.unit(28 + 10/12, "feet")
  52918. },
  52919. {
  52920. name: "Base height",
  52921. height: math.unit(84 + 8/12, "feet"),
  52922. default: true
  52923. },
  52924. {
  52925. name: "Mini-macro",
  52926. height: math.unit(2360, "feet")
  52927. },
  52928. {
  52929. name: "Macro",
  52930. height: math.unit(10, "miles")
  52931. },
  52932. {
  52933. name: "Goddess",
  52934. height: math.unit(9.99e40, "yottameters")
  52935. },
  52936. ]
  52937. ))
  52938. characterMakers.push(() => makeCharacter(
  52939. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52940. {
  52941. front: {
  52942. height: math.unit(2.3, "meters"),
  52943. name: "Front",
  52944. image: {
  52945. source: "./media/characters/cilenomon/front.svg",
  52946. extra: 1963/1778,
  52947. bottom: 54/2017
  52948. }
  52949. },
  52950. },
  52951. [
  52952. {
  52953. name: "Normal",
  52954. height: math.unit(2.3, "meters"),
  52955. default: true
  52956. },
  52957. {
  52958. name: "Big",
  52959. height: math.unit(5, "meters")
  52960. },
  52961. {
  52962. name: "Macro",
  52963. height: math.unit(30, "meters")
  52964. },
  52965. {
  52966. name: "True",
  52967. height: math.unit(1, "universe")
  52968. },
  52969. ]
  52970. ))
  52971. characterMakers.push(() => makeCharacter(
  52972. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52973. {
  52974. front: {
  52975. height: math.unit(5, "feet"),
  52976. name: "Front",
  52977. image: {
  52978. source: "./media/characters/sen-mink/front.svg",
  52979. extra: 1727/1675,
  52980. bottom: 35/1762
  52981. }
  52982. },
  52983. },
  52984. [
  52985. {
  52986. name: "Normal",
  52987. height: math.unit(5, "feet"),
  52988. default: true
  52989. },
  52990. ]
  52991. ))
  52992. characterMakers.push(() => makeCharacter(
  52993. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52994. {
  52995. front: {
  52996. height: math.unit(5.42999, "feet"),
  52997. weight: math.unit(100, "lb"),
  52998. name: "Front",
  52999. image: {
  53000. source: "./media/characters/ophois/front.svg",
  53001. extra: 1429/1286,
  53002. bottom: 60/1489
  53003. }
  53004. },
  53005. },
  53006. [
  53007. {
  53008. name: "Normal",
  53009. height: math.unit(5.42999, "feet"),
  53010. default: true
  53011. },
  53012. ]
  53013. ))
  53014. characterMakers.push(() => makeCharacter(
  53015. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53016. {
  53017. front: {
  53018. height: math.unit(2, "meters"),
  53019. name: "Front",
  53020. image: {
  53021. source: "./media/characters/riley/front.svg",
  53022. extra: 1779/1754,
  53023. bottom: 139/1918
  53024. }
  53025. },
  53026. },
  53027. [
  53028. {
  53029. name: "Normal",
  53030. height: math.unit(2, "meters"),
  53031. default: true
  53032. },
  53033. ]
  53034. ))
  53035. characterMakers.push(() => makeCharacter(
  53036. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53037. {
  53038. front: {
  53039. height: math.unit(6 + 2/12, "feet"),
  53040. weight: math.unit(195, "lb"),
  53041. preyCapacity: math.unit(6, "people"),
  53042. name: "Front",
  53043. image: {
  53044. source: "./media/characters/shuken-flash/front.svg",
  53045. extra: 1905/1739,
  53046. bottom: 65/1970
  53047. }
  53048. },
  53049. back: {
  53050. height: math.unit(6 + 2/12, "feet"),
  53051. weight: math.unit(195, "lb"),
  53052. preyCapacity: math.unit(6, "people"),
  53053. name: "Back",
  53054. image: {
  53055. source: "./media/characters/shuken-flash/back.svg",
  53056. extra: 1912/1751,
  53057. bottom: 13/1925
  53058. }
  53059. },
  53060. },
  53061. [
  53062. {
  53063. name: "Normal",
  53064. height: math.unit(6 + 2/12, "feet"),
  53065. default: true
  53066. },
  53067. ]
  53068. ))
  53069. characterMakers.push(() => makeCharacter(
  53070. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53071. {
  53072. front: {
  53073. height: math.unit(5 + 9/12, "feet"),
  53074. weight: math.unit(150, "lb"),
  53075. name: "Front",
  53076. image: {
  53077. source: "./media/characters/plat/front.svg",
  53078. extra: 1816/1703,
  53079. bottom: 43/1859
  53080. }
  53081. },
  53082. side: {
  53083. height: math.unit(5 + 9/12, "feet"),
  53084. weight: math.unit(300, "lb"),
  53085. name: "Side",
  53086. image: {
  53087. source: "./media/characters/plat/side.svg",
  53088. extra: 1824/1699,
  53089. bottom: 18/1842
  53090. }
  53091. },
  53092. },
  53093. [
  53094. {
  53095. name: "Normal",
  53096. height: math.unit(5 + 9/12, "feet"),
  53097. default: true
  53098. },
  53099. ]
  53100. ))
  53101. characterMakers.push(() => makeCharacter(
  53102. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53103. {
  53104. front: {
  53105. height: math.unit(9, "feet"),
  53106. weight: math.unit(1800, "lb"),
  53107. name: "Front",
  53108. image: {
  53109. source: "./media/characters/elaine/front.svg",
  53110. extra: 1833/1354,
  53111. bottom: 25/1858
  53112. }
  53113. },
  53114. back: {
  53115. height: math.unit(8.8, "feet"),
  53116. weight: math.unit(1800, "lb"),
  53117. name: "Back",
  53118. image: {
  53119. source: "./media/characters/elaine/back.svg",
  53120. extra: 1641/1233,
  53121. bottom: 53/1694
  53122. }
  53123. },
  53124. },
  53125. [
  53126. {
  53127. name: "Normal",
  53128. height: math.unit(9, "feet"),
  53129. default: true
  53130. },
  53131. ]
  53132. ))
  53133. characterMakers.push(() => makeCharacter(
  53134. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53135. {
  53136. front: {
  53137. height: math.unit(17 + 9/12, "feet"),
  53138. weight: math.unit(8000, "lb"),
  53139. name: "Front",
  53140. image: {
  53141. source: "./media/characters/vera-raven/front.svg",
  53142. extra: 1457/1412,
  53143. bottom: 121/1578
  53144. }
  53145. },
  53146. side: {
  53147. height: math.unit(17 + 9/12, "feet"),
  53148. weight: math.unit(8000, "lb"),
  53149. name: "Side",
  53150. image: {
  53151. source: "./media/characters/vera-raven/side.svg",
  53152. extra: 1510/1464,
  53153. bottom: 54/1564
  53154. }
  53155. },
  53156. },
  53157. [
  53158. {
  53159. name: "Normal",
  53160. height: math.unit(17 + 9/12, "feet"),
  53161. default: true
  53162. },
  53163. ]
  53164. ))
  53165. characterMakers.push(() => makeCharacter(
  53166. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53167. {
  53168. dressed: {
  53169. height: math.unit(6 + 9/12, "feet"),
  53170. name: "Dressed",
  53171. image: {
  53172. source: "./media/characters/nakisha/dressed.svg",
  53173. extra: 1909/1757,
  53174. bottom: 48/1957
  53175. }
  53176. },
  53177. nude: {
  53178. height: math.unit(6 + 9/12, "feet"),
  53179. name: "Nude",
  53180. image: {
  53181. source: "./media/characters/nakisha/nude.svg",
  53182. extra: 1917/1765,
  53183. bottom: 34/1951
  53184. }
  53185. },
  53186. },
  53187. [
  53188. {
  53189. name: "Normal",
  53190. height: math.unit(6 + 9/12, "feet"),
  53191. default: true
  53192. },
  53193. ]
  53194. ))
  53195. characterMakers.push(() => makeCharacter(
  53196. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53197. {
  53198. front: {
  53199. height: math.unit(87, "meters"),
  53200. name: "Front",
  53201. image: {
  53202. source: "./media/characters/serafin/front.svg",
  53203. extra: 1919/1776,
  53204. bottom: 65/1984
  53205. }
  53206. },
  53207. },
  53208. [
  53209. {
  53210. name: "Normal",
  53211. height: math.unit(87, "meters"),
  53212. default: true
  53213. },
  53214. ]
  53215. ))
  53216. characterMakers.push(() => makeCharacter(
  53217. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53218. {
  53219. front: {
  53220. height: math.unit(6, "feet"),
  53221. weight: math.unit(200, "lb"),
  53222. name: "Front",
  53223. image: {
  53224. source: "./media/characters/poptart/front.svg",
  53225. extra: 615/583,
  53226. bottom: 23/638
  53227. }
  53228. },
  53229. back: {
  53230. height: math.unit(6, "feet"),
  53231. weight: math.unit(200, "lb"),
  53232. name: "Back",
  53233. image: {
  53234. source: "./media/characters/poptart/back.svg",
  53235. extra: 617/584,
  53236. bottom: 22/639
  53237. }
  53238. },
  53239. frontNsfw: {
  53240. height: math.unit(6, "feet"),
  53241. weight: math.unit(200, "lb"),
  53242. name: "Front (NSFW)",
  53243. image: {
  53244. source: "./media/characters/poptart/front-nsfw.svg",
  53245. extra: 615/583,
  53246. bottom: 23/638
  53247. }
  53248. },
  53249. backNsfw: {
  53250. height: math.unit(6, "feet"),
  53251. weight: math.unit(200, "lb"),
  53252. name: "Back (NSFW)",
  53253. image: {
  53254. source: "./media/characters/poptart/back-nsfw.svg",
  53255. extra: 617/584,
  53256. bottom: 22/639
  53257. }
  53258. },
  53259. hand: {
  53260. height: math.unit(1.14, "feet"),
  53261. name: "Hand",
  53262. image: {
  53263. source: "./media/characters/poptart/hand.svg"
  53264. }
  53265. },
  53266. foot: {
  53267. height: math.unit(1.5, "feet"),
  53268. name: "Foot",
  53269. image: {
  53270. source: "./media/characters/poptart/foot.svg"
  53271. }
  53272. },
  53273. },
  53274. [
  53275. {
  53276. name: "Normal",
  53277. height: math.unit(6, "feet"),
  53278. default: true
  53279. },
  53280. {
  53281. name: "Grande",
  53282. height: math.unit(350, "feet")
  53283. },
  53284. {
  53285. name: "Massif",
  53286. height: math.unit(967, "feet")
  53287. },
  53288. ]
  53289. ))
  53290. characterMakers.push(() => makeCharacter(
  53291. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53292. {
  53293. hyenaSide: {
  53294. height: math.unit(120, "cm"),
  53295. weight: math.unit(120, "lb"),
  53296. name: "Side",
  53297. image: {
  53298. source: "./media/characters/trance/hyena-side.svg",
  53299. extra: 998/904,
  53300. bottom: 76/1074
  53301. }
  53302. },
  53303. },
  53304. [
  53305. {
  53306. name: "Normal",
  53307. height: math.unit(120, "cm"),
  53308. default: true
  53309. },
  53310. {
  53311. name: "Dire",
  53312. height: math.unit(230, "cm")
  53313. },
  53314. {
  53315. name: "Macro",
  53316. height: math.unit(37, "feet")
  53317. },
  53318. ]
  53319. ))
  53320. characterMakers.push(() => makeCharacter(
  53321. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53322. {
  53323. front: {
  53324. height: math.unit(6 + 3/12, "feet"),
  53325. name: "Front",
  53326. image: {
  53327. source: "./media/characters/michael-berretta/front.svg",
  53328. extra: 515/494,
  53329. bottom: 20/535
  53330. }
  53331. },
  53332. back: {
  53333. height: math.unit(6 + 3/12, "feet"),
  53334. name: "Back",
  53335. image: {
  53336. source: "./media/characters/michael-berretta/back.svg",
  53337. extra: 520/497,
  53338. bottom: 21/541
  53339. }
  53340. },
  53341. frontNsfw: {
  53342. height: math.unit(6 + 3/12, "feet"),
  53343. name: "Front (NSFW)",
  53344. image: {
  53345. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53346. extra: 515/494,
  53347. bottom: 20/535
  53348. }
  53349. },
  53350. dick: {
  53351. height: math.unit(1, "feet"),
  53352. name: "Dick",
  53353. image: {
  53354. source: "./media/characters/michael-berretta/dick.svg"
  53355. }
  53356. },
  53357. },
  53358. [
  53359. {
  53360. name: "Normal",
  53361. height: math.unit(6 + 3/12, "feet"),
  53362. default: true
  53363. },
  53364. {
  53365. name: "Big",
  53366. height: math.unit(12, "feet")
  53367. },
  53368. {
  53369. name: "Macro",
  53370. height: math.unit(187.5, "feet")
  53371. },
  53372. ]
  53373. ))
  53374. characterMakers.push(() => makeCharacter(
  53375. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53376. {
  53377. front: {
  53378. height: math.unit(9 + 9/12, "feet"),
  53379. weight: math.unit(1244, "lb"),
  53380. name: "Front",
  53381. image: {
  53382. source: "./media/characters/stella-edgecomb/front.svg",
  53383. extra: 1835/1706,
  53384. bottom: 49/1884
  53385. }
  53386. },
  53387. pen: {
  53388. height: math.unit(0.95, "feet"),
  53389. name: "Pen",
  53390. image: {
  53391. source: "./media/characters/stella-edgecomb/pen.svg"
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Cozy Bear",
  53398. height: math.unit(0.5, "inches")
  53399. },
  53400. {
  53401. name: "Normal",
  53402. height: math.unit(9 + 9/12, "feet"),
  53403. default: true
  53404. },
  53405. {
  53406. name: "Giga Bear",
  53407. height: math.unit(1, "mile")
  53408. },
  53409. {
  53410. name: "Great Bear",
  53411. height: math.unit(53, "miles")
  53412. },
  53413. {
  53414. name: "Goddess Bear",
  53415. height: math.unit(40000, "miles")
  53416. },
  53417. {
  53418. name: "Sun Bear",
  53419. height: math.unit(900000, "miles")
  53420. },
  53421. ]
  53422. ))
  53423. characterMakers.push(() => makeCharacter(
  53424. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53425. {
  53426. anthroFront: {
  53427. height: math.unit(556, "cm"),
  53428. weight: math.unit(2650, "kg"),
  53429. preyCapacity: math.unit(3, "people"),
  53430. name: "Front",
  53431. image: {
  53432. source: "./media/characters/ash´iika/front.svg",
  53433. extra: 710/673,
  53434. bottom: 15/725
  53435. },
  53436. form: "anthro",
  53437. default: true
  53438. },
  53439. anthroSide: {
  53440. height: math.unit(556, "cm"),
  53441. weight: math.unit(2650, "kg"),
  53442. preyCapacity: math.unit(3, "people"),
  53443. name: "Side",
  53444. image: {
  53445. source: "./media/characters/ash´iika/side.svg",
  53446. extra: 696/676,
  53447. bottom: 13/709
  53448. },
  53449. form: "anthro"
  53450. },
  53451. anthroDressed: {
  53452. height: math.unit(556, "cm"),
  53453. weight: math.unit(2650, "kg"),
  53454. preyCapacity: math.unit(3, "people"),
  53455. name: "Dressed",
  53456. image: {
  53457. source: "./media/characters/ash´iika/dressed.svg",
  53458. extra: 710/673,
  53459. bottom: 15/725
  53460. },
  53461. form: "anthro"
  53462. },
  53463. anthroHead: {
  53464. height: math.unit(3.5, "feet"),
  53465. name: "Head",
  53466. image: {
  53467. source: "./media/characters/ash´iika/head.svg",
  53468. extra: 348/291,
  53469. bottom: 45/393
  53470. },
  53471. form: "anthro"
  53472. },
  53473. feralSide: {
  53474. height: math.unit(870, "cm"),
  53475. weight: math.unit(17500, "kg"),
  53476. preyCapacity: math.unit(15, "people"),
  53477. name: "Side",
  53478. image: {
  53479. source: "./media/characters/ash´iika/feral.svg",
  53480. extra: 595/199,
  53481. bottom: 7/602
  53482. },
  53483. form: "feral",
  53484. default: true,
  53485. },
  53486. },
  53487. [
  53488. {
  53489. name: "Normal",
  53490. height: math.unit(556, "cm"),
  53491. default: true,
  53492. form: "anthro"
  53493. },
  53494. {
  53495. name: "Macro",
  53496. height: math.unit(88, "meters"),
  53497. form: "anthro"
  53498. },
  53499. {
  53500. name: "Normal",
  53501. height: math.unit(870, "cm"),
  53502. default: true,
  53503. form: "feral"
  53504. },
  53505. {
  53506. name: "Large",
  53507. height: math.unit(25, "meters"),
  53508. form: "feral"
  53509. },
  53510. ],
  53511. {
  53512. "anthro": {
  53513. name: "Anthro",
  53514. default: true
  53515. },
  53516. "feral": {
  53517. name: "Feral",
  53518. },
  53519. }
  53520. ))
  53521. characterMakers.push(() => makeCharacter(
  53522. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53523. {
  53524. front: {
  53525. height: math.unit(10, "feet"),
  53526. weight: math.unit(800, "lb"),
  53527. name: "Front",
  53528. image: {
  53529. source: "./media/characters/yen/front.svg",
  53530. extra: 443/411,
  53531. bottom: 6/449
  53532. }
  53533. },
  53534. sleeping: {
  53535. height: math.unit(10, "feet"),
  53536. weight: math.unit(800, "lb"),
  53537. name: "Sleeping",
  53538. image: {
  53539. source: "./media/characters/yen/sleeping.svg",
  53540. extra: 470/422,
  53541. bottom: 0/470
  53542. }
  53543. },
  53544. head: {
  53545. height: math.unit(2.2, "feet"),
  53546. name: "Head",
  53547. image: {
  53548. source: "./media/characters/yen/head.svg"
  53549. }
  53550. },
  53551. headAlt: {
  53552. height: math.unit(2.1, "feet"),
  53553. name: "Head (Alt)",
  53554. image: {
  53555. source: "./media/characters/yen/head-alt.svg"
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "Normal",
  53562. height: math.unit(10, "feet"),
  53563. default: true
  53564. },
  53565. ]
  53566. ))
  53567. characterMakers.push(() => makeCharacter(
  53568. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53569. {
  53570. front: {
  53571. height: math.unit(12, "feet"),
  53572. name: "Front",
  53573. image: {
  53574. source: "./media/characters/citra/front.svg",
  53575. extra: 1950/1710,
  53576. bottom: 47/1997
  53577. }
  53578. },
  53579. },
  53580. [
  53581. {
  53582. name: "Normal",
  53583. height: math.unit(12, "feet"),
  53584. default: true
  53585. },
  53586. ]
  53587. ))
  53588. characterMakers.push(() => makeCharacter(
  53589. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53590. {
  53591. side: {
  53592. height: math.unit(7 + 10/12, "feet"),
  53593. name: "Side",
  53594. image: {
  53595. source: "./media/characters/sholstim/side.svg",
  53596. extra: 786/682,
  53597. bottom: 40/826
  53598. }
  53599. },
  53600. },
  53601. [
  53602. {
  53603. name: "Normal",
  53604. height: math.unit(7 + 10/12, "feet"),
  53605. default: true
  53606. },
  53607. ]
  53608. ))
  53609. characterMakers.push(() => makeCharacter(
  53610. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53611. {
  53612. front: {
  53613. height: math.unit(3.10, "meters"),
  53614. name: "Front",
  53615. image: {
  53616. source: "./media/characters/aggyn/front.svg",
  53617. extra: 1188/963,
  53618. bottom: 24/1212
  53619. }
  53620. },
  53621. },
  53622. [
  53623. {
  53624. name: "Normal",
  53625. height: math.unit(3.10, "meters"),
  53626. default: true
  53627. },
  53628. ]
  53629. ))
  53630. characterMakers.push(() => makeCharacter(
  53631. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53632. {
  53633. front: {
  53634. height: math.unit(7 + 5/12, "feet"),
  53635. weight: math.unit(687, "lb"),
  53636. name: "Front",
  53637. image: {
  53638. source: "./media/characters/alsandair-hergenroether/front.svg",
  53639. extra: 1251/1186,
  53640. bottom: 75/1326
  53641. }
  53642. },
  53643. back: {
  53644. height: math.unit(7 + 5/12, "feet"),
  53645. weight: math.unit(687, "lb"),
  53646. name: "Back",
  53647. image: {
  53648. source: "./media/characters/alsandair-hergenroether/back.svg",
  53649. extra: 1290/1229,
  53650. bottom: 17/1307
  53651. }
  53652. },
  53653. },
  53654. [
  53655. {
  53656. name: "Max Compression",
  53657. height: math.unit(7 + 5/12, "feet"),
  53658. default: true
  53659. },
  53660. {
  53661. name: "\"Normal\"",
  53662. height: math.unit(2, "universes")
  53663. },
  53664. ]
  53665. ))
  53666. characterMakers.push(() => makeCharacter(
  53667. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53668. {
  53669. front: {
  53670. height: math.unit(4 + 1/12, "feet"),
  53671. weight: math.unit(92, "lb"),
  53672. name: "Front",
  53673. image: {
  53674. source: "./media/characters/ie/front.svg",
  53675. extra: 1585/1352,
  53676. bottom: 91/1676
  53677. }
  53678. },
  53679. },
  53680. [
  53681. {
  53682. name: "Normal",
  53683. height: math.unit(4 + 1/12, "feet"),
  53684. default: true
  53685. },
  53686. ]
  53687. ))
  53688. characterMakers.push(() => makeCharacter(
  53689. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53690. {
  53691. anthro: {
  53692. height: math.unit(6, "feet"),
  53693. weight: math.unit(150, "lb"),
  53694. name: "Front",
  53695. image: {
  53696. source: "./media/characters/willow/anthro.svg",
  53697. extra: 1073/986,
  53698. bottom: 34/1107
  53699. },
  53700. form: "anthro",
  53701. default: true
  53702. },
  53703. taur: {
  53704. height: math.unit(6, "feet"),
  53705. weight: math.unit(150, "lb"),
  53706. name: "Side",
  53707. image: {
  53708. source: "./media/characters/willow/taur.svg",
  53709. extra: 647/512,
  53710. bottom: 136/783
  53711. },
  53712. form: "taur",
  53713. default: true
  53714. },
  53715. },
  53716. [
  53717. {
  53718. name: "Humanoid",
  53719. height: math.unit(2.7, "meters"),
  53720. form: "anthro"
  53721. },
  53722. {
  53723. name: "Normal",
  53724. height: math.unit(9, "meters"),
  53725. form: "anthro",
  53726. default: true
  53727. },
  53728. {
  53729. name: "Humanoid",
  53730. height: math.unit(2.1, "meters"),
  53731. form: "taur"
  53732. },
  53733. {
  53734. name: "Normal",
  53735. height: math.unit(7, "meters"),
  53736. form: "taur",
  53737. default: true
  53738. },
  53739. ],
  53740. {
  53741. "anthro": {
  53742. name: "Anthro",
  53743. default: true
  53744. },
  53745. "taur": {
  53746. name: "Taur",
  53747. },
  53748. }
  53749. ))
  53750. characterMakers.push(() => makeCharacter(
  53751. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53752. {
  53753. front: {
  53754. height: math.unit(2 + 5/12, "feet"),
  53755. name: "Front",
  53756. image: {
  53757. source: "./media/characters/kyan/front.svg",
  53758. extra: 460/334,
  53759. bottom: 23/483
  53760. },
  53761. extraAttributes: {
  53762. "toeLength": {
  53763. name: "Toe Length",
  53764. power: 1,
  53765. type: "length",
  53766. base: math.unit(7, "cm")
  53767. },
  53768. "toeclawLength": {
  53769. name: "Toeclaw Length",
  53770. power: 1,
  53771. type: "length",
  53772. base: math.unit(4.7, "cm")
  53773. },
  53774. "earHeight": {
  53775. name: "Ear Height",
  53776. power: 1,
  53777. type: "length",
  53778. base: math.unit(14.1, "cm")
  53779. },
  53780. }
  53781. },
  53782. paws: {
  53783. height: math.unit(0.45, "feet"),
  53784. name: "Paws",
  53785. image: {
  53786. source: "./media/characters/kyan/paws.svg",
  53787. extra: 581/581,
  53788. bottom: 114/695
  53789. }
  53790. },
  53791. },
  53792. [
  53793. {
  53794. name: "Normal",
  53795. height: math.unit(2 + 5/12, "feet"),
  53796. default: true
  53797. },
  53798. ]
  53799. ))
  53800. characterMakers.push(() => makeCharacter(
  53801. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53802. {
  53803. front: {
  53804. height: math.unit(2 + 2/3, "feet"),
  53805. name: "Front",
  53806. image: {
  53807. source: "./media/characters/xazzon/front.svg",
  53808. extra: 1109/984,
  53809. bottom: 42/1151
  53810. }
  53811. },
  53812. back: {
  53813. height: math.unit(2 + 2/3, "feet"),
  53814. name: "Back",
  53815. image: {
  53816. source: "./media/characters/xazzon/back.svg",
  53817. extra: 1095/971,
  53818. bottom: 23/1118
  53819. }
  53820. },
  53821. },
  53822. [
  53823. {
  53824. name: "Normal",
  53825. height: math.unit(2 + 2/3, "feet"),
  53826. default: true
  53827. },
  53828. ]
  53829. ))
  53830. characterMakers.push(() => makeCharacter(
  53831. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53832. {
  53833. dressed: {
  53834. height: math.unit(5 + 7/12, "feet"),
  53835. weight: math.unit(173, "lb"),
  53836. name: "Dressed",
  53837. image: {
  53838. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53839. extra: 3262/2862,
  53840. bottom: 188/3450
  53841. }
  53842. },
  53843. undressed: {
  53844. height: math.unit(5 + 7/12, "feet"),
  53845. weight: math.unit(173, "lb"),
  53846. name: "Undressed",
  53847. image: {
  53848. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53849. extra: 3262/2862,
  53850. bottom: 188/3450
  53851. }
  53852. },
  53853. },
  53854. [
  53855. {
  53856. name: "The void",
  53857. height: math.unit(7.29193e-34, "angstroms")
  53858. },
  53859. {
  53860. name: "Uh-Oh.",
  53861. height: math.unit(5.734e-7, "angstroms")
  53862. },
  53863. {
  53864. name: "Pico",
  53865. height: math.unit(0.876, "angstroms")
  53866. },
  53867. {
  53868. name: "Nano",
  53869. height: math.unit(0.000134200, "mm")
  53870. },
  53871. {
  53872. name: "Micro",
  53873. height: math.unit(0.0673020, "mm")
  53874. },
  53875. {
  53876. name: "Tiny",
  53877. height: math.unit(2.4, "mm")
  53878. },
  53879. {
  53880. name: "Actual Normal",
  53881. height: math.unit(3, "inches"),
  53882. default: true
  53883. },
  53884. {
  53885. name: "Normal",
  53886. height: math.unit(5 + 8/12, "feet")
  53887. },
  53888. {
  53889. name: "Giant",
  53890. height: math.unit(12, "feet")
  53891. },
  53892. {
  53893. name: "City Ruler",
  53894. height: math.unit(270, "meters")
  53895. },
  53896. {
  53897. name: "Giga",
  53898. height: math.unit(1117.6, "km")
  53899. },
  53900. {
  53901. name: "All-Powerful Queen",
  53902. height: math.unit(70.8, "gigameters")
  53903. },
  53904. {
  53905. name: "'Goddess'",
  53906. height: math.unit(600, "yottameters")
  53907. },
  53908. {
  53909. name: "Biggest!",
  53910. height: math.unit(4.23e5, "yottameters")
  53911. },
  53912. ]
  53913. ))
  53914. characterMakers.push(() => makeCharacter(
  53915. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53916. {
  53917. front: {
  53918. height: math.unit(8, "feet"),
  53919. weight: math.unit(300, "lb"),
  53920. name: "Front",
  53921. image: {
  53922. source: "./media/characters/khyla-shadowsong/front.svg",
  53923. extra: 861/798,
  53924. bottom: 32/893
  53925. }
  53926. },
  53927. side: {
  53928. height: math.unit(8, "feet"),
  53929. weight: math.unit(300, "lb"),
  53930. name: "Side",
  53931. image: {
  53932. source: "./media/characters/khyla-shadowsong/side.svg",
  53933. extra: 790/750,
  53934. bottom: 87/877
  53935. }
  53936. },
  53937. back: {
  53938. height: math.unit(8, "feet"),
  53939. weight: math.unit(300, "lb"),
  53940. name: "Back",
  53941. image: {
  53942. source: "./media/characters/khyla-shadowsong/back.svg",
  53943. extra: 855/808,
  53944. bottom: 14/869
  53945. }
  53946. },
  53947. head: {
  53948. height: math.unit(2.7, "feet"),
  53949. name: "Head",
  53950. image: {
  53951. source: "./media/characters/khyla-shadowsong/head.svg"
  53952. }
  53953. },
  53954. },
  53955. [
  53956. {
  53957. name: "Micro",
  53958. height: math.unit(6, "inches")
  53959. },
  53960. {
  53961. name: "Normal",
  53962. height: math.unit(8, "feet"),
  53963. default: true
  53964. },
  53965. ]
  53966. ))
  53967. characterMakers.push(() => makeCharacter(
  53968. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53969. {
  53970. hyperFront: {
  53971. height: math.unit(9 + 4/12, "feet"),
  53972. weight: math.unit(2000, "lb"),
  53973. name: "Front",
  53974. image: {
  53975. source: "./media/characters/tiden/hyper-front.svg",
  53976. extra: 400/382,
  53977. bottom: 6/406
  53978. },
  53979. form: "hyper",
  53980. },
  53981. regularFront: {
  53982. height: math.unit(7 + 10/12, "feet"),
  53983. weight: math.unit(470, "lb"),
  53984. name: "Front",
  53985. image: {
  53986. source: "./media/characters/tiden/regular-front.svg",
  53987. extra: 468/442,
  53988. bottom: 6/474
  53989. },
  53990. form: "regular",
  53991. },
  53992. },
  53993. [
  53994. {
  53995. name: "Normal",
  53996. height: math.unit(9 + 4/12, "feet"),
  53997. default: true,
  53998. form: "hyper"
  53999. },
  54000. {
  54001. name: "Normal",
  54002. height: math.unit(7 + 10/12, "feet"),
  54003. default: true,
  54004. form: "regular"
  54005. },
  54006. ],
  54007. {
  54008. "hyper": {
  54009. name: "Hyper",
  54010. default: true
  54011. },
  54012. "regular": {
  54013. name: "Regular",
  54014. },
  54015. }
  54016. ))
  54017. characterMakers.push(() => makeCharacter(
  54018. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54019. {
  54020. side: {
  54021. height: math.unit(6, "feet"),
  54022. weight: math.unit(150, "lb"),
  54023. name: "Side",
  54024. image: {
  54025. source: "./media/characters/jason-crowe/side.svg",
  54026. extra: 1771/766,
  54027. bottom: 219/1990
  54028. }
  54029. },
  54030. },
  54031. [
  54032. {
  54033. name: "Pocket Gryphon",
  54034. height: math.unit(6, "cm")
  54035. },
  54036. {
  54037. name: "Raven",
  54038. height: math.unit(60, "cm")
  54039. },
  54040. {
  54041. name: "Normal",
  54042. height: math.unit(1, "meter"),
  54043. default: true
  54044. },
  54045. ]
  54046. ))
  54047. characterMakers.push(() => makeCharacter(
  54048. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54049. {
  54050. front: {
  54051. height: math.unit(9 + 6/12, "feet"),
  54052. weight: math.unit(1100, "lb"),
  54053. name: "Front",
  54054. image: {
  54055. source: "./media/characters/django/front.svg",
  54056. extra: 1231/1136,
  54057. bottom: 34/1265
  54058. }
  54059. },
  54060. side: {
  54061. height: math.unit(9 + 6/12, "feet"),
  54062. weight: math.unit(1100, "lb"),
  54063. name: "Side",
  54064. image: {
  54065. source: "./media/characters/django/side.svg",
  54066. extra: 1267/1174,
  54067. bottom: 9/1276
  54068. }
  54069. },
  54070. },
  54071. [
  54072. {
  54073. name: "Normal",
  54074. height: math.unit(9 + 6/12, "feet"),
  54075. default: true
  54076. },
  54077. {
  54078. name: "Macro 1",
  54079. height: math.unit(50, "feet")
  54080. },
  54081. {
  54082. name: "Macro 2",
  54083. height: math.unit(500, "feet")
  54084. },
  54085. {
  54086. name: "Mega Macro",
  54087. height: math.unit(5300, "feet")
  54088. },
  54089. ]
  54090. ))
  54091. characterMakers.push(() => makeCharacter(
  54092. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54093. {
  54094. frontSfw: {
  54095. height: math.unit(120, "cm"),
  54096. weight: math.unit(15, "kg"),
  54097. name: "Front (SFW)",
  54098. image: {
  54099. source: "./media/characters/eri/front-sfw.svg",
  54100. extra: 1014/939,
  54101. bottom: 37/1051
  54102. },
  54103. form: "moth",
  54104. },
  54105. frontNsfw: {
  54106. height: math.unit(120, "cm"),
  54107. weight: math.unit(15, "kg"),
  54108. name: "Front (NSFW)",
  54109. image: {
  54110. source: "./media/characters/eri/front-nsfw.svg",
  54111. extra: 1014/939,
  54112. bottom: 37/1051
  54113. },
  54114. form: "moth",
  54115. default: true
  54116. },
  54117. egg: {
  54118. height: math.unit(10, "cm"),
  54119. name: "Egg",
  54120. image: {
  54121. source: "./media/characters/eri/egg.svg"
  54122. },
  54123. form: "egg",
  54124. default: true
  54125. },
  54126. },
  54127. [
  54128. {
  54129. name: "Normal",
  54130. height: math.unit(120, "cm"),
  54131. default: true,
  54132. form: "moth"
  54133. },
  54134. {
  54135. name: "Normal",
  54136. height: math.unit(10, "cm"),
  54137. default: true,
  54138. form: "egg"
  54139. },
  54140. ],
  54141. {
  54142. "moth": {
  54143. name: "Moth",
  54144. default: true
  54145. },
  54146. "egg": {
  54147. name: "Egg",
  54148. },
  54149. }
  54150. ))
  54151. characterMakers.push(() => makeCharacter(
  54152. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54153. {
  54154. front: {
  54155. height: math.unit(200, "feet"),
  54156. name: "Front",
  54157. image: {
  54158. source: "./media/characters/bishop-dowser/front.svg",
  54159. extra: 933/868,
  54160. bottom: 106/1039
  54161. }
  54162. },
  54163. },
  54164. [
  54165. {
  54166. name: "Giant",
  54167. height: math.unit(200, "feet"),
  54168. default: true
  54169. },
  54170. ]
  54171. ))
  54172. characterMakers.push(() => makeCharacter(
  54173. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54174. {
  54175. front: {
  54176. height: math.unit(2, "meters"),
  54177. preyCapacity: math.unit(3, "people"),
  54178. name: "Front",
  54179. image: {
  54180. source: "./media/characters/fryra/front.svg",
  54181. extra: 1025/948,
  54182. bottom: 30/1055
  54183. },
  54184. extraAttributes: {
  54185. "breastVolume": {
  54186. name: "Breast Volume",
  54187. power: 3,
  54188. type: "volume",
  54189. base: math.unit(8, "liters")
  54190. },
  54191. }
  54192. },
  54193. back: {
  54194. height: math.unit(2, "meters"),
  54195. preyCapacity: math.unit(3, "people"),
  54196. name: "Back",
  54197. image: {
  54198. source: "./media/characters/fryra/back.svg",
  54199. extra: 993/938,
  54200. bottom: 38/1031
  54201. },
  54202. extraAttributes: {
  54203. "breastVolume": {
  54204. name: "Breast Volume",
  54205. power: 3,
  54206. type: "volume",
  54207. base: math.unit(8, "liters")
  54208. },
  54209. }
  54210. },
  54211. head: {
  54212. height: math.unit(1.33, "feet"),
  54213. name: "Head",
  54214. image: {
  54215. source: "./media/characters/fryra/head.svg"
  54216. }
  54217. },
  54218. maw: {
  54219. height: math.unit(0.56, "feet"),
  54220. name: "Maw",
  54221. image: {
  54222. source: "./media/characters/fryra/maw.svg"
  54223. }
  54224. },
  54225. },
  54226. [
  54227. {
  54228. name: "Micro",
  54229. height: math.unit(5, "cm")
  54230. },
  54231. {
  54232. name: "Normal",
  54233. height: math.unit(2, "meters"),
  54234. default: true
  54235. },
  54236. {
  54237. name: "Small Macro",
  54238. height: math.unit(8, "meters")
  54239. },
  54240. {
  54241. name: "Macro",
  54242. height: math.unit(50, "meters")
  54243. },
  54244. {
  54245. name: "Megamacro",
  54246. height: math.unit(1, "km")
  54247. },
  54248. {
  54249. name: "Planetary",
  54250. height: math.unit(300000, "km")
  54251. },
  54252. {
  54253. name: "Universal",
  54254. height: math.unit(250, "lightyears")
  54255. },
  54256. {
  54257. name: "Fabric of Reality",
  54258. height: math.unit(1000, "multiverses")
  54259. },
  54260. ]
  54261. ))
  54262. characterMakers.push(() => makeCharacter(
  54263. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54264. {
  54265. frontDressed: {
  54266. height: math.unit(6 + 2/12, "feet"),
  54267. name: "Front (Dressed)",
  54268. image: {
  54269. source: "./media/characters/fiera/front-dressed.svg",
  54270. extra: 1883/1793,
  54271. bottom: 70/1953
  54272. }
  54273. },
  54274. backDressed: {
  54275. height: math.unit(6 + 2/12, "feet"),
  54276. name: "Back (Dressed)",
  54277. image: {
  54278. source: "./media/characters/fiera/back-dressed.svg",
  54279. extra: 1847/1780,
  54280. bottom: 70/1917
  54281. }
  54282. },
  54283. frontNude: {
  54284. height: math.unit(6 + 2/12, "feet"),
  54285. name: "Front (Nude)",
  54286. image: {
  54287. source: "./media/characters/fiera/front-nude.svg",
  54288. extra: 1875/1785,
  54289. bottom: 66/1941
  54290. }
  54291. },
  54292. backNude: {
  54293. height: math.unit(6 + 2/12, "feet"),
  54294. name: "Back (Nude)",
  54295. image: {
  54296. source: "./media/characters/fiera/back-nude.svg",
  54297. extra: 1855/1788,
  54298. bottom: 44/1899
  54299. }
  54300. },
  54301. maw: {
  54302. height: math.unit(1.3, "feet"),
  54303. name: "Maw",
  54304. image: {
  54305. source: "./media/characters/fiera/maw.svg"
  54306. }
  54307. },
  54308. paw: {
  54309. height: math.unit(1, "feet"),
  54310. name: "Paw",
  54311. image: {
  54312. source: "./media/characters/fiera/paw.svg"
  54313. }
  54314. },
  54315. shoe: {
  54316. height: math.unit(1.05, "feet"),
  54317. name: "Shoe",
  54318. image: {
  54319. source: "./media/characters/fiera/shoe.svg"
  54320. }
  54321. },
  54322. },
  54323. [
  54324. {
  54325. name: "Normal",
  54326. height: math.unit(6 + 2/12, "feet"),
  54327. default: true
  54328. },
  54329. {
  54330. name: "Size Difference",
  54331. height: math.unit(13, "feet")
  54332. },
  54333. {
  54334. name: "Macro",
  54335. height: math.unit(60, "feet")
  54336. },
  54337. {
  54338. name: "Mega Macro",
  54339. height: math.unit(200, "feet")
  54340. },
  54341. ]
  54342. ))
  54343. characterMakers.push(() => makeCharacter(
  54344. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54345. {
  54346. back: {
  54347. height: math.unit(6, "feet"),
  54348. name: "Back",
  54349. image: {
  54350. source: "./media/characters/flare/back.svg",
  54351. extra: 1883/1765,
  54352. bottom: 32/1915
  54353. }
  54354. },
  54355. },
  54356. [
  54357. {
  54358. name: "Normal",
  54359. height: math.unit(6 + 2/12, "feet"),
  54360. default: true
  54361. },
  54362. {
  54363. name: "Size Difference",
  54364. height: math.unit(13, "feet")
  54365. },
  54366. {
  54367. name: "Macro",
  54368. height: math.unit(60, "feet")
  54369. },
  54370. {
  54371. name: "Macro 2",
  54372. height: math.unit(100, "feet")
  54373. },
  54374. {
  54375. name: "Mega Macro",
  54376. height: math.unit(200, "feet")
  54377. },
  54378. ]
  54379. ))
  54380. characterMakers.push(() => makeCharacter(
  54381. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54382. {
  54383. front: {
  54384. height: math.unit(2.2, "m"),
  54385. weight: math.unit(300, "kg"),
  54386. name: "Front",
  54387. image: {
  54388. source: "./media/characters/hanna/front.svg",
  54389. extra: 1696/1502,
  54390. bottom: 206/1902
  54391. }
  54392. },
  54393. },
  54394. [
  54395. {
  54396. name: "Humanoid",
  54397. height: math.unit(2.2, "meters")
  54398. },
  54399. {
  54400. name: "Normal",
  54401. height: math.unit(4.8, "meters"),
  54402. default: true
  54403. },
  54404. ]
  54405. ))
  54406. characterMakers.push(() => makeCharacter(
  54407. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54408. {
  54409. front: {
  54410. height: math.unit(2.8, "meters"),
  54411. name: "Front",
  54412. image: {
  54413. source: "./media/characters/argo/front.svg",
  54414. extra: 731/518,
  54415. bottom: 84/815
  54416. }
  54417. },
  54418. },
  54419. [
  54420. {
  54421. name: "Normal",
  54422. height: math.unit(3, "meters"),
  54423. default: true
  54424. },
  54425. ]
  54426. ))
  54427. characterMakers.push(() => makeCharacter(
  54428. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54429. {
  54430. side: {
  54431. height: math.unit(3.8, "meters"),
  54432. name: "Side",
  54433. image: {
  54434. source: "./media/characters/sybil/side.svg",
  54435. extra: 382/361,
  54436. bottom: 25/407
  54437. }
  54438. },
  54439. },
  54440. [
  54441. {
  54442. name: "Normal",
  54443. height: math.unit(3.8, "meters"),
  54444. default: true
  54445. },
  54446. ]
  54447. ))
  54448. characterMakers.push(() => makeCharacter(
  54449. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54450. {
  54451. side: {
  54452. height: math.unit(6, "meters"),
  54453. name: "Side",
  54454. image: {
  54455. source: "./media/characters/plum/side.svg",
  54456. extra: 858/755,
  54457. bottom: 45/903
  54458. },
  54459. form: "taur",
  54460. default: true
  54461. },
  54462. back: {
  54463. height: math.unit(6.3, "meters"),
  54464. name: "Back",
  54465. image: {
  54466. source: "./media/characters/plum/back.svg",
  54467. extra: 887/813,
  54468. bottom: 32/919
  54469. },
  54470. form: "taur",
  54471. },
  54472. feral: {
  54473. height: math.unit(5.5, "meter"),
  54474. name: "Front",
  54475. image: {
  54476. source: "./media/characters/plum/feral.svg",
  54477. extra: 568/403,
  54478. bottom: 51/619
  54479. },
  54480. form: "feral",
  54481. default: true
  54482. },
  54483. head: {
  54484. height: math.unit(1.46, "meter"),
  54485. name: "Head",
  54486. image: {
  54487. source: "./media/characters/plum/head.svg"
  54488. },
  54489. form: "taur"
  54490. },
  54491. tailTop: {
  54492. height: math.unit(5.6, "meter"),
  54493. name: "Tail (Top)",
  54494. image: {
  54495. source: "./media/characters/plum/tail-top.svg"
  54496. },
  54497. form: "taur",
  54498. },
  54499. tailBottom: {
  54500. height: math.unit(5.6, "meter"),
  54501. name: "Tail (Bottom)",
  54502. image: {
  54503. source: "./media/characters/plum/tail-bottom.svg"
  54504. },
  54505. form: "taur",
  54506. },
  54507. feralHead: {
  54508. height: math.unit(2.56549521, "meter"),
  54509. name: "Head",
  54510. image: {
  54511. source: "./media/characters/plum/head.svg"
  54512. },
  54513. form: "feral"
  54514. },
  54515. feralTailTop: {
  54516. height: math.unit(5.44728435, "meter"),
  54517. name: "Tail (Top)",
  54518. image: {
  54519. source: "./media/characters/plum/tail-top.svg"
  54520. },
  54521. form: "feral",
  54522. },
  54523. feralTailBottom: {
  54524. height: math.unit(5.44728435, "meter"),
  54525. name: "Tail (Bottom)",
  54526. image: {
  54527. source: "./media/characters/plum/tail-bottom.svg"
  54528. },
  54529. form: "feral",
  54530. },
  54531. },
  54532. [
  54533. {
  54534. name: "Normal",
  54535. height: math.unit(6, "meters"),
  54536. default: true,
  54537. form: "taur"
  54538. },
  54539. {
  54540. name: "Normal",
  54541. height: math.unit(5.5, "meters"),
  54542. default: true,
  54543. form: "feral"
  54544. },
  54545. ],
  54546. {
  54547. "taur": {
  54548. name: "Taur",
  54549. default: true
  54550. },
  54551. "feral": {
  54552. name: "Feral",
  54553. },
  54554. }
  54555. ))
  54556. characterMakers.push(() => makeCharacter(
  54557. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54558. {
  54559. front: {
  54560. height: math.unit(6, "feet"),
  54561. weight: math.unit(115, "lb"),
  54562. name: "Front",
  54563. image: {
  54564. source: "./media/characters/celeste-kitsune/front.svg",
  54565. extra: 393/366,
  54566. bottom: 7/400
  54567. }
  54568. },
  54569. side: {
  54570. height: math.unit(6, "feet"),
  54571. weight: math.unit(115, "lb"),
  54572. name: "Side",
  54573. image: {
  54574. source: "./media/characters/celeste-kitsune/side.svg",
  54575. extra: 818/765,
  54576. bottom: 40/858
  54577. }
  54578. },
  54579. },
  54580. [
  54581. {
  54582. name: "Megamacro",
  54583. height: math.unit(1500, "miles"),
  54584. default: true
  54585. },
  54586. ]
  54587. ))
  54588. characterMakers.push(() => makeCharacter(
  54589. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54590. {
  54591. front: {
  54592. height: math.unit(8, "meters"),
  54593. name: "Front",
  54594. image: {
  54595. source: "./media/characters/io/front.svg",
  54596. extra: 865/722,
  54597. bottom: 58/923
  54598. }
  54599. },
  54600. back: {
  54601. height: math.unit(8, "meters"),
  54602. name: "Back",
  54603. image: {
  54604. source: "./media/characters/io/back.svg",
  54605. extra: 920/776,
  54606. bottom: 42/962
  54607. }
  54608. },
  54609. head: {
  54610. height: math.unit(5.09, "meters"),
  54611. name: "Head",
  54612. image: {
  54613. source: "./media/characters/io/head.svg"
  54614. }
  54615. },
  54616. hand: {
  54617. height: math.unit(1.6, "meters"),
  54618. name: "Hand",
  54619. image: {
  54620. source: "./media/characters/io/hand.svg"
  54621. }
  54622. },
  54623. foot: {
  54624. height: math.unit(2.4, "meters"),
  54625. name: "Foot",
  54626. image: {
  54627. source: "./media/characters/io/foot.svg"
  54628. }
  54629. },
  54630. },
  54631. [
  54632. {
  54633. name: "Normal",
  54634. height: math.unit(8, "meters"),
  54635. default: true
  54636. },
  54637. ]
  54638. ))
  54639. characterMakers.push(() => makeCharacter(
  54640. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54641. {
  54642. side: {
  54643. height: math.unit(6 + 3/12, "feet"),
  54644. weight: math.unit(225, "lb"),
  54645. name: "Side",
  54646. image: {
  54647. source: "./media/characters/silas/side.svg",
  54648. extra: 703/653,
  54649. bottom: 23/726
  54650. },
  54651. extraAttributes: {
  54652. "pawLength": {
  54653. name: "Paw Length",
  54654. power: 1,
  54655. type: "length",
  54656. base: math.unit(12, "inches")
  54657. },
  54658. "pawWidth": {
  54659. name: "Paw Width",
  54660. power: 1,
  54661. type: "length",
  54662. base: math.unit(4.5, "inches")
  54663. },
  54664. "pawArea": {
  54665. name: "Paw Area",
  54666. power: 2,
  54667. type: "area",
  54668. base: math.unit(12 * 4.5, "inches^2")
  54669. },
  54670. }
  54671. },
  54672. },
  54673. [
  54674. {
  54675. name: "Normal",
  54676. height: math.unit(6 + 3/12, "feet"),
  54677. default: true
  54678. },
  54679. ]
  54680. ))
  54681. characterMakers.push(() => makeCharacter(
  54682. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54683. {
  54684. back: {
  54685. height: math.unit(1.6, "meters"),
  54686. weight: math.unit(150, "lb"),
  54687. name: "Back",
  54688. image: {
  54689. source: "./media/characters/zari/back.svg",
  54690. extra: 424/411,
  54691. bottom: 32/456
  54692. },
  54693. extraAttributes: {
  54694. "bladderCapacity": {
  54695. name: "Bladder Size",
  54696. power: 3,
  54697. type: "volume",
  54698. base: math.unit(500, "mL")
  54699. },
  54700. "bladderFlow": {
  54701. name: "Flow Rate",
  54702. power: 3,
  54703. type: "volume",
  54704. base: math.unit(25, "mL")
  54705. },
  54706. }
  54707. },
  54708. },
  54709. [
  54710. {
  54711. name: "Normal",
  54712. height: math.unit(1.6, "meters"),
  54713. default: true
  54714. },
  54715. ]
  54716. ))
  54717. characterMakers.push(() => makeCharacter(
  54718. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54719. {
  54720. front: {
  54721. height: math.unit(25, "feet"),
  54722. weight: math.unit(5, "tons"),
  54723. name: "Front",
  54724. image: {
  54725. source: "./media/characters/charlie-human/front.svg",
  54726. extra: 1870/1740,
  54727. bottom: 102/1972
  54728. },
  54729. extraAttributes: {
  54730. "dickLength": {
  54731. name: "Dick Length",
  54732. power: 1,
  54733. type: "length",
  54734. base: math.unit(9, "feet")
  54735. },
  54736. }
  54737. },
  54738. back: {
  54739. height: math.unit(25, "feet"),
  54740. weight: math.unit(5, "tons"),
  54741. name: "Back",
  54742. image: {
  54743. source: "./media/characters/charlie-human/back.svg",
  54744. extra: 1858/1733,
  54745. bottom: 105/1963
  54746. },
  54747. extraAttributes: {
  54748. "dickLength": {
  54749. name: "Dick Length",
  54750. power: 1,
  54751. type: "length",
  54752. base: math.unit(9, "feet")
  54753. },
  54754. }
  54755. },
  54756. },
  54757. [
  54758. {
  54759. name: "\"Normal\"",
  54760. height: math.unit(6 + 4/12, "feet")
  54761. },
  54762. {
  54763. name: "Big",
  54764. height: math.unit(25, "feet"),
  54765. default: true
  54766. },
  54767. ]
  54768. ))
  54769. characterMakers.push(() => makeCharacter(
  54770. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54771. {
  54772. front: {
  54773. height: math.unit(6 + 4/12, "feet"),
  54774. weight: math.unit(320, "lb"),
  54775. name: "Front",
  54776. image: {
  54777. source: "./media/characters/ookitsu/front.svg",
  54778. extra: 1160/976,
  54779. bottom: 38/1198
  54780. }
  54781. },
  54782. frontNsfw: {
  54783. height: math.unit(6 + 4/12, "feet"),
  54784. weight: math.unit(320, "lb"),
  54785. name: "Front (NSFW)",
  54786. image: {
  54787. source: "./media/characters/ookitsu/front-nsfw.svg",
  54788. extra: 1160/976,
  54789. bottom: 38/1198
  54790. }
  54791. },
  54792. back: {
  54793. height: math.unit(6 + 4/12, "feet"),
  54794. weight: math.unit(320, "lb"),
  54795. name: "Back",
  54796. image: {
  54797. source: "./media/characters/ookitsu/back.svg",
  54798. extra: 1030/975,
  54799. bottom: 70/1100
  54800. }
  54801. },
  54802. head: {
  54803. height: math.unit(1.79, "feet"),
  54804. name: "Head",
  54805. image: {
  54806. source: "./media/characters/ookitsu/head.svg"
  54807. }
  54808. },
  54809. hand: {
  54810. height: math.unit(0.92, "feet"),
  54811. name: "Hand",
  54812. image: {
  54813. source: "./media/characters/ookitsu/hand.svg"
  54814. }
  54815. },
  54816. tails: {
  54817. height: math.unit(3.3, "feet"),
  54818. name: "Tails",
  54819. image: {
  54820. source: "./media/characters/ookitsu/tails.svg"
  54821. }
  54822. },
  54823. dick: {
  54824. height: math.unit(1.10833, "feet"),
  54825. name: "Dick",
  54826. image: {
  54827. source: "./media/characters/ookitsu/dick.svg"
  54828. }
  54829. },
  54830. },
  54831. [
  54832. {
  54833. name: "Normal",
  54834. height: math.unit(6 + 4/12, "feet"),
  54835. default: true
  54836. },
  54837. {
  54838. name: "Macro",
  54839. height: math.unit(30, "feet")
  54840. },
  54841. ]
  54842. ))
  54843. characterMakers.push(() => makeCharacter(
  54844. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54845. {
  54846. anthroFront: {
  54847. height: math.unit(6, "feet"),
  54848. weight: math.unit(250, "lb"),
  54849. name: "Front",
  54850. image: {
  54851. source: "./media/characters/jhusky/anthro-front.svg",
  54852. extra: 474/439,
  54853. bottom: 7/481
  54854. },
  54855. form: "anthro",
  54856. default: true
  54857. },
  54858. taurSideSfw: {
  54859. height: math.unit(6 + 4/12, "feet"),
  54860. weight: math.unit(500, "lb"),
  54861. name: "Side (SFW)",
  54862. image: {
  54863. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54864. extra: 1741/1629,
  54865. bottom: 196/1937
  54866. },
  54867. form: "taur",
  54868. default: true
  54869. },
  54870. taurSideNsfw: {
  54871. height: math.unit(6 + 4/12, "feet"),
  54872. weight: math.unit(500, "lb"),
  54873. name: "Taur (NSFW)",
  54874. image: {
  54875. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54876. extra: 1741/1629,
  54877. bottom: 196/1937
  54878. },
  54879. form: "taur",
  54880. },
  54881. },
  54882. [
  54883. {
  54884. name: "Huge",
  54885. height: math.unit(500, "feet"),
  54886. form: "anthro"
  54887. },
  54888. {
  54889. name: "Macro",
  54890. height: math.unit(1000, "feet"),
  54891. default: true,
  54892. form: "anthro"
  54893. },
  54894. {
  54895. name: "Megamacro",
  54896. height: math.unit(10000, "feet"),
  54897. form: "anthro"
  54898. },
  54899. {
  54900. name: "Huge",
  54901. height: math.unit(528, "feet"),
  54902. form: "taur"
  54903. },
  54904. {
  54905. name: "Macro",
  54906. height: math.unit(1056, "feet"),
  54907. default: true,
  54908. form: "taur"
  54909. },
  54910. {
  54911. name: "Megamacro",
  54912. height: math.unit(10556, "feet"),
  54913. form: "taur"
  54914. },
  54915. ],
  54916. {
  54917. "anthro": {
  54918. name: "Anthro",
  54919. default: true
  54920. },
  54921. "taur": {
  54922. name: "Taur",
  54923. },
  54924. }
  54925. ))
  54926. characterMakers.push(() => makeCharacter(
  54927. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54928. {
  54929. front: {
  54930. height: math.unit(8, "feet"),
  54931. weight: math.unit(500, "lb"),
  54932. name: "Front",
  54933. image: {
  54934. source: "./media/characters/armail/front.svg",
  54935. extra: 1753/1669,
  54936. bottom: 155/1908
  54937. }
  54938. },
  54939. back: {
  54940. height: math.unit(8, "feet"),
  54941. weight: math.unit(500, "lb"),
  54942. name: "Back",
  54943. image: {
  54944. source: "./media/characters/armail/back.svg",
  54945. extra: 1872/1803,
  54946. bottom: 63/1935
  54947. }
  54948. },
  54949. },
  54950. [
  54951. {
  54952. name: "Micro",
  54953. height: math.unit(0.25, "feet")
  54954. },
  54955. {
  54956. name: "Normal",
  54957. height: math.unit(8, "feet"),
  54958. default: true
  54959. },
  54960. {
  54961. name: "Mini-macro",
  54962. height: math.unit(30, "feet")
  54963. },
  54964. {
  54965. name: "Macro",
  54966. height: math.unit(400, "feet")
  54967. },
  54968. {
  54969. name: "Mega-macro",
  54970. height: math.unit(6000, "feet")
  54971. },
  54972. ]
  54973. ))
  54974. characterMakers.push(() => makeCharacter(
  54975. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54976. {
  54977. front: {
  54978. height: math.unit(6 + 7/12, "feet"),
  54979. weight: math.unit(210, "lb"),
  54980. name: "Front",
  54981. image: {
  54982. source: "./media/characters/wilfred-t-buxton/front.svg",
  54983. extra: 1068/882,
  54984. bottom: 28/1096
  54985. }
  54986. },
  54987. },
  54988. [
  54989. {
  54990. name: "Normal",
  54991. height: math.unit(6 + 7/12, "feet"),
  54992. default: true
  54993. },
  54994. ]
  54995. ))
  54996. characterMakers.push(() => makeCharacter(
  54997. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  54998. {
  54999. front: {
  55000. height: math.unit(5 + 2/12, "feet"),
  55001. weight: math.unit(120, "lb"),
  55002. name: "Front",
  55003. image: {
  55004. source: "./media/characters/leighton-marrow/front.svg",
  55005. extra: 441/409,
  55006. bottom: 37/478
  55007. }
  55008. },
  55009. },
  55010. [
  55011. {
  55012. name: "Normal",
  55013. height: math.unit(5 + 2/12, "feet"),
  55014. default: true
  55015. },
  55016. ]
  55017. ))
  55018. characterMakers.push(() => makeCharacter(
  55019. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55020. {
  55021. front: {
  55022. height: math.unit(4, "meters"),
  55023. weight: math.unit(1200, "kg"),
  55024. name: "Front",
  55025. image: {
  55026. source: "./media/characters/licos/front.svg",
  55027. extra: 1727/1604,
  55028. bottom: 101/1828
  55029. }
  55030. },
  55031. },
  55032. [
  55033. {
  55034. name: "Normal",
  55035. height: math.unit(4, "meters"),
  55036. default: true
  55037. },
  55038. ]
  55039. ))
  55040. characterMakers.push(() => makeCharacter(
  55041. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55042. {
  55043. front: {
  55044. height: math.unit(10 + 3/12, "feet"),
  55045. name: "Front",
  55046. image: {
  55047. source: "./media/characters/theo-monkey/front.svg",
  55048. extra: 1735/1658,
  55049. bottom: 73/1808
  55050. }
  55051. },
  55052. back: {
  55053. height: math.unit(10 + 3/12, "feet"),
  55054. name: "Back",
  55055. image: {
  55056. source: "./media/characters/theo-monkey/back.svg",
  55057. extra: 1742/1664,
  55058. bottom: 33/1775
  55059. }
  55060. },
  55061. head: {
  55062. height: math.unit(2.29, "feet"),
  55063. name: "Head",
  55064. image: {
  55065. source: "./media/characters/theo-monkey/head.svg"
  55066. }
  55067. },
  55068. handPalm: {
  55069. height: math.unit(1.73, "feet"),
  55070. name: "Hand (Palm)",
  55071. image: {
  55072. source: "./media/characters/theo-monkey/hand-palm.svg"
  55073. }
  55074. },
  55075. handBack: {
  55076. height: math.unit(1.63, "feet"),
  55077. name: "Hand (Back)",
  55078. image: {
  55079. source: "./media/characters/theo-monkey/hand-back.svg"
  55080. }
  55081. },
  55082. footSole: {
  55083. height: math.unit(2.15, "feet"),
  55084. name: "Foot (Sole)",
  55085. image: {
  55086. source: "./media/characters/theo-monkey/foot-sole.svg"
  55087. }
  55088. },
  55089. footSide: {
  55090. height: math.unit(1.6, "feet"),
  55091. name: "Foot (Side)",
  55092. image: {
  55093. source: "./media/characters/theo-monkey/foot-side.svg"
  55094. }
  55095. },
  55096. },
  55097. [
  55098. {
  55099. name: "Normal",
  55100. height: math.unit(10 + 3/12, "feet"),
  55101. default: true
  55102. },
  55103. ]
  55104. ))
  55105. characterMakers.push(() => makeCharacter(
  55106. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55107. {
  55108. front: {
  55109. height: math.unit(11, "feet"),
  55110. weight: math.unit(3000, "lb"),
  55111. preyCapacity: math.unit(10, "people"),
  55112. name: "Front",
  55113. image: {
  55114. source: "./media/characters/brook/front.svg",
  55115. extra: 909/835,
  55116. bottom: 108/1017
  55117. }
  55118. },
  55119. back: {
  55120. height: math.unit(11, "feet"),
  55121. weight: math.unit(3000, "lb"),
  55122. preyCapacity: math.unit(10, "people"),
  55123. name: "Back",
  55124. image: {
  55125. source: "./media/characters/brook/back.svg",
  55126. extra: 976/916,
  55127. bottom: 34/1010
  55128. }
  55129. },
  55130. backAlt: {
  55131. height: math.unit(11, "feet"),
  55132. weight: math.unit(3000, "lb"),
  55133. preyCapacity: math.unit(10, "people"),
  55134. name: "Back (Alt)",
  55135. image: {
  55136. source: "./media/characters/brook/back-alt.svg",
  55137. extra: 1283/1213,
  55138. bottom: 35/1318
  55139. }
  55140. },
  55141. bust: {
  55142. height: math.unit(9.0859030837, "feet"),
  55143. weight: math.unit(3000, "lb"),
  55144. preyCapacity: math.unit(10, "people"),
  55145. name: "Bust",
  55146. image: {
  55147. source: "./media/characters/brook/bust.svg",
  55148. extra: 2043/1923,
  55149. bottom: 0/2043
  55150. }
  55151. },
  55152. },
  55153. [
  55154. {
  55155. name: "Small",
  55156. height: math.unit(11, "feet"),
  55157. default: true
  55158. },
  55159. {
  55160. name: "Towering",
  55161. height: math.unit(5, "km")
  55162. },
  55163. {
  55164. name: "Enormous",
  55165. height: math.unit(25, "earths")
  55166. },
  55167. ]
  55168. ))
  55169. characterMakers.push(() => makeCharacter(
  55170. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55171. {
  55172. front: {
  55173. height: math.unit(4, "feet"),
  55174. weight: math.unit(150, "lb"),
  55175. name: "Front",
  55176. image: {
  55177. source: "./media/characters/squishi/front.svg",
  55178. extra: 1428/1271,
  55179. bottom: 30/1458
  55180. },
  55181. extraAttributes: {
  55182. "pawSize": {
  55183. name: "Paw Size",
  55184. power: 1,
  55185. type: "length",
  55186. base: math.unit(14, "ShoeSizeMensUS"),
  55187. defaultUnit: "ShoeSizeMensUS"
  55188. },
  55189. }
  55190. },
  55191. side: {
  55192. height: math.unit(4, "feet"),
  55193. weight: math.unit(150, "lb"),
  55194. name: "Side",
  55195. image: {
  55196. source: "./media/characters/squishi/side.svg",
  55197. extra: 1428/1271,
  55198. bottom: 30/1458
  55199. },
  55200. extraAttributes: {
  55201. "pawSize": {
  55202. name: "Paw Size",
  55203. power: 1,
  55204. type: "length",
  55205. base: math.unit(14, "ShoeSizeMensUS"),
  55206. defaultUnit: "ShoeSizeMensUS"
  55207. },
  55208. }
  55209. },
  55210. back: {
  55211. height: math.unit(4, "feet"),
  55212. weight: math.unit(150, "lb"),
  55213. name: "Back",
  55214. image: {
  55215. source: "./media/characters/squishi/back.svg",
  55216. extra: 1428/1271,
  55217. bottom: 30/1458
  55218. },
  55219. extraAttributes: {
  55220. "pawSize": {
  55221. name: "Paw Size",
  55222. power: 1,
  55223. type: "length",
  55224. base: math.unit(14, "ShoeSizeMensUS"),
  55225. defaultUnit: "ShoeSizeMensUS"
  55226. },
  55227. }
  55228. },
  55229. },
  55230. [
  55231. {
  55232. name: "Normal",
  55233. height: math.unit(4, "feet"),
  55234. default: true
  55235. },
  55236. ]
  55237. ))
  55238. characterMakers.push(() => makeCharacter(
  55239. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55240. {
  55241. front: {
  55242. height: math.unit(7 + 8/12, "feet"),
  55243. weight: math.unit(333, "lb"),
  55244. name: "Front",
  55245. image: {
  55246. source: "./media/characters/vincent-vasroc/front.svg",
  55247. extra: 1962/1860,
  55248. bottom: 41/2003
  55249. }
  55250. },
  55251. back: {
  55252. height: math.unit(7 + 8/12, "feet"),
  55253. weight: math.unit(333, "lb"),
  55254. name: "Back",
  55255. image: {
  55256. source: "./media/characters/vincent-vasroc/back.svg",
  55257. extra: 1952/1815,
  55258. bottom: 33/1985
  55259. }
  55260. },
  55261. paw: {
  55262. height: math.unit(1.24, "feet"),
  55263. name: "Paw",
  55264. image: {
  55265. source: "./media/characters/vincent-vasroc/paw.svg"
  55266. }
  55267. },
  55268. ear: {
  55269. height: math.unit(0.75, "feet"),
  55270. name: "Ear",
  55271. image: {
  55272. source: "./media/characters/vincent-vasroc/ear.svg"
  55273. }
  55274. },
  55275. },
  55276. [
  55277. {
  55278. name: "Nano",
  55279. height: math.unit(92, "micrometers")
  55280. },
  55281. {
  55282. name: "Normal",
  55283. height: math.unit(7 + 8/12, "feet"),
  55284. default: true
  55285. },
  55286. ]
  55287. ))
  55288. characterMakers.push(() => makeCharacter(
  55289. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55290. {
  55291. frontNsfw: {
  55292. height: math.unit(40, "feet"),
  55293. weight: math.unit(58, "tons"),
  55294. name: "Front (NSFW)",
  55295. image: {
  55296. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55297. extra: 1265/965,
  55298. bottom: 155/1420
  55299. }
  55300. },
  55301. frontSfw: {
  55302. height: math.unit(40, "feet"),
  55303. weight: math.unit(58, "tons"),
  55304. name: "Front (SFW)",
  55305. image: {
  55306. source: "./media/characters/ru-kahn/front-sfw.svg",
  55307. extra: 1265/965,
  55308. bottom: 80/1345
  55309. }
  55310. },
  55311. },
  55312. [
  55313. {
  55314. name: "Small",
  55315. height: math.unit(4, "feet")
  55316. },
  55317. {
  55318. name: "Normal",
  55319. height: math.unit(40, "feet"),
  55320. default: true
  55321. },
  55322. {
  55323. name: "Macro",
  55324. height: math.unit(400, "feet")
  55325. },
  55326. ]
  55327. ))
  55328. characterMakers.push(() => makeCharacter(
  55329. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55330. {
  55331. frontNude: {
  55332. height: math.unit(6 + 5/12, "feet"),
  55333. name: "Front (Nude)",
  55334. image: {
  55335. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55336. extra: 1369/1366,
  55337. bottom: 68/1437
  55338. }
  55339. },
  55340. frontDressed: {
  55341. height: math.unit(6 + 5/12, "feet"),
  55342. name: "Front (Dressed)",
  55343. image: {
  55344. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55345. extra: 1369/1366,
  55346. bottom: 68/1437
  55347. }
  55348. },
  55349. },
  55350. [
  55351. {
  55352. name: "Normal",
  55353. height: math.unit(6 + 5/12, "feet"),
  55354. default: true
  55355. },
  55356. {
  55357. name: "Maximum",
  55358. height: math.unit(1930, "feet")
  55359. },
  55360. ]
  55361. ))
  55362. characterMakers.push(() => makeCharacter(
  55363. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55364. {
  55365. front: {
  55366. height: math.unit(5 + 6/12, "feet"),
  55367. name: "Front",
  55368. image: {
  55369. source: "./media/characters/kaja/front.svg",
  55370. extra: 1874/1514,
  55371. bottom: 117/1991
  55372. }
  55373. },
  55374. },
  55375. [
  55376. {
  55377. name: "Normal",
  55378. height: math.unit(5 + 6/12, "feet"),
  55379. default: true
  55380. },
  55381. ]
  55382. ))
  55383. characterMakers.push(() => makeCharacter(
  55384. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55385. {
  55386. front: {
  55387. height: math.unit(5 + 9/12, "feet"),
  55388. weight: math.unit(200, "lb"),
  55389. name: "Front",
  55390. image: {
  55391. source: "./media/characters/mark-smith/front.svg",
  55392. extra: 1004/943,
  55393. bottom: 58/1062
  55394. }
  55395. },
  55396. back: {
  55397. height: math.unit(5 + 9/12, "feet"),
  55398. weight: math.unit(200, "lb"),
  55399. name: "Back",
  55400. image: {
  55401. source: "./media/characters/mark-smith/back.svg",
  55402. extra: 1023/953,
  55403. bottom: 24/1047
  55404. }
  55405. },
  55406. head: {
  55407. height: math.unit(1.82, "feet"),
  55408. name: "Head",
  55409. image: {
  55410. source: "./media/characters/mark-smith/head.svg"
  55411. }
  55412. },
  55413. hand: {
  55414. height: math.unit(1.4, "feet"),
  55415. name: "Hand",
  55416. image: {
  55417. source: "./media/characters/mark-smith/hand.svg"
  55418. }
  55419. },
  55420. paw: {
  55421. height: math.unit(1.69, "feet"),
  55422. name: "Paw",
  55423. image: {
  55424. source: "./media/characters/mark-smith/paw.svg"
  55425. }
  55426. },
  55427. },
  55428. [
  55429. {
  55430. name: "Micro",
  55431. height: math.unit(0.25, "inches")
  55432. },
  55433. {
  55434. name: "Normal",
  55435. height: math.unit(5 + 9/12, "feet"),
  55436. default: true
  55437. },
  55438. {
  55439. name: "Macro",
  55440. height: math.unit(500, "feet")
  55441. },
  55442. ]
  55443. ))
  55444. characterMakers.push(() => makeCharacter(
  55445. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55446. {
  55447. frontNude: {
  55448. height: math.unit(6, "feet"),
  55449. name: "Front (Nude)",
  55450. image: {
  55451. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55452. extra: 1384/1321,
  55453. bottom: 57/1441
  55454. }
  55455. },
  55456. frontDressed: {
  55457. height: math.unit(6, "feet"),
  55458. name: "Front (Dressed)",
  55459. image: {
  55460. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55461. extra: 1384/1321,
  55462. bottom: 57/1441
  55463. }
  55464. },
  55465. },
  55466. [
  55467. {
  55468. name: "Normal",
  55469. height: math.unit(6, "feet"),
  55470. default: true
  55471. },
  55472. {
  55473. name: "Maximum",
  55474. height: math.unit(1776, "feet")
  55475. },
  55476. ]
  55477. ))
  55478. characterMakers.push(() => makeCharacter(
  55479. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55480. {
  55481. front: {
  55482. height: math.unit(2 + 4/12, "feet"),
  55483. weight: math.unit(350, "lb"),
  55484. name: "Front",
  55485. image: {
  55486. source: "./media/characters/devos/front.svg",
  55487. extra: 958/852,
  55488. bottom: 143/1101
  55489. }
  55490. },
  55491. },
  55492. [
  55493. {
  55494. name: "Base",
  55495. height: math.unit(2 + 4/12, "feet"),
  55496. default: true
  55497. },
  55498. ]
  55499. ))
  55500. characterMakers.push(() => makeCharacter(
  55501. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55502. {
  55503. front: {
  55504. height: math.unit(9 + 2/12, "feet"),
  55505. name: "Front",
  55506. image: {
  55507. source: "./media/characters/hiveheart/front.svg",
  55508. extra: 394/364,
  55509. bottom: 65/459
  55510. }
  55511. },
  55512. back: {
  55513. height: math.unit(9 + 2/12, "feet"),
  55514. name: "Back",
  55515. image: {
  55516. source: "./media/characters/hiveheart/back.svg",
  55517. extra: 374/357,
  55518. bottom: 63/437
  55519. }
  55520. },
  55521. },
  55522. [
  55523. {
  55524. name: "Base",
  55525. height: math.unit(9 + 2/12, "feet"),
  55526. default: true
  55527. },
  55528. ]
  55529. ))
  55530. characterMakers.push(() => makeCharacter(
  55531. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55532. {
  55533. front: {
  55534. height: math.unit(2.5, "inches"),
  55535. weight: math.unit(0.6, "oz"),
  55536. name: "Front",
  55537. image: {
  55538. source: "./media/characters/bryn/front.svg",
  55539. extra: 1480/1205,
  55540. bottom: 27/1507
  55541. }
  55542. },
  55543. back: {
  55544. height: math.unit(2.5, "inches"),
  55545. weight: math.unit(0.6, "oz"),
  55546. name: "Back",
  55547. image: {
  55548. source: "./media/characters/bryn/back.svg",
  55549. extra: 1475/1201,
  55550. bottom: 39/1514
  55551. }
  55552. },
  55553. foot: {
  55554. height: math.unit(0.4, "inches"),
  55555. name: "Foot",
  55556. image: {
  55557. source: "./media/characters/bryn/foot.svg"
  55558. }
  55559. },
  55560. },
  55561. [
  55562. {
  55563. name: "Normal",
  55564. height: math.unit(2.5, "inches"),
  55565. default: true
  55566. },
  55567. ]
  55568. ))
  55569. characterMakers.push(() => makeCharacter(
  55570. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55571. {
  55572. side: {
  55573. height: math.unit(7, "feet"),
  55574. weight: math.unit(657, "kg"),
  55575. name: "Side",
  55576. image: {
  55577. source: "./media/characters/delta/side.svg",
  55578. extra: 781/212,
  55579. bottom: 7/788
  55580. },
  55581. extraAttributes: {
  55582. "wingspan": {
  55583. name: "Wingspan",
  55584. power: 1,
  55585. type: "length",
  55586. base: math.unit(48, "feet")
  55587. },
  55588. "length": {
  55589. name: "Length",
  55590. power: 1,
  55591. type: "length",
  55592. base: math.unit(21, "feet")
  55593. },
  55594. "pawSize": {
  55595. name: "Paw Size",
  55596. power: 2,
  55597. type: "area",
  55598. base: math.unit(1.5*1.4, "feet^2")
  55599. },
  55600. }
  55601. },
  55602. },
  55603. [
  55604. {
  55605. name: "Normal",
  55606. height: math.unit(6, "feet"),
  55607. default: true
  55608. },
  55609. ]
  55610. ))
  55611. //characters
  55612. function makeCharacters() {
  55613. const results = [];
  55614. characterMakers.forEach(character => {
  55615. results.push(character());
  55616. });
  55617. return results;
  55618. }