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.
 
 
 

57423 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["lizard"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. "thresher-shark": {
  2166. name: "Thresher Shark",
  2167. parents: ["shark"]
  2168. },
  2169. "ai": {
  2170. name: "AI",
  2171. parents: []
  2172. },
  2173. "black-tip-reef-shark": {
  2174. name: "Black Tip Reef Shark",
  2175. parents: ["shark"]
  2176. },
  2177. }
  2178. //species
  2179. function getSpeciesInfo(speciesList) {
  2180. let result = new Set();
  2181. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2182. result.add(entry)
  2183. });
  2184. return Array.from(result);
  2185. };
  2186. function getSpeciesInfoHelper(species) {
  2187. if (!speciesData[species]) {
  2188. console.warn(species + " doesn't exist");
  2189. return [];
  2190. }
  2191. if (speciesData[species].parents) {
  2192. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2193. } else {
  2194. return [species];
  2195. }
  2196. }
  2197. characterMakers.push(() => makeCharacter(
  2198. {
  2199. name: "Fen",
  2200. species: ["crux"],
  2201. description: {
  2202. title: "Bio",
  2203. text: "Very furry. Sheds on everything."
  2204. },
  2205. tags: [
  2206. "anthro",
  2207. "goo"
  2208. ]
  2209. },
  2210. {
  2211. front: {
  2212. height: math.unit(12, "feet"),
  2213. weight: math.unit(2400, "lb"),
  2214. preyCapacity: math.unit(1, "people"),
  2215. name: "Front",
  2216. image: {
  2217. source: "./media/characters/fen/front.svg",
  2218. extra: 1804/1562,
  2219. bottom: 205/2009
  2220. },
  2221. extraAttributes: {
  2222. pawSize: {
  2223. name: "Paw Size",
  2224. power: 2,
  2225. type: "area",
  2226. base: math.unit(0.35, "m^2")
  2227. }
  2228. }
  2229. },
  2230. diving: {
  2231. height: math.unit(4.9, "meters"),
  2232. weight: math.unit(2400, "lb"),
  2233. name: "Diving",
  2234. image: {
  2235. source: "./media/characters/fen/diving.svg"
  2236. }
  2237. },
  2238. sleeby: {
  2239. height: math.unit(3.45, "meters"),
  2240. weight: math.unit(2400, "lb"),
  2241. name: "Sleeby",
  2242. image: {
  2243. source: "./media/characters/fen/sleeby.svg"
  2244. }
  2245. },
  2246. goo: {
  2247. height: math.unit(12, "feet"),
  2248. weight: math.unit(3600, "lb"),
  2249. volume: math.unit(1000, "liters"),
  2250. preyCapacity: math.unit(6, "people"),
  2251. name: "Goo",
  2252. image: {
  2253. source: "./media/characters/fen/goo.svg",
  2254. extra: 1307/1071,
  2255. bottom: 134/1441
  2256. }
  2257. },
  2258. gooNsfw: {
  2259. height: math.unit(12, "feet"),
  2260. weight: math.unit(3750, "lb"),
  2261. volume: math.unit(1000, "liters"),
  2262. preyCapacity: math.unit(6, "people"),
  2263. name: "Goo (NSFW)",
  2264. image: {
  2265. source: "./media/characters/fen/goo-nsfw.svg",
  2266. extra: 1875/1734,
  2267. bottom: 122/1997
  2268. }
  2269. },
  2270. maw: {
  2271. height: math.unit(5.03, "feet"),
  2272. name: "Maw",
  2273. image: {
  2274. source: "./media/characters/fen/maw.svg"
  2275. }
  2276. },
  2277. gooCeiling: {
  2278. height: math.unit(6.6, "feet"),
  2279. weight: math.unit(3000, "lb"),
  2280. volume: math.unit(1000, "liters"),
  2281. preyCapacity: math.unit(6, "people"),
  2282. name: "Goo (Ceiling)",
  2283. image: {
  2284. source: "./media/characters/fen/goo-ceiling.svg"
  2285. }
  2286. },
  2287. paw: {
  2288. height: math.unit(3.77, "feet"),
  2289. name: "Paw",
  2290. image: {
  2291. source: "./media/characters/fen/paw.svg"
  2292. },
  2293. extraAttributes: {
  2294. "toeSize": {
  2295. name: "Toe Size",
  2296. power: 2,
  2297. type: "area",
  2298. base: math.unit(0.02875, "m^2")
  2299. },
  2300. "pawSize": {
  2301. name: "Paw Size",
  2302. power: 2,
  2303. type: "area",
  2304. base: math.unit(0.378, "m^2")
  2305. },
  2306. }
  2307. },
  2308. tail: {
  2309. height: math.unit(12.1, "feet"),
  2310. name: "Tail",
  2311. image: {
  2312. source: "./media/characters/fen/tail.svg"
  2313. }
  2314. },
  2315. tailFull: {
  2316. height: math.unit(12.1, "feet"),
  2317. name: "Full Tail",
  2318. image: {
  2319. source: "./media/characters/fen/tail-full.svg"
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(12, "feet"),
  2324. weight: math.unit(2400, "lb"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/fen/back.svg",
  2328. },
  2329. info: {
  2330. description: {
  2331. mode: "append",
  2332. text: "\n\nHe is not currently looking at you."
  2333. }
  2334. }
  2335. },
  2336. full: {
  2337. height: math.unit(1.85, "meter"),
  2338. weight: math.unit(3200, "lb"),
  2339. name: "Full",
  2340. image: {
  2341. source: "./media/characters/fen/full.svg",
  2342. extra: 1133/859,
  2343. bottom: 145/1278
  2344. },
  2345. info: {
  2346. description: {
  2347. mode: "append",
  2348. text: "\n\nMunch."
  2349. }
  2350. }
  2351. },
  2352. gooLounging: {
  2353. height: math.unit(4.53, "feet"),
  2354. weight: math.unit(3000, "lb"),
  2355. preyCapacity: math.unit(6, "people"),
  2356. name: "Goo (Lounging)",
  2357. image: {
  2358. source: "./media/characters/fen/goo-lounging.svg",
  2359. bottom: 116 / 613
  2360. }
  2361. },
  2362. lounging: {
  2363. height: math.unit(10.52, "feet"),
  2364. weight: math.unit(2400, "lb"),
  2365. name: "Lounging",
  2366. image: {
  2367. source: "./media/characters/fen/lounging.svg"
  2368. }
  2369. },
  2370. },
  2371. [
  2372. {
  2373. name: "Small",
  2374. height: math.unit(2.2428, "meter")
  2375. },
  2376. {
  2377. name: "Normal",
  2378. height: math.unit(12, "feet"),
  2379. default: true,
  2380. },
  2381. {
  2382. name: "Big",
  2383. height: math.unit(20, "feet")
  2384. },
  2385. {
  2386. name: "Minimacro",
  2387. height: math.unit(40, "feet"),
  2388. info: {
  2389. description: {
  2390. mode: "append",
  2391. text: "\n\nTOO DAMN BIG"
  2392. }
  2393. }
  2394. },
  2395. {
  2396. name: "Macro",
  2397. height: math.unit(100, "feet"),
  2398. info: {
  2399. description: {
  2400. mode: "append",
  2401. text: "\n\nTOO DAMN BIG"
  2402. }
  2403. }
  2404. },
  2405. {
  2406. name: "Megamacro",
  2407. height: math.unit(2, "miles")
  2408. },
  2409. {
  2410. name: "Gigamacro",
  2411. height: math.unit(10, "earths")
  2412. },
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2417. {
  2418. front: {
  2419. height: math.unit(183, "cm"),
  2420. weight: math.unit(80, "kg"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/sofia-fluttertail/front.svg",
  2424. bottom: 0.01,
  2425. extra: 2154 / 2081
  2426. }
  2427. },
  2428. frontAlt: {
  2429. height: math.unit(183, "cm"),
  2430. weight: math.unit(80, "kg"),
  2431. name: "Front (alt)",
  2432. image: {
  2433. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2434. }
  2435. },
  2436. back: {
  2437. height: math.unit(183, "cm"),
  2438. weight: math.unit(80, "kg"),
  2439. name: "Back",
  2440. image: {
  2441. source: "./media/characters/sofia-fluttertail/back.svg"
  2442. }
  2443. },
  2444. kneeling: {
  2445. height: math.unit(125, "cm"),
  2446. weight: math.unit(80, "kg"),
  2447. name: "Kneeling",
  2448. image: {
  2449. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2450. extra: 1033 / 977,
  2451. bottom: 23.7 / 1057
  2452. }
  2453. },
  2454. maw: {
  2455. height: math.unit(183 / 5, "cm"),
  2456. name: "Maw",
  2457. image: {
  2458. source: "./media/characters/sofia-fluttertail/maw.svg"
  2459. }
  2460. },
  2461. mawcloseup: {
  2462. height: math.unit(183 / 5 * 0.41, "cm"),
  2463. name: "Maw (Closeup)",
  2464. image: {
  2465. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2466. }
  2467. },
  2468. paws: {
  2469. height: math.unit(1.17, "feet"),
  2470. name: "Paws",
  2471. image: {
  2472. source: "./media/characters/sofia-fluttertail/paws.svg",
  2473. extra: 851 / 851,
  2474. bottom: 17 / 868
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Normal",
  2481. height: math.unit(1.83, "meter")
  2482. },
  2483. {
  2484. name: "Size Thief",
  2485. height: math.unit(18, "feet")
  2486. },
  2487. {
  2488. name: "50 Foot Collie",
  2489. height: math.unit(50, "feet")
  2490. },
  2491. {
  2492. name: "Macro",
  2493. height: math.unit(96, "feet"),
  2494. default: true
  2495. },
  2496. {
  2497. name: "Megamerger",
  2498. height: math.unit(650, "feet")
  2499. },
  2500. ]
  2501. ))
  2502. characterMakers.push(() => makeCharacter(
  2503. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2504. {
  2505. front: {
  2506. height: math.unit(7, "feet"),
  2507. weight: math.unit(100, "kg"),
  2508. name: "Front",
  2509. image: {
  2510. source: "./media/characters/march/front.svg",
  2511. extra: 1992/1851,
  2512. bottom: 39/2031
  2513. }
  2514. },
  2515. foot: {
  2516. height: math.unit(0.9, "feet"),
  2517. name: "Foot",
  2518. image: {
  2519. source: "./media/characters/march/foot.svg"
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(7.9, "feet")
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(220, "meters")
  2531. },
  2532. {
  2533. name: "Megamacro",
  2534. height: math.unit(2.98, "km"),
  2535. default: true
  2536. },
  2537. {
  2538. name: "Gigamacro",
  2539. height: math.unit(15963, "km")
  2540. },
  2541. {
  2542. name: "Teramacro",
  2543. height: math.unit(2980000000, "km")
  2544. },
  2545. {
  2546. name: "Examacro",
  2547. height: math.unit(250, "parsecs")
  2548. },
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2553. {
  2554. front: {
  2555. height: math.unit(6, "feet"),
  2556. weight: math.unit(60, "kg"),
  2557. name: "Front",
  2558. image: {
  2559. source: "./media/characters/noir/front.svg",
  2560. extra: 1,
  2561. bottom: 0.032
  2562. }
  2563. },
  2564. },
  2565. [
  2566. {
  2567. name: "Normal",
  2568. height: math.unit(6.6, "feet")
  2569. },
  2570. {
  2571. name: "Macro",
  2572. height: math.unit(500, "feet")
  2573. },
  2574. {
  2575. name: "Megamacro",
  2576. height: math.unit(2.5, "km"),
  2577. default: true
  2578. },
  2579. {
  2580. name: "Gigamacro",
  2581. height: math.unit(22500, "km")
  2582. },
  2583. {
  2584. name: "Teramacro",
  2585. height: math.unit(2500000000, "km")
  2586. },
  2587. {
  2588. name: "Examacro",
  2589. height: math.unit(200, "parsecs")
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(7, "feet"),
  2598. weight: math.unit(100, "kg"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/okuri/front.svg",
  2602. extra: 739/665,
  2603. bottom: 39/778
  2604. }
  2605. },
  2606. back: {
  2607. height: math.unit(7, "feet"),
  2608. weight: math.unit(100, "kg"),
  2609. name: "Back",
  2610. image: {
  2611. source: "./media/characters/okuri/back.svg",
  2612. extra: 734/653,
  2613. bottom: 13/747
  2614. }
  2615. },
  2616. sitting: {
  2617. height: math.unit(2.95, "feet"),
  2618. weight: math.unit(100, "kg"),
  2619. name: "Sitting",
  2620. image: {
  2621. source: "./media/characters/okuri/sitting.svg",
  2622. extra: 370/318,
  2623. bottom: 99/469
  2624. }
  2625. },
  2626. },
  2627. [
  2628. {
  2629. name: "Smallest",
  2630. height: math.unit(5 + 2/12, "feet")
  2631. },
  2632. {
  2633. name: "Smaller",
  2634. height: math.unit(300, "feet")
  2635. },
  2636. {
  2637. name: "Small",
  2638. height: math.unit(1000, "feet")
  2639. },
  2640. {
  2641. name: "Macro",
  2642. height: math.unit(1, "mile")
  2643. },
  2644. {
  2645. name: "Mega Macro (Small)",
  2646. height: math.unit(20, "km")
  2647. },
  2648. {
  2649. name: "Mega Macro (Large)",
  2650. height: math.unit(600, "km")
  2651. },
  2652. {
  2653. name: "Giga Macro",
  2654. height: math.unit(10000, "km")
  2655. },
  2656. {
  2657. name: "Normal",
  2658. height: math.unit(577560, "km"),
  2659. default: true
  2660. },
  2661. {
  2662. name: "Large",
  2663. height: math.unit(4, "galaxies")
  2664. },
  2665. {
  2666. name: "Largest",
  2667. height: math.unit(15, "multiverses")
  2668. },
  2669. ]
  2670. ))
  2671. characterMakers.push(() => makeCharacter(
  2672. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2673. {
  2674. front: {
  2675. height: math.unit(7, "feet"),
  2676. weight: math.unit(100, "kg"),
  2677. name: "Front",
  2678. image: {
  2679. source: "./media/characters/manny/front.svg",
  2680. extra: 1,
  2681. bottom: 0.06
  2682. }
  2683. },
  2684. back: {
  2685. height: math.unit(7, "feet"),
  2686. weight: math.unit(100, "kg"),
  2687. name: "Back",
  2688. image: {
  2689. source: "./media/characters/manny/back.svg",
  2690. extra: 1,
  2691. bottom: 0.014
  2692. }
  2693. },
  2694. },
  2695. [
  2696. {
  2697. name: "Normal",
  2698. height: math.unit(7, "feet"),
  2699. },
  2700. {
  2701. name: "Macro",
  2702. height: math.unit(78, "feet"),
  2703. default: true
  2704. },
  2705. {
  2706. name: "Macro+",
  2707. height: math.unit(300, "meters")
  2708. },
  2709. {
  2710. name: "Macro++",
  2711. height: math.unit(2400, "meters")
  2712. },
  2713. {
  2714. name: "Megamacro",
  2715. height: math.unit(5167, "meters")
  2716. },
  2717. {
  2718. name: "Gigamacro",
  2719. height: math.unit(41769, "miles")
  2720. },
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2725. {
  2726. front: {
  2727. height: math.unit(7, "feet"),
  2728. weight: math.unit(100, "kg"),
  2729. name: "Front",
  2730. image: {
  2731. source: "./media/characters/adake/front-1.svg"
  2732. }
  2733. },
  2734. frontAlt: {
  2735. height: math.unit(7, "feet"),
  2736. weight: math.unit(100, "kg"),
  2737. name: "Front (Alt)",
  2738. image: {
  2739. source: "./media/characters/adake/front-2.svg",
  2740. extra: 1,
  2741. bottom: 0.01
  2742. }
  2743. },
  2744. back: {
  2745. height: math.unit(7, "feet"),
  2746. weight: math.unit(100, "kg"),
  2747. name: "Back",
  2748. image: {
  2749. source: "./media/characters/adake/back.svg",
  2750. }
  2751. },
  2752. kneel: {
  2753. height: math.unit(5.385, "feet"),
  2754. weight: math.unit(100, "kg"),
  2755. name: "Kneeling",
  2756. image: {
  2757. source: "./media/characters/adake/kneel.svg",
  2758. bottom: 0.052
  2759. }
  2760. },
  2761. },
  2762. [
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(7, "feet"),
  2766. },
  2767. {
  2768. name: "Macro",
  2769. height: math.unit(78, "feet"),
  2770. default: true
  2771. },
  2772. {
  2773. name: "Macro+",
  2774. height: math.unit(300, "meters")
  2775. },
  2776. {
  2777. name: "Macro++",
  2778. height: math.unit(2400, "meters")
  2779. },
  2780. {
  2781. name: "Megamacro",
  2782. height: math.unit(5167, "meters")
  2783. },
  2784. {
  2785. name: "Gigamacro",
  2786. height: math.unit(41769, "miles")
  2787. },
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2792. {
  2793. front: {
  2794. height: math.unit(1.65, "meters"),
  2795. weight: math.unit(50, "kg"),
  2796. name: "Front",
  2797. image: {
  2798. source: "./media/characters/elijah/front.svg",
  2799. extra: 858 / 830,
  2800. bottom: 95.5 / 953.8559
  2801. }
  2802. },
  2803. back: {
  2804. height: math.unit(1.65, "meters"),
  2805. weight: math.unit(50, "kg"),
  2806. name: "Back",
  2807. image: {
  2808. source: "./media/characters/elijah/back.svg",
  2809. extra: 895 / 850,
  2810. bottom: 5.3 / 897.956
  2811. }
  2812. },
  2813. frontNsfw: {
  2814. height: math.unit(1.65, "meters"),
  2815. weight: math.unit(50, "kg"),
  2816. name: "Front (NSFW)",
  2817. image: {
  2818. source: "./media/characters/elijah/front-nsfw.svg",
  2819. extra: 858 / 830,
  2820. bottom: 95.5 / 953.8559
  2821. }
  2822. },
  2823. backNsfw: {
  2824. height: math.unit(1.65, "meters"),
  2825. weight: math.unit(50, "kg"),
  2826. name: "Back (NSFW)",
  2827. image: {
  2828. source: "./media/characters/elijah/back-nsfw.svg",
  2829. extra: 895 / 850,
  2830. bottom: 5.3 / 897.956
  2831. }
  2832. },
  2833. dick: {
  2834. height: math.unit(1, "feet"),
  2835. name: "Dick",
  2836. image: {
  2837. source: "./media/characters/elijah/dick.svg"
  2838. }
  2839. },
  2840. beakOpen: {
  2841. height: math.unit(1.25, "feet"),
  2842. name: "Beak (Open)",
  2843. image: {
  2844. source: "./media/characters/elijah/beak-open.svg"
  2845. }
  2846. },
  2847. beakShut: {
  2848. height: math.unit(1.25, "feet"),
  2849. name: "Beak (Shut)",
  2850. image: {
  2851. source: "./media/characters/elijah/beak-shut.svg"
  2852. }
  2853. },
  2854. footFlexing: {
  2855. height: math.unit(1.61, "feet"),
  2856. name: "Foot (Flexing)",
  2857. image: {
  2858. source: "./media/characters/elijah/foot-flexing.svg"
  2859. }
  2860. },
  2861. footStepping: {
  2862. height: math.unit(1.44, "feet"),
  2863. name: "Foot (Stepping)",
  2864. image: {
  2865. source: "./media/characters/elijah/foot-stepping.svg"
  2866. }
  2867. },
  2868. plantigradeLeg: {
  2869. height: math.unit(2.34, "feet"),
  2870. name: "Plantigrade Leg",
  2871. image: {
  2872. source: "./media/characters/elijah/plantigrade-leg.svg"
  2873. }
  2874. },
  2875. plantigradeFootLeft: {
  2876. height: math.unit(0.9, "feet"),
  2877. name: "Plantigrade Foot (Left)",
  2878. image: {
  2879. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2880. }
  2881. },
  2882. plantigradeFootRight: {
  2883. height: math.unit(0.9, "feet"),
  2884. name: "Plantigrade Foot (Right)",
  2885. image: {
  2886. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2887. }
  2888. },
  2889. },
  2890. [
  2891. {
  2892. name: "Normal",
  2893. height: math.unit(1.65, "meters")
  2894. },
  2895. {
  2896. name: "Macro",
  2897. height: math.unit(55, "meters"),
  2898. default: true
  2899. },
  2900. {
  2901. name: "Macro+",
  2902. height: math.unit(105, "meters")
  2903. },
  2904. ]
  2905. ))
  2906. characterMakers.push(() => makeCharacter(
  2907. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2908. {
  2909. front: {
  2910. height: math.unit(7 + 2/12, "feet"),
  2911. weight: math.unit(320, "kg"),
  2912. preyCapacity: math.unit(0.276549935, "people"),
  2913. name: "Front",
  2914. image: {
  2915. source: "./media/characters/rai/front.svg",
  2916. extra: 1802/1696,
  2917. bottom: 68/1870
  2918. },
  2919. form: "anthro",
  2920. default: true
  2921. },
  2922. frontDressed: {
  2923. height: math.unit(7 + 2/12, "feet"),
  2924. weight: math.unit(320, "kg"),
  2925. preyCapacity: math.unit(0.276549935, "people"),
  2926. name: "Front (Dressed)",
  2927. image: {
  2928. source: "./media/characters/rai/front-dressed.svg",
  2929. extra: 1802/1696,
  2930. bottom: 68/1870
  2931. },
  2932. form: "anthro"
  2933. },
  2934. side: {
  2935. height: math.unit(7 + 2/12, "feet"),
  2936. weight: math.unit(320, "kg"),
  2937. preyCapacity: math.unit(0.276549935, "people"),
  2938. name: "Side",
  2939. image: {
  2940. source: "./media/characters/rai/side.svg",
  2941. extra: 1789/1710,
  2942. bottom: 115/1904
  2943. },
  2944. form: "anthro"
  2945. },
  2946. back: {
  2947. height: math.unit(7 + 2/12, "feet"),
  2948. weight: math.unit(320, "kg"),
  2949. preyCapacity: math.unit(0.276549935, "people"),
  2950. name: "Back",
  2951. image: {
  2952. source: "./media/characters/rai/back.svg",
  2953. extra: 1770/1707,
  2954. bottom: 28/1798
  2955. },
  2956. form: "anthro"
  2957. },
  2958. feral: {
  2959. height: math.unit(9.5, "feet"),
  2960. weight: math.unit(640, "kg"),
  2961. preyCapacity: math.unit(4, "people"),
  2962. name: "Feral",
  2963. image: {
  2964. source: "./media/characters/rai/feral.svg",
  2965. extra: 945/553,
  2966. bottom: 176/1121
  2967. },
  2968. form: "feral",
  2969. default: true
  2970. },
  2971. dragon: {
  2972. height: math.unit(23, "feet"),
  2973. weight: math.unit(50000, "lb"),
  2974. name: "Dragon",
  2975. image: {
  2976. source: "./media/characters/rai/dragon.svg",
  2977. extra: 2498 / 2030,
  2978. bottom: 85.2 / 2584
  2979. },
  2980. form: "dragon",
  2981. default: true
  2982. },
  2983. maw: {
  2984. height: math.unit(1.69, "feet"),
  2985. name: "Maw",
  2986. image: {
  2987. source: "./media/characters/rai/maw.svg"
  2988. },
  2989. form: "anthro"
  2990. },
  2991. },
  2992. [
  2993. {
  2994. name: "Normal",
  2995. height: math.unit(7 + 2/12, "feet"),
  2996. form: "anthro"
  2997. },
  2998. {
  2999. name: "Big",
  3000. height: math.unit(11, "feet"),
  3001. form: "anthro"
  3002. },
  3003. {
  3004. name: "Minimacro",
  3005. height: math.unit(77, "feet"),
  3006. form: "anthro"
  3007. },
  3008. {
  3009. name: "Macro",
  3010. height: math.unit(302, "feet"),
  3011. default: true,
  3012. form: "anthro"
  3013. },
  3014. {
  3015. name: "Normal",
  3016. height: math.unit(9.5, "feet"),
  3017. form: "feral",
  3018. default: true
  3019. },
  3020. {
  3021. name: "Normal",
  3022. height: math.unit(23, "feet"),
  3023. form: "dragon",
  3024. default: true
  3025. }
  3026. ],
  3027. {
  3028. "anthro": {
  3029. name: "Anthro",
  3030. default: true
  3031. },
  3032. "feral": {
  3033. name: "Feral",
  3034. },
  3035. "dragon": {
  3036. name: "Dragon",
  3037. },
  3038. }
  3039. ))
  3040. characterMakers.push(() => makeCharacter(
  3041. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3042. {
  3043. frontDressed: {
  3044. height: math.unit(216, "feet"),
  3045. weight: math.unit(7000000, "lb"),
  3046. preyCapacity: math.unit(1321, "people"),
  3047. name: "Front (Dressed)",
  3048. image: {
  3049. source: "./media/characters/jazzy/front-dressed.svg",
  3050. extra: 2738 / 2651,
  3051. bottom: 41.8 / 2786
  3052. }
  3053. },
  3054. backDressed: {
  3055. height: math.unit(216, "feet"),
  3056. weight: math.unit(7000000, "lb"),
  3057. preyCapacity: math.unit(1321, "people"),
  3058. name: "Back (Dressed)",
  3059. image: {
  3060. source: "./media/characters/jazzy/back-dressed.svg",
  3061. extra: 2775 / 2673,
  3062. bottom: 36.8 / 2817
  3063. }
  3064. },
  3065. front: {
  3066. height: math.unit(216, "feet"),
  3067. weight: math.unit(7000000, "lb"),
  3068. preyCapacity: math.unit(1321, "people"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/jazzy/front.svg",
  3072. extra: 2738 / 2651,
  3073. bottom: 41.8 / 2786
  3074. }
  3075. },
  3076. back: {
  3077. height: math.unit(216, "feet"),
  3078. weight: math.unit(7000000, "lb"),
  3079. preyCapacity: math.unit(1321, "people"),
  3080. name: "Back",
  3081. image: {
  3082. source: "./media/characters/jazzy/back.svg",
  3083. extra: 2775 / 2673,
  3084. bottom: 36.8 / 2817
  3085. }
  3086. },
  3087. maw: {
  3088. height: math.unit(20, "feet"),
  3089. name: "Maw",
  3090. image: {
  3091. source: "./media/characters/jazzy/maw.svg"
  3092. }
  3093. },
  3094. paws: {
  3095. height: math.unit(27.5, "feet"),
  3096. name: "Paws",
  3097. image: {
  3098. source: "./media/characters/jazzy/paws.svg"
  3099. }
  3100. },
  3101. eye: {
  3102. height: math.unit(4.4, "feet"),
  3103. name: "Eye",
  3104. image: {
  3105. source: "./media/characters/jazzy/eye.svg"
  3106. }
  3107. },
  3108. droneOffense: {
  3109. height: math.unit(9.5, "inches"),
  3110. name: "Drone (Offense)",
  3111. image: {
  3112. source: "./media/characters/jazzy/drone-offense.svg"
  3113. }
  3114. },
  3115. droneRecon: {
  3116. height: math.unit(9.5, "inches"),
  3117. name: "Drone (Recon)",
  3118. image: {
  3119. source: "./media/characters/jazzy/drone-recon.svg"
  3120. }
  3121. },
  3122. droneDefense: {
  3123. height: math.unit(9.5, "inches"),
  3124. name: "Drone (Defense)",
  3125. image: {
  3126. source: "./media/characters/jazzy/drone-defense.svg"
  3127. }
  3128. },
  3129. },
  3130. [
  3131. {
  3132. name: "Macro",
  3133. height: math.unit(216, "feet"),
  3134. default: true
  3135. },
  3136. ]
  3137. ))
  3138. characterMakers.push(() => makeCharacter(
  3139. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3140. {
  3141. front: {
  3142. height: math.unit(9 + 6/12, "feet"),
  3143. weight: math.unit(700, "lb"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/flamm/front.svg",
  3147. extra: 1736/1596,
  3148. bottom: 93/1829
  3149. }
  3150. },
  3151. buff: {
  3152. height: math.unit(9 + 6/12, "feet"),
  3153. weight: math.unit(950, "lb"),
  3154. name: "Buff",
  3155. image: {
  3156. source: "./media/characters/flamm/buff.svg",
  3157. extra: 3018/2874,
  3158. bottom: 221/3239
  3159. }
  3160. },
  3161. },
  3162. [
  3163. {
  3164. name: "Normal",
  3165. height: math.unit(9.5, "feet")
  3166. },
  3167. {
  3168. name: "Macro",
  3169. height: math.unit(200, "feet"),
  3170. default: true
  3171. },
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3176. {
  3177. front: {
  3178. height: math.unit(5 + 3/12, "feet"),
  3179. weight: math.unit(60, "kg"),
  3180. name: "Front",
  3181. image: {
  3182. source: "./media/characters/zephiro/front.svg",
  3183. extra: 1873/1761,
  3184. bottom: 147/2020
  3185. }
  3186. },
  3187. side: {
  3188. height: math.unit(5 + 3/12, "feet"),
  3189. weight: math.unit(60, "kg"),
  3190. name: "Side",
  3191. image: {
  3192. source: "./media/characters/zephiro/side.svg",
  3193. extra: 1929/1827,
  3194. bottom: 65/1994
  3195. }
  3196. },
  3197. back: {
  3198. height: math.unit(5 + 3/12, "feet"),
  3199. weight: math.unit(60, "kg"),
  3200. name: "Back",
  3201. image: {
  3202. source: "./media/characters/zephiro/back.svg",
  3203. extra: 1926/1816,
  3204. bottom: 41/1967
  3205. }
  3206. },
  3207. hand: {
  3208. height: math.unit(0.68, "feet"),
  3209. name: "Hand",
  3210. image: {
  3211. source: "./media/characters/zephiro/hand.svg"
  3212. }
  3213. },
  3214. paw: {
  3215. height: math.unit(1, "feet"),
  3216. name: "Paw",
  3217. image: {
  3218. source: "./media/characters/zephiro/paw.svg"
  3219. }
  3220. },
  3221. beans: {
  3222. height: math.unit(0.93, "feet"),
  3223. name: "Beans",
  3224. image: {
  3225. source: "./media/characters/zephiro/beans.svg"
  3226. }
  3227. },
  3228. },
  3229. [
  3230. {
  3231. name: "Micro",
  3232. height: math.unit(3, "inches")
  3233. },
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(5 + 3 / 12, "feet"),
  3237. default: true
  3238. },
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(118, "feet")
  3242. },
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(5, "feet"),
  3250. weight: math.unit(90, "kg"),
  3251. preyCapacity: math.unit(14, "people"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/fory/front.svg",
  3255. extra: 2862 / 2674,
  3256. bottom: 180 / 3043.8
  3257. },
  3258. form: "weaselbun",
  3259. default: true,
  3260. extraAttributes: {
  3261. "pawSize": {
  3262. name: "Paw Size",
  3263. power: 2,
  3264. type: "area",
  3265. base: math.unit(0.1596, "m^2")
  3266. },
  3267. "pawLength": {
  3268. name: "Paw Length",
  3269. power: 1,
  3270. type: "length",
  3271. base: math.unit(0.7, "m")
  3272. }
  3273. }
  3274. },
  3275. back: {
  3276. height: math.unit(5, "feet"),
  3277. weight: math.unit(90, "kg"),
  3278. preyCapacity: math.unit(14, "people"),
  3279. name: "Back",
  3280. image: {
  3281. source: "./media/characters/fory/back.svg",
  3282. extra: 1790/1672,
  3283. bottom: 84/1874
  3284. },
  3285. form: "weaselbun",
  3286. extraAttributes: {
  3287. "pawSize": {
  3288. name: "Paw Size",
  3289. power: 2,
  3290. type: "area",
  3291. base: math.unit(0.1596, "m^2")
  3292. },
  3293. "pawLength": {
  3294. name: "Paw Length",
  3295. power: 1,
  3296. type: "length",
  3297. base: math.unit(0.7, "m")
  3298. }
  3299. }
  3300. },
  3301. paw: {
  3302. height: math.unit(2.14, "feet"),
  3303. name: "Paw",
  3304. image: {
  3305. source: "./media/characters/fory/paw.svg"
  3306. },
  3307. form: "weaselbun",
  3308. extraAttributes: {
  3309. "pawSize": {
  3310. name: "Paw Size",
  3311. power: 2,
  3312. type: "area",
  3313. base: math.unit(0.1596, "m^2")
  3314. },
  3315. "pawLength": {
  3316. name: "Paw Length",
  3317. power: 1,
  3318. type: "length",
  3319. base: math.unit(0.48, "m")
  3320. }
  3321. }
  3322. },
  3323. bunBack: {
  3324. height: math.unit(3, "feet"),
  3325. weight: math.unit(20, "kg"),
  3326. preyCapacity: math.unit(3, "people"),
  3327. name: "Back",
  3328. image: {
  3329. source: "./media/characters/fory/bun-back.svg",
  3330. extra: 1749/1564,
  3331. bottom: 246/1995
  3332. },
  3333. form: "bun",
  3334. default: true,
  3335. extraAttributes: {
  3336. "pawSize": {
  3337. name: "Paw Size",
  3338. power: 2,
  3339. type: "area",
  3340. base: math.unit(0.072, "m^2")
  3341. },
  3342. "pawLength": {
  3343. name: "Paw Length",
  3344. power: 1,
  3345. type: "length",
  3346. base: math.unit(0.45, "m")
  3347. }
  3348. }
  3349. },
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(5, "feet"),
  3355. form: "weaselbun"
  3356. },
  3357. {
  3358. name: "Macro",
  3359. height: math.unit(50, "feet"),
  3360. default: true,
  3361. form: "weaselbun"
  3362. },
  3363. {
  3364. name: "Megamacro",
  3365. height: math.unit(10, "miles"),
  3366. form: "weaselbun"
  3367. },
  3368. {
  3369. name: "Gigamacro",
  3370. height: math.unit(5, "earths"),
  3371. form: "weaselbun"
  3372. },
  3373. {
  3374. name: "Normal",
  3375. height: math.unit(3, "feet"),
  3376. default: true,
  3377. form: "bun"
  3378. },
  3379. {
  3380. name: "Fun-Size",
  3381. height: math.unit(12, "feet"),
  3382. form: "bun"
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(100, "feet"),
  3387. form: "bun"
  3388. },
  3389. {
  3390. name: "Planetary",
  3391. height: math.unit(3, "earths"),
  3392. form: "bun"
  3393. },
  3394. ],
  3395. {
  3396. "weaselbun": {
  3397. name: "Weaselbun",
  3398. default: true
  3399. },
  3400. "bun": {
  3401. name: "Bun",
  3402. },
  3403. }
  3404. ))
  3405. characterMakers.push(() => makeCharacter(
  3406. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3407. {
  3408. front: {
  3409. height: math.unit(7, "feet"),
  3410. weight: math.unit(90, "kg"),
  3411. name: "Front",
  3412. image: {
  3413. source: "./media/characters/kurrikage/front.svg",
  3414. extra: 1845/1733,
  3415. bottom: 119/1964
  3416. }
  3417. },
  3418. back: {
  3419. height: math.unit(7, "feet"),
  3420. weight: math.unit(90, "kg"),
  3421. name: "Back",
  3422. image: {
  3423. source: "./media/characters/kurrikage/back.svg",
  3424. extra: 1790/1677,
  3425. bottom: 61/1851
  3426. }
  3427. },
  3428. dressed: {
  3429. height: math.unit(7, "feet"),
  3430. weight: math.unit(90, "kg"),
  3431. name: "Dressed",
  3432. image: {
  3433. source: "./media/characters/kurrikage/dressed.svg",
  3434. extra: 1845/1733,
  3435. bottom: 119/1964
  3436. }
  3437. },
  3438. foot: {
  3439. height: math.unit(1.5, "feet"),
  3440. name: "Foot",
  3441. image: {
  3442. source: "./media/characters/kurrikage/foot.svg"
  3443. }
  3444. },
  3445. staff: {
  3446. height: math.unit(6.7, "feet"),
  3447. name: "Staff",
  3448. image: {
  3449. source: "./media/characters/kurrikage/staff.svg"
  3450. }
  3451. },
  3452. peek: {
  3453. height: math.unit(1.05, "feet"),
  3454. name: "Peeking",
  3455. image: {
  3456. source: "./media/characters/kurrikage/peek.svg",
  3457. bottom: 0.08
  3458. }
  3459. },
  3460. },
  3461. [
  3462. {
  3463. name: "Normal",
  3464. height: math.unit(12, "feet"),
  3465. default: true
  3466. },
  3467. {
  3468. name: "Big",
  3469. height: math.unit(20, "feet")
  3470. },
  3471. {
  3472. name: "Macro",
  3473. height: math.unit(500, "feet")
  3474. },
  3475. {
  3476. name: "Megamacro",
  3477. height: math.unit(20, "miles")
  3478. },
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(6, "feet"),
  3486. weight: math.unit(75, "kg"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/shingo/front.svg",
  3490. extra: 1900/1825,
  3491. bottom: 82/1982
  3492. }
  3493. },
  3494. side: {
  3495. height: math.unit(6, "feet"),
  3496. weight: math.unit(75, "kg"),
  3497. name: "Side",
  3498. image: {
  3499. source: "./media/characters/shingo/side.svg",
  3500. extra: 1930/1865,
  3501. bottom: 16/1946
  3502. }
  3503. },
  3504. back: {
  3505. height: math.unit(6, "feet"),
  3506. weight: math.unit(75, "kg"),
  3507. name: "Back",
  3508. image: {
  3509. source: "./media/characters/shingo/back.svg",
  3510. extra: 1922/1852,
  3511. bottom: 16/1938
  3512. }
  3513. },
  3514. frontDressed: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(150, "lb"),
  3517. name: "Front-dressed",
  3518. image: {
  3519. source: "./media/characters/shingo/front-dressed.svg",
  3520. extra: 1900/1825,
  3521. bottom: 82/1982
  3522. }
  3523. },
  3524. paw: {
  3525. height: math.unit(1.29, "feet"),
  3526. name: "Paw",
  3527. image: {
  3528. source: "./media/characters/shingo/paw.svg"
  3529. }
  3530. },
  3531. hand: {
  3532. height: math.unit(1.07, "feet"),
  3533. name: "Hand",
  3534. image: {
  3535. source: "./media/characters/shingo/hand.svg"
  3536. }
  3537. },
  3538. frontAlt: {
  3539. height: math.unit(6, "feet"),
  3540. weight: math.unit(75, "kg"),
  3541. name: "Front (Alt)",
  3542. image: {
  3543. source: "./media/characters/shingo/front-alt.svg",
  3544. extra: 3511 / 3338,
  3545. bottom: 0.005
  3546. }
  3547. },
  3548. frontAlt2: {
  3549. height: math.unit(6, "feet"),
  3550. weight: math.unit(75, "kg"),
  3551. name: "Front (Alt 2)",
  3552. image: {
  3553. source: "./media/characters/shingo/front-alt-2.svg",
  3554. extra: 706/681,
  3555. bottom: 11/717
  3556. }
  3557. },
  3558. pawAlt: {
  3559. height: math.unit(1, "feet"),
  3560. name: "Paw (Alt)",
  3561. image: {
  3562. source: "./media/characters/shingo/paw-alt.svg"
  3563. }
  3564. },
  3565. },
  3566. [
  3567. {
  3568. name: "Micro",
  3569. height: math.unit(4, "inches")
  3570. },
  3571. {
  3572. name: "Normal",
  3573. height: math.unit(6, "feet"),
  3574. default: true
  3575. },
  3576. {
  3577. name: "Macro",
  3578. height: math.unit(108, "feet")
  3579. },
  3580. {
  3581. name: "Macro+",
  3582. height: math.unit(1500, "feet")
  3583. },
  3584. ]
  3585. ))
  3586. characterMakers.push(() => makeCharacter(
  3587. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3588. {
  3589. side: {
  3590. height: math.unit(6, "feet"),
  3591. weight: math.unit(75, "kg"),
  3592. name: "Side",
  3593. image: {
  3594. source: "./media/characters/aigey/side.svg"
  3595. }
  3596. },
  3597. },
  3598. [
  3599. {
  3600. name: "Macro",
  3601. height: math.unit(200, "feet"),
  3602. default: true
  3603. },
  3604. {
  3605. name: "Megamacro",
  3606. height: math.unit(100, "miles")
  3607. },
  3608. ]
  3609. )
  3610. )
  3611. characterMakers.push(() => makeCharacter(
  3612. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3613. {
  3614. front: {
  3615. height: math.unit(5 + 5 / 12, "feet"),
  3616. weight: math.unit(75, "kg"),
  3617. name: "Front",
  3618. image: {
  3619. source: "./media/characters/natasha/front.svg",
  3620. extra: 859 / 824,
  3621. bottom: 23 / 879.6
  3622. }
  3623. },
  3624. frontNsfw: {
  3625. height: math.unit(5 + 5 / 12, "feet"),
  3626. weight: math.unit(75, "kg"),
  3627. name: "Front (NSFW)",
  3628. image: {
  3629. source: "./media/characters/natasha/front-nsfw.svg",
  3630. extra: 859 / 824,
  3631. bottom: 23 / 879.6
  3632. }
  3633. },
  3634. frontErect: {
  3635. height: math.unit(5 + 5 / 12, "feet"),
  3636. weight: math.unit(75, "kg"),
  3637. name: "Front (Erect)",
  3638. image: {
  3639. source: "./media/characters/natasha/front-erect.svg",
  3640. extra: 859 / 824,
  3641. bottom: 23 / 879.6
  3642. }
  3643. },
  3644. back: {
  3645. height: math.unit(5 + 5 / 12, "feet"),
  3646. weight: math.unit(75, "kg"),
  3647. name: "Back",
  3648. image: {
  3649. source: "./media/characters/natasha/back.svg",
  3650. extra: 887.9 / 852.6,
  3651. bottom: 9.7 / 896.4
  3652. }
  3653. },
  3654. backAlt: {
  3655. height: math.unit(5 + 5 / 12, "feet"),
  3656. weight: math.unit(75, "kg"),
  3657. name: "Back (Alt)",
  3658. image: {
  3659. source: "./media/characters/natasha/back-alt.svg",
  3660. extra: 1236.7 / 1192,
  3661. bottom: 22.3 / 1258.2
  3662. }
  3663. },
  3664. dick: {
  3665. height: math.unit(1.772, "feet"),
  3666. name: "Dick",
  3667. image: {
  3668. source: "./media/characters/natasha/dick.svg"
  3669. }
  3670. },
  3671. paw: {
  3672. height: math.unit(0.250, "meters"),
  3673. name: "Paw",
  3674. image: {
  3675. source: "./media/characters/natasha/paw.svg"
  3676. },
  3677. extraAttributes: {
  3678. "toeSize": {
  3679. name: "Toe Size",
  3680. power: 2,
  3681. type: "area",
  3682. base: math.unit(0.0024, "m^2")
  3683. },
  3684. "padSize": {
  3685. name: "Pad Size",
  3686. power: 2,
  3687. type: "area",
  3688. base: math.unit(0.00889, "m^2")
  3689. },
  3690. "pawSize": {
  3691. name: "Paw Size",
  3692. power: 2,
  3693. type: "area",
  3694. base: math.unit(0.023667, "m^2")
  3695. },
  3696. }
  3697. },
  3698. },
  3699. [
  3700. {
  3701. name: "Shortstack",
  3702. height: math.unit(3, "feet"),
  3703. default: true
  3704. },
  3705. {
  3706. name: "Normal",
  3707. height: math.unit(5 + 5 / 12, "feet")
  3708. },
  3709. {
  3710. name: "Large",
  3711. height: math.unit(12, "feet")
  3712. },
  3713. {
  3714. name: "Macro",
  3715. height: math.unit(100, "feet")
  3716. },
  3717. {
  3718. name: "Macro+",
  3719. height: math.unit(260, "feet")
  3720. },
  3721. {
  3722. name: "Macro++",
  3723. height: math.unit(1, "mile")
  3724. },
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3729. {
  3730. front: {
  3731. height: math.unit(6, "feet"),
  3732. weight: math.unit(75, "kg"),
  3733. name: "Front",
  3734. image: {
  3735. source: "./media/characters/malik/front.svg",
  3736. extra: 1750/1561,
  3737. bottom: 80/1830
  3738. },
  3739. extraAttributes: {
  3740. "toeSize": {
  3741. name: "Toe Size",
  3742. power: 2,
  3743. type: "area",
  3744. base: math.unit(0.0159, "m^2")
  3745. },
  3746. "pawSize": {
  3747. name: "Paw Size",
  3748. power: 2,
  3749. type: "area",
  3750. base: math.unit(0.09834, "m^2")
  3751. },
  3752. }
  3753. },
  3754. side: {
  3755. height: math.unit(6, "feet"),
  3756. weight: math.unit(75, "kg"),
  3757. name: "Side",
  3758. image: {
  3759. source: "./media/characters/malik/side.svg",
  3760. extra: 1802/1685,
  3761. bottom: 42/1844
  3762. },
  3763. extraAttributes: {
  3764. "toeSize": {
  3765. name: "Toe Size",
  3766. power: 2,
  3767. type: "area",
  3768. base: math.unit(0.0159, "m^2")
  3769. },
  3770. "pawSize": {
  3771. name: "Paw Size",
  3772. power: 2,
  3773. type: "area",
  3774. base: math.unit(0.09834, "m^2")
  3775. },
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(6, "feet"),
  3780. weight: math.unit(75, "kg"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/malik/back.svg",
  3784. extra: 1803/1607,
  3785. bottom: 33/1836
  3786. },
  3787. extraAttributes: {
  3788. "toeSize": {
  3789. name: "Toe Size",
  3790. power: 2,
  3791. type: "area",
  3792. base: math.unit(0.0159, "m^2")
  3793. },
  3794. "pawSize": {
  3795. name: "Paw Size",
  3796. power: 2,
  3797. type: "area",
  3798. base: math.unit(0.09834, "m^2")
  3799. },
  3800. }
  3801. },
  3802. },
  3803. [
  3804. {
  3805. name: "Macro",
  3806. height: math.unit(156, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(1188, "feet")
  3812. },
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3817. {
  3818. front: {
  3819. height: math.unit(6, "feet"),
  3820. weight: math.unit(75, "kg"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/sefer/front.svg",
  3824. extra: 848 / 659,
  3825. bottom: 28.3 / 876.442
  3826. }
  3827. },
  3828. back: {
  3829. height: math.unit(6, "feet"),
  3830. weight: math.unit(75, "kg"),
  3831. name: "Back",
  3832. image: {
  3833. source: "./media/characters/sefer/back.svg",
  3834. extra: 864 / 695,
  3835. bottom: 10 / 871
  3836. }
  3837. },
  3838. frontDressed: {
  3839. height: math.unit(6, "feet"),
  3840. weight: math.unit(75, "kg"),
  3841. name: "Dressed",
  3842. image: {
  3843. source: "./media/characters/sefer/dressed.svg",
  3844. extra: 839 / 653,
  3845. bottom: 37.6 / 878
  3846. }
  3847. },
  3848. },
  3849. [
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(6, "feet"),
  3853. default: true
  3854. },
  3855. {
  3856. name: "Big",
  3857. height: math.unit(8, "meters")
  3858. },
  3859. ]
  3860. ))
  3861. characterMakers.push(() => makeCharacter(
  3862. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3863. {
  3864. body: {
  3865. height: math.unit(2.2428, "meter"),
  3866. weight: math.unit(124.738, "kg"),
  3867. name: "Body",
  3868. image: {
  3869. extra: 1225 / 1050,
  3870. source: "./media/characters/north/front.svg"
  3871. }
  3872. }
  3873. },
  3874. [
  3875. {
  3876. name: "Micro",
  3877. height: math.unit(4, "inches")
  3878. },
  3879. {
  3880. name: "Macro",
  3881. height: math.unit(63, "meters")
  3882. },
  3883. {
  3884. name: "Megamacro",
  3885. height: math.unit(101, "miles"),
  3886. default: true
  3887. }
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3892. {
  3893. angled: {
  3894. height: math.unit(4, "meter"),
  3895. weight: math.unit(150, "kg"),
  3896. name: "Angled",
  3897. image: {
  3898. source: "./media/characters/talan/angled-sfw.svg",
  3899. bottom: 29 / 3734
  3900. }
  3901. },
  3902. angledNsfw: {
  3903. height: math.unit(4, "meter"),
  3904. weight: math.unit(150, "kg"),
  3905. name: "Angled (NSFW)",
  3906. image: {
  3907. source: "./media/characters/talan/angled-nsfw.svg",
  3908. bottom: 29 / 3734
  3909. }
  3910. },
  3911. frontNsfw: {
  3912. height: math.unit(4, "meter"),
  3913. weight: math.unit(150, "kg"),
  3914. name: "Front (NSFW)",
  3915. image: {
  3916. source: "./media/characters/talan/front-nsfw.svg",
  3917. bottom: 29 / 3734
  3918. }
  3919. },
  3920. sideNsfw: {
  3921. height: math.unit(4, "meter"),
  3922. weight: math.unit(150, "kg"),
  3923. name: "Side (NSFW)",
  3924. image: {
  3925. source: "./media/characters/talan/side-nsfw.svg",
  3926. bottom: 29 / 3734
  3927. }
  3928. },
  3929. back: {
  3930. height: math.unit(4, "meter"),
  3931. weight: math.unit(150, "kg"),
  3932. name: "Back",
  3933. image: {
  3934. source: "./media/characters/talan/back.svg"
  3935. }
  3936. },
  3937. dickBottom: {
  3938. height: math.unit(0.621, "meter"),
  3939. name: "Dick (Bottom)",
  3940. image: {
  3941. source: "./media/characters/talan/dick-bottom.svg"
  3942. }
  3943. },
  3944. dickTop: {
  3945. height: math.unit(0.621, "meter"),
  3946. name: "Dick (Top)",
  3947. image: {
  3948. source: "./media/characters/talan/dick-top.svg"
  3949. }
  3950. },
  3951. dickSide: {
  3952. height: math.unit(0.305, "meter"),
  3953. name: "Dick (Side)",
  3954. image: {
  3955. source: "./media/characters/talan/dick-side.svg"
  3956. }
  3957. },
  3958. dickFront: {
  3959. height: math.unit(0.305, "meter"),
  3960. name: "Dick (Front)",
  3961. image: {
  3962. source: "./media/characters/talan/dick-front.svg"
  3963. }
  3964. },
  3965. },
  3966. [
  3967. {
  3968. name: "Normal",
  3969. height: math.unit(4, "meters")
  3970. },
  3971. {
  3972. name: "Macro",
  3973. height: math.unit(100, "meters")
  3974. },
  3975. {
  3976. name: "Megamacro",
  3977. height: math.unit(2, "miles"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Gigamacro",
  3982. height: math.unit(5000, "miles")
  3983. },
  3984. {
  3985. name: "Teramacro",
  3986. height: math.unit(100, "parsecs")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(2, "meter"),
  3995. weight: math.unit(90, "kg"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/gael'rathus/front.svg"
  3999. }
  4000. },
  4001. frontAlt: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(90, "kg"),
  4004. name: "Front (alt)",
  4005. image: {
  4006. source: "./media/characters/gael'rathus/front-alt.svg"
  4007. }
  4008. },
  4009. frontAlt2: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(90, "kg"),
  4012. name: "Front (alt 2)",
  4013. image: {
  4014. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4015. }
  4016. }
  4017. },
  4018. [
  4019. {
  4020. name: "Normal",
  4021. height: math.unit(9, "feet"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Large",
  4026. height: math.unit(25, "feet")
  4027. },
  4028. {
  4029. name: "Macro",
  4030. height: math.unit(0.25, "miles")
  4031. },
  4032. {
  4033. name: "Megamacro",
  4034. height: math.unit(10, "miles")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4040. {
  4041. side: {
  4042. height: math.unit(2, "meter"),
  4043. weight: math.unit(140, "kg"),
  4044. name: "Side",
  4045. image: {
  4046. source: "./media/characters/sosha/side.svg",
  4047. extra: 1170/1006,
  4048. bottom: 94/1264
  4049. }
  4050. },
  4051. maw: {
  4052. height: math.unit(2.87, "feet"),
  4053. name: "Maw",
  4054. image: {
  4055. source: "./media/characters/sosha/maw.svg",
  4056. extra: 966/865,
  4057. bottom: 0/966
  4058. }
  4059. },
  4060. cooch: {
  4061. height: math.unit(5.6, "feet"),
  4062. name: "Cooch",
  4063. image: {
  4064. source: "./media/characters/sosha/cooch.svg"
  4065. }
  4066. },
  4067. },
  4068. [
  4069. {
  4070. name: "Normal",
  4071. height: math.unit(12, "feet"),
  4072. default: true
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4078. {
  4079. side: {
  4080. height: math.unit(5 + 5 / 12, "feet"),
  4081. weight: math.unit(170, "kg"),
  4082. name: "Side",
  4083. image: {
  4084. source: "./media/characters/runnola/side.svg",
  4085. extra: 741 / 448,
  4086. bottom: 0.05
  4087. }
  4088. },
  4089. },
  4090. [
  4091. {
  4092. name: "Small",
  4093. height: math.unit(3, "feet")
  4094. },
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(5 + 5 / 12, "feet"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Big",
  4102. height: math.unit(10, "feet")
  4103. },
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2, "meter"),
  4111. weight: math.unit(50, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/kurribird/front.svg",
  4115. bottom: 0.015
  4116. }
  4117. },
  4118. frontAlt: {
  4119. height: math.unit(1.5, "meter"),
  4120. weight: math.unit(50, "kg"),
  4121. name: "Front (Alt)",
  4122. image: {
  4123. source: "./media/characters/kurribird/front-alt.svg",
  4124. extra: 1.45
  4125. }
  4126. },
  4127. },
  4128. [
  4129. {
  4130. name: "Normal",
  4131. height: math.unit(7, "feet")
  4132. },
  4133. {
  4134. name: "Big",
  4135. height: math.unit(12, "feet"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "Macro",
  4140. height: math.unit(1500, "feet")
  4141. },
  4142. {
  4143. name: "Megamacro",
  4144. height: math.unit(2, "miles")
  4145. }
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(2, "meter"),
  4153. weight: math.unit(80, "kg"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/elbial/front.svg",
  4157. extra: 1643 / 1556,
  4158. bottom: 60.2 / 1696
  4159. }
  4160. },
  4161. side: {
  4162. height: math.unit(2, "meter"),
  4163. weight: math.unit(80, "kg"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/elbial/side.svg",
  4167. extra: 1601/1528,
  4168. bottom: 97/1698
  4169. }
  4170. },
  4171. back: {
  4172. height: math.unit(2, "meter"),
  4173. weight: math.unit(80, "kg"),
  4174. name: "Back",
  4175. image: {
  4176. source: "./media/characters/elbial/back.svg",
  4177. extra: 1653/1569,
  4178. bottom: 20/1673
  4179. }
  4180. },
  4181. frontDressed: {
  4182. height: math.unit(2, "meter"),
  4183. weight: math.unit(80, "kg"),
  4184. name: "Front (Dressed)",
  4185. image: {
  4186. source: "./media/characters/elbial/front-dressed.svg",
  4187. extra: 1638/1569,
  4188. bottom: 70/1708
  4189. }
  4190. },
  4191. genitals: {
  4192. height: math.unit(2 / 3.367, "meter"),
  4193. name: "Genitals",
  4194. image: {
  4195. source: "./media/characters/elbial/genitals.svg"
  4196. }
  4197. },
  4198. },
  4199. [
  4200. {
  4201. name: "Large",
  4202. height: math.unit(100, "feet")
  4203. },
  4204. {
  4205. name: "Macro",
  4206. height: math.unit(500, "feet"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Megamacro",
  4211. height: math.unit(10, "miles")
  4212. },
  4213. {
  4214. name: "Gigamacro",
  4215. height: math.unit(25000, "miles")
  4216. },
  4217. {
  4218. name: "Full-Size",
  4219. height: math.unit(8000000, "gigaparsecs")
  4220. }
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4225. {
  4226. front: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(60, "kg"),
  4229. name: "Front",
  4230. image: {
  4231. source: "./media/characters/noah/front.svg"
  4232. }
  4233. },
  4234. talons: {
  4235. height: math.unit(0.315, "meter"),
  4236. name: "Talons",
  4237. image: {
  4238. source: "./media/characters/noah/talons.svg"
  4239. }
  4240. }
  4241. },
  4242. [
  4243. {
  4244. name: "Large",
  4245. height: math.unit(50, "feet")
  4246. },
  4247. {
  4248. name: "Macro",
  4249. height: math.unit(750, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Megamacro",
  4254. height: math.unit(50, "miles")
  4255. },
  4256. {
  4257. name: "Gigamacro",
  4258. height: math.unit(100000, "miles")
  4259. },
  4260. {
  4261. name: "Full-Size",
  4262. height: math.unit(3000000000, "miles")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(80, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/natalya/front.svg"
  4275. }
  4276. },
  4277. back: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(80, "kg"),
  4280. name: "Back",
  4281. image: {
  4282. source: "./media/characters/natalya/back.svg"
  4283. }
  4284. }
  4285. },
  4286. [
  4287. {
  4288. name: "Normal",
  4289. height: math.unit(150, "feet"),
  4290. default: true
  4291. },
  4292. {
  4293. name: "Megamacro",
  4294. height: math.unit(5, "miles")
  4295. },
  4296. {
  4297. name: "Full-Size",
  4298. height: math.unit(600, "kiloparsecs")
  4299. }
  4300. ]
  4301. ))
  4302. characterMakers.push(() => makeCharacter(
  4303. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4304. {
  4305. front: {
  4306. height: math.unit(2, "meter"),
  4307. weight: math.unit(50, "kg"),
  4308. name: "Front",
  4309. image: {
  4310. source: "./media/characters/erestrebah/front.svg",
  4311. extra: 1262/1162,
  4312. bottom: 96/1358
  4313. }
  4314. },
  4315. back: {
  4316. height: math.unit(2, "meter"),
  4317. weight: math.unit(50, "kg"),
  4318. name: "Back",
  4319. image: {
  4320. source: "./media/characters/erestrebah/back.svg",
  4321. extra: 1257/1139,
  4322. bottom: 13/1270
  4323. }
  4324. },
  4325. wing: {
  4326. height: math.unit(2, "meter"),
  4327. weight: math.unit(50, "kg"),
  4328. name: "Wing",
  4329. image: {
  4330. source: "./media/characters/erestrebah/wing.svg",
  4331. extra: 1262/1162,
  4332. bottom: 96/1358
  4333. }
  4334. },
  4335. mouth: {
  4336. height: math.unit(0.39, "feet"),
  4337. name: "Mouth",
  4338. image: {
  4339. source: "./media/characters/erestrebah/mouth.svg"
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(10, "feet")
  4347. },
  4348. {
  4349. name: "Large",
  4350. height: math.unit(50, "feet"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Macro",
  4355. height: math.unit(300, "feet")
  4356. },
  4357. {
  4358. name: "Macro+",
  4359. height: math.unit(750, "feet")
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(3, "miles")
  4364. }
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4369. {
  4370. front: {
  4371. height: math.unit(2, "meter"),
  4372. weight: math.unit(80, "kg"),
  4373. name: "Front",
  4374. image: {
  4375. source: "./media/characters/jennifer/front.svg",
  4376. bottom: 0.11,
  4377. extra: 1.16
  4378. }
  4379. },
  4380. frontAlt: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(80, "kg"),
  4383. name: "Front (Alt)",
  4384. image: {
  4385. source: "./media/characters/jennifer/front-alt.svg"
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Canon Height",
  4392. height: math.unit(120, "feet"),
  4393. default: true
  4394. },
  4395. {
  4396. name: "Macro+",
  4397. height: math.unit(300, "feet")
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(20000, "feet")
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4407. {
  4408. front: {
  4409. height: math.unit(2, "meter"),
  4410. weight: math.unit(50, "kg"),
  4411. name: "Front",
  4412. image: {
  4413. source: "./media/characters/kalista/front.svg",
  4414. extra: 1314/1145,
  4415. bottom: 101/1415
  4416. }
  4417. },
  4418. back: {
  4419. height: math.unit(2, "meter"),
  4420. weight: math.unit(50, "kg"),
  4421. name: "Back",
  4422. image: {
  4423. source: "./media/characters/kalista/back.svg",
  4424. extra: 1366 / 1156,
  4425. bottom: 33.9 / 1362.78
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Uncomfortably Small",
  4432. height: math.unit(10, "feet")
  4433. },
  4434. {
  4435. name: "Small",
  4436. height: math.unit(30, "feet")
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(100, "feet"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Macro+",
  4445. height: math.unit(2000, "feet")
  4446. },
  4447. {
  4448. name: "True Form",
  4449. height: math.unit(8924, "miles")
  4450. }
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4455. {
  4456. front: {
  4457. height: math.unit(2, "meter"),
  4458. weight: math.unit(120, "kg"),
  4459. name: "Front",
  4460. image: {
  4461. source: "./media/characters/ggv/front.svg"
  4462. }
  4463. },
  4464. side: {
  4465. height: math.unit(2, "meter"),
  4466. weight: math.unit(120, "kg"),
  4467. name: "Side",
  4468. image: {
  4469. source: "./media/characters/ggv/side.svg"
  4470. }
  4471. }
  4472. },
  4473. [
  4474. {
  4475. name: "Extremely Puny",
  4476. height: math.unit(9 + 5 / 12, "feet")
  4477. },
  4478. {
  4479. name: "Horribly Small",
  4480. height: math.unit(47.7, "miles"),
  4481. default: true
  4482. },
  4483. {
  4484. name: "Reasonably Sized",
  4485. height: math.unit(25000, "parsecs")
  4486. },
  4487. {
  4488. name: "Slightly Uncompressed",
  4489. height: math.unit(7.77e31, "parsecs")
  4490. },
  4491. {
  4492. name: "Omniversal",
  4493. height: math.unit(1e300, "meters")
  4494. },
  4495. ]
  4496. ))
  4497. characterMakers.push(() => makeCharacter(
  4498. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4499. {
  4500. front: {
  4501. height: math.unit(2, "meter"),
  4502. weight: math.unit(75, "lb"),
  4503. name: "Front",
  4504. image: {
  4505. source: "./media/characters/napalm/front.svg"
  4506. }
  4507. },
  4508. back: {
  4509. height: math.unit(2, "meter"),
  4510. weight: math.unit(75, "lb"),
  4511. name: "Back",
  4512. image: {
  4513. source: "./media/characters/napalm/back.svg"
  4514. }
  4515. }
  4516. },
  4517. [
  4518. {
  4519. name: "Standard",
  4520. height: math.unit(55, "feet"),
  4521. default: true
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4527. {
  4528. front: {
  4529. height: math.unit(7 + 5 / 6, "feet"),
  4530. weight: math.unit(325, "lb"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/asana/front.svg",
  4534. extra: 1133 / 1060,
  4535. bottom: 15.2 / 1148.6
  4536. }
  4537. },
  4538. back: {
  4539. height: math.unit(7 + 5 / 6, "feet"),
  4540. weight: math.unit(325, "lb"),
  4541. name: "Back",
  4542. image: {
  4543. source: "./media/characters/asana/back.svg",
  4544. extra: 1114 / 1043,
  4545. bottom: 5 / 1120
  4546. }
  4547. },
  4548. dressedDark: {
  4549. height: math.unit(7 + 5 / 6, "feet"),
  4550. weight: math.unit(325, "lb"),
  4551. name: "Dressed (Dark)",
  4552. image: {
  4553. source: "./media/characters/asana/dressed-dark.svg",
  4554. extra: 1133 / 1060,
  4555. bottom: 15.2 / 1148.6
  4556. }
  4557. },
  4558. dressedLight: {
  4559. height: math.unit(7 + 5 / 6, "feet"),
  4560. weight: math.unit(325, "lb"),
  4561. name: "Dressed (Light)",
  4562. image: {
  4563. source: "./media/characters/asana/dressed-light.svg",
  4564. extra: 1133 / 1060,
  4565. bottom: 15.2 / 1148.6
  4566. }
  4567. },
  4568. },
  4569. [
  4570. {
  4571. name: "Standard",
  4572. height: math.unit(7 + 5 / 6, "feet"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Large",
  4577. height: math.unit(10, "meters")
  4578. },
  4579. {
  4580. name: "Macro",
  4581. height: math.unit(2500, "meters")
  4582. },
  4583. {
  4584. name: "Megamacro",
  4585. height: math.unit(5e6, "meters")
  4586. },
  4587. {
  4588. name: "Examacro",
  4589. height: math.unit(5e12, "lightyears")
  4590. },
  4591. {
  4592. name: "Max Size",
  4593. height: math.unit(1e31, "lightyears")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(2, "meter"),
  4602. weight: math.unit(60, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/ebony/front.svg",
  4606. bottom: 0.03,
  4607. extra: 1045 / 810 + 0.03
  4608. }
  4609. },
  4610. side: {
  4611. height: math.unit(2, "meter"),
  4612. weight: math.unit(60, "kg"),
  4613. name: "Side",
  4614. image: {
  4615. source: "./media/characters/ebony/side.svg",
  4616. bottom: 0.03,
  4617. extra: 1045 / 810 + 0.03
  4618. }
  4619. },
  4620. back: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(60, "kg"),
  4623. name: "Back",
  4624. image: {
  4625. source: "./media/characters/ebony/back.svg",
  4626. bottom: 0.01,
  4627. extra: 1045 / 810 + 0.01
  4628. }
  4629. },
  4630. },
  4631. [
  4632. // TODO check why I did this lol
  4633. {
  4634. name: "Standard",
  4635. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4636. default: true
  4637. },
  4638. {
  4639. name: "Macro",
  4640. height: math.unit(200, "feet")
  4641. },
  4642. {
  4643. name: "Gigamacro",
  4644. height: math.unit(13000, "km")
  4645. }
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4650. {
  4651. front: {
  4652. height: math.unit(6, "feet"),
  4653. weight: math.unit(175, "lb"),
  4654. name: "Front",
  4655. image: {
  4656. source: "./media/characters/mountain/front.svg",
  4657. extra: 972 / 955,
  4658. bottom: 64 / 1036.6
  4659. }
  4660. },
  4661. back: {
  4662. height: math.unit(6, "feet"),
  4663. weight: math.unit(175, "lb"),
  4664. name: "Back",
  4665. image: {
  4666. source: "./media/characters/mountain/back.svg",
  4667. extra: 970 / 950,
  4668. bottom: 28.25 / 999
  4669. }
  4670. },
  4671. },
  4672. [
  4673. {
  4674. name: "Large",
  4675. height: math.unit(20, "meters")
  4676. },
  4677. {
  4678. name: "Macro",
  4679. height: math.unit(300, "meters")
  4680. },
  4681. {
  4682. name: "Gigamacro",
  4683. height: math.unit(10000, "km"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Examacro",
  4688. height: math.unit(10e9, "lightyears")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(8, "feet"),
  4697. weight: math.unit(500, "lb"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/rick/front.svg"
  4701. }
  4702. }
  4703. },
  4704. [
  4705. {
  4706. name: "Normal",
  4707. height: math.unit(8, "feet"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(5, "km")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(8, "feet"),
  4721. weight: math.unit(120, "lb"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/ona/front.svg"
  4725. }
  4726. },
  4727. frontAlt: {
  4728. height: math.unit(8, "feet"),
  4729. weight: math.unit(120, "lb"),
  4730. name: "Front (Alt)",
  4731. image: {
  4732. source: "./media/characters/ona/front-alt.svg"
  4733. }
  4734. },
  4735. back: {
  4736. height: math.unit(8, "feet"),
  4737. weight: math.unit(120, "lb"),
  4738. name: "Back",
  4739. image: {
  4740. source: "./media/characters/ona/back.svg"
  4741. }
  4742. },
  4743. foot: {
  4744. height: math.unit(1.1, "feet"),
  4745. name: "Foot",
  4746. image: {
  4747. source: "./media/characters/ona/foot.svg"
  4748. }
  4749. }
  4750. },
  4751. [
  4752. {
  4753. name: "Megamacro",
  4754. height: math.unit(70, "km"),
  4755. default: true
  4756. },
  4757. {
  4758. name: "Gigamacro",
  4759. height: math.unit(681818, "miles")
  4760. },
  4761. {
  4762. name: "Examacro",
  4763. height: math.unit(3800000, "lightyears")
  4764. },
  4765. ]
  4766. ))
  4767. characterMakers.push(() => makeCharacter(
  4768. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4769. {
  4770. front: {
  4771. height: math.unit(12, "feet"),
  4772. weight: math.unit(3000, "lb"),
  4773. name: "Front",
  4774. image: {
  4775. source: "./media/characters/mech/front.svg",
  4776. extra: 2900 / 2770,
  4777. bottom: 110 / 3010
  4778. }
  4779. },
  4780. back: {
  4781. height: math.unit(12, "feet"),
  4782. weight: math.unit(3000, "lb"),
  4783. name: "Back",
  4784. image: {
  4785. source: "./media/characters/mech/back.svg",
  4786. extra: 3011 / 2890,
  4787. bottom: 94 / 3105
  4788. }
  4789. },
  4790. maw: {
  4791. height: math.unit(3.07, "feet"),
  4792. name: "Maw",
  4793. image: {
  4794. source: "./media/characters/mech/maw.svg"
  4795. }
  4796. },
  4797. head: {
  4798. height: math.unit(3.07, "feet"),
  4799. name: "Head",
  4800. image: {
  4801. source: "./media/characters/mech/head.svg"
  4802. }
  4803. },
  4804. dick: {
  4805. height: math.unit(1.43, "feet"),
  4806. name: "Dick",
  4807. image: {
  4808. source: "./media/characters/mech/dick.svg"
  4809. }
  4810. },
  4811. },
  4812. [
  4813. {
  4814. name: "Normal",
  4815. height: math.unit(12, "feet")
  4816. },
  4817. {
  4818. name: "Macro",
  4819. height: math.unit(300, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Macro+",
  4824. height: math.unit(1500, "feet")
  4825. },
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(1.3, "meter"),
  4833. weight: math.unit(30, "kg"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/gregory/front.svg",
  4837. }
  4838. }
  4839. },
  4840. [
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(1.3, "meter"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Macro",
  4848. height: math.unit(20, "meter")
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(2.8, "meter"),
  4857. weight: math.unit(200, "kg"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/elory/front.svg",
  4861. }
  4862. }
  4863. },
  4864. [
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(2.8, "meter"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Macro",
  4872. height: math.unit(38, "meter")
  4873. }
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(470, "feet"),
  4881. weight: math.unit(924, "tons"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/angelpatamon/front.svg",
  4885. }
  4886. }
  4887. },
  4888. [
  4889. {
  4890. name: "Normal",
  4891. height: math.unit(470, "feet"),
  4892. default: true
  4893. },
  4894. {
  4895. name: "Deity Size I",
  4896. height: math.unit(28651.2, "km")
  4897. },
  4898. {
  4899. name: "Deity Size II",
  4900. height: math.unit(171907.2, "km")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4906. {
  4907. side: {
  4908. height: math.unit(7.2, "meter"),
  4909. weight: math.unit(8.2, "tons"),
  4910. name: "Side",
  4911. image: {
  4912. source: "./media/characters/cryae/side.svg",
  4913. extra: 3500 / 1500
  4914. }
  4915. }
  4916. },
  4917. [
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(7.2, "meter"),
  4921. default: true
  4922. }
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(175, "lb"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/xera/front.svg",
  4934. extra: 2377 / 1972,
  4935. bottom: 75.5 / 2452
  4936. }
  4937. },
  4938. side: {
  4939. height: math.unit(6, "feet"),
  4940. weight: math.unit(175, "lb"),
  4941. name: "Side",
  4942. image: {
  4943. source: "./media/characters/xera/side.svg",
  4944. extra: 2345 / 2019,
  4945. bottom: 39.7 / 2384
  4946. }
  4947. },
  4948. back: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(175, "lb"),
  4951. name: "Back",
  4952. image: {
  4953. source: "./media/characters/xera/back.svg",
  4954. extra: 2095 / 1984,
  4955. bottom: 67 / 2166
  4956. }
  4957. },
  4958. },
  4959. [
  4960. {
  4961. name: "Small",
  4962. height: math.unit(10, "feet")
  4963. },
  4964. {
  4965. name: "Macro",
  4966. height: math.unit(500, "meters"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Macro+",
  4971. height: math.unit(10, "km")
  4972. },
  4973. {
  4974. name: "Gigamacro",
  4975. height: math.unit(25000, "km")
  4976. },
  4977. {
  4978. name: "Teramacro",
  4979. height: math.unit(3e6, "km")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(175, "lb"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/nebula/front.svg",
  4992. extra: 2566 / 2362,
  4993. bottom: 81 / 2644
  4994. }
  4995. }
  4996. },
  4997. [
  4998. {
  4999. name: "Small",
  5000. height: math.unit(4.5, "meters")
  5001. },
  5002. {
  5003. name: "Macro",
  5004. height: math.unit(1500, "meters"),
  5005. default: true
  5006. },
  5007. {
  5008. name: "Megamacro",
  5009. height: math.unit(150, "km")
  5010. },
  5011. {
  5012. name: "Gigamacro",
  5013. height: math.unit(27000, "km")
  5014. }
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5019. {
  5020. front: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(225, "lb"),
  5023. name: "Front",
  5024. image: {
  5025. source: "./media/characters/abysgar/front.svg",
  5026. extra: 1739/1614,
  5027. bottom: 71/1810
  5028. }
  5029. },
  5030. frontNsfw: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(225, "lb"),
  5033. name: "Front (NSFW)",
  5034. image: {
  5035. source: "./media/characters/abysgar/front-nsfw.svg",
  5036. extra: 1739/1614,
  5037. bottom: 71/1810
  5038. }
  5039. },
  5040. back: {
  5041. height: math.unit(4.6, "feet"),
  5042. weight: math.unit(225, "lb"),
  5043. name: "Back",
  5044. image: {
  5045. source: "./media/characters/abysgar/back.svg",
  5046. extra: 1384/1327,
  5047. bottom: 0/1384
  5048. }
  5049. },
  5050. head: {
  5051. height: math.unit(1.25, "feet"),
  5052. name: "Head",
  5053. image: {
  5054. source: "./media/characters/abysgar/head.svg",
  5055. extra: 669/569,
  5056. bottom: 0/669
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Small",
  5063. height: math.unit(4.5, "meters")
  5064. },
  5065. {
  5066. name: "Macro",
  5067. height: math.unit(1250, "meters"),
  5068. default: true
  5069. },
  5070. {
  5071. name: "Megamacro",
  5072. height: math.unit(125, "km")
  5073. },
  5074. {
  5075. name: "Gigamacro",
  5076. height: math.unit(26000, "km")
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(6, "feet"),
  5085. weight: math.unit(180, "lb"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/yakuz/front.svg"
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Small",
  5095. height: math.unit(5, "meters")
  5096. },
  5097. {
  5098. name: "Macro",
  5099. height: math.unit(1500, "meters"),
  5100. default: true
  5101. },
  5102. {
  5103. name: "Megamacro",
  5104. height: math.unit(200, "km")
  5105. },
  5106. {
  5107. name: "Gigamacro",
  5108. height: math.unit(100000, "km")
  5109. }
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5114. {
  5115. front: {
  5116. height: math.unit(6, "feet"),
  5117. weight: math.unit(175, "lb"),
  5118. name: "Front",
  5119. image: {
  5120. source: "./media/characters/mirova/front.svg",
  5121. extra: 3334 / 3071,
  5122. bottom: 42 / 3375.6
  5123. }
  5124. }
  5125. },
  5126. [
  5127. {
  5128. name: "Small",
  5129. height: math.unit(5, "meters")
  5130. },
  5131. {
  5132. name: "Macro",
  5133. height: math.unit(900, "meters"),
  5134. default: true
  5135. },
  5136. {
  5137. name: "Megamacro",
  5138. height: math.unit(135, "km")
  5139. },
  5140. {
  5141. name: "Gigamacro",
  5142. height: math.unit(20000, "km")
  5143. }
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5148. {
  5149. side: {
  5150. height: math.unit(28.35, "feet"),
  5151. weight: math.unit(99.75, "tons"),
  5152. name: "Side",
  5153. image: {
  5154. source: "./media/characters/asana-mech/side.svg",
  5155. extra: 923 / 699,
  5156. bottom: 50 / 975
  5157. }
  5158. },
  5159. chaingun: {
  5160. height: math.unit(7, "feet"),
  5161. weight: math.unit(2400, "lb"),
  5162. name: "Chaingun",
  5163. image: {
  5164. source: "./media/characters/asana-mech/chaingun.svg"
  5165. }
  5166. },
  5167. laser: {
  5168. height: math.unit(7.12, "feet"),
  5169. weight: math.unit(2000, "lb"),
  5170. name: "Laser",
  5171. image: {
  5172. source: "./media/characters/asana-mech/laser.svg"
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Normal",
  5179. height: math.unit(28.35, "feet"),
  5180. default: true
  5181. },
  5182. {
  5183. name: "Macro",
  5184. height: math.unit(2500, "feet")
  5185. },
  5186. {
  5187. name: "Megamacro",
  5188. height: math.unit(25, "miles")
  5189. },
  5190. {
  5191. name: "Examacro",
  5192. height: math.unit(6e8, "lightyears")
  5193. },
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5198. {
  5199. front: {
  5200. height: math.unit(5, "meters"),
  5201. weight: math.unit(1000, "kg"),
  5202. name: "Front",
  5203. image: {
  5204. source: "./media/characters/asche/front.svg",
  5205. extra: 1258 / 1190,
  5206. bottom: 47 / 1305
  5207. }
  5208. },
  5209. frontUnderwear: {
  5210. height: math.unit(5, "meters"),
  5211. weight: math.unit(1000, "kg"),
  5212. name: "Front (Underwear)",
  5213. image: {
  5214. source: "./media/characters/asche/front-underwear.svg",
  5215. extra: 1258 / 1190,
  5216. bottom: 47 / 1305
  5217. }
  5218. },
  5219. frontDressed: {
  5220. height: math.unit(5, "meters"),
  5221. weight: math.unit(1000, "kg"),
  5222. name: "Front (Dressed)",
  5223. image: {
  5224. source: "./media/characters/asche/front-dressed.svg",
  5225. extra: 1258 / 1190,
  5226. bottom: 47 / 1305
  5227. }
  5228. },
  5229. frontArmor: {
  5230. height: math.unit(5, "meters"),
  5231. weight: math.unit(1000, "kg"),
  5232. name: "Front (Armored)",
  5233. image: {
  5234. source: "./media/characters/asche/front-armored.svg",
  5235. extra: 1374 / 1308,
  5236. bottom: 23 / 1397
  5237. }
  5238. },
  5239. mp724: {
  5240. height: math.unit(0.96, "meters"),
  5241. weight: math.unit(38, "kg"),
  5242. name: "H&K MP724",
  5243. image: {
  5244. source: "./media/characters/asche/h&k-mp724.svg"
  5245. }
  5246. },
  5247. side: {
  5248. height: math.unit(5, "meters"),
  5249. weight: math.unit(1000, "kg"),
  5250. name: "Side",
  5251. image: {
  5252. source: "./media/characters/asche/side.svg",
  5253. extra: 1717 / 1609,
  5254. bottom: 0.005
  5255. }
  5256. },
  5257. back: {
  5258. height: math.unit(5, "meters"),
  5259. weight: math.unit(1000, "kg"),
  5260. name: "Back",
  5261. image: {
  5262. source: "./media/characters/asche/back.svg",
  5263. extra: 1570 / 1501
  5264. }
  5265. },
  5266. },
  5267. [
  5268. {
  5269. name: "DEFCON 5",
  5270. height: math.unit(5, "meters")
  5271. },
  5272. {
  5273. name: "DEFCON 4",
  5274. height: math.unit(500, "meters"),
  5275. default: true
  5276. },
  5277. {
  5278. name: "DEFCON 3",
  5279. height: math.unit(5, "km")
  5280. },
  5281. {
  5282. name: "DEFCON 2",
  5283. height: math.unit(500, "km")
  5284. },
  5285. {
  5286. name: "DEFCON 1",
  5287. height: math.unit(500000, "km")
  5288. },
  5289. {
  5290. name: "DEFCON 0",
  5291. height: math.unit(3, "gigaparsecs")
  5292. },
  5293. ]
  5294. ))
  5295. characterMakers.push(() => makeCharacter(
  5296. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5297. {
  5298. front: {
  5299. height: math.unit(2, "meters"),
  5300. weight: math.unit(76, "kg"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/gale/front.svg"
  5304. }
  5305. },
  5306. frontAlt1: {
  5307. height: math.unit(2, "meters"),
  5308. weight: math.unit(76, "kg"),
  5309. name: "Front (Alt 1)",
  5310. image: {
  5311. source: "./media/characters/gale/front-alt-1.svg"
  5312. }
  5313. },
  5314. frontAlt2: {
  5315. height: math.unit(2, "meters"),
  5316. weight: math.unit(76, "kg"),
  5317. name: "Front (Alt 2)",
  5318. image: {
  5319. source: "./media/characters/gale/front-alt-2.svg"
  5320. }
  5321. },
  5322. },
  5323. [
  5324. {
  5325. name: "Normal",
  5326. height: math.unit(7, "feet")
  5327. },
  5328. {
  5329. name: "Macro",
  5330. height: math.unit(150, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Macro+",
  5335. height: math.unit(300, "feet")
  5336. },
  5337. ]
  5338. ))
  5339. characterMakers.push(() => makeCharacter(
  5340. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5341. {
  5342. front: {
  5343. height: math.unit(5 + 10/12, "feet"),
  5344. weight: math.unit(67, "kg"),
  5345. name: "Front",
  5346. image: {
  5347. source: "./media/characters/draylen/front.svg",
  5348. extra: 832/777,
  5349. bottom: 85/917
  5350. }
  5351. }
  5352. },
  5353. [
  5354. {
  5355. name: "Normal",
  5356. height: math.unit(5 + 10/12, "feet")
  5357. },
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(150, "feet"),
  5361. default: true
  5362. }
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5367. {
  5368. front: {
  5369. height: math.unit(7 + 9 / 12, "feet"),
  5370. weight: math.unit(379, "lbs"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/chez/front.svg"
  5374. }
  5375. },
  5376. side: {
  5377. height: math.unit(7 + 9 / 12, "feet"),
  5378. weight: math.unit(379, "lbs"),
  5379. name: "Side",
  5380. image: {
  5381. source: "./media/characters/chez/side.svg"
  5382. }
  5383. }
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(7 + 9 / 12, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "God King",
  5393. height: math.unit(9750000, "meters")
  5394. }
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5399. {
  5400. front: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(275, "lbs"),
  5403. name: "Front",
  5404. image: {
  5405. source: "./media/characters/kaylum/front.svg",
  5406. bottom: 0.01,
  5407. extra: 1166 / 1031
  5408. }
  5409. },
  5410. frontWingless: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(275, "lbs"),
  5413. name: "Front (Wingless)",
  5414. image: {
  5415. source: "./media/characters/kaylum/front-wingless.svg",
  5416. bottom: 0.01,
  5417. extra: 1117 / 1031
  5418. }
  5419. }
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(3.05, "meters")
  5425. },
  5426. {
  5427. name: "Master",
  5428. height: math.unit(5.5, "meters")
  5429. },
  5430. {
  5431. name: "Rampage",
  5432. height: math.unit(19, "meters")
  5433. },
  5434. {
  5435. name: "Macro Lite",
  5436. height: math.unit(37, "meters")
  5437. },
  5438. {
  5439. name: "Hyper Predator",
  5440. height: math.unit(61, "meters")
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(138, "meters"),
  5445. default: true
  5446. }
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5451. {
  5452. front: {
  5453. height: math.unit(5 + 5 / 12, "feet"),
  5454. weight: math.unit(120, "lbs"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/geta/front.svg",
  5458. extra: 1003/933,
  5459. bottom: 21/1024
  5460. }
  5461. },
  5462. paw: {
  5463. height: math.unit(0.35, "feet"),
  5464. name: "Paw",
  5465. image: {
  5466. source: "./media/characters/geta/paw.svg"
  5467. }
  5468. },
  5469. },
  5470. [
  5471. {
  5472. name: "Micro",
  5473. height: math.unit(3, "inches"),
  5474. default: true
  5475. },
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(5 + 5 / 12, "feet")
  5479. }
  5480. ]
  5481. ))
  5482. characterMakers.push(() => makeCharacter(
  5483. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5484. {
  5485. front: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(300, "lbs"),
  5488. name: "Front",
  5489. image: {
  5490. source: "./media/characters/tyrnn/front.svg"
  5491. }
  5492. }
  5493. },
  5494. [
  5495. {
  5496. name: "Main Height",
  5497. height: math.unit(355, "feet"),
  5498. default: true
  5499. },
  5500. {
  5501. name: "Fave. Height",
  5502. height: math.unit(2400, "feet")
  5503. }
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5508. {
  5509. front: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(300, "lbs"),
  5512. name: "Front",
  5513. image: {
  5514. source: "./media/characters/appledectomy/front.svg"
  5515. }
  5516. }
  5517. },
  5518. [
  5519. {
  5520. name: "Macro",
  5521. height: math.unit(2500, "feet")
  5522. },
  5523. {
  5524. name: "Megamacro",
  5525. height: math.unit(50, "miles"),
  5526. default: true
  5527. },
  5528. {
  5529. name: "Gigamacro",
  5530. height: math.unit(5000, "miles")
  5531. },
  5532. {
  5533. name: "Teramacro",
  5534. height: math.unit(250000, "miles")
  5535. },
  5536. ]
  5537. ))
  5538. characterMakers.push(() => makeCharacter(
  5539. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5540. {
  5541. front: {
  5542. height: math.unit(6, "feet"),
  5543. weight: math.unit(200, "lbs"),
  5544. name: "Front",
  5545. image: {
  5546. source: "./media/characters/vulpes/front.svg",
  5547. extra: 573 / 543,
  5548. bottom: 0.033
  5549. }
  5550. },
  5551. side: {
  5552. height: math.unit(6, "feet"),
  5553. weight: math.unit(200, "lbs"),
  5554. name: "Side",
  5555. image: {
  5556. source: "./media/characters/vulpes/side.svg",
  5557. extra: 577 / 549,
  5558. bottom: 11 / 588
  5559. }
  5560. },
  5561. back: {
  5562. height: math.unit(6, "feet"),
  5563. weight: math.unit(200, "lbs"),
  5564. name: "Back",
  5565. image: {
  5566. source: "./media/characters/vulpes/back.svg",
  5567. extra: 573 / 549,
  5568. bottom: 20 / 593
  5569. }
  5570. },
  5571. feet: {
  5572. height: math.unit(1.276, "feet"),
  5573. name: "Feet",
  5574. image: {
  5575. source: "./media/characters/vulpes/feet.svg"
  5576. }
  5577. },
  5578. maw: {
  5579. height: math.unit(1.18, "feet"),
  5580. name: "Maw",
  5581. image: {
  5582. source: "./media/characters/vulpes/maw.svg"
  5583. }
  5584. },
  5585. },
  5586. [
  5587. {
  5588. name: "Micro",
  5589. height: math.unit(2, "inches")
  5590. },
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(6.3, "feet")
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(850, "feet")
  5598. },
  5599. {
  5600. name: "Megamacro",
  5601. height: math.unit(7500, "feet"),
  5602. default: true
  5603. },
  5604. {
  5605. name: "Gigamacro",
  5606. height: math.unit(570000, "miles")
  5607. }
  5608. ]
  5609. ))
  5610. characterMakers.push(() => makeCharacter(
  5611. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5612. {
  5613. front: {
  5614. height: math.unit(6, "feet"),
  5615. weight: math.unit(210, "lbs"),
  5616. name: "Front",
  5617. image: {
  5618. source: "./media/characters/rain-fallen/front.svg"
  5619. }
  5620. },
  5621. side: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(210, "lbs"),
  5624. name: "Side",
  5625. image: {
  5626. source: "./media/characters/rain-fallen/side.svg"
  5627. }
  5628. },
  5629. back: {
  5630. height: math.unit(6, "feet"),
  5631. weight: math.unit(210, "lbs"),
  5632. name: "Back",
  5633. image: {
  5634. source: "./media/characters/rain-fallen/back.svg"
  5635. }
  5636. },
  5637. feral: {
  5638. height: math.unit(9, "feet"),
  5639. weight: math.unit(700, "lbs"),
  5640. name: "Feral",
  5641. image: {
  5642. source: "./media/characters/rain-fallen/feral.svg"
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Meddling with Mortals",
  5649. height: math.unit(8 + 8/12, "feet")
  5650. },
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(5, "meter")
  5654. },
  5655. {
  5656. name: "Macro",
  5657. height: math.unit(150, "meter"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Megamacro",
  5662. height: math.unit(278e6, "meter")
  5663. },
  5664. {
  5665. name: "Gigamacro",
  5666. height: math.unit(2e9, "meter")
  5667. },
  5668. {
  5669. name: "Teramacro",
  5670. height: math.unit(8e12, "meter")
  5671. },
  5672. {
  5673. name: "Devourer",
  5674. height: math.unit(14, "zettameters")
  5675. },
  5676. {
  5677. name: "Scarlet King",
  5678. height: math.unit(18, "yottameters")
  5679. },
  5680. {
  5681. name: "Void",
  5682. height: math.unit(1e88, "yottameters")
  5683. }
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5688. {
  5689. standing: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(180, "lbs"),
  5692. name: "Standing",
  5693. image: {
  5694. source: "./media/characters/zaakira/standing.svg",
  5695. extra: 1599/1504,
  5696. bottom: 39/1638
  5697. }
  5698. },
  5699. laying: {
  5700. height: math.unit(3.3, "feet"),
  5701. weight: math.unit(180, "lbs"),
  5702. name: "Laying",
  5703. image: {
  5704. source: "./media/characters/zaakira/laying.svg"
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(12, "feet")
  5712. },
  5713. {
  5714. name: "Macro",
  5715. height: math.unit(279, "feet"),
  5716. default: true
  5717. }
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5722. {
  5723. femSfw: {
  5724. height: math.unit(8, "feet"),
  5725. weight: math.unit(350, "lb"),
  5726. name: "Fem",
  5727. image: {
  5728. source: "./media/characters/sigvald/fem-sfw.svg",
  5729. extra: 182 / 164,
  5730. bottom: 8.7 / 190.5
  5731. }
  5732. },
  5733. femNsfw: {
  5734. height: math.unit(8, "feet"),
  5735. weight: math.unit(350, "lb"),
  5736. name: "Fem (NSFW)",
  5737. image: {
  5738. source: "./media/characters/sigvald/fem-nsfw.svg",
  5739. extra: 182 / 164,
  5740. bottom: 8.7 / 190.5
  5741. }
  5742. },
  5743. maleNsfw: {
  5744. height: math.unit(8, "feet"),
  5745. weight: math.unit(350, "lb"),
  5746. name: "Male (NSFW)",
  5747. image: {
  5748. source: "./media/characters/sigvald/male-nsfw.svg",
  5749. extra: 182 / 164,
  5750. bottom: 8.7 / 190.5
  5751. }
  5752. },
  5753. hermNsfw: {
  5754. height: math.unit(8, "feet"),
  5755. weight: math.unit(350, "lb"),
  5756. name: "Herm (NSFW)",
  5757. image: {
  5758. source: "./media/characters/sigvald/herm-nsfw.svg",
  5759. extra: 182 / 164,
  5760. bottom: 8.7 / 190.5
  5761. }
  5762. },
  5763. dick: {
  5764. height: math.unit(2.36, "feet"),
  5765. name: "Dick",
  5766. image: {
  5767. source: "./media/characters/sigvald/dick.svg"
  5768. }
  5769. },
  5770. eye: {
  5771. height: math.unit(0.31, "feet"),
  5772. name: "Eye",
  5773. image: {
  5774. source: "./media/characters/sigvald/eye.svg"
  5775. }
  5776. },
  5777. mouth: {
  5778. height: math.unit(0.92, "feet"),
  5779. name: "Mouth",
  5780. image: {
  5781. source: "./media/characters/sigvald/mouth.svg"
  5782. }
  5783. },
  5784. paws: {
  5785. height: math.unit(2.2, "feet"),
  5786. name: "Paws",
  5787. image: {
  5788. source: "./media/characters/sigvald/paws.svg"
  5789. }
  5790. }
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(8, "feet")
  5796. },
  5797. {
  5798. name: "Large",
  5799. height: math.unit(12, "feet")
  5800. },
  5801. {
  5802. name: "Larger",
  5803. height: math.unit(20, "feet")
  5804. },
  5805. {
  5806. name: "Macro",
  5807. height: math.unit(150, "feet")
  5808. },
  5809. {
  5810. name: "Macro+",
  5811. height: math.unit(200, "feet"),
  5812. default: true
  5813. },
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5818. {
  5819. side: {
  5820. height: math.unit(12, "feet"),
  5821. weight: math.unit(2000, "kg"),
  5822. name: "Side",
  5823. image: {
  5824. source: "./media/characters/scott/side.svg",
  5825. extra: 754 / 724,
  5826. bottom: 0.069
  5827. }
  5828. },
  5829. upright: {
  5830. height: math.unit(12, "feet"),
  5831. weight: math.unit(2000, "kg"),
  5832. name: "Upright",
  5833. image: {
  5834. source: "./media/characters/scott/upright.svg",
  5835. extra: 3881 / 3722,
  5836. bottom: 0.05
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(12, "feet"),
  5844. default: true
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5850. {
  5851. side: {
  5852. height: math.unit(8, "meters"),
  5853. weight: math.unit(84755, "lbs"),
  5854. name: "Side",
  5855. image: {
  5856. source: "./media/characters/tobias/side.svg",
  5857. extra: 1474 / 1096,
  5858. bottom: 38.9 / 1513.1235
  5859. }
  5860. },
  5861. },
  5862. [
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(8, "meters"),
  5866. default: true
  5867. },
  5868. ]
  5869. ))
  5870. characterMakers.push(() => makeCharacter(
  5871. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5872. {
  5873. front: {
  5874. height: math.unit(5.5, "feet"),
  5875. weight: math.unit(400, "lbs"),
  5876. name: "Front",
  5877. image: {
  5878. source: "./media/characters/kieran/front.svg",
  5879. extra: 2694 / 2364,
  5880. bottom: 217 / 2908
  5881. }
  5882. },
  5883. side: {
  5884. height: math.unit(5.5, "feet"),
  5885. weight: math.unit(400, "lbs"),
  5886. name: "Side",
  5887. image: {
  5888. source: "./media/characters/kieran/side.svg",
  5889. extra: 875 / 777,
  5890. bottom: 84.6 / 959
  5891. }
  5892. },
  5893. },
  5894. [
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(5.5, "feet"),
  5898. default: true
  5899. },
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5904. {
  5905. side: {
  5906. height: math.unit(2, "meters"),
  5907. weight: math.unit(70, "kg"),
  5908. name: "Side",
  5909. image: {
  5910. source: "./media/characters/sanya/side.svg",
  5911. bottom: 0.02,
  5912. extra: 1.02
  5913. }
  5914. },
  5915. },
  5916. [
  5917. {
  5918. name: "Small",
  5919. height: math.unit(2, "meters")
  5920. },
  5921. {
  5922. name: "Normal",
  5923. height: math.unit(3, "meters")
  5924. },
  5925. {
  5926. name: "Macro",
  5927. height: math.unit(16, "meters"),
  5928. default: true
  5929. },
  5930. ]
  5931. ))
  5932. characterMakers.push(() => makeCharacter(
  5933. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5934. {
  5935. front: {
  5936. height: math.unit(2, "meters"),
  5937. weight: math.unit(120, "kg"),
  5938. name: "Front",
  5939. image: {
  5940. source: "./media/characters/miranda/front.svg",
  5941. extra: 195 / 185,
  5942. bottom: 10.9 / 206.5
  5943. }
  5944. },
  5945. back: {
  5946. height: math.unit(2, "meters"),
  5947. weight: math.unit(120, "kg"),
  5948. name: "Back",
  5949. image: {
  5950. source: "./media/characters/miranda/back.svg",
  5951. extra: 201 / 193,
  5952. bottom: 2.3 / 203.7
  5953. }
  5954. },
  5955. },
  5956. [
  5957. {
  5958. name: "Normal",
  5959. height: math.unit(10, "feet"),
  5960. default: true
  5961. }
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "James", species: ["deer"], tags: ["anthro"] },
  5966. {
  5967. side: {
  5968. height: math.unit(2, "meters"),
  5969. weight: math.unit(100, "kg"),
  5970. name: "Front",
  5971. image: {
  5972. source: "./media/characters/james/front.svg",
  5973. extra: 10 / 8.5
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(8.5, "feet"),
  5981. default: true
  5982. }
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5987. {
  5988. side: {
  5989. height: math.unit(9.5, "feet"),
  5990. weight: math.unit(2500, "lbs"),
  5991. name: "Side",
  5992. image: {
  5993. source: "./media/characters/heather/side.svg"
  5994. }
  5995. },
  5996. },
  5997. [
  5998. {
  5999. name: "Normal",
  6000. height: math.unit(9.5, "feet"),
  6001. default: true
  6002. }
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6007. {
  6008. side: {
  6009. height: math.unit(6.5, "feet"),
  6010. weight: math.unit(400, "lbs"),
  6011. name: "Side",
  6012. image: {
  6013. source: "./media/characters/lukas/side.svg",
  6014. extra: 7.25 / 6.5
  6015. }
  6016. },
  6017. },
  6018. [
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(6.5, "feet"),
  6022. default: true
  6023. }
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6028. {
  6029. side: {
  6030. height: math.unit(5, "feet"),
  6031. weight: math.unit(3000, "lbs"),
  6032. name: "Side",
  6033. image: {
  6034. source: "./media/characters/louise/side.svg"
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Normal",
  6041. height: math.unit(5, "feet"),
  6042. default: true
  6043. }
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6048. {
  6049. side: {
  6050. height: math.unit(6, "feet"),
  6051. weight: math.unit(150, "lbs"),
  6052. name: "Side",
  6053. image: {
  6054. source: "./media/characters/ramona/side.svg",
  6055. extra: 871/854,
  6056. bottom: 41/912
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(6 + 4/12, "feet")
  6064. },
  6065. {
  6066. name: "Minimacro",
  6067. height: math.unit(5.3, "meters"),
  6068. default: true
  6069. },
  6070. {
  6071. name: "Macro",
  6072. height: math.unit(20, "stories")
  6073. },
  6074. {
  6075. name: "Macro+",
  6076. height: math.unit(50, "stories")
  6077. },
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6082. {
  6083. standing: {
  6084. height: math.unit(5.75, "feet"),
  6085. weight: math.unit(160, "lbs"),
  6086. name: "Standing",
  6087. image: {
  6088. source: "./media/characters/deerpuff/standing.svg",
  6089. extra: 682 / 624
  6090. }
  6091. },
  6092. sitting: {
  6093. height: math.unit(5.75 / 1.79, "feet"),
  6094. weight: math.unit(160, "lbs"),
  6095. name: "Sitting",
  6096. image: {
  6097. source: "./media/characters/deerpuff/sitting.svg",
  6098. bottom: 44 / 400,
  6099. extra: 1
  6100. }
  6101. },
  6102. taurLaying: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(400, "lbs"),
  6105. name: "Taur (Laying)",
  6106. image: {
  6107. source: "./media/characters/deerpuff/taur-laying.svg"
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Puffball",
  6114. height: math.unit(6, "inches")
  6115. },
  6116. {
  6117. name: "Normalpuff",
  6118. height: math.unit(5.75, "feet")
  6119. },
  6120. {
  6121. name: "Macropuff",
  6122. height: math.unit(1500, "feet"),
  6123. default: true
  6124. },
  6125. {
  6126. name: "Megapuff",
  6127. height: math.unit(500, "miles")
  6128. },
  6129. {
  6130. name: "Gigapuff",
  6131. height: math.unit(250000, "miles")
  6132. },
  6133. {
  6134. name: "Omegapuff",
  6135. height: math.unit(1000, "lightyears")
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6141. {
  6142. stomping: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(170, "lbs"),
  6145. name: "Stomping",
  6146. image: {
  6147. source: "./media/characters/vivian/stomping.svg"
  6148. }
  6149. },
  6150. sitting: {
  6151. height: math.unit(6 / 1.75, "feet"),
  6152. weight: math.unit(170, "lbs"),
  6153. name: "Sitting",
  6154. image: {
  6155. source: "./media/characters/vivian/sitting.svg",
  6156. bottom: 1 / 6.4,
  6157. extra: 1,
  6158. }
  6159. },
  6160. },
  6161. [
  6162. {
  6163. name: "Normal",
  6164. height: math.unit(7, "feet"),
  6165. default: true
  6166. },
  6167. {
  6168. name: "Macro",
  6169. height: math.unit(10, "stories")
  6170. },
  6171. {
  6172. name: "Macro+",
  6173. height: math.unit(30, "stories")
  6174. },
  6175. {
  6176. name: "Megamacro",
  6177. height: math.unit(10, "miles")
  6178. },
  6179. {
  6180. name: "Megamacro+",
  6181. height: math.unit(2750000, "meters")
  6182. },
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6187. {
  6188. front: {
  6189. height: math.unit(6, "feet"),
  6190. weight: math.unit(160, "lbs"),
  6191. name: "Front",
  6192. image: {
  6193. source: "./media/characters/prince/front.svg",
  6194. extra: 1938/1682,
  6195. bottom: 45/1983
  6196. }
  6197. },
  6198. back: {
  6199. height: math.unit(6, "feet"),
  6200. weight: math.unit(160, "lbs"),
  6201. name: "Back",
  6202. image: {
  6203. source: "./media/characters/prince/back.svg",
  6204. extra: 1955/1726,
  6205. bottom: 6/1961
  6206. }
  6207. },
  6208. },
  6209. [
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(7.75, "feet"),
  6213. default: true
  6214. },
  6215. {
  6216. name: "Not cute",
  6217. height: math.unit(17, "feet")
  6218. },
  6219. {
  6220. name: "I said NOT",
  6221. height: math.unit(91, "feet")
  6222. },
  6223. {
  6224. name: "Please stop",
  6225. height: math.unit(560, "feet")
  6226. },
  6227. {
  6228. name: "What have you done",
  6229. height: math.unit(2200, "feet")
  6230. },
  6231. {
  6232. name: "Deer God",
  6233. height: math.unit(3.6, "miles")
  6234. },
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6239. {
  6240. standing: {
  6241. height: math.unit(6, "feet"),
  6242. weight: math.unit(300, "lbs"),
  6243. name: "Standing",
  6244. image: {
  6245. source: "./media/characters/psymon/standing.svg",
  6246. extra: 1888 / 1810,
  6247. bottom: 0.05
  6248. }
  6249. },
  6250. slithering: {
  6251. height: math.unit(6, "feet"),
  6252. weight: math.unit(300, "lbs"),
  6253. name: "Slithering",
  6254. image: {
  6255. source: "./media/characters/psymon/slithering.svg",
  6256. extra: 1330 / 1224
  6257. }
  6258. },
  6259. slitheringAlt: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(300, "lbs"),
  6262. name: "Slithering (Alt)",
  6263. image: {
  6264. source: "./media/characters/psymon/slithering-alt.svg",
  6265. extra: 1330 / 1224
  6266. }
  6267. },
  6268. },
  6269. [
  6270. {
  6271. name: "Normal",
  6272. height: math.unit(11.25, "feet"),
  6273. default: true
  6274. },
  6275. {
  6276. name: "Large",
  6277. height: math.unit(27, "feet")
  6278. },
  6279. {
  6280. name: "Giant",
  6281. height: math.unit(87, "feet")
  6282. },
  6283. {
  6284. name: "Macro",
  6285. height: math.unit(365, "feet")
  6286. },
  6287. {
  6288. name: "Megamacro",
  6289. height: math.unit(3, "miles")
  6290. },
  6291. {
  6292. name: "World Serpent",
  6293. height: math.unit(8000, "miles")
  6294. },
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(180, "lbs"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/daimos/front.svg",
  6306. extra: 4160 / 3897,
  6307. bottom: 0.021
  6308. }
  6309. }
  6310. },
  6311. [
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(8, "feet"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Big Dog",
  6319. height: math.unit(22, "feet")
  6320. },
  6321. {
  6322. name: "Macro",
  6323. height: math.unit(127, "feet")
  6324. },
  6325. {
  6326. name: "Megamacro",
  6327. height: math.unit(3600, "feet")
  6328. },
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6333. {
  6334. side: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(180, "lbs"),
  6337. name: "Side",
  6338. image: {
  6339. source: "./media/characters/blake/side.svg",
  6340. extra: 1212 / 1120,
  6341. bottom: 0.05
  6342. }
  6343. },
  6344. crouched: {
  6345. height: math.unit(6 * 0.57, "feet"),
  6346. weight: math.unit(180, "lbs"),
  6347. name: "Crouched",
  6348. image: {
  6349. source: "./media/characters/blake/crouched.svg",
  6350. extra: 840 / 587,
  6351. bottom: 0.04
  6352. }
  6353. },
  6354. bent: {
  6355. height: math.unit(6 * 0.75, "feet"),
  6356. weight: math.unit(180, "lbs"),
  6357. name: "Bent",
  6358. image: {
  6359. source: "./media/characters/blake/bent.svg",
  6360. extra: 592 / 544,
  6361. bottom: 0.035
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(8 + 1 / 6, "feet"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Big Backside",
  6373. height: math.unit(37, "feet")
  6374. },
  6375. {
  6376. name: "Subway Shredder",
  6377. height: math.unit(72, "feet")
  6378. },
  6379. {
  6380. name: "City Carver",
  6381. height: math.unit(1675, "feet")
  6382. },
  6383. {
  6384. name: "Tectonic Tweaker",
  6385. height: math.unit(2300, "miles")
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6391. {
  6392. front: {
  6393. height: math.unit(6, "feet"),
  6394. weight: math.unit(180, "lbs"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/guisetto/front.svg",
  6398. extra: 856 / 817,
  6399. bottom: 0.06
  6400. }
  6401. },
  6402. airborne: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(180, "lbs"),
  6405. name: "Airborne",
  6406. image: {
  6407. source: "./media/characters/guisetto/airborne.svg",
  6408. extra: 584 / 525
  6409. }
  6410. },
  6411. },
  6412. [
  6413. {
  6414. name: "Normal",
  6415. height: math.unit(10 + 11 / 12, "feet"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Large",
  6420. height: math.unit(35, "feet")
  6421. },
  6422. {
  6423. name: "Macro",
  6424. height: math.unit(475, "feet")
  6425. },
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6430. {
  6431. front: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(180, "lbs"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/luxor/front.svg",
  6437. extra: 2940 / 2152
  6438. }
  6439. },
  6440. back: {
  6441. height: math.unit(6, "feet"),
  6442. weight: math.unit(180, "lbs"),
  6443. name: "Back",
  6444. image: {
  6445. source: "./media/characters/luxor/back.svg",
  6446. extra: 1083 / 960
  6447. }
  6448. },
  6449. },
  6450. [
  6451. {
  6452. name: "Normal",
  6453. height: math.unit(5 + 5 / 6, "feet"),
  6454. default: true
  6455. },
  6456. {
  6457. name: "Lamp",
  6458. height: math.unit(50, "feet")
  6459. },
  6460. {
  6461. name: "Lämp",
  6462. height: math.unit(300, "feet")
  6463. },
  6464. {
  6465. name: "The sun is a lamp",
  6466. height: math.unit(250000, "miles")
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6472. {
  6473. front: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(50, "lbs"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/huoyan/front.svg"
  6479. }
  6480. },
  6481. side: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(180, "lbs"),
  6484. name: "Side",
  6485. image: {
  6486. source: "./media/characters/huoyan/side.svg"
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Chef",
  6493. height: math.unit(9, "feet")
  6494. },
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(65, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(780, "feet")
  6503. },
  6504. {
  6505. name: "Flaming Mountain",
  6506. height: math.unit(4.8, "miles")
  6507. },
  6508. {
  6509. name: "Celestial",
  6510. height: math.unit(765000, "miles")
  6511. },
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6516. {
  6517. front: {
  6518. height: math.unit(5 + 3 / 4, "feet"),
  6519. weight: math.unit(120, "lbs"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/tails/front.svg"
  6523. }
  6524. }
  6525. },
  6526. [
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(5 + 3 / 4, "feet"),
  6530. default: true
  6531. }
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(4, "feet"),
  6539. weight: math.unit(50, "lbs"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/rainy/front.svg"
  6543. }
  6544. }
  6545. },
  6546. [
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(800, "feet"),
  6550. default: true
  6551. }
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(150, "lbs"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/rainier/front.svg"
  6563. }
  6564. }
  6565. },
  6566. [
  6567. {
  6568. name: "Micro",
  6569. height: math.unit(2, "mm"),
  6570. default: true
  6571. }
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(8 + 4/12, "feet"),
  6579. weight: math.unit(450, "kilograms"),
  6580. volume: math.unit(5, "cups"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/andy-renard/front.svg",
  6584. extra: 1839/1726,
  6585. bottom: 134/1973
  6586. }
  6587. },
  6588. back: {
  6589. height: math.unit(8 + 4/12, "feet"),
  6590. weight: math.unit(450, "kilograms"),
  6591. volume: math.unit(5, "cups"),
  6592. name: "Back",
  6593. image: {
  6594. source: "./media/characters/andy-renard/back.svg",
  6595. extra: 1838/1710,
  6596. bottom: 105/1943
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Tall",
  6603. height: math.unit(8 + 4/12, "feet")
  6604. },
  6605. {
  6606. name: "Mini Macro",
  6607. height: math.unit(15, "feet"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Macro",
  6612. height: math.unit(100, "feet")
  6613. },
  6614. {
  6615. name: "Mega Macro",
  6616. height: math.unit(1000, "feet")
  6617. },
  6618. {
  6619. name: "Giga Macro",
  6620. height: math.unit(10, "miles")
  6621. },
  6622. {
  6623. name: "God Macro",
  6624. height: math.unit(1, "multiverse")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(210, "lbs"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/cimmaron/front-sfw.svg",
  6637. extra: 701 / 676,
  6638. bottom: 0.046
  6639. }
  6640. },
  6641. back: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(210, "lbs"),
  6644. name: "Back",
  6645. image: {
  6646. source: "./media/characters/cimmaron/back-sfw.svg",
  6647. extra: 701 / 676,
  6648. bottom: 0.046
  6649. }
  6650. },
  6651. frontNsfw: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(210, "lbs"),
  6654. name: "Front (NSFW)",
  6655. image: {
  6656. source: "./media/characters/cimmaron/front-nsfw.svg",
  6657. extra: 701 / 676,
  6658. bottom: 0.046
  6659. }
  6660. },
  6661. backNsfw: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(210, "lbs"),
  6664. name: "Back (NSFW)",
  6665. image: {
  6666. source: "./media/characters/cimmaron/back-nsfw.svg",
  6667. extra: 701 / 676,
  6668. bottom: 0.046
  6669. }
  6670. },
  6671. dick: {
  6672. height: math.unit(1.714, "feet"),
  6673. name: "Dick",
  6674. image: {
  6675. source: "./media/characters/cimmaron/dick.svg"
  6676. }
  6677. },
  6678. },
  6679. [
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(6, "feet"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Macro Mayor",
  6687. height: math.unit(350, "meters")
  6688. },
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(200, "lbs"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/akari/front.svg",
  6700. extra: 962 / 901,
  6701. bottom: 0.04
  6702. }
  6703. }
  6704. },
  6705. [
  6706. {
  6707. name: "Micro",
  6708. height: math.unit(5, "inches"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Normal",
  6713. height: math.unit(7, "feet")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(140, "lbs"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/cynosura/front.svg",
  6726. extra: 437/410,
  6727. bottom: 9/446
  6728. }
  6729. },
  6730. back: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(140, "lbs"),
  6733. name: "Back",
  6734. image: {
  6735. source: "./media/characters/cynosura/back.svg",
  6736. extra: 1304/1160,
  6737. bottom: 71/1375
  6738. }
  6739. },
  6740. },
  6741. [
  6742. {
  6743. name: "Micro",
  6744. height: math.unit(4, "inches")
  6745. },
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(5.75, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Tall",
  6753. height: math.unit(10, "feet")
  6754. },
  6755. {
  6756. name: "Big",
  6757. height: math.unit(20, "feet")
  6758. },
  6759. {
  6760. name: "Macro",
  6761. height: math.unit(50, "feet")
  6762. },
  6763. ]
  6764. ))
  6765. characterMakers.push(() => makeCharacter(
  6766. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6767. {
  6768. front: {
  6769. height: math.unit(13 + 2/12, "feet"),
  6770. weight: math.unit(800, "kg"),
  6771. name: "Front",
  6772. image: {
  6773. source: "./media/characters/gin/front.svg",
  6774. extra: 1312/1191,
  6775. bottom: 45/1357
  6776. }
  6777. },
  6778. mouth: {
  6779. height: math.unit(2.39 * 1.8, "feet"),
  6780. name: "Mouth",
  6781. image: {
  6782. source: "./media/characters/gin/mouth.svg"
  6783. }
  6784. },
  6785. hand: {
  6786. height: math.unit(1.57 * 2.19, "feet"),
  6787. name: "Hand",
  6788. image: {
  6789. source: "./media/characters/gin/hand.svg"
  6790. }
  6791. },
  6792. foot: {
  6793. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6794. name: "Foot",
  6795. image: {
  6796. source: "./media/characters/gin/foot.svg"
  6797. }
  6798. },
  6799. sole: {
  6800. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6801. name: "Sole",
  6802. image: {
  6803. source: "./media/characters/gin/sole.svg"
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Very Small",
  6810. height: math.unit(13 + 2 / 12, "feet")
  6811. },
  6812. {
  6813. name: "Micro",
  6814. height: math.unit(600, "miles")
  6815. },
  6816. {
  6817. name: "Regular",
  6818. height: math.unit(20, "earths"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(2.2, "solarradii")
  6824. },
  6825. {
  6826. name: "Teramacro",
  6827. height: math.unit(1.2, "galaxies")
  6828. },
  6829. {
  6830. name: "Omegamacro",
  6831. height: math.unit(200, "universes")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(6 + 1 / 6, "feet"),
  6840. weight: math.unit(178, "lbs"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/guy/front.svg"
  6844. }
  6845. }
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(6 + 1 / 6, "feet"),
  6851. default: true
  6852. },
  6853. {
  6854. name: "Large",
  6855. height: math.unit(25 + 7 / 12, "feet")
  6856. },
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(60 + 9 / 12, "feet")
  6860. },
  6861. {
  6862. name: "Macro+",
  6863. height: math.unit(246, "feet")
  6864. },
  6865. {
  6866. name: "Macro++",
  6867. height: math.unit(878, "feet")
  6868. }
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(9, "feet"),
  6876. weight: math.unit(800, "lbs"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/tiberius/front.svg",
  6880. extra: 2295 / 2071
  6881. }
  6882. },
  6883. back: {
  6884. height: math.unit(9, "feet"),
  6885. weight: math.unit(800, "lbs"),
  6886. name: "Back",
  6887. image: {
  6888. source: "./media/characters/tiberius/back.svg",
  6889. extra: 2373 / 2160
  6890. }
  6891. },
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(9, "feet"),
  6897. default: true
  6898. }
  6899. ]
  6900. ))
  6901. characterMakers.push(() => makeCharacter(
  6902. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6903. {
  6904. front: {
  6905. height: math.unit(6, "feet"),
  6906. weight: math.unit(600, "lbs"),
  6907. name: "Front",
  6908. image: {
  6909. source: "./media/characters/surgo/front.svg",
  6910. extra: 3591 / 2227
  6911. }
  6912. },
  6913. back: {
  6914. height: math.unit(6, "feet"),
  6915. weight: math.unit(600, "lbs"),
  6916. name: "Back",
  6917. image: {
  6918. source: "./media/characters/surgo/back.svg",
  6919. extra: 3557 / 2228
  6920. }
  6921. },
  6922. laying: {
  6923. height: math.unit(6 * 0.85, "feet"),
  6924. weight: math.unit(600, "lbs"),
  6925. name: "Laying",
  6926. image: {
  6927. source: "./media/characters/surgo/laying.svg"
  6928. }
  6929. },
  6930. },
  6931. [
  6932. {
  6933. name: "Normal",
  6934. height: math.unit(6, "feet"),
  6935. default: true
  6936. }
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6941. {
  6942. side: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(150, "lbs"),
  6945. name: "Side",
  6946. image: {
  6947. source: "./media/characters/cibus/side.svg",
  6948. extra: 800 / 400
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Normal",
  6955. height: math.unit(6, "feet"),
  6956. default: true
  6957. }
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(6, "feet"),
  6965. weight: math.unit(240, "lbs"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/nibbles/front.svg"
  6969. }
  6970. },
  6971. side: {
  6972. height: math.unit(6, "feet"),
  6973. weight: math.unit(240, "lbs"),
  6974. name: "Side",
  6975. image: {
  6976. source: "./media/characters/nibbles/side.svg"
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(9, "feet"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6990. {
  6991. side: {
  6992. height: math.unit(5 + 1 / 6, "feet"),
  6993. weight: math.unit(130, "lbs"),
  6994. name: "Side",
  6995. image: {
  6996. source: "./media/characters/rikky/side.svg",
  6997. extra: 851 / 801
  6998. }
  6999. },
  7000. },
  7001. [
  7002. {
  7003. name: "Normal",
  7004. height: math.unit(5 + 1 / 6, "feet")
  7005. },
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(152, "feet"),
  7009. default: true
  7010. },
  7011. {
  7012. name: "Megamacro",
  7013. height: math.unit(7, "miles")
  7014. }
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7019. {
  7020. side: {
  7021. height: math.unit(370, "cm"),
  7022. weight: math.unit(350, "lbs"),
  7023. name: "Side",
  7024. image: {
  7025. source: "./media/characters/malfressa/side.svg"
  7026. }
  7027. },
  7028. walking: {
  7029. height: math.unit(370, "cm"),
  7030. weight: math.unit(350, "lbs"),
  7031. name: "Walking",
  7032. image: {
  7033. source: "./media/characters/malfressa/walking.svg"
  7034. }
  7035. },
  7036. feral: {
  7037. height: math.unit(2500, "cm"),
  7038. weight: math.unit(100000, "lbs"),
  7039. name: "Feral",
  7040. image: {
  7041. source: "./media/characters/malfressa/feral.svg",
  7042. extra: 2108 / 837,
  7043. bottom: 0.02
  7044. }
  7045. },
  7046. },
  7047. [
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(370, "cm")
  7051. },
  7052. {
  7053. name: "Macro",
  7054. height: math.unit(300, "meters"),
  7055. default: true
  7056. }
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(6, "feet"),
  7064. weight: math.unit(60, "kg"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/jaro/front.svg",
  7068. extra: 845/817,
  7069. bottom: 45/890
  7070. }
  7071. },
  7072. back: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(60, "kg"),
  7075. name: "Back",
  7076. image: {
  7077. source: "./media/characters/jaro/back.svg",
  7078. extra: 847/817,
  7079. bottom: 34/881
  7080. }
  7081. },
  7082. },
  7083. [
  7084. {
  7085. name: "Micro",
  7086. height: math.unit(7, "inches")
  7087. },
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(5.5, "feet"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Minimacro",
  7095. height: math.unit(20, "feet")
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(200, "meters")
  7100. }
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(195, "lb"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/rogue/front.svg"
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Macro",
  7118. height: math.unit(90, "feet"),
  7119. default: true
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7125. {
  7126. standing: {
  7127. height: math.unit(5 + 8 / 12, "feet"),
  7128. weight: math.unit(140, "lb"),
  7129. name: "Standing",
  7130. image: {
  7131. source: "./media/characters/piper/standing.svg",
  7132. extra: 1440/1284,
  7133. bottom: 66/1506
  7134. }
  7135. },
  7136. running: {
  7137. height: math.unit(5 + 8 / 12, "feet"),
  7138. weight: math.unit(140, "lb"),
  7139. name: "Running",
  7140. image: {
  7141. source: "./media/characters/piper/running.svg",
  7142. extra: 3948/3655,
  7143. bottom: 0/3948
  7144. }
  7145. },
  7146. sole: {
  7147. height: math.unit(0.81, "feet"),
  7148. weight: math.unit(2, "kg"),
  7149. name: "Sole",
  7150. image: {
  7151. source: "./media/characters/piper/sole.svg"
  7152. }
  7153. },
  7154. nipple: {
  7155. height: math.unit(0.25, "feet"),
  7156. weight: math.unit(1.5, "lb"),
  7157. name: "Nipple",
  7158. image: {
  7159. source: "./media/characters/piper/nipple.svg"
  7160. }
  7161. },
  7162. head: {
  7163. height: math.unit(1.1, "feet"),
  7164. name: "Head",
  7165. image: {
  7166. source: "./media/characters/piper/head.svg"
  7167. }
  7168. },
  7169. },
  7170. [
  7171. {
  7172. name: "Micro",
  7173. height: math.unit(2, "inches")
  7174. },
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(5 + 8 / 12, "feet")
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(250, "feet"),
  7182. default: true
  7183. },
  7184. {
  7185. name: "Megamacro",
  7186. height: math.unit(7, "miles")
  7187. },
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7192. {
  7193. front: {
  7194. height: math.unit(6, "feet"),
  7195. weight: math.unit(220, "lb"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/gemini/front.svg"
  7199. }
  7200. },
  7201. back: {
  7202. height: math.unit(6, "feet"),
  7203. weight: math.unit(220, "lb"),
  7204. name: "Back",
  7205. image: {
  7206. source: "./media/characters/gemini/back.svg"
  7207. }
  7208. },
  7209. kneeling: {
  7210. height: math.unit(6 / 1.5, "feet"),
  7211. weight: math.unit(220, "lb"),
  7212. name: "Kneeling",
  7213. image: {
  7214. source: "./media/characters/gemini/kneeling.svg",
  7215. bottom: 0.02
  7216. }
  7217. },
  7218. },
  7219. [
  7220. {
  7221. name: "Macro",
  7222. height: math.unit(300, "meters"),
  7223. default: true
  7224. },
  7225. {
  7226. name: "Megamacro",
  7227. height: math.unit(6900, "meters")
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7233. {
  7234. anthro: {
  7235. height: math.unit(2.35, "meters"),
  7236. weight: math.unit(73, "kg"),
  7237. name: "Anthro",
  7238. image: {
  7239. source: "./media/characters/alicia/anthro.svg",
  7240. extra: 2571 / 2385,
  7241. bottom: 75 / 2648
  7242. }
  7243. },
  7244. paw: {
  7245. height: math.unit(1.32, "feet"),
  7246. name: "Paw",
  7247. image: {
  7248. source: "./media/characters/alicia/paw.svg"
  7249. }
  7250. },
  7251. feral: {
  7252. height: math.unit(1.69, "meters"),
  7253. weight: math.unit(73, "kg"),
  7254. name: "Feral",
  7255. image: {
  7256. source: "./media/characters/alicia/feral.svg",
  7257. extra: 2123 / 1715,
  7258. bottom: 222 / 2349
  7259. }
  7260. },
  7261. },
  7262. [
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(2.35, "meters")
  7266. },
  7267. {
  7268. name: "Macro",
  7269. height: math.unit(60, "meters"),
  7270. default: true
  7271. },
  7272. {
  7273. name: "Megamacro",
  7274. height: math.unit(10000, "kilometers")
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(7, "feet"),
  7283. weight: math.unit(250, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/archy/front.svg"
  7287. }
  7288. }
  7289. },
  7290. [
  7291. {
  7292. name: "Micro",
  7293. height: math.unit(1, "inch")
  7294. },
  7295. {
  7296. name: "Shorty",
  7297. height: math.unit(5, "feet")
  7298. },
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(7, "feet")
  7302. },
  7303. {
  7304. name: "Macro",
  7305. height: math.unit(600, "meters"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Megamacro",
  7310. height: math.unit(1, "mile")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(1.65, "meters"),
  7319. weight: math.unit(74, "kg"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/berri/front.svg",
  7323. extra: 857 / 837,
  7324. bottom: 18 / 877
  7325. }
  7326. },
  7327. bum: {
  7328. height: math.unit(1.46, "feet"),
  7329. name: "Bum",
  7330. image: {
  7331. source: "./media/characters/berri/bum.svg"
  7332. }
  7333. },
  7334. mouth: {
  7335. height: math.unit(0.44, "feet"),
  7336. name: "Mouth",
  7337. image: {
  7338. source: "./media/characters/berri/mouth.svg"
  7339. }
  7340. },
  7341. paw: {
  7342. height: math.unit(0.826, "feet"),
  7343. name: "Paw",
  7344. image: {
  7345. source: "./media/characters/berri/paw.svg"
  7346. }
  7347. },
  7348. },
  7349. [
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(1.65, "meters")
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(60, "m"),
  7357. default: true
  7358. },
  7359. {
  7360. name: "Megamacro",
  7361. height: math.unit(9.213, "km")
  7362. },
  7363. {
  7364. name: "Planet Eater",
  7365. height: math.unit(489, "megameters")
  7366. },
  7367. {
  7368. name: "Teramacro",
  7369. height: math.unit(2471635000000, "meters")
  7370. },
  7371. {
  7372. name: "Examacro",
  7373. height: math.unit(8.0624e+26, "meters")
  7374. }
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(1.72, "meters"),
  7382. weight: math.unit(68, "kg"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/lexi/front.svg"
  7386. }
  7387. }
  7388. },
  7389. [
  7390. {
  7391. name: "Very Smol",
  7392. height: math.unit(10, "mm")
  7393. },
  7394. {
  7395. name: "Micro",
  7396. height: math.unit(6.8, "cm"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(1.72, "m")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(1.69, "meters"),
  7410. weight: math.unit(68, "kg"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/martin/front.svg",
  7414. extra: 596 / 581
  7415. }
  7416. }
  7417. },
  7418. [
  7419. {
  7420. name: "Micro",
  7421. height: math.unit(6.85, "cm"),
  7422. default: true
  7423. },
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(1.69, "m")
  7427. }
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(1.69, "meters"),
  7435. weight: math.unit(68, "kg"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/juno/front.svg"
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Micro",
  7445. height: math.unit(7, "cm")
  7446. },
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(1.89, "m")
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(353, "meters"),
  7454. default: true
  7455. }
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(1.93, "meters"),
  7463. weight: math.unit(83, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/samantha/front.svg"
  7467. }
  7468. },
  7469. frontClothed: {
  7470. height: math.unit(1.93, "meters"),
  7471. weight: math.unit(83, "kg"),
  7472. name: "Front (Clothed)",
  7473. image: {
  7474. source: "./media/characters/samantha/front-clothed.svg"
  7475. }
  7476. },
  7477. back: {
  7478. height: math.unit(1.93, "meters"),
  7479. weight: math.unit(83, "kg"),
  7480. name: "Back",
  7481. image: {
  7482. source: "./media/characters/samantha/back.svg"
  7483. }
  7484. },
  7485. },
  7486. [
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(1.93, "m")
  7490. },
  7491. {
  7492. name: "Macro",
  7493. height: math.unit(74, "meters"),
  7494. default: true
  7495. },
  7496. {
  7497. name: "Macro+",
  7498. height: math.unit(223, "meters"),
  7499. },
  7500. {
  7501. name: "Megamacro",
  7502. height: math.unit(8381, "meters"),
  7503. },
  7504. {
  7505. name: "Megamacro+",
  7506. height: math.unit(12000, "kilometers")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(1.92, "meters"),
  7515. weight: math.unit(80, "kg"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/dr-clay/front.svg"
  7519. }
  7520. },
  7521. frontClothed: {
  7522. height: math.unit(1.92, "meters"),
  7523. weight: math.unit(80, "kg"),
  7524. name: "Front (Clothed)",
  7525. image: {
  7526. source: "./media/characters/dr-clay/front-clothed.svg"
  7527. }
  7528. }
  7529. },
  7530. [
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(1.92, "m")
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(214, "meters"),
  7538. default: true
  7539. },
  7540. {
  7541. name: "Macro+",
  7542. height: math.unit(12.237, "meters"),
  7543. },
  7544. {
  7545. name: "Megamacro",
  7546. height: math.unit(557, "megameters"),
  7547. },
  7548. {
  7549. name: "Unimaginable",
  7550. height: math.unit(120e9, "lightyears")
  7551. },
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7556. {
  7557. front: {
  7558. height: math.unit(2, "meters"),
  7559. weight: math.unit(80, "kg"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7563. }
  7564. }
  7565. },
  7566. [
  7567. {
  7568. name: "Teramacro",
  7569. height: math.unit(500000, "lightyears"),
  7570. default: true
  7571. },
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7576. {
  7577. crux: {
  7578. height: math.unit(2, "meters"),
  7579. weight: math.unit(150, "kg"),
  7580. name: "Crux",
  7581. image: {
  7582. source: "./media/characters/vemus/crux.svg",
  7583. extra: 1074/936,
  7584. bottom: 23/1097
  7585. }
  7586. },
  7587. skunkTanuki: {
  7588. height: math.unit(2, "meters"),
  7589. weight: math.unit(150, "kg"),
  7590. name: "Skunk-Tanuki",
  7591. image: {
  7592. source: "./media/characters/vemus/skunk-tanuki.svg",
  7593. extra: 926/893,
  7594. bottom: 20/946
  7595. }
  7596. },
  7597. },
  7598. [
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(4, "meters"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Big",
  7606. height: math.unit(8, "meters")
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(100, "meters")
  7611. },
  7612. {
  7613. name: "Macro+",
  7614. height: math.unit(1500, "meters")
  7615. },
  7616. {
  7617. name: "Stellar",
  7618. height: math.unit(14e8, "meters")
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(2, "meters"),
  7627. weight: math.unit(70, "kg"),
  7628. name: "Front",
  7629. image: {
  7630. source: "./media/characters/beherit/front.svg",
  7631. extra: 1234/1109,
  7632. bottom: 55/1289
  7633. }
  7634. }
  7635. },
  7636. [
  7637. {
  7638. name: "Normal",
  7639. height: math.unit(6, "feet")
  7640. },
  7641. {
  7642. name: "Lorg",
  7643. height: math.unit(25, "feet"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Lorger",
  7648. height: math.unit(75, "feet")
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(200, "meters")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(2, "meters"),
  7661. weight: math.unit(150, "kg"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/everett/front.svg",
  7665. extra: 1017/866,
  7666. bottom: 86/1103
  7667. }
  7668. },
  7669. paw: {
  7670. height: math.unit(2 / 3.6, "meters"),
  7671. name: "Paw",
  7672. image: {
  7673. source: "./media/characters/everett/paw.svg"
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(15, "feet"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Lorg",
  7685. height: math.unit(70, "feet"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "Lorger",
  7690. height: math.unit(250, "feet")
  7691. },
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(500, "meters")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(2, "meters"),
  7703. weight: math.unit(86, "kg"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/rose/front.svg",
  7707. extra: 1785/1636,
  7708. bottom: 30/1815
  7709. },
  7710. form: "liom",
  7711. default: true
  7712. },
  7713. frontSporty: {
  7714. height: math.unit(2, "meters"),
  7715. weight: math.unit(86, "kg"),
  7716. name: "Front (Sporty)",
  7717. image: {
  7718. source: "./media/characters/rose/front-sporty.svg",
  7719. extra: 350/335,
  7720. bottom: 10/360
  7721. },
  7722. form: "liom"
  7723. },
  7724. frontAlt: {
  7725. height: math.unit(1.6, "meters"),
  7726. weight: math.unit(86, "kg"),
  7727. name: "Front (Alt)",
  7728. image: {
  7729. source: "./media/characters/rose/front-alt.svg",
  7730. extra: 299/283,
  7731. bottom: 3/302
  7732. },
  7733. form: "liom"
  7734. },
  7735. plush: {
  7736. height: math.unit(2, "meters"),
  7737. weight: math.unit(86/3, "kg"),
  7738. name: "Plush",
  7739. image: {
  7740. source: "./media/characters/rose/plush.svg",
  7741. extra: 361/337,
  7742. bottom: 11/372
  7743. },
  7744. form: "plush",
  7745. default: true
  7746. },
  7747. faeStanding: {
  7748. height: math.unit(10, "cm"),
  7749. weight: math.unit(10, "grams"),
  7750. name: "Standing",
  7751. image: {
  7752. source: "./media/characters/rose/fae-standing.svg",
  7753. extra: 1189/1060,
  7754. bottom: 27/1216
  7755. },
  7756. form: "fae",
  7757. default: true
  7758. },
  7759. faeSitting: {
  7760. height: math.unit(5, "cm"),
  7761. weight: math.unit(10, "grams"),
  7762. name: "Sitting",
  7763. image: {
  7764. source: "./media/characters/rose/fae-sitting.svg",
  7765. extra: 737/577,
  7766. bottom: 356/1093
  7767. },
  7768. form: "fae"
  7769. },
  7770. faePaw: {
  7771. height: math.unit(1.35, "cm"),
  7772. name: "Paw",
  7773. image: {
  7774. source: "./media/characters/rose/fae-paw.svg"
  7775. },
  7776. form: "fae"
  7777. },
  7778. },
  7779. [
  7780. {
  7781. name: "True Micro",
  7782. height: math.unit(9, "cm"),
  7783. form: "liom"
  7784. },
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(16, "cm"),
  7788. form: "liom"
  7789. },
  7790. {
  7791. name: "Normal",
  7792. height: math.unit(1.85, "meters"),
  7793. default: true,
  7794. form: "liom"
  7795. },
  7796. {
  7797. name: "Mini-Macro",
  7798. height: math.unit(5, "meters"),
  7799. form: "liom"
  7800. },
  7801. {
  7802. name: "Macro",
  7803. height: math.unit(15, "meters"),
  7804. form: "liom"
  7805. },
  7806. {
  7807. name: "True Macro",
  7808. height: math.unit(40, "meters"),
  7809. form: "liom"
  7810. },
  7811. {
  7812. name: "City Scale",
  7813. height: math.unit(1, "km"),
  7814. form: "liom"
  7815. },
  7816. {
  7817. name: "Plushie",
  7818. height: math.unit(9, "cm"),
  7819. form: "plush",
  7820. default: true
  7821. },
  7822. {
  7823. name: "Fae",
  7824. height: math.unit(10, "cm"),
  7825. form: "fae",
  7826. default: true
  7827. },
  7828. ],
  7829. {
  7830. "liom": {
  7831. name: "Liom"
  7832. },
  7833. "plush": {
  7834. name: "Plush"
  7835. },
  7836. "fae": {
  7837. name: "Fae Fox",
  7838. default: true
  7839. }
  7840. }
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(2, "meters"),
  7847. weight: math.unit(350, "lbs"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/regal/front.svg"
  7851. }
  7852. },
  7853. back: {
  7854. height: math.unit(2, "meters"),
  7855. weight: math.unit(350, "lbs"),
  7856. name: "Back",
  7857. image: {
  7858. source: "./media/characters/regal/back.svg"
  7859. }
  7860. },
  7861. },
  7862. [
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(350, "feet"),
  7866. default: true
  7867. }
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(4 + 11 / 12, "feet"),
  7875. weight: math.unit(100, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/opal/front.svg"
  7879. }
  7880. },
  7881. frontAlt: {
  7882. height: math.unit(4 + 11 / 12, "feet"),
  7883. weight: math.unit(100, "lbs"),
  7884. name: "Front (Alt)",
  7885. image: {
  7886. source: "./media/characters/opal/front-alt.svg"
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Small",
  7893. height: math.unit(4 + 11 / 12, "feet")
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(20, "feet"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Macro",
  7902. height: math.unit(120, "feet")
  7903. },
  7904. {
  7905. name: "Megamacro",
  7906. height: math.unit(80, "miles")
  7907. },
  7908. {
  7909. name: "True Size",
  7910. height: math.unit(100000, "lightyears")
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(200, "lbs"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/vector-wuff/front.svg"
  7923. }
  7924. }
  7925. },
  7926. [
  7927. {
  7928. name: "Normal",
  7929. height: math.unit(2.8, "meters")
  7930. },
  7931. {
  7932. name: "Macro",
  7933. height: math.unit(450, "meters"),
  7934. default: true
  7935. },
  7936. {
  7937. name: "Megamacro",
  7938. height: math.unit(15, "kilometers")
  7939. }
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(256, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/dannik/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(69.57, "meters"),
  7958. default: true
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(6, "feet"),
  7967. weight: math.unit(120, "lbs"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/azura-saharah/front.svg"
  7971. }
  7972. },
  7973. back: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(120, "lbs"),
  7976. name: "Back",
  7977. image: {
  7978. source: "./media/characters/azura-saharah/back.svg"
  7979. }
  7980. },
  7981. },
  7982. [
  7983. {
  7984. name: "Macro",
  7985. height: math.unit(100, "feet"),
  7986. default: true
  7987. },
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7992. {
  7993. side: {
  7994. height: math.unit(5 + 4 / 12, "feet"),
  7995. weight: math.unit(163, "lbs"),
  7996. name: "Side",
  7997. image: {
  7998. source: "./media/characters/kennedy/side.svg"
  7999. }
  8000. }
  8001. },
  8002. [
  8003. {
  8004. name: "Standard Doggo",
  8005. height: math.unit(5 + 4 / 12, "feet")
  8006. },
  8007. {
  8008. name: "Big Doggo",
  8009. height: math.unit(25 + 3 / 12, "feet"),
  8010. default: true
  8011. },
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8016. {
  8017. front: {
  8018. height: math.unit(5 + 5/12, "feet"),
  8019. weight: math.unit(100, "lbs"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/odios-de-lunar/front.svg",
  8023. extra: 1468/1323,
  8024. bottom: 22/1490
  8025. }
  8026. }
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(3, "inches")
  8032. },
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(5.5, "feet"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(100, "feet")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8046. {
  8047. back: {
  8048. height: math.unit(6, "feet"),
  8049. weight: math.unit(220, "lbs"),
  8050. name: "Back",
  8051. image: {
  8052. source: "./media/characters/mandake/back.svg"
  8053. }
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Normal",
  8059. height: math.unit(7, "feet"),
  8060. default: true
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(78, "feet")
  8065. },
  8066. {
  8067. name: "Macro+",
  8068. height: math.unit(300, "meters")
  8069. },
  8070. {
  8071. name: "Macro++",
  8072. height: math.unit(2400, "feet")
  8073. },
  8074. {
  8075. name: "Megamacro",
  8076. height: math.unit(5167, "meters")
  8077. },
  8078. {
  8079. name: "Gigamacro",
  8080. height: math.unit(41769, "miles")
  8081. },
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8086. {
  8087. front: {
  8088. height: math.unit(6, "feet"),
  8089. weight: math.unit(120, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/yozey/front.svg"
  8093. }
  8094. },
  8095. frontAlt: {
  8096. height: math.unit(6, "feet"),
  8097. weight: math.unit(120, "lbs"),
  8098. name: "Front (Alt)",
  8099. image: {
  8100. source: "./media/characters/yozey/front-alt.svg"
  8101. }
  8102. },
  8103. side: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(120, "lbs"),
  8106. name: "Side",
  8107. image: {
  8108. source: "./media/characters/yozey/side.svg"
  8109. }
  8110. },
  8111. },
  8112. [
  8113. {
  8114. name: "Micro",
  8115. height: math.unit(3, "inches"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "Normal",
  8120. height: math.unit(6, "feet")
  8121. }
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(103, "lbs"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/valeska-voss/front.svg"
  8133. }
  8134. }
  8135. },
  8136. [
  8137. {
  8138. name: "Mini-Sized Sub",
  8139. height: math.unit(3.1, "inches")
  8140. },
  8141. {
  8142. name: "Mid-Sized Sub",
  8143. height: math.unit(6.2, "inches")
  8144. },
  8145. {
  8146. name: "Full-Sized Sub",
  8147. height: math.unit(9.3, "inches")
  8148. },
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(5 + 2 / 12, "foot"),
  8152. default: true
  8153. },
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(6, "feet"),
  8161. weight: math.unit(160, "lbs"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/gene-zeta/front.svg",
  8165. extra: 3006 / 2826,
  8166. bottom: 182 / 3188
  8167. }
  8168. }
  8169. },
  8170. [
  8171. {
  8172. name: "Micro",
  8173. height: math.unit(6, "inches")
  8174. },
  8175. {
  8176. name: "Normal",
  8177. height: math.unit(5 + 11 / 12, "foot"),
  8178. default: true
  8179. },
  8180. {
  8181. name: "Macro",
  8182. height: math.unit(140, "feet")
  8183. },
  8184. {
  8185. name: "Supercharged",
  8186. height: math.unit(2500, "feet")
  8187. },
  8188. ]
  8189. ))
  8190. characterMakers.push(() => makeCharacter(
  8191. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8192. {
  8193. front: {
  8194. height: math.unit(6, "feet"),
  8195. weight: math.unit(350, "lbs"),
  8196. name: "Front",
  8197. image: {
  8198. source: "./media/characters/razinox/front.svg",
  8199. extra: 1686 / 1548,
  8200. bottom: 28.2 / 1868
  8201. }
  8202. },
  8203. back: {
  8204. height: math.unit(6, "feet"),
  8205. weight: math.unit(350, "lbs"),
  8206. name: "Back",
  8207. image: {
  8208. source: "./media/characters/razinox/back.svg",
  8209. extra: 1660 / 1590,
  8210. bottom: 15 / 1665
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(10 + 8 / 12, "foot")
  8218. },
  8219. {
  8220. name: "Minimacro",
  8221. height: math.unit(15, "foot")
  8222. },
  8223. {
  8224. name: "Macro",
  8225. height: math.unit(60, "foot"),
  8226. default: true
  8227. },
  8228. {
  8229. name: "Megamacro",
  8230. height: math.unit(5, "miles")
  8231. },
  8232. {
  8233. name: "Gigamacro",
  8234. height: math.unit(6000, "miles")
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(6, "feet"),
  8243. weight: math.unit(150, "lbs"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/cobalt/front.svg"
  8247. }
  8248. }
  8249. },
  8250. [
  8251. {
  8252. name: "Normal",
  8253. height: math.unit(8 + 1 / 12, "foot")
  8254. },
  8255. {
  8256. name: "Macro",
  8257. height: math.unit(111, "foot"),
  8258. default: true
  8259. },
  8260. {
  8261. name: "Supracosmic",
  8262. height: math.unit(1e42, "feet")
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(5, "inches"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/amanda/front.svg",
  8274. extra: 926/791,
  8275. bottom: 38/964
  8276. }
  8277. },
  8278. back: {
  8279. height: math.unit(5, "inches"),
  8280. name: "Back",
  8281. image: {
  8282. source: "./media/characters/amanda/back.svg",
  8283. extra: 909/805,
  8284. bottom: 43/952
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Micro",
  8291. height: math.unit(5, "inches"),
  8292. default: true
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(2.75, "meters"),
  8301. weight: math.unit(1200, "lb"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/teal/front.svg",
  8305. extra: 2463 / 2320,
  8306. bottom: 166 / 2629
  8307. }
  8308. },
  8309. back: {
  8310. height: math.unit(2.75, "meters"),
  8311. weight: math.unit(1200, "lb"),
  8312. name: "Back",
  8313. image: {
  8314. source: "./media/characters/teal/back.svg",
  8315. extra: 2580 / 2489,
  8316. bottom: 151 / 2731
  8317. }
  8318. },
  8319. sitting: {
  8320. height: math.unit(1.9, "meters"),
  8321. weight: math.unit(1200, "lb"),
  8322. name: "Sitting",
  8323. image: {
  8324. source: "./media/characters/teal/sitting.svg",
  8325. extra: 623 / 590,
  8326. bottom: 121 / 744
  8327. }
  8328. },
  8329. standing: {
  8330. height: math.unit(2.75, "meters"),
  8331. weight: math.unit(1200, "lb"),
  8332. name: "Standing",
  8333. image: {
  8334. source: "./media/characters/teal/standing.svg",
  8335. extra: 923 / 893,
  8336. bottom: 60 / 983
  8337. }
  8338. },
  8339. stretching: {
  8340. height: math.unit(3.65, "meters"),
  8341. weight: math.unit(1200, "lb"),
  8342. name: "Stretching",
  8343. image: {
  8344. source: "./media/characters/teal/stretching.svg",
  8345. extra: 1276 / 1244,
  8346. bottom: 0 / 1276
  8347. }
  8348. },
  8349. legged: {
  8350. height: math.unit(1.3, "meters"),
  8351. weight: math.unit(100, "lb"),
  8352. name: "Legged",
  8353. image: {
  8354. source: "./media/characters/teal/legged.svg",
  8355. extra: 462 / 437,
  8356. bottom: 24 / 486
  8357. }
  8358. },
  8359. naga: {
  8360. height: math.unit(5.4, "meters"),
  8361. weight: math.unit(4000, "lb"),
  8362. name: "Naga",
  8363. image: {
  8364. source: "./media/characters/teal/naga.svg",
  8365. extra: 1902 / 1858,
  8366. bottom: 0 / 1902
  8367. }
  8368. },
  8369. hand: {
  8370. height: math.unit(0.52, "meters"),
  8371. name: "Hand",
  8372. image: {
  8373. source: "./media/characters/teal/hand.svg"
  8374. }
  8375. },
  8376. maw: {
  8377. height: math.unit(0.43, "meters"),
  8378. name: "Maw",
  8379. image: {
  8380. source: "./media/characters/teal/maw.svg"
  8381. }
  8382. },
  8383. slit: {
  8384. height: math.unit(0.25, "meters"),
  8385. name: "Slit",
  8386. image: {
  8387. source: "./media/characters/teal/slit.svg"
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(2.75, "meters"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(300, "feet")
  8400. },
  8401. {
  8402. name: "Macro+",
  8403. height: math.unit(2000, "feet")
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8409. {
  8410. frontCat: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(180, "lbs"),
  8413. name: "Front (Cat)",
  8414. image: {
  8415. source: "./media/characters/ravin-amulet/front-cat.svg"
  8416. }
  8417. },
  8418. frontCatAlt: {
  8419. height: math.unit(6, "feet"),
  8420. weight: math.unit(180, "lbs"),
  8421. name: "Front (Alt, Cat)",
  8422. image: {
  8423. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8424. }
  8425. },
  8426. frontWerewolf: {
  8427. height: math.unit(6 * 1.2, "feet"),
  8428. weight: math.unit(225, "lbs"),
  8429. name: "Front (Werewolf)",
  8430. image: {
  8431. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8432. }
  8433. },
  8434. backWerewolf: {
  8435. height: math.unit(6 * 1.2, "feet"),
  8436. weight: math.unit(225, "lbs"),
  8437. name: "Back (Werewolf)",
  8438. image: {
  8439. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Nano",
  8446. height: math.unit(1, "micrometer")
  8447. },
  8448. {
  8449. name: "Micro",
  8450. height: math.unit(1, "inch")
  8451. },
  8452. {
  8453. name: "Normal",
  8454. height: math.unit(6, "feet"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Macro",
  8459. height: math.unit(60, "feet")
  8460. }
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(165, "lbs"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/fluoresce/front.svg"
  8472. }
  8473. }
  8474. },
  8475. [
  8476. {
  8477. name: "Micro",
  8478. height: math.unit(6, "cm")
  8479. },
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(5 + 7 / 12, "feet"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(56, "feet")
  8488. },
  8489. {
  8490. name: "Megamacro",
  8491. height: math.unit(1.9, "miles")
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(9 + 6 / 12, "feet"),
  8500. weight: math.unit(523, "lbs"),
  8501. name: "Side",
  8502. image: {
  8503. source: "./media/characters/aurora/side.svg",
  8504. extra: 474/393,
  8505. bottom: 5/479
  8506. }
  8507. }
  8508. },
  8509. [
  8510. {
  8511. name: "Normal",
  8512. height: math.unit(9 + 6 / 12, "feet")
  8513. },
  8514. {
  8515. name: "Macro",
  8516. height: math.unit(96, "feet"),
  8517. default: true
  8518. },
  8519. {
  8520. name: "Macro+",
  8521. height: math.unit(243, "feet")
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(194, "cm"),
  8530. weight: math.unit(90, "kg"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/ranek/front.svg",
  8534. extra: 1862/1791,
  8535. bottom: 80/1942
  8536. }
  8537. },
  8538. back: {
  8539. height: math.unit(194, "cm"),
  8540. weight: math.unit(90, "kg"),
  8541. name: "Back",
  8542. image: {
  8543. source: "./media/characters/ranek/back.svg",
  8544. extra: 1853/1787,
  8545. bottom: 74/1927
  8546. }
  8547. },
  8548. feral: {
  8549. height: math.unit(30, "cm"),
  8550. weight: math.unit(1.6, "lbs"),
  8551. name: "Feral",
  8552. image: {
  8553. source: "./media/characters/ranek/feral.svg",
  8554. extra: 990/631,
  8555. bottom: 29/1019
  8556. }
  8557. },
  8558. },
  8559. [
  8560. {
  8561. name: "Normal",
  8562. height: math.unit(194, "cm"),
  8563. default: true
  8564. },
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(100, "meters")
  8568. },
  8569. ]
  8570. ))
  8571. characterMakers.push(() => makeCharacter(
  8572. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8573. {
  8574. front: {
  8575. height: math.unit(5 + 6 / 12, "feet"),
  8576. weight: math.unit(153, "lbs"),
  8577. name: "Front",
  8578. image: {
  8579. source: "./media/characters/andrew-cooper/front.svg"
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Nano",
  8586. height: math.unit(1, "mm")
  8587. },
  8588. {
  8589. name: "Micro",
  8590. height: math.unit(2, "inches")
  8591. },
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(5 + 6 / 12, "feet"),
  8595. default: true
  8596. }
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(6, "feet"),
  8604. weight: math.unit(180, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/akane-sato/front.svg",
  8608. extra: 1219 / 1140
  8609. }
  8610. },
  8611. back: {
  8612. height: math.unit(6, "feet"),
  8613. weight: math.unit(180, "lbs"),
  8614. name: "Back",
  8615. image: {
  8616. source: "./media/characters/akane-sato/back.svg",
  8617. extra: 1219 / 1170
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Normal",
  8624. height: math.unit(2.5, "meters")
  8625. },
  8626. {
  8627. name: "Macro",
  8628. height: math.unit(250, "meters"),
  8629. default: true
  8630. },
  8631. {
  8632. name: "Megamacro",
  8633. height: math.unit(25, "km")
  8634. },
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8639. {
  8640. front: {
  8641. height: math.unit(6, "feet"),
  8642. weight: math.unit(65, "kg"),
  8643. name: "Front",
  8644. image: {
  8645. source: "./media/characters/rook/front.svg",
  8646. extra: 960 / 950
  8647. }
  8648. }
  8649. },
  8650. [
  8651. {
  8652. name: "Normal",
  8653. height: math.unit(8.8, "feet")
  8654. },
  8655. {
  8656. name: "Macro",
  8657. height: math.unit(88, "feet"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Megamacro",
  8662. height: math.unit(8, "miles")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(12 + 2 / 12, "feet"),
  8671. weight: math.unit(808, "lbs"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/prodigy/front.svg"
  8675. }
  8676. }
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(12 + 2 / 12, "feet"),
  8682. default: true
  8683. },
  8684. {
  8685. name: "Macro",
  8686. height: math.unit(143, "feet")
  8687. },
  8688. {
  8689. name: "Macro+",
  8690. height: math.unit(400, "feet")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(225, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/daniel/front.svg"
  8703. }
  8704. },
  8705. leaning: {
  8706. height: math.unit(6, "feet"),
  8707. weight: math.unit(225, "lbs"),
  8708. name: "Leaning",
  8709. image: {
  8710. source: "./media/characters/daniel/leaning.svg"
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Macro",
  8717. height: math.unit(1000, "feet"),
  8718. default: true
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(88, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/chiros/front.svg",
  8731. extra: 306 / 226
  8732. }
  8733. },
  8734. side: {
  8735. height: math.unit(6, "feet"),
  8736. weight: math.unit(88, "lbs"),
  8737. name: "Side",
  8738. image: {
  8739. source: "./media/characters/chiros/side.svg",
  8740. extra: 306 / 226
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Normal",
  8747. height: math.unit(6, "cm"),
  8748. default: true
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8754. {
  8755. front: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(100, "lbs"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/selka/front.svg",
  8761. extra: 947 / 887
  8762. }
  8763. }
  8764. },
  8765. [
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(5, "cm"),
  8769. default: true
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(8 + 3 / 12, "feet"),
  8778. weight: math.unit(424, "lbs"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/verin/front.svg",
  8782. extra: 1845 / 1550
  8783. }
  8784. },
  8785. frontArmored: {
  8786. height: math.unit(8 + 3 / 12, "feet"),
  8787. weight: math.unit(424, "lbs"),
  8788. name: "Front (Armored)",
  8789. image: {
  8790. source: "./media/characters/verin/front-armor.svg",
  8791. extra: 1845 / 1550,
  8792. bottom: 0.01
  8793. }
  8794. },
  8795. back: {
  8796. height: math.unit(8 + 3 / 12, "feet"),
  8797. weight: math.unit(424, "lbs"),
  8798. name: "Back",
  8799. image: {
  8800. source: "./media/characters/verin/back.svg",
  8801. bottom: 0.1,
  8802. extra: 1
  8803. }
  8804. },
  8805. foot: {
  8806. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8807. name: "Foot",
  8808. image: {
  8809. source: "./media/characters/verin/foot.svg"
  8810. }
  8811. },
  8812. },
  8813. [
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(8 + 3 / 12, "feet")
  8817. },
  8818. {
  8819. name: "Minimacro",
  8820. height: math.unit(21, "feet"),
  8821. default: true
  8822. },
  8823. {
  8824. name: "Macro",
  8825. height: math.unit(626, "feet")
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8831. {
  8832. front: {
  8833. height: math.unit(2.718, "meters"),
  8834. weight: math.unit(150, "lbs"),
  8835. name: "Front",
  8836. image: {
  8837. source: "./media/characters/sovrim-terraquian/front.svg",
  8838. extra: 1752/1689,
  8839. bottom: 36/1788
  8840. }
  8841. },
  8842. back: {
  8843. height: math.unit(2.718, "meters"),
  8844. weight: math.unit(150, "lbs"),
  8845. name: "Back",
  8846. image: {
  8847. source: "./media/characters/sovrim-terraquian/back.svg",
  8848. extra: 1698/1657,
  8849. bottom: 58/1756
  8850. }
  8851. },
  8852. tongue: {
  8853. height: math.unit(2.865, "feet"),
  8854. name: "Tongue",
  8855. image: {
  8856. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8857. }
  8858. },
  8859. hand: {
  8860. height: math.unit(1.61, "feet"),
  8861. name: "Hand",
  8862. image: {
  8863. source: "./media/characters/sovrim-terraquian/hand.svg"
  8864. }
  8865. },
  8866. foot: {
  8867. height: math.unit(1.05, "feet"),
  8868. name: "Foot",
  8869. image: {
  8870. source: "./media/characters/sovrim-terraquian/foot.svg"
  8871. }
  8872. },
  8873. footAlt: {
  8874. height: math.unit(0.88, "feet"),
  8875. name: "Foot (Alt)",
  8876. image: {
  8877. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Micro",
  8884. height: math.unit(2, "inches")
  8885. },
  8886. {
  8887. name: "Small",
  8888. height: math.unit(1, "meter")
  8889. },
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(Math.E, "meters"),
  8893. default: true
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(20, "meters")
  8898. },
  8899. {
  8900. name: "Macro+",
  8901. height: math.unit(400, "meters")
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(7, "feet"),
  8910. weight: math.unit(489, "lbs"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/reece-silvermane/front.svg",
  8914. bottom: 0.02,
  8915. extra: 1
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(1.5, "miles"),
  8923. default: true
  8924. },
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8929. {
  8930. front: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(78, "kg"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/kane/front.svg",
  8936. extra: 978 / 899
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(2.1, "m"),
  8944. },
  8945. {
  8946. name: "Macro",
  8947. height: math.unit(1, "km"),
  8948. default: true
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(200, "kg"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/tegon/front.svg",
  8961. bottom: 0.01,
  8962. extra: 1
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Micro",
  8969. height: math.unit(1, "inch")
  8970. },
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(6 + 3 / 12, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(300, "feet")
  8979. },
  8980. {
  8981. name: "Megamacro",
  8982. height: math.unit(69, "miles")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8988. {
  8989. side: {
  8990. height: math.unit(6, "feet"),
  8991. weight: math.unit(2304, "lbs"),
  8992. name: "Side",
  8993. image: {
  8994. source: "./media/characters/arcturax/side.svg",
  8995. extra: 790 / 376,
  8996. bottom: 0.01
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Micro",
  9003. height: math.unit(2, "inch")
  9004. },
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(6, "feet")
  9008. },
  9009. {
  9010. name: "Macro",
  9011. height: math.unit(39, "feet"),
  9012. default: true
  9013. },
  9014. {
  9015. name: "Megamacro",
  9016. height: math.unit(7, "miles")
  9017. },
  9018. ]
  9019. ))
  9020. characterMakers.push(() => makeCharacter(
  9021. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9022. {
  9023. front: {
  9024. height: math.unit(6, "feet"),
  9025. weight: math.unit(50, "lbs"),
  9026. name: "Front",
  9027. image: {
  9028. source: "./media/characters/sentri/front.svg",
  9029. extra: 1750 / 1570,
  9030. bottom: 0.025
  9031. }
  9032. },
  9033. frontAlt: {
  9034. height: math.unit(6, "feet"),
  9035. weight: math.unit(50, "lbs"),
  9036. name: "Front (Alt)",
  9037. image: {
  9038. source: "./media/characters/sentri/front-alt.svg",
  9039. extra: 1750 / 1570,
  9040. bottom: 0.025
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(15, "feet"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Macro",
  9052. height: math.unit(2500, "feet")
  9053. }
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9058. {
  9059. front: {
  9060. height: math.unit(5 + 8 / 12, "feet"),
  9061. weight: math.unit(130, "lbs"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/corvin/front.svg",
  9065. extra: 1803 / 1629
  9066. }
  9067. },
  9068. frontShirt: {
  9069. height: math.unit(5 + 8 / 12, "feet"),
  9070. weight: math.unit(130, "lbs"),
  9071. name: "Front (Shirt)",
  9072. image: {
  9073. source: "./media/characters/corvin/front-shirt.svg",
  9074. extra: 1803 / 1629
  9075. }
  9076. },
  9077. frontPoncho: {
  9078. height: math.unit(5 + 8 / 12, "feet"),
  9079. weight: math.unit(130, "lbs"),
  9080. name: "Front (Poncho)",
  9081. image: {
  9082. source: "./media/characters/corvin/front-poncho.svg",
  9083. extra: 1803 / 1629
  9084. }
  9085. },
  9086. side: {
  9087. height: math.unit(5 + 8 / 12, "feet"),
  9088. weight: math.unit(130, "lbs"),
  9089. name: "Side",
  9090. image: {
  9091. source: "./media/characters/corvin/side.svg",
  9092. extra: 1012 / 945
  9093. }
  9094. },
  9095. back: {
  9096. height: math.unit(5 + 8 / 12, "feet"),
  9097. weight: math.unit(130, "lbs"),
  9098. name: "Back",
  9099. image: {
  9100. source: "./media/characters/corvin/back.svg",
  9101. extra: 1803 / 1629
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(3, "inches")
  9109. },
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(5 + 8 / 12, "feet")
  9113. },
  9114. {
  9115. name: "Macro",
  9116. height: math.unit(300, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Megamacro",
  9121. height: math.unit(500, "miles")
  9122. }
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(135, "lbs"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/q/front.svg",
  9134. extra: 854 / 752,
  9135. bottom: 0.005
  9136. }
  9137. },
  9138. back: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(130, "lbs"),
  9141. name: "Back",
  9142. image: {
  9143. source: "./media/characters/q/back.svg",
  9144. extra: 854 / 752
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(90, "feet"),
  9152. default: true
  9153. },
  9154. {
  9155. name: "Extra Macro",
  9156. height: math.unit(300, "feet"),
  9157. },
  9158. {
  9159. name: "BIG WALF",
  9160. height: math.unit(750, "feet"),
  9161. },
  9162. ]
  9163. ))
  9164. characterMakers.push(() => makeCharacter(
  9165. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9166. {
  9167. front: {
  9168. height: math.unit(3, "feet"),
  9169. weight: math.unit(28, "lbs"),
  9170. name: "Front",
  9171. image: {
  9172. source: "./media/characters/citrine/front.svg"
  9173. }
  9174. }
  9175. },
  9176. [
  9177. {
  9178. name: "Normal",
  9179. height: math.unit(3, "feet"),
  9180. default: true
  9181. }
  9182. ]
  9183. ))
  9184. characterMakers.push(() => makeCharacter(
  9185. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9186. {
  9187. front: {
  9188. height: math.unit(14, "feet"),
  9189. weight: math.unit(1450, "kg"),
  9190. preyCapacity: math.unit(15, "people"),
  9191. name: "Front",
  9192. image: {
  9193. source: "./media/characters/aura-starwind/front.svg",
  9194. extra: 1440/1327,
  9195. bottom: 11/1451
  9196. }
  9197. },
  9198. side: {
  9199. height: math.unit(14, "feet"),
  9200. weight: math.unit(1450, "kg"),
  9201. preyCapacity: math.unit(15, "people"),
  9202. name: "Side",
  9203. image: {
  9204. source: "./media/characters/aura-starwind/side.svg",
  9205. extra: 1654 / 1497
  9206. }
  9207. },
  9208. taur: {
  9209. height: math.unit(18, "feet"),
  9210. weight: math.unit(5500, "kg"),
  9211. preyCapacity: math.unit(50, "people"),
  9212. name: "Taur",
  9213. image: {
  9214. source: "./media/characters/aura-starwind/taur.svg",
  9215. extra: 1760 / 1650
  9216. }
  9217. },
  9218. feral: {
  9219. height: math.unit(46, "feet"),
  9220. weight: math.unit(25000, "kg"),
  9221. preyCapacity: math.unit(120, "people"),
  9222. name: "Feral",
  9223. image: {
  9224. source: "./media/characters/aura-starwind/feral.svg"
  9225. }
  9226. },
  9227. },
  9228. [
  9229. {
  9230. name: "Normal",
  9231. height: math.unit(14, "feet"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Macro",
  9236. height: math.unit(50, "meters")
  9237. },
  9238. {
  9239. name: "Megamacro",
  9240. height: math.unit(5000, "meters")
  9241. },
  9242. {
  9243. name: "Gigamacro",
  9244. height: math.unit(100000, "kilometers")
  9245. },
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9250. {
  9251. front: {
  9252. height: math.unit(2 + 7 / 12, "feet"),
  9253. weight: math.unit(32, "lbs"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/rivet/front.svg",
  9257. extra: 1716 / 1658,
  9258. bottom: 0.03
  9259. }
  9260. },
  9261. foot: {
  9262. height: math.unit(0.551, "feet"),
  9263. name: "Rivet's Foot",
  9264. image: {
  9265. source: "./media/characters/rivet/foot.svg"
  9266. },
  9267. rename: true
  9268. }
  9269. },
  9270. [
  9271. {
  9272. name: "Micro",
  9273. height: math.unit(1.5, "inches"),
  9274. },
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(2 + 7 / 12, "feet"),
  9278. default: true
  9279. },
  9280. {
  9281. name: "Macro",
  9282. height: math.unit(85, "feet")
  9283. },
  9284. {
  9285. name: "Megamacro",
  9286. height: math.unit(2.2, "km")
  9287. }
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(5 + 9 / 12, "feet"),
  9295. weight: math.unit(150, "lbs"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/coffee/front.svg",
  9299. extra: 946/880,
  9300. bottom: 66/1012
  9301. }
  9302. },
  9303. foot: {
  9304. height: math.unit(1.29, "feet"),
  9305. name: "Foot",
  9306. image: {
  9307. source: "./media/characters/coffee/foot.svg"
  9308. }
  9309. },
  9310. },
  9311. [
  9312. {
  9313. name: "Micro",
  9314. height: math.unit(2, "inches"),
  9315. },
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(5 + 9 / 12, "feet"),
  9319. default: true
  9320. },
  9321. {
  9322. name: "Macro",
  9323. height: math.unit(800, "feet")
  9324. },
  9325. {
  9326. name: "Megamacro",
  9327. height: math.unit(25, "miles")
  9328. }
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9333. {
  9334. front: {
  9335. height: math.unit(6, "feet"),
  9336. weight: math.unit(200, "lbs"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/chari-gal/front.svg",
  9340. extra: 1568 / 1385,
  9341. bottom: 0.047
  9342. }
  9343. },
  9344. gigantamax: {
  9345. height: math.unit(6 * 16, "feet"),
  9346. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9347. name: "Gigantamax",
  9348. image: {
  9349. source: "./media/characters/chari-gal/gigantamax.svg",
  9350. extra: 1124 / 888,
  9351. bottom: 0.03
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Normal",
  9358. height: math.unit(5 + 7 / 12, "feet")
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(200, "feet"),
  9363. default: true
  9364. }
  9365. ]
  9366. ))
  9367. characterMakers.push(() => makeCharacter(
  9368. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9369. {
  9370. front: {
  9371. height: math.unit(6, "feet"),
  9372. weight: math.unit(150, "lbs"),
  9373. name: "Front",
  9374. image: {
  9375. source: "./media/characters/nova/front.svg",
  9376. extra: 5000 / 4722,
  9377. bottom: 0.02
  9378. }
  9379. }
  9380. },
  9381. [
  9382. {
  9383. name: "Micro-",
  9384. height: math.unit(0.8, "inches")
  9385. },
  9386. {
  9387. name: "Micro",
  9388. height: math.unit(2, "inches"),
  9389. default: true
  9390. },
  9391. ]
  9392. ))
  9393. characterMakers.push(() => makeCharacter(
  9394. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9395. {
  9396. koboldFront: {
  9397. height: math.unit(3 + 1 / 12, "feet"),
  9398. weight: math.unit(21.7, "lbs"),
  9399. name: "Front",
  9400. image: {
  9401. source: "./media/characters/argent/kobold-front.svg",
  9402. extra: 1471 / 1331,
  9403. bottom: 100.8 / 1575.5
  9404. },
  9405. form: "kobold",
  9406. default: true
  9407. },
  9408. dragonFront: {
  9409. height: math.unit(75, "inches"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/argent/dragon-front.svg",
  9413. extra: 1389/1248,
  9414. bottom: 54/1443
  9415. },
  9416. form: "dragon",
  9417. },
  9418. dragonBack: {
  9419. height: math.unit(75, "inches"),
  9420. name: "Back",
  9421. image: {
  9422. source: "./media/characters/argent/dragon-back.svg",
  9423. extra: 1399/1271,
  9424. bottom: 23/1422
  9425. },
  9426. form: "dragon",
  9427. },
  9428. dragonDressed: {
  9429. height: math.unit(75, "inches"),
  9430. name: "Dressed",
  9431. image: {
  9432. source: "./media/characters/argent/dragon-dressed.svg",
  9433. extra: 1350/1215,
  9434. bottom: 26/1376
  9435. },
  9436. form: "dragon"
  9437. },
  9438. dragonHead: {
  9439. height: math.unit(23.5, "inches"),
  9440. name: "Head",
  9441. image: {
  9442. source: "./media/characters/argent/dragon-head.svg"
  9443. },
  9444. form: "dragon",
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Micro",
  9450. height: math.unit(2, "inches"),
  9451. form: "kobold",
  9452. },
  9453. {
  9454. name: "Normal",
  9455. height: math.unit(3 + 1 / 12, "feet"),
  9456. form: "kobold",
  9457. default: true
  9458. },
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(120, "feet"),
  9462. form: "kobold",
  9463. },
  9464. {
  9465. name: "Speck",
  9466. height: math.unit(1, "mm"),
  9467. form: "dragon",
  9468. },
  9469. {
  9470. name: "Tiny",
  9471. height: math.unit(1, "cm"),
  9472. form: "dragon",
  9473. },
  9474. {
  9475. name: "Micro",
  9476. height: math.unit(5, "cm"),
  9477. form: "dragon",
  9478. },
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(75, "inches"),
  9482. form: "dragon",
  9483. default: true
  9484. },
  9485. {
  9486. name: "Extra Tall",
  9487. height: math.unit(9, "feet"),
  9488. form: "dragon",
  9489. },
  9490. {
  9491. name: "Inconvenient",
  9492. height: math.unit(5, "meters"),
  9493. form: "dragon",
  9494. },
  9495. {
  9496. name: "Macro",
  9497. height: math.unit(70, "meters"),
  9498. form: "dragon",
  9499. },
  9500. {
  9501. name: "Macro+",
  9502. height: math.unit(250, "meters"),
  9503. form: "dragon",
  9504. },
  9505. {
  9506. name: "Megamacro",
  9507. height: math.unit(20, "km"),
  9508. form: "dragon",
  9509. },
  9510. {
  9511. name: "Mountainous",
  9512. height: math.unit(100, "km"),
  9513. form: "dragon",
  9514. },
  9515. {
  9516. name: "Continental",
  9517. height: math.unit(2, "megameters"),
  9518. form: "dragon",
  9519. },
  9520. {
  9521. name: "Too Big",
  9522. height: math.unit(900, "megameters"),
  9523. form: "dragon",
  9524. },
  9525. ],
  9526. {
  9527. "kobold": {
  9528. name: "Kobold",
  9529. default: true
  9530. },
  9531. "dragon": {
  9532. name: "Dragon",
  9533. },
  9534. }
  9535. ))
  9536. characterMakers.push(() => makeCharacter(
  9537. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9538. {
  9539. lamp: {
  9540. height: math.unit(7 * 1559 / 989, "feet"),
  9541. name: "Magic Lamp",
  9542. image: {
  9543. source: "./media/characters/mira-al-cul/lamp.svg",
  9544. extra: 1617 / 1559
  9545. }
  9546. },
  9547. front: {
  9548. height: math.unit(7, "feet"),
  9549. name: "Front",
  9550. image: {
  9551. source: "./media/characters/mira-al-cul/front.svg",
  9552. extra: 1044 / 990
  9553. }
  9554. },
  9555. },
  9556. [
  9557. {
  9558. name: "Heavily Restricted",
  9559. height: math.unit(7 * 1559 / 989, "feet")
  9560. },
  9561. {
  9562. name: "Freshly Freed",
  9563. height: math.unit(50 * 1559 / 989, "feet")
  9564. },
  9565. {
  9566. name: "World Encompassing",
  9567. height: math.unit(10000 * 1559 / 989, "miles")
  9568. },
  9569. {
  9570. name: "Galactic",
  9571. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9572. },
  9573. {
  9574. name: "Palmed Universe",
  9575. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9576. default: true
  9577. },
  9578. {
  9579. name: "Multiversal Matriarch",
  9580. height: math.unit(8.87e10, "yottameters")
  9581. },
  9582. {
  9583. name: "Void Mother",
  9584. height: math.unit(3.14e110, "yottaparsecs")
  9585. },
  9586. {
  9587. name: "Toying with Transcendence",
  9588. height: math.unit(1e307, "meters")
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9594. {
  9595. front: {
  9596. height: math.unit(17 + 1 / 12, "feet"),
  9597. weight: math.unit(476.2 * 5, "lbs"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/kuro-shi-uchū/front.svg",
  9601. extra: 2329 / 1835,
  9602. bottom: 0.02
  9603. }
  9604. },
  9605. },
  9606. [
  9607. {
  9608. name: "Micro",
  9609. height: math.unit(2, "inches")
  9610. },
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(12, "meters")
  9614. },
  9615. {
  9616. name: "Planetary",
  9617. height: math.unit(0.00929, "AU"),
  9618. default: true
  9619. },
  9620. {
  9621. name: "Universal",
  9622. height: math.unit(20, "gigaparsecs")
  9623. },
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9628. {
  9629. front: {
  9630. height: math.unit(5 + 2 / 12, "feet"),
  9631. weight: math.unit(120, "lbs"),
  9632. name: "Front",
  9633. image: {
  9634. source: "./media/characters/katherine/front.svg",
  9635. extra: 2075 / 1969
  9636. }
  9637. },
  9638. dress: {
  9639. height: math.unit(5 + 2 / 12, "feet"),
  9640. weight: math.unit(120, "lbs"),
  9641. name: "Dress",
  9642. image: {
  9643. source: "./media/characters/katherine/dress.svg",
  9644. extra: 2258 / 2064
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Micro",
  9651. height: math.unit(1, "inches"),
  9652. default: true
  9653. },
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(5 + 2 / 12, "feet")
  9657. },
  9658. {
  9659. name: "Macro",
  9660. height: math.unit(100, "meters")
  9661. },
  9662. {
  9663. name: "Megamacro",
  9664. height: math.unit(80, "miles")
  9665. },
  9666. ]
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9670. {
  9671. front: {
  9672. height: math.unit(7 + 8 / 12, "feet"),
  9673. weight: math.unit(250, "lbs"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/yevis/front.svg",
  9677. extra: 1938 / 1755
  9678. }
  9679. }
  9680. },
  9681. [
  9682. {
  9683. name: "Mortal",
  9684. height: math.unit(7 + 8 / 12, "feet")
  9685. },
  9686. {
  9687. name: "Battle",
  9688. height: math.unit(25 + 11 / 12, "feet")
  9689. },
  9690. {
  9691. name: "Wrath",
  9692. height: math.unit(1654 + 11 / 12, "feet")
  9693. },
  9694. {
  9695. name: "Planet Destroyer",
  9696. height: math.unit(12000, "miles")
  9697. },
  9698. {
  9699. name: "Galaxy Conqueror",
  9700. height: math.unit(1.45, "zettameters"),
  9701. default: true
  9702. },
  9703. {
  9704. name: "Universal War",
  9705. height: math.unit(184, "gigaparsecs")
  9706. },
  9707. {
  9708. name: "Eternity War",
  9709. height: math.unit(1.98e55, "yottaparsecs")
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(5 + 8 / 12, "feet"),
  9718. weight: math.unit(63, "kg"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/xavier/front.svg",
  9722. extra: 944 / 883
  9723. }
  9724. },
  9725. frontStretch: {
  9726. height: math.unit(5 + 8 / 12, "feet"),
  9727. weight: math.unit(63, "kg"),
  9728. name: "Stretching",
  9729. image: {
  9730. source: "./media/characters/xavier/front-stretch.svg",
  9731. extra: 962 / 820
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Normal",
  9738. height: math.unit(5 + 8 / 12, "feet")
  9739. },
  9740. {
  9741. name: "Macro",
  9742. height: math.unit(100, "meters"),
  9743. default: true
  9744. },
  9745. {
  9746. name: "McLargeHuge",
  9747. height: math.unit(10, "miles")
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9753. {
  9754. front: {
  9755. height: math.unit(5 + 5 / 12, "feet"),
  9756. weight: math.unit(150, "lb"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/joshii/front.svg",
  9760. extra: 765 / 653,
  9761. bottom: 51 / 816
  9762. }
  9763. },
  9764. foot: {
  9765. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9766. name: "Foot",
  9767. image: {
  9768. source: "./media/characters/joshii/foot.svg"
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Micro",
  9775. height: math.unit(2, "inches")
  9776. },
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(5 + 5 / 12, "feet")
  9780. },
  9781. {
  9782. name: "Macro",
  9783. height: math.unit(785, "feet"),
  9784. default: true
  9785. },
  9786. {
  9787. name: "Megamacro",
  9788. height: math.unit(24.5, "miles")
  9789. },
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9794. {
  9795. front: {
  9796. height: math.unit(6, "feet"),
  9797. weight: math.unit(150, "lb"),
  9798. name: "Front",
  9799. image: {
  9800. source: "./media/characters/goddess-elizabeth/front.svg",
  9801. extra: 1800 / 1525,
  9802. bottom: 0.005
  9803. }
  9804. },
  9805. foot: {
  9806. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9807. name: "Foot",
  9808. image: {
  9809. source: "./media/characters/goddess-elizabeth/foot.svg"
  9810. }
  9811. },
  9812. mouth: {
  9813. height: math.unit(6, "feet"),
  9814. name: "Mouth",
  9815. image: {
  9816. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9817. }
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Micro",
  9823. height: math.unit(12, "feet")
  9824. },
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(80, "miles"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "Macro",
  9832. height: math.unit(15000, "parsecs")
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(5 + 9 / 12, "feet"),
  9841. weight: math.unit(144, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/kara/front.svg"
  9845. }
  9846. },
  9847. feet: {
  9848. height: math.unit(6 / 6.765, "feet"),
  9849. name: "Kara's Feet",
  9850. rename: true,
  9851. image: {
  9852. source: "./media/characters/kara/feet.svg"
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Normal",
  9859. height: math.unit(5 + 9 / 12, "feet")
  9860. },
  9861. {
  9862. name: "Macro",
  9863. height: math.unit(174, "feet"),
  9864. default: true
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9870. {
  9871. front: {
  9872. height: math.unit(18, "feet"),
  9873. weight: math.unit(4050, "lb"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/tyrone/front.svg",
  9877. extra: 2405 / 2270,
  9878. bottom: 182 / 2587
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(18, "feet"),
  9886. default: true
  9887. },
  9888. {
  9889. name: "Macro",
  9890. height: math.unit(300, "feet")
  9891. },
  9892. {
  9893. name: "Megamacro",
  9894. height: math.unit(15, "km")
  9895. },
  9896. {
  9897. name: "Gigamacro",
  9898. height: math.unit(500, "km")
  9899. },
  9900. {
  9901. name: "Teramacro",
  9902. height: math.unit(0.5, "gigameters")
  9903. },
  9904. {
  9905. name: "Omnimacro",
  9906. height: math.unit(1e252, "yottauniverse")
  9907. },
  9908. ]
  9909. ))
  9910. characterMakers.push(() => makeCharacter(
  9911. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9912. {
  9913. front: {
  9914. height: math.unit(7 + 8 / 12, "feet"),
  9915. weight: math.unit(120, "lb"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/danny/front.svg",
  9919. extra: 1490 / 1350
  9920. }
  9921. },
  9922. back: {
  9923. height: math.unit(7 + 8 / 12, "feet"),
  9924. weight: math.unit(120, "lb"),
  9925. name: "Back",
  9926. image: {
  9927. source: "./media/characters/danny/back.svg",
  9928. extra: 1490 / 1350
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Normal",
  9935. height: math.unit(7 + 8 / 12, "feet"),
  9936. default: true
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(3.5, "inches"),
  9945. weight: math.unit(19, "grams"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/mallow/front.svg",
  9949. extra: 471 / 431
  9950. }
  9951. },
  9952. back: {
  9953. height: math.unit(3.5, "inches"),
  9954. weight: math.unit(19, "grams"),
  9955. name: "Back",
  9956. image: {
  9957. source: "./media/characters/mallow/back.svg",
  9958. extra: 471 / 431
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(3.5, "inches"),
  9966. default: true
  9967. },
  9968. ]
  9969. ))
  9970. characterMakers.push(() => makeCharacter(
  9971. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9972. {
  9973. front: {
  9974. height: math.unit(9, "feet"),
  9975. weight: math.unit(230, "kg"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/starry-aqua/front.svg"
  9979. }
  9980. },
  9981. back: {
  9982. height: math.unit(9, "feet"),
  9983. weight: math.unit(230, "kg"),
  9984. name: "Back",
  9985. image: {
  9986. source: "./media/characters/starry-aqua/back.svg"
  9987. }
  9988. },
  9989. hand: {
  9990. height: math.unit(9 * 0.1168, "feet"),
  9991. name: "Hand",
  9992. image: {
  9993. source: "./media/characters/starry-aqua/hand.svg"
  9994. }
  9995. },
  9996. foot: {
  9997. height: math.unit(9 * 0.18, "feet"),
  9998. name: "Foot",
  9999. image: {
  10000. source: "./media/characters/starry-aqua/foot.svg"
  10001. }
  10002. }
  10003. },
  10004. [
  10005. {
  10006. name: "Micro",
  10007. height: math.unit(3, "inches")
  10008. },
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(9, "feet")
  10012. },
  10013. {
  10014. name: "Macro",
  10015. height: math.unit(300, "feet"),
  10016. default: true
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(3200, "feet")
  10021. }
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(15, "feet"),
  10029. weight: math.unit(5026, "lb"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/luka-towers/front.svg",
  10033. extra: 1269/1133,
  10034. bottom: 51/1320
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Normal",
  10041. height: math.unit(15, "feet"),
  10042. default: true
  10043. },
  10044. {
  10045. name: "Minimacro",
  10046. height: math.unit(25, "feet")
  10047. },
  10048. {
  10049. name: "Macro",
  10050. height: math.unit(320, "feet")
  10051. },
  10052. {
  10053. name: "Megamacro",
  10054. height: math.unit(35000, "feet")
  10055. },
  10056. {
  10057. name: "Gigamacro",
  10058. height: math.unit(4000, "miles")
  10059. },
  10060. {
  10061. name: "Teramacro",
  10062. height: math.unit(15000, "miles")
  10063. },
  10064. ]
  10065. ))
  10066. characterMakers.push(() => makeCharacter(
  10067. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10068. {
  10069. front: {
  10070. height: math.unit(6, "feet"),
  10071. weight: math.unit(150, "lb"),
  10072. name: "Front",
  10073. image: {
  10074. source: "./media/characters/natalie-nightring/front.svg",
  10075. extra: 1,
  10076. bottom: 0.06
  10077. }
  10078. },
  10079. },
  10080. [
  10081. {
  10082. name: "Uh Oh",
  10083. height: math.unit(0.1, "mm")
  10084. },
  10085. {
  10086. name: "Small",
  10087. height: math.unit(3, "inches")
  10088. },
  10089. {
  10090. name: "Human Scale",
  10091. height: math.unit(6, "feet")
  10092. },
  10093. {
  10094. name: "Librarian",
  10095. height: math.unit(50, "feet"),
  10096. default: true
  10097. },
  10098. {
  10099. name: "Immense",
  10100. height: math.unit(200, "miles")
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10106. {
  10107. front: {
  10108. height: math.unit(6, "feet"),
  10109. weight: math.unit(180, "lbs"),
  10110. name: "Front",
  10111. image: {
  10112. source: "./media/characters/danni-rosie/front.svg",
  10113. extra: 1260 / 1128,
  10114. bottom: 0.022
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Micro",
  10121. height: math.unit(2, "inches"),
  10122. default: true
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(5 + 9 / 12, "feet"),
  10131. weight: math.unit(220, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/samantha-kruse/front.svg",
  10135. extra: (985 / 935),
  10136. bottom: 0.03
  10137. }
  10138. },
  10139. frontUndressed: {
  10140. height: math.unit(5 + 9 / 12, "feet"),
  10141. weight: math.unit(220, "lb"),
  10142. name: "Front (Undressed)",
  10143. image: {
  10144. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10145. extra: (973 / 923),
  10146. bottom: 0.025
  10147. }
  10148. },
  10149. fat: {
  10150. height: math.unit(5 + 9 / 12, "feet"),
  10151. weight: math.unit(900, "lb"),
  10152. name: "Front (Fat)",
  10153. image: {
  10154. source: "./media/characters/samantha-kruse/fat.svg",
  10155. extra: 2688 / 2561
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Normal",
  10162. height: math.unit(5 + 9 / 12, "feet"),
  10163. default: true
  10164. }
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10169. {
  10170. back: {
  10171. height: math.unit(5 + 4 / 12, "feet"),
  10172. weight: math.unit(4963, "lb"),
  10173. name: "Back",
  10174. image: {
  10175. source: "./media/characters/amelia-rosie/back.svg",
  10176. extra: 1113 / 963,
  10177. bottom: 0.01
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Level 0",
  10184. height: math.unit(5 + 4 / 12, "feet")
  10185. },
  10186. {
  10187. name: "Level 1",
  10188. height: math.unit(164597, "feet"),
  10189. default: true
  10190. },
  10191. {
  10192. name: "Level 2",
  10193. height: math.unit(956243, "miles")
  10194. },
  10195. {
  10196. name: "Level 3",
  10197. height: math.unit(29421709423, "miles")
  10198. },
  10199. {
  10200. name: "Level 4",
  10201. height: math.unit(154, "lightyears")
  10202. },
  10203. {
  10204. name: "Level 5",
  10205. height: math.unit(4738272, "lightyears")
  10206. },
  10207. {
  10208. name: "Level 6",
  10209. height: math.unit(145787152896, "lightyears")
  10210. },
  10211. ]
  10212. ))
  10213. characterMakers.push(() => makeCharacter(
  10214. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10215. {
  10216. front: {
  10217. height: math.unit(5 + 11 / 12, "feet"),
  10218. weight: math.unit(65, "kg"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/rook-kitara/front.svg",
  10222. extra: 1347 / 1274,
  10223. bottom: 0.005
  10224. }
  10225. },
  10226. },
  10227. [
  10228. {
  10229. name: "Totally Unfair",
  10230. height: math.unit(1.8, "mm")
  10231. },
  10232. {
  10233. name: "Lap Rookie",
  10234. height: math.unit(1.4, "feet")
  10235. },
  10236. {
  10237. name: "Normal",
  10238. height: math.unit(5 + 11 / 12, "feet"),
  10239. default: true
  10240. },
  10241. {
  10242. name: "How Did This Happen",
  10243. height: math.unit(80, "miles")
  10244. }
  10245. ]
  10246. ))
  10247. characterMakers.push(() => makeCharacter(
  10248. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10249. {
  10250. front: {
  10251. height: math.unit(7, "feet"),
  10252. weight: math.unit(300, "lb"),
  10253. name: "Front",
  10254. image: {
  10255. source: "./media/characters/pisces/front.svg",
  10256. extra: 2255 / 2115,
  10257. bottom: 0.03
  10258. }
  10259. },
  10260. back: {
  10261. height: math.unit(7, "feet"),
  10262. weight: math.unit(300, "lb"),
  10263. name: "Back",
  10264. image: {
  10265. source: "./media/characters/pisces/back.svg",
  10266. extra: 2146 / 2055,
  10267. bottom: 0.04
  10268. }
  10269. },
  10270. },
  10271. [
  10272. {
  10273. name: "Normal",
  10274. height: math.unit(7, "feet"),
  10275. default: true
  10276. },
  10277. {
  10278. name: "Swimming Pool",
  10279. height: math.unit(12.2, "meters")
  10280. },
  10281. {
  10282. name: "Olympic Swimming Pool",
  10283. height: math.unit(56.3, "meters")
  10284. },
  10285. {
  10286. name: "Lake Superior",
  10287. height: math.unit(93900, "meters")
  10288. },
  10289. {
  10290. name: "Mediterranean Sea",
  10291. height: math.unit(644457, "meters")
  10292. },
  10293. {
  10294. name: "World's Oceans",
  10295. height: math.unit(4567491, "meters")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(2.3, "meters"),
  10304. weight: math.unit(120, "kg"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/zelas/front.svg"
  10308. }
  10309. },
  10310. side: {
  10311. height: math.unit(2.3, "meters"),
  10312. weight: math.unit(120, "kg"),
  10313. name: "Side",
  10314. image: {
  10315. source: "./media/characters/zelas/side.svg"
  10316. }
  10317. },
  10318. back: {
  10319. height: math.unit(2.3, "meters"),
  10320. weight: math.unit(120, "kg"),
  10321. name: "Back",
  10322. image: {
  10323. source: "./media/characters/zelas/back.svg"
  10324. }
  10325. },
  10326. foot: {
  10327. height: math.unit(1.116, "feet"),
  10328. name: "Foot",
  10329. image: {
  10330. source: "./media/characters/zelas/foot.svg"
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(2.3, "meters")
  10338. },
  10339. {
  10340. name: "Macro",
  10341. height: math.unit(30, "meters"),
  10342. default: true
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(1, "inch"),
  10351. weight: math.unit(0.21, "grams"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/talbot/front.svg",
  10355. extra: 594 / 544
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Micro",
  10362. height: math.unit(1, "inch"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10369. {
  10370. front: {
  10371. height: math.unit(3 + 3 / 12, "feet"),
  10372. weight: math.unit(51.8, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/fliss/front.svg",
  10376. extra: 840 / 640
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Teeny Tiny",
  10383. height: math.unit(1, "mm")
  10384. },
  10385. {
  10386. name: "Small",
  10387. height: math.unit(1, "inch"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Standard Sylveon",
  10392. height: math.unit(3 + 3 / 12, "feet")
  10393. },
  10394. {
  10395. name: "Large Nuisance",
  10396. height: math.unit(33, "feet")
  10397. },
  10398. {
  10399. name: "City Filler",
  10400. height: math.unit(3000, "feet")
  10401. },
  10402. {
  10403. name: "New Horizon",
  10404. height: math.unit(6000, "miles")
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(5, "cm"),
  10413. weight: math.unit(1.94, "g"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/fleta/front.svg",
  10417. extra: 835 / 803
  10418. }
  10419. },
  10420. back: {
  10421. height: math.unit(5, "cm"),
  10422. weight: math.unit(1.94, "g"),
  10423. name: "Back",
  10424. image: {
  10425. source: "./media/characters/fleta/back.svg",
  10426. extra: 835 / 803
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Micro",
  10433. height: math.unit(5, "cm"),
  10434. default: true
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(6, "feet"),
  10443. weight: math.unit(225, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/dominic/front.svg",
  10447. extra: 1770 / 1620,
  10448. bottom: 0.025
  10449. }
  10450. },
  10451. back: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(225, "lb"),
  10454. name: "Back",
  10455. image: {
  10456. source: "./media/characters/dominic/back.svg",
  10457. extra: 1745 / 1620,
  10458. bottom: 0.065
  10459. }
  10460. },
  10461. },
  10462. [
  10463. {
  10464. name: "Nano",
  10465. height: math.unit(0.1, "mm")
  10466. },
  10467. {
  10468. name: "Micro-",
  10469. height: math.unit(1, "mm")
  10470. },
  10471. {
  10472. name: "Micro",
  10473. height: math.unit(4, "inches")
  10474. },
  10475. {
  10476. name: "Normal",
  10477. height: math.unit(6 + 4 / 12, "feet"),
  10478. default: true
  10479. },
  10480. {
  10481. name: "Macro",
  10482. height: math.unit(115, "feet")
  10483. },
  10484. {
  10485. name: "Macro+",
  10486. height: math.unit(955, "feet")
  10487. },
  10488. {
  10489. name: "Megamacro",
  10490. height: math.unit(8990, "feet")
  10491. },
  10492. {
  10493. name: "Gigmacro",
  10494. height: math.unit(9310, "miles")
  10495. },
  10496. {
  10497. name: "Teramacro",
  10498. height: math.unit(1567005010, "miles")
  10499. },
  10500. {
  10501. name: "Examacro",
  10502. height: math.unit(1425, "parsecs")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10508. {
  10509. front: {
  10510. height: math.unit(400, "feet"),
  10511. weight: math.unit(44444444, "lb"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/major-colonel/front.svg"
  10515. }
  10516. },
  10517. back: {
  10518. height: math.unit(400, "feet"),
  10519. weight: math.unit(44444444, "lb"),
  10520. name: "Back",
  10521. image: {
  10522. source: "./media/characters/major-colonel/back.svg"
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(400, "feet"),
  10530. default: true
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10536. {
  10537. catFront: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(120, "lb"),
  10540. name: "Front (Cat Side)",
  10541. image: {
  10542. source: "./media/characters/axel-lycan/cat-front.svg",
  10543. extra: 430 / 402,
  10544. bottom: 43 / 472.35
  10545. }
  10546. },
  10547. catBack: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(120, "lb"),
  10550. name: "Back (Cat Side)",
  10551. image: {
  10552. source: "./media/characters/axel-lycan/cat-back.svg",
  10553. extra: 447 / 419,
  10554. bottom: 23.3 / 469
  10555. }
  10556. },
  10557. wolfFront: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(120, "lb"),
  10560. name: "Front (Wolf Side)",
  10561. image: {
  10562. source: "./media/characters/axel-lycan/wolf-front.svg",
  10563. extra: 485 / 456,
  10564. bottom: 19 / 504
  10565. }
  10566. },
  10567. wolfBack: {
  10568. height: math.unit(6, "feet"),
  10569. weight: math.unit(120, "lb"),
  10570. name: "Back (Wolf Side)",
  10571. image: {
  10572. source: "./media/characters/axel-lycan/wolf-back.svg",
  10573. extra: 475 / 438,
  10574. bottom: 39.2 / 514
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Macro",
  10581. height: math.unit(1, "km"),
  10582. default: true
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(5 + 9 / 12, "feet"),
  10591. weight: math.unit(175, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/vanrel-hyena/front.svg",
  10595. extra: 1086 / 1010,
  10596. bottom: 0.04
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(5 + 9 / 12, "feet"),
  10604. default: true
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(103, "lb"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/abbott-absol/front.svg",
  10617. extra: 2010 / 1842
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Megamicro",
  10624. height: math.unit(0.1, "mm")
  10625. },
  10626. {
  10627. name: "Micro",
  10628. height: math.unit(1, "inch")
  10629. },
  10630. {
  10631. name: "Normal",
  10632. height: math.unit(6, "feet"),
  10633. default: true
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10639. {
  10640. front: {
  10641. height: math.unit(6, "feet"),
  10642. weight: math.unit(264, "lb"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/hector/front.svg",
  10646. extra: 2280 / 2130,
  10647. bottom: 0.07
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Normal",
  10654. height: math.unit(12.25, "foot"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Macro",
  10659. height: math.unit(160, "feet")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(6, "feet"),
  10668. weight: math.unit(150, "lb"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/sal/front.svg",
  10672. extra: 1846 / 1699,
  10673. bottom: 0.04
  10674. }
  10675. },
  10676. },
  10677. [
  10678. {
  10679. name: "Megamacro",
  10680. height: math.unit(10, "miles"),
  10681. default: true
  10682. },
  10683. ]
  10684. ))
  10685. characterMakers.push(() => makeCharacter(
  10686. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10687. {
  10688. front: {
  10689. height: math.unit(3, "meters"),
  10690. weight: math.unit(450, "kg"),
  10691. name: "front",
  10692. image: {
  10693. source: "./media/characters/ranger/front.svg",
  10694. extra: 2401 / 2243,
  10695. bottom: 0.05
  10696. }
  10697. },
  10698. },
  10699. [
  10700. {
  10701. name: "Normal",
  10702. height: math.unit(3, "meters"),
  10703. default: true
  10704. },
  10705. ]
  10706. ))
  10707. characterMakers.push(() => makeCharacter(
  10708. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10709. {
  10710. front: {
  10711. height: math.unit(14, "feet"),
  10712. weight: math.unit(800, "kg"),
  10713. name: "Front",
  10714. image: {
  10715. source: "./media/characters/theresa/front.svg",
  10716. extra: 3575 / 3346,
  10717. bottom: 0.03
  10718. }
  10719. },
  10720. },
  10721. [
  10722. {
  10723. name: "Normal",
  10724. height: math.unit(14, "feet"),
  10725. default: true
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10731. {
  10732. front: {
  10733. height: math.unit(6, "feet"),
  10734. weight: math.unit(3, "kg"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/ine/front.svg",
  10738. extra: 678 / 539,
  10739. bottom: 0.023
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Normal",
  10746. height: math.unit(2.265, "feet"),
  10747. default: true
  10748. },
  10749. ]
  10750. ))
  10751. characterMakers.push(() => makeCharacter(
  10752. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10753. {
  10754. front: {
  10755. height: math.unit(5, "feet"),
  10756. weight: math.unit(30, "kg"),
  10757. name: "Front",
  10758. image: {
  10759. source: "./media/characters/vial/front.svg",
  10760. extra: 1365 / 1277,
  10761. bottom: 0.04
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Normal",
  10768. height: math.unit(5, "feet"),
  10769. default: true
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10775. {
  10776. side: {
  10777. height: math.unit(3.4, "meters"),
  10778. weight: math.unit(1000, "lb"),
  10779. name: "Side",
  10780. image: {
  10781. source: "./media/characters/rovoska/side.svg",
  10782. extra: 4403 / 1515
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(3.4, "meters"),
  10790. default: true
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(8, "feet"),
  10799. weight: math.unit(315, "lb"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/gunner-rotthbauer/front.svg"
  10803. }
  10804. },
  10805. back: {
  10806. height: math.unit(8, "feet"),
  10807. weight: math.unit(315, "lb"),
  10808. name: "Back",
  10809. image: {
  10810. source: "./media/characters/gunner-rotthbauer/back.svg"
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Micro",
  10817. height: math.unit(3.5, "inches")
  10818. },
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(8, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(250, "feet")
  10827. },
  10828. {
  10829. name: "Megamacro",
  10830. height: math.unit(1, "AU")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(5 + 5 / 12, "feet"),
  10839. weight: math.unit(140, "lb"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/allatia/front.svg",
  10843. extra: 1227 / 1180,
  10844. bottom: 0.027
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Normal",
  10851. height: math.unit(5 + 5 / 12, "feet")
  10852. },
  10853. {
  10854. name: "Macro",
  10855. height: math.unit(250, "feet"),
  10856. default: true
  10857. },
  10858. {
  10859. name: "Megamacro",
  10860. height: math.unit(8, "miles")
  10861. }
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(120, "lb"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/tene/front.svg",
  10873. extra: 814/750,
  10874. bottom: 36/850
  10875. }
  10876. },
  10877. stomping: {
  10878. height: math.unit(2.025, "meters"),
  10879. weight: math.unit(120, "lb"),
  10880. name: "Stomping",
  10881. image: {
  10882. source: "./media/characters/tene/stomping.svg",
  10883. extra: 885/821,
  10884. bottom: 15/900
  10885. }
  10886. },
  10887. sitting: {
  10888. height: math.unit(1, "meter"),
  10889. weight: math.unit(120, "lb"),
  10890. name: "Sitting",
  10891. image: {
  10892. source: "./media/characters/tene/sitting.svg",
  10893. extra: 396/366,
  10894. bottom: 79/475
  10895. }
  10896. },
  10897. smiling: {
  10898. height: math.unit(1.2, "feet"),
  10899. name: "Smiling",
  10900. image: {
  10901. source: "./media/characters/tene/smiling.svg",
  10902. extra: 1364/1071,
  10903. bottom: 0/1364
  10904. }
  10905. },
  10906. smug: {
  10907. height: math.unit(1.3, "feet"),
  10908. name: "Smug",
  10909. image: {
  10910. source: "./media/characters/tene/smug.svg",
  10911. extra: 1323/1082,
  10912. bottom: 0/1323
  10913. }
  10914. },
  10915. feral: {
  10916. height: math.unit(3.9, "feet"),
  10917. weight: math.unit(250, "lb"),
  10918. name: "Feral",
  10919. image: {
  10920. source: "./media/characters/tene/feral.svg",
  10921. extra: 717 / 458,
  10922. bottom: 0.179
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(6, "feet")
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(300, "feet"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Megamacro",
  10938. height: math.unit(5, "miles")
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10944. {
  10945. side: {
  10946. height: math.unit(6, "feet"),
  10947. name: "Side",
  10948. image: {
  10949. source: "./media/characters/evander/side.svg",
  10950. extra: 877 / 477
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(0.83, "meters"),
  10958. default: true
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(12, "feet"),
  10967. weight: math.unit(1000, "lb"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10971. extra: 1762 / 1611
  10972. }
  10973. },
  10974. back: {
  10975. height: math.unit(12, "feet"),
  10976. weight: math.unit(1000, "lb"),
  10977. name: "Back",
  10978. image: {
  10979. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10980. extra: 1762 / 1611
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Normal",
  10987. height: math.unit(12, "feet"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Kaiju",
  10992. height: math.unit(150, "feet")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/zero-alurus/front.svg"
  11005. }
  11006. },
  11007. back: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(150, "lb"),
  11010. name: "Back",
  11011. image: {
  11012. source: "./media/characters/zero-alurus/back.svg"
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(5 + 10 / 12, "feet")
  11020. },
  11021. {
  11022. name: "Macro",
  11023. height: math.unit(60, "feet"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Macro+",
  11028. height: math.unit(450, "feet")
  11029. },
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11034. {
  11035. front: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(200, "lb"),
  11038. name: "Front",
  11039. image: {
  11040. source: "./media/characters/mega-shi/front.svg",
  11041. extra: 1279 / 1250,
  11042. bottom: 0.02
  11043. }
  11044. },
  11045. back: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(200, "lb"),
  11048. name: "Back",
  11049. image: {
  11050. source: "./media/characters/mega-shi/back.svg",
  11051. extra: 1279 / 1250,
  11052. bottom: 0.02
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Micro",
  11059. height: math.unit(16 + 6 / 12, "feet")
  11060. },
  11061. {
  11062. name: "Third Dimension",
  11063. height: math.unit(40, "meters")
  11064. },
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(660, "feet"),
  11068. default: true
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(10, "miles")
  11073. },
  11074. {
  11075. name: "Planetary Launch",
  11076. height: math.unit(500, "miles")
  11077. },
  11078. {
  11079. name: "Interstellar",
  11080. height: math.unit(1e9, "miles")
  11081. },
  11082. {
  11083. name: "Leaving the Universe",
  11084. height: math.unit(1, "gigaparsec")
  11085. },
  11086. {
  11087. name: "Travelling Universes",
  11088. height: math.unit(30e15, "parsecs")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(5 + 4/12, "feet"),
  11097. weight: math.unit(120, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/odyssey/front.svg",
  11101. extra: 1747/1571,
  11102. bottom: 47/1794
  11103. }
  11104. },
  11105. side: {
  11106. height: math.unit(5.1, "feet"),
  11107. weight: math.unit(120, "lb"),
  11108. name: "Side",
  11109. image: {
  11110. source: "./media/characters/odyssey/side.svg",
  11111. extra: 1847/1619,
  11112. bottom: 47/1894
  11113. }
  11114. },
  11115. lounging: {
  11116. height: math.unit(1.464, "feet"),
  11117. weight: math.unit(120, "lb"),
  11118. name: "Lounging",
  11119. image: {
  11120. source: "./media/characters/odyssey/lounging.svg",
  11121. extra: 1235/837,
  11122. bottom: 551/1786
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(5 + 4 / 12, "feet")
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(1, "km")
  11134. },
  11135. {
  11136. name: "Megamacro",
  11137. height: math.unit(3000, "km")
  11138. },
  11139. {
  11140. name: "Gigamacro",
  11141. height: math.unit(1, "AU"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Omniversal",
  11146. height: math.unit(100e14, "lightyears")
  11147. },
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11152. {
  11153. front: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(300, "lb"),
  11156. name: "Front",
  11157. image: {
  11158. source: "./media/characters/mekuto/front.svg",
  11159. extra: 921 / 832,
  11160. bottom: 0.03
  11161. }
  11162. },
  11163. hand: {
  11164. height: math.unit(6 / 10.24, "feet"),
  11165. name: "Hand",
  11166. image: {
  11167. source: "./media/characters/mekuto/hand.svg"
  11168. }
  11169. },
  11170. foot: {
  11171. height: math.unit(6 / 5.05, "feet"),
  11172. name: "Foot",
  11173. image: {
  11174. source: "./media/characters/mekuto/foot.svg"
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Minimicro",
  11181. height: math.unit(0.2, "inches")
  11182. },
  11183. {
  11184. name: "Micro",
  11185. height: math.unit(1.5, "inches")
  11186. },
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(5 + 11 / 12, "feet"),
  11190. default: true
  11191. },
  11192. {
  11193. name: "Minimacro",
  11194. height: math.unit(17 + 9 / 12, "feet")
  11195. },
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(177.5, "feet")
  11199. },
  11200. {
  11201. name: "Megamacro",
  11202. height: math.unit(152, "miles")
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11208. {
  11209. front: {
  11210. height: math.unit(6.5, "inches"),
  11211. weight: math.unit(13, "oz"),
  11212. name: "Front",
  11213. image: {
  11214. source: "./media/characters/dafydd-tomos/front.svg",
  11215. extra: 2990 / 2603,
  11216. bottom: 0.03
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Micro",
  11223. height: math.unit(6.5, "inches"),
  11224. default: true
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(6, "feet"),
  11233. weight: math.unit(150, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/splinter/front.svg",
  11237. extra: 2990 / 2882,
  11238. bottom: 0.04
  11239. }
  11240. },
  11241. back: {
  11242. height: math.unit(6, "feet"),
  11243. weight: math.unit(150, "lb"),
  11244. name: "Back",
  11245. image: {
  11246. source: "./media/characters/splinter/back.svg",
  11247. extra: 2990 / 2882,
  11248. bottom: 0.04
  11249. }
  11250. },
  11251. },
  11252. [
  11253. {
  11254. name: "Normal",
  11255. height: math.unit(6, "feet")
  11256. },
  11257. {
  11258. name: "Macro",
  11259. height: math.unit(230, "meters"),
  11260. default: true
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(4 + 10 / 12, "feet"),
  11269. weight: math.unit(480, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/snow-gabumon/front.svg",
  11273. extra: 1140 / 963,
  11274. bottom: 0.058
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(4 + 10 / 12, "feet"),
  11279. weight: math.unit(480, "lb"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/snow-gabumon/back.svg",
  11283. extra: 1115 / 962,
  11284. bottom: 0.041
  11285. }
  11286. },
  11287. frontUndresed: {
  11288. height: math.unit(4 + 10 / 12, "feet"),
  11289. weight: math.unit(480, "lb"),
  11290. name: "Front (Undressed)",
  11291. image: {
  11292. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11293. extra: 1061 / 960,
  11294. bottom: 0.045
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Micro",
  11301. height: math.unit(1, "inch")
  11302. },
  11303. {
  11304. name: "Normal",
  11305. height: math.unit(4 + 10 / 12, "feet"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(200, "feet")
  11311. },
  11312. {
  11313. name: "Megamacro",
  11314. height: math.unit(120, "miles")
  11315. },
  11316. {
  11317. name: "Gigamacro",
  11318. height: math.unit(9800, "miles")
  11319. },
  11320. ]
  11321. ))
  11322. characterMakers.push(() => makeCharacter(
  11323. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11324. {
  11325. front: {
  11326. height: math.unit(1.7, "meters"),
  11327. weight: math.unit(140, "lb"),
  11328. name: "Front",
  11329. image: {
  11330. source: "./media/characters/moody/front.svg",
  11331. extra: 3226 / 3007,
  11332. bottom: 0.087
  11333. }
  11334. },
  11335. },
  11336. [
  11337. {
  11338. name: "Micro",
  11339. height: math.unit(1, "mm")
  11340. },
  11341. {
  11342. name: "Normal",
  11343. height: math.unit(1.7, "meters"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Macro",
  11348. height: math.unit(80, "meters")
  11349. },
  11350. {
  11351. name: "Macro+",
  11352. height: math.unit(500, "meters")
  11353. },
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11358. {
  11359. front: {
  11360. height: math.unit(6, "feet"),
  11361. weight: math.unit(150, "lb"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/zyas/front.svg",
  11365. extra: 1180 / 1120,
  11366. bottom: 0.045
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(10, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(500, "feet")
  11379. },
  11380. {
  11381. name: "Megamacro",
  11382. height: math.unit(5, "miles")
  11383. },
  11384. {
  11385. name: "Teramacro",
  11386. height: math.unit(150000, "miles")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(6, "feet"),
  11395. weight: math.unit(150, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/cuon/front.svg",
  11399. extra: 1390 / 1320,
  11400. bottom: 0.008
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Micro",
  11407. height: math.unit(3, "inches")
  11408. },
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(18 + 9 / 12, "feet"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Macro",
  11416. height: math.unit(360, "feet")
  11417. },
  11418. {
  11419. name: "Megamacro",
  11420. height: math.unit(360, "miles")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(2.4, "meters"),
  11429. weight: math.unit(70, "kg"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/nyanuxk/front.svg",
  11433. extra: 1172 / 1084,
  11434. bottom: 0.065
  11435. }
  11436. },
  11437. side: {
  11438. height: math.unit(2.4, "meters"),
  11439. weight: math.unit(70, "kg"),
  11440. name: "Side",
  11441. image: {
  11442. source: "./media/characters/nyanuxk/side.svg",
  11443. extra: 1190 / 1132,
  11444. bottom: 0.007
  11445. }
  11446. },
  11447. back: {
  11448. height: math.unit(2.4, "meters"),
  11449. weight: math.unit(70, "kg"),
  11450. name: "Back",
  11451. image: {
  11452. source: "./media/characters/nyanuxk/back.svg",
  11453. extra: 1200 / 1141,
  11454. bottom: 0.015
  11455. }
  11456. },
  11457. foot: {
  11458. height: math.unit(0.52, "meters"),
  11459. name: "Foot",
  11460. image: {
  11461. source: "./media/characters/nyanuxk/foot.svg"
  11462. }
  11463. },
  11464. },
  11465. [
  11466. {
  11467. name: "Micro",
  11468. height: math.unit(2, "cm")
  11469. },
  11470. {
  11471. name: "Normal",
  11472. height: math.unit(2.4, "meters"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Smaller Macro",
  11477. height: math.unit(120, "meters")
  11478. },
  11479. {
  11480. name: "Bigger Macro",
  11481. height: math.unit(1.2, "km")
  11482. },
  11483. {
  11484. name: "Megamacro",
  11485. height: math.unit(15, "kilometers")
  11486. },
  11487. {
  11488. name: "Gigamacro",
  11489. height: math.unit(2000, "km")
  11490. },
  11491. {
  11492. name: "Teramacro",
  11493. height: math.unit(500000, "km")
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11499. {
  11500. side: {
  11501. height: math.unit(6, "feet"),
  11502. name: "Side",
  11503. image: {
  11504. source: "./media/characters/ailbhe/side.svg",
  11505. extra: 757 / 464,
  11506. bottom: 0.041
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(1.07, "meters"),
  11514. default: true
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(120, "kg"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/zevulfius/front.svg",
  11527. extra: 965 / 903
  11528. }
  11529. },
  11530. side: {
  11531. height: math.unit(6, "feet"),
  11532. weight: math.unit(120, "kg"),
  11533. name: "Side",
  11534. image: {
  11535. source: "./media/characters/zevulfius/side.svg",
  11536. extra: 939 / 900
  11537. }
  11538. },
  11539. back: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(120, "kg"),
  11542. name: "Back",
  11543. image: {
  11544. source: "./media/characters/zevulfius/back.svg",
  11545. extra: 918 / 854,
  11546. bottom: 0.005
  11547. }
  11548. },
  11549. foot: {
  11550. height: math.unit(6 / 3.72, "feet"),
  11551. name: "Foot",
  11552. image: {
  11553. source: "./media/characters/zevulfius/foot.svg"
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Macro",
  11560. height: math.unit(750, "meters")
  11561. },
  11562. {
  11563. name: "Megamacro",
  11564. height: math.unit(20, "km"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Gigamacro",
  11569. height: math.unit(2000, "km")
  11570. },
  11571. {
  11572. name: "Teramacro",
  11573. height: math.unit(250000, "km")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(100, "feet"),
  11582. weight: math.unit(350, "kg"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/rikes/front.svg",
  11586. extra: 1565 / 1483,
  11587. bottom: 0.017
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Macro",
  11594. height: math.unit(100, "feet"),
  11595. default: true
  11596. },
  11597. ]
  11598. ))
  11599. characterMakers.push(() => makeCharacter(
  11600. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11601. {
  11602. front: {
  11603. height: math.unit(8, "feet"),
  11604. weight: math.unit(356, "lb"),
  11605. name: "Front",
  11606. image: {
  11607. source: "./media/characters/adam-silver-mane/front.svg",
  11608. extra: 1036/937,
  11609. bottom: 63/1099
  11610. }
  11611. },
  11612. side: {
  11613. height: math.unit(8, "feet"),
  11614. weight: math.unit(356, "lb"),
  11615. name: "Side",
  11616. image: {
  11617. source: "./media/characters/adam-silver-mane/side.svg",
  11618. extra: 997/901,
  11619. bottom: 59/1056
  11620. }
  11621. },
  11622. frontNsfw: {
  11623. height: math.unit(8, "feet"),
  11624. weight: math.unit(356, "lb"),
  11625. name: "Front (NSFW)",
  11626. image: {
  11627. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11628. extra: 1036/937,
  11629. bottom: 63/1099
  11630. }
  11631. },
  11632. sideNsfw: {
  11633. height: math.unit(8, "feet"),
  11634. weight: math.unit(356, "lb"),
  11635. name: "Side (NSFW)",
  11636. image: {
  11637. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11638. extra: 997/901,
  11639. bottom: 59/1056
  11640. }
  11641. },
  11642. dick: {
  11643. height: math.unit(2.1, "feet"),
  11644. name: "Dick",
  11645. image: {
  11646. source: "./media/characters/adam-silver-mane/dick.svg"
  11647. }
  11648. },
  11649. taur: {
  11650. height: math.unit(16, "feet"),
  11651. weight: math.unit(1500, "kg"),
  11652. name: "Taur",
  11653. image: {
  11654. source: "./media/characters/adam-silver-mane/taur.svg",
  11655. extra: 1713 / 1571,
  11656. bottom: 0.01
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(8, "feet")
  11664. },
  11665. {
  11666. name: "Minimacro",
  11667. height: math.unit(80, "feet")
  11668. },
  11669. {
  11670. name: "MDA",
  11671. height: math.unit(80, "meters")
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(800, "feet"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(8000, "feet")
  11681. },
  11682. {
  11683. name: "Gigamacro",
  11684. height: math.unit(800, "miles")
  11685. },
  11686. {
  11687. name: "Teramacro",
  11688. height: math.unit(80000, "miles")
  11689. },
  11690. {
  11691. name: "Celestial",
  11692. height: math.unit(8e6, "miles")
  11693. },
  11694. {
  11695. name: "Star Dragon",
  11696. height: math.unit(800000, "parsecs")
  11697. },
  11698. {
  11699. name: "Godly",
  11700. height: math.unit(800, "teraparsecs")
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(6, "feet"),
  11709. weight: math.unit(150, "lb"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/ky'owin/front.svg",
  11713. extra: 3862/3053,
  11714. bottom: 74/3936
  11715. }
  11716. },
  11717. },
  11718. [
  11719. {
  11720. name: "Normal",
  11721. height: math.unit(6 + 8 / 12, "feet")
  11722. },
  11723. {
  11724. name: "Large",
  11725. height: math.unit(68, "feet")
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(132, "feet")
  11730. },
  11731. {
  11732. name: "Macro+",
  11733. height: math.unit(340, "feet")
  11734. },
  11735. {
  11736. name: "Macro++",
  11737. height: math.unit(680, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Megamacro",
  11742. height: math.unit(1, "mile")
  11743. },
  11744. {
  11745. name: "Megamacro+",
  11746. height: math.unit(10, "miles")
  11747. },
  11748. ]
  11749. ))
  11750. characterMakers.push(() => makeCharacter(
  11751. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11752. {
  11753. front: {
  11754. height: math.unit(4, "feet"),
  11755. weight: math.unit(50, "lb"),
  11756. name: "Front",
  11757. image: {
  11758. source: "./media/characters/mal/front.svg",
  11759. extra: 785 / 724,
  11760. bottom: 0.07
  11761. }
  11762. },
  11763. },
  11764. [
  11765. {
  11766. name: "Micro",
  11767. height: math.unit(4, "inches")
  11768. },
  11769. {
  11770. name: "Normal",
  11771. height: math.unit(4, "feet"),
  11772. default: true
  11773. },
  11774. {
  11775. name: "Macro",
  11776. height: math.unit(200, "feet")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(6, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/jordan-deware/front.svg",
  11789. extra: 1191 / 1012
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Nano",
  11796. height: math.unit(0.01, "mm")
  11797. },
  11798. {
  11799. name: "Minimicro",
  11800. height: math.unit(1, "mm")
  11801. },
  11802. {
  11803. name: "Micro",
  11804. height: math.unit(0.5, "inches")
  11805. },
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(4, "feet"),
  11809. default: true
  11810. },
  11811. {
  11812. name: "Minimacro",
  11813. height: math.unit(40, "meters")
  11814. },
  11815. {
  11816. name: "Small Macro",
  11817. height: math.unit(400, "meters")
  11818. },
  11819. {
  11820. name: "Macro",
  11821. height: math.unit(4, "miles")
  11822. },
  11823. {
  11824. name: "Megamacro",
  11825. height: math.unit(40, "miles")
  11826. },
  11827. {
  11828. name: "Megamacro+",
  11829. height: math.unit(400, "miles")
  11830. },
  11831. {
  11832. name: "Gigamacro",
  11833. height: math.unit(400000, "miles")
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11839. {
  11840. side: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(150, "lb"),
  11843. name: "Side",
  11844. image: {
  11845. source: "./media/characters/kimiko/side.svg",
  11846. extra: 600 / 358
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(15, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Macro",
  11858. height: math.unit(220, "feet")
  11859. },
  11860. {
  11861. name: "Macro+",
  11862. height: math.unit(1450, "feet")
  11863. },
  11864. {
  11865. name: "Megamacro",
  11866. height: math.unit(11500, "feet")
  11867. },
  11868. {
  11869. name: "Gigamacro",
  11870. height: math.unit(9500, "miles")
  11871. },
  11872. {
  11873. name: "Teramacro",
  11874. height: math.unit(2208005005, "miles")
  11875. },
  11876. {
  11877. name: "Examacro",
  11878. height: math.unit(2750, "parsecs")
  11879. },
  11880. {
  11881. name: "Zettamacro",
  11882. height: math.unit(101500, "parsecs")
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(70, "kg"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/andrew-sleepy/front.svg"
  11895. }
  11896. },
  11897. side: {
  11898. height: math.unit(6, "feet"),
  11899. weight: math.unit(70, "kg"),
  11900. name: "Side",
  11901. image: {
  11902. source: "./media/characters/andrew-sleepy/side.svg"
  11903. }
  11904. },
  11905. },
  11906. [
  11907. {
  11908. name: "Micro",
  11909. height: math.unit(1, "mm"),
  11910. default: true
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11916. {
  11917. front: {
  11918. height: math.unit(6, "feet"),
  11919. weight: math.unit(150, "lb"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/judio/front.svg",
  11923. extra: 1258 / 1110
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(5 + 6 / 12, "feet")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(1000, "feet"),
  11935. default: true
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(10, "miles")
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11945. {
  11946. frontDressed: {
  11947. height: math.unit(6, "feet"),
  11948. weight: math.unit(68, "kg"),
  11949. name: "Front (Dressed)",
  11950. image: {
  11951. source: "./media/characters/nomaxice/front-dressed.svg",
  11952. extra: 1137/824,
  11953. bottom: 74/1211
  11954. }
  11955. },
  11956. frontShorts: {
  11957. height: math.unit(6, "feet"),
  11958. weight: math.unit(68, "kg"),
  11959. name: "Front (Shorts)",
  11960. image: {
  11961. source: "./media/characters/nomaxice/front-shorts.svg",
  11962. extra: 1137/824,
  11963. bottom: 74/1211
  11964. }
  11965. },
  11966. back: {
  11967. height: math.unit(6, "feet"),
  11968. weight: math.unit(68, "kg"),
  11969. name: "Back",
  11970. image: {
  11971. source: "./media/characters/nomaxice/back.svg",
  11972. extra: 822/786,
  11973. bottom: 39/861
  11974. }
  11975. },
  11976. hand: {
  11977. height: math.unit(0.565, "feet"),
  11978. name: "Hand",
  11979. image: {
  11980. source: "./media/characters/nomaxice/hand.svg"
  11981. }
  11982. },
  11983. foot: {
  11984. height: math.unit(1, "feet"),
  11985. name: "Foot",
  11986. image: {
  11987. source: "./media/characters/nomaxice/foot.svg"
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Micro",
  11994. height: math.unit(8, "cm")
  11995. },
  11996. {
  11997. name: "Norm",
  11998. height: math.unit(1.82, "m")
  11999. },
  12000. {
  12001. name: "Norm+",
  12002. height: math.unit(8.8, "feet"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Big",
  12007. height: math.unit(8, "meters")
  12008. },
  12009. {
  12010. name: "Macro",
  12011. height: math.unit(18, "meters")
  12012. },
  12013. {
  12014. name: "Macro+",
  12015. height: math.unit(88, "meters")
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(12, "feet"),
  12024. weight: math.unit(1.5, "tons"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/dydros/front.svg",
  12028. extra: 863 / 800,
  12029. bottom: 0.015
  12030. }
  12031. },
  12032. back: {
  12033. height: math.unit(12, "feet"),
  12034. weight: math.unit(1.5, "tons"),
  12035. name: "Back",
  12036. image: {
  12037. source: "./media/characters/dydros/back.svg",
  12038. extra: 900 / 843,
  12039. bottom: 0.005
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Normal",
  12046. height: math.unit(12, "feet"),
  12047. default: true
  12048. },
  12049. ]
  12050. ))
  12051. characterMakers.push(() => makeCharacter(
  12052. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12053. {
  12054. front: {
  12055. height: math.unit(6, "feet"),
  12056. weight: math.unit(100, "kg"),
  12057. name: "Front",
  12058. image: {
  12059. source: "./media/characters/riggi/front.svg",
  12060. extra: 5787 / 5303
  12061. }
  12062. },
  12063. hyper: {
  12064. height: math.unit(6 * 5 / 3, "feet"),
  12065. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12066. name: "Hyper",
  12067. image: {
  12068. source: "./media/characters/riggi/hyper.svg",
  12069. extra: 3595 / 3485
  12070. }
  12071. },
  12072. },
  12073. [
  12074. {
  12075. name: "Small Macro",
  12076. height: math.unit(50, "feet")
  12077. },
  12078. {
  12079. name: "Default",
  12080. height: math.unit(200, "feet"),
  12081. default: true
  12082. },
  12083. {
  12084. name: "Loom",
  12085. height: math.unit(10000, "feet")
  12086. },
  12087. {
  12088. name: "Cruising Altitude",
  12089. height: math.unit(30000, "feet")
  12090. },
  12091. {
  12092. name: "Megamacro",
  12093. height: math.unit(100, "miles")
  12094. },
  12095. {
  12096. name: "Continent Sized",
  12097. height: math.unit(2800, "miles")
  12098. },
  12099. {
  12100. name: "Earth Sized",
  12101. height: math.unit(8000, "miles")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12107. {
  12108. front: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(250, "lb"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/alexi/front.svg",
  12114. extra: 3483 / 3291,
  12115. bottom: 0.04
  12116. }
  12117. },
  12118. back: {
  12119. height: math.unit(6, "feet"),
  12120. weight: math.unit(250, "lb"),
  12121. name: "Back",
  12122. image: {
  12123. source: "./media/characters/alexi/back.svg",
  12124. extra: 3533 / 3356,
  12125. bottom: 0.021
  12126. }
  12127. },
  12128. frontTransforming: {
  12129. height: math.unit(8.58, "feet"),
  12130. weight: math.unit(1300, "lb"),
  12131. name: "Transforming",
  12132. image: {
  12133. source: "./media/characters/alexi/front-transforming.svg",
  12134. extra: 437 / 409,
  12135. bottom: 19 / 458.66
  12136. }
  12137. },
  12138. frontTransformed: {
  12139. height: math.unit(12.5, "feet"),
  12140. weight: math.unit(4000, "lb"),
  12141. name: "Transformed",
  12142. image: {
  12143. source: "./media/characters/alexi/front-transformed.svg",
  12144. extra: 639 / 614,
  12145. bottom: 30.55 / 671
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Normal",
  12152. height: math.unit(14, "feet"),
  12153. default: true
  12154. },
  12155. {
  12156. name: "Minimacro",
  12157. height: math.unit(30, "meters")
  12158. },
  12159. {
  12160. name: "Macro",
  12161. height: math.unit(500, "meters")
  12162. },
  12163. {
  12164. name: "Megamacro",
  12165. height: math.unit(9000, "km")
  12166. },
  12167. {
  12168. name: "Teramacro",
  12169. height: math.unit(384000, "km")
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(150, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/kayroo/front.svg",
  12182. extra: 1153 / 1038,
  12183. bottom: 0.06
  12184. }
  12185. },
  12186. foot: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(150, "lb"),
  12189. name: "Foot",
  12190. image: {
  12191. source: "./media/characters/kayroo/foot.svg"
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(8, "feet"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Minimacro",
  12203. height: math.unit(250, "feet")
  12204. },
  12205. {
  12206. name: "Macro",
  12207. height: math.unit(2800, "feet")
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(5200, "feet")
  12212. },
  12213. {
  12214. name: "Gigamacro",
  12215. height: math.unit(27000, "feet")
  12216. },
  12217. {
  12218. name: "Omega",
  12219. height: math.unit(45000, "feet")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12225. {
  12226. front: {
  12227. height: math.unit(18, "feet"),
  12228. weight: math.unit(5800, "lb"),
  12229. name: "Front",
  12230. image: {
  12231. source: "./media/characters/rhys/front.svg",
  12232. extra: 3386 / 3090,
  12233. bottom: 0.07
  12234. }
  12235. },
  12236. },
  12237. [
  12238. {
  12239. name: "Normal",
  12240. height: math.unit(18, "feet"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Working Size",
  12245. height: math.unit(200, "feet")
  12246. },
  12247. {
  12248. name: "Demolition Size",
  12249. height: math.unit(2000, "feet")
  12250. },
  12251. {
  12252. name: "Maximum Licensed Size",
  12253. height: math.unit(5, "miles")
  12254. },
  12255. {
  12256. name: "Maximum Observed Size",
  12257. height: math.unit(10, "yottameters")
  12258. },
  12259. ]
  12260. ))
  12261. characterMakers.push(() => makeCharacter(
  12262. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12263. {
  12264. front: {
  12265. height: math.unit(6, "feet"),
  12266. weight: math.unit(250, "lb"),
  12267. name: "Front",
  12268. image: {
  12269. source: "./media/characters/toto/front.svg",
  12270. extra: 527 / 479,
  12271. bottom: 0.05
  12272. }
  12273. },
  12274. },
  12275. [
  12276. {
  12277. name: "Micro",
  12278. height: math.unit(3, "feet")
  12279. },
  12280. {
  12281. name: "Normal",
  12282. height: math.unit(10, "feet")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(150, "feet"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(1200, "feet")
  12292. },
  12293. ]
  12294. ))
  12295. characterMakers.push(() => makeCharacter(
  12296. { name: "King", species: ["lion"], tags: ["anthro"] },
  12297. {
  12298. back: {
  12299. height: math.unit(6, "feet"),
  12300. weight: math.unit(150, "lb"),
  12301. name: "Back",
  12302. image: {
  12303. source: "./media/characters/king/back.svg"
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Micro",
  12310. height: math.unit(2, "inches")
  12311. },
  12312. {
  12313. name: "Normal",
  12314. height: math.unit(8, "feet")
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(200, "feet"),
  12319. default: true
  12320. },
  12321. {
  12322. name: "Megamacro",
  12323. height: math.unit(50, "miles")
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(11, "feet"),
  12332. weight: math.unit(1400, "lb"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/cordite/front.svg",
  12336. extra: 1919/1827,
  12337. bottom: 40/1959
  12338. }
  12339. },
  12340. side: {
  12341. height: math.unit(11, "feet"),
  12342. weight: math.unit(1400, "lb"),
  12343. name: "Side",
  12344. image: {
  12345. source: "./media/characters/cordite/side.svg",
  12346. extra: 1908/1793,
  12347. bottom: 38/1946
  12348. }
  12349. },
  12350. back: {
  12351. height: math.unit(11, "feet"),
  12352. weight: math.unit(1400, "lb"),
  12353. name: "Back",
  12354. image: {
  12355. source: "./media/characters/cordite/back.svg",
  12356. extra: 1938/1837,
  12357. bottom: 10/1948
  12358. }
  12359. },
  12360. feral: {
  12361. height: math.unit(2, "feet"),
  12362. weight: math.unit(90, "lb"),
  12363. name: "Feral",
  12364. image: {
  12365. source: "./media/characters/cordite/feral.svg",
  12366. extra: 1260 / 755,
  12367. bottom: 0.05
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Normal",
  12374. height: math.unit(11, "feet"),
  12375. default: true
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(150, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/pianostrong/front.svg",
  12388. extra: 6577 / 6254,
  12389. bottom: 0.02
  12390. }
  12391. },
  12392. side: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(150, "lb"),
  12395. name: "Side",
  12396. image: {
  12397. source: "./media/characters/pianostrong/side.svg",
  12398. extra: 6106 / 5730
  12399. }
  12400. },
  12401. back: {
  12402. height: math.unit(6, "feet"),
  12403. weight: math.unit(150, "lb"),
  12404. name: "Back",
  12405. image: {
  12406. source: "./media/characters/pianostrong/back.svg",
  12407. extra: 6085 / 5733,
  12408. bottom: 0.01
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(100, "feet")
  12416. },
  12417. {
  12418. name: "Macro+",
  12419. height: math.unit(300, "feet"),
  12420. default: true
  12421. },
  12422. {
  12423. name: "Macro++",
  12424. height: math.unit(1000, "feet")
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12430. {
  12431. front: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(150, "lb"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/kona/front.svg",
  12437. extra: 2960 / 2629,
  12438. bottom: 0.005
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(11 + 8 / 12, "feet")
  12446. },
  12447. {
  12448. name: "Macro",
  12449. height: math.unit(850, "feet"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Macro+",
  12454. height: math.unit(1.5, "km"),
  12455. default: true
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(80, "miles")
  12460. },
  12461. {
  12462. name: "Gigamacro",
  12463. height: math.unit(3500, "miles")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12469. {
  12470. side: {
  12471. height: math.unit(1.9, "meters"),
  12472. weight: math.unit(326, "kg"),
  12473. name: "Side",
  12474. image: {
  12475. source: "./media/characters/levi/side.svg",
  12476. extra: 1704 / 1334,
  12477. bottom: 0.02
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Normal",
  12484. height: math.unit(1.9, "meters"),
  12485. default: true
  12486. },
  12487. {
  12488. name: "Macro",
  12489. height: math.unit(20, "meters")
  12490. },
  12491. {
  12492. name: "Macro+",
  12493. height: math.unit(200, "meters")
  12494. },
  12495. {
  12496. name: "Megamacro",
  12497. height: math.unit(2, "km")
  12498. },
  12499. {
  12500. name: "Megamacro+",
  12501. height: math.unit(20, "km")
  12502. },
  12503. {
  12504. name: "Gigamacro",
  12505. height: math.unit(2500, "km")
  12506. },
  12507. {
  12508. name: "Gigamacro+",
  12509. height: math.unit(120000, "km")
  12510. },
  12511. {
  12512. name: "Teramacro",
  12513. height: math.unit(7.77e6, "km")
  12514. },
  12515. ]
  12516. ))
  12517. characterMakers.push(() => makeCharacter(
  12518. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12519. {
  12520. front: {
  12521. height: math.unit(6 + 4/12, "feet"),
  12522. weight: math.unit(190, "lb"),
  12523. name: "Front",
  12524. image: {
  12525. source: "./media/characters/bmc/front.svg",
  12526. extra: 1626/1472,
  12527. bottom: 79/1705
  12528. }
  12529. },
  12530. back: {
  12531. height: math.unit(6 + 4/12, "feet"),
  12532. weight: math.unit(190, "lb"),
  12533. name: "Back",
  12534. image: {
  12535. source: "./media/characters/bmc/back.svg",
  12536. extra: 1640/1479,
  12537. bottom: 45/1685
  12538. }
  12539. },
  12540. frontArmor: {
  12541. height: math.unit(6 + 4/12, "feet"),
  12542. weight: math.unit(190, "lb"),
  12543. name: "Front-armor",
  12544. image: {
  12545. source: "./media/characters/bmc/front-armor.svg",
  12546. extra: 1538/1468,
  12547. bottom: 79/1617
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Human-sized",
  12554. height: math.unit(6 + 4 / 12, "feet")
  12555. },
  12556. {
  12557. name: "Interactive Size",
  12558. height: math.unit(25, "feet")
  12559. },
  12560. {
  12561. name: "Small",
  12562. height: math.unit(250, "feet")
  12563. },
  12564. {
  12565. name: "Normal",
  12566. height: math.unit(1250, "feet"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Good Day",
  12571. height: math.unit(88, "miles")
  12572. },
  12573. {
  12574. name: "Largest Measured Size",
  12575. height: math.unit(105.960, "galaxies")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(20, "feet"),
  12584. weight: math.unit(2016, "kg"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/sven-the-kaiju/front.svg",
  12588. extra: 1277/1250,
  12589. bottom: 35/1312
  12590. }
  12591. },
  12592. mouth: {
  12593. height: math.unit(1.85, "feet"),
  12594. name: "Mouth",
  12595. image: {
  12596. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Fairy",
  12603. height: math.unit(6, "inches")
  12604. },
  12605. {
  12606. name: "Normal",
  12607. height: math.unit(20, "feet"),
  12608. default: true
  12609. },
  12610. {
  12611. name: "Rampage",
  12612. height: math.unit(200, "feet")
  12613. },
  12614. {
  12615. name: "Archfey Forest Guardian",
  12616. height: math.unit(1, "mile")
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(4, "meters"),
  12625. weight: math.unit(2, "tons"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/marik/front.svg",
  12629. extra: 1057 / 1003,
  12630. bottom: 0.08
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Normal",
  12637. height: math.unit(4, "meters"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(20, "meters")
  12643. },
  12644. {
  12645. name: "Megamacro",
  12646. height: math.unit(50, "km")
  12647. },
  12648. {
  12649. name: "Gigamacro",
  12650. height: math.unit(100, "km")
  12651. },
  12652. {
  12653. name: "Alpha Macro",
  12654. height: math.unit(7.88e7, "yottameters")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(110, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/mel/front.svg",
  12667. extra: 736 / 617,
  12668. bottom: 0.017
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Pico",
  12675. height: math.unit(3, "pm")
  12676. },
  12677. {
  12678. name: "Nano",
  12679. height: math.unit(3, "nm")
  12680. },
  12681. {
  12682. name: "Micro",
  12683. height: math.unit(0.3, "mm"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Micro+",
  12688. height: math.unit(3, "mm")
  12689. },
  12690. {
  12691. name: "Normal",
  12692. height: math.unit(5 + 10.5 / 12, "feet")
  12693. },
  12694. ]
  12695. ))
  12696. characterMakers.push(() => makeCharacter(
  12697. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12698. {
  12699. kaiju: {
  12700. height: math.unit(1.75, "meters"),
  12701. weight: math.unit(55, "kg"),
  12702. name: "Kaiju",
  12703. image: {
  12704. source: "./media/characters/lykonous/kaiju.svg",
  12705. extra: 1055 / 946,
  12706. bottom: 0.135
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(2.5, "meters"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Kaiju Dragon",
  12718. height: math.unit(60, "meters")
  12719. },
  12720. {
  12721. name: "Mega Kaiju",
  12722. height: math.unit(120, "km")
  12723. },
  12724. {
  12725. name: "Giga Kaiju",
  12726. height: math.unit(200, "megameters")
  12727. },
  12728. {
  12729. name: "Terra Kaiju",
  12730. height: math.unit(400, "gigameters")
  12731. },
  12732. {
  12733. name: "Kaiju Dragon God",
  12734. height: math.unit(13000, "exaparsecs")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(150, "lb"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/blü/front.svg",
  12747. extra: 1883 / 1564,
  12748. bottom: 0.031
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(13, "feet"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Big Boi",
  12760. height: math.unit(150, "meters")
  12761. },
  12762. {
  12763. name: "Mini Stomper",
  12764. height: math.unit(300, "meters")
  12765. },
  12766. {
  12767. name: "Macro",
  12768. height: math.unit(1000, "meters")
  12769. },
  12770. {
  12771. name: "Megamacro",
  12772. height: math.unit(11000, "meters")
  12773. },
  12774. {
  12775. name: "Gigamacro",
  12776. height: math.unit(11000, "km")
  12777. },
  12778. {
  12779. name: "Teramacro",
  12780. height: math.unit(420000, "km")
  12781. },
  12782. {
  12783. name: "Examacro",
  12784. height: math.unit(120, "parsecs")
  12785. },
  12786. {
  12787. name: "God Tho",
  12788. height: math.unit(98000000000, "parsecs")
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12794. {
  12795. taurFront: {
  12796. height: math.unit(6, "feet"),
  12797. weight: math.unit(200, "lb"),
  12798. name: "Taur (Front)",
  12799. image: {
  12800. source: "./media/characters/scales/taur-front.svg",
  12801. extra: 1,
  12802. bottom: 0.05
  12803. }
  12804. },
  12805. taurBack: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(200, "lb"),
  12808. name: "Taur (Back)",
  12809. image: {
  12810. source: "./media/characters/scales/taur-back.svg",
  12811. extra: 1,
  12812. bottom: 0.08
  12813. }
  12814. },
  12815. anthro: {
  12816. height: math.unit(6 * 7 / 12, "feet"),
  12817. weight: math.unit(100, "lb"),
  12818. name: "Anthro",
  12819. image: {
  12820. source: "./media/characters/scales/anthro.svg",
  12821. extra: 1,
  12822. bottom: 0.06
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(12, "feet"),
  12830. default: true
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12836. {
  12837. front: {
  12838. height: math.unit(6, "feet"),
  12839. weight: math.unit(150, "lb"),
  12840. name: "Front",
  12841. image: {
  12842. source: "./media/characters/koragos/front.svg",
  12843. extra: 841 / 794,
  12844. bottom: 0.035
  12845. }
  12846. },
  12847. back: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(150, "lb"),
  12850. name: "Back",
  12851. image: {
  12852. source: "./media/characters/koragos/back.svg",
  12853. extra: 841 / 810,
  12854. bottom: 0.022
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Normal",
  12861. height: math.unit(6 + 11 / 12, "feet"),
  12862. default: true
  12863. },
  12864. {
  12865. name: "Macro",
  12866. height: math.unit(490, "feet")
  12867. },
  12868. {
  12869. name: "Megamacro",
  12870. height: math.unit(10, "miles")
  12871. },
  12872. {
  12873. name: "Gigamacro",
  12874. height: math.unit(50, "miles")
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(6, "feet"),
  12883. weight: math.unit(250, "lb"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/xylrem/front.svg",
  12887. extra: 3323 / 3050,
  12888. bottom: 0.065
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Micro",
  12895. height: math.unit(4, "feet")
  12896. },
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(16, "feet"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(2720, "feet")
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(25000, "miles")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(8, "feet"),
  12917. weight: math.unit(250, "kg"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/ikideru/front.svg",
  12921. extra: 930 / 870,
  12922. bottom: 0.087
  12923. }
  12924. },
  12925. back: {
  12926. height: math.unit(8, "feet"),
  12927. weight: math.unit(250, "kg"),
  12928. name: "Back",
  12929. image: {
  12930. source: "./media/characters/ikideru/back.svg",
  12931. extra: 919 / 852,
  12932. bottom: 0.055
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Rare",
  12939. height: math.unit(8, "feet"),
  12940. default: true
  12941. },
  12942. {
  12943. name: "Playful Loom",
  12944. height: math.unit(80, "feet")
  12945. },
  12946. {
  12947. name: "City Leaner",
  12948. height: math.unit(230, "feet")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(2500, "feet")
  12953. },
  12954. {
  12955. name: "Gigamacro",
  12956. height: math.unit(26400, "feet")
  12957. },
  12958. {
  12959. name: "Tectonic Shifter",
  12960. height: math.unit(1.7, "megameters")
  12961. },
  12962. {
  12963. name: "Planet Carer",
  12964. height: math.unit(21, "megameters")
  12965. },
  12966. {
  12967. name: "God",
  12968. height: math.unit(11157.22, "parsecs")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(6, "feet"),
  12977. weight: math.unit(120, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/neo/front.svg"
  12981. }
  12982. },
  12983. },
  12984. [
  12985. {
  12986. name: "Micro",
  12987. height: math.unit(2, "inches"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Human Size",
  12992. height: math.unit(5 + 8 / 12, "feet")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(13 + 10 / 12, "feet"),
  13001. weight: math.unit(5320, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/chauncey-chantz/front.svg",
  13005. extra: 1587 / 1435,
  13006. bottom: 0.02
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(13 + 10 / 12, "feet"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(45, "feet")
  13019. },
  13020. {
  13021. name: "Megamacro",
  13022. height: math.unit(250, "miles")
  13023. },
  13024. {
  13025. name: "Planetary",
  13026. height: math.unit(10000, "miles")
  13027. },
  13028. {
  13029. name: "Galactic",
  13030. height: math.unit(40000, "parsecs")
  13031. },
  13032. {
  13033. name: "Universal",
  13034. height: math.unit(1, "yottameter")
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/epifox/front.svg",
  13047. extra: 1,
  13048. bottom: 0.075
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Micro",
  13055. height: math.unit(6, "inches")
  13056. },
  13057. {
  13058. name: "Normal",
  13059. height: math.unit(12, "feet"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Macro",
  13064. height: math.unit(3810, "feet")
  13065. },
  13066. {
  13067. name: "Megamacro",
  13068. height: math.unit(500, "miles")
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13074. {
  13075. front: {
  13076. height: math.unit(1.8796, "m"),
  13077. weight: math.unit(230, "lb"),
  13078. name: "Front",
  13079. image: {
  13080. source: "./media/characters/colin-t/front.svg",
  13081. extra: 1272 / 1193,
  13082. bottom: 0.07
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Micro",
  13089. height: math.unit(0.571, "meters")
  13090. },
  13091. {
  13092. name: "Normal",
  13093. height: math.unit(1.8796, "meters"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Tall",
  13098. height: math.unit(4, "meters")
  13099. },
  13100. {
  13101. name: "Macro",
  13102. height: math.unit(67.241, "meters")
  13103. },
  13104. {
  13105. name: "Megamacro",
  13106. height: math.unit(371.856, "meters")
  13107. },
  13108. {
  13109. name: "Planetary",
  13110. height: math.unit(12631.5689, "km")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13116. {
  13117. front: {
  13118. height: math.unit(1.85, "meters"),
  13119. weight: math.unit(80, "kg"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/matvei/front.svg",
  13123. extra: 456/447,
  13124. bottom: 8/464
  13125. }
  13126. },
  13127. back: {
  13128. height: math.unit(1.85, "meters"),
  13129. weight: math.unit(80, "kg"),
  13130. name: "Back",
  13131. image: {
  13132. source: "./media/characters/matvei/back.svg",
  13133. extra: 434/427,
  13134. bottom: 11/445
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Normal",
  13141. height: math.unit(1.85, "meters"),
  13142. default: true
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13148. {
  13149. front: {
  13150. height: math.unit(5 + 9 / 12, "feet"),
  13151. weight: math.unit(70, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/quincy/front.svg",
  13155. extra: 3041 / 2751
  13156. }
  13157. },
  13158. back: {
  13159. height: math.unit(5 + 9 / 12, "feet"),
  13160. weight: math.unit(70, "lb"),
  13161. name: "Back",
  13162. image: {
  13163. source: "./media/characters/quincy/back.svg",
  13164. extra: 3041 / 2751
  13165. }
  13166. },
  13167. flying: {
  13168. height: math.unit(5 + 4 / 12, "feet"),
  13169. weight: math.unit(70, "lb"),
  13170. name: "Flying",
  13171. image: {
  13172. source: "./media/characters/quincy/flying.svg",
  13173. extra: 1044 / 930
  13174. }
  13175. },
  13176. },
  13177. [
  13178. {
  13179. name: "Micro",
  13180. height: math.unit(3, "cm")
  13181. },
  13182. {
  13183. name: "Normal",
  13184. height: math.unit(5 + 9 / 12, "feet")
  13185. },
  13186. {
  13187. name: "Macro",
  13188. height: math.unit(200, "meters"),
  13189. default: true
  13190. },
  13191. {
  13192. name: "Megamacro",
  13193. height: math.unit(1000, "meters")
  13194. },
  13195. ]
  13196. ))
  13197. characterMakers.push(() => makeCharacter(
  13198. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13199. {
  13200. front: {
  13201. height: math.unit(3 + 11/12, "feet"),
  13202. weight: math.unit(50, "lb"),
  13203. name: "Front",
  13204. image: {
  13205. source: "./media/characters/vanrel/front.svg",
  13206. extra: 1104/949,
  13207. bottom: 52/1156
  13208. }
  13209. },
  13210. back: {
  13211. height: math.unit(3 + 11/12, "feet"),
  13212. weight: math.unit(50, "lb"),
  13213. name: "Back",
  13214. image: {
  13215. source: "./media/characters/vanrel/back.svg",
  13216. extra: 1119/976,
  13217. bottom: 37/1156
  13218. }
  13219. },
  13220. tome: {
  13221. height: math.unit(1.35, "feet"),
  13222. weight: math.unit(10, "lb"),
  13223. name: "Vanrel's Tome",
  13224. rename: true,
  13225. image: {
  13226. source: "./media/characters/vanrel/tome.svg"
  13227. }
  13228. },
  13229. beans: {
  13230. height: math.unit(0.89, "feet"),
  13231. name: "Beans",
  13232. image: {
  13233. source: "./media/characters/vanrel/beans.svg"
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Normal",
  13240. height: math.unit(3 + 11/12, "feet"),
  13241. default: true
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(7 + 5 / 12, "feet"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/kuiper-vanrel/front.svg",
  13253. extra: 1219/1169,
  13254. bottom: 69/1288
  13255. }
  13256. },
  13257. back: {
  13258. height: math.unit(7 + 5 / 12, "feet"),
  13259. name: "Back",
  13260. image: {
  13261. source: "./media/characters/kuiper-vanrel/back.svg",
  13262. extra: 1236/1193,
  13263. bottom: 27/1263
  13264. }
  13265. },
  13266. foot: {
  13267. height: math.unit(0.55, "meters"),
  13268. name: "Foot",
  13269. image: {
  13270. source: "./media/characters/kuiper-vanrel/foot.svg",
  13271. }
  13272. },
  13273. battle: {
  13274. height: math.unit(6.824, "feet"),
  13275. name: "Battle",
  13276. image: {
  13277. source: "./media/characters/kuiper-vanrel/battle.svg",
  13278. extra: 1466 / 1327,
  13279. bottom: 29 / 1492.5
  13280. }
  13281. },
  13282. meerkui: {
  13283. height: math.unit(18, "inches"),
  13284. name: "Meerkui",
  13285. image: {
  13286. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13287. extra: 1354/1289,
  13288. bottom: 69/1423
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Normal",
  13295. height: math.unit(7 + 5 / 12, "feet"),
  13296. default: true
  13297. },
  13298. ]
  13299. ))
  13300. characterMakers.push(() => makeCharacter(
  13301. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13302. {
  13303. front: {
  13304. height: math.unit(8 + 5 / 12, "feet"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/keset-vanrel/front.svg",
  13308. extra: 1231/1148,
  13309. bottom: 82/1313
  13310. }
  13311. },
  13312. back: {
  13313. height: math.unit(8 + 5 / 12, "feet"),
  13314. name: "Back",
  13315. image: {
  13316. source: "./media/characters/keset-vanrel/back.svg",
  13317. extra: 1240/1174,
  13318. bottom: 33/1273
  13319. }
  13320. },
  13321. hand: {
  13322. height: math.unit(0.6, "meters"),
  13323. name: "Hand",
  13324. image: {
  13325. source: "./media/characters/keset-vanrel/hand.svg"
  13326. }
  13327. },
  13328. foot: {
  13329. height: math.unit(0.94978, "meters"),
  13330. name: "Foot",
  13331. image: {
  13332. source: "./media/characters/keset-vanrel/foot.svg"
  13333. }
  13334. },
  13335. battle: {
  13336. height: math.unit(7.408, "feet"),
  13337. name: "Battle",
  13338. image: {
  13339. source: "./media/characters/keset-vanrel/battle.svg",
  13340. extra: 1890 / 1386,
  13341. bottom: 73.28 / 1970
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(8 + 5 / 12, "feet"),
  13349. default: true
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6, "feet"),
  13358. weight: math.unit(150, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/neos/front.svg",
  13362. extra: 1696 / 992,
  13363. bottom: 0.14
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(54, "cm"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(100, "m")
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(10, "km")
  13380. },
  13381. {
  13382. name: "Megamacro+",
  13383. height: math.unit(100, "km")
  13384. },
  13385. {
  13386. name: "Gigamacro",
  13387. height: math.unit(100, "Mm")
  13388. },
  13389. {
  13390. name: "Teramacro",
  13391. height: math.unit(100, "Gm")
  13392. },
  13393. {
  13394. name: "Examacro",
  13395. height: math.unit(100, "Em")
  13396. },
  13397. {
  13398. name: "Godly",
  13399. height: math.unit(10000, "Ym")
  13400. },
  13401. {
  13402. name: "Beyond Godly",
  13403. height: math.unit(25, "multiverses")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13409. {
  13410. feminine: {
  13411. height: math.unit(5, "feet"),
  13412. weight: math.unit(100, "lb"),
  13413. name: "Feminine",
  13414. image: {
  13415. source: "./media/characters/sammy-mouse/feminine.svg",
  13416. extra: 2526 / 2425,
  13417. bottom: 0.123
  13418. }
  13419. },
  13420. masculine: {
  13421. height: math.unit(5, "feet"),
  13422. weight: math.unit(100, "lb"),
  13423. name: "Masculine",
  13424. image: {
  13425. source: "./media/characters/sammy-mouse/masculine.svg",
  13426. extra: 2526 / 2425,
  13427. bottom: 0.123
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Micro",
  13434. height: math.unit(5, "inches")
  13435. },
  13436. {
  13437. name: "Normal",
  13438. height: math.unit(5, "feet"),
  13439. default: true
  13440. },
  13441. {
  13442. name: "Macro",
  13443. height: math.unit(60, "feet")
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(4, "feet"),
  13452. weight: math.unit(50, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/kole/front.svg",
  13456. extra: 1423 / 1303,
  13457. bottom: 0.025
  13458. }
  13459. },
  13460. back: {
  13461. height: math.unit(4, "feet"),
  13462. weight: math.unit(50, "lb"),
  13463. name: "Back",
  13464. image: {
  13465. source: "./media/characters/kole/back.svg",
  13466. extra: 1426 / 1280,
  13467. bottom: 0.02
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(4, "feet"),
  13475. default: true
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(2.5, "feet"),
  13484. weight: math.unit(32, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/rufran/front.svg",
  13488. extra: 1313/885,
  13489. bottom: 94/1407
  13490. }
  13491. },
  13492. side: {
  13493. height: math.unit(2.5, "feet"),
  13494. weight: math.unit(32, "lb"),
  13495. name: "Side",
  13496. image: {
  13497. source: "./media/characters/rufran/side.svg",
  13498. extra: 1109/852,
  13499. bottom: 118/1227
  13500. }
  13501. },
  13502. back: {
  13503. height: math.unit(2.5, "feet"),
  13504. weight: math.unit(32, "lb"),
  13505. name: "Back",
  13506. image: {
  13507. source: "./media/characters/rufran/back.svg",
  13508. extra: 1280/878,
  13509. bottom: 131/1411
  13510. }
  13511. },
  13512. mouth: {
  13513. height: math.unit(1.13, "feet"),
  13514. name: "Mouth",
  13515. image: {
  13516. source: "./media/characters/rufran/mouth.svg"
  13517. }
  13518. },
  13519. foot: {
  13520. height: math.unit(1.33, "feet"),
  13521. name: "Foot",
  13522. image: {
  13523. source: "./media/characters/rufran/foot.svg"
  13524. }
  13525. },
  13526. koboldFront: {
  13527. height: math.unit(2 + 6 / 12, "feet"),
  13528. weight: math.unit(20, "lb"),
  13529. name: "Front (Kobold)",
  13530. image: {
  13531. source: "./media/characters/rufran/kobold-front.svg",
  13532. extra: 2041 / 1839,
  13533. bottom: 0.055
  13534. }
  13535. },
  13536. koboldBack: {
  13537. height: math.unit(2 + 6 / 12, "feet"),
  13538. weight: math.unit(20, "lb"),
  13539. name: "Back (Kobold)",
  13540. image: {
  13541. source: "./media/characters/rufran/kobold-back.svg",
  13542. extra: 2054 / 1839,
  13543. bottom: 0.01
  13544. }
  13545. },
  13546. koboldHand: {
  13547. height: math.unit(0.2166, "meters"),
  13548. name: "Hand (Kobold)",
  13549. image: {
  13550. source: "./media/characters/rufran/kobold-hand.svg"
  13551. }
  13552. },
  13553. koboldFoot: {
  13554. height: math.unit(0.185, "meters"),
  13555. name: "Foot (Kobold)",
  13556. image: {
  13557. source: "./media/characters/rufran/kobold-foot.svg"
  13558. }
  13559. },
  13560. },
  13561. [
  13562. {
  13563. name: "Micro",
  13564. height: math.unit(1, "inch")
  13565. },
  13566. {
  13567. name: "Normal",
  13568. height: math.unit(2 + 6 / 12, "feet"),
  13569. default: true
  13570. },
  13571. {
  13572. name: "Big",
  13573. height: math.unit(60, "feet")
  13574. },
  13575. {
  13576. name: "Macro",
  13577. height: math.unit(325, "feet")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(0.3, "meters"),
  13586. weight: math.unit(3.5, "kg"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/chip/front.svg",
  13590. extra: 748 / 674
  13591. }
  13592. },
  13593. },
  13594. [
  13595. {
  13596. name: "Micro",
  13597. height: math.unit(1, "inch"),
  13598. default: true
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13604. {
  13605. side: {
  13606. height: math.unit(2.3, "meters"),
  13607. weight: math.unit(3500, "lb"),
  13608. name: "Side",
  13609. image: {
  13610. source: "./media/characters/torvid/side.svg",
  13611. extra: 1972 / 722,
  13612. bottom: 0.035
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(2.3, "meters"),
  13620. default: true
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(2, "meters"),
  13629. weight: math.unit(150.5, "kg"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/susan/front.svg",
  13633. extra: 693 / 635,
  13634. bottom: 0.05
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Megamacro",
  13641. height: math.unit(505, "miles"),
  13642. default: true
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(6, "feet"),
  13651. weight: math.unit(150, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/raindrops/front.svg",
  13655. extra: 2655 / 2461,
  13656. bottom: 49 / 2705
  13657. }
  13658. },
  13659. back: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/raindrops/back.svg",
  13665. extra: 2574 / 2400,
  13666. bottom: 65 / 2634
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Micro",
  13673. height: math.unit(6, "inches")
  13674. },
  13675. {
  13676. name: "Normal",
  13677. height: math.unit(6 + 2 / 12, "feet")
  13678. },
  13679. {
  13680. name: "Macro",
  13681. height: math.unit(131, "feet"),
  13682. default: true
  13683. },
  13684. {
  13685. name: "Megamacro",
  13686. height: math.unit(15, "miles")
  13687. },
  13688. {
  13689. name: "Gigamacro",
  13690. height: math.unit(4000, "miles")
  13691. },
  13692. {
  13693. name: "Teramacro",
  13694. height: math.unit(315000, "miles")
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(2.794, "meters"),
  13703. weight: math.unit(325, "kg"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/tezwa/front.svg",
  13707. extra: 2083 / 1906,
  13708. bottom: 0.031
  13709. }
  13710. },
  13711. foot: {
  13712. height: math.unit(0.687, "meters"),
  13713. name: "Foot",
  13714. image: {
  13715. source: "./media/characters/tezwa/foot.svg"
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(9 + 2 / 12, "feet"),
  13723. default: true
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(58, "feet"),
  13732. weight: math.unit(89000, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/typhus/front.svg",
  13736. extra: 816 / 800,
  13737. bottom: 0.065
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Macro",
  13744. height: math.unit(58, "feet"),
  13745. default: true
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(12, "feet"),
  13754. weight: math.unit(6, "tonnes"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/lyra-von-wulf/front.svg",
  13758. extra: 1,
  13759. bottom: 0.10
  13760. }
  13761. },
  13762. frontMecha: {
  13763. height: math.unit(12, "feet"),
  13764. weight: math.unit(12, "tonnes"),
  13765. name: "Front (Mecha)",
  13766. image: {
  13767. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13768. extra: 1,
  13769. bottom: 0.042
  13770. }
  13771. },
  13772. maw: {
  13773. height: math.unit(2.2, "feet"),
  13774. name: "Maw",
  13775. image: {
  13776. source: "./media/characters/lyra-von-wulf/maw.svg"
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Normal",
  13783. height: math.unit(12, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Classic",
  13788. height: math.unit(50, "feet")
  13789. },
  13790. {
  13791. name: "Macro",
  13792. height: math.unit(500, "feet")
  13793. },
  13794. {
  13795. name: "Megamacro",
  13796. height: math.unit(1, "mile")
  13797. },
  13798. {
  13799. name: "Gigamacro",
  13800. height: math.unit(400, "miles")
  13801. },
  13802. {
  13803. name: "Teramacro",
  13804. height: math.unit(22000, "miles")
  13805. },
  13806. {
  13807. name: "Solarmacro",
  13808. height: math.unit(8600000, "miles")
  13809. },
  13810. {
  13811. name: "Galactic",
  13812. height: math.unit(1057000, "lightyears")
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(6 + 10 / 12, "feet"),
  13821. weight: math.unit(150, "lb"),
  13822. name: "Front",
  13823. image: {
  13824. source: "./media/characters/dixon/front.svg",
  13825. extra: 3361 / 3209,
  13826. bottom: 0.01
  13827. }
  13828. },
  13829. },
  13830. [
  13831. {
  13832. name: "Normal",
  13833. height: math.unit(6 + 10 / 12, "feet"),
  13834. default: true
  13835. },
  13836. {
  13837. name: "Big",
  13838. height: math.unit(12, "meters")
  13839. },
  13840. {
  13841. name: "Macro",
  13842. height: math.unit(500, "meters")
  13843. },
  13844. {
  13845. name: "Megamacro",
  13846. height: math.unit(2, "km")
  13847. },
  13848. ]
  13849. ))
  13850. characterMakers.push(() => makeCharacter(
  13851. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13852. {
  13853. front: {
  13854. height: math.unit(185, "cm"),
  13855. weight: math.unit(68, "kg"),
  13856. name: "Front",
  13857. image: {
  13858. source: "./media/characters/kauko/front.svg",
  13859. extra: 1455 / 1421,
  13860. bottom: 0.03
  13861. }
  13862. },
  13863. back: {
  13864. height: math.unit(185, "cm"),
  13865. weight: math.unit(68, "kg"),
  13866. name: "Back",
  13867. image: {
  13868. source: "./media/characters/kauko/back.svg",
  13869. extra: 1455 / 1421,
  13870. bottom: 0.004
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Normal",
  13877. height: math.unit(185, "cm"),
  13878. default: true
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13884. {
  13885. frontSfw: {
  13886. height: math.unit(5, "meters"),
  13887. weight: math.unit(4250, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/varg/front-sfw.svg",
  13891. extra: 1103/1010,
  13892. bottom: 50/1153
  13893. },
  13894. form: "anthro",
  13895. default: true
  13896. },
  13897. backSfw: {
  13898. height: math.unit(5, "meters"),
  13899. weight: math.unit(4250, "lb"),
  13900. name: "Back",
  13901. image: {
  13902. source: "./media/characters/varg/back-sfw.svg",
  13903. extra: 1038/1022,
  13904. bottom: 36/1074
  13905. },
  13906. form: "anthro"
  13907. },
  13908. frontNsfw: {
  13909. height: math.unit(5, "meters"),
  13910. weight: math.unit(4250, "lb"),
  13911. name: "Front (NSFW)",
  13912. image: {
  13913. source: "./media/characters/varg/front-nsfw.svg",
  13914. extra: 1103/1010,
  13915. bottom: 50/1153
  13916. },
  13917. form: "anthro"
  13918. },
  13919. sheath: {
  13920. height: math.unit(3.8, "feet"),
  13921. weight: math.unit(90, "kilograms"),
  13922. name: "Sheath",
  13923. image: {
  13924. source: "./media/characters/varg/sheath.svg"
  13925. },
  13926. form: "anthro"
  13927. },
  13928. dick: {
  13929. height: math.unit(4.6, "feet"),
  13930. weight: math.unit(451, "kilograms"),
  13931. name: "Dick",
  13932. image: {
  13933. source: "./media/characters/varg/dick.svg"
  13934. },
  13935. form: "anthro"
  13936. },
  13937. feralSfw: {
  13938. height: math.unit(5, "meters"),
  13939. weight: math.unit(100000, "lb"),
  13940. name: "Side",
  13941. image: {
  13942. source: "./media/characters/varg/feral-sfw.svg",
  13943. extra: 1065/511,
  13944. bottom: 211/1276
  13945. },
  13946. form: "feral",
  13947. default: true
  13948. },
  13949. feralNsfw: {
  13950. height: math.unit(5, "meters"),
  13951. weight: math.unit(100000, "lb"),
  13952. name: "Side (NSFW)",
  13953. image: {
  13954. source: "./media/characters/varg/feral-nsfw.svg",
  13955. extra: 1065/511,
  13956. bottom: 211/1276
  13957. },
  13958. form: "feral",
  13959. },
  13960. feralSheath: {
  13961. height: math.unit(9.8, "feet"),
  13962. weight: math.unit(2000, "kilograms"),
  13963. name: "Sheath",
  13964. image: {
  13965. source: "./media/characters/varg/sheath.svg"
  13966. },
  13967. form: "feral"
  13968. },
  13969. feralDick: {
  13970. height: math.unit(13.11, "feet"),
  13971. weight: math.unit(10440, "kilograms"),
  13972. name: "Dick",
  13973. image: {
  13974. source: "./media/characters/varg/dick.svg"
  13975. },
  13976. form: "feral"
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Normal",
  13982. height: math.unit(5, "meters"),
  13983. form: "anthro"
  13984. },
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(200, "meters"),
  13988. form: "anthro"
  13989. },
  13990. {
  13991. name: "Megamacro",
  13992. height: math.unit(20, "kilometers"),
  13993. form: "anthro"
  13994. },
  13995. {
  13996. name: "True Size",
  13997. height: math.unit(211, "km"),
  13998. form: "anthro",
  13999. default: true
  14000. },
  14001. {
  14002. name: "Gigamacro",
  14003. height: math.unit(1000, "km"),
  14004. form: "anthro"
  14005. },
  14006. {
  14007. name: "Gigamacro+",
  14008. height: math.unit(8000, "km"),
  14009. form: "anthro"
  14010. },
  14011. {
  14012. name: "Teramacro",
  14013. height: math.unit(1000000, "km"),
  14014. form: "anthro"
  14015. },
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(5, "meters"),
  14019. form: "feral"
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(200, "meters"),
  14024. form: "feral"
  14025. },
  14026. {
  14027. name: "Megamacro",
  14028. height: math.unit(20, "kilometers"),
  14029. form: "feral"
  14030. },
  14031. {
  14032. name: "True Size",
  14033. height: math.unit(211, "km"),
  14034. form: "feral",
  14035. default: true
  14036. },
  14037. {
  14038. name: "Gigamacro",
  14039. height: math.unit(1000, "km"),
  14040. form: "feral"
  14041. },
  14042. {
  14043. name: "Gigamacro+",
  14044. height: math.unit(8000, "km"),
  14045. form: "feral"
  14046. },
  14047. {
  14048. name: "Teramacro",
  14049. height: math.unit(1000000, "km"),
  14050. form: "feral"
  14051. },
  14052. ],
  14053. {
  14054. "anthro": {
  14055. name: "Anthro",
  14056. default: true
  14057. },
  14058. "feral": {
  14059. name: "Feral",
  14060. },
  14061. }
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(7 + 7 / 12, "feet"),
  14068. weight: math.unit(267, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/dayza/front.svg",
  14072. extra: 1262 / 1200,
  14073. bottom: 0.035
  14074. }
  14075. },
  14076. side: {
  14077. height: math.unit(7 + 7 / 12, "feet"),
  14078. weight: math.unit(267, "lb"),
  14079. name: "Side",
  14080. image: {
  14081. source: "./media/characters/dayza/side.svg",
  14082. extra: 1295 / 1245,
  14083. bottom: 0.05
  14084. }
  14085. },
  14086. back: {
  14087. height: math.unit(7 + 7 / 12, "feet"),
  14088. weight: math.unit(267, "lb"),
  14089. name: "Back",
  14090. image: {
  14091. source: "./media/characters/dayza/back.svg",
  14092. extra: 1241 / 1170
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Normal",
  14099. height: math.unit(7 + 7 / 12, "feet"),
  14100. default: true
  14101. },
  14102. {
  14103. name: "Macro",
  14104. height: math.unit(155, "feet")
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14110. {
  14111. front: {
  14112. height: math.unit(6 + 5 / 12, "feet"),
  14113. weight: math.unit(160, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/xanthos/front.svg",
  14117. extra: 1,
  14118. bottom: 0.04
  14119. }
  14120. },
  14121. back: {
  14122. height: math.unit(6 + 5 / 12, "feet"),
  14123. weight: math.unit(160, "lb"),
  14124. name: "Back",
  14125. image: {
  14126. source: "./media/characters/xanthos/back.svg",
  14127. extra: 1,
  14128. bottom: 0.03
  14129. }
  14130. },
  14131. hand: {
  14132. height: math.unit(0.928, "feet"),
  14133. name: "Hand",
  14134. image: {
  14135. source: "./media/characters/xanthos/hand.svg"
  14136. }
  14137. },
  14138. foot: {
  14139. height: math.unit(1.286, "feet"),
  14140. name: "Foot",
  14141. image: {
  14142. source: "./media/characters/xanthos/foot.svg"
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(6 + 5 / 12, "feet"),
  14150. default: true
  14151. },
  14152. {
  14153. name: "Normal+",
  14154. height: math.unit(6, "meters")
  14155. },
  14156. {
  14157. name: "Macro",
  14158. height: math.unit(40, "feet")
  14159. },
  14160. {
  14161. name: "Macro+",
  14162. height: math.unit(200, "meters")
  14163. },
  14164. {
  14165. name: "Megamacro",
  14166. height: math.unit(20, "km")
  14167. },
  14168. {
  14169. name: "Megamacro+",
  14170. height: math.unit(100, "km")
  14171. },
  14172. {
  14173. name: "Gigamacro",
  14174. height: math.unit(200, "megameters")
  14175. },
  14176. {
  14177. name: "Gigamacro+",
  14178. height: math.unit(1.5, "gigameters")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14184. {
  14185. front: {
  14186. height: math.unit(6 + 3 / 12, "feet"),
  14187. weight: math.unit(215, "lb"),
  14188. name: "Front",
  14189. image: {
  14190. source: "./media/characters/grynn/front.svg",
  14191. extra: 4627 / 4209,
  14192. bottom: 0.047
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Micro",
  14199. height: math.unit(6, "inches")
  14200. },
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(6 + 3 / 12, "feet"),
  14204. default: true
  14205. },
  14206. {
  14207. name: "Big",
  14208. height: math.unit(104, "feet")
  14209. },
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(944, "feet")
  14213. },
  14214. {
  14215. name: "Macro+",
  14216. height: math.unit(9480, "feet")
  14217. },
  14218. {
  14219. name: "Megamacro",
  14220. height: math.unit(78752, "feet")
  14221. },
  14222. {
  14223. name: "Megamacro+",
  14224. height: math.unit(630128, "feet")
  14225. },
  14226. {
  14227. name: "Megamacro++",
  14228. height: math.unit(3150695, "feet")
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(7 + 5 / 12, "feet"),
  14237. weight: math.unit(450, "lb"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/mocha-aura/front.svg",
  14241. extra: 1907 / 1817,
  14242. bottom: 0.04
  14243. }
  14244. },
  14245. back: {
  14246. height: math.unit(7 + 5 / 12, "feet"),
  14247. weight: math.unit(450, "lb"),
  14248. name: "Back",
  14249. image: {
  14250. source: "./media/characters/mocha-aura/back.svg",
  14251. extra: 1900 / 1825,
  14252. bottom: 0.045
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Nano",
  14259. height: math.unit(1, "nm")
  14260. },
  14261. {
  14262. name: "Megamicro",
  14263. height: math.unit(1, "mm")
  14264. },
  14265. {
  14266. name: "Micro",
  14267. height: math.unit(3, "inches")
  14268. },
  14269. {
  14270. name: "Normal",
  14271. height: math.unit(7 + 5 / 12, "feet"),
  14272. default: true
  14273. },
  14274. {
  14275. name: "Macro",
  14276. height: math.unit(30, "feet")
  14277. },
  14278. {
  14279. name: "Megamacro",
  14280. height: math.unit(3500, "feet")
  14281. },
  14282. {
  14283. name: "Teramacro",
  14284. height: math.unit(500000, "miles")
  14285. },
  14286. {
  14287. name: "Petamacro",
  14288. height: math.unit(50000000000000000, "parsecs")
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(6, "feet"),
  14297. weight: math.unit(150, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/ilisha-devya/front.svg",
  14301. extra: 1053/1049,
  14302. bottom: 270/1323
  14303. }
  14304. },
  14305. back: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Back",
  14309. image: {
  14310. source: "./media/characters/ilisha-devya/back.svg",
  14311. extra: 1131/1128,
  14312. bottom: 39/1170
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Macro",
  14319. height: math.unit(500, "feet"),
  14320. default: true
  14321. },
  14322. {
  14323. name: "Megamacro",
  14324. height: math.unit(10, "miles")
  14325. },
  14326. {
  14327. name: "Gigamacro",
  14328. height: math.unit(100000, "miles")
  14329. },
  14330. {
  14331. name: "Examacro",
  14332. height: math.unit(1e9, "lightyears")
  14333. },
  14334. {
  14335. name: "Omniversal",
  14336. height: math.unit(1e33, "lightyears")
  14337. },
  14338. {
  14339. name: "Beyond Infinite",
  14340. height: math.unit(1e100, "lightyears")
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14346. {
  14347. Side: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Side",
  14351. image: {
  14352. source: "./media/characters/mira/side.svg",
  14353. extra: 900 / 799,
  14354. bottom: 0.02
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Human Size",
  14361. height: math.unit(6, "feet")
  14362. },
  14363. {
  14364. name: "Macro",
  14365. height: math.unit(100, "feet"),
  14366. default: true
  14367. },
  14368. {
  14369. name: "Megamacro",
  14370. height: math.unit(10, "miles")
  14371. },
  14372. {
  14373. name: "Gigamacro",
  14374. height: math.unit(25000, "miles")
  14375. },
  14376. {
  14377. name: "Teramacro",
  14378. height: math.unit(300, "AU")
  14379. },
  14380. {
  14381. name: "Full Size",
  14382. height: math.unit(4.5e10, "lightyears")
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(150, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/holly/front.svg",
  14395. extra: 639 / 606
  14396. }
  14397. },
  14398. back: {
  14399. height: math.unit(6, "feet"),
  14400. weight: math.unit(150, "lb"),
  14401. name: "Back",
  14402. image: {
  14403. source: "./media/characters/holly/back.svg",
  14404. extra: 623 / 598
  14405. }
  14406. },
  14407. frontWorking: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(150, "lb"),
  14410. name: "Front (Working)",
  14411. image: {
  14412. source: "./media/characters/holly/front-working.svg",
  14413. extra: 607 / 577,
  14414. bottom: 0.048
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(12 + 3 / 12, "feet"),
  14422. default: true
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(150, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/porter/front.svg",
  14435. extra: 1,
  14436. bottom: 0.01
  14437. }
  14438. },
  14439. frontRobes: {
  14440. height: math.unit(6, "feet"),
  14441. weight: math.unit(150, "lb"),
  14442. name: "Front (Robes)",
  14443. image: {
  14444. source: "./media/characters/porter/front-robes.svg",
  14445. extra: 1.01,
  14446. bottom: 0.01
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Normal",
  14453. height: math.unit(11 + 9 / 12, "feet"),
  14454. default: true
  14455. },
  14456. ]
  14457. ))
  14458. characterMakers.push(() => makeCharacter(
  14459. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14460. {
  14461. legendary: {
  14462. height: math.unit(6, "feet"),
  14463. weight: math.unit(150, "lb"),
  14464. name: "Legendary",
  14465. image: {
  14466. source: "./media/characters/lucy/legendary.svg",
  14467. extra: 1355 / 1100,
  14468. bottom: 0.045
  14469. }
  14470. },
  14471. },
  14472. [
  14473. {
  14474. name: "Legendary",
  14475. height: math.unit(86882 * 2, "miles"),
  14476. default: true
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/drusilla/front.svg",
  14489. extra: 678 / 635,
  14490. bottom: 0.03
  14491. }
  14492. },
  14493. back: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(150, "lb"),
  14496. name: "Back",
  14497. image: {
  14498. source: "./media/characters/drusilla/back.svg",
  14499. extra: 678 / 635,
  14500. bottom: 0.005
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Macro",
  14507. height: math.unit(100, "feet")
  14508. },
  14509. {
  14510. name: "Canon Height",
  14511. height: math.unit(2000, "feet"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(180, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/renard-thatch/front.svg",
  14525. extra: 2411 / 2275,
  14526. bottom: 0.01
  14527. }
  14528. },
  14529. frontPosing: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(180, "lb"),
  14532. name: "Front (Posing)",
  14533. image: {
  14534. source: "./media/characters/renard-thatch/front-posing.svg",
  14535. extra: 2381 / 2261,
  14536. bottom: 0.01
  14537. }
  14538. },
  14539. back: {
  14540. height: math.unit(6, "feet"),
  14541. weight: math.unit(180, "lb"),
  14542. name: "Back",
  14543. image: {
  14544. source: "./media/characters/renard-thatch/back.svg",
  14545. extra: 2428 / 2288
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Micro",
  14552. height: math.unit(3, "inches")
  14553. },
  14554. {
  14555. name: "Default",
  14556. height: math.unit(6, "feet"),
  14557. default: true
  14558. },
  14559. {
  14560. name: "Macro",
  14561. height: math.unit(75, "feet")
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14567. {
  14568. front: {
  14569. height: math.unit(1450, "feet"),
  14570. weight: math.unit(1.21e6, "tons"),
  14571. name: "Front",
  14572. image: {
  14573. source: "./media/characters/sekvra/front.svg",
  14574. extra: 1193/1190,
  14575. bottom: 78/1271
  14576. }
  14577. },
  14578. side: {
  14579. height: math.unit(1450, "feet"),
  14580. weight: math.unit(1.21e6, "tons"),
  14581. name: "Side",
  14582. image: {
  14583. source: "./media/characters/sekvra/side.svg",
  14584. extra: 1193/1190,
  14585. bottom: 52/1245
  14586. }
  14587. },
  14588. back: {
  14589. height: math.unit(1450, "feet"),
  14590. weight: math.unit(1.21e6, "tons"),
  14591. name: "Back",
  14592. image: {
  14593. source: "./media/characters/sekvra/back.svg",
  14594. extra: 1219/1216,
  14595. bottom: 21/1240
  14596. }
  14597. },
  14598. frontClothed: {
  14599. height: math.unit(1450, "feet"),
  14600. weight: math.unit(1.21e6, "tons"),
  14601. name: "Front (Clothed)",
  14602. image: {
  14603. source: "./media/characters/sekvra/front-clothed.svg",
  14604. extra: 1192/1189,
  14605. bottom: 79/1271
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Macro",
  14612. height: math.unit(1450, "feet"),
  14613. default: true
  14614. },
  14615. {
  14616. name: "Megamacro",
  14617. height: math.unit(15000, "feet")
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(6, "feet"),
  14626. weight: math.unit(150, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/carmine/front.svg",
  14630. extra: 1,
  14631. bottom: 0.035
  14632. }
  14633. },
  14634. frontArmor: {
  14635. height: math.unit(6, "feet"),
  14636. weight: math.unit(150, "lb"),
  14637. name: "Front (Armor)",
  14638. image: {
  14639. source: "./media/characters/carmine/front-armor.svg",
  14640. extra: 1,
  14641. bottom: 0.035
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Large",
  14648. height: math.unit(1, "mile")
  14649. },
  14650. {
  14651. name: "Huge",
  14652. height: math.unit(40, "miles"),
  14653. default: true
  14654. },
  14655. {
  14656. name: "Colossal",
  14657. height: math.unit(2500, "miles")
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14663. {
  14664. front: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(150, "lb"),
  14667. name: "Front",
  14668. image: {
  14669. source: "./media/characters/elyssia/front.svg",
  14670. extra: 2201 / 2035,
  14671. bottom: 0.05
  14672. }
  14673. },
  14674. frontClothed: {
  14675. height: math.unit(6, "feet"),
  14676. weight: math.unit(150, "lb"),
  14677. name: "Front (Clothed)",
  14678. image: {
  14679. source: "./media/characters/elyssia/front-clothed.svg",
  14680. extra: 2201 / 2035,
  14681. bottom: 0.05
  14682. }
  14683. },
  14684. back: {
  14685. height: math.unit(6, "feet"),
  14686. weight: math.unit(150, "lb"),
  14687. name: "Back",
  14688. image: {
  14689. source: "./media/characters/elyssia/back.svg",
  14690. extra: 2201 / 2035,
  14691. bottom: 0.013
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Smaller",
  14698. height: math.unit(150, "feet")
  14699. },
  14700. {
  14701. name: "Standard",
  14702. height: math.unit(1400, "feet"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Distracted",
  14707. height: math.unit(15000, "feet")
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(7 + 4/12, "feet"),
  14716. weight: math.unit(690, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/geno-maxwell/front.svg",
  14720. extra: 984/856,
  14721. bottom: 87/1071
  14722. }
  14723. },
  14724. back: {
  14725. height: math.unit(7 + 4/12, "feet"),
  14726. weight: math.unit(690, "lb"),
  14727. name: "Back",
  14728. image: {
  14729. source: "./media/characters/geno-maxwell/back.svg",
  14730. extra: 981/854,
  14731. bottom: 57/1038
  14732. }
  14733. },
  14734. frontCostume: {
  14735. height: math.unit(7 + 4/12, "feet"),
  14736. weight: math.unit(690, "lb"),
  14737. name: "Front (Costume)",
  14738. image: {
  14739. source: "./media/characters/geno-maxwell/front-costume.svg",
  14740. extra: 984/856,
  14741. bottom: 87/1071
  14742. }
  14743. },
  14744. backcostume: {
  14745. height: math.unit(7 + 4/12, "feet"),
  14746. weight: math.unit(690, "lb"),
  14747. name: "Back (Costume)",
  14748. image: {
  14749. source: "./media/characters/geno-maxwell/back-costume.svg",
  14750. extra: 981/854,
  14751. bottom: 57/1038
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Micro",
  14758. height: math.unit(3, "inches")
  14759. },
  14760. {
  14761. name: "Normal",
  14762. height: math.unit(7 + 4 / 12, "feet"),
  14763. default: true
  14764. },
  14765. {
  14766. name: "Macro",
  14767. height: math.unit(220, "feet")
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(11, "miles")
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(7 + 4/12, "feet"),
  14780. weight: math.unit(750, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/regena-maxwell/front.svg",
  14784. extra: 984/856,
  14785. bottom: 87/1071
  14786. }
  14787. },
  14788. back: {
  14789. height: math.unit(7 + 4/12, "feet"),
  14790. weight: math.unit(750, "lb"),
  14791. name: "Back",
  14792. image: {
  14793. source: "./media/characters/regena-maxwell/back.svg",
  14794. extra: 981/854,
  14795. bottom: 57/1038
  14796. }
  14797. },
  14798. frontCostume: {
  14799. height: math.unit(7 + 4/12, "feet"),
  14800. weight: math.unit(750, "lb"),
  14801. name: "Front (Costume)",
  14802. image: {
  14803. source: "./media/characters/regena-maxwell/front-costume.svg",
  14804. extra: 984/856,
  14805. bottom: 87/1071
  14806. }
  14807. },
  14808. backcostume: {
  14809. height: math.unit(7 + 4/12, "feet"),
  14810. weight: math.unit(750, "lb"),
  14811. name: "Back (Costume)",
  14812. image: {
  14813. source: "./media/characters/regena-maxwell/back-costume.svg",
  14814. extra: 981/854,
  14815. bottom: 57/1038
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(7 + 4 / 12, "feet"),
  14823. default: true
  14824. },
  14825. {
  14826. name: "Macro",
  14827. height: math.unit(220, "feet")
  14828. },
  14829. {
  14830. name: "Megamacro",
  14831. height: math.unit(11, "miles")
  14832. },
  14833. ]
  14834. ))
  14835. characterMakers.push(() => makeCharacter(
  14836. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14837. {
  14838. front: {
  14839. height: math.unit(6, "feet"),
  14840. weight: math.unit(150, "lb"),
  14841. name: "Front",
  14842. image: {
  14843. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14844. extra: 860 / 690,
  14845. bottom: 0.03
  14846. }
  14847. },
  14848. },
  14849. [
  14850. {
  14851. name: "Normal",
  14852. height: math.unit(1.7, "meters"),
  14853. default: true
  14854. },
  14855. ]
  14856. ))
  14857. characterMakers.push(() => makeCharacter(
  14858. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14859. {
  14860. front: {
  14861. height: math.unit(6, "feet"),
  14862. weight: math.unit(150, "lb"),
  14863. name: "Front",
  14864. image: {
  14865. source: "./media/characters/quilly/front.svg",
  14866. extra: 890 / 776
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Gigamacro",
  14873. height: math.unit(404090, "miles"),
  14874. default: true
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(7 + 8 / 12, "feet"),
  14883. weight: math.unit(350, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/tempest/front.svg",
  14887. extra: 1175 / 1086,
  14888. bottom: 0.02
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(7 + 8 / 12, "feet"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14902. {
  14903. side: {
  14904. height: math.unit(4 + 5 / 12, "feet"),
  14905. weight: math.unit(80, "lb"),
  14906. name: "Side",
  14907. image: {
  14908. source: "./media/characters/rodger/side.svg",
  14909. extra: 1235 / 1118
  14910. }
  14911. },
  14912. },
  14913. [
  14914. {
  14915. name: "Micro",
  14916. height: math.unit(1, "inch")
  14917. },
  14918. {
  14919. name: "Normal",
  14920. height: math.unit(4 + 5 / 12, "feet"),
  14921. default: true
  14922. },
  14923. {
  14924. name: "Macro",
  14925. height: math.unit(120, "feet")
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/danyel/front.svg",
  14938. extra: 1185 / 1123,
  14939. bottom: 0.05
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Shrunken",
  14946. height: math.unit(0.5, "mm")
  14947. },
  14948. {
  14949. name: "Micro",
  14950. height: math.unit(1, "mm"),
  14951. default: true
  14952. },
  14953. {
  14954. name: "Upsized",
  14955. height: math.unit(5 + 5 / 12, "feet")
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14961. {
  14962. front: {
  14963. height: math.unit(5 + 6 / 12, "feet"),
  14964. weight: math.unit(200, "lb"),
  14965. name: "Front",
  14966. image: {
  14967. source: "./media/characters/vivian-bijoux/front.svg",
  14968. extra: 1217/1209,
  14969. bottom: 76/1293
  14970. }
  14971. },
  14972. back: {
  14973. height: math.unit(5 + 6 / 12, "feet"),
  14974. weight: math.unit(200, "lb"),
  14975. name: "Back",
  14976. image: {
  14977. source: "./media/characters/vivian-bijoux/back.svg",
  14978. extra: 1214/1208,
  14979. bottom: 51/1265
  14980. }
  14981. },
  14982. dressed: {
  14983. height: math.unit(5 + 6 / 12, "feet"),
  14984. weight: math.unit(200, "lb"),
  14985. name: "Dressed",
  14986. image: {
  14987. source: "./media/characters/vivian-bijoux/dressed.svg",
  14988. extra: 1217/1209,
  14989. bottom: 76/1293
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(5 + 6 / 12, "feet"),
  14997. default: true
  14998. },
  14999. {
  15000. name: "Bad Dream",
  15001. height: math.unit(500, "feet")
  15002. },
  15003. {
  15004. name: "Nightmare",
  15005. height: math.unit(500, "miles")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(6 + 1 / 12, "feet"),
  15014. weight: math.unit(260, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/zeta/front.svg",
  15018. extra: 1968 / 1889,
  15019. bottom: 0.06
  15020. }
  15021. },
  15022. back: {
  15023. height: math.unit(6 + 1 / 12, "feet"),
  15024. weight: math.unit(260, "lb"),
  15025. name: "Back",
  15026. image: {
  15027. source: "./media/characters/zeta/back.svg",
  15028. extra: 1944 / 1858,
  15029. bottom: 0.03
  15030. }
  15031. },
  15032. hand: {
  15033. height: math.unit(1.112, "feet"),
  15034. name: "Hand",
  15035. image: {
  15036. source: "./media/characters/zeta/hand.svg"
  15037. }
  15038. },
  15039. foot: {
  15040. height: math.unit(1.48, "feet"),
  15041. name: "Foot",
  15042. image: {
  15043. source: "./media/characters/zeta/foot.svg"
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Micro",
  15050. height: math.unit(6, "inches")
  15051. },
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(6 + 1 / 12, "feet"),
  15055. default: true
  15056. },
  15057. {
  15058. name: "Macro",
  15059. height: math.unit(20, "feet")
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(150, "lb"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/jamie-larsen/front.svg",
  15072. extra: 962 / 933,
  15073. bottom: 0.02
  15074. }
  15075. },
  15076. back: {
  15077. height: math.unit(6, "feet"),
  15078. weight: math.unit(150, "lb"),
  15079. name: "Back",
  15080. image: {
  15081. source: "./media/characters/jamie-larsen/back.svg",
  15082. extra: 997 / 946
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Macro",
  15089. height: math.unit(28 + 7 / 12, "feet"),
  15090. default: true
  15091. },
  15092. {
  15093. name: "Macro+",
  15094. height: math.unit(180, "feet")
  15095. },
  15096. {
  15097. name: "Megamacro",
  15098. height: math.unit(10, "miles")
  15099. },
  15100. {
  15101. name: "Gigamacro",
  15102. height: math.unit(200000, "miles")
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(6, "feet"),
  15111. weight: math.unit(120, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/vance/front.svg",
  15115. extra: 1980 / 1890,
  15116. bottom: 0.09
  15117. }
  15118. },
  15119. back: {
  15120. height: math.unit(6, "feet"),
  15121. weight: math.unit(120, "lb"),
  15122. name: "Back",
  15123. image: {
  15124. source: "./media/characters/vance/back.svg",
  15125. extra: 2081 / 1994,
  15126. bottom: 0.014
  15127. }
  15128. },
  15129. hand: {
  15130. height: math.unit(0.88, "feet"),
  15131. name: "Hand",
  15132. image: {
  15133. source: "./media/characters/vance/hand.svg"
  15134. }
  15135. },
  15136. foot: {
  15137. height: math.unit(0.64, "feet"),
  15138. name: "Foot",
  15139. image: {
  15140. source: "./media/characters/vance/foot.svg"
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Small",
  15147. height: math.unit(90, "feet"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Macro",
  15152. height: math.unit(100, "meters")
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(15, "miles")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(180, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/xochitl/front.svg",
  15169. extra: 2297 / 2261,
  15170. bottom: 0.065
  15171. }
  15172. },
  15173. back: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(180, "lb"),
  15176. name: "Back",
  15177. image: {
  15178. source: "./media/characters/xochitl/back.svg",
  15179. extra: 2386 / 2354,
  15180. bottom: 0.01
  15181. }
  15182. },
  15183. foot: {
  15184. height: math.unit(6 / 5 * 1.15, "feet"),
  15185. weight: math.unit(150, "lb"),
  15186. name: "Foot",
  15187. image: {
  15188. source: "./media/characters/xochitl/foot.svg"
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Macro",
  15195. height: math.unit(80, "feet")
  15196. },
  15197. {
  15198. name: "Macro+",
  15199. height: math.unit(400, "feet"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Gigamacro",
  15204. height: math.unit(80000, "miles")
  15205. },
  15206. {
  15207. name: "Gigamacro+",
  15208. height: math.unit(400000, "miles")
  15209. },
  15210. {
  15211. name: "Teramacro",
  15212. height: math.unit(300, "AU")
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/vincent/front.svg",
  15225. extra: 1130 / 1080,
  15226. bottom: 0.055
  15227. }
  15228. },
  15229. beak: {
  15230. height: math.unit(6 * 0.1, "feet"),
  15231. name: "Beak",
  15232. image: {
  15233. source: "./media/characters/vincent/beak.svg"
  15234. }
  15235. },
  15236. hand: {
  15237. height: math.unit(6 * 0.85, "feet"),
  15238. weight: math.unit(150, "lb"),
  15239. name: "Hand",
  15240. image: {
  15241. source: "./media/characters/vincent/hand.svg"
  15242. }
  15243. },
  15244. foot: {
  15245. height: math.unit(6 * 0.19, "feet"),
  15246. weight: math.unit(150, "lb"),
  15247. name: "Foot",
  15248. image: {
  15249. source: "./media/characters/vincent/foot.svg"
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Base",
  15256. height: math.unit(6 + 5 / 12, "feet"),
  15257. default: true
  15258. },
  15259. {
  15260. name: "Macro",
  15261. height: math.unit(300, "feet")
  15262. },
  15263. {
  15264. name: "Megamacro",
  15265. height: math.unit(2, "miles")
  15266. },
  15267. {
  15268. name: "Gigamacro",
  15269. height: math.unit(1000, "miles")
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(2, "meters"),
  15278. weight: math.unit(500, "kg"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/coatl/front.svg",
  15282. extra: 3948 / 3500,
  15283. bottom: 0.082
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(4, "meters")
  15291. },
  15292. {
  15293. name: "Macro",
  15294. height: math.unit(100, "meters"),
  15295. default: true
  15296. },
  15297. {
  15298. name: "Macro+",
  15299. height: math.unit(300, "meters")
  15300. },
  15301. {
  15302. name: "Megamacro",
  15303. height: math.unit(3, "gigameters")
  15304. },
  15305. {
  15306. name: "Megamacro+",
  15307. height: math.unit(300, "terameters")
  15308. },
  15309. {
  15310. name: "Megamacro++",
  15311. height: math.unit(3, "lightyears")
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(6, "feet"),
  15320. weight: math.unit(50, "kg"),
  15321. name: "front",
  15322. image: {
  15323. source: "./media/characters/shiroryu/front.svg",
  15324. extra: 1990 / 1935
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Mortal Mingling",
  15331. height: math.unit(3, "meters")
  15332. },
  15333. {
  15334. name: "Kaiju-ish",
  15335. height: math.unit(250, "meters")
  15336. },
  15337. {
  15338. name: "Somewhat Godly",
  15339. height: math.unit(400, "km"),
  15340. default: true
  15341. },
  15342. {
  15343. name: "Planetary",
  15344. height: math.unit(300, "megameters")
  15345. },
  15346. {
  15347. name: "Galaxy-dwarfing",
  15348. height: math.unit(450, "kiloparsecs")
  15349. },
  15350. {
  15351. name: "Universe Eater",
  15352. height: math.unit(150, "gigaparsecs")
  15353. },
  15354. {
  15355. name: "Almost Immeasurable",
  15356. height: math.unit(1.3e266, "yottaparsecs")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(150, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/umeko/front.svg",
  15369. extra: 1,
  15370. bottom: 0.019
  15371. }
  15372. },
  15373. frontArmored: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Front (Armored)",
  15377. image: {
  15378. source: "./media/characters/umeko/front-armored.svg",
  15379. extra: 1,
  15380. bottom: 0.021
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Macro",
  15387. height: math.unit(220, "feet"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Guardian Dragon",
  15392. height: math.unit(50, "miles")
  15393. },
  15394. {
  15395. name: "Cosmic",
  15396. height: math.unit(800000, "miles")
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/cassidy/front.svg",
  15409. extra: 810/808,
  15410. bottom: 41/851
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Canon Height",
  15417. height: math.unit(120, "feet"),
  15418. default: true
  15419. },
  15420. {
  15421. name: "Macro+",
  15422. height: math.unit(400, "feet")
  15423. },
  15424. {
  15425. name: "Macro++",
  15426. height: math.unit(4000, "feet")
  15427. },
  15428. {
  15429. name: "Megamacro",
  15430. height: math.unit(3, "miles")
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/isaac/front.svg",
  15443. extra: 896 / 815,
  15444. bottom: 0.11
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Human Size",
  15451. height: math.unit(8, "feet"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Macro",
  15456. height: math.unit(400, "feet")
  15457. },
  15458. {
  15459. name: "Megamacro",
  15460. height: math.unit(50, "miles")
  15461. },
  15462. {
  15463. name: "Canon Height",
  15464. height: math.unit(200, "AU")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(6, "feet"),
  15473. weight: math.unit(72, "kg"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/sleekit/front.svg",
  15477. extra: 4693 / 4487,
  15478. bottom: 0.012
  15479. }
  15480. },
  15481. },
  15482. [
  15483. {
  15484. name: "Minimum Height",
  15485. height: math.unit(10, "meters")
  15486. },
  15487. {
  15488. name: "Smaller",
  15489. height: math.unit(25, "meters")
  15490. },
  15491. {
  15492. name: "Larger",
  15493. height: math.unit(38, "meters"),
  15494. default: true
  15495. },
  15496. {
  15497. name: "Maximum height",
  15498. height: math.unit(100, "meters")
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(6, "feet"),
  15507. weight: math.unit(150, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/nillia/front.svg",
  15511. extra: 2195 / 2037,
  15512. bottom: 0.005
  15513. }
  15514. },
  15515. back: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(150, "lb"),
  15518. name: "Back",
  15519. image: {
  15520. source: "./media/characters/nillia/back.svg",
  15521. extra: 2195 / 2037,
  15522. bottom: 0.005
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Canon Height",
  15529. height: math.unit(489, "feet"),
  15530. default: true
  15531. }
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/mesmyriza/front.svg",
  15543. extra: 2067 / 1784,
  15544. bottom: 0.035
  15545. }
  15546. },
  15547. foot: {
  15548. height: math.unit(6 / (250 / 35), "feet"),
  15549. name: "Foot",
  15550. image: {
  15551. source: "./media/characters/mesmyriza/foot.svg"
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Macro",
  15558. height: math.unit(457, "meters"),
  15559. default: true
  15560. },
  15561. {
  15562. name: "Megamacro",
  15563. height: math.unit(8, "megameters")
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15569. {
  15570. front: {
  15571. height: math.unit(6, "feet"),
  15572. weight: math.unit(250, "lb"),
  15573. name: "Front",
  15574. image: {
  15575. source: "./media/characters/saudade/front.svg",
  15576. extra: 1172 / 1139,
  15577. bottom: 0.035
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Micro",
  15584. height: math.unit(3, "inches")
  15585. },
  15586. {
  15587. name: "Normal",
  15588. height: math.unit(6, "feet"),
  15589. default: true
  15590. },
  15591. {
  15592. name: "Macro",
  15593. height: math.unit(50, "feet")
  15594. },
  15595. {
  15596. name: "Megamacro",
  15597. height: math.unit(2800, "feet")
  15598. },
  15599. ]
  15600. ))
  15601. characterMakers.push(() => makeCharacter(
  15602. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15603. {
  15604. front: {
  15605. height: math.unit(5 + 4 / 12, "feet"),
  15606. weight: math.unit(100, "lb"),
  15607. name: "Front",
  15608. image: {
  15609. source: "./media/characters/keireer/front.svg",
  15610. extra: 716 / 666,
  15611. bottom: 0.05
  15612. }
  15613. },
  15614. },
  15615. [
  15616. {
  15617. name: "Normal",
  15618. height: math.unit(5 + 4 / 12, "feet"),
  15619. default: true
  15620. },
  15621. ]
  15622. ))
  15623. characterMakers.push(() => makeCharacter(
  15624. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15625. {
  15626. front: {
  15627. height: math.unit(5.5, "feet"),
  15628. weight: math.unit(90, "kg"),
  15629. name: "Front",
  15630. image: {
  15631. source: "./media/characters/mirja/front.svg",
  15632. extra: 1452/1262,
  15633. bottom: 67/1519
  15634. }
  15635. },
  15636. frontDressed: {
  15637. height: math.unit(5.5, "feet"),
  15638. weight: math.unit(90, "lb"),
  15639. name: "Front (Dressed)",
  15640. image: {
  15641. source: "./media/characters/mirja/dressed.svg",
  15642. extra: 1452/1262,
  15643. bottom: 67/1519
  15644. }
  15645. },
  15646. back: {
  15647. height: math.unit(6, "feet"),
  15648. weight: math.unit(90, "lb"),
  15649. name: "Back",
  15650. image: {
  15651. source: "./media/characters/mirja/back.svg",
  15652. extra: 1892/1795,
  15653. bottom: 48/1940
  15654. }
  15655. },
  15656. maw: {
  15657. height: math.unit(1.312, "feet"),
  15658. name: "Maw",
  15659. image: {
  15660. source: "./media/characters/mirja/maw.svg"
  15661. }
  15662. },
  15663. paw: {
  15664. height: math.unit(1.15, "feet"),
  15665. name: "Paw",
  15666. image: {
  15667. source: "./media/characters/mirja/paw.svg"
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "\"Incognito\"",
  15674. height: math.unit(3, "meters")
  15675. },
  15676. {
  15677. name: "Strolling Size",
  15678. height: math.unit(15, "km")
  15679. },
  15680. {
  15681. name: "Larger Strolling Size",
  15682. height: math.unit(400, "km")
  15683. },
  15684. {
  15685. name: "Preferred Size",
  15686. height: math.unit(5000, "km"),
  15687. default: true
  15688. },
  15689. {
  15690. name: "True Size",
  15691. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(15, "feet"),
  15700. weight: math.unit(880, "kg"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/nightraver/front.svg",
  15704. extra: 2444 / 2160,
  15705. bottom: 0.027
  15706. }
  15707. },
  15708. back: {
  15709. height: math.unit(15, "feet"),
  15710. weight: math.unit(880, "kg"),
  15711. name: "Back",
  15712. image: {
  15713. source: "./media/characters/nightraver/back.svg",
  15714. extra: 2309 / 2180,
  15715. bottom: 0.005
  15716. }
  15717. },
  15718. sole: {
  15719. height: math.unit(2.878, "feet"),
  15720. name: "Sole",
  15721. image: {
  15722. source: "./media/characters/nightraver/sole.svg"
  15723. }
  15724. },
  15725. foot: {
  15726. height: math.unit(2.285, "feet"),
  15727. name: "Foot",
  15728. image: {
  15729. source: "./media/characters/nightraver/foot.svg"
  15730. }
  15731. },
  15732. maw: {
  15733. height: math.unit(2.67, "feet"),
  15734. name: "Maw",
  15735. image: {
  15736. source: "./media/characters/nightraver/maw.svg"
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Micro",
  15743. height: math.unit(1, "cm")
  15744. },
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(15, "feet"),
  15748. default: true
  15749. },
  15750. {
  15751. name: "Macro",
  15752. height: math.unit(300, "feet")
  15753. },
  15754. {
  15755. name: "Megamacro",
  15756. height: math.unit(300, "miles")
  15757. },
  15758. {
  15759. name: "Gigamacro",
  15760. height: math.unit(10000, "miles")
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15766. {
  15767. side: {
  15768. height: math.unit(2, "inches"),
  15769. weight: math.unit(5, "grams"),
  15770. name: "Side",
  15771. image: {
  15772. source: "./media/characters/arc/side.svg"
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Micro",
  15779. height: math.unit(2, "inches"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(1.1938, "meters"),
  15789. weight: math.unit(54, "kg"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/nebula-shahar/front.svg",
  15793. extra: 1642 / 1436,
  15794. bottom: 0.06
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Megamicro",
  15801. height: math.unit(0.3, "mm")
  15802. },
  15803. {
  15804. name: "Micro",
  15805. height: math.unit(3, "cm")
  15806. },
  15807. {
  15808. name: "Normal",
  15809. height: math.unit(138, "cm"),
  15810. default: true
  15811. },
  15812. {
  15813. name: "Macro",
  15814. height: math.unit(30, "m")
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(5.24, "feet"),
  15823. weight: math.unit(150, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/shayla/front.svg",
  15827. extra: 1512 / 1414,
  15828. bottom: 0.01
  15829. }
  15830. },
  15831. back: {
  15832. height: math.unit(5.24, "feet"),
  15833. weight: math.unit(150, "lb"),
  15834. name: "Back",
  15835. image: {
  15836. source: "./media/characters/shayla/back.svg",
  15837. extra: 1512 / 1414
  15838. }
  15839. },
  15840. hand: {
  15841. height: math.unit(0.7781496062992126, "feet"),
  15842. name: "Hand",
  15843. image: {
  15844. source: "./media/characters/shayla/hand.svg"
  15845. }
  15846. },
  15847. foot: {
  15848. height: math.unit(1.4206036745406823, "feet"),
  15849. name: "Foot",
  15850. image: {
  15851. source: "./media/characters/shayla/foot.svg"
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Micro",
  15858. height: math.unit(0.32, "feet")
  15859. },
  15860. {
  15861. name: "Normal",
  15862. height: math.unit(5.24, "feet"),
  15863. default: true
  15864. },
  15865. {
  15866. name: "Macro",
  15867. height: math.unit(492.12, "feet")
  15868. },
  15869. {
  15870. name: "Megamacro",
  15871. height: math.unit(186.41, "miles")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(2.2, "m"),
  15880. weight: math.unit(120, "kg"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/pia-jr/front.svg",
  15884. extra: 1000 / 970,
  15885. bottom: 0.035
  15886. }
  15887. },
  15888. hand: {
  15889. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15890. name: "Hand",
  15891. image: {
  15892. source: "./media/characters/pia-jr/hand.svg"
  15893. }
  15894. },
  15895. paw: {
  15896. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15897. name: "Paw",
  15898. image: {
  15899. source: "./media/characters/pia-jr/paw.svg"
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Micro",
  15906. height: math.unit(1.2, "cm")
  15907. },
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(2.2, "m"),
  15911. default: true
  15912. },
  15913. {
  15914. name: "Macro",
  15915. height: math.unit(180, "m")
  15916. },
  15917. {
  15918. name: "Megamacro",
  15919. height: math.unit(420, "km")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(2, "m"),
  15928. weight: math.unit(115, "kg"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/pia-sr/front.svg",
  15932. extra: 760 / 730,
  15933. bottom: 0.015
  15934. }
  15935. },
  15936. back: {
  15937. height: math.unit(2, "m"),
  15938. weight: math.unit(115, "kg"),
  15939. name: "Back",
  15940. image: {
  15941. source: "./media/characters/pia-sr/back.svg",
  15942. extra: 760 / 730,
  15943. bottom: 0.01
  15944. }
  15945. },
  15946. hand: {
  15947. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15948. name: "Hand",
  15949. image: {
  15950. source: "./media/characters/pia-sr/hand.svg"
  15951. }
  15952. },
  15953. foot: {
  15954. height: math.unit(1.83, "feet"),
  15955. name: "Foot",
  15956. image: {
  15957. source: "./media/characters/pia-sr/foot.svg"
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Micro",
  15964. height: math.unit(88, "mm")
  15965. },
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(2, "m"),
  15969. default: true
  15970. },
  15971. {
  15972. name: "Macro",
  15973. height: math.unit(200, "m")
  15974. },
  15975. {
  15976. name: "Megamacro",
  15977. height: math.unit(420, "km")
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(8 + 2 / 12, "feet"),
  15986. weight: math.unit(300, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/kibibyte/front.svg",
  15990. extra: 2221 / 2098,
  15991. bottom: 0.04
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(8 + 2 / 12, "feet"),
  15999. default: true
  16000. },
  16001. {
  16002. name: "Socialable Macro",
  16003. height: math.unit(50, "feet")
  16004. },
  16005. {
  16006. name: "Macro",
  16007. height: math.unit(300, "feet")
  16008. },
  16009. {
  16010. name: "Megamacro",
  16011. height: math.unit(500, "miles")
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(6, "feet"),
  16020. weight: math.unit(150, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/felix/front.svg",
  16024. extra: 762 / 722,
  16025. bottom: 0.02
  16026. }
  16027. },
  16028. frontClothed: {
  16029. height: math.unit(6, "feet"),
  16030. weight: math.unit(150, "lb"),
  16031. name: "Front (Clothed)",
  16032. image: {
  16033. source: "./media/characters/felix/front-clothed.svg",
  16034. extra: 762 / 722,
  16035. bottom: 0.02
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(6 + 8 / 12, "feet"),
  16043. default: true
  16044. },
  16045. {
  16046. name: "Macro",
  16047. height: math.unit(2600, "feet")
  16048. },
  16049. {
  16050. name: "Megamacro",
  16051. height: math.unit(450, "miles")
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16057. {
  16058. front: {
  16059. height: math.unit(6 + 1 / 12, "feet"),
  16060. weight: math.unit(250, "lb"),
  16061. name: "Front",
  16062. image: {
  16063. source: "./media/characters/tobo/front.svg",
  16064. extra: 608 / 586,
  16065. bottom: 0.023
  16066. }
  16067. },
  16068. back: {
  16069. height: math.unit(6 + 1 / 12, "feet"),
  16070. weight: math.unit(250, "lb"),
  16071. name: "Back",
  16072. image: {
  16073. source: "./media/characters/tobo/back.svg",
  16074. extra: 608 / 586
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Nano",
  16081. height: math.unit(2, "nm")
  16082. },
  16083. {
  16084. name: "Megamicro",
  16085. height: math.unit(0.1, "mm")
  16086. },
  16087. {
  16088. name: "Micro",
  16089. height: math.unit(1, "inch"),
  16090. default: true
  16091. },
  16092. {
  16093. name: "Human-sized",
  16094. height: math.unit(6 + 1 / 12, "feet")
  16095. },
  16096. {
  16097. name: "Macro",
  16098. height: math.unit(250, "feet")
  16099. },
  16100. {
  16101. name: "Megamacro",
  16102. height: math.unit(75, "miles")
  16103. },
  16104. {
  16105. name: "Texas-sized",
  16106. height: math.unit(750, "miles")
  16107. },
  16108. {
  16109. name: "Teramacro",
  16110. height: math.unit(50000, "miles")
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(269, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/danny-kapowsky/front.svg",
  16123. extra: 766 / 736,
  16124. bottom: 0.044
  16125. }
  16126. },
  16127. back: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(269, "lb"),
  16130. name: "Back",
  16131. image: {
  16132. source: "./media/characters/danny-kapowsky/back.svg",
  16133. extra: 797 / 760,
  16134. bottom: 0.025
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Macro",
  16141. height: math.unit(150, "feet"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Macro+",
  16146. height: math.unit(200, "feet")
  16147. },
  16148. {
  16149. name: "Macro++",
  16150. height: math.unit(300, "feet")
  16151. },
  16152. {
  16153. name: "Macro+++",
  16154. height: math.unit(400, "feet")
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16160. {
  16161. side: {
  16162. height: math.unit(6, "feet"),
  16163. weight: math.unit(170, "lb"),
  16164. name: "Side",
  16165. image: {
  16166. source: "./media/characters/finn/side.svg",
  16167. extra: 1953 / 1807,
  16168. bottom: 0.057
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Megamacro",
  16175. height: math.unit(14445, "feet"),
  16176. default: true
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(5 + 6 / 12, "feet"),
  16185. weight: math.unit(125, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/roy/front.svg",
  16189. extra: 1,
  16190. bottom: 0.11
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Micro",
  16197. height: math.unit(3, "inches"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(5 + 6 / 12, "feet")
  16203. },
  16204. {
  16205. name: "Lesser Macro",
  16206. height: math.unit(60, "feet")
  16207. },
  16208. {
  16209. name: "Greater Macro",
  16210. height: math.unit(120, "feet")
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(6, "feet"),
  16219. weight: math.unit(100, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/aevsivs/front.svg",
  16223. extra: 1,
  16224. bottom: 0.03
  16225. }
  16226. },
  16227. back: {
  16228. height: math.unit(6, "feet"),
  16229. weight: math.unit(100, "lb"),
  16230. name: "Back",
  16231. image: {
  16232. source: "./media/characters/aevsivs/back.svg"
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Micro",
  16239. height: math.unit(2, "inches"),
  16240. default: true
  16241. },
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(5, "feet")
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(5 + 7 / 12, "feet"),
  16253. weight: math.unit(159, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/hildegard/front.svg",
  16257. extra: 289 / 269,
  16258. bottom: 7.63 / 297.8
  16259. }
  16260. },
  16261. back: {
  16262. height: math.unit(5 + 7 / 12, "feet"),
  16263. weight: math.unit(159, "lb"),
  16264. name: "Back",
  16265. image: {
  16266. source: "./media/characters/hildegard/back.svg",
  16267. extra: 280 / 260,
  16268. bottom: 2.3 / 282
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(5 + 7 / 12, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16282. {
  16283. bernard: {
  16284. height: math.unit(2 + 7 / 12, "feet"),
  16285. weight: math.unit(66, "lb"),
  16286. name: "Bernard",
  16287. rename: true,
  16288. image: {
  16289. source: "./media/characters/bernard-wilder/bernard.svg",
  16290. extra: 192 / 128,
  16291. bottom: 0.05
  16292. }
  16293. },
  16294. wilder: {
  16295. height: math.unit(5 + 8 / 12, "feet"),
  16296. weight: math.unit(143, "lb"),
  16297. name: "Wilder",
  16298. rename: true,
  16299. image: {
  16300. source: "./media/characters/bernard-wilder/wilder.svg",
  16301. extra: 361 / 312,
  16302. bottom: 0.02
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(2 + 7 / 12, "feet"),
  16310. default: true
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16316. {
  16317. anthro: {
  16318. height: math.unit(6 + 1 / 12, "feet"),
  16319. weight: math.unit(155, "lb"),
  16320. name: "Anthro",
  16321. image: {
  16322. source: "./media/characters/hearth/anthro.svg",
  16323. extra: 1178/1136,
  16324. bottom: 28/1206
  16325. }
  16326. },
  16327. feral: {
  16328. height: math.unit(3.78, "feet"),
  16329. weight: math.unit(35, "kg"),
  16330. name: "Feral",
  16331. image: {
  16332. source: "./media/characters/hearth/feral.svg",
  16333. extra: 153 / 135,
  16334. bottom: 0.03
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(6 + 1 / 12, "feet"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(6, "feet"),
  16351. weight: math.unit(182, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/ingrid/front.svg",
  16355. extra: 294 / 268,
  16356. bottom: 0.027
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(6, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16370. {
  16371. eevee: {
  16372. height: math.unit(2 + 10 / 12, "feet"),
  16373. weight: math.unit(86, "lb"),
  16374. name: "Malgam",
  16375. image: {
  16376. source: "./media/characters/malgam/eevee.svg",
  16377. extra: 952/784,
  16378. bottom: 38/990
  16379. }
  16380. },
  16381. sylveon: {
  16382. height: math.unit(4, "feet"),
  16383. weight: math.unit(101, "lb"),
  16384. name: "Future Malgam",
  16385. rename: true,
  16386. image: {
  16387. source: "./media/characters/malgam/sylveon.svg",
  16388. extra: 371 / 325,
  16389. bottom: 0.015
  16390. }
  16391. },
  16392. gigantamax: {
  16393. height: math.unit(50, "feet"),
  16394. name: "Gigantamax Malgam",
  16395. rename: true,
  16396. image: {
  16397. source: "./media/characters/malgam/gigantamax.svg"
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(2 + 10 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16411. {
  16412. front: {
  16413. height: math.unit(5 + 11 / 12, "feet"),
  16414. weight: math.unit(188, "lb"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/fleur/front.svg",
  16418. extra: 309 / 283,
  16419. bottom: 0.007
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(5 + 11 / 12, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16433. {
  16434. front: {
  16435. height: math.unit(5 + 4 / 12, "feet"),
  16436. weight: math.unit(122, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/jude/front.svg",
  16440. extra: 288 / 273,
  16441. bottom: 0.03
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(5 + 4 / 12, "feet"),
  16449. default: true
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(5 + 11 / 12, "feet"),
  16458. weight: math.unit(190, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/seara/front.svg",
  16462. extra: 1,
  16463. bottom: 0.05
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(5 + 11 / 12, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(16 + 5 / 12, "feet"),
  16480. weight: math.unit(524, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/caspian-lugia/front.svg",
  16484. extra: 1,
  16485. bottom: 0.04
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(16 + 5 / 12, "feet"),
  16493. default: true
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16499. {
  16500. front: {
  16501. height: math.unit(5 + 7 / 12, "feet"),
  16502. weight: math.unit(170, "lb"),
  16503. name: "Front",
  16504. image: {
  16505. source: "./media/characters/mika/front.svg",
  16506. extra: 1,
  16507. bottom: 0.016
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Normal",
  16514. height: math.unit(5 + 7 / 12, "feet"),
  16515. default: true
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16521. {
  16522. front: {
  16523. height: math.unit(6 + 2 / 12, "feet"),
  16524. weight: math.unit(268, "lb"),
  16525. name: "Front",
  16526. image: {
  16527. source: "./media/characters/sol/front.svg",
  16528. extra: 247 / 231,
  16529. bottom: 0.05
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(6 + 2 / 12, "feet"),
  16537. default: true
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16543. {
  16544. buizel: {
  16545. height: math.unit(2 + 5 / 12, "feet"),
  16546. weight: math.unit(87, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/umiko/buizel.svg",
  16550. extra: 172 / 157,
  16551. bottom: 0.01
  16552. },
  16553. form: "buizel",
  16554. default: true
  16555. },
  16556. floatzel: {
  16557. height: math.unit(5 + 9 / 12, "feet"),
  16558. weight: math.unit(250, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/umiko/floatzel.svg",
  16562. extra: 1076/1006,
  16563. bottom: 15/1091
  16564. },
  16565. form: "floatzel",
  16566. default: true
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(2 + 5 / 12, "feet"),
  16573. form: "buizel",
  16574. default: true
  16575. },
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(5 + 9 / 12, "feet"),
  16579. form: "floatzel",
  16580. default: true
  16581. },
  16582. ],
  16583. {
  16584. "buizel": {
  16585. name: "Buizel"
  16586. },
  16587. "floatzel": {
  16588. name: "Floatzel",
  16589. default: true
  16590. }
  16591. }
  16592. ))
  16593. characterMakers.push(() => makeCharacter(
  16594. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16595. {
  16596. front: {
  16597. height: math.unit(6 + 2 / 12, "feet"),
  16598. weight: math.unit(146, "lb"),
  16599. name: "Front",
  16600. image: {
  16601. source: "./media/characters/iliac/front.svg",
  16602. extra: 389 / 365,
  16603. bottom: 0.035
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(6 + 2 / 12, "feet"),
  16611. default: true
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16617. {
  16618. front: {
  16619. height: math.unit(6, "feet"),
  16620. weight: math.unit(170, "lb"),
  16621. name: "Front",
  16622. image: {
  16623. source: "./media/characters/topaz/front.svg",
  16624. extra: 317 / 303,
  16625. bottom: 0.055
  16626. }
  16627. },
  16628. },
  16629. [
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(6, "feet"),
  16633. default: true
  16634. },
  16635. ]
  16636. ))
  16637. characterMakers.push(() => makeCharacter(
  16638. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16639. {
  16640. front: {
  16641. height: math.unit(5 + 11 / 12, "feet"),
  16642. weight: math.unit(144, "lb"),
  16643. name: "Front",
  16644. image: {
  16645. source: "./media/characters/gabriel/front.svg",
  16646. extra: 285 / 262,
  16647. bottom: 0.004
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(5 + 11 / 12, "feet"),
  16655. default: true
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16661. {
  16662. side: {
  16663. height: math.unit(6 + 5 / 12, "feet"),
  16664. weight: math.unit(300, "lb"),
  16665. name: "Side",
  16666. image: {
  16667. source: "./media/characters/tempest-suicune/side.svg",
  16668. extra: 195 / 154,
  16669. bottom: 0.04
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(6 + 5 / 12, "feet"),
  16677. default: true
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(7 + 2 / 12, "feet"),
  16686. weight: math.unit(322, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/vulcan/front.svg",
  16690. extra: 154 / 147,
  16691. bottom: 0.04
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(7 + 2 / 12, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(5 + 10 / 12, "feet"),
  16708. weight: math.unit(264, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/gault/front.svg",
  16712. extra: 161 / 140,
  16713. bottom: 0.028
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(5 + 10 / 12, "feet"),
  16721. default: true
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16727. {
  16728. front: {
  16729. height: math.unit(6, "feet"),
  16730. weight: math.unit(150, "lb"),
  16731. name: "Front",
  16732. image: {
  16733. source: "./media/characters/shard/front.svg",
  16734. extra: 273 / 238,
  16735. bottom: 0.02
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(3 + 6 / 12, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(5 + 11 / 12, "feet"),
  16752. weight: math.unit(146, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/ashe/front.svg",
  16756. extra: 400 / 373,
  16757. bottom: 0.01
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(5 + 11 / 12, "feet"),
  16765. default: true
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16771. {
  16772. front: {
  16773. height: math.unit(5 + 5 / 12, "feet"),
  16774. weight: math.unit(135, "lb"),
  16775. name: "Front",
  16776. image: {
  16777. source: "./media/characters/beatrix/front.svg",
  16778. extra: 392 / 379,
  16779. bottom: 0.01
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(6, "feet"),
  16787. default: true
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(6 + 2/12, "feet"),
  16796. weight: math.unit(135, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/ignatius/front.svg",
  16800. extra: 1380/1259,
  16801. bottom: 27/1407
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(6 + 2/12, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(6 + 2 / 12, "feet"),
  16818. weight: math.unit(138, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/mei-li/front.svg",
  16822. extra: 237 / 229,
  16823. bottom: 0.03
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6 + 2 / 12, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(2 + 4 / 12, "feet"),
  16840. weight: math.unit(62, "lb"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/puru/front.svg",
  16844. extra: 206 / 149,
  16845. bottom: 0.06
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(2 + 4 / 12, "feet"),
  16853. default: true
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16859. {
  16860. anthro: {
  16861. height: math.unit(5 + 8/12, "feet"),
  16862. weight: math.unit(200, "lb"),
  16863. energyNeed: math.unit(2000, "kcal"),
  16864. name: "Anthro",
  16865. image: {
  16866. source: "./media/characters/kee/anthro.svg",
  16867. extra: 3251/3184,
  16868. bottom: 250/3501
  16869. }
  16870. },
  16871. taur: {
  16872. height: math.unit(11, "feet"),
  16873. weight: math.unit(500, "lb"),
  16874. energyNeed: math.unit(5000, "kcal"),
  16875. name: "Taur",
  16876. image: {
  16877. source: "./media/characters/kee/taur.svg",
  16878. extra: 1362/1320,
  16879. bottom: 83/1445
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(5 + 8/12, "feet"),
  16887. default: true
  16888. },
  16889. {
  16890. name: "Macro",
  16891. height: math.unit(35, "feet")
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16897. {
  16898. anthro: {
  16899. height: math.unit(7, "feet"),
  16900. weight: math.unit(190, "lb"),
  16901. name: "Anthro",
  16902. image: {
  16903. source: "./media/characters/cobalt-dracha/anthro.svg",
  16904. extra: 231 / 225,
  16905. bottom: 0.04
  16906. }
  16907. },
  16908. feral: {
  16909. height: math.unit(9 + 7 / 12, "feet"),
  16910. weight: math.unit(294, "lb"),
  16911. name: "Feral",
  16912. image: {
  16913. source: "./media/characters/cobalt-dracha/feral.svg",
  16914. extra: 692 / 633,
  16915. bottom: 0.05
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(7, "feet"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16929. {
  16930. fallen: {
  16931. height: math.unit(11 + 8 / 12, "feet"),
  16932. weight: math.unit(485, "lb"),
  16933. name: "Java (Fallen)",
  16934. rename: true,
  16935. image: {
  16936. source: "./media/characters/java/fallen.svg",
  16937. extra: 226 / 208,
  16938. bottom: 0.005
  16939. }
  16940. },
  16941. godkin: {
  16942. height: math.unit(10 + 6 / 12, "feet"),
  16943. weight: math.unit(328, "lb"),
  16944. name: "Java (Godkin)",
  16945. rename: true,
  16946. image: {
  16947. source: "./media/characters/java/godkin.svg",
  16948. extra: 1104/1068,
  16949. bottom: 36/1140
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(11 + 8 / 12, "feet"),
  16957. default: true
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(5 + 9 / 12, "feet"),
  16966. weight: math.unit(170, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/purna/front.svg",
  16970. extra: 239 / 229,
  16971. bottom: 0.01
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(5 + 9 / 12, "feet"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(5 + 9 / 12, "feet"),
  16988. weight: math.unit(142, "lb"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/kuva/front.svg",
  16992. extra: 281 / 271,
  16993. bottom: 0.006
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(5 + 9 / 12, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17007. {
  17008. anthro: {
  17009. height: math.unit(9 + 2 / 12, "feet"),
  17010. weight: math.unit(270, "lb"),
  17011. name: "Anthro",
  17012. image: {
  17013. source: "./media/characters/embra/anthro.svg",
  17014. extra: 200 / 187,
  17015. bottom: 0.02
  17016. }
  17017. },
  17018. feral: {
  17019. height: math.unit(18 + 8 / 12, "feet"),
  17020. weight: math.unit(576, "lb"),
  17021. name: "Feral",
  17022. image: {
  17023. source: "./media/characters/embra/feral.svg",
  17024. extra: 152 / 137,
  17025. bottom: 0.037
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(9 + 2 / 12, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17039. {
  17040. anthro: {
  17041. height: math.unit(10 + 9 / 12, "feet"),
  17042. weight: math.unit(224, "lb"),
  17043. name: "Anthro",
  17044. image: {
  17045. source: "./media/characters/grottos/anthro.svg",
  17046. extra: 350 / 332,
  17047. bottom: 0.045
  17048. }
  17049. },
  17050. feral: {
  17051. height: math.unit(20 + 7 / 12, "feet"),
  17052. weight: math.unit(629, "lb"),
  17053. name: "Feral",
  17054. image: {
  17055. source: "./media/characters/grottos/feral.svg",
  17056. extra: 207 / 190,
  17057. bottom: 0.05
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(10 + 9 / 12, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17071. {
  17072. anthro: {
  17073. height: math.unit(9 + 6 / 12, "feet"),
  17074. weight: math.unit(298, "lb"),
  17075. name: "Anthro",
  17076. image: {
  17077. source: "./media/characters/frifna/anthro.svg",
  17078. extra: 282 / 269,
  17079. bottom: 0.015
  17080. }
  17081. },
  17082. feral: {
  17083. height: math.unit(16 + 2 / 12, "feet"),
  17084. weight: math.unit(624, "lb"),
  17085. name: "Feral",
  17086. image: {
  17087. source: "./media/characters/frifna/feral.svg"
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(9 + 6 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(6 + 2 / 12, "feet"),
  17104. weight: math.unit(168, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/elise/front.svg",
  17108. extra: 276 / 271
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(6 + 2 / 12, "feet"),
  17116. default: true
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(5 + 10 / 12, "feet"),
  17125. weight: math.unit(210, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/glade/front.svg",
  17129. extra: 258 / 247,
  17130. bottom: 0.008
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(5 + 10 / 12, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(5 + 10 / 12, "feet"),
  17147. weight: math.unit(129, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/rina/front.svg",
  17151. extra: 266 / 255,
  17152. bottom: 0.005
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(5 + 10 / 12, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(6 + 1 / 12, "feet"),
  17169. weight: math.unit(192, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/veronica/front.svg",
  17173. extra: 319 / 309,
  17174. bottom: 0.005
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(6 + 1 / 12, "feet"),
  17182. default: true
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(9 + 3 / 12, "feet"),
  17191. weight: math.unit(1100, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/braxton/front.svg",
  17195. extra: 1057 / 984,
  17196. bottom: 0.05
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(9 + 3 / 12, "feet")
  17204. },
  17205. {
  17206. name: "Giant",
  17207. height: math.unit(300, "feet"),
  17208. default: true
  17209. },
  17210. {
  17211. name: "Macro",
  17212. height: math.unit(700, "feet")
  17213. },
  17214. {
  17215. name: "Megamacro",
  17216. height: math.unit(6000, "feet")
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17222. {
  17223. front: {
  17224. height: math.unit(6 + 7 / 12, "feet"),
  17225. weight: math.unit(150, "lb"),
  17226. name: "Front",
  17227. image: {
  17228. source: "./media/characters/blue-feyonics/front.svg",
  17229. extra: 1403 / 1306,
  17230. bottom: 0.047
  17231. }
  17232. },
  17233. },
  17234. [
  17235. {
  17236. name: "Normal",
  17237. height: math.unit(6 + 7 / 12, "feet"),
  17238. default: true
  17239. },
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17244. {
  17245. front: {
  17246. height: math.unit(1.8, "meters"),
  17247. weight: math.unit(60, "kg"),
  17248. name: "Front",
  17249. image: {
  17250. source: "./media/characters/maxwell/front.svg",
  17251. extra: 2060 / 1873
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Micro",
  17258. height: math.unit(1, "mm")
  17259. },
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(1.8, "meter"),
  17263. default: true
  17264. },
  17265. {
  17266. name: "Macro",
  17267. height: math.unit(30, "meters")
  17268. },
  17269. {
  17270. name: "Megamacro",
  17271. height: math.unit(10, "km")
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/jack/front.svg",
  17284. extra: 1754 / 1640,
  17285. bottom: 0.01
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(80000, "feet"),
  17293. default: true
  17294. },
  17295. {
  17296. name: "Max size",
  17297. height: math.unit(10, "lightyears")
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17303. {
  17304. urban: {
  17305. height: math.unit(5, "feet"),
  17306. weight: math.unit(240, "lb"),
  17307. name: "Urban",
  17308. image: {
  17309. source: "./media/characters/cafat/urban.svg",
  17310. extra: 1223/1126,
  17311. bottom: 205/1428
  17312. }
  17313. },
  17314. summer: {
  17315. height: math.unit(5, "feet"),
  17316. weight: math.unit(240, "lb"),
  17317. name: "Summer",
  17318. image: {
  17319. source: "./media/characters/cafat/summer.svg",
  17320. extra: 1223/1126,
  17321. bottom: 205/1428
  17322. }
  17323. },
  17324. winter: {
  17325. height: math.unit(5, "feet"),
  17326. weight: math.unit(240, "lb"),
  17327. name: "Winter",
  17328. image: {
  17329. source: "./media/characters/cafat/winter.svg",
  17330. extra: 1223/1126,
  17331. bottom: 205/1428
  17332. }
  17333. },
  17334. lingerie: {
  17335. height: math.unit(5, "feet"),
  17336. weight: math.unit(240, "lb"),
  17337. name: "Lingerie",
  17338. image: {
  17339. source: "./media/characters/cafat/lingerie.svg",
  17340. extra: 1223/1126,
  17341. bottom: 205/1428
  17342. }
  17343. },
  17344. upright: {
  17345. height: math.unit(6.3, "feet"),
  17346. weight: math.unit(240, "lb"),
  17347. name: "Upright",
  17348. image: {
  17349. source: "./media/characters/cafat/upright.svg",
  17350. bottom: 0.01
  17351. }
  17352. },
  17353. uprightFull: {
  17354. height: math.unit(6.3, "feet"),
  17355. weight: math.unit(240, "lb"),
  17356. name: "Upright (Full)",
  17357. image: {
  17358. source: "./media/characters/cafat/upright-full.svg",
  17359. bottom: 0.01
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Small",
  17366. height: math.unit(5, "feet"),
  17367. default: true
  17368. },
  17369. {
  17370. name: "Large",
  17371. height: math.unit(13, "feet")
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17377. {
  17378. front: {
  17379. height: math.unit(6, "feet"),
  17380. weight: math.unit(150, "lb"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/verin-raharra/front.svg",
  17384. extra: 5019 / 4835,
  17385. bottom: 0.023
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(7 + 5 / 12, "feet"),
  17393. default: true
  17394. },
  17395. {
  17396. name: "Upsized",
  17397. height: math.unit(20, "feet")
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(7, "feet"),
  17406. weight: math.unit(230, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/nakata/front.svg",
  17410. extra: 1.005,
  17411. bottom: 0.01
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(7, "feet"),
  17419. default: true
  17420. },
  17421. {
  17422. name: "Big",
  17423. height: math.unit(14, "feet")
  17424. },
  17425. {
  17426. name: "Macro",
  17427. height: math.unit(400, "feet")
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17433. {
  17434. front: {
  17435. height: math.unit(4.91, "feet"),
  17436. weight: math.unit(100, "lb"),
  17437. name: "Front",
  17438. image: {
  17439. source: "./media/characters/lily/front.svg",
  17440. extra: 1585 / 1415,
  17441. bottom: 0.02
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(4.91, "feet"),
  17449. default: true
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17455. {
  17456. laying: {
  17457. height: math.unit(4 + 4 / 12, "feet"),
  17458. weight: math.unit(600, "lb"),
  17459. name: "Laying",
  17460. image: {
  17461. source: "./media/characters/sheila/laying.svg",
  17462. extra: 1333 / 1265,
  17463. bottom: 0.16
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(4 + 4 / 12, "feet"),
  17471. default: true
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(6, "feet"),
  17480. weight: math.unit(190, "lb"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/sax/front.svg",
  17484. extra: 1187 / 973,
  17485. bottom: 0.042
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Micro",
  17492. height: math.unit(4, "inches"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17499. {
  17500. front: {
  17501. height: math.unit(6, "feet"),
  17502. weight: math.unit(150, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/pandora/front.svg",
  17506. extra: 2720 / 2556,
  17507. bottom: 0.015
  17508. }
  17509. },
  17510. back: {
  17511. height: math.unit(6, "feet"),
  17512. weight: math.unit(150, "lb"),
  17513. name: "Back",
  17514. image: {
  17515. source: "./media/characters/pandora/back.svg",
  17516. extra: 2720 / 2556,
  17517. bottom: 0.01
  17518. }
  17519. },
  17520. beans: {
  17521. height: math.unit(6 / 8, "feet"),
  17522. name: "Beans",
  17523. image: {
  17524. source: "./media/characters/pandora/beans.svg"
  17525. }
  17526. },
  17527. collar: {
  17528. height: math.unit(0.31, "feet"),
  17529. name: "Collar",
  17530. image: {
  17531. source: "./media/characters/pandora/collar.svg"
  17532. }
  17533. },
  17534. skirt: {
  17535. height: math.unit(6, "feet"),
  17536. weight: math.unit(150, "lb"),
  17537. name: "Skirt",
  17538. image: {
  17539. source: "./media/characters/pandora/skirt.svg",
  17540. extra: 1622 / 1525,
  17541. bottom: 0.015
  17542. }
  17543. },
  17544. hoodie: {
  17545. height: math.unit(6, "feet"),
  17546. weight: math.unit(150, "lb"),
  17547. name: "Hoodie",
  17548. image: {
  17549. source: "./media/characters/pandora/hoodie.svg",
  17550. extra: 1622 / 1525,
  17551. bottom: 0.015
  17552. }
  17553. },
  17554. casual: {
  17555. height: math.unit(6, "feet"),
  17556. weight: math.unit(150, "lb"),
  17557. name: "Casual",
  17558. image: {
  17559. source: "./media/characters/pandora/casual.svg",
  17560. extra: 1622 / 1525,
  17561. bottom: 0.015
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(6, "feet")
  17569. },
  17570. {
  17571. name: "Big Steppy",
  17572. height: math.unit(1, "km"),
  17573. default: true
  17574. },
  17575. {
  17576. name: "Galactic Steppy",
  17577. height: math.unit(2, "gigameters")
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17583. {
  17584. side: {
  17585. height: math.unit(10, "feet"),
  17586. weight: math.unit(800, "kg"),
  17587. name: "Side",
  17588. image: {
  17589. source: "./media/characters/venio-darcony/side.svg",
  17590. extra: 1373 / 1003,
  17591. bottom: 0.037
  17592. }
  17593. },
  17594. front: {
  17595. height: math.unit(19, "feet"),
  17596. weight: math.unit(800, "kg"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/venio-darcony/front.svg"
  17600. }
  17601. },
  17602. back: {
  17603. height: math.unit(19, "feet"),
  17604. weight: math.unit(800, "kg"),
  17605. name: "Back",
  17606. image: {
  17607. source: "./media/characters/venio-darcony/back.svg"
  17608. }
  17609. },
  17610. sideNsfw: {
  17611. height: math.unit(10, "feet"),
  17612. weight: math.unit(800, "kg"),
  17613. name: "Side (NSFW)",
  17614. image: {
  17615. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17616. extra: 1373 / 1003,
  17617. bottom: 0.037
  17618. }
  17619. },
  17620. frontNsfw: {
  17621. height: math.unit(19, "feet"),
  17622. weight: math.unit(800, "kg"),
  17623. name: "Front (NSFW)",
  17624. image: {
  17625. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17626. }
  17627. },
  17628. backNsfw: {
  17629. height: math.unit(19, "feet"),
  17630. weight: math.unit(800, "kg"),
  17631. name: "Back (NSFW)",
  17632. image: {
  17633. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17634. }
  17635. },
  17636. sideArmored: {
  17637. height: math.unit(10, "feet"),
  17638. weight: math.unit(800, "kg"),
  17639. name: "Side (Armored)",
  17640. image: {
  17641. source: "./media/characters/venio-darcony/side-armored.svg",
  17642. extra: 1373 / 1003,
  17643. bottom: 0.037
  17644. }
  17645. },
  17646. frontArmored: {
  17647. height: math.unit(19, "feet"),
  17648. weight: math.unit(900, "kg"),
  17649. name: "Front (Armored)",
  17650. image: {
  17651. source: "./media/characters/venio-darcony/front-armored.svg"
  17652. }
  17653. },
  17654. backArmored: {
  17655. height: math.unit(19, "feet"),
  17656. weight: math.unit(900, "kg"),
  17657. name: "Back (Armored)",
  17658. image: {
  17659. source: "./media/characters/venio-darcony/back-armored.svg"
  17660. }
  17661. },
  17662. sword: {
  17663. height: math.unit(10, "feet"),
  17664. weight: math.unit(50, "lb"),
  17665. name: "Sword",
  17666. image: {
  17667. source: "./media/characters/venio-darcony/sword.svg"
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(10, "feet")
  17675. },
  17676. {
  17677. name: "Macro",
  17678. height: math.unit(130, "feet"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Macro+",
  17683. height: math.unit(240, "feet")
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(6, "feet"),
  17692. weight: math.unit(150, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/veski/front.svg",
  17696. extra: 1299 / 1225,
  17697. bottom: 0.04
  17698. }
  17699. },
  17700. back: {
  17701. height: math.unit(6, "feet"),
  17702. weight: math.unit(150, "lb"),
  17703. name: "Back",
  17704. image: {
  17705. source: "./media/characters/veski/back.svg",
  17706. extra: 1299 / 1225,
  17707. bottom: 0.008
  17708. }
  17709. },
  17710. maw: {
  17711. height: math.unit(1.5 * 1.21, "feet"),
  17712. name: "Maw",
  17713. image: {
  17714. source: "./media/characters/veski/maw.svg"
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Macro",
  17721. height: math.unit(2, "km"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(5 + 7 / 12, "feet"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/isabelle/front.svg",
  17734. extra: 2130 / 1976,
  17735. bottom: 0.05
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Supermicro",
  17742. height: math.unit(10, "micrometers")
  17743. },
  17744. {
  17745. name: "Micro",
  17746. height: math.unit(1, "inch")
  17747. },
  17748. {
  17749. name: "Tiny",
  17750. height: math.unit(5, "inches")
  17751. },
  17752. {
  17753. name: "Standard",
  17754. height: math.unit(5 + 7 / 12, "inches")
  17755. },
  17756. {
  17757. name: "Macro",
  17758. height: math.unit(80, "meters"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Megamacro",
  17763. height: math.unit(250, "meters")
  17764. },
  17765. {
  17766. name: "Gigamacro",
  17767. height: math.unit(5, "km")
  17768. },
  17769. {
  17770. name: "Cosmic",
  17771. height: math.unit(2.5e6, "miles")
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(6, "feet"),
  17780. weight: math.unit(150, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/hanzo/front.svg",
  17784. extra: 374 / 344,
  17785. bottom: 0.02
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(8, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(7, "feet"),
  17802. weight: math.unit(130, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/anna/front.svg",
  17806. extra: 169 / 145,
  17807. bottom: 0.06
  17808. }
  17809. },
  17810. full: {
  17811. height: math.unit(4.96, "feet"),
  17812. weight: math.unit(220, "lb"),
  17813. name: "Full",
  17814. image: {
  17815. source: "./media/characters/anna/full.svg",
  17816. extra: 138 / 114,
  17817. bottom: 0.15
  17818. }
  17819. },
  17820. tongue: {
  17821. height: math.unit(2.53, "feet"),
  17822. name: "Tongue",
  17823. image: {
  17824. source: "./media/characters/anna/tongue.svg"
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(7, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17838. {
  17839. front: {
  17840. height: math.unit(7, "feet"),
  17841. weight: math.unit(150, "lb"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/ian-corvid/front.svg",
  17845. extra: 150 / 142,
  17846. bottom: 0.02
  17847. }
  17848. },
  17849. back: {
  17850. height: math.unit(7, "feet"),
  17851. weight: math.unit(150, "lb"),
  17852. name: "Back",
  17853. image: {
  17854. source: "./media/characters/ian-corvid/back.svg",
  17855. extra: 150 / 143,
  17856. bottom: 0.01
  17857. }
  17858. },
  17859. stomping: {
  17860. height: math.unit(7, "feet"),
  17861. weight: math.unit(150, "lb"),
  17862. name: "Stomping",
  17863. image: {
  17864. source: "./media/characters/ian-corvid/stomping.svg",
  17865. extra: 76 / 72
  17866. }
  17867. },
  17868. sitting: {
  17869. height: math.unit(7 / 1.8, "feet"),
  17870. weight: math.unit(150, "lb"),
  17871. name: "Sitting",
  17872. image: {
  17873. source: "./media/characters/ian-corvid/sitting.svg",
  17874. extra: 1400 / 1269,
  17875. bottom: 0.15
  17876. }
  17877. },
  17878. },
  17879. [
  17880. {
  17881. name: "Tiny Microw",
  17882. height: math.unit(1, "inch")
  17883. },
  17884. {
  17885. name: "Microw",
  17886. height: math.unit(6, "inches")
  17887. },
  17888. {
  17889. name: "Crow",
  17890. height: math.unit(7 + 1 / 12, "feet"),
  17891. default: true
  17892. },
  17893. {
  17894. name: "Macrow",
  17895. height: math.unit(176, "feet")
  17896. },
  17897. ]
  17898. ))
  17899. characterMakers.push(() => makeCharacter(
  17900. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17901. {
  17902. front: {
  17903. height: math.unit(5 + 7 / 12, "feet"),
  17904. weight: math.unit(147, "lb"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/natalie-kellon/front.svg",
  17908. extra: 1214 / 1141,
  17909. bottom: 0.02
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Micro",
  17916. height: math.unit(1 / 16, "inch")
  17917. },
  17918. {
  17919. name: "Tiny",
  17920. height: math.unit(4, "inches")
  17921. },
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(5 + 7 / 12, "feet"),
  17925. default: true
  17926. },
  17927. {
  17928. name: "Amazon",
  17929. height: math.unit(12, "feet")
  17930. },
  17931. {
  17932. name: "Giantess",
  17933. height: math.unit(160, "meters")
  17934. },
  17935. {
  17936. name: "Titaness",
  17937. height: math.unit(800, "meters")
  17938. },
  17939. ]
  17940. ))
  17941. characterMakers.push(() => makeCharacter(
  17942. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17943. {
  17944. front: {
  17945. height: math.unit(6, "feet"),
  17946. weight: math.unit(150, "lb"),
  17947. name: "Front",
  17948. image: {
  17949. source: "./media/characters/alluria/front.svg",
  17950. extra: 806 / 738,
  17951. bottom: 0.01
  17952. }
  17953. },
  17954. side: {
  17955. height: math.unit(6, "feet"),
  17956. weight: math.unit(150, "lb"),
  17957. name: "Side",
  17958. image: {
  17959. source: "./media/characters/alluria/side.svg",
  17960. extra: 800 / 750,
  17961. }
  17962. },
  17963. back: {
  17964. height: math.unit(6, "feet"),
  17965. weight: math.unit(150, "lb"),
  17966. name: "Back",
  17967. image: {
  17968. source: "./media/characters/alluria/back.svg",
  17969. extra: 806 / 738,
  17970. }
  17971. },
  17972. frontMaid: {
  17973. height: math.unit(6, "feet"),
  17974. weight: math.unit(150, "lb"),
  17975. name: "Front (Maid)",
  17976. image: {
  17977. source: "./media/characters/alluria/front-maid.svg",
  17978. extra: 806 / 738,
  17979. bottom: 0.01
  17980. }
  17981. },
  17982. sideMaid: {
  17983. height: math.unit(6, "feet"),
  17984. weight: math.unit(150, "lb"),
  17985. name: "Side (Maid)",
  17986. image: {
  17987. source: "./media/characters/alluria/side-maid.svg",
  17988. extra: 800 / 750,
  17989. bottom: 0.005
  17990. }
  17991. },
  17992. backMaid: {
  17993. height: math.unit(6, "feet"),
  17994. weight: math.unit(150, "lb"),
  17995. name: "Back (Maid)",
  17996. image: {
  17997. source: "./media/characters/alluria/back-maid.svg",
  17998. extra: 806 / 738,
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Micro",
  18005. height: math.unit(6, "inches"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(6, "feet"),
  18015. weight: math.unit(150, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/kyle/front.svg",
  18019. extra: 1069 / 962,
  18020. bottom: 77.228 / 1727.45
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Macro",
  18027. height: math.unit(150, "feet"),
  18028. default: true
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18034. {
  18035. front: {
  18036. height: math.unit(6, "feet"),
  18037. weight: math.unit(300, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/duncan/front.svg",
  18041. extra: 1650 / 1482,
  18042. bottom: 0.05
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Macro",
  18049. height: math.unit(100, "feet"),
  18050. default: true
  18051. },
  18052. ]
  18053. ))
  18054. characterMakers.push(() => makeCharacter(
  18055. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18056. {
  18057. front: {
  18058. height: math.unit(5 + 4 / 12, "feet"),
  18059. weight: math.unit(220, "lb"),
  18060. name: "Front",
  18061. image: {
  18062. source: "./media/characters/memory/front.svg",
  18063. extra: 3641 / 3545,
  18064. bottom: 0.03
  18065. }
  18066. },
  18067. back: {
  18068. height: math.unit(5 + 4 / 12, "feet"),
  18069. weight: math.unit(220, "lb"),
  18070. name: "Back",
  18071. image: {
  18072. source: "./media/characters/memory/back.svg",
  18073. extra: 3641 / 3545,
  18074. bottom: 0.025
  18075. }
  18076. },
  18077. frontSkirt: {
  18078. height: math.unit(5 + 4 / 12, "feet"),
  18079. weight: math.unit(220, "lb"),
  18080. name: "Front (Skirt)",
  18081. image: {
  18082. source: "./media/characters/memory/front-skirt.svg",
  18083. extra: 3641 / 3545,
  18084. bottom: 0.03
  18085. }
  18086. },
  18087. frontDress: {
  18088. height: math.unit(5 + 4 / 12, "feet"),
  18089. weight: math.unit(220, "lb"),
  18090. name: "Front (Dress)",
  18091. image: {
  18092. source: "./media/characters/memory/front-dress.svg",
  18093. extra: 3641 / 3545,
  18094. bottom: 0.03
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Micro",
  18101. height: math.unit(6, "inches"),
  18102. default: true
  18103. },
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(5 + 4 / 12, "feet")
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(4 + 11 / 12, "feet"),
  18115. weight: math.unit(100, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/luno/front.svg",
  18119. extra: 1535 / 1487,
  18120. bottom: 0.03
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Micro",
  18127. height: math.unit(3, "inches")
  18128. },
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(4 + 11 / 12, "feet"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(300, "feet")
  18137. },
  18138. {
  18139. name: "Megamacro",
  18140. height: math.unit(700, "miles")
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18146. {
  18147. front: {
  18148. height: math.unit(6 + 2 / 12, "feet"),
  18149. weight: math.unit(170, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/jamesy/front.svg",
  18153. extra: 440 / 382,
  18154. bottom: 0.005
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Micro",
  18161. height: math.unit(3, "inches")
  18162. },
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(6 + 2 / 12, "feet"),
  18166. default: true
  18167. },
  18168. {
  18169. name: "Macro",
  18170. height: math.unit(300, "feet")
  18171. },
  18172. {
  18173. name: "Megamacro",
  18174. height: math.unit(700, "miles")
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(6, "feet"),
  18183. weight: math.unit(160, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/mark/front.svg",
  18187. extra: 3300 / 3100,
  18188. bottom: 136.42 / 3440.47
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(120, "meters")
  18196. },
  18197. {
  18198. name: "Bigger Macro",
  18199. height: math.unit(350, "meters")
  18200. },
  18201. {
  18202. name: "Megamacro",
  18203. height: math.unit(8, "km"),
  18204. default: true
  18205. },
  18206. {
  18207. name: "Continental",
  18208. height: math.unit(4550, "km")
  18209. },
  18210. {
  18211. name: "Planetary",
  18212. height: math.unit(65000, "km")
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18218. {
  18219. front: {
  18220. height: math.unit(6, "feet"),
  18221. weight: math.unit(400, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/mac/front.svg",
  18225. extra: 1048 / 987.7,
  18226. bottom: 60 / 1107.6,
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Macro",
  18233. height: math.unit(500, "feet"),
  18234. default: true
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(5 + 2 / 12, "feet"),
  18243. weight: math.unit(190, "lb"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/bari/front.svg",
  18247. extra: 3156 / 2880,
  18248. bottom: 0.03
  18249. }
  18250. },
  18251. back: {
  18252. height: math.unit(5 + 2 / 12, "feet"),
  18253. weight: math.unit(190, "lb"),
  18254. name: "Back",
  18255. image: {
  18256. source: "./media/characters/bari/back.svg",
  18257. extra: 3260 / 2834,
  18258. bottom: 0.025
  18259. }
  18260. },
  18261. frontPlush: {
  18262. height: math.unit(5 + 2 / 12, "feet"),
  18263. weight: math.unit(190, "lb"),
  18264. name: "Front (Plush)",
  18265. image: {
  18266. source: "./media/characters/bari/front-plush.svg",
  18267. extra: 1112 / 1061,
  18268. bottom: 0.002
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Micro",
  18275. height: math.unit(3, "inches")
  18276. },
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(5 + 2 / 12, "feet"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Macro",
  18284. height: math.unit(20, "feet")
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(6 + 1 / 12, "feet"),
  18293. weight: math.unit(275, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/hunter-misha-raven/front.svg"
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Mortal",
  18303. height: math.unit(6 + 1 / 12, "feet")
  18304. },
  18305. {
  18306. name: "Divine",
  18307. height: math.unit(1.12134e34, "parsecs"),
  18308. default: true
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(6 + 3 / 12, "feet"),
  18317. weight: math.unit(220, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/max-calore/front.svg",
  18321. extra: 1700 / 1648,
  18322. bottom: 0.01
  18323. }
  18324. },
  18325. back: {
  18326. height: math.unit(6 + 3 / 12, "feet"),
  18327. weight: math.unit(220, "lb"),
  18328. name: "Back",
  18329. image: {
  18330. source: "./media/characters/max-calore/back.svg",
  18331. extra: 1700 / 1648,
  18332. bottom: 0.01
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(6 + 3 / 12, "feet"),
  18340. default: true
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18346. {
  18347. side: {
  18348. height: math.unit(2 + 8 / 12, "feet"),
  18349. weight: math.unit(99, "lb"),
  18350. name: "Side",
  18351. image: {
  18352. source: "./media/characters/aspen/side.svg",
  18353. extra: 152 / 138,
  18354. bottom: 0.032
  18355. }
  18356. },
  18357. },
  18358. [
  18359. {
  18360. name: "Normal",
  18361. height: math.unit(2 + 8 / 12, "feet"),
  18362. default: true
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18368. {
  18369. side: {
  18370. height: math.unit(3 + 2 / 12, "feet"),
  18371. weight: math.unit(224, "lb"),
  18372. name: "Side",
  18373. image: {
  18374. source: "./media/characters/sheila-feral-wolf/side.svg",
  18375. extra: 179 / 166,
  18376. bottom: 0.03
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Normal",
  18383. height: math.unit(3 + 2 / 12, "feet"),
  18384. default: true
  18385. },
  18386. ]
  18387. ))
  18388. characterMakers.push(() => makeCharacter(
  18389. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18390. {
  18391. side: {
  18392. height: math.unit(1 + 9 / 12, "feet"),
  18393. weight: math.unit(38, "lb"),
  18394. name: "Side",
  18395. image: {
  18396. source: "./media/characters/michelle/side.svg",
  18397. extra: 147 / 136.7,
  18398. bottom: 0.03
  18399. }
  18400. },
  18401. },
  18402. [
  18403. {
  18404. name: "Normal",
  18405. height: math.unit(1 + 9 / 12, "feet"),
  18406. default: true
  18407. },
  18408. ]
  18409. ))
  18410. characterMakers.push(() => makeCharacter(
  18411. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18412. {
  18413. front: {
  18414. height: math.unit(1.54, "feet"),
  18415. weight: math.unit(50, "lb"),
  18416. name: "Front",
  18417. image: {
  18418. source: "./media/characters/nino/front.svg"
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(1.54, "feet"),
  18426. default: true
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18432. {
  18433. front: {
  18434. height: math.unit(1.49, "feet"),
  18435. weight: math.unit(45, "lb"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/viola/front.svg"
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Normal",
  18445. height: math.unit(1.49, "feet"),
  18446. default: true
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18452. {
  18453. front: {
  18454. height: math.unit(6 + 5 / 12, "feet"),
  18455. weight: math.unit(580, "lb"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/atlas/front.svg",
  18459. extra: 298.5 / 290,
  18460. bottom: 0.015
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Normal",
  18467. height: math.unit(6 + 5 / 12, "feet"),
  18468. default: true
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18474. {
  18475. side: {
  18476. height: math.unit(15.6, "inches"),
  18477. weight: math.unit(10, "lb"),
  18478. name: "Side",
  18479. image: {
  18480. source: "./media/characters/davy/side.svg",
  18481. extra: 200 / 170,
  18482. bottom: 0.01
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(15.6, "inches"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18496. {
  18497. side: {
  18498. height: math.unit(4 + 8 / 12, "feet"),
  18499. weight: math.unit(166, "lb"),
  18500. name: "Side",
  18501. image: {
  18502. source: "./media/characters/fiona/side.svg",
  18503. extra: 232 / 220,
  18504. bottom: 0.03
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(4 + 8 / 12, "feet"),
  18512. default: true
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18518. {
  18519. front: {
  18520. height: math.unit(26, "inches"),
  18521. weight: math.unit(35, "lb"),
  18522. name: "Front",
  18523. image: {
  18524. source: "./media/characters/lyla/front.svg",
  18525. bottom: 0.1
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(3, "feet"),
  18533. default: true
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18539. {
  18540. side: {
  18541. height: math.unit(1.8, "feet"),
  18542. weight: math.unit(44, "lb"),
  18543. name: "Side",
  18544. image: {
  18545. source: "./media/characters/perseus/side.svg",
  18546. bottom: 0.21
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(1.8, "feet"),
  18554. default: true
  18555. },
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18560. {
  18561. side: {
  18562. height: math.unit(4 + 2 / 12, "feet"),
  18563. weight: math.unit(20, "lb"),
  18564. name: "Side",
  18565. image: {
  18566. source: "./media/characters/remus/side.svg"
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(4 + 2 / 12, "feet"),
  18574. default: true
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(4 + 11 / 12, "feet"),
  18583. weight: math.unit(114, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/raf/front.svg",
  18587. extra: 1504/1339,
  18588. bottom: 26/1530
  18589. }
  18590. },
  18591. side: {
  18592. height: math.unit(4 + 11 / 12, "feet"),
  18593. weight: math.unit(114, "lb"),
  18594. name: "Side",
  18595. image: {
  18596. source: "./media/characters/raf/side.svg",
  18597. extra: 1466/1316,
  18598. bottom: 29/1495
  18599. }
  18600. },
  18601. paw: {
  18602. height: math.unit(1.45, "feet"),
  18603. name: "Paw",
  18604. image: {
  18605. source: "./media/characters/raf/paw.svg"
  18606. },
  18607. extraAttributes: {
  18608. "toeSize": {
  18609. name: "Toe Size",
  18610. power: 2,
  18611. type: "area",
  18612. base: math.unit(0.004, "m^2")
  18613. },
  18614. "padSize": {
  18615. name: "Pad Size",
  18616. power: 2,
  18617. type: "area",
  18618. base: math.unit(0.04, "m^2")
  18619. },
  18620. "footSize": {
  18621. name: "Foot Size",
  18622. power: 2,
  18623. type: "area",
  18624. base: math.unit(0.08, "m^2")
  18625. },
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Micro",
  18632. height: math.unit(2, "inches")
  18633. },
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(4 + 11 / 12, "feet"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Macro",
  18641. height: math.unit(70, "feet")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(1.5, "meters"),
  18650. weight: math.unit(68, "kg"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/liam-einarr/front.svg",
  18654. extra: 2822 / 2666
  18655. }
  18656. },
  18657. back: {
  18658. height: math.unit(1.5, "meters"),
  18659. weight: math.unit(68, "kg"),
  18660. name: "Back",
  18661. image: {
  18662. source: "./media/characters/liam-einarr/back.svg",
  18663. extra: 2822 / 2666,
  18664. bottom: 0.015
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Normal",
  18671. height: math.unit(1.5, "meters"),
  18672. default: true
  18673. },
  18674. {
  18675. name: "Macro",
  18676. height: math.unit(150, "meters")
  18677. },
  18678. {
  18679. name: "Megamacro",
  18680. height: math.unit(35, "km")
  18681. },
  18682. ]
  18683. ))
  18684. characterMakers.push(() => makeCharacter(
  18685. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18686. {
  18687. front: {
  18688. height: math.unit(6, "feet"),
  18689. weight: math.unit(75, "kg"),
  18690. name: "Front",
  18691. image: {
  18692. source: "./media/characters/linda/front.svg",
  18693. extra: 930 / 874,
  18694. bottom: 0.004
  18695. }
  18696. },
  18697. },
  18698. [
  18699. {
  18700. name: "Normal",
  18701. height: math.unit(6, "feet"),
  18702. default: true
  18703. },
  18704. ]
  18705. ))
  18706. characterMakers.push(() => makeCharacter(
  18707. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18708. {
  18709. front: {
  18710. height: math.unit(6 + 8 / 12, "feet"),
  18711. weight: math.unit(220, "lb"),
  18712. name: "Front",
  18713. image: {
  18714. source: "./media/characters/caylex/front.svg",
  18715. extra: 821 / 772,
  18716. bottom: 0.07
  18717. }
  18718. },
  18719. back: {
  18720. height: math.unit(6 + 8 / 12, "feet"),
  18721. weight: math.unit(220, "lb"),
  18722. name: "Back",
  18723. image: {
  18724. source: "./media/characters/caylex/back.svg",
  18725. extra: 821 / 772,
  18726. bottom: 0.022
  18727. }
  18728. },
  18729. hand: {
  18730. height: math.unit(1.25, "feet"),
  18731. name: "Hand",
  18732. image: {
  18733. source: "./media/characters/caylex/hand.svg"
  18734. }
  18735. },
  18736. foot: {
  18737. height: math.unit(1.6, "feet"),
  18738. name: "Foot",
  18739. image: {
  18740. source: "./media/characters/caylex/foot.svg"
  18741. }
  18742. },
  18743. armored: {
  18744. height: math.unit(6 + 8 / 12, "feet"),
  18745. weight: math.unit(250, "lb"),
  18746. name: "Armored",
  18747. image: {
  18748. source: "./media/characters/caylex/armored.svg",
  18749. extra: 1420 / 1310,
  18750. bottom: 0.045
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(6 + 8 / 12, "feet"),
  18758. default: true
  18759. },
  18760. {
  18761. name: "Normal+",
  18762. height: math.unit(12, "feet")
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(7 + 6 / 12, "feet"),
  18771. weight: math.unit(288, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/alana/front.svg",
  18775. extra: 679 / 653,
  18776. bottom: 22.5 / 701
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(7 + 6 / 12, "feet")
  18784. },
  18785. {
  18786. name: "Large",
  18787. height: math.unit(50, "feet")
  18788. },
  18789. {
  18790. name: "Macro",
  18791. height: math.unit(100, "feet"),
  18792. default: true
  18793. },
  18794. {
  18795. name: "Macro+",
  18796. height: math.unit(200, "feet")
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18802. {
  18803. front: {
  18804. height: math.unit(6 + 1 / 12, "feet"),
  18805. weight: math.unit(210, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/hasani/front.svg",
  18809. extra: 244 / 232,
  18810. bottom: 0.01
  18811. }
  18812. },
  18813. back: {
  18814. height: math.unit(6 + 1 / 12, "feet"),
  18815. weight: math.unit(210, "lb"),
  18816. name: "Back",
  18817. image: {
  18818. source: "./media/characters/hasani/back.svg",
  18819. extra: 244 / 232,
  18820. bottom: 0.01
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Normal",
  18827. height: math.unit(6 + 1 / 12, "feet")
  18828. },
  18829. {
  18830. name: "Macro",
  18831. height: math.unit(175, "feet"),
  18832. default: true
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(1.82, "meters"),
  18841. weight: math.unit(140, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/nita/front.svg",
  18845. extra: 2473 / 2363,
  18846. bottom: 0.01
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(1.82, "m")
  18854. },
  18855. {
  18856. name: "Macro",
  18857. height: math.unit(300, "m")
  18858. },
  18859. {
  18860. name: "Mistake Canon",
  18861. height: math.unit(0.5, "miles"),
  18862. default: true
  18863. },
  18864. {
  18865. name: "Big Mistake",
  18866. height: math.unit(13, "miles")
  18867. },
  18868. {
  18869. name: "Playing God",
  18870. height: math.unit(2450, "miles")
  18871. },
  18872. ]
  18873. ))
  18874. characterMakers.push(() => makeCharacter(
  18875. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18876. {
  18877. front: {
  18878. height: math.unit(4, "feet"),
  18879. weight: math.unit(120, "lb"),
  18880. name: "Front",
  18881. image: {
  18882. source: "./media/characters/shiriko/front.svg",
  18883. extra: 970/934,
  18884. bottom: 5/975
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(4, "feet"),
  18892. default: true
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18898. {
  18899. front: {
  18900. height: math.unit(6, "feet"),
  18901. name: "front",
  18902. image: {
  18903. source: "./media/characters/deja/front.svg",
  18904. extra: 926 / 840,
  18905. bottom: 0.07
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Planck Length",
  18912. height: math.unit(1.6e-35, "meters")
  18913. },
  18914. {
  18915. name: "Normal",
  18916. height: math.unit(30.48, "meters"),
  18917. default: true
  18918. },
  18919. {
  18920. name: "Universal",
  18921. height: math.unit(8.8e26, "meters")
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18927. {
  18928. side: {
  18929. height: math.unit(8, "feet"),
  18930. weight: math.unit(6300, "lb"),
  18931. name: "Side",
  18932. image: {
  18933. source: "./media/characters/anima/side.svg",
  18934. bottom: 0.035
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(8, "feet"),
  18942. default: true
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(8, "feet"),
  18951. weight: math.unit(350, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/bianca/front.svg",
  18955. extra: 234 / 225,
  18956. bottom: 0.03
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(8, "feet"),
  18964. default: true
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(11 + 5/12, "feet"),
  18973. weight: math.unit(1200, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/adinia/front.svg",
  18977. extra: 1767/1641,
  18978. bottom: 44/1811
  18979. },
  18980. extraAttributes: {
  18981. "energyIntake": {
  18982. name: "Energy Intake",
  18983. power: 3,
  18984. type: "energy",
  18985. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18986. },
  18987. }
  18988. },
  18989. back: {
  18990. height: math.unit(11 + 5/12, "feet"),
  18991. weight: math.unit(1200, "lb"),
  18992. name: "Back",
  18993. image: {
  18994. source: "./media/characters/adinia/back.svg",
  18995. extra: 1834/1684,
  18996. bottom: 14/1848
  18997. },
  18998. extraAttributes: {
  18999. "energyIntake": {
  19000. name: "Energy Intake",
  19001. power: 3,
  19002. type: "energy",
  19003. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19004. },
  19005. }
  19006. },
  19007. maw: {
  19008. height: math.unit(3.79, "feet"),
  19009. name: "Maw",
  19010. image: {
  19011. source: "./media/characters/adinia/maw.svg"
  19012. }
  19013. },
  19014. rump: {
  19015. height: math.unit(4.6, "feet"),
  19016. name: "Rump",
  19017. image: {
  19018. source: "./media/characters/adinia/rump.svg"
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(11 + 5 / 12, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(3, "meters"),
  19035. weight: math.unit(200, "kg"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/lykasa/front.svg",
  19039. extra: 1076 / 976,
  19040. bottom: 0.06
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(3, "meters")
  19048. },
  19049. {
  19050. name: "Kaiju",
  19051. height: math.unit(120, "meters"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Mega Kaiju",
  19056. height: math.unit(240, "km")
  19057. },
  19058. {
  19059. name: "Giga Kaiju",
  19060. height: math.unit(400, "megameters")
  19061. },
  19062. {
  19063. name: "Tera Kaiju",
  19064. height: math.unit(800, "gigameters")
  19065. },
  19066. {
  19067. name: "Kaiju Dragon Goddess",
  19068. height: math.unit(26, "zettaparsecs")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19074. {
  19075. side: {
  19076. height: math.unit(283 / 124 * 6, "feet"),
  19077. weight: math.unit(35000, "lb"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/malfaren/side.svg",
  19081. extra: 1310/529,
  19082. bottom: 24/1334
  19083. }
  19084. },
  19085. front: {
  19086. height: math.unit(22.36, "feet"),
  19087. weight: math.unit(35000, "lb"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/malfaren/front.svg",
  19091. extra: 1237/1115,
  19092. bottom: 32/1269
  19093. }
  19094. },
  19095. maw: {
  19096. height: math.unit(6.9, "feet"),
  19097. name: "Maw",
  19098. image: {
  19099. source: "./media/characters/malfaren/maw.svg"
  19100. }
  19101. },
  19102. dick: {
  19103. height: math.unit(6.19, "feet"),
  19104. name: "Dick",
  19105. image: {
  19106. source: "./media/characters/malfaren/dick.svg"
  19107. }
  19108. },
  19109. eye: {
  19110. height: math.unit(0.69, "feet"),
  19111. name: "Eye",
  19112. image: {
  19113. source: "./media/characters/malfaren/eye.svg"
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Big",
  19120. height: math.unit(283 / 162 * 6, "feet"),
  19121. },
  19122. {
  19123. name: "Bigger",
  19124. height: math.unit(283 / 124 * 6, "feet")
  19125. },
  19126. {
  19127. name: "Massive",
  19128. height: math.unit(283 / 92 * 6, "feet"),
  19129. default: true
  19130. },
  19131. {
  19132. name: "👀💦",
  19133. height: math.unit(283 / 73 * 6, "feet"),
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(1.7, "m"),
  19142. weight: math.unit(70, "kg"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/kernel/front.svg",
  19146. extra: 222 / 210,
  19147. bottom: 0.007
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Nano",
  19154. height: math.unit(17, "micrometers")
  19155. },
  19156. {
  19157. name: "Micro",
  19158. height: math.unit(1.7, "mm")
  19159. },
  19160. {
  19161. name: "Small",
  19162. height: math.unit(1.7, "cm")
  19163. },
  19164. {
  19165. name: "Normal",
  19166. height: math.unit(1.7, "m"),
  19167. default: true
  19168. },
  19169. ]
  19170. ))
  19171. characterMakers.push(() => makeCharacter(
  19172. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19173. {
  19174. front: {
  19175. height: math.unit(1.75, "meters"),
  19176. weight: math.unit(65, "kg"),
  19177. name: "Front",
  19178. image: {
  19179. source: "./media/characters/jayne-folest/front.svg",
  19180. extra: 2115 / 2007,
  19181. bottom: 0.02
  19182. }
  19183. },
  19184. back: {
  19185. height: math.unit(1.75, "meters"),
  19186. weight: math.unit(65, "kg"),
  19187. name: "Back",
  19188. image: {
  19189. source: "./media/characters/jayne-folest/back.svg",
  19190. extra: 2115 / 2007,
  19191. bottom: 0.005
  19192. }
  19193. },
  19194. frontClothed: {
  19195. height: math.unit(1.75, "meters"),
  19196. weight: math.unit(65, "kg"),
  19197. name: "Front (Clothed)",
  19198. image: {
  19199. source: "./media/characters/jayne-folest/front-clothed.svg",
  19200. extra: 2115 / 2007,
  19201. bottom: 0.035
  19202. }
  19203. },
  19204. hand: {
  19205. height: math.unit(1 / 1.260, "feet"),
  19206. name: "Hand",
  19207. image: {
  19208. source: "./media/characters/jayne-folest/hand.svg"
  19209. }
  19210. },
  19211. foot: {
  19212. height: math.unit(1 / 0.918, "feet"),
  19213. name: "Foot",
  19214. image: {
  19215. source: "./media/characters/jayne-folest/foot.svg"
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Micro",
  19222. height: math.unit(4, "cm")
  19223. },
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(1.75, "meters")
  19227. },
  19228. {
  19229. name: "Macro",
  19230. height: math.unit(47.5, "meters"),
  19231. default: true
  19232. },
  19233. ]
  19234. ))
  19235. characterMakers.push(() => makeCharacter(
  19236. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19237. {
  19238. front: {
  19239. height: math.unit(180, "cm"),
  19240. weight: math.unit(70, "kg"),
  19241. name: "Front",
  19242. image: {
  19243. source: "./media/characters/algier/front.svg",
  19244. extra: 596 / 572,
  19245. bottom: 0.04
  19246. }
  19247. },
  19248. back: {
  19249. height: math.unit(180, "cm"),
  19250. weight: math.unit(70, "kg"),
  19251. name: "Back",
  19252. image: {
  19253. source: "./media/characters/algier/back.svg",
  19254. extra: 596 / 572,
  19255. bottom: 0.025
  19256. }
  19257. },
  19258. frontdressed: {
  19259. height: math.unit(180, "cm"),
  19260. weight: math.unit(150, "kg"),
  19261. name: "Front-dressed",
  19262. image: {
  19263. source: "./media/characters/algier/front-dressed.svg",
  19264. extra: 596 / 572,
  19265. bottom: 0.038
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Micro",
  19272. height: math.unit(5, "cm")
  19273. },
  19274. {
  19275. name: "Normal",
  19276. height: math.unit(180, "cm"),
  19277. default: true
  19278. },
  19279. {
  19280. name: "Macro",
  19281. height: math.unit(64, "m")
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19287. {
  19288. upright: {
  19289. height: math.unit(7, "feet"),
  19290. weight: math.unit(300, "lb"),
  19291. name: "Upright",
  19292. image: {
  19293. source: "./media/characters/pretzel/upright.svg",
  19294. extra: 534 / 522,
  19295. bottom: 0.065
  19296. }
  19297. },
  19298. sprawling: {
  19299. height: math.unit(3.75, "feet"),
  19300. weight: math.unit(300, "lb"),
  19301. name: "Sprawling",
  19302. image: {
  19303. source: "./media/characters/pretzel/sprawling.svg",
  19304. extra: 314 / 281,
  19305. bottom: 0.1
  19306. }
  19307. },
  19308. tongue: {
  19309. height: math.unit(2, "feet"),
  19310. name: "Tongue",
  19311. image: {
  19312. source: "./media/characters/pretzel/tongue.svg"
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(7, "feet"),
  19320. default: true
  19321. },
  19322. {
  19323. name: "Oversized",
  19324. height: math.unit(15, "feet")
  19325. },
  19326. {
  19327. name: "Huge",
  19328. height: math.unit(30, "feet")
  19329. },
  19330. {
  19331. name: "Macro",
  19332. height: math.unit(250, "feet")
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19338. {
  19339. sideFront: {
  19340. height: math.unit(5 + 2 / 12, "feet"),
  19341. weight: math.unit(120, "lb"),
  19342. name: "Front Side",
  19343. image: {
  19344. source: "./media/characters/roxi/side-front.svg",
  19345. extra: 2924 / 2717,
  19346. bottom: 0.08
  19347. }
  19348. },
  19349. sideBack: {
  19350. height: math.unit(5 + 2 / 12, "feet"),
  19351. weight: math.unit(120, "lb"),
  19352. name: "Back Side",
  19353. image: {
  19354. source: "./media/characters/roxi/side-back.svg",
  19355. extra: 2904 / 2693,
  19356. bottom: 0.06
  19357. }
  19358. },
  19359. front: {
  19360. height: math.unit(5 + 2 / 12, "feet"),
  19361. weight: math.unit(120, "lb"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/roxi/front.svg",
  19365. extra: 2028 / 1907,
  19366. bottom: 0.01
  19367. }
  19368. },
  19369. frontAlt: {
  19370. height: math.unit(5 + 2 / 12, "feet"),
  19371. weight: math.unit(120, "lb"),
  19372. name: "Front (Alt)",
  19373. image: {
  19374. source: "./media/characters/roxi/front-alt.svg",
  19375. extra: 1828 / 1798,
  19376. bottom: 0.01
  19377. }
  19378. },
  19379. sitting: {
  19380. height: math.unit(2.8, "feet"),
  19381. weight: math.unit(120, "lb"),
  19382. name: "Sitting",
  19383. image: {
  19384. source: "./media/characters/roxi/sitting.svg",
  19385. extra: 2660 / 2462,
  19386. bottom: 0.1
  19387. }
  19388. },
  19389. },
  19390. [
  19391. {
  19392. name: "Normal",
  19393. height: math.unit(5 + 2 / 12, "feet"),
  19394. default: true
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19400. {
  19401. side: {
  19402. height: math.unit(55, "feet"),
  19403. weight: math.unit(153, "tons"),
  19404. name: "Side",
  19405. image: {
  19406. source: "./media/characters/shadow/side.svg",
  19407. extra: 701 / 628,
  19408. bottom: 0.02
  19409. }
  19410. },
  19411. flying: {
  19412. height: math.unit(145, "feet"),
  19413. weight: math.unit(153, "tons"),
  19414. name: "Flying",
  19415. image: {
  19416. source: "./media/characters/shadow/flying.svg"
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(55, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19430. {
  19431. front: {
  19432. height: math.unit(6, "feet"),
  19433. weight: math.unit(200, "lb"),
  19434. name: "Front",
  19435. image: {
  19436. source: "./media/characters/marcie/front.svg",
  19437. extra: 960 / 876,
  19438. bottom: 58 / 1017.87
  19439. }
  19440. },
  19441. },
  19442. [
  19443. {
  19444. name: "Macro",
  19445. height: math.unit(1, "mile"),
  19446. default: true
  19447. },
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19452. {
  19453. front: {
  19454. height: math.unit(7, "feet"),
  19455. weight: math.unit(200, "lb"),
  19456. name: "Front",
  19457. image: {
  19458. source: "./media/characters/kachina/front.svg",
  19459. extra: 1290.68 / 1119,
  19460. bottom: 36.5 / 1327.18
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(7, "feet"),
  19468. default: true
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19474. {
  19475. looking: {
  19476. height: math.unit(2, "meters"),
  19477. weight: math.unit(300, "kg"),
  19478. name: "Looking",
  19479. image: {
  19480. source: "./media/characters/kash/looking.svg",
  19481. extra: 474 / 344,
  19482. bottom: 0.03
  19483. }
  19484. },
  19485. side: {
  19486. height: math.unit(2, "meters"),
  19487. weight: math.unit(300, "kg"),
  19488. name: "Side",
  19489. image: {
  19490. source: "./media/characters/kash/side.svg",
  19491. extra: 302 / 251,
  19492. bottom: 0.03
  19493. }
  19494. },
  19495. front: {
  19496. height: math.unit(2, "meters"),
  19497. weight: math.unit(300, "kg"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/kash/front.svg",
  19501. extra: 495 / 360,
  19502. bottom: 0.015
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(2, "meters"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Big",
  19514. height: math.unit(3, "meters")
  19515. },
  19516. {
  19517. name: "Large",
  19518. height: math.unit(5, "meters")
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19524. {
  19525. feeding: {
  19526. height: math.unit(6.7, "feet"),
  19527. weight: math.unit(350, "lb"),
  19528. name: "Feeding",
  19529. image: {
  19530. source: "./media/characters/lalim/feeding.svg",
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(6.7, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19544. {
  19545. front: {
  19546. height: math.unit(9.5, "feet"),
  19547. weight: math.unit(600, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/de'vout/front.svg",
  19551. extra: 1443 / 1328,
  19552. bottom: 0.025
  19553. }
  19554. },
  19555. back: {
  19556. height: math.unit(9.5, "feet"),
  19557. weight: math.unit(600, "lb"),
  19558. name: "Back",
  19559. image: {
  19560. source: "./media/characters/de'vout/back.svg",
  19561. extra: 1443 / 1328
  19562. }
  19563. },
  19564. frontDressed: {
  19565. height: math.unit(9.5, "feet"),
  19566. weight: math.unit(600, "lb"),
  19567. name: "Front (Dressed",
  19568. image: {
  19569. source: "./media/characters/de'vout/front-dressed.svg",
  19570. extra: 1443 / 1328,
  19571. bottom: 0.025
  19572. }
  19573. },
  19574. backDressed: {
  19575. height: math.unit(9.5, "feet"),
  19576. weight: math.unit(600, "lb"),
  19577. name: "Back (Dressed",
  19578. image: {
  19579. source: "./media/characters/de'vout/back-dressed.svg",
  19580. extra: 1443 / 1328
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(9.5, "feet"),
  19588. default: true
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(8, "feet"),
  19597. weight: math.unit(225, "lb"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/talana/front.svg",
  19601. extra: 1410 / 1300,
  19602. bottom: 0.015
  19603. }
  19604. },
  19605. frontDressed: {
  19606. height: math.unit(8, "feet"),
  19607. weight: math.unit(225, "lb"),
  19608. name: "Front (Dressed",
  19609. image: {
  19610. source: "./media/characters/talana/front-dressed.svg",
  19611. extra: 1410 / 1300,
  19612. bottom: 0.015
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Normal",
  19619. height: math.unit(8, "feet"),
  19620. default: true
  19621. },
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19626. {
  19627. side: {
  19628. height: math.unit(7.2, "feet"),
  19629. weight: math.unit(150, "lb"),
  19630. name: "Side",
  19631. image: {
  19632. source: "./media/characters/xeauvok/side.svg",
  19633. extra: 1975 / 1523,
  19634. bottom: 0.07
  19635. }
  19636. },
  19637. },
  19638. [
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(7.2, "feet"),
  19642. default: true
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19648. {
  19649. side: {
  19650. height: math.unit(4, "meters"),
  19651. weight: math.unit(2200, "kg"),
  19652. name: "Side",
  19653. image: {
  19654. source: "./media/characters/zara/side.svg",
  19655. extra: 765/744,
  19656. bottom: 156/921
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(4, "meters"),
  19664. default: true
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19670. {
  19671. side: {
  19672. height: math.unit(6, "feet"),
  19673. weight: math.unit(150, "lb"),
  19674. name: "Side",
  19675. image: {
  19676. source: "./media/characters/richard-dragon/side.svg",
  19677. extra: 845 / 340,
  19678. bottom: 0.017
  19679. }
  19680. },
  19681. maw: {
  19682. height: math.unit(2.97, "feet"),
  19683. name: "Maw",
  19684. image: {
  19685. source: "./media/characters/richard-dragon/maw.svg"
  19686. }
  19687. },
  19688. },
  19689. [
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19694. {
  19695. front: {
  19696. height: math.unit(4, "feet"),
  19697. weight: math.unit(100, "lb"),
  19698. name: "Front",
  19699. image: {
  19700. source: "./media/characters/richard-smeargle/front.svg",
  19701. extra: 2952 / 2820,
  19702. bottom: 0.028
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(4, "feet"),
  19710. default: true
  19711. },
  19712. {
  19713. name: "Dynamax",
  19714. height: math.unit(20, "meters")
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(6, "feet"),
  19723. weight: math.unit(110, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/klay/front.svg",
  19727. extra: 962 / 883,
  19728. bottom: 0.04
  19729. }
  19730. },
  19731. back: {
  19732. height: math.unit(6, "feet"),
  19733. weight: math.unit(110, "lb"),
  19734. name: "Back",
  19735. image: {
  19736. source: "./media/characters/klay/back.svg",
  19737. extra: 962 / 883
  19738. }
  19739. },
  19740. beans: {
  19741. height: math.unit(1.15, "feet"),
  19742. name: "Beans",
  19743. image: {
  19744. source: "./media/characters/klay/beans.svg"
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Micro",
  19751. height: math.unit(6, "inches")
  19752. },
  19753. {
  19754. name: "Mini",
  19755. height: math.unit(3, "feet")
  19756. },
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(6, "feet"),
  19760. default: true
  19761. },
  19762. {
  19763. name: "Big",
  19764. height: math.unit(25, "feet")
  19765. },
  19766. {
  19767. name: "Macro",
  19768. height: math.unit(100, "feet")
  19769. },
  19770. {
  19771. name: "Megamacro",
  19772. height: math.unit(400, "feet")
  19773. },
  19774. ]
  19775. ))
  19776. characterMakers.push(() => makeCharacter(
  19777. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19778. {
  19779. front: {
  19780. height: math.unit(6, "feet"),
  19781. weight: math.unit(160, "lb"),
  19782. name: "Front",
  19783. image: {
  19784. source: "./media/characters/marcus/front.svg",
  19785. extra: 734 / 676,
  19786. bottom: 0.03
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Little",
  19793. height: math.unit(6, "feet")
  19794. },
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(110, "feet"),
  19798. default: true
  19799. },
  19800. {
  19801. name: "Macro",
  19802. height: math.unit(250, "feet")
  19803. },
  19804. {
  19805. name: "Megamacro",
  19806. height: math.unit(1000, "feet")
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19812. {
  19813. front: {
  19814. height: math.unit(7, "feet"),
  19815. weight: math.unit(275, "lb"),
  19816. name: "Front",
  19817. image: {
  19818. source: "./media/characters/claude-delroute/front.svg",
  19819. extra: 902/827,
  19820. bottom: 26/928
  19821. }
  19822. },
  19823. side: {
  19824. height: math.unit(7, "feet"),
  19825. weight: math.unit(275, "lb"),
  19826. name: "Side",
  19827. image: {
  19828. source: "./media/characters/claude-delroute/side.svg",
  19829. extra: 908/853,
  19830. bottom: 16/924
  19831. }
  19832. },
  19833. back: {
  19834. height: math.unit(7, "feet"),
  19835. weight: math.unit(275, "lb"),
  19836. name: "Back",
  19837. image: {
  19838. source: "./media/characters/claude-delroute/back.svg",
  19839. extra: 911/829,
  19840. bottom: 18/929
  19841. }
  19842. },
  19843. maw: {
  19844. height: math.unit(0.6407, "meters"),
  19845. name: "Maw",
  19846. image: {
  19847. source: "./media/characters/claude-delroute/maw.svg"
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(7, "feet"),
  19855. default: true
  19856. },
  19857. {
  19858. name: "Lorge",
  19859. height: math.unit(20, "feet")
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(8 + 4 / 12, "feet"),
  19868. weight: math.unit(600, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/dragonien/front.svg",
  19872. extra: 100 / 94,
  19873. bottom: 3.3 / 103.3445
  19874. }
  19875. },
  19876. back: {
  19877. height: math.unit(8 + 4 / 12, "feet"),
  19878. weight: math.unit(600, "lb"),
  19879. name: "Back",
  19880. image: {
  19881. source: "./media/characters/dragonien/back.svg",
  19882. extra: 776 / 746,
  19883. bottom: 6.4 / 782.0616
  19884. }
  19885. },
  19886. foot: {
  19887. height: math.unit(1.54, "feet"),
  19888. name: "Foot",
  19889. image: {
  19890. source: "./media/characters/dragonien/foot.svg",
  19891. }
  19892. },
  19893. },
  19894. [
  19895. {
  19896. name: "Normal",
  19897. height: math.unit(8 + 4 / 12, "feet"),
  19898. default: true
  19899. },
  19900. {
  19901. name: "Macro",
  19902. height: math.unit(200, "feet")
  19903. },
  19904. {
  19905. name: "Megamacro",
  19906. height: math.unit(1, "mile")
  19907. },
  19908. {
  19909. name: "Gigamacro",
  19910. height: math.unit(1000, "miles")
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19916. {
  19917. front: {
  19918. height: math.unit(5 + 2 / 12, "feet"),
  19919. weight: math.unit(110, "lb"),
  19920. name: "Front",
  19921. image: {
  19922. source: "./media/characters/desta/front.svg",
  19923. extra: 767 / 726,
  19924. bottom: 11.7 / 779
  19925. }
  19926. },
  19927. back: {
  19928. height: math.unit(5 + 2 / 12, "feet"),
  19929. weight: math.unit(110, "lb"),
  19930. name: "Back",
  19931. image: {
  19932. source: "./media/characters/desta/back.svg",
  19933. extra: 777 / 728,
  19934. bottom: 6 / 784
  19935. }
  19936. },
  19937. frontAlt: {
  19938. height: math.unit(5 + 2 / 12, "feet"),
  19939. weight: math.unit(110, "lb"),
  19940. name: "Front",
  19941. image: {
  19942. source: "./media/characters/desta/front-alt.svg",
  19943. extra: 1482 / 1417
  19944. }
  19945. },
  19946. side: {
  19947. height: math.unit(5 + 2 / 12, "feet"),
  19948. weight: math.unit(110, "lb"),
  19949. name: "Side",
  19950. image: {
  19951. source: "./media/characters/desta/side.svg",
  19952. extra: 2579 / 2491,
  19953. bottom: 0.053
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Micro",
  19960. height: math.unit(6, "inches")
  19961. },
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(5 + 2 / 12, "feet"),
  19965. default: true
  19966. },
  19967. {
  19968. name: "Macro",
  19969. height: math.unit(62, "feet")
  19970. },
  19971. {
  19972. name: "Megamacro",
  19973. height: math.unit(1800, "feet")
  19974. },
  19975. ]
  19976. ))
  19977. characterMakers.push(() => makeCharacter(
  19978. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19979. {
  19980. front: {
  19981. height: math.unit(10, "feet"),
  19982. weight: math.unit(700, "lb"),
  19983. name: "Front",
  19984. image: {
  19985. source: "./media/characters/storm-alystar/front.svg",
  19986. extra: 2112 / 1898,
  19987. bottom: 0.034
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Micro",
  19994. height: math.unit(3.5, "inches")
  19995. },
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(10, "feet"),
  19999. default: true
  20000. },
  20001. {
  20002. name: "Macro",
  20003. height: math.unit(400, "feet")
  20004. },
  20005. {
  20006. name: "Deific",
  20007. height: math.unit(60, "miles")
  20008. },
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(2.35, "meters"),
  20016. weight: math.unit(119, "kg"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/ilia/front.svg",
  20020. extra: 1285 / 1255,
  20021. bottom: 0.06
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(2.35, "meters")
  20029. },
  20030. {
  20031. name: "Macro",
  20032. height: math.unit(140, "meters"),
  20033. default: true
  20034. },
  20035. {
  20036. name: "Megamacro",
  20037. height: math.unit(100, "miles")
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(6 + 5 / 12, "feet"),
  20046. weight: math.unit(190, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/kingdead/front.svg",
  20050. extra: 1228 / 1177
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Micro",
  20057. height: math.unit(7, "inches")
  20058. },
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(6 + 5 / 12, "feet")
  20062. },
  20063. {
  20064. name: "Macro",
  20065. height: math.unit(150, "feet"),
  20066. default: true
  20067. },
  20068. {
  20069. name: "Megamacro",
  20070. height: math.unit(200, "miles")
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(8, "feet"),
  20079. weight: math.unit(600, "lb"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/kyrehx/front.svg",
  20083. extra: 1195 / 1095,
  20084. bottom: 0.034
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Micro",
  20091. height: math.unit(2, "inches")
  20092. },
  20093. {
  20094. name: "Normal",
  20095. height: math.unit(8, "feet"),
  20096. default: true
  20097. },
  20098. {
  20099. name: "Macro",
  20100. height: math.unit(255, "feet")
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20109. weight: math.unit(184, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/xang/front.svg",
  20113. extra: 845 / 755
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20121. default: true
  20122. },
  20123. {
  20124. name: "Macro",
  20125. height: math.unit(0.935 * 146, "feet")
  20126. },
  20127. {
  20128. name: "Megamacro",
  20129. height: math.unit(0.935 * 3, "miles")
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20135. {
  20136. frontDressed: {
  20137. height: math.unit(5 + 7 / 12, "feet"),
  20138. weight: math.unit(140, "lb"),
  20139. name: "Front (Dressed)",
  20140. image: {
  20141. source: "./media/characters/doc-weardno/front-dressed.svg",
  20142. extra: 263 / 234
  20143. }
  20144. },
  20145. backDressed: {
  20146. height: math.unit(5 + 7 / 12, "feet"),
  20147. weight: math.unit(140, "lb"),
  20148. name: "Back (Dressed)",
  20149. image: {
  20150. source: "./media/characters/doc-weardno/back-dressed.svg",
  20151. extra: 266 / 238
  20152. }
  20153. },
  20154. front: {
  20155. height: math.unit(5 + 7 / 12, "feet"),
  20156. weight: math.unit(140, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/doc-weardno/front.svg",
  20160. extra: 254 / 233
  20161. }
  20162. },
  20163. },
  20164. [
  20165. {
  20166. name: "Micro",
  20167. height: math.unit(3, "inches")
  20168. },
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(5 + 7 / 12, "feet"),
  20172. default: true
  20173. },
  20174. {
  20175. name: "Macro",
  20176. height: math.unit(25, "feet")
  20177. },
  20178. {
  20179. name: "Megamacro",
  20180. height: math.unit(2, "miles")
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(6 + 2 / 12, "feet"),
  20189. weight: math.unit(153, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/seth-whilst/front.svg",
  20193. bottom: 0.07
  20194. }
  20195. },
  20196. },
  20197. [
  20198. {
  20199. name: "Micro",
  20200. height: math.unit(5, "inches")
  20201. },
  20202. {
  20203. name: "Normal",
  20204. height: math.unit(6 + 2 / 12, "feet"),
  20205. default: true
  20206. },
  20207. ]
  20208. ))
  20209. characterMakers.push(() => makeCharacter(
  20210. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20211. {
  20212. front: {
  20213. height: math.unit(3, "inches"),
  20214. weight: math.unit(8, "grams"),
  20215. name: "Front",
  20216. image: {
  20217. source: "./media/characters/pocket-jabari/front.svg",
  20218. extra: 1024 / 974,
  20219. bottom: 0.039
  20220. }
  20221. },
  20222. },
  20223. [
  20224. {
  20225. name: "Minimicro",
  20226. height: math.unit(8, "mm")
  20227. },
  20228. {
  20229. name: "Micro",
  20230. height: math.unit(3, "inches"),
  20231. default: true
  20232. },
  20233. {
  20234. name: "Normal",
  20235. height: math.unit(3, "feet")
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20241. {
  20242. frontDressed: {
  20243. height: math.unit(15, "feet"),
  20244. weight: math.unit(3280, "lb"),
  20245. name: "Front (Dressed)",
  20246. image: {
  20247. source: "./media/characters/sapphy/front-dressed.svg",
  20248. extra: 1951/1654,
  20249. bottom: 194/2145
  20250. },
  20251. form: "anthro",
  20252. default: true
  20253. },
  20254. backDressed: {
  20255. height: math.unit(15, "feet"),
  20256. weight: math.unit(3280, "lb"),
  20257. name: "Back (Dressed)",
  20258. image: {
  20259. source: "./media/characters/sapphy/back-dressed.svg",
  20260. extra: 2058/1918,
  20261. bottom: 125/2183
  20262. },
  20263. form: "anthro"
  20264. },
  20265. frontNude: {
  20266. height: math.unit(15, "feet"),
  20267. weight: math.unit(3280, "lb"),
  20268. name: "Front (Nude)",
  20269. image: {
  20270. source: "./media/characters/sapphy/front-nude.svg",
  20271. extra: 1951/1654,
  20272. bottom: 194/2145
  20273. },
  20274. form: "anthro"
  20275. },
  20276. backNude: {
  20277. height: math.unit(15, "feet"),
  20278. weight: math.unit(3280, "lb"),
  20279. name: "Back (Nude)",
  20280. image: {
  20281. source: "./media/characters/sapphy/back-nude.svg",
  20282. extra: 2058/1918,
  20283. bottom: 125/2183
  20284. },
  20285. form: "anthro"
  20286. },
  20287. full: {
  20288. height: math.unit(15, "feet"),
  20289. weight: math.unit(3280, "lb"),
  20290. name: "Full",
  20291. image: {
  20292. source: "./media/characters/sapphy/full.svg",
  20293. extra: 1396/1317,
  20294. bottom: 44/1440
  20295. },
  20296. form: "anthro"
  20297. },
  20298. dick: {
  20299. height: math.unit(3.8, "feet"),
  20300. name: "Dick",
  20301. image: {
  20302. source: "./media/characters/sapphy/dick.svg"
  20303. },
  20304. form: "anthro"
  20305. },
  20306. feral: {
  20307. height: math.unit(35, "feet"),
  20308. weight: math.unit(160, "tons"),
  20309. name: "Feral",
  20310. image: {
  20311. source: "./media/characters/sapphy/feral.svg",
  20312. extra: 1050/573,
  20313. bottom: 60/1110
  20314. },
  20315. form: "feral",
  20316. default: true
  20317. },
  20318. },
  20319. [
  20320. {
  20321. name: "Normal",
  20322. height: math.unit(15, "feet"),
  20323. form: "anthro"
  20324. },
  20325. {
  20326. name: "Casual Macro",
  20327. height: math.unit(120, "feet"),
  20328. form: "anthro"
  20329. },
  20330. {
  20331. name: "Macro",
  20332. height: math.unit(2150, "feet"),
  20333. default: true,
  20334. form: "anthro"
  20335. },
  20336. {
  20337. name: "Megamacro",
  20338. height: math.unit(8, "miles"),
  20339. form: "anthro"
  20340. },
  20341. {
  20342. name: "Galaxy Mom",
  20343. height: math.unit(6, "megalightyears"),
  20344. form: "anthro"
  20345. },
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(35, "feet"),
  20349. form: "feral",
  20350. default: true
  20351. },
  20352. {
  20353. name: "Macro",
  20354. height: math.unit(300, "feet"),
  20355. form: "feral"
  20356. },
  20357. {
  20358. name: "Galaxy Mom",
  20359. height: math.unit(10, "megalightyears"),
  20360. form: "feral"
  20361. },
  20362. ],
  20363. {
  20364. "anthro": {
  20365. name: "Anthro",
  20366. default: true
  20367. },
  20368. "feral": {
  20369. name: "Feral"
  20370. }
  20371. }
  20372. ))
  20373. characterMakers.push(() => makeCharacter(
  20374. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20375. {
  20376. hyenaFront: {
  20377. height: math.unit(6, "feet"),
  20378. weight: math.unit(190, "lb"),
  20379. name: "Front",
  20380. image: {
  20381. source: "./media/characters/kiro/hyena-front.svg",
  20382. extra: 927/839,
  20383. bottom: 91/1018
  20384. },
  20385. form: "hyena",
  20386. default: true
  20387. },
  20388. front: {
  20389. height: math.unit(6, "feet"),
  20390. weight: math.unit(170, "lb"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/kiro/front.svg",
  20394. extra: 1064 / 1012,
  20395. bottom: 0.052
  20396. },
  20397. form: "folf",
  20398. default: true
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Micro",
  20404. height: math.unit(6, "inches"),
  20405. form: "folf"
  20406. },
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(6, "feet"),
  20410. form: "folf",
  20411. default: true
  20412. },
  20413. {
  20414. name: "Macro",
  20415. height: math.unit(72, "feet"),
  20416. form: "folf"
  20417. },
  20418. {
  20419. name: "Micro",
  20420. height: math.unit(6, "inches"),
  20421. form: "hyena"
  20422. },
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(6, "feet"),
  20426. form: "hyena",
  20427. default: true
  20428. },
  20429. {
  20430. name: "Macro",
  20431. height: math.unit(72, "feet"),
  20432. form: "hyena"
  20433. },
  20434. ],
  20435. {
  20436. "hyena": {
  20437. name: "Hyena",
  20438. default: true
  20439. },
  20440. "folf": {
  20441. name: "Folf",
  20442. },
  20443. }
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20447. {
  20448. front: {
  20449. height: math.unit(5 + 9 / 12, "feet"),
  20450. weight: math.unit(175, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/irishfox/front.svg",
  20454. extra: 1912 / 1680,
  20455. bottom: 0.02
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Nano",
  20462. height: math.unit(1, "mm")
  20463. },
  20464. {
  20465. name: "Micro",
  20466. height: math.unit(2, "inches")
  20467. },
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(5 + 9 / 12, "feet"),
  20471. default: true
  20472. },
  20473. {
  20474. name: "Macro",
  20475. height: math.unit(45, "feet")
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(6 + 1 / 12, "feet"),
  20484. weight: math.unit(75, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/aronai-sieyes/front.svg",
  20488. extra: 1532/1450,
  20489. bottom: 42/1574
  20490. }
  20491. },
  20492. side: {
  20493. height: math.unit(6 + 1 / 12, "feet"),
  20494. weight: math.unit(75, "lb"),
  20495. name: "Side",
  20496. image: {
  20497. source: "./media/characters/aronai-sieyes/side.svg",
  20498. extra: 1422/1365,
  20499. bottom: 148/1570
  20500. }
  20501. },
  20502. back: {
  20503. height: math.unit(6 + 1 / 12, "feet"),
  20504. weight: math.unit(75, "lb"),
  20505. name: "Back",
  20506. image: {
  20507. source: "./media/characters/aronai-sieyes/back.svg",
  20508. extra: 1526/1464,
  20509. bottom: 51/1577
  20510. }
  20511. },
  20512. dressed: {
  20513. height: math.unit(6 + 1 / 12, "feet"),
  20514. weight: math.unit(75, "lb"),
  20515. name: "Dressed",
  20516. image: {
  20517. source: "./media/characters/aronai-sieyes/dressed.svg",
  20518. extra: 1559/1483,
  20519. bottom: 39/1598
  20520. }
  20521. },
  20522. slit: {
  20523. height: math.unit(1.3, "feet"),
  20524. name: "Slit",
  20525. image: {
  20526. source: "./media/characters/aronai-sieyes/slit.svg"
  20527. }
  20528. },
  20529. slitSpread: {
  20530. height: math.unit(0.9, "feet"),
  20531. name: "Slit (Spread)",
  20532. image: {
  20533. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20534. }
  20535. },
  20536. rump: {
  20537. height: math.unit(1.3, "feet"),
  20538. name: "Rump",
  20539. image: {
  20540. source: "./media/characters/aronai-sieyes/rump.svg"
  20541. }
  20542. },
  20543. maw: {
  20544. height: math.unit(1.25, "feet"),
  20545. name: "Maw",
  20546. image: {
  20547. source: "./media/characters/aronai-sieyes/maw.svg"
  20548. }
  20549. },
  20550. feral: {
  20551. height: math.unit(18, "feet"),
  20552. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20553. name: "Feral",
  20554. image: {
  20555. source: "./media/characters/aronai-sieyes/feral.svg",
  20556. extra: 1530 / 1240,
  20557. bottom: 0.035
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Micro",
  20564. height: math.unit(2, "inches")
  20565. },
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(6 + 1 / 12, "feet"),
  20569. default: true
  20570. }
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(12, "feet"),
  20578. weight: math.unit(410, "kg"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/xuna/front.svg",
  20582. extra: 2184 / 1980
  20583. }
  20584. },
  20585. side: {
  20586. height: math.unit(12, "feet"),
  20587. weight: math.unit(410, "kg"),
  20588. name: "Side",
  20589. image: {
  20590. source: "./media/characters/xuna/side.svg",
  20591. extra: 2184 / 1980
  20592. }
  20593. },
  20594. back: {
  20595. height: math.unit(12, "feet"),
  20596. weight: math.unit(410, "kg"),
  20597. name: "Back",
  20598. image: {
  20599. source: "./media/characters/xuna/back.svg",
  20600. extra: 2184 / 1980
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Nano glow",
  20607. height: math.unit(10, "nm")
  20608. },
  20609. {
  20610. name: "Micro floof",
  20611. height: math.unit(0.3, "m")
  20612. },
  20613. {
  20614. name: "Huggable softy boi",
  20615. height: math.unit(3.6576, "m"),
  20616. default: true
  20617. },
  20618. {
  20619. name: "Admirable floof",
  20620. height: math.unit(80, "meters")
  20621. },
  20622. {
  20623. name: "Gentle macro",
  20624. height: math.unit(300, "meters")
  20625. },
  20626. {
  20627. name: "Very careful floof",
  20628. height: math.unit(3200, "meters")
  20629. },
  20630. {
  20631. name: "The mega floof",
  20632. height: math.unit(36000, "meters")
  20633. },
  20634. {
  20635. name: "Giga-fur-Wicker",
  20636. height: math.unit(4800000, "meters")
  20637. },
  20638. {
  20639. name: "Licky world",
  20640. height: math.unit(20000000, "meters")
  20641. },
  20642. {
  20643. name: "Floofy cyan sun",
  20644. height: math.unit(1500000000, "meters")
  20645. },
  20646. {
  20647. name: "Milky Wicker",
  20648. height: math.unit(1000000000000000000000, "meters")
  20649. },
  20650. {
  20651. name: "The observing Wicker",
  20652. height: math.unit(999999999999999999999999999, "meters")
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5 + 9 / 12, "feet"),
  20661. weight: math.unit(150, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/arokha-sieyes/front.svg",
  20665. extra: 1425 / 1284,
  20666. bottom: 0.05
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(5 + 9 / 12, "feet")
  20674. },
  20675. {
  20676. name: "Macro",
  20677. height: math.unit(30, "meters"),
  20678. default: true
  20679. },
  20680. ]
  20681. ))
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20684. {
  20685. front: {
  20686. height: math.unit(6, "feet"),
  20687. weight: math.unit(180, "lb"),
  20688. name: "Front",
  20689. image: {
  20690. source: "./media/characters/arokh-sieyes/front.svg",
  20691. extra: 1830 / 1769,
  20692. bottom: 0.01
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(6, "feet")
  20700. },
  20701. {
  20702. name: "Macro",
  20703. height: math.unit(30, "meters"),
  20704. default: true
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20710. {
  20711. side: {
  20712. height: math.unit(13 + 1 / 12, "feet"),
  20713. weight: math.unit(8.5, "tonnes"),
  20714. preyCapacity: math.unit(36, "people"),
  20715. name: "Side",
  20716. image: {
  20717. source: "./media/characters/goldeneye/side.svg",
  20718. extra: 1139/741,
  20719. bottom: 98/1237
  20720. }
  20721. },
  20722. front: {
  20723. height: math.unit(5.1, "feet"),
  20724. weight: math.unit(8.5, "tonnes"),
  20725. preyCapacity: math.unit(36, "people"),
  20726. name: "Front",
  20727. image: {
  20728. source: "./media/characters/goldeneye/front.svg",
  20729. extra: 635/365,
  20730. bottom: 598/1233
  20731. }
  20732. },
  20733. maw: {
  20734. height: math.unit(6.6, "feet"),
  20735. name: "Maw",
  20736. image: {
  20737. source: "./media/characters/goldeneye/maw.svg"
  20738. }
  20739. },
  20740. headFront: {
  20741. height: math.unit(8, "feet"),
  20742. name: "Head (Front)",
  20743. image: {
  20744. source: "./media/characters/goldeneye/head-front.svg"
  20745. }
  20746. },
  20747. headSide: {
  20748. height: math.unit(6, "feet"),
  20749. name: "Head (Side)",
  20750. image: {
  20751. source: "./media/characters/goldeneye/head-side.svg"
  20752. }
  20753. },
  20754. headBack: {
  20755. height: math.unit(8, "feet"),
  20756. name: "Head (Back)",
  20757. image: {
  20758. source: "./media/characters/goldeneye/head-back.svg"
  20759. }
  20760. },
  20761. paw: {
  20762. height: math.unit(3.4, "feet"),
  20763. name: "Paw",
  20764. image: {
  20765. source: "./media/characters/goldeneye/paw.svg"
  20766. }
  20767. },
  20768. toering: {
  20769. height: math.unit(0.45, "feet"),
  20770. name: "Toering",
  20771. image: {
  20772. source: "./media/characters/goldeneye/toering.svg"
  20773. }
  20774. },
  20775. eyes: {
  20776. height: math.unit(0.5, "feet"),
  20777. name: "Eyes",
  20778. image: {
  20779. source: "./media/characters/goldeneye/eyes.svg"
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(13 + 1 / 12, "feet"),
  20787. default: true
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20793. {
  20794. front: {
  20795. height: math.unit(6 + 1 / 12, "feet"),
  20796. weight: math.unit(210, "lb"),
  20797. name: "Front",
  20798. image: {
  20799. source: "./media/characters/leonardo-lycheborne/front.svg",
  20800. extra: 776/723,
  20801. bottom: 34/810
  20802. }
  20803. },
  20804. side: {
  20805. height: math.unit(6 + 1 / 12, "feet"),
  20806. weight: math.unit(210, "lb"),
  20807. name: "Side",
  20808. image: {
  20809. source: "./media/characters/leonardo-lycheborne/side.svg",
  20810. extra: 780/728,
  20811. bottom: 12/792
  20812. }
  20813. },
  20814. back: {
  20815. height: math.unit(6 + 1 / 12, "feet"),
  20816. weight: math.unit(210, "lb"),
  20817. name: "Back",
  20818. image: {
  20819. source: "./media/characters/leonardo-lycheborne/back.svg",
  20820. extra: 775/721,
  20821. bottom: 17/792
  20822. }
  20823. },
  20824. hand: {
  20825. height: math.unit(1.08, "feet"),
  20826. name: "Hand",
  20827. image: {
  20828. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20829. }
  20830. },
  20831. foot: {
  20832. height: math.unit(1.32, "feet"),
  20833. name: "Foot",
  20834. image: {
  20835. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20836. }
  20837. },
  20838. maw: {
  20839. height: math.unit(1, "feet"),
  20840. name: "Maw",
  20841. image: {
  20842. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20843. }
  20844. },
  20845. were: {
  20846. height: math.unit(20, "feet"),
  20847. weight: math.unit(7800, "lb"),
  20848. name: "Were",
  20849. image: {
  20850. source: "./media/characters/leonardo-lycheborne/were.svg",
  20851. extra: 1224/1165,
  20852. bottom: 72/1296
  20853. }
  20854. },
  20855. feral: {
  20856. height: math.unit(7.5, "feet"),
  20857. weight: math.unit(600, "lb"),
  20858. name: "Feral",
  20859. image: {
  20860. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20861. extra: 797/702,
  20862. bottom: 139/936
  20863. }
  20864. },
  20865. taur: {
  20866. height: math.unit(11, "feet"),
  20867. weight: math.unit(3300, "lb"),
  20868. name: "Taur",
  20869. image: {
  20870. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20871. extra: 1271/1197,
  20872. bottom: 47/1318
  20873. }
  20874. },
  20875. barghest: {
  20876. height: math.unit(11, "feet"),
  20877. weight: math.unit(1300, "lb"),
  20878. name: "Barghest",
  20879. image: {
  20880. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20881. extra: 1291/1204,
  20882. bottom: 37/1328
  20883. }
  20884. },
  20885. dick: {
  20886. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20887. name: "Dick",
  20888. image: {
  20889. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20890. }
  20891. },
  20892. dickWere: {
  20893. height: math.unit((20) / 3.8, "feet"),
  20894. name: "Dick (Were)",
  20895. image: {
  20896. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(6 + 1 / 12, "feet"),
  20904. default: true
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20910. {
  20911. front: {
  20912. height: math.unit(10, "feet"),
  20913. weight: math.unit(350, "lb"),
  20914. name: "Front",
  20915. image: {
  20916. source: "./media/characters/jet/front.svg",
  20917. extra: 2050 / 1980,
  20918. bottom: 0.013
  20919. }
  20920. },
  20921. back: {
  20922. height: math.unit(10, "feet"),
  20923. weight: math.unit(350, "lb"),
  20924. name: "Back",
  20925. image: {
  20926. source: "./media/characters/jet/back.svg",
  20927. extra: 2050 / 1980,
  20928. bottom: 0.013
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Micro",
  20935. height: math.unit(6, "inches")
  20936. },
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(10, "feet"),
  20940. default: true
  20941. },
  20942. {
  20943. name: "Macro",
  20944. height: math.unit(100, "feet")
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(15, "feet"),
  20953. weight: math.unit(2800, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/tanarath/front.svg",
  20957. extra: 2392 / 2220,
  20958. bottom: 0.03
  20959. }
  20960. },
  20961. back: {
  20962. height: math.unit(15, "feet"),
  20963. weight: math.unit(2800, "lb"),
  20964. name: "Back",
  20965. image: {
  20966. source: "./media/characters/tanarath/back.svg",
  20967. extra: 2392 / 2220,
  20968. bottom: 0.03
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(15, "feet"),
  20976. default: true
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20982. {
  20983. front: {
  20984. height: math.unit(7 + 1 / 12, "feet"),
  20985. weight: math.unit(175, "lb"),
  20986. name: "Front",
  20987. image: {
  20988. source: "./media/characters/patty-cattybatty/front.svg",
  20989. extra: 908 / 874,
  20990. bottom: 0.025
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Micro",
  20997. height: math.unit(1, "inch")
  20998. },
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(7 + 1 / 12, "feet")
  21002. },
  21003. {
  21004. name: "Mini Macro",
  21005. height: math.unit(155, "feet")
  21006. },
  21007. {
  21008. name: "Macro",
  21009. height: math.unit(1077, "feet")
  21010. },
  21011. {
  21012. name: "Mega Macro",
  21013. height: math.unit(47650, "feet"),
  21014. default: true
  21015. },
  21016. {
  21017. name: "Giga Macro",
  21018. height: math.unit(440, "miles")
  21019. },
  21020. {
  21021. name: "Tera Macro",
  21022. height: math.unit(8700, "miles")
  21023. },
  21024. {
  21025. name: "Planetary Macro",
  21026. height: math.unit(32700, "miles")
  21027. },
  21028. {
  21029. name: "Solar Macro",
  21030. height: math.unit(550000, "miles")
  21031. },
  21032. {
  21033. name: "Celestial Macro",
  21034. height: math.unit(2.5, "AU")
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21040. {
  21041. front: {
  21042. height: math.unit(4 + 5 / 12, "feet"),
  21043. weight: math.unit(90, "lb"),
  21044. name: "Front",
  21045. image: {
  21046. source: "./media/characters/cappu/front.svg",
  21047. extra: 1247 / 1152,
  21048. bottom: 0.012
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(4 + 5 / 12, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21062. {
  21063. frontDressed: {
  21064. height: math.unit(70, "cm"),
  21065. weight: math.unit(6, "kg"),
  21066. name: "Front (Dressed)",
  21067. image: {
  21068. source: "./media/characters/sebi/front-dressed.svg",
  21069. extra: 713.5 / 686.5,
  21070. bottom: 0.003
  21071. }
  21072. },
  21073. front: {
  21074. height: math.unit(70, "cm"),
  21075. weight: math.unit(5, "kg"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/sebi/front.svg",
  21079. extra: 713.5 / 686.5,
  21080. bottom: 0.003
  21081. }
  21082. }
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(70, "cm"),
  21088. default: true
  21089. },
  21090. {
  21091. name: "Macro",
  21092. height: math.unit(8, "meters")
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(6, "feet"),
  21101. weight: math.unit(150, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/typhek/front.svg",
  21105. extra: 1948 / 1929,
  21106. bottom: 0.025
  21107. }
  21108. },
  21109. side: {
  21110. height: math.unit(6, "feet"),
  21111. weight: math.unit(150, "lb"),
  21112. name: "Side",
  21113. image: {
  21114. source: "./media/characters/typhek/side.svg",
  21115. extra: 2034 / 2010,
  21116. bottom: 0.003
  21117. }
  21118. },
  21119. back: {
  21120. height: math.unit(6, "feet"),
  21121. weight: math.unit(150, "lb"),
  21122. name: "Back",
  21123. image: {
  21124. source: "./media/characters/typhek/back.svg",
  21125. extra: 2005 / 1978,
  21126. bottom: 0.004
  21127. }
  21128. },
  21129. palm: {
  21130. height: math.unit(1.2, "feet"),
  21131. name: "Palm",
  21132. image: {
  21133. source: "./media/characters/typhek/palm.svg"
  21134. }
  21135. },
  21136. fist: {
  21137. height: math.unit(1.1, "feet"),
  21138. name: "Fist",
  21139. image: {
  21140. source: "./media/characters/typhek/fist.svg"
  21141. }
  21142. },
  21143. foot: {
  21144. height: math.unit(1.57, "feet"),
  21145. name: "Foot",
  21146. image: {
  21147. source: "./media/characters/typhek/foot.svg"
  21148. }
  21149. },
  21150. sole: {
  21151. height: math.unit(2.05, "feet"),
  21152. name: "Sole",
  21153. image: {
  21154. source: "./media/characters/typhek/sole.svg"
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Macro",
  21161. height: math.unit(40, "stories"),
  21162. default: true
  21163. },
  21164. {
  21165. name: "Megamacro",
  21166. height: math.unit(1, "mile")
  21167. },
  21168. {
  21169. name: "Gigamacro",
  21170. height: math.unit(4000, "solarradii")
  21171. },
  21172. {
  21173. name: "Universal",
  21174. height: math.unit(1.1, "universes")
  21175. }
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21180. {
  21181. side: {
  21182. height: math.unit(5 + 7 / 12, "feet"),
  21183. weight: math.unit(150, "lb"),
  21184. name: "Side",
  21185. image: {
  21186. source: "./media/characters/kassy/side.svg",
  21187. extra: 1280 / 1225,
  21188. bottom: 0.002
  21189. }
  21190. },
  21191. front: {
  21192. height: math.unit(5 + 7 / 12, "feet"),
  21193. weight: math.unit(150, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/kassy/front.svg",
  21197. extra: 1280 / 1225,
  21198. bottom: 0.025
  21199. }
  21200. },
  21201. back: {
  21202. height: math.unit(5 + 7 / 12, "feet"),
  21203. weight: math.unit(150, "lb"),
  21204. name: "Back",
  21205. image: {
  21206. source: "./media/characters/kassy/back.svg",
  21207. extra: 1280 / 1225,
  21208. bottom: 0.002
  21209. }
  21210. },
  21211. foot: {
  21212. height: math.unit(1.266, "feet"),
  21213. name: "Foot",
  21214. image: {
  21215. source: "./media/characters/kassy/foot.svg"
  21216. }
  21217. },
  21218. },
  21219. [
  21220. {
  21221. name: "Normal",
  21222. height: math.unit(5 + 7 / 12, "feet")
  21223. },
  21224. {
  21225. name: "Macro",
  21226. height: math.unit(137, "feet"),
  21227. default: true
  21228. },
  21229. {
  21230. name: "Megamacro",
  21231. height: math.unit(1, "mile")
  21232. },
  21233. ]
  21234. ))
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21237. {
  21238. front: {
  21239. height: math.unit(6 + 1 / 12, "feet"),
  21240. weight: math.unit(200, "lb"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/neil/front.svg",
  21244. extra: 1326 / 1250,
  21245. bottom: 0.023
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(6 + 1 / 12, "feet"),
  21253. default: true
  21254. },
  21255. {
  21256. name: "Macro",
  21257. height: math.unit(200, "feet")
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21263. {
  21264. front: {
  21265. height: math.unit(5 + 9 / 12, "feet"),
  21266. weight: math.unit(190, "lb"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/atticus/front.svg",
  21270. extra: 2934 / 2785,
  21271. bottom: 0.025
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(5 + 9 / 12, "feet"),
  21279. default: true
  21280. },
  21281. {
  21282. name: "Macro",
  21283. height: math.unit(180, "feet")
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21289. {
  21290. side: {
  21291. height: math.unit(9, "feet"),
  21292. weight: math.unit(650, "lb"),
  21293. name: "Side",
  21294. image: {
  21295. source: "./media/characters/milo/side.svg",
  21296. extra: 2644 / 2310,
  21297. bottom: 0.032
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Normal",
  21304. height: math.unit(9, "feet"),
  21305. default: true
  21306. },
  21307. {
  21308. name: "Macro",
  21309. height: math.unit(300, "feet")
  21310. },
  21311. ]
  21312. ))
  21313. characterMakers.push(() => makeCharacter(
  21314. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21315. {
  21316. side: {
  21317. height: math.unit(8, "meters"),
  21318. weight: math.unit(90000, "kg"),
  21319. name: "Side",
  21320. image: {
  21321. source: "./media/characters/ijzer/side.svg",
  21322. extra: 2756 / 1600,
  21323. bottom: 0.01
  21324. }
  21325. },
  21326. },
  21327. [
  21328. {
  21329. name: "Small",
  21330. height: math.unit(3, "meters")
  21331. },
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(8, "meters"),
  21335. default: true
  21336. },
  21337. {
  21338. name: "Normal+",
  21339. height: math.unit(10, "meters")
  21340. },
  21341. {
  21342. name: "Bigger",
  21343. height: math.unit(24, "meters")
  21344. },
  21345. {
  21346. name: "Huge",
  21347. height: math.unit(80, "meters")
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(6 + 2 / 12, "feet"),
  21356. weight: math.unit(153, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/luca-cervicum/front.svg",
  21360. extra: 370 / 327,
  21361. bottom: 0.015
  21362. }
  21363. },
  21364. back: {
  21365. height: math.unit(6 + 2 / 12, "feet"),
  21366. weight: math.unit(153, "lb"),
  21367. name: "Back",
  21368. image: {
  21369. source: "./media/characters/luca-cervicum/back.svg",
  21370. extra: 367 / 333,
  21371. bottom: 0.005
  21372. }
  21373. },
  21374. frontGear: {
  21375. height: math.unit(6 + 2 / 12, "feet"),
  21376. weight: math.unit(173, "lb"),
  21377. name: "Front (Gear)",
  21378. image: {
  21379. source: "./media/characters/luca-cervicum/front-gear.svg",
  21380. extra: 377 / 333,
  21381. bottom: 0.006
  21382. }
  21383. },
  21384. },
  21385. [
  21386. {
  21387. name: "Normal",
  21388. height: math.unit(6 + 2 / 12, "feet"),
  21389. default: true
  21390. },
  21391. ]
  21392. ))
  21393. characterMakers.push(() => makeCharacter(
  21394. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21395. {
  21396. front: {
  21397. height: math.unit(6 + 1 / 12, "feet"),
  21398. weight: math.unit(304, "lb"),
  21399. name: "Front",
  21400. image: {
  21401. source: "./media/characters/oliver/front.svg",
  21402. extra: 157 / 143,
  21403. bottom: 0.08
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(6 + 1 / 12, "feet"),
  21411. default: true
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(5 + 7 / 12, "feet"),
  21420. weight: math.unit(140, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/shane/front.svg",
  21424. extra: 304 / 289,
  21425. bottom: 0.005
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(5 + 7 / 12, "feet"),
  21433. default: true
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21439. {
  21440. front: {
  21441. height: math.unit(5 + 9 / 12, "feet"),
  21442. weight: math.unit(178, "lb"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/shin/front.svg",
  21446. extra: 159 / 151,
  21447. bottom: 0.015
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(5 + 9 / 12, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(5 + 10 / 12, "feet"),
  21464. weight: math.unit(168, "lb"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/xerxes/front.svg",
  21468. extra: 282 / 260,
  21469. bottom: 0.045
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(5 + 10 / 12, "feet"),
  21477. default: true
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21483. {
  21484. front: {
  21485. height: math.unit(6 + 7 / 12, "feet"),
  21486. weight: math.unit(208, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/chaska/front.svg",
  21490. extra: 332 / 319,
  21491. bottom: 0.015
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(6 + 7 / 12, "feet"),
  21499. default: true
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21505. {
  21506. front: {
  21507. height: math.unit(5 + 8 / 12, "feet"),
  21508. weight: math.unit(208, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/enuk/front.svg",
  21512. extra: 437 / 406,
  21513. bottom: 0.02
  21514. }
  21515. },
  21516. },
  21517. [
  21518. {
  21519. name: "Normal",
  21520. height: math.unit(5 + 8 / 12, "feet"),
  21521. default: true
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(5 + 10 / 12, "feet"),
  21530. weight: math.unit(252, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/bruun/front.svg",
  21534. extra: 197 / 187,
  21535. bottom: 0.012
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(5 + 10 / 12, "feet"),
  21543. default: true
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(6 + 10 / 12, "feet"),
  21552. weight: math.unit(255, "lb"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/alexeev/front.svg",
  21556. extra: 213 / 200,
  21557. bottom: 0.05
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Normal",
  21564. height: math.unit(6 + 10 / 12, "feet"),
  21565. default: true
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(2 + 8 / 12, "feet"),
  21574. weight: math.unit(22, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/evelyn/front.svg",
  21578. extra: 208 / 180
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(2 + 8 / 12, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(5 + 9 / 12, "feet"),
  21595. weight: math.unit(139, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/inca/front.svg",
  21599. extra: 294 / 291,
  21600. bottom: 0.03
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(5 + 9 / 12, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(6 + 3 / 12, "feet"),
  21617. weight: math.unit(185, "lb"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/mera/front.svg",
  21621. extra: 291 / 277,
  21622. bottom: 0.03
  21623. }
  21624. },
  21625. },
  21626. [
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(6 + 3 / 12, "feet"),
  21630. default: true
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(6 + 7 / 12, "feet"),
  21639. weight: math.unit(160, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/ceres/front.svg",
  21643. extra: 1023 / 950,
  21644. bottom: 0.027
  21645. }
  21646. },
  21647. back: {
  21648. height: math.unit(6 + 7 / 12, "feet"),
  21649. weight: math.unit(160, "lb"),
  21650. name: "Back",
  21651. image: {
  21652. source: "./media/characters/ceres/back.svg",
  21653. extra: 1023 / 950
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(6 + 7 / 12, "feet"),
  21661. default: true
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21667. {
  21668. front: {
  21669. height: math.unit(5 + 10 / 12, "feet"),
  21670. weight: math.unit(150, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/kris/front.svg",
  21674. extra: 885 / 803,
  21675. bottom: 0.03
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(5 + 10 / 12, "feet"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(7, "feet"),
  21692. weight: math.unit(120, "kg"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/taluthus/front.svg",
  21696. extra: 903 / 833,
  21697. bottom: 0.015
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(7, "feet"),
  21705. default: true
  21706. },
  21707. {
  21708. name: "Macro",
  21709. height: math.unit(300, "feet")
  21710. },
  21711. ]
  21712. ))
  21713. characterMakers.push(() => makeCharacter(
  21714. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21715. {
  21716. front: {
  21717. height: math.unit(5 + 9 / 12, "feet"),
  21718. weight: math.unit(145, "lb"),
  21719. name: "Front",
  21720. image: {
  21721. source: "./media/characters/dawn/front.svg",
  21722. extra: 2094 / 2016,
  21723. bottom: 0.025
  21724. }
  21725. },
  21726. back: {
  21727. height: math.unit(5 + 9 / 12, "feet"),
  21728. weight: math.unit(160, "lb"),
  21729. name: "Back",
  21730. image: {
  21731. source: "./media/characters/dawn/back.svg",
  21732. extra: 2112 / 2080,
  21733. bottom: 0.005
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(6 + 7 / 12, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21747. {
  21748. anthro: {
  21749. height: math.unit(8 + 3 / 12, "feet"),
  21750. weight: math.unit(450, "lb"),
  21751. name: "Anthro",
  21752. image: {
  21753. source: "./media/characters/arador/anthro.svg",
  21754. extra: 1835 / 1718,
  21755. bottom: 0.025
  21756. }
  21757. },
  21758. feral: {
  21759. height: math.unit(4, "feet"),
  21760. weight: math.unit(200, "lb"),
  21761. name: "Feral",
  21762. image: {
  21763. source: "./media/characters/arador/feral.svg",
  21764. extra: 1683 / 1514,
  21765. bottom: 0.07
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(8 + 3 / 12, "feet")
  21773. },
  21774. {
  21775. name: "Macro",
  21776. height: math.unit(82.5, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(5 + 10 / 12, "feet"),
  21786. weight: math.unit(125, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/dharsi/front.svg",
  21790. extra: 716 / 630,
  21791. bottom: 0.035
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Nano",
  21798. height: math.unit(100, "nm")
  21799. },
  21800. {
  21801. name: "Micro",
  21802. height: math.unit(2, "inches")
  21803. },
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(5 + 10 / 12, "feet"),
  21807. default: true
  21808. },
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(1000, "feet")
  21812. },
  21813. {
  21814. name: "Megamacro",
  21815. height: math.unit(10, "miles")
  21816. },
  21817. {
  21818. name: "Gigamacro",
  21819. height: math.unit(3000, "miles")
  21820. },
  21821. {
  21822. name: "Teramacro",
  21823. height: math.unit(500000, "miles")
  21824. },
  21825. {
  21826. name: "Teramacro+",
  21827. height: math.unit(30, "galaxies")
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(6, "feet"),
  21836. weight: math.unit(150, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/deathy/front.svg",
  21840. extra: 1552 / 1463,
  21841. bottom: 0.025
  21842. }
  21843. },
  21844. side: {
  21845. height: math.unit(6, "feet"),
  21846. weight: math.unit(150, "lb"),
  21847. name: "Side",
  21848. image: {
  21849. source: "./media/characters/deathy/side.svg",
  21850. extra: 1604 / 1455,
  21851. bottom: 0.025
  21852. }
  21853. },
  21854. back: {
  21855. height: math.unit(6, "feet"),
  21856. weight: math.unit(150, "lb"),
  21857. name: "Back",
  21858. image: {
  21859. source: "./media/characters/deathy/back.svg",
  21860. extra: 1580 / 1463,
  21861. bottom: 0.005
  21862. }
  21863. },
  21864. },
  21865. [
  21866. {
  21867. name: "Micro",
  21868. height: math.unit(5, "millimeters")
  21869. },
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(6 + 5 / 12, "feet"),
  21873. default: true
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21879. {
  21880. front: {
  21881. height: math.unit(16, "feet"),
  21882. weight: math.unit(4000, "lb"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/juniper/front.svg",
  21886. bottom: 0.04
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(16, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(6, "feet"),
  21903. weight: math.unit(150, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/hipster/front.svg",
  21907. extra: 1312 / 1209,
  21908. bottom: 0.025
  21909. }
  21910. },
  21911. back: {
  21912. height: math.unit(6, "feet"),
  21913. weight: math.unit(150, "lb"),
  21914. name: "Back",
  21915. image: {
  21916. source: "./media/characters/hipster/back.svg",
  21917. extra: 1281 / 1196,
  21918. bottom: 0.01
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Micro",
  21925. height: math.unit(1, "mm")
  21926. },
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(4, "inches"),
  21930. default: true
  21931. },
  21932. {
  21933. name: "Macro",
  21934. height: math.unit(500, "feet")
  21935. },
  21936. {
  21937. name: "Megamacro",
  21938. height: math.unit(1000, "miles")
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(6, "feet"),
  21947. weight: math.unit(150, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/tendirmuldr/front.svg",
  21951. extra: 1878 / 1772,
  21952. bottom: 0.015
  21953. }
  21954. },
  21955. },
  21956. [
  21957. {
  21958. name: "Megamacro",
  21959. height: math.unit(1500, "miles"),
  21960. default: true
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21966. {
  21967. front: {
  21968. height: math.unit(14, "feet"),
  21969. weight: math.unit(12000, "lb"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/mort/front.svg",
  21973. extra: 365 / 318,
  21974. bottom: 0.01
  21975. }
  21976. },
  21977. side: {
  21978. height: math.unit(14, "feet"),
  21979. weight: math.unit(12000, "lb"),
  21980. name: "Side",
  21981. image: {
  21982. source: "./media/characters/mort/side.svg",
  21983. extra: 365 / 318,
  21984. bottom: 0.052
  21985. },
  21986. default: true
  21987. },
  21988. back: {
  21989. height: math.unit(14, "feet"),
  21990. weight: math.unit(12000, "lb"),
  21991. name: "Back",
  21992. image: {
  21993. source: "./media/characters/mort/back.svg",
  21994. extra: 371 / 332,
  21995. bottom: 0.18
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(14, "feet"),
  22003. default: true
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22009. {
  22010. front: {
  22011. height: math.unit(8, "feet"),
  22012. weight: math.unit(1, "ton"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/lycoa/front.svg",
  22016. extra: 1836/1728,
  22017. bottom: 81/1917
  22018. }
  22019. },
  22020. back: {
  22021. height: math.unit(8, "feet"),
  22022. weight: math.unit(1, "ton"),
  22023. name: "Back",
  22024. image: {
  22025. source: "./media/characters/lycoa/back.svg",
  22026. extra: 1785/1720,
  22027. bottom: 91/1876
  22028. }
  22029. },
  22030. head: {
  22031. height: math.unit(1.6243, "feet"),
  22032. name: "Head",
  22033. image: {
  22034. source: "./media/characters/lycoa/head.svg",
  22035. extra: 1011/782,
  22036. bottom: 0/1011
  22037. }
  22038. },
  22039. tailmaw: {
  22040. height: math.unit(1.9, "feet"),
  22041. name: "Tailmaw",
  22042. image: {
  22043. source: "./media/characters/lycoa/tailmaw.svg"
  22044. }
  22045. },
  22046. tentacles: {
  22047. height: math.unit(2.1, "feet"),
  22048. name: "Tentacles",
  22049. image: {
  22050. source: "./media/characters/lycoa/tentacles.svg"
  22051. }
  22052. },
  22053. dick: {
  22054. height: math.unit(1.73, "feet"),
  22055. name: "Dick",
  22056. image: {
  22057. source: "./media/characters/lycoa/dick.svg"
  22058. }
  22059. },
  22060. },
  22061. [
  22062. {
  22063. name: "Normal",
  22064. height: math.unit(8, "feet"),
  22065. default: true
  22066. },
  22067. {
  22068. name: "Macro",
  22069. height: math.unit(30, "feet")
  22070. },
  22071. ]
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22075. {
  22076. front: {
  22077. height: math.unit(4 + 2 / 12, "feet"),
  22078. weight: math.unit(70, "lb"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/naldara/front.svg",
  22082. extra: 1664/1387,
  22083. bottom: 81/1745
  22084. },
  22085. form: "anthro",
  22086. default: true
  22087. },
  22088. naga: {
  22089. height: math.unit(20, "feet"),
  22090. weight: math.unit(15000, "kg"),
  22091. name: "Front",
  22092. image: {
  22093. source: "./media/characters/naldara/naga.svg",
  22094. extra: 1590/1396,
  22095. bottom: 285/1875
  22096. },
  22097. form: "naga",
  22098. default: true
  22099. },
  22100. },
  22101. [
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(4 + 2 / 12, "feet"),
  22105. form: "anthro",
  22106. default: true
  22107. },
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(20, "feet"),
  22111. form: "naga",
  22112. default: true
  22113. },
  22114. ],
  22115. {
  22116. "anthro": {
  22117. name: "Anthro",
  22118. default: true
  22119. },
  22120. "naga": {
  22121. name: "Naga"
  22122. }
  22123. }
  22124. ))
  22125. characterMakers.push(() => makeCharacter(
  22126. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22127. {
  22128. front: {
  22129. height: math.unit(13 + 7 / 12, "feet"),
  22130. weight: math.unit(1500, "lb"),
  22131. name: "Front",
  22132. image: {
  22133. source: "./media/characters/briar/front.svg",
  22134. extra: 1223/1157,
  22135. bottom: 123/1346
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Normal",
  22142. height: math.unit(13 + 7 / 12, "feet"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22149. {
  22150. side: {
  22151. height: math.unit(16, "feet"),
  22152. weight: math.unit(500, "lb"),
  22153. name: "Side",
  22154. image: {
  22155. source: "./media/characters/vanguard/side.svg",
  22156. extra: 1022/914,
  22157. bottom: 30/1052
  22158. }
  22159. },
  22160. sideAlt: {
  22161. height: math.unit(10, "feet"),
  22162. weight: math.unit(500, "lb"),
  22163. name: "Side (Alt)",
  22164. image: {
  22165. source: "./media/characters/vanguard/side-alt.svg",
  22166. extra: 502 / 425,
  22167. bottom: 0.087
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(17.71, "feet"),
  22175. default: true
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22181. {
  22182. front: {
  22183. height: math.unit(7.5, "feet"),
  22184. weight: math.unit(2, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/artemis/work-safe-front.svg",
  22188. extra: 1192 / 1075,
  22189. bottom: 0.07
  22190. },
  22191. form: "work-safe",
  22192. default: true
  22193. },
  22194. frontNsfw: {
  22195. height: math.unit(7.5, "feet"),
  22196. weight: math.unit(2, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/artemis/calibrating-front.svg",
  22200. extra: 1192 / 1075,
  22201. bottom: 0.07
  22202. },
  22203. form: "calibrating",
  22204. default: true
  22205. },
  22206. frontNsfwer: {
  22207. height: math.unit(7.5, "feet"),
  22208. weight: math.unit(2, "lb"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/artemis/oversize-load-front.svg",
  22212. extra: 1192 / 1075,
  22213. bottom: 0.07
  22214. },
  22215. form: "oversize-load",
  22216. default: true
  22217. },
  22218. side: {
  22219. height: math.unit(7.5, "feet"),
  22220. weight: math.unit(2, "lb"),
  22221. name: "Side",
  22222. image: {
  22223. source: "./media/characters/artemis/work-safe-side.svg",
  22224. extra: 1192 / 1075,
  22225. bottom: 0.07
  22226. },
  22227. form: "work-safe"
  22228. },
  22229. sideNsfw: {
  22230. height: math.unit(7.5, "feet"),
  22231. weight: math.unit(2, "lb"),
  22232. name: "Side",
  22233. image: {
  22234. source: "./media/characters/artemis/calibrating-side.svg",
  22235. extra: 1192 / 1075,
  22236. bottom: 0.07
  22237. },
  22238. form: "calibrating"
  22239. },
  22240. sideNsfwer: {
  22241. height: math.unit(7.5, "feet"),
  22242. weight: math.unit(2, "lb"),
  22243. name: "Side",
  22244. image: {
  22245. source: "./media/characters/artemis/oversize-load-side.svg",
  22246. extra: 1192 / 1075,
  22247. bottom: 0.07
  22248. },
  22249. form: "oversize-load"
  22250. },
  22251. maw: {
  22252. height: math.unit(1.1, "feet"),
  22253. name: "Maw",
  22254. image: {
  22255. source: "./media/characters/artemis/maw.svg"
  22256. },
  22257. form: "work-safe"
  22258. },
  22259. stomach: {
  22260. height: math.unit(0.95, "feet"),
  22261. name: "Stomach",
  22262. image: {
  22263. source: "./media/characters/artemis/stomach.svg"
  22264. },
  22265. form: "work-safe"
  22266. },
  22267. dickCanine: {
  22268. height: math.unit(1, "feet"),
  22269. name: "Dick (Canine)",
  22270. image: {
  22271. source: "./media/characters/artemis/dick-canine.svg"
  22272. },
  22273. form: "calibrating"
  22274. },
  22275. dickEquine: {
  22276. height: math.unit(0.85, "feet"),
  22277. name: "Dick (Equine)",
  22278. image: {
  22279. source: "./media/characters/artemis/dick-equine.svg"
  22280. },
  22281. form: "calibrating"
  22282. },
  22283. dickExotic: {
  22284. height: math.unit(0.85, "feet"),
  22285. name: "Dick (Exotic)",
  22286. image: {
  22287. source: "./media/characters/artemis/dick-exotic.svg"
  22288. },
  22289. form: "calibrating"
  22290. },
  22291. dickCanineBigger: {
  22292. height: math.unit(1 * 1.33, "feet"),
  22293. name: "Dick (Canine)",
  22294. image: {
  22295. source: "./media/characters/artemis/dick-canine.svg"
  22296. },
  22297. form: "oversize-load"
  22298. },
  22299. dickEquineBigger: {
  22300. height: math.unit(0.85 * 1.33, "feet"),
  22301. name: "Dick (Equine)",
  22302. image: {
  22303. source: "./media/characters/artemis/dick-equine.svg"
  22304. },
  22305. form: "oversize-load"
  22306. },
  22307. dickExoticBigger: {
  22308. height: math.unit(0.85 * 1.33, "feet"),
  22309. name: "Dick (Exotic)",
  22310. image: {
  22311. source: "./media/characters/artemis/dick-exotic.svg"
  22312. },
  22313. form: "oversize-load"
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(7.5, "feet"),
  22320. form: "work-safe",
  22321. default: true
  22322. },
  22323. {
  22324. name: "Normal",
  22325. height: math.unit(7.5, "feet"),
  22326. form: "calibrating",
  22327. default: true
  22328. },
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(7.5, "feet"),
  22332. form: "oversize-load",
  22333. default: true
  22334. },
  22335. {
  22336. name: "Enlarged",
  22337. height: math.unit(12, "feet"),
  22338. form: "work-safe",
  22339. },
  22340. {
  22341. name: "Enlarged",
  22342. height: math.unit(12, "feet"),
  22343. form: "calibrating",
  22344. },
  22345. {
  22346. name: "Enlarged",
  22347. height: math.unit(12, "feet"),
  22348. form: "oversize-load",
  22349. },
  22350. ],
  22351. {
  22352. "work-safe": {
  22353. name: "Work-Safe",
  22354. default: true
  22355. },
  22356. "calibrating": {
  22357. name: "Calibrating"
  22358. },
  22359. "oversize-load": {
  22360. name: "Oversize Load"
  22361. }
  22362. }
  22363. ))
  22364. characterMakers.push(() => makeCharacter(
  22365. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22366. {
  22367. front: {
  22368. height: math.unit(5 + 3 / 12, "feet"),
  22369. weight: math.unit(160, "lb"),
  22370. name: "Front",
  22371. image: {
  22372. source: "./media/characters/kira/front.svg",
  22373. extra: 906 / 786,
  22374. bottom: 0.01
  22375. }
  22376. },
  22377. back: {
  22378. height: math.unit(5 + 3 / 12, "feet"),
  22379. weight: math.unit(160, "lb"),
  22380. name: "Back",
  22381. image: {
  22382. source: "./media/characters/kira/back.svg",
  22383. extra: 882 / 757,
  22384. bottom: 0.005
  22385. }
  22386. },
  22387. frontDressed: {
  22388. height: math.unit(5 + 3 / 12, "feet"),
  22389. weight: math.unit(160, "lb"),
  22390. name: "Front (Dressed)",
  22391. image: {
  22392. source: "./media/characters/kira/front-dressed.svg",
  22393. extra: 906 / 786,
  22394. bottom: 0.01
  22395. }
  22396. },
  22397. beans: {
  22398. height: math.unit(0.92, "feet"),
  22399. name: "Beans",
  22400. image: {
  22401. source: "./media/characters/kira/beans.svg"
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(5 + 3 / 12, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(5 + 4 / 12, "feet"),
  22418. weight: math.unit(145, "lb"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/scramble/front.svg",
  22422. extra: 763 / 727,
  22423. bottom: 0.05
  22424. }
  22425. },
  22426. back: {
  22427. height: math.unit(5 + 4 / 12, "feet"),
  22428. weight: math.unit(145, "lb"),
  22429. name: "Back",
  22430. image: {
  22431. source: "./media/characters/scramble/back.svg",
  22432. extra: 826 / 737,
  22433. bottom: 0.002
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(5 + 4 / 12, "feet"),
  22441. default: true
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22447. {
  22448. side: {
  22449. height: math.unit(6 + 2 / 12, "feet"),
  22450. weight: math.unit(190, "lb"),
  22451. name: "Side",
  22452. image: {
  22453. source: "./media/characters/biscuit/side.svg",
  22454. extra: 858 / 791,
  22455. bottom: 0.044
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Normal",
  22462. height: math.unit(6 + 2 / 12, "feet"),
  22463. default: true
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22469. {
  22470. front: {
  22471. height: math.unit(5 + 2 / 12, "feet"),
  22472. weight: math.unit(120, "lb"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/poffin/front.svg",
  22476. extra: 786 / 680,
  22477. bottom: 0.005
  22478. }
  22479. },
  22480. },
  22481. [
  22482. {
  22483. name: "Normal",
  22484. height: math.unit(5 + 2 / 12, "feet"),
  22485. default: true
  22486. },
  22487. ]
  22488. ))
  22489. characterMakers.push(() => makeCharacter(
  22490. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22491. {
  22492. front: {
  22493. height: math.unit(6 + 3 / 12, "feet"),
  22494. weight: math.unit(519, "lb"),
  22495. name: "Front",
  22496. image: {
  22497. source: "./media/characters/dhari/front.svg",
  22498. extra: 1048 / 946,
  22499. bottom: 0.015
  22500. }
  22501. },
  22502. back: {
  22503. height: math.unit(6 + 3 / 12, "feet"),
  22504. weight: math.unit(519, "lb"),
  22505. name: "Back",
  22506. image: {
  22507. source: "./media/characters/dhari/back.svg",
  22508. extra: 1048 / 931,
  22509. bottom: 0.005
  22510. }
  22511. },
  22512. frontDressed: {
  22513. height: math.unit(6 + 3 / 12, "feet"),
  22514. weight: math.unit(519, "lb"),
  22515. name: "Front (Dressed)",
  22516. image: {
  22517. source: "./media/characters/dhari/front-dressed.svg",
  22518. extra: 1713 / 1546,
  22519. bottom: 0.02
  22520. }
  22521. },
  22522. backDressed: {
  22523. height: math.unit(6 + 3 / 12, "feet"),
  22524. weight: math.unit(519, "lb"),
  22525. name: "Back (Dressed)",
  22526. image: {
  22527. source: "./media/characters/dhari/back-dressed.svg",
  22528. extra: 1699 / 1537,
  22529. bottom: 0.01
  22530. }
  22531. },
  22532. maw: {
  22533. height: math.unit(0.95, "feet"),
  22534. name: "Maw",
  22535. image: {
  22536. source: "./media/characters/dhari/maw.svg"
  22537. }
  22538. },
  22539. wereFront: {
  22540. height: math.unit(12 + 8 / 12, "feet"),
  22541. weight: math.unit(4000, "lb"),
  22542. name: "Front (Were)",
  22543. image: {
  22544. source: "./media/characters/dhari/were-front.svg",
  22545. extra: 1065 / 969,
  22546. bottom: 0.015
  22547. }
  22548. },
  22549. wereBack: {
  22550. height: math.unit(12 + 8 / 12, "feet"),
  22551. weight: math.unit(4000, "lb"),
  22552. name: "Back (Were)",
  22553. image: {
  22554. source: "./media/characters/dhari/were-back.svg",
  22555. extra: 1065 / 969,
  22556. bottom: 0.012
  22557. }
  22558. },
  22559. wereMaw: {
  22560. height: math.unit(0.625, "meters"),
  22561. name: "Maw (Were)",
  22562. image: {
  22563. source: "./media/characters/dhari/were-maw.svg"
  22564. }
  22565. },
  22566. },
  22567. [
  22568. {
  22569. name: "Normal",
  22570. height: math.unit(6 + 3 / 12, "feet"),
  22571. default: true
  22572. },
  22573. ]
  22574. ))
  22575. characterMakers.push(() => makeCharacter(
  22576. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22577. {
  22578. anthro: {
  22579. height: math.unit(5 + 7 / 12, "feet"),
  22580. weight: math.unit(175, "lb"),
  22581. name: "Anthro",
  22582. image: {
  22583. source: "./media/characters/rena-dyne/anthro.svg",
  22584. extra: 1849 / 1785,
  22585. bottom: 0.005
  22586. }
  22587. },
  22588. taur: {
  22589. height: math.unit(15 + 6 / 12, "feet"),
  22590. weight: math.unit(8000, "lb"),
  22591. name: "Taur",
  22592. image: {
  22593. source: "./media/characters/rena-dyne/taur.svg",
  22594. extra: 2315 / 2234,
  22595. bottom: 0.033
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(5 + 7 / 12, "feet"),
  22603. default: true
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22609. {
  22610. front: {
  22611. height: math.unit(8, "feet"),
  22612. weight: math.unit(600, "lb"),
  22613. name: "Front",
  22614. image: {
  22615. source: "./media/characters/weremeep/front.svg",
  22616. extra: 970/849,
  22617. bottom: 7/977
  22618. }
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "Normal",
  22624. height: math.unit(8, "feet"),
  22625. default: true
  22626. },
  22627. {
  22628. name: "Lorg",
  22629. height: math.unit(12, "feet")
  22630. },
  22631. {
  22632. name: "Oh Lawd She Comin'",
  22633. height: math.unit(20, "feet")
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22639. {
  22640. front: {
  22641. height: math.unit(4, "feet"),
  22642. weight: math.unit(90, "lb"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/reza/front.svg",
  22646. extra: 1183 / 1111,
  22647. bottom: 0.017
  22648. }
  22649. },
  22650. back: {
  22651. height: math.unit(4, "feet"),
  22652. weight: math.unit(90, "lb"),
  22653. name: "Back",
  22654. image: {
  22655. source: "./media/characters/reza/back.svg",
  22656. extra: 1183 / 1111,
  22657. bottom: 0.01
  22658. }
  22659. },
  22660. drake: {
  22661. height: math.unit(30, "feet"),
  22662. weight: math.unit(246960, "lb"),
  22663. name: "Drake",
  22664. image: {
  22665. source: "./media/characters/reza/drake.svg",
  22666. extra: 2350 / 2024,
  22667. bottom: 60.7 / 2403
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(4, "feet"),
  22675. default: true
  22676. },
  22677. ]
  22678. ))
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22681. {
  22682. side: {
  22683. height: math.unit(15, "feet"),
  22684. weight: math.unit(14, "tons"),
  22685. name: "Side",
  22686. image: {
  22687. source: "./media/characters/athea/side.svg",
  22688. extra: 960 / 540,
  22689. bottom: 0.003
  22690. }
  22691. },
  22692. sitting: {
  22693. height: math.unit(6 * 2.85, "feet"),
  22694. weight: math.unit(14, "tons"),
  22695. name: "Sitting",
  22696. image: {
  22697. source: "./media/characters/athea/sitting.svg",
  22698. extra: 621 / 581,
  22699. bottom: 0.075
  22700. }
  22701. },
  22702. maw: {
  22703. height: math.unit(7.59498031496063, "feet"),
  22704. name: "Maw",
  22705. image: {
  22706. source: "./media/characters/athea/maw.svg"
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Lap Cat",
  22713. height: math.unit(2.5, "feet")
  22714. },
  22715. {
  22716. name: "Minimacro",
  22717. height: math.unit(15, "feet"),
  22718. default: true
  22719. },
  22720. {
  22721. name: "Macro",
  22722. height: math.unit(120, "feet")
  22723. },
  22724. {
  22725. name: "Macro+",
  22726. height: math.unit(640, "feet")
  22727. },
  22728. {
  22729. name: "Colossus",
  22730. height: math.unit(2.2, "miles")
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(8 + 8 / 12, "feet"),
  22739. weight: math.unit(130, "kg"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/seroko/front.svg",
  22743. extra: 1385 / 1280,
  22744. bottom: 0.025
  22745. }
  22746. },
  22747. back: {
  22748. height: math.unit(8 + 8 / 12, "feet"),
  22749. weight: math.unit(130, "kg"),
  22750. name: "Back",
  22751. image: {
  22752. source: "./media/characters/seroko/back.svg",
  22753. extra: 1369 / 1238,
  22754. bottom: 0.018
  22755. }
  22756. },
  22757. frontDressed: {
  22758. height: math.unit(8 + 8 / 12, "feet"),
  22759. weight: math.unit(130, "kg"),
  22760. name: "Front (Dressed)",
  22761. image: {
  22762. source: "./media/characters/seroko/front-dressed.svg",
  22763. extra: 1366 / 1275,
  22764. bottom: 0.03
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(8 + 8 / 12, "feet"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22778. {
  22779. front: {
  22780. height: math.unit(5.5, "feet"),
  22781. weight: math.unit(160, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/quatzi/front.svg",
  22785. extra: 2346 / 2242,
  22786. bottom: 0.015
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Normal",
  22793. height: math.unit(5.5, "feet"),
  22794. default: true
  22795. },
  22796. {
  22797. name: "Big",
  22798. height: math.unit(7.7, "feet")
  22799. },
  22800. ]
  22801. ))
  22802. characterMakers.push(() => makeCharacter(
  22803. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22804. {
  22805. front: {
  22806. height: math.unit(5 + 11 / 12, "feet"),
  22807. weight: math.unit(180, "lb"),
  22808. name: "Front",
  22809. image: {
  22810. source: "./media/characters/sen/front.svg",
  22811. extra: 1321 / 1254,
  22812. bottom: 0.015
  22813. }
  22814. },
  22815. side: {
  22816. height: math.unit(5 + 11 / 12, "feet"),
  22817. weight: math.unit(180, "lb"),
  22818. name: "Side",
  22819. image: {
  22820. source: "./media/characters/sen/side.svg",
  22821. extra: 1321 / 1254,
  22822. bottom: 0.007
  22823. }
  22824. },
  22825. back: {
  22826. height: math.unit(5 + 11 / 12, "feet"),
  22827. weight: math.unit(180, "lb"),
  22828. name: "Back",
  22829. image: {
  22830. source: "./media/characters/sen/back.svg",
  22831. extra: 1321 / 1254
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Normal",
  22838. height: math.unit(5 + 11 / 12, "feet"),
  22839. default: true
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(166.6, "cm"),
  22848. weight: math.unit(66.6, "kg"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/fruity/front.svg",
  22852. extra: 1510 / 1386,
  22853. bottom: 0.04
  22854. }
  22855. },
  22856. back: {
  22857. height: math.unit(166.6, "cm"),
  22858. weight: math.unit(66.6, "lb"),
  22859. name: "Back",
  22860. image: {
  22861. source: "./media/characters/fruity/back.svg",
  22862. extra: 1563 / 1435,
  22863. bottom: 0.005
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(166.6, "cm"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Demonic",
  22875. height: math.unit(166.6, "feet")
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22881. {
  22882. side: {
  22883. height: math.unit(10, "feet"),
  22884. weight: math.unit(500, "lb"),
  22885. name: "Side",
  22886. image: {
  22887. source: "./media/characters/zost/side.svg",
  22888. extra: 2870/2533,
  22889. bottom: 252/3122
  22890. }
  22891. },
  22892. mawFront: {
  22893. height: math.unit(1.08, "meters"),
  22894. name: "Maw (Front)",
  22895. image: {
  22896. source: "./media/characters/zost/maw-front.svg"
  22897. }
  22898. },
  22899. mawSide: {
  22900. height: math.unit(2.66, "feet"),
  22901. name: "Maw (Side)",
  22902. image: {
  22903. source: "./media/characters/zost/maw-side.svg"
  22904. }
  22905. },
  22906. wingspan: {
  22907. height: math.unit(7.4, "feet"),
  22908. name: "Wingspan",
  22909. image: {
  22910. source: "./media/characters/zost/wingspan.svg"
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(10, "feet"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(5 + 4 / 12, "feet"),
  22927. weight: math.unit(120, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/luci/front.svg",
  22931. extra: 1985 / 1884,
  22932. bottom: 0.04
  22933. }
  22934. },
  22935. back: {
  22936. height: math.unit(5 + 4 / 12, "feet"),
  22937. weight: math.unit(120, "lb"),
  22938. name: "Back",
  22939. image: {
  22940. source: "./media/characters/luci/back.svg",
  22941. extra: 1892 / 1791,
  22942. bottom: 0.002
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(5 + 4 / 12, "feet"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(1500, "feet"),
  22959. weight: math.unit(3.8e6, "tons"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/2th/front.svg",
  22963. extra: 3489 / 3350,
  22964. bottom: 0.1
  22965. }
  22966. },
  22967. foot: {
  22968. height: math.unit(461, "feet"),
  22969. name: "Foot",
  22970. image: {
  22971. source: "./media/characters/2th/foot.svg"
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "\"Micro\"",
  22978. height: math.unit(15 + 7 / 12, "feet")
  22979. },
  22980. {
  22981. name: "Normal",
  22982. height: math.unit(1500, "feet"),
  22983. default: true
  22984. },
  22985. {
  22986. name: "Macro",
  22987. height: math.unit(5000, "feet")
  22988. },
  22989. {
  22990. name: "Megamacro",
  22991. height: math.unit(15, "miles")
  22992. },
  22993. {
  22994. name: "Gigamacro",
  22995. height: math.unit(4000, "miles")
  22996. },
  22997. {
  22998. name: "Galactic",
  22999. height: math.unit(50, "AU")
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23005. {
  23006. front: {
  23007. height: math.unit(5 + 6 / 12, "feet"),
  23008. weight: math.unit(220, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/amethyst/front.svg",
  23012. extra: 2078 / 2040,
  23013. bottom: 0.045
  23014. }
  23015. },
  23016. back: {
  23017. height: math.unit(5 + 6 / 12, "feet"),
  23018. weight: math.unit(220, "lb"),
  23019. name: "Back",
  23020. image: {
  23021. source: "./media/characters/amethyst/back.svg",
  23022. extra: 2021 / 1989,
  23023. bottom: 0.02
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(5 + 6 / 12, "feet"),
  23031. default: true
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(4 + 11 / 12, "feet"),
  23040. weight: math.unit(120, "lb"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/yumi-akiyama/front.svg",
  23044. extra: 1327 / 1235,
  23045. bottom: 0.02
  23046. }
  23047. },
  23048. back: {
  23049. height: math.unit(4 + 11 / 12, "feet"),
  23050. weight: math.unit(120, "lb"),
  23051. name: "Back",
  23052. image: {
  23053. source: "./media/characters/yumi-akiyama/back.svg",
  23054. extra: 1287 / 1245,
  23055. bottom: 0.002
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Galactic",
  23062. height: math.unit(50, "galaxies"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Universal",
  23067. height: math.unit(100, "universes")
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(8, "feet"),
  23076. weight: math.unit(500, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/rifter-yrmori/front.svg",
  23080. extra: 1180 / 1125,
  23081. bottom: 0.02
  23082. }
  23083. },
  23084. back: {
  23085. height: math.unit(8, "feet"),
  23086. weight: math.unit(500, "lb"),
  23087. name: "Back",
  23088. image: {
  23089. source: "./media/characters/rifter-yrmori/back.svg",
  23090. extra: 1190 / 1145,
  23091. bottom: 0.001
  23092. }
  23093. },
  23094. wings: {
  23095. height: math.unit(7.75, "feet"),
  23096. weight: math.unit(500, "lb"),
  23097. name: "Wings",
  23098. image: {
  23099. source: "./media/characters/rifter-yrmori/wings.svg",
  23100. extra: 1357 / 1285
  23101. }
  23102. },
  23103. maw: {
  23104. height: math.unit(0.8, "feet"),
  23105. name: "Maw",
  23106. image: {
  23107. source: "./media/characters/rifter-yrmori/maw.svg"
  23108. }
  23109. },
  23110. mawfront: {
  23111. height: math.unit(1.45, "feet"),
  23112. name: "Maw (Front)",
  23113. image: {
  23114. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Normal",
  23121. height: math.unit(8, "feet"),
  23122. default: true
  23123. },
  23124. {
  23125. name: "Macro",
  23126. height: math.unit(42, "meters")
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23132. {
  23133. were: {
  23134. height: math.unit(25 + 6 / 12, "feet"),
  23135. weight: math.unit(10000, "lb"),
  23136. name: "Were",
  23137. image: {
  23138. source: "./media/characters/tahajin/were.svg",
  23139. extra: 801 / 770,
  23140. bottom: 0.042
  23141. }
  23142. },
  23143. aquatic: {
  23144. height: math.unit(6 + 4 / 12, "feet"),
  23145. weight: math.unit(160, "lb"),
  23146. name: "Aquatic",
  23147. image: {
  23148. source: "./media/characters/tahajin/aquatic.svg",
  23149. extra: 572 / 542,
  23150. bottom: 0.04
  23151. }
  23152. },
  23153. chow: {
  23154. height: math.unit(8 + 11 / 12, "feet"),
  23155. weight: math.unit(450, "lb"),
  23156. name: "Chow",
  23157. image: {
  23158. source: "./media/characters/tahajin/chow.svg",
  23159. extra: 660 / 640,
  23160. bottom: 0.015
  23161. }
  23162. },
  23163. demiNaga: {
  23164. height: math.unit(6 + 8 / 12, "feet"),
  23165. weight: math.unit(300, "lb"),
  23166. name: "Demi Naga",
  23167. image: {
  23168. source: "./media/characters/tahajin/demi-naga.svg",
  23169. extra: 643 / 615,
  23170. bottom: 0.1
  23171. }
  23172. },
  23173. data: {
  23174. height: math.unit(5, "inches"),
  23175. weight: math.unit(0.1, "lb"),
  23176. name: "Data",
  23177. image: {
  23178. source: "./media/characters/tahajin/data.svg"
  23179. }
  23180. },
  23181. fluu: {
  23182. height: math.unit(5 + 7 / 12, "feet"),
  23183. weight: math.unit(140, "lb"),
  23184. name: "Fluu",
  23185. image: {
  23186. source: "./media/characters/tahajin/fluu.svg",
  23187. extra: 628 / 592,
  23188. bottom: 0.02
  23189. }
  23190. },
  23191. starWarrior: {
  23192. height: math.unit(4 + 5 / 12, "feet"),
  23193. weight: math.unit(50, "lb"),
  23194. name: "Star Warrior",
  23195. image: {
  23196. source: "./media/characters/tahajin/star-warrior.svg"
  23197. }
  23198. },
  23199. },
  23200. [
  23201. {
  23202. name: "Normal",
  23203. height: math.unit(25 + 6 / 12, "feet"),
  23204. default: true
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23210. {
  23211. front: {
  23212. height: math.unit(8, "feet"),
  23213. weight: math.unit(350, "lb"),
  23214. name: "Front",
  23215. image: {
  23216. source: "./media/characters/gabira/front.svg",
  23217. extra: 1261/1154,
  23218. bottom: 51/1312
  23219. }
  23220. },
  23221. back: {
  23222. height: math.unit(8, "feet"),
  23223. weight: math.unit(350, "lb"),
  23224. name: "Back",
  23225. image: {
  23226. source: "./media/characters/gabira/back.svg",
  23227. extra: 1265/1163,
  23228. bottom: 46/1311
  23229. }
  23230. },
  23231. head: {
  23232. height: math.unit(2.85, "feet"),
  23233. name: "Head",
  23234. image: {
  23235. source: "./media/characters/gabira/head.svg"
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(8, "feet"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(5 + 3 / 12, "feet"),
  23252. weight: math.unit(137, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/sasha-katraine/front.svg",
  23256. extra: 1745/1694,
  23257. bottom: 37/1782
  23258. }
  23259. },
  23260. back: {
  23261. height: math.unit(5 + 3 / 12, "feet"),
  23262. weight: math.unit(137, "lb"),
  23263. name: "Back",
  23264. image: {
  23265. source: "./media/characters/sasha-katraine/back.svg",
  23266. extra: 1776/1699,
  23267. bottom: 26/1802
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Micro",
  23274. height: math.unit(5, "inches")
  23275. },
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(5 + 3 / 12, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23285. {
  23286. side: {
  23287. height: math.unit(4, "inches"),
  23288. weight: math.unit(200, "grams"),
  23289. name: "Side",
  23290. image: {
  23291. source: "./media/characters/der/side.svg",
  23292. extra: 719 / 400,
  23293. bottom: 30.6 / 749.9187
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Micro",
  23300. height: math.unit(4, "inches"),
  23301. default: true
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23307. {
  23308. side: {
  23309. height: math.unit(30, "meters"),
  23310. weight: math.unit(700, "tonnes"),
  23311. name: "Side",
  23312. image: {
  23313. source: "./media/characters/fixerdragon/side.svg",
  23314. extra: (1293.0514 - 116.03) / 1106.86,
  23315. bottom: 116.03 / 1293.0514
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Planck",
  23322. height: math.unit(1.6e-35, "meters")
  23323. },
  23324. {
  23325. name: "Micro",
  23326. height: math.unit(0.4, "meters")
  23327. },
  23328. {
  23329. name: "Normal",
  23330. height: math.unit(30, "meters"),
  23331. default: true
  23332. },
  23333. {
  23334. name: "Megamacro",
  23335. height: math.unit(1.2, "megameters")
  23336. },
  23337. {
  23338. name: "Teramacro",
  23339. height: math.unit(130, "terameters")
  23340. },
  23341. {
  23342. name: "Yottamacro",
  23343. height: math.unit(6200, "yottameters")
  23344. },
  23345. ]
  23346. ));
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(8, "feet"),
  23352. weight: math.unit(250, "lb"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/kite/front.svg",
  23356. extra: 2796 / 2659,
  23357. bottom: 0.002
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Normal",
  23364. height: math.unit(8, "feet"),
  23365. default: true
  23366. },
  23367. {
  23368. name: "Macro",
  23369. height: math.unit(360, "feet")
  23370. },
  23371. {
  23372. name: "Megamacro",
  23373. height: math.unit(1500, "feet")
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(5 + 11/12, "feet"),
  23382. weight: math.unit(170, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/poojawa-vynar/front.svg",
  23386. extra: 1735/1585,
  23387. bottom: 96/1831
  23388. }
  23389. },
  23390. back: {
  23391. height: math.unit(5 + 11/12, "feet"),
  23392. weight: math.unit(170, "lb"),
  23393. name: "Back",
  23394. image: {
  23395. source: "./media/characters/poojawa-vynar/back.svg",
  23396. extra: 1749/1607,
  23397. bottom: 28/1777
  23398. }
  23399. },
  23400. male: {
  23401. height: math.unit(5 + 11/12, "feet"),
  23402. weight: math.unit(170, "lb"),
  23403. name: "Male",
  23404. image: {
  23405. source: "./media/characters/poojawa-vynar/male.svg",
  23406. extra: 1855/1713,
  23407. bottom: 63/1918
  23408. }
  23409. },
  23410. taur: {
  23411. height: math.unit(5 + 11/12, "feet"),
  23412. weight: math.unit(170, "lb"),
  23413. name: "Taur",
  23414. image: {
  23415. source: "./media/characters/poojawa-vynar/taur.svg",
  23416. extra: 1151/1059,
  23417. bottom: 356/1507
  23418. }
  23419. },
  23420. frontDressed: {
  23421. height: math.unit(5 + 11/12, "feet"),
  23422. weight: math.unit(170, "lb"),
  23423. name: "Front (Dressed)",
  23424. image: {
  23425. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23426. extra: 1735/1585,
  23427. bottom: 96/1831
  23428. }
  23429. },
  23430. backDressed: {
  23431. height: math.unit(5 + 11/12, "feet"),
  23432. weight: math.unit(170, "lb"),
  23433. name: "Back (Dressed)",
  23434. image: {
  23435. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23436. extra: 1749/1607,
  23437. bottom: 28/1777
  23438. }
  23439. },
  23440. maleDressed: {
  23441. height: math.unit(5 + 11/12, "feet"),
  23442. weight: math.unit(170, "lb"),
  23443. name: "Male (Dressed)",
  23444. image: {
  23445. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23446. extra: 1855/1713,
  23447. bottom: 63/1918
  23448. }
  23449. },
  23450. taurDressed: {
  23451. height: math.unit(5 + 11/12, "feet"),
  23452. weight: math.unit(170, "lb"),
  23453. name: "Taur (Dressed)",
  23454. image: {
  23455. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23456. extra: 1151/1059,
  23457. bottom: 356/1507
  23458. }
  23459. },
  23460. maw: {
  23461. height: math.unit(1.46, "feet"),
  23462. name: "Maw",
  23463. image: {
  23464. source: "./media/characters/poojawa-vynar/maw.svg"
  23465. }
  23466. },
  23467. head: {
  23468. height: math.unit(2.34, "feet"),
  23469. name: "Head",
  23470. image: {
  23471. source: "./media/characters/poojawa-vynar/head.svg"
  23472. }
  23473. },
  23474. paw: {
  23475. height: math.unit(1.61, "feet"),
  23476. name: "Paw",
  23477. image: {
  23478. source: "./media/characters/poojawa-vynar/paw.svg"
  23479. }
  23480. },
  23481. pawToering: {
  23482. height: math.unit(1.72, "feet"),
  23483. name: "Paw (Toering)",
  23484. image: {
  23485. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23486. }
  23487. },
  23488. toering: {
  23489. height: math.unit(2.9, "inches"),
  23490. name: "Toering",
  23491. image: {
  23492. source: "./media/characters/poojawa-vynar/toering.svg"
  23493. }
  23494. },
  23495. shaft: {
  23496. height: math.unit(0.625, "feet"),
  23497. name: "Shaft",
  23498. image: {
  23499. source: "./media/characters/poojawa-vynar/shaft.svg"
  23500. }
  23501. },
  23502. spade: {
  23503. height: math.unit(0.42, "feet"),
  23504. name: "Spade",
  23505. image: {
  23506. source: "./media/characters/poojawa-vynar/spade.svg"
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Shortstack",
  23513. height: math.unit(4, "feet")
  23514. },
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(5 + 11 / 12, "feet"),
  23518. default: true
  23519. },
  23520. {
  23521. name: "Tauric",
  23522. height: math.unit(4, "meters")
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23528. {
  23529. front: {
  23530. height: math.unit(293, "meters"),
  23531. weight: math.unit(70400, "tons"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/violette/front.svg",
  23535. extra: 1227 / 1180,
  23536. bottom: 0.005
  23537. }
  23538. },
  23539. back: {
  23540. height: math.unit(293, "meters"),
  23541. weight: math.unit(70400, "tons"),
  23542. name: "Back",
  23543. image: {
  23544. source: "./media/characters/violette/back.svg",
  23545. extra: 1227 / 1180,
  23546. bottom: 0.005
  23547. }
  23548. },
  23549. },
  23550. [
  23551. {
  23552. name: "Macro",
  23553. height: math.unit(293, "meters"),
  23554. default: true
  23555. },
  23556. ]
  23557. ))
  23558. characterMakers.push(() => makeCharacter(
  23559. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23560. {
  23561. front: {
  23562. height: math.unit(1050, "feet"),
  23563. weight: math.unit(200000, "tons"),
  23564. name: "Front",
  23565. image: {
  23566. source: "./media/characters/alessandra/front.svg",
  23567. extra: 960 / 912,
  23568. bottom: 0.06
  23569. }
  23570. },
  23571. },
  23572. [
  23573. {
  23574. name: "Macro",
  23575. height: math.unit(1050, "feet")
  23576. },
  23577. {
  23578. name: "Macro+",
  23579. height: math.unit(900, "meters"),
  23580. default: true
  23581. },
  23582. ]
  23583. ))
  23584. characterMakers.push(() => makeCharacter(
  23585. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23586. {
  23587. front: {
  23588. height: math.unit(5, "feet"),
  23589. weight: math.unit(187, "lb"),
  23590. name: "Front",
  23591. image: {
  23592. source: "./media/characters/person/front.svg",
  23593. extra: 3087 / 2945,
  23594. bottom: 91 / 3181
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Micro",
  23601. height: math.unit(3, "inches")
  23602. },
  23603. {
  23604. name: "Normal",
  23605. height: math.unit(5, "feet"),
  23606. default: true
  23607. },
  23608. {
  23609. name: "Macro",
  23610. height: math.unit(90, "feet")
  23611. },
  23612. {
  23613. name: "Max Size",
  23614. height: math.unit(280, "feet")
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(4.5, "meters"),
  23623. weight: math.unit(3200, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/ty/front.svg",
  23627. extra: 1038 / 960,
  23628. bottom: 31.156 / 1068
  23629. }
  23630. },
  23631. back: {
  23632. height: math.unit(4.5, "meters"),
  23633. weight: math.unit(3200, "lb"),
  23634. name: "Back",
  23635. image: {
  23636. source: "./media/characters/ty/back.svg",
  23637. extra: 1044 / 966,
  23638. bottom: 7.48 / 1049
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Normal",
  23645. height: math.unit(4.5, "meters"),
  23646. default: true
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23652. {
  23653. front: {
  23654. height: math.unit(5 + 4 / 12, "feet"),
  23655. weight: math.unit(115, "lb"),
  23656. name: "Front",
  23657. image: {
  23658. source: "./media/characters/rocky/front.svg",
  23659. extra: 1012 / 975,
  23660. bottom: 54 / 1066
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(5 + 4 / 12, "feet"),
  23668. default: true
  23669. },
  23670. ]
  23671. ))
  23672. characterMakers.push(() => makeCharacter(
  23673. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23674. {
  23675. upright: {
  23676. height: math.unit(6, "meters"),
  23677. weight: math.unit(4000, "kg"),
  23678. name: "Upright",
  23679. image: {
  23680. source: "./media/characters/ruin/upright.svg",
  23681. extra: 668 / 661,
  23682. bottom: 42 / 799.8396
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Normal",
  23689. height: math.unit(6, "meters"),
  23690. default: true
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(5, "feet"),
  23699. weight: math.unit(106, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/robin/front.svg",
  23703. extra: 862 / 799,
  23704. bottom: 42.4 / 914.8856
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Normal",
  23711. height: math.unit(5, "feet"),
  23712. default: true
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23718. {
  23719. side: {
  23720. height: math.unit(3, "feet"),
  23721. weight: math.unit(225, "lb"),
  23722. name: "Side",
  23723. image: {
  23724. source: "./media/characters/saian/side.svg",
  23725. extra: 566 / 356,
  23726. bottom: 79.7 / 643
  23727. }
  23728. },
  23729. maw: {
  23730. height: math.unit(2.85, "feet"),
  23731. name: "Maw",
  23732. image: {
  23733. source: "./media/characters/saian/maw.svg"
  23734. }
  23735. },
  23736. },
  23737. [
  23738. {
  23739. name: "Normal",
  23740. height: math.unit(3, "feet"),
  23741. default: true
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23747. {
  23748. side: {
  23749. height: math.unit(8, "feet"),
  23750. weight: math.unit(300, "lb"),
  23751. name: "Side",
  23752. image: {
  23753. source: "./media/characters/equus-silvermane/side.svg",
  23754. extra: 2176 / 2050,
  23755. bottom: 65.7 / 2245
  23756. }
  23757. },
  23758. front: {
  23759. height: math.unit(8, "feet"),
  23760. weight: math.unit(300, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/equus-silvermane/front.svg",
  23764. extra: 4633 / 4400,
  23765. bottom: 71.3 / 4706.915
  23766. }
  23767. },
  23768. sideStepping: {
  23769. height: math.unit(8, "feet"),
  23770. weight: math.unit(300, "lb"),
  23771. name: "Side (Stepping)",
  23772. image: {
  23773. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23774. extra: 1968 / 1860,
  23775. bottom: 16.4 / 1989
  23776. }
  23777. },
  23778. },
  23779. [
  23780. {
  23781. name: "Normal",
  23782. height: math.unit(8, "feet")
  23783. },
  23784. {
  23785. name: "Minimacro",
  23786. height: math.unit(75, "feet"),
  23787. default: true
  23788. },
  23789. {
  23790. name: "Macro",
  23791. height: math.unit(150, "feet")
  23792. },
  23793. {
  23794. name: "Macro+",
  23795. height: math.unit(1000, "feet")
  23796. },
  23797. {
  23798. name: "Megamacro",
  23799. height: math.unit(1, "mile")
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23805. {
  23806. side: {
  23807. height: math.unit(20, "feet"),
  23808. weight: math.unit(30000, "kg"),
  23809. name: "Side",
  23810. image: {
  23811. source: "./media/characters/windar/side.svg",
  23812. extra: 1491 / 1248,
  23813. bottom: 82.56 / 1568
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(20, "feet"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23827. {
  23828. side: {
  23829. height: math.unit(15.66, "feet"),
  23830. weight: math.unit(150, "lb"),
  23831. name: "Side",
  23832. image: {
  23833. source: "./media/characters/melody/side.svg",
  23834. extra: 1097 / 944,
  23835. bottom: 11.8 / 1109
  23836. }
  23837. },
  23838. sideOutfit: {
  23839. height: math.unit(15.66, "feet"),
  23840. weight: math.unit(150, "lb"),
  23841. name: "Side (Outfit)",
  23842. image: {
  23843. source: "./media/characters/melody/side-outfit.svg",
  23844. extra: 1097 / 944,
  23845. bottom: 11.8 / 1109
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(15.66, "feet"),
  23853. default: true
  23854. },
  23855. ]
  23856. ))
  23857. characterMakers.push(() => makeCharacter(
  23858. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23859. {
  23860. armoredFront: {
  23861. height: math.unit(8, "feet"),
  23862. weight: math.unit(325, "lb"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/windera/armored-front.svg",
  23866. extra: 1830/1598,
  23867. bottom: 151/1981
  23868. },
  23869. form: "armored",
  23870. default: true
  23871. },
  23872. macroFront: {
  23873. height: math.unit(70, "feet"),
  23874. weight: math.unit(315453, "lb"),
  23875. name: "Front",
  23876. image: {
  23877. source: "./media/characters/windera/macro-front.svg",
  23878. extra: 963/883,
  23879. bottom: 23/986
  23880. },
  23881. form: "macro",
  23882. default: true
  23883. },
  23884. },
  23885. [
  23886. {
  23887. name: "Normal",
  23888. height: math.unit(8, "feet"),
  23889. default: true,
  23890. form: "armored"
  23891. },
  23892. {
  23893. name: "Normal",
  23894. height: math.unit(70, "feet"),
  23895. default: true,
  23896. form: "macro"
  23897. },
  23898. ],
  23899. {
  23900. "armored": {
  23901. name: "Armored",
  23902. default: true
  23903. },
  23904. "macro": {
  23905. name: "Macro",
  23906. },
  23907. }
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23911. {
  23912. front: {
  23913. height: math.unit(28.75, "feet"),
  23914. weight: math.unit(2000, "kg"),
  23915. name: "Front",
  23916. image: {
  23917. source: "./media/characters/sonear/front.svg",
  23918. extra: 1041.1 / 964.9,
  23919. bottom: 53.7 / 1096.6
  23920. }
  23921. },
  23922. },
  23923. [
  23924. {
  23925. name: "Normal",
  23926. height: math.unit(28.75, "feet"),
  23927. default: true
  23928. },
  23929. ]
  23930. ))
  23931. characterMakers.push(() => makeCharacter(
  23932. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23933. {
  23934. side: {
  23935. height: math.unit(25.5, "feet"),
  23936. weight: math.unit(23000, "kg"),
  23937. name: "Side",
  23938. image: {
  23939. source: "./media/characters/kanara/side.svg"
  23940. }
  23941. },
  23942. },
  23943. [
  23944. {
  23945. name: "Normal",
  23946. height: math.unit(25.5, "feet"),
  23947. default: true
  23948. },
  23949. ]
  23950. ))
  23951. characterMakers.push(() => makeCharacter(
  23952. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23953. {
  23954. side: {
  23955. height: math.unit(10, "feet"),
  23956. weight: math.unit(1000, "kg"),
  23957. name: "Side",
  23958. image: {
  23959. source: "./media/characters/ereus/side.svg",
  23960. extra: 1157 / 959,
  23961. bottom: 153 / 1312.5
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Normal",
  23968. height: math.unit(10, "feet"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23975. {
  23976. side: {
  23977. height: math.unit(4.5, "feet"),
  23978. weight: math.unit(500, "lb"),
  23979. name: "Side",
  23980. image: {
  23981. source: "./media/characters/e-ter/side.svg",
  23982. extra: 1550 / 1248,
  23983. bottom: 146 / 1694
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Normal",
  23990. height: math.unit(4.5, "feet"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23997. {
  23998. side: {
  23999. height: math.unit(9.7, "feet"),
  24000. weight: math.unit(4000, "kg"),
  24001. name: "Side",
  24002. image: {
  24003. source: "./media/characters/yamie/side.svg"
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Normal",
  24010. height: math.unit(9.7, "feet"),
  24011. default: true
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24017. {
  24018. front: {
  24019. height: math.unit(50, "feet"),
  24020. weight: math.unit(50000, "kg"),
  24021. name: "Front",
  24022. image: {
  24023. source: "./media/characters/anders/front.svg",
  24024. extra: 570 / 539,
  24025. bottom: 14.7 / 586.7
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Large",
  24032. height: math.unit(50, "feet")
  24033. },
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(2000, "feet"),
  24037. default: true
  24038. },
  24039. {
  24040. name: "Megamacro",
  24041. height: math.unit(12, "miles")
  24042. },
  24043. ]
  24044. ))
  24045. characterMakers.push(() => makeCharacter(
  24046. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24047. {
  24048. front: {
  24049. height: math.unit(7 + 2 / 12, "feet"),
  24050. weight: math.unit(300, "lb"),
  24051. name: "Front",
  24052. image: {
  24053. source: "./media/characters/reban/front.svg",
  24054. extra: 1287/1212,
  24055. bottom: 148/1435
  24056. }
  24057. },
  24058. head: {
  24059. height: math.unit(1.95, "feet"),
  24060. name: "Head",
  24061. image: {
  24062. source: "./media/characters/reban/head.svg"
  24063. }
  24064. },
  24065. maw: {
  24066. height: math.unit(0.95, "feet"),
  24067. name: "Maw",
  24068. image: {
  24069. source: "./media/characters/reban/maw.svg"
  24070. }
  24071. },
  24072. foot: {
  24073. height: math.unit(1.65, "feet"),
  24074. name: "Foot",
  24075. image: {
  24076. source: "./media/characters/reban/foot.svg"
  24077. }
  24078. },
  24079. dick: {
  24080. height: math.unit(7 / 5, "feet"),
  24081. name: "Dick",
  24082. image: {
  24083. source: "./media/characters/reban/dick.svg"
  24084. }
  24085. },
  24086. },
  24087. [
  24088. {
  24089. name: "Natural Height",
  24090. height: math.unit(7 + 2 / 12, "feet")
  24091. },
  24092. {
  24093. name: "Macro",
  24094. height: math.unit(500, "feet"),
  24095. default: true
  24096. },
  24097. {
  24098. name: "Canon Height",
  24099. height: math.unit(50, "AU")
  24100. },
  24101. ]
  24102. ))
  24103. characterMakers.push(() => makeCharacter(
  24104. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24105. {
  24106. front: {
  24107. height: math.unit(6, "feet"),
  24108. weight: math.unit(150, "lb"),
  24109. name: "Front",
  24110. image: {
  24111. source: "./media/characters/terrance-keayes/front.svg",
  24112. extra: 1.005,
  24113. bottom: 151 / 1615
  24114. }
  24115. },
  24116. side: {
  24117. height: math.unit(6, "feet"),
  24118. weight: math.unit(150, "lb"),
  24119. name: "Side",
  24120. image: {
  24121. source: "./media/characters/terrance-keayes/side.svg",
  24122. extra: 1.005,
  24123. bottom: 129.4 / 1544
  24124. }
  24125. },
  24126. back: {
  24127. height: math.unit(6, "feet"),
  24128. weight: math.unit(150, "lb"),
  24129. name: "Back",
  24130. image: {
  24131. source: "./media/characters/terrance-keayes/back.svg",
  24132. extra: 1.005,
  24133. bottom: 58.4 / 1557.3
  24134. }
  24135. },
  24136. dick: {
  24137. height: math.unit(6 * 0.208, "feet"),
  24138. name: "Dick",
  24139. image: {
  24140. source: "./media/characters/terrance-keayes/dick.svg"
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Canon Height",
  24147. height: math.unit(35, "miles"),
  24148. default: true
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(6, "feet"),
  24157. weight: math.unit(150, "lb"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/ofelia/front.svg",
  24161. extra: 1130/1117,
  24162. bottom: 91/1221
  24163. }
  24164. },
  24165. back: {
  24166. height: math.unit(6, "feet"),
  24167. weight: math.unit(150, "lb"),
  24168. name: "Back",
  24169. image: {
  24170. source: "./media/characters/ofelia/back.svg",
  24171. extra: 1172/1159,
  24172. bottom: 28/1200
  24173. }
  24174. },
  24175. maw: {
  24176. height: math.unit(1, "feet"),
  24177. name: "Maw",
  24178. image: {
  24179. source: "./media/characters/ofelia/maw.svg"
  24180. }
  24181. },
  24182. foot: {
  24183. height: math.unit(1.949, "feet"),
  24184. name: "Foot",
  24185. image: {
  24186. source: "./media/characters/ofelia/foot.svg"
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Canon Height",
  24193. height: math.unit(2000, "miles"),
  24194. default: true
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24200. {
  24201. front: {
  24202. height: math.unit(6, "feet"),
  24203. weight: math.unit(150, "lb"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/samuel/front.svg",
  24207. extra: 265 / 258,
  24208. bottom: 2 / 266.1566
  24209. }
  24210. },
  24211. },
  24212. [
  24213. {
  24214. name: "Macro",
  24215. height: math.unit(100, "feet"),
  24216. default: true
  24217. },
  24218. {
  24219. name: "Full Size",
  24220. height: math.unit(1000, "miles")
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24226. {
  24227. front: {
  24228. height: math.unit(6, "feet"),
  24229. weight: math.unit(300, "lb"),
  24230. name: "Front",
  24231. image: {
  24232. source: "./media/characters/beishir-kiel/front.svg",
  24233. extra: 569 / 547,
  24234. bottom: 41.9 / 609
  24235. }
  24236. },
  24237. maw: {
  24238. height: math.unit(6 * 0.202, "feet"),
  24239. name: "Maw",
  24240. image: {
  24241. source: "./media/characters/beishir-kiel/maw.svg"
  24242. }
  24243. },
  24244. },
  24245. [
  24246. {
  24247. name: "Macro",
  24248. height: math.unit(300, "feet"),
  24249. default: true
  24250. },
  24251. ]
  24252. ))
  24253. characterMakers.push(() => makeCharacter(
  24254. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24255. {
  24256. front: {
  24257. height: math.unit(5 + 7/12, "feet"),
  24258. weight: math.unit(120, "lb"),
  24259. name: "Front",
  24260. image: {
  24261. source: "./media/characters/logan-grey/front.svg",
  24262. extra: 1836/1738,
  24263. bottom: 108/1944
  24264. }
  24265. },
  24266. back: {
  24267. height: math.unit(5 + 7/12, "feet"),
  24268. weight: math.unit(120, "lb"),
  24269. name: "Back",
  24270. image: {
  24271. source: "./media/characters/logan-grey/back.svg",
  24272. extra: 1880/1794,
  24273. bottom: 24/1904
  24274. }
  24275. },
  24276. frontSfw: {
  24277. height: math.unit(5 + 7/12, "feet"),
  24278. weight: math.unit(120, "lb"),
  24279. name: "Front (SFW)",
  24280. image: {
  24281. source: "./media/characters/logan-grey/front-sfw.svg",
  24282. extra: 1836/1738,
  24283. bottom: 108/1944
  24284. }
  24285. },
  24286. backSfw: {
  24287. height: math.unit(5 + 7/12, "feet"),
  24288. weight: math.unit(120, "lb"),
  24289. name: "Back (SFW)",
  24290. image: {
  24291. source: "./media/characters/logan-grey/back-sfw.svg",
  24292. extra: 1880/1794,
  24293. bottom: 24/1904
  24294. }
  24295. },
  24296. hands: {
  24297. height: math.unit(0.84, "feet"),
  24298. name: "Hands",
  24299. image: {
  24300. source: "./media/characters/logan-grey/hands.svg"
  24301. }
  24302. },
  24303. paws: {
  24304. height: math.unit(0.72, "feet"),
  24305. name: "Paws",
  24306. image: {
  24307. source: "./media/characters/logan-grey/paws.svg"
  24308. }
  24309. },
  24310. cock: {
  24311. height: math.unit(1.45, "feet"),
  24312. name: "Cock",
  24313. image: {
  24314. source: "./media/characters/logan-grey/cock.svg"
  24315. }
  24316. },
  24317. cockAlt: {
  24318. height: math.unit(1.437, "feet"),
  24319. name: "Cock (alt)",
  24320. image: {
  24321. source: "./media/characters/logan-grey/cock-alt.svg"
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(5 + 8 / 12, "feet")
  24329. },
  24330. {
  24331. name: "The 500 Foot Femboy",
  24332. height: math.unit(500, "feet"),
  24333. default: true
  24334. },
  24335. {
  24336. name: "Megmacro",
  24337. height: math.unit(20, "miles")
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(8 + 2 / 12, "feet"),
  24346. weight: math.unit(275, "lb"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/draganta/front.svg",
  24350. extra: 1177 / 1135,
  24351. bottom: 33.46 / 1212.1
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(8 + 6 / 12, "feet"),
  24359. default: true
  24360. },
  24361. {
  24362. name: "Macro",
  24363. height: math.unit(150, "feet")
  24364. },
  24365. {
  24366. name: "Megamacro",
  24367. height: math.unit(1000, "miles")
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24373. {
  24374. front: {
  24375. height: math.unit(1.72, "m"),
  24376. weight: math.unit(80, "lb"),
  24377. name: "Front",
  24378. image: {
  24379. source: "./media/characters/voski/front.svg",
  24380. extra: 2076.22 / 2022.4,
  24381. bottom: 102.7 / 2177.3866
  24382. }
  24383. },
  24384. frontFlaccid: {
  24385. height: math.unit(1.72, "m"),
  24386. weight: math.unit(80, "lb"),
  24387. name: "Front (Flaccid)",
  24388. image: {
  24389. source: "./media/characters/voski/front-flaccid.svg",
  24390. extra: 2076.22 / 2022.4,
  24391. bottom: 102.7 / 2177.3866
  24392. }
  24393. },
  24394. frontErect: {
  24395. height: math.unit(1.72, "m"),
  24396. weight: math.unit(80, "lb"),
  24397. name: "Front (Erect)",
  24398. image: {
  24399. source: "./media/characters/voski/front-erect.svg",
  24400. extra: 2076.22 / 2022.4,
  24401. bottom: 102.7 / 2177.3866
  24402. }
  24403. },
  24404. back: {
  24405. height: math.unit(1.72, "m"),
  24406. weight: math.unit(80, "lb"),
  24407. name: "Back",
  24408. image: {
  24409. source: "./media/characters/voski/back.svg",
  24410. extra: 2104 / 2051,
  24411. bottom: 10.45 / 2113.63
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(1.72, "m")
  24419. },
  24420. {
  24421. name: "Macro",
  24422. height: math.unit(55, "m"),
  24423. default: true
  24424. },
  24425. {
  24426. name: "Macro+",
  24427. height: math.unit(300, "m")
  24428. },
  24429. {
  24430. name: "Macro++",
  24431. height: math.unit(700, "m")
  24432. },
  24433. {
  24434. name: "Macro+++",
  24435. height: math.unit(4500, "m")
  24436. },
  24437. {
  24438. name: "Macro++++",
  24439. height: math.unit(45, "km")
  24440. },
  24441. {
  24442. name: "Macro+++++",
  24443. height: math.unit(1220, "km")
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24449. {
  24450. front: {
  24451. height: math.unit(2.3, "m"),
  24452. weight: math.unit(304, "kg"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/icowom-lee/front.svg",
  24456. extra: 985 / 955,
  24457. bottom: 25.4 / 1012
  24458. }
  24459. },
  24460. fronttentacles: {
  24461. height: math.unit(2.3, "m"),
  24462. weight: math.unit(304, "kg"),
  24463. name: "Front-tentacles",
  24464. image: {
  24465. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24466. extra: 985 / 955,
  24467. bottom: 25.4 / 1012
  24468. }
  24469. },
  24470. back: {
  24471. height: math.unit(2.3, "m"),
  24472. weight: math.unit(304, "kg"),
  24473. name: "Back",
  24474. image: {
  24475. source: "./media/characters/icowom-lee/back.svg",
  24476. extra: 975 / 954,
  24477. bottom: 9.5 / 985
  24478. }
  24479. },
  24480. backtentacles: {
  24481. height: math.unit(2.3, "m"),
  24482. weight: math.unit(304, "kg"),
  24483. name: "Back-tentacles",
  24484. image: {
  24485. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24486. extra: 975 / 954,
  24487. bottom: 9.5 / 985
  24488. }
  24489. },
  24490. frontDressed: {
  24491. height: math.unit(2.3, "m"),
  24492. weight: math.unit(304, "kg"),
  24493. name: "Front (Dressed)",
  24494. image: {
  24495. source: "./media/characters/icowom-lee/front-dressed.svg",
  24496. extra: 3076 / 2933,
  24497. bottom: 51.4 / 3125.1889
  24498. }
  24499. },
  24500. rump: {
  24501. height: math.unit(0.776, "meters"),
  24502. name: "Rump",
  24503. image: {
  24504. source: "./media/characters/icowom-lee/rump.svg"
  24505. }
  24506. },
  24507. genitals: {
  24508. height: math.unit(0.78, "meters"),
  24509. name: "Genitals",
  24510. image: {
  24511. source: "./media/characters/icowom-lee/genitals.svg"
  24512. }
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Normal",
  24518. height: math.unit(2.3, "meters"),
  24519. default: true
  24520. },
  24521. {
  24522. name: "Macro",
  24523. height: math.unit(94, "meters"),
  24524. default: true
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(22, "meters"),
  24533. weight: math.unit(21000, "kg"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/shock-diamond/front.svg",
  24537. extra: 2204 / 2053,
  24538. bottom: 65 / 2239.47
  24539. }
  24540. },
  24541. frontNude: {
  24542. height: math.unit(22, "meters"),
  24543. weight: math.unit(21000, "kg"),
  24544. name: "Front (Nude)",
  24545. image: {
  24546. source: "./media/characters/shock-diamond/front-nude.svg",
  24547. extra: 2514 / 2285,
  24548. bottom: 13 / 2527.56
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Normal",
  24555. height: math.unit(3, "meters")
  24556. },
  24557. {
  24558. name: "Macro",
  24559. height: math.unit(22, "meters"),
  24560. default: true
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24566. {
  24567. frontNsfw: {
  24568. height: math.unit(5 + 4/12, "feet"),
  24569. weight: math.unit(195, "lb"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/rory/front.svg",
  24573. extra: 1220/1100,
  24574. bottom: 103/1323
  24575. }
  24576. },
  24577. back: {
  24578. height: math.unit(5 + 4/12, "feet"),
  24579. weight: math.unit(195, "lb"),
  24580. name: "Back",
  24581. image: {
  24582. source: "./media/characters/rory/back.svg",
  24583. extra: 1166/1086,
  24584. bottom: 35/1201
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Micro",
  24591. height: math.unit(3, "inches")
  24592. },
  24593. {
  24594. name: "Normal",
  24595. height: math.unit(5 + 4/12, "feet"),
  24596. default: true
  24597. },
  24598. {
  24599. name: "Macro",
  24600. height: math.unit(90, "feet")
  24601. },
  24602. {
  24603. name: "Supercharged",
  24604. height: math.unit(270, "feet")
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(5 + 9 / 12, "feet"),
  24613. weight: math.unit(190, "lb"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/sprisk/front.svg",
  24617. extra: 1225 / 1180,
  24618. bottom: 42.7 / 1266.4
  24619. }
  24620. },
  24621. frontNsfw: {
  24622. height: math.unit(5 + 9 / 12, "feet"),
  24623. weight: math.unit(190, "lb"),
  24624. name: "Front (NSFW)",
  24625. image: {
  24626. source: "./media/characters/sprisk/front-nsfw.svg",
  24627. extra: 1225 / 1180,
  24628. bottom: 42.7 / 1266.4
  24629. }
  24630. },
  24631. back: {
  24632. height: math.unit(5 + 9 / 12, "feet"),
  24633. weight: math.unit(190, "lb"),
  24634. name: "Back",
  24635. image: {
  24636. source: "./media/characters/sprisk/back.svg",
  24637. extra: 1247 / 1200,
  24638. bottom: 5.6 / 1253.04
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Tiny",
  24645. height: math.unit(2, "inches")
  24646. },
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(5 + 9 / 12, "feet"),
  24650. default: true
  24651. },
  24652. {
  24653. name: "Mini Macro",
  24654. height: math.unit(18, "feet")
  24655. },
  24656. {
  24657. name: "Macro",
  24658. height: math.unit(100, "feet")
  24659. },
  24660. {
  24661. name: "MACRO",
  24662. height: math.unit(50, "miles")
  24663. },
  24664. {
  24665. name: "M A C R O",
  24666. height: math.unit(300, "miles")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24672. {
  24673. side: {
  24674. height: math.unit(15.6, "meters"),
  24675. weight: math.unit(700000, "kg"),
  24676. name: "Side",
  24677. image: {
  24678. source: "./media/characters/bunsen/side.svg",
  24679. extra: 1644 / 358
  24680. }
  24681. },
  24682. foot: {
  24683. height: math.unit(1.611 * 1644 / 358, "meter"),
  24684. name: "Foot",
  24685. image: {
  24686. source: "./media/characters/bunsen/foot.svg"
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Small",
  24693. height: math.unit(10, "feet")
  24694. },
  24695. {
  24696. name: "Normal",
  24697. height: math.unit(15.6, "meters"),
  24698. default: true
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24704. {
  24705. front: {
  24706. height: math.unit(4 + 11 / 12, "feet"),
  24707. weight: math.unit(140, "lb"),
  24708. name: "Front",
  24709. image: {
  24710. source: "./media/characters/sesh/front.svg",
  24711. extra: 3420 / 3231,
  24712. bottom: 72 / 3949.5
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Normal",
  24719. height: math.unit(4 + 11 / 12, "feet")
  24720. },
  24721. {
  24722. name: "Grown",
  24723. height: math.unit(15, "feet"),
  24724. default: true
  24725. },
  24726. {
  24727. name: "Macro",
  24728. height: math.unit(1500, "feet")
  24729. },
  24730. {
  24731. name: "Megamacro",
  24732. height: math.unit(30, "miles")
  24733. },
  24734. {
  24735. name: "Continental",
  24736. height: math.unit(3000, "miles")
  24737. },
  24738. {
  24739. name: "Gravity Mass",
  24740. height: math.unit(300000, "miles")
  24741. },
  24742. {
  24743. name: "Planet Buster",
  24744. height: math.unit(30000000, "miles")
  24745. },
  24746. {
  24747. name: "Big",
  24748. height: math.unit(3000000000, "miles")
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24754. {
  24755. front: {
  24756. height: math.unit(9, "feet"),
  24757. weight: math.unit(350, "lb"),
  24758. name: "Front",
  24759. image: {
  24760. source: "./media/characters/pepper/front.svg",
  24761. extra: 1448 / 1312,
  24762. bottom: 9.4 / 1457.88
  24763. }
  24764. },
  24765. back: {
  24766. height: math.unit(9, "feet"),
  24767. weight: math.unit(350, "lb"),
  24768. name: "Back",
  24769. image: {
  24770. source: "./media/characters/pepper/back.svg",
  24771. extra: 1423 / 1300,
  24772. bottom: 4.6 / 1429
  24773. }
  24774. },
  24775. maw: {
  24776. height: math.unit(0.932, "feet"),
  24777. name: "Maw",
  24778. image: {
  24779. source: "./media/characters/pepper/maw.svg"
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Normal",
  24786. height: math.unit(9, "feet"),
  24787. default: true
  24788. },
  24789. ]
  24790. ))
  24791. characterMakers.push(() => makeCharacter(
  24792. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24793. {
  24794. front: {
  24795. height: math.unit(6, "feet"),
  24796. weight: math.unit(150, "lb"),
  24797. name: "Front",
  24798. image: {
  24799. source: "./media/characters/maelstrom/front.svg",
  24800. extra: 2100 / 1883,
  24801. bottom: 94 / 2196.7
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Less Kaiju",
  24808. height: math.unit(200, "feet")
  24809. },
  24810. {
  24811. name: "Kaiju",
  24812. height: math.unit(400, "feet"),
  24813. default: true
  24814. },
  24815. {
  24816. name: "Kaiju-er",
  24817. height: math.unit(600, "feet")
  24818. },
  24819. ]
  24820. ))
  24821. characterMakers.push(() => makeCharacter(
  24822. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24823. {
  24824. front: {
  24825. height: math.unit(6 + 5 / 12, "feet"),
  24826. weight: math.unit(180, "lb"),
  24827. name: "Front",
  24828. image: {
  24829. source: "./media/characters/lexir/front.svg",
  24830. extra: 180 / 172,
  24831. bottom: 12 / 192
  24832. }
  24833. },
  24834. back: {
  24835. height: math.unit(6 + 5 / 12, "feet"),
  24836. weight: math.unit(180, "lb"),
  24837. name: "Back",
  24838. image: {
  24839. source: "./media/characters/lexir/back.svg",
  24840. extra: 1273/1201,
  24841. bottom: 39/1312
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Very Smal",
  24848. height: math.unit(1, "nm")
  24849. },
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(6 + 5 / 12, "feet"),
  24853. default: true
  24854. },
  24855. {
  24856. name: "Macro",
  24857. height: math.unit(1, "mile")
  24858. },
  24859. {
  24860. name: "Megamacro",
  24861. height: math.unit(50, "miles")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(1.5, "meters"),
  24870. weight: math.unit(100, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/maksio/front.svg",
  24874. extra: 1549 / 1531,
  24875. bottom: 123.7 / 1674.5429
  24876. }
  24877. },
  24878. back: {
  24879. height: math.unit(1.5, "meters"),
  24880. weight: math.unit(100, "lb"),
  24881. name: "Back",
  24882. image: {
  24883. source: "./media/characters/maksio/back.svg",
  24884. extra: 1541 / 1509,
  24885. bottom: 97 / 1639
  24886. }
  24887. },
  24888. hand: {
  24889. height: math.unit(0.621, "feet"),
  24890. name: "Hand",
  24891. image: {
  24892. source: "./media/characters/maksio/hand.svg"
  24893. }
  24894. },
  24895. foot: {
  24896. height: math.unit(1.611, "feet"),
  24897. name: "Foot",
  24898. image: {
  24899. source: "./media/characters/maksio/foot.svg"
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Shrunken",
  24906. height: math.unit(10, "cm")
  24907. },
  24908. {
  24909. name: "Normal",
  24910. height: math.unit(150, "cm"),
  24911. default: true
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24917. {
  24918. front: {
  24919. height: math.unit(100, "feet"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/erza-bear/front.svg",
  24923. extra: 2449 / 2390,
  24924. bottom: 46 / 2494
  24925. }
  24926. },
  24927. back: {
  24928. height: math.unit(100, "feet"),
  24929. name: "Back",
  24930. image: {
  24931. source: "./media/characters/erza-bear/back.svg",
  24932. extra: 2489 / 2430,
  24933. bottom: 85.4 / 2480
  24934. }
  24935. },
  24936. tail: {
  24937. height: math.unit(42, "feet"),
  24938. name: "Tail",
  24939. image: {
  24940. source: "./media/characters/erza-bear/tail.svg"
  24941. }
  24942. },
  24943. tongue: {
  24944. height: math.unit(8, "feet"),
  24945. name: "Tongue",
  24946. image: {
  24947. source: "./media/characters/erza-bear/tongue.svg"
  24948. }
  24949. },
  24950. dick: {
  24951. height: math.unit(10.5, "feet"),
  24952. name: "Dick",
  24953. image: {
  24954. source: "./media/characters/erza-bear/dick.svg"
  24955. }
  24956. },
  24957. dickVertical: {
  24958. height: math.unit(16.9, "feet"),
  24959. name: "Dick (Vertical)",
  24960. image: {
  24961. source: "./media/characters/erza-bear/dick-vertical.svg"
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Macro",
  24968. height: math.unit(100, "feet"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(172, "cm"),
  24978. weight: math.unit(73, "kg"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/violet-flor/front.svg",
  24982. extra: 1530 / 1442,
  24983. bottom: 61.9 / 1588.8
  24984. }
  24985. },
  24986. back: {
  24987. height: math.unit(180, "cm"),
  24988. weight: math.unit(73, "kg"),
  24989. name: "Back",
  24990. image: {
  24991. source: "./media/characters/violet-flor/back.svg",
  24992. extra: 1692 / 1630,
  24993. bottom: 20 / 1712
  24994. }
  24995. },
  24996. },
  24997. [
  24998. {
  24999. name: "Normal",
  25000. height: math.unit(172, "cm"),
  25001. default: true
  25002. },
  25003. ]
  25004. ))
  25005. characterMakers.push(() => makeCharacter(
  25006. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25007. {
  25008. front: {
  25009. height: math.unit(6, "feet"),
  25010. weight: math.unit(220, "lb"),
  25011. name: "Front",
  25012. image: {
  25013. source: "./media/characters/lynn-rhea/front.svg",
  25014. extra: 310 / 273
  25015. }
  25016. },
  25017. back: {
  25018. height: math.unit(6, "feet"),
  25019. weight: math.unit(220, "lb"),
  25020. name: "Back",
  25021. image: {
  25022. source: "./media/characters/lynn-rhea/back.svg",
  25023. extra: 310 / 273
  25024. }
  25025. },
  25026. dicks: {
  25027. height: math.unit(0.9, "feet"),
  25028. name: "Dicks",
  25029. image: {
  25030. source: "./media/characters/lynn-rhea/dicks.svg"
  25031. }
  25032. },
  25033. slit: {
  25034. height: math.unit(0.4, "feet"),
  25035. name: "Slit",
  25036. image: {
  25037. source: "./media/characters/lynn-rhea/slit.svg"
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Micro",
  25044. height: math.unit(1, "inch")
  25045. },
  25046. {
  25047. name: "Macro",
  25048. height: math.unit(60, "feet"),
  25049. default: true
  25050. },
  25051. {
  25052. name: "Megamacro",
  25053. height: math.unit(2, "miles")
  25054. },
  25055. {
  25056. name: "Gigamacro",
  25057. height: math.unit(3, "earths")
  25058. },
  25059. {
  25060. name: "Galactic",
  25061. height: math.unit(0.8, "galaxies")
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25067. {
  25068. front: {
  25069. height: math.unit(1600, "feet"),
  25070. weight: math.unit(85758785169, "kg"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/valathos/front.svg",
  25074. extra: 1451 / 1339
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Macro",
  25081. height: math.unit(1600, "feet"),
  25082. default: true
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(7 + 5 / 12, "feet"),
  25091. weight: math.unit(300, "lb"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/azula/front.svg",
  25095. extra: 3208 / 2880,
  25096. bottom: 80.2 / 3277
  25097. }
  25098. },
  25099. back: {
  25100. height: math.unit(7 + 5 / 12, "feet"),
  25101. weight: math.unit(300, "lb"),
  25102. name: "Back",
  25103. image: {
  25104. source: "./media/characters/azula/back.svg",
  25105. extra: 3169 / 2822,
  25106. bottom: 150.6 / 3321
  25107. }
  25108. },
  25109. },
  25110. [
  25111. {
  25112. name: "Normal",
  25113. height: math.unit(7 + 5 / 12, "feet"),
  25114. default: true
  25115. },
  25116. {
  25117. name: "Big",
  25118. height: math.unit(20, "feet")
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25124. {
  25125. front: {
  25126. height: math.unit(5 + 1 / 12, "feet"),
  25127. weight: math.unit(110, "lb"),
  25128. name: "Front",
  25129. image: {
  25130. source: "./media/characters/rupert/front.svg",
  25131. extra: 1549 / 1495,
  25132. bottom: 54.2 / 1604.4
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(5 + 1 / 12, "feet"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25146. {
  25147. front: {
  25148. height: math.unit(8 + 4 / 12, "feet"),
  25149. weight: math.unit(350, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/sheera-castellar/front.svg",
  25153. extra: 1957 / 1894,
  25154. bottom: 26.97 / 1975.017
  25155. }
  25156. },
  25157. side: {
  25158. height: math.unit(8 + 4 / 12, "feet"),
  25159. weight: math.unit(350, "lb"),
  25160. name: "Side",
  25161. image: {
  25162. source: "./media/characters/sheera-castellar/side.svg",
  25163. extra: 1957 / 1894
  25164. }
  25165. },
  25166. back: {
  25167. height: math.unit(8 + 4 / 12, "feet"),
  25168. weight: math.unit(350, "lb"),
  25169. name: "Back",
  25170. image: {
  25171. source: "./media/characters/sheera-castellar/back.svg",
  25172. extra: 1957 / 1894
  25173. }
  25174. },
  25175. angled: {
  25176. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25177. weight: math.unit(350, "lb"),
  25178. name: "Angled",
  25179. image: {
  25180. source: "./media/characters/sheera-castellar/angled.svg",
  25181. extra: 1807 / 1707,
  25182. bottom: 68 / 1875
  25183. }
  25184. },
  25185. genitals: {
  25186. height: math.unit(2.2, "feet"),
  25187. name: "Genitals",
  25188. image: {
  25189. source: "./media/characters/sheera-castellar/genitals.svg"
  25190. }
  25191. },
  25192. taur: {
  25193. height: math.unit(10 + 6/12, "feet"),
  25194. name: "Taur",
  25195. image: {
  25196. source: "./media/characters/sheera-castellar/taur.svg",
  25197. extra: 2017/1909,
  25198. bottom: 185/2202
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(8 + 4 / 12, "feet")
  25206. },
  25207. {
  25208. name: "Macro",
  25209. height: math.unit(150, "feet"),
  25210. default: true
  25211. },
  25212. {
  25213. name: "Macro+",
  25214. height: math.unit(800, "feet")
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25220. {
  25221. front: {
  25222. height: math.unit(6, "feet"),
  25223. weight: math.unit(150, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/jaipur/front.svg",
  25227. extra: 3860 / 3731,
  25228. bottom: 287 / 4140
  25229. }
  25230. },
  25231. back: {
  25232. height: math.unit(6, "feet"),
  25233. weight: math.unit(150, "lb"),
  25234. name: "Back",
  25235. image: {
  25236. source: "./media/characters/jaipur/back.svg",
  25237. extra: 1637/1561,
  25238. bottom: 154/1791
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(1.85, "meters"),
  25246. default: true
  25247. },
  25248. {
  25249. name: "Macro",
  25250. height: math.unit(150, "meters")
  25251. },
  25252. {
  25253. name: "Macro+",
  25254. height: math.unit(0.5, "miles")
  25255. },
  25256. {
  25257. name: "Macro++",
  25258. height: math.unit(2.5, "miles")
  25259. },
  25260. {
  25261. name: "Macro+++",
  25262. height: math.unit(12, "miles")
  25263. },
  25264. {
  25265. name: "Macro++++",
  25266. height: math.unit(120, "miles")
  25267. },
  25268. {
  25269. name: "Macro+++++",
  25270. height: math.unit(1200, "miles")
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25276. {
  25277. front: {
  25278. height: math.unit(6, "feet"),
  25279. weight: math.unit(150, "lb"),
  25280. name: "Front",
  25281. image: {
  25282. source: "./media/characters/sheila-wolf/front.svg",
  25283. extra: 1931 / 1808,
  25284. bottom: 29.5 / 1960
  25285. }
  25286. },
  25287. dick: {
  25288. height: math.unit(1.464, "feet"),
  25289. name: "Dick",
  25290. image: {
  25291. source: "./media/characters/sheila-wolf/dick.svg"
  25292. }
  25293. },
  25294. muzzle: {
  25295. height: math.unit(0.513, "feet"),
  25296. name: "Muzzle",
  25297. image: {
  25298. source: "./media/characters/sheila-wolf/muzzle.svg"
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Macro",
  25305. height: math.unit(70, "feet"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(32, "meters"),
  25315. weight: math.unit(300000, "kg"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/almor/front.svg",
  25319. extra: 1408 / 1322,
  25320. bottom: 94.6 / 1506.5
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Macro",
  25327. height: math.unit(32, "meters"),
  25328. default: true
  25329. },
  25330. ]
  25331. ))
  25332. characterMakers.push(() => makeCharacter(
  25333. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25334. {
  25335. front: {
  25336. height: math.unit(7, "feet"),
  25337. weight: math.unit(200, "lb"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/silver/front.svg",
  25341. extra: 472.1 / 450.5,
  25342. bottom: 26.5 / 499.424
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(7, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Macro",
  25354. height: math.unit(800, "feet")
  25355. },
  25356. {
  25357. name: "Megamacro",
  25358. height: math.unit(250, "miles")
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25364. {
  25365. front: {
  25366. height: math.unit(6, "feet"),
  25367. weight: math.unit(150, "lb"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/pliskin/front.svg",
  25371. extra: 1469 / 1359,
  25372. bottom: 70 / 1540
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Micro",
  25379. height: math.unit(3, "inches")
  25380. },
  25381. {
  25382. name: "Normal",
  25383. height: math.unit(5 + 11 / 12, "feet"),
  25384. default: true
  25385. },
  25386. {
  25387. name: "Macro",
  25388. height: math.unit(120, "feet")
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25394. {
  25395. front: {
  25396. height: math.unit(6, "feet"),
  25397. weight: math.unit(150, "lb"),
  25398. name: "Front",
  25399. image: {
  25400. source: "./media/characters/sammy/front.svg",
  25401. extra: 1193 / 1089,
  25402. bottom: 30.5 / 1226
  25403. }
  25404. },
  25405. },
  25406. [
  25407. {
  25408. name: "Macro",
  25409. height: math.unit(1700, "feet"),
  25410. default: true
  25411. },
  25412. {
  25413. name: "Examacro",
  25414. height: math.unit(2.5e9, "lightyears")
  25415. },
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(21, "meters"),
  25423. weight: math.unit(12, "tonnes"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/kuru/front.svg",
  25427. extra: 4301 / 3785,
  25428. bottom: 371.3 / 4691
  25429. }
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Macro",
  25435. height: math.unit(21, "meters"),
  25436. default: true
  25437. },
  25438. ]
  25439. ))
  25440. characterMakers.push(() => makeCharacter(
  25441. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25442. {
  25443. front: {
  25444. height: math.unit(23, "meters"),
  25445. weight: math.unit(12.2, "tonnes"),
  25446. name: "Front",
  25447. image: {
  25448. source: "./media/characters/rakka/front.svg",
  25449. extra: 4670 / 4169,
  25450. bottom: 301 / 4968.7
  25451. }
  25452. },
  25453. },
  25454. [
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(23, "meters"),
  25458. default: true
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25464. {
  25465. front: {
  25466. height: math.unit(6, "feet"),
  25467. weight: math.unit(150, "lb"),
  25468. name: "Front",
  25469. image: {
  25470. source: "./media/characters/rhys-feline/front.svg",
  25471. extra: 2488 / 2308,
  25472. bottom: 35.67 / 2519.19
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Really Small",
  25479. height: math.unit(1, "nm")
  25480. },
  25481. {
  25482. name: "Micro",
  25483. height: math.unit(4, "inches")
  25484. },
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(4 + 10 / 12, "feet"),
  25488. default: true
  25489. },
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(100, "feet")
  25493. },
  25494. {
  25495. name: "Megamacto",
  25496. height: math.unit(50, "miles")
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25502. {
  25503. side: {
  25504. height: math.unit(30, "feet"),
  25505. weight: math.unit(35000, "kg"),
  25506. name: "Side",
  25507. image: {
  25508. source: "./media/characters/alydar/side.svg",
  25509. extra: 234 / 222,
  25510. bottom: 6.5 / 241
  25511. }
  25512. },
  25513. front: {
  25514. height: math.unit(30, "feet"),
  25515. weight: math.unit(35000, "kg"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/alydar/front.svg",
  25519. extra: 223.37 / 210.2,
  25520. bottom: 22.3 / 246.76
  25521. }
  25522. },
  25523. top: {
  25524. height: math.unit(64.54, "feet"),
  25525. weight: math.unit(35000, "kg"),
  25526. name: "Top",
  25527. image: {
  25528. source: "./media/characters/alydar/top.svg"
  25529. }
  25530. },
  25531. anthro: {
  25532. height: math.unit(30, "feet"),
  25533. weight: math.unit(9000, "kg"),
  25534. name: "Anthro",
  25535. image: {
  25536. source: "./media/characters/alydar/anthro.svg",
  25537. extra: 432 / 421,
  25538. bottom: 7.18 / 440
  25539. }
  25540. },
  25541. maw: {
  25542. height: math.unit(11.693, "feet"),
  25543. name: "Maw",
  25544. image: {
  25545. source: "./media/characters/alydar/maw.svg"
  25546. }
  25547. },
  25548. head: {
  25549. height: math.unit(11.693, "feet"),
  25550. name: "Head",
  25551. image: {
  25552. source: "./media/characters/alydar/head.svg"
  25553. }
  25554. },
  25555. headAlt: {
  25556. height: math.unit(12.861, "feet"),
  25557. name: "Head (Alt)",
  25558. image: {
  25559. source: "./media/characters/alydar/head-alt.svg"
  25560. }
  25561. },
  25562. wing: {
  25563. height: math.unit(20.712, "feet"),
  25564. name: "Wing",
  25565. image: {
  25566. source: "./media/characters/alydar/wing.svg"
  25567. }
  25568. },
  25569. wingFeather: {
  25570. height: math.unit(9.662, "feet"),
  25571. name: "Wing Feather",
  25572. image: {
  25573. source: "./media/characters/alydar/wing-feather.svg"
  25574. }
  25575. },
  25576. countourFeather: {
  25577. height: math.unit(4.154, "feet"),
  25578. name: "Contour Feather",
  25579. image: {
  25580. source: "./media/characters/alydar/contour-feather.svg"
  25581. }
  25582. },
  25583. },
  25584. [
  25585. {
  25586. name: "Diplomatic",
  25587. height: math.unit(13, "feet"),
  25588. default: true
  25589. },
  25590. {
  25591. name: "Small",
  25592. height: math.unit(30, "feet")
  25593. },
  25594. {
  25595. name: "Normal",
  25596. height: math.unit(95, "feet"),
  25597. default: true
  25598. },
  25599. {
  25600. name: "Large",
  25601. height: math.unit(285, "feet")
  25602. },
  25603. {
  25604. name: "Incomprehensible",
  25605. height: math.unit(450, "megameters")
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25611. {
  25612. side: {
  25613. height: math.unit(11, "feet"),
  25614. weight: math.unit(1750, "kg"),
  25615. name: "Side",
  25616. image: {
  25617. source: "./media/characters/selicia/side.svg",
  25618. extra: 440 / 396,
  25619. bottom: 24.8 / 465.979
  25620. }
  25621. },
  25622. maw: {
  25623. height: math.unit(4.665, "feet"),
  25624. name: "Maw",
  25625. image: {
  25626. source: "./media/characters/selicia/maw.svg"
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(11, "feet"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25640. {
  25641. side: {
  25642. height: math.unit(2 + 6 / 12, "feet"),
  25643. weight: math.unit(30, "lb"),
  25644. name: "Side",
  25645. image: {
  25646. source: "./media/characters/layla/side.svg",
  25647. extra: 244 / 188,
  25648. bottom: 18.2 / 262.1
  25649. }
  25650. },
  25651. back: {
  25652. height: math.unit(2 + 6 / 12, "feet"),
  25653. weight: math.unit(30, "lb"),
  25654. name: "Back",
  25655. image: {
  25656. source: "./media/characters/layla/back.svg",
  25657. extra: 308 / 241.5,
  25658. bottom: 8.9 / 316.8
  25659. }
  25660. },
  25661. cumming: {
  25662. height: math.unit(2 + 6 / 12, "feet"),
  25663. weight: math.unit(30, "lb"),
  25664. name: "Cumming",
  25665. image: {
  25666. source: "./media/characters/layla/cumming.svg",
  25667. extra: 342 / 279,
  25668. bottom: 595 / 938
  25669. }
  25670. },
  25671. dickFlaccid: {
  25672. height: math.unit(2.595, "feet"),
  25673. name: "Flaccid Genitals",
  25674. image: {
  25675. source: "./media/characters/layla/dick-flaccid.svg"
  25676. }
  25677. },
  25678. dickErect: {
  25679. height: math.unit(2.359, "feet"),
  25680. name: "Erect Genitals",
  25681. image: {
  25682. source: "./media/characters/layla/dick-erect.svg"
  25683. }
  25684. },
  25685. dragon: {
  25686. height: math.unit(40, "feet"),
  25687. name: "Dragon",
  25688. image: {
  25689. source: "./media/characters/layla/dragon.svg",
  25690. extra: 610/535,
  25691. bottom: 367/977
  25692. }
  25693. },
  25694. taur: {
  25695. height: math.unit(30, "feet"),
  25696. name: "Taur",
  25697. image: {
  25698. source: "./media/characters/layla/taur.svg",
  25699. extra: 1268/1199,
  25700. bottom: 112/1380
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Micro",
  25707. height: math.unit(1, "inch")
  25708. },
  25709. {
  25710. name: "Small",
  25711. height: math.unit(1, "foot")
  25712. },
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(2 + 6 / 12, "feet"),
  25716. default: true
  25717. },
  25718. {
  25719. name: "Macro",
  25720. height: math.unit(200, "feet")
  25721. },
  25722. {
  25723. name: "Megamacro",
  25724. height: math.unit(1000, "miles")
  25725. },
  25726. {
  25727. name: "Planetary",
  25728. height: math.unit(8000, "miles")
  25729. },
  25730. {
  25731. name: "True Layla",
  25732. height: math.unit(200000 * 7, "multiverses")
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25738. {
  25739. back: {
  25740. height: math.unit(10.5, "feet"),
  25741. weight: math.unit(800, "lb"),
  25742. name: "Back",
  25743. image: {
  25744. source: "./media/characters/knox/back.svg",
  25745. extra: 1486 / 1089,
  25746. bottom: 107 / 1601.4
  25747. }
  25748. },
  25749. side: {
  25750. height: math.unit(10.5, "feet"),
  25751. weight: math.unit(800, "lb"),
  25752. name: "Side",
  25753. image: {
  25754. source: "./media/characters/knox/side.svg",
  25755. extra: 244 / 218,
  25756. bottom: 14 / 260
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Compact",
  25763. height: math.unit(10.5, "feet"),
  25764. default: true
  25765. },
  25766. {
  25767. name: "Dynamax",
  25768. height: math.unit(210, "feet")
  25769. },
  25770. {
  25771. name: "Full Macro",
  25772. height: math.unit(850, "feet")
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(28, "feet"),
  25781. weight: math.unit(10500, "lb"),
  25782. name: "Front",
  25783. image: {
  25784. source: "./media/characters/kayda/front.svg",
  25785. extra: 1536 / 1428,
  25786. bottom: 68.7 / 1603
  25787. }
  25788. },
  25789. back: {
  25790. height: math.unit(28, "feet"),
  25791. weight: math.unit(10500, "lb"),
  25792. name: "Back",
  25793. image: {
  25794. source: "./media/characters/kayda/back.svg",
  25795. extra: 1557 / 1464,
  25796. bottom: 39.5 / 1597.49
  25797. }
  25798. },
  25799. dick: {
  25800. height: math.unit(3.858, "feet"),
  25801. name: "Dick",
  25802. image: {
  25803. source: "./media/characters/kayda/dick.svg"
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Macro",
  25810. height: math.unit(28, "feet"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25817. {
  25818. front: {
  25819. height: math.unit(10 + 11 / 12, "feet"),
  25820. weight: math.unit(1400, "lb"),
  25821. name: "Front",
  25822. image: {
  25823. source: "./media/characters/brian/front.svg",
  25824. extra: 737 / 692,
  25825. bottom: 55.4 / 785
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Normal",
  25832. height: math.unit(10 + 11 / 12, "feet"),
  25833. default: true
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25839. {
  25840. front: {
  25841. height: math.unit(5 + 8 / 12, "feet"),
  25842. weight: math.unit(140, "lb"),
  25843. name: "Front",
  25844. image: {
  25845. source: "./media/characters/khemri/front.svg",
  25846. extra: 4780 / 4059,
  25847. bottom: 80.1 / 4859.25
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Micro",
  25854. height: math.unit(6, "inches")
  25855. },
  25856. {
  25857. name: "Normal",
  25858. height: math.unit(5 + 8 / 12, "feet"),
  25859. default: true
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25865. {
  25866. front: {
  25867. height: math.unit(13, "feet"),
  25868. weight: math.unit(1700, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/felix-braveheart/front.svg",
  25872. extra: 1222 / 1157,
  25873. bottom: 53.2 / 1280
  25874. }
  25875. },
  25876. back: {
  25877. height: math.unit(13, "feet"),
  25878. weight: math.unit(1700, "lb"),
  25879. name: "Back",
  25880. image: {
  25881. source: "./media/characters/felix-braveheart/back.svg",
  25882. extra: 1277 / 1203,
  25883. bottom: 50.2 / 1327
  25884. }
  25885. },
  25886. feral: {
  25887. height: math.unit(6, "feet"),
  25888. weight: math.unit(400, "lb"),
  25889. name: "Feral",
  25890. image: {
  25891. source: "./media/characters/felix-braveheart/feral.svg",
  25892. extra: 682 / 625,
  25893. bottom: 6.9 / 688
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Normal",
  25900. height: math.unit(13, "feet"),
  25901. default: true
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25907. {
  25908. side: {
  25909. height: math.unit(5 + 11 / 12, "feet"),
  25910. weight: math.unit(1400, "lb"),
  25911. name: "Side",
  25912. image: {
  25913. source: "./media/characters/shadow-blade/side.svg",
  25914. extra: 1726 / 1267,
  25915. bottom: 58.4 / 1785
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Normal",
  25922. height: math.unit(5 + 11 / 12, "feet"),
  25923. default: true
  25924. },
  25925. ]
  25926. ))
  25927. characterMakers.push(() => makeCharacter(
  25928. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25929. {
  25930. front: {
  25931. height: math.unit(1 + 6 / 12, "feet"),
  25932. weight: math.unit(25, "lb"),
  25933. name: "Front",
  25934. image: {
  25935. source: "./media/characters/karla-halldor/front.svg",
  25936. extra: 1459 / 1383,
  25937. bottom: 12 / 1472
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(1 + 6 / 12, "feet"),
  25945. default: true
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(6 + 2 / 12, "feet"),
  25954. weight: math.unit(160, "lb"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/ariam/front.svg",
  25958. extra: 1073/976,
  25959. bottom: 52/1125
  25960. }
  25961. },
  25962. back: {
  25963. height: math.unit(6 + 2/12, "feet"),
  25964. weight: math.unit(160, "lb"),
  25965. name: "Back",
  25966. image: {
  25967. source: "./media/characters/ariam/back.svg",
  25968. extra: 1103/1023,
  25969. bottom: 9/1112
  25970. }
  25971. },
  25972. dressed: {
  25973. height: math.unit(6 + 2/12, "feet"),
  25974. weight: math.unit(160, "lb"),
  25975. name: "Dressed",
  25976. image: {
  25977. source: "./media/characters/ariam/dressed.svg",
  25978. extra: 1099/1009,
  25979. bottom: 25/1124
  25980. }
  25981. },
  25982. squatting: {
  25983. height: math.unit(4.1, "feet"),
  25984. weight: math.unit(160, "lb"),
  25985. name: "Squatting",
  25986. image: {
  25987. source: "./media/characters/ariam/squatting.svg",
  25988. extra: 2617 / 2112,
  25989. bottom: 61.2 / 2681,
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(6 + 2 / 12, "feet"),
  25997. default: true
  25998. },
  25999. {
  26000. name: "Normal+",
  26001. height: math.unit(4, "meters")
  26002. },
  26003. {
  26004. name: "Macro",
  26005. height: math.unit(50, "meters")
  26006. },
  26007. {
  26008. name: "Macro+",
  26009. height: math.unit(100, "meters")
  26010. },
  26011. {
  26012. name: "Megamacro",
  26013. height: math.unit(20, "km")
  26014. },
  26015. {
  26016. name: "Caretaker",
  26017. height: math.unit(444, "megameters")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(1.67, "meters"),
  26026. weight: math.unit(140, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26030. extra: 438 / 410,
  26031. bottom: 0.75 / 439
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Shrunken",
  26038. height: math.unit(7.6, "cm")
  26039. },
  26040. {
  26041. name: "Human Scale",
  26042. height: math.unit(1.67, "meters")
  26043. },
  26044. {
  26045. name: "Wolxi Scale",
  26046. height: math.unit(36.7, "meters"),
  26047. default: true
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(1.73, "meters"),
  26056. weight: math.unit(240, "lb"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/izue-two-mothers/front.svg",
  26060. extra: 469 / 437,
  26061. bottom: 1.24 / 470.6
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Shrunken",
  26068. height: math.unit(7.86, "cm")
  26069. },
  26070. {
  26071. name: "Human Scale",
  26072. height: math.unit(1.73, "meters")
  26073. },
  26074. {
  26075. name: "Wolxi Scale",
  26076. height: math.unit(38, "meters"),
  26077. default: true
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(1.55, "meters"),
  26086. weight: math.unit(120, "lb"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/teeku-love-shack/front.svg",
  26090. extra: 387 / 362,
  26091. bottom: 1.51 / 388
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Shrunken",
  26098. height: math.unit(7, "cm")
  26099. },
  26100. {
  26101. name: "Human Scale",
  26102. height: math.unit(1.55, "meters")
  26103. },
  26104. {
  26105. name: "Wolxi Scale",
  26106. height: math.unit(34.1, "meters"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(1.83, "meters"),
  26116. weight: math.unit(135, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/dejma-the-red/front.svg",
  26120. extra: 480 / 458,
  26121. bottom: 1.8 / 482
  26122. }
  26123. },
  26124. },
  26125. [
  26126. {
  26127. name: "Shrunken",
  26128. height: math.unit(8.3, "cm")
  26129. },
  26130. {
  26131. name: "Human Scale",
  26132. height: math.unit(1.83, "meters")
  26133. },
  26134. {
  26135. name: "Wolxi Scale",
  26136. height: math.unit(40, "meters"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26143. {
  26144. front: {
  26145. height: math.unit(1.78, "meters"),
  26146. weight: math.unit(65, "kg"),
  26147. name: "Front",
  26148. image: {
  26149. source: "./media/characters/aki/front.svg",
  26150. extra: 452 / 415
  26151. }
  26152. },
  26153. frontNsfw: {
  26154. height: math.unit(1.78, "meters"),
  26155. weight: math.unit(65, "kg"),
  26156. name: "Front (NSFW)",
  26157. image: {
  26158. source: "./media/characters/aki/front-nsfw.svg",
  26159. extra: 452 / 415
  26160. }
  26161. },
  26162. back: {
  26163. height: math.unit(1.78, "meters"),
  26164. weight: math.unit(65, "kg"),
  26165. name: "Back",
  26166. image: {
  26167. source: "./media/characters/aki/back.svg",
  26168. extra: 452 / 415
  26169. }
  26170. },
  26171. rump: {
  26172. height: math.unit(2.05, "feet"),
  26173. name: "Rump",
  26174. image: {
  26175. source: "./media/characters/aki/rump.svg"
  26176. }
  26177. },
  26178. dick: {
  26179. height: math.unit(0.95, "feet"),
  26180. name: "Dick",
  26181. image: {
  26182. source: "./media/characters/aki/dick.svg"
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Micro",
  26189. height: math.unit(15, "cm")
  26190. },
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(178, "cm"),
  26194. default: true
  26195. },
  26196. {
  26197. name: "Macro",
  26198. height: math.unit(214, "m")
  26199. },
  26200. {
  26201. name: "Macro+",
  26202. height: math.unit(534, "m")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(5 + 5 / 12, "feet"),
  26211. weight: math.unit(120, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/ari/front.svg",
  26215. extra: 1550/1471,
  26216. bottom: 39/1589
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Normal",
  26223. height: math.unit(5 + 5 / 12, "feet")
  26224. },
  26225. {
  26226. name: "Macro",
  26227. height: math.unit(100, "feet"),
  26228. default: true
  26229. },
  26230. {
  26231. name: "Megamacro",
  26232. height: math.unit(100, "miles")
  26233. },
  26234. {
  26235. name: "Gigamacro",
  26236. height: math.unit(80000, "miles")
  26237. },
  26238. ]
  26239. ))
  26240. characterMakers.push(() => makeCharacter(
  26241. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26242. {
  26243. side: {
  26244. height: math.unit(9, "feet"),
  26245. weight: math.unit(400, "kg"),
  26246. name: "Side",
  26247. image: {
  26248. source: "./media/characters/bolt/side.svg",
  26249. extra: 1126 / 896,
  26250. bottom: 60 / 1187.3,
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Micro",
  26257. height: math.unit(5, "inches")
  26258. },
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(9, "feet"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(700, "feet")
  26267. },
  26268. {
  26269. name: "Max Size",
  26270. height: math.unit(1.52e22, "yottameters")
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(4.3, "meters"),
  26279. weight: math.unit(3, "tons"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/draekon-sylviar/front.svg",
  26283. extra: 2072/1512,
  26284. bottom: 74/2146
  26285. }
  26286. },
  26287. back: {
  26288. height: math.unit(4.3, "meters"),
  26289. weight: math.unit(3, "tons"),
  26290. name: "Back",
  26291. image: {
  26292. source: "./media/characters/draekon-sylviar/back.svg",
  26293. extra: 1639/1483,
  26294. bottom: 41/1680
  26295. }
  26296. },
  26297. feral: {
  26298. height: math.unit(1.15, "meters"),
  26299. weight: math.unit(3, "tons"),
  26300. name: "Feral",
  26301. image: {
  26302. source: "./media/characters/draekon-sylviar/feral.svg",
  26303. extra: 1033/395,
  26304. bottom: 130/1163
  26305. }
  26306. },
  26307. maw: {
  26308. height: math.unit(1.3, "meters"),
  26309. name: "Maw",
  26310. image: {
  26311. source: "./media/characters/draekon-sylviar/maw.svg"
  26312. }
  26313. },
  26314. mawSeparated: {
  26315. height: math.unit(1.53, "meters"),
  26316. name: "Separated Maw",
  26317. image: {
  26318. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26319. }
  26320. },
  26321. tail: {
  26322. height: math.unit(1.15, "meters"),
  26323. name: "Tail",
  26324. image: {
  26325. source: "./media/characters/draekon-sylviar/tail.svg"
  26326. }
  26327. },
  26328. tailDick: {
  26329. height: math.unit(1.15, "meters"),
  26330. name: "Tail (Dick)",
  26331. image: {
  26332. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26333. }
  26334. },
  26335. tailDickSeparated: {
  26336. height: math.unit(1.19, "meters"),
  26337. name: "Tail (Separated Dick)",
  26338. image: {
  26339. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26340. }
  26341. },
  26342. slit: {
  26343. height: math.unit(1, "meters"),
  26344. name: "Slit",
  26345. image: {
  26346. source: "./media/characters/draekon-sylviar/slit.svg"
  26347. }
  26348. },
  26349. dick: {
  26350. height: math.unit(1.15, "meters"),
  26351. name: "Dick",
  26352. image: {
  26353. source: "./media/characters/draekon-sylviar/dick.svg"
  26354. }
  26355. },
  26356. dickSeparated: {
  26357. height: math.unit(1.1, "meters"),
  26358. name: "Separated Dick",
  26359. image: {
  26360. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26361. }
  26362. },
  26363. sheath: {
  26364. height: math.unit(1.15, "meters"),
  26365. name: "Sheath",
  26366. image: {
  26367. source: "./media/characters/draekon-sylviar/sheath.svg"
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Small",
  26374. height: math.unit(4.53 / 2, "meters"),
  26375. default: true
  26376. },
  26377. {
  26378. name: "Normal",
  26379. height: math.unit(4.53, "meters"),
  26380. default: true
  26381. },
  26382. {
  26383. name: "Large",
  26384. height: math.unit(4.53 * 2, "meters"),
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26390. {
  26391. front: {
  26392. height: math.unit(6 + 2 / 12, "feet"),
  26393. weight: math.unit(180, "lb"),
  26394. name: "Front",
  26395. image: {
  26396. source: "./media/characters/brawler/front.svg",
  26397. extra: 3301 / 3027,
  26398. bottom: 138 / 3439
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(6 + 2 / 12, "feet"),
  26406. default: true
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(11, "feet"),
  26415. weight: math.unit(1000, "lb"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/alex/front.svg",
  26419. bottom: 44.5 / 620
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Micro",
  26426. height: math.unit(5, "inches")
  26427. },
  26428. {
  26429. name: "Normal",
  26430. height: math.unit(11, "feet"),
  26431. default: true
  26432. },
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(9.5e9, "feet")
  26436. },
  26437. {
  26438. name: "Max Size",
  26439. height: math.unit(1.4e283, "yottameters")
  26440. },
  26441. ]
  26442. ))
  26443. characterMakers.push(() => makeCharacter(
  26444. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26445. {
  26446. female: {
  26447. height: math.unit(29.9, "m"),
  26448. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26449. name: "Female",
  26450. image: {
  26451. source: "./media/characters/zenari/female.svg",
  26452. extra: 3281.6 / 3217,
  26453. bottom: 72.2 / 3353
  26454. }
  26455. },
  26456. male: {
  26457. height: math.unit(27.7, "m"),
  26458. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26459. name: "Male",
  26460. image: {
  26461. source: "./media/characters/zenari/male.svg",
  26462. extra: 3008 / 2991,
  26463. bottom: 54.6 / 3069
  26464. }
  26465. },
  26466. },
  26467. [
  26468. {
  26469. name: "Macro",
  26470. height: math.unit(29.7, "meters"),
  26471. default: true
  26472. },
  26473. ]
  26474. ))
  26475. characterMakers.push(() => makeCharacter(
  26476. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26477. {
  26478. female: {
  26479. height: math.unit(23.8, "m"),
  26480. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26481. name: "Female",
  26482. image: {
  26483. source: "./media/characters/mactarian/female.svg",
  26484. extra: 2662 / 2569,
  26485. bottom: 73 / 2736
  26486. }
  26487. },
  26488. male: {
  26489. height: math.unit(23.8, "m"),
  26490. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26491. name: "Male",
  26492. image: {
  26493. source: "./media/characters/mactarian/male.svg",
  26494. extra: 2673 / 2600,
  26495. bottom: 76 / 2750
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Macro",
  26502. height: math.unit(23.8, "meters"),
  26503. default: true
  26504. },
  26505. ]
  26506. ))
  26507. characterMakers.push(() => makeCharacter(
  26508. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26509. {
  26510. female: {
  26511. height: math.unit(19.3, "m"),
  26512. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26513. name: "Female",
  26514. image: {
  26515. source: "./media/characters/umok/female.svg",
  26516. extra: 2186 / 2078,
  26517. bottom: 87 / 2277
  26518. }
  26519. },
  26520. male: {
  26521. height: math.unit(19.5, "m"),
  26522. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26523. name: "Male",
  26524. image: {
  26525. source: "./media/characters/umok/male.svg",
  26526. extra: 2233 / 2140,
  26527. bottom: 24.4 / 2258
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Macro",
  26534. height: math.unit(19.3, "meters"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26541. {
  26542. female: {
  26543. height: math.unit(26.15, "m"),
  26544. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26545. name: "Female",
  26546. image: {
  26547. source: "./media/characters/joraxian/female.svg",
  26548. extra: 2912 / 2824,
  26549. bottom: 36 / 2956
  26550. }
  26551. },
  26552. male: {
  26553. height: math.unit(25.4, "m"),
  26554. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26555. name: "Male",
  26556. image: {
  26557. source: "./media/characters/joraxian/male.svg",
  26558. extra: 2877 / 2721,
  26559. bottom: 82 / 2967
  26560. }
  26561. },
  26562. },
  26563. [
  26564. {
  26565. name: "Macro",
  26566. height: math.unit(26.15, "meters"),
  26567. default: true
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26573. {
  26574. female: {
  26575. height: math.unit(21.6, "m"),
  26576. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26577. name: "Female",
  26578. image: {
  26579. source: "./media/characters/sthara/female.svg",
  26580. extra: 2516 / 2347,
  26581. bottom: 21.5 / 2537
  26582. }
  26583. },
  26584. male: {
  26585. height: math.unit(24, "m"),
  26586. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26587. name: "Male",
  26588. image: {
  26589. source: "./media/characters/sthara/male.svg",
  26590. extra: 2732 / 2607,
  26591. bottom: 23 / 2732
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Macro",
  26598. height: math.unit(21.6, "meters"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26605. {
  26606. front: {
  26607. height: math.unit(6 + 4 / 12, "feet"),
  26608. weight: math.unit(175, "lb"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/luka-bryzant/front.svg",
  26612. extra: 311 / 289,
  26613. bottom: 4 / 315
  26614. }
  26615. },
  26616. back: {
  26617. height: math.unit(6 + 4 / 12, "feet"),
  26618. weight: math.unit(175, "lb"),
  26619. name: "Back",
  26620. image: {
  26621. source: "./media/characters/luka-bryzant/back.svg",
  26622. extra: 311 / 289,
  26623. bottom: 3.8 / 313.7
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Micro",
  26630. height: math.unit(10, "inches")
  26631. },
  26632. {
  26633. name: "Normal",
  26634. height: math.unit(6 + 4 / 12, "feet"),
  26635. default: true
  26636. },
  26637. {
  26638. name: "Large",
  26639. height: math.unit(12, "feet")
  26640. },
  26641. ]
  26642. ))
  26643. characterMakers.push(() => makeCharacter(
  26644. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26645. {
  26646. front: {
  26647. height: math.unit(5 + 7 / 12, "feet"),
  26648. weight: math.unit(185, "lb"),
  26649. name: "Front",
  26650. image: {
  26651. source: "./media/characters/aman-aquila/front.svg",
  26652. extra: 1013 / 976,
  26653. bottom: 45.6 / 1057
  26654. }
  26655. },
  26656. side: {
  26657. height: math.unit(5 + 7 / 12, "feet"),
  26658. weight: math.unit(185, "lb"),
  26659. name: "Side",
  26660. image: {
  26661. source: "./media/characters/aman-aquila/side.svg",
  26662. extra: 1054 / 1011,
  26663. bottom: 15 / 1070
  26664. }
  26665. },
  26666. back: {
  26667. height: math.unit(5 + 7 / 12, "feet"),
  26668. weight: math.unit(185, "lb"),
  26669. name: "Back",
  26670. image: {
  26671. source: "./media/characters/aman-aquila/back.svg",
  26672. extra: 1026 / 970,
  26673. bottom: 12 / 1039
  26674. }
  26675. },
  26676. head: {
  26677. height: math.unit(1.211, "feet"),
  26678. name: "Head",
  26679. image: {
  26680. source: "./media/characters/aman-aquila/head.svg",
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Minimicro",
  26687. height: math.unit(0.057, "inches")
  26688. },
  26689. {
  26690. name: "Micro",
  26691. height: math.unit(7, "inches")
  26692. },
  26693. {
  26694. name: "Mini",
  26695. height: math.unit(3 + 7 / 12, "feet")
  26696. },
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(5 + 7 / 12, "feet"),
  26700. default: true
  26701. },
  26702. {
  26703. name: "Macro",
  26704. height: math.unit(157 + 7 / 12, "feet")
  26705. },
  26706. {
  26707. name: "Megamacro",
  26708. height: math.unit(1557 + 7 / 12, "feet")
  26709. },
  26710. {
  26711. name: "Gigamacro",
  26712. height: math.unit(15557 + 7 / 12, "feet")
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26718. {
  26719. front: {
  26720. height: math.unit(3 + 2 / 12, "inches"),
  26721. weight: math.unit(0.3, "ounces"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/hiphae/front.svg",
  26725. extra: 1931 / 1683,
  26726. bottom: 24 / 1955
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Normal",
  26733. height: math.unit(3 + 1 / 2, "inches"),
  26734. default: true
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26740. {
  26741. front: {
  26742. height: math.unit(5 + 10 / 12, "feet"),
  26743. weight: math.unit(165, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/nicky/front.svg",
  26747. extra: 3144 / 2886,
  26748. bottom: 45.6 / 3192
  26749. }
  26750. },
  26751. back: {
  26752. height: math.unit(5 + 10 / 12, "feet"),
  26753. weight: math.unit(165, "lb"),
  26754. name: "Back",
  26755. image: {
  26756. source: "./media/characters/nicky/back.svg",
  26757. extra: 3055 / 2804,
  26758. bottom: 28.4 / 3087
  26759. }
  26760. },
  26761. frontclothed: {
  26762. height: math.unit(5 + 10 / 12, "feet"),
  26763. weight: math.unit(165, "lb"),
  26764. name: "Front-clothed",
  26765. image: {
  26766. source: "./media/characters/nicky/front-clothed.svg",
  26767. extra: 3184.9 / 2926.9,
  26768. bottom: 86.5 / 3239.9
  26769. }
  26770. },
  26771. foot: {
  26772. height: math.unit(1.16, "feet"),
  26773. name: "Foot",
  26774. image: {
  26775. source: "./media/characters/nicky/foot.svg"
  26776. }
  26777. },
  26778. feet: {
  26779. height: math.unit(1.34, "feet"),
  26780. name: "Feet",
  26781. image: {
  26782. source: "./media/characters/nicky/feet.svg"
  26783. }
  26784. },
  26785. maw: {
  26786. height: math.unit(0.9, "feet"),
  26787. name: "Maw",
  26788. image: {
  26789. source: "./media/characters/nicky/maw.svg"
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(5 + 10 / 12, "feet"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Macro",
  26801. height: math.unit(60, "feet")
  26802. },
  26803. {
  26804. name: "Megamacro",
  26805. height: math.unit(1, "mile")
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26811. {
  26812. side: {
  26813. height: math.unit(10, "feet"),
  26814. weight: math.unit(600, "lb"),
  26815. name: "Side",
  26816. image: {
  26817. source: "./media/characters/blair/side.svg",
  26818. bottom: 16.6 / 475,
  26819. extra: 458 / 431
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Micro",
  26826. height: math.unit(8, "inches")
  26827. },
  26828. {
  26829. name: "Normal",
  26830. height: math.unit(10, "feet"),
  26831. default: true
  26832. },
  26833. {
  26834. name: "Macro",
  26835. height: math.unit(180, "feet")
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(5 + 4 / 12, "feet"),
  26844. weight: math.unit(125, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/fisher/front.svg",
  26848. extra: 444 / 390,
  26849. bottom: 2 / 444.8
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Micro",
  26856. height: math.unit(4, "inches")
  26857. },
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(5 + 4 / 12, "feet"),
  26861. default: true
  26862. },
  26863. {
  26864. name: "Macro",
  26865. height: math.unit(100, "feet")
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(6.71, "feet"),
  26874. weight: math.unit(200, "lb"),
  26875. preyCapacity: math.unit(1000000, "people"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/gliss/front.svg",
  26879. extra: 2347 / 2231,
  26880. bottom: 113 / 2462
  26881. }
  26882. },
  26883. hammerspaceSize: {
  26884. height: math.unit(6.71 * 717, "feet"),
  26885. weight: math.unit(200, "lb"),
  26886. preyCapacity: math.unit(1000000, "people"),
  26887. name: "Hammerspace Size",
  26888. image: {
  26889. source: "./media/characters/gliss/front.svg",
  26890. extra: 2347 / 2231,
  26891. bottom: 113 / 2462
  26892. }
  26893. },
  26894. },
  26895. [
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(6.71, "feet"),
  26899. default: true
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26905. {
  26906. side: {
  26907. height: math.unit(1.44, "m"),
  26908. weight: math.unit(80, "kg"),
  26909. name: "Side",
  26910. image: {
  26911. source: "./media/characters/dune-anderson/side.svg",
  26912. bottom: 49 / 1426
  26913. }
  26914. },
  26915. },
  26916. [
  26917. {
  26918. name: "Wolf-sized",
  26919. height: math.unit(1.44, "meters")
  26920. },
  26921. {
  26922. name: "Normal",
  26923. height: math.unit(5.05, "meters"),
  26924. default: true
  26925. },
  26926. {
  26927. name: "Big",
  26928. height: math.unit(14.4, "meters")
  26929. },
  26930. {
  26931. name: "Huge",
  26932. height: math.unit(144, "meters")
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(7, "feet"),
  26941. weight: math.unit(425, "lb"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/hind/front.svg",
  26945. extra: 2091 / 1860,
  26946. bottom: 129 / 2220
  26947. }
  26948. },
  26949. back: {
  26950. height: math.unit(7, "feet"),
  26951. weight: math.unit(425, "lb"),
  26952. name: "Back",
  26953. image: {
  26954. source: "./media/characters/hind/back.svg",
  26955. extra: 2091 / 1860,
  26956. bottom: 24.6 / 2309
  26957. }
  26958. },
  26959. tail: {
  26960. height: math.unit(2.8, "feet"),
  26961. name: "Tail",
  26962. image: {
  26963. source: "./media/characters/hind/tail.svg"
  26964. }
  26965. },
  26966. head: {
  26967. height: math.unit(2.55, "feet"),
  26968. name: "Head",
  26969. image: {
  26970. source: "./media/characters/hind/head.svg"
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "XS",
  26977. height: math.unit(0.7, "feet")
  26978. },
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(7, "feet"),
  26982. default: true
  26983. },
  26984. {
  26985. name: "XL",
  26986. height: math.unit(70, "feet")
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(2.1, "meters"),
  26995. weight: math.unit(150, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/tharquench-sizestealer/front.svg",
  26999. extra: 1605/1470,
  27000. bottom: 36/1641
  27001. }
  27002. },
  27003. frontAlt: {
  27004. height: math.unit(2.1, "meters"),
  27005. weight: math.unit(150, "lb"),
  27006. name: "Front (Alt)",
  27007. image: {
  27008. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27009. extra: 2318 / 2063,
  27010. bottom: 93.4 / 2410
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Nano",
  27017. height: math.unit(1, "mm")
  27018. },
  27019. {
  27020. name: "Micro",
  27021. height: math.unit(1, "cm")
  27022. },
  27023. {
  27024. name: "Normal",
  27025. height: math.unit(2.1, "meters"),
  27026. default: true
  27027. },
  27028. ]
  27029. ))
  27030. characterMakers.push(() => makeCharacter(
  27031. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27032. {
  27033. front: {
  27034. height: math.unit(7 + 5 / 12, "feet"),
  27035. weight: math.unit(357, "lb"),
  27036. name: "Front",
  27037. image: {
  27038. source: "./media/characters/solex-draconov/front.svg",
  27039. extra: 1993 / 1865,
  27040. bottom: 117 / 2111
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Natural Height",
  27047. height: math.unit(7 + 5 / 12, "feet"),
  27048. default: true
  27049. },
  27050. {
  27051. name: "Macro",
  27052. height: math.unit(350, "feet")
  27053. },
  27054. {
  27055. name: "Macro+",
  27056. height: math.unit(1000, "feet")
  27057. },
  27058. {
  27059. name: "Megamacro",
  27060. height: math.unit(20, "km")
  27061. },
  27062. {
  27063. name: "Megamacro+",
  27064. height: math.unit(1000, "km")
  27065. },
  27066. {
  27067. name: "Gigamacro",
  27068. height: math.unit(2.5, "Gm")
  27069. },
  27070. {
  27071. name: "Teramacro",
  27072. height: math.unit(15, "Tm")
  27073. },
  27074. {
  27075. name: "Galactic",
  27076. height: math.unit(30, "Zm")
  27077. },
  27078. {
  27079. name: "Universal",
  27080. height: math.unit(21000, "Ym")
  27081. },
  27082. {
  27083. name: "Omniversal",
  27084. height: math.unit(9.861e50, "Ym")
  27085. },
  27086. {
  27087. name: "Existential",
  27088. height: math.unit(1e300, "meters")
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27094. {
  27095. side: {
  27096. height: math.unit(25, "feet"),
  27097. weight: math.unit(90000, "lb"),
  27098. name: "Side",
  27099. image: {
  27100. source: "./media/characters/mandarax/side.svg",
  27101. extra: 614 / 332,
  27102. bottom: 55 / 630
  27103. }
  27104. },
  27105. lounging: {
  27106. height: math.unit(15.4, "feet"),
  27107. weight: math.unit(90000, "lb"),
  27108. name: "Lounging",
  27109. image: {
  27110. source: "./media/characters/mandarax/lounging.svg",
  27111. extra: 817/609,
  27112. bottom: 685/1502
  27113. }
  27114. },
  27115. head: {
  27116. height: math.unit(11.4, "feet"),
  27117. name: "Head",
  27118. image: {
  27119. source: "./media/characters/mandarax/head.svg"
  27120. }
  27121. },
  27122. belly: {
  27123. height: math.unit(33, "feet"),
  27124. name: "Belly",
  27125. preyCapacity: math.unit(500, "people"),
  27126. image: {
  27127. source: "./media/characters/mandarax/belly.svg"
  27128. }
  27129. },
  27130. dick: {
  27131. height: math.unit(8.46, "feet"),
  27132. name: "Dick",
  27133. image: {
  27134. source: "./media/characters/mandarax/dick.svg"
  27135. }
  27136. },
  27137. top: {
  27138. height: math.unit(28, "meters"),
  27139. name: "Top",
  27140. image: {
  27141. source: "./media/characters/mandarax/top.svg"
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(25, "feet"),
  27149. default: true
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(5, "feet"),
  27158. weight: math.unit(90, "lb"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/pixil/front.svg",
  27162. extra: 2000 / 1618,
  27163. bottom: 12.3 / 2011
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(5, "feet"),
  27171. default: true
  27172. },
  27173. {
  27174. name: "Megamacro",
  27175. height: math.unit(10, "miles"),
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27181. {
  27182. front: {
  27183. height: math.unit(7 + 2 / 12, "feet"),
  27184. weight: math.unit(200, "lb"),
  27185. name: "Front",
  27186. image: {
  27187. source: "./media/characters/angel/front.svg",
  27188. extra: 1830 / 1737,
  27189. bottom: 22.6 / 1854,
  27190. }
  27191. },
  27192. },
  27193. [
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(7 + 2 / 12, "feet"),
  27197. default: true
  27198. },
  27199. {
  27200. name: "Macro",
  27201. height: math.unit(1000, "feet")
  27202. },
  27203. {
  27204. name: "Megamacro",
  27205. height: math.unit(2, "miles")
  27206. },
  27207. {
  27208. name: "Gigamacro",
  27209. height: math.unit(20, "earths")
  27210. },
  27211. ]
  27212. ))
  27213. characterMakers.push(() => makeCharacter(
  27214. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27215. {
  27216. front: {
  27217. height: math.unit(5, "feet"),
  27218. weight: math.unit(180, "lb"),
  27219. name: "Front",
  27220. image: {
  27221. source: "./media/characters/mekana/front.svg",
  27222. extra: 1671 / 1605,
  27223. bottom: 3.5 / 1691
  27224. }
  27225. },
  27226. side: {
  27227. height: math.unit(5, "feet"),
  27228. weight: math.unit(180, "lb"),
  27229. name: "Side",
  27230. image: {
  27231. source: "./media/characters/mekana/side.svg",
  27232. extra: 1671 / 1605,
  27233. bottom: 3.5 / 1691
  27234. }
  27235. },
  27236. back: {
  27237. height: math.unit(5, "feet"),
  27238. weight: math.unit(180, "lb"),
  27239. name: "Back",
  27240. image: {
  27241. source: "./media/characters/mekana/back.svg",
  27242. extra: 1671 / 1605,
  27243. bottom: 3.5 / 1691
  27244. }
  27245. },
  27246. },
  27247. [
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(5, "feet"),
  27251. default: true
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(4 + 6 / 12, "feet"),
  27260. weight: math.unit(80, "lb"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/pixie/front.svg",
  27264. extra: 1924 / 1825,
  27265. bottom: 22.4 / 1946
  27266. }
  27267. },
  27268. },
  27269. [
  27270. {
  27271. name: "Normal",
  27272. height: math.unit(4 + 6 / 12, "feet"),
  27273. default: true
  27274. },
  27275. {
  27276. name: "Macro",
  27277. height: math.unit(40, "feet")
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(2.1, "meters"),
  27286. weight: math.unit(200, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/the-lascivious/front.svg",
  27290. extra: 1 / 0.893,
  27291. bottom: 3.5 / 573.7
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Human Scale",
  27298. height: math.unit(2.1, "meters")
  27299. },
  27300. {
  27301. name: "Wolxi Scale",
  27302. height: math.unit(46.2, "m"),
  27303. default: true
  27304. },
  27305. {
  27306. name: "Boinker of Buildings",
  27307. height: math.unit(10, "km")
  27308. },
  27309. {
  27310. name: "Shagger of Skyscrapers",
  27311. height: math.unit(40, "km")
  27312. },
  27313. {
  27314. name: "Banger of Boroughs",
  27315. height: math.unit(4000, "km")
  27316. },
  27317. {
  27318. name: "Screwer of States",
  27319. height: math.unit(100000, "km")
  27320. },
  27321. {
  27322. name: "Pounder of Planets",
  27323. height: math.unit(2000000, "km")
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(6, "feet"),
  27332. weight: math.unit(150, "lb"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/aj/front.svg",
  27336. extra: 2039 / 1562,
  27337. bottom: 40 / 2079
  27338. }
  27339. },
  27340. },
  27341. [
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(11 + 6 / 12, "feet"),
  27345. default: true
  27346. },
  27347. {
  27348. name: "Megamacro",
  27349. height: math.unit(60, "megameters")
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27355. {
  27356. side: {
  27357. height: math.unit(31 + 8 / 12, "feet"),
  27358. weight: math.unit(75000, "kg"),
  27359. name: "Side",
  27360. image: {
  27361. source: "./media/characters/koros/side.svg",
  27362. extra: 1442 / 1297,
  27363. bottom: 122.7 / 1562
  27364. }
  27365. },
  27366. dicksKingsCrown: {
  27367. height: math.unit(6, "feet"),
  27368. name: "Dicks (King's Crown)",
  27369. image: {
  27370. source: "./media/characters/koros/dicks-kings-crown.svg"
  27371. }
  27372. },
  27373. dicksTailSet: {
  27374. height: math.unit(3, "feet"),
  27375. name: "Dicks (Tail Set)",
  27376. image: {
  27377. source: "./media/characters/koros/dicks-tail-set.svg"
  27378. }
  27379. },
  27380. dickCumming: {
  27381. height: math.unit(7.98, "feet"),
  27382. name: "Dick (Cumming)",
  27383. image: {
  27384. source: "./media/characters/koros/dick-cumming.svg"
  27385. }
  27386. },
  27387. dicksBack: {
  27388. height: math.unit(5.9, "feet"),
  27389. name: "Dicks (Back)",
  27390. image: {
  27391. source: "./media/characters/koros/dicks-back.svg"
  27392. }
  27393. },
  27394. dicksFront: {
  27395. height: math.unit(3.72, "feet"),
  27396. name: "Dicks (Front)",
  27397. image: {
  27398. source: "./media/characters/koros/dicks-front.svg"
  27399. }
  27400. },
  27401. dicksPeeking: {
  27402. height: math.unit(3.0, "feet"),
  27403. name: "Dicks (Peeking)",
  27404. image: {
  27405. source: "./media/characters/koros/dicks-peeking.svg"
  27406. }
  27407. },
  27408. eye: {
  27409. height: math.unit(1.7, "feet"),
  27410. name: "Eye",
  27411. image: {
  27412. source: "./media/characters/koros/eye.svg"
  27413. }
  27414. },
  27415. headFront: {
  27416. height: math.unit(11.69, "feet"),
  27417. name: "Head (Front)",
  27418. image: {
  27419. source: "./media/characters/koros/head-front.svg"
  27420. }
  27421. },
  27422. headSide: {
  27423. height: math.unit(14, "feet"),
  27424. name: "Head (Side)",
  27425. image: {
  27426. source: "./media/characters/koros/head-side.svg"
  27427. }
  27428. },
  27429. leg: {
  27430. height: math.unit(17, "feet"),
  27431. name: "Leg",
  27432. image: {
  27433. source: "./media/characters/koros/leg.svg"
  27434. }
  27435. },
  27436. mawSide: {
  27437. height: math.unit(12.8, "feet"),
  27438. name: "Maw (Side)",
  27439. image: {
  27440. source: "./media/characters/koros/maw-side.svg"
  27441. }
  27442. },
  27443. mawSpitting: {
  27444. height: math.unit(17, "feet"),
  27445. name: "Maw (Spitting)",
  27446. image: {
  27447. source: "./media/characters/koros/maw-spitting.svg"
  27448. }
  27449. },
  27450. slit: {
  27451. height: math.unit(2.8, "feet"),
  27452. name: "Slit",
  27453. image: {
  27454. source: "./media/characters/koros/slit.svg"
  27455. }
  27456. },
  27457. stomach: {
  27458. height: math.unit(6.8, "feet"),
  27459. preyCapacity: math.unit(20, "people"),
  27460. name: "Stomach",
  27461. image: {
  27462. source: "./media/characters/koros/stomach.svg"
  27463. }
  27464. },
  27465. wingspanBottom: {
  27466. height: math.unit(114, "feet"),
  27467. name: "Wingspan (Bottom)",
  27468. image: {
  27469. source: "./media/characters/koros/wingspan-bottom.svg"
  27470. }
  27471. },
  27472. wingspanTop: {
  27473. height: math.unit(104, "feet"),
  27474. name: "Wingspan (Top)",
  27475. image: {
  27476. source: "./media/characters/koros/wingspan-top.svg"
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(31 + 8 / 12, "feet"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(18 + 5 / 12, "feet"),
  27493. weight: math.unit(3750, "kg"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/vexx/front.svg",
  27497. extra: 426 / 396,
  27498. bottom: 31.5 / 458
  27499. }
  27500. },
  27501. maw: {
  27502. height: math.unit(6, "feet"),
  27503. name: "Maw",
  27504. image: {
  27505. source: "./media/characters/vexx/maw.svg"
  27506. }
  27507. },
  27508. },
  27509. [
  27510. {
  27511. name: "Normal",
  27512. height: math.unit(18 + 5 / 12, "feet"),
  27513. default: true
  27514. },
  27515. ]
  27516. ))
  27517. characterMakers.push(() => makeCharacter(
  27518. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27519. {
  27520. front: {
  27521. height: math.unit(17 + 6 / 12, "feet"),
  27522. weight: math.unit(150, "lb"),
  27523. name: "Front",
  27524. image: {
  27525. source: "./media/characters/baadra/front.svg",
  27526. extra: 1694/1553,
  27527. bottom: 179/1873
  27528. }
  27529. },
  27530. frontAlt: {
  27531. height: math.unit(17 + 6 / 12, "feet"),
  27532. weight: math.unit(150, "lb"),
  27533. name: "Front (Alt)",
  27534. image: {
  27535. source: "./media/characters/baadra/front-alt.svg",
  27536. extra: 3137 / 2890,
  27537. bottom: 168.4 / 3305
  27538. }
  27539. },
  27540. back: {
  27541. height: math.unit(17 + 6 / 12, "feet"),
  27542. weight: math.unit(150, "lb"),
  27543. name: "Back",
  27544. image: {
  27545. source: "./media/characters/baadra/back.svg",
  27546. extra: 3142 / 2890,
  27547. bottom: 220 / 3371
  27548. }
  27549. },
  27550. head: {
  27551. height: math.unit(5.45, "feet"),
  27552. name: "Head",
  27553. image: {
  27554. source: "./media/characters/baadra/head.svg"
  27555. }
  27556. },
  27557. headAngry: {
  27558. height: math.unit(4.95, "feet"),
  27559. name: "Head (Angry)",
  27560. image: {
  27561. source: "./media/characters/baadra/head-angry.svg"
  27562. }
  27563. },
  27564. headOpen: {
  27565. height: math.unit(6, "feet"),
  27566. name: "Head (Open)",
  27567. image: {
  27568. source: "./media/characters/baadra/head-open.svg"
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(17 + 6 / 12, "feet"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(7 + 3 / 12, "feet"),
  27585. weight: math.unit(180, "lb"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/juri/front.svg",
  27589. extra: 1401 / 1237,
  27590. bottom: 18.5 / 1418
  27591. }
  27592. },
  27593. side: {
  27594. height: math.unit(7 + 3 / 12, "feet"),
  27595. weight: math.unit(180, "lb"),
  27596. name: "Side",
  27597. image: {
  27598. source: "./media/characters/juri/side.svg",
  27599. extra: 1424 / 1242,
  27600. bottom: 18.5 / 1447
  27601. }
  27602. },
  27603. sitting: {
  27604. height: math.unit(6, "feet"),
  27605. weight: math.unit(180, "lb"),
  27606. name: "Sitting",
  27607. image: {
  27608. source: "./media/characters/juri/sitting.svg",
  27609. extra: 1270 / 1143,
  27610. bottom: 100 / 1343
  27611. }
  27612. },
  27613. back: {
  27614. height: math.unit(7 + 3 / 12, "feet"),
  27615. weight: math.unit(180, "lb"),
  27616. name: "Back",
  27617. image: {
  27618. source: "./media/characters/juri/back.svg",
  27619. extra: 1377 / 1240,
  27620. bottom: 23.7 / 1405
  27621. }
  27622. },
  27623. maw: {
  27624. height: math.unit(2.8, "feet"),
  27625. name: "Maw",
  27626. image: {
  27627. source: "./media/characters/juri/maw.svg"
  27628. }
  27629. },
  27630. stomach: {
  27631. height: math.unit(0.89, "feet"),
  27632. preyCapacity: math.unit(4, "liters"),
  27633. name: "Stomach",
  27634. image: {
  27635. source: "./media/characters/juri/stomach.svg"
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(7 + 3 / 12, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27649. {
  27650. fox: {
  27651. height: math.unit(5 + 6 / 12, "feet"),
  27652. weight: math.unit(140, "lb"),
  27653. name: "Fox",
  27654. image: {
  27655. source: "./media/characters/maxene-sita/fox.svg",
  27656. extra: 146 / 138,
  27657. bottom: 2.1 / 148.19
  27658. }
  27659. },
  27660. foxLaying: {
  27661. height: math.unit(1.70, "feet"),
  27662. weight: math.unit(140, "lb"),
  27663. name: "Fox (Laying)",
  27664. image: {
  27665. source: "./media/characters/maxene-sita/fox-laying.svg",
  27666. extra: 910 / 572,
  27667. bottom: 71 / 981
  27668. }
  27669. },
  27670. kitsune: {
  27671. height: math.unit(10, "feet"),
  27672. weight: math.unit(800, "lb"),
  27673. name: "Kitsune",
  27674. image: {
  27675. source: "./media/characters/maxene-sita/kitsune.svg",
  27676. extra: 185 / 176,
  27677. bottom: 4.7 / 189.9
  27678. }
  27679. },
  27680. hellhound: {
  27681. height: math.unit(10, "feet"),
  27682. weight: math.unit(700, "lb"),
  27683. name: "Hellhound",
  27684. image: {
  27685. source: "./media/characters/maxene-sita/hellhound.svg",
  27686. extra: 1600 / 1545,
  27687. bottom: 81 / 1681
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Normal",
  27694. height: math.unit(5 + 6 / 12, "feet"),
  27695. default: true
  27696. },
  27697. ]
  27698. ))
  27699. characterMakers.push(() => makeCharacter(
  27700. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27701. {
  27702. front: {
  27703. height: math.unit(3 + 4 / 12, "feet"),
  27704. weight: math.unit(70, "lb"),
  27705. name: "Front",
  27706. image: {
  27707. source: "./media/characters/maia/front.svg",
  27708. extra: 227 / 219.5,
  27709. bottom: 40 / 267
  27710. }
  27711. },
  27712. back: {
  27713. height: math.unit(3 + 4 / 12, "feet"),
  27714. weight: math.unit(70, "lb"),
  27715. name: "Back",
  27716. image: {
  27717. source: "./media/characters/maia/back.svg",
  27718. extra: 237 / 225
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Normal",
  27725. height: math.unit(3 + 4 / 12, "feet"),
  27726. default: true
  27727. },
  27728. ]
  27729. ))
  27730. characterMakers.push(() => makeCharacter(
  27731. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27732. {
  27733. front: {
  27734. height: math.unit(5 + 10 / 12, "feet"),
  27735. weight: math.unit(197, "lb"),
  27736. name: "Front",
  27737. image: {
  27738. source: "./media/characters/jabaro/front.svg",
  27739. extra: 225 / 216,
  27740. bottom: 5.06 / 230
  27741. }
  27742. },
  27743. back: {
  27744. height: math.unit(5 + 10 / 12, "feet"),
  27745. weight: math.unit(197, "lb"),
  27746. name: "Back",
  27747. image: {
  27748. source: "./media/characters/jabaro/back.svg",
  27749. extra: 225 / 219,
  27750. bottom: 1.9 / 227
  27751. }
  27752. },
  27753. },
  27754. [
  27755. {
  27756. name: "Normal",
  27757. height: math.unit(5 + 10 / 12, "feet"),
  27758. default: true
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27764. {
  27765. front: {
  27766. height: math.unit(5 + 8 / 12, "feet"),
  27767. weight: math.unit(139, "lb"),
  27768. name: "Front",
  27769. image: {
  27770. source: "./media/characters/risa/front.svg",
  27771. extra: 270 / 260,
  27772. bottom: 11.2 / 282
  27773. }
  27774. },
  27775. back: {
  27776. height: math.unit(5 + 8 / 12, "feet"),
  27777. weight: math.unit(139, "lb"),
  27778. name: "Back",
  27779. image: {
  27780. source: "./media/characters/risa/back.svg",
  27781. extra: 264 / 255,
  27782. bottom: 4 / 268
  27783. }
  27784. },
  27785. },
  27786. [
  27787. {
  27788. name: "Normal",
  27789. height: math.unit(5 + 8 / 12, "feet"),
  27790. default: true
  27791. },
  27792. ]
  27793. ))
  27794. characterMakers.push(() => makeCharacter(
  27795. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27796. {
  27797. front: {
  27798. height: math.unit(2 + 11 / 12, "feet"),
  27799. weight: math.unit(30, "lb"),
  27800. name: "Front",
  27801. image: {
  27802. source: "./media/characters/weatley/front.svg",
  27803. bottom: 10.7 / 414,
  27804. extra: 403.5 / 362
  27805. }
  27806. },
  27807. back: {
  27808. height: math.unit(2 + 11 / 12, "feet"),
  27809. weight: math.unit(30, "lb"),
  27810. name: "Back",
  27811. image: {
  27812. source: "./media/characters/weatley/back.svg",
  27813. bottom: 10.7 / 414,
  27814. extra: 403.5 / 362
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(2 + 11 / 12, "feet"),
  27822. default: true
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(5 + 2 / 12, "feet"),
  27831. weight: math.unit(50, "kg"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/mercury-crescent/front.svg",
  27835. extra: 1088 / 1033,
  27836. bottom: 18.9 / 1109
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Normal",
  27843. height: math.unit(5 + 2 / 12, "feet"),
  27844. default: true
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(2, "feet"),
  27853. weight: math.unit(15, "kg"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/diamond-jones/front.svg",
  27857. extra: 727/723,
  27858. bottom: 46/773
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(2, "feet"),
  27866. default: true
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27872. {
  27873. front: {
  27874. height: math.unit(3, "feet"),
  27875. weight: math.unit(30, "kg"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/sweet-bit/front.svg",
  27879. extra: 675 / 567,
  27880. bottom: 27.7 / 703
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Normal",
  27887. height: math.unit(3, "feet"),
  27888. default: true
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27894. {
  27895. side: {
  27896. height: math.unit(9.178, "feet"),
  27897. weight: math.unit(500, "lb"),
  27898. name: "Side",
  27899. image: {
  27900. source: "./media/characters/umbrazen/side.svg",
  27901. extra: 1730 / 1473,
  27902. bottom: 34.6 / 1765
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Normal",
  27909. height: math.unit(9.178, "feet"),
  27910. default: true
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(10, "feet"),
  27919. weight: math.unit(750, "lb"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/arlist/front.svg",
  27923. extra: 961 / 778,
  27924. bottom: 6.2 / 986
  27925. }
  27926. },
  27927. },
  27928. [
  27929. {
  27930. name: "Normal",
  27931. height: math.unit(10, "feet"),
  27932. default: true
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27938. {
  27939. front: {
  27940. height: math.unit(5 + 1 / 12, "feet"),
  27941. weight: math.unit(110, "lb"),
  27942. name: "Front",
  27943. image: {
  27944. source: "./media/characters/aradel/front.svg",
  27945. extra: 324 / 303,
  27946. bottom: 3.6 / 329.4
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Normal",
  27953. height: math.unit(5 + 1 / 12, "feet"),
  27954. default: true
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27960. {
  27961. dressed: {
  27962. height: math.unit(3 + 8 / 12, "feet"),
  27963. weight: math.unit(50, "lb"),
  27964. name: "Dressed",
  27965. image: {
  27966. source: "./media/characters/serryn/dressed.svg",
  27967. extra: 1792 / 1656,
  27968. bottom: 43.5 / 1840
  27969. }
  27970. },
  27971. nude: {
  27972. height: math.unit(3 + 8 / 12, "feet"),
  27973. weight: math.unit(50, "lb"),
  27974. name: "Nude",
  27975. image: {
  27976. source: "./media/characters/serryn/nude.svg",
  27977. extra: 1792 / 1656,
  27978. bottom: 43.5 / 1840
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(3 + 8 / 12, "feet"),
  27986. default: true
  27987. },
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27992. {
  27993. front: {
  27994. height: math.unit(7 + 10 / 12, "feet"),
  27995. weight: math.unit(255, "lb"),
  27996. name: "Front",
  27997. image: {
  27998. source: "./media/characters/xavier-thyme/front.svg",
  27999. extra: 3733 / 3642,
  28000. bottom: 131 / 3869
  28001. }
  28002. },
  28003. frontRaven: {
  28004. height: math.unit(7 + 10 / 12, "feet"),
  28005. weight: math.unit(255, "lb"),
  28006. name: "Front (Raven)",
  28007. image: {
  28008. source: "./media/characters/xavier-thyme/front-raven.svg",
  28009. extra: 4385 / 3642,
  28010. bottom: 131 / 4517
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Normal",
  28017. height: math.unit(7 + 10 / 12, "feet"),
  28018. default: true
  28019. },
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28024. {
  28025. front: {
  28026. height: math.unit(1.6, "m"),
  28027. weight: math.unit(50, "kg"),
  28028. name: "Front",
  28029. image: {
  28030. source: "./media/characters/kiki/front.svg",
  28031. extra: 4682 / 3610,
  28032. bottom: 115 / 4777
  28033. }
  28034. },
  28035. },
  28036. [
  28037. {
  28038. name: "Normal",
  28039. height: math.unit(1.6, "meters"),
  28040. default: true
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28046. {
  28047. front: {
  28048. height: math.unit(50, "m"),
  28049. weight: math.unit(500, "tonnes"),
  28050. name: "Front",
  28051. image: {
  28052. source: "./media/characters/ryoko/front.svg",
  28053. extra: 4632 / 3926,
  28054. bottom: 193 / 4823
  28055. }
  28056. },
  28057. },
  28058. [
  28059. {
  28060. name: "Normal",
  28061. height: math.unit(50, "meters"),
  28062. default: true
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(30, "m"),
  28071. weight: math.unit(22, "tonnes"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/elio/front.svg",
  28075. extra: 4582 / 3720,
  28076. bottom: 236 / 4828
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Normal",
  28083. height: math.unit(30, "meters"),
  28084. default: true
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(6 + 3 / 12, "feet"),
  28093. weight: math.unit(120, "lb"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/azura/front.svg",
  28097. extra: 1149 / 1135,
  28098. bottom: 45 / 1194
  28099. }
  28100. },
  28101. frontClothed: {
  28102. height: math.unit(6 + 3 / 12, "feet"),
  28103. weight: math.unit(120, "lb"),
  28104. name: "Front (Clothed)",
  28105. image: {
  28106. source: "./media/characters/azura/front-clothed.svg",
  28107. extra: 1149 / 1135,
  28108. bottom: 45 / 1194
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(6 + 3 / 12, "feet"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Macro",
  28120. height: math.unit(20 + 6 / 12, "feet")
  28121. },
  28122. {
  28123. name: "Megamacro",
  28124. height: math.unit(12, "miles")
  28125. },
  28126. {
  28127. name: "Gigamacro",
  28128. height: math.unit(10000, "miles")
  28129. },
  28130. {
  28131. name: "Teramacro",
  28132. height: math.unit(900000, "miles")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(12, "feet"),
  28141. weight: math.unit(1, "ton"),
  28142. capacity: math.unit(660000, "gallons"),
  28143. name: "Front",
  28144. image: {
  28145. source: "./media/characters/zeus/front.svg",
  28146. extra: 5005 / 4717,
  28147. bottom: 363 / 5388
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Normal",
  28154. height: math.unit(12, "feet")
  28155. },
  28156. {
  28157. name: "Preferred Size",
  28158. height: math.unit(0.5, "miles"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Giga Horse",
  28163. height: math.unit(300, "miles")
  28164. },
  28165. {
  28166. name: "Riding Planets",
  28167. height: math.unit(30, "megameters")
  28168. },
  28169. {
  28170. name: "Cosmic Giant",
  28171. height: math.unit(3, "zettameters")
  28172. },
  28173. {
  28174. name: "Breeding God",
  28175. height: math.unit(9.92e22, "yottameters")
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28181. {
  28182. side: {
  28183. height: math.unit(9, "feet"),
  28184. weight: math.unit(1500, "kg"),
  28185. name: "Side",
  28186. image: {
  28187. source: "./media/characters/fang/side.svg",
  28188. extra: 924 / 866,
  28189. bottom: 47.5 / 972.3
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Normal",
  28196. height: math.unit(9, "feet"),
  28197. default: true
  28198. },
  28199. {
  28200. name: "Macro",
  28201. height: math.unit(75 + 6 / 12, "feet")
  28202. },
  28203. {
  28204. name: "Teramacro",
  28205. height: math.unit(50000, "miles")
  28206. },
  28207. ]
  28208. ))
  28209. characterMakers.push(() => makeCharacter(
  28210. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28211. {
  28212. front: {
  28213. height: math.unit(10, "feet"),
  28214. weight: math.unit(2, "tons"),
  28215. name: "Front",
  28216. image: {
  28217. source: "./media/characters/rekhit/front.svg",
  28218. extra: 2796 / 2590,
  28219. bottom: 225 / 3022
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Normal",
  28226. height: math.unit(10, "feet"),
  28227. default: true
  28228. },
  28229. {
  28230. name: "Macro",
  28231. height: math.unit(500, "feet")
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(7 + 6.451 / 12, "feet"),
  28240. weight: math.unit(310, "lb"),
  28241. name: "Front",
  28242. image: {
  28243. source: "./media/characters/dahlia-verrick/front.svg",
  28244. extra: 1488 / 1365,
  28245. bottom: 6.2 / 1495
  28246. }
  28247. },
  28248. back: {
  28249. height: math.unit(7 + 6.451 / 12, "feet"),
  28250. weight: math.unit(310, "lb"),
  28251. name: "Back",
  28252. image: {
  28253. source: "./media/characters/dahlia-verrick/back.svg",
  28254. extra: 1472 / 1351,
  28255. bottom: 5.28 / 1477
  28256. }
  28257. },
  28258. frontBusiness: {
  28259. height: math.unit(7 + 6.451 / 12, "feet"),
  28260. weight: math.unit(200, "lb"),
  28261. name: "Front (Business)",
  28262. image: {
  28263. source: "./media/characters/dahlia-verrick/front-business.svg",
  28264. extra: 1478 / 1381,
  28265. bottom: 5.5 / 1484
  28266. }
  28267. },
  28268. frontCasual: {
  28269. height: math.unit(7 + 6.451 / 12, "feet"),
  28270. weight: math.unit(200, "lb"),
  28271. name: "Front (Casual)",
  28272. image: {
  28273. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28274. extra: 1478 / 1381,
  28275. bottom: 5.5 / 1484
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Travel-Sized",
  28282. height: math.unit(7.45, "inches")
  28283. },
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(7 + 6.451 / 12, "feet"),
  28287. default: true
  28288. },
  28289. {
  28290. name: "Hitting the Town",
  28291. height: math.unit(37 + 8 / 12, "feet")
  28292. },
  28293. {
  28294. name: "Stomp in the Suburbs",
  28295. height: math.unit(964 + 9.728 / 12, "feet")
  28296. },
  28297. {
  28298. name: "Sit on the City",
  28299. height: math.unit(61747 + 10.592 / 12, "feet")
  28300. },
  28301. {
  28302. name: "Glomp the Globe",
  28303. height: math.unit(252919327 + 4.832 / 12, "feet")
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(6 + 4 / 12, "feet"),
  28312. weight: math.unit(320, "lb"),
  28313. name: "Front",
  28314. image: {
  28315. source: "./media/characters/balina-mahigan/front.svg",
  28316. extra: 447 / 428,
  28317. bottom: 18 / 466
  28318. }
  28319. },
  28320. back: {
  28321. height: math.unit(6 + 4 / 12, "feet"),
  28322. weight: math.unit(320, "lb"),
  28323. name: "Back",
  28324. image: {
  28325. source: "./media/characters/balina-mahigan/back.svg",
  28326. extra: 445 / 428,
  28327. bottom: 4.07 / 448
  28328. }
  28329. },
  28330. arm: {
  28331. height: math.unit(1.88, "feet"),
  28332. name: "Arm",
  28333. image: {
  28334. source: "./media/characters/balina-mahigan/arm.svg"
  28335. }
  28336. },
  28337. backPort: {
  28338. height: math.unit(0.685, "feet"),
  28339. name: "Back Port",
  28340. image: {
  28341. source: "./media/characters/balina-mahigan/back-port.svg"
  28342. }
  28343. },
  28344. hoofpaw: {
  28345. height: math.unit(1.41, "feet"),
  28346. name: "Hoofpaw",
  28347. image: {
  28348. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28349. }
  28350. },
  28351. leftHandBack: {
  28352. height: math.unit(0.938, "feet"),
  28353. name: "Left Hand (Back)",
  28354. image: {
  28355. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28356. }
  28357. },
  28358. leftHandFront: {
  28359. height: math.unit(0.938, "feet"),
  28360. name: "Left Hand (Front)",
  28361. image: {
  28362. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28363. }
  28364. },
  28365. rightHandBack: {
  28366. height: math.unit(0.95, "feet"),
  28367. name: "Right Hand (Back)",
  28368. image: {
  28369. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28370. }
  28371. },
  28372. rightHandFront: {
  28373. height: math.unit(0.95, "feet"),
  28374. name: "Right Hand (Front)",
  28375. image: {
  28376. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(6 + 4 / 12, "feet"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(6, "feet"),
  28393. weight: math.unit(320, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/balina-mejeri/front.svg",
  28397. extra: 517 / 488,
  28398. bottom: 44.2 / 561
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Normal",
  28405. height: math.unit(6 + 4 / 12, "feet")
  28406. },
  28407. {
  28408. name: "Business",
  28409. height: math.unit(155, "feet"),
  28410. default: true
  28411. },
  28412. ]
  28413. ))
  28414. characterMakers.push(() => makeCharacter(
  28415. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28416. {
  28417. kneeling: {
  28418. height: math.unit(6 + 4 / 12, "feet"),
  28419. weight: math.unit(300 * 20, "lb"),
  28420. name: "Kneeling",
  28421. image: {
  28422. source: "./media/characters/balbarian/kneeling.svg",
  28423. extra: 922 / 862,
  28424. bottom: 42.4 / 965
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(6 + 4 / 12, "feet")
  28432. },
  28433. {
  28434. name: "Treasured",
  28435. height: math.unit(18 + 9 / 12, "feet"),
  28436. default: true
  28437. },
  28438. {
  28439. name: "Macro",
  28440. height: math.unit(900, "feet")
  28441. },
  28442. ]
  28443. ))
  28444. characterMakers.push(() => makeCharacter(
  28445. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28446. {
  28447. front: {
  28448. height: math.unit(6 + 4 / 12, "feet"),
  28449. weight: math.unit(325, "lb"),
  28450. name: "Front",
  28451. image: {
  28452. source: "./media/characters/balina-amarini/front.svg",
  28453. extra: 415 / 403,
  28454. bottom: 19 / 433.4
  28455. }
  28456. },
  28457. back: {
  28458. height: math.unit(6 + 4 / 12, "feet"),
  28459. weight: math.unit(325, "lb"),
  28460. name: "Back",
  28461. image: {
  28462. source: "./media/characters/balina-amarini/back.svg",
  28463. extra: 415 / 403,
  28464. bottom: 13.5 / 432
  28465. }
  28466. },
  28467. overdrive: {
  28468. height: math.unit(6 + 4 / 12, "feet"),
  28469. weight: math.unit(400, "lb"),
  28470. name: "Overdrive",
  28471. image: {
  28472. source: "./media/characters/balina-amarini/overdrive.svg",
  28473. extra: 269 / 259,
  28474. bottom: 12 / 282
  28475. }
  28476. },
  28477. },
  28478. [
  28479. {
  28480. name: "Boom",
  28481. height: math.unit(9 + 10 / 12, "feet"),
  28482. default: true
  28483. },
  28484. {
  28485. name: "Macro",
  28486. height: math.unit(280, "feet")
  28487. },
  28488. ]
  28489. ))
  28490. characterMakers.push(() => makeCharacter(
  28491. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28492. {
  28493. goddess: {
  28494. height: math.unit(600, "feet"),
  28495. weight: math.unit(2000000, "tons"),
  28496. name: "Goddess",
  28497. image: {
  28498. source: "./media/characters/lady-kubwa/goddess.svg",
  28499. extra: 1240.5 / 1223,
  28500. bottom: 22 / 1263
  28501. }
  28502. },
  28503. goddesser: {
  28504. height: math.unit(900, "feet"),
  28505. weight: math.unit(20000000, "lb"),
  28506. name: "Goddess-er",
  28507. image: {
  28508. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28509. extra: 899 / 888,
  28510. bottom: 12.6 / 912
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Macro",
  28517. height: math.unit(600, "feet"),
  28518. default: true
  28519. },
  28520. {
  28521. name: "Megamacro",
  28522. height: math.unit(250, "miles")
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28528. {
  28529. front: {
  28530. height: math.unit(7 + 7 / 12, "feet"),
  28531. weight: math.unit(250, "lb"),
  28532. name: "Front",
  28533. image: {
  28534. source: "./media/characters/tala-grovehorn/front.svg",
  28535. extra: 2636 / 2525,
  28536. bottom: 147 / 2781
  28537. }
  28538. },
  28539. back: {
  28540. height: math.unit(7 + 7 / 12, "feet"),
  28541. weight: math.unit(250, "lb"),
  28542. name: "Back",
  28543. image: {
  28544. source: "./media/characters/tala-grovehorn/back.svg",
  28545. extra: 2635 / 2539,
  28546. bottom: 100 / 2732.8
  28547. }
  28548. },
  28549. mouth: {
  28550. height: math.unit(1.15, "feet"),
  28551. name: "Mouth",
  28552. image: {
  28553. source: "./media/characters/tala-grovehorn/mouth.svg"
  28554. }
  28555. },
  28556. dick: {
  28557. height: math.unit(2.36, "feet"),
  28558. name: "Dick",
  28559. image: {
  28560. source: "./media/characters/tala-grovehorn/dick.svg"
  28561. }
  28562. },
  28563. slit: {
  28564. height: math.unit(0.61, "feet"),
  28565. name: "Slit",
  28566. image: {
  28567. source: "./media/characters/tala-grovehorn/slit.svg"
  28568. }
  28569. },
  28570. },
  28571. [
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(7 + 7 / 12, "feet"),
  28579. weight: math.unit(225, "lb"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/epona/front.svg",
  28583. extra: 2445 / 2290,
  28584. bottom: 251 / 2696
  28585. }
  28586. },
  28587. back: {
  28588. height: math.unit(7 + 7 / 12, "feet"),
  28589. weight: math.unit(225, "lb"),
  28590. name: "Back",
  28591. image: {
  28592. source: "./media/characters/epona/back.svg",
  28593. extra: 2546 / 2408,
  28594. bottom: 44 / 2589
  28595. }
  28596. },
  28597. genitals: {
  28598. height: math.unit(1.5, "feet"),
  28599. name: "Genitals",
  28600. image: {
  28601. source: "./media/characters/epona/genitals.svg"
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(7 + 7 / 12, "feet"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(7, "feet"),
  28618. weight: math.unit(518, "lb"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/avia-bloodbourn/front.svg",
  28622. extra: 1466 / 1350,
  28623. bottom: 65 / 1527
  28624. }
  28625. },
  28626. },
  28627. [
  28628. ]
  28629. ))
  28630. characterMakers.push(() => makeCharacter(
  28631. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28632. {
  28633. front: {
  28634. height: math.unit(9.35, "feet"),
  28635. weight: math.unit(600, "lb"),
  28636. name: "Front",
  28637. image: {
  28638. source: "./media/characters/amera/front.svg",
  28639. extra: 891 / 818,
  28640. bottom: 30 / 922.7
  28641. }
  28642. },
  28643. back: {
  28644. height: math.unit(9.35, "feet"),
  28645. weight: math.unit(600, "lb"),
  28646. name: "Back",
  28647. image: {
  28648. source: "./media/characters/amera/back.svg",
  28649. extra: 876 / 824,
  28650. bottom: 6.8 / 884
  28651. }
  28652. },
  28653. dick: {
  28654. height: math.unit(2.14, "feet"),
  28655. name: "Dick",
  28656. image: {
  28657. source: "./media/characters/amera/dick.svg"
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(9.35, "feet"),
  28665. default: true
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28671. {
  28672. kneeling: {
  28673. height: math.unit(3 + 4 / 12, "feet"),
  28674. weight: math.unit(90, "lb"),
  28675. name: "Kneeling",
  28676. image: {
  28677. source: "./media/characters/rosewen/kneeling.svg",
  28678. extra: 1835 / 1571,
  28679. bottom: 27.7 / 1862
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(3 + 4 / 12, "feet"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28693. {
  28694. front: {
  28695. height: math.unit(5 + 10 / 12, "feet"),
  28696. weight: math.unit(200, "lb"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/sabah/front.svg",
  28700. extra: 849 / 763,
  28701. bottom: 33.9 / 881
  28702. }
  28703. },
  28704. },
  28705. [
  28706. {
  28707. name: "Normal",
  28708. height: math.unit(5 + 10 / 12, "feet"),
  28709. default: true
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28715. {
  28716. front: {
  28717. height: math.unit(3 + 5 / 12, "feet"),
  28718. weight: math.unit(40, "kg"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/purple-flame/front.svg",
  28722. extra: 1577 / 1412,
  28723. bottom: 97 / 1694
  28724. }
  28725. },
  28726. frontDressed: {
  28727. height: math.unit(3 + 5 / 12, "feet"),
  28728. weight: math.unit(40, "kg"),
  28729. name: "Front (Dressed)",
  28730. image: {
  28731. source: "./media/characters/purple-flame/front-dressed.svg",
  28732. extra: 1577 / 1412,
  28733. bottom: 97 / 1694
  28734. }
  28735. },
  28736. headphones: {
  28737. height: math.unit(0.85, "feet"),
  28738. name: "Headphones",
  28739. image: {
  28740. source: "./media/characters/purple-flame/headphones.svg"
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Really Small",
  28747. height: math.unit(5, "cm")
  28748. },
  28749. {
  28750. name: "Micro",
  28751. height: math.unit(1 + 5 / 12, "feet")
  28752. },
  28753. {
  28754. name: "Normal",
  28755. height: math.unit(3 + 5 / 12, "feet"),
  28756. default: true
  28757. },
  28758. {
  28759. name: "Minimacro",
  28760. height: math.unit(125, "feet")
  28761. },
  28762. {
  28763. name: "Macro",
  28764. height: math.unit(0.5, "miles")
  28765. },
  28766. {
  28767. name: "Megamacro",
  28768. height: math.unit(50, "miles")
  28769. },
  28770. {
  28771. name: "Gigantic",
  28772. height: math.unit(750, "miles")
  28773. },
  28774. {
  28775. name: "Planetary",
  28776. height: math.unit(15000, "miles")
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(14, "feet"),
  28785. weight: math.unit(959, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/arsenal/front.svg",
  28789. extra: 2357 / 2157,
  28790. bottom: 93 / 2458
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(14, "feet"),
  28798. default: true
  28799. },
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28804. {
  28805. front: {
  28806. height: math.unit(6, "feet"),
  28807. weight: math.unit(150, "lb"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/adira/front.svg",
  28811. extra: 1078 / 1029,
  28812. bottom: 87 / 1166
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Micro",
  28819. height: math.unit(4, "inches"),
  28820. default: true
  28821. },
  28822. {
  28823. name: "Macro",
  28824. height: math.unit(50, "feet")
  28825. },
  28826. ]
  28827. ))
  28828. characterMakers.push(() => makeCharacter(
  28829. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28830. {
  28831. front: {
  28832. height: math.unit(16, "feet"),
  28833. weight: math.unit(1000, "lb"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/grim/front.svg",
  28837. extra: 622 / 614,
  28838. bottom: 18.1 / 642
  28839. }
  28840. },
  28841. back: {
  28842. height: math.unit(16, "feet"),
  28843. weight: math.unit(1000, "lb"),
  28844. name: "Back",
  28845. image: {
  28846. source: "./media/characters/grim/back.svg",
  28847. extra: 610.6 / 602,
  28848. bottom: 40.8 / 652
  28849. }
  28850. },
  28851. hunched: {
  28852. height: math.unit(9.75, "feet"),
  28853. weight: math.unit(1000, "lb"),
  28854. name: "Hunched",
  28855. image: {
  28856. source: "./media/characters/grim/hunched.svg",
  28857. extra: 304 / 297,
  28858. bottom: 35.4 / 394
  28859. }
  28860. },
  28861. },
  28862. [
  28863. {
  28864. name: "Normal",
  28865. height: math.unit(16, "feet"),
  28866. default: true
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28872. {
  28873. front: {
  28874. height: math.unit(2.3, "meters"),
  28875. weight: math.unit(300, "lb"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/sinja/front-sfw.svg",
  28879. extra: 1393 / 1294,
  28880. bottom: 70 / 1463
  28881. }
  28882. },
  28883. frontNsfw: {
  28884. height: math.unit(2.3, "meters"),
  28885. weight: math.unit(300, "lb"),
  28886. name: "Front (NSFW)",
  28887. image: {
  28888. source: "./media/characters/sinja/front-nsfw.svg",
  28889. extra: 1393 / 1294,
  28890. bottom: 70 / 1463
  28891. }
  28892. },
  28893. back: {
  28894. height: math.unit(2.3, "meters"),
  28895. weight: math.unit(300, "lb"),
  28896. name: "Back",
  28897. image: {
  28898. source: "./media/characters/sinja/back.svg",
  28899. extra: 1393 / 1294,
  28900. bottom: 70 / 1463
  28901. }
  28902. },
  28903. head: {
  28904. height: math.unit(1.771, "feet"),
  28905. name: "Head",
  28906. image: {
  28907. source: "./media/characters/sinja/head.svg"
  28908. }
  28909. },
  28910. slit: {
  28911. height: math.unit(0.8, "feet"),
  28912. name: "Slit",
  28913. image: {
  28914. source: "./media/characters/sinja/slit.svg"
  28915. }
  28916. },
  28917. },
  28918. [
  28919. {
  28920. name: "Normal",
  28921. height: math.unit(2.3, "meters")
  28922. },
  28923. {
  28924. name: "Macro",
  28925. height: math.unit(91, "meters"),
  28926. default: true
  28927. },
  28928. {
  28929. name: "Megamacro",
  28930. height: math.unit(91440, "meters")
  28931. },
  28932. {
  28933. name: "Gigamacro",
  28934. height: math.unit(60960000, "meters")
  28935. },
  28936. {
  28937. name: "Teramacro",
  28938. height: math.unit(9144000000, "meters")
  28939. },
  28940. ]
  28941. ))
  28942. characterMakers.push(() => makeCharacter(
  28943. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28944. {
  28945. front: {
  28946. height: math.unit(1.7, "meters"),
  28947. weight: math.unit(130, "lb"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/kyu/front.svg",
  28951. extra: 415 / 395,
  28952. bottom: 5 / 420
  28953. }
  28954. },
  28955. head: {
  28956. height: math.unit(1.75, "feet"),
  28957. name: "Head",
  28958. image: {
  28959. source: "./media/characters/kyu/head.svg"
  28960. }
  28961. },
  28962. foot: {
  28963. height: math.unit(0.81, "feet"),
  28964. name: "Foot",
  28965. image: {
  28966. source: "./media/characters/kyu/foot.svg"
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(1.7, "meters")
  28974. },
  28975. {
  28976. name: "Macro",
  28977. height: math.unit(131, "feet"),
  28978. default: true
  28979. },
  28980. {
  28981. name: "Megamacro",
  28982. height: math.unit(91440, "meters")
  28983. },
  28984. {
  28985. name: "Gigamacro",
  28986. height: math.unit(60960000, "meters")
  28987. },
  28988. {
  28989. name: "Teramacro",
  28990. height: math.unit(9144000000, "meters")
  28991. },
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(7 + 1 / 12, "feet"),
  28999. weight: math.unit(250, "lb"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/joey/front.svg",
  29003. extra: 1791 / 1537,
  29004. bottom: 28 / 1816
  29005. }
  29006. },
  29007. },
  29008. [
  29009. {
  29010. name: "Micro",
  29011. height: math.unit(3, "inches")
  29012. },
  29013. {
  29014. name: "Normal",
  29015. height: math.unit(7 + 1 / 12, "feet"),
  29016. default: true
  29017. },
  29018. ]
  29019. ))
  29020. characterMakers.push(() => makeCharacter(
  29021. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29022. {
  29023. front: {
  29024. height: math.unit(165, "cm"),
  29025. weight: math.unit(140, "lb"),
  29026. name: "Front",
  29027. image: {
  29028. source: "./media/characters/sam-evans/front.svg",
  29029. extra: 3417 / 3230,
  29030. bottom: 41.3 / 3417
  29031. }
  29032. },
  29033. frontSixTails: {
  29034. height: math.unit(165, "cm"),
  29035. weight: math.unit(140, "lb"),
  29036. name: "Front-six-tails",
  29037. image: {
  29038. source: "./media/characters/sam-evans/front-six-tails.svg",
  29039. extra: 3417 / 3230,
  29040. bottom: 41.3 / 3417
  29041. }
  29042. },
  29043. back: {
  29044. height: math.unit(165, "cm"),
  29045. weight: math.unit(140, "lb"),
  29046. name: "Back",
  29047. image: {
  29048. source: "./media/characters/sam-evans/back.svg",
  29049. extra: 3227 / 3032,
  29050. bottom: 6.8 / 3234
  29051. }
  29052. },
  29053. face: {
  29054. height: math.unit(0.68, "feet"),
  29055. name: "Face",
  29056. image: {
  29057. source: "./media/characters/sam-evans/face.svg"
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Normal",
  29064. height: math.unit(165, "cm"),
  29065. default: true
  29066. },
  29067. {
  29068. name: "Macro",
  29069. height: math.unit(100, "meters")
  29070. },
  29071. {
  29072. name: "Macro+",
  29073. height: math.unit(800, "meters")
  29074. },
  29075. {
  29076. name: "Macro++",
  29077. height: math.unit(3, "km")
  29078. },
  29079. {
  29080. name: "Macro+++",
  29081. height: math.unit(30, "km")
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(10, "feet"),
  29090. weight: math.unit(750, "lb"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/juliet-a/front.svg",
  29094. extra: 1766 / 1720,
  29095. bottom: 43 / 1809
  29096. }
  29097. },
  29098. back: {
  29099. height: math.unit(10, "feet"),
  29100. weight: math.unit(750, "lb"),
  29101. name: "Back",
  29102. image: {
  29103. source: "./media/characters/juliet-a/back.svg",
  29104. extra: 1781 / 1734,
  29105. bottom: 35 / 1810,
  29106. }
  29107. },
  29108. },
  29109. [
  29110. {
  29111. name: "Normal",
  29112. height: math.unit(10, "feet"),
  29113. default: true
  29114. },
  29115. {
  29116. name: "Dragon Form",
  29117. height: math.unit(250, "feet")
  29118. },
  29119. {
  29120. name: "Macro",
  29121. height: math.unit(1000, "feet")
  29122. },
  29123. {
  29124. name: "Megamacro",
  29125. height: math.unit(10000, "feet")
  29126. }
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29131. {
  29132. regular: {
  29133. height: math.unit(7 + 3 / 12, "feet"),
  29134. weight: math.unit(260, "lb"),
  29135. name: "Regular",
  29136. image: {
  29137. source: "./media/characters/wild/regular.svg",
  29138. extra: 97.45 / 92,
  29139. bottom: 6.8 / 104.3
  29140. }
  29141. },
  29142. biggums: {
  29143. height: math.unit(8 + 6 / 12, "feet"),
  29144. weight: math.unit(425, "lb"),
  29145. name: "Biggums",
  29146. image: {
  29147. source: "./media/characters/wild/biggums.svg",
  29148. extra: 97.45 / 92,
  29149. bottom: 7.5 / 132.34
  29150. }
  29151. },
  29152. mawRegular: {
  29153. height: math.unit(1.24, "feet"),
  29154. name: "Maw (Regular)",
  29155. image: {
  29156. source: "./media/characters/wild/maw.svg"
  29157. }
  29158. },
  29159. mawBiggums: {
  29160. height: math.unit(1.47, "feet"),
  29161. name: "Maw (Biggums)",
  29162. image: {
  29163. source: "./media/characters/wild/maw.svg"
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Normal",
  29170. height: math.unit(7 + 3 / 12, "feet"),
  29171. default: true
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29177. {
  29178. front: {
  29179. height: math.unit(2.5, "meters"),
  29180. weight: math.unit(200, "kg"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/vidar/front.svg",
  29184. extra: 2994 / 2795,
  29185. bottom: 56 / 3061
  29186. }
  29187. },
  29188. back: {
  29189. height: math.unit(2.5, "meters"),
  29190. weight: math.unit(200, "kg"),
  29191. name: "Back",
  29192. image: {
  29193. source: "./media/characters/vidar/back.svg",
  29194. extra: 3131 / 2928,
  29195. bottom: 13.5 / 3141.5
  29196. }
  29197. },
  29198. feral: {
  29199. height: math.unit(2.5, "meters"),
  29200. weight: math.unit(2000, "kg"),
  29201. name: "Feral",
  29202. image: {
  29203. source: "./media/characters/vidar/feral.svg",
  29204. extra: 2790 / 1765,
  29205. bottom: 6 / 2796
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Normal",
  29212. height: math.unit(2.5, "meters"),
  29213. default: true
  29214. },
  29215. {
  29216. name: "Macro",
  29217. height: math.unit(100, "meters")
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(5 + 9 / 12, "feet"),
  29226. weight: math.unit(120, "lb"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/ash/front.svg",
  29230. extra: 2189 / 1961,
  29231. bottom: 5.2 / 2194
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(5 + 9 / 12, "feet"),
  29239. default: true
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(9, "feet"),
  29248. weight: math.unit(10000, "lb"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/gygabite/front.svg",
  29252. bottom: 31.7 / 537.8,
  29253. extra: 505 / 370
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(9, "feet"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(12, "feet"),
  29270. weight: math.unit(4000, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/p0tat0/front.svg",
  29274. extra: 1065 / 921,
  29275. bottom: 55.7 / 1121.25
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(12, "feet"),
  29283. default: true
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29289. {
  29290. side: {
  29291. height: math.unit(6.5, "feet"),
  29292. weight: math.unit(800, "lb"),
  29293. name: "Side",
  29294. image: {
  29295. source: "./media/characters/dusk/side.svg",
  29296. extra: 615 / 373,
  29297. bottom: 53 / 664
  29298. }
  29299. },
  29300. sitting: {
  29301. height: math.unit(7, "feet"),
  29302. weight: math.unit(800, "lb"),
  29303. name: "Sitting",
  29304. image: {
  29305. source: "./media/characters/dusk/sitting.svg",
  29306. extra: 753 / 425,
  29307. bottom: 33 / 774
  29308. }
  29309. },
  29310. head: {
  29311. height: math.unit(6.1, "feet"),
  29312. name: "Head",
  29313. image: {
  29314. source: "./media/characters/dusk/head.svg"
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Normal",
  29321. height: math.unit(7, "feet"),
  29322. default: true
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29328. {
  29329. front: {
  29330. height: math.unit(15, "feet"),
  29331. weight: math.unit(7000, "lb"),
  29332. name: "Front",
  29333. image: {
  29334. source: "./media/characters/jay-direwolf/front.svg",
  29335. extra: 1810 / 1732,
  29336. bottom: 66 / 1892
  29337. }
  29338. },
  29339. },
  29340. [
  29341. {
  29342. name: "Normal",
  29343. height: math.unit(15, "feet"),
  29344. default: true
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29350. {
  29351. front: {
  29352. height: math.unit(4 + 9 / 12, "feet"),
  29353. weight: math.unit(130, "lb"),
  29354. name: "Front",
  29355. image: {
  29356. source: "./media/characters/anchovie/front.svg",
  29357. extra: 382 / 350,
  29358. bottom: 25 / 409
  29359. }
  29360. },
  29361. back: {
  29362. height: math.unit(4 + 9 / 12, "feet"),
  29363. weight: math.unit(130, "lb"),
  29364. name: "Back",
  29365. image: {
  29366. source: "./media/characters/anchovie/back.svg",
  29367. extra: 385 / 352,
  29368. bottom: 16.6 / 402
  29369. }
  29370. },
  29371. frontDressed: {
  29372. height: math.unit(4 + 9 / 12, "feet"),
  29373. weight: math.unit(130, "lb"),
  29374. name: "Front (Dressed)",
  29375. image: {
  29376. source: "./media/characters/anchovie/front-dressed.svg",
  29377. extra: 382 / 350,
  29378. bottom: 25 / 409
  29379. }
  29380. },
  29381. backDressed: {
  29382. height: math.unit(4 + 9 / 12, "feet"),
  29383. weight: math.unit(130, "lb"),
  29384. name: "Back (Dressed)",
  29385. image: {
  29386. source: "./media/characters/anchovie/back-dressed.svg",
  29387. extra: 385 / 352,
  29388. bottom: 16.6 / 402
  29389. }
  29390. },
  29391. },
  29392. [
  29393. {
  29394. name: "Micro",
  29395. height: math.unit(6.4, "inches")
  29396. },
  29397. {
  29398. name: "Normal",
  29399. height: math.unit(4 + 9 / 12, "feet"),
  29400. default: true
  29401. },
  29402. ]
  29403. ))
  29404. characterMakers.push(() => makeCharacter(
  29405. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29406. {
  29407. front: {
  29408. height: math.unit(2, "meters"),
  29409. weight: math.unit(180, "lb"),
  29410. name: "Front",
  29411. image: {
  29412. source: "./media/characters/acidrenamon/front.svg",
  29413. extra: 987 / 890,
  29414. bottom: 22.8 / 1009
  29415. }
  29416. },
  29417. back: {
  29418. height: math.unit(2, "meters"),
  29419. weight: math.unit(180, "lb"),
  29420. name: "Back",
  29421. image: {
  29422. source: "./media/characters/acidrenamon/back.svg",
  29423. extra: 983 / 891,
  29424. bottom: 8.4 / 992
  29425. }
  29426. },
  29427. head: {
  29428. height: math.unit(1.92, "feet"),
  29429. name: "Head",
  29430. image: {
  29431. source: "./media/characters/acidrenamon/head.svg"
  29432. }
  29433. },
  29434. rump: {
  29435. height: math.unit(1.72, "feet"),
  29436. name: "Rump",
  29437. image: {
  29438. source: "./media/characters/acidrenamon/rump.svg"
  29439. }
  29440. },
  29441. tail: {
  29442. height: math.unit(4.2, "feet"),
  29443. name: "Tail",
  29444. image: {
  29445. source: "./media/characters/acidrenamon/tail.svg"
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Normal",
  29452. height: math.unit(2, "meters"),
  29453. default: true
  29454. },
  29455. {
  29456. name: "Minimacro",
  29457. height: math.unit(7, "meters")
  29458. },
  29459. {
  29460. name: "Macro",
  29461. height: math.unit(200, "meters")
  29462. },
  29463. {
  29464. name: "Gigamacro",
  29465. height: math.unit(0.2, "earths")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(152, "feet"),
  29474. name: "Front",
  29475. image: {
  29476. source: "./media/characters/kenzie-lee/front.svg",
  29477. extra: 1869/1774,
  29478. bottom: 128/1997
  29479. }
  29480. },
  29481. side: {
  29482. height: math.unit(86, "feet"),
  29483. name: "Side",
  29484. image: {
  29485. source: "./media/characters/kenzie-lee/side.svg",
  29486. extra: 930/815,
  29487. bottom: 177/1107
  29488. }
  29489. },
  29490. paw: {
  29491. height: math.unit(15, "feet"),
  29492. name: "Paw",
  29493. image: {
  29494. source: "./media/characters/kenzie-lee/paw.svg"
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Kenzie Flea",
  29501. height: math.unit(2, "mm"),
  29502. default: true
  29503. },
  29504. {
  29505. name: "Micro",
  29506. height: math.unit(2, "inches")
  29507. },
  29508. {
  29509. name: "Normal",
  29510. height: math.unit(152, "feet")
  29511. },
  29512. {
  29513. name: "Megamacro",
  29514. height: math.unit(7, "miles")
  29515. },
  29516. {
  29517. name: "Gigamacro",
  29518. height: math.unit(8000, "miles")
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(6, "feet"),
  29527. name: "Front",
  29528. image: {
  29529. source: "./media/characters/withers/front.svg",
  29530. extra: 1935/1760,
  29531. bottom: 72/2007
  29532. }
  29533. },
  29534. back: {
  29535. height: math.unit(6, "feet"),
  29536. name: "Back",
  29537. image: {
  29538. source: "./media/characters/withers/back.svg",
  29539. extra: 1944/1792,
  29540. bottom: 12/1956
  29541. }
  29542. },
  29543. dressed: {
  29544. height: math.unit(6, "feet"),
  29545. name: "Dressed",
  29546. image: {
  29547. source: "./media/characters/withers/dressed.svg",
  29548. extra: 1937/1765,
  29549. bottom: 73/2010
  29550. }
  29551. },
  29552. phase1: {
  29553. height: math.unit(1.1, "feet"),
  29554. name: "Phase 1",
  29555. image: {
  29556. source: "./media/characters/withers/phase-1.svg",
  29557. extra: 1885/1232,
  29558. bottom: 0/1885
  29559. }
  29560. },
  29561. phase2: {
  29562. height: math.unit(1.05, "feet"),
  29563. name: "Phase 2",
  29564. image: {
  29565. source: "./media/characters/withers/phase-2.svg",
  29566. extra: 1792/1090,
  29567. bottom: 0/1792
  29568. }
  29569. },
  29570. partyWipe: {
  29571. height: math.unit(1.1, "feet"),
  29572. name: "Party Wipe",
  29573. image: {
  29574. source: "./media/characters/withers/party-wipe.svg",
  29575. extra: 1864/1207,
  29576. bottom: 0/1864
  29577. }
  29578. },
  29579. },
  29580. [
  29581. {
  29582. name: "Macro",
  29583. height: math.unit(167, "feet"),
  29584. default: true
  29585. },
  29586. {
  29587. name: "Megamacro",
  29588. height: math.unit(15, "miles")
  29589. }
  29590. ]
  29591. ))
  29592. characterMakers.push(() => makeCharacter(
  29593. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29594. {
  29595. front: {
  29596. height: math.unit(6 + 7 / 12, "feet"),
  29597. weight: math.unit(250, "lb"),
  29598. name: "Front",
  29599. image: {
  29600. source: "./media/characters/nemoskii/front.svg",
  29601. extra: 2270 / 1734,
  29602. bottom: 86 / 2354
  29603. }
  29604. },
  29605. back: {
  29606. height: math.unit(6 + 7 / 12, "feet"),
  29607. weight: math.unit(250, "lb"),
  29608. name: "Back",
  29609. image: {
  29610. source: "./media/characters/nemoskii/back.svg",
  29611. extra: 1845 / 1788,
  29612. bottom: 10.5 / 1852
  29613. }
  29614. },
  29615. head: {
  29616. height: math.unit(1.31, "feet"),
  29617. name: "Head",
  29618. image: {
  29619. source: "./media/characters/nemoskii/head.svg"
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Micro",
  29626. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29627. },
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(6 + 7 / 12, "feet"),
  29631. default: true
  29632. },
  29633. {
  29634. name: "Macro",
  29635. height: math.unit((6 + 7 / 12) * 150, "feet")
  29636. },
  29637. {
  29638. name: "Macro+",
  29639. height: math.unit((6 + 7 / 12) * 500, "feet")
  29640. },
  29641. {
  29642. name: "Megamacro",
  29643. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29644. },
  29645. ]
  29646. ))
  29647. characterMakers.push(() => makeCharacter(
  29648. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29649. {
  29650. front: {
  29651. height: math.unit(1, "mile"),
  29652. weight: math.unit(265261.9, "lb"),
  29653. name: "Front",
  29654. image: {
  29655. source: "./media/characters/shui/front.svg",
  29656. extra: 1633 / 1564,
  29657. bottom: 91.5 / 1726
  29658. }
  29659. },
  29660. },
  29661. [
  29662. {
  29663. name: "Macro",
  29664. height: math.unit(1, "mile"),
  29665. default: true
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29671. {
  29672. front: {
  29673. height: math.unit(12 + 6 / 12, "feet"),
  29674. weight: math.unit(1342, "lb"),
  29675. name: "Front",
  29676. image: {
  29677. source: "./media/characters/arokh-takakura/front.svg",
  29678. extra: 1089 / 1043,
  29679. bottom: 77.4 / 1176.7
  29680. }
  29681. },
  29682. back: {
  29683. height: math.unit(12 + 6 / 12, "feet"),
  29684. weight: math.unit(1342, "lb"),
  29685. name: "Back",
  29686. image: {
  29687. source: "./media/characters/arokh-takakura/back.svg",
  29688. extra: 1046 / 1019,
  29689. bottom: 102 / 1150
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Big",
  29696. height: math.unit(12 + 6 / 12, "feet"),
  29697. default: true
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29703. {
  29704. front: {
  29705. height: math.unit(5 + 6 / 12, "feet"),
  29706. weight: math.unit(150, "lb"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/theo/front.svg",
  29710. extra: 1184 / 1131,
  29711. bottom: 7.4 / 1191
  29712. }
  29713. },
  29714. },
  29715. [
  29716. {
  29717. name: "Micro",
  29718. height: math.unit(5, "inches")
  29719. },
  29720. {
  29721. name: "Normal",
  29722. height: math.unit(5 + 6 / 12, "feet"),
  29723. default: true
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(5 + 9 / 12, "feet"),
  29732. weight: math.unit(130, "lb"),
  29733. name: "Front",
  29734. image: {
  29735. source: "./media/characters/cecelia-swift/front.svg",
  29736. extra: 502 / 484,
  29737. bottom: 23 / 523
  29738. }
  29739. },
  29740. back: {
  29741. height: math.unit(5 + 9 / 12, "feet"),
  29742. weight: math.unit(130, "lb"),
  29743. name: "Back",
  29744. image: {
  29745. source: "./media/characters/cecelia-swift/back.svg",
  29746. extra: 499 / 485,
  29747. bottom: 12 / 511
  29748. }
  29749. },
  29750. head: {
  29751. height: math.unit(0.90, "feet"),
  29752. name: "Head",
  29753. image: {
  29754. source: "./media/characters/cecelia-swift/head.svg"
  29755. }
  29756. },
  29757. rump: {
  29758. height: math.unit(1.75, "feet"),
  29759. name: "Rump",
  29760. image: {
  29761. source: "./media/characters/cecelia-swift/rump.svg"
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Normal",
  29768. height: math.unit(5 + 9 / 12, "feet"),
  29769. default: true
  29770. },
  29771. {
  29772. name: "Big",
  29773. height: math.unit(50, "feet")
  29774. },
  29775. {
  29776. name: "Macro",
  29777. height: math.unit(100, "feet")
  29778. },
  29779. {
  29780. name: "Macro+",
  29781. height: math.unit(500, "feet")
  29782. },
  29783. {
  29784. name: "Macro++",
  29785. height: math.unit(1000, "feet")
  29786. },
  29787. ]
  29788. ))
  29789. characterMakers.push(() => makeCharacter(
  29790. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29791. {
  29792. front: {
  29793. height: math.unit(6, "feet"),
  29794. weight: math.unit(150, "lb"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/kaunan/front.svg",
  29798. extra: 2890 / 2523,
  29799. bottom: 49 / 2939
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Macro",
  29806. height: math.unit(150, "feet"),
  29807. default: true
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29813. {
  29814. dressed: {
  29815. height: math.unit(175, "cm"),
  29816. weight: math.unit(60, "kg"),
  29817. name: "Dressed",
  29818. image: {
  29819. source: "./media/characters/fei/dressed.svg",
  29820. extra: 1402/1278,
  29821. bottom: 27/1429
  29822. }
  29823. },
  29824. nude: {
  29825. height: math.unit(175, "cm"),
  29826. weight: math.unit(60, "kg"),
  29827. name: "Nude",
  29828. image: {
  29829. source: "./media/characters/fei/nude.svg",
  29830. extra: 1402/1278,
  29831. bottom: 27/1429
  29832. }
  29833. },
  29834. heels: {
  29835. height: math.unit(0.466, "feet"),
  29836. name: "Heels",
  29837. image: {
  29838. source: "./media/characters/fei/heels.svg",
  29839. extra: 156/152,
  29840. bottom: 28/184
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Mortal",
  29847. height: math.unit(175, "cm")
  29848. },
  29849. {
  29850. name: "Normal",
  29851. height: math.unit(3500, "m")
  29852. },
  29853. {
  29854. name: "Stroll",
  29855. height: math.unit(18.4, "km"),
  29856. default: true
  29857. },
  29858. {
  29859. name: "Showoff",
  29860. height: math.unit(175, "km")
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29866. {
  29867. front: {
  29868. height: math.unit(7, "feet"),
  29869. weight: math.unit(1000, "kg"),
  29870. name: "Front",
  29871. image: {
  29872. source: "./media/characters/edrax/front.svg",
  29873. extra: 2838 / 2550,
  29874. bottom: 130 / 2968
  29875. }
  29876. },
  29877. },
  29878. [
  29879. {
  29880. name: "Small",
  29881. height: math.unit(7, "feet")
  29882. },
  29883. {
  29884. name: "Normal",
  29885. height: math.unit(1500, "meters")
  29886. },
  29887. {
  29888. name: "Mega",
  29889. height: math.unit(12000000, "km"),
  29890. default: true
  29891. },
  29892. {
  29893. name: "Megamacro",
  29894. height: math.unit(10600000, "lightyears")
  29895. },
  29896. {
  29897. name: "Hypermacro",
  29898. height: math.unit(256, "yottameters")
  29899. },
  29900. ]
  29901. ))
  29902. characterMakers.push(() => makeCharacter(
  29903. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29904. {
  29905. front: {
  29906. height: math.unit(10, "feet"),
  29907. weight: math.unit(750, "lb"),
  29908. name: "Front",
  29909. image: {
  29910. source: "./media/characters/clove/front.svg",
  29911. extra: 1918/1751,
  29912. bottom: 52/1970
  29913. }
  29914. },
  29915. back: {
  29916. height: math.unit(10, "feet"),
  29917. weight: math.unit(750, "lb"),
  29918. name: "Back",
  29919. image: {
  29920. source: "./media/characters/clove/back.svg",
  29921. extra: 1912/1747,
  29922. bottom: 50/1962
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(10, "feet"),
  29930. default: true
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(4, "feet"),
  29939. weight: math.unit(50, "lb"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/alex-rabbit/front.svg",
  29943. extra: 507 / 458,
  29944. bottom: 18.5 / 527
  29945. }
  29946. },
  29947. back: {
  29948. height: math.unit(4, "feet"),
  29949. weight: math.unit(50, "lb"),
  29950. name: "Back",
  29951. image: {
  29952. source: "./media/characters/alex-rabbit/back.svg",
  29953. extra: 502 / 460,
  29954. bottom: 18.9 / 521
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(4, "feet"),
  29962. default: true
  29963. },
  29964. ]
  29965. ))
  29966. characterMakers.push(() => makeCharacter(
  29967. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29968. {
  29969. front: {
  29970. height: math.unit(1 + 3 / 12, "feet"),
  29971. weight: math.unit(80, "lb"),
  29972. name: "Front",
  29973. image: {
  29974. source: "./media/characters/zander-rose/front.svg",
  29975. extra: 916 / 797,
  29976. bottom: 17 / 933
  29977. }
  29978. },
  29979. back: {
  29980. height: math.unit(1 + 3 / 12, "feet"),
  29981. weight: math.unit(80, "lb"),
  29982. name: "Back",
  29983. image: {
  29984. source: "./media/characters/zander-rose/back.svg",
  29985. extra: 903 / 779,
  29986. bottom: 31 / 934
  29987. }
  29988. },
  29989. },
  29990. [
  29991. {
  29992. name: "Normal",
  29993. height: math.unit(1 + 3 / 12, "feet"),
  29994. default: true
  29995. },
  29996. ]
  29997. ))
  29998. characterMakers.push(() => makeCharacter(
  29999. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30000. {
  30001. anthro: {
  30002. height: math.unit(6, "feet"),
  30003. weight: math.unit(150, "lb"),
  30004. name: "Anthro",
  30005. image: {
  30006. source: "./media/characters/razz/anthro.svg",
  30007. extra: 1437 / 1343,
  30008. bottom: 48 / 1485
  30009. }
  30010. },
  30011. feral: {
  30012. height: math.unit(6, "feet"),
  30013. weight: math.unit(150, "lb"),
  30014. name: "Feral",
  30015. image: {
  30016. source: "./media/characters/razz/feral.svg",
  30017. extra: 2569 / 1385,
  30018. bottom: 95 / 2664
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(6, "feet"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(9 + 4 / 12, "feet"),
  30035. weight: math.unit(500, "lb"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/morrigan/front.svg",
  30039. extra: 2707 / 2579,
  30040. bottom: 156 / 2863
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Normal",
  30047. height: math.unit(9 + 4 / 12, "feet"),
  30048. default: true
  30049. },
  30050. ]
  30051. ))
  30052. characterMakers.push(() => makeCharacter(
  30053. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30054. {
  30055. front: {
  30056. height: math.unit(5, "stories"),
  30057. weight: math.unit(4000, "lb"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/jenene/front.svg",
  30061. extra: 1780 / 1710,
  30062. bottom: 57 / 1837
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Normal",
  30069. height: math.unit(5, "stories"),
  30070. default: true
  30071. },
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30076. {
  30077. taurSfw: {
  30078. height: math.unit(10, "meters"),
  30079. weight: math.unit(17500, "kg"),
  30080. name: "Taur",
  30081. image: {
  30082. source: "./media/characters/faey/taur-sfw.svg",
  30083. extra: 1200 / 968,
  30084. bottom: 41 / 1241
  30085. }
  30086. },
  30087. chestmaw: {
  30088. height: math.unit(2.01, "meters"),
  30089. name: "Chestmaw",
  30090. image: {
  30091. source: "./media/characters/faey/chestmaw.svg"
  30092. }
  30093. },
  30094. foot: {
  30095. height: math.unit(2.43, "meters"),
  30096. name: "Foot",
  30097. image: {
  30098. source: "./media/characters/faey/foot.svg"
  30099. }
  30100. },
  30101. jaws: {
  30102. height: math.unit(1.66, "meters"),
  30103. name: "Jaws",
  30104. image: {
  30105. source: "./media/characters/faey/jaws.svg"
  30106. }
  30107. },
  30108. tongues: {
  30109. height: math.unit(2.01, "meters"),
  30110. name: "Tongues",
  30111. image: {
  30112. source: "./media/characters/faey/tongues.svg"
  30113. }
  30114. },
  30115. },
  30116. [
  30117. {
  30118. name: "Small",
  30119. height: math.unit(10, "meters"),
  30120. default: true
  30121. },
  30122. {
  30123. name: "Big",
  30124. height: math.unit(500000, "km")
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30130. {
  30131. front: {
  30132. height: math.unit(7, "feet"),
  30133. weight: math.unit(275, "lb"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/roku/front.svg",
  30137. extra: 903 / 878,
  30138. bottom: 37 / 940
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Normal",
  30145. height: math.unit(7, "feet"),
  30146. default: true
  30147. },
  30148. {
  30149. name: "Macro",
  30150. height: math.unit(500, "feet")
  30151. },
  30152. {
  30153. name: "Megamacro",
  30154. height: math.unit(200, "miles")
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30160. {
  30161. front: {
  30162. height: math.unit(6 + 2 / 12, "feet"),
  30163. weight: math.unit(150, "lb"),
  30164. name: "Front",
  30165. image: {
  30166. source: "./media/characters/lira/front.svg",
  30167. extra: 1727 / 1605,
  30168. bottom: 26 / 1753
  30169. }
  30170. },
  30171. back: {
  30172. height: math.unit(6 + 2 / 12, "feet"),
  30173. weight: math.unit(150, "lb"),
  30174. name: "Back",
  30175. image: {
  30176. source: "./media/characters/lira/back.svg",
  30177. extra: 1713/1621,
  30178. bottom: 20/1733
  30179. }
  30180. },
  30181. hand: {
  30182. height: math.unit(0.75, "feet"),
  30183. name: "Hand",
  30184. image: {
  30185. source: "./media/characters/lira/hand.svg"
  30186. }
  30187. },
  30188. maw: {
  30189. height: math.unit(0.65, "feet"),
  30190. name: "Maw",
  30191. image: {
  30192. source: "./media/characters/lira/maw.svg"
  30193. }
  30194. },
  30195. pawDigi: {
  30196. height: math.unit(1.6, "feet"),
  30197. name: "Paw Digi",
  30198. image: {
  30199. source: "./media/characters/lira/paw-digi.svg"
  30200. }
  30201. },
  30202. pawPlanti: {
  30203. height: math.unit(1.4, "feet"),
  30204. name: "Paw Planti",
  30205. image: {
  30206. source: "./media/characters/lira/paw-planti.svg"
  30207. }
  30208. },
  30209. },
  30210. [
  30211. {
  30212. name: "Normal",
  30213. height: math.unit(6 + 2 / 12, "feet"),
  30214. default: true
  30215. },
  30216. {
  30217. name: "Macro",
  30218. height: math.unit(100, "feet")
  30219. },
  30220. {
  30221. name: "Macro²",
  30222. height: math.unit(1600, "feet")
  30223. },
  30224. {
  30225. name: "Planetary",
  30226. height: math.unit(20, "earths")
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30232. {
  30233. front: {
  30234. height: math.unit(6, "feet"),
  30235. weight: math.unit(150, "lb"),
  30236. name: "Front",
  30237. image: {
  30238. source: "./media/characters/hadjet/front.svg",
  30239. extra: 1480 / 1346,
  30240. bottom: 26 / 1506
  30241. }
  30242. },
  30243. frontNsfw: {
  30244. height: math.unit(6, "feet"),
  30245. weight: math.unit(150, "lb"),
  30246. name: "Front (NSFW)",
  30247. image: {
  30248. source: "./media/characters/hadjet/front-nsfw.svg",
  30249. extra: 1440 / 1358,
  30250. bottom: 52 / 1492
  30251. }
  30252. },
  30253. },
  30254. [
  30255. {
  30256. name: "Macro",
  30257. height: math.unit(10, "stories"),
  30258. default: true
  30259. },
  30260. {
  30261. name: "Megamacro",
  30262. height: math.unit(1.5, "miles")
  30263. },
  30264. {
  30265. name: "Megamacro+",
  30266. height: math.unit(5, "miles")
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30272. {
  30273. side: {
  30274. height: math.unit(106, "feet"),
  30275. weight: math.unit(500, "tonnes"),
  30276. name: "Side",
  30277. image: {
  30278. source: "./media/characters/kodran/side.svg",
  30279. extra: 553 / 480,
  30280. bottom: 33 / 586
  30281. }
  30282. },
  30283. front: {
  30284. height: math.unit(132, "feet"),
  30285. weight: math.unit(500, "tonnes"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/kodran/front.svg",
  30289. extra: 667 / 643,
  30290. bottom: 42 / 709
  30291. }
  30292. },
  30293. flying: {
  30294. height: math.unit(350, "feet"),
  30295. weight: math.unit(500, "tonnes"),
  30296. name: "Flying",
  30297. image: {
  30298. source: "./media/characters/kodran/flying.svg"
  30299. }
  30300. },
  30301. foot: {
  30302. height: math.unit(33, "feet"),
  30303. name: "Foot",
  30304. image: {
  30305. source: "./media/characters/kodran/foot.svg"
  30306. }
  30307. },
  30308. footFront: {
  30309. height: math.unit(19, "feet"),
  30310. name: "Foot (Front)",
  30311. image: {
  30312. source: "./media/characters/kodran/foot-front.svg",
  30313. extra: 261 / 261,
  30314. bottom: 91 / 352
  30315. }
  30316. },
  30317. headFront: {
  30318. height: math.unit(53, "feet"),
  30319. name: "Head (Front)",
  30320. image: {
  30321. source: "./media/characters/kodran/head-front.svg"
  30322. }
  30323. },
  30324. headSide: {
  30325. height: math.unit(65, "feet"),
  30326. name: "Head (Side)",
  30327. image: {
  30328. source: "./media/characters/kodran/head-side.svg"
  30329. }
  30330. },
  30331. throat: {
  30332. height: math.unit(79, "feet"),
  30333. name: "Throat",
  30334. image: {
  30335. source: "./media/characters/kodran/throat.svg"
  30336. }
  30337. },
  30338. },
  30339. [
  30340. {
  30341. name: "Large",
  30342. height: math.unit(106, "feet"),
  30343. default: true
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30349. {
  30350. side: {
  30351. height: math.unit(11, "feet"),
  30352. weight: math.unit(150, "lb"),
  30353. name: "Side",
  30354. image: {
  30355. source: "./media/characters/pyxaron/side.svg",
  30356. extra: 305 / 195,
  30357. bottom: 17 / 322
  30358. }
  30359. },
  30360. },
  30361. [
  30362. {
  30363. name: "Normal",
  30364. height: math.unit(11, "feet"),
  30365. default: true
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30371. {
  30372. front: {
  30373. height: math.unit(6, "feet"),
  30374. weight: math.unit(150, "lb"),
  30375. name: "Front",
  30376. image: {
  30377. source: "./media/characters/meep/front.svg",
  30378. extra: 88 / 80,
  30379. bottom: 6 / 94
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Fun Sized",
  30386. height: math.unit(2, "inches"),
  30387. default: true
  30388. },
  30389. {
  30390. name: "Friend Sized",
  30391. height: math.unit(8, "inches")
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30397. {
  30398. front: {
  30399. height: math.unit(15, "feet"),
  30400. weight: math.unit(2500, "lb"),
  30401. name: "Front",
  30402. image: {
  30403. source: "./media/characters/holly-rabbit/front.svg",
  30404. extra: 1433 / 1233,
  30405. bottom: 125 / 1558
  30406. }
  30407. },
  30408. dick: {
  30409. height: math.unit(4.6, "feet"),
  30410. name: "Dick",
  30411. image: {
  30412. source: "./media/characters/holly-rabbit/dick.svg"
  30413. }
  30414. },
  30415. },
  30416. [
  30417. {
  30418. name: "Normal",
  30419. height: math.unit(15, "feet"),
  30420. default: true
  30421. },
  30422. {
  30423. name: "Macro",
  30424. height: math.unit(250, "feet")
  30425. },
  30426. {
  30427. name: "Macro+",
  30428. height: math.unit(2500, "feet")
  30429. },
  30430. ]
  30431. ))
  30432. characterMakers.push(() => makeCharacter(
  30433. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30434. {
  30435. front: {
  30436. height: math.unit(3.02, "meters"),
  30437. weight: math.unit(500, "kg"),
  30438. name: "Front",
  30439. image: {
  30440. source: "./media/characters/drena/front.svg",
  30441. extra: 282 / 243,
  30442. bottom: 8 / 290
  30443. }
  30444. },
  30445. side: {
  30446. height: math.unit(3.02, "meters"),
  30447. weight: math.unit(500, "kg"),
  30448. name: "Side",
  30449. image: {
  30450. source: "./media/characters/drena/side.svg",
  30451. extra: 280 / 245,
  30452. bottom: 10 / 290
  30453. }
  30454. },
  30455. back: {
  30456. height: math.unit(3.02, "meters"),
  30457. weight: math.unit(500, "kg"),
  30458. name: "Back",
  30459. image: {
  30460. source: "./media/characters/drena/back.svg",
  30461. extra: 278 / 243,
  30462. bottom: 2 / 280
  30463. }
  30464. },
  30465. foot: {
  30466. height: math.unit(0.75, "meters"),
  30467. name: "Foot",
  30468. image: {
  30469. source: "./media/characters/drena/foot.svg"
  30470. }
  30471. },
  30472. maw: {
  30473. height: math.unit(0.82, "meters"),
  30474. name: "Maw",
  30475. image: {
  30476. source: "./media/characters/drena/maw.svg"
  30477. }
  30478. },
  30479. eating: {
  30480. height: math.unit(0.75, "meters"),
  30481. name: "Eating",
  30482. image: {
  30483. source: "./media/characters/drena/eating.svg"
  30484. }
  30485. },
  30486. rump: {
  30487. height: math.unit(0.93, "meters"),
  30488. name: "Rump",
  30489. image: {
  30490. source: "./media/characters/drena/rump.svg"
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Normal",
  30497. height: math.unit(3.02, "meters"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30504. {
  30505. front: {
  30506. height: math.unit(6 + 4 / 12, "feet"),
  30507. weight: math.unit(250, "lb"),
  30508. name: "Front",
  30509. image: {
  30510. source: "./media/characters/remmyzilla/front.svg",
  30511. extra: 4033 / 3588,
  30512. bottom: 123 / 4156
  30513. }
  30514. },
  30515. back: {
  30516. height: math.unit(6 + 4 / 12, "feet"),
  30517. weight: math.unit(250, "lb"),
  30518. name: "Back",
  30519. image: {
  30520. source: "./media/characters/remmyzilla/back.svg",
  30521. extra: 2687 / 2555,
  30522. bottom: 48 / 2735
  30523. }
  30524. },
  30525. paw: {
  30526. height: math.unit(1.73, "feet"),
  30527. name: "Paw",
  30528. image: {
  30529. source: "./media/characters/remmyzilla/paw.svg"
  30530. },
  30531. extraAttributes: {
  30532. "toeSize": {
  30533. name: "Toe Size",
  30534. power: 2,
  30535. type: "area",
  30536. base: math.unit(0.0035, "m^2")
  30537. },
  30538. "padSize": {
  30539. name: "Pad Size",
  30540. power: 2,
  30541. type: "area",
  30542. base: math.unit(0.015, "m^2")
  30543. },
  30544. "pawsize": {
  30545. name: "Paw Size",
  30546. power: 2,
  30547. type: "area",
  30548. base: math.unit(0.072, "m^2")
  30549. },
  30550. }
  30551. },
  30552. maw: {
  30553. height: math.unit(1.73, "feet"),
  30554. name: "Maw",
  30555. image: {
  30556. source: "./media/characters/remmyzilla/maw.svg"
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Normal",
  30563. height: math.unit(6 + 4 / 12, "feet")
  30564. },
  30565. {
  30566. name: "Minimacro",
  30567. height: math.unit(12 + 8 / 12, "feet")
  30568. },
  30569. {
  30570. name: "Normal",
  30571. height: math.unit(640, "feet"),
  30572. default: true
  30573. },
  30574. {
  30575. name: "Megamacro",
  30576. height: math.unit(6400, "feet")
  30577. },
  30578. {
  30579. name: "Gigamacro",
  30580. height: math.unit(64000, "miles")
  30581. },
  30582. ]
  30583. ))
  30584. characterMakers.push(() => makeCharacter(
  30585. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30586. {
  30587. front: {
  30588. height: math.unit(2.5, "meters"),
  30589. weight: math.unit(300, "lb"),
  30590. name: "Front",
  30591. image: {
  30592. source: "./media/characters/lawrence/front.svg",
  30593. extra: 357 / 335,
  30594. bottom: 30 / 387
  30595. }
  30596. },
  30597. back: {
  30598. height: math.unit(2.5, "meters"),
  30599. weight: math.unit(300, "lb"),
  30600. name: "Back",
  30601. image: {
  30602. source: "./media/characters/lawrence/back.svg",
  30603. extra: 357 / 338,
  30604. bottom: 16 / 373
  30605. }
  30606. },
  30607. head: {
  30608. height: math.unit(0.9, "meter"),
  30609. name: "Head",
  30610. image: {
  30611. source: "./media/characters/lawrence/head.svg"
  30612. }
  30613. },
  30614. maw: {
  30615. height: math.unit(0.7, "meter"),
  30616. name: "Maw",
  30617. image: {
  30618. source: "./media/characters/lawrence/maw.svg"
  30619. }
  30620. },
  30621. footBottom: {
  30622. height: math.unit(0.5, "meter"),
  30623. name: "Foot (Bottom)",
  30624. image: {
  30625. source: "./media/characters/lawrence/foot-bottom.svg"
  30626. }
  30627. },
  30628. footTop: {
  30629. height: math.unit(0.5, "meter"),
  30630. name: "Foot (Top)",
  30631. image: {
  30632. source: "./media/characters/lawrence/foot-top.svg"
  30633. }
  30634. },
  30635. },
  30636. [
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(2.5, "meters"),
  30640. default: true
  30641. },
  30642. {
  30643. name: "Macro",
  30644. height: math.unit(95, "meters")
  30645. },
  30646. {
  30647. name: "Megamacro",
  30648. height: math.unit(150, "km")
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30654. {
  30655. front: {
  30656. height: math.unit(4.2, "meters"),
  30657. name: "Front",
  30658. image: {
  30659. source: "./media/characters/sydney/front.svg",
  30660. extra: 1323 / 1277,
  30661. bottom: 111 / 1434
  30662. }
  30663. },
  30664. },
  30665. [
  30666. {
  30667. name: "Normal",
  30668. height: math.unit(4.2, "meters"),
  30669. default: true
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30675. {
  30676. back: {
  30677. height: math.unit(201, "feet"),
  30678. name: "Back",
  30679. image: {
  30680. source: "./media/characters/jessica/back.svg",
  30681. extra: 273 / 259,
  30682. bottom: 7 / 280
  30683. }
  30684. },
  30685. },
  30686. [
  30687. {
  30688. name: "Normal",
  30689. height: math.unit(201, "feet"),
  30690. default: true
  30691. },
  30692. {
  30693. name: "Megamacro",
  30694. height: math.unit(8, "miles")
  30695. },
  30696. ]
  30697. ))
  30698. characterMakers.push(() => makeCharacter(
  30699. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30700. {
  30701. side: {
  30702. height: math.unit(5.6, "m"),
  30703. weight: math.unit(8000, "kg"),
  30704. name: "Side",
  30705. image: {
  30706. source: "./media/characters/victoria/side.svg",
  30707. extra: 1542/1229,
  30708. bottom: 124/1666
  30709. }
  30710. },
  30711. maw: {
  30712. height: math.unit(7.14, "feet"),
  30713. name: "Maw",
  30714. image: {
  30715. source: "./media/characters/victoria/maw.svg"
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(5.6, "m"),
  30723. default: true
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30729. {
  30730. front: {
  30731. height: math.unit(5 + 6 / 12, "feet"),
  30732. name: "Front",
  30733. image: {
  30734. source: "./media/characters/cat/front.svg",
  30735. extra: 1449/1295,
  30736. bottom: 34/1483
  30737. },
  30738. form: "cat",
  30739. default: true
  30740. },
  30741. back: {
  30742. height: math.unit(5 + 6 / 12, "feet"),
  30743. name: "Back",
  30744. image: {
  30745. source: "./media/characters/cat/back.svg",
  30746. extra: 1466/1301,
  30747. bottom: 19/1485
  30748. },
  30749. form: "cat"
  30750. },
  30751. taur: {
  30752. height: math.unit(7, "feet"),
  30753. name: "Taur",
  30754. image: {
  30755. source: "./media/characters/cat/taur.svg",
  30756. extra: 1389/1233,
  30757. bottom: 83/1472
  30758. },
  30759. form: "taur",
  30760. default: true
  30761. },
  30762. lucarioFront: {
  30763. height: math.unit(4, "feet"),
  30764. name: "Lucario (Front)",
  30765. image: {
  30766. source: "./media/characters/cat/lucario-front.svg",
  30767. extra: 1149/1019,
  30768. bottom: 84/1233
  30769. },
  30770. form: "lucario",
  30771. default: true
  30772. },
  30773. lucarioBack: {
  30774. height: math.unit(4, "feet"),
  30775. name: "Lucario (Back)",
  30776. image: {
  30777. source: "./media/characters/cat/lucario-back.svg",
  30778. extra: 1190/1059,
  30779. bottom: 33/1223
  30780. },
  30781. form: "lucario"
  30782. },
  30783. megaLucario: {
  30784. height: math.unit(4, "feet"),
  30785. name: "Mega Lucario",
  30786. image: {
  30787. source: "./media/characters/cat/mega-lucario.svg",
  30788. extra: 1515 / 1319,
  30789. bottom: 63 / 1578
  30790. },
  30791. form: "lucario"
  30792. },
  30793. nickit: {
  30794. height: math.unit(2, "feet"),
  30795. name: "Nickit",
  30796. image: {
  30797. source: "./media/characters/cat/nickit.svg",
  30798. extra: 1980 / 1585,
  30799. bottom: 102 / 2082
  30800. },
  30801. form: "nickit",
  30802. default: true
  30803. },
  30804. lopunnyFront: {
  30805. height: math.unit(5, "feet"),
  30806. name: "Lopunny (Front)",
  30807. image: {
  30808. source: "./media/characters/cat/lopunny-front.svg",
  30809. extra: 1782 / 1469,
  30810. bottom: 38 / 1820
  30811. },
  30812. form: "lopunny",
  30813. default: true
  30814. },
  30815. lopunnyBack: {
  30816. height: math.unit(5, "feet"),
  30817. name: "Lopunny (Back)",
  30818. image: {
  30819. source: "./media/characters/cat/lopunny-back.svg",
  30820. extra: 1660 / 1490,
  30821. bottom: 25 / 1685
  30822. },
  30823. form: "lopunny"
  30824. },
  30825. },
  30826. [
  30827. {
  30828. name: "Really small",
  30829. height: math.unit(1, "nm")
  30830. },
  30831. {
  30832. name: "Micro",
  30833. height: math.unit(5, "inches")
  30834. },
  30835. {
  30836. name: "Normal",
  30837. height: math.unit(5 + 6 / 12, "feet"),
  30838. default: true
  30839. },
  30840. {
  30841. name: "Macro",
  30842. height: math.unit(50, "feet")
  30843. },
  30844. {
  30845. name: "Macro+",
  30846. height: math.unit(150, "feet")
  30847. },
  30848. {
  30849. name: "Megamacro",
  30850. height: math.unit(100, "miles")
  30851. },
  30852. ]
  30853. ))
  30854. characterMakers.push(() => makeCharacter(
  30855. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30856. {
  30857. front: {
  30858. height: math.unit(63.4, "meters"),
  30859. weight: math.unit(3.28349e+6, "kilograms"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/kirina-violet/front.svg",
  30863. extra: 2812 / 2725,
  30864. bottom: 0 / 2812
  30865. }
  30866. },
  30867. back: {
  30868. height: math.unit(63.4, "meters"),
  30869. weight: math.unit(3.28349e+6, "kilograms"),
  30870. name: "Back",
  30871. image: {
  30872. source: "./media/characters/kirina-violet/back.svg",
  30873. extra: 2812 / 2725,
  30874. bottom: 0 / 2812
  30875. }
  30876. },
  30877. mouth: {
  30878. height: math.unit(4.35, "meters"),
  30879. name: "Mouth",
  30880. image: {
  30881. source: "./media/characters/kirina-violet/mouth.svg"
  30882. }
  30883. },
  30884. paw: {
  30885. height: math.unit(5.6, "meters"),
  30886. name: "Paw",
  30887. image: {
  30888. source: "./media/characters/kirina-violet/paw.svg"
  30889. }
  30890. },
  30891. tail: {
  30892. height: math.unit(18, "meters"),
  30893. name: "Tail",
  30894. image: {
  30895. source: "./media/characters/kirina-violet/tail.svg"
  30896. }
  30897. },
  30898. },
  30899. [
  30900. {
  30901. name: "Macro",
  30902. height: math.unit(63.4, "meters"),
  30903. default: true
  30904. },
  30905. ]
  30906. ))
  30907. characterMakers.push(() => makeCharacter(
  30908. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30909. {
  30910. front: {
  30911. height: math.unit(75, "feet"),
  30912. name: "Front",
  30913. image: {
  30914. source: "./media/characters/cat-gigachu/front.svg",
  30915. extra: 1239/1027,
  30916. bottom: 32/1271
  30917. }
  30918. },
  30919. back: {
  30920. height: math.unit(75, "feet"),
  30921. name: "Back",
  30922. image: {
  30923. source: "./media/characters/cat-gigachu/back.svg",
  30924. extra: 1229/1030,
  30925. bottom: 9/1238
  30926. }
  30927. },
  30928. },
  30929. [
  30930. {
  30931. name: "Dynamax",
  30932. height: math.unit(75, "feet"),
  30933. default: true
  30934. },
  30935. ]
  30936. ))
  30937. characterMakers.push(() => makeCharacter(
  30938. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30939. {
  30940. front: {
  30941. height: math.unit(6, "feet"),
  30942. weight: math.unit(150, "lb"),
  30943. name: "Front",
  30944. image: {
  30945. source: "./media/characters/sfaiyan/front.svg",
  30946. extra: 999 / 978,
  30947. bottom: 5 / 1004
  30948. }
  30949. },
  30950. },
  30951. [
  30952. {
  30953. name: "Normal",
  30954. height: math.unit(1.82, "meters")
  30955. },
  30956. {
  30957. name: "Giant",
  30958. height: math.unit(2.27, "km"),
  30959. default: true
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(179, "cm"),
  30968. weight: math.unit(100, "kg"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/raunehkeli/front.svg",
  30972. extra: 1934 / 1926,
  30973. bottom: 0 / 1934
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(179, "cm")
  30981. },
  30982. {
  30983. name: "Maximum",
  30984. height: math.unit(575, "meters"),
  30985. default: true
  30986. },
  30987. ]
  30988. ))
  30989. characterMakers.push(() => makeCharacter(
  30990. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30991. {
  30992. front: {
  30993. height: math.unit(6, "feet"),
  30994. weight: math.unit(150, "lb"),
  30995. name: "Front",
  30996. image: {
  30997. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30998. extra: 2625 / 2518,
  30999. bottom: 60 / 2685
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Normal",
  31006. height: math.unit(6 + 2 / 12, "feet")
  31007. },
  31008. {
  31009. name: "Macro",
  31010. height: math.unit(1180, "feet"),
  31011. default: true
  31012. },
  31013. ]
  31014. ))
  31015. characterMakers.push(() => makeCharacter(
  31016. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31017. {
  31018. front: {
  31019. height: math.unit(5 + 6 / 12, "feet"),
  31020. weight: math.unit(108, "lb"),
  31021. name: "Front",
  31022. image: {
  31023. source: "./media/characters/lilith-zott/front.svg",
  31024. extra: 2510 / 2238,
  31025. bottom: 100 / 2610
  31026. }
  31027. },
  31028. frontDressed: {
  31029. height: math.unit(5 + 6 / 12, "feet"),
  31030. weight: math.unit(108, "lb"),
  31031. name: "Front (Dressed)",
  31032. image: {
  31033. source: "./media/characters/lilith-zott/front-dressed.svg",
  31034. extra: 2510 / 2238,
  31035. bottom: 100 / 2610
  31036. }
  31037. },
  31038. },
  31039. [
  31040. {
  31041. name: "Normal",
  31042. height: math.unit(5 + 6 / 12, "feet")
  31043. },
  31044. {
  31045. name: "Macro",
  31046. height: math.unit(1030, "feet"),
  31047. default: true
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31053. {
  31054. front: {
  31055. height: math.unit(6, "feet"),
  31056. weight: math.unit(150, "lb"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31060. extra: 2567 / 2435,
  31061. bottom: 39 / 2606
  31062. }
  31063. },
  31064. frontSuper: {
  31065. height: math.unit(6, "feet"),
  31066. name: "Front (Super)",
  31067. image: {
  31068. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31069. extra: 2567 / 2435,
  31070. bottom: 39 / 2606
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Normal",
  31077. height: math.unit(5 + 10 / 12, "feet")
  31078. },
  31079. {
  31080. name: "Macro",
  31081. height: math.unit(1100, "feet"),
  31082. default: true
  31083. },
  31084. ]
  31085. ))
  31086. characterMakers.push(() => makeCharacter(
  31087. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31088. {
  31089. front: {
  31090. height: math.unit(100, "miles"),
  31091. name: "Front",
  31092. image: {
  31093. source: "./media/characters/sona/front.svg",
  31094. extra: 2433 / 2201,
  31095. bottom: 53 / 2486
  31096. }
  31097. },
  31098. foot: {
  31099. height: math.unit(16.1, "miles"),
  31100. name: "Foot",
  31101. image: {
  31102. source: "./media/characters/sona/foot.svg"
  31103. }
  31104. },
  31105. },
  31106. [
  31107. {
  31108. name: "Macro",
  31109. height: math.unit(100, "miles"),
  31110. default: true
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31116. {
  31117. front: {
  31118. height: math.unit(6, "feet"),
  31119. weight: math.unit(150, "lb"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/bailey/front.svg",
  31123. extra: 1778 / 1724,
  31124. bottom: 30 / 1808
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Micro",
  31131. height: math.unit(4, "inches")
  31132. },
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(5 + 5 / 12, "feet"),
  31136. default: true
  31137. },
  31138. {
  31139. name: "Macro",
  31140. height: math.unit(250, "feet")
  31141. },
  31142. {
  31143. name: "Megamacro",
  31144. height: math.unit(100, "miles")
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31150. {
  31151. front: {
  31152. height: math.unit(5 + 2 / 12, "feet"),
  31153. weight: math.unit(120, "lb"),
  31154. name: "Front",
  31155. image: {
  31156. source: "./media/characters/snaps/front.svg",
  31157. extra: 2370 / 2177,
  31158. bottom: 48 / 2418
  31159. }
  31160. },
  31161. back: {
  31162. height: math.unit(5 + 2 / 12, "feet"),
  31163. weight: math.unit(120, "lb"),
  31164. name: "Back",
  31165. image: {
  31166. source: "./media/characters/snaps/back.svg",
  31167. extra: 2408 / 2258,
  31168. bottom: 15 / 2423
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "Micro",
  31175. height: math.unit(9, "inches")
  31176. },
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(5 + 2 / 12, "feet"),
  31180. default: true
  31181. },
  31182. {
  31183. name: "Mini Macro",
  31184. height: math.unit(10, "feet")
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(1.8, "meters"),
  31193. weight: math.unit(85, "kg"),
  31194. name: "Front",
  31195. image: {
  31196. source: "./media/characters/azteck/front.svg",
  31197. extra: 2815 / 2625,
  31198. bottom: 89 / 2904
  31199. }
  31200. },
  31201. back: {
  31202. height: math.unit(1.8, "meters"),
  31203. weight: math.unit(85, "kg"),
  31204. name: "Back",
  31205. image: {
  31206. source: "./media/characters/azteck/back.svg",
  31207. extra: 2856 / 2648,
  31208. bottom: 85 / 2941
  31209. }
  31210. },
  31211. frontDressed: {
  31212. height: math.unit(1.8, "meters"),
  31213. weight: math.unit(85, "kg"),
  31214. name: "Front (Dressed)",
  31215. image: {
  31216. source: "./media/characters/azteck/front-dressed.svg",
  31217. extra: 2147 / 2003,
  31218. bottom: 68 / 2215
  31219. }
  31220. },
  31221. head: {
  31222. height: math.unit(0.47, "meters"),
  31223. weight: math.unit(85, "kg"),
  31224. name: "Head",
  31225. image: {
  31226. source: "./media/characters/azteck/head.svg"
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Bite sized",
  31233. height: math.unit(16, "cm")
  31234. },
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(1.8, "meters"),
  31238. default: true
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(150, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/pidge/front.svg",
  31251. extra: 1936/1820,
  31252. bottom: 0/1936
  31253. }
  31254. },
  31255. back: {
  31256. height: math.unit(6, "feet"),
  31257. weight: math.unit(150, "lb"),
  31258. name: "Back",
  31259. image: {
  31260. source: "./media/characters/pidge/back.svg",
  31261. extra: 1938/1843,
  31262. bottom: 0/1938
  31263. }
  31264. },
  31265. casual: {
  31266. height: math.unit(6, "feet"),
  31267. weight: math.unit(150, "lb"),
  31268. name: "Casual",
  31269. image: {
  31270. source: "./media/characters/pidge/casual.svg",
  31271. extra: 1936/1820,
  31272. bottom: 0/1936
  31273. }
  31274. },
  31275. tech: {
  31276. height: math.unit(6, "feet"),
  31277. weight: math.unit(150, "lb"),
  31278. name: "Tech",
  31279. image: {
  31280. source: "./media/characters/pidge/tech.svg",
  31281. extra: 1802/1682,
  31282. bottom: 0/1802
  31283. }
  31284. },
  31285. head: {
  31286. height: math.unit(1.61, "feet"),
  31287. name: "Head",
  31288. image: {
  31289. source: "./media/characters/pidge/head.svg"
  31290. }
  31291. },
  31292. collar: {
  31293. height: math.unit(0.82, "feet"),
  31294. name: "Collar",
  31295. image: {
  31296. source: "./media/characters/pidge/collar.svg"
  31297. }
  31298. },
  31299. },
  31300. [
  31301. {
  31302. name: "Macro",
  31303. height: math.unit(2, "mile"),
  31304. default: true
  31305. },
  31306. {
  31307. name: "PUPPY",
  31308. height: math.unit(20, "miles")
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(6, "feet"),
  31317. weight: math.unit(150, "lb"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/en/front.svg",
  31321. extra: 1697 / 1563,
  31322. bottom: 103 / 1800
  31323. }
  31324. },
  31325. back: {
  31326. height: math.unit(6, "feet"),
  31327. weight: math.unit(150, "lb"),
  31328. name: "Back",
  31329. image: {
  31330. source: "./media/characters/en/back.svg",
  31331. extra: 1700 / 1570,
  31332. bottom: 51 / 1751
  31333. }
  31334. },
  31335. frontDressed: {
  31336. height: math.unit(6, "feet"),
  31337. weight: math.unit(150, "lb"),
  31338. name: "Front (Dressed)",
  31339. image: {
  31340. source: "./media/characters/en/front-dressed.svg",
  31341. extra: 1697 / 1563,
  31342. bottom: 103 / 1800
  31343. }
  31344. },
  31345. backDressed: {
  31346. height: math.unit(6, "feet"),
  31347. weight: math.unit(150, "lb"),
  31348. name: "Back (Dressed)",
  31349. image: {
  31350. source: "./media/characters/en/back-dressed.svg",
  31351. extra: 1700 / 1570,
  31352. bottom: 51 / 1751
  31353. }
  31354. },
  31355. },
  31356. [
  31357. {
  31358. name: "Macro",
  31359. height: math.unit(210, "feet"),
  31360. default: true
  31361. },
  31362. ]
  31363. ))
  31364. characterMakers.push(() => makeCharacter(
  31365. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31366. {
  31367. front: {
  31368. height: math.unit(6, "feet"),
  31369. weight: math.unit(150, "lb"),
  31370. name: "Front",
  31371. image: {
  31372. source: "./media/characters/haze-orris/front.svg",
  31373. extra: 3975 / 3525,
  31374. bottom: 137 / 4112
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Micro",
  31381. height: math.unit(150, "mm"),
  31382. default: true
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31388. {
  31389. front: {
  31390. height: math.unit(6, "feet"),
  31391. weight: math.unit(150, "lb"),
  31392. name: "Front",
  31393. image: {
  31394. source: "./media/characters/casselene-yaro/front.svg",
  31395. extra: 4721 / 4541,
  31396. bottom: 82 / 4803
  31397. }
  31398. },
  31399. back: {
  31400. height: math.unit(6, "feet"),
  31401. weight: math.unit(150, "lb"),
  31402. name: "Back",
  31403. image: {
  31404. source: "./media/characters/casselene-yaro/back.svg",
  31405. extra: 4569 / 4377,
  31406. bottom: 69 / 4638
  31407. }
  31408. },
  31409. dressed: {
  31410. height: math.unit(6, "feet"),
  31411. weight: math.unit(150, "lb"),
  31412. name: "Dressed",
  31413. image: {
  31414. source: "./media/characters/casselene-yaro/dressed.svg",
  31415. extra: 4721 / 4541,
  31416. bottom: 82 / 4803
  31417. }
  31418. },
  31419. maw: {
  31420. height: math.unit(1, "feet"),
  31421. name: "Maw",
  31422. image: {
  31423. source: "./media/characters/casselene-yaro/maw.svg"
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Macro",
  31430. height: math.unit(190, "feet"),
  31431. default: true
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(10, "feet"),
  31440. weight: math.unit(15015, "lb"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/platine/front.svg",
  31444. extra: 1741/1650,
  31445. bottom: 84/1825
  31446. }
  31447. },
  31448. side: {
  31449. height: math.unit(10, "feet"),
  31450. weight: math.unit(15015, "lb"),
  31451. name: "Side",
  31452. image: {
  31453. source: "./media/characters/platine/side.svg",
  31454. extra: 1790/1705,
  31455. bottom: 29/1819
  31456. }
  31457. },
  31458. },
  31459. [
  31460. {
  31461. name: "Normal",
  31462. height: math.unit(10, "feet"),
  31463. default: true
  31464. },
  31465. {
  31466. name: "Macro",
  31467. height: math.unit(100, "feet")
  31468. },
  31469. {
  31470. name: "Megamacro",
  31471. height: math.unit(1000, "feet")
  31472. },
  31473. ]
  31474. ))
  31475. characterMakers.push(() => makeCharacter(
  31476. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31477. {
  31478. front: {
  31479. height: math.unit(15 + 5 / 12, "feet"),
  31480. weight: math.unit(4600, "lb"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/neapolitan-ananassa/front.svg",
  31484. extra: 2903 / 2736,
  31485. bottom: 0 / 2903
  31486. }
  31487. },
  31488. side: {
  31489. height: math.unit(15 + 5 / 12, "feet"),
  31490. weight: math.unit(4600, "lb"),
  31491. name: "Side",
  31492. image: {
  31493. source: "./media/characters/neapolitan-ananassa/side.svg",
  31494. extra: 2925 / 2719,
  31495. bottom: 0 / 2925
  31496. }
  31497. },
  31498. back: {
  31499. height: math.unit(15 + 5 / 12, "feet"),
  31500. weight: math.unit(4600, "lb"),
  31501. name: "Back",
  31502. image: {
  31503. source: "./media/characters/neapolitan-ananassa/back.svg",
  31504. extra: 2903 / 2736,
  31505. bottom: 0 / 2903
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Normal",
  31512. height: math.unit(15 + 5 / 12, "feet"),
  31513. default: true
  31514. },
  31515. {
  31516. name: "Post-Millenium",
  31517. height: math.unit(35 + 5 / 12, "feet")
  31518. },
  31519. {
  31520. name: "Post-Era",
  31521. height: math.unit(450 + 5 / 12, "feet")
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(300, "meters"),
  31530. weight: math.unit(125000, "tonnes"),
  31531. name: "Front",
  31532. image: {
  31533. source: "./media/characters/pazuzu/front.svg",
  31534. extra: 877 / 794,
  31535. bottom: 47 / 924
  31536. }
  31537. },
  31538. },
  31539. [
  31540. {
  31541. name: "Macro",
  31542. height: math.unit(300, "meters"),
  31543. default: true
  31544. },
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31549. {
  31550. side: {
  31551. height: math.unit(10 + 7 / 12, "feet"),
  31552. weight: math.unit(2.5, "tons"),
  31553. name: "Side",
  31554. image: {
  31555. source: "./media/characters/aasha/side.svg",
  31556. extra: 1345 / 1245,
  31557. bottom: 111 / 1456
  31558. }
  31559. },
  31560. back: {
  31561. height: math.unit(10 + 7 / 12, "feet"),
  31562. weight: math.unit(2.5, "tons"),
  31563. name: "Back",
  31564. image: {
  31565. source: "./media/characters/aasha/back.svg",
  31566. extra: 1133 / 1057,
  31567. bottom: 257 / 1390
  31568. }
  31569. },
  31570. },
  31571. [
  31572. {
  31573. name: "Normal",
  31574. height: math.unit(10 + 7 / 12, "feet"),
  31575. default: true
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(6 + 3 / 12, "feet"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/nevan/front.svg",
  31587. extra: 704 / 704,
  31588. bottom: 28 / 732
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(6 + 3 / 12, "feet"),
  31593. name: "Back",
  31594. image: {
  31595. source: "./media/characters/nevan/back.svg",
  31596. extra: 714 / 714,
  31597. bottom: 21 / 735
  31598. }
  31599. },
  31600. frontFlaccid: {
  31601. height: math.unit(6 + 3 / 12, "feet"),
  31602. name: "Front (Flaccid)",
  31603. image: {
  31604. source: "./media/characters/nevan/front-flaccid.svg",
  31605. extra: 704 / 704,
  31606. bottom: 28 / 732
  31607. }
  31608. },
  31609. frontErect: {
  31610. height: math.unit(6 + 3 / 12, "feet"),
  31611. name: "Front (Erect)",
  31612. image: {
  31613. source: "./media/characters/nevan/front-erect.svg",
  31614. extra: 704 / 704,
  31615. bottom: 28 / 732
  31616. }
  31617. },
  31618. backFlaccid: {
  31619. height: math.unit(6 + 3 / 12, "feet"),
  31620. name: "Back (Flaccid)",
  31621. image: {
  31622. source: "./media/characters/nevan/back-flaccid.svg",
  31623. extra: 714 / 714,
  31624. bottom: 21 / 735
  31625. }
  31626. },
  31627. },
  31628. [
  31629. {
  31630. name: "Normal",
  31631. height: math.unit(6 + 3 / 12, "feet"),
  31632. default: true
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(4, "feet"),
  31641. name: "Front",
  31642. image: {
  31643. source: "./media/characters/arhan/front.svg",
  31644. extra: 3368 / 3133,
  31645. bottom: 0 / 3368
  31646. }
  31647. },
  31648. side: {
  31649. height: math.unit(4, "feet"),
  31650. name: "Side",
  31651. image: {
  31652. source: "./media/characters/arhan/side.svg",
  31653. extra: 3347 / 3105,
  31654. bottom: 0 / 3347
  31655. }
  31656. },
  31657. tongue: {
  31658. height: math.unit(1.42, "feet"),
  31659. name: "Tongue",
  31660. image: {
  31661. source: "./media/characters/arhan/tongue.svg"
  31662. }
  31663. },
  31664. head: {
  31665. height: math.unit(0.85, "feet"),
  31666. name: "Head",
  31667. image: {
  31668. source: "./media/characters/arhan/head.svg"
  31669. }
  31670. },
  31671. },
  31672. [
  31673. {
  31674. name: "Normal",
  31675. height: math.unit(4, "feet"),
  31676. default: true
  31677. },
  31678. ]
  31679. ))
  31680. characterMakers.push(() => makeCharacter(
  31681. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31682. {
  31683. front: {
  31684. height: math.unit(5 + 7.5 / 12, "feet"),
  31685. weight: math.unit(120, "lb"),
  31686. name: "Front",
  31687. image: {
  31688. source: "./media/characters/digi-duncan/front.svg",
  31689. extra: 330 / 326,
  31690. bottom: 16 / 346
  31691. }
  31692. },
  31693. side: {
  31694. height: math.unit(5 + 7.5 / 12, "feet"),
  31695. weight: math.unit(120, "lb"),
  31696. name: "Side",
  31697. image: {
  31698. source: "./media/characters/digi-duncan/side.svg",
  31699. extra: 341 / 337,
  31700. bottom: 1 / 342
  31701. }
  31702. },
  31703. back: {
  31704. height: math.unit(5 + 7.5 / 12, "feet"),
  31705. weight: math.unit(120, "lb"),
  31706. name: "Back",
  31707. image: {
  31708. source: "./media/characters/digi-duncan/back.svg",
  31709. extra: 330 / 326,
  31710. bottom: 12 / 342
  31711. }
  31712. },
  31713. },
  31714. [
  31715. {
  31716. name: "Speck",
  31717. height: math.unit(0.25, "mm")
  31718. },
  31719. {
  31720. name: "Micro",
  31721. height: math.unit(5, "mm")
  31722. },
  31723. {
  31724. name: "Tiny",
  31725. height: math.unit(0.5, "inches"),
  31726. default: true
  31727. },
  31728. {
  31729. name: "Human",
  31730. height: math.unit(5 + 7.5 / 12, "feet")
  31731. },
  31732. {
  31733. name: "Minigiant",
  31734. height: math.unit(8 + 5.25, "feet")
  31735. },
  31736. {
  31737. name: "Giant",
  31738. height: math.unit(2000, "feet")
  31739. },
  31740. {
  31741. name: "Mega",
  31742. height: math.unit(371.1, "miles")
  31743. },
  31744. ]
  31745. ))
  31746. characterMakers.push(() => makeCharacter(
  31747. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31748. {
  31749. front: {
  31750. height: math.unit(2, "meters"),
  31751. weight: math.unit(350, "kg"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31755. extra: 898 / 838,
  31756. bottom: 9 / 907
  31757. }
  31758. },
  31759. },
  31760. [
  31761. {
  31762. name: "Micro",
  31763. height: math.unit(8, "meters")
  31764. },
  31765. {
  31766. name: "Normal",
  31767. height: math.unit(50, "meters"),
  31768. default: true
  31769. },
  31770. {
  31771. name: "Macro",
  31772. height: math.unit(500, "meters")
  31773. },
  31774. ]
  31775. ))
  31776. characterMakers.push(() => makeCharacter(
  31777. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31778. {
  31779. front: {
  31780. height: math.unit(6 + 6 / 12, "feet"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/khardesh/front.svg",
  31784. extra: 1788/1596,
  31785. bottom: 66/1854
  31786. }
  31787. },
  31788. back: {
  31789. height: math.unit(6 + 6 / 12, "feet"),
  31790. name: "Back",
  31791. image: {
  31792. source: "./media/characters/khardesh/back.svg",
  31793. extra: 1781/1584,
  31794. bottom: 68/1849
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "Normal",
  31801. height: math.unit(6 + 6 / 12, "feet"),
  31802. default: true
  31803. },
  31804. {
  31805. name: "Normal+",
  31806. height: math.unit(4, "meters")
  31807. },
  31808. {
  31809. name: "Macro",
  31810. height: math.unit(50, "meters")
  31811. },
  31812. {
  31813. name: "Macro+",
  31814. height: math.unit(100, "meters")
  31815. },
  31816. {
  31817. name: "Megamacro",
  31818. height: math.unit(20, "km")
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(6, "feet"),
  31827. weight: math.unit(150, "lb"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/kosho/front.svg",
  31831. extra: 1847 / 1847,
  31832. bottom: 86 / 1933
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Second-stage micro",
  31839. height: math.unit(0.5, "inches")
  31840. },
  31841. {
  31842. name: "First-stage micro",
  31843. height: math.unit(6, "inches")
  31844. },
  31845. {
  31846. name: "Normal",
  31847. height: math.unit(6, "feet"),
  31848. default: true
  31849. },
  31850. {
  31851. name: "First-stage macro",
  31852. height: math.unit(72, "feet")
  31853. },
  31854. {
  31855. name: "Second-stage macro",
  31856. height: math.unit(864, "feet")
  31857. },
  31858. ]
  31859. ))
  31860. characterMakers.push(() => makeCharacter(
  31861. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31862. {
  31863. normal: {
  31864. height: math.unit(4 + 6 / 12, "feet"),
  31865. name: "Normal",
  31866. image: {
  31867. source: "./media/characters/hydra/normal.svg",
  31868. extra: 2833 / 2634,
  31869. bottom: 68 / 2901
  31870. }
  31871. },
  31872. smol: {
  31873. height: math.unit(0.705, "inches"),
  31874. name: "Smol",
  31875. image: {
  31876. source: "./media/characters/hydra/smol.svg",
  31877. extra: 2715 / 2540,
  31878. bottom: 0 / 2715
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(4 + 6 / 12, "feet"),
  31886. default: true
  31887. }
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(0.6, "cm"),
  31895. name: "Front",
  31896. image: {
  31897. source: "./media/characters/daz/front.svg",
  31898. extra: 1682 / 1164,
  31899. bottom: 42 / 1724
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(0.6, "cm"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(6, "feet"),
  31916. weight: math.unit(235, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/theo-pangolin/front.svg",
  31920. extra: 1996 / 1969,
  31921. bottom: 115 / 2111
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(6, "feet"),
  31926. weight: math.unit(235, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/theo-pangolin/back.svg",
  31930. extra: 1979 / 1979,
  31931. bottom: 40 / 2019
  31932. }
  31933. },
  31934. feral: {
  31935. height: math.unit(2, "feet"),
  31936. weight: math.unit(30, "lb"),
  31937. name: "Feral",
  31938. image: {
  31939. source: "./media/characters/theo-pangolin/feral.svg",
  31940. extra: 803 / 791,
  31941. bottom: 181 / 984
  31942. }
  31943. },
  31944. footFive: {
  31945. height: math.unit(1.43, "feet"),
  31946. name: "Foot (Five Toes)",
  31947. image: {
  31948. source: "./media/characters/theo-pangolin/foot-five.svg"
  31949. }
  31950. },
  31951. footFour: {
  31952. height: math.unit(1.43, "feet"),
  31953. name: "Foot (Four Toes)",
  31954. image: {
  31955. source: "./media/characters/theo-pangolin/foot-four.svg"
  31956. }
  31957. },
  31958. handFour: {
  31959. height: math.unit(0.81, "feet"),
  31960. name: "Hand (Four Fingers)",
  31961. image: {
  31962. source: "./media/characters/theo-pangolin/hand-four.svg"
  31963. }
  31964. },
  31965. handThree: {
  31966. height: math.unit(0.81, "feet"),
  31967. name: "Hand (Three Fingers)",
  31968. image: {
  31969. source: "./media/characters/theo-pangolin/hand-three.svg"
  31970. }
  31971. },
  31972. headFront: {
  31973. height: math.unit(1.37, "feet"),
  31974. name: "Head (Front)",
  31975. image: {
  31976. source: "./media/characters/theo-pangolin/head-front.svg"
  31977. }
  31978. },
  31979. headSide: {
  31980. height: math.unit(1.43, "feet"),
  31981. name: "Head (Side)",
  31982. image: {
  31983. source: "./media/characters/theo-pangolin/head-side.svg"
  31984. }
  31985. },
  31986. tongue: {
  31987. height: math.unit(2.29, "feet"),
  31988. name: "Tongue",
  31989. image: {
  31990. source: "./media/characters/theo-pangolin/tongue.svg"
  31991. }
  31992. },
  31993. },
  31994. [
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(6, "feet")
  31998. },
  31999. {
  32000. name: "Macro",
  32001. height: math.unit(400, "feet"),
  32002. default: true
  32003. },
  32004. ]
  32005. ))
  32006. characterMakers.push(() => makeCharacter(
  32007. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32008. {
  32009. front: {
  32010. height: math.unit(6, "inches"),
  32011. weight: math.unit(0.036, "kg"),
  32012. name: "Front",
  32013. image: {
  32014. source: "./media/characters/renée/front.svg",
  32015. extra: 900 / 886,
  32016. bottom: 8 / 908
  32017. }
  32018. },
  32019. },
  32020. [
  32021. {
  32022. name: "Nano",
  32023. height: math.unit(1, "nm")
  32024. },
  32025. {
  32026. name: "Micro",
  32027. height: math.unit(1, "mm")
  32028. },
  32029. {
  32030. name: "Normal",
  32031. height: math.unit(6, "inches")
  32032. },
  32033. {
  32034. name: "Macro",
  32035. height: math.unit(2000, "feet"),
  32036. default: true
  32037. },
  32038. {
  32039. name: "Megamacro",
  32040. height: math.unit(2, "km")
  32041. },
  32042. {
  32043. name: "Gigamacro",
  32044. height: math.unit(2000, "km")
  32045. },
  32046. {
  32047. name: "Teramacro",
  32048. height: math.unit(250000, "km")
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32054. {
  32055. front: {
  32056. height: math.unit(4, "meters"),
  32057. weight: math.unit(150, "kg"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/caledvwlch/front.svg",
  32061. extra: 1757/1537,
  32062. bottom: 31/1788
  32063. }
  32064. },
  32065. side: {
  32066. height: math.unit(4, "meters"),
  32067. weight: math.unit(150, "kg"),
  32068. name: "Side",
  32069. image: {
  32070. source: "./media/characters/caledvwlch/side.svg",
  32071. extra: 1605 / 1536,
  32072. bottom: 31 / 1636
  32073. }
  32074. },
  32075. back: {
  32076. height: math.unit(4, "meters"),
  32077. weight: math.unit(150, "kg"),
  32078. name: "Back",
  32079. image: {
  32080. source: "./media/characters/caledvwlch/back.svg",
  32081. extra: 1635 / 1565,
  32082. bottom: 27 / 1662
  32083. }
  32084. },
  32085. },
  32086. [
  32087. {
  32088. name: "\"Incognito\"",
  32089. height: math.unit(4, "meters")
  32090. },
  32091. {
  32092. name: "Small rampage",
  32093. height: math.unit(600, "meters")
  32094. },
  32095. {
  32096. name: "Mega",
  32097. height: math.unit(30, "km")
  32098. },
  32099. {
  32100. name: "Home-size",
  32101. height: math.unit(50, "km"),
  32102. default: true
  32103. },
  32104. {
  32105. name: "Giga",
  32106. height: math.unit(300, "km")
  32107. },
  32108. {
  32109. name: "Lounging",
  32110. height: math.unit(11000, "km")
  32111. },
  32112. {
  32113. name: "Planet snacking",
  32114. height: math.unit(2000000, "km")
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32120. {
  32121. front: {
  32122. height: math.unit(6, "feet"),
  32123. weight: math.unit(215, "lb"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/sapphire-svell/front.svg",
  32127. extra: 495 / 455,
  32128. bottom: 20 / 515
  32129. }
  32130. },
  32131. back: {
  32132. height: math.unit(6, "feet"),
  32133. weight: math.unit(216, "lb"),
  32134. name: "Back",
  32135. image: {
  32136. source: "./media/characters/sapphire-svell/back.svg",
  32137. extra: 497 / 477,
  32138. bottom: 7 / 504
  32139. }
  32140. },
  32141. maw: {
  32142. height: math.unit(1.57, "feet"),
  32143. name: "Maw",
  32144. image: {
  32145. source: "./media/characters/sapphire-svell/maw.svg"
  32146. }
  32147. },
  32148. foot: {
  32149. height: math.unit(1.07, "feet"),
  32150. name: "Foot",
  32151. image: {
  32152. source: "./media/characters/sapphire-svell/foot.svg"
  32153. }
  32154. },
  32155. toering: {
  32156. height: math.unit(1.7, "inch"),
  32157. name: "Toering",
  32158. image: {
  32159. source: "./media/characters/sapphire-svell/toering.svg"
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Normal",
  32166. height: math.unit(300, "feet"),
  32167. default: true
  32168. },
  32169. {
  32170. name: "Augmented",
  32171. height: math.unit(1250, "feet")
  32172. },
  32173. {
  32174. name: "Unleashed",
  32175. height: math.unit(3000, "feet")
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32181. {
  32182. side: {
  32183. height: math.unit(2 + 3 / 12, "feet"),
  32184. weight: math.unit(110, "lb"),
  32185. name: "Side",
  32186. image: {
  32187. source: "./media/characters/glitch-flux/side.svg",
  32188. extra: 997 / 805,
  32189. bottom: 20 / 1017
  32190. }
  32191. },
  32192. },
  32193. [
  32194. {
  32195. name: "Normal",
  32196. height: math.unit(2 + 3 / 12, "feet"),
  32197. default: true
  32198. },
  32199. ]
  32200. ))
  32201. characterMakers.push(() => makeCharacter(
  32202. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32203. {
  32204. front: {
  32205. height: math.unit(4, "meters"),
  32206. name: "Front",
  32207. image: {
  32208. source: "./media/characters/mid/front.svg",
  32209. extra: 507 / 476,
  32210. bottom: 17 / 524
  32211. }
  32212. },
  32213. back: {
  32214. height: math.unit(4, "meters"),
  32215. name: "Back",
  32216. image: {
  32217. source: "./media/characters/mid/back.svg",
  32218. extra: 519 / 487,
  32219. bottom: 7 / 526
  32220. }
  32221. },
  32222. stuck: {
  32223. height: math.unit(2.2, "meters"),
  32224. name: "Stuck",
  32225. image: {
  32226. source: "./media/characters/mid/stuck.svg",
  32227. extra: 1951 / 1869,
  32228. bottom: 88 / 2039
  32229. }
  32230. }
  32231. },
  32232. [
  32233. {
  32234. name: "Normal",
  32235. height: math.unit(4, "meters"),
  32236. default: true
  32237. },
  32238. {
  32239. name: "Big",
  32240. height: math.unit(10, "meters")
  32241. },
  32242. {
  32243. name: "Macro",
  32244. height: math.unit(800, "meters")
  32245. },
  32246. {
  32247. name: "Megamacro",
  32248. height: math.unit(100, "km")
  32249. },
  32250. {
  32251. name: "Overgrown",
  32252. height: math.unit(1, "parsec")
  32253. },
  32254. ]
  32255. ))
  32256. characterMakers.push(() => makeCharacter(
  32257. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32258. {
  32259. front: {
  32260. height: math.unit(2.5, "meters"),
  32261. weight: math.unit(225, "kg"),
  32262. name: "Front",
  32263. image: {
  32264. source: "./media/characters/iris/front.svg",
  32265. extra: 3348 / 3251,
  32266. bottom: 205 / 3553
  32267. }
  32268. },
  32269. maw: {
  32270. height: math.unit(0.56, "meter"),
  32271. name: "Maw",
  32272. image: {
  32273. source: "./media/characters/iris/maw.svg"
  32274. }
  32275. },
  32276. },
  32277. [
  32278. {
  32279. name: "Mewter cat",
  32280. height: math.unit(1.2, "meters")
  32281. },
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(2.5, "meters"),
  32285. default: true
  32286. },
  32287. {
  32288. name: "Minimacro",
  32289. height: math.unit(18, "feet")
  32290. },
  32291. {
  32292. name: "Macro",
  32293. height: math.unit(140, "feet")
  32294. },
  32295. {
  32296. name: "Macro+",
  32297. height: math.unit(180, "meters")
  32298. },
  32299. {
  32300. name: "Megamacro",
  32301. height: math.unit(2746, "meters")
  32302. },
  32303. ]
  32304. ))
  32305. characterMakers.push(() => makeCharacter(
  32306. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32307. {
  32308. front: {
  32309. height: math.unit(6, "feet"),
  32310. weight: math.unit(135, "lb"),
  32311. name: "Front",
  32312. image: {
  32313. source: "./media/characters/axel/front.svg",
  32314. extra: 908 / 908,
  32315. bottom: 58 / 966
  32316. }
  32317. },
  32318. side: {
  32319. height: math.unit(6, "feet"),
  32320. weight: math.unit(135, "lb"),
  32321. name: "Side",
  32322. image: {
  32323. source: "./media/characters/axel/side.svg",
  32324. extra: 958 / 958,
  32325. bottom: 11 / 969
  32326. }
  32327. },
  32328. back: {
  32329. height: math.unit(6, "feet"),
  32330. weight: math.unit(135, "lb"),
  32331. name: "Back",
  32332. image: {
  32333. source: "./media/characters/axel/back.svg",
  32334. extra: 887 / 887,
  32335. bottom: 34 / 921
  32336. }
  32337. },
  32338. head: {
  32339. height: math.unit(1.07, "feet"),
  32340. name: "Head",
  32341. image: {
  32342. source: "./media/characters/axel/head.svg"
  32343. }
  32344. },
  32345. beak: {
  32346. height: math.unit(1.4, "feet"),
  32347. name: "Beak",
  32348. image: {
  32349. source: "./media/characters/axel/beak.svg"
  32350. }
  32351. },
  32352. beakSide: {
  32353. height: math.unit(1.4, "feet"),
  32354. name: "Beak Side",
  32355. image: {
  32356. source: "./media/characters/axel/beak-side.svg"
  32357. }
  32358. },
  32359. sheath: {
  32360. height: math.unit(0.5, "feet"),
  32361. name: "Sheath",
  32362. image: {
  32363. source: "./media/characters/axel/sheath.svg"
  32364. }
  32365. },
  32366. dick: {
  32367. height: math.unit(0.98, "feet"),
  32368. name: "Dick",
  32369. image: {
  32370. source: "./media/characters/axel/dick.svg"
  32371. }
  32372. },
  32373. },
  32374. [
  32375. {
  32376. name: "Macro",
  32377. height: math.unit(68, "meters"),
  32378. default: true
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32384. {
  32385. front: {
  32386. height: math.unit(3.5, "meters"),
  32387. weight: math.unit(1200, "kg"),
  32388. name: "Front",
  32389. image: {
  32390. source: "./media/characters/joanna/front.svg",
  32391. extra: 1596 / 1488,
  32392. bottom: 29 / 1625
  32393. }
  32394. },
  32395. back: {
  32396. height: math.unit(3.5, "meters"),
  32397. weight: math.unit(1200, "kg"),
  32398. name: "Back",
  32399. image: {
  32400. source: "./media/characters/joanna/back.svg",
  32401. extra: 1594 / 1495,
  32402. bottom: 26 / 1620
  32403. }
  32404. },
  32405. frontShorts: {
  32406. height: math.unit(3.5, "meters"),
  32407. weight: math.unit(1200, "kg"),
  32408. name: "Front (Shorts)",
  32409. image: {
  32410. source: "./media/characters/joanna/front-shorts.svg",
  32411. extra: 1596 / 1488,
  32412. bottom: 29 / 1625
  32413. }
  32414. },
  32415. frontBiker: {
  32416. height: math.unit(3.5, "meters"),
  32417. weight: math.unit(1200, "kg"),
  32418. name: "Front (Biker)",
  32419. image: {
  32420. source: "./media/characters/joanna/front-biker.svg",
  32421. extra: 1596 / 1488,
  32422. bottom: 29 / 1625
  32423. }
  32424. },
  32425. backBiker: {
  32426. height: math.unit(3.5, "meters"),
  32427. weight: math.unit(1200, "kg"),
  32428. name: "Back (Biker)",
  32429. image: {
  32430. source: "./media/characters/joanna/back-biker.svg",
  32431. extra: 1594 / 1495,
  32432. bottom: 88 / 1682
  32433. }
  32434. },
  32435. bikeLeft: {
  32436. height: math.unit(2.4, "meters"),
  32437. weight: math.unit(1600, "kg"),
  32438. name: "Bike (Left)",
  32439. image: {
  32440. source: "./media/characters/joanna/bike-left.svg",
  32441. extra: 720 / 720,
  32442. bottom: 8 / 728
  32443. }
  32444. },
  32445. bikeRight: {
  32446. height: math.unit(2.4, "meters"),
  32447. weight: math.unit(1600, "kg"),
  32448. name: "Bike (Right)",
  32449. image: {
  32450. source: "./media/characters/joanna/bike-right.svg",
  32451. extra: 720 / 720,
  32452. bottom: 8 / 728
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Incognito",
  32459. height: math.unit(3.5, "meters")
  32460. },
  32461. {
  32462. name: "Casual Big",
  32463. height: math.unit(200, "meters")
  32464. },
  32465. {
  32466. name: "Macro",
  32467. height: math.unit(600, "meters")
  32468. },
  32469. {
  32470. name: "Original",
  32471. height: math.unit(20, "km"),
  32472. default: true
  32473. },
  32474. {
  32475. name: "Giga",
  32476. height: math.unit(400, "km")
  32477. },
  32478. {
  32479. name: "Lounging",
  32480. height: math.unit(1500, "km")
  32481. },
  32482. {
  32483. name: "Planetary",
  32484. height: math.unit(200000, "km")
  32485. },
  32486. ]
  32487. ))
  32488. characterMakers.push(() => makeCharacter(
  32489. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32490. {
  32491. front: {
  32492. height: math.unit(6, "feet"),
  32493. weight: math.unit(150, "lb"),
  32494. name: "Front",
  32495. image: {
  32496. source: "./media/characters/hugo-sigil/front.svg",
  32497. extra: 522 / 500,
  32498. bottom: 2 / 524
  32499. }
  32500. },
  32501. back: {
  32502. height: math.unit(6, "feet"),
  32503. weight: math.unit(150, "lb"),
  32504. name: "Back",
  32505. image: {
  32506. source: "./media/characters/hugo-sigil/back.svg",
  32507. extra: 519 / 495,
  32508. bottom: 5 / 524
  32509. }
  32510. },
  32511. maw: {
  32512. height: math.unit(1.4, "feet"),
  32513. weight: math.unit(150, "lb"),
  32514. name: "Maw",
  32515. image: {
  32516. source: "./media/characters/hugo-sigil/maw.svg"
  32517. }
  32518. },
  32519. feet: {
  32520. height: math.unit(1.56, "feet"),
  32521. weight: math.unit(150, "lb"),
  32522. name: "Feet",
  32523. image: {
  32524. source: "./media/characters/hugo-sigil/feet.svg",
  32525. extra: 177 / 177,
  32526. bottom: 12 / 189
  32527. }
  32528. },
  32529. },
  32530. [
  32531. {
  32532. name: "Normal",
  32533. height: math.unit(6, "feet")
  32534. },
  32535. {
  32536. name: "Macro",
  32537. height: math.unit(200, "feet"),
  32538. default: true
  32539. },
  32540. ]
  32541. ))
  32542. characterMakers.push(() => makeCharacter(
  32543. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32544. {
  32545. front: {
  32546. height: math.unit(6, "feet"),
  32547. weight: math.unit(150, "lb"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/peri/front.svg",
  32551. extra: 2354 / 2233,
  32552. bottom: 49 / 2403
  32553. }
  32554. },
  32555. },
  32556. [
  32557. {
  32558. name: "Really Small",
  32559. height: math.unit(1, "nm")
  32560. },
  32561. {
  32562. name: "Micro",
  32563. height: math.unit(4, "inches")
  32564. },
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(7, "inches"),
  32568. default: true
  32569. },
  32570. {
  32571. name: "Macro",
  32572. height: math.unit(400, "feet")
  32573. },
  32574. {
  32575. name: "Megamacro",
  32576. height: math.unit(100, "miles")
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32582. {
  32583. frontSlim: {
  32584. height: math.unit(7, "feet"),
  32585. name: "Front (Slim)",
  32586. image: {
  32587. source: "./media/characters/issilora/front-slim.svg",
  32588. extra: 529 / 449,
  32589. bottom: 53 / 582
  32590. }
  32591. },
  32592. sideSlim: {
  32593. height: math.unit(7, "feet"),
  32594. name: "Side (Slim)",
  32595. image: {
  32596. source: "./media/characters/issilora/side-slim.svg",
  32597. extra: 570 / 480,
  32598. bottom: 30 / 600
  32599. }
  32600. },
  32601. backSlim: {
  32602. height: math.unit(7, "feet"),
  32603. name: "Back (Slim)",
  32604. image: {
  32605. source: "./media/characters/issilora/back-slim.svg",
  32606. extra: 537 / 455,
  32607. bottom: 46 / 583
  32608. }
  32609. },
  32610. frontBuff: {
  32611. height: math.unit(7, "feet"),
  32612. name: "Front (Buff)",
  32613. image: {
  32614. source: "./media/characters/issilora/front-buff.svg",
  32615. extra: 2310 / 2035,
  32616. bottom: 335 / 2645
  32617. }
  32618. },
  32619. head: {
  32620. height: math.unit(1.94, "feet"),
  32621. name: "Head",
  32622. image: {
  32623. source: "./media/characters/issilora/head.svg"
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Minimum",
  32630. height: math.unit(7, "feet")
  32631. },
  32632. {
  32633. name: "Comfortable",
  32634. height: math.unit(17, "feet")
  32635. },
  32636. {
  32637. name: "Fun Size",
  32638. height: math.unit(47, "feet")
  32639. },
  32640. {
  32641. name: "Natural Macro",
  32642. height: math.unit(137, "feet"),
  32643. default: true
  32644. },
  32645. {
  32646. name: "Maximum Kaiju",
  32647. height: math.unit(397, "feet")
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32653. {
  32654. front: {
  32655. height: math.unit(50 + 9/12, "feet"),
  32656. weight: math.unit(32.8, "tons"),
  32657. name: "Front",
  32658. image: {
  32659. source: "./media/characters/irb'iiritaahn/front.svg",
  32660. extra: 1878/1826,
  32661. bottom: 326/2204
  32662. }
  32663. },
  32664. back: {
  32665. height: math.unit(50 + 9/12, "feet"),
  32666. weight: math.unit(32.8, "tons"),
  32667. name: "Back",
  32668. image: {
  32669. source: "./media/characters/irb'iiritaahn/back.svg",
  32670. extra: 2052/2018,
  32671. bottom: 152/2204
  32672. }
  32673. },
  32674. head: {
  32675. height: math.unit(12.86, "feet"),
  32676. name: "Head",
  32677. image: {
  32678. source: "./media/characters/irb'iiritaahn/head.svg"
  32679. }
  32680. },
  32681. maw: {
  32682. height: math.unit(9.66, "feet"),
  32683. name: "Maw",
  32684. image: {
  32685. source: "./media/characters/irb'iiritaahn/maw.svg"
  32686. }
  32687. },
  32688. frontDick: {
  32689. height: math.unit(8.78461, "feet"),
  32690. name: "Front Dick",
  32691. image: {
  32692. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32693. }
  32694. },
  32695. rearDick: {
  32696. height: math.unit(8.78461, "feet"),
  32697. name: "Rear Dick",
  32698. image: {
  32699. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32700. }
  32701. },
  32702. rearDickUnfolded: {
  32703. height: math.unit(8.78, "feet"),
  32704. name: "Rear Dick (Unfolded)",
  32705. image: {
  32706. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32707. }
  32708. },
  32709. wings: {
  32710. height: math.unit(43, "feet"),
  32711. name: "Wings",
  32712. image: {
  32713. source: "./media/characters/irb'iiritaahn/wings.svg"
  32714. }
  32715. },
  32716. },
  32717. [
  32718. {
  32719. name: "Macro",
  32720. height: math.unit(50 + 9/12, "feet"),
  32721. default: true
  32722. },
  32723. ]
  32724. ))
  32725. characterMakers.push(() => makeCharacter(
  32726. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32727. {
  32728. front: {
  32729. height: math.unit(205, "cm"),
  32730. weight: math.unit(102, "kg"),
  32731. name: "Front",
  32732. image: {
  32733. source: "./media/characters/irbisgreif/front.svg",
  32734. extra: 785/706,
  32735. bottom: 13/798
  32736. }
  32737. },
  32738. back: {
  32739. height: math.unit(205, "cm"),
  32740. weight: math.unit(102, "kg"),
  32741. name: "Back",
  32742. image: {
  32743. source: "./media/characters/irbisgreif/back.svg",
  32744. extra: 713/701,
  32745. bottom: 26/739
  32746. }
  32747. },
  32748. frontDressed: {
  32749. height: math.unit(216, "cm"),
  32750. weight: math.unit(102, "kg"),
  32751. name: "Front-dressed",
  32752. image: {
  32753. source: "./media/characters/irbisgreif/front-dressed.svg",
  32754. extra: 902/776,
  32755. bottom: 14/916
  32756. }
  32757. },
  32758. sideDressed: {
  32759. height: math.unit(195, "cm"),
  32760. weight: math.unit(102, "kg"),
  32761. name: "Side-dressed",
  32762. image: {
  32763. source: "./media/characters/irbisgreif/side-dressed.svg",
  32764. extra: 788/688,
  32765. bottom: 21/809
  32766. }
  32767. },
  32768. backDressed: {
  32769. height: math.unit(216, "cm"),
  32770. weight: math.unit(102, "kg"),
  32771. name: "Back-dressed",
  32772. image: {
  32773. source: "./media/characters/irbisgreif/back-dressed.svg",
  32774. extra: 901/783,
  32775. bottom: 10/911
  32776. }
  32777. },
  32778. dick: {
  32779. height: math.unit(0.49, "feet"),
  32780. name: "Dick",
  32781. image: {
  32782. source: "./media/characters/irbisgreif/dick.svg"
  32783. }
  32784. },
  32785. wingTop: {
  32786. height: math.unit(1.93 , "feet"),
  32787. name: "Wing-top",
  32788. image: {
  32789. source: "./media/characters/irbisgreif/wing-top.svg"
  32790. }
  32791. },
  32792. wingBottom: {
  32793. height: math.unit(1.93 , "feet"),
  32794. name: "Wing-bottom",
  32795. image: {
  32796. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32797. }
  32798. },
  32799. },
  32800. [
  32801. {
  32802. name: "Normal",
  32803. height: math.unit(216, "cm"),
  32804. default: true
  32805. },
  32806. ]
  32807. ))
  32808. characterMakers.push(() => makeCharacter(
  32809. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32810. {
  32811. front: {
  32812. height: math.unit(6, "feet"),
  32813. weight: math.unit(150, "lb"),
  32814. name: "Front",
  32815. image: {
  32816. source: "./media/characters/pride/front.svg",
  32817. extra: 1299/1230,
  32818. bottom: 18/1317
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(7, "feet")
  32826. },
  32827. {
  32828. name: "Mini-macro",
  32829. height: math.unit(11, "feet")
  32830. },
  32831. {
  32832. name: "Macro",
  32833. height: math.unit(15, "meters"),
  32834. default: true
  32835. },
  32836. {
  32837. name: "Macro+",
  32838. height: math.unit(40, "meters")
  32839. },
  32840. ]
  32841. ))
  32842. characterMakers.push(() => makeCharacter(
  32843. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32844. {
  32845. front: {
  32846. height: math.unit(4 + 2 / 12, "feet"),
  32847. weight: math.unit(95, "lb"),
  32848. name: "Front",
  32849. image: {
  32850. source: "./media/characters/vaelophis-nyx/front.svg",
  32851. extra: 2532/2330,
  32852. bottom: 0/2532
  32853. }
  32854. },
  32855. back: {
  32856. height: math.unit(4 + 2 / 12, "feet"),
  32857. weight: math.unit(95, "lb"),
  32858. name: "Back",
  32859. image: {
  32860. source: "./media/characters/vaelophis-nyx/back.svg",
  32861. extra: 2484/2361,
  32862. bottom: 0/2484
  32863. }
  32864. },
  32865. feralSide: {
  32866. height: math.unit(2 + 1/12, "feet"),
  32867. weight: math.unit(20, "lb"),
  32868. name: "Feral (Side)",
  32869. image: {
  32870. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32871. extra: 1721/1581,
  32872. bottom: 70/1791
  32873. }
  32874. },
  32875. feralLazing: {
  32876. height: math.unit(1.08, "feet"),
  32877. weight: math.unit(20, "lb"),
  32878. name: "Feral (Lazing)",
  32879. image: {
  32880. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32881. extra: 822/822,
  32882. bottom: 248/1070
  32883. }
  32884. },
  32885. ear: {
  32886. height: math.unit(0.416, "feet"),
  32887. name: "Ear",
  32888. image: {
  32889. source: "./media/characters/vaelophis-nyx/ear.svg"
  32890. }
  32891. },
  32892. eye: {
  32893. height: math.unit(0.0748, "feet"),
  32894. name: "Eye",
  32895. image: {
  32896. source: "./media/characters/vaelophis-nyx/eye.svg"
  32897. }
  32898. },
  32899. mouth: {
  32900. height: math.unit(0.378, "feet"),
  32901. name: "Mouth",
  32902. image: {
  32903. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32904. }
  32905. },
  32906. spade: {
  32907. height: math.unit(0.55, "feet"),
  32908. name: "Spade",
  32909. image: {
  32910. source: "./media/characters/vaelophis-nyx/spade.svg"
  32911. }
  32912. },
  32913. },
  32914. [
  32915. {
  32916. name: "Normal",
  32917. height: math.unit(4 + 2/12, "feet"),
  32918. default: true
  32919. },
  32920. ]
  32921. ))
  32922. characterMakers.push(() => makeCharacter(
  32923. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32924. {
  32925. front: {
  32926. height: math.unit(7, "feet"),
  32927. weight: math.unit(231, "lb"),
  32928. name: "Front",
  32929. image: {
  32930. source: "./media/characters/flux/front.svg",
  32931. extra: 919/871,
  32932. bottom: 0/919
  32933. }
  32934. },
  32935. back: {
  32936. height: math.unit(7, "feet"),
  32937. weight: math.unit(231, "lb"),
  32938. name: "Back",
  32939. image: {
  32940. source: "./media/characters/flux/back.svg",
  32941. extra: 1040/992,
  32942. bottom: 0/1040
  32943. }
  32944. },
  32945. frontDressed: {
  32946. height: math.unit(7, "feet"),
  32947. weight: math.unit(231, "lb"),
  32948. name: "Front (Dressed)",
  32949. image: {
  32950. source: "./media/characters/flux/front-dressed.svg",
  32951. extra: 919/871,
  32952. bottom: 0/919
  32953. }
  32954. },
  32955. feralSide: {
  32956. height: math.unit(5, "feet"),
  32957. weight: math.unit(150, "lb"),
  32958. name: "Feral (Side)",
  32959. image: {
  32960. source: "./media/characters/flux/feral-side.svg",
  32961. extra: 598/528,
  32962. bottom: 28/626
  32963. }
  32964. },
  32965. head: {
  32966. height: math.unit(1.585, "feet"),
  32967. name: "Head",
  32968. image: {
  32969. source: "./media/characters/flux/head.svg"
  32970. }
  32971. },
  32972. headSide: {
  32973. height: math.unit(1.74, "feet"),
  32974. name: "Head (Side)",
  32975. image: {
  32976. source: "./media/characters/flux/head-side.svg"
  32977. }
  32978. },
  32979. headSideFire: {
  32980. height: math.unit(1.76, "feet"),
  32981. name: "Head (Side, Fire)",
  32982. image: {
  32983. source: "./media/characters/flux/head-side-fire.svg"
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(7, "feet"),
  32991. default: true
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32997. {
  32998. front: {
  32999. height: math.unit(9, "feet"),
  33000. weight: math.unit(1012, "lb"),
  33001. name: "Front",
  33002. image: {
  33003. source: "./media/characters/ulfra-lupae/front.svg",
  33004. extra: 1083/1011,
  33005. bottom: 67/1150
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Micro",
  33012. height: math.unit(6, "inches")
  33013. },
  33014. {
  33015. name: "Socializing",
  33016. height: math.unit(6 + 5/12, "feet")
  33017. },
  33018. {
  33019. name: "Normal",
  33020. height: math.unit(9, "feet"),
  33021. default: true
  33022. },
  33023. {
  33024. name: "Macro",
  33025. height: math.unit(150, "feet")
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33031. {
  33032. front: {
  33033. height: math.unit(5 + 2/12, "feet"),
  33034. weight: math.unit(120, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/timber/front.svg",
  33038. extra: 2814/2705,
  33039. bottom: 181/2995
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Normal",
  33046. height: math.unit(5 + 2/12, "feet"),
  33047. default: true
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(9, "feet"),
  33056. name: "Front",
  33057. image: {
  33058. source: "./media/characters/nicki/front.svg",
  33059. extra: 1240/990,
  33060. bottom: 45/1285
  33061. },
  33062. form: "anthro",
  33063. default: true
  33064. },
  33065. side: {
  33066. height: math.unit(9, "feet"),
  33067. name: "Side",
  33068. image: {
  33069. source: "./media/characters/nicki/side.svg",
  33070. extra: 1047/973,
  33071. bottom: 61/1108
  33072. },
  33073. form: "anthro"
  33074. },
  33075. back: {
  33076. height: math.unit(9, "feet"),
  33077. name: "Back",
  33078. image: {
  33079. source: "./media/characters/nicki/back.svg",
  33080. extra: 1006/965,
  33081. bottom: 39/1045
  33082. },
  33083. form: "anthro"
  33084. },
  33085. taur: {
  33086. height: math.unit(15, "feet"),
  33087. name: "Taur",
  33088. image: {
  33089. source: "./media/characters/nicki/taur.svg",
  33090. extra: 1592/1347,
  33091. bottom: 0/1592
  33092. },
  33093. form: "taur",
  33094. default: true
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(9, "feet"),
  33101. form: "anthro",
  33102. default: true
  33103. },
  33104. {
  33105. name: "Normal",
  33106. height: math.unit(15, "feet"),
  33107. form: "taur",
  33108. default: true
  33109. }
  33110. ],
  33111. {
  33112. "anthro": {
  33113. name: "Anthro",
  33114. default: true
  33115. },
  33116. "taur": {
  33117. name: "Taur"
  33118. }
  33119. }
  33120. ))
  33121. characterMakers.push(() => makeCharacter(
  33122. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33123. {
  33124. front: {
  33125. height: math.unit(7 + 10/12, "feet"),
  33126. weight: math.unit(3.5, "tons"),
  33127. name: "Front",
  33128. image: {
  33129. source: "./media/characters/lee/front.svg",
  33130. extra: 1773/1615,
  33131. bottom: 86/1859
  33132. }
  33133. },
  33134. hand: {
  33135. height: math.unit(1.78, "feet"),
  33136. name: "Hand",
  33137. image: {
  33138. source: "./media/characters/lee/hand.svg"
  33139. }
  33140. },
  33141. maw: {
  33142. height: math.unit(1.18, "feet"),
  33143. name: "Maw",
  33144. image: {
  33145. source: "./media/characters/lee/maw.svg"
  33146. }
  33147. },
  33148. },
  33149. [
  33150. {
  33151. name: "Normal",
  33152. height: math.unit(7 + 10/12, "feet"),
  33153. default: true
  33154. },
  33155. ]
  33156. ))
  33157. characterMakers.push(() => makeCharacter(
  33158. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33159. {
  33160. front: {
  33161. height: math.unit(9, "feet"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/guti/front.svg",
  33165. extra: 4551/4355,
  33166. bottom: 123/4674
  33167. }
  33168. },
  33169. tongue: {
  33170. height: math.unit(1, "feet"),
  33171. name: "Tongue",
  33172. image: {
  33173. source: "./media/characters/guti/tongue.svg"
  33174. }
  33175. },
  33176. paw: {
  33177. height: math.unit(1.18, "feet"),
  33178. name: "Paw",
  33179. image: {
  33180. source: "./media/characters/guti/paw.svg"
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Normal",
  33187. height: math.unit(9, "feet"),
  33188. default: true
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33194. {
  33195. side: {
  33196. height: math.unit(5, "meters"),
  33197. name: "Side",
  33198. image: {
  33199. source: "./media/characters/vesper/side.svg",
  33200. extra: 1605/1518,
  33201. bottom: 0/1605
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Small",
  33208. height: math.unit(5, "meters")
  33209. },
  33210. {
  33211. name: "Sage",
  33212. height: math.unit(100, "meters"),
  33213. default: true
  33214. },
  33215. {
  33216. name: "Fun Size",
  33217. height: math.unit(600, "meters")
  33218. },
  33219. {
  33220. name: "Goddess",
  33221. height: math.unit(20000, "km")
  33222. },
  33223. {
  33224. name: "Maximum",
  33225. height: math.unit(5, "galaxies")
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33231. {
  33232. front: {
  33233. height: math.unit(6 + 3/12, "feet"),
  33234. weight: math.unit(190, "lb"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/gawain/front.svg",
  33238. extra: 2222/2139,
  33239. bottom: 90/2312
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(6 + 3/12, "feet"),
  33244. weight: math.unit(190, "lb"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/gawain/back.svg",
  33248. extra: 2199/2111,
  33249. bottom: 73/2272
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(6 + 3/12, "feet"),
  33257. default: true
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33263. {
  33264. side: {
  33265. height: math.unit(3.5, "meters"),
  33266. weight: math.unit(16000, "lb"),
  33267. name: "Side",
  33268. image: {
  33269. source: "./media/characters/dascalti/side.svg",
  33270. extra: 392/273,
  33271. bottom: 47/439
  33272. }
  33273. },
  33274. breath: {
  33275. height: math.unit(7.4, "feet"),
  33276. name: "Breath",
  33277. image: {
  33278. source: "./media/characters/dascalti/breath.svg"
  33279. }
  33280. },
  33281. fed: {
  33282. height: math.unit(3.6, "meters"),
  33283. weight: math.unit(16000, "lb"),
  33284. name: "Fed",
  33285. image: {
  33286. source: "./media/characters/dascalti/fed.svg",
  33287. extra: 1419/820,
  33288. bottom: 95/1514
  33289. }
  33290. },
  33291. },
  33292. [
  33293. {
  33294. name: "Normal",
  33295. height: math.unit(3.5, "meters"),
  33296. default: true
  33297. },
  33298. ]
  33299. ))
  33300. characterMakers.push(() => makeCharacter(
  33301. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33302. {
  33303. front: {
  33304. height: math.unit(3 + 5/12, "feet"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/mauve/front.svg",
  33308. extra: 1126/1033,
  33309. bottom: 65/1191
  33310. }
  33311. },
  33312. side: {
  33313. height: math.unit(3 + 5/12, "feet"),
  33314. name: "Side",
  33315. image: {
  33316. source: "./media/characters/mauve/side.svg",
  33317. extra: 1089/1001,
  33318. bottom: 29/1118
  33319. }
  33320. },
  33321. back: {
  33322. height: math.unit(3 + 5/12, "feet"),
  33323. name: "Back",
  33324. image: {
  33325. source: "./media/characters/mauve/back.svg",
  33326. extra: 1173/1053,
  33327. bottom: 109/1282
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Normal",
  33334. height: math.unit(3 + 5/12, "feet"),
  33335. default: true
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33341. {
  33342. front: {
  33343. height: math.unit(6 + 3/12, "feet"),
  33344. weight: math.unit(430, "lb"),
  33345. name: "Front",
  33346. image: {
  33347. source: "./media/characters/carlos/front.svg",
  33348. extra: 1964/1913,
  33349. bottom: 70/2034
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(6 + 3/12, "feet"),
  33357. default: true
  33358. },
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33363. {
  33364. back: {
  33365. height: math.unit(5 + 10/12, "feet"),
  33366. weight: math.unit(200, "lb"),
  33367. name: "Back",
  33368. image: {
  33369. source: "./media/characters/jax/back.svg",
  33370. extra: 764/739,
  33371. bottom: 25/789
  33372. }
  33373. },
  33374. },
  33375. [
  33376. {
  33377. name: "Normal",
  33378. height: math.unit(5 + 10/12, "feet"),
  33379. default: true
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33385. {
  33386. front: {
  33387. height: math.unit(8, "feet"),
  33388. weight: math.unit(250, "lb"),
  33389. name: "Front",
  33390. image: {
  33391. source: "./media/characters/eikthynir/front.svg",
  33392. extra: 1332/1166,
  33393. bottom: 82/1414
  33394. }
  33395. },
  33396. back: {
  33397. height: math.unit(8, "feet"),
  33398. weight: math.unit(250, "lb"),
  33399. name: "Back",
  33400. image: {
  33401. source: "./media/characters/eikthynir/back.svg",
  33402. extra: 1342/1190,
  33403. bottom: 19/1361
  33404. }
  33405. },
  33406. dick: {
  33407. height: math.unit(2.35, "feet"),
  33408. name: "Dick",
  33409. image: {
  33410. source: "./media/characters/eikthynir/dick.svg"
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Normal",
  33417. height: math.unit(8, "feet"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33424. {
  33425. front: {
  33426. height: math.unit(99, "meters"),
  33427. weight: math.unit(13000, "tons"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/zlmos/front.svg",
  33431. extra: 2202/1992,
  33432. bottom: 315/2517
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Macro",
  33439. height: math.unit(99, "meters"),
  33440. default: true
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(6 + 5/12, "feet"),
  33449. name: "Front",
  33450. image: {
  33451. source: "./media/characters/purri/front.svg",
  33452. extra: 1698/1610,
  33453. bottom: 32/1730
  33454. }
  33455. },
  33456. frontAlt: {
  33457. height: math.unit(6 + 5/12, "feet"),
  33458. name: "Front (Alt)",
  33459. image: {
  33460. source: "./media/characters/purri/front-alt.svg",
  33461. extra: 450/420,
  33462. bottom: 26/476
  33463. }
  33464. },
  33465. boots: {
  33466. height: math.unit(5.5, "feet"),
  33467. name: "Boots",
  33468. image: {
  33469. source: "./media/characters/purri/boots.svg",
  33470. extra: 905/853,
  33471. bottom: 18/923
  33472. }
  33473. },
  33474. lying: {
  33475. height: math.unit(2, "feet"),
  33476. name: "Lying",
  33477. image: {
  33478. source: "./media/characters/purri/lying.svg",
  33479. extra: 940/843,
  33480. bottom: 146/1086
  33481. }
  33482. },
  33483. devious: {
  33484. height: math.unit(1.77, "feet"),
  33485. name: "Devious",
  33486. image: {
  33487. source: "./media/characters/purri/devious.svg",
  33488. extra: 1440/1155,
  33489. bottom: 147/1587
  33490. }
  33491. },
  33492. bean: {
  33493. height: math.unit(1.94, "feet"),
  33494. name: "Bean",
  33495. image: {
  33496. source: "./media/characters/purri/bean.svg"
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Micro",
  33503. height: math.unit(1, "mm")
  33504. },
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(6 + 5/12, "feet"),
  33508. default: true
  33509. },
  33510. {
  33511. name: "Macro :3c",
  33512. height: math.unit(2, "miles")
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33518. {
  33519. front: {
  33520. height: math.unit(6 + 2/12, "feet"),
  33521. weight: math.unit(250, "lb"),
  33522. name: "Front",
  33523. image: {
  33524. source: "./media/characters/moonlight/front.svg",
  33525. extra: 1044/908,
  33526. bottom: 56/1100
  33527. }
  33528. },
  33529. feral: {
  33530. height: math.unit(3 + 1/12, "feet"),
  33531. weight: math.unit(50, "kg"),
  33532. name: "Feral",
  33533. image: {
  33534. source: "./media/characters/moonlight/feral.svg",
  33535. extra: 3705/2791,
  33536. bottom: 145/3850
  33537. }
  33538. },
  33539. paw: {
  33540. height: math.unit(1, "feet"),
  33541. name: "Paw",
  33542. image: {
  33543. source: "./media/characters/moonlight/paw.svg"
  33544. }
  33545. },
  33546. paws: {
  33547. height: math.unit(0.98, "feet"),
  33548. name: "Paws",
  33549. image: {
  33550. source: "./media/characters/moonlight/paws.svg",
  33551. extra: 939/939,
  33552. bottom: 50/989
  33553. }
  33554. },
  33555. mouth: {
  33556. height: math.unit(0.48, "feet"),
  33557. name: "Mouth",
  33558. image: {
  33559. source: "./media/characters/moonlight/mouth.svg"
  33560. }
  33561. },
  33562. dick: {
  33563. height: math.unit(1.46, "feet"),
  33564. name: "Dick",
  33565. image: {
  33566. source: "./media/characters/moonlight/dick.svg"
  33567. }
  33568. },
  33569. },
  33570. [
  33571. {
  33572. name: "Normal",
  33573. height: math.unit(6 + 2/12, "feet"),
  33574. default: true
  33575. },
  33576. {
  33577. name: "Macro",
  33578. height: math.unit(300, "feet")
  33579. },
  33580. {
  33581. name: "Macro+",
  33582. height: math.unit(1, "mile")
  33583. },
  33584. {
  33585. name: "Mt. Moon",
  33586. height: math.unit(5, "miles")
  33587. },
  33588. {
  33589. name: "Megamacro",
  33590. height: math.unit(15, "miles")
  33591. },
  33592. ]
  33593. ))
  33594. characterMakers.push(() => makeCharacter(
  33595. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33596. {
  33597. back: {
  33598. height: math.unit(6, "feet"),
  33599. weight: math.unit(150, "lb"),
  33600. name: "Back",
  33601. image: {
  33602. source: "./media/characters/sylen/back.svg",
  33603. extra: 1335/1273,
  33604. bottom: 107/1442
  33605. }
  33606. },
  33607. },
  33608. [
  33609. {
  33610. name: "Normal",
  33611. height: math.unit(5 + 5/12, "feet")
  33612. },
  33613. {
  33614. name: "Megamacro",
  33615. height: math.unit(3, "miles"),
  33616. default: true
  33617. },
  33618. ]
  33619. ))
  33620. characterMakers.push(() => makeCharacter(
  33621. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33622. {
  33623. front: {
  33624. height: math.unit(6, "feet"),
  33625. weight: math.unit(190, "lb"),
  33626. name: "Front",
  33627. image: {
  33628. source: "./media/characters/huttser/front.svg",
  33629. extra: 1152/1058,
  33630. bottom: 23/1175
  33631. }
  33632. },
  33633. side: {
  33634. height: math.unit(6, "feet"),
  33635. weight: math.unit(190, "lb"),
  33636. name: "Side",
  33637. image: {
  33638. source: "./media/characters/huttser/side.svg",
  33639. extra: 1174/1065,
  33640. bottom: 18/1192
  33641. }
  33642. },
  33643. back: {
  33644. height: math.unit(6, "feet"),
  33645. weight: math.unit(190, "lb"),
  33646. name: "Back",
  33647. image: {
  33648. source: "./media/characters/huttser/back.svg",
  33649. extra: 1158/1056,
  33650. bottom: 12/1170
  33651. }
  33652. },
  33653. },
  33654. [
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33659. {
  33660. side: {
  33661. height: math.unit(12 + 9/12, "feet"),
  33662. weight: math.unit(15000, "lb"),
  33663. name: "Side",
  33664. image: {
  33665. source: "./media/characters/faan/side.svg",
  33666. extra: 2747/2697,
  33667. bottom: 0/2747
  33668. }
  33669. },
  33670. front: {
  33671. height: math.unit(12 + 9/12, "feet"),
  33672. weight: math.unit(15000, "lb"),
  33673. name: "Front",
  33674. image: {
  33675. source: "./media/characters/faan/front.svg",
  33676. extra: 607/571,
  33677. bottom: 24/631
  33678. }
  33679. },
  33680. head: {
  33681. height: math.unit(2.85, "feet"),
  33682. name: "Head",
  33683. image: {
  33684. source: "./media/characters/faan/head.svg"
  33685. }
  33686. },
  33687. headAlt: {
  33688. height: math.unit(3.13, "feet"),
  33689. name: "Head-alt",
  33690. image: {
  33691. source: "./media/characters/faan/head-alt.svg"
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(12 + 9/12, "feet"),
  33699. default: true
  33700. },
  33701. ]
  33702. ))
  33703. characterMakers.push(() => makeCharacter(
  33704. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33705. {
  33706. front: {
  33707. height: math.unit(6, "feet"),
  33708. weight: math.unit(300, "lb"),
  33709. name: "Front",
  33710. image: {
  33711. source: "./media/characters/tanio/front.svg",
  33712. extra: 711/673,
  33713. bottom: 25/736
  33714. }
  33715. },
  33716. },
  33717. [
  33718. {
  33719. name: "Normal",
  33720. height: math.unit(6, "feet"),
  33721. default: true
  33722. },
  33723. ]
  33724. ))
  33725. characterMakers.push(() => makeCharacter(
  33726. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33727. {
  33728. front: {
  33729. height: math.unit(3, "inches"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/noboru/front.svg",
  33733. extra: 1039/932,
  33734. bottom: 18/1057
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Micro",
  33741. height: math.unit(3, "inches"),
  33742. default: true
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(1.85, "meters"),
  33751. weight: math.unit(80, "kg"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/daniel-barrett/front.svg",
  33755. extra: 355/337,
  33756. bottom: 9/364
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Pico",
  33763. height: math.unit(0.0433, "mm")
  33764. },
  33765. {
  33766. name: "Nano",
  33767. height: math.unit(1.5, "mm")
  33768. },
  33769. {
  33770. name: "Micro",
  33771. height: math.unit(5.3, "cm"),
  33772. default: true
  33773. },
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(1.85, "meters")
  33777. },
  33778. {
  33779. name: "Macro",
  33780. height: math.unit(64.7, "meters")
  33781. },
  33782. {
  33783. name: "Megamacro",
  33784. height: math.unit(2.26, "km")
  33785. },
  33786. {
  33787. name: "Gigamacro",
  33788. height: math.unit(79, "km")
  33789. },
  33790. {
  33791. name: "Teramacro",
  33792. height: math.unit(2765, "km")
  33793. },
  33794. {
  33795. name: "Petamacro",
  33796. height: math.unit(96678, "km")
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(30, "meters"),
  33805. weight: math.unit(400, "tons"),
  33806. name: "Front",
  33807. image: {
  33808. source: "./media/characters/zeel/front.svg",
  33809. extra: 2599/2599,
  33810. bottom: 226/2825
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Macro",
  33817. height: math.unit(30, "meters"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(6 + 7/12, "feet"),
  33827. weight: math.unit(210, "lb"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/tarn/front.svg",
  33831. extra: 3517/3220,
  33832. bottom: 91/3608
  33833. }
  33834. },
  33835. back: {
  33836. height: math.unit(6 + 7/12, "feet"),
  33837. weight: math.unit(210, "lb"),
  33838. name: "Back",
  33839. image: {
  33840. source: "./media/characters/tarn/back.svg",
  33841. extra: 3566/3241,
  33842. bottom: 34/3600
  33843. }
  33844. },
  33845. dick: {
  33846. height: math.unit(1.65, "feet"),
  33847. name: "Dick",
  33848. image: {
  33849. source: "./media/characters/tarn/dick.svg"
  33850. }
  33851. },
  33852. paw: {
  33853. height: math.unit(1.80, "feet"),
  33854. name: "Paw",
  33855. image: {
  33856. source: "./media/characters/tarn/paw.svg"
  33857. }
  33858. },
  33859. tongue: {
  33860. height: math.unit(0.97, "feet"),
  33861. name: "Tongue",
  33862. image: {
  33863. source: "./media/characters/tarn/tongue.svg"
  33864. }
  33865. },
  33866. },
  33867. [
  33868. {
  33869. name: "Micro",
  33870. height: math.unit(4, "inches")
  33871. },
  33872. {
  33873. name: "Normal",
  33874. height: math.unit(6 + 7/12, "feet"),
  33875. default: true
  33876. },
  33877. {
  33878. name: "Macro",
  33879. height: math.unit(300, "feet")
  33880. },
  33881. ]
  33882. ))
  33883. characterMakers.push(() => makeCharacter(
  33884. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33885. {
  33886. front: {
  33887. height: math.unit(5 + 7/12, "feet"),
  33888. weight: math.unit(80, "kg"),
  33889. name: "Front",
  33890. image: {
  33891. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33892. extra: 3023/2865,
  33893. bottom: 33/3056
  33894. }
  33895. },
  33896. back: {
  33897. height: math.unit(5 + 7/12, "feet"),
  33898. weight: math.unit(80, "kg"),
  33899. name: "Back",
  33900. image: {
  33901. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33902. extra: 3020/2886,
  33903. bottom: 30/3050
  33904. }
  33905. },
  33906. dick: {
  33907. height: math.unit(0.98, "feet"),
  33908. name: "Dick",
  33909. image: {
  33910. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33911. }
  33912. },
  33913. anatomy: {
  33914. height: math.unit(2.86, "feet"),
  33915. name: "Anatomy",
  33916. image: {
  33917. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Really Small",
  33924. height: math.unit(2, "inches")
  33925. },
  33926. {
  33927. name: "Micro",
  33928. height: math.unit(5.583, "inches")
  33929. },
  33930. {
  33931. name: "Normal",
  33932. height: math.unit(5 + 7/12, "feet"),
  33933. default: true
  33934. },
  33935. {
  33936. name: "Macro",
  33937. height: math.unit(67, "feet")
  33938. },
  33939. {
  33940. name: "Megamacro",
  33941. height: math.unit(134, "feet")
  33942. },
  33943. ]
  33944. ))
  33945. characterMakers.push(() => makeCharacter(
  33946. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33947. {
  33948. front: {
  33949. height: math.unit(9, "feet"),
  33950. weight: math.unit(120, "lb"),
  33951. name: "Front",
  33952. image: {
  33953. source: "./media/characters/sally/front.svg",
  33954. extra: 1506/1349,
  33955. bottom: 66/1572
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Normal",
  33962. height: math.unit(9, "feet"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(8, "feet"),
  33972. weight: math.unit(900, "lb"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/owen/front.svg",
  33976. extra: 1761/1657,
  33977. bottom: 74/1835
  33978. }
  33979. },
  33980. side: {
  33981. height: math.unit(8, "feet"),
  33982. weight: math.unit(900, "lb"),
  33983. name: "Side",
  33984. image: {
  33985. source: "./media/characters/owen/side.svg",
  33986. extra: 1797/1734,
  33987. bottom: 30/1827
  33988. }
  33989. },
  33990. back: {
  33991. height: math.unit(8, "feet"),
  33992. weight: math.unit(900, "lb"),
  33993. name: "Back",
  33994. image: {
  33995. source: "./media/characters/owen/back.svg",
  33996. extra: 1796/1706,
  33997. bottom: 59/1855
  33998. }
  33999. },
  34000. maw: {
  34001. height: math.unit(1.76, "feet"),
  34002. name: "Maw",
  34003. image: {
  34004. source: "./media/characters/owen/maw.svg"
  34005. }
  34006. },
  34007. },
  34008. [
  34009. {
  34010. name: "Normal",
  34011. height: math.unit(8, "feet"),
  34012. default: true
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34018. {
  34019. front: {
  34020. height: math.unit(4, "feet"),
  34021. weight: math.unit(400, "lb"),
  34022. name: "Front",
  34023. image: {
  34024. source: "./media/characters/ryth/front.svg",
  34025. extra: 1920/1748,
  34026. bottom: 42/1962
  34027. }
  34028. },
  34029. back: {
  34030. height: math.unit(4, "feet"),
  34031. weight: math.unit(400, "lb"),
  34032. name: "Back",
  34033. image: {
  34034. source: "./media/characters/ryth/back.svg",
  34035. extra: 1897/1690,
  34036. bottom: 89/1986
  34037. }
  34038. },
  34039. mouth: {
  34040. height: math.unit(1.39, "feet"),
  34041. name: "Mouth",
  34042. image: {
  34043. source: "./media/characters/ryth/mouth.svg"
  34044. }
  34045. },
  34046. tailmaw: {
  34047. height: math.unit(1.23, "feet"),
  34048. name: "Tailmaw",
  34049. image: {
  34050. source: "./media/characters/ryth/tailmaw.svg"
  34051. }
  34052. },
  34053. goia: {
  34054. height: math.unit(4, "meters"),
  34055. weight: math.unit(10800, "lb"),
  34056. name: "Goia",
  34057. image: {
  34058. source: "./media/characters/ryth/goia.svg",
  34059. extra: 745/640,
  34060. bottom: 107/852
  34061. }
  34062. },
  34063. goiaFront: {
  34064. height: math.unit(4, "meters"),
  34065. weight: math.unit(10800, "lb"),
  34066. name: "Goia (Front)",
  34067. image: {
  34068. source: "./media/characters/ryth/goia-front.svg",
  34069. extra: 750/586,
  34070. bottom: 114/864
  34071. }
  34072. },
  34073. goiaMaw: {
  34074. height: math.unit(5.55, "feet"),
  34075. name: "Goia Maw",
  34076. image: {
  34077. source: "./media/characters/ryth/goia-maw.svg"
  34078. }
  34079. },
  34080. goiaForepaw: {
  34081. height: math.unit(3.5, "feet"),
  34082. name: "Goia Forepaw",
  34083. image: {
  34084. source: "./media/characters/ryth/goia-forepaw.svg"
  34085. }
  34086. },
  34087. goiaHindpaw: {
  34088. height: math.unit(5.55, "feet"),
  34089. name: "Goia Hindpaw",
  34090. image: {
  34091. source: "./media/characters/ryth/goia-hindpaw.svg"
  34092. }
  34093. },
  34094. },
  34095. [
  34096. {
  34097. name: "Normal",
  34098. height: math.unit(4, "feet"),
  34099. default: true
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34105. {
  34106. front: {
  34107. height: math.unit(7, "feet"),
  34108. weight: math.unit(180, "lb"),
  34109. name: "Front",
  34110. image: {
  34111. source: "./media/characters/necrolance/front.svg",
  34112. extra: 1062/947,
  34113. bottom: 41/1103
  34114. }
  34115. },
  34116. back: {
  34117. height: math.unit(7, "feet"),
  34118. weight: math.unit(180, "lb"),
  34119. name: "Back",
  34120. image: {
  34121. source: "./media/characters/necrolance/back.svg",
  34122. extra: 1045/984,
  34123. bottom: 14/1059
  34124. }
  34125. },
  34126. wing: {
  34127. height: math.unit(2.67, "feet"),
  34128. name: "Wing",
  34129. image: {
  34130. source: "./media/characters/necrolance/wing.svg"
  34131. }
  34132. },
  34133. },
  34134. [
  34135. {
  34136. name: "Normal",
  34137. height: math.unit(7, "feet"),
  34138. default: true
  34139. },
  34140. ]
  34141. ))
  34142. characterMakers.push(() => makeCharacter(
  34143. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34144. {
  34145. front: {
  34146. height: math.unit(76, "meters"),
  34147. weight: math.unit(30000, "tons"),
  34148. name: "Front",
  34149. image: {
  34150. source: "./media/characters/tyler/front.svg",
  34151. extra: 1640/1640,
  34152. bottom: 114/1754
  34153. }
  34154. },
  34155. },
  34156. [
  34157. {
  34158. name: "Macro",
  34159. height: math.unit(76, "meters"),
  34160. default: true
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(4 + 11/12, "feet"),
  34169. weight: math.unit(132, "lb"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/icey/front.svg",
  34173. extra: 2750/2550,
  34174. bottom: 33/2783
  34175. }
  34176. },
  34177. back: {
  34178. height: math.unit(4 + 11/12, "feet"),
  34179. weight: math.unit(132, "lb"),
  34180. name: "Back",
  34181. image: {
  34182. source: "./media/characters/icey/back.svg",
  34183. extra: 2624/2481,
  34184. bottom: 35/2659
  34185. }
  34186. },
  34187. },
  34188. [
  34189. {
  34190. name: "Normal",
  34191. height: math.unit(4 + 11/12, "feet"),
  34192. default: true
  34193. },
  34194. ]
  34195. ))
  34196. characterMakers.push(() => makeCharacter(
  34197. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34198. {
  34199. front: {
  34200. height: math.unit(100, "feet"),
  34201. weight: math.unit(0, "lb"),
  34202. name: "Front",
  34203. image: {
  34204. source: "./media/characters/smile/front.svg",
  34205. extra: 2983/2912,
  34206. bottom: 162/3145
  34207. }
  34208. },
  34209. back: {
  34210. height: math.unit(100, "feet"),
  34211. weight: math.unit(0, "lb"),
  34212. name: "Back",
  34213. image: {
  34214. source: "./media/characters/smile/back.svg",
  34215. extra: 3143/3031,
  34216. bottom: 91/3234
  34217. }
  34218. },
  34219. head: {
  34220. height: math.unit(26.3, "feet"),
  34221. weight: math.unit(0, "lb"),
  34222. name: "Head",
  34223. image: {
  34224. source: "./media/characters/smile/head.svg"
  34225. }
  34226. },
  34227. collar: {
  34228. height: math.unit(5.3, "feet"),
  34229. weight: math.unit(0, "lb"),
  34230. name: "Collar",
  34231. image: {
  34232. source: "./media/characters/smile/collar.svg"
  34233. }
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Macro",
  34239. height: math.unit(100, "feet"),
  34240. default: true
  34241. },
  34242. ]
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34246. {
  34247. dragon: {
  34248. height: math.unit(26, "feet"),
  34249. weight: math.unit(36, "tons"),
  34250. name: "Dragon",
  34251. image: {
  34252. source: "./media/characters/arimphae/dragon.svg",
  34253. extra: 1574/983,
  34254. bottom: 357/1931
  34255. }
  34256. },
  34257. drake: {
  34258. height: math.unit(9, "feet"),
  34259. weight: math.unit(1.5, "tons"),
  34260. name: "Drake",
  34261. image: {
  34262. source: "./media/characters/arimphae/drake.svg",
  34263. extra: 1120/925,
  34264. bottom: 435/1555
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Small",
  34271. height: math.unit(26*5/9, "feet")
  34272. },
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(26, "feet"),
  34276. default: true
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(8 + 9/12, "feet"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/xander/front.svg",
  34288. extra: 1237/974,
  34289. bottom: 94/1331
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Normal",
  34296. height: math.unit(8 + 9/12, "feet"),
  34297. default: true
  34298. },
  34299. {
  34300. name: "Gaze Grabber",
  34301. height: math.unit(13 + 8/12, "feet")
  34302. },
  34303. {
  34304. name: "Jaw Dropper",
  34305. height: math.unit(27, "feet")
  34306. },
  34307. {
  34308. name: "Show Stopper",
  34309. height: math.unit(136, "feet")
  34310. },
  34311. {
  34312. name: "Superstar",
  34313. height: math.unit(1.9e6, "miles")
  34314. },
  34315. ]
  34316. ))
  34317. characterMakers.push(() => makeCharacter(
  34318. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34319. {
  34320. side: {
  34321. height: math.unit(2100, "feet"),
  34322. name: "Side",
  34323. image: {
  34324. source: "./media/characters/osiris/side.svg",
  34325. extra: 1105/939,
  34326. bottom: 167/1272
  34327. }
  34328. },
  34329. },
  34330. [
  34331. {
  34332. name: "Macro",
  34333. height: math.unit(2100, "feet"),
  34334. default: true
  34335. },
  34336. ]
  34337. ))
  34338. characterMakers.push(() => makeCharacter(
  34339. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34340. {
  34341. front: {
  34342. height: math.unit(6 + 8/12, "feet"),
  34343. weight: math.unit(225, "lb"),
  34344. name: "Front",
  34345. image: {
  34346. source: "./media/characters/rhys-londe/front.svg",
  34347. extra: 2258/2141,
  34348. bottom: 188/2446
  34349. }
  34350. },
  34351. back: {
  34352. height: math.unit(6 + 8/12, "feet"),
  34353. weight: math.unit(225, "lb"),
  34354. name: "Back",
  34355. image: {
  34356. source: "./media/characters/rhys-londe/back.svg",
  34357. extra: 2237/2137,
  34358. bottom: 63/2300
  34359. }
  34360. },
  34361. frontNsfw: {
  34362. height: math.unit(6 + 8/12, "feet"),
  34363. weight: math.unit(225, "lb"),
  34364. name: "Front (NSFW)",
  34365. image: {
  34366. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34367. extra: 2258/2141,
  34368. bottom: 188/2446
  34369. }
  34370. },
  34371. backNsfw: {
  34372. height: math.unit(6 + 8/12, "feet"),
  34373. weight: math.unit(225, "lb"),
  34374. name: "Back (NSFW)",
  34375. image: {
  34376. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34377. extra: 2237/2137,
  34378. bottom: 63/2300
  34379. }
  34380. },
  34381. dick: {
  34382. height: math.unit(30, "inches"),
  34383. name: "Dick",
  34384. image: {
  34385. source: "./media/characters/rhys-londe/dick.svg"
  34386. }
  34387. },
  34388. maw: {
  34389. height: math.unit(1.6, "feet"),
  34390. name: "Maw",
  34391. image: {
  34392. source: "./media/characters/rhys-londe/maw.svg"
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Normal",
  34399. height: math.unit(6 + 8/12, "feet"),
  34400. default: true
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(3 + 10/12, "feet"),
  34409. weight: math.unit(90, "lb"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/taivas-ensim/front.svg",
  34413. extra: 1327/1216,
  34414. bottom: 96/1423
  34415. }
  34416. },
  34417. back: {
  34418. height: math.unit(3 + 10/12, "feet"),
  34419. weight: math.unit(90, "lb"),
  34420. name: "Back",
  34421. image: {
  34422. source: "./media/characters/taivas-ensim/back.svg",
  34423. extra: 1355/1247,
  34424. bottom: 11/1366
  34425. }
  34426. },
  34427. frontNsfw: {
  34428. height: math.unit(3 + 10/12, "feet"),
  34429. weight: math.unit(90, "lb"),
  34430. name: "Front (NSFW)",
  34431. image: {
  34432. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34433. extra: 1327/1216,
  34434. bottom: 96/1423
  34435. }
  34436. },
  34437. backNsfw: {
  34438. height: math.unit(3 + 10/12, "feet"),
  34439. weight: math.unit(90, "lb"),
  34440. name: "Back (NSFW)",
  34441. image: {
  34442. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34443. extra: 1355/1247,
  34444. bottom: 11/1366
  34445. }
  34446. },
  34447. },
  34448. [
  34449. {
  34450. name: "Normal",
  34451. height: math.unit(3 + 10/12, "feet"),
  34452. default: true
  34453. },
  34454. ]
  34455. ))
  34456. characterMakers.push(() => makeCharacter(
  34457. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34458. {
  34459. front: {
  34460. height: math.unit(9 + 6/12, "feet"),
  34461. weight: math.unit(940, "lb"),
  34462. name: "Front",
  34463. image: {
  34464. source: "./media/characters/byliss/front.svg",
  34465. extra: 1327/1290,
  34466. bottom: 82/1409
  34467. }
  34468. },
  34469. back: {
  34470. height: math.unit(9 + 6/12, "feet"),
  34471. weight: math.unit(940, "lb"),
  34472. name: "Back",
  34473. image: {
  34474. source: "./media/characters/byliss/back.svg",
  34475. extra: 1376/1349,
  34476. bottom: 9/1385
  34477. }
  34478. },
  34479. frontNsfw: {
  34480. height: math.unit(9 + 6/12, "feet"),
  34481. weight: math.unit(940, "lb"),
  34482. name: "Front (NSFW)",
  34483. image: {
  34484. source: "./media/characters/byliss/front-nsfw.svg",
  34485. extra: 1327/1290,
  34486. bottom: 82/1409
  34487. }
  34488. },
  34489. backNsfw: {
  34490. height: math.unit(9 + 6/12, "feet"),
  34491. weight: math.unit(940, "lb"),
  34492. name: "Back (NSFW)",
  34493. image: {
  34494. source: "./media/characters/byliss/back-nsfw.svg",
  34495. extra: 1376/1349,
  34496. bottom: 9/1385
  34497. }
  34498. },
  34499. },
  34500. [
  34501. {
  34502. name: "Normal",
  34503. height: math.unit(9 + 6/12, "feet"),
  34504. default: true
  34505. },
  34506. ]
  34507. ))
  34508. characterMakers.push(() => makeCharacter(
  34509. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34510. {
  34511. front: {
  34512. height: math.unit(5 + 2/12, "feet"),
  34513. weight: math.unit(200, "lb"),
  34514. name: "Front",
  34515. image: {
  34516. source: "./media/characters/noraly/front.svg",
  34517. extra: 4985/4773,
  34518. bottom: 150/5135
  34519. }
  34520. },
  34521. full: {
  34522. height: math.unit(5 + 2/12, "feet"),
  34523. weight: math.unit(164, "lb"),
  34524. name: "Full",
  34525. image: {
  34526. source: "./media/characters/noraly/full.svg",
  34527. extra: 1114/1059,
  34528. bottom: 35/1149
  34529. }
  34530. },
  34531. fuller: {
  34532. height: math.unit(5 + 2/12, "feet"),
  34533. weight: math.unit(230, "lb"),
  34534. name: "Fuller",
  34535. image: {
  34536. source: "./media/characters/noraly/fuller.svg",
  34537. extra: 1114/1059,
  34538. bottom: 35/1149
  34539. }
  34540. },
  34541. fullest: {
  34542. height: math.unit(5 + 2/12, "feet"),
  34543. weight: math.unit(300, "lb"),
  34544. name: "Fullest",
  34545. image: {
  34546. source: "./media/characters/noraly/fullest.svg",
  34547. extra: 1114/1059,
  34548. bottom: 35/1149
  34549. }
  34550. },
  34551. },
  34552. [
  34553. {
  34554. name: "Normal",
  34555. height: math.unit(5 + 2/12, "feet"),
  34556. default: true
  34557. },
  34558. ]
  34559. ))
  34560. characterMakers.push(() => makeCharacter(
  34561. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34562. {
  34563. front: {
  34564. height: math.unit(5 + 2/12, "feet"),
  34565. weight: math.unit(210, "lb"),
  34566. name: "Front",
  34567. image: {
  34568. source: "./media/characters/pera/front.svg",
  34569. extra: 1560/1531,
  34570. bottom: 165/1725
  34571. }
  34572. },
  34573. back: {
  34574. height: math.unit(5 + 2/12, "feet"),
  34575. weight: math.unit(210, "lb"),
  34576. name: "Back",
  34577. image: {
  34578. source: "./media/characters/pera/back.svg",
  34579. extra: 1523/1493,
  34580. bottom: 152/1675
  34581. }
  34582. },
  34583. dick: {
  34584. height: math.unit(2.4, "feet"),
  34585. name: "Dick",
  34586. image: {
  34587. source: "./media/characters/pera/dick.svg"
  34588. }
  34589. },
  34590. },
  34591. [
  34592. {
  34593. name: "Normal",
  34594. height: math.unit(5 + 2/12, "feet"),
  34595. default: true
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34601. {
  34602. front: {
  34603. height: math.unit(12, "feet"),
  34604. weight: math.unit(3200, "lb"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/julian/front.svg",
  34608. extra: 2962/2701,
  34609. bottom: 184/3146
  34610. }
  34611. },
  34612. maw: {
  34613. height: math.unit(5.35, "feet"),
  34614. name: "Maw",
  34615. image: {
  34616. source: "./media/characters/julian/maw.svg"
  34617. }
  34618. },
  34619. paw: {
  34620. height: math.unit(3.07, "feet"),
  34621. name: "Paw",
  34622. image: {
  34623. source: "./media/characters/julian/paw.svg"
  34624. }
  34625. },
  34626. },
  34627. [
  34628. {
  34629. name: "Default",
  34630. height: math.unit(12, "feet"),
  34631. default: true
  34632. },
  34633. {
  34634. name: "Big",
  34635. height: math.unit(50, "feet")
  34636. },
  34637. {
  34638. name: "Really Big",
  34639. height: math.unit(1, "mile")
  34640. },
  34641. {
  34642. name: "Extremely Big",
  34643. height: math.unit(100, "miles")
  34644. },
  34645. {
  34646. name: "Planet Hugger",
  34647. height: math.unit(200, "megameters")
  34648. },
  34649. {
  34650. name: "Unreasonably Big",
  34651. height: math.unit(1e300, "meters")
  34652. },
  34653. ]
  34654. ))
  34655. characterMakers.push(() => makeCharacter(
  34656. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34657. {
  34658. solgooleo: {
  34659. height: math.unit(4, "meters"),
  34660. weight: math.unit(6000*1.5, "kg"),
  34661. volume: math.unit(6000, "liters"),
  34662. name: "Solgooleo",
  34663. image: {
  34664. source: "./media/characters/pi/solgooleo.svg",
  34665. extra: 388/331,
  34666. bottom: 29/417
  34667. }
  34668. },
  34669. },
  34670. [
  34671. {
  34672. name: "Normal",
  34673. height: math.unit(4, "meters"),
  34674. default: true
  34675. },
  34676. ]
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34680. {
  34681. front: {
  34682. height: math.unit(8, "feet"),
  34683. weight: math.unit(4, "tons"),
  34684. name: "Front",
  34685. image: {
  34686. source: "./media/characters/shaun/front.svg",
  34687. extra: 503/495,
  34688. bottom: 20/523
  34689. }
  34690. },
  34691. back: {
  34692. height: math.unit(8, "feet"),
  34693. weight: math.unit(4, "tons"),
  34694. name: "Back",
  34695. image: {
  34696. source: "./media/characters/shaun/back.svg",
  34697. extra: 487/480,
  34698. bottom: 20/507
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Lorg",
  34705. height: math.unit(8, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34712. {
  34713. frontAnthro: {
  34714. height: math.unit(7, "feet"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/sini/front-anthro.svg",
  34718. extra: 726/678,
  34719. bottom: 35/761
  34720. },
  34721. form: "anthro",
  34722. default: true
  34723. },
  34724. backAnthro: {
  34725. height: math.unit(7, "feet"),
  34726. name: "Back",
  34727. image: {
  34728. source: "./media/characters/sini/back-anthro.svg",
  34729. extra: 743/701,
  34730. bottom: 12/755
  34731. },
  34732. form: "anthro",
  34733. },
  34734. frontAnthroNsfw: {
  34735. height: math.unit(7, "feet"),
  34736. name: "Front (NSFW)",
  34737. image: {
  34738. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34739. extra: 726/678,
  34740. bottom: 35/761
  34741. },
  34742. form: "anthro"
  34743. },
  34744. backAnthroNsfw: {
  34745. height: math.unit(7, "feet"),
  34746. name: "Back (NSFW)",
  34747. image: {
  34748. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34749. extra: 743/701,
  34750. bottom: 12/755
  34751. },
  34752. form: "anthro",
  34753. },
  34754. mawAnthro: {
  34755. height: math.unit(2.14, "feet"),
  34756. name: "Maw",
  34757. image: {
  34758. source: "./media/characters/sini/maw-anthro.svg"
  34759. },
  34760. form: "anthro"
  34761. },
  34762. dick: {
  34763. height: math.unit(1.45, "feet"),
  34764. name: "Dick",
  34765. image: {
  34766. source: "./media/characters/sini/dick-anthro.svg"
  34767. },
  34768. form: "anthro"
  34769. },
  34770. feral: {
  34771. height: math.unit(16, "feet"),
  34772. name: "Feral",
  34773. image: {
  34774. source: "./media/characters/sini/feral.svg",
  34775. extra: 814/605,
  34776. bottom: 11/825
  34777. },
  34778. form: "feral",
  34779. default: true
  34780. },
  34781. feralNsfw: {
  34782. height: math.unit(16, "feet"),
  34783. name: "Feral (NSFW)",
  34784. image: {
  34785. source: "./media/characters/sini/feral-nsfw.svg",
  34786. extra: 814/605,
  34787. bottom: 11/825
  34788. },
  34789. form: "feral"
  34790. },
  34791. mawFeral: {
  34792. height: math.unit(5.66, "feet"),
  34793. name: "Maw",
  34794. image: {
  34795. source: "./media/characters/sini/maw-feral.svg"
  34796. },
  34797. form: "feral",
  34798. },
  34799. pawFeral: {
  34800. height: math.unit(5.17, "feet"),
  34801. name: "Paw",
  34802. image: {
  34803. source: "./media/characters/sini/paw-feral.svg"
  34804. },
  34805. form: "feral",
  34806. },
  34807. rumpFeral: {
  34808. height: math.unit(13.11, "feet"),
  34809. name: "Rump",
  34810. image: {
  34811. source: "./media/characters/sini/rump-feral.svg"
  34812. },
  34813. form: "feral",
  34814. },
  34815. dickFeral: {
  34816. height: math.unit(1, "feet"),
  34817. name: "Dick",
  34818. image: {
  34819. source: "./media/characters/sini/dick-feral.svg"
  34820. },
  34821. form: "feral",
  34822. },
  34823. eyeFeral: {
  34824. height: math.unit(1.23, "feet"),
  34825. name: "Eye",
  34826. image: {
  34827. source: "./media/characters/sini/eye-feral.svg"
  34828. },
  34829. form: "feral",
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(7, "feet"),
  34836. default: true,
  34837. form: "anthro"
  34838. },
  34839. {
  34840. name: "Normal",
  34841. height: math.unit(16, "feet"),
  34842. default: true,
  34843. form: "feral"
  34844. },
  34845. ],
  34846. {
  34847. "anthro": {
  34848. name: "Anthro",
  34849. default: true
  34850. },
  34851. "feral": {
  34852. name: "Feral",
  34853. }
  34854. }
  34855. ))
  34856. characterMakers.push(() => makeCharacter(
  34857. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34858. {
  34859. side: {
  34860. height: math.unit(47.2, "meters"),
  34861. weight: math.unit(10000, "tons"),
  34862. name: "Side",
  34863. image: {
  34864. source: "./media/characters/raylldo/side.svg",
  34865. extra: 2363/642,
  34866. bottom: 221/2584
  34867. }
  34868. },
  34869. top: {
  34870. height: math.unit(240, "meters"),
  34871. weight: math.unit(10000, "tons"),
  34872. name: "Top",
  34873. image: {
  34874. source: "./media/characters/raylldo/top.svg"
  34875. }
  34876. },
  34877. bottom: {
  34878. height: math.unit(240, "meters"),
  34879. weight: math.unit(10000, "tons"),
  34880. name: "Bottom",
  34881. image: {
  34882. source: "./media/characters/raylldo/bottom.svg"
  34883. }
  34884. },
  34885. head: {
  34886. height: math.unit(38.6, "meters"),
  34887. name: "Head",
  34888. image: {
  34889. source: "./media/characters/raylldo/head.svg",
  34890. extra: 1335/1112,
  34891. bottom: 0/1335
  34892. }
  34893. },
  34894. maw: {
  34895. height: math.unit(16.37, "meters"),
  34896. name: "Maw",
  34897. image: {
  34898. source: "./media/characters/raylldo/maw.svg",
  34899. extra: 883/660,
  34900. bottom: 0/883
  34901. },
  34902. extraAttributes: {
  34903. preyCapacity: {
  34904. name: "Capacity",
  34905. power: 3,
  34906. type: "volume",
  34907. base: math.unit(1000, "people")
  34908. },
  34909. tongueSize: {
  34910. name: "Tongue Size",
  34911. power: 2,
  34912. type: "area",
  34913. base: math.unit(21, "m^2")
  34914. }
  34915. }
  34916. },
  34917. forepaw: {
  34918. height: math.unit(18, "meters"),
  34919. name: "Forepaw",
  34920. image: {
  34921. source: "./media/characters/raylldo/forepaw.svg"
  34922. }
  34923. },
  34924. hindpaw: {
  34925. height: math.unit(23, "meters"),
  34926. name: "Hindpaw",
  34927. image: {
  34928. source: "./media/characters/raylldo/hindpaw.svg"
  34929. }
  34930. },
  34931. genitals: {
  34932. height: math.unit(42, "meters"),
  34933. name: "Genitals",
  34934. image: {
  34935. source: "./media/characters/raylldo/genitals.svg"
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(47.2, "meters"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34949. {
  34950. anthroFront: {
  34951. height: math.unit(9, "feet"),
  34952. weight: math.unit(600, "lb"),
  34953. name: "Anthro (Front)",
  34954. image: {
  34955. source: "./media/characters/glint/anthro-front.svg",
  34956. extra: 1097/1018,
  34957. bottom: 28/1125
  34958. }
  34959. },
  34960. anthroBack: {
  34961. height: math.unit(9, "feet"),
  34962. weight: math.unit(600, "lb"),
  34963. name: "Anthro (Back)",
  34964. image: {
  34965. source: "./media/characters/glint/anthro-back.svg",
  34966. extra: 1154/997,
  34967. bottom: 36/1190
  34968. }
  34969. },
  34970. feral: {
  34971. height: math.unit(11, "feet"),
  34972. weight: math.unit(50000, "lb"),
  34973. name: "Feral",
  34974. image: {
  34975. source: "./media/characters/glint/feral.svg",
  34976. extra: 3035/1585,
  34977. bottom: 1169/4204
  34978. }
  34979. },
  34980. dickAnthro: {
  34981. height: math.unit(0.7, "meters"),
  34982. name: "Dick (Anthro)",
  34983. image: {
  34984. source: "./media/characters/glint/dick-anthro.svg"
  34985. }
  34986. },
  34987. dickFeral: {
  34988. height: math.unit(2.65, "meters"),
  34989. name: "Dick (Feral)",
  34990. image: {
  34991. source: "./media/characters/glint/dick-feral.svg"
  34992. }
  34993. },
  34994. slitHidden: {
  34995. height: math.unit(5.85, "meters"),
  34996. name: "Slit (Hidden)",
  34997. image: {
  34998. source: "./media/characters/glint/slit-hidden.svg"
  34999. }
  35000. },
  35001. slitErect: {
  35002. height: math.unit(5.85, "meters"),
  35003. name: "Slit (Erect)",
  35004. image: {
  35005. source: "./media/characters/glint/slit-erect.svg"
  35006. }
  35007. },
  35008. mawAnthro: {
  35009. height: math.unit(0.63, "meters"),
  35010. name: "Maw (Anthro)",
  35011. image: {
  35012. source: "./media/characters/glint/maw.svg"
  35013. }
  35014. },
  35015. mawFeral: {
  35016. height: math.unit(2.89, "meters"),
  35017. name: "Maw (Feral)",
  35018. image: {
  35019. source: "./media/characters/glint/maw.svg"
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Normal",
  35026. height: math.unit(9, "feet"),
  35027. default: true
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35033. {
  35034. side: {
  35035. height: math.unit(15, "feet"),
  35036. weight: math.unit(5000, "kg"),
  35037. name: "Side",
  35038. image: {
  35039. source: "./media/characters/kairne/side.svg",
  35040. extra: 979/811,
  35041. bottom: 13/992
  35042. }
  35043. },
  35044. front: {
  35045. height: math.unit(15, "feet"),
  35046. weight: math.unit(5000, "kg"),
  35047. name: "Front",
  35048. image: {
  35049. source: "./media/characters/kairne/front.svg",
  35050. extra: 908/814,
  35051. bottom: 26/934
  35052. }
  35053. },
  35054. sideNsfw: {
  35055. height: math.unit(15, "feet"),
  35056. weight: math.unit(5000, "kg"),
  35057. name: "Side (NSFW)",
  35058. image: {
  35059. source: "./media/characters/kairne/side-nsfw.svg",
  35060. extra: 979/811,
  35061. bottom: 13/992
  35062. }
  35063. },
  35064. frontNsfw: {
  35065. height: math.unit(15, "feet"),
  35066. weight: math.unit(5000, "kg"),
  35067. name: "Front (NSFW)",
  35068. image: {
  35069. source: "./media/characters/kairne/front-nsfw.svg",
  35070. extra: 908/814,
  35071. bottom: 26/934
  35072. }
  35073. },
  35074. dickCaged: {
  35075. height: math.unit(0.65, "meters"),
  35076. name: "Dick-caged",
  35077. image: {
  35078. source: "./media/characters/kairne/dick-caged.svg"
  35079. }
  35080. },
  35081. dick: {
  35082. height: math.unit(0.79, "meters"),
  35083. name: "Dick",
  35084. image: {
  35085. source: "./media/characters/kairne/dick.svg"
  35086. }
  35087. },
  35088. genitals: {
  35089. height: math.unit(1.29, "meters"),
  35090. name: "Genitals",
  35091. image: {
  35092. source: "./media/characters/kairne/genitals.svg"
  35093. }
  35094. },
  35095. maw: {
  35096. height: math.unit(1.73, "meters"),
  35097. name: "Maw",
  35098. image: {
  35099. source: "./media/characters/kairne/maw.svg"
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(15, "feet"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35113. {
  35114. front: {
  35115. height: math.unit(5 + 8/12, "feet"),
  35116. weight: math.unit(139, "lb"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/biscuit-jackal/front.svg",
  35120. extra: 2106/1961,
  35121. bottom: 58/2164
  35122. }
  35123. },
  35124. back: {
  35125. height: math.unit(5 + 8/12, "feet"),
  35126. weight: math.unit(139, "lb"),
  35127. name: "Back",
  35128. image: {
  35129. source: "./media/characters/biscuit-jackal/back.svg",
  35130. extra: 2132/1976,
  35131. bottom: 57/2189
  35132. }
  35133. },
  35134. werejackal: {
  35135. height: math.unit(6 + 3/12, "feet"),
  35136. weight: math.unit(188, "lb"),
  35137. name: "Werejackal",
  35138. image: {
  35139. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35140. extra: 2373/2178,
  35141. bottom: 53/2426
  35142. }
  35143. },
  35144. },
  35145. [
  35146. {
  35147. name: "Normal",
  35148. height: math.unit(5 + 8/12, "feet"),
  35149. default: true
  35150. },
  35151. ]
  35152. ))
  35153. characterMakers.push(() => makeCharacter(
  35154. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35155. {
  35156. front: {
  35157. height: math.unit(140, "cm"),
  35158. weight: math.unit(45, "kg"),
  35159. name: "Front",
  35160. image: {
  35161. source: "./media/characters/tayra-white/front.svg",
  35162. extra: 2229/2192,
  35163. bottom: 75/2304
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(140, "cm"),
  35171. default: true
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35177. {
  35178. front: {
  35179. height: math.unit(4 + 5/12, "feet"),
  35180. name: "Front",
  35181. image: {
  35182. source: "./media/characters/scoop/front.svg",
  35183. extra: 1257/1136,
  35184. bottom: 69/1326
  35185. }
  35186. },
  35187. back: {
  35188. height: math.unit(4 + 5/12, "feet"),
  35189. name: "Back",
  35190. image: {
  35191. source: "./media/characters/scoop/back.svg",
  35192. extra: 1321/1152,
  35193. bottom: 32/1353
  35194. }
  35195. },
  35196. maw: {
  35197. height: math.unit(0.68, "feet"),
  35198. name: "Maw",
  35199. image: {
  35200. source: "./media/characters/scoop/maw.svg"
  35201. }
  35202. },
  35203. },
  35204. [
  35205. {
  35206. name: "Really Small",
  35207. height: math.unit(1, "mm")
  35208. },
  35209. {
  35210. name: "Micro",
  35211. height: math.unit(1, "inch")
  35212. },
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(4 + 5/12, "feet"),
  35216. default: true
  35217. },
  35218. {
  35219. name: "Macro",
  35220. height: math.unit(200, "feet")
  35221. },
  35222. {
  35223. name: "Megamacro",
  35224. height: math.unit(3240, "feet")
  35225. },
  35226. {
  35227. name: "Teramacro",
  35228. height: math.unit(2500, "miles")
  35229. },
  35230. ]
  35231. ))
  35232. characterMakers.push(() => makeCharacter(
  35233. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35234. {
  35235. front: {
  35236. height: math.unit(15 + 7/12, "feet"),
  35237. weight: math.unit(1150, "tons"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/saphinara/front.svg",
  35241. extra: 1837/1643,
  35242. bottom: 84/1921
  35243. },
  35244. form: "normal",
  35245. default: true
  35246. },
  35247. side: {
  35248. height: math.unit(15 + 7/12, "feet"),
  35249. weight: math.unit(1150, "tons"),
  35250. name: "Side",
  35251. image: {
  35252. source: "./media/characters/saphinara/side.svg",
  35253. extra: 605/547,
  35254. bottom: 6/611
  35255. },
  35256. form: "normal"
  35257. },
  35258. back: {
  35259. height: math.unit(15 + 7/12, "feet"),
  35260. weight: math.unit(1150, "tons"),
  35261. name: "Back",
  35262. image: {
  35263. source: "./media/characters/saphinara/back.svg",
  35264. extra: 591/531,
  35265. bottom: 13/604
  35266. },
  35267. form: "normal"
  35268. },
  35269. frontTail: {
  35270. height: math.unit(15 + 7/12, "feet"),
  35271. weight: math.unit(1150, "tons"),
  35272. name: "Front (Full Tail)",
  35273. image: {
  35274. source: "./media/characters/saphinara/front-tail.svg",
  35275. extra: 2256/1630,
  35276. bottom: 261/2517
  35277. },
  35278. form: "normal"
  35279. },
  35280. insides: {
  35281. height: math.unit(11.92, "feet"),
  35282. name: "Insides",
  35283. image: {
  35284. source: "./media/characters/saphinara/insides.svg"
  35285. },
  35286. form: "normal"
  35287. },
  35288. head: {
  35289. height: math.unit(4.17, "feet"),
  35290. name: "Head",
  35291. image: {
  35292. source: "./media/characters/saphinara/head.svg"
  35293. },
  35294. form: "normal"
  35295. },
  35296. tongue: {
  35297. height: math.unit(4.60, "feet"),
  35298. name: "Tongue",
  35299. image: {
  35300. source: "./media/characters/saphinara/tongue.svg"
  35301. },
  35302. form: "normal"
  35303. },
  35304. headEnraged: {
  35305. height: math.unit(5.55, "feet"),
  35306. name: "Head (Enraged)",
  35307. image: {
  35308. source: "./media/characters/saphinara/head-enraged.svg"
  35309. },
  35310. form: "normal"
  35311. },
  35312. wings: {
  35313. height: math.unit(11.95, "feet"),
  35314. name: "Wings",
  35315. image: {
  35316. source: "./media/characters/saphinara/wings.svg"
  35317. },
  35318. form: "normal"
  35319. },
  35320. feathers: {
  35321. height: math.unit(8.92, "feet"),
  35322. name: "Feathers",
  35323. image: {
  35324. source: "./media/characters/saphinara/feathers.svg"
  35325. },
  35326. form: "normal"
  35327. },
  35328. shackles: {
  35329. height: math.unit(2, "feet"),
  35330. name: "Shackles",
  35331. image: {
  35332. source: "./media/characters/saphinara/shackles.svg"
  35333. },
  35334. form: "normal"
  35335. },
  35336. eyes: {
  35337. height: math.unit(1.331, "feet"),
  35338. name: "Eyes",
  35339. image: {
  35340. source: "./media/characters/saphinara/eyes.svg"
  35341. },
  35342. form: "normal"
  35343. },
  35344. eyesEnraged: {
  35345. height: math.unit(1.331, "feet"),
  35346. name: "Eyes (Enraged)",
  35347. image: {
  35348. source: "./media/characters/saphinara/eyes-enraged.svg"
  35349. },
  35350. form: "normal"
  35351. },
  35352. trueFormSide: {
  35353. height: math.unit(200, "feet"),
  35354. weight: math.unit(1e7, "tons"),
  35355. name: "Side",
  35356. image: {
  35357. source: "./media/characters/saphinara/true-form-side.svg",
  35358. extra: 1399/770,
  35359. bottom: 97/1496
  35360. },
  35361. form: "true-form",
  35362. default: true
  35363. },
  35364. trueFormMaw: {
  35365. height: math.unit(71.5, "feet"),
  35366. name: "Maw",
  35367. image: {
  35368. source: "./media/characters/saphinara/true-form-maw.svg",
  35369. extra: 2302/1453,
  35370. bottom: 0/2302
  35371. },
  35372. form: "true-form"
  35373. },
  35374. meowberusSide: {
  35375. height: math.unit(75, "feet"),
  35376. weight: math.unit(180000, "kg"),
  35377. preyCapacity: math.unit(50000, "people"),
  35378. name: "Side",
  35379. image: {
  35380. source: "./media/characters/saphinara/meowberus-side.svg",
  35381. extra: 1400/711,
  35382. bottom: 126/1526
  35383. },
  35384. form: "meowberus",
  35385. extraAttributes: {
  35386. "pawArea": {
  35387. name: "Paw Size",
  35388. power: 2,
  35389. type: "area",
  35390. base: math.unit(35, "m^2")
  35391. }
  35392. }
  35393. },
  35394. },
  35395. [
  35396. {
  35397. name: "Normal",
  35398. height: math.unit(15 + 7/12, "feet"),
  35399. default: true,
  35400. form: "normal"
  35401. },
  35402. {
  35403. name: "Angry",
  35404. height: math.unit(30 + 6/12, "feet"),
  35405. form: "normal"
  35406. },
  35407. {
  35408. name: "Enraged",
  35409. height: math.unit(102 + 1/12, "feet"),
  35410. form: "normal"
  35411. },
  35412. {
  35413. name: "True",
  35414. height: math.unit(200, "feet"),
  35415. default: true,
  35416. form: "true-form"
  35417. },
  35418. {
  35419. name: "Normal",
  35420. height: math.unit(75, "feet"),
  35421. default: true,
  35422. form: "meowberus"
  35423. },
  35424. ],
  35425. {
  35426. "normal": {
  35427. name: "Normal",
  35428. default: true
  35429. },
  35430. "true-form": {
  35431. name: "True Form"
  35432. },
  35433. "meowberus": {
  35434. name: "Meowberus",
  35435. },
  35436. }
  35437. ))
  35438. characterMakers.push(() => makeCharacter(
  35439. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35440. {
  35441. front: {
  35442. height: math.unit(6 + 8/12, "feet"),
  35443. weight: math.unit(300, "lb"),
  35444. name: "Front",
  35445. image: {
  35446. source: "./media/characters/jrain/front.svg",
  35447. extra: 3039/2865,
  35448. bottom: 399/3438
  35449. }
  35450. },
  35451. back: {
  35452. height: math.unit(6 + 8/12, "feet"),
  35453. weight: math.unit(300, "lb"),
  35454. name: "Back",
  35455. image: {
  35456. source: "./media/characters/jrain/back.svg",
  35457. extra: 3089/2938,
  35458. bottom: 172/3261
  35459. }
  35460. },
  35461. head: {
  35462. height: math.unit(2.14, "feet"),
  35463. name: "Head",
  35464. image: {
  35465. source: "./media/characters/jrain/head.svg"
  35466. }
  35467. },
  35468. maw: {
  35469. height: math.unit(1.77, "feet"),
  35470. name: "Maw",
  35471. image: {
  35472. source: "./media/characters/jrain/maw.svg"
  35473. }
  35474. },
  35475. leftHand: {
  35476. height: math.unit(1.1, "feet"),
  35477. name: "Left Hand",
  35478. image: {
  35479. source: "./media/characters/jrain/left-hand.svg"
  35480. }
  35481. },
  35482. rightHand: {
  35483. height: math.unit(1.1, "feet"),
  35484. name: "Right Hand",
  35485. image: {
  35486. source: "./media/characters/jrain/right-hand.svg"
  35487. }
  35488. },
  35489. eye: {
  35490. height: math.unit(0.35, "feet"),
  35491. name: "Eye",
  35492. image: {
  35493. source: "./media/characters/jrain/eye.svg"
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(6 + 8/12, "feet"),
  35501. default: true
  35502. },
  35503. {
  35504. name: "Casually Large",
  35505. height: math.unit(25, "feet")
  35506. },
  35507. {
  35508. name: "Giant",
  35509. height: math.unit(100, "feet")
  35510. },
  35511. {
  35512. name: "Kaiju",
  35513. height: math.unit(300, "feet")
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35519. {
  35520. dragon: {
  35521. height: math.unit(5, "meters"),
  35522. name: "Dragon",
  35523. image: {
  35524. source: "./media/characters/sabrina/dragon.svg",
  35525. extra: 3670 / 2365,
  35526. bottom: 333 / 4003
  35527. }
  35528. },
  35529. gryphon: {
  35530. height: math.unit(3, "meters"),
  35531. name: "Gryphon",
  35532. image: {
  35533. source: "./media/characters/sabrina/gryphon.svg",
  35534. extra: 1576 / 945,
  35535. bottom: 71 / 1647
  35536. }
  35537. },
  35538. snake: {
  35539. height: math.unit(12, "meters"),
  35540. name: "Snake",
  35541. image: {
  35542. source: "./media/characters/sabrina/snake.svg",
  35543. extra: 1758 / 1320,
  35544. bottom: 186 / 1944
  35545. }
  35546. },
  35547. collar: {
  35548. height: math.unit(1.86, "meters"),
  35549. name: "Collar",
  35550. image: {
  35551. source: "./media/characters/sabrina/collar.svg"
  35552. }
  35553. },
  35554. eye: {
  35555. height: math.unit(0.53, "meters"),
  35556. name: "Eye",
  35557. image: {
  35558. source: "./media/characters/sabrina/eye.svg"
  35559. }
  35560. },
  35561. foot: {
  35562. height: math.unit(1.86, "meters"),
  35563. name: "Foot",
  35564. image: {
  35565. source: "./media/characters/sabrina/foot.svg"
  35566. }
  35567. },
  35568. hand: {
  35569. height: math.unit(1.32, "meters"),
  35570. name: "Hand",
  35571. image: {
  35572. source: "./media/characters/sabrina/hand.svg"
  35573. }
  35574. },
  35575. head: {
  35576. height: math.unit(2.44, "meters"),
  35577. name: "Head",
  35578. image: {
  35579. source: "./media/characters/sabrina/head.svg"
  35580. }
  35581. },
  35582. headAngry: {
  35583. height: math.unit(2.44, "meters"),
  35584. name: "Head (Angry))",
  35585. image: {
  35586. source: "./media/characters/sabrina/head-angry.svg"
  35587. }
  35588. },
  35589. maw: {
  35590. height: math.unit(1.65, "meters"),
  35591. name: "Maw",
  35592. image: {
  35593. source: "./media/characters/sabrina/maw.svg"
  35594. }
  35595. },
  35596. spikes: {
  35597. height: math.unit(1.69, "meters"),
  35598. name: "Spikes",
  35599. image: {
  35600. source: "./media/characters/sabrina/spikes.svg"
  35601. }
  35602. },
  35603. stomach: {
  35604. height: math.unit(1.15, "meters"),
  35605. name: "Stomach",
  35606. image: {
  35607. source: "./media/characters/sabrina/stomach.svg"
  35608. }
  35609. },
  35610. tongue: {
  35611. height: math.unit(1.27, "meters"),
  35612. name: "Tongue",
  35613. image: {
  35614. source: "./media/characters/sabrina/tongue.svg"
  35615. }
  35616. },
  35617. wingDorsal: {
  35618. height: math.unit(4.85, "meters"),
  35619. name: "Wing (Dorsal)",
  35620. image: {
  35621. source: "./media/characters/sabrina/wing-dorsal.svg"
  35622. }
  35623. },
  35624. wingVentral: {
  35625. height: math.unit(4.85, "meters"),
  35626. name: "Wing (Ventral)",
  35627. image: {
  35628. source: "./media/characters/sabrina/wing-ventral.svg"
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(5, "meters"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35642. {
  35643. frontMaid: {
  35644. height: math.unit(5 + 5/12, "feet"),
  35645. weight: math.unit(130, "lb"),
  35646. name: "Front (Maid)",
  35647. image: {
  35648. source: "./media/characters/midnight-tales/front-maid.svg",
  35649. extra: 489/454,
  35650. bottom: 61/550
  35651. }
  35652. },
  35653. frontFormal: {
  35654. height: math.unit(5 + 5/12, "feet"),
  35655. weight: math.unit(130, "lb"),
  35656. name: "Front (Formal)",
  35657. image: {
  35658. source: "./media/characters/midnight-tales/front-formal.svg",
  35659. extra: 489/454,
  35660. bottom: 61/550
  35661. }
  35662. },
  35663. back: {
  35664. height: math.unit(5 + 5/12, "feet"),
  35665. weight: math.unit(130, "lb"),
  35666. name: "Back",
  35667. image: {
  35668. source: "./media/characters/midnight-tales/back.svg",
  35669. extra: 498/456,
  35670. bottom: 33/531
  35671. }
  35672. },
  35673. frontBeast: {
  35674. height: math.unit(40, "feet"),
  35675. weight: math.unit(64000, "lb"),
  35676. name: "Front (Beast)",
  35677. image: {
  35678. source: "./media/characters/midnight-tales/front-beast.svg",
  35679. extra: 927/860,
  35680. bottom: 53/980
  35681. }
  35682. },
  35683. backBeast: {
  35684. height: math.unit(40, "feet"),
  35685. weight: math.unit(64000, "lb"),
  35686. name: "Back (Beast)",
  35687. image: {
  35688. source: "./media/characters/midnight-tales/back-beast.svg",
  35689. extra: 929/855,
  35690. bottom: 16/945
  35691. }
  35692. },
  35693. footBeast: {
  35694. height: math.unit(6.7, "feet"),
  35695. name: "Foot (Beast)",
  35696. image: {
  35697. source: "./media/characters/midnight-tales/foot-beast.svg"
  35698. }
  35699. },
  35700. headBeast: {
  35701. height: math.unit(8, "feet"),
  35702. name: "Head (Beast)",
  35703. image: {
  35704. source: "./media/characters/midnight-tales/head-beast.svg"
  35705. }
  35706. },
  35707. },
  35708. [
  35709. {
  35710. name: "Normal",
  35711. height: math.unit(5 + 5 / 12, "feet"),
  35712. default: true
  35713. },
  35714. {
  35715. name: "Macro",
  35716. height: math.unit(25, "feet")
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(5 + 10/12, "feet"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/argon/front.svg",
  35728. extra: 2009/1935,
  35729. bottom: 118/2127
  35730. }
  35731. },
  35732. back: {
  35733. height: math.unit(5 + 10/12, "feet"),
  35734. name: "Back",
  35735. image: {
  35736. source: "./media/characters/argon/back.svg",
  35737. extra: 2047/1992,
  35738. bottom: 20/2067
  35739. }
  35740. },
  35741. frontDressed: {
  35742. height: math.unit(5 + 10/12, "feet"),
  35743. name: "Front (Dressed)",
  35744. image: {
  35745. source: "./media/characters/argon/front-dressed.svg",
  35746. extra: 2009/1935,
  35747. bottom: 118/2127
  35748. }
  35749. },
  35750. },
  35751. [
  35752. {
  35753. name: "Normal",
  35754. height: math.unit(5 + 10/12, "feet"),
  35755. default: true
  35756. },
  35757. ]
  35758. ))
  35759. characterMakers.push(() => makeCharacter(
  35760. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35761. {
  35762. front: {
  35763. height: math.unit(8 + 6/12, "feet"),
  35764. weight: math.unit(1150, "lb"),
  35765. name: "Front",
  35766. image: {
  35767. source: "./media/characters/kichi/front.svg",
  35768. extra: 1267/1164,
  35769. bottom: 61/1328
  35770. }
  35771. },
  35772. back: {
  35773. height: math.unit(8 + 6/12, "feet"),
  35774. weight: math.unit(1150, "lb"),
  35775. name: "Back",
  35776. image: {
  35777. source: "./media/characters/kichi/back.svg",
  35778. extra: 1273/1166,
  35779. bottom: 33/1306
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(8 + 6/12, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35793. {
  35794. front: {
  35795. height: math.unit(6, "feet"),
  35796. weight: math.unit(210, "lb"),
  35797. name: "Front",
  35798. image: {
  35799. source: "./media/characters/manetel-greyscale/front.svg",
  35800. extra: 350/312,
  35801. bottom: 8/358
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Micro",
  35808. height: math.unit(2, "inches")
  35809. },
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(6, "feet"),
  35813. default: true
  35814. },
  35815. {
  35816. name: "Minimacro",
  35817. height: math.unit(17, "feet")
  35818. },
  35819. {
  35820. name: "Macro",
  35821. height: math.unit(117, "feet")
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35827. {
  35828. side: {
  35829. height: math.unit(5 + 1/12, "feet"),
  35830. weight: math.unit(418, "lb"),
  35831. name: "Side",
  35832. image: {
  35833. source: "./media/characters/softpurr/side.svg",
  35834. extra: 1993/1945,
  35835. bottom: 134/2127
  35836. }
  35837. },
  35838. front: {
  35839. height: math.unit(5 + 1/12, "feet"),
  35840. weight: math.unit(418, "lb"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/softpurr/front.svg",
  35844. extra: 1950/1856,
  35845. bottom: 174/2124
  35846. }
  35847. },
  35848. paw: {
  35849. height: math.unit(1, "feet"),
  35850. name: "Paw",
  35851. image: {
  35852. source: "./media/characters/softpurr/paw.svg"
  35853. }
  35854. },
  35855. },
  35856. [
  35857. {
  35858. name: "Normal",
  35859. height: math.unit(5 + 1/12, "feet"),
  35860. default: true
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(260, "meters"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/anahita/front.svg",
  35872. extra: 665/635,
  35873. bottom: 89/754
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Macro",
  35880. height: math.unit(260, "meters"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(4 + 10/12, "feet"),
  35890. weight: math.unit(160, "lb"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/chip-mouse/front.svg",
  35894. extra: 3528/3408,
  35895. bottom: 0/3528
  35896. }
  35897. },
  35898. frontNsfw: {
  35899. height: math.unit(4 + 10/12, "feet"),
  35900. weight: math.unit(160, "lb"),
  35901. name: "Front (NSFW)",
  35902. image: {
  35903. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35904. extra: 3528/3408,
  35905. bottom: 0/3528
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(4 + 10/12, "feet"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35919. {
  35920. side: {
  35921. height: math.unit(10, "feet"),
  35922. weight: math.unit(14000, "lb"),
  35923. name: "Side",
  35924. image: {
  35925. source: "./media/characters/kremm/side.svg",
  35926. extra: 1390/1053,
  35927. bottom: 90/1480
  35928. }
  35929. },
  35930. gut: {
  35931. height: math.unit(5.8, "feet"),
  35932. name: "Gut",
  35933. image: {
  35934. source: "./media/characters/kremm/gut.svg"
  35935. }
  35936. },
  35937. ass: {
  35938. height: math.unit(6.1, "feet"),
  35939. name: "Ass",
  35940. image: {
  35941. source: "./media/characters/kremm/ass.svg"
  35942. }
  35943. },
  35944. jaws: {
  35945. height: math.unit(2.2, "feet"),
  35946. name: "Jaws",
  35947. image: {
  35948. source: "./media/characters/kremm/jaws.svg"
  35949. }
  35950. },
  35951. dick: {
  35952. height: math.unit(4.26, "feet"),
  35953. name: "Dick",
  35954. image: {
  35955. source: "./media/characters/kremm/dick.svg"
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Normal",
  35962. height: math.unit(10, "feet"),
  35963. default: true
  35964. },
  35965. ]
  35966. ))
  35967. characterMakers.push(() => makeCharacter(
  35968. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35969. {
  35970. front: {
  35971. height: math.unit(30, "stories"),
  35972. name: "Front",
  35973. image: {
  35974. source: "./media/characters/kai/front.svg",
  35975. extra: 1892/1718,
  35976. bottom: 162/2054
  35977. }
  35978. },
  35979. },
  35980. [
  35981. {
  35982. name: "Macro",
  35983. height: math.unit(30, "stories"),
  35984. default: true
  35985. },
  35986. ]
  35987. ))
  35988. characterMakers.push(() => makeCharacter(
  35989. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35990. {
  35991. front: {
  35992. height: math.unit(6 + 4/12, "feet"),
  35993. weight: math.unit(145, "lb"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/sykes/front.svg",
  35997. extra: 1321 / 1187,
  35998. bottom: 66 / 1387
  35999. }
  36000. },
  36001. back: {
  36002. height: math.unit(6 + 4/12, "feet"),
  36003. weight: math.unit(145, "lb"),
  36004. name: "Back",
  36005. image: {
  36006. source: "./media/characters/sykes/back.svg",
  36007. extra: 1326/1181,
  36008. bottom: 31/1357
  36009. }
  36010. },
  36011. traditionalOutfit: {
  36012. height: math.unit(6 + 4/12, "feet"),
  36013. weight: math.unit(145, "lb"),
  36014. name: "Traditional Outfit",
  36015. image: {
  36016. source: "./media/characters/sykes/traditional-outfit.svg",
  36017. extra: 1321 / 1187,
  36018. bottom: 66 / 1387
  36019. }
  36020. },
  36021. adventureOutfit: {
  36022. height: math.unit(6 + 4/12, "feet"),
  36023. weight: math.unit(145, "lb"),
  36024. name: "Adventure Outfit",
  36025. image: {
  36026. source: "./media/characters/sykes/adventure-outfit.svg",
  36027. extra: 1321 / 1187,
  36028. bottom: 66 / 1387
  36029. }
  36030. },
  36031. handLeft: {
  36032. height: math.unit(0.9, "feet"),
  36033. name: "Hand (Left)",
  36034. image: {
  36035. source: "./media/characters/sykes/hand-left.svg"
  36036. }
  36037. },
  36038. handRight: {
  36039. height: math.unit(0.839, "feet"),
  36040. name: "Hand (Right)",
  36041. image: {
  36042. source: "./media/characters/sykes/hand-right.svg"
  36043. }
  36044. },
  36045. leftFoot: {
  36046. height: math.unit(1.2, "feet"),
  36047. name: "Foot (Left)",
  36048. image: {
  36049. source: "./media/characters/sykes/foot-left.svg"
  36050. }
  36051. },
  36052. rightFoot: {
  36053. height: math.unit(1.2, "feet"),
  36054. name: "Foot (Right)",
  36055. image: {
  36056. source: "./media/characters/sykes/foot-right.svg"
  36057. }
  36058. },
  36059. maw: {
  36060. height: math.unit(1.93, "feet"),
  36061. name: "Maw",
  36062. image: {
  36063. source: "./media/characters/sykes/maw.svg"
  36064. }
  36065. },
  36066. teeth: {
  36067. height: math.unit(0.51, "feet"),
  36068. name: "Teeth",
  36069. image: {
  36070. source: "./media/characters/sykes/teeth.svg"
  36071. }
  36072. },
  36073. tongue: {
  36074. height: math.unit(2.13, "feet"),
  36075. name: "Tongue",
  36076. image: {
  36077. source: "./media/characters/sykes/tongue.svg"
  36078. }
  36079. },
  36080. uvula: {
  36081. height: math.unit(0.16, "feet"),
  36082. name: "Uvula",
  36083. image: {
  36084. source: "./media/characters/sykes/uvula.svg"
  36085. }
  36086. },
  36087. collar: {
  36088. height: math.unit(0.287, "feet"),
  36089. name: "Collar",
  36090. image: {
  36091. source: "./media/characters/sykes/collar.svg"
  36092. }
  36093. },
  36094. tail: {
  36095. height: math.unit(3.8, "feet"),
  36096. name: "Tail",
  36097. image: {
  36098. source: "./media/characters/sykes/tail.svg"
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Shrunken",
  36105. height: math.unit(5, "inches")
  36106. },
  36107. {
  36108. name: "Normal",
  36109. height: math.unit(6 + 4 / 12, "feet"),
  36110. default: true
  36111. },
  36112. {
  36113. name: "Big",
  36114. height: math.unit(15, "feet")
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36120. {
  36121. front: {
  36122. height: math.unit(5 + 8/12, "feet"),
  36123. weight: math.unit(190, "lb"),
  36124. name: "Front",
  36125. image: {
  36126. source: "./media/characters/oven-otter/front.svg",
  36127. extra: 1809/1740,
  36128. bottom: 181/1990
  36129. }
  36130. },
  36131. back: {
  36132. height: math.unit(5 + 8/12, "feet"),
  36133. weight: math.unit(190, "lb"),
  36134. name: "Back",
  36135. image: {
  36136. source: "./media/characters/oven-otter/back.svg",
  36137. extra: 1709/1635,
  36138. bottom: 118/1827
  36139. }
  36140. },
  36141. hand: {
  36142. height: math.unit(1.07, "feet"),
  36143. name: "Hand",
  36144. image: {
  36145. source: "./media/characters/oven-otter/hand.svg"
  36146. }
  36147. },
  36148. beans: {
  36149. height: math.unit(1.74, "feet"),
  36150. name: "Beans",
  36151. image: {
  36152. source: "./media/characters/oven-otter/beans.svg"
  36153. }
  36154. },
  36155. },
  36156. [
  36157. {
  36158. name: "Micro",
  36159. height: math.unit(0.5, "inches")
  36160. },
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(5 + 8/12, "feet"),
  36164. default: true
  36165. },
  36166. {
  36167. name: "Macro",
  36168. height: math.unit(250, "feet")
  36169. },
  36170. {
  36171. name: "Really High",
  36172. height: math.unit(420, "feet")
  36173. },
  36174. ]
  36175. ))
  36176. characterMakers.push(() => makeCharacter(
  36177. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36178. {
  36179. front: {
  36180. height: math.unit(5, "meters"),
  36181. weight: math.unit(292000000000000, "kg"),
  36182. name: "Front",
  36183. image: {
  36184. source: "./media/characters/devourer/front.svg",
  36185. extra: 1800/1733,
  36186. bottom: 211/2011
  36187. }
  36188. },
  36189. maw: {
  36190. height: math.unit(1.1, "meter"),
  36191. name: "Maw",
  36192. image: {
  36193. source: "./media/characters/devourer/maw.svg"
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Small",
  36200. height: math.unit(3, "meters")
  36201. },
  36202. {
  36203. name: "Large",
  36204. height: math.unit(5, "meters"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36211. {
  36212. front: {
  36213. height: math.unit(6, "feet"),
  36214. weight: math.unit(400, "lb"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/ellarby/front.svg",
  36218. extra: 1909/1763,
  36219. bottom: 80/1989
  36220. }
  36221. },
  36222. back: {
  36223. height: math.unit(6, "feet"),
  36224. weight: math.unit(400, "lb"),
  36225. name: "Back",
  36226. image: {
  36227. source: "./media/characters/ellarby/back.svg",
  36228. extra: 1914/1784,
  36229. bottom: 172/2086
  36230. }
  36231. },
  36232. },
  36233. [
  36234. {
  36235. name: "Mischief",
  36236. height: math.unit(18, "inches")
  36237. },
  36238. {
  36239. name: "Trouble",
  36240. height: math.unit(12, "feet")
  36241. },
  36242. {
  36243. name: "Havoc",
  36244. height: math.unit(200, "feet"),
  36245. default: true
  36246. },
  36247. {
  36248. name: "Pandemonium",
  36249. height: math.unit(1, "mile")
  36250. },
  36251. {
  36252. name: "Catastrophe",
  36253. height: math.unit(100, "miles")
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36259. {
  36260. front: {
  36261. height: math.unit(4.7, "meters"),
  36262. weight: math.unit(6500, "kg"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/vex/front.svg",
  36266. extra: 1288/1140,
  36267. bottom: 100/1388
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(4.7, "meters"),
  36275. default: true
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36281. {
  36282. normal: {
  36283. height: math.unit(6, "feet"),
  36284. weight: math.unit(350, "lb"),
  36285. name: "Normal",
  36286. image: {
  36287. source: "./media/characters/teshy/normal.svg",
  36288. extra: 1795/1735,
  36289. bottom: 16/1811
  36290. }
  36291. },
  36292. monsterFront: {
  36293. height: math.unit(12, "feet"),
  36294. weight: math.unit(4700, "lb"),
  36295. name: "Monster (Front)",
  36296. image: {
  36297. source: "./media/characters/teshy/monster-front.svg",
  36298. extra: 2042/2034,
  36299. bottom: 128/2170
  36300. }
  36301. },
  36302. monsterSide: {
  36303. height: math.unit(12, "feet"),
  36304. weight: math.unit(4700, "lb"),
  36305. name: "Monster (Side)",
  36306. image: {
  36307. source: "./media/characters/teshy/monster-side.svg",
  36308. extra: 2067/2056,
  36309. bottom: 70/2137
  36310. }
  36311. },
  36312. monsterBack: {
  36313. height: math.unit(12, "feet"),
  36314. weight: math.unit(4700, "lb"),
  36315. name: "Monster (Back)",
  36316. image: {
  36317. source: "./media/characters/teshy/monster-back.svg",
  36318. extra: 1921/1914,
  36319. bottom: 171/2092
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Normal",
  36326. height: math.unit(6, "feet"),
  36327. default: true
  36328. },
  36329. ]
  36330. ))
  36331. characterMakers.push(() => makeCharacter(
  36332. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36333. {
  36334. front: {
  36335. height: math.unit(6, "feet"),
  36336. name: "Front",
  36337. image: {
  36338. source: "./media/characters/ramey/front.svg",
  36339. extra: 790/787,
  36340. bottom: 27/817
  36341. }
  36342. },
  36343. },
  36344. [
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(6, "feet"),
  36348. default: true
  36349. },
  36350. ]
  36351. ))
  36352. characterMakers.push(() => makeCharacter(
  36353. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36354. {
  36355. front: {
  36356. height: math.unit(5 + 5/12, "feet"),
  36357. weight: math.unit(120, "lb"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/phirae/front.svg",
  36361. extra: 2491/2436,
  36362. bottom: 38/2529
  36363. }
  36364. },
  36365. },
  36366. [
  36367. {
  36368. name: "Normal",
  36369. height: math.unit(5 + 5/12, "feet"),
  36370. default: true
  36371. },
  36372. ]
  36373. ))
  36374. characterMakers.push(() => makeCharacter(
  36375. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36376. {
  36377. front: {
  36378. height: math.unit(5 + 3/12, "feet"),
  36379. name: "Front",
  36380. image: {
  36381. source: "./media/characters/stagglas/front.svg",
  36382. extra: 962/882,
  36383. bottom: 53/1015
  36384. }
  36385. },
  36386. feral: {
  36387. height: math.unit(335, "cm"),
  36388. name: "Feral",
  36389. image: {
  36390. source: "./media/characters/stagglas/feral.svg",
  36391. extra: 1732/1090,
  36392. bottom: 48/1780
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(5 + 3/12, "feet"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(5 + 4/12, "feet"),
  36409. weight: math.unit(145, "lb"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/starra/front.svg",
  36413. extra: 1790/1691,
  36414. bottom: 91/1881
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(5 + 4/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(2.2, "meters"),
  36431. name: "Front",
  36432. image: {
  36433. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36434. extra: 1248/972,
  36435. bottom: 38/1286
  36436. }
  36437. },
  36438. },
  36439. [
  36440. {
  36441. name: "Normal",
  36442. height: math.unit(2.2, "meters"),
  36443. default: true
  36444. },
  36445. ]
  36446. ))
  36447. characterMakers.push(() => makeCharacter(
  36448. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36449. {
  36450. side: {
  36451. height: math.unit(8 + 2/12, "feet"),
  36452. weight: math.unit(1240, "lb"),
  36453. name: "Side",
  36454. image: {
  36455. source: "./media/characters/mika-valentine/side.svg",
  36456. extra: 2670/2501,
  36457. bottom: 250/2920
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(8 + 2/12, "feet"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36471. {
  36472. front: {
  36473. height: math.unit(7 + 2/12, "feet"),
  36474. name: "Front",
  36475. image: {
  36476. source: "./media/characters/xoltol/front.svg",
  36477. extra: 2212/2124,
  36478. bottom: 84/2296
  36479. }
  36480. },
  36481. side: {
  36482. height: math.unit(7 + 2/12, "feet"),
  36483. name: "Side",
  36484. image: {
  36485. source: "./media/characters/xoltol/side.svg",
  36486. extra: 2273/2197,
  36487. bottom: 26/2299
  36488. }
  36489. },
  36490. hand: {
  36491. height: math.unit(2.5, "feet"),
  36492. name: "Hand",
  36493. image: {
  36494. source: "./media/characters/xoltol/hand.svg"
  36495. }
  36496. },
  36497. },
  36498. [
  36499. {
  36500. name: "Small-ish",
  36501. height: math.unit(5 + 11/12, "feet")
  36502. },
  36503. {
  36504. name: "Normal",
  36505. height: math.unit(7 + 2/12, "feet")
  36506. },
  36507. {
  36508. name: "\"Macro\"",
  36509. height: math.unit(14 + 9/12, "feet"),
  36510. default: true
  36511. },
  36512. {
  36513. name: "Alternate Height",
  36514. height: math.unit(20, "feet")
  36515. },
  36516. {
  36517. name: "Actually Macro",
  36518. height: math.unit(100, "feet")
  36519. },
  36520. ]
  36521. ))
  36522. characterMakers.push(() => makeCharacter(
  36523. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36524. {
  36525. front: {
  36526. height: math.unit(5 + 2/12, "feet"),
  36527. name: "Front",
  36528. image: {
  36529. source: "./media/characters/kotetsu-redwood/front.svg",
  36530. extra: 1053/942,
  36531. bottom: 60/1113
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(5 + 2/12, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(2.4, "meters"),
  36548. weight: math.unit(125, "kg"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/lilith/front.svg",
  36552. extra: 1590/1513,
  36553. bottom: 203/1793
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Humanoid",
  36560. height: math.unit(2.4, "meters")
  36561. },
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(6, "meters"),
  36565. default: true
  36566. },
  36567. {
  36568. name: "Largest",
  36569. height: math.unit(55, "meters")
  36570. },
  36571. ]
  36572. ))
  36573. characterMakers.push(() => makeCharacter(
  36574. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36575. {
  36576. front: {
  36577. height: math.unit(8 + 4/12, "feet"),
  36578. weight: math.unit(535, "lb"),
  36579. name: "Front",
  36580. image: {
  36581. source: "./media/characters/beh'kah-bolger/front.svg",
  36582. extra: 1660/1603,
  36583. bottom: 37/1697
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(8 + 4/12, "feet"),
  36591. default: true
  36592. },
  36593. {
  36594. name: "Kaiju",
  36595. height: math.unit(250, "feet")
  36596. },
  36597. {
  36598. name: "Still Growing",
  36599. height: math.unit(10, "miles")
  36600. },
  36601. {
  36602. name: "Continental",
  36603. height: math.unit(5000, "miles")
  36604. },
  36605. {
  36606. name: "Final Form",
  36607. height: math.unit(2500000, "miles")
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36613. {
  36614. front: {
  36615. height: math.unit(7 + 2/12, "feet"),
  36616. weight: math.unit(230, "kg"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/tatyana-milewska/front.svg",
  36620. extra: 1199/1150,
  36621. bottom: 86/1285
  36622. }
  36623. },
  36624. },
  36625. [
  36626. {
  36627. name: "Normal",
  36628. height: math.unit(7 + 2/12, "feet"),
  36629. default: true
  36630. },
  36631. {
  36632. name: "Big",
  36633. height: math.unit(12, "feet")
  36634. },
  36635. {
  36636. name: "Minimacro",
  36637. height: math.unit(20, "feet")
  36638. },
  36639. {
  36640. name: "Macro",
  36641. height: math.unit(120, "feet")
  36642. },
  36643. ]
  36644. ))
  36645. characterMakers.push(() => makeCharacter(
  36646. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36647. {
  36648. front: {
  36649. height: math.unit(7 + 8/12, "feet"),
  36650. weight: math.unit(152, "kg"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/helen-arri/front.svg",
  36654. extra: 440/423,
  36655. bottom: 14/454
  36656. }
  36657. },
  36658. back: {
  36659. height: math.unit(7 + 8/12, "feet"),
  36660. weight: math.unit(152, "kg"),
  36661. name: "Back",
  36662. image: {
  36663. source: "./media/characters/helen-arri/back.svg",
  36664. extra: 443/426,
  36665. bottom: 8/451
  36666. }
  36667. },
  36668. },
  36669. [
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(7 + 8/12, "feet"),
  36673. default: true
  36674. },
  36675. {
  36676. name: "Big",
  36677. height: math.unit(14, "feet")
  36678. },
  36679. {
  36680. name: "Minimacro",
  36681. height: math.unit(24, "feet")
  36682. },
  36683. {
  36684. name: "Macro",
  36685. height: math.unit(140, "feet")
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36691. {
  36692. front: {
  36693. height: math.unit(6, "meters"),
  36694. name: "Front",
  36695. image: {
  36696. source: "./media/characters/ehanu-rehu/front.svg",
  36697. extra: 1800/1800,
  36698. bottom: 59/1859
  36699. }
  36700. },
  36701. },
  36702. [
  36703. {
  36704. name: "Normal",
  36705. height: math.unit(6, "meters"),
  36706. default: true
  36707. },
  36708. ]
  36709. ))
  36710. characterMakers.push(() => makeCharacter(
  36711. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36712. {
  36713. front: {
  36714. height: math.unit(7 + 3/12, "feet"),
  36715. name: "Front",
  36716. image: {
  36717. source: "./media/characters/renholder/front.svg",
  36718. extra: 3096/2960,
  36719. bottom: 250/3346
  36720. }
  36721. },
  36722. },
  36723. [
  36724. {
  36725. name: "Normal Bat",
  36726. height: math.unit(7 + 3/12, "feet"),
  36727. default: true
  36728. },
  36729. {
  36730. name: "Slightly Tall Bat",
  36731. height: math.unit(100, "feet")
  36732. },
  36733. {
  36734. name: "Big Bat",
  36735. height: math.unit(1000, "feet")
  36736. },
  36737. {
  36738. name: "City-Sized Bat",
  36739. height: math.unit(200000, "feet")
  36740. },
  36741. {
  36742. name: "Bigger Bat",
  36743. height: math.unit(10000, "miles")
  36744. },
  36745. {
  36746. name: "Solar Sized Bat",
  36747. height: math.unit(100, "AU")
  36748. },
  36749. {
  36750. name: "Galactic Bat",
  36751. height: math.unit(200000, "lightyears")
  36752. },
  36753. {
  36754. name: "Universally Known Bat",
  36755. height: math.unit(1, "universe")
  36756. },
  36757. ]
  36758. ))
  36759. characterMakers.push(() => makeCharacter(
  36760. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36761. {
  36762. front: {
  36763. height: math.unit(6 + 11/12, "feet"),
  36764. weight: math.unit(250, "lb"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/cookiecat/front.svg",
  36768. extra: 893/827,
  36769. bottom: 14/907
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Micro",
  36776. height: math.unit(3, "inches")
  36777. },
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(6 + 11/12, "feet"),
  36781. default: true
  36782. },
  36783. {
  36784. name: "Macro",
  36785. height: math.unit(100, "feet")
  36786. },
  36787. {
  36788. name: "Macro+",
  36789. height: math.unit(404, "feet")
  36790. },
  36791. {
  36792. name: "Megamacro",
  36793. height: math.unit(165, "miles")
  36794. },
  36795. {
  36796. name: "Planetary",
  36797. height: math.unit(4600, "miles")
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36803. {
  36804. front: {
  36805. height: math.unit(10 + 3/12, "feet"),
  36806. weight: math.unit(1500, "lb"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/tux-kusanagi/front.svg",
  36810. extra: 944/840,
  36811. bottom: 39/983
  36812. }
  36813. },
  36814. back: {
  36815. height: math.unit(10 + 3/12, "feet"),
  36816. weight: math.unit(1500, "lb"),
  36817. name: "Back",
  36818. image: {
  36819. source: "./media/characters/tux-kusanagi/back.svg",
  36820. extra: 941/842,
  36821. bottom: 28/969
  36822. }
  36823. },
  36824. rump: {
  36825. height: math.unit(5.25, "feet"),
  36826. name: "Rump",
  36827. image: {
  36828. source: "./media/characters/tux-kusanagi/rump.svg"
  36829. }
  36830. },
  36831. beak: {
  36832. height: math.unit(1.54, "feet"),
  36833. name: "Beak",
  36834. image: {
  36835. source: "./media/characters/tux-kusanagi/beak.svg"
  36836. }
  36837. },
  36838. },
  36839. [
  36840. {
  36841. name: "Normal",
  36842. height: math.unit(10 + 3/12, "feet"),
  36843. default: true
  36844. },
  36845. ]
  36846. ))
  36847. characterMakers.push(() => makeCharacter(
  36848. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36849. {
  36850. front: {
  36851. height: math.unit(58, "feet"),
  36852. weight: math.unit(200, "tons"),
  36853. name: "Front",
  36854. image: {
  36855. source: "./media/characters/uzarmazari/front.svg",
  36856. extra: 1575/1455,
  36857. bottom: 152/1727
  36858. }
  36859. },
  36860. back: {
  36861. height: math.unit(58, "feet"),
  36862. weight: math.unit(200, "tons"),
  36863. name: "Back",
  36864. image: {
  36865. source: "./media/characters/uzarmazari/back.svg",
  36866. extra: 1585/1510,
  36867. bottom: 157/1742
  36868. }
  36869. },
  36870. head: {
  36871. height: math.unit(26, "feet"),
  36872. name: "Head",
  36873. image: {
  36874. source: "./media/characters/uzarmazari/head.svg"
  36875. }
  36876. },
  36877. },
  36878. [
  36879. {
  36880. name: "Normal",
  36881. height: math.unit(58, "feet"),
  36882. default: true
  36883. },
  36884. ]
  36885. ))
  36886. characterMakers.push(() => makeCharacter(
  36887. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36888. {
  36889. side: {
  36890. height: math.unit(15, "feet"),
  36891. name: "Side",
  36892. image: {
  36893. source: "./media/characters/akitu/side.svg",
  36894. extra: 1421/1321,
  36895. bottom: 157/1578
  36896. }
  36897. },
  36898. front: {
  36899. height: math.unit(15, "feet"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/akitu/front.svg",
  36903. extra: 1435/1326,
  36904. bottom: 232/1667
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(15, "feet"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(10 + 8/12, "feet"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/azalie-croixland/front.svg",
  36924. extra: 1972/1856,
  36925. bottom: 31/2003
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Original Height",
  36932. height: math.unit(5 + 4/12, "feet")
  36933. },
  36934. {
  36935. name: "Normal Height",
  36936. height: math.unit(10 + 8/12, "feet"),
  36937. default: true
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36943. {
  36944. side: {
  36945. height: math.unit(7 + 1/12, "feet"),
  36946. weight: math.unit(245, "lb"),
  36947. name: "Side",
  36948. image: {
  36949. source: "./media/characters/kavus-kazian/side.svg",
  36950. extra: 349/342,
  36951. bottom: 15/364
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(7 + 1/12, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36965. {
  36966. normalFront: {
  36967. height: math.unit(5 + 11/12, "feet"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/moonlight-rose/normal-front.svg",
  36971. extra: 1980/1825,
  36972. bottom: 18/1998
  36973. },
  36974. form: "normal",
  36975. default: true
  36976. },
  36977. normalBack: {
  36978. height: math.unit(5 + 11/12, "feet"),
  36979. name: "Back",
  36980. image: {
  36981. source: "./media/characters/moonlight-rose/normal-back.svg",
  36982. extra: 2010/1839,
  36983. bottom: 10/2020
  36984. },
  36985. form: "normal"
  36986. },
  36987. demonFront: {
  36988. height: math.unit(1.5, "earths"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/moonlight-rose/demon.svg",
  36992. extra: 1400/1294,
  36993. bottom: 45/1445
  36994. },
  36995. form: "demon",
  36996. default: true
  36997. },
  36998. terraFront: {
  36999. height: math.unit(1.5, "earths"),
  37000. name: "Front",
  37001. image: {
  37002. source: "./media/characters/moonlight-rose/terra.svg"
  37003. },
  37004. form: "terra",
  37005. default: true
  37006. },
  37007. jupiterFront: {
  37008. height: math.unit(69911*2, "km"),
  37009. name: "Front",
  37010. image: {
  37011. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37012. extra: 1367/1286,
  37013. bottom: 55/1422
  37014. },
  37015. form: "jupiter",
  37016. default: true
  37017. },
  37018. neptuneFront: {
  37019. height: math.unit(24622*2, "feet"),
  37020. name: "Front",
  37021. image: {
  37022. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37023. extra: 1851/1712,
  37024. bottom: 0/1851
  37025. },
  37026. form: "neptune",
  37027. default: true
  37028. },
  37029. },
  37030. [
  37031. {
  37032. name: "\"Natural\" Height",
  37033. height: math.unit(5 + 11/12, "feet"),
  37034. form: "normal"
  37035. },
  37036. {
  37037. name: "Smallest comfortable size",
  37038. height: math.unit(40, "meters"),
  37039. form: "normal"
  37040. },
  37041. {
  37042. name: "Common size",
  37043. height: math.unit(50, "km"),
  37044. form: "normal",
  37045. default: true
  37046. },
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(1.5, "earths"),
  37050. form: "demon",
  37051. default: true
  37052. },
  37053. {
  37054. name: "Universal",
  37055. height: math.unit(15, "universes"),
  37056. form: "demon"
  37057. },
  37058. {
  37059. name: "Earth",
  37060. height: math.unit(1.5, "earths"),
  37061. form: "terra",
  37062. default: true
  37063. },
  37064. {
  37065. name: "Super Earth",
  37066. height: math.unit(67.5, "earths"),
  37067. form: "terra"
  37068. },
  37069. {
  37070. name: "Doesn't fit in a solar system...",
  37071. height: math.unit(1, "galaxy"),
  37072. form: "terra"
  37073. },
  37074. {
  37075. name: "Saturn",
  37076. height: math.unit(58232*2, "km"),
  37077. form: "jupiter"
  37078. },
  37079. {
  37080. name: "Jupiter",
  37081. height: math.unit(69911*2, "km"),
  37082. form: "jupiter",
  37083. default: true
  37084. },
  37085. {
  37086. name: "HD 100546 b",
  37087. height: math.unit(482938, "km"),
  37088. form: "jupiter"
  37089. },
  37090. {
  37091. name: "Enceladus",
  37092. height: math.unit(513*2, "km"),
  37093. form: "neptune"
  37094. },
  37095. {
  37096. name: "Europe",
  37097. height: math.unit(1560*2, "km"),
  37098. form: "neptune"
  37099. },
  37100. {
  37101. name: "Neptune",
  37102. height: math.unit(24622*2, "km"),
  37103. form: "neptune",
  37104. default: true
  37105. },
  37106. {
  37107. name: "CoRoT-9b",
  37108. height: math.unit(75067*2, "km"),
  37109. form: "neptune"
  37110. },
  37111. ],
  37112. {
  37113. "normal": {
  37114. name: "Normal",
  37115. default: true
  37116. },
  37117. "demon": {
  37118. name: "Demon"
  37119. },
  37120. "terra": {
  37121. name: "Terra"
  37122. },
  37123. "jupiter": {
  37124. name: "Jupiter"
  37125. },
  37126. "neptune": {
  37127. name: "Neptune"
  37128. }
  37129. }
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(16, "feet"),
  37136. weight: math.unit(610, "kg"),
  37137. name: "Front",
  37138. image: {
  37139. source: "./media/characters/huckle/front.svg",
  37140. extra: 1731/1625,
  37141. bottom: 33/1764
  37142. }
  37143. },
  37144. back: {
  37145. height: math.unit(16, "feet"),
  37146. weight: math.unit(610, "kg"),
  37147. name: "Back",
  37148. image: {
  37149. source: "./media/characters/huckle/back.svg",
  37150. extra: 1738/1651,
  37151. bottom: 37/1775
  37152. }
  37153. },
  37154. laughing: {
  37155. height: math.unit(3.75, "feet"),
  37156. name: "Laughing",
  37157. image: {
  37158. source: "./media/characters/huckle/laughing.svg"
  37159. }
  37160. },
  37161. angry: {
  37162. height: math.unit(4.15, "feet"),
  37163. name: "Angry",
  37164. image: {
  37165. source: "./media/characters/huckle/angry.svg"
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Normal",
  37172. height: math.unit(16, "feet"),
  37173. default: true
  37174. },
  37175. {
  37176. name: "Mini Macro",
  37177. height: math.unit(463, "feet")
  37178. },
  37179. {
  37180. name: "Macro",
  37181. height: math.unit(1680, "meters")
  37182. },
  37183. {
  37184. name: "Mega Macro",
  37185. height: math.unit(175, "km")
  37186. },
  37187. {
  37188. name: "Terra Macro",
  37189. height: math.unit(32, "gigameters")
  37190. },
  37191. {
  37192. name: "Multiverse+",
  37193. height: math.unit(2.56e23, "yottameters")
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(6 + 9/12, "feet"),
  37202. weight: math.unit(280, "lb"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/candy/front.svg",
  37206. extra: 234/217,
  37207. bottom: 11/245
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Really Small",
  37214. height: math.unit(0.1, "nm")
  37215. },
  37216. {
  37217. name: "Micro",
  37218. height: math.unit(2, "inches")
  37219. },
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(6 + 9/12, "feet"),
  37223. default: true
  37224. },
  37225. {
  37226. name: "Small Macro",
  37227. height: math.unit(69, "feet")
  37228. },
  37229. {
  37230. name: "Macro",
  37231. height: math.unit(160, "feet")
  37232. },
  37233. {
  37234. name: "Megamacro",
  37235. height: math.unit(22000, "miles")
  37236. },
  37237. {
  37238. name: "Gigamacro",
  37239. height: math.unit(50000, "miles")
  37240. },
  37241. ]
  37242. ))
  37243. characterMakers.push(() => makeCharacter(
  37244. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37245. {
  37246. front: {
  37247. height: math.unit(4, "feet"),
  37248. weight: math.unit(90, "lb"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/joey-mcdonald/front.svg",
  37252. extra: 1059/852,
  37253. bottom: 33/1092
  37254. }
  37255. },
  37256. back: {
  37257. height: math.unit(4, "feet"),
  37258. weight: math.unit(90, "lb"),
  37259. name: "Back",
  37260. image: {
  37261. source: "./media/characters/joey-mcdonald/back.svg",
  37262. extra: 1077/879,
  37263. bottom: 5/1082
  37264. }
  37265. },
  37266. frontKobold: {
  37267. height: math.unit(4, "feet"),
  37268. weight: math.unit(100, "lb"),
  37269. name: "Front-kobold",
  37270. image: {
  37271. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37272. extra: 1480/1367,
  37273. bottom: 0/1480
  37274. }
  37275. },
  37276. backKobold: {
  37277. height: math.unit(4, "feet"),
  37278. weight: math.unit(100, "lb"),
  37279. name: "Back-kobold",
  37280. image: {
  37281. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37282. extra: 1449/1361,
  37283. bottom: 0/1449
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(4, "feet"),
  37291. default: true
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37297. {
  37298. front: {
  37299. height: math.unit(12 + 6/12, "feet"),
  37300. name: "Front",
  37301. image: {
  37302. source: "./media/characters/kass-lockheed/front.svg",
  37303. extra: 354/343,
  37304. bottom: 9/363
  37305. }
  37306. },
  37307. back: {
  37308. height: math.unit(12 + 6/12, "feet"),
  37309. name: "Back",
  37310. image: {
  37311. source: "./media/characters/kass-lockheed/back.svg",
  37312. extra: 364/352,
  37313. bottom: 3/367
  37314. }
  37315. },
  37316. dick: {
  37317. height: math.unit(3.12, "feet"),
  37318. name: "Dick",
  37319. image: {
  37320. source: "./media/characters/kass-lockheed/dick.svg"
  37321. }
  37322. },
  37323. head: {
  37324. height: math.unit(2.6, "feet"),
  37325. name: "Head",
  37326. image: {
  37327. source: "./media/characters/kass-lockheed/head.svg"
  37328. }
  37329. },
  37330. bleh: {
  37331. height: math.unit(2.85, "feet"),
  37332. name: "Bleh",
  37333. image: {
  37334. source: "./media/characters/kass-lockheed/bleh.svg"
  37335. }
  37336. },
  37337. smug: {
  37338. height: math.unit(2.85, "feet"),
  37339. name: "Smug",
  37340. image: {
  37341. source: "./media/characters/kass-lockheed/smug.svg"
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(12 + 6/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(6 + 2/12, "feet"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/taylor/front.svg",
  37361. extra: 639/495,
  37362. bottom: 12/651
  37363. }
  37364. },
  37365. },
  37366. [
  37367. {
  37368. name: "Normal",
  37369. height: math.unit(6 + 2/12, "feet"),
  37370. default: true
  37371. },
  37372. {
  37373. name: "Big",
  37374. height: math.unit(15, "feet")
  37375. },
  37376. {
  37377. name: "Lorg",
  37378. height: math.unit(80, "feet")
  37379. },
  37380. {
  37381. name: "Too Lorg",
  37382. height: math.unit(120, "feet")
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37388. {
  37389. front: {
  37390. height: math.unit(15, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/kaizer/front.svg",
  37394. extra: 1612/1436,
  37395. bottom: 43/1655
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(15, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37409. {
  37410. front: {
  37411. height: math.unit(2, "feet"),
  37412. weight: math.unit(30, "lb"),
  37413. name: "Front",
  37414. image: {
  37415. source: "./media/characters/sandy/front.svg",
  37416. extra: 1439/1307,
  37417. bottom: 194/1633
  37418. }
  37419. },
  37420. },
  37421. [
  37422. {
  37423. name: "Normal",
  37424. height: math.unit(2, "feet"),
  37425. default: true
  37426. },
  37427. ]
  37428. ))
  37429. characterMakers.push(() => makeCharacter(
  37430. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37431. {
  37432. front: {
  37433. height: math.unit(3, "feet"),
  37434. name: "Front",
  37435. image: {
  37436. source: "./media/characters/mellvi/front.svg",
  37437. extra: 1831/1630,
  37438. bottom: 58/1889
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(3, "feet"),
  37446. default: true
  37447. },
  37448. ]
  37449. ))
  37450. characterMakers.push(() => makeCharacter(
  37451. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37452. {
  37453. front: {
  37454. height: math.unit(5 + 11/12, "feet"),
  37455. weight: math.unit(200, "lb"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/shirou/front.svg",
  37459. extra: 2491/2383,
  37460. bottom: 189/2680
  37461. }
  37462. },
  37463. back: {
  37464. height: math.unit(5 + 11/12, "feet"),
  37465. weight: math.unit(200, "lb"),
  37466. name: "Back",
  37467. image: {
  37468. source: "./media/characters/shirou/back.svg",
  37469. extra: 2554/2450,
  37470. bottom: 76/2630
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(5 + 11/12, "feet"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37484. {
  37485. front: {
  37486. height: math.unit(6 + 3/12, "feet"),
  37487. weight: math.unit(177, "lb"),
  37488. name: "Front",
  37489. image: {
  37490. source: "./media/characters/noryu/front.svg",
  37491. extra: 973/885,
  37492. bottom: 10/983
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(6 + 3/12, "feet"),
  37500. default: true
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(5 + 6/12, "feet"),
  37509. weight: math.unit(170, "lb"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/mevolas-rubenido/front.svg",
  37513. extra: 2109/1901,
  37514. bottom: 96/2205
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(5 + 6/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(100, "feet"),
  37531. name: "Front",
  37532. image: {
  37533. source: "./media/characters/dee/front.svg",
  37534. extra: 2153/2036,
  37535. bottom: 59/2212
  37536. }
  37537. },
  37538. back: {
  37539. height: math.unit(100, "feet"),
  37540. name: "Back",
  37541. image: {
  37542. source: "./media/characters/dee/back.svg",
  37543. extra: 2183/2058,
  37544. bottom: 75/2258
  37545. }
  37546. },
  37547. foot: {
  37548. height: math.unit(19.43, "feet"),
  37549. name: "Foot",
  37550. image: {
  37551. source: "./media/characters/dee/foot.svg"
  37552. }
  37553. },
  37554. hoof: {
  37555. height: math.unit(20.6, "feet"),
  37556. name: "Hoof",
  37557. image: {
  37558. source: "./media/characters/dee/hoof.svg"
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Macro",
  37565. height: math.unit(100, "feet"),
  37566. default: true
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37572. {
  37573. front: {
  37574. height: math.unit(5 + 6/12, "feet"),
  37575. name: "Front",
  37576. image: {
  37577. source: "./media/characters/teh/front.svg",
  37578. extra: 1002/847,
  37579. bottom: 62/1064
  37580. }
  37581. },
  37582. },
  37583. [
  37584. {
  37585. name: "Normal",
  37586. height: math.unit(5 + 6/12, "feet"),
  37587. default: true
  37588. },
  37589. ]
  37590. ))
  37591. characterMakers.push(() => makeCharacter(
  37592. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37593. {
  37594. side: {
  37595. height: math.unit(6 + 1/12, "feet"),
  37596. weight: math.unit(204, "lb"),
  37597. name: "Side",
  37598. image: {
  37599. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37600. extra: 974/775,
  37601. bottom: 169/1143
  37602. }
  37603. },
  37604. sitting: {
  37605. height: math.unit(6 + 2/12, "feet"),
  37606. weight: math.unit(204, "lb"),
  37607. name: "Sitting",
  37608. image: {
  37609. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37610. extra: 1175/964,
  37611. bottom: 378/1553
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(6 + 1/12, "feet"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(6, "inches"),
  37628. name: "Front",
  37629. image: {
  37630. source: "./media/characters/tululi/front.svg",
  37631. extra: 1997/1876,
  37632. bottom: 20/2017
  37633. }
  37634. },
  37635. },
  37636. [
  37637. {
  37638. name: "Normal",
  37639. height: math.unit(6, "inches"),
  37640. default: true
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(4 + 1/12, "feet"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/star/front.svg",
  37652. extra: 1493/1189,
  37653. bottom: 48/1541
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(4 + 1/12, "feet"),
  37661. default: true
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(6 + 3/12, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/comet/front.svg",
  37673. extra: 1681/1462,
  37674. bottom: 26/1707
  37675. }
  37676. },
  37677. },
  37678. [
  37679. {
  37680. name: "Normal",
  37681. height: math.unit(6 + 3/12, "feet"),
  37682. default: true
  37683. },
  37684. ]
  37685. ))
  37686. characterMakers.push(() => makeCharacter(
  37687. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37688. {
  37689. front: {
  37690. height: math.unit(950, "feet"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/vortex/front.svg",
  37694. extra: 1497/1434,
  37695. bottom: 56/1553
  37696. }
  37697. },
  37698. maw: {
  37699. height: math.unit(285, "feet"),
  37700. name: "Maw",
  37701. image: {
  37702. source: "./media/characters/vortex/maw.svg"
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Macro",
  37709. height: math.unit(950, "feet"),
  37710. default: true
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(600, "feet"),
  37719. weight: math.unit(0.02, "grams"),
  37720. name: "Front",
  37721. image: {
  37722. source: "./media/characters/doodle/front.svg",
  37723. extra: 1578/1413,
  37724. bottom: 37/1615
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Macro",
  37731. height: math.unit(600, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(6 + 6/12, "feet"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/jai/front.svg",
  37744. extra: 1645/1534,
  37745. bottom: 115/1760
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(6 + 6/12, "feet"),
  37753. default: true
  37754. },
  37755. ]
  37756. ))
  37757. characterMakers.push(() => makeCharacter(
  37758. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37759. {
  37760. front: {
  37761. height: math.unit(6 + 8/12, "feet"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/pixel/front.svg",
  37765. extra: 1900/1735,
  37766. bottom: 63/1963
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(6 + 8/12, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37780. {
  37781. back: {
  37782. height: math.unit(4 + 1/12, "feet"),
  37783. weight: math.unit(75, "lb"),
  37784. name: "Back",
  37785. image: {
  37786. source: "./media/characters/rhett/back.svg",
  37787. extra: 930/878,
  37788. bottom: 25/955
  37789. }
  37790. },
  37791. front: {
  37792. height: math.unit(4 + 1/12, "feet"),
  37793. weight: math.unit(75, "lb"),
  37794. name: "Front",
  37795. image: {
  37796. source: "./media/characters/rhett/front.svg",
  37797. extra: 1682/1586,
  37798. bottom: 92/1774
  37799. }
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "Micro",
  37805. height: math.unit(8, "inches")
  37806. },
  37807. {
  37808. name: "Tiny",
  37809. height: math.unit(2, "feet")
  37810. },
  37811. {
  37812. name: "Normal",
  37813. height: math.unit(4 + 1/12, "feet"),
  37814. default: true
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(3 + 3/12, "feet"),
  37823. name: "Front",
  37824. image: {
  37825. source: "./media/characters/penny/front.svg",
  37826. extra: 1406/1311,
  37827. bottom: 26/1432
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(3 + 3/12, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(4 + 11/12, "feet"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/monty/front.svg",
  37847. extra: 1479/1209,
  37848. bottom: 0/1479
  37849. }
  37850. },
  37851. },
  37852. [
  37853. {
  37854. name: "Normal",
  37855. height: math.unit(4 + 11/12, "feet"),
  37856. default: true
  37857. },
  37858. ]
  37859. ))
  37860. characterMakers.push(() => makeCharacter(
  37861. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37862. {
  37863. front: {
  37864. height: math.unit(8 + 4/12, "feet"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/sterling/front.svg",
  37868. extra: 1420/1236,
  37869. bottom: 27/1447
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(8 + 4/12, "feet"),
  37877. default: true
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(15, "feet"),
  37886. name: "Front",
  37887. image: {
  37888. source: "./media/characters/marble/front.svg",
  37889. extra: 973/937,
  37890. bottom: 32/1005
  37891. }
  37892. },
  37893. },
  37894. [
  37895. {
  37896. name: "Normal",
  37897. height: math.unit(15, "feet"),
  37898. default: true
  37899. },
  37900. ]
  37901. ))
  37902. characterMakers.push(() => makeCharacter(
  37903. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37904. {
  37905. front: {
  37906. height: math.unit(3, "inches"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/powder/front.svg",
  37910. extra: 1504/1334,
  37911. bottom: 518/2022
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Normal",
  37918. height: math.unit(3, "inches"),
  37919. default: true
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(4 + 5/12, "feet"),
  37928. name: "Front",
  37929. image: {
  37930. source: "./media/characters/joey-raccoon/front.svg",
  37931. extra: 1273/1197,
  37932. bottom: 0/1273
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Normal",
  37939. height: math.unit(4 + 5/12, "feet"),
  37940. default: true
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(8 + 4/12, "feet"),
  37949. name: "Front",
  37950. image: {
  37951. source: "./media/characters/vick/front.svg",
  37952. extra: 2187/2118,
  37953. bottom: 47/2234
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "Normal",
  37960. height: math.unit(8 + 4/12, "feet"),
  37961. default: true
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37967. {
  37968. front: {
  37969. height: math.unit(5 + 5/12, "feet"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/mitsy/front.svg",
  37973. extra: 1842/1695,
  37974. bottom: 0/1842
  37975. }
  37976. },
  37977. },
  37978. [
  37979. {
  37980. name: "Normal",
  37981. height: math.unit(5 + 5/12, "feet"),
  37982. default: true
  37983. },
  37984. ]
  37985. ))
  37986. characterMakers.push(() => makeCharacter(
  37987. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37988. {
  37989. front: {
  37990. height: math.unit(6 + 3/12, "feet"),
  37991. name: "Front",
  37992. image: {
  37993. source: "./media/characters/silvy/front.svg",
  37994. extra: 1995/1836,
  37995. bottom: 225/2220
  37996. }
  37997. },
  37998. },
  37999. [
  38000. {
  38001. name: "Normal",
  38002. height: math.unit(6 + 3/12, "feet"),
  38003. default: true
  38004. },
  38005. ]
  38006. ))
  38007. characterMakers.push(() => makeCharacter(
  38008. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38009. {
  38010. front: {
  38011. height: math.unit(3 + 8/12, "feet"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/rodney/front.svg",
  38015. extra: 1956/1747,
  38016. bottom: 31/1987
  38017. }
  38018. },
  38019. frontDressed: {
  38020. height: math.unit(2.9, "feet"),
  38021. name: "Front (Dressed)",
  38022. image: {
  38023. source: "./media/characters/rodney/front-dressed.svg",
  38024. extra: 1382/1241,
  38025. bottom: 385/1767
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Normal",
  38032. height: math.unit(3 + 8/12, "feet"),
  38033. default: true
  38034. },
  38035. ]
  38036. ))
  38037. characterMakers.push(() => makeCharacter(
  38038. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38039. {
  38040. front: {
  38041. height: math.unit(5 + 9/12, "feet"),
  38042. weight: math.unit(194, "lbs"),
  38043. name: "Front",
  38044. image: {
  38045. source: "./media/characters/zakail-sudekai/front.svg",
  38046. extra: 2696/2533,
  38047. bottom: 248/2944
  38048. }
  38049. },
  38050. maw: {
  38051. height: math.unit(1.35, "feet"),
  38052. name: "Maw",
  38053. image: {
  38054. source: "./media/characters/zakail-sudekai/maw.svg"
  38055. }
  38056. },
  38057. },
  38058. [
  38059. {
  38060. name: "Normal",
  38061. height: math.unit(5 + 9/12, "feet"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(8 + 4/12, "feet"),
  38071. weight: math.unit(1200, "lb"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/eleanor/front.svg",
  38075. extra: 1226/1192,
  38076. bottom: 52/1278
  38077. }
  38078. },
  38079. back: {
  38080. height: math.unit(8 + 4/12, "feet"),
  38081. weight: math.unit(1200, "lb"),
  38082. name: "Back",
  38083. image: {
  38084. source: "./media/characters/eleanor/back.svg",
  38085. extra: 1242/1184,
  38086. bottom: 60/1302
  38087. }
  38088. },
  38089. head: {
  38090. height: math.unit(2.62, "feet"),
  38091. name: "Head",
  38092. image: {
  38093. source: "./media/characters/eleanor/head.svg"
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(8 + 4/12, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(8 + 4/12, "feet"),
  38110. weight: math.unit(750, "lb"),
  38111. name: "Front",
  38112. image: {
  38113. source: "./media/characters/tanya/front.svg",
  38114. extra: 1749/1615,
  38115. bottom: 33/1782
  38116. }
  38117. },
  38118. },
  38119. [
  38120. {
  38121. name: "Normal",
  38122. height: math.unit(8 + 4/12, "feet"),
  38123. default: true
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(5, "feet"),
  38132. weight: math.unit(225, "lb"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/cindy/front.svg",
  38136. extra: 1320/1250,
  38137. bottom: 42/1362
  38138. }
  38139. },
  38140. frontDressed: {
  38141. height: math.unit(5, "feet"),
  38142. weight: math.unit(225, "lb"),
  38143. name: "Front (Dressed)",
  38144. image: {
  38145. source: "./media/characters/cindy/front-dressed.svg",
  38146. extra: 1320/1250,
  38147. bottom: 42/1362
  38148. }
  38149. },
  38150. back: {
  38151. height: math.unit(5, "feet"),
  38152. weight: math.unit(225, "lb"),
  38153. name: "Back",
  38154. image: {
  38155. source: "./media/characters/cindy/back.svg",
  38156. extra: 1384/1346,
  38157. bottom: 14/1398
  38158. }
  38159. },
  38160. },
  38161. [
  38162. {
  38163. name: "Normal",
  38164. height: math.unit(5, "feet"),
  38165. default: true
  38166. },
  38167. ]
  38168. ))
  38169. characterMakers.push(() => makeCharacter(
  38170. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38171. {
  38172. front: {
  38173. height: math.unit(6 + 9/12, "feet"),
  38174. weight: math.unit(440, "lb"),
  38175. name: "Front",
  38176. image: {
  38177. source: "./media/characters/wilbur-owen/front.svg",
  38178. extra: 1575/1448,
  38179. bottom: 72/1647
  38180. }
  38181. },
  38182. back: {
  38183. height: math.unit(6 + 9/12, "feet"),
  38184. weight: math.unit(440, "lb"),
  38185. name: "Back",
  38186. image: {
  38187. source: "./media/characters/wilbur-owen/back.svg",
  38188. extra: 1578/1445,
  38189. bottom: 36/1614
  38190. }
  38191. },
  38192. },
  38193. [
  38194. {
  38195. name: "Normal",
  38196. height: math.unit(6 + 9/12, "feet"),
  38197. default: true
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38203. {
  38204. front: {
  38205. height: math.unit(6 + 5/12, "feet"),
  38206. weight: math.unit(650, "lb"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/keegan/front.svg",
  38210. extra: 2387/2198,
  38211. bottom: 33/2420
  38212. }
  38213. },
  38214. side: {
  38215. height: math.unit(6 + 5/12, "feet"),
  38216. weight: math.unit(650, "lb"),
  38217. name: "Side",
  38218. image: {
  38219. source: "./media/characters/keegan/side.svg",
  38220. extra: 2390/2202,
  38221. bottom: 47/2437
  38222. }
  38223. },
  38224. back: {
  38225. height: math.unit(6 + 5/12, "feet"),
  38226. weight: math.unit(650, "lb"),
  38227. name: "Back",
  38228. image: {
  38229. source: "./media/characters/keegan/back.svg",
  38230. extra: 2418/2268,
  38231. bottom: 15/2433
  38232. }
  38233. },
  38234. frontSfw: {
  38235. height: math.unit(6 + 5/12, "feet"),
  38236. weight: math.unit(650, "lb"),
  38237. name: "Front (SFW)",
  38238. image: {
  38239. source: "./media/characters/keegan/front-sfw.svg",
  38240. extra: 2387/2198,
  38241. bottom: 33/2420
  38242. }
  38243. },
  38244. beans: {
  38245. height: math.unit(1.85, "feet"),
  38246. name: "Beans",
  38247. image: {
  38248. source: "./media/characters/keegan/beans.svg"
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Normal",
  38255. height: math.unit(6 + 5/12, "feet"),
  38256. default: true
  38257. },
  38258. ]
  38259. ))
  38260. characterMakers.push(() => makeCharacter(
  38261. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38262. {
  38263. front: {
  38264. height: math.unit(9, "feet"),
  38265. name: "Front",
  38266. image: {
  38267. source: "./media/characters/colton/front.svg",
  38268. extra: 1589/1326,
  38269. bottom: 139/1728
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(9, "feet"),
  38277. default: true
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38283. {
  38284. front: {
  38285. height: math.unit(2 + 9/12, "feet"),
  38286. name: "Front",
  38287. image: {
  38288. source: "./media/characters/bora/front.svg",
  38289. extra: 1265/1250,
  38290. bottom: 24/1289
  38291. }
  38292. },
  38293. },
  38294. [
  38295. {
  38296. name: "Normal",
  38297. height: math.unit(2 + 9/12, "feet"),
  38298. default: true
  38299. },
  38300. ]
  38301. ))
  38302. characterMakers.push(() => makeCharacter(
  38303. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38304. {
  38305. front: {
  38306. height: math.unit(8, "feet"),
  38307. name: "Front",
  38308. image: {
  38309. source: "./media/characters/myu-myu/front.svg",
  38310. extra: 1949/1857,
  38311. bottom: 90/2039
  38312. }
  38313. },
  38314. },
  38315. [
  38316. {
  38317. name: "Normal",
  38318. height: math.unit(8, "feet"),
  38319. default: true
  38320. },
  38321. {
  38322. name: "Big",
  38323. height: math.unit(15, "feet")
  38324. },
  38325. {
  38326. name: "BIG",
  38327. height: math.unit(25, "feet")
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38333. {
  38334. side: {
  38335. height: math.unit(7 + 5/12, "feet"),
  38336. weight: math.unit(2800, "lb"),
  38337. name: "Side",
  38338. image: {
  38339. source: "./media/characters/haloren/side.svg",
  38340. extra: 1793/409,
  38341. bottom: 59/1852
  38342. }
  38343. },
  38344. frontPaw: {
  38345. height: math.unit(2.36, "feet"),
  38346. name: "Front paw",
  38347. image: {
  38348. source: "./media/characters/haloren/front-paw.svg"
  38349. }
  38350. },
  38351. hindPaw: {
  38352. height: math.unit(3.18, "feet"),
  38353. name: "Hind paw",
  38354. image: {
  38355. source: "./media/characters/haloren/hind-paw.svg"
  38356. }
  38357. },
  38358. maw: {
  38359. height: math.unit(5.05, "feet"),
  38360. name: "Maw",
  38361. image: {
  38362. source: "./media/characters/haloren/maw.svg"
  38363. }
  38364. },
  38365. dick: {
  38366. height: math.unit(2.90, "feet"),
  38367. name: "Dick",
  38368. image: {
  38369. source: "./media/characters/haloren/dick.svg"
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Normal",
  38376. height: math.unit(7 + 5/12, "feet"),
  38377. default: true
  38378. },
  38379. {
  38380. name: "Enhanced",
  38381. height: math.unit(14 + 3/12, "feet")
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38387. {
  38388. front: {
  38389. height: math.unit(171, "cm"),
  38390. name: "Front",
  38391. image: {
  38392. source: "./media/characters/kimmy/front.svg",
  38393. extra: 1491/1435,
  38394. bottom: 53/1544
  38395. }
  38396. },
  38397. },
  38398. [
  38399. {
  38400. name: "Small",
  38401. height: math.unit(9, "cm")
  38402. },
  38403. {
  38404. name: "Normal",
  38405. height: math.unit(171, "cm"),
  38406. default: true
  38407. },
  38408. ]
  38409. ))
  38410. characterMakers.push(() => makeCharacter(
  38411. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38412. {
  38413. front: {
  38414. height: math.unit(8, "feet"),
  38415. weight: math.unit(300, "lb"),
  38416. name: "Front",
  38417. image: {
  38418. source: "./media/characters/galeboomer/front.svg",
  38419. extra: 4651/4415,
  38420. bottom: 162/4813
  38421. }
  38422. },
  38423. back: {
  38424. height: math.unit(8, "feet"),
  38425. weight: math.unit(300, "lb"),
  38426. name: "Back",
  38427. image: {
  38428. source: "./media/characters/galeboomer/back.svg",
  38429. extra: 4544/4314,
  38430. bottom: 16/4560
  38431. }
  38432. },
  38433. frontAlt: {
  38434. height: math.unit(8, "feet"),
  38435. weight: math.unit(300, "lb"),
  38436. name: "Front (Alt)",
  38437. image: {
  38438. source: "./media/characters/galeboomer/front-alt.svg",
  38439. extra: 4458/4228,
  38440. bottom: 68/4526
  38441. }
  38442. },
  38443. maw: {
  38444. height: math.unit(1.2, "feet"),
  38445. name: "Maw",
  38446. image: {
  38447. source: "./media/characters/galeboomer/maw.svg"
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(8, "feet"),
  38455. default: true
  38456. },
  38457. ]
  38458. ))
  38459. characterMakers.push(() => makeCharacter(
  38460. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38461. {
  38462. front: {
  38463. height: math.unit(5 + 9/12, "feet"),
  38464. weight: math.unit(120, "lb"),
  38465. name: "Front",
  38466. image: {
  38467. source: "./media/characters/chyr/front.svg",
  38468. extra: 1323/1254,
  38469. bottom: 63/1386
  38470. }
  38471. },
  38472. back: {
  38473. height: math.unit(5 + 9/12, "feet"),
  38474. weight: math.unit(120, "lb"),
  38475. name: "Back",
  38476. image: {
  38477. source: "./media/characters/chyr/back.svg",
  38478. extra: 1323/1252,
  38479. bottom: 48/1371
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Normal",
  38486. height: math.unit(5 + 9/12, "feet"),
  38487. default: true
  38488. },
  38489. ]
  38490. ))
  38491. characterMakers.push(() => makeCharacter(
  38492. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38493. {
  38494. front: {
  38495. height: math.unit(7, "feet"),
  38496. weight: math.unit(310, "lb"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/solarus/front.svg",
  38500. extra: 2415/2021,
  38501. bottom: 103/2518
  38502. }
  38503. },
  38504. back: {
  38505. height: math.unit(7, "feet"),
  38506. weight: math.unit(310, "lb"),
  38507. name: "Back",
  38508. image: {
  38509. source: "./media/characters/solarus/back.svg",
  38510. extra: 2463/2089,
  38511. bottom: 79/2542
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Normal",
  38518. height: math.unit(7, "feet"),
  38519. default: true
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(16, "feet"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38531. extra: 1844/1780,
  38532. bottom: 58/1902
  38533. }
  38534. },
  38535. winterCoat: {
  38536. height: math.unit(16, "feet"),
  38537. name: "Winter Coat",
  38538. image: {
  38539. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38540. extra: 1807/1775,
  38541. bottom: 69/1876
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(16, "feet"),
  38549. default: true
  38550. },
  38551. {
  38552. name: "Chicago Size",
  38553. height: math.unit(560, "feet")
  38554. },
  38555. ]
  38556. ))
  38557. characterMakers.push(() => makeCharacter(
  38558. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38559. {
  38560. front: {
  38561. height: math.unit(11 + 6/12, "feet"),
  38562. weight: math.unit(1366, "lb"),
  38563. name: "Front",
  38564. image: {
  38565. source: "./media/characters/lexor/front.svg",
  38566. extra: 1560/1481,
  38567. bottom: 211/1771
  38568. }
  38569. },
  38570. back: {
  38571. height: math.unit(11 + 6/12, "feet"),
  38572. weight: math.unit(1366, "lb"),
  38573. name: "Back",
  38574. image: {
  38575. source: "./media/characters/lexor/back.svg",
  38576. extra: 1614/1533,
  38577. bottom: 76/1690
  38578. }
  38579. },
  38580. maw: {
  38581. height: math.unit(3, "feet"),
  38582. name: "Maw",
  38583. image: {
  38584. source: "./media/characters/lexor/maw.svg"
  38585. }
  38586. },
  38587. dick: {
  38588. height: math.unit(2.59, "feet"),
  38589. name: "Dick",
  38590. image: {
  38591. source: "./media/characters/lexor/dick.svg"
  38592. }
  38593. },
  38594. },
  38595. [
  38596. {
  38597. name: "Normal",
  38598. height: math.unit(11 + 6/12, "feet"),
  38599. default: true
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(5 + 8/12, "feet"),
  38608. name: "Front",
  38609. image: {
  38610. source: "./media/characters/magnum/front.svg",
  38611. extra: 942/855,
  38612. bottom: 26/968
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(5 + 8/12, "feet"),
  38620. default: true
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(18 + 4/12, "feet"),
  38629. weight: math.unit(1500, "kg"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/solas-sharpsman/front.svg",
  38633. extra: 1698/1589,
  38634. bottom: 0/1698
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Normal",
  38641. height: math.unit(18 + 4/12, "feet"),
  38642. default: true
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(5 + 5/12, "feet"),
  38651. weight: math.unit(180, "lb"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/october/front.svg",
  38655. extra: 1800/1650,
  38656. bottom: 0/1800
  38657. }
  38658. },
  38659. frontNsfw: {
  38660. height: math.unit(5 + 5/12, "feet"),
  38661. weight: math.unit(180, "lb"),
  38662. name: "Front (NSFW)",
  38663. image: {
  38664. source: "./media/characters/october/front-nsfw.svg",
  38665. extra: 1392/1307,
  38666. bottom: 42/1434
  38667. }
  38668. },
  38669. },
  38670. [
  38671. {
  38672. name: "Normal",
  38673. height: math.unit(5 + 5/12, "feet"),
  38674. default: true
  38675. },
  38676. ]
  38677. ))
  38678. characterMakers.push(() => makeCharacter(
  38679. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38680. {
  38681. front: {
  38682. height: math.unit(8 + 6/12, "feet"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/essynkardi/front.svg",
  38686. extra: 1914/1846,
  38687. bottom: 22/1936
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Normal",
  38694. height: math.unit(8 + 6/12, "feet"),
  38695. default: true
  38696. },
  38697. ]
  38698. ))
  38699. characterMakers.push(() => makeCharacter(
  38700. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38701. {
  38702. front: {
  38703. height: math.unit(6 + 6/12, "feet"),
  38704. weight: math.unit(7, "lb"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/icky/front.svg",
  38708. extra: 813/782,
  38709. bottom: 66/879
  38710. }
  38711. },
  38712. back: {
  38713. height: math.unit(6 + 6/12, "feet"),
  38714. weight: math.unit(7, "lb"),
  38715. name: "Back",
  38716. image: {
  38717. source: "./media/characters/icky/back.svg",
  38718. extra: 754/735,
  38719. bottom: 56/810
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Normal",
  38726. height: math.unit(6 + 6/12, "feet"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(15, "feet"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/rojas/front.svg",
  38739. extra: 1462/1408,
  38740. bottom: 95/1557
  38741. }
  38742. },
  38743. back: {
  38744. height: math.unit(15, "feet"),
  38745. name: "Back",
  38746. image: {
  38747. source: "./media/characters/rojas/back.svg",
  38748. extra: 1023/954,
  38749. bottom: 28/1051
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(15, "feet"),
  38757. default: true
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38763. {
  38764. frontHuman: {
  38765. height: math.unit(5 + 7/12, "feet"),
  38766. name: "Front (Human)",
  38767. image: {
  38768. source: "./media/characters/alek-dryagan/front-human.svg",
  38769. extra: 1687/1667,
  38770. bottom: 69/1756
  38771. }
  38772. },
  38773. backHuman: {
  38774. height: math.unit(5 + 7/12, "feet"),
  38775. name: "Back (Human)",
  38776. image: {
  38777. source: "./media/characters/alek-dryagan/back-human.svg",
  38778. extra: 1670/1649,
  38779. bottom: 65/1735
  38780. }
  38781. },
  38782. frontDemi: {
  38783. height: math.unit(65, "feet"),
  38784. name: "Front (Demi)",
  38785. image: {
  38786. source: "./media/characters/alek-dryagan/front-demi.svg",
  38787. extra: 1669/1642,
  38788. bottom: 49/1718
  38789. }
  38790. },
  38791. backDemi: {
  38792. height: math.unit(65, "feet"),
  38793. name: "Back (Demi)",
  38794. image: {
  38795. source: "./media/characters/alek-dryagan/back-demi.svg",
  38796. extra: 1658/1637,
  38797. bottom: 40/1698
  38798. }
  38799. },
  38800. mawHuman: {
  38801. height: math.unit(0.3, "feet"),
  38802. name: "Maw (Human)",
  38803. image: {
  38804. source: "./media/characters/alek-dryagan/maw-human.svg"
  38805. }
  38806. },
  38807. mawDemi: {
  38808. height: math.unit(3.8, "feet"),
  38809. name: "Maw (Demi)",
  38810. image: {
  38811. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Normal",
  38818. height: math.unit(5 + 7/12, "feet"),
  38819. default: true
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38825. {
  38826. frontHuman: {
  38827. height: math.unit(5 + 2/12, "feet"),
  38828. name: "Front (Human)",
  38829. image: {
  38830. source: "./media/characters/gen/front-human.svg",
  38831. extra: 1627/1538,
  38832. bottom: 71/1698
  38833. }
  38834. },
  38835. backHuman: {
  38836. height: math.unit(5 + 2/12, "feet"),
  38837. name: "Back (Human)",
  38838. image: {
  38839. source: "./media/characters/gen/back-human.svg",
  38840. extra: 1638/1548,
  38841. bottom: 69/1707
  38842. }
  38843. },
  38844. frontDemi: {
  38845. height: math.unit(5 + 2/12, "feet"),
  38846. name: "Front (Demi)",
  38847. image: {
  38848. source: "./media/characters/gen/front-demi.svg",
  38849. extra: 1627/1538,
  38850. bottom: 71/1698
  38851. }
  38852. },
  38853. backDemi: {
  38854. height: math.unit(5 + 2/12, "feet"),
  38855. name: "Back (Demi)",
  38856. image: {
  38857. source: "./media/characters/gen/back-demi.svg",
  38858. extra: 1638/1548,
  38859. bottom: 69/1707
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Normal",
  38866. height: math.unit(5 + 2/12, "feet"),
  38867. default: true
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38873. {
  38874. frontImp: {
  38875. height: math.unit(1 + 11/12, "feet"),
  38876. name: "Front (Imp)",
  38877. image: {
  38878. source: "./media/characters/max-kobold/front-imp.svg",
  38879. extra: 1238/1134,
  38880. bottom: 81/1319
  38881. }
  38882. },
  38883. backImp: {
  38884. height: math.unit(1 + 11/12, "feet"),
  38885. name: "Back (Imp)",
  38886. image: {
  38887. source: "./media/characters/max-kobold/back-imp.svg",
  38888. extra: 1334/1175,
  38889. bottom: 34/1368
  38890. }
  38891. },
  38892. frontDemi: {
  38893. height: math.unit(5 + 9/12, "feet"),
  38894. name: "Front (Demi)",
  38895. image: {
  38896. source: "./media/characters/max-kobold/front-demi.svg",
  38897. extra: 1715/1685,
  38898. bottom: 54/1769
  38899. }
  38900. },
  38901. backDemi: {
  38902. height: math.unit(5 + 9/12, "feet"),
  38903. name: "Back (Demi)",
  38904. image: {
  38905. source: "./media/characters/max-kobold/back-demi.svg",
  38906. extra: 1752/1729,
  38907. bottom: 41/1793
  38908. }
  38909. },
  38910. handImp: {
  38911. height: math.unit(0.45, "feet"),
  38912. name: "Hand (Imp)",
  38913. image: {
  38914. source: "./media/characters/max-kobold/hand.svg"
  38915. }
  38916. },
  38917. pawImp: {
  38918. height: math.unit(0.46, "feet"),
  38919. name: "Paw (Imp)",
  38920. image: {
  38921. source: "./media/characters/max-kobold/paw.svg"
  38922. }
  38923. },
  38924. handDemi: {
  38925. height: math.unit(0.80, "feet"),
  38926. name: "Hand (Demi)",
  38927. image: {
  38928. source: "./media/characters/max-kobold/hand.svg"
  38929. }
  38930. },
  38931. pawDemi: {
  38932. height: math.unit(1.1, "feet"),
  38933. name: "Paw (Demi)",
  38934. image: {
  38935. source: "./media/characters/max-kobold/paw.svg"
  38936. }
  38937. },
  38938. headImp: {
  38939. height: math.unit(1.33, "feet"),
  38940. name: "Head (Imp)",
  38941. image: {
  38942. source: "./media/characters/max-kobold/head-imp.svg"
  38943. }
  38944. },
  38945. mawImp: {
  38946. height: math.unit(0.75, "feet"),
  38947. name: "Maw (Imp)",
  38948. image: {
  38949. source: "./media/characters/max-kobold/maw-imp.svg"
  38950. }
  38951. },
  38952. mawDemi: {
  38953. height: math.unit(0.42, "feet"),
  38954. name: "Maw (Demi)",
  38955. image: {
  38956. source: "./media/characters/max-kobold/maw-demi.svg"
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Normal",
  38963. height: math.unit(1 + 11/12, "feet"),
  38964. default: true
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(7 + 5/12, "feet"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/carbon/front.svg",
  38976. extra: 1754/1689,
  38977. bottom: 65/1819
  38978. }
  38979. },
  38980. back: {
  38981. height: math.unit(7 + 5/12, "feet"),
  38982. name: "Back",
  38983. image: {
  38984. source: "./media/characters/carbon/back.svg",
  38985. extra: 1762/1695,
  38986. bottom: 24/1786
  38987. }
  38988. },
  38989. frontGigantamax: {
  38990. height: math.unit(150, "feet"),
  38991. name: "Front (Gigantamax)",
  38992. image: {
  38993. source: "./media/characters/carbon/front-gigantamax.svg",
  38994. extra: 1826/1669,
  38995. bottom: 59/1885
  38996. }
  38997. },
  38998. backGigantamax: {
  38999. height: math.unit(150, "feet"),
  39000. name: "Back (Gigantamax)",
  39001. image: {
  39002. source: "./media/characters/carbon/back-gigantamax.svg",
  39003. extra: 1796/1653,
  39004. bottom: 53/1849
  39005. }
  39006. },
  39007. maw: {
  39008. height: math.unit(0.48, "feet"),
  39009. name: "Maw",
  39010. image: {
  39011. source: "./media/characters/carbon/maw.svg"
  39012. }
  39013. },
  39014. mawGigantamax: {
  39015. height: math.unit(7.5, "feet"),
  39016. name: "Maw (Gigantamax)",
  39017. image: {
  39018. source: "./media/characters/carbon/maw-gigantamax.svg"
  39019. }
  39020. },
  39021. },
  39022. [
  39023. {
  39024. name: "Normal",
  39025. height: math.unit(7 + 5/12, "feet"),
  39026. default: true
  39027. },
  39028. ]
  39029. ))
  39030. characterMakers.push(() => makeCharacter(
  39031. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39032. {
  39033. front: {
  39034. height: math.unit(6, "feet"),
  39035. name: "Front",
  39036. image: {
  39037. source: "./media/characters/maverick/front.svg",
  39038. extra: 1672/1661,
  39039. bottom: 85/1757
  39040. }
  39041. },
  39042. back: {
  39043. height: math.unit(6, "feet"),
  39044. name: "Back",
  39045. image: {
  39046. source: "./media/characters/maverick/back.svg",
  39047. extra: 1642/1631,
  39048. bottom: 38/1680
  39049. }
  39050. },
  39051. },
  39052. [
  39053. {
  39054. name: "Normal",
  39055. height: math.unit(6, "feet"),
  39056. default: true
  39057. },
  39058. ]
  39059. ))
  39060. characterMakers.push(() => makeCharacter(
  39061. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39062. {
  39063. front: {
  39064. height: math.unit(15, "feet"),
  39065. weight: math.unit(615, "lb"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/grockle/front.svg",
  39069. extra: 1535/1427,
  39070. bottom: 56/1591
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Normal",
  39077. height: math.unit(15, "feet"),
  39078. default: true
  39079. },
  39080. {
  39081. name: "Large",
  39082. height: math.unit(150, "feet")
  39083. },
  39084. {
  39085. name: "Macro",
  39086. height: math.unit(1876, "feet")
  39087. },
  39088. {
  39089. name: "Mega Macro",
  39090. height: math.unit(121940, "feet")
  39091. },
  39092. {
  39093. name: "Giga Macro",
  39094. height: math.unit(750, "km")
  39095. },
  39096. {
  39097. name: "Tera Macro",
  39098. height: math.unit(750000, "km")
  39099. },
  39100. {
  39101. name: "Galactic",
  39102. height: math.unit(1.4e5, "km")
  39103. },
  39104. {
  39105. name: "Godlike",
  39106. height: math.unit(9.8e280, "galaxies")
  39107. },
  39108. ]
  39109. ))
  39110. characterMakers.push(() => makeCharacter(
  39111. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39112. {
  39113. front: {
  39114. height: math.unit(11, "meters"),
  39115. weight: math.unit(20, "tonnes"),
  39116. name: "Front",
  39117. image: {
  39118. source: "./media/characters/alistair/front.svg",
  39119. extra: 1265/1009,
  39120. bottom: 93/1358
  39121. }
  39122. },
  39123. },
  39124. [
  39125. {
  39126. name: "Normal",
  39127. height: math.unit(11, "meters"),
  39128. default: true
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(5 + 8/12, "feet"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/haruka/front.svg",
  39140. extra: 2012/1952,
  39141. bottom: 0/2012
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(5 + 8/12, "feet"),
  39149. default: true
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39155. {
  39156. back: {
  39157. height: math.unit(9, "feet"),
  39158. name: "Back",
  39159. image: {
  39160. source: "./media/characters/vivian-sylveon/back.svg",
  39161. extra: 1853/1714,
  39162. bottom: 0/1853
  39163. }
  39164. },
  39165. },
  39166. [
  39167. {
  39168. name: "Normal",
  39169. height: math.unit(9, "feet"),
  39170. default: true
  39171. },
  39172. {
  39173. name: "Macro",
  39174. height: math.unit(500, "feet")
  39175. },
  39176. {
  39177. name: "Megamacro",
  39178. height: math.unit(600, "miles")
  39179. },
  39180. {
  39181. name: "Gigamacro",
  39182. height: math.unit(30000, "miles")
  39183. },
  39184. ]
  39185. ))
  39186. characterMakers.push(() => makeCharacter(
  39187. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39188. {
  39189. anthro: {
  39190. height: math.unit(5 + 10/12, "feet"),
  39191. weight: math.unit(100, "lb"),
  39192. name: "Anthro",
  39193. image: {
  39194. source: "./media/characters/daiki/anthro.svg",
  39195. extra: 1115/1027,
  39196. bottom: 69/1184
  39197. }
  39198. },
  39199. feral: {
  39200. height: math.unit(200, "feet"),
  39201. name: "Feral",
  39202. image: {
  39203. source: "./media/characters/daiki/feral.svg",
  39204. extra: 1256/313,
  39205. bottom: 39/1295
  39206. }
  39207. },
  39208. feralHead: {
  39209. height: math.unit(171, "feet"),
  39210. name: "Feral Head",
  39211. image: {
  39212. source: "./media/characters/daiki/feral-head.svg"
  39213. }
  39214. },
  39215. manaDragon: {
  39216. height: math.unit(170, "meters"),
  39217. name: "Mana-dragon",
  39218. image: {
  39219. source: "./media/characters/daiki/mana-dragon.svg",
  39220. extra: 763/420,
  39221. bottom: 97/860
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(5 + 10/12, "feet"),
  39229. default: true
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39235. {
  39236. fullyEquippedFront: {
  39237. height: math.unit(3 + 1/12, "feet"),
  39238. weight: math.unit(24, "lb"),
  39239. name: "Fully Equipped (Front)",
  39240. image: {
  39241. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39242. extra: 687/605,
  39243. bottom: 18/705
  39244. }
  39245. },
  39246. fullyEquippedBack: {
  39247. height: math.unit(3 + 1/12, "feet"),
  39248. weight: math.unit(24, "lb"),
  39249. name: "Fully Equipped (Back)",
  39250. image: {
  39251. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39252. extra: 689/590,
  39253. bottom: 18/707
  39254. }
  39255. },
  39256. dailyWear: {
  39257. height: math.unit(3 + 1/12, "feet"),
  39258. weight: math.unit(24, "lb"),
  39259. name: "Daily Wear",
  39260. image: {
  39261. source: "./media/characters/tea-spot/daily-wear.svg",
  39262. extra: 701/620,
  39263. bottom: 21/722
  39264. }
  39265. },
  39266. maidWork: {
  39267. height: math.unit(3 + 1/12, "feet"),
  39268. weight: math.unit(24, "lb"),
  39269. name: "Maid Work",
  39270. image: {
  39271. source: "./media/characters/tea-spot/maid-work.svg",
  39272. extra: 693/609,
  39273. bottom: 15/708
  39274. }
  39275. },
  39276. },
  39277. [
  39278. {
  39279. name: "Normal",
  39280. height: math.unit(3 + 1/12, "feet"),
  39281. default: true
  39282. },
  39283. ]
  39284. ))
  39285. characterMakers.push(() => makeCharacter(
  39286. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39287. {
  39288. front: {
  39289. height: math.unit(175, "cm"),
  39290. weight: math.unit(75, "kg"),
  39291. name: "Front",
  39292. image: {
  39293. source: "./media/characters/chee/front.svg",
  39294. extra: 1796/1740,
  39295. bottom: 40/1836
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Micro-Micro",
  39302. height: math.unit(1, "nm")
  39303. },
  39304. {
  39305. name: "Micro-erst",
  39306. height: math.unit(1, "micrometer")
  39307. },
  39308. {
  39309. name: "Micro-er",
  39310. height: math.unit(1, "cm")
  39311. },
  39312. {
  39313. name: "Normal",
  39314. height: math.unit(175, "cm"),
  39315. default: true
  39316. },
  39317. {
  39318. name: "Macro",
  39319. height: math.unit(100, "m")
  39320. },
  39321. {
  39322. name: "Macro-er",
  39323. height: math.unit(1, "km")
  39324. },
  39325. {
  39326. name: "Macro-erst",
  39327. height: math.unit(10, "km")
  39328. },
  39329. {
  39330. name: "Macro-Macro",
  39331. height: math.unit(100, "km")
  39332. },
  39333. ]
  39334. ))
  39335. characterMakers.push(() => makeCharacter(
  39336. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39337. {
  39338. front: {
  39339. height: math.unit(11 + 9/12, "feet"),
  39340. weight: math.unit(935, "lb"),
  39341. name: "Front",
  39342. image: {
  39343. source: "./media/characters/kingsley/front.svg",
  39344. extra: 1803/1674,
  39345. bottom: 127/1930
  39346. }
  39347. },
  39348. frontNude: {
  39349. height: math.unit(11 + 9/12, "feet"),
  39350. weight: math.unit(935, "lb"),
  39351. name: "Front (Nude)",
  39352. image: {
  39353. source: "./media/characters/kingsley/front-nude.svg",
  39354. extra: 1803/1674,
  39355. bottom: 127/1930
  39356. }
  39357. },
  39358. },
  39359. [
  39360. {
  39361. name: "Normal",
  39362. height: math.unit(11 + 9/12, "feet"),
  39363. default: true
  39364. },
  39365. ]
  39366. ))
  39367. characterMakers.push(() => makeCharacter(
  39368. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39369. {
  39370. side: {
  39371. height: math.unit(9, "feet"),
  39372. name: "Side",
  39373. image: {
  39374. source: "./media/characters/rymel/side.svg",
  39375. extra: 792/469,
  39376. bottom: 121/913
  39377. }
  39378. },
  39379. maw: {
  39380. height: math.unit(2.4, "meters"),
  39381. name: "Maw",
  39382. image: {
  39383. source: "./media/characters/rymel/maw.svg"
  39384. }
  39385. },
  39386. },
  39387. [
  39388. {
  39389. name: "House Drake",
  39390. height: math.unit(2, "feet")
  39391. },
  39392. {
  39393. name: "Reduced",
  39394. height: math.unit(4.5, "feet")
  39395. },
  39396. {
  39397. name: "Normal",
  39398. height: math.unit(9, "feet"),
  39399. default: true
  39400. },
  39401. ]
  39402. ))
  39403. characterMakers.push(() => makeCharacter(
  39404. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39405. {
  39406. front: {
  39407. height: math.unit(1.74, "meters"),
  39408. weight: math.unit(55, "kg"),
  39409. name: "Front",
  39410. image: {
  39411. source: "./media/characters/rubus/front.svg",
  39412. extra: 1894/1742,
  39413. bottom: 44/1938
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(1.74, "meters"),
  39421. default: true
  39422. },
  39423. ]
  39424. ))
  39425. characterMakers.push(() => makeCharacter(
  39426. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39427. {
  39428. front: {
  39429. height: math.unit(5 + 2/12, "feet"),
  39430. weight: math.unit(112, "lb"),
  39431. name: "Front",
  39432. image: {
  39433. source: "./media/characters/cassie-kingston/front.svg",
  39434. extra: 1438/1390,
  39435. bottom: 47/1485
  39436. }
  39437. },
  39438. },
  39439. [
  39440. {
  39441. name: "Normal",
  39442. height: math.unit(5 + 2/12, "feet"),
  39443. default: true
  39444. },
  39445. {
  39446. name: "Macro",
  39447. height: math.unit(128, "feet")
  39448. },
  39449. {
  39450. name: "Megamacro",
  39451. height: math.unit(2.56, "miles")
  39452. },
  39453. ]
  39454. ))
  39455. characterMakers.push(() => makeCharacter(
  39456. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39457. {
  39458. front: {
  39459. height: math.unit(7, "feet"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/fox/front.svg",
  39463. extra: 1798/1703,
  39464. bottom: 55/1853
  39465. }
  39466. },
  39467. back: {
  39468. height: math.unit(7, "feet"),
  39469. name: "Back",
  39470. image: {
  39471. source: "./media/characters/fox/back.svg",
  39472. extra: 1748/1649,
  39473. bottom: 32/1780
  39474. }
  39475. },
  39476. head: {
  39477. height: math.unit(1.95, "feet"),
  39478. name: "Head",
  39479. image: {
  39480. source: "./media/characters/fox/head.svg"
  39481. }
  39482. },
  39483. dick: {
  39484. height: math.unit(1.33, "feet"),
  39485. name: "Dick",
  39486. image: {
  39487. source: "./media/characters/fox/dick.svg"
  39488. }
  39489. },
  39490. foot: {
  39491. height: math.unit(1, "feet"),
  39492. name: "Foot",
  39493. image: {
  39494. source: "./media/characters/fox/foot.svg"
  39495. }
  39496. },
  39497. paw: {
  39498. height: math.unit(0.92, "feet"),
  39499. name: "Paw",
  39500. image: {
  39501. source: "./media/characters/fox/paw.svg"
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Small",
  39508. height: math.unit(3, "inches")
  39509. },
  39510. {
  39511. name: "\"Realistic\"",
  39512. height: math.unit(7, "feet")
  39513. },
  39514. {
  39515. name: "Normal",
  39516. height: math.unit(150, "feet"),
  39517. default: true
  39518. },
  39519. {
  39520. name: "BIG",
  39521. height: math.unit(1200, "feet")
  39522. },
  39523. {
  39524. name: "👀",
  39525. height: math.unit(5, "miles")
  39526. },
  39527. {
  39528. name: "👀👀👀",
  39529. height: math.unit(64, "miles")
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(625, "feet"),
  39538. name: "Front",
  39539. image: {
  39540. source: "./media/characters/asonja-rossa/front.svg",
  39541. extra: 1833/1686,
  39542. bottom: 24/1857
  39543. }
  39544. },
  39545. back: {
  39546. height: math.unit(625, "feet"),
  39547. name: "Back",
  39548. image: {
  39549. source: "./media/characters/asonja-rossa/back.svg",
  39550. extra: 1852/1753,
  39551. bottom: 26/1878
  39552. }
  39553. },
  39554. },
  39555. [
  39556. {
  39557. name: "Macro",
  39558. height: math.unit(625, "feet"),
  39559. default: true
  39560. },
  39561. ]
  39562. ))
  39563. characterMakers.push(() => makeCharacter(
  39564. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39565. {
  39566. side: {
  39567. height: math.unit(8, "feet"),
  39568. name: "Side",
  39569. image: {
  39570. source: "./media/characters/rezukii/side.svg",
  39571. extra: 979/542,
  39572. bottom: 87/1066
  39573. }
  39574. },
  39575. sitting: {
  39576. height: math.unit(14.6, "feet"),
  39577. name: "Sitting",
  39578. image: {
  39579. source: "./media/characters/rezukii/sitting.svg",
  39580. extra: 1023/813,
  39581. bottom: 45/1068
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Tiny",
  39588. height: math.unit(2, "feet")
  39589. },
  39590. {
  39591. name: "Smol",
  39592. height: math.unit(4, "feet")
  39593. },
  39594. {
  39595. name: "Normal",
  39596. height: math.unit(8, "feet"),
  39597. default: true
  39598. },
  39599. {
  39600. name: "Big",
  39601. height: math.unit(12, "feet")
  39602. },
  39603. {
  39604. name: "Macro",
  39605. height: math.unit(30, "feet")
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39611. {
  39612. front: {
  39613. height: math.unit(14, "feet"),
  39614. weight: math.unit(9.5, "tonnes"),
  39615. name: "Front",
  39616. image: {
  39617. source: "./media/characters/dawnheart/front.svg",
  39618. extra: 2792/2675,
  39619. bottom: 64/2856
  39620. }
  39621. },
  39622. },
  39623. [
  39624. {
  39625. name: "Normal",
  39626. height: math.unit(14, "feet"),
  39627. default: true
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39633. {
  39634. front: {
  39635. height: math.unit(1.7, "m"),
  39636. name: "Front",
  39637. image: {
  39638. source: "./media/characters/gladi/front.svg",
  39639. extra: 1460/1362,
  39640. bottom: 19/1479
  39641. }
  39642. },
  39643. back: {
  39644. height: math.unit(1.7, "m"),
  39645. name: "Back",
  39646. image: {
  39647. source: "./media/characters/gladi/back.svg",
  39648. extra: 1459/1357,
  39649. bottom: 12/1471
  39650. }
  39651. },
  39652. feral: {
  39653. height: math.unit(2.05, "m"),
  39654. name: "Feral",
  39655. image: {
  39656. source: "./media/characters/gladi/feral.svg",
  39657. extra: 821/557,
  39658. bottom: 91/912
  39659. }
  39660. },
  39661. },
  39662. [
  39663. {
  39664. name: "Shortest",
  39665. height: math.unit(70, "cm")
  39666. },
  39667. {
  39668. name: "Normal",
  39669. height: math.unit(1.7, "m")
  39670. },
  39671. {
  39672. name: "Macro",
  39673. height: math.unit(10, "m"),
  39674. default: true
  39675. },
  39676. {
  39677. name: "Tallest",
  39678. height: math.unit(200, "m")
  39679. },
  39680. ]
  39681. ))
  39682. characterMakers.push(() => makeCharacter(
  39683. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39684. {
  39685. front: {
  39686. height: math.unit(5 + 7/12, "feet"),
  39687. weight: math.unit(2, "tons"),
  39688. name: "Front",
  39689. image: {
  39690. source: "./media/characters/erdno/front.svg",
  39691. extra: 1234/1129,
  39692. bottom: 35/1269
  39693. }
  39694. },
  39695. angled: {
  39696. height: math.unit(5 + 7/12, "feet"),
  39697. weight: math.unit(2, "tons"),
  39698. name: "Angled",
  39699. image: {
  39700. source: "./media/characters/erdno/angled.svg",
  39701. extra: 1185/1139,
  39702. bottom: 36/1221
  39703. }
  39704. },
  39705. side: {
  39706. height: math.unit(5 + 7/12, "feet"),
  39707. weight: math.unit(2, "tons"),
  39708. name: "Side",
  39709. image: {
  39710. source: "./media/characters/erdno/side.svg",
  39711. extra: 1191/1144,
  39712. bottom: 40/1231
  39713. }
  39714. },
  39715. back: {
  39716. height: math.unit(5 + 7/12, "feet"),
  39717. weight: math.unit(2, "tons"),
  39718. name: "Back",
  39719. image: {
  39720. source: "./media/characters/erdno/back.svg",
  39721. extra: 1202/1146,
  39722. bottom: 17/1219
  39723. }
  39724. },
  39725. frontNsfw: {
  39726. height: math.unit(5 + 7/12, "feet"),
  39727. weight: math.unit(2, "tons"),
  39728. name: "Front (NSFW)",
  39729. image: {
  39730. source: "./media/characters/erdno/front-nsfw.svg",
  39731. extra: 1234/1129,
  39732. bottom: 35/1269
  39733. }
  39734. },
  39735. angledNsfw: {
  39736. height: math.unit(5 + 7/12, "feet"),
  39737. weight: math.unit(2, "tons"),
  39738. name: "Angled (NSFW)",
  39739. image: {
  39740. source: "./media/characters/erdno/angled-nsfw.svg",
  39741. extra: 1185/1139,
  39742. bottom: 36/1221
  39743. }
  39744. },
  39745. sideNsfw: {
  39746. height: math.unit(5 + 7/12, "feet"),
  39747. weight: math.unit(2, "tons"),
  39748. name: "Side (NSFW)",
  39749. image: {
  39750. source: "./media/characters/erdno/side-nsfw.svg",
  39751. extra: 1191/1144,
  39752. bottom: 40/1231
  39753. }
  39754. },
  39755. backNsfw: {
  39756. height: math.unit(5 + 7/12, "feet"),
  39757. weight: math.unit(2, "tons"),
  39758. name: "Back (NSFW)",
  39759. image: {
  39760. source: "./media/characters/erdno/back-nsfw.svg",
  39761. extra: 1202/1146,
  39762. bottom: 17/1219
  39763. }
  39764. },
  39765. frontHyper: {
  39766. height: math.unit(5 + 7/12, "feet"),
  39767. weight: math.unit(2, "tons"),
  39768. name: "Front (Hyper)",
  39769. image: {
  39770. source: "./media/characters/erdno/front-hyper.svg",
  39771. extra: 1298/1136,
  39772. bottom: 35/1333
  39773. }
  39774. },
  39775. },
  39776. [
  39777. {
  39778. name: "Normal",
  39779. height: math.unit(5 + 7/12, "feet"),
  39780. default: true
  39781. },
  39782. {
  39783. name: "Big",
  39784. height: math.unit(5.7, "meters")
  39785. },
  39786. {
  39787. name: "Macro",
  39788. height: math.unit(5.7, "kilometers")
  39789. },
  39790. {
  39791. name: "Megamacro",
  39792. height: math.unit(5.7, "earths")
  39793. },
  39794. ]
  39795. ))
  39796. characterMakers.push(() => makeCharacter(
  39797. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39798. {
  39799. front: {
  39800. height: math.unit(5 + 10/12, "feet"),
  39801. weight: math.unit(150, "lb"),
  39802. name: "Front",
  39803. image: {
  39804. source: "./media/characters/jamie/front.svg",
  39805. extra: 1908/1768,
  39806. bottom: 19/1927
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Minimum",
  39813. height: math.unit(2, "cm")
  39814. },
  39815. {
  39816. name: "Micro",
  39817. height: math.unit(3, "inches")
  39818. },
  39819. {
  39820. name: "Normal",
  39821. height: math.unit(5 + 10/12, "feet"),
  39822. default: true
  39823. },
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(150, "feet")
  39827. },
  39828. {
  39829. name: "Megamacro",
  39830. height: math.unit(10000, "m")
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(2, "meters"),
  39839. weight: math.unit(100, "kg"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/shiron/front.svg",
  39843. extra: 2103/1985,
  39844. bottom: 98/2201
  39845. }
  39846. },
  39847. back: {
  39848. height: math.unit(2, "meters"),
  39849. weight: math.unit(100, "kg"),
  39850. name: "Back",
  39851. image: {
  39852. source: "./media/characters/shiron/back.svg",
  39853. extra: 2110/2015,
  39854. bottom: 89/2199
  39855. }
  39856. },
  39857. hand: {
  39858. height: math.unit(0.96, "feet"),
  39859. name: "Hand",
  39860. image: {
  39861. source: "./media/characters/shiron/hand.svg"
  39862. }
  39863. },
  39864. foot: {
  39865. height: math.unit(1.464, "feet"),
  39866. name: "Foot",
  39867. image: {
  39868. source: "./media/characters/shiron/foot.svg"
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Normal",
  39875. height: math.unit(2, "meters")
  39876. },
  39877. {
  39878. name: "Macro",
  39879. height: math.unit(500, "meters"),
  39880. default: true
  39881. },
  39882. {
  39883. name: "Megamacro",
  39884. height: math.unit(20, "km")
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(6, "feet"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/sam/front.svg",
  39896. extra: 849/826,
  39897. bottom: 19/868
  39898. }
  39899. },
  39900. },
  39901. [
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(6, "feet"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(8 + 4/12, "feet"),
  39914. weight: math.unit(122, "kg"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/namori-kurogawa/front.svg",
  39918. extra: 1894/1576,
  39919. bottom: 34/1928
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(8 + 4/12, "feet"),
  39927. default: true
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(9, "feet"),
  39936. weight: math.unit(621, "lb"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/unmru/front.svg",
  39940. extra: 1853/1747,
  39941. bottom: 73/1926
  39942. }
  39943. },
  39944. side: {
  39945. height: math.unit(9, "feet"),
  39946. weight: math.unit(621, "lb"),
  39947. name: "Side",
  39948. image: {
  39949. source: "./media/characters/unmru/side.svg",
  39950. extra: 1781/1671,
  39951. bottom: 127/1908
  39952. }
  39953. },
  39954. back: {
  39955. height: math.unit(9, "feet"),
  39956. weight: math.unit(621, "lb"),
  39957. name: "Back",
  39958. image: {
  39959. source: "./media/characters/unmru/back.svg",
  39960. extra: 1894/1765,
  39961. bottom: 75/1969
  39962. }
  39963. },
  39964. dick: {
  39965. height: math.unit(3, "feet"),
  39966. weight: math.unit(35, "lb"),
  39967. name: "Dick",
  39968. image: {
  39969. source: "./media/characters/unmru/dick.svg"
  39970. }
  39971. },
  39972. },
  39973. [
  39974. {
  39975. name: "Normal",
  39976. height: math.unit(9, "feet")
  39977. },
  39978. {
  39979. name: "Natural",
  39980. height: math.unit(27, "feet"),
  39981. default: true
  39982. },
  39983. {
  39984. name: "Giant",
  39985. height: math.unit(90, "feet")
  39986. },
  39987. {
  39988. name: "Kaiju",
  39989. height: math.unit(270, "feet")
  39990. },
  39991. {
  39992. name: "Macro",
  39993. height: math.unit(900, "feet")
  39994. },
  39995. {
  39996. name: "Macro+",
  39997. height: math.unit(2700, "feet")
  39998. },
  39999. {
  40000. name: "Megamacro",
  40001. height: math.unit(9000, "feet")
  40002. },
  40003. {
  40004. name: "City-Crushing",
  40005. height: math.unit(27000, "feet")
  40006. },
  40007. {
  40008. name: "Mountain-Mashing",
  40009. height: math.unit(90000, "feet")
  40010. },
  40011. {
  40012. name: "Earth-Eclipsing",
  40013. height: math.unit(2.7e8, "feet")
  40014. },
  40015. {
  40016. name: "Sol-Swallowing",
  40017. height: math.unit(9e10, "feet")
  40018. },
  40019. {
  40020. name: "Majoris-Munching",
  40021. height: math.unit(2.7e13, "feet")
  40022. },
  40023. ]
  40024. ))
  40025. characterMakers.push(() => makeCharacter(
  40026. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40027. {
  40028. front: {
  40029. height: math.unit(1, "inch"),
  40030. name: "Front",
  40031. image: {
  40032. source: "./media/characters/squeaks-mouse/front.svg",
  40033. extra: 352/308,
  40034. bottom: 25/377
  40035. }
  40036. },
  40037. },
  40038. [
  40039. {
  40040. name: "Micro",
  40041. height: math.unit(1, "inch"),
  40042. default: true
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40048. {
  40049. side: {
  40050. height: math.unit(35, "feet"),
  40051. name: "Side",
  40052. image: {
  40053. source: "./media/characters/sayko/side.svg",
  40054. extra: 1697/1021,
  40055. bottom: 82/1779
  40056. }
  40057. },
  40058. head: {
  40059. height: math.unit(16, "feet"),
  40060. name: "Head",
  40061. image: {
  40062. source: "./media/characters/sayko/head.svg"
  40063. }
  40064. },
  40065. forepaw: {
  40066. height: math.unit(7.85, "feet"),
  40067. name: "Forepaw",
  40068. image: {
  40069. source: "./media/characters/sayko/forepaw.svg"
  40070. }
  40071. },
  40072. hindpaw: {
  40073. height: math.unit(8.8, "feet"),
  40074. name: "Hindpaw",
  40075. image: {
  40076. source: "./media/characters/sayko/hindpaw.svg"
  40077. }
  40078. },
  40079. },
  40080. [
  40081. {
  40082. name: "Normal",
  40083. height: math.unit(35, "feet"),
  40084. default: true
  40085. },
  40086. {
  40087. name: "Colossus",
  40088. height: math.unit(100, "meters")
  40089. },
  40090. {
  40091. name: "\"Small\" Deity",
  40092. height: math.unit(1, "km")
  40093. },
  40094. {
  40095. name: "\"Large\" Deity",
  40096. height: math.unit(15, "km")
  40097. },
  40098. ]
  40099. ))
  40100. characterMakers.push(() => makeCharacter(
  40101. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40102. {
  40103. front: {
  40104. height: math.unit(6, "feet"),
  40105. weight: math.unit(250, "lb"),
  40106. name: "Front",
  40107. image: {
  40108. source: "./media/characters/mukiro/front.svg",
  40109. extra: 1368/1310,
  40110. bottom: 34/1402
  40111. }
  40112. },
  40113. },
  40114. [
  40115. {
  40116. name: "Normal",
  40117. height: math.unit(6, "feet"),
  40118. default: true
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40124. {
  40125. front: {
  40126. height: math.unit(12 + 4/12, "feet"),
  40127. name: "Front",
  40128. image: {
  40129. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40130. extra: 1346/1311,
  40131. bottom: 65/1411
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Base",
  40138. height: math.unit(12 + 4/12, "feet"),
  40139. default: true
  40140. },
  40141. {
  40142. name: "Macro",
  40143. height: math.unit(150, "feet")
  40144. },
  40145. {
  40146. name: "Mega",
  40147. height: math.unit(2, "miles")
  40148. },
  40149. {
  40150. name: "Demi God",
  40151. height: math.unit(4, "AU")
  40152. },
  40153. {
  40154. name: "God Size",
  40155. height: math.unit(1, "universe")
  40156. },
  40157. ]
  40158. ))
  40159. characterMakers.push(() => makeCharacter(
  40160. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40161. {
  40162. front: {
  40163. height: math.unit(3 + 3/12, "feet"),
  40164. weight: math.unit(88, "lb"),
  40165. name: "Front",
  40166. image: {
  40167. source: "./media/characters/trey/front.svg",
  40168. extra: 1815/1509,
  40169. bottom: 60/1875
  40170. }
  40171. },
  40172. },
  40173. [
  40174. {
  40175. name: "Normal",
  40176. height: math.unit(3 + 3/12, "feet"),
  40177. default: true
  40178. },
  40179. ]
  40180. ))
  40181. characterMakers.push(() => makeCharacter(
  40182. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40183. {
  40184. front: {
  40185. height: math.unit(4, "meters"),
  40186. name: "Front",
  40187. image: {
  40188. source: "./media/characters/adelonda/front.svg",
  40189. extra: 1077/982,
  40190. bottom: 39/1116
  40191. }
  40192. },
  40193. back: {
  40194. height: math.unit(4, "meters"),
  40195. name: "Back",
  40196. image: {
  40197. source: "./media/characters/adelonda/back.svg",
  40198. extra: 1105/1003,
  40199. bottom: 25/1130
  40200. }
  40201. },
  40202. feral: {
  40203. height: math.unit(40/1.5, "meters"),
  40204. name: "Feral",
  40205. image: {
  40206. source: "./media/characters/adelonda/feral.svg",
  40207. extra: 597/271,
  40208. bottom: 387/984
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Normal",
  40215. height: math.unit(4, "meters"),
  40216. default: true
  40217. },
  40218. ]
  40219. ))
  40220. characterMakers.push(() => makeCharacter(
  40221. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40222. {
  40223. front: {
  40224. height: math.unit(8 + 4/12, "feet"),
  40225. weight: math.unit(670, "lb"),
  40226. name: "Front",
  40227. image: {
  40228. source: "./media/characters/acadiel/front.svg",
  40229. extra: 1901/1595,
  40230. bottom: 142/2043
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Normal",
  40237. height: math.unit(8 + 4/12, "feet"),
  40238. default: true
  40239. },
  40240. {
  40241. name: "Macro",
  40242. height: math.unit(200, "feet")
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(6 + 2/12, "feet"),
  40251. weight: math.unit(185, "lb"),
  40252. name: "Front",
  40253. image: {
  40254. source: "./media/characters/kayne-ein/front.svg",
  40255. extra: 1780/1560,
  40256. bottom: 81/1861
  40257. }
  40258. },
  40259. },
  40260. [
  40261. {
  40262. name: "Normal",
  40263. height: math.unit(6 + 2/12, "feet"),
  40264. default: true
  40265. },
  40266. {
  40267. name: "Transformation Stage",
  40268. height: math.unit(15, "feet")
  40269. },
  40270. {
  40271. name: "Macro",
  40272. height: math.unit(150, "feet")
  40273. },
  40274. {
  40275. name: "Earth's Shadow",
  40276. height: math.unit(6200, "miles")
  40277. },
  40278. {
  40279. name: "Universal Demon",
  40280. height: math.unit(28e9, "parsecs")
  40281. },
  40282. {
  40283. name: "Multiverse God",
  40284. height: math.unit(3, "multiverses")
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(5 + 5/12, "feet"),
  40293. name: "Front",
  40294. image: {
  40295. source: "./media/characters/fawn/front.svg",
  40296. extra: 1873/1731,
  40297. bottom: 95/1968
  40298. }
  40299. },
  40300. back: {
  40301. height: math.unit(5 + 5/12, "feet"),
  40302. name: "Back",
  40303. image: {
  40304. source: "./media/characters/fawn/back.svg",
  40305. extra: 1813/1700,
  40306. bottom: 14/1827
  40307. }
  40308. },
  40309. hoof: {
  40310. height: math.unit(1.45, "feet"),
  40311. name: "Hoof",
  40312. image: {
  40313. source: "./media/characters/fawn/hoof.svg"
  40314. }
  40315. },
  40316. },
  40317. [
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(5 + 5/12, "feet"),
  40321. default: true
  40322. },
  40323. ]
  40324. ))
  40325. characterMakers.push(() => makeCharacter(
  40326. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40327. {
  40328. front: {
  40329. height: math.unit(2 + 5/12, "feet"),
  40330. name: "Front",
  40331. image: {
  40332. source: "./media/characters/orion/front.svg",
  40333. extra: 1366/1304,
  40334. bottom: 43/1409
  40335. }
  40336. },
  40337. paw: {
  40338. height: math.unit(0.52, "feet"),
  40339. name: "Paw",
  40340. image: {
  40341. source: "./media/characters/orion/paw.svg"
  40342. }
  40343. },
  40344. },
  40345. [
  40346. {
  40347. name: "Normal",
  40348. height: math.unit(2 + 5/12, "feet"),
  40349. default: true
  40350. },
  40351. ]
  40352. ))
  40353. characterMakers.push(() => makeCharacter(
  40354. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40355. {
  40356. front: {
  40357. height: math.unit(5 + 10/12, "feet"),
  40358. name: "Front",
  40359. image: {
  40360. source: "./media/characters/vera/front.svg",
  40361. extra: 1680/1575,
  40362. bottom: 49/1729
  40363. }
  40364. },
  40365. back: {
  40366. height: math.unit(5 + 10/12, "feet"),
  40367. name: "Back",
  40368. image: {
  40369. source: "./media/characters/vera/back.svg",
  40370. extra: 1700/1588,
  40371. bottom: 18/1718
  40372. }
  40373. },
  40374. arcanine: {
  40375. height: math.unit(6 + 8/12, "feet"),
  40376. name: "Arcanine",
  40377. image: {
  40378. source: "./media/characters/vera/arcanine.svg",
  40379. extra: 1590/1511,
  40380. bottom: 71/1661
  40381. }
  40382. },
  40383. maw: {
  40384. height: math.unit(0.82, "feet"),
  40385. name: "Maw",
  40386. image: {
  40387. source: "./media/characters/vera/maw.svg"
  40388. }
  40389. },
  40390. mawArcanine: {
  40391. height: math.unit(0.97, "feet"),
  40392. name: "Maw (Arcanine)",
  40393. image: {
  40394. source: "./media/characters/vera/maw-arcanine.svg"
  40395. }
  40396. },
  40397. paw: {
  40398. height: math.unit(0.75, "feet"),
  40399. name: "Paw",
  40400. image: {
  40401. source: "./media/characters/vera/paw.svg"
  40402. }
  40403. },
  40404. pawprint: {
  40405. height: math.unit(0.52, "feet"),
  40406. name: "Pawprint",
  40407. image: {
  40408. source: "./media/characters/vera/pawprint.svg"
  40409. }
  40410. },
  40411. },
  40412. [
  40413. {
  40414. name: "Normal",
  40415. height: math.unit(5 + 10/12, "feet"),
  40416. default: true
  40417. },
  40418. {
  40419. name: "Macro",
  40420. height: math.unit(75, "feet")
  40421. },
  40422. ]
  40423. ))
  40424. characterMakers.push(() => makeCharacter(
  40425. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40426. {
  40427. front: {
  40428. height: math.unit(4, "feet"),
  40429. weight: math.unit(40, "lb"),
  40430. name: "Front",
  40431. image: {
  40432. source: "./media/characters/orvan-rabbit/front.svg",
  40433. extra: 1896/1642,
  40434. bottom: 29/1925
  40435. }
  40436. },
  40437. },
  40438. [
  40439. {
  40440. name: "Normal",
  40441. height: math.unit(4, "feet"),
  40442. default: true
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40448. {
  40449. front: {
  40450. height: math.unit(6, "feet"),
  40451. weight: math.unit(168, "lb"),
  40452. name: "Front",
  40453. image: {
  40454. source: "./media/characters/lisa/front.svg",
  40455. extra: 2065/1867,
  40456. bottom: 46/2111
  40457. }
  40458. },
  40459. back: {
  40460. height: math.unit(6, "feet"),
  40461. weight: math.unit(168, "lb"),
  40462. name: "Back",
  40463. image: {
  40464. source: "./media/characters/lisa/back.svg",
  40465. extra: 1982/1838,
  40466. bottom: 29/2011
  40467. }
  40468. },
  40469. maw: {
  40470. height: math.unit(0.81, "feet"),
  40471. name: "Maw",
  40472. image: {
  40473. source: "./media/characters/lisa/maw.svg"
  40474. }
  40475. },
  40476. paw: {
  40477. height: math.unit(0.9, "feet"),
  40478. name: "Paw",
  40479. image: {
  40480. source: "./media/characters/lisa/paw.svg"
  40481. }
  40482. },
  40483. caribousune: {
  40484. height: math.unit(7 + 2/12, "feet"),
  40485. weight: math.unit(268, "lb"),
  40486. name: "Caribousune",
  40487. image: {
  40488. source: "./media/characters/lisa/caribousune.svg",
  40489. extra: 1843/1633,
  40490. bottom: 29/1872
  40491. }
  40492. },
  40493. frontCaribousune: {
  40494. height: math.unit(7 + 2/12, "feet"),
  40495. weight: math.unit(268, "lb"),
  40496. name: "Front (Caribousune)",
  40497. image: {
  40498. source: "./media/characters/lisa/front-caribousune.svg",
  40499. extra: 1818/1638,
  40500. bottom: 52/1870
  40501. }
  40502. },
  40503. sideCaribousune: {
  40504. height: math.unit(7 + 2/12, "feet"),
  40505. weight: math.unit(268, "lb"),
  40506. name: "Side (Caribousune)",
  40507. image: {
  40508. source: "./media/characters/lisa/side-caribousune.svg",
  40509. extra: 1851/1635,
  40510. bottom: 16/1867
  40511. }
  40512. },
  40513. backCaribousune: {
  40514. height: math.unit(7 + 2/12, "feet"),
  40515. weight: math.unit(268, "lb"),
  40516. name: "Back (Caribousune)",
  40517. image: {
  40518. source: "./media/characters/lisa/back-caribousune.svg",
  40519. extra: 1801/1604,
  40520. bottom: 44/1845
  40521. }
  40522. },
  40523. caribou: {
  40524. height: math.unit(7 + 2/12, "feet"),
  40525. weight: math.unit(268, "lb"),
  40526. name: "Caribou",
  40527. image: {
  40528. source: "./media/characters/lisa/caribou.svg",
  40529. extra: 1843/1633,
  40530. bottom: 29/1872
  40531. }
  40532. },
  40533. frontCaribou: {
  40534. height: math.unit(7 + 2/12, "feet"),
  40535. weight: math.unit(268, "lb"),
  40536. name: "Front (Caribou)",
  40537. image: {
  40538. source: "./media/characters/lisa/front-caribou.svg",
  40539. extra: 1818/1638,
  40540. bottom: 52/1870
  40541. }
  40542. },
  40543. sideCaribou: {
  40544. height: math.unit(7 + 2/12, "feet"),
  40545. weight: math.unit(268, "lb"),
  40546. name: "Side (Caribou)",
  40547. image: {
  40548. source: "./media/characters/lisa/side-caribou.svg",
  40549. extra: 1851/1635,
  40550. bottom: 16/1867
  40551. }
  40552. },
  40553. backCaribou: {
  40554. height: math.unit(7 + 2/12, "feet"),
  40555. weight: math.unit(268, "lb"),
  40556. name: "Back (Caribou)",
  40557. image: {
  40558. source: "./media/characters/lisa/back-caribou.svg",
  40559. extra: 1801/1604,
  40560. bottom: 44/1845
  40561. }
  40562. },
  40563. mawCaribou: {
  40564. height: math.unit(1.45, "feet"),
  40565. name: "Maw (Caribou)",
  40566. image: {
  40567. source: "./media/characters/lisa/maw-caribou.svg"
  40568. }
  40569. },
  40570. mawCaribousune: {
  40571. height: math.unit(1.45, "feet"),
  40572. name: "Maw (Caribousune)",
  40573. image: {
  40574. source: "./media/characters/lisa/maw-caribousune.svg"
  40575. }
  40576. },
  40577. pawCaribousune: {
  40578. height: math.unit(1.61, "feet"),
  40579. name: "Paw (Caribou)",
  40580. image: {
  40581. source: "./media/characters/lisa/paw-caribousune.svg"
  40582. }
  40583. },
  40584. },
  40585. [
  40586. {
  40587. name: "Normal",
  40588. height: math.unit(6, "feet")
  40589. },
  40590. {
  40591. name: "God Size",
  40592. height: math.unit(72, "feet"),
  40593. default: true
  40594. },
  40595. {
  40596. name: "Towering",
  40597. height: math.unit(288, "feet")
  40598. },
  40599. {
  40600. name: "City Size",
  40601. height: math.unit(48384, "feet")
  40602. },
  40603. {
  40604. name: "Continental",
  40605. height: math.unit(4200, "miles")
  40606. },
  40607. {
  40608. name: "Planet Eater",
  40609. height: math.unit(42, "earths")
  40610. },
  40611. {
  40612. name: "Star Swallower",
  40613. height: math.unit(42, "solarradii")
  40614. },
  40615. {
  40616. name: "System Swallower",
  40617. height: math.unit(84000, "AU")
  40618. },
  40619. {
  40620. name: "Galaxy Gobbler",
  40621. height: math.unit(42, "galaxies")
  40622. },
  40623. {
  40624. name: "Universe Devourer",
  40625. height: math.unit(42, "universes")
  40626. },
  40627. {
  40628. name: "Multiverse Muncher",
  40629. height: math.unit(42, "multiverses")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(36, "feet"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/shadow-rat/front.svg",
  40641. extra: 1845/1758,
  40642. bottom: 83/1928
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Macro",
  40649. height: math.unit(36, "feet"),
  40650. default: true
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40656. {
  40657. side: {
  40658. height: math.unit(8, "feet"),
  40659. weight: math.unit(2630, "lb"),
  40660. name: "Side",
  40661. image: {
  40662. source: "./media/characters/torallia/side.svg",
  40663. extra: 2164/2021,
  40664. bottom: 371/2535
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Mortal Interaction",
  40671. height: math.unit(8, "feet")
  40672. },
  40673. {
  40674. name: "Natural",
  40675. height: math.unit(24, "feet"),
  40676. default: true
  40677. },
  40678. {
  40679. name: "Giant",
  40680. height: math.unit(80, "feet")
  40681. },
  40682. {
  40683. name: "Kaiju",
  40684. height: math.unit(240, "feet")
  40685. },
  40686. {
  40687. name: "Macro",
  40688. height: math.unit(800, "feet")
  40689. },
  40690. {
  40691. name: "Macro+",
  40692. height: math.unit(2400, "feet")
  40693. },
  40694. {
  40695. name: "Macro++",
  40696. height: math.unit(8000, "feet")
  40697. },
  40698. {
  40699. name: "City-Crushing",
  40700. height: math.unit(24000, "feet")
  40701. },
  40702. {
  40703. name: "Mountain-Mashing",
  40704. height: math.unit(80000, "feet")
  40705. },
  40706. {
  40707. name: "District Demolisher",
  40708. height: math.unit(240000, "feet")
  40709. },
  40710. {
  40711. name: "Tri-County Terror",
  40712. height: math.unit(800000, "feet")
  40713. },
  40714. {
  40715. name: "State Smasher",
  40716. height: math.unit(2.4e6, "feet")
  40717. },
  40718. {
  40719. name: "Nation Nemesis",
  40720. height: math.unit(8e6, "feet")
  40721. },
  40722. {
  40723. name: "Continent Cracker",
  40724. height: math.unit(2.4e7, "feet")
  40725. },
  40726. {
  40727. name: "Planet-Pillaging",
  40728. height: math.unit(8e7, "feet")
  40729. },
  40730. {
  40731. name: "Earth-Eclipsing",
  40732. height: math.unit(2.4e8, "feet")
  40733. },
  40734. {
  40735. name: "Jovian-Jostling",
  40736. height: math.unit(8e8, "feet")
  40737. },
  40738. {
  40739. name: "Gas Giant Gulper",
  40740. height: math.unit(2.4e9, "feet")
  40741. },
  40742. {
  40743. name: "Astral Annihilator",
  40744. height: math.unit(8e9, "feet")
  40745. },
  40746. {
  40747. name: "Celestial Conqueror",
  40748. height: math.unit(2.4e10, "feet")
  40749. },
  40750. {
  40751. name: "Sol-Swallowing",
  40752. height: math.unit(8e10, "feet")
  40753. },
  40754. {
  40755. name: "Hunter of the Heavens",
  40756. height: math.unit(2.4e13, "feet")
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(6 + 8/12, "feet"),
  40765. weight: math.unit(250, "kilograms"),
  40766. volume: math.unit(28, "liters"),
  40767. name: "Front",
  40768. image: {
  40769. source: "./media/characters/rebecca-pawlson/front.svg",
  40770. extra: 1737/1596,
  40771. bottom: 107/1844
  40772. }
  40773. },
  40774. back: {
  40775. height: math.unit(6 + 8/12, "feet"),
  40776. weight: math.unit(250, "kilograms"),
  40777. volume: math.unit(28, "liters"),
  40778. name: "Back",
  40779. image: {
  40780. source: "./media/characters/rebecca-pawlson/back.svg",
  40781. extra: 1702/1523,
  40782. bottom: 86/1788
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Normal",
  40789. height: math.unit(6 + 8/12, "feet")
  40790. },
  40791. {
  40792. name: "Mini Macro",
  40793. height: math.unit(10, "feet"),
  40794. default: true
  40795. },
  40796. {
  40797. name: "Macro",
  40798. height: math.unit(100, "feet")
  40799. },
  40800. {
  40801. name: "Mega Macro",
  40802. height: math.unit(2500, "feet")
  40803. },
  40804. {
  40805. name: "Giga Macro",
  40806. height: math.unit(50, "miles")
  40807. },
  40808. ]
  40809. ))
  40810. characterMakers.push(() => makeCharacter(
  40811. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40812. {
  40813. front: {
  40814. height: math.unit(7 + 6/12, "feet"),
  40815. weight: math.unit(600, "lb"),
  40816. name: "Front",
  40817. image: {
  40818. source: "./media/characters/moxie-nova/front.svg",
  40819. extra: 1734/1652,
  40820. bottom: 41/1775
  40821. }
  40822. },
  40823. },
  40824. [
  40825. {
  40826. name: "Normal",
  40827. height: math.unit(7 + 6/12, "feet"),
  40828. default: true
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40834. {
  40835. goat: {
  40836. height: math.unit(4, "feet"),
  40837. weight: math.unit(180, "lb"),
  40838. name: "Goat",
  40839. image: {
  40840. source: "./media/characters/tiffany/goat.svg",
  40841. extra: 1845/1595,
  40842. bottom: 106/1951
  40843. }
  40844. },
  40845. front: {
  40846. height: math.unit(5, "feet"),
  40847. weight: math.unit(150, "lb"),
  40848. name: "Foxcoon",
  40849. image: {
  40850. source: "./media/characters/tiffany/foxcoon.svg",
  40851. extra: 1941/1845,
  40852. bottom: 58/1999
  40853. }
  40854. },
  40855. },
  40856. [
  40857. {
  40858. name: "Normal",
  40859. height: math.unit(5, "feet"),
  40860. default: true
  40861. },
  40862. ]
  40863. ))
  40864. characterMakers.push(() => makeCharacter(
  40865. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40866. {
  40867. front: {
  40868. height: math.unit(8, "feet"),
  40869. weight: math.unit(300, "lb"),
  40870. name: "Front",
  40871. image: {
  40872. source: "./media/characters/raxinath/front.svg",
  40873. extra: 1407/1309,
  40874. bottom: 39/1446
  40875. }
  40876. },
  40877. back: {
  40878. height: math.unit(8, "feet"),
  40879. weight: math.unit(300, "lb"),
  40880. name: "Back",
  40881. image: {
  40882. source: "./media/characters/raxinath/back.svg",
  40883. extra: 1405/1315,
  40884. bottom: 9/1414
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Speck",
  40891. height: math.unit(0.5, "nm")
  40892. },
  40893. {
  40894. name: "Micro",
  40895. height: math.unit(3, "inches")
  40896. },
  40897. {
  40898. name: "Kobold",
  40899. height: math.unit(3, "feet")
  40900. },
  40901. {
  40902. name: "Normal",
  40903. height: math.unit(8, "feet"),
  40904. default: true
  40905. },
  40906. {
  40907. name: "Giant",
  40908. height: math.unit(50, "feet")
  40909. },
  40910. {
  40911. name: "Macro",
  40912. height: math.unit(1000, "feet")
  40913. },
  40914. {
  40915. name: "Megamacro",
  40916. height: math.unit(1, "mile")
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(10, "feet"),
  40925. weight: math.unit(1442, "lb"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/mal-dragon/front.svg",
  40929. extra: 1515/1444,
  40930. bottom: 113/1628
  40931. }
  40932. },
  40933. back: {
  40934. height: math.unit(10, "feet"),
  40935. weight: math.unit(1442, "lb"),
  40936. name: "Back",
  40937. image: {
  40938. source: "./media/characters/mal-dragon/back.svg",
  40939. extra: 1527/1434,
  40940. bottom: 25/1552
  40941. }
  40942. },
  40943. },
  40944. [
  40945. {
  40946. name: "Mortal Interaction",
  40947. height: math.unit(10, "feet"),
  40948. default: true
  40949. },
  40950. {
  40951. name: "Large",
  40952. height: math.unit(30, "feet")
  40953. },
  40954. {
  40955. name: "Kaiju",
  40956. height: math.unit(300, "feet")
  40957. },
  40958. {
  40959. name: "Megamacro",
  40960. height: math.unit(10000, "feet")
  40961. },
  40962. {
  40963. name: "Continent Cracker",
  40964. height: math.unit(30000000, "feet")
  40965. },
  40966. {
  40967. name: "Sol-Swallowing",
  40968. height: math.unit(1e11, "feet")
  40969. },
  40970. {
  40971. name: "Light Universal",
  40972. height: math.unit(5, "universes")
  40973. },
  40974. {
  40975. name: "Universe Atoms",
  40976. height: math.unit(1.829e9, "universes")
  40977. },
  40978. {
  40979. name: "Light Multiversal",
  40980. height: math.unit(5, "multiverses")
  40981. },
  40982. {
  40983. name: "Multiverse Atoms",
  40984. height: math.unit(1.829e9, "multiverses")
  40985. },
  40986. {
  40987. name: "Fabric of Time",
  40988. height: math.unit(1e262, "multiverses")
  40989. },
  40990. ]
  40991. ))
  40992. characterMakers.push(() => makeCharacter(
  40993. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40994. {
  40995. front: {
  40996. height: math.unit(9, "feet"),
  40997. weight: math.unit(1050, "lb"),
  40998. name: "Front",
  40999. image: {
  41000. source: "./media/characters/tabitha/front.svg",
  41001. extra: 2083/1994,
  41002. bottom: 68/2151
  41003. }
  41004. },
  41005. },
  41006. [
  41007. {
  41008. name: "Baseline",
  41009. height: math.unit(9, "feet"),
  41010. default: true
  41011. },
  41012. {
  41013. name: "Giant",
  41014. height: math.unit(90, "feet")
  41015. },
  41016. {
  41017. name: "Macro",
  41018. height: math.unit(900, "feet")
  41019. },
  41020. {
  41021. name: "Megamacro",
  41022. height: math.unit(9000, "feet")
  41023. },
  41024. {
  41025. name: "City-Crushing",
  41026. height: math.unit(27000, "feet")
  41027. },
  41028. {
  41029. name: "Mountain-Mashing",
  41030. height: math.unit(90000, "feet")
  41031. },
  41032. {
  41033. name: "Nation Nemesis",
  41034. height: math.unit(9e6, "feet")
  41035. },
  41036. {
  41037. name: "Continent Cracker",
  41038. height: math.unit(27e6, "feet")
  41039. },
  41040. {
  41041. name: "Earth-Eclipsing",
  41042. height: math.unit(2.7e8, "feet")
  41043. },
  41044. {
  41045. name: "Gas Giant Gulper",
  41046. height: math.unit(2.7e9, "feet")
  41047. },
  41048. {
  41049. name: "Sol-Swallowing",
  41050. height: math.unit(9e10, "feet")
  41051. },
  41052. {
  41053. name: "Galaxy Gulper",
  41054. height: math.unit(9, "galaxies")
  41055. },
  41056. {
  41057. name: "Cosmos Churner",
  41058. height: math.unit(9, "universes")
  41059. },
  41060. ]
  41061. ))
  41062. characterMakers.push(() => makeCharacter(
  41063. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41064. {
  41065. front: {
  41066. height: math.unit(160, "cm"),
  41067. weight: math.unit(55, "kg"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/tow/front.svg",
  41071. extra: 1751/1722,
  41072. bottom: 74/1825
  41073. }
  41074. },
  41075. },
  41076. [
  41077. {
  41078. name: "Norm",
  41079. height: math.unit(160, "cm")
  41080. },
  41081. {
  41082. name: "Casual",
  41083. height: math.unit(3200, "m"),
  41084. default: true
  41085. },
  41086. {
  41087. name: "Show-Off",
  41088. height: math.unit(160, "km")
  41089. },
  41090. ]
  41091. ))
  41092. characterMakers.push(() => makeCharacter(
  41093. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41094. {
  41095. front: {
  41096. height: math.unit(7 + 11/12, "feet"),
  41097. weight: math.unit(342.8, "lb"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/vivian-orca-dragon/front.svg",
  41101. extra: 1890/1865,
  41102. bottom: 28/1918
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Micro",
  41109. height: math.unit(5, "inches")
  41110. },
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(7 + 11/12, "feet"),
  41114. default: true
  41115. },
  41116. {
  41117. name: "Macro",
  41118. height: math.unit(395 + 7/12, "feet")
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41124. {
  41125. side: {
  41126. height: math.unit(10, "feet"),
  41127. weight: math.unit(1442, "lb"),
  41128. name: "Side",
  41129. image: {
  41130. source: "./media/characters/lotherakon/side.svg",
  41131. extra: 1604/1497,
  41132. bottom: 89/1693
  41133. }
  41134. },
  41135. },
  41136. [
  41137. {
  41138. name: "Mortal Interaction",
  41139. height: math.unit(10, "feet")
  41140. },
  41141. {
  41142. name: "Large",
  41143. height: math.unit(30, "feet"),
  41144. default: true
  41145. },
  41146. {
  41147. name: "Giant",
  41148. height: math.unit(100, "feet")
  41149. },
  41150. {
  41151. name: "Kaiju",
  41152. height: math.unit(300, "feet")
  41153. },
  41154. {
  41155. name: "Macro",
  41156. height: math.unit(1000, "feet")
  41157. },
  41158. {
  41159. name: "Macro+",
  41160. height: math.unit(3000, "feet")
  41161. },
  41162. {
  41163. name: "Megamacro",
  41164. height: math.unit(10000, "feet")
  41165. },
  41166. {
  41167. name: "City-Crushing",
  41168. height: math.unit(30000, "feet")
  41169. },
  41170. {
  41171. name: "Continent Cracker",
  41172. height: math.unit(30e6, "feet")
  41173. },
  41174. {
  41175. name: "Earth Eclipsing",
  41176. height: math.unit(3e8, "feet")
  41177. },
  41178. {
  41179. name: "Gas Giant Gulper",
  41180. height: math.unit(3e9, "feet")
  41181. },
  41182. {
  41183. name: "Sol-Swallowing",
  41184. height: math.unit(1e11, "feet")
  41185. },
  41186. {
  41187. name: "System Swallower",
  41188. height: math.unit(3e14, "feet")
  41189. },
  41190. {
  41191. name: "Galaxy Gulper",
  41192. height: math.unit(10, "galaxies")
  41193. },
  41194. {
  41195. name: "Light Universal",
  41196. height: math.unit(5, "universes")
  41197. },
  41198. {
  41199. name: "Universe Palm",
  41200. height: math.unit(20, "universes")
  41201. },
  41202. {
  41203. name: "Light Multiversal",
  41204. height: math.unit(5, "multiverses")
  41205. },
  41206. {
  41207. name: "Multiverse Palm",
  41208. height: math.unit(20, "multiverses")
  41209. },
  41210. {
  41211. name: "Inferno Incarnate",
  41212. height: math.unit(1e7, "multiverses")
  41213. },
  41214. ]
  41215. ))
  41216. characterMakers.push(() => makeCharacter(
  41217. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41218. {
  41219. front: {
  41220. height: math.unit(8, "feet"),
  41221. weight: math.unit(1200, "lb"),
  41222. name: "Front",
  41223. image: {
  41224. source: "./media/characters/malithee/front.svg",
  41225. extra: 1675/1640,
  41226. bottom: 162/1837
  41227. }
  41228. },
  41229. },
  41230. [
  41231. {
  41232. name: "Mortal Interaction",
  41233. height: math.unit(8, "feet"),
  41234. default: true
  41235. },
  41236. {
  41237. name: "Large",
  41238. height: math.unit(24, "feet")
  41239. },
  41240. {
  41241. name: "Kaiju",
  41242. height: math.unit(240, "feet")
  41243. },
  41244. {
  41245. name: "Megamacro",
  41246. height: math.unit(8000, "feet")
  41247. },
  41248. {
  41249. name: "Continent Cracker",
  41250. height: math.unit(24e6, "feet")
  41251. },
  41252. {
  41253. name: "Earth-Eclipsing",
  41254. height: math.unit(2.4e8, "feet")
  41255. },
  41256. {
  41257. name: "Sol-Swallowing",
  41258. height: math.unit(8e10, "feet")
  41259. },
  41260. {
  41261. name: "Galaxy Gulper",
  41262. height: math.unit(8, "galaxies")
  41263. },
  41264. {
  41265. name: "Light Universal",
  41266. height: math.unit(4, "universes")
  41267. },
  41268. {
  41269. name: "Universe Atoms",
  41270. height: math.unit(1.829e9, "universes")
  41271. },
  41272. {
  41273. name: "Light Multiversal",
  41274. height: math.unit(4, "multiverses")
  41275. },
  41276. {
  41277. name: "Multiverse Atoms",
  41278. height: math.unit(1.829e9, "multiverses")
  41279. },
  41280. {
  41281. name: "Nigh-Omnipresence",
  41282. height: math.unit(8e261, "multiverses")
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(10, "feet"),
  41291. weight: math.unit(1500, "lb"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/miles-thestia/front.svg",
  41295. extra: 1812/1727,
  41296. bottom: 86/1898
  41297. }
  41298. },
  41299. back: {
  41300. height: math.unit(10, "feet"),
  41301. weight: math.unit(1500, "lb"),
  41302. name: "Back",
  41303. image: {
  41304. source: "./media/characters/miles-thestia/back.svg",
  41305. extra: 1799/1690,
  41306. bottom: 47/1846
  41307. }
  41308. },
  41309. frontNsfw: {
  41310. height: math.unit(10, "feet"),
  41311. weight: math.unit(1500, "lb"),
  41312. name: "Front (NSFW)",
  41313. image: {
  41314. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41315. extra: 1812/1727,
  41316. bottom: 86/1898
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Mini-Macro",
  41323. height: math.unit(10, "feet"),
  41324. default: true
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41330. {
  41331. front: {
  41332. height: math.unit(25, "feet"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/titan-s-wulf/front.svg",
  41336. extra: 1560/1484,
  41337. bottom: 76/1636
  41338. }
  41339. },
  41340. },
  41341. [
  41342. {
  41343. name: "Smallest",
  41344. height: math.unit(25, "feet"),
  41345. default: true
  41346. },
  41347. {
  41348. name: "Normal",
  41349. height: math.unit(200, "feet")
  41350. },
  41351. {
  41352. name: "Macro",
  41353. height: math.unit(200000, "feet")
  41354. },
  41355. {
  41356. name: "Multiversal Original",
  41357. height: math.unit(10000, "multiverses")
  41358. },
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(8, "feet"),
  41366. weight: math.unit(553, "lb"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/tawendeh/front.svg",
  41370. extra: 2365/2268,
  41371. bottom: 83/2448
  41372. }
  41373. },
  41374. frontClothed: {
  41375. height: math.unit(8, "feet"),
  41376. weight: math.unit(553, "lb"),
  41377. name: "Front (Clothed)",
  41378. image: {
  41379. source: "./media/characters/tawendeh/front-clothed.svg",
  41380. extra: 2365/2268,
  41381. bottom: 83/2448
  41382. }
  41383. },
  41384. back: {
  41385. height: math.unit(8, "feet"),
  41386. weight: math.unit(553, "lb"),
  41387. name: "Back",
  41388. image: {
  41389. source: "./media/characters/tawendeh/back.svg",
  41390. extra: 2397/2294,
  41391. bottom: 42/2439
  41392. }
  41393. },
  41394. },
  41395. [
  41396. {
  41397. name: "Mortal Interaction",
  41398. height: math.unit(8, "feet"),
  41399. default: true
  41400. },
  41401. {
  41402. name: "Giant",
  41403. height: math.unit(80, "feet")
  41404. },
  41405. {
  41406. name: "Macro",
  41407. height: math.unit(800, "feet")
  41408. },
  41409. {
  41410. name: "Megamacro",
  41411. height: math.unit(8000, "feet")
  41412. },
  41413. {
  41414. name: "City-Crushing",
  41415. height: math.unit(24000, "feet")
  41416. },
  41417. {
  41418. name: "Mountain-Mashing",
  41419. height: math.unit(80000, "feet")
  41420. },
  41421. {
  41422. name: "Nation Nemesis",
  41423. height: math.unit(8e6, "feet")
  41424. },
  41425. {
  41426. name: "Continent Cracker",
  41427. height: math.unit(24e6, "feet")
  41428. },
  41429. {
  41430. name: "Earth-Eclipsing",
  41431. height: math.unit(2.4e8, "feet")
  41432. },
  41433. {
  41434. name: "Gas Giant Gulper",
  41435. height: math.unit(2.4e9, "feet")
  41436. },
  41437. {
  41438. name: "Sol-Swallowing",
  41439. height: math.unit(8e10, "feet")
  41440. },
  41441. {
  41442. name: "Galaxy Gulper",
  41443. height: math.unit(8, "galaxies")
  41444. },
  41445. {
  41446. name: "Cosmos Churner",
  41447. height: math.unit(8, "universes")
  41448. },
  41449. {
  41450. name: "Omnipotent Otter",
  41451. height: math.unit(80, "universes")
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41457. {
  41458. front: {
  41459. height: math.unit(2.6, "meters"),
  41460. weight: math.unit(900, "kg"),
  41461. name: "Front",
  41462. image: {
  41463. source: "./media/characters/neesha/front.svg",
  41464. extra: 1803/1653,
  41465. bottom: 128/1931
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(2.6, "meters"),
  41473. default: true
  41474. },
  41475. {
  41476. name: "Macro",
  41477. height: math.unit(50, "meters")
  41478. },
  41479. ]
  41480. ))
  41481. characterMakers.push(() => makeCharacter(
  41482. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41483. {
  41484. front: {
  41485. height: math.unit(5, "feet"),
  41486. weight: math.unit(185, "lb"),
  41487. name: "Front",
  41488. image: {
  41489. source: "./media/characters/kyera/front.svg",
  41490. extra: 1875/1790,
  41491. bottom: 96/1971
  41492. }
  41493. },
  41494. },
  41495. [
  41496. {
  41497. name: "Normal",
  41498. height: math.unit(5, "feet"),
  41499. default: true
  41500. },
  41501. ]
  41502. ))
  41503. characterMakers.push(() => makeCharacter(
  41504. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41505. {
  41506. front: {
  41507. height: math.unit(7 + 6/12, "feet"),
  41508. weight: math.unit(540, "lb"),
  41509. name: "Front",
  41510. image: {
  41511. source: "./media/characters/yuko/front.svg",
  41512. extra: 1282/1222,
  41513. bottom: 101/1383
  41514. }
  41515. },
  41516. frontClothed: {
  41517. height: math.unit(7 + 6/12, "feet"),
  41518. weight: math.unit(540, "lb"),
  41519. name: "Front (Clothed)",
  41520. image: {
  41521. source: "./media/characters/yuko/front-clothed.svg",
  41522. extra: 1282/1222,
  41523. bottom: 101/1383
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(7 + 6/12, "feet"),
  41531. default: true
  41532. },
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(26 + 9/12, "feet")
  41536. },
  41537. {
  41538. name: "Megamacro",
  41539. height: math.unit(300, "feet")
  41540. },
  41541. {
  41542. name: "Gigamacro",
  41543. height: math.unit(5000, "feet")
  41544. },
  41545. {
  41546. name: "Planetary",
  41547. height: math.unit(10000, "miles")
  41548. },
  41549. ]
  41550. ))
  41551. characterMakers.push(() => makeCharacter(
  41552. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41553. {
  41554. front: {
  41555. height: math.unit(8 + 2/12, "feet"),
  41556. weight: math.unit(600, "lb"),
  41557. name: "Front",
  41558. image: {
  41559. source: "./media/characters/deam-nitrel/front.svg",
  41560. extra: 1308/1234,
  41561. bottom: 125/1433
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(8 + 2/12, "feet"),
  41569. default: true
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41575. {
  41576. front: {
  41577. height: math.unit(6.1, "feet"),
  41578. weight: math.unit(180, "lb"),
  41579. name: "Front",
  41580. image: {
  41581. source: "./media/characters/skyress/front.svg",
  41582. extra: 1045/915,
  41583. bottom: 28/1073
  41584. }
  41585. },
  41586. maw: {
  41587. height: math.unit(1, "feet"),
  41588. name: "Maw",
  41589. image: {
  41590. source: "./media/characters/skyress/maw.svg"
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(6.1, "feet"),
  41598. default: true
  41599. },
  41600. {
  41601. name: "Macro",
  41602. height: math.unit(200, "feet")
  41603. },
  41604. ]
  41605. ))
  41606. characterMakers.push(() => makeCharacter(
  41607. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41608. {
  41609. front: {
  41610. height: math.unit(4 + 2/12, "feet"),
  41611. weight: math.unit(40, "kg"),
  41612. name: "Front",
  41613. image: {
  41614. source: "./media/characters/amethyst-jones/front.svg",
  41615. extra: 1220/1150,
  41616. bottom: 101/1321
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Normal",
  41623. height: math.unit(4 + 2/12, "feet"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(1.7, "m"),
  41633. weight: math.unit(135, "lb"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/jade/front.svg",
  41637. extra: 1818/1767,
  41638. bottom: 32/1850
  41639. }
  41640. },
  41641. back: {
  41642. height: math.unit(1.7, "m"),
  41643. weight: math.unit(135, "lb"),
  41644. name: "Back",
  41645. image: {
  41646. source: "./media/characters/jade/back.svg",
  41647. extra: 1869/1809,
  41648. bottom: 35/1904
  41649. }
  41650. },
  41651. hand: {
  41652. height: math.unit(0.24, "m"),
  41653. name: "Hand",
  41654. image: {
  41655. source: "./media/characters/jade/hand.svg"
  41656. }
  41657. },
  41658. foot: {
  41659. height: math.unit(0.263, "m"),
  41660. name: "Foot",
  41661. image: {
  41662. source: "./media/characters/jade/foot.svg"
  41663. }
  41664. },
  41665. dick: {
  41666. height: math.unit(0.47, "m"),
  41667. name: "Dick",
  41668. image: {
  41669. source: "./media/characters/jade/dick.svg"
  41670. }
  41671. },
  41672. },
  41673. [
  41674. {
  41675. name: "Micro",
  41676. height: math.unit(22, "cm")
  41677. },
  41678. {
  41679. name: "Normal",
  41680. height: math.unit(1.7, "m"),
  41681. default: true
  41682. },
  41683. {
  41684. name: "Macro",
  41685. height: math.unit(152, "m")
  41686. },
  41687. ]
  41688. ))
  41689. characterMakers.push(() => makeCharacter(
  41690. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41691. {
  41692. front: {
  41693. height: math.unit(100, "miles"),
  41694. weight: math.unit(20000, "tons"),
  41695. name: "Front",
  41696. image: {
  41697. source: "./media/characters/cookie/front.svg",
  41698. extra: 1125/1070,
  41699. bottom: 30/1155
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "Big",
  41706. height: math.unit(50, "feet")
  41707. },
  41708. {
  41709. name: "Macro",
  41710. height: math.unit(100, "miles"),
  41711. default: true
  41712. },
  41713. {
  41714. name: "Megamacro",
  41715. height: math.unit(90000, "miles")
  41716. },
  41717. ]
  41718. ))
  41719. characterMakers.push(() => makeCharacter(
  41720. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41721. {
  41722. front: {
  41723. height: math.unit(6, "feet"),
  41724. weight: math.unit(145, "lb"),
  41725. name: "Front",
  41726. image: {
  41727. source: "./media/characters/farzian/front.svg",
  41728. extra: 1902/1693,
  41729. bottom: 108/2010
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Macro",
  41736. height: math.unit(500, "feet"),
  41737. default: true
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41743. {
  41744. front: {
  41745. height: math.unit(3 + 6/12, "feet"),
  41746. weight: math.unit(50, "lb"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/kimberly-tilson/front.svg",
  41750. extra: 1400/1322,
  41751. bottom: 36/1436
  41752. }
  41753. },
  41754. back: {
  41755. height: math.unit(3 + 6/12, "feet"),
  41756. weight: math.unit(50, "lb"),
  41757. name: "Back",
  41758. image: {
  41759. source: "./media/characters/kimberly-tilson/back.svg",
  41760. extra: 1370/1307,
  41761. bottom: 20/1390
  41762. }
  41763. },
  41764. },
  41765. [
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(3 + 6/12, "feet"),
  41769. default: true
  41770. },
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41775. {
  41776. front: {
  41777. height: math.unit(1148, "feet"),
  41778. weight: math.unit(34057, "lb"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/harthos/front.svg",
  41782. extra: 1391/1339,
  41783. bottom: 13/1404
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Macro",
  41790. height: math.unit(1148, "feet"),
  41791. default: true
  41792. },
  41793. ]
  41794. ))
  41795. characterMakers.push(() => makeCharacter(
  41796. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41797. {
  41798. front: {
  41799. height: math.unit(15, "feet"),
  41800. name: "Front",
  41801. image: {
  41802. source: "./media/characters/hypatia/front.svg",
  41803. extra: 1653/1591,
  41804. bottom: 79/1732
  41805. }
  41806. },
  41807. },
  41808. [
  41809. {
  41810. name: "Normal",
  41811. height: math.unit(15, "feet")
  41812. },
  41813. {
  41814. name: "Small",
  41815. height: math.unit(300, "feet")
  41816. },
  41817. {
  41818. name: "Macro",
  41819. height: math.unit(2500, "feet"),
  41820. default: true
  41821. },
  41822. {
  41823. name: "Mega Macro",
  41824. height: math.unit(1500, "miles")
  41825. },
  41826. {
  41827. name: "Giga Macro",
  41828. height: math.unit(1.5e6, "miles")
  41829. },
  41830. ]
  41831. ))
  41832. characterMakers.push(() => makeCharacter(
  41833. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41834. {
  41835. front: {
  41836. height: math.unit(6, "feet"),
  41837. weight: math.unit(200, "lb"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/wulver/front.svg",
  41841. extra: 1724/1632,
  41842. bottom: 130/1854
  41843. }
  41844. },
  41845. frontNsfw: {
  41846. height: math.unit(6, "feet"),
  41847. weight: math.unit(200, "lb"),
  41848. name: "Front (NSFW)",
  41849. image: {
  41850. source: "./media/characters/wulver/front-nsfw.svg",
  41851. extra: 1724/1632,
  41852. bottom: 130/1854
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Human-Sized",
  41859. height: math.unit(6, "feet")
  41860. },
  41861. {
  41862. name: "Normal",
  41863. height: math.unit(4, "meters"),
  41864. default: true
  41865. },
  41866. {
  41867. name: "Large",
  41868. height: math.unit(6, "m")
  41869. },
  41870. ]
  41871. ))
  41872. characterMakers.push(() => makeCharacter(
  41873. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41874. {
  41875. front: {
  41876. height: math.unit(7, "feet"),
  41877. name: "Front",
  41878. image: {
  41879. source: "./media/characters/maru/front.svg",
  41880. extra: 1595/1570,
  41881. bottom: 0/1595
  41882. }
  41883. },
  41884. },
  41885. [
  41886. {
  41887. name: "Normal",
  41888. height: math.unit(7, "feet"),
  41889. default: true
  41890. },
  41891. {
  41892. name: "Macro",
  41893. height: math.unit(700, "feet")
  41894. },
  41895. {
  41896. name: "Mega Macro",
  41897. height: math.unit(25, "miles")
  41898. },
  41899. ]
  41900. ))
  41901. characterMakers.push(() => makeCharacter(
  41902. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41903. {
  41904. front: {
  41905. height: math.unit(6, "feet"),
  41906. weight: math.unit(170, "lb"),
  41907. name: "Front",
  41908. image: {
  41909. source: "./media/characters/xenon/front.svg",
  41910. extra: 1376/1305,
  41911. bottom: 56/1432
  41912. }
  41913. },
  41914. back: {
  41915. height: math.unit(6, "feet"),
  41916. weight: math.unit(170, "lb"),
  41917. name: "Back",
  41918. image: {
  41919. source: "./media/characters/xenon/back.svg",
  41920. extra: 1328/1259,
  41921. bottom: 95/1423
  41922. }
  41923. },
  41924. maw: {
  41925. height: math.unit(0.52, "feet"),
  41926. name: "Maw",
  41927. image: {
  41928. source: "./media/characters/xenon/maw.svg"
  41929. }
  41930. },
  41931. handLeft: {
  41932. height: math.unit(0.82 * 169 / 153, "feet"),
  41933. name: "Hand (Left)",
  41934. image: {
  41935. source: "./media/characters/xenon/hand-left.svg"
  41936. }
  41937. },
  41938. handRight: {
  41939. height: math.unit(0.82, "feet"),
  41940. name: "Hand (Right)",
  41941. image: {
  41942. source: "./media/characters/xenon/hand-right.svg"
  41943. }
  41944. },
  41945. footLeft: {
  41946. height: math.unit(1.13, "feet"),
  41947. name: "Foot (Left)",
  41948. image: {
  41949. source: "./media/characters/xenon/foot-left.svg"
  41950. }
  41951. },
  41952. footRight: {
  41953. height: math.unit(1.13 * 194 / 196, "feet"),
  41954. name: "Foot (Right)",
  41955. image: {
  41956. source: "./media/characters/xenon/foot-right.svg"
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Micro",
  41963. height: math.unit(0.8, "inches")
  41964. },
  41965. {
  41966. name: "Normal",
  41967. height: math.unit(6, "feet")
  41968. },
  41969. {
  41970. name: "Macro",
  41971. height: math.unit(50, "feet"),
  41972. default: true
  41973. },
  41974. {
  41975. name: "Macro+",
  41976. height: math.unit(250, "feet")
  41977. },
  41978. {
  41979. name: "Megamacro",
  41980. height: math.unit(1500, "feet")
  41981. },
  41982. ]
  41983. ))
  41984. characterMakers.push(() => makeCharacter(
  41985. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41986. {
  41987. front: {
  41988. height: math.unit(7 + 5/12, "feet"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/zane/front.svg",
  41992. extra: 1260/1203,
  41993. bottom: 94/1354
  41994. }
  41995. },
  41996. back: {
  41997. height: math.unit(5.05, "feet"),
  41998. name: "Back",
  41999. image: {
  42000. source: "./media/characters/zane/back.svg",
  42001. extra: 893/829,
  42002. bottom: 30/923
  42003. }
  42004. },
  42005. werewolf: {
  42006. height: math.unit(11, "feet"),
  42007. name: "Werewolf",
  42008. image: {
  42009. source: "./media/characters/zane/werewolf.svg",
  42010. extra: 1383/1323,
  42011. bottom: 89/1472
  42012. }
  42013. },
  42014. foot: {
  42015. height: math.unit(1.46, "feet"),
  42016. name: "Foot",
  42017. image: {
  42018. source: "./media/characters/zane/foot.svg"
  42019. }
  42020. },
  42021. footFront: {
  42022. height: math.unit(0.784, "feet"),
  42023. name: "Foot (Front)",
  42024. image: {
  42025. source: "./media/characters/zane/foot-front.svg"
  42026. }
  42027. },
  42028. dick: {
  42029. height: math.unit(1.95, "feet"),
  42030. name: "Dick",
  42031. image: {
  42032. source: "./media/characters/zane/dick.svg"
  42033. }
  42034. },
  42035. dickWerewolf: {
  42036. height: math.unit(3.77, "feet"),
  42037. name: "Dick (Werewolf)",
  42038. image: {
  42039. source: "./media/characters/zane/dick.svg"
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Normal",
  42046. height: math.unit(7 + 5/12, "feet"),
  42047. default: true
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(6 + 2/12, "feet"),
  42056. weight: math.unit(284, "lb"),
  42057. name: "Front",
  42058. image: {
  42059. source: "./media/characters/benni-desparque/front.svg",
  42060. extra: 1353/1126,
  42061. bottom: 69/1422
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Civilian",
  42068. height: math.unit(6 + 2/12, "feet")
  42069. },
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(98, "feet"),
  42073. default: true
  42074. },
  42075. {
  42076. name: "Kaiju Fighter",
  42077. height: math.unit(268, "feet")
  42078. },
  42079. ]
  42080. ))
  42081. characterMakers.push(() => makeCharacter(
  42082. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42083. {
  42084. front: {
  42085. height: math.unit(5, "feet"),
  42086. weight: math.unit(105, "lb"),
  42087. name: "Front",
  42088. image: {
  42089. source: "./media/characters/maxine/front.svg",
  42090. extra: 1386/1250,
  42091. bottom: 71/1457
  42092. }
  42093. },
  42094. },
  42095. [
  42096. {
  42097. name: "Normal",
  42098. height: math.unit(5, "feet"),
  42099. default: true
  42100. },
  42101. ]
  42102. ))
  42103. characterMakers.push(() => makeCharacter(
  42104. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42105. {
  42106. front: {
  42107. height: math.unit(11 + 7/12, "feet"),
  42108. weight: math.unit(9576, "lb"),
  42109. name: "Front",
  42110. image: {
  42111. source: "./media/characters/scaly/front.svg",
  42112. extra: 888/867,
  42113. bottom: 36/924
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Normal",
  42120. height: math.unit(11 + 7/12, "feet"),
  42121. default: true
  42122. },
  42123. ]
  42124. ))
  42125. characterMakers.push(() => makeCharacter(
  42126. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42127. {
  42128. front: {
  42129. height: math.unit(6 + 3/12, "feet"),
  42130. name: "Front",
  42131. image: {
  42132. source: "./media/characters/saelria/front.svg",
  42133. extra: 1243/1138,
  42134. bottom: 46/1289
  42135. }
  42136. },
  42137. },
  42138. [
  42139. {
  42140. name: "Micro",
  42141. height: math.unit(6, "inches"),
  42142. },
  42143. {
  42144. name: "Normal",
  42145. height: math.unit(6 + 3/12, "feet"),
  42146. default: true
  42147. },
  42148. {
  42149. name: "Macro",
  42150. height: math.unit(25, "feet")
  42151. },
  42152. ]
  42153. ))
  42154. characterMakers.push(() => makeCharacter(
  42155. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42156. {
  42157. front: {
  42158. height: math.unit(80, "meters"),
  42159. weight: math.unit(7000, "tonnes"),
  42160. name: "Front",
  42161. image: {
  42162. source: "./media/characters/tef/front.svg",
  42163. extra: 2036/1991,
  42164. bottom: 54/2090
  42165. }
  42166. },
  42167. back: {
  42168. height: math.unit(80, "meters"),
  42169. weight: math.unit(7000, "tonnes"),
  42170. name: "Back",
  42171. image: {
  42172. source: "./media/characters/tef/back.svg",
  42173. extra: 2036/1991,
  42174. bottom: 54/2090
  42175. }
  42176. },
  42177. },
  42178. [
  42179. {
  42180. name: "Macro",
  42181. height: math.unit(80, "meters"),
  42182. default: true
  42183. },
  42184. ]
  42185. ))
  42186. characterMakers.push(() => makeCharacter(
  42187. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42188. {
  42189. front: {
  42190. height: math.unit(13, "feet"),
  42191. weight: math.unit(6, "tons"),
  42192. name: "Front",
  42193. image: {
  42194. source: "./media/characters/rover/front.svg",
  42195. extra: 1233/1156,
  42196. bottom: 50/1283
  42197. }
  42198. },
  42199. back: {
  42200. height: math.unit(13, "feet"),
  42201. weight: math.unit(6, "tons"),
  42202. name: "Back",
  42203. image: {
  42204. source: "./media/characters/rover/back.svg",
  42205. extra: 1327/1258,
  42206. bottom: 39/1366
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Normal",
  42213. height: math.unit(13, "feet"),
  42214. default: true
  42215. },
  42216. {
  42217. name: "Macro",
  42218. height: math.unit(1300, "feet")
  42219. },
  42220. {
  42221. name: "Megamacro",
  42222. height: math.unit(1300, "miles")
  42223. },
  42224. {
  42225. name: "Gigamacro",
  42226. height: math.unit(1300000, "miles")
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(6, "feet"),
  42235. weight: math.unit(150, "lb"),
  42236. name: "Front",
  42237. image: {
  42238. source: "./media/characters/ariz/front.svg",
  42239. extra: 1401/1346,
  42240. bottom: 5/1406
  42241. }
  42242. },
  42243. },
  42244. [
  42245. {
  42246. name: "Normal",
  42247. height: math.unit(10, "feet"),
  42248. default: true
  42249. },
  42250. ]
  42251. ))
  42252. characterMakers.push(() => makeCharacter(
  42253. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42254. {
  42255. front: {
  42256. height: math.unit(6, "feet"),
  42257. weight: math.unit(140, "lb"),
  42258. name: "Front",
  42259. image: {
  42260. source: "./media/characters/sigrun/front.svg",
  42261. extra: 1418/1359,
  42262. bottom: 27/1445
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Macro",
  42269. height: math.unit(35, "feet"),
  42270. default: true
  42271. },
  42272. ]
  42273. ))
  42274. characterMakers.push(() => makeCharacter(
  42275. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42276. {
  42277. front: {
  42278. height: math.unit(6, "feet"),
  42279. weight: math.unit(150, "lb"),
  42280. name: "Front",
  42281. image: {
  42282. source: "./media/characters/numin/front.svg",
  42283. extra: 1433/1388,
  42284. bottom: 12/1445
  42285. }
  42286. },
  42287. },
  42288. [
  42289. {
  42290. name: "Macro",
  42291. height: math.unit(21.5, "km"),
  42292. default: true
  42293. },
  42294. ]
  42295. ))
  42296. characterMakers.push(() => makeCharacter(
  42297. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42298. {
  42299. front: {
  42300. height: math.unit(6, "feet"),
  42301. weight: math.unit(463, "lb"),
  42302. name: "Front",
  42303. image: {
  42304. source: "./media/characters/melwa/front.svg",
  42305. extra: 1307/1248,
  42306. bottom: 93/1400
  42307. }
  42308. },
  42309. },
  42310. [
  42311. {
  42312. name: "Macro",
  42313. height: math.unit(50, "meters"),
  42314. default: true
  42315. },
  42316. ]
  42317. ))
  42318. characterMakers.push(() => makeCharacter(
  42319. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42320. {
  42321. front: {
  42322. height: math.unit(325, "feet"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/zorkaiju/front.svg",
  42326. extra: 1955/1814,
  42327. bottom: 40/1995
  42328. }
  42329. },
  42330. frontExtended: {
  42331. height: math.unit(325, "feet"),
  42332. name: "Front (Extended)",
  42333. image: {
  42334. source: "./media/characters/zorkaiju/front-extended.svg",
  42335. extra: 1955/1814,
  42336. bottom: 40/1995
  42337. }
  42338. },
  42339. side: {
  42340. height: math.unit(325, "feet"),
  42341. name: "Side",
  42342. image: {
  42343. source: "./media/characters/zorkaiju/side.svg",
  42344. extra: 1495/1396,
  42345. bottom: 17/1512
  42346. }
  42347. },
  42348. sideExtended: {
  42349. height: math.unit(325, "feet"),
  42350. name: "Side (Extended)",
  42351. image: {
  42352. source: "./media/characters/zorkaiju/side-extended.svg",
  42353. extra: 1495/1396,
  42354. bottom: 17/1512
  42355. }
  42356. },
  42357. back: {
  42358. height: math.unit(325, "feet"),
  42359. name: "Back",
  42360. image: {
  42361. source: "./media/characters/zorkaiju/back.svg",
  42362. extra: 1959/1821,
  42363. bottom: 31/1990
  42364. }
  42365. },
  42366. backExtended: {
  42367. height: math.unit(325, "feet"),
  42368. name: "Back (Extended)",
  42369. image: {
  42370. source: "./media/characters/zorkaiju/back-extended.svg",
  42371. extra: 1959/1821,
  42372. bottom: 31/1990
  42373. }
  42374. },
  42375. hand: {
  42376. height: math.unit(58.4, "feet"),
  42377. name: "Hand",
  42378. image: {
  42379. source: "./media/characters/zorkaiju/hand.svg"
  42380. }
  42381. },
  42382. handExtended: {
  42383. height: math.unit(61.4, "feet"),
  42384. name: "Hand (Extended)",
  42385. image: {
  42386. source: "./media/characters/zorkaiju/hand-extended.svg"
  42387. }
  42388. },
  42389. foot: {
  42390. height: math.unit(95, "feet"),
  42391. name: "Foot",
  42392. image: {
  42393. source: "./media/characters/zorkaiju/foot.svg"
  42394. }
  42395. },
  42396. leftArm: {
  42397. height: math.unit(59, "feet"),
  42398. name: "Left Arm",
  42399. image: {
  42400. source: "./media/characters/zorkaiju/left-arm.svg"
  42401. }
  42402. },
  42403. rightArm: {
  42404. height: math.unit(59, "feet"),
  42405. name: "Right Arm",
  42406. image: {
  42407. source: "./media/characters/zorkaiju/right-arm.svg"
  42408. }
  42409. },
  42410. leftArmExtended: {
  42411. height: math.unit(59 * 1.033546, "feet"),
  42412. name: "Left Arm (Extended)",
  42413. image: {
  42414. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42415. }
  42416. },
  42417. rightArmExtended: {
  42418. height: math.unit(59 * 1.0496, "feet"),
  42419. name: "Right Arm (Extended)",
  42420. image: {
  42421. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42422. }
  42423. },
  42424. tail: {
  42425. height: math.unit(104, "feet"),
  42426. name: "Tail",
  42427. image: {
  42428. source: "./media/characters/zorkaiju/tail.svg"
  42429. }
  42430. },
  42431. tailExtended: {
  42432. height: math.unit(104, "feet"),
  42433. name: "Tail (Extended)",
  42434. image: {
  42435. source: "./media/characters/zorkaiju/tail-extended.svg"
  42436. }
  42437. },
  42438. tailBottom: {
  42439. height: math.unit(104, "feet"),
  42440. name: "Tail Bottom",
  42441. image: {
  42442. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42443. }
  42444. },
  42445. crystal: {
  42446. height: math.unit(27.54, "feet"),
  42447. name: "Crystal",
  42448. image: {
  42449. source: "./media/characters/zorkaiju/crystal.svg"
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Kaiju",
  42456. height: math.unit(325, "feet"),
  42457. default: true
  42458. },
  42459. ]
  42460. ))
  42461. characterMakers.push(() => makeCharacter(
  42462. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42463. {
  42464. front: {
  42465. height: math.unit(6 + 1/12, "feet"),
  42466. weight: math.unit(115, "lb"),
  42467. name: "Front",
  42468. image: {
  42469. source: "./media/characters/bailey-belfry/front.svg",
  42470. extra: 1240/1121,
  42471. bottom: 101/1341
  42472. }
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Normal",
  42478. height: math.unit(6 + 1/12, "feet"),
  42479. default: true
  42480. },
  42481. ]
  42482. ))
  42483. characterMakers.push(() => makeCharacter(
  42484. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42485. {
  42486. side: {
  42487. height: math.unit(4, "meters"),
  42488. weight: math.unit(250, "kg"),
  42489. name: "Side",
  42490. image: {
  42491. source: "./media/characters/blacky/side.svg",
  42492. extra: 1027/919,
  42493. bottom: 43/1070
  42494. }
  42495. },
  42496. maw: {
  42497. height: math.unit(1, "meters"),
  42498. name: "Maw",
  42499. image: {
  42500. source: "./media/characters/blacky/maw.svg"
  42501. }
  42502. },
  42503. paw: {
  42504. height: math.unit(1, "meters"),
  42505. name: "Paw",
  42506. image: {
  42507. source: "./media/characters/blacky/paw.svg"
  42508. }
  42509. },
  42510. },
  42511. [
  42512. {
  42513. name: "Normal",
  42514. height: math.unit(4, "meters"),
  42515. default: true
  42516. },
  42517. ]
  42518. ))
  42519. characterMakers.push(() => makeCharacter(
  42520. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42521. {
  42522. front: {
  42523. height: math.unit(170, "cm"),
  42524. weight: math.unit(66, "kg"),
  42525. name: "Front",
  42526. image: {
  42527. source: "./media/characters/thux-ei/front.svg",
  42528. extra: 1109/1011,
  42529. bottom: 8/1117
  42530. }
  42531. },
  42532. },
  42533. [
  42534. {
  42535. name: "Normal",
  42536. height: math.unit(170, "cm"),
  42537. default: true
  42538. },
  42539. ]
  42540. ))
  42541. characterMakers.push(() => makeCharacter(
  42542. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42543. {
  42544. front: {
  42545. height: math.unit(5, "feet"),
  42546. weight: math.unit(120, "lb"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/roxanne-voltaire/front.svg",
  42550. extra: 1901/1779,
  42551. bottom: 53/1954
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(5, "feet"),
  42559. default: true
  42560. },
  42561. {
  42562. name: "Giant",
  42563. height: math.unit(50, "feet")
  42564. },
  42565. {
  42566. name: "Titan",
  42567. height: math.unit(500, "feet")
  42568. },
  42569. {
  42570. name: "Macro",
  42571. height: math.unit(5000, "feet")
  42572. },
  42573. {
  42574. name: "Megamacro",
  42575. height: math.unit(50000, "feet")
  42576. },
  42577. {
  42578. name: "Gigamacro",
  42579. height: math.unit(500000, "feet")
  42580. },
  42581. {
  42582. name: "Teramacro",
  42583. height: math.unit(5e6, "feet")
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(6 + 2/12, "feet"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/squeaks/front.svg",
  42595. extra: 1823/1768,
  42596. bottom: 138/1961
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Micro",
  42603. height: math.unit(0.5, "inches")
  42604. },
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(6 + 2/12, "feet"),
  42608. default: true
  42609. },
  42610. {
  42611. name: "Macro",
  42612. height: math.unit(600, "feet")
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42618. {
  42619. front: {
  42620. height: math.unit(1.72, "meters"),
  42621. name: "Front",
  42622. image: {
  42623. source: "./media/characters/archinger/front.svg",
  42624. extra: 1861/1675,
  42625. bottom: 125/1986
  42626. }
  42627. },
  42628. back: {
  42629. height: math.unit(1.72, "meters"),
  42630. name: "Back",
  42631. image: {
  42632. source: "./media/characters/archinger/back.svg",
  42633. extra: 1844/1701,
  42634. bottom: 104/1948
  42635. }
  42636. },
  42637. cock: {
  42638. height: math.unit(0.59, "feet"),
  42639. name: "Cock",
  42640. image: {
  42641. source: "./media/characters/archinger/cock.svg"
  42642. }
  42643. },
  42644. },
  42645. [
  42646. {
  42647. name: "Normal",
  42648. height: math.unit(1.72, "meters"),
  42649. default: true
  42650. },
  42651. {
  42652. name: "Macro",
  42653. height: math.unit(84, "meters")
  42654. },
  42655. {
  42656. name: "Macro+",
  42657. height: math.unit(112, "meters")
  42658. },
  42659. {
  42660. name: "Macro++",
  42661. height: math.unit(960, "meters")
  42662. },
  42663. {
  42664. name: "Macro+++",
  42665. height: math.unit(4, "km")
  42666. },
  42667. {
  42668. name: "Macro++++",
  42669. height: math.unit(48, "km")
  42670. },
  42671. {
  42672. name: "Macro+++++",
  42673. height: math.unit(4500, "km")
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(5 + 5/12, "feet"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/alsnapz/front.svg",
  42685. extra: 1157/1065,
  42686. bottom: 42/1199
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Normal",
  42693. height: math.unit(5 + 5/12, "feet"),
  42694. default: true
  42695. },
  42696. ]
  42697. ))
  42698. characterMakers.push(() => makeCharacter(
  42699. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42700. {
  42701. side: {
  42702. height: math.unit(3.2, "earths"),
  42703. name: "Side",
  42704. image: {
  42705. source: "./media/characters/mag/side.svg",
  42706. extra: 1331/1008,
  42707. bottom: 52/1383
  42708. }
  42709. },
  42710. wing: {
  42711. height: math.unit(1.94, "earths"),
  42712. name: "Wing",
  42713. image: {
  42714. source: "./media/characters/mag/wing.svg"
  42715. }
  42716. },
  42717. dick: {
  42718. height: math.unit(1.8, "earths"),
  42719. name: "Dick",
  42720. image: {
  42721. source: "./media/characters/mag/dick.svg"
  42722. }
  42723. },
  42724. ass: {
  42725. height: math.unit(1.33, "earths"),
  42726. name: "Ass",
  42727. image: {
  42728. source: "./media/characters/mag/ass.svg"
  42729. }
  42730. },
  42731. head: {
  42732. height: math.unit(1.1, "earths"),
  42733. name: "Head",
  42734. image: {
  42735. source: "./media/characters/mag/head.svg"
  42736. }
  42737. },
  42738. maw: {
  42739. height: math.unit(1.62, "earths"),
  42740. name: "Maw",
  42741. image: {
  42742. source: "./media/characters/mag/maw.svg"
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "Small",
  42749. height: math.unit(162, "feet")
  42750. },
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(3.2, "earths"),
  42754. default: true
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(512, "feet"),
  42763. weight: math.unit(63509, "tonnes"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/vorrel-harroc/front.svg",
  42767. extra: 1075/1063,
  42768. bottom: 62/1137
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Normal",
  42775. height: math.unit(10, "feet")
  42776. },
  42777. {
  42778. name: "Macro",
  42779. height: math.unit(512, "feet"),
  42780. default: true
  42781. },
  42782. {
  42783. name: "Megamacro",
  42784. height: math.unit(256, "miles")
  42785. },
  42786. {
  42787. name: "Gigamacro",
  42788. height: math.unit(4096, "miles")
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42794. {
  42795. side: {
  42796. height: math.unit(50, "feet"),
  42797. name: "Side",
  42798. image: {
  42799. source: "./media/characters/froimar/side.svg",
  42800. extra: 855/638,
  42801. bottom: 99/954
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Macro",
  42808. height: math.unit(50, "feet"),
  42809. default: true
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(210, "miles"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/timothy/front.svg",
  42821. extra: 1007/943,
  42822. bottom: 62/1069
  42823. }
  42824. },
  42825. frontSkirt: {
  42826. height: math.unit(210, "miles"),
  42827. name: "Front (Skirt)",
  42828. image: {
  42829. source: "./media/characters/timothy/front-skirt.svg",
  42830. extra: 1007/943,
  42831. bottom: 62/1069
  42832. }
  42833. },
  42834. frontCoat: {
  42835. height: math.unit(210, "miles"),
  42836. name: "Front (Coat)",
  42837. image: {
  42838. source: "./media/characters/timothy/front-coat.svg",
  42839. extra: 1007/943,
  42840. bottom: 62/1069
  42841. }
  42842. },
  42843. },
  42844. [
  42845. {
  42846. name: "Macro",
  42847. height: math.unit(210, "miles"),
  42848. default: true
  42849. },
  42850. {
  42851. name: "Megamacro",
  42852. height: math.unit(210000, "miles")
  42853. },
  42854. ]
  42855. ))
  42856. characterMakers.push(() => makeCharacter(
  42857. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42858. {
  42859. front: {
  42860. height: math.unit(188, "feet"),
  42861. name: "Front",
  42862. image: {
  42863. source: "./media/characters/pyotr/front.svg",
  42864. extra: 1912/1826,
  42865. bottom: 18/1930
  42866. }
  42867. },
  42868. },
  42869. [
  42870. {
  42871. name: "Macro",
  42872. height: math.unit(188, "feet"),
  42873. default: true
  42874. },
  42875. {
  42876. name: "Megamacro",
  42877. height: math.unit(8, "miles")
  42878. },
  42879. ]
  42880. ))
  42881. characterMakers.push(() => makeCharacter(
  42882. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42883. {
  42884. side: {
  42885. height: math.unit(10, "feet"),
  42886. weight: math.unit(4500, "lb"),
  42887. name: "Side",
  42888. image: {
  42889. source: "./media/characters/ackart/side.svg",
  42890. extra: 1776/1668,
  42891. bottom: 116/1892
  42892. }
  42893. },
  42894. },
  42895. [
  42896. {
  42897. name: "Normal",
  42898. height: math.unit(10, "feet"),
  42899. default: true
  42900. },
  42901. ]
  42902. ))
  42903. characterMakers.push(() => makeCharacter(
  42904. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42905. {
  42906. side: {
  42907. height: math.unit(21, "feet"),
  42908. name: "Side",
  42909. image: {
  42910. source: "./media/characters/nolow/side.svg",
  42911. extra: 1484/1434,
  42912. bottom: 85/1569
  42913. }
  42914. },
  42915. sideErect: {
  42916. height: math.unit(21, "feet"),
  42917. name: "Side-erect",
  42918. image: {
  42919. source: "./media/characters/nolow/side-erect.svg",
  42920. extra: 1484/1434,
  42921. bottom: 85/1569
  42922. }
  42923. },
  42924. },
  42925. [
  42926. {
  42927. name: "Regular",
  42928. height: math.unit(12, "feet")
  42929. },
  42930. {
  42931. name: "Big Chee",
  42932. height: math.unit(21, "feet"),
  42933. default: true
  42934. },
  42935. ]
  42936. ))
  42937. characterMakers.push(() => makeCharacter(
  42938. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42939. {
  42940. front: {
  42941. height: math.unit(7, "feet"),
  42942. weight: math.unit(250, "lb"),
  42943. name: "Front",
  42944. image: {
  42945. source: "./media/characters/nines/front.svg",
  42946. extra: 1741/1607,
  42947. bottom: 41/1782
  42948. }
  42949. },
  42950. side: {
  42951. height: math.unit(7, "feet"),
  42952. weight: math.unit(250, "lb"),
  42953. name: "Side",
  42954. image: {
  42955. source: "./media/characters/nines/side.svg",
  42956. extra: 1854/1735,
  42957. bottom: 93/1947
  42958. }
  42959. },
  42960. back: {
  42961. height: math.unit(7, "feet"),
  42962. weight: math.unit(250, "lb"),
  42963. name: "Back",
  42964. image: {
  42965. source: "./media/characters/nines/back.svg",
  42966. extra: 1748/1615,
  42967. bottom: 20/1768
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Megamacro",
  42974. height: math.unit(99, "km"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42981. {
  42982. front: {
  42983. height: math.unit(5 + 10/12, "feet"),
  42984. weight: math.unit(210, "lb"),
  42985. name: "Front",
  42986. image: {
  42987. source: "./media/characters/zenith/front.svg",
  42988. extra: 1531/1452,
  42989. bottom: 198/1729
  42990. }
  42991. },
  42992. back: {
  42993. height: math.unit(5 + 10/12, "feet"),
  42994. weight: math.unit(210, "lb"),
  42995. name: "Back",
  42996. image: {
  42997. source: "./media/characters/zenith/back.svg",
  42998. extra: 1571/1487,
  42999. bottom: 75/1646
  43000. }
  43001. },
  43002. },
  43003. [
  43004. {
  43005. name: "Normal",
  43006. height: math.unit(5 + 10/12, "feet"),
  43007. default: true
  43008. }
  43009. ]
  43010. ))
  43011. characterMakers.push(() => makeCharacter(
  43012. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43013. {
  43014. front: {
  43015. height: math.unit(4, "feet"),
  43016. weight: math.unit(60, "lb"),
  43017. name: "Front",
  43018. image: {
  43019. source: "./media/characters/jasper/front.svg",
  43020. extra: 1450/1379,
  43021. bottom: 19/1469
  43022. }
  43023. },
  43024. },
  43025. [
  43026. {
  43027. name: "Normal",
  43028. height: math.unit(4, "feet"),
  43029. default: true
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43035. {
  43036. front: {
  43037. height: math.unit(6 + 5/12, "feet"),
  43038. weight: math.unit(290, "lb"),
  43039. name: "Front",
  43040. image: {
  43041. source: "./media/characters/tiberius-thyben/front.svg",
  43042. extra: 757/739,
  43043. bottom: 39/796
  43044. }
  43045. },
  43046. },
  43047. [
  43048. {
  43049. name: "Micro",
  43050. height: math.unit(1.5, "inches")
  43051. },
  43052. {
  43053. name: "Normal",
  43054. height: math.unit(6 + 5/12, "feet"),
  43055. default: true
  43056. },
  43057. {
  43058. name: "Macro",
  43059. height: math.unit(300, "feet")
  43060. },
  43061. ]
  43062. ))
  43063. characterMakers.push(() => makeCharacter(
  43064. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43065. {
  43066. front: {
  43067. height: math.unit(5 + 6/12, "feet"),
  43068. weight: math.unit(60, "kg"),
  43069. name: "Front",
  43070. image: {
  43071. source: "./media/characters/sabre/front.svg",
  43072. extra: 738/671,
  43073. bottom: 27/765
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Teeny",
  43080. height: math.unit(2, "inches")
  43081. },
  43082. {
  43083. name: "Smol",
  43084. height: math.unit(8, "inches")
  43085. },
  43086. {
  43087. name: "Normal",
  43088. height: math.unit(5 + 6/12, "feet"),
  43089. default: true
  43090. },
  43091. {
  43092. name: "Mini-Macro",
  43093. height: math.unit(15, "feet")
  43094. },
  43095. {
  43096. name: "Macro",
  43097. height: math.unit(50, "feet")
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43103. {
  43104. front: {
  43105. height: math.unit(6 + 4/12, "feet"),
  43106. weight: math.unit(170, "lb"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/charlie/front.svg",
  43110. extra: 1348/1228,
  43111. bottom: 15/1363
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Macro",
  43118. height: math.unit(1700, "meters"),
  43119. default: true
  43120. },
  43121. {
  43122. name: "MegaMacro",
  43123. height: math.unit(20400, "meters")
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(6 + 3/12, "feet"),
  43132. weight: math.unit(185, "lb"),
  43133. name: "Front",
  43134. image: {
  43135. source: "./media/characters/susan-grant/front.svg",
  43136. extra: 1351/1327,
  43137. bottom: 26/1377
  43138. }
  43139. },
  43140. },
  43141. [
  43142. {
  43143. name: "Normal",
  43144. height: math.unit(6 + 3/12, "feet"),
  43145. default: true
  43146. },
  43147. {
  43148. name: "Macro",
  43149. height: math.unit(225, "feet")
  43150. },
  43151. {
  43152. name: "Macro+",
  43153. height: math.unit(900, "feet")
  43154. },
  43155. {
  43156. name: "MegaMacro",
  43157. height: math.unit(14400, "feet")
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(5 + 4/12, "feet"),
  43166. weight: math.unit(110, "lb"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/axel-isanov/front.svg",
  43170. extra: 1096/1065,
  43171. bottom: 13/1109
  43172. }
  43173. },
  43174. },
  43175. [
  43176. {
  43177. name: "Normal",
  43178. height: math.unit(5 + 4/12, "feet"),
  43179. default: true
  43180. },
  43181. ]
  43182. ))
  43183. characterMakers.push(() => makeCharacter(
  43184. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43185. {
  43186. front: {
  43187. height: math.unit(9, "feet"),
  43188. weight: math.unit(467, "lb"),
  43189. name: "Front",
  43190. image: {
  43191. source: "./media/characters/necahual/front.svg",
  43192. extra: 920/873,
  43193. bottom: 26/946
  43194. }
  43195. },
  43196. back: {
  43197. height: math.unit(9, "feet"),
  43198. weight: math.unit(467, "lb"),
  43199. name: "Back",
  43200. image: {
  43201. source: "./media/characters/necahual/back.svg",
  43202. extra: 930/884,
  43203. bottom: 16/946
  43204. }
  43205. },
  43206. frontUnderwear: {
  43207. height: math.unit(9, "feet"),
  43208. weight: math.unit(467, "lb"),
  43209. name: "Front (Underwear)",
  43210. image: {
  43211. source: "./media/characters/necahual/front-underwear.svg",
  43212. extra: 920/873,
  43213. bottom: 26/946
  43214. }
  43215. },
  43216. frontDressed: {
  43217. height: math.unit(9, "feet"),
  43218. weight: math.unit(467, "lb"),
  43219. name: "Front (Dressed)",
  43220. image: {
  43221. source: "./media/characters/necahual/front-dressed.svg",
  43222. extra: 920/873,
  43223. bottom: 26/946
  43224. }
  43225. },
  43226. },
  43227. [
  43228. {
  43229. name: "Comprsesed",
  43230. height: math.unit(9, "feet")
  43231. },
  43232. {
  43233. name: "Natural",
  43234. height: math.unit(15, "feet"),
  43235. default: true
  43236. },
  43237. {
  43238. name: "Boosted",
  43239. height: math.unit(50, "feet")
  43240. },
  43241. {
  43242. name: "Boosted+",
  43243. height: math.unit(150, "feet")
  43244. },
  43245. {
  43246. name: "Max",
  43247. height: math.unit(500, "feet")
  43248. },
  43249. ]
  43250. ))
  43251. characterMakers.push(() => makeCharacter(
  43252. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43253. {
  43254. front: {
  43255. height: math.unit(22 + 1/12, "feet"),
  43256. weight: math.unit(3200, "lb"),
  43257. name: "Front",
  43258. image: {
  43259. source: "./media/characters/theo-acacia/front.svg",
  43260. extra: 1796/1741,
  43261. bottom: 83/1879
  43262. }
  43263. },
  43264. frontUnderwear: {
  43265. height: math.unit(22 + 1/12, "feet"),
  43266. weight: math.unit(3200, "lb"),
  43267. name: "Front (Underwear)",
  43268. image: {
  43269. source: "./media/characters/theo-acacia/front-underwear.svg",
  43270. extra: 1796/1741,
  43271. bottom: 83/1879
  43272. }
  43273. },
  43274. frontNude: {
  43275. height: math.unit(22 + 1/12, "feet"),
  43276. weight: math.unit(3200, "lb"),
  43277. name: "Front (Nude)",
  43278. image: {
  43279. source: "./media/characters/theo-acacia/front-nude.svg",
  43280. extra: 1796/1741,
  43281. bottom: 83/1879
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Normal",
  43288. height: math.unit(22 + 1/12, "feet"),
  43289. default: true
  43290. },
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43295. {
  43296. front: {
  43297. height: math.unit(20, "feet"),
  43298. name: "Front",
  43299. image: {
  43300. source: "./media/characters/astra/front.svg",
  43301. extra: 1850/1714,
  43302. bottom: 106/1956
  43303. }
  43304. },
  43305. frontUndressed: {
  43306. height: math.unit(20, "feet"),
  43307. name: "Front (Undressed)",
  43308. image: {
  43309. source: "./media/characters/astra/front-undressed.svg",
  43310. extra: 1926/1749,
  43311. bottom: 0/1926
  43312. }
  43313. },
  43314. hand: {
  43315. height: math.unit(1.53, "feet"),
  43316. name: "Hand",
  43317. image: {
  43318. source: "./media/characters/astra/hand.svg"
  43319. }
  43320. },
  43321. paw: {
  43322. height: math.unit(1.53, "feet"),
  43323. name: "Paw",
  43324. image: {
  43325. source: "./media/characters/astra/paw.svg"
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Smallest",
  43332. height: math.unit(20, "feet")
  43333. },
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(1e9, "miles"),
  43337. default: true
  43338. },
  43339. {
  43340. name: "Larger",
  43341. height: math.unit(5, "multiverses")
  43342. },
  43343. {
  43344. name: "Largest",
  43345. height: math.unit(1e9, "multiverses")
  43346. },
  43347. ]
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43351. {
  43352. front: {
  43353. height: math.unit(8, "feet"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/breanna/front.svg",
  43357. extra: 1912/1632,
  43358. bottom: 33/1945
  43359. }
  43360. },
  43361. },
  43362. [
  43363. {
  43364. name: "Smallest",
  43365. height: math.unit(8, "feet")
  43366. },
  43367. {
  43368. name: "Normal",
  43369. height: math.unit(1, "mile"),
  43370. default: true
  43371. },
  43372. {
  43373. name: "Maximum",
  43374. height: math.unit(1500000000000, "lightyears")
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43380. {
  43381. front: {
  43382. height: math.unit(5 + 11/12, "feet"),
  43383. weight: math.unit(155, "lb"),
  43384. name: "Front",
  43385. image: {
  43386. source: "./media/characters/cai/front.svg",
  43387. extra: 1823/1702,
  43388. bottom: 32/1855
  43389. }
  43390. },
  43391. back: {
  43392. height: math.unit(5 + 11/12, "feet"),
  43393. weight: math.unit(155, "lb"),
  43394. name: "Back",
  43395. image: {
  43396. source: "./media/characters/cai/back.svg",
  43397. extra: 1809/1708,
  43398. bottom: 31/1840
  43399. }
  43400. },
  43401. },
  43402. [
  43403. {
  43404. name: "Normal",
  43405. height: math.unit(5 + 11/12, "feet"),
  43406. default: true
  43407. },
  43408. {
  43409. name: "Big",
  43410. height: math.unit(15, "feet")
  43411. },
  43412. {
  43413. name: "Macro",
  43414. height: math.unit(200, "feet")
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43420. {
  43421. front: {
  43422. height: math.unit(5 + 6/12, "feet"),
  43423. weight: math.unit(160, "lb"),
  43424. name: "Front",
  43425. image: {
  43426. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43427. extra: 1227/1174,
  43428. bottom: 37/1264
  43429. }
  43430. },
  43431. },
  43432. [
  43433. {
  43434. name: "Macro",
  43435. height: math.unit(444, "meters"),
  43436. default: true
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43442. {
  43443. front: {
  43444. height: math.unit(18 + 7/12, "feet"),
  43445. name: "Front",
  43446. image: {
  43447. source: "./media/characters/rex/front.svg",
  43448. extra: 1941/1807,
  43449. bottom: 66/2007
  43450. }
  43451. },
  43452. back: {
  43453. height: math.unit(18 + 7/12, "feet"),
  43454. name: "Back",
  43455. image: {
  43456. source: "./media/characters/rex/back.svg",
  43457. extra: 1937/1822,
  43458. bottom: 42/1979
  43459. }
  43460. },
  43461. boot: {
  43462. height: math.unit(3.45, "feet"),
  43463. name: "Boot",
  43464. image: {
  43465. source: "./media/characters/rex/boot.svg"
  43466. }
  43467. },
  43468. paw: {
  43469. height: math.unit(4.17, "feet"),
  43470. name: "Paw",
  43471. image: {
  43472. source: "./media/characters/rex/paw.svg"
  43473. }
  43474. },
  43475. head: {
  43476. height: math.unit(6.728, "feet"),
  43477. name: "Head",
  43478. image: {
  43479. source: "./media/characters/rex/head.svg"
  43480. }
  43481. },
  43482. },
  43483. [
  43484. {
  43485. name: "Nano",
  43486. height: math.unit(18 + 7/12, "feet")
  43487. },
  43488. {
  43489. name: "Micro",
  43490. height: math.unit(1.5, "megameters")
  43491. },
  43492. {
  43493. name: "Normal",
  43494. height: math.unit(440, "megameters"),
  43495. default: true
  43496. },
  43497. {
  43498. name: "Macro",
  43499. height: math.unit(2.5, "gigameters")
  43500. },
  43501. {
  43502. name: "Gigamacro",
  43503. height: math.unit(2, "galaxies")
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43509. {
  43510. side: {
  43511. height: math.unit(32, "feet"),
  43512. weight: math.unit(250000, "lb"),
  43513. name: "Side",
  43514. image: {
  43515. source: "./media/characters/silverwing/side.svg",
  43516. extra: 1100/1019,
  43517. bottom: 204/1304
  43518. }
  43519. },
  43520. },
  43521. [
  43522. {
  43523. name: "Normal",
  43524. height: math.unit(32, "feet"),
  43525. default: true
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43531. {
  43532. front: {
  43533. height: math.unit(6 + 6/12, "feet"),
  43534. weight: math.unit(350, "lb"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/tristan-hawthorne/front.svg",
  43538. extra: 1159/1124,
  43539. bottom: 37/1196
  43540. },
  43541. form: "labrador",
  43542. default: true
  43543. },
  43544. skunkFront: {
  43545. height: math.unit(4 + 6/12, "feet"),
  43546. weight: math.unit(120, "lb"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43550. extra: 1609/1551,
  43551. bottom: 169/1778
  43552. },
  43553. form: "skunk",
  43554. default: true
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Normal",
  43560. height: math.unit(6 + 6/12, "feet"),
  43561. form: "labrador",
  43562. default: true
  43563. },
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(4 + 6/12, "feet"),
  43567. form: "skunk",
  43568. default: true
  43569. },
  43570. ],
  43571. {
  43572. "labrador": {
  43573. name: "Labrador",
  43574. default: true
  43575. },
  43576. "skunk": {
  43577. name: "Skunk"
  43578. }
  43579. }
  43580. ))
  43581. characterMakers.push(() => makeCharacter(
  43582. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43583. {
  43584. front: {
  43585. height: math.unit(5 + 11/12, "feet"),
  43586. weight: math.unit(190, "lb"),
  43587. name: "Front",
  43588. image: {
  43589. source: "./media/characters/mizu/front.svg",
  43590. extra: 1988/1788,
  43591. bottom: 14/2002
  43592. }
  43593. },
  43594. },
  43595. [
  43596. {
  43597. name: "Normal",
  43598. height: math.unit(5 + 11/12, "feet"),
  43599. default: true
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43605. {
  43606. front: {
  43607. height: math.unit(1.7, "feet"),
  43608. weight: math.unit(50, "lb"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/dechroma/front.svg",
  43612. extra: 1095/859,
  43613. bottom: 64/1159
  43614. }
  43615. },
  43616. },
  43617. [
  43618. {
  43619. name: "Normal",
  43620. height: math.unit(1.7, "feet"),
  43621. default: true
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43627. {
  43628. side: {
  43629. height: math.unit(30, "feet"),
  43630. name: "Side",
  43631. image: {
  43632. source: "./media/characters/veluren-thanazel/side.svg",
  43633. extra: 1611/633,
  43634. bottom: 118/1729
  43635. }
  43636. },
  43637. front: {
  43638. height: math.unit(30, "feet"),
  43639. name: "Front",
  43640. image: {
  43641. source: "./media/characters/veluren-thanazel/front.svg",
  43642. extra: 1486/636,
  43643. bottom: 238/1724
  43644. }
  43645. },
  43646. head: {
  43647. height: math.unit(21.4, "feet"),
  43648. name: "Head",
  43649. image: {
  43650. source: "./media/characters/veluren-thanazel/head.svg"
  43651. }
  43652. },
  43653. genitals: {
  43654. height: math.unit(19.4, "feet"),
  43655. name: "Genitals",
  43656. image: {
  43657. source: "./media/characters/veluren-thanazel/genitals.svg"
  43658. }
  43659. },
  43660. },
  43661. [
  43662. {
  43663. name: "Social",
  43664. height: math.unit(6, "feet")
  43665. },
  43666. {
  43667. name: "Play",
  43668. height: math.unit(12, "feet")
  43669. },
  43670. {
  43671. name: "True",
  43672. height: math.unit(30, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(7 + 6/12, "feet"),
  43682. weight: math.unit(500, "kg"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/arcturas/front.svg",
  43686. extra: 1700/1500,
  43687. bottom: 145/1845
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(7 + 6/12, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43701. {
  43702. side: {
  43703. height: math.unit(6, "feet"),
  43704. weight: math.unit(2, "tons"),
  43705. name: "Side",
  43706. image: {
  43707. source: "./media/characters/vitaen/side.svg",
  43708. extra: 1157/617,
  43709. bottom: 122/1279
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Normal",
  43716. height: math.unit(6, "feet"),
  43717. default: true
  43718. },
  43719. ]
  43720. ))
  43721. characterMakers.push(() => makeCharacter(
  43722. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43723. {
  43724. front: {
  43725. height: math.unit(19, "feet"),
  43726. name: "Front",
  43727. image: {
  43728. source: "./media/characters/fia-dreamweaver/front.svg",
  43729. extra: 1630/1504,
  43730. bottom: 25/1655
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Normal",
  43737. height: math.unit(19, "feet"),
  43738. default: true
  43739. },
  43740. ]
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43744. {
  43745. front: {
  43746. height: math.unit(5 + 4/12, "feet"),
  43747. name: "Front",
  43748. image: {
  43749. source: "./media/characters/artan/front.svg",
  43750. extra: 1618/1535,
  43751. bottom: 46/1664
  43752. }
  43753. },
  43754. back: {
  43755. height: math.unit(5 + 4/12, "feet"),
  43756. name: "Back",
  43757. image: {
  43758. source: "./media/characters/artan/back.svg",
  43759. extra: 1618/1543,
  43760. bottom: 31/1649
  43761. }
  43762. },
  43763. },
  43764. [
  43765. {
  43766. name: "Normal",
  43767. height: math.unit(5 + 4/12, "feet"),
  43768. default: true
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43774. {
  43775. side: {
  43776. height: math.unit(182, "cm"),
  43777. weight: math.unit(1000, "lb"),
  43778. name: "Side",
  43779. image: {
  43780. source: "./media/characters/silver-dragon/side.svg",
  43781. extra: 710/287,
  43782. bottom: 88/798
  43783. }
  43784. },
  43785. },
  43786. [
  43787. {
  43788. name: "Normal",
  43789. height: math.unit(182, "cm"),
  43790. default: true
  43791. },
  43792. ]
  43793. ))
  43794. characterMakers.push(() => makeCharacter(
  43795. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43796. {
  43797. side: {
  43798. height: math.unit(6 + 6/12, "feet"),
  43799. weight: math.unit(1.5, "tons"),
  43800. name: "Side",
  43801. image: {
  43802. source: "./media/characters/zephyr/side.svg",
  43803. extra: 1433/586,
  43804. bottom: 109/1542
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Normal",
  43811. height: math.unit(6 + 6/12, "feet"),
  43812. default: true
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43818. {
  43819. side: {
  43820. height: math.unit(1, "feet"),
  43821. name: "Side",
  43822. image: {
  43823. source: "./media/characters/vixye/side.svg",
  43824. extra: 632/541,
  43825. bottom: 0/632
  43826. }
  43827. },
  43828. },
  43829. [
  43830. {
  43831. name: "Normal",
  43832. height: math.unit(1, "feet"),
  43833. default: true
  43834. },
  43835. {
  43836. name: "True",
  43837. height: math.unit(1e15, "multiverses")
  43838. },
  43839. ]
  43840. ))
  43841. characterMakers.push(() => makeCharacter(
  43842. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43843. {
  43844. front: {
  43845. height: math.unit(8 + 2/12, "feet"),
  43846. weight: math.unit(650, "lb"),
  43847. name: "Front",
  43848. image: {
  43849. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43850. extra: 1174/1137,
  43851. bottom: 82/1256
  43852. }
  43853. },
  43854. back: {
  43855. height: math.unit(8 + 2/12, "feet"),
  43856. weight: math.unit(650, "lb"),
  43857. name: "Back",
  43858. image: {
  43859. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43860. extra: 1204/1157,
  43861. bottom: 46/1250
  43862. }
  43863. },
  43864. },
  43865. [
  43866. {
  43867. name: "Wildform",
  43868. height: math.unit(8 + 2/12, "feet"),
  43869. default: true
  43870. },
  43871. ]
  43872. ))
  43873. characterMakers.push(() => makeCharacter(
  43874. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43875. {
  43876. front: {
  43877. height: math.unit(18, "feet"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/cyphin/front.svg",
  43881. extra: 970/886,
  43882. bottom: 42/1012
  43883. }
  43884. },
  43885. back: {
  43886. height: math.unit(18, "feet"),
  43887. name: "Back",
  43888. image: {
  43889. source: "./media/characters/cyphin/back.svg",
  43890. extra: 1009/894,
  43891. bottom: 24/1033
  43892. }
  43893. },
  43894. head: {
  43895. height: math.unit(5.05, "feet"),
  43896. name: "Head",
  43897. image: {
  43898. source: "./media/characters/cyphin/head.svg"
  43899. }
  43900. },
  43901. tailbud: {
  43902. height: math.unit(5, "feet"),
  43903. name: "Tailbud",
  43904. image: {
  43905. source: "./media/characters/cyphin/tailbud.svg"
  43906. }
  43907. },
  43908. },
  43909. [
  43910. ]
  43911. ))
  43912. characterMakers.push(() => makeCharacter(
  43913. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43914. {
  43915. side: {
  43916. height: math.unit(10, "feet"),
  43917. weight: math.unit(6, "tons"),
  43918. name: "Side",
  43919. image: {
  43920. source: "./media/characters/raijin/side.svg",
  43921. extra: 1529/613,
  43922. bottom: 337/1866
  43923. }
  43924. },
  43925. },
  43926. [
  43927. {
  43928. name: "Normal",
  43929. height: math.unit(10, "feet"),
  43930. default: true
  43931. },
  43932. ]
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43936. {
  43937. side: {
  43938. height: math.unit(9, "feet"),
  43939. name: "Side",
  43940. image: {
  43941. source: "./media/characters/nilghais/side.svg",
  43942. extra: 1047/744,
  43943. bottom: 91/1138
  43944. }
  43945. },
  43946. head: {
  43947. height: math.unit(3.14, "feet"),
  43948. name: "Head",
  43949. image: {
  43950. source: "./media/characters/nilghais/head.svg"
  43951. }
  43952. },
  43953. mouth: {
  43954. height: math.unit(4.6, "feet"),
  43955. name: "Mouth",
  43956. image: {
  43957. source: "./media/characters/nilghais/mouth.svg"
  43958. }
  43959. },
  43960. wings: {
  43961. height: math.unit(24, "feet"),
  43962. name: "Wings",
  43963. image: {
  43964. source: "./media/characters/nilghais/wings.svg"
  43965. }
  43966. },
  43967. ass: {
  43968. height: math.unit(6.12, "feet"),
  43969. name: "Ass",
  43970. image: {
  43971. source: "./media/characters/nilghais/ass.svg"
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Normal",
  43978. height: math.unit(9, "feet"),
  43979. default: true
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43985. {
  43986. regular: {
  43987. height: math.unit(16 + 2/12, "feet"),
  43988. weight: math.unit(2300, "lb"),
  43989. name: "Regular",
  43990. image: {
  43991. source: "./media/characters/zolgar/regular.svg",
  43992. extra: 1246/1004,
  43993. bottom: 124/1370
  43994. }
  43995. },
  43996. boxers: {
  43997. height: math.unit(16 + 2/12, "feet"),
  43998. weight: math.unit(2300, "lb"),
  43999. name: "Boxers",
  44000. image: {
  44001. source: "./media/characters/zolgar/boxers.svg",
  44002. extra: 1246/1004,
  44003. bottom: 124/1370
  44004. }
  44005. },
  44006. armored: {
  44007. height: math.unit(16 + 2/12, "feet"),
  44008. weight: math.unit(2300, "lb"),
  44009. name: "Armored",
  44010. image: {
  44011. source: "./media/characters/zolgar/armored.svg",
  44012. extra: 1246/1004,
  44013. bottom: 124/1370
  44014. }
  44015. },
  44016. goth: {
  44017. height: math.unit(16 + 2/12, "feet"),
  44018. weight: math.unit(2300, "lb"),
  44019. name: "Goth",
  44020. image: {
  44021. source: "./media/characters/zolgar/goth.svg",
  44022. extra: 1246/1004,
  44023. bottom: 124/1370
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Shrunken Down",
  44030. height: math.unit(9 + 2/12, "feet")
  44031. },
  44032. {
  44033. name: "Normal",
  44034. height: math.unit(16 + 2/12, "feet"),
  44035. default: true
  44036. },
  44037. ]
  44038. ))
  44039. characterMakers.push(() => makeCharacter(
  44040. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44041. {
  44042. front: {
  44043. height: math.unit(6, "feet"),
  44044. weight: math.unit(168, "lb"),
  44045. name: "Front",
  44046. image: {
  44047. source: "./media/characters/luca/front.svg",
  44048. extra: 841/667,
  44049. bottom: 102/943
  44050. }
  44051. },
  44052. },
  44053. [
  44054. {
  44055. name: "Normal",
  44056. height: math.unit(6, "feet"),
  44057. default: true
  44058. },
  44059. ]
  44060. ))
  44061. characterMakers.push(() => makeCharacter(
  44062. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44063. {
  44064. side: {
  44065. height: math.unit(7 + 3/12, "feet"),
  44066. weight: math.unit(312, "lb"),
  44067. name: "Side",
  44068. image: {
  44069. source: "./media/characters/zezo/side.svg",
  44070. extra: 1192/1067,
  44071. bottom: 63/1255
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(7 + 3/12, "feet"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(5 + 5/12, "feet"),
  44088. weight: math.unit(170, "lb"),
  44089. name: "Front",
  44090. image: {
  44091. source: "./media/characters/mayso/front.svg",
  44092. extra: 1215/1108,
  44093. bottom: 16/1231
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(5 + 5/12, "feet"),
  44101. default: true
  44102. },
  44103. ]
  44104. ))
  44105. characterMakers.push(() => makeCharacter(
  44106. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44107. {
  44108. front: {
  44109. height: math.unit(4 + 3/12, "feet"),
  44110. weight: math.unit(80, "lb"),
  44111. name: "Front",
  44112. image: {
  44113. source: "./media/characters/hess/front.svg",
  44114. extra: 1200/1123,
  44115. bottom: 16/1216
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(4 + 3/12, "feet"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44129. {
  44130. front: {
  44131. height: math.unit(1.9, "meters"),
  44132. name: "Front",
  44133. image: {
  44134. source: "./media/characters/ashgar/front.svg",
  44135. extra: 1177/1146,
  44136. bottom: 99/1276
  44137. }
  44138. },
  44139. back: {
  44140. height: math.unit(1.9, "meters"),
  44141. name: "Back",
  44142. image: {
  44143. source: "./media/characters/ashgar/back.svg",
  44144. extra: 1201/1183,
  44145. bottom: 53/1254
  44146. }
  44147. },
  44148. feral: {
  44149. height: math.unit(1.4, "meters"),
  44150. name: "Feral",
  44151. image: {
  44152. source: "./media/characters/ashgar/feral.svg",
  44153. extra: 370/345,
  44154. bottom: 45/415
  44155. }
  44156. },
  44157. },
  44158. [
  44159. {
  44160. name: "Normal",
  44161. height: math.unit(1.9, "meters"),
  44162. default: true
  44163. },
  44164. ]
  44165. ))
  44166. characterMakers.push(() => makeCharacter(
  44167. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44168. {
  44169. regular: {
  44170. height: math.unit(6, "feet"),
  44171. weight: math.unit(220, "lb"),
  44172. name: "Regular",
  44173. image: {
  44174. source: "./media/characters/phillip/regular.svg",
  44175. extra: 1373/1277,
  44176. bottom: 75/1448
  44177. }
  44178. },
  44179. dressed: {
  44180. height: math.unit(6, "feet"),
  44181. weight: math.unit(220, "lb"),
  44182. name: "Dressed",
  44183. image: {
  44184. source: "./media/characters/phillip/dressed.svg",
  44185. extra: 1373/1277,
  44186. bottom: 75/1448
  44187. }
  44188. },
  44189. paw: {
  44190. height: math.unit(1.44, "feet"),
  44191. name: "Paw",
  44192. image: {
  44193. source: "./media/characters/phillip/paw.svg"
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(6, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44207. {
  44208. side: {
  44209. height: math.unit(42, "feet"),
  44210. name: "Side",
  44211. image: {
  44212. source: "./media/characters/uvula/side.svg",
  44213. extra: 683/586,
  44214. bottom: 60/743
  44215. }
  44216. },
  44217. front: {
  44218. height: math.unit(42, "feet"),
  44219. name: "Front",
  44220. image: {
  44221. source: "./media/characters/uvula/front.svg",
  44222. extra: 705/613,
  44223. bottom: 54/759
  44224. }
  44225. },
  44226. maw: {
  44227. height: math.unit(23.5, "feet"),
  44228. name: "Maw",
  44229. image: {
  44230. source: "./media/characters/uvula/maw.svg"
  44231. }
  44232. },
  44233. },
  44234. [
  44235. {
  44236. name: "Original Size",
  44237. height: math.unit(14, "inches")
  44238. },
  44239. {
  44240. name: "Human Size",
  44241. height: math.unit(6, "feet")
  44242. },
  44243. {
  44244. name: "Big",
  44245. height: math.unit(42, "feet"),
  44246. default: true
  44247. },
  44248. {
  44249. name: "Bigger",
  44250. height: math.unit(100, "feet")
  44251. },
  44252. ]
  44253. ))
  44254. characterMakers.push(() => makeCharacter(
  44255. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44256. {
  44257. front: {
  44258. height: math.unit(5 + 11/12, "feet"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/lannah/front.svg",
  44262. extra: 1208/1113,
  44263. bottom: 97/1305
  44264. }
  44265. },
  44266. },
  44267. [
  44268. {
  44269. name: "Normal",
  44270. height: math.unit(5 + 11/12, "feet"),
  44271. default: true
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44277. {
  44278. front: {
  44279. height: math.unit(6 + 3/12, "feet"),
  44280. weight: math.unit(3.5, "tons"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/emberflame/front.svg",
  44284. extra: 1198/672,
  44285. bottom: 82/1280
  44286. }
  44287. },
  44288. side: {
  44289. height: math.unit(6 + 3/12, "feet"),
  44290. weight: math.unit(3.5, "tons"),
  44291. name: "Side",
  44292. image: {
  44293. source: "./media/characters/emberflame/side.svg",
  44294. extra: 938/527,
  44295. bottom: 56/994
  44296. }
  44297. },
  44298. },
  44299. [
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(6 + 3/12, "feet"),
  44303. default: true
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44309. {
  44310. side: {
  44311. height: math.unit(17.5, "feet"),
  44312. weight: math.unit(35, "tons"),
  44313. name: "Side",
  44314. image: {
  44315. source: "./media/characters/sophie-ambrose/side.svg",
  44316. extra: 1573/1242,
  44317. bottom: 71/1644
  44318. }
  44319. },
  44320. maw: {
  44321. height: math.unit(7.4, "feet"),
  44322. name: "Maw",
  44323. image: {
  44324. source: "./media/characters/sophie-ambrose/maw.svg"
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Normal",
  44331. height: math.unit(17.5, "feet"),
  44332. default: true
  44333. },
  44334. ]
  44335. ))
  44336. characterMakers.push(() => makeCharacter(
  44337. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44338. {
  44339. front: {
  44340. height: math.unit(280, "feet"),
  44341. weight: math.unit(550, "tons"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/king-mugi/front.svg",
  44345. extra: 1102/947,
  44346. bottom: 104/1206
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "King Mugi",
  44353. height: math.unit(280, "feet"),
  44354. default: true
  44355. },
  44356. ]
  44357. ))
  44358. characterMakers.push(() => makeCharacter(
  44359. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44360. {
  44361. front: {
  44362. height: math.unit(64, "meters"),
  44363. name: "Front",
  44364. image: {
  44365. source: "./media/characters/nova-fox/front.svg",
  44366. extra: 1310/1246,
  44367. bottom: 65/1375
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Macro",
  44374. height: math.unit(64, "meters"),
  44375. default: true
  44376. },
  44377. ]
  44378. ))
  44379. characterMakers.push(() => makeCharacter(
  44380. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44381. {
  44382. front: {
  44383. height: math.unit(6 + 3/12, "feet"),
  44384. weight: math.unit(170, "lb"),
  44385. name: "Front",
  44386. image: {
  44387. source: "./media/characters/sam-bat/front.svg",
  44388. extra: 1601/1411,
  44389. bottom: 125/1726
  44390. }
  44391. },
  44392. back: {
  44393. height: math.unit(6 + 3/12, "feet"),
  44394. weight: math.unit(170, "lb"),
  44395. name: "Back",
  44396. image: {
  44397. source: "./media/characters/sam-bat/back.svg",
  44398. extra: 1577/1405,
  44399. bottom: 58/1635
  44400. }
  44401. },
  44402. },
  44403. [
  44404. {
  44405. name: "Normal",
  44406. height: math.unit(6 + 3/12, "feet"),
  44407. default: true
  44408. },
  44409. ]
  44410. ))
  44411. characterMakers.push(() => makeCharacter(
  44412. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44413. {
  44414. front: {
  44415. height: math.unit(59, "feet"),
  44416. weight: math.unit(40000, "lb"),
  44417. name: "Front",
  44418. image: {
  44419. source: "./media/characters/inari/front.svg",
  44420. extra: 1884/1350,
  44421. bottom: 95/1979
  44422. }
  44423. },
  44424. },
  44425. [
  44426. {
  44427. name: "Gigantamax",
  44428. height: math.unit(59, "feet"),
  44429. default: true
  44430. },
  44431. ]
  44432. ))
  44433. characterMakers.push(() => makeCharacter(
  44434. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44435. {
  44436. front: {
  44437. height: math.unit(5 + 8/12, "feet"),
  44438. name: "Front",
  44439. image: {
  44440. source: "./media/characters/elizabeth/front.svg",
  44441. extra: 1395/1298,
  44442. bottom: 54/1449
  44443. }
  44444. },
  44445. mouth: {
  44446. height: math.unit(1.97, "feet"),
  44447. name: "Mouth",
  44448. image: {
  44449. source: "./media/characters/elizabeth/mouth.svg"
  44450. }
  44451. },
  44452. foot: {
  44453. height: math.unit(1.17, "feet"),
  44454. name: "Foot",
  44455. image: {
  44456. source: "./media/characters/elizabeth/foot.svg"
  44457. }
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Normal",
  44463. height: math.unit(5 + 8/12, "feet"),
  44464. default: true
  44465. },
  44466. {
  44467. name: "Minimacro",
  44468. height: math.unit(18, "feet")
  44469. },
  44470. {
  44471. name: "Macro",
  44472. height: math.unit(180, "feet")
  44473. },
  44474. ]
  44475. ))
  44476. characterMakers.push(() => makeCharacter(
  44477. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44478. {
  44479. front: {
  44480. height: math.unit(5 + 2/12, "feet"),
  44481. name: "Front",
  44482. image: {
  44483. source: "./media/characters/october-gossamer/front.svg",
  44484. extra: 505/454,
  44485. bottom: 7/512
  44486. }
  44487. },
  44488. back: {
  44489. height: math.unit(5 + 2/12, "feet"),
  44490. name: "Back",
  44491. image: {
  44492. source: "./media/characters/october-gossamer/back.svg",
  44493. extra: 501/454,
  44494. bottom: 11/512
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(5 + 2/12, "feet"),
  44502. default: true
  44503. },
  44504. ]
  44505. ))
  44506. characterMakers.push(() => makeCharacter(
  44507. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44508. {
  44509. front: {
  44510. height: math.unit(5, "feet"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/epiglottis/front.svg",
  44514. extra: 923/849,
  44515. bottom: 17/940
  44516. }
  44517. },
  44518. },
  44519. [
  44520. {
  44521. name: "Original Size",
  44522. height: math.unit(10, "inches")
  44523. },
  44524. {
  44525. name: "Human Size",
  44526. height: math.unit(5, "feet"),
  44527. default: true
  44528. },
  44529. {
  44530. name: "Big",
  44531. height: math.unit(25, "feet")
  44532. },
  44533. {
  44534. name: "Bigger",
  44535. height: math.unit(50, "feet")
  44536. },
  44537. {
  44538. name: "oh lawd",
  44539. height: math.unit(75, "feet")
  44540. },
  44541. ]
  44542. ))
  44543. characterMakers.push(() => makeCharacter(
  44544. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44545. {
  44546. front: {
  44547. height: math.unit(2 + 4/12, "feet"),
  44548. weight: math.unit(60, "lb"),
  44549. name: "Front",
  44550. image: {
  44551. source: "./media/characters/lerm/front.svg",
  44552. extra: 796/790,
  44553. bottom: 79/875
  44554. }
  44555. },
  44556. },
  44557. [
  44558. {
  44559. name: "Normal",
  44560. height: math.unit(2 + 4/12, "feet"),
  44561. default: true
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44567. {
  44568. front: {
  44569. height: math.unit(5.5, "feet"),
  44570. weight: math.unit(130, "lb"),
  44571. name: "Front",
  44572. image: {
  44573. source: "./media/characters/xena-nebadon/front.svg",
  44574. extra: 1828/1730,
  44575. bottom: 79/1907
  44576. }
  44577. },
  44578. },
  44579. [
  44580. {
  44581. name: "Tiny Puppy",
  44582. height: math.unit(3, "inches")
  44583. },
  44584. {
  44585. name: "Normal",
  44586. height: math.unit(5.5, "feet"),
  44587. default: true
  44588. },
  44589. {
  44590. name: "Lotta Lady",
  44591. height: math.unit(12, "feet")
  44592. },
  44593. {
  44594. name: "Pretty Big",
  44595. height: math.unit(100, "feet")
  44596. },
  44597. {
  44598. name: "Big",
  44599. height: math.unit(500, "feet")
  44600. },
  44601. {
  44602. name: "Skyscraper Toys",
  44603. height: math.unit(2500, "feet")
  44604. },
  44605. {
  44606. name: "Plane Catcher",
  44607. height: math.unit(8, "miles")
  44608. },
  44609. {
  44610. name: "Planet Toys",
  44611. height: math.unit(15, "earths")
  44612. },
  44613. {
  44614. name: "Stardust",
  44615. height: math.unit(0.25, "galaxies")
  44616. },
  44617. {
  44618. name: "Snacks",
  44619. height: math.unit(70, "universes")
  44620. },
  44621. ]
  44622. ))
  44623. characterMakers.push(() => makeCharacter(
  44624. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44625. {
  44626. front: {
  44627. height: math.unit(1.6, "meters"),
  44628. weight: math.unit(60, "kg"),
  44629. name: "Front",
  44630. image: {
  44631. source: "./media/characters/bounty/front.svg",
  44632. extra: 1426/1308,
  44633. bottom: 15/1441
  44634. }
  44635. },
  44636. back: {
  44637. height: math.unit(1.6, "meters"),
  44638. weight: math.unit(60, "kg"),
  44639. name: "Back",
  44640. image: {
  44641. source: "./media/characters/bounty/back.svg",
  44642. extra: 1417/1307,
  44643. bottom: 8/1425
  44644. }
  44645. },
  44646. },
  44647. [
  44648. {
  44649. name: "Normal",
  44650. height: math.unit(1.6, "meters"),
  44651. default: true
  44652. },
  44653. {
  44654. name: "Macro",
  44655. height: math.unit(300, "meters")
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44661. {
  44662. front: {
  44663. height: math.unit(2 + 8/12, "feet"),
  44664. weight: math.unit(15, "lb"),
  44665. name: "Front",
  44666. image: {
  44667. source: "./media/characters/mochi/front.svg",
  44668. extra: 1022/852,
  44669. bottom: 435/1457
  44670. }
  44671. },
  44672. back: {
  44673. height: math.unit(2 + 8/12, "feet"),
  44674. weight: math.unit(15, "lb"),
  44675. name: "Back",
  44676. image: {
  44677. source: "./media/characters/mochi/back.svg",
  44678. extra: 1335/1119,
  44679. bottom: 39/1374
  44680. }
  44681. },
  44682. bird: {
  44683. height: math.unit(2 + 8/12, "feet"),
  44684. weight: math.unit(15, "lb"),
  44685. name: "Bird",
  44686. image: {
  44687. source: "./media/characters/mochi/bird.svg",
  44688. extra: 1251/1113,
  44689. bottom: 178/1429
  44690. }
  44691. },
  44692. kaiju: {
  44693. height: math.unit(154, "feet"),
  44694. weight: math.unit(1e7, "lb"),
  44695. name: "Kaiju",
  44696. image: {
  44697. source: "./media/characters/mochi/kaiju.svg",
  44698. extra: 460/324,
  44699. bottom: 40/500
  44700. }
  44701. },
  44702. head: {
  44703. height: math.unit(1.21, "feet"),
  44704. name: "Head",
  44705. image: {
  44706. source: "./media/characters/mochi/head.svg"
  44707. }
  44708. },
  44709. alternateTail: {
  44710. height: math.unit(2 + 8/12, "feet"),
  44711. weight: math.unit(45, "lb"),
  44712. name: "Alternate Tail",
  44713. image: {
  44714. source: "./media/characters/mochi/alternate-tail.svg",
  44715. extra: 139/76,
  44716. bottom: 45/184
  44717. }
  44718. },
  44719. },
  44720. [
  44721. {
  44722. name: "Micro",
  44723. height: math.unit(2, "inches")
  44724. },
  44725. {
  44726. name: "Normal",
  44727. height: math.unit(2 + 8/12, "feet"),
  44728. default: true
  44729. },
  44730. {
  44731. name: "Macro",
  44732. height: math.unit(106, "feet")
  44733. },
  44734. ]
  44735. ))
  44736. characterMakers.push(() => makeCharacter(
  44737. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44738. {
  44739. front: {
  44740. height: math.unit(5.67, "feet"),
  44741. weight: math.unit(135, "lb"),
  44742. name: "Front",
  44743. image: {
  44744. source: "./media/characters/sarel/front.svg",
  44745. extra: 865/788,
  44746. bottom: 97/962
  44747. }
  44748. },
  44749. back: {
  44750. height: math.unit(5.67, "feet"),
  44751. weight: math.unit(135, "lb"),
  44752. name: "Back",
  44753. image: {
  44754. source: "./media/characters/sarel/back.svg",
  44755. extra: 857/777,
  44756. bottom: 32/889
  44757. }
  44758. },
  44759. chozoan: {
  44760. height: math.unit(5.67, "feet"),
  44761. weight: math.unit(135, "lb"),
  44762. name: "Chozoan",
  44763. image: {
  44764. source: "./media/characters/sarel/chozoan.svg",
  44765. extra: 865/788,
  44766. bottom: 97/962
  44767. }
  44768. },
  44769. current: {
  44770. height: math.unit(5.67, "feet"),
  44771. weight: math.unit(135, "lb"),
  44772. name: "Current",
  44773. image: {
  44774. source: "./media/characters/sarel/current.svg",
  44775. extra: 865/788,
  44776. bottom: 97/962
  44777. }
  44778. },
  44779. head: {
  44780. height: math.unit(1.77, "feet"),
  44781. name: "Head",
  44782. image: {
  44783. source: "./media/characters/sarel/head.svg"
  44784. }
  44785. },
  44786. claws: {
  44787. height: math.unit(1.8, "feet"),
  44788. name: "Claws",
  44789. image: {
  44790. source: "./media/characters/sarel/claws.svg"
  44791. }
  44792. },
  44793. clawsAlt: {
  44794. height: math.unit(1.8, "feet"),
  44795. name: "Claws-alt",
  44796. image: {
  44797. source: "./media/characters/sarel/claws-alt.svg"
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(5.67, "feet"),
  44805. default: true
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44811. {
  44812. front: {
  44813. height: math.unit(5500, "feet"),
  44814. name: "Front",
  44815. image: {
  44816. source: "./media/characters/alyonia/front.svg",
  44817. extra: 1200/1135,
  44818. bottom: 29/1229
  44819. }
  44820. },
  44821. back: {
  44822. height: math.unit(5500, "feet"),
  44823. name: "Back",
  44824. image: {
  44825. source: "./media/characters/alyonia/back.svg",
  44826. extra: 1205/1138,
  44827. bottom: 10/1215
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Small",
  44834. height: math.unit(10, "feet")
  44835. },
  44836. {
  44837. name: "Macro",
  44838. height: math.unit(500, "feet")
  44839. },
  44840. {
  44841. name: "Mega Macro",
  44842. height: math.unit(5500, "feet"),
  44843. default: true
  44844. },
  44845. {
  44846. name: "Mega Macro+",
  44847. height: math.unit(500000, "feet")
  44848. },
  44849. {
  44850. name: "Giga Macro",
  44851. height: math.unit(3000, "miles")
  44852. },
  44853. {
  44854. name: "Tera Macro",
  44855. height: math.unit(2.8e6, "miles")
  44856. },
  44857. {
  44858. name: "Galactic",
  44859. height: math.unit(120000, "lightyears")
  44860. },
  44861. ]
  44862. ))
  44863. characterMakers.push(() => makeCharacter(
  44864. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44865. {
  44866. werewolf: {
  44867. height: math.unit(8, "feet"),
  44868. weight: math.unit(425, "lb"),
  44869. name: "Werewolf",
  44870. image: {
  44871. source: "./media/characters/autumn/werewolf.svg",
  44872. extra: 2154/2031,
  44873. bottom: 160/2314
  44874. }
  44875. },
  44876. human: {
  44877. height: math.unit(5 + 8/12, "feet"),
  44878. weight: math.unit(150, "lb"),
  44879. name: "Human",
  44880. image: {
  44881. source: "./media/characters/autumn/human.svg",
  44882. extra: 1200/1149,
  44883. bottom: 30/1230
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Normal",
  44890. height: math.unit(8, "feet"),
  44891. default: true
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44897. {
  44898. front: {
  44899. height: math.unit(8 + 5/12, "feet"),
  44900. weight: math.unit(825, "lb"),
  44901. name: "Front",
  44902. image: {
  44903. source: "./media/characters/cobalt-charizard/front.svg",
  44904. extra: 1268/1155,
  44905. bottom: 122/1390
  44906. }
  44907. },
  44908. side: {
  44909. height: math.unit(8 + 5/12, "feet"),
  44910. weight: math.unit(825, "lb"),
  44911. name: "Side",
  44912. image: {
  44913. source: "./media/characters/cobalt-charizard/side.svg",
  44914. extra: 1348/1257,
  44915. bottom: 58/1406
  44916. }
  44917. },
  44918. gMax: {
  44919. height: math.unit(134 + 11/12, "feet"),
  44920. name: "G-Max",
  44921. image: {
  44922. source: "./media/characters/cobalt-charizard/g-max.svg",
  44923. extra: 1835/1541,
  44924. bottom: 151/1986
  44925. }
  44926. },
  44927. },
  44928. [
  44929. {
  44930. name: "Normal",
  44931. height: math.unit(8 + 5/12, "feet"),
  44932. default: true
  44933. },
  44934. ]
  44935. ))
  44936. characterMakers.push(() => makeCharacter(
  44937. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44938. {
  44939. front: {
  44940. height: math.unit(6 + 3/12, "feet"),
  44941. weight: math.unit(210, "lb"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/stella/front.svg",
  44945. extra: 3549/3335,
  44946. bottom: 51/3600
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(6 + 3/12, "feet"),
  44954. default: true
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44960. {
  44961. front: {
  44962. height: math.unit(5, "feet"),
  44963. weight: math.unit(90, "lb"),
  44964. name: "Front",
  44965. image: {
  44966. source: "./media/characters/riley-bishop/front.svg",
  44967. extra: 1450/1428,
  44968. bottom: 152/1602
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(5, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44982. {
  44983. side: {
  44984. height: math.unit(8 + 2/12, "feet"),
  44985. weight: math.unit(500, "kg"),
  44986. name: "Side",
  44987. image: {
  44988. source: "./media/characters/theo-arcanine/side.svg",
  44989. extra: 1342/1074,
  44990. bottom: 111/1453
  44991. }
  44992. },
  44993. },
  44994. [
  44995. {
  44996. name: "Normal",
  44997. height: math.unit(8 + 2/12, "feet"),
  44998. default: true
  44999. },
  45000. ]
  45001. ))
  45002. characterMakers.push(() => makeCharacter(
  45003. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45004. {
  45005. front: {
  45006. height: math.unit(4, "feet"),
  45007. name: "Front",
  45008. image: {
  45009. source: "./media/characters/kali/front.svg",
  45010. extra: 1921/1357,
  45011. bottom: 70/1991
  45012. }
  45013. },
  45014. },
  45015. [
  45016. {
  45017. name: "Normal",
  45018. height: math.unit(4, "feet"),
  45019. default: true
  45020. },
  45021. {
  45022. name: "Macro",
  45023. height: math.unit(32, "meters")
  45024. },
  45025. {
  45026. name: "Macro+",
  45027. height: math.unit(150, "meters")
  45028. },
  45029. {
  45030. name: "Megamacro",
  45031. height: math.unit(7500, "meters")
  45032. },
  45033. {
  45034. name: "Megamacro+",
  45035. height: math.unit(80, "kilometers")
  45036. },
  45037. ]
  45038. ))
  45039. characterMakers.push(() => makeCharacter(
  45040. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45041. {
  45042. side: {
  45043. height: math.unit(5 + 11/12, "feet"),
  45044. weight: math.unit(236, "lb"),
  45045. name: "Side",
  45046. image: {
  45047. source: "./media/characters/gapp/side.svg",
  45048. extra: 775/340,
  45049. bottom: 58/833
  45050. }
  45051. },
  45052. mouth: {
  45053. height: math.unit(2.98, "feet"),
  45054. name: "Mouth",
  45055. image: {
  45056. source: "./media/characters/gapp/mouth.svg"
  45057. }
  45058. },
  45059. },
  45060. [
  45061. {
  45062. name: "Normal",
  45063. height: math.unit(5 + 1/12, "feet"),
  45064. default: true
  45065. },
  45066. ]
  45067. ))
  45068. characterMakers.push(() => makeCharacter(
  45069. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45070. {
  45071. front: {
  45072. height: math.unit(6, "feet"),
  45073. name: "Front",
  45074. image: {
  45075. source: "./media/characters/persephone/front.svg",
  45076. extra: 1895/1717,
  45077. bottom: 96/1991
  45078. }
  45079. },
  45080. back: {
  45081. height: math.unit(6, "feet"),
  45082. name: "Back",
  45083. image: {
  45084. source: "./media/characters/persephone/back.svg",
  45085. extra: 1868/1679,
  45086. bottom: 26/1894
  45087. }
  45088. },
  45089. casual: {
  45090. height: math.unit(6, "feet"),
  45091. name: "Casual",
  45092. image: {
  45093. source: "./media/characters/persephone/casual.svg",
  45094. extra: 1713/1541,
  45095. bottom: 76/1789
  45096. }
  45097. },
  45098. },
  45099. [
  45100. {
  45101. name: "Human Size",
  45102. height: math.unit(6, "feet")
  45103. },
  45104. {
  45105. name: "Big Steppy",
  45106. height: math.unit(600, "meters"),
  45107. default: true
  45108. },
  45109. {
  45110. name: "Galaxy Brain",
  45111. height: math.unit(1, "zettameter")
  45112. },
  45113. ]
  45114. ))
  45115. characterMakers.push(() => makeCharacter(
  45116. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45117. {
  45118. front: {
  45119. height: math.unit(1.85, "meters"),
  45120. name: "Front",
  45121. image: {
  45122. source: "./media/characters/riley-foxthing/front.svg",
  45123. extra: 1495/1354,
  45124. bottom: 122/1617
  45125. }
  45126. },
  45127. frontAlt: {
  45128. height: math.unit(1.85, "meters"),
  45129. name: "Front (Alt)",
  45130. image: {
  45131. source: "./media/characters/riley-foxthing/front-alt.svg",
  45132. extra: 1572/1389,
  45133. bottom: 116/1688
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal Sized",
  45140. height: math.unit(1.85, "meters"),
  45141. default: true
  45142. },
  45143. {
  45144. name: "Quite Sizable",
  45145. height: math.unit(5, "meters")
  45146. },
  45147. {
  45148. name: "Rather Large",
  45149. height: math.unit(20, "meters")
  45150. },
  45151. {
  45152. name: "Macro",
  45153. height: math.unit(450, "meters")
  45154. },
  45155. {
  45156. name: "Giga",
  45157. height: math.unit(5, "km")
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(6, "feet"),
  45166. weight: math.unit(200, "lb"),
  45167. name: "Front",
  45168. image: {
  45169. source: "./media/characters/blizzard/front.svg",
  45170. extra: 1136/990,
  45171. bottom: 136/1272
  45172. }
  45173. },
  45174. back: {
  45175. height: math.unit(6, "feet"),
  45176. weight: math.unit(200, "lb"),
  45177. name: "Back",
  45178. image: {
  45179. source: "./media/characters/blizzard/back.svg",
  45180. extra: 1175/1034,
  45181. bottom: 97/1272
  45182. }
  45183. },
  45184. sitting: {
  45185. height: math.unit(3.725, "feet"),
  45186. weight: math.unit(200, "lb"),
  45187. name: "Sitting",
  45188. image: {
  45189. source: "./media/characters/blizzard/sitting.svg",
  45190. extra: 581/485,
  45191. bottom: 90/671
  45192. }
  45193. },
  45194. frontWizard: {
  45195. height: math.unit(7.9, "feet"),
  45196. weight: math.unit(200, "lb"),
  45197. name: "Front (Wizard)",
  45198. image: {
  45199. source: "./media/characters/blizzard/front-wizard.svg"
  45200. }
  45201. },
  45202. backWizard: {
  45203. height: math.unit(7.9, "feet"),
  45204. weight: math.unit(200, "lb"),
  45205. name: "Back (Wizard)",
  45206. image: {
  45207. source: "./media/characters/blizzard/back-wizard.svg"
  45208. }
  45209. },
  45210. frontNsfw: {
  45211. height: math.unit(6, "feet"),
  45212. weight: math.unit(200, "lb"),
  45213. name: "Front (NSFW)",
  45214. image: {
  45215. source: "./media/characters/blizzard/front-nsfw.svg",
  45216. extra: 1136/990,
  45217. bottom: 136/1272
  45218. }
  45219. },
  45220. backNsfw: {
  45221. height: math.unit(6, "feet"),
  45222. weight: math.unit(200, "lb"),
  45223. name: "Back (NSFW)",
  45224. image: {
  45225. source: "./media/characters/blizzard/back-nsfw.svg",
  45226. extra: 1175/1034,
  45227. bottom: 97/1272
  45228. }
  45229. },
  45230. sittingNsfw: {
  45231. height: math.unit(3.725, "feet"),
  45232. weight: math.unit(200, "lb"),
  45233. name: "Sitting (NSFW)",
  45234. image: {
  45235. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45236. extra: 581/485,
  45237. bottom: 90/671
  45238. }
  45239. },
  45240. wizardFrontNsfw: {
  45241. height: math.unit(7.9, "feet"),
  45242. weight: math.unit(200, "lb"),
  45243. name: "Wizard (Front, NSFW)",
  45244. image: {
  45245. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45246. }
  45247. },
  45248. },
  45249. [
  45250. {
  45251. name: "Normal",
  45252. height: math.unit(6, "feet"),
  45253. default: true
  45254. },
  45255. ]
  45256. ))
  45257. characterMakers.push(() => makeCharacter(
  45258. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45259. {
  45260. front: {
  45261. height: math.unit(5 + 2/12, "feet"),
  45262. name: "Front",
  45263. image: {
  45264. source: "./media/characters/lumi/front.svg",
  45265. extra: 1328/1268,
  45266. bottom: 103/1431
  45267. }
  45268. },
  45269. back: {
  45270. height: math.unit(5 + 2/12, "feet"),
  45271. name: "Back",
  45272. image: {
  45273. source: "./media/characters/lumi/back.svg",
  45274. extra: 1381/1327,
  45275. bottom: 43/1424
  45276. }
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(5 + 2/12, "feet"),
  45283. default: true
  45284. },
  45285. ]
  45286. ))
  45287. characterMakers.push(() => makeCharacter(
  45288. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45289. {
  45290. front: {
  45291. height: math.unit(5 + 9/12, "feet"),
  45292. name: "Front",
  45293. image: {
  45294. source: "./media/characters/aliya-cotton/front.svg",
  45295. extra: 577/564,
  45296. bottom: 29/606
  45297. }
  45298. },
  45299. },
  45300. [
  45301. {
  45302. name: "Normal",
  45303. height: math.unit(5 + 9/12, "feet"),
  45304. default: true
  45305. },
  45306. ]
  45307. ))
  45308. characterMakers.push(() => makeCharacter(
  45309. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45310. {
  45311. front: {
  45312. height: math.unit(2.7, "meters"),
  45313. weight: math.unit(25000, "lb"),
  45314. name: "Front",
  45315. image: {
  45316. source: "./media/characters/noah-luxray/front.svg",
  45317. extra: 1644/825,
  45318. bottom: 339/1983
  45319. }
  45320. },
  45321. side: {
  45322. height: math.unit(2.97, "meters"),
  45323. weight: math.unit(25000, "lb"),
  45324. name: "Side",
  45325. image: {
  45326. source: "./media/characters/noah-luxray/side.svg",
  45327. extra: 1319/650,
  45328. bottom: 163/1482
  45329. }
  45330. },
  45331. dick: {
  45332. height: math.unit(7.4, "feet"),
  45333. weight: math.unit(2500, "lb"),
  45334. name: "Dick",
  45335. image: {
  45336. source: "./media/characters/noah-luxray/dick.svg"
  45337. }
  45338. },
  45339. dickAlt: {
  45340. height: math.unit(10.83, "feet"),
  45341. weight: math.unit(2500, "lb"),
  45342. name: "Dick-alt",
  45343. image: {
  45344. source: "./media/characters/noah-luxray/dick-alt.svg"
  45345. }
  45346. },
  45347. },
  45348. [
  45349. {
  45350. name: "BIG",
  45351. height: math.unit(2.7, "meters"),
  45352. default: true
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45358. {
  45359. standing: {
  45360. height: math.unit(183, "cm"),
  45361. weight: math.unit(68, "kg"),
  45362. name: "Standing",
  45363. image: {
  45364. source: "./media/characters/arion/standing.svg",
  45365. extra: 1869/1807,
  45366. bottom: 93/1962
  45367. }
  45368. },
  45369. reclining: {
  45370. height: math.unit(70.5, "cm"),
  45371. weight: math.unit(68, "lb"),
  45372. name: "Reclining",
  45373. image: {
  45374. source: "./media/characters/arion/reclining.svg",
  45375. extra: 937/870,
  45376. bottom: 63/1000
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Colossus Size, Low",
  45383. height: math.unit(33, "meters"),
  45384. default: true
  45385. },
  45386. {
  45387. name: "Colossus Size, Mid",
  45388. height: math.unit(52, "meters")
  45389. },
  45390. {
  45391. name: "Colossus Size, High",
  45392. height: math.unit(60, "meters")
  45393. },
  45394. {
  45395. name: "Titan Size, Low",
  45396. height: math.unit(91, "meters"),
  45397. },
  45398. {
  45399. name: "Titan Size, Mid",
  45400. height: math.unit(122, "meters")
  45401. },
  45402. {
  45403. name: "Titan Size, High",
  45404. height: math.unit(162, "meters")
  45405. },
  45406. ]
  45407. ))
  45408. characterMakers.push(() => makeCharacter(
  45409. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45410. {
  45411. front: {
  45412. height: math.unit(53, "meters"),
  45413. name: "Front",
  45414. image: {
  45415. source: "./media/characters/stellar-marbey/front.svg",
  45416. extra: 1913/1805,
  45417. bottom: 92/2005
  45418. }
  45419. },
  45420. back: {
  45421. height: math.unit(53, "meters"),
  45422. name: "Back",
  45423. image: {
  45424. source: "./media/characters/stellar-marbey/back.svg",
  45425. extra: 1960/1851,
  45426. bottom: 28/1988
  45427. }
  45428. },
  45429. mouth: {
  45430. height: math.unit(3.5, "meters"),
  45431. name: "Mouth",
  45432. image: {
  45433. source: "./media/characters/stellar-marbey/mouth.svg"
  45434. }
  45435. },
  45436. },
  45437. [
  45438. {
  45439. name: "Macro",
  45440. height: math.unit(53, "meters"),
  45441. default: true
  45442. },
  45443. ]
  45444. ))
  45445. characterMakers.push(() => makeCharacter(
  45446. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45447. {
  45448. front: {
  45449. height: math.unit(8 + 1/12, "feet"),
  45450. weight: math.unit(233, "lb"),
  45451. name: "Front",
  45452. image: {
  45453. source: "./media/characters/matsu/front.svg",
  45454. extra: 832/772,
  45455. bottom: 40/872
  45456. }
  45457. },
  45458. back: {
  45459. height: math.unit(8 + 1/12, "feet"),
  45460. weight: math.unit(233, "lb"),
  45461. name: "Back",
  45462. image: {
  45463. source: "./media/characters/matsu/back.svg",
  45464. extra: 839/780,
  45465. bottom: 47/886
  45466. }
  45467. },
  45468. },
  45469. [
  45470. {
  45471. name: "Normal",
  45472. height: math.unit(8 + 1/12, "feet"),
  45473. default: true
  45474. },
  45475. ]
  45476. ))
  45477. characterMakers.push(() => makeCharacter(
  45478. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45479. {
  45480. front: {
  45481. height: math.unit(4, "feet"),
  45482. weight: math.unit(148, "lb"),
  45483. name: "Front",
  45484. image: {
  45485. source: "./media/characters/thiz/front.svg",
  45486. extra: 1913/1748,
  45487. bottom: 62/1975
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(4, "feet"),
  45495. default: true
  45496. },
  45497. ]
  45498. ))
  45499. characterMakers.push(() => makeCharacter(
  45500. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45501. {
  45502. front: {
  45503. height: math.unit(7 + 6/12, "feet"),
  45504. weight: math.unit(267, "lb"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/marcel/front.svg",
  45508. extra: 1221/1096,
  45509. bottom: 76/1297
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Normal",
  45516. height: math.unit(7 + 6/12, "feet"),
  45517. default: true
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45523. {
  45524. side: {
  45525. height: math.unit(42, "meters"),
  45526. name: "Side",
  45527. image: {
  45528. source: "./media/characters/flake/side.svg",
  45529. extra: 1525/1306,
  45530. bottom: 209/1734
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Normal",
  45537. height: math.unit(42, "meters"),
  45538. default: true
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45544. {
  45545. dressed: {
  45546. height: math.unit(6 + 4/12, "feet"),
  45547. weight: math.unit(520, "lb"),
  45548. name: "Dressed",
  45549. image: {
  45550. source: "./media/characters/someonne/dressed.svg",
  45551. extra: 1020/1010,
  45552. bottom: 178/1198
  45553. }
  45554. },
  45555. undressed: {
  45556. height: math.unit(6 + 4/12, "feet"),
  45557. weight: math.unit(520, "lb"),
  45558. name: "Undressed",
  45559. image: {
  45560. source: "./media/characters/someonne/undressed.svg",
  45561. extra: 1019/1014,
  45562. bottom: 169/1188
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(6 + 4/12, "feet"),
  45570. default: true
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(3, "feet"),
  45579. weight: math.unit(30, "lb"),
  45580. name: "Front",
  45581. image: {
  45582. source: "./media/characters/till/front.svg",
  45583. extra: 892/823,
  45584. bottom: 55/947
  45585. }
  45586. },
  45587. },
  45588. [
  45589. {
  45590. name: "Normal",
  45591. height: math.unit(3, "feet"),
  45592. default: true
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45598. {
  45599. front: {
  45600. height: math.unit(9 + 8/12, "feet"),
  45601. weight: math.unit(800, "lb"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/sydney-heki/front.svg",
  45605. extra: 1360/1300,
  45606. bottom: 22/1382
  45607. }
  45608. },
  45609. back: {
  45610. height: math.unit(9 + 8/12, "feet"),
  45611. weight: math.unit(800, "lb"),
  45612. name: "Back",
  45613. image: {
  45614. source: "./media/characters/sydney-heki/back.svg",
  45615. extra: 1356/1293,
  45616. bottom: 12/1368
  45617. }
  45618. },
  45619. frontDressed: {
  45620. height: math.unit(9 + 8/12, "feet"),
  45621. weight: math.unit(800, "lb"),
  45622. name: "Front-dressed",
  45623. image: {
  45624. source: "./media/characters/sydney-heki/front-dressed.svg",
  45625. extra: 1360/1300,
  45626. bottom: 22/1382
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(9 + 8/12, "feet"),
  45634. default: true
  45635. },
  45636. {
  45637. name: "Macro",
  45638. height: math.unit(500, "feet")
  45639. },
  45640. {
  45641. name: "Megamacro",
  45642. height: math.unit(3.6, "miles")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(200, "cm"),
  45651. weight: math.unit(250, "lb"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/fowler-karlsson/front.svg",
  45655. extra: 897/845,
  45656. bottom: 123/1020
  45657. }
  45658. },
  45659. back: {
  45660. height: math.unit(200, "cm"),
  45661. weight: math.unit(250, "lb"),
  45662. name: "Back",
  45663. image: {
  45664. source: "./media/characters/fowler-karlsson/back.svg",
  45665. extra: 999/944,
  45666. bottom: 26/1025
  45667. }
  45668. },
  45669. dick: {
  45670. height: math.unit(1.92, "feet"),
  45671. weight: math.unit(150, "lb"),
  45672. name: "Dick",
  45673. image: {
  45674. source: "./media/characters/fowler-karlsson/dick.svg"
  45675. }
  45676. },
  45677. },
  45678. [
  45679. {
  45680. name: "Normal",
  45681. height: math.unit(200, "cm"),
  45682. default: true
  45683. },
  45684. {
  45685. name: "Smaller Macro",
  45686. height: math.unit(90, "m")
  45687. },
  45688. {
  45689. name: "Macro",
  45690. height: math.unit(150, "m")
  45691. },
  45692. {
  45693. name: "Bigger Macro",
  45694. height: math.unit(300, "m")
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45700. {
  45701. side: {
  45702. height: math.unit(8 + 2/12, "feet"),
  45703. weight: math.unit(1, "tonne"),
  45704. name: "Side",
  45705. image: {
  45706. source: "./media/characters/rylide/side.svg",
  45707. extra: 1318/1034,
  45708. bottom: 106/1424
  45709. }
  45710. },
  45711. sitting: {
  45712. height: math.unit(303, "cm"),
  45713. weight: math.unit(1, "tonne"),
  45714. name: "Sitting",
  45715. image: {
  45716. source: "./media/characters/rylide/sitting.svg",
  45717. extra: 1303/1103,
  45718. bottom: 36/1339
  45719. }
  45720. },
  45721. },
  45722. [
  45723. {
  45724. name: "Normal",
  45725. height: math.unit(8 + 2/12, "feet"),
  45726. default: true
  45727. },
  45728. ]
  45729. ))
  45730. characterMakers.push(() => makeCharacter(
  45731. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45732. {
  45733. front: {
  45734. height: math.unit(5 + 10/12, "feet"),
  45735. weight: math.unit(160, "lb"),
  45736. name: "Front",
  45737. image: {
  45738. source: "./media/characters/pudask/front.svg",
  45739. extra: 1616/1590,
  45740. bottom: 161/1777
  45741. }
  45742. },
  45743. },
  45744. [
  45745. {
  45746. name: "Ferret Height",
  45747. height: math.unit(2 + 5/12, "feet")
  45748. },
  45749. {
  45750. name: "Canon Height",
  45751. height: math.unit(5 + 10/12, "feet"),
  45752. default: true
  45753. },
  45754. ]
  45755. ))
  45756. characterMakers.push(() => makeCharacter(
  45757. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45758. {
  45759. front: {
  45760. height: math.unit(3 + 6/12, "feet"),
  45761. weight: math.unit(60, "lb"),
  45762. name: "Front",
  45763. image: {
  45764. source: "./media/characters/ramita/front.svg",
  45765. extra: 1402/1232,
  45766. bottom: 62/1464
  45767. }
  45768. },
  45769. dressed: {
  45770. height: math.unit(3 + 6/12, "feet"),
  45771. weight: math.unit(60, "lb"),
  45772. name: "Dressed",
  45773. image: {
  45774. source: "./media/characters/ramita/dressed.svg",
  45775. extra: 1534/1249,
  45776. bottom: 50/1584
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Normal",
  45783. height: math.unit(3 + 6/12, "feet"),
  45784. default: true
  45785. },
  45786. ]
  45787. ))
  45788. characterMakers.push(() => makeCharacter(
  45789. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45790. {
  45791. front: {
  45792. height: math.unit(8, "feet"),
  45793. name: "Front",
  45794. image: {
  45795. source: "./media/characters/ark/front.svg",
  45796. extra: 772/693,
  45797. bottom: 45/817
  45798. }
  45799. },
  45800. },
  45801. [
  45802. {
  45803. name: "Normal",
  45804. height: math.unit(8, "feet"),
  45805. default: true
  45806. },
  45807. ]
  45808. ))
  45809. characterMakers.push(() => makeCharacter(
  45810. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45811. {
  45812. front: {
  45813. height: math.unit(6, "feet"),
  45814. weight: math.unit(250, "lb"),
  45815. volume: math.unit(5/8, "gallons"),
  45816. name: "Front",
  45817. image: {
  45818. source: "./media/characters/ludwig-horn/front.svg",
  45819. extra: 1782/1635,
  45820. bottom: 96/1878
  45821. }
  45822. },
  45823. back: {
  45824. height: math.unit(6, "feet"),
  45825. weight: math.unit(250, "lb"),
  45826. volume: math.unit(5/8, "gallons"),
  45827. name: "Back",
  45828. image: {
  45829. source: "./media/characters/ludwig-horn/back.svg",
  45830. extra: 1874/1729,
  45831. bottom: 27/1901
  45832. }
  45833. },
  45834. dick: {
  45835. height: math.unit(1.05, "feet"),
  45836. weight: math.unit(15, "lb"),
  45837. volume: math.unit(5/8, "gallons"),
  45838. name: "Dick",
  45839. image: {
  45840. source: "./media/characters/ludwig-horn/dick.svg"
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Small",
  45847. height: math.unit(6, "feet")
  45848. },
  45849. {
  45850. name: "Typical",
  45851. height: math.unit(12, "feet"),
  45852. default: true
  45853. },
  45854. {
  45855. name: "Building",
  45856. height: math.unit(80, "feet")
  45857. },
  45858. {
  45859. name: "Town",
  45860. height: math.unit(800, "feet")
  45861. },
  45862. {
  45863. name: "Kingdom",
  45864. height: math.unit(80000, "feet")
  45865. },
  45866. {
  45867. name: "Planet",
  45868. height: math.unit(8000000, "feet")
  45869. },
  45870. {
  45871. name: "Universe",
  45872. height: math.unit(8000000000, "feet")
  45873. },
  45874. {
  45875. name: "Transcended",
  45876. height: math.unit(8e27, "feet")
  45877. },
  45878. ]
  45879. ))
  45880. characterMakers.push(() => makeCharacter(
  45881. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45882. {
  45883. front: {
  45884. height: math.unit(5, "feet"),
  45885. weight: math.unit(50, "kg"),
  45886. name: "Front",
  45887. image: {
  45888. source: "./media/characters/biot-avery/front.svg",
  45889. extra: 1295/1232,
  45890. bottom: 86/1381
  45891. }
  45892. },
  45893. },
  45894. [
  45895. {
  45896. name: "Normal",
  45897. height: math.unit(5, "feet"),
  45898. default: true
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45904. {
  45905. front: {
  45906. height: math.unit(6, "feet"),
  45907. name: "Front",
  45908. image: {
  45909. source: "./media/characters/kitsune-kiro/front.svg",
  45910. extra: 1270/1158,
  45911. bottom: 42/1312
  45912. }
  45913. },
  45914. frontAlt: {
  45915. height: math.unit(6, "feet"),
  45916. name: "Front-alt",
  45917. image: {
  45918. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45919. extra: 1130/1081,
  45920. bottom: 36/1166
  45921. }
  45922. },
  45923. },
  45924. [
  45925. {
  45926. name: "Smol",
  45927. height: math.unit(3, "feet")
  45928. },
  45929. {
  45930. name: "Normal",
  45931. height: math.unit(6, "feet"),
  45932. default: true
  45933. },
  45934. ]
  45935. ))
  45936. characterMakers.push(() => makeCharacter(
  45937. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45938. {
  45939. front: {
  45940. height: math.unit(6, "feet"),
  45941. weight: math.unit(125, "lb"),
  45942. name: "Front",
  45943. image: {
  45944. source: "./media/characters/jack-thatcher/front.svg",
  45945. extra: 1474/1370,
  45946. bottom: 26/1500
  45947. }
  45948. },
  45949. back: {
  45950. height: math.unit(6, "feet"),
  45951. weight: math.unit(125, "lb"),
  45952. name: "Back",
  45953. image: {
  45954. source: "./media/characters/jack-thatcher/back.svg",
  45955. extra: 1489/1384,
  45956. bottom: 18/1507
  45957. }
  45958. },
  45959. },
  45960. [
  45961. {
  45962. name: "Normal",
  45963. height: math.unit(6, "feet"),
  45964. default: true
  45965. },
  45966. {
  45967. name: "Macro",
  45968. height: math.unit(75, "feet")
  45969. },
  45970. {
  45971. name: "Macro-er",
  45972. height: math.unit(250, "feet")
  45973. },
  45974. ]
  45975. ))
  45976. characterMakers.push(() => makeCharacter(
  45977. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45978. {
  45979. front: {
  45980. height: math.unit(7, "feet"),
  45981. weight: math.unit(110, "kg"),
  45982. name: "Front",
  45983. image: {
  45984. source: "./media/characters/max-hyper/front.svg",
  45985. extra: 1969/1881,
  45986. bottom: 49/2018
  45987. }
  45988. },
  45989. },
  45990. [
  45991. {
  45992. name: "Normal",
  45993. height: math.unit(7, "feet"),
  45994. default: true
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46000. {
  46001. front: {
  46002. height: math.unit(5 + 5/12, "feet"),
  46003. weight: math.unit(160, "lb"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/spook/front.svg",
  46007. extra: 794/791,
  46008. bottom: 54/848
  46009. }
  46010. },
  46011. back: {
  46012. height: math.unit(5 + 5/12, "feet"),
  46013. weight: math.unit(160, "lb"),
  46014. name: "Back",
  46015. image: {
  46016. source: "./media/characters/spook/back.svg",
  46017. extra: 812/798,
  46018. bottom: 32/844
  46019. }
  46020. },
  46021. },
  46022. [
  46023. {
  46024. name: "Normal",
  46025. height: math.unit(5 + 5/12, "feet"),
  46026. default: true
  46027. },
  46028. ]
  46029. ))
  46030. characterMakers.push(() => makeCharacter(
  46031. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46032. {
  46033. front: {
  46034. height: math.unit(18, "feet"),
  46035. name: "Front",
  46036. image: {
  46037. source: "./media/characters/xeaduulix/front.svg",
  46038. extra: 1380/1166,
  46039. bottom: 110/1490
  46040. }
  46041. },
  46042. back: {
  46043. height: math.unit(18, "feet"),
  46044. name: "Back",
  46045. image: {
  46046. source: "./media/characters/xeaduulix/back.svg",
  46047. extra: 1592/1170,
  46048. bottom: 128/1720
  46049. }
  46050. },
  46051. frontNsfw: {
  46052. height: math.unit(18, "feet"),
  46053. name: "Front (NSFW)",
  46054. image: {
  46055. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46056. extra: 1380/1166,
  46057. bottom: 110/1490
  46058. }
  46059. },
  46060. backNsfw: {
  46061. height: math.unit(18, "feet"),
  46062. name: "Back (NSFW)",
  46063. image: {
  46064. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46065. extra: 1592/1170,
  46066. bottom: 128/1720
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Normal",
  46073. height: math.unit(18, "feet"),
  46074. default: true
  46075. },
  46076. ]
  46077. ))
  46078. characterMakers.push(() => makeCharacter(
  46079. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46080. {
  46081. spreadWings: {
  46082. height: math.unit(20, "feet"),
  46083. name: "Spread Wings",
  46084. image: {
  46085. source: "./media/characters/fledge/spread-wings.svg",
  46086. extra: 693/635,
  46087. bottom: 26/719
  46088. }
  46089. },
  46090. front: {
  46091. height: math.unit(20, "feet"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/fledge/front.svg",
  46095. extra: 684/637,
  46096. bottom: 18/702
  46097. }
  46098. },
  46099. frontAlt: {
  46100. height: math.unit(20, "feet"),
  46101. name: "Front (Alt)",
  46102. image: {
  46103. source: "./media/characters/fledge/front-alt.svg",
  46104. extra: 708/664,
  46105. bottom: 13/721
  46106. }
  46107. },
  46108. back: {
  46109. height: math.unit(20, "feet"),
  46110. name: "Back",
  46111. image: {
  46112. source: "./media/characters/fledge/back.svg",
  46113. extra: 718/634,
  46114. bottom: 22/740
  46115. }
  46116. },
  46117. head: {
  46118. height: math.unit(5.55, "feet"),
  46119. name: "Head",
  46120. image: {
  46121. source: "./media/characters/fledge/head.svg"
  46122. }
  46123. },
  46124. headAlt: {
  46125. height: math.unit(5.1, "feet"),
  46126. name: "Head (Alt)",
  46127. image: {
  46128. source: "./media/characters/fledge/head-alt.svg"
  46129. }
  46130. },
  46131. },
  46132. [
  46133. {
  46134. name: "Small",
  46135. height: math.unit(6 + 2/12, "feet")
  46136. },
  46137. {
  46138. name: "Big",
  46139. height: math.unit(20, "feet"),
  46140. default: true
  46141. },
  46142. {
  46143. name: "Giant",
  46144. height: math.unit(100, "feet")
  46145. },
  46146. {
  46147. name: "Macro",
  46148. height: math.unit(200, "feet")
  46149. },
  46150. ]
  46151. ))
  46152. characterMakers.push(() => makeCharacter(
  46153. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46154. {
  46155. front: {
  46156. height: math.unit(1, "meter"),
  46157. name: "Front",
  46158. image: {
  46159. source: "./media/characters/atlas-morenai/front.svg",
  46160. extra: 1275/1043,
  46161. bottom: 19/1294
  46162. }
  46163. },
  46164. back: {
  46165. height: math.unit(1, "meter"),
  46166. name: "Back",
  46167. image: {
  46168. source: "./media/characters/atlas-morenai/back.svg",
  46169. extra: 1141/1001,
  46170. bottom: 25/1166
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(1, "meter"),
  46178. default: true
  46179. },
  46180. {
  46181. name: "Magic-Infused",
  46182. height: math.unit(5, "meters")
  46183. },
  46184. ]
  46185. ))
  46186. characterMakers.push(() => makeCharacter(
  46187. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46188. {
  46189. front: {
  46190. height: math.unit(5, "meters"),
  46191. name: "Front",
  46192. image: {
  46193. source: "./media/characters/cintia/front.svg",
  46194. extra: 1312/1228,
  46195. bottom: 38/1350
  46196. }
  46197. },
  46198. back: {
  46199. height: math.unit(5, "meters"),
  46200. name: "Back",
  46201. image: {
  46202. source: "./media/characters/cintia/back.svg",
  46203. extra: 1260/1166,
  46204. bottom: 98/1358
  46205. }
  46206. },
  46207. frontDick: {
  46208. height: math.unit(5, "meters"),
  46209. name: "Front (Dick)",
  46210. image: {
  46211. source: "./media/characters/cintia/front-dick.svg",
  46212. extra: 1312/1228,
  46213. bottom: 38/1350
  46214. }
  46215. },
  46216. backDick: {
  46217. height: math.unit(5, "meters"),
  46218. name: "Back (Dick)",
  46219. image: {
  46220. source: "./media/characters/cintia/back-dick.svg",
  46221. extra: 1260/1166,
  46222. bottom: 98/1358
  46223. }
  46224. },
  46225. bust: {
  46226. height: math.unit(1.97, "meters"),
  46227. name: "Bust",
  46228. image: {
  46229. source: "./media/characters/cintia/bust.svg",
  46230. extra: 617/565,
  46231. bottom: 0/617
  46232. }
  46233. },
  46234. },
  46235. [
  46236. {
  46237. name: "Normal",
  46238. height: math.unit(5, "meters"),
  46239. default: true
  46240. },
  46241. ]
  46242. ))
  46243. characterMakers.push(() => makeCharacter(
  46244. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46245. {
  46246. side: {
  46247. height: math.unit(100, "feet"),
  46248. name: "Side",
  46249. image: {
  46250. source: "./media/characters/denora/side.svg",
  46251. extra: 875/803,
  46252. bottom: 9/884
  46253. }
  46254. },
  46255. },
  46256. [
  46257. {
  46258. name: "Standard",
  46259. height: math.unit(100, "feet"),
  46260. default: true
  46261. },
  46262. {
  46263. name: "Grand",
  46264. height: math.unit(1000, "feet")
  46265. },
  46266. {
  46267. name: "Conquering",
  46268. height: math.unit(10000, "feet")
  46269. },
  46270. ]
  46271. ))
  46272. characterMakers.push(() => makeCharacter(
  46273. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46274. {
  46275. dressed: {
  46276. height: math.unit(8 + 5/12, "feet"),
  46277. weight: math.unit(700, "lb"),
  46278. name: "Dressed",
  46279. image: {
  46280. source: "./media/characters/kiva/dressed.svg",
  46281. extra: 1102/1055,
  46282. bottom: 60/1162
  46283. }
  46284. },
  46285. nude: {
  46286. height: math.unit(8 + 5/12, "feet"),
  46287. weight: math.unit(700, "lb"),
  46288. name: "Nude",
  46289. image: {
  46290. source: "./media/characters/kiva/nude.svg",
  46291. extra: 1102/1055,
  46292. bottom: 60/1162
  46293. }
  46294. },
  46295. },
  46296. [
  46297. {
  46298. name: "Base Height",
  46299. height: math.unit(8 + 5/12, "feet"),
  46300. default: true
  46301. },
  46302. {
  46303. name: "Macro",
  46304. height: math.unit(100, "feet")
  46305. },
  46306. {
  46307. name: "Max",
  46308. height: math.unit(3280, "feet")
  46309. },
  46310. ]
  46311. ))
  46312. characterMakers.push(() => makeCharacter(
  46313. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46314. {
  46315. front: {
  46316. height: math.unit(6 + 8/12, "feet"),
  46317. weight: math.unit(250, "lb"),
  46318. name: "Front",
  46319. image: {
  46320. source: "./media/characters/ztragon/front.svg",
  46321. extra: 1825/1684,
  46322. bottom: 98/1923
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "Normal",
  46329. height: math.unit(6 + 8/12, "feet"),
  46330. default: true
  46331. },
  46332. {
  46333. name: "Macro",
  46334. height: math.unit(80, "feet")
  46335. },
  46336. ]
  46337. ))
  46338. characterMakers.push(() => makeCharacter(
  46339. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46340. {
  46341. front: {
  46342. height: math.unit(10.4, "feet"),
  46343. weight: math.unit(2, "tons"),
  46344. name: "Front",
  46345. image: {
  46346. source: "./media/characters/yesenia/front.svg",
  46347. extra: 1479/1474,
  46348. bottom: 233/1712
  46349. }
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(10.4, "feet"),
  46356. default: true
  46357. },
  46358. ]
  46359. ))
  46360. characterMakers.push(() => makeCharacter(
  46361. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46362. {
  46363. normal: {
  46364. height: math.unit(6 + 1/12, "feet"),
  46365. weight: math.unit(180, "lb"),
  46366. name: "Normal",
  46367. image: {
  46368. source: "./media/characters/leanne-lycheborne/normal.svg",
  46369. extra: 1748/1660,
  46370. bottom: 98/1846
  46371. }
  46372. },
  46373. were: {
  46374. height: math.unit(12, "feet"),
  46375. weight: math.unit(1600, "lb"),
  46376. name: "Were",
  46377. image: {
  46378. source: "./media/characters/leanne-lycheborne/were.svg",
  46379. extra: 1485/1432,
  46380. bottom: 66/1551
  46381. }
  46382. },
  46383. },
  46384. [
  46385. {
  46386. name: "Normal",
  46387. height: math.unit(6 + 1/12, "feet"),
  46388. default: true
  46389. },
  46390. ]
  46391. ))
  46392. characterMakers.push(() => makeCharacter(
  46393. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46394. {
  46395. side: {
  46396. height: math.unit(13, "feet"),
  46397. name: "Side",
  46398. image: {
  46399. source: "./media/characters/kira-tyler/side.svg",
  46400. extra: 693/393,
  46401. bottom: 58/751
  46402. }
  46403. },
  46404. },
  46405. [
  46406. {
  46407. name: "Normal",
  46408. height: math.unit(13, "feet"),
  46409. default: true
  46410. },
  46411. ]
  46412. ))
  46413. characterMakers.push(() => makeCharacter(
  46414. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46415. {
  46416. front: {
  46417. height: math.unit(10.3, "feet"),
  46418. weight: math.unit(150, "lb"),
  46419. name: "Front",
  46420. image: {
  46421. source: "./media/characters/blaze/front.svg",
  46422. extra: 1378/1286,
  46423. bottom: 172/1550
  46424. }
  46425. },
  46426. },
  46427. [
  46428. {
  46429. name: "Normal",
  46430. height: math.unit(10.3, "feet"),
  46431. default: true
  46432. },
  46433. ]
  46434. ))
  46435. characterMakers.push(() => makeCharacter(
  46436. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46437. {
  46438. side: {
  46439. height: math.unit(2, "meters"),
  46440. weight: math.unit(400, "kg"),
  46441. name: "Side",
  46442. image: {
  46443. source: "./media/characters/anu/side.svg",
  46444. extra: 506/394,
  46445. bottom: 18/524
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Humanoid",
  46452. height: math.unit(2, "meters")
  46453. },
  46454. {
  46455. name: "Normal",
  46456. height: math.unit(5, "meters"),
  46457. default: true
  46458. },
  46459. ]
  46460. ))
  46461. characterMakers.push(() => makeCharacter(
  46462. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46463. {
  46464. front: {
  46465. height: math.unit(5 + 5/12, "feet"),
  46466. weight: math.unit(170, "lb"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/synx-the-lynx/front.svg",
  46470. extra: 1893/1745,
  46471. bottom: 17/1910
  46472. }
  46473. },
  46474. side: {
  46475. height: math.unit(5 + 5/12, "feet"),
  46476. weight: math.unit(170, "lb"),
  46477. name: "Side",
  46478. image: {
  46479. source: "./media/characters/synx-the-lynx/side.svg",
  46480. extra: 1884/1740,
  46481. bottom: 39/1923
  46482. }
  46483. },
  46484. back: {
  46485. height: math.unit(5 + 5/12, "feet"),
  46486. weight: math.unit(170, "lb"),
  46487. name: "Back",
  46488. image: {
  46489. source: "./media/characters/synx-the-lynx/back.svg",
  46490. extra: 1903/1755,
  46491. bottom: 14/1917
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Normal",
  46498. height: math.unit(5 + 5/12, "feet"),
  46499. default: true
  46500. },
  46501. ]
  46502. ))
  46503. characterMakers.push(() => makeCharacter(
  46504. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46505. {
  46506. back: {
  46507. height: math.unit(15, "feet"),
  46508. name: "Back",
  46509. image: {
  46510. source: "./media/characters/nadezda-fex/back.svg",
  46511. extra: 1695/1481,
  46512. bottom: 25/1720
  46513. }
  46514. },
  46515. },
  46516. [
  46517. {
  46518. name: "Normal",
  46519. height: math.unit(15, "feet"),
  46520. default: true
  46521. },
  46522. {
  46523. name: "Macro",
  46524. height: math.unit(2.5, "miles")
  46525. },
  46526. {
  46527. name: "Goddess",
  46528. height: math.unit(2, "multiverses")
  46529. },
  46530. ]
  46531. ))
  46532. characterMakers.push(() => makeCharacter(
  46533. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46534. {
  46535. front: {
  46536. height: math.unit(216, "cm"),
  46537. name: "Front",
  46538. image: {
  46539. source: "./media/characters/lev/front.svg",
  46540. extra: 1728/1670,
  46541. bottom: 82/1810
  46542. }
  46543. },
  46544. back: {
  46545. height: math.unit(216, "cm"),
  46546. name: "Back",
  46547. image: {
  46548. source: "./media/characters/lev/back.svg",
  46549. extra: 1738/1675,
  46550. bottom: 24/1762
  46551. }
  46552. },
  46553. dressed: {
  46554. height: math.unit(216, "cm"),
  46555. name: "Dressed",
  46556. image: {
  46557. source: "./media/characters/lev/dressed.svg",
  46558. extra: 1397/1351,
  46559. bottom: 73/1470
  46560. }
  46561. },
  46562. head: {
  46563. height: math.unit(0.51, "meter"),
  46564. name: "Head",
  46565. image: {
  46566. source: "./media/characters/lev/head.svg"
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(216, "cm"),
  46574. default: true
  46575. },
  46576. {
  46577. name: "Relatively Macro",
  46578. height: math.unit(80, "meters")
  46579. },
  46580. {
  46581. name: "Megamacro",
  46582. height: math.unit(21600, "meters")
  46583. },
  46584. {
  46585. name: "Megamacro+",
  46586. height: math.unit(64800, "meters")
  46587. },
  46588. ]
  46589. ))
  46590. characterMakers.push(() => makeCharacter(
  46591. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46592. {
  46593. front: {
  46594. height: math.unit(2, "meters"),
  46595. weight: math.unit(80, "kg"),
  46596. name: "Front",
  46597. image: {
  46598. source: "./media/characters/moka/front.svg",
  46599. extra: 1337/1255,
  46600. bottom: 58/1395
  46601. }
  46602. },
  46603. },
  46604. [
  46605. {
  46606. name: "Micro",
  46607. height: math.unit(15, "cm")
  46608. },
  46609. {
  46610. name: "Normal",
  46611. height: math.unit(2, "meters"),
  46612. default: true
  46613. },
  46614. {
  46615. name: "Macro",
  46616. height: math.unit(20, "meters"),
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46622. {
  46623. front: {
  46624. height: math.unit(9, "feet"),
  46625. weight: math.unit(240, "lb"),
  46626. name: "Front",
  46627. image: {
  46628. source: "./media/characters/kuzco/front.svg",
  46629. extra: 1593/1487,
  46630. bottom: 32/1625
  46631. }
  46632. },
  46633. side: {
  46634. height: math.unit(9, "feet"),
  46635. weight: math.unit(240, "lb"),
  46636. name: "Side",
  46637. image: {
  46638. source: "./media/characters/kuzco/side.svg",
  46639. extra: 1575/1485,
  46640. bottom: 30/1605
  46641. }
  46642. },
  46643. back: {
  46644. height: math.unit(9, "feet"),
  46645. weight: math.unit(240, "lb"),
  46646. name: "Back",
  46647. image: {
  46648. source: "./media/characters/kuzco/back.svg",
  46649. extra: 1603/1514,
  46650. bottom: 14/1617
  46651. }
  46652. },
  46653. },
  46654. [
  46655. {
  46656. name: "Normal",
  46657. height: math.unit(9, "feet"),
  46658. default: true
  46659. },
  46660. ]
  46661. ))
  46662. characterMakers.push(() => makeCharacter(
  46663. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46664. {
  46665. side: {
  46666. height: math.unit(2, "meters"),
  46667. weight: math.unit(300, "kg"),
  46668. name: "Side",
  46669. image: {
  46670. source: "./media/characters/ceruleus/side.svg",
  46671. extra: 1068/974,
  46672. bottom: 126/1194
  46673. }
  46674. },
  46675. },
  46676. [
  46677. {
  46678. name: "Normal",
  46679. height: math.unit(16, "meters"),
  46680. default: true
  46681. },
  46682. ]
  46683. ))
  46684. characterMakers.push(() => makeCharacter(
  46685. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46686. {
  46687. front: {
  46688. height: math.unit(9, "feet"),
  46689. weight: math.unit(500, "kg"),
  46690. name: "Front",
  46691. image: {
  46692. source: "./media/characters/acouya/front.svg",
  46693. extra: 1660/1473,
  46694. bottom: 28/1688
  46695. }
  46696. },
  46697. },
  46698. [
  46699. {
  46700. name: "Normal",
  46701. height: math.unit(9, "feet"),
  46702. default: true
  46703. },
  46704. ]
  46705. ))
  46706. characterMakers.push(() => makeCharacter(
  46707. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46708. {
  46709. front: {
  46710. height: math.unit(5 + 6/12, "feet"),
  46711. weight: math.unit(195, "lb"),
  46712. name: "Front",
  46713. image: {
  46714. source: "./media/characters/vant/front.svg",
  46715. extra: 1396/1320,
  46716. bottom: 20/1416
  46717. }
  46718. },
  46719. back: {
  46720. height: math.unit(5 + 6/12, "feet"),
  46721. weight: math.unit(195, "lb"),
  46722. name: "Back",
  46723. image: {
  46724. source: "./media/characters/vant/back.svg",
  46725. extra: 1396/1320,
  46726. bottom: 20/1416
  46727. }
  46728. },
  46729. maw: {
  46730. height: math.unit(0.75, "feet"),
  46731. name: "Maw",
  46732. image: {
  46733. source: "./media/characters/vant/maw.svg"
  46734. }
  46735. },
  46736. paw: {
  46737. height: math.unit(1.07, "feet"),
  46738. name: "Paw",
  46739. image: {
  46740. source: "./media/characters/vant/paw.svg"
  46741. }
  46742. },
  46743. },
  46744. [
  46745. {
  46746. name: "Micro",
  46747. height: math.unit(0.25, "inches")
  46748. },
  46749. {
  46750. name: "Normal",
  46751. height: math.unit(5 + 6/12, "feet"),
  46752. default: true
  46753. },
  46754. {
  46755. name: "Macro",
  46756. height: math.unit(75, "feet")
  46757. },
  46758. ]
  46759. ))
  46760. characterMakers.push(() => makeCharacter(
  46761. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46762. {
  46763. front: {
  46764. height: math.unit(30, "meters"),
  46765. weight: math.unit(363, "tons"),
  46766. name: "Front",
  46767. image: {
  46768. source: "./media/characters/ahra/front.svg",
  46769. extra: 1914/1814,
  46770. bottom: 46/1960
  46771. }
  46772. },
  46773. },
  46774. [
  46775. {
  46776. name: "Macro",
  46777. height: math.unit(30, "meters"),
  46778. default: true
  46779. },
  46780. ]
  46781. ))
  46782. characterMakers.push(() => makeCharacter(
  46783. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46784. {
  46785. undressed: {
  46786. height: math.unit(2, "m"),
  46787. weight: math.unit(250, "kg"),
  46788. name: "Undressed",
  46789. image: {
  46790. source: "./media/characters/coriander/undressed.svg",
  46791. extra: 1757/1606,
  46792. bottom: 107/1864
  46793. }
  46794. },
  46795. dressed: {
  46796. height: math.unit(2, "m"),
  46797. weight: math.unit(250, "kg"),
  46798. name: "Dressed",
  46799. image: {
  46800. source: "./media/characters/coriander/dressed.svg",
  46801. extra: 1757/1606,
  46802. bottom: 107/1864
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Normal",
  46809. height: math.unit(4, "meters"),
  46810. default: true
  46811. },
  46812. {
  46813. name: "XL",
  46814. height: math.unit(6, "meters")
  46815. },
  46816. {
  46817. name: "XXL",
  46818. height: math.unit(8, "meters")
  46819. },
  46820. ]
  46821. ))
  46822. characterMakers.push(() => makeCharacter(
  46823. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46824. {
  46825. front: {
  46826. height: math.unit(6, "feet"),
  46827. name: "Front",
  46828. image: {
  46829. source: "./media/characters/syrinx/front.svg",
  46830. extra: 1557/1259,
  46831. bottom: 171/1728
  46832. }
  46833. },
  46834. },
  46835. [
  46836. {
  46837. name: "Normal",
  46838. height: math.unit(6 + 3/12, "feet"),
  46839. default: true
  46840. },
  46841. ]
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46845. {
  46846. front: {
  46847. height: math.unit(11 + 6/12, "feet"),
  46848. weight: math.unit(1.5, "tons"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/bor/front.svg",
  46852. extra: 1189/1109,
  46853. bottom: 170/1359
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Normal",
  46860. height: math.unit(11 + 6/12, "feet"),
  46861. default: true
  46862. },
  46863. {
  46864. name: "Macro",
  46865. height: math.unit(32 + 9/12, "feet")
  46866. },
  46867. ]
  46868. ))
  46869. characterMakers.push(() => makeCharacter(
  46870. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46871. {
  46872. anthro: {
  46873. height: math.unit(9, "feet"),
  46874. weight: math.unit(2076, "lb"),
  46875. name: "Anthro",
  46876. image: {
  46877. source: "./media/characters/abacus/anthro.svg",
  46878. extra: 1540/1494,
  46879. bottom: 233/1773
  46880. }
  46881. },
  46882. pigeon: {
  46883. height: math.unit(1, "feet"),
  46884. name: "Pigeon",
  46885. image: {
  46886. source: "./media/characters/abacus/pigeon.svg",
  46887. extra: 528/525,
  46888. bottom: 46/574
  46889. }
  46890. },
  46891. },
  46892. [
  46893. {
  46894. name: "Normal",
  46895. height: math.unit(9, "feet"),
  46896. default: true
  46897. },
  46898. ]
  46899. ))
  46900. characterMakers.push(() => makeCharacter(
  46901. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46902. {
  46903. side: {
  46904. height: math.unit(6, "feet"),
  46905. name: "Side",
  46906. image: {
  46907. source: "./media/characters/delkhan/side.svg",
  46908. extra: 1884/1786,
  46909. bottom: 308/2192
  46910. }
  46911. },
  46912. head: {
  46913. height: math.unit(3.38, "feet"),
  46914. name: "Head",
  46915. image: {
  46916. source: "./media/characters/delkhan/head.svg"
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(72, "feet"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Giant",
  46928. height: math.unit(172, "feet")
  46929. },
  46930. ]
  46931. ))
  46932. characterMakers.push(() => makeCharacter(
  46933. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46934. {
  46935. standing: {
  46936. height: math.unit(6, "feet"),
  46937. name: "Standing",
  46938. image: {
  46939. source: "./media/characters/euchidat/standing.svg",
  46940. extra: 1612/1553,
  46941. bottom: 116/1728
  46942. }
  46943. },
  46944. leaning: {
  46945. height: math.unit(6, "feet"),
  46946. name: "Leaning",
  46947. image: {
  46948. source: "./media/characters/euchidat/leaning.svg",
  46949. extra: 1719/1674,
  46950. bottom: 27/1746
  46951. }
  46952. },
  46953. },
  46954. [
  46955. {
  46956. name: "Normal",
  46957. height: math.unit(175, "feet"),
  46958. default: true
  46959. },
  46960. {
  46961. name: "Megamacro",
  46962. height: math.unit(190, "miles")
  46963. },
  46964. {
  46965. name: "Gigamacro",
  46966. height: math.unit(190000, "miles")
  46967. },
  46968. ]
  46969. ))
  46970. characterMakers.push(() => makeCharacter(
  46971. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46972. {
  46973. front: {
  46974. height: math.unit(6, "feet"),
  46975. weight: math.unit(150, "lb"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/rebecca-stack/front.svg",
  46979. extra: 1256/1201,
  46980. bottom: 18/1274
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Normal",
  46987. height: math.unit(5 + 8/12, "feet"),
  46988. default: true
  46989. },
  46990. {
  46991. name: "Demolitionist",
  46992. height: math.unit(200, "feet")
  46993. },
  46994. {
  46995. name: "Out of Control",
  46996. height: math.unit(2, "miles")
  46997. },
  46998. {
  46999. name: "Giga",
  47000. height: math.unit(7200, "miles")
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47006. {
  47007. front: {
  47008. height: math.unit(6, "feet"),
  47009. weight: math.unit(150, "lb"),
  47010. name: "Front",
  47011. image: {
  47012. source: "./media/characters/jenny-cartwright/front.svg",
  47013. extra: 1384/1376,
  47014. bottom: 58/1442
  47015. }
  47016. },
  47017. },
  47018. [
  47019. {
  47020. name: "Normal",
  47021. height: math.unit(6 + 7/12, "feet"),
  47022. default: true
  47023. },
  47024. {
  47025. name: "Librarian",
  47026. height: math.unit(55, "feet")
  47027. },
  47028. {
  47029. name: "Sightseer",
  47030. height: math.unit(50, "miles")
  47031. },
  47032. {
  47033. name: "Giga",
  47034. height: math.unit(30000, "miles")
  47035. },
  47036. ]
  47037. ))
  47038. characterMakers.push(() => makeCharacter(
  47039. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47040. {
  47041. nude: {
  47042. height: math.unit(8, "feet"),
  47043. weight: math.unit(225, "lb"),
  47044. name: "Nude",
  47045. image: {
  47046. source: "./media/characters/marvy/nude.svg",
  47047. extra: 1900/1683,
  47048. bottom: 89/1989
  47049. }
  47050. },
  47051. dressed: {
  47052. height: math.unit(8, "feet"),
  47053. weight: math.unit(225, "lb"),
  47054. name: "Dressed",
  47055. image: {
  47056. source: "./media/characters/marvy/dressed.svg",
  47057. extra: 1900/1683,
  47058. bottom: 89/1989
  47059. }
  47060. },
  47061. head: {
  47062. height: math.unit(2.85, "feet"),
  47063. name: "Head",
  47064. image: {
  47065. source: "./media/characters/marvy/head.svg"
  47066. }
  47067. },
  47068. },
  47069. [
  47070. {
  47071. name: "Normal",
  47072. height: math.unit(8, "feet"),
  47073. default: true
  47074. },
  47075. ]
  47076. ))
  47077. characterMakers.push(() => makeCharacter(
  47078. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47079. {
  47080. front: {
  47081. height: math.unit(8, "feet"),
  47082. weight: math.unit(250, "lb"),
  47083. name: "Front",
  47084. image: {
  47085. source: "./media/characters/leah/front.svg",
  47086. extra: 1257/1149,
  47087. bottom: 109/1366
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(8, "feet"),
  47095. default: true
  47096. },
  47097. {
  47098. name: "Minimacro",
  47099. height: math.unit(40, "feet")
  47100. },
  47101. {
  47102. name: "Macro",
  47103. height: math.unit(124, "feet")
  47104. },
  47105. {
  47106. name: "Megamacro",
  47107. height: math.unit(850, "feet")
  47108. },
  47109. ]
  47110. ))
  47111. characterMakers.push(() => makeCharacter(
  47112. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47113. {
  47114. side: {
  47115. height: math.unit(13 + 6/12, "feet"),
  47116. weight: math.unit(3200, "lb"),
  47117. name: "Side",
  47118. image: {
  47119. source: "./media/characters/alvir/side.svg",
  47120. extra: 896/589,
  47121. bottom: 26/922
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Normal",
  47128. height: math.unit(13 + 6/12, "feet"),
  47129. default: true
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47135. {
  47136. front: {
  47137. height: math.unit(5 + 4/12, "feet"),
  47138. weight: math.unit(236, "lb"),
  47139. name: "Front",
  47140. image: {
  47141. source: "./media/characters/zaina-khalil/front.svg",
  47142. extra: 1533/1485,
  47143. bottom: 94/1627
  47144. }
  47145. },
  47146. side: {
  47147. height: math.unit(5 + 4/12, "feet"),
  47148. weight: math.unit(236, "lb"),
  47149. name: "Side",
  47150. image: {
  47151. source: "./media/characters/zaina-khalil/side.svg",
  47152. extra: 1537/1498,
  47153. bottom: 66/1603
  47154. }
  47155. },
  47156. back: {
  47157. height: math.unit(5 + 4/12, "feet"),
  47158. weight: math.unit(236, "lb"),
  47159. name: "Back",
  47160. image: {
  47161. source: "./media/characters/zaina-khalil/back.svg",
  47162. extra: 1546/1494,
  47163. bottom: 89/1635
  47164. }
  47165. },
  47166. },
  47167. [
  47168. {
  47169. name: "Normal",
  47170. height: math.unit(5 + 4/12, "feet"),
  47171. default: true
  47172. },
  47173. ]
  47174. ))
  47175. characterMakers.push(() => makeCharacter(
  47176. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47177. {
  47178. side: {
  47179. height: math.unit(12, "feet"),
  47180. weight: math.unit(4000, "lb"),
  47181. name: "Side",
  47182. image: {
  47183. source: "./media/characters/terry/side.svg",
  47184. extra: 1518/1439,
  47185. bottom: 149/1667
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(12, "feet"),
  47193. default: true
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47199. {
  47200. front: {
  47201. height: math.unit(12, "feet"),
  47202. weight: math.unit(1500, "lb"),
  47203. name: "Front",
  47204. image: {
  47205. source: "./media/characters/kahea/front.svg",
  47206. extra: 1722/1617,
  47207. bottom: 179/1901
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Normal",
  47214. height: math.unit(12, "feet"),
  47215. default: true
  47216. },
  47217. ]
  47218. ))
  47219. characterMakers.push(() => makeCharacter(
  47220. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47221. {
  47222. demonFront: {
  47223. height: math.unit(36, "feet"),
  47224. name: "Front",
  47225. image: {
  47226. source: "./media/characters/alex-xuria/demon-front.svg",
  47227. extra: 1705/1673,
  47228. bottom: 198/1903
  47229. },
  47230. form: "demon",
  47231. default: true
  47232. },
  47233. demonBack: {
  47234. height: math.unit(36, "feet"),
  47235. name: "Back",
  47236. image: {
  47237. source: "./media/characters/alex-xuria/demon-back.svg",
  47238. extra: 1725/1693,
  47239. bottom: 70/1795
  47240. },
  47241. form: "demon"
  47242. },
  47243. demonHead: {
  47244. height: math.unit(2.14, "meters"),
  47245. name: "Head",
  47246. image: {
  47247. source: "./media/characters/alex-xuria/demon-head.svg"
  47248. },
  47249. form: "demon"
  47250. },
  47251. demonHand: {
  47252. height: math.unit(1.61, "meters"),
  47253. name: "Hand",
  47254. image: {
  47255. source: "./media/characters/alex-xuria/demon-hand.svg"
  47256. },
  47257. form: "demon"
  47258. },
  47259. demonPaw: {
  47260. height: math.unit(1.35, "meters"),
  47261. name: "Paw",
  47262. image: {
  47263. source: "./media/characters/alex-xuria/demon-paw.svg"
  47264. },
  47265. form: "demon"
  47266. },
  47267. demonFoot: {
  47268. height: math.unit(2.2, "meters"),
  47269. name: "Foot",
  47270. image: {
  47271. source: "./media/characters/alex-xuria/demon-foot.svg"
  47272. },
  47273. form: "demon"
  47274. },
  47275. demonCock: {
  47276. height: math.unit(1.74, "meters"),
  47277. name: "Cock",
  47278. image: {
  47279. source: "./media/characters/alex-xuria/demon-cock.svg"
  47280. },
  47281. form: "demon"
  47282. },
  47283. demonTailClosed: {
  47284. height: math.unit(1.47, "meters"),
  47285. name: "Tail (Closed)",
  47286. image: {
  47287. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47288. },
  47289. form: "demon"
  47290. },
  47291. demonTailOpen: {
  47292. height: math.unit(2.85, "meters"),
  47293. name: "Tail (Open)",
  47294. image: {
  47295. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47296. },
  47297. form: "demon"
  47298. },
  47299. incubusFront: {
  47300. height: math.unit(12, "feet"),
  47301. name: "Front",
  47302. image: {
  47303. source: "./media/characters/alex-xuria/incubus-front.svg",
  47304. extra: 1754/1677,
  47305. bottom: 125/1879
  47306. },
  47307. form: "incubus",
  47308. default: true
  47309. },
  47310. incubusBack: {
  47311. height: math.unit(12, "feet"),
  47312. name: "Back",
  47313. image: {
  47314. source: "./media/characters/alex-xuria/incubus-back.svg",
  47315. extra: 1702/1647,
  47316. bottom: 30/1732
  47317. },
  47318. form: "incubus"
  47319. },
  47320. incubusHead: {
  47321. height: math.unit(3.45, "feet"),
  47322. name: "Head",
  47323. image: {
  47324. source: "./media/characters/alex-xuria/incubus-head.svg"
  47325. },
  47326. form: "incubus"
  47327. },
  47328. rabbitFront: {
  47329. height: math.unit(6, "feet"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47333. extra: 1369/1349,
  47334. bottom: 45/1414
  47335. },
  47336. form: "rabbit",
  47337. default: true
  47338. },
  47339. rabbitSide: {
  47340. height: math.unit(6, "feet"),
  47341. name: "Side",
  47342. image: {
  47343. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47344. extra: 1370/1356,
  47345. bottom: 37/1407
  47346. },
  47347. form: "rabbit"
  47348. },
  47349. rabbitBack: {
  47350. height: math.unit(6, "feet"),
  47351. name: "Back",
  47352. image: {
  47353. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47354. extra: 1375/1358,
  47355. bottom: 43/1418
  47356. },
  47357. form: "rabbit"
  47358. },
  47359. },
  47360. [
  47361. {
  47362. name: "Normal",
  47363. height: math.unit(6, "feet"),
  47364. default: true,
  47365. form: "rabbit"
  47366. },
  47367. {
  47368. name: "Incubus",
  47369. height: math.unit(12, "feet"),
  47370. default: true,
  47371. form: "incubus"
  47372. },
  47373. {
  47374. name: "Demon",
  47375. height: math.unit(36, "feet"),
  47376. default: true,
  47377. form: "demon"
  47378. }
  47379. ],
  47380. {
  47381. "demon": {
  47382. name: "Demon",
  47383. default: true
  47384. },
  47385. "incubus": {
  47386. name: "Incubus",
  47387. },
  47388. "rabbit": {
  47389. name: "Rabbit"
  47390. }
  47391. }
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47395. {
  47396. front: {
  47397. height: math.unit(7 + 5/12, "feet"),
  47398. weight: math.unit(510, "lb"),
  47399. name: "Front",
  47400. image: {
  47401. source: "./media/characters/syrup/front.svg",
  47402. extra: 932/916,
  47403. bottom: 26/958
  47404. }
  47405. },
  47406. },
  47407. [
  47408. {
  47409. name: "Normal",
  47410. height: math.unit(7 + 5/12, "feet"),
  47411. default: true
  47412. },
  47413. {
  47414. name: "Big",
  47415. height: math.unit(50, "feet")
  47416. },
  47417. {
  47418. name: "Macro",
  47419. height: math.unit(300, "feet")
  47420. },
  47421. {
  47422. name: "Megamacro",
  47423. height: math.unit(1, "mile")
  47424. },
  47425. ]
  47426. ))
  47427. characterMakers.push(() => makeCharacter(
  47428. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47429. {
  47430. front: {
  47431. height: math.unit(6 + 9/12, "feet"),
  47432. name: "Front",
  47433. image: {
  47434. source: "./media/characters/zeimne/front.svg",
  47435. extra: 1969/1806,
  47436. bottom: 53/2022
  47437. }
  47438. },
  47439. },
  47440. [
  47441. {
  47442. name: "Normal",
  47443. height: math.unit(6 + 9/12, "feet"),
  47444. default: true
  47445. },
  47446. {
  47447. name: "Giant",
  47448. height: math.unit(550, "feet")
  47449. },
  47450. {
  47451. name: "Mega",
  47452. height: math.unit(3, "miles")
  47453. },
  47454. {
  47455. name: "Giga",
  47456. height: math.unit(250, "miles")
  47457. },
  47458. {
  47459. name: "Tera",
  47460. height: math.unit(1, "AU")
  47461. },
  47462. ]
  47463. ))
  47464. characterMakers.push(() => makeCharacter(
  47465. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47466. {
  47467. front: {
  47468. height: math.unit(5 + 2/12, "feet"),
  47469. name: "Front",
  47470. image: {
  47471. source: "./media/characters/grar/front.svg",
  47472. extra: 1331/1119,
  47473. bottom: 60/1391
  47474. }
  47475. },
  47476. back: {
  47477. height: math.unit(5 + 2/12, "feet"),
  47478. name: "Back",
  47479. image: {
  47480. source: "./media/characters/grar/back.svg",
  47481. extra: 1385/1169,
  47482. bottom: 23/1408
  47483. }
  47484. },
  47485. },
  47486. [
  47487. {
  47488. name: "Normal",
  47489. height: math.unit(5 + 2/12, "feet"),
  47490. default: true
  47491. },
  47492. ]
  47493. ))
  47494. characterMakers.push(() => makeCharacter(
  47495. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47496. {
  47497. front: {
  47498. height: math.unit(13 + 7/12, "feet"),
  47499. weight: math.unit(2200, "lb"),
  47500. name: "Front",
  47501. image: {
  47502. source: "./media/characters/endraya/front.svg",
  47503. extra: 1289/1215,
  47504. bottom: 50/1339
  47505. }
  47506. },
  47507. nude: {
  47508. height: math.unit(13 + 7/12, "feet"),
  47509. weight: math.unit(2200, "lb"),
  47510. name: "Nude",
  47511. image: {
  47512. source: "./media/characters/endraya/nude.svg",
  47513. extra: 1247/1171,
  47514. bottom: 40/1287
  47515. }
  47516. },
  47517. head: {
  47518. height: math.unit(2.6, "feet"),
  47519. name: "Head",
  47520. image: {
  47521. source: "./media/characters/endraya/head.svg"
  47522. }
  47523. },
  47524. slit: {
  47525. height: math.unit(3.4, "feet"),
  47526. name: "Slit",
  47527. image: {
  47528. source: "./media/characters/endraya/slit.svg"
  47529. }
  47530. },
  47531. },
  47532. [
  47533. {
  47534. name: "Normal",
  47535. height: math.unit(13 + 7/12, "feet"),
  47536. default: true
  47537. },
  47538. {
  47539. name: "Macro",
  47540. height: math.unit(200, "feet")
  47541. },
  47542. ]
  47543. ))
  47544. characterMakers.push(() => makeCharacter(
  47545. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47546. {
  47547. front: {
  47548. height: math.unit(1.81, "meters"),
  47549. weight: math.unit(69, "kg"),
  47550. name: "Front",
  47551. image: {
  47552. source: "./media/characters/rodryana/front.svg",
  47553. extra: 2002/1921,
  47554. bottom: 53/2055
  47555. }
  47556. },
  47557. back: {
  47558. height: math.unit(1.81, "meters"),
  47559. weight: math.unit(69, "kg"),
  47560. name: "Back",
  47561. image: {
  47562. source: "./media/characters/rodryana/back.svg",
  47563. extra: 1993/1926,
  47564. bottom: 48/2041
  47565. }
  47566. },
  47567. maw: {
  47568. height: math.unit(0.19769417475, "meters"),
  47569. name: "Maw",
  47570. image: {
  47571. source: "./media/characters/rodryana/maw.svg"
  47572. }
  47573. },
  47574. slit: {
  47575. height: math.unit(0.31631067961, "meters"),
  47576. name: "Slit",
  47577. image: {
  47578. source: "./media/characters/rodryana/slit.svg"
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(1.81, "meters")
  47586. },
  47587. {
  47588. name: "Mini Macro",
  47589. height: math.unit(181, "meters")
  47590. },
  47591. {
  47592. name: "Macro",
  47593. height: math.unit(452, "meters"),
  47594. default: true
  47595. },
  47596. {
  47597. name: "Mega Macro",
  47598. height: math.unit(1.375, "km")
  47599. },
  47600. {
  47601. name: "Giga Macro",
  47602. height: math.unit(13.575, "km")
  47603. },
  47604. ]
  47605. ))
  47606. characterMakers.push(() => makeCharacter(
  47607. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47608. {
  47609. front: {
  47610. height: math.unit(6, "feet"),
  47611. weight: math.unit(1000, "lb"),
  47612. name: "Front",
  47613. image: {
  47614. source: "./media/characters/asaya/front.svg",
  47615. extra: 1460/1200,
  47616. bottom: 71/1531
  47617. }
  47618. },
  47619. },
  47620. [
  47621. {
  47622. name: "Normal",
  47623. height: math.unit(8, "km"),
  47624. default: true
  47625. },
  47626. ]
  47627. ))
  47628. characterMakers.push(() => makeCharacter(
  47629. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47630. {
  47631. front: {
  47632. height: math.unit(3.5, "meters"),
  47633. name: "Front",
  47634. image: {
  47635. source: "./media/characters/sarzu-and-israz/front.svg",
  47636. extra: 1570/1558,
  47637. bottom: 150/1720
  47638. },
  47639. },
  47640. back: {
  47641. height: math.unit(3.5, "meters"),
  47642. name: "Back",
  47643. image: {
  47644. source: "./media/characters/sarzu-and-israz/back.svg",
  47645. extra: 1523/1509,
  47646. bottom: 132/1655
  47647. },
  47648. },
  47649. frontFemale: {
  47650. height: math.unit(3.5, "meters"),
  47651. name: "Front (Female)",
  47652. image: {
  47653. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47654. extra: 1570/1558,
  47655. bottom: 150/1720
  47656. },
  47657. },
  47658. frontHerm: {
  47659. height: math.unit(3.5, "meters"),
  47660. name: "Front (Herm)",
  47661. image: {
  47662. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47663. extra: 1570/1558,
  47664. bottom: 150/1720
  47665. },
  47666. },
  47667. },
  47668. [
  47669. {
  47670. name: "Normal",
  47671. height: math.unit(3.5, "meters"),
  47672. default: true,
  47673. },
  47674. {
  47675. name: "Macro",
  47676. height: math.unit(65.5, "meters"),
  47677. },
  47678. ],
  47679. ))
  47680. characterMakers.push(() => makeCharacter(
  47681. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47682. {
  47683. front: {
  47684. height: math.unit(6, "feet"),
  47685. weight: math.unit(250, "lb"),
  47686. name: "Front",
  47687. image: {
  47688. source: "./media/characters/zenimma/front.svg",
  47689. extra: 1346/1320,
  47690. bottom: 58/1404
  47691. }
  47692. },
  47693. back: {
  47694. height: math.unit(6, "feet"),
  47695. weight: math.unit(250, "lb"),
  47696. name: "Back",
  47697. image: {
  47698. source: "./media/characters/zenimma/back.svg",
  47699. extra: 1324/1308,
  47700. bottom: 44/1368
  47701. }
  47702. },
  47703. dick: {
  47704. height: math.unit(1.44, "feet"),
  47705. name: "Dick",
  47706. image: {
  47707. source: "./media/characters/zenimma/dick.svg"
  47708. }
  47709. },
  47710. },
  47711. [
  47712. {
  47713. name: "Canon Height",
  47714. height: math.unit(66, "miles"),
  47715. default: true
  47716. },
  47717. ]
  47718. ))
  47719. characterMakers.push(() => makeCharacter(
  47720. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47721. {
  47722. nude: {
  47723. height: math.unit(6, "feet"),
  47724. weight: math.unit(150, "lb"),
  47725. name: "Nude",
  47726. image: {
  47727. source: "./media/characters/shavon/nude.svg",
  47728. extra: 1242/1096,
  47729. bottom: 98/1340
  47730. }
  47731. },
  47732. dressed: {
  47733. height: math.unit(6, "feet"),
  47734. weight: math.unit(150, "lb"),
  47735. name: "Dressed",
  47736. image: {
  47737. source: "./media/characters/shavon/dressed.svg",
  47738. extra: 1242/1096,
  47739. bottom: 98/1340
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Macro",
  47746. height: math.unit(255, "feet"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(6, "feet"),
  47756. name: "Front",
  47757. image: {
  47758. source: "./media/characters/steph/front.svg",
  47759. extra: 1430/1330,
  47760. bottom: 54/1484
  47761. }
  47762. },
  47763. },
  47764. [
  47765. {
  47766. name: "Normal",
  47767. height: math.unit(6, "feet"),
  47768. default: true
  47769. },
  47770. ]
  47771. ))
  47772. characterMakers.push(() => makeCharacter(
  47773. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47774. {
  47775. front: {
  47776. height: math.unit(9, "feet"),
  47777. weight: math.unit(400, "lb"),
  47778. name: "Front",
  47779. image: {
  47780. source: "./media/characters/kil'aman/front.svg",
  47781. extra: 1210/1159,
  47782. bottom: 109/1319
  47783. }
  47784. },
  47785. head: {
  47786. height: math.unit(2.14, "feet"),
  47787. name: "Head",
  47788. image: {
  47789. source: "./media/characters/kil'aman/head.svg"
  47790. }
  47791. },
  47792. maw: {
  47793. height: math.unit(1.21, "feet"),
  47794. name: "Maw",
  47795. image: {
  47796. source: "./media/characters/kil'aman/maw.svg"
  47797. }
  47798. },
  47799. foot: {
  47800. height: math.unit(1.7, "feet"),
  47801. name: "Foot",
  47802. image: {
  47803. source: "./media/characters/kil'aman/foot.svg"
  47804. }
  47805. },
  47806. dick: {
  47807. height: math.unit(2.1, "feet"),
  47808. name: "Dick",
  47809. image: {
  47810. source: "./media/characters/kil'aman/dick.svg"
  47811. }
  47812. },
  47813. },
  47814. [
  47815. {
  47816. name: "Normal",
  47817. height: math.unit(9, "feet")
  47818. },
  47819. {
  47820. name: "Canon Height",
  47821. height: math.unit(10, "miles"),
  47822. default: true
  47823. },
  47824. {
  47825. name: "Maximum",
  47826. height: math.unit(6e9, "miles")
  47827. },
  47828. ]
  47829. ))
  47830. characterMakers.push(() => makeCharacter(
  47831. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47832. {
  47833. front: {
  47834. height: math.unit(90, "feet"),
  47835. weight: math.unit(675000, "lb"),
  47836. name: "Front",
  47837. image: {
  47838. source: "./media/characters/qadan/front.svg",
  47839. extra: 1012/1004,
  47840. bottom: 78/1090
  47841. }
  47842. },
  47843. back: {
  47844. height: math.unit(90, "feet"),
  47845. weight: math.unit(675000, "lb"),
  47846. name: "Back",
  47847. image: {
  47848. source: "./media/characters/qadan/back.svg",
  47849. extra: 1042/1031,
  47850. bottom: 55/1097
  47851. }
  47852. },
  47853. armored: {
  47854. height: math.unit(90, "feet"),
  47855. weight: math.unit(675000, "lb"),
  47856. name: "Armored",
  47857. image: {
  47858. source: "./media/characters/qadan/armored.svg",
  47859. extra: 1047/1037,
  47860. bottom: 48/1095
  47861. }
  47862. },
  47863. },
  47864. [
  47865. {
  47866. name: "Normal",
  47867. height: math.unit(90, "feet"),
  47868. default: true
  47869. },
  47870. ]
  47871. ))
  47872. characterMakers.push(() => makeCharacter(
  47873. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47874. {
  47875. front: {
  47876. height: math.unit(6, "feet"),
  47877. weight: math.unit(225, "lb"),
  47878. name: "Front",
  47879. image: {
  47880. source: "./media/characters/brooke/front.svg",
  47881. extra: 1050/1010,
  47882. bottom: 66/1116
  47883. }
  47884. },
  47885. back: {
  47886. height: math.unit(6, "feet"),
  47887. weight: math.unit(225, "lb"),
  47888. name: "Back",
  47889. image: {
  47890. source: "./media/characters/brooke/back.svg",
  47891. extra: 1053/1013,
  47892. bottom: 41/1094
  47893. }
  47894. },
  47895. dressed: {
  47896. height: math.unit(6, "feet"),
  47897. weight: math.unit(225, "lb"),
  47898. name: "Dressed",
  47899. image: {
  47900. source: "./media/characters/brooke/dressed.svg",
  47901. extra: 1050/1010,
  47902. bottom: 66/1116
  47903. }
  47904. },
  47905. },
  47906. [
  47907. {
  47908. name: "Canon Height",
  47909. height: math.unit(500, "miles"),
  47910. default: true
  47911. },
  47912. ]
  47913. ))
  47914. characterMakers.push(() => makeCharacter(
  47915. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47916. {
  47917. front: {
  47918. height: math.unit(6 + 2/12, "feet"),
  47919. weight: math.unit(210, "lb"),
  47920. name: "Front",
  47921. image: {
  47922. source: "./media/characters/wubs/front.svg",
  47923. extra: 1345/1325,
  47924. bottom: 70/1415
  47925. }
  47926. },
  47927. back: {
  47928. height: math.unit(6 + 2/12, "feet"),
  47929. weight: math.unit(210, "lb"),
  47930. name: "Back",
  47931. image: {
  47932. source: "./media/characters/wubs/back.svg",
  47933. extra: 1296/1275,
  47934. bottom: 58/1354
  47935. }
  47936. },
  47937. },
  47938. [
  47939. {
  47940. name: "Normal",
  47941. height: math.unit(6 + 2/12, "feet"),
  47942. default: true
  47943. },
  47944. {
  47945. name: "Macro",
  47946. height: math.unit(1000, "feet")
  47947. },
  47948. {
  47949. name: "Megamacro",
  47950. height: math.unit(1, "mile")
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(4, "feet"),
  47959. weight: math.unit(120, "lb"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/blue/front.svg",
  47963. extra: 1636/1525,
  47964. bottom: 43/1679
  47965. }
  47966. },
  47967. back: {
  47968. height: math.unit(4, "feet"),
  47969. weight: math.unit(120, "lb"),
  47970. name: "Back",
  47971. image: {
  47972. source: "./media/characters/blue/back.svg",
  47973. extra: 1660/1560,
  47974. bottom: 57/1717
  47975. }
  47976. },
  47977. paws: {
  47978. height: math.unit(0.826, "feet"),
  47979. name: "Paws",
  47980. image: {
  47981. source: "./media/characters/blue/paws.svg"
  47982. }
  47983. },
  47984. },
  47985. [
  47986. {
  47987. name: "Micro",
  47988. height: math.unit(3, "inches")
  47989. },
  47990. {
  47991. name: "Normal",
  47992. height: math.unit(4, "feet"),
  47993. default: true
  47994. },
  47995. {
  47996. name: "Femenine Form",
  47997. height: math.unit(14, "feet")
  47998. },
  47999. {
  48000. name: "Werebat Form",
  48001. height: math.unit(18, "feet")
  48002. },
  48003. ]
  48004. ))
  48005. characterMakers.push(() => makeCharacter(
  48006. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48007. {
  48008. female: {
  48009. height: math.unit(7 + 4/12, "feet"),
  48010. weight: math.unit(243, "lb"),
  48011. name: "Female",
  48012. image: {
  48013. source: "./media/characters/kaya/female.svg",
  48014. extra: 975/898,
  48015. bottom: 34/1009
  48016. }
  48017. },
  48018. herm: {
  48019. height: math.unit(7 + 4/12, "feet"),
  48020. weight: math.unit(243, "lb"),
  48021. name: "Herm",
  48022. image: {
  48023. source: "./media/characters/kaya/herm.svg",
  48024. extra: 975/898,
  48025. bottom: 34/1009
  48026. }
  48027. },
  48028. },
  48029. [
  48030. {
  48031. name: "Normal",
  48032. height: math.unit(7 + 4/12, "feet"),
  48033. default: true
  48034. },
  48035. ]
  48036. ))
  48037. characterMakers.push(() => makeCharacter(
  48038. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48039. {
  48040. female: {
  48041. height: math.unit(9 + 4/12, "feet"),
  48042. weight: math.unit(398, "lb"),
  48043. name: "Female",
  48044. image: {
  48045. source: "./media/characters/kassandra/female.svg",
  48046. extra: 908/839,
  48047. bottom: 61/969
  48048. }
  48049. },
  48050. intersex: {
  48051. height: math.unit(9 + 4/12, "feet"),
  48052. weight: math.unit(398, "lb"),
  48053. name: "Intersex",
  48054. image: {
  48055. source: "./media/characters/kassandra/intersex.svg",
  48056. extra: 908/839,
  48057. bottom: 61/969
  48058. }
  48059. },
  48060. },
  48061. [
  48062. {
  48063. name: "Normal",
  48064. height: math.unit(9 + 4/12, "feet"),
  48065. default: true
  48066. },
  48067. ]
  48068. ))
  48069. characterMakers.push(() => makeCharacter(
  48070. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48071. {
  48072. front: {
  48073. height: math.unit(3, "meters"),
  48074. name: "Front",
  48075. image: {
  48076. source: "./media/characters/amy/front.svg",
  48077. extra: 1380/1343,
  48078. bottom: 70/1450
  48079. }
  48080. },
  48081. back: {
  48082. height: math.unit(3, "meters"),
  48083. name: "Back",
  48084. image: {
  48085. source: "./media/characters/amy/back.svg",
  48086. extra: 1380/1347,
  48087. bottom: 66/1446
  48088. }
  48089. },
  48090. },
  48091. [
  48092. {
  48093. name: "Normal",
  48094. height: math.unit(3, "meters"),
  48095. default: true
  48096. },
  48097. ]
  48098. ))
  48099. characterMakers.push(() => makeCharacter(
  48100. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48101. {
  48102. side: {
  48103. height: math.unit(47, "cm"),
  48104. weight: math.unit(10.8, "kg"),
  48105. name: "Side",
  48106. image: {
  48107. source: "./media/characters/alphaschakal/side.svg",
  48108. extra: 1058/568,
  48109. bottom: 62/1120
  48110. }
  48111. },
  48112. back: {
  48113. height: math.unit(78, "cm"),
  48114. weight: math.unit(10.8, "kg"),
  48115. name: "Back",
  48116. image: {
  48117. source: "./media/characters/alphaschakal/back.svg",
  48118. extra: 1102/942,
  48119. bottom: 185/1287
  48120. }
  48121. },
  48122. head: {
  48123. height: math.unit(28, "cm"),
  48124. name: "Head",
  48125. image: {
  48126. source: "./media/characters/alphaschakal/head.svg",
  48127. extra: 696/508,
  48128. bottom: 0/696
  48129. }
  48130. },
  48131. paw: {
  48132. height: math.unit(16, "cm"),
  48133. name: "Paw",
  48134. image: {
  48135. source: "./media/characters/alphaschakal/paw.svg"
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(47, "cm"),
  48143. default: true
  48144. },
  48145. {
  48146. name: "Macro",
  48147. height: math.unit(340, "cm")
  48148. },
  48149. ]
  48150. ))
  48151. characterMakers.push(() => makeCharacter(
  48152. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48153. {
  48154. front: {
  48155. height: math.unit(36, "earths"),
  48156. name: "Front",
  48157. image: {
  48158. source: "./media/characters/ecobyss/front.svg",
  48159. extra: 1282/1215,
  48160. bottom: 11/1293
  48161. }
  48162. },
  48163. back: {
  48164. height: math.unit(36, "earths"),
  48165. name: "Back",
  48166. image: {
  48167. source: "./media/characters/ecobyss/back.svg",
  48168. extra: 1291/1222,
  48169. bottom: 8/1299
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Normal",
  48176. height: math.unit(36, "earths"),
  48177. default: true
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48183. {
  48184. front: {
  48185. height: math.unit(12, "feet"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/vasuk/front.svg",
  48189. extra: 1326/1207,
  48190. bottom: 64/1390
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Normal",
  48197. height: math.unit(12, "feet"),
  48198. default: true
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48204. {
  48205. side: {
  48206. height: math.unit(100, "feet"),
  48207. name: "Side",
  48208. image: {
  48209. source: "./media/characters/linneaus/side.svg",
  48210. extra: 987/807,
  48211. bottom: 47/1034
  48212. }
  48213. },
  48214. },
  48215. [
  48216. {
  48217. name: "Macro",
  48218. height: math.unit(100, "feet"),
  48219. default: true
  48220. },
  48221. ]
  48222. ))
  48223. characterMakers.push(() => makeCharacter(
  48224. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48225. {
  48226. front: {
  48227. height: math.unit(8, "feet"),
  48228. weight: math.unit(1200, "lb"),
  48229. name: "Front",
  48230. image: {
  48231. source: "./media/characters/nyterious-daligdig/front.svg",
  48232. extra: 1284/1094,
  48233. bottom: 84/1368
  48234. }
  48235. },
  48236. back: {
  48237. height: math.unit(8, "feet"),
  48238. weight: math.unit(1200, "lb"),
  48239. name: "Back",
  48240. image: {
  48241. source: "./media/characters/nyterious-daligdig/back.svg",
  48242. extra: 1301/1121,
  48243. bottom: 129/1430
  48244. }
  48245. },
  48246. mouth: {
  48247. height: math.unit(1.464, "feet"),
  48248. name: "Mouth",
  48249. image: {
  48250. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Small",
  48257. height: math.unit(8, "feet"),
  48258. default: true
  48259. },
  48260. {
  48261. name: "Normal",
  48262. height: math.unit(15, "feet")
  48263. },
  48264. {
  48265. name: "Macro",
  48266. height: math.unit(90, "feet")
  48267. },
  48268. ]
  48269. ))
  48270. characterMakers.push(() => makeCharacter(
  48271. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48272. {
  48273. front: {
  48274. height: math.unit(7 + 4/12, "feet"),
  48275. weight: math.unit(252, "lb"),
  48276. name: "Front",
  48277. image: {
  48278. source: "./media/characters/bandel/front.svg",
  48279. extra: 1946/1775,
  48280. bottom: 26/1972
  48281. }
  48282. },
  48283. back: {
  48284. height: math.unit(7 + 4/12, "feet"),
  48285. weight: math.unit(252, "lb"),
  48286. name: "Back",
  48287. image: {
  48288. source: "./media/characters/bandel/back.svg",
  48289. extra: 1940/1770,
  48290. bottom: 25/1965
  48291. }
  48292. },
  48293. maw: {
  48294. height: math.unit(2.15, "feet"),
  48295. name: "Maw",
  48296. image: {
  48297. source: "./media/characters/bandel/maw.svg"
  48298. }
  48299. },
  48300. stomach: {
  48301. height: math.unit(1.95, "feet"),
  48302. name: "Stomach",
  48303. image: {
  48304. source: "./media/characters/bandel/stomach.svg"
  48305. }
  48306. },
  48307. },
  48308. [
  48309. {
  48310. name: "Normal",
  48311. height: math.unit(7 + 4/12, "feet"),
  48312. default: true
  48313. },
  48314. ]
  48315. ))
  48316. characterMakers.push(() => makeCharacter(
  48317. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48318. {
  48319. front: {
  48320. height: math.unit(10 + 5/12, "feet"),
  48321. weight: math.unit(773.5, "kg"),
  48322. name: "Front",
  48323. image: {
  48324. source: "./media/characters/zed/front.svg",
  48325. extra: 987/941,
  48326. bottom: 52/1039
  48327. }
  48328. },
  48329. },
  48330. [
  48331. {
  48332. name: "Short",
  48333. height: math.unit(5 + 4/12, "feet")
  48334. },
  48335. {
  48336. name: "Average",
  48337. height: math.unit(10 + 5/12, "feet"),
  48338. default: true
  48339. },
  48340. {
  48341. name: "Mini-Macro",
  48342. height: math.unit(24 + 9/12, "feet")
  48343. },
  48344. {
  48345. name: "Macro",
  48346. height: math.unit(249, "feet")
  48347. },
  48348. {
  48349. name: "Mega-Macro",
  48350. height: math.unit(12490, "feet")
  48351. },
  48352. {
  48353. name: "Giga-Macro",
  48354. height: math.unit(24.9, "miles")
  48355. },
  48356. {
  48357. name: "Tera-Macro",
  48358. height: math.unit(24900, "miles")
  48359. },
  48360. {
  48361. name: "Cosmic Scale",
  48362. height: math.unit(38.9, "lightyears")
  48363. },
  48364. {
  48365. name: "Universal Scale",
  48366. height: math.unit(138e12, "lightyears")
  48367. },
  48368. ]
  48369. ))
  48370. characterMakers.push(() => makeCharacter(
  48371. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48372. {
  48373. front: {
  48374. height: math.unit(1561, "inches"),
  48375. name: "Front",
  48376. image: {
  48377. source: "./media/characters/ivan/front.svg",
  48378. extra: 1126/1071,
  48379. bottom: 26/1152
  48380. }
  48381. },
  48382. back: {
  48383. height: math.unit(1561, "inches"),
  48384. name: "Back",
  48385. image: {
  48386. source: "./media/characters/ivan/back.svg",
  48387. extra: 1134/1079,
  48388. bottom: 30/1164
  48389. }
  48390. },
  48391. },
  48392. [
  48393. {
  48394. name: "Normal",
  48395. height: math.unit(1561, "inches"),
  48396. default: true
  48397. },
  48398. ]
  48399. ))
  48400. characterMakers.push(() => makeCharacter(
  48401. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48402. {
  48403. front: {
  48404. height: math.unit(5 + 7/12, "feet"),
  48405. weight: math.unit(150, "lb"),
  48406. name: "Front",
  48407. image: {
  48408. source: "./media/characters/robin-arctic-hare/front.svg",
  48409. extra: 1148/974,
  48410. bottom: 20/1168
  48411. }
  48412. },
  48413. },
  48414. [
  48415. {
  48416. name: "Normal",
  48417. height: math.unit(5 + 7/12, "feet"),
  48418. default: true
  48419. },
  48420. ]
  48421. ))
  48422. characterMakers.push(() => makeCharacter(
  48423. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48424. {
  48425. side: {
  48426. height: math.unit(5, "feet"),
  48427. name: "Side",
  48428. image: {
  48429. source: "./media/characters/birch/side.svg",
  48430. extra: 985/796,
  48431. bottom: 111/1096
  48432. }
  48433. },
  48434. },
  48435. [
  48436. {
  48437. name: "Normal",
  48438. height: math.unit(5, "feet"),
  48439. default: true
  48440. },
  48441. ]
  48442. ))
  48443. characterMakers.push(() => makeCharacter(
  48444. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48445. {
  48446. front: {
  48447. height: math.unit(4, "feet"),
  48448. name: "Front",
  48449. image: {
  48450. source: "./media/characters/rasp/front.svg",
  48451. extra: 561/478,
  48452. bottom: 74/635
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Normal",
  48459. height: math.unit(4, "feet"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48466. {
  48467. front: {
  48468. height: math.unit(4 + 6/12, "feet"),
  48469. name: "Front",
  48470. image: {
  48471. source: "./media/characters/agatha/front.svg",
  48472. extra: 947/933,
  48473. bottom: 42/989
  48474. }
  48475. },
  48476. back: {
  48477. height: math.unit(4 + 6/12, "feet"),
  48478. name: "Back",
  48479. image: {
  48480. source: "./media/characters/agatha/back.svg",
  48481. extra: 935/922,
  48482. bottom: 48/983
  48483. }
  48484. },
  48485. },
  48486. [
  48487. {
  48488. name: "Normal",
  48489. height: math.unit(4 + 6 /12, "feet"),
  48490. default: true
  48491. },
  48492. {
  48493. name: "Max Size",
  48494. height: math.unit(500, "feet")
  48495. },
  48496. ]
  48497. ))
  48498. characterMakers.push(() => makeCharacter(
  48499. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48500. {
  48501. side: {
  48502. height: math.unit(30, "feet"),
  48503. name: "Side",
  48504. image: {
  48505. source: "./media/characters/roggy/side.svg",
  48506. extra: 909/643,
  48507. bottom: 63/972
  48508. }
  48509. },
  48510. lounging: {
  48511. height: math.unit(20, "feet"),
  48512. name: "Lounging",
  48513. image: {
  48514. source: "./media/characters/roggy/lounging.svg",
  48515. extra: 643/479,
  48516. bottom: 145/788
  48517. }
  48518. },
  48519. handpaw: {
  48520. height: math.unit(13.1, "feet"),
  48521. name: "Handpaw",
  48522. image: {
  48523. source: "./media/characters/roggy/handpaw.svg"
  48524. }
  48525. },
  48526. footpaw: {
  48527. height: math.unit(15.8, "feet"),
  48528. name: "Footpaw",
  48529. image: {
  48530. source: "./media/characters/roggy/footpaw.svg"
  48531. }
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Menacing",
  48537. height: math.unit(30, "feet"),
  48538. default: true
  48539. },
  48540. ]
  48541. ))
  48542. characterMakers.push(() => makeCharacter(
  48543. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48544. {
  48545. front: {
  48546. height: math.unit(5 + 7/12, "feet"),
  48547. weight: math.unit(135, "lb"),
  48548. name: "Front",
  48549. image: {
  48550. source: "./media/characters/naomi/front.svg",
  48551. extra: 1209/1154,
  48552. bottom: 129/1338
  48553. }
  48554. },
  48555. back: {
  48556. height: math.unit(5 + 7/12, "feet"),
  48557. weight: math.unit(135, "lb"),
  48558. name: "Back",
  48559. image: {
  48560. source: "./media/characters/naomi/back.svg",
  48561. extra: 1252/1190,
  48562. bottom: 23/1275
  48563. }
  48564. },
  48565. },
  48566. [
  48567. {
  48568. name: "Normal",
  48569. height: math.unit(5 + 7 /12, "feet"),
  48570. default: true
  48571. },
  48572. ]
  48573. ))
  48574. characterMakers.push(() => makeCharacter(
  48575. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48576. {
  48577. side: {
  48578. height: math.unit(35, "meters"),
  48579. name: "Side",
  48580. image: {
  48581. source: "./media/characters/kimpi/side.svg",
  48582. extra: 419/382,
  48583. bottom: 63/482
  48584. }
  48585. },
  48586. hand: {
  48587. height: math.unit(8.96, "meters"),
  48588. name: "Hand",
  48589. image: {
  48590. source: "./media/characters/kimpi/hand.svg"
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(35, "meters"),
  48598. default: true
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48604. {
  48605. front: {
  48606. height: math.unit(4 + 4/12, "feet"),
  48607. name: "Front",
  48608. image: {
  48609. source: "./media/characters/pepper-purrloin/front.svg",
  48610. extra: 1141/1024,
  48611. bottom: 21/1162
  48612. }
  48613. },
  48614. },
  48615. [
  48616. {
  48617. name: "Normal",
  48618. height: math.unit(4 + 4/12, "feet"),
  48619. default: true
  48620. },
  48621. ]
  48622. ))
  48623. characterMakers.push(() => makeCharacter(
  48624. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48625. {
  48626. front: {
  48627. height: math.unit(6 + 2/12, "feet"),
  48628. name: "Front",
  48629. image: {
  48630. source: "./media/characters/raphael/front.svg",
  48631. extra: 1101/962,
  48632. bottom: 59/1160
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(6 + 2/12, "feet"),
  48640. default: true
  48641. },
  48642. ]
  48643. ))
  48644. characterMakers.push(() => makeCharacter(
  48645. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48646. {
  48647. front: {
  48648. height: math.unit(6, "feet"),
  48649. weight: math.unit(150, "lb"),
  48650. name: "Front",
  48651. image: {
  48652. source: "./media/characters/victor-williams/front.svg",
  48653. extra: 1894/1825,
  48654. bottom: 67/1961
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Normal",
  48661. height: math.unit(6, "feet"),
  48662. default: true
  48663. },
  48664. ]
  48665. ))
  48666. characterMakers.push(() => makeCharacter(
  48667. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48668. {
  48669. front: {
  48670. height: math.unit(5 + 8/12, "feet"),
  48671. weight: math.unit(150, "lb"),
  48672. name: "Front",
  48673. image: {
  48674. source: "./media/characters/rachel/front.svg",
  48675. extra: 1902/1787,
  48676. bottom: 46/1948
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Base Height",
  48683. height: math.unit(5 + 8/12, "feet"),
  48684. default: true
  48685. },
  48686. {
  48687. name: "Macro",
  48688. height: math.unit(200, "feet")
  48689. },
  48690. {
  48691. name: "Mega Macro",
  48692. height: math.unit(1, "mile")
  48693. },
  48694. {
  48695. name: "Giga Macro",
  48696. height: math.unit(1500, "miles")
  48697. },
  48698. {
  48699. name: "Tera Macro",
  48700. height: math.unit(8000, "miles")
  48701. },
  48702. {
  48703. name: "Tera Macro+",
  48704. height: math.unit(2e5, "miles")
  48705. },
  48706. ]
  48707. ))
  48708. characterMakers.push(() => makeCharacter(
  48709. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48710. {
  48711. front: {
  48712. height: math.unit(6.5, "feet"),
  48713. name: "Front",
  48714. image: {
  48715. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48716. extra: 860/819,
  48717. bottom: 307/1167
  48718. }
  48719. },
  48720. back: {
  48721. height: math.unit(6.5, "feet"),
  48722. name: "Back",
  48723. image: {
  48724. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48725. extra: 880/837,
  48726. bottom: 395/1275
  48727. }
  48728. },
  48729. sleeping: {
  48730. height: math.unit(2.79, "feet"),
  48731. name: "Sleeping",
  48732. image: {
  48733. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48734. extra: 465/383,
  48735. bottom: 263/728
  48736. }
  48737. },
  48738. maw: {
  48739. height: math.unit(2.52, "feet"),
  48740. name: "Maw",
  48741. image: {
  48742. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48743. }
  48744. },
  48745. },
  48746. [
  48747. {
  48748. name: "Normal",
  48749. height: math.unit(6.5, "feet"),
  48750. default: true
  48751. },
  48752. ]
  48753. ))
  48754. characterMakers.push(() => makeCharacter(
  48755. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48756. {
  48757. front: {
  48758. height: math.unit(5, "feet"),
  48759. name: "Front",
  48760. image: {
  48761. source: "./media/characters/nova-nerium/front.svg",
  48762. extra: 1548/1392,
  48763. bottom: 374/1922
  48764. }
  48765. },
  48766. back: {
  48767. height: math.unit(5, "feet"),
  48768. name: "Back",
  48769. image: {
  48770. source: "./media/characters/nova-nerium/back.svg",
  48771. extra: 1658/1468,
  48772. bottom: 257/1915
  48773. }
  48774. },
  48775. },
  48776. [
  48777. {
  48778. name: "Normal",
  48779. height: math.unit(5, "feet"),
  48780. default: true
  48781. },
  48782. ]
  48783. ))
  48784. characterMakers.push(() => makeCharacter(
  48785. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48786. {
  48787. front: {
  48788. height: math.unit(5 + 4/12, "feet"),
  48789. name: "Front",
  48790. image: {
  48791. source: "./media/characters/ashe-pyriph/front.svg",
  48792. extra: 1935/1747,
  48793. bottom: 60/1995
  48794. }
  48795. },
  48796. },
  48797. [
  48798. {
  48799. name: "Normal",
  48800. height: math.unit(5 + 4/12, "feet"),
  48801. default: true
  48802. },
  48803. ]
  48804. ))
  48805. characterMakers.push(() => makeCharacter(
  48806. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48807. {
  48808. front: {
  48809. height: math.unit(8.7, "feet"),
  48810. name: "Front",
  48811. image: {
  48812. source: "./media/characters/flicker-wisp/front.svg",
  48813. extra: 1835/1613,
  48814. bottom: 449/2284
  48815. }
  48816. },
  48817. side: {
  48818. height: math.unit(8.7, "feet"),
  48819. name: "Side",
  48820. image: {
  48821. source: "./media/characters/flicker-wisp/side.svg",
  48822. extra: 1841/1642,
  48823. bottom: 336/2177
  48824. },
  48825. default: true
  48826. },
  48827. maw: {
  48828. height: math.unit(3.35, "feet"),
  48829. name: "Maw",
  48830. image: {
  48831. source: "./media/characters/flicker-wisp/maw.svg",
  48832. extra: 2338/1506,
  48833. bottom: 0/2338
  48834. }
  48835. },
  48836. ovipositor: {
  48837. height: math.unit(4.95, "feet"),
  48838. name: "Ovipositor",
  48839. image: {
  48840. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48841. }
  48842. },
  48843. egg: {
  48844. height: math.unit(0.385, "feet"),
  48845. weight: math.unit(2, "lb"),
  48846. name: "Egg",
  48847. image: {
  48848. source: "./media/characters/flicker-wisp/egg.svg"
  48849. }
  48850. },
  48851. },
  48852. [
  48853. {
  48854. name: "Normal",
  48855. height: math.unit(8.7, "feet"),
  48856. default: true
  48857. },
  48858. ]
  48859. ))
  48860. characterMakers.push(() => makeCharacter(
  48861. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48862. {
  48863. side: {
  48864. height: math.unit(11, "feet"),
  48865. name: "Side",
  48866. image: {
  48867. source: "./media/characters/faefnul/side.svg",
  48868. extra: 1100/1007,
  48869. bottom: 0/1100
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Normal",
  48876. height: math.unit(11, "feet"),
  48877. default: true
  48878. },
  48879. ]
  48880. ))
  48881. characterMakers.push(() => makeCharacter(
  48882. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48883. {
  48884. front: {
  48885. height: math.unit(6 + 2/12, "feet"),
  48886. name: "Front",
  48887. image: {
  48888. source: "./media/characters/shady/front.svg",
  48889. extra: 502/461,
  48890. bottom: 9/511
  48891. }
  48892. },
  48893. kneeling: {
  48894. height: math.unit(4.6, "feet"),
  48895. name: "Kneeling",
  48896. image: {
  48897. source: "./media/characters/shady/kneeling.svg",
  48898. extra: 1328/1219,
  48899. bottom: 117/1445
  48900. }
  48901. },
  48902. maw: {
  48903. height: math.unit(2, "feet"),
  48904. name: "Maw",
  48905. image: {
  48906. source: "./media/characters/shady/maw.svg"
  48907. }
  48908. },
  48909. },
  48910. [
  48911. {
  48912. name: "Nano",
  48913. height: math.unit(1, "mm")
  48914. },
  48915. {
  48916. name: "Micro",
  48917. height: math.unit(12, "mm")
  48918. },
  48919. {
  48920. name: "Tiny",
  48921. height: math.unit(3, "inches")
  48922. },
  48923. {
  48924. name: "Normal",
  48925. height: math.unit(6 + 2/12, "feet"),
  48926. default: true
  48927. },
  48928. {
  48929. name: "Big",
  48930. height: math.unit(15, "feet")
  48931. },
  48932. {
  48933. name: "Macro",
  48934. height: math.unit(150, "feet")
  48935. },
  48936. {
  48937. name: "Titanic",
  48938. height: math.unit(500, "feet")
  48939. },
  48940. ]
  48941. ))
  48942. characterMakers.push(() => makeCharacter(
  48943. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48944. {
  48945. front: {
  48946. height: math.unit(12, "feet"),
  48947. name: "Front",
  48948. image: {
  48949. source: "./media/characters/fenrir/front.svg",
  48950. extra: 968/875,
  48951. bottom: 22/990
  48952. }
  48953. },
  48954. },
  48955. [
  48956. {
  48957. name: "Big",
  48958. height: math.unit(12, "feet"),
  48959. default: true
  48960. },
  48961. ]
  48962. ))
  48963. characterMakers.push(() => makeCharacter(
  48964. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48965. {
  48966. front: {
  48967. height: math.unit(5 + 4/12, "feet"),
  48968. name: "Front",
  48969. image: {
  48970. source: "./media/characters/makar/front.svg",
  48971. extra: 1181/1112,
  48972. bottom: 78/1259
  48973. }
  48974. },
  48975. },
  48976. [
  48977. {
  48978. name: "Normal",
  48979. height: math.unit(5 + 4/12, "feet"),
  48980. default: true
  48981. },
  48982. ]
  48983. ))
  48984. characterMakers.push(() => makeCharacter(
  48985. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48986. {
  48987. front: {
  48988. height: math.unit(5 + 7/12, "feet"),
  48989. name: "Front",
  48990. image: {
  48991. source: "./media/characters/callow/front.svg",
  48992. extra: 1482/1304,
  48993. bottom: 23/1505
  48994. }
  48995. },
  48996. back: {
  48997. height: math.unit(5 + 7/12, "feet"),
  48998. name: "Back",
  48999. image: {
  49000. source: "./media/characters/callow/back.svg",
  49001. extra: 1484/1296,
  49002. bottom: 25/1509
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Micro",
  49009. height: math.unit(3, "inches"),
  49010. default: true
  49011. },
  49012. {
  49013. name: "Normal",
  49014. height: math.unit(5 + 7/12, "feet")
  49015. },
  49016. ]
  49017. ))
  49018. characterMakers.push(() => makeCharacter(
  49019. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49020. {
  49021. front: {
  49022. height: math.unit(6 + 2/12, "feet"),
  49023. name: "Front",
  49024. image: {
  49025. source: "./media/characters/natel/front.svg",
  49026. extra: 1833/1692,
  49027. bottom: 166/1999
  49028. }
  49029. },
  49030. },
  49031. [
  49032. {
  49033. name: "Normal",
  49034. height: math.unit(6 + 2/12, "feet"),
  49035. default: true
  49036. },
  49037. ]
  49038. ))
  49039. characterMakers.push(() => makeCharacter(
  49040. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49041. {
  49042. front: {
  49043. height: math.unit(1.75, "meters"),
  49044. name: "Front",
  49045. image: {
  49046. source: "./media/characters/misu/front.svg",
  49047. extra: 1690/1558,
  49048. bottom: 234/1924
  49049. }
  49050. },
  49051. back: {
  49052. height: math.unit(1.75, "meters"),
  49053. name: "Back",
  49054. image: {
  49055. source: "./media/characters/misu/back.svg",
  49056. extra: 1762/1618,
  49057. bottom: 146/1908
  49058. }
  49059. },
  49060. frontNude: {
  49061. height: math.unit(1.75, "meters"),
  49062. name: "Front (Nude)",
  49063. image: {
  49064. source: "./media/characters/misu/front-nude.svg",
  49065. extra: 1690/1558,
  49066. bottom: 234/1924
  49067. }
  49068. },
  49069. backNude: {
  49070. height: math.unit(1.75, "meters"),
  49071. name: "Back (Nude)",
  49072. image: {
  49073. source: "./media/characters/misu/back-nude.svg",
  49074. extra: 1762/1618,
  49075. bottom: 146/1908
  49076. }
  49077. },
  49078. frontErect: {
  49079. height: math.unit(1.75, "meters"),
  49080. name: "Front (Erect)",
  49081. image: {
  49082. source: "./media/characters/misu/front-erect.svg",
  49083. extra: 1690/1558,
  49084. bottom: 234/1924
  49085. }
  49086. },
  49087. maw: {
  49088. height: math.unit(0.47, "meters"),
  49089. name: "Maw",
  49090. image: {
  49091. source: "./media/characters/misu/maw.svg"
  49092. }
  49093. },
  49094. head: {
  49095. height: math.unit(0.35, "meters"),
  49096. name: "Head",
  49097. image: {
  49098. source: "./media/characters/misu/head.svg"
  49099. }
  49100. },
  49101. rear: {
  49102. height: math.unit(0.47, "meters"),
  49103. name: "Rear",
  49104. image: {
  49105. source: "./media/characters/misu/rear.svg"
  49106. }
  49107. },
  49108. },
  49109. [
  49110. {
  49111. name: "Normal",
  49112. height: math.unit(1.75, "meters")
  49113. },
  49114. {
  49115. name: "Not good for the people",
  49116. height: math.unit(42, "meters")
  49117. },
  49118. {
  49119. name: "Not good for the neighborhood",
  49120. height: math.unit(135, "meters")
  49121. },
  49122. {
  49123. name: "Bit bigger problem",
  49124. height: math.unit(380, "meters"),
  49125. default: true
  49126. },
  49127. {
  49128. name: "Not good for the city",
  49129. height: math.unit(1.5, "km")
  49130. },
  49131. {
  49132. name: "Not good for the county",
  49133. height: math.unit(5.5, "km")
  49134. },
  49135. {
  49136. name: "Not good for the state",
  49137. height: math.unit(25, "km")
  49138. },
  49139. {
  49140. name: "Not good for the country",
  49141. height: math.unit(125, "km")
  49142. },
  49143. {
  49144. name: "Not good for the continent",
  49145. height: math.unit(2100, "km")
  49146. },
  49147. {
  49148. name: "Not good for the planet",
  49149. height: math.unit(35000, "km")
  49150. },
  49151. {
  49152. name: "Just no",
  49153. height: math.unit(8.5e18, "km")
  49154. },
  49155. ]
  49156. ))
  49157. characterMakers.push(() => makeCharacter(
  49158. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49159. {
  49160. front: {
  49161. height: math.unit(6.5, "feet"),
  49162. name: "Front",
  49163. image: {
  49164. source: "./media/characters/poppy/front.svg",
  49165. extra: 1878/1812,
  49166. bottom: 43/1921
  49167. }
  49168. },
  49169. feet: {
  49170. height: math.unit(1.06, "feet"),
  49171. name: "Feet",
  49172. image: {
  49173. source: "./media/characters/poppy/feet.svg",
  49174. extra: 1083/1083,
  49175. bottom: 87/1170
  49176. }
  49177. },
  49178. },
  49179. [
  49180. {
  49181. name: "Human",
  49182. height: math.unit(6.5, "feet")
  49183. },
  49184. {
  49185. name: "Default",
  49186. height: math.unit(300, "feet"),
  49187. default: true
  49188. },
  49189. {
  49190. name: "Huge",
  49191. height: math.unit(850, "feet")
  49192. },
  49193. {
  49194. name: "Mega",
  49195. height: math.unit(8000, "feet")
  49196. },
  49197. {
  49198. name: "Giga",
  49199. height: math.unit(300, "miles")
  49200. },
  49201. ]
  49202. ))
  49203. characterMakers.push(() => makeCharacter(
  49204. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49205. {
  49206. bipedal: {
  49207. height: math.unit(7, "feet"),
  49208. name: "Bipedal",
  49209. image: {
  49210. source: "./media/characters/zener/bipedal.svg",
  49211. extra: 874/805,
  49212. bottom: 109/983
  49213. }
  49214. },
  49215. quadrupedal: {
  49216. height: math.unit(4.64, "feet"),
  49217. name: "Quadrupedal",
  49218. image: {
  49219. source: "./media/characters/zener/quadrupedal.svg",
  49220. extra: 638/507,
  49221. bottom: 190/828
  49222. }
  49223. },
  49224. cock: {
  49225. height: math.unit(18, "inches"),
  49226. name: "Cock",
  49227. image: {
  49228. source: "./media/characters/zener/cock.svg"
  49229. }
  49230. },
  49231. },
  49232. [
  49233. {
  49234. name: "Normal",
  49235. height: math.unit(7, "feet"),
  49236. default: true
  49237. },
  49238. ]
  49239. ))
  49240. characterMakers.push(() => makeCharacter(
  49241. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49242. {
  49243. nude: {
  49244. height: math.unit(5 + 6/12, "feet"),
  49245. name: "Nude",
  49246. image: {
  49247. source: "./media/characters/charlie-dog/nude.svg",
  49248. extra: 768/734,
  49249. bottom: 26/794
  49250. }
  49251. },
  49252. dressed: {
  49253. height: math.unit(5 + 6/12, "feet"),
  49254. name: "Dressed",
  49255. image: {
  49256. source: "./media/characters/charlie-dog/dressed.svg",
  49257. extra: 768/734,
  49258. bottom: 26/794
  49259. }
  49260. },
  49261. },
  49262. [
  49263. {
  49264. name: "Normal",
  49265. height: math.unit(5 + 6/12, "feet"),
  49266. default: true
  49267. },
  49268. ]
  49269. ))
  49270. characterMakers.push(() => makeCharacter(
  49271. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49272. {
  49273. front: {
  49274. height: math.unit(6 + 4/12, "feet"),
  49275. name: "Front",
  49276. image: {
  49277. source: "./media/characters/ir'istrasz/front.svg",
  49278. extra: 1014/977,
  49279. bottom: 65/1079
  49280. }
  49281. },
  49282. back: {
  49283. height: math.unit(6 + 4/12, "feet"),
  49284. name: "Back",
  49285. image: {
  49286. source: "./media/characters/ir'istrasz/back.svg",
  49287. extra: 1024/992,
  49288. bottom: 34/1058
  49289. }
  49290. },
  49291. },
  49292. [
  49293. {
  49294. name: "Normal",
  49295. height: math.unit(6 + 4/12, "feet"),
  49296. default: true
  49297. },
  49298. ]
  49299. ))
  49300. characterMakers.push(() => makeCharacter(
  49301. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49302. {
  49303. front: {
  49304. height: math.unit(5 + 8/12, "feet"),
  49305. name: "Front",
  49306. image: {
  49307. source: "./media/characters/dee-ditto/front.svg",
  49308. extra: 1874/1785,
  49309. bottom: 68/1942
  49310. }
  49311. },
  49312. back: {
  49313. height: math.unit(5 + 8/12, "feet"),
  49314. name: "Back",
  49315. image: {
  49316. source: "./media/characters/dee-ditto/back.svg",
  49317. extra: 1870/1783,
  49318. bottom: 77/1947
  49319. }
  49320. },
  49321. },
  49322. [
  49323. {
  49324. name: "Normal",
  49325. height: math.unit(5 + 8/12, "feet"),
  49326. default: true
  49327. },
  49328. ]
  49329. ))
  49330. characterMakers.push(() => makeCharacter(
  49331. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49332. {
  49333. front: {
  49334. height: math.unit(7 + 6/12, "feet"),
  49335. name: "Front",
  49336. image: {
  49337. source: "./media/characters/fey/front.svg",
  49338. extra: 995/979,
  49339. bottom: 30/1025
  49340. }
  49341. },
  49342. back: {
  49343. height: math.unit(7 + 6/12, "feet"),
  49344. name: "Back",
  49345. image: {
  49346. source: "./media/characters/fey/back.svg",
  49347. extra: 1079/1008,
  49348. bottom: 5/1084
  49349. }
  49350. },
  49351. dressed: {
  49352. height: math.unit(7 + 6/12, "feet"),
  49353. name: "Dressed",
  49354. image: {
  49355. source: "./media/characters/fey/dressed.svg",
  49356. extra: 995/979,
  49357. bottom: 30/1025
  49358. }
  49359. },
  49360. },
  49361. [
  49362. {
  49363. name: "Normal",
  49364. height: math.unit(7 + 6/12, "feet"),
  49365. default: true
  49366. },
  49367. ]
  49368. ))
  49369. characterMakers.push(() => makeCharacter(
  49370. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49371. {
  49372. standing: {
  49373. height: math.unit(17, "feet"),
  49374. name: "Standing",
  49375. image: {
  49376. source: "./media/characters/aster/standing.svg",
  49377. extra: 1798/1598,
  49378. bottom: 117/1915
  49379. }
  49380. },
  49381. },
  49382. [
  49383. {
  49384. name: "Normal",
  49385. height: math.unit(17, "feet"),
  49386. default: true
  49387. },
  49388. {
  49389. name: "Homewrecker",
  49390. height: math.unit(95, "feet")
  49391. },
  49392. {
  49393. name: "Planet Devourer",
  49394. height: math.unit(1008000, "miles")
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(6 + 5/12, "feet"),
  49403. weight: math.unit(265, "lb"),
  49404. name: "Front",
  49405. image: {
  49406. source: "./media/characters/devon-childs/front.svg",
  49407. extra: 1795/1721,
  49408. bottom: 41/1836
  49409. }
  49410. },
  49411. side: {
  49412. height: math.unit(6 + 5/12, "feet"),
  49413. weight: math.unit(265, "lb"),
  49414. name: "Side",
  49415. image: {
  49416. source: "./media/characters/devon-childs/side.svg",
  49417. extra: 1812/1738,
  49418. bottom: 30/1842
  49419. }
  49420. },
  49421. back: {
  49422. height: math.unit(6 + 5/12, "feet"),
  49423. weight: math.unit(265, "lb"),
  49424. name: "Back",
  49425. image: {
  49426. source: "./media/characters/devon-childs/back.svg",
  49427. extra: 1808/1735,
  49428. bottom: 23/1831
  49429. }
  49430. },
  49431. hand: {
  49432. height: math.unit(1.464, "feet"),
  49433. name: "Hand",
  49434. image: {
  49435. source: "./media/characters/devon-childs/hand.svg"
  49436. }
  49437. },
  49438. foot: {
  49439. height: math.unit(1.6, "feet"),
  49440. name: "Foot",
  49441. image: {
  49442. source: "./media/characters/devon-childs/foot.svg"
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Micro",
  49449. height: math.unit(7, "cm")
  49450. },
  49451. {
  49452. name: "Normal",
  49453. height: math.unit(6 + 5/12, "feet"),
  49454. default: true
  49455. },
  49456. {
  49457. name: "Macro",
  49458. height: math.unit(154, "feet")
  49459. },
  49460. ]
  49461. ))
  49462. characterMakers.push(() => makeCharacter(
  49463. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49464. {
  49465. front: {
  49466. height: math.unit(6, "feet"),
  49467. weight: math.unit(180, "lb"),
  49468. name: "Front",
  49469. image: {
  49470. source: "./media/characters/lydemox-vir/front.svg",
  49471. extra: 1632/1435,
  49472. bottom: 58/1690
  49473. }
  49474. },
  49475. frontSFW: {
  49476. height: math.unit(6, "feet"),
  49477. weight: math.unit(180, "lb"),
  49478. name: "Front (SFW)",
  49479. image: {
  49480. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49481. extra: 1632/1435,
  49482. bottom: 58/1690
  49483. }
  49484. },
  49485. back: {
  49486. height: math.unit(6, "feet"),
  49487. weight: math.unit(180, "lb"),
  49488. name: "Back",
  49489. image: {
  49490. source: "./media/characters/lydemox-vir/back.svg",
  49491. extra: 1593/1408,
  49492. bottom: 31/1624
  49493. }
  49494. },
  49495. paw: {
  49496. height: math.unit(1.85, "feet"),
  49497. name: "Paw",
  49498. image: {
  49499. source: "./media/characters/lydemox-vir/paw.svg"
  49500. }
  49501. },
  49502. dick: {
  49503. height: math.unit(1.8, "feet"),
  49504. name: "Dick",
  49505. image: {
  49506. source: "./media/characters/lydemox-vir/dick.svg"
  49507. }
  49508. },
  49509. },
  49510. [
  49511. {
  49512. name: "Macro",
  49513. height: math.unit(100, "feet"),
  49514. default: true
  49515. },
  49516. {
  49517. name: "Teramacro",
  49518. height: math.unit(1, "earth")
  49519. },
  49520. {
  49521. name: "Planetary",
  49522. height: math.unit(20, "earths")
  49523. },
  49524. ]
  49525. ))
  49526. characterMakers.push(() => makeCharacter(
  49527. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49528. {
  49529. front: {
  49530. height: math.unit(15 + 8/12, "feet"),
  49531. weight: math.unit(1237, "kg"),
  49532. name: "Front",
  49533. image: {
  49534. source: "./media/characters/mia/front.svg",
  49535. extra: 1573/1446,
  49536. bottom: 58/1631
  49537. }
  49538. },
  49539. },
  49540. [
  49541. {
  49542. name: "Small",
  49543. height: math.unit(9 + 5/12, "feet")
  49544. },
  49545. {
  49546. name: "Normal",
  49547. height: math.unit(15 + 8/12, "feet"),
  49548. default: true
  49549. },
  49550. ]
  49551. ))
  49552. characterMakers.push(() => makeCharacter(
  49553. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49554. {
  49555. front: {
  49556. height: math.unit(10 + 6/12, "feet"),
  49557. weight: math.unit(1.3, "tons"),
  49558. name: "Front",
  49559. image: {
  49560. source: "./media/characters/mr-graves/front.svg",
  49561. extra: 1779/1695,
  49562. bottom: 198/1977
  49563. }
  49564. },
  49565. },
  49566. [
  49567. {
  49568. name: "Normal",
  49569. height: math.unit(10 + 6 /12, "feet"),
  49570. default: true
  49571. },
  49572. ]
  49573. ))
  49574. characterMakers.push(() => makeCharacter(
  49575. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49576. {
  49577. dressedFront: {
  49578. height: math.unit(5 + 8/12, "feet"),
  49579. weight: math.unit(125, "lb"),
  49580. name: "Dressed (Front)",
  49581. image: {
  49582. source: "./media/characters/jess/dressed-front.svg",
  49583. extra: 1176/1152,
  49584. bottom: 42/1218
  49585. }
  49586. },
  49587. dressedSide: {
  49588. height: math.unit(5 + 8/12, "feet"),
  49589. weight: math.unit(125, "lb"),
  49590. name: "Dressed (Side)",
  49591. image: {
  49592. source: "./media/characters/jess/dressed-side.svg",
  49593. extra: 1204/1190,
  49594. bottom: 6/1210
  49595. }
  49596. },
  49597. nudeFront: {
  49598. height: math.unit(5 + 8/12, "feet"),
  49599. weight: math.unit(125, "lb"),
  49600. name: "Nude (Front)",
  49601. image: {
  49602. source: "./media/characters/jess/nude-front.svg",
  49603. extra: 1176/1152,
  49604. bottom: 42/1218
  49605. }
  49606. },
  49607. nudeSide: {
  49608. height: math.unit(5 + 8/12, "feet"),
  49609. weight: math.unit(125, "lb"),
  49610. name: "Nude (Side)",
  49611. image: {
  49612. source: "./media/characters/jess/nude-side.svg",
  49613. extra: 1204/1190,
  49614. bottom: 6/1210
  49615. }
  49616. },
  49617. organsFront: {
  49618. height: math.unit(2.83799342105, "feet"),
  49619. name: "Organs (Front)",
  49620. image: {
  49621. source: "./media/characters/jess/organs-front.svg"
  49622. }
  49623. },
  49624. organsSide: {
  49625. height: math.unit(2.64225290474, "feet"),
  49626. name: "Organs (Side)",
  49627. image: {
  49628. source: "./media/characters/jess/organs-side.svg"
  49629. }
  49630. },
  49631. digestiveTractFront: {
  49632. height: math.unit(2.8106580871, "feet"),
  49633. name: "Digestive Tract (Front)",
  49634. image: {
  49635. source: "./media/characters/jess/digestive-tract-front.svg"
  49636. }
  49637. },
  49638. digestiveTractSide: {
  49639. height: math.unit(2.54365045014, "feet"),
  49640. name: "Digestive Tract (Side)",
  49641. image: {
  49642. source: "./media/characters/jess/digestive-tract-side.svg"
  49643. }
  49644. },
  49645. respiratorySystemFront: {
  49646. height: math.unit(1.11196233456, "feet"),
  49647. name: "Respiratory System (Front)",
  49648. image: {
  49649. source: "./media/characters/jess/respiratory-system-front.svg"
  49650. }
  49651. },
  49652. respiratorySystemSide: {
  49653. height: math.unit(0.89327966297, "feet"),
  49654. name: "Respiratory System (Side)",
  49655. image: {
  49656. source: "./media/characters/jess/respiratory-system-side.svg"
  49657. }
  49658. },
  49659. urinaryTractFront: {
  49660. height: math.unit(1.16126356186, "feet"),
  49661. name: "Urinary Tract (Front)",
  49662. image: {
  49663. source: "./media/characters/jess/urinary-tract-front.svg"
  49664. }
  49665. },
  49666. urinaryTractSide: {
  49667. height: math.unit(1.20910039627, "feet"),
  49668. name: "Urinary Tract (Side)",
  49669. image: {
  49670. source: "./media/characters/jess/urinary-tract-side.svg"
  49671. }
  49672. },
  49673. reproductiveOrgansFront: {
  49674. height: math.unit(0.48422591566, "feet"),
  49675. name: "Reproductive Organs (Front)",
  49676. image: {
  49677. source: "./media/characters/jess/reproductive-organs-front.svg"
  49678. }
  49679. },
  49680. reproductiveOrgansSide: {
  49681. height: math.unit(0.61553314481, "feet"),
  49682. name: "Reproductive Organs (Side)",
  49683. image: {
  49684. source: "./media/characters/jess/reproductive-organs-side.svg"
  49685. }
  49686. },
  49687. breastsFront: {
  49688. height: math.unit(0.47690395121, "feet"),
  49689. name: "Breasts (Front)",
  49690. image: {
  49691. source: "./media/characters/jess/breasts-front.svg"
  49692. }
  49693. },
  49694. breastsSide: {
  49695. height: math.unit(0.30556998307, "feet"),
  49696. name: "Breasts (Side)",
  49697. image: {
  49698. source: "./media/characters/jess/breasts-side.svg"
  49699. }
  49700. },
  49701. heartFront: {
  49702. height: math.unit(0.53011022622, "feet"),
  49703. name: "Heart (Front)",
  49704. image: {
  49705. source: "./media/characters/jess/heart-front.svg"
  49706. }
  49707. },
  49708. heartSide: {
  49709. height: math.unit(0.51790695213, "feet"),
  49710. name: "Heart (Side)",
  49711. image: {
  49712. source: "./media/characters/jess/heart-side.svg"
  49713. }
  49714. },
  49715. earsAndNoseFront: {
  49716. height: math.unit(0.29385483995, "feet"),
  49717. name: "Ears and Nose (Front)",
  49718. image: {
  49719. source: "./media/characters/jess/ears-and-nose-front.svg"
  49720. }
  49721. },
  49722. earsAndNoseSide: {
  49723. height: math.unit(0.18109658741, "feet"),
  49724. name: "Ears and Nose (Side)",
  49725. image: {
  49726. source: "./media/characters/jess/ears-and-nose-side.svg"
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(5 + 8/12, "feet"),
  49734. default: true
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49740. {
  49741. front: {
  49742. height: math.unit(6, "feet"),
  49743. weight: math.unit(6.64467e-7, "grams"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/wimpering/front.svg",
  49747. extra: 597/587,
  49748. bottom: 34/631
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Micro",
  49755. height: math.unit(0.4, "mm"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(5 + 2/12, "feet"),
  49765. weight: math.unit(110, "lb"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/keltre/front.svg",
  49769. extra: 1099/1057,
  49770. bottom: 22/1121
  49771. }
  49772. },
  49773. back: {
  49774. height: math.unit(5 + 2/12, "feet"),
  49775. weight: math.unit(110, "lb"),
  49776. name: "Back",
  49777. image: {
  49778. source: "./media/characters/keltre/back.svg",
  49779. extra: 1095/1053,
  49780. bottom: 17/1112
  49781. }
  49782. },
  49783. dressed: {
  49784. height: math.unit(5 + 2/12, "feet"),
  49785. weight: math.unit(110, "lb"),
  49786. name: "Dressed",
  49787. image: {
  49788. source: "./media/characters/keltre/dressed.svg",
  49789. extra: 1099/1057,
  49790. bottom: 22/1121
  49791. }
  49792. },
  49793. winter: {
  49794. height: math.unit(5 + 2/12, "feet"),
  49795. weight: math.unit(110, "lb"),
  49796. name: "Winter",
  49797. image: {
  49798. source: "./media/characters/keltre/winter.svg",
  49799. extra: 1099/1057,
  49800. bottom: 22/1121
  49801. }
  49802. },
  49803. head: {
  49804. height: math.unit(1.61 * 0.86, "feet"),
  49805. name: "Head",
  49806. image: {
  49807. source: "./media/characters/keltre/head.svg",
  49808. extra: 534/421,
  49809. bottom: 0/534
  49810. }
  49811. },
  49812. hand: {
  49813. height: math.unit(1.3 * 0.86, "feet"),
  49814. name: "Hand",
  49815. image: {
  49816. source: "./media/characters/keltre/hand.svg"
  49817. }
  49818. },
  49819. foot: {
  49820. height: math.unit(1.8 * 0.86, "feet"),
  49821. name: "Foot",
  49822. image: {
  49823. source: "./media/characters/keltre/foot.svg"
  49824. }
  49825. },
  49826. },
  49827. [
  49828. {
  49829. name: "Fine",
  49830. height: math.unit(1, "inch")
  49831. },
  49832. {
  49833. name: "Dimnutive",
  49834. height: math.unit(4, "inches")
  49835. },
  49836. {
  49837. name: "Tiny",
  49838. height: math.unit(1, "foot")
  49839. },
  49840. {
  49841. name: "Small",
  49842. height: math.unit(3, "feet")
  49843. },
  49844. {
  49845. name: "Normal",
  49846. height: math.unit(5 + 2/12, "feet"),
  49847. default: true
  49848. },
  49849. ]
  49850. ))
  49851. characterMakers.push(() => makeCharacter(
  49852. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49853. {
  49854. front: {
  49855. height: math.unit(6 + 2/12, "feet"),
  49856. name: "Front",
  49857. image: {
  49858. source: "./media/characters/nox/front.svg",
  49859. extra: 1917/1830,
  49860. bottom: 74/1991
  49861. }
  49862. },
  49863. back: {
  49864. height: math.unit(6 + 2/12, "feet"),
  49865. name: "Back",
  49866. image: {
  49867. source: "./media/characters/nox/back.svg",
  49868. extra: 1896/1815,
  49869. bottom: 21/1917
  49870. }
  49871. },
  49872. head: {
  49873. height: math.unit(1.1, "feet"),
  49874. name: "Head",
  49875. image: {
  49876. source: "./media/characters/nox/head.svg",
  49877. extra: 874/704,
  49878. bottom: 0/874
  49879. }
  49880. },
  49881. tattoo: {
  49882. height: math.unit(0.729, "feet"),
  49883. name: "Tattoo",
  49884. image: {
  49885. source: "./media/characters/nox/tattoo.svg"
  49886. }
  49887. },
  49888. },
  49889. [
  49890. {
  49891. name: "Normal",
  49892. height: math.unit(6 + 2/12, "feet")
  49893. },
  49894. {
  49895. name: "Gigamacro",
  49896. height: math.unit(2, "earths"),
  49897. default: true
  49898. },
  49899. {
  49900. name: "Cosmic",
  49901. height: math.unit(867, "yottameters")
  49902. },
  49903. ]
  49904. ))
  49905. characterMakers.push(() => makeCharacter(
  49906. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49907. {
  49908. front: {
  49909. height: math.unit(6, "feet"),
  49910. weight: math.unit(150, "lb"),
  49911. name: "Front",
  49912. image: {
  49913. source: "./media/characters/caspian/front.svg",
  49914. extra: 1443/1359,
  49915. bottom: 0/1443
  49916. }
  49917. },
  49918. back: {
  49919. height: math.unit(6, "feet"),
  49920. weight: math.unit(150, "lb"),
  49921. name: "Back",
  49922. image: {
  49923. source: "./media/characters/caspian/back.svg",
  49924. extra: 1379/1309,
  49925. bottom: 0/1379
  49926. }
  49927. },
  49928. head: {
  49929. height: math.unit(0.9, "feet"),
  49930. name: "Head",
  49931. image: {
  49932. source: "./media/characters/caspian/head.svg",
  49933. extra: 692/492,
  49934. bottom: 0/692
  49935. }
  49936. },
  49937. headAlt: {
  49938. height: math.unit(0.95, "feet"),
  49939. name: "Head (Alt)",
  49940. image: {
  49941. source: "./media/characters/caspian/head-alt.svg",
  49942. extra: 668/508,
  49943. bottom: 0/668
  49944. }
  49945. },
  49946. hand: {
  49947. height: math.unit(0.8, "feet"),
  49948. name: "Hand",
  49949. image: {
  49950. source: "./media/characters/caspian/hand.svg"
  49951. }
  49952. },
  49953. paw: {
  49954. height: math.unit(0.95, "feet"),
  49955. name: "Paw",
  49956. image: {
  49957. source: "./media/characters/caspian/paw.svg"
  49958. }
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(162, "feet"),
  49965. default: true
  49966. },
  49967. ]
  49968. ))
  49969. characterMakers.push(() => makeCharacter(
  49970. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49971. {
  49972. front: {
  49973. height: math.unit(6, "feet"),
  49974. name: "Front",
  49975. image: {
  49976. source: "./media/characters/myra-aisling/front.svg",
  49977. extra: 1268/1166,
  49978. bottom: 73/1341
  49979. }
  49980. },
  49981. back: {
  49982. height: math.unit(6, "feet"),
  49983. name: "Back",
  49984. image: {
  49985. source: "./media/characters/myra-aisling/back.svg",
  49986. extra: 1249/1149,
  49987. bottom: 79/1328
  49988. }
  49989. },
  49990. dressed: {
  49991. height: math.unit(6, "feet"),
  49992. name: "Dressed",
  49993. image: {
  49994. source: "./media/characters/myra-aisling/dressed.svg",
  49995. extra: 1290/1189,
  49996. bottom: 47/1337
  49997. }
  49998. },
  49999. hand: {
  50000. height: math.unit(1.1, "feet"),
  50001. name: "Hand",
  50002. image: {
  50003. source: "./media/characters/myra-aisling/hand.svg"
  50004. }
  50005. },
  50006. paw: {
  50007. height: math.unit(1.23, "feet"),
  50008. name: "Paw",
  50009. image: {
  50010. source: "./media/characters/myra-aisling/paw.svg"
  50011. }
  50012. },
  50013. },
  50014. [
  50015. {
  50016. name: "Normal",
  50017. height: math.unit(160, "feet"),
  50018. default: true
  50019. },
  50020. ]
  50021. ))
  50022. characterMakers.push(() => makeCharacter(
  50023. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50024. {
  50025. front: {
  50026. height: math.unit(6, "feet"),
  50027. name: "Front",
  50028. image: {
  50029. source: "./media/characters/tenley-sidero/front.svg",
  50030. extra: 1365/1276,
  50031. bottom: 47/1412
  50032. }
  50033. },
  50034. back: {
  50035. height: math.unit(6, "feet"),
  50036. name: "Back",
  50037. image: {
  50038. source: "./media/characters/tenley-sidero/back.svg",
  50039. extra: 1383/1283,
  50040. bottom: 35/1418
  50041. }
  50042. },
  50043. dressed: {
  50044. height: math.unit(6, "feet"),
  50045. name: "Dressed",
  50046. image: {
  50047. source: "./media/characters/tenley-sidero/dressed.svg",
  50048. extra: 1364/1275,
  50049. bottom: 42/1406
  50050. }
  50051. },
  50052. head: {
  50053. height: math.unit(1.47, "feet"),
  50054. name: "Head",
  50055. image: {
  50056. source: "./media/characters/tenley-sidero/head.svg",
  50057. extra: 610/490,
  50058. bottom: 0/610
  50059. }
  50060. },
  50061. },
  50062. [
  50063. {
  50064. name: "Normal",
  50065. height: math.unit(154, "feet"),
  50066. default: true
  50067. },
  50068. ]
  50069. ))
  50070. characterMakers.push(() => makeCharacter(
  50071. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50072. {
  50073. front: {
  50074. height: math.unit(5, "inches"),
  50075. name: "Front",
  50076. image: {
  50077. source: "./media/characters/mallory/front.svg",
  50078. extra: 1919/1678,
  50079. bottom: 29/1948
  50080. }
  50081. },
  50082. hand: {
  50083. height: math.unit(0.73, "inches"),
  50084. name: "Hand",
  50085. image: {
  50086. source: "./media/characters/mallory/hand.svg"
  50087. }
  50088. },
  50089. paw: {
  50090. height: math.unit(0.68, "inches"),
  50091. name: "Paw",
  50092. image: {
  50093. source: "./media/characters/mallory/paw.svg"
  50094. }
  50095. },
  50096. },
  50097. [
  50098. {
  50099. name: "Small",
  50100. height: math.unit(5, "inches"),
  50101. default: true
  50102. },
  50103. ]
  50104. ))
  50105. characterMakers.push(() => makeCharacter(
  50106. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50107. {
  50108. naked: {
  50109. height: math.unit(6, "feet"),
  50110. name: "Naked",
  50111. image: {
  50112. source: "./media/characters/mab/naked.svg",
  50113. extra: 1855/1757,
  50114. bottom: 208/2063
  50115. }
  50116. },
  50117. outside: {
  50118. height: math.unit(6, "feet"),
  50119. name: "Outside",
  50120. image: {
  50121. source: "./media/characters/mab/outside.svg",
  50122. extra: 1855/1757,
  50123. bottom: 208/2063
  50124. }
  50125. },
  50126. party: {
  50127. height: math.unit(6, "feet"),
  50128. name: "Party",
  50129. image: {
  50130. source: "./media/characters/mab/party.svg",
  50131. extra: 1855/1757,
  50132. bottom: 208/2063
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Normal",
  50139. height: math.unit(165, "feet"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50146. {
  50147. feral: {
  50148. height: math.unit(12, "feet"),
  50149. weight: math.unit(20000, "lb"),
  50150. name: "Side",
  50151. image: {
  50152. source: "./media/characters/winter/feral.svg",
  50153. extra: 1286/943,
  50154. bottom: 112/1398
  50155. },
  50156. form: "feral",
  50157. default: true
  50158. },
  50159. feralNsfw: {
  50160. height: math.unit(12, "feet"),
  50161. weight: math.unit(20000, "lb"),
  50162. name: "Side (NSFW)",
  50163. image: {
  50164. source: "./media/characters/winter/feral-nsfw.svg",
  50165. extra: 1286/943,
  50166. bottom: 112/1398
  50167. },
  50168. form: "feral"
  50169. },
  50170. dick: {
  50171. height: math.unit(3.79, "feet"),
  50172. name: "Dick",
  50173. image: {
  50174. source: "./media/characters/winter/dick.svg"
  50175. },
  50176. form: "feral"
  50177. },
  50178. anthro: {
  50179. height: math.unit(12, "feet"),
  50180. weight: math.unit(10, "tons"),
  50181. name: "Anthro",
  50182. image: {
  50183. source: "./media/characters/winter/anthro.svg",
  50184. extra: 1701/1553,
  50185. bottom: 64/1765
  50186. },
  50187. form: "anthro",
  50188. default: true
  50189. },
  50190. },
  50191. [
  50192. {
  50193. name: "Big",
  50194. height: math.unit(12, "feet"),
  50195. default: true,
  50196. form: "feral"
  50197. },
  50198. {
  50199. name: "Big",
  50200. height: math.unit(12, "feet"),
  50201. default: true,
  50202. form: "anthro"
  50203. },
  50204. ],
  50205. {
  50206. "feral": {
  50207. name: "Feral",
  50208. default: true
  50209. },
  50210. "anthro": {
  50211. name: "Anthro"
  50212. }
  50213. }
  50214. ))
  50215. characterMakers.push(() => makeCharacter(
  50216. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50217. {
  50218. front: {
  50219. height: math.unit(4.1, "inches"),
  50220. name: "Front",
  50221. image: {
  50222. source: "./media/characters/alto/front.svg",
  50223. extra: 736/627,
  50224. bottom: 90/826
  50225. }
  50226. },
  50227. },
  50228. [
  50229. {
  50230. name: "Normal",
  50231. height: math.unit(4.1, "inches"),
  50232. default: true
  50233. },
  50234. ]
  50235. ))
  50236. characterMakers.push(() => makeCharacter(
  50237. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50238. {
  50239. sitting: {
  50240. height: math.unit(3, "feet"),
  50241. name: "Sitting",
  50242. image: {
  50243. source: "./media/characters/ratstrid-v/sitting.svg",
  50244. extra: 355/310,
  50245. bottom: 136/491
  50246. }
  50247. },
  50248. },
  50249. [
  50250. {
  50251. name: "Normal",
  50252. height: math.unit(3, "feet"),
  50253. default: true
  50254. },
  50255. ]
  50256. ))
  50257. characterMakers.push(() => makeCharacter(
  50258. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50259. {
  50260. back: {
  50261. height: math.unit(6, "feet"),
  50262. weight: math.unit(450, "lb"),
  50263. name: "Back",
  50264. image: {
  50265. source: "./media/characters/siz/back.svg",
  50266. extra: 1449/1274,
  50267. bottom: 13/1462
  50268. }
  50269. },
  50270. },
  50271. [
  50272. {
  50273. name: "Smallest",
  50274. height: math.unit(18 + 3/12, "feet")
  50275. },
  50276. {
  50277. name: "Modest",
  50278. height: math.unit(56 + 8/12, "feet"),
  50279. default: true
  50280. },
  50281. {
  50282. name: "Largest",
  50283. height: math.unit(3590, "feet")
  50284. },
  50285. ]
  50286. ))
  50287. characterMakers.push(() => makeCharacter(
  50288. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50289. {
  50290. front: {
  50291. height: math.unit(5 + 9/12, "feet"),
  50292. weight: math.unit(150, "lb"),
  50293. name: "Front",
  50294. image: {
  50295. source: "./media/characters/ven/front.svg",
  50296. extra: 1372/1320,
  50297. bottom: 73/1445
  50298. }
  50299. },
  50300. side: {
  50301. height: math.unit(5 + 9/12, "feet"),
  50302. weight: math.unit(1150, "lb"),
  50303. name: "Side",
  50304. image: {
  50305. source: "./media/characters/ven/side.svg",
  50306. extra: 1119/1070,
  50307. bottom: 42/1161
  50308. },
  50309. default: true
  50310. },
  50311. },
  50312. [
  50313. {
  50314. name: "Normal",
  50315. height: math.unit(5 + 9/12, "feet"),
  50316. default: true
  50317. },
  50318. ]
  50319. ))
  50320. characterMakers.push(() => makeCharacter(
  50321. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50322. {
  50323. front: {
  50324. height: math.unit(12, "feet"),
  50325. weight: math.unit(1000, "kg"),
  50326. name: "Front",
  50327. image: {
  50328. source: "./media/characters/maple/front.svg",
  50329. extra: 1193/1081,
  50330. bottom: 22/1215
  50331. }
  50332. },
  50333. },
  50334. [
  50335. {
  50336. name: "Compressed",
  50337. height: math.unit(7, "feet")
  50338. },
  50339. {
  50340. name: "Normal",
  50341. height: math.unit(12, "feet"),
  50342. default: true
  50343. },
  50344. ]
  50345. ))
  50346. characterMakers.push(() => makeCharacter(
  50347. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50348. {
  50349. front: {
  50350. height: math.unit(9, "feet"),
  50351. weight: math.unit(1500, "lb"),
  50352. name: "Front",
  50353. image: {
  50354. source: "./media/characters/nora/front.svg",
  50355. extra: 1348/1286,
  50356. bottom: 218/1566
  50357. }
  50358. },
  50359. erect: {
  50360. height: math.unit(9, "feet"),
  50361. weight: math.unit(11500, "lb"),
  50362. name: "Erect",
  50363. image: {
  50364. source: "./media/characters/nora/erect.svg",
  50365. extra: 1488/1433,
  50366. bottom: 133/1621
  50367. }
  50368. },
  50369. },
  50370. [
  50371. {
  50372. name: "Normal",
  50373. height: math.unit(9, "feet"),
  50374. default: true
  50375. },
  50376. ]
  50377. ))
  50378. characterMakers.push(() => makeCharacter(
  50379. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50380. {
  50381. front: {
  50382. height: math.unit(25, "feet"),
  50383. weight: math.unit(27500, "lb"),
  50384. name: "Front",
  50385. image: {
  50386. source: "./media/characters/north-caudin/front.svg",
  50387. extra: 1184/1082,
  50388. bottom: 23/1207
  50389. }
  50390. },
  50391. },
  50392. [
  50393. {
  50394. name: "Compressed",
  50395. height: math.unit(10, "feet")
  50396. },
  50397. {
  50398. name: "Normal",
  50399. height: math.unit(25, "feet"),
  50400. default: true
  50401. },
  50402. ]
  50403. ))
  50404. characterMakers.push(() => makeCharacter(
  50405. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50406. {
  50407. front: {
  50408. height: math.unit(9, "feet"),
  50409. weight: math.unit(1250, "lb"),
  50410. name: "Front",
  50411. image: {
  50412. source: "./media/characters/merrian/front.svg",
  50413. extra: 2393/2304,
  50414. bottom: 40/2433
  50415. }
  50416. },
  50417. },
  50418. [
  50419. {
  50420. name: "Normal",
  50421. height: math.unit(9, "feet"),
  50422. default: true
  50423. },
  50424. ]
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50428. {
  50429. front: {
  50430. height: math.unit(9, "feet"),
  50431. weight: math.unit(1000, "lb"),
  50432. name: "Front",
  50433. image: {
  50434. source: "./media/characters/hazel/front.svg",
  50435. extra: 2351/2298,
  50436. bottom: 38/2389
  50437. }
  50438. },
  50439. },
  50440. [
  50441. {
  50442. name: "Normal",
  50443. height: math.unit(9, "feet"),
  50444. default: true
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50450. {
  50451. front: {
  50452. height: math.unit(13, "feet"),
  50453. weight: math.unit(3200, "lb"),
  50454. name: "Front",
  50455. image: {
  50456. source: "./media/characters/emma/front.svg",
  50457. extra: 2263/2029,
  50458. bottom: 68/2331
  50459. }
  50460. },
  50461. },
  50462. [
  50463. {
  50464. name: "Normal",
  50465. height: math.unit(13, "feet"),
  50466. default: true
  50467. },
  50468. ]
  50469. ))
  50470. characterMakers.push(() => makeCharacter(
  50471. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50472. {
  50473. front: {
  50474. height: math.unit(11 + 9/12, "feet"),
  50475. weight: math.unit(2500, "lb"),
  50476. name: "Front",
  50477. image: {
  50478. source: "./media/characters/ilumina/front.svg",
  50479. extra: 2248/2209,
  50480. bottom: 164/2412
  50481. }
  50482. },
  50483. },
  50484. [
  50485. {
  50486. name: "Normal",
  50487. height: math.unit(11 + 9/12, "feet"),
  50488. default: true
  50489. },
  50490. ]
  50491. ))
  50492. characterMakers.push(() => makeCharacter(
  50493. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50494. {
  50495. front: {
  50496. height: math.unit(8 + 10/12, "feet"),
  50497. weight: math.unit(1350, "lb"),
  50498. name: "Front",
  50499. image: {
  50500. source: "./media/characters/moonshine/front.svg",
  50501. extra: 2395/2288,
  50502. bottom: 40/2435
  50503. }
  50504. },
  50505. },
  50506. [
  50507. {
  50508. name: "Normal",
  50509. height: math.unit(8 + 10/12, "feet"),
  50510. default: true
  50511. },
  50512. ]
  50513. ))
  50514. characterMakers.push(() => makeCharacter(
  50515. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50516. {
  50517. front: {
  50518. height: math.unit(14, "feet"),
  50519. weight: math.unit(3400, "lb"),
  50520. name: "Front",
  50521. image: {
  50522. source: "./media/characters/aletia/front.svg",
  50523. extra: 1185/1052,
  50524. bottom: 21/1206
  50525. }
  50526. },
  50527. },
  50528. [
  50529. {
  50530. name: "Compressed",
  50531. height: math.unit(8, "feet")
  50532. },
  50533. {
  50534. name: "Normal",
  50535. height: math.unit(14, "feet"),
  50536. default: true
  50537. },
  50538. ]
  50539. ))
  50540. characterMakers.push(() => makeCharacter(
  50541. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50542. {
  50543. front: {
  50544. height: math.unit(17, "feet"),
  50545. weight: math.unit(6500, "lb"),
  50546. name: "Front",
  50547. image: {
  50548. source: "./media/characters/deidra/front.svg",
  50549. extra: 1201/1081,
  50550. bottom: 16/1217
  50551. }
  50552. },
  50553. },
  50554. [
  50555. {
  50556. name: "Compressed",
  50557. height: math.unit(9 + 6/12, "feet")
  50558. },
  50559. {
  50560. name: "Normal",
  50561. height: math.unit(17, "feet"),
  50562. default: true
  50563. },
  50564. ]
  50565. ))
  50566. characterMakers.push(() => makeCharacter(
  50567. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50568. {
  50569. front: {
  50570. height: math.unit(7 + 4/12, "feet"),
  50571. weight: math.unit(280, "lb"),
  50572. name: "Front",
  50573. image: {
  50574. source: "./media/characters/freki-yrmori/front.svg",
  50575. extra: 1286/1182,
  50576. bottom: 29/1315
  50577. }
  50578. },
  50579. maw: {
  50580. height: math.unit(0.9, "feet"),
  50581. name: "Maw",
  50582. image: {
  50583. source: "./media/characters/freki-yrmori/maw.svg"
  50584. }
  50585. },
  50586. },
  50587. [
  50588. {
  50589. name: "Normal",
  50590. height: math.unit(7 + 4/12, "feet"),
  50591. default: true
  50592. },
  50593. {
  50594. name: "Macro",
  50595. height: math.unit(38.5, "meters")
  50596. },
  50597. ]
  50598. ))
  50599. characterMakers.push(() => makeCharacter(
  50600. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50601. {
  50602. side: {
  50603. height: math.unit(47.2, "meters"),
  50604. weight: math.unit(10000, "tons"),
  50605. name: "Side",
  50606. image: {
  50607. source: "./media/characters/aetherios/side.svg",
  50608. extra: 2363/642,
  50609. bottom: 221/2584
  50610. }
  50611. },
  50612. top: {
  50613. height: math.unit(240, "meters"),
  50614. weight: math.unit(10000, "tons"),
  50615. name: "Top",
  50616. image: {
  50617. source: "./media/characters/aetherios/top.svg"
  50618. }
  50619. },
  50620. bottom: {
  50621. height: math.unit(240, "meters"),
  50622. weight: math.unit(10000, "tons"),
  50623. name: "Bottom",
  50624. image: {
  50625. source: "./media/characters/aetherios/bottom.svg"
  50626. }
  50627. },
  50628. head: {
  50629. height: math.unit(38.6, "meters"),
  50630. name: "Head",
  50631. image: {
  50632. source: "./media/characters/aetherios/head.svg",
  50633. extra: 1335/1112,
  50634. bottom: 0/1335
  50635. }
  50636. },
  50637. front: {
  50638. height: math.unit(29, "meters"),
  50639. name: "Front",
  50640. image: {
  50641. source: "./media/characters/aetherios/front.svg",
  50642. extra: 1266/953,
  50643. bottom: 158/1424
  50644. }
  50645. },
  50646. maw: {
  50647. height: math.unit(16.37, "meters"),
  50648. name: "Maw",
  50649. image: {
  50650. source: "./media/characters/aetherios/maw.svg",
  50651. extra: 748/637,
  50652. bottom: 0/748
  50653. },
  50654. extraAttributes: {
  50655. preyCapacity: {
  50656. name: "Capacity",
  50657. power: 3,
  50658. type: "volume",
  50659. base: math.unit(1000, "people")
  50660. },
  50661. tongueSize: {
  50662. name: "Tongue Size",
  50663. power: 2,
  50664. type: "area",
  50665. base: math.unit(21, "m^2")
  50666. }
  50667. }
  50668. },
  50669. forepaw: {
  50670. height: math.unit(18, "meters"),
  50671. name: "Forepaw",
  50672. image: {
  50673. source: "./media/characters/aetherios/forepaw.svg"
  50674. }
  50675. },
  50676. hindpaw: {
  50677. height: math.unit(23, "meters"),
  50678. name: "Hindpaw",
  50679. image: {
  50680. source: "./media/characters/aetherios/hindpaw.svg"
  50681. }
  50682. },
  50683. genitals: {
  50684. height: math.unit(42, "meters"),
  50685. name: "Genitals",
  50686. image: {
  50687. source: "./media/characters/aetherios/genitals.svg"
  50688. }
  50689. },
  50690. },
  50691. [
  50692. {
  50693. name: "Normal",
  50694. height: math.unit(47.2, "meters"),
  50695. default: true
  50696. },
  50697. {
  50698. name: "Macro",
  50699. height: math.unit(160, "meters")
  50700. },
  50701. {
  50702. name: "Mega",
  50703. height: math.unit(1.87, "km")
  50704. },
  50705. {
  50706. name: "Giga",
  50707. height: math.unit(40000, "km")
  50708. },
  50709. {
  50710. name: "Stellar",
  50711. height: math.unit(158000000, "km")
  50712. },
  50713. {
  50714. name: "Cosmic",
  50715. height: math.unit(9.46e12, "km")
  50716. },
  50717. ]
  50718. ))
  50719. characterMakers.push(() => makeCharacter(
  50720. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50721. {
  50722. front: {
  50723. height: math.unit(5 + 4/12, "feet"),
  50724. weight: math.unit(80, "lb"),
  50725. name: "Front",
  50726. image: {
  50727. source: "./media/characters/mizu-gieeg/front.svg",
  50728. extra: 850/709,
  50729. bottom: 52/902
  50730. }
  50731. },
  50732. back: {
  50733. height: math.unit(5 + 4/12, "feet"),
  50734. weight: math.unit(80, "lb"),
  50735. name: "Back",
  50736. image: {
  50737. source: "./media/characters/mizu-gieeg/back.svg",
  50738. extra: 882/745,
  50739. bottom: 25/907
  50740. }
  50741. },
  50742. },
  50743. [
  50744. {
  50745. name: "Normal",
  50746. height: math.unit(5 + 4/12, "feet"),
  50747. default: true
  50748. },
  50749. ]
  50750. ))
  50751. characterMakers.push(() => makeCharacter(
  50752. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50753. {
  50754. front: {
  50755. height: math.unit(6, "feet"),
  50756. name: "Front",
  50757. image: {
  50758. source: "./media/characters/roselle-st-papier/front.svg",
  50759. extra: 1430/1280,
  50760. bottom: 37/1467
  50761. }
  50762. },
  50763. back: {
  50764. height: math.unit(6, "feet"),
  50765. name: "Back",
  50766. image: {
  50767. source: "./media/characters/roselle-st-papier/back.svg",
  50768. extra: 1491/1296,
  50769. bottom: 23/1514
  50770. }
  50771. },
  50772. ear: {
  50773. height: math.unit(1.26, "feet"),
  50774. name: "Ear",
  50775. image: {
  50776. source: "./media/characters/roselle-st-papier/ear.svg"
  50777. }
  50778. },
  50779. },
  50780. [
  50781. {
  50782. name: "Normal",
  50783. height: math.unit(150, "feet"),
  50784. default: true
  50785. },
  50786. ]
  50787. ))
  50788. characterMakers.push(() => makeCharacter(
  50789. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50790. {
  50791. front: {
  50792. height: math.unit(1, "inches"),
  50793. name: "Front",
  50794. image: {
  50795. source: "./media/characters/valargent/front.svg",
  50796. extra: 1825/1694,
  50797. bottom: 62/1887
  50798. }
  50799. },
  50800. back: {
  50801. height: math.unit(1, "inches"),
  50802. name: "Back",
  50803. image: {
  50804. source: "./media/characters/valargent/back.svg",
  50805. extra: 1775/1682,
  50806. bottom: 88/1863
  50807. }
  50808. },
  50809. },
  50810. [
  50811. {
  50812. name: "Micro",
  50813. height: math.unit(1, "inch"),
  50814. default: true
  50815. },
  50816. ]
  50817. ))
  50818. characterMakers.push(() => makeCharacter(
  50819. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50820. {
  50821. front: {
  50822. height: math.unit(3.4, "meters"),
  50823. name: "Front",
  50824. image: {
  50825. source: "./media/characters/zarina/front.svg",
  50826. extra: 1733/1425,
  50827. bottom: 93/1826
  50828. }
  50829. },
  50830. squatting: {
  50831. height: math.unit(2.14, "meters"),
  50832. name: "Squatting",
  50833. image: {
  50834. source: "./media/characters/zarina/squatting.svg",
  50835. extra: 1073/788,
  50836. bottom: 63/1136
  50837. }
  50838. },
  50839. back: {
  50840. height: math.unit(2.14, "meters"),
  50841. name: "Back",
  50842. image: {
  50843. source: "./media/characters/zarina/back.svg",
  50844. extra: 1128/885,
  50845. bottom: 0/1128
  50846. }
  50847. },
  50848. },
  50849. [
  50850. {
  50851. name: "Normal",
  50852. height: math.unit(3.4, "meters"),
  50853. default: true
  50854. },
  50855. {
  50856. name: "Big",
  50857. height: math.unit(5, "meters")
  50858. },
  50859. {
  50860. name: "Macro",
  50861. height: math.unit(110, "meters")
  50862. },
  50863. ]
  50864. ))
  50865. characterMakers.push(() => makeCharacter(
  50866. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50867. {
  50868. front: {
  50869. height: math.unit(7, "feet"),
  50870. name: "Front",
  50871. image: {
  50872. source: "./media/characters/ventus-astro-fox/front.svg",
  50873. extra: 1792/1623,
  50874. bottom: 28/1820
  50875. }
  50876. },
  50877. back: {
  50878. height: math.unit(7, "feet"),
  50879. name: "Back",
  50880. image: {
  50881. source: "./media/characters/ventus-astro-fox/back.svg",
  50882. extra: 1789/1620,
  50883. bottom: 31/1820
  50884. }
  50885. },
  50886. outfit: {
  50887. height: math.unit(7, "feet"),
  50888. name: "Outfit",
  50889. image: {
  50890. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50891. extra: 1054/925,
  50892. bottom: 15/1069
  50893. }
  50894. },
  50895. head: {
  50896. height: math.unit(1.12, "feet"),
  50897. name: "Head",
  50898. image: {
  50899. source: "./media/characters/ventus-astro-fox/head.svg",
  50900. extra: 866/504,
  50901. bottom: 0/866
  50902. }
  50903. },
  50904. hand: {
  50905. height: math.unit(1, "feet"),
  50906. name: "Hand",
  50907. image: {
  50908. source: "./media/characters/ventus-astro-fox/hand.svg"
  50909. }
  50910. },
  50911. paw: {
  50912. height: math.unit(1.5, "feet"),
  50913. name: "Paw",
  50914. image: {
  50915. source: "./media/characters/ventus-astro-fox/paw.svg"
  50916. }
  50917. },
  50918. },
  50919. [
  50920. {
  50921. name: "Normal",
  50922. height: math.unit(7, "feet"),
  50923. default: true
  50924. },
  50925. {
  50926. name: "Macro",
  50927. height: math.unit(200, "feet")
  50928. },
  50929. {
  50930. name: "Cosmic",
  50931. height: math.unit(3, "universes")
  50932. },
  50933. ]
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50937. {
  50938. front: {
  50939. height: math.unit(3, "meters"),
  50940. weight: math.unit(7000, "lb"),
  50941. name: "Front",
  50942. image: {
  50943. source: "./media/characters/core-t/front.svg",
  50944. extra: 5729/4941,
  50945. bottom: 1129/6858
  50946. }
  50947. },
  50948. },
  50949. [
  50950. {
  50951. name: "Big",
  50952. height: math.unit(3, "meters"),
  50953. default: true
  50954. },
  50955. ]
  50956. ))
  50957. characterMakers.push(() => makeCharacter(
  50958. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50959. {
  50960. normal: {
  50961. height: math.unit(6 + 6/12, "feet"),
  50962. weight: math.unit(275, "lb"),
  50963. name: "Front",
  50964. image: {
  50965. source: "./media/characters/cadbunny/normal.svg",
  50966. extra: 1129/947,
  50967. bottom: 93/1222
  50968. },
  50969. default: true,
  50970. form: "normal"
  50971. },
  50972. gigantamax: {
  50973. height: math.unit(26, "feet"),
  50974. weight: math.unit(16000, "lb"),
  50975. name: "Front",
  50976. image: {
  50977. source: "./media/characters/cadbunny/gigantamax.svg",
  50978. extra: 1133/944,
  50979. bottom: 90/1223
  50980. },
  50981. default: true,
  50982. form: "gigantamax"
  50983. },
  50984. },
  50985. [
  50986. {
  50987. name: "Normal",
  50988. height: math.unit(6 + 6/12, "feet"),
  50989. default: true,
  50990. form: "normal"
  50991. },
  50992. {
  50993. name: "Small",
  50994. height: math.unit(26, "feet"),
  50995. default: true,
  50996. form: "gigantamax"
  50997. },
  50998. {
  50999. name: "Large",
  51000. height: math.unit(78, "feet"),
  51001. form: "gigantamax"
  51002. },
  51003. ],
  51004. {
  51005. "normal": {
  51006. name: "Normal",
  51007. default: true
  51008. },
  51009. "gigantamax": {
  51010. name: "Gigantamax"
  51011. }
  51012. }
  51013. ))
  51014. characterMakers.push(() => makeCharacter(
  51015. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51016. {
  51017. anthroFront: {
  51018. height: math.unit(8, "feet"),
  51019. weight: math.unit(300, "lb"),
  51020. name: "Front",
  51021. image: {
  51022. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51023. extra: 1272/1176,
  51024. bottom: 53/1325
  51025. },
  51026. form: "anthro",
  51027. default: true
  51028. },
  51029. feralSide: {
  51030. height: math.unit(4, "feet"),
  51031. weight: math.unit(250, "lb"),
  51032. name: "Side",
  51033. image: {
  51034. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51035. extra: 731/621,
  51036. bottom: 0/731
  51037. },
  51038. form: "feral",
  51039. default: true
  51040. },
  51041. },
  51042. [
  51043. {
  51044. name: "Regular",
  51045. height: math.unit(8, "feet"),
  51046. form: "anthro"
  51047. },
  51048. {
  51049. name: "Macro",
  51050. height: math.unit(250, "feet"),
  51051. form: "anthro",
  51052. default: true
  51053. },
  51054. {
  51055. name: "Regular",
  51056. height: math.unit(4, "feet"),
  51057. form: "feral"
  51058. },
  51059. {
  51060. name: "Macro",
  51061. height: math.unit(125, "feet"),
  51062. form: "feral",
  51063. default: true
  51064. },
  51065. ],
  51066. {
  51067. "anthro": {
  51068. name: "Anthro",
  51069. default: true
  51070. },
  51071. "feral": {
  51072. name: "Feral",
  51073. },
  51074. }
  51075. ))
  51076. characterMakers.push(() => makeCharacter(
  51077. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51078. {
  51079. front: {
  51080. height: math.unit(11 + 10/12, "feet"),
  51081. weight: math.unit(1587, "kg"),
  51082. name: "Front",
  51083. image: {
  51084. source: "./media/characters/maple-javira-dragon/front.svg",
  51085. extra: 1136/744,
  51086. bottom: 73/1209
  51087. }
  51088. },
  51089. side: {
  51090. height: math.unit(11 + 10/12, "feet"),
  51091. weight: math.unit(1587, "kg"),
  51092. name: "Side",
  51093. image: {
  51094. source: "./media/characters/maple-javira-dragon/side.svg",
  51095. extra: 712/505,
  51096. bottom: 17/729
  51097. }
  51098. },
  51099. head: {
  51100. height: math.unit(8.05, "feet"),
  51101. name: "Head",
  51102. image: {
  51103. source: "./media/characters/maple-javira-dragon/head.svg",
  51104. extra: 1420/1344,
  51105. bottom: 0/1420
  51106. }
  51107. },
  51108. },
  51109. [
  51110. {
  51111. name: "Normal",
  51112. height: math.unit(11 + 10/12, "feet"),
  51113. default: true
  51114. },
  51115. ]
  51116. ))
  51117. characterMakers.push(() => makeCharacter(
  51118. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51119. {
  51120. front: {
  51121. height: math.unit(117, "cm"),
  51122. weight: math.unit(50, "kg"),
  51123. name: "Front",
  51124. image: {
  51125. source: "./media/characters/sonia-wyverntail/front.svg",
  51126. extra: 708/592,
  51127. bottom: 25/733
  51128. }
  51129. },
  51130. },
  51131. [
  51132. {
  51133. name: "Normal",
  51134. height: math.unit(117, "cm"),
  51135. default: true
  51136. },
  51137. ]
  51138. ))
  51139. characterMakers.push(() => makeCharacter(
  51140. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51141. {
  51142. front: {
  51143. height: math.unit(6 + 5/12, "feet"),
  51144. name: "Front",
  51145. image: {
  51146. source: "./media/characters/micah/front.svg",
  51147. extra: 1758/1546,
  51148. bottom: 214/1972
  51149. }
  51150. },
  51151. },
  51152. [
  51153. {
  51154. name: "Normal",
  51155. height: math.unit(6 + 5/12, "feet"),
  51156. default: true
  51157. },
  51158. ]
  51159. ))
  51160. characterMakers.push(() => makeCharacter(
  51161. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51162. {
  51163. front: {
  51164. height: math.unit(5 + 10/12, "feet"),
  51165. weight: math.unit(220, "lb"),
  51166. name: "Front",
  51167. image: {
  51168. source: "./media/characters/zarya/front.svg",
  51169. extra: 593/572,
  51170. bottom: 50/643
  51171. }
  51172. },
  51173. back: {
  51174. height: math.unit(5 + 10/12, "feet"),
  51175. weight: math.unit(220, "lb"),
  51176. name: "Back",
  51177. image: {
  51178. source: "./media/characters/zarya/back.svg",
  51179. extra: 603/582,
  51180. bottom: 38/641
  51181. }
  51182. },
  51183. },
  51184. [
  51185. {
  51186. name: "Normal",
  51187. height: math.unit(5 + 10/12, "feet"),
  51188. default: true
  51189. },
  51190. ]
  51191. ))
  51192. characterMakers.push(() => makeCharacter(
  51193. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51194. {
  51195. front: {
  51196. height: math.unit(7.5, "feet"),
  51197. name: "Front",
  51198. image: {
  51199. source: "./media/characters/sven-hatisson/front.svg",
  51200. extra: 917/857,
  51201. bottom: 42/959
  51202. }
  51203. },
  51204. back: {
  51205. height: math.unit(7.5, "feet"),
  51206. name: "Back",
  51207. image: {
  51208. source: "./media/characters/sven-hatisson/back.svg",
  51209. extra: 903/856,
  51210. bottom: 15/918
  51211. }
  51212. },
  51213. },
  51214. [
  51215. {
  51216. name: "Base Height",
  51217. height: math.unit(7.5, "feet")
  51218. },
  51219. {
  51220. name: "Usual Height",
  51221. height: math.unit(13.5, "feet"),
  51222. default: true
  51223. },
  51224. {
  51225. name: "Smaller Macro",
  51226. height: math.unit(85, "feet")
  51227. },
  51228. {
  51229. name: "Moderate Macro",
  51230. height: math.unit(320, "feet")
  51231. },
  51232. {
  51233. name: "Large Macro",
  51234. height: math.unit(1000, "feet")
  51235. },
  51236. {
  51237. name: "Largest Size",
  51238. height: math.unit(2, "miles")
  51239. },
  51240. ]
  51241. ))
  51242. characterMakers.push(() => makeCharacter(
  51243. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51244. {
  51245. side: {
  51246. height: math.unit(1.8, "meters"),
  51247. weight: math.unit(275, "kg"),
  51248. name: "Side",
  51249. image: {
  51250. source: "./media/characters/terra/side.svg",
  51251. extra: 1273/1147,
  51252. bottom: 0/1273
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Normal",
  51259. height: math.unit(16.2, "meters"),
  51260. default: true
  51261. },
  51262. ]
  51263. ))
  51264. characterMakers.push(() => makeCharacter(
  51265. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51266. {
  51267. borzoiFront: {
  51268. height: math.unit(6 + 9/12, "feet"),
  51269. name: "Front",
  51270. image: {
  51271. source: "./media/characters/rae/borzoi-front.svg",
  51272. extra: 1161/1098,
  51273. bottom: 31/1192
  51274. },
  51275. form: "borzoi",
  51276. default: true
  51277. },
  51278. werewolfFront: {
  51279. height: math.unit(8 + 7/12, "feet"),
  51280. name: "Front",
  51281. image: {
  51282. source: "./media/characters/rae/werewolf-front.svg",
  51283. extra: 1411/1334,
  51284. bottom: 127/1538
  51285. },
  51286. form: "werewolf",
  51287. default: true
  51288. },
  51289. },
  51290. [
  51291. {
  51292. name: "Normal",
  51293. height: math.unit(6 + 9/12, "feet"),
  51294. default: true,
  51295. form: "borzoi"
  51296. },
  51297. {
  51298. name: "Normal",
  51299. height: math.unit(8 + 7/12, "feet"),
  51300. default: true,
  51301. form: "werewolf"
  51302. },
  51303. ],
  51304. {
  51305. "borzoi": {
  51306. name: "Borzoi",
  51307. default: true
  51308. },
  51309. "werewolf": {
  51310. name: "Werewolf",
  51311. },
  51312. }
  51313. ))
  51314. characterMakers.push(() => makeCharacter(
  51315. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51316. {
  51317. front: {
  51318. height: math.unit(8 + 7/12, "feet"),
  51319. weight: math.unit(482, "lb"),
  51320. name: "Front",
  51321. image: {
  51322. source: "./media/characters/kit/front.svg",
  51323. extra: 1247/1103,
  51324. bottom: 41/1288
  51325. }
  51326. },
  51327. back: {
  51328. height: math.unit(8 + 7/12, "feet"),
  51329. weight: math.unit(482, "lb"),
  51330. name: "Back",
  51331. image: {
  51332. source: "./media/characters/kit/back.svg",
  51333. extra: 1252/1123,
  51334. bottom: 21/1273
  51335. }
  51336. },
  51337. paw: {
  51338. height: math.unit(1.46, "feet"),
  51339. name: "Paw",
  51340. image: {
  51341. source: "./media/characters/kit/paw.svg"
  51342. }
  51343. },
  51344. },
  51345. [
  51346. {
  51347. name: "Normal",
  51348. height: math.unit(2.61, "meters"),
  51349. default: true
  51350. },
  51351. {
  51352. name: "\"Tall\"",
  51353. height: math.unit(8.21, "meters")
  51354. },
  51355. {
  51356. name: "Tall",
  51357. height: math.unit(19.6, "meters")
  51358. },
  51359. {
  51360. name: "Very Tall",
  51361. height: math.unit(57.91, "meters")
  51362. },
  51363. {
  51364. name: "Semi-Macro",
  51365. height: math.unit(138.64, "meters")
  51366. },
  51367. {
  51368. name: "Macro",
  51369. height: math.unit(831.99, "meters")
  51370. },
  51371. {
  51372. name: "EX-Macro",
  51373. height: math.unit(96451121, "meters")
  51374. },
  51375. {
  51376. name: "S1-Omnipotent",
  51377. height: math.unit(4.42074e+9, "meters")
  51378. },
  51379. {
  51380. name: "S2-Omnipotent",
  51381. height: math.unit(9.42074e+17, "meters")
  51382. },
  51383. {
  51384. name: "Omnipotent",
  51385. height: math.unit(4.23112e+24, "meters")
  51386. },
  51387. {
  51388. name: "Hypergod",
  51389. height: math.unit(5.05176e+27, "meters")
  51390. },
  51391. {
  51392. name: "Hypergod-EX",
  51393. height: math.unit(9.45532e+49, "meters")
  51394. },
  51395. {
  51396. name: "Hypergod-SP",
  51397. height: math.unit(9.45532e+195, "meters")
  51398. },
  51399. ]
  51400. ))
  51401. characterMakers.push(() => makeCharacter(
  51402. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51403. {
  51404. side: {
  51405. height: math.unit(0.6, "meters"),
  51406. weight: math.unit(24, "kg"),
  51407. name: "Side",
  51408. image: {
  51409. source: "./media/characters/celeste/side.svg",
  51410. extra: 810/517,
  51411. bottom: 53/863
  51412. }
  51413. },
  51414. },
  51415. [
  51416. {
  51417. name: "Velociraptor",
  51418. height: math.unit(0.6, "meters"),
  51419. default: true
  51420. },
  51421. {
  51422. name: "Utahraptor",
  51423. height: math.unit(1.8, "meters")
  51424. },
  51425. {
  51426. name: "Gallimimus",
  51427. height: math.unit(4.0, "meters")
  51428. },
  51429. {
  51430. name: "Large",
  51431. height: math.unit(20, "meters")
  51432. },
  51433. {
  51434. name: "Planetary",
  51435. height: math.unit(50, "megameters")
  51436. },
  51437. {
  51438. name: "Stellar",
  51439. height: math.unit(1.5, "gigameters")
  51440. },
  51441. {
  51442. name: "Galactic",
  51443. height: math.unit(100, "exameters")
  51444. },
  51445. ]
  51446. ))
  51447. characterMakers.push(() => makeCharacter(
  51448. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51449. {
  51450. front: {
  51451. height: math.unit(6, "feet"),
  51452. weight: math.unit(210, "lb"),
  51453. name: "Front",
  51454. image: {
  51455. source: "./media/characters/glacia/front.svg",
  51456. extra: 958/901,
  51457. bottom: 45/1003
  51458. }
  51459. },
  51460. },
  51461. [
  51462. {
  51463. name: "Macro",
  51464. height: math.unit(1000, "meters"),
  51465. default: true
  51466. },
  51467. ]
  51468. ))
  51469. characterMakers.push(() => makeCharacter(
  51470. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51471. {
  51472. front: {
  51473. height: math.unit(4, "meters"),
  51474. name: "Front",
  51475. image: {
  51476. source: "./media/characters/giri/front.svg",
  51477. extra: 966/894,
  51478. bottom: 21/987
  51479. }
  51480. },
  51481. },
  51482. [
  51483. {
  51484. name: "Normal",
  51485. height: math.unit(4, "meters"),
  51486. default: true
  51487. },
  51488. ]
  51489. ))
  51490. characterMakers.push(() => makeCharacter(
  51491. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51492. {
  51493. back: {
  51494. height: math.unit(4, "feet"),
  51495. weight: math.unit(37, "lb"),
  51496. name: "Back",
  51497. image: {
  51498. source: "./media/characters/tin/back.svg",
  51499. extra: 845/780,
  51500. bottom: 28/873
  51501. }
  51502. },
  51503. },
  51504. [
  51505. {
  51506. name: "Normal",
  51507. height: math.unit(4, "feet"),
  51508. default: true
  51509. },
  51510. ]
  51511. ))
  51512. characterMakers.push(() => makeCharacter(
  51513. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51514. {
  51515. front: {
  51516. height: math.unit(25, "feet"),
  51517. name: "Front",
  51518. image: {
  51519. source: "./media/characters/cadenza-vivace/front.svg",
  51520. extra: 1842/1578,
  51521. bottom: 30/1872
  51522. }
  51523. },
  51524. },
  51525. [
  51526. {
  51527. name: "Macro",
  51528. height: math.unit(25, "feet"),
  51529. default: true
  51530. },
  51531. ]
  51532. ))
  51533. characterMakers.push(() => makeCharacter(
  51534. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51535. {
  51536. front: {
  51537. height: math.unit(10, "feet"),
  51538. weight: math.unit(625, "kg"),
  51539. name: "Front",
  51540. image: {
  51541. source: "./media/characters/zain/front.svg",
  51542. extra: 1682/1498,
  51543. bottom: 223/1905
  51544. }
  51545. },
  51546. back: {
  51547. height: math.unit(10, "feet"),
  51548. weight: math.unit(625, "kg"),
  51549. name: "Back",
  51550. image: {
  51551. source: "./media/characters/zain/back.svg",
  51552. extra: 1814/1657,
  51553. bottom: 152/1966
  51554. }
  51555. },
  51556. head: {
  51557. height: math.unit(10, "feet"),
  51558. weight: math.unit(625, "kg"),
  51559. name: "Head",
  51560. image: {
  51561. source: "./media/characters/zain/head.svg",
  51562. extra: 1059/762,
  51563. bottom: 0/1059
  51564. }
  51565. },
  51566. },
  51567. [
  51568. {
  51569. name: "Normal",
  51570. height: math.unit(10, "feet"),
  51571. default: true
  51572. },
  51573. ]
  51574. ))
  51575. characterMakers.push(() => makeCharacter(
  51576. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51577. {
  51578. front: {
  51579. height: math.unit(6 + 5/12, "feet"),
  51580. weight: math.unit(750, "lb"),
  51581. name: "Front",
  51582. image: {
  51583. source: "./media/characters/ruchex/front.svg",
  51584. extra: 877/820,
  51585. bottom: 17/894
  51586. },
  51587. extraAttributes: {
  51588. "width": {
  51589. name: "Width",
  51590. power: 1,
  51591. type: "length",
  51592. base: math.unit(4.757, "feet")
  51593. },
  51594. }
  51595. },
  51596. },
  51597. [
  51598. {
  51599. name: "Normal",
  51600. height: math.unit(6 + 5/12, "feet"),
  51601. default: true
  51602. },
  51603. ]
  51604. ))
  51605. characterMakers.push(() => makeCharacter(
  51606. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51607. {
  51608. dressedFront: {
  51609. height: math.unit(191, "cm"),
  51610. weight: math.unit(80, "kg"),
  51611. name: "Front",
  51612. image: {
  51613. source: "./media/characters/buster/dressed-front.svg",
  51614. extra: 1022/973,
  51615. bottom: 69/1091
  51616. }
  51617. },
  51618. dressedBack: {
  51619. height: math.unit(191, "cm"),
  51620. weight: math.unit(80, "kg"),
  51621. name: "Back",
  51622. image: {
  51623. source: "./media/characters/buster/dressed-back.svg",
  51624. extra: 1018/970,
  51625. bottom: 55/1073
  51626. }
  51627. },
  51628. nudeFront: {
  51629. height: math.unit(191, "cm"),
  51630. weight: math.unit(80, "kg"),
  51631. name: "Front (Nude)",
  51632. image: {
  51633. source: "./media/characters/buster/nude-front.svg",
  51634. extra: 1022/973,
  51635. bottom: 69/1091
  51636. }
  51637. },
  51638. nudeBack: {
  51639. height: math.unit(191, "cm"),
  51640. weight: math.unit(80, "kg"),
  51641. name: "Back (Nude)",
  51642. image: {
  51643. source: "./media/characters/buster/nude-back.svg",
  51644. extra: 1018/970,
  51645. bottom: 55/1073
  51646. }
  51647. },
  51648. dick: {
  51649. height: math.unit(2.59, "feet"),
  51650. name: "Dick",
  51651. image: {
  51652. source: "./media/characters/buster/dick.svg"
  51653. }
  51654. },
  51655. ass: {
  51656. height: math.unit(1.2, "feet"),
  51657. name: "Ass",
  51658. image: {
  51659. source: "./media/characters/buster/ass.svg"
  51660. }
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Normal",
  51666. height: math.unit(191, "cm"),
  51667. default: true
  51668. },
  51669. ]
  51670. ))
  51671. characterMakers.push(() => makeCharacter(
  51672. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51673. {
  51674. side: {
  51675. height: math.unit(8.1, "feet"),
  51676. weight: math.unit(3500, "lb"),
  51677. name: "Side",
  51678. image: {
  51679. source: "./media/characters/sonya/side.svg",
  51680. extra: 1730/1317,
  51681. bottom: 86/1816
  51682. }
  51683. },
  51684. },
  51685. [
  51686. {
  51687. name: "Normal",
  51688. height: math.unit(8.1, "feet"),
  51689. default: true
  51690. },
  51691. ]
  51692. ))
  51693. characterMakers.push(() => makeCharacter(
  51694. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51695. {
  51696. front: {
  51697. height: math.unit(6, "feet"),
  51698. weight: math.unit(150, "lb"),
  51699. name: "Front",
  51700. image: {
  51701. source: "./media/characters/cadence-andrysiak/front.svg",
  51702. extra: 1164/1121,
  51703. bottom: 60/1224
  51704. }
  51705. },
  51706. back: {
  51707. height: math.unit(6, "feet"),
  51708. weight: math.unit(150, "lb"),
  51709. name: "Back",
  51710. image: {
  51711. source: "./media/characters/cadence-andrysiak/back.svg",
  51712. extra: 1200/1165,
  51713. bottom: 9/1209
  51714. }
  51715. },
  51716. dressed: {
  51717. height: math.unit(6, "feet"),
  51718. weight: math.unit(150, "lb"),
  51719. name: "Dressed",
  51720. image: {
  51721. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51722. extra: 1164/1121,
  51723. bottom: 60/1224
  51724. }
  51725. },
  51726. },
  51727. [
  51728. {
  51729. name: "Micro",
  51730. height: math.unit(1, "mm")
  51731. },
  51732. {
  51733. name: "Normal",
  51734. height: math.unit(6, "feet"),
  51735. default: true
  51736. },
  51737. ]
  51738. ))
  51739. characterMakers.push(() => makeCharacter(
  51740. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51741. {
  51742. front: {
  51743. height: math.unit(60, "inches"),
  51744. weight: math.unit(16, "lb"),
  51745. preyCapacity: math.unit(80, "liters"),
  51746. name: "Front",
  51747. image: {
  51748. source: "./media/characters/penny-lynx/front.svg",
  51749. extra: 1959/1769,
  51750. bottom: 49/2008
  51751. }
  51752. },
  51753. },
  51754. [
  51755. {
  51756. name: "Nokia",
  51757. height: math.unit(2, "inches")
  51758. },
  51759. {
  51760. name: "Desktop",
  51761. height: math.unit(24, "inches")
  51762. },
  51763. {
  51764. name: "TV",
  51765. height: math.unit(60, "inches")
  51766. },
  51767. {
  51768. name: "Jumbotron",
  51769. height: math.unit(12, "feet")
  51770. },
  51771. {
  51772. name: "Billboard",
  51773. height: math.unit(48, "feet"),
  51774. default: true
  51775. },
  51776. {
  51777. name: "IMAX",
  51778. height: math.unit(96, "feet")
  51779. },
  51780. {
  51781. name: "SINGULARITY",
  51782. height: math.unit(864938, "miles")
  51783. },
  51784. ]
  51785. ))
  51786. characterMakers.push(() => makeCharacter(
  51787. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51788. {
  51789. front: {
  51790. height: math.unit(5 + 4/12, "feet"),
  51791. weight: math.unit(230, "lb"),
  51792. name: "Front",
  51793. image: {
  51794. source: "./media/characters/sukebe/front.svg",
  51795. extra: 2130/2038,
  51796. bottom: 90/2220
  51797. }
  51798. },
  51799. back: {
  51800. height: math.unit(3.48, "feet"),
  51801. weight: math.unit(230, "lb"),
  51802. name: "Back",
  51803. image: {
  51804. source: "./media/characters/sukebe/back.svg",
  51805. extra: 1670/1604,
  51806. bottom: 0/1670
  51807. }
  51808. },
  51809. },
  51810. [
  51811. {
  51812. name: "Normal",
  51813. height: math.unit(5 + 4/12, "feet"),
  51814. default: true
  51815. },
  51816. ]
  51817. ))
  51818. characterMakers.push(() => makeCharacter(
  51819. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51820. {
  51821. front: {
  51822. height: math.unit(6, "feet"),
  51823. name: "Front",
  51824. image: {
  51825. source: "./media/characters/nylla/front.svg",
  51826. extra: 1868/1699,
  51827. bottom: 97/1965
  51828. }
  51829. },
  51830. back: {
  51831. height: math.unit(6, "feet"),
  51832. name: "Back",
  51833. image: {
  51834. source: "./media/characters/nylla/back.svg",
  51835. extra: 1889/1712,
  51836. bottom: 93/1982
  51837. }
  51838. },
  51839. frontNsfw: {
  51840. height: math.unit(6, "feet"),
  51841. name: "Front (NSFW)",
  51842. image: {
  51843. source: "./media/characters/nylla/front-nsfw.svg",
  51844. extra: 1868/1699,
  51845. bottom: 97/1965
  51846. },
  51847. extraAttributes: {
  51848. "dickLength": {
  51849. name: "Dick Length",
  51850. power: 1,
  51851. type: "length",
  51852. base: math.unit(1.4, "feet")
  51853. },
  51854. "cumVolume": {
  51855. name: "Cum Volume",
  51856. power: 3,
  51857. type: "volume",
  51858. base: math.unit(100, "mL")
  51859. },
  51860. }
  51861. },
  51862. backNsfw: {
  51863. height: math.unit(6, "feet"),
  51864. name: "Back (NSFW)",
  51865. image: {
  51866. source: "./media/characters/nylla/back-nsfw.svg",
  51867. extra: 1889/1712,
  51868. bottom: 93/1982
  51869. }
  51870. },
  51871. maw: {
  51872. height: math.unit(2.10, "feet"),
  51873. name: "Maw",
  51874. image: {
  51875. source: "./media/characters/nylla/maw.svg"
  51876. }
  51877. },
  51878. paws: {
  51879. height: math.unit(2.06, "feet"),
  51880. name: "Paws",
  51881. image: {
  51882. source: "./media/characters/nylla/paws.svg"
  51883. }
  51884. },
  51885. muzzle: {
  51886. height: math.unit(0.61, "feet"),
  51887. name: "Muzzle",
  51888. image: {
  51889. source: "./media/characters/nylla/muzzle.svg"
  51890. }
  51891. },
  51892. sheath: {
  51893. height: math.unit(1.305, "feet"),
  51894. name: "Sheath",
  51895. image: {
  51896. source: "./media/characters/nylla/sheath.svg"
  51897. }
  51898. },
  51899. },
  51900. [
  51901. {
  51902. name: "Micro",
  51903. height: math.unit(7.5, "inches")
  51904. },
  51905. {
  51906. name: "Normal",
  51907. height: math.unit(7, "feet"),
  51908. default: true
  51909. },
  51910. {
  51911. name: "Macro",
  51912. height: math.unit(60, "feet")
  51913. },
  51914. {
  51915. name: "Mega",
  51916. height: math.unit(200, "feet")
  51917. },
  51918. ]
  51919. ))
  51920. characterMakers.push(() => makeCharacter(
  51921. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51922. {
  51923. front: {
  51924. height: math.unit(10, "feet"),
  51925. weight: math.unit(2300, "lb"),
  51926. name: "Front",
  51927. image: {
  51928. source: "./media/characters/hunt3r/front.svg",
  51929. extra: 1909/1742,
  51930. bottom: 46/1955
  51931. }
  51932. },
  51933. },
  51934. [
  51935. {
  51936. name: "Normal",
  51937. height: math.unit(10, "feet"),
  51938. default: true
  51939. },
  51940. ]
  51941. ))
  51942. characterMakers.push(() => makeCharacter(
  51943. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51944. {
  51945. dressed: {
  51946. height: math.unit(11, "feet"),
  51947. weight: math.unit(18500, "lb"),
  51948. preyCapacity: math.unit(9, "people"),
  51949. name: "Dressed",
  51950. image: {
  51951. source: "./media/characters/cylphis/dressed.svg",
  51952. extra: 1028/1003,
  51953. bottom: 75/1103
  51954. },
  51955. },
  51956. undressed: {
  51957. height: math.unit(11, "feet"),
  51958. weight: math.unit(18500, "lb"),
  51959. preyCapacity: math.unit(9, "people"),
  51960. name: "Undressed",
  51961. image: {
  51962. source: "./media/characters/cylphis/undressed.svg",
  51963. extra: 1028/1003,
  51964. bottom: 75/1103
  51965. }
  51966. },
  51967. full: {
  51968. height: math.unit(11, "feet"),
  51969. weight: math.unit(18500 + 150*9, "lb"),
  51970. preyCapacity: math.unit(9, "people"),
  51971. name: "Full",
  51972. image: {
  51973. source: "./media/characters/cylphis/full.svg",
  51974. extra: 1028/1003,
  51975. bottom: 75/1103
  51976. }
  51977. },
  51978. },
  51979. [
  51980. {
  51981. name: "Small",
  51982. height: math.unit(8, "feet")
  51983. },
  51984. {
  51985. name: "Normal",
  51986. height: math.unit(11, "feet"),
  51987. default: true
  51988. },
  51989. ]
  51990. ))
  51991. characterMakers.push(() => makeCharacter(
  51992. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51993. {
  51994. front: {
  51995. height: math.unit(2 + 7/12, "feet"),
  51996. name: "Front",
  51997. image: {
  51998. source: "./media/characters/orishan/front.svg",
  51999. extra: 1058/1023,
  52000. bottom: 23/1081
  52001. }
  52002. },
  52003. back: {
  52004. height: math.unit(2 + 7/12, "feet"),
  52005. name: "Back",
  52006. image: {
  52007. source: "./media/characters/orishan/back.svg",
  52008. extra: 1058/1023,
  52009. bottom: 23/1081
  52010. }
  52011. },
  52012. },
  52013. [
  52014. {
  52015. name: "Micro",
  52016. height: math.unit(2, "cm")
  52017. },
  52018. {
  52019. name: "Normal",
  52020. height: math.unit(2 + 7/12, "feet"),
  52021. default: true
  52022. },
  52023. ]
  52024. ))
  52025. characterMakers.push(() => makeCharacter(
  52026. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52027. {
  52028. front: {
  52029. height: math.unit(3, "meters"),
  52030. weight: math.unit(508, "kg"),
  52031. name: "Front",
  52032. image: {
  52033. source: "./media/characters/seranis/front.svg",
  52034. extra: 1478/1454,
  52035. bottom: 41/1519
  52036. }
  52037. },
  52038. },
  52039. [
  52040. {
  52041. name: "Normal",
  52042. height: math.unit(3, "meters"),
  52043. default: true
  52044. },
  52045. {
  52046. name: "Macro",
  52047. height: math.unit(108, "meters")
  52048. },
  52049. {
  52050. name: "Megamacro",
  52051. height: math.unit(1250, "meters")
  52052. },
  52053. ]
  52054. ))
  52055. characterMakers.push(() => makeCharacter(
  52056. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52057. {
  52058. undressed: {
  52059. height: math.unit(5 + 3/12, "feet"),
  52060. name: "Undressed",
  52061. image: {
  52062. source: "./media/characters/ankou/undressed.svg",
  52063. extra: 1301/1213,
  52064. bottom: 87/1388
  52065. }
  52066. },
  52067. dressed: {
  52068. height: math.unit(5 + 3/12, "feet"),
  52069. name: "Dressed",
  52070. image: {
  52071. source: "./media/characters/ankou/dressed.svg",
  52072. extra: 1301/1213,
  52073. bottom: 87/1388
  52074. }
  52075. },
  52076. head: {
  52077. height: math.unit(1.61, "feet"),
  52078. name: "Head",
  52079. image: {
  52080. source: "./media/characters/ankou/head.svg"
  52081. }
  52082. },
  52083. },
  52084. [
  52085. {
  52086. name: "Normal",
  52087. height: math.unit(5 + 3/12, "feet"),
  52088. default: true
  52089. },
  52090. ]
  52091. ))
  52092. characterMakers.push(() => makeCharacter(
  52093. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52094. {
  52095. side: {
  52096. height: math.unit(6 + 3/12, "feet"),
  52097. weight: math.unit(200, "kg"),
  52098. name: "Side",
  52099. image: {
  52100. source: "./media/characters/juniper-skunktaur/side.svg",
  52101. extra: 1574/1229,
  52102. bottom: 38/1612
  52103. }
  52104. },
  52105. front: {
  52106. height: math.unit(6 + 3/12, "feet"),
  52107. weight: math.unit(200, "kg"),
  52108. name: "Front",
  52109. image: {
  52110. source: "./media/characters/juniper-skunktaur/front.svg",
  52111. extra: 1337/1278,
  52112. bottom: 22/1359
  52113. }
  52114. },
  52115. back: {
  52116. height: math.unit(6 + 3/12, "feet"),
  52117. weight: math.unit(200, "kg"),
  52118. name: "Back",
  52119. image: {
  52120. source: "./media/characters/juniper-skunktaur/back.svg",
  52121. extra: 1618/1273,
  52122. bottom: 13/1631
  52123. }
  52124. },
  52125. top: {
  52126. height: math.unit(2.62, "feet"),
  52127. weight: math.unit(200, "kg"),
  52128. name: "Top",
  52129. image: {
  52130. source: "./media/characters/juniper-skunktaur/top.svg"
  52131. }
  52132. },
  52133. },
  52134. [
  52135. {
  52136. name: "Normal",
  52137. height: math.unit(6 + 3/12, "feet"),
  52138. default: true
  52139. },
  52140. ]
  52141. ))
  52142. characterMakers.push(() => makeCharacter(
  52143. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52144. {
  52145. front: {
  52146. height: math.unit(20.5, "feet"),
  52147. name: "Front",
  52148. image: {
  52149. source: "./media/characters/rei/front.svg",
  52150. extra: 1349/1195,
  52151. bottom: 31/1380
  52152. }
  52153. },
  52154. back: {
  52155. height: math.unit(20.5, "feet"),
  52156. name: "Back",
  52157. image: {
  52158. source: "./media/characters/rei/back.svg",
  52159. extra: 1358/1204,
  52160. bottom: 22/1380
  52161. }
  52162. },
  52163. pawsDigi: {
  52164. height: math.unit(3.45, "feet"),
  52165. name: "Paws (Digi)",
  52166. image: {
  52167. source: "./media/characters/rei/paws-digi.svg"
  52168. }
  52169. },
  52170. pawsPlanti: {
  52171. height: math.unit(3.45, "feet"),
  52172. name: "Paws (Planti)",
  52173. image: {
  52174. source: "./media/characters/rei/paws-planti.svg"
  52175. }
  52176. },
  52177. },
  52178. [
  52179. {
  52180. name: "Normal",
  52181. height: math.unit(20.5, "feet"),
  52182. default: true
  52183. },
  52184. ]
  52185. ))
  52186. characterMakers.push(() => makeCharacter(
  52187. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52188. {
  52189. front: {
  52190. height: math.unit(5 + 11/12, "feet"),
  52191. name: "Front",
  52192. image: {
  52193. source: "./media/characters/carina/front.svg",
  52194. extra: 1720/1449,
  52195. bottom: 14/1734
  52196. }
  52197. },
  52198. back: {
  52199. height: math.unit(5 + 11/12, "feet"),
  52200. name: "Back",
  52201. image: {
  52202. source: "./media/characters/carina/back.svg",
  52203. extra: 1493/1445,
  52204. bottom: 17/1510
  52205. }
  52206. },
  52207. paw: {
  52208. height: math.unit(0.92, "feet"),
  52209. name: "Paw",
  52210. image: {
  52211. source: "./media/characters/carina/paw.svg"
  52212. }
  52213. },
  52214. },
  52215. [
  52216. {
  52217. name: "Normal",
  52218. height: math.unit(5 + 11/12, "feet"),
  52219. default: true
  52220. },
  52221. ]
  52222. ))
  52223. characterMakers.push(() => makeCharacter(
  52224. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52225. {
  52226. front: {
  52227. height: math.unit(4.88, "meters"),
  52228. name: "Front",
  52229. image: {
  52230. source: "./media/characters/maya/front.svg",
  52231. extra: 1222/1145,
  52232. bottom: 57/1279
  52233. }
  52234. },
  52235. },
  52236. [
  52237. {
  52238. name: "Normal",
  52239. height: math.unit(4.88, "meters"),
  52240. default: true
  52241. },
  52242. {
  52243. name: "Macro",
  52244. height: math.unit(38.1, "meters")
  52245. },
  52246. {
  52247. name: "Macro+",
  52248. height: math.unit(152.4, "meters")
  52249. },
  52250. {
  52251. name: "Macro++",
  52252. height: math.unit(16.09, "km")
  52253. },
  52254. {
  52255. name: "Mega-macro",
  52256. height: math.unit(700, "megameters")
  52257. },
  52258. ]
  52259. ))
  52260. characterMakers.push(() => makeCharacter(
  52261. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52262. {
  52263. front: {
  52264. height: math.unit(6 + 2/12, "feet"),
  52265. weight: math.unit(500, "lb"),
  52266. preyCapacity: math.unit(4, "people"),
  52267. name: "Front",
  52268. image: {
  52269. source: "./media/characters/yepir/front.svg"
  52270. }
  52271. },
  52272. side: {
  52273. height: math.unit(6 + 2/12, "feet"),
  52274. weight: math.unit(500, "lb"),
  52275. preyCapacity: math.unit(4, "people"),
  52276. name: "Side",
  52277. image: {
  52278. source: "./media/characters/yepir/side.svg"
  52279. }
  52280. },
  52281. paw: {
  52282. height: math.unit(1.05, "feet"),
  52283. name: "Paw",
  52284. image: {
  52285. source: "./media/characters/yepir/paw.svg"
  52286. }
  52287. },
  52288. },
  52289. [
  52290. {
  52291. name: "Normal",
  52292. height: math.unit(6 + 2/12, "feet"),
  52293. default: true
  52294. },
  52295. ]
  52296. ))
  52297. characterMakers.push(() => makeCharacter(
  52298. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52299. {
  52300. front: {
  52301. height: math.unit(5 + 4/12, "feet"),
  52302. name: "Front",
  52303. image: {
  52304. source: "./media/characters/russec/front.svg",
  52305. extra: 1926/1626,
  52306. bottom: 72/1998
  52307. }
  52308. },
  52309. back: {
  52310. height: math.unit(5 + 4/12, "feet"),
  52311. name: "Back",
  52312. image: {
  52313. source: "./media/characters/russec/back.svg",
  52314. extra: 1910/1591,
  52315. bottom: 48/1958
  52316. }
  52317. },
  52318. },
  52319. [
  52320. {
  52321. name: "Small",
  52322. height: math.unit(5 + 4/12, "feet")
  52323. },
  52324. {
  52325. name: "Normal",
  52326. height: math.unit(72, "feet"),
  52327. default: true
  52328. },
  52329. ]
  52330. ))
  52331. characterMakers.push(() => makeCharacter(
  52332. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52333. {
  52334. side: {
  52335. height: math.unit(12, "feet"),
  52336. name: "Side",
  52337. image: {
  52338. source: "./media/characters/cianus/side.svg",
  52339. extra: 808/526,
  52340. bottom: 61/869
  52341. }
  52342. },
  52343. },
  52344. [
  52345. {
  52346. name: "Normal",
  52347. height: math.unit(12, "feet"),
  52348. default: true
  52349. },
  52350. ]
  52351. ))
  52352. characterMakers.push(() => makeCharacter(
  52353. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52354. {
  52355. front: {
  52356. height: math.unit(9 + 6/12, "feet"),
  52357. weight: math.unit(300, "lb"),
  52358. name: "Front",
  52359. image: {
  52360. source: "./media/characters/ahab/front.svg",
  52361. extra: 1897/1868,
  52362. bottom: 121/2018
  52363. }
  52364. },
  52365. frontNsfw: {
  52366. height: math.unit(9 + 6/12, "feet"),
  52367. weight: math.unit(300, "lb"),
  52368. name: "Front-nsfw",
  52369. image: {
  52370. source: "./media/characters/ahab/front-nsfw.svg",
  52371. extra: 1897/1868,
  52372. bottom: 121/2018
  52373. }
  52374. },
  52375. },
  52376. [
  52377. {
  52378. name: "Normal",
  52379. height: math.unit(9 + 6/12, "feet")
  52380. },
  52381. {
  52382. name: "Macro",
  52383. height: math.unit(657, "feet"),
  52384. default: true
  52385. },
  52386. ]
  52387. ))
  52388. characterMakers.push(() => makeCharacter(
  52389. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52390. {
  52391. front: {
  52392. height: math.unit(2.69, "meters"),
  52393. weight: math.unit(132, "kg"),
  52394. name: "Front",
  52395. image: {
  52396. source: "./media/characters/aarkus/front.svg",
  52397. extra: 1400/1231,
  52398. bottom: 34/1434
  52399. }
  52400. },
  52401. back: {
  52402. height: math.unit(2.69, "meters"),
  52403. weight: math.unit(132, "kg"),
  52404. name: "Back",
  52405. image: {
  52406. source: "./media/characters/aarkus/back.svg",
  52407. extra: 1381/1218,
  52408. bottom: 30/1411
  52409. }
  52410. },
  52411. frontNsfw: {
  52412. height: math.unit(2.69, "meters"),
  52413. weight: math.unit(132, "kg"),
  52414. name: "Front (NSFW)",
  52415. image: {
  52416. source: "./media/characters/aarkus/front-nsfw.svg",
  52417. extra: 1400/1231,
  52418. bottom: 34/1434
  52419. }
  52420. },
  52421. foot: {
  52422. height: math.unit(1.45, "feet"),
  52423. name: "Foot",
  52424. image: {
  52425. source: "./media/characters/aarkus/foot.svg"
  52426. }
  52427. },
  52428. head: {
  52429. height: math.unit(2.85, "feet"),
  52430. name: "Head",
  52431. image: {
  52432. source: "./media/characters/aarkus/head.svg"
  52433. }
  52434. },
  52435. headAlt: {
  52436. height: math.unit(3.07, "feet"),
  52437. name: "Head (Alt)",
  52438. image: {
  52439. source: "./media/characters/aarkus/head-alt.svg"
  52440. }
  52441. },
  52442. mouth: {
  52443. height: math.unit(1.25, "feet"),
  52444. name: "Mouth",
  52445. image: {
  52446. source: "./media/characters/aarkus/mouth.svg"
  52447. }
  52448. },
  52449. dick: {
  52450. height: math.unit(1.77, "feet"),
  52451. name: "Dick",
  52452. image: {
  52453. source: "./media/characters/aarkus/dick.svg"
  52454. }
  52455. },
  52456. },
  52457. [
  52458. {
  52459. name: "Normal",
  52460. height: math.unit(2.69, "meters"),
  52461. default: true
  52462. },
  52463. {
  52464. name: "Macro",
  52465. height: math.unit(269, "meters")
  52466. },
  52467. {
  52468. name: "Macro+",
  52469. height: math.unit(672.5, "meters")
  52470. },
  52471. {
  52472. name: "Megamacro",
  52473. height: math.unit(2.017, "km")
  52474. },
  52475. ]
  52476. ))
  52477. characterMakers.push(() => makeCharacter(
  52478. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52479. {
  52480. front: {
  52481. height: math.unit(23.47, "cm"),
  52482. weight: math.unit(600, "grams"),
  52483. name: "Front",
  52484. image: {
  52485. source: "./media/characters/diode/front.svg",
  52486. extra: 1778/1396,
  52487. bottom: 95/1873
  52488. }
  52489. },
  52490. side: {
  52491. height: math.unit(23.47, "cm"),
  52492. weight: math.unit(600, "grams"),
  52493. name: "Side",
  52494. image: {
  52495. source: "./media/characters/diode/side.svg",
  52496. extra: 1831/1404,
  52497. bottom: 86/1917
  52498. }
  52499. },
  52500. wings: {
  52501. height: math.unit(0.683, "feet"),
  52502. name: "Wings",
  52503. image: {
  52504. source: "./media/characters/diode/wings.svg"
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Normal",
  52511. height: math.unit(23.47, "cm"),
  52512. default: true
  52513. },
  52514. ]
  52515. ))
  52516. characterMakers.push(() => makeCharacter(
  52517. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52518. {
  52519. front: {
  52520. height: math.unit(6 + 3/12, "feet"),
  52521. weight: math.unit(250, "lb"),
  52522. name: "Front",
  52523. image: {
  52524. source: "./media/characters/reika/front.svg",
  52525. extra: 1120/1078,
  52526. bottom: 86/1206
  52527. }
  52528. },
  52529. },
  52530. [
  52531. {
  52532. name: "Normal",
  52533. height: math.unit(6 + 3/12, "feet"),
  52534. default: true
  52535. },
  52536. ]
  52537. ))
  52538. characterMakers.push(() => makeCharacter(
  52539. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52540. {
  52541. front: {
  52542. height: math.unit(16 + 8/12, "feet"),
  52543. weight: math.unit(9000, "lb"),
  52544. name: "Front",
  52545. image: {
  52546. source: "./media/characters/lokuto-takama/front.svg",
  52547. extra: 1774/1632,
  52548. bottom: 147/1921
  52549. },
  52550. extraAttributes: {
  52551. "bustWidth": {
  52552. name: "Bust Width",
  52553. power: 1,
  52554. type: "length",
  52555. base: math.unit(2.4, "meters")
  52556. },
  52557. "breastWeight": {
  52558. name: "Breast Weight",
  52559. power: 3,
  52560. type: "mass",
  52561. base: math.unit(1000, "kg")
  52562. },
  52563. }
  52564. },
  52565. },
  52566. [
  52567. {
  52568. name: "Normal",
  52569. height: math.unit(16 + 8/12, "feet"),
  52570. default: true
  52571. },
  52572. ]
  52573. ))
  52574. characterMakers.push(() => makeCharacter(
  52575. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52576. {
  52577. front: {
  52578. height: math.unit(10, "cm"),
  52579. weight: math.unit(850, "grams"),
  52580. name: "Front",
  52581. image: {
  52582. source: "./media/characters/owak-bone/front.svg",
  52583. extra: 1965/1801,
  52584. bottom: 31/1996
  52585. }
  52586. },
  52587. },
  52588. [
  52589. {
  52590. name: "Normal",
  52591. height: math.unit(10, "cm"),
  52592. default: true
  52593. },
  52594. ]
  52595. ))
  52596. characterMakers.push(() => makeCharacter(
  52597. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52598. {
  52599. front: {
  52600. height: math.unit(2 + 6/12, "feet"),
  52601. weight: math.unit(9, "lb"),
  52602. name: "Front",
  52603. image: {
  52604. source: "./media/characters/muffin/front.svg",
  52605. extra: 1220/1195,
  52606. bottom: 84/1304
  52607. }
  52608. },
  52609. },
  52610. [
  52611. {
  52612. name: "Normal",
  52613. height: math.unit(2 + 6/12, "feet"),
  52614. default: true
  52615. },
  52616. ]
  52617. ))
  52618. characterMakers.push(() => makeCharacter(
  52619. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52620. {
  52621. front: {
  52622. height: math.unit(7, "feet"),
  52623. name: "Front",
  52624. image: {
  52625. source: "./media/characters/chimera/front.svg",
  52626. extra: 1752/1614,
  52627. bottom: 68/1820
  52628. }
  52629. },
  52630. },
  52631. [
  52632. {
  52633. name: "Normal",
  52634. height: math.unit(7, "feet")
  52635. },
  52636. {
  52637. name: "Gigamacro",
  52638. height: math.unit(2.9, "gigameters"),
  52639. default: true
  52640. },
  52641. {
  52642. name: "Universal",
  52643. height: math.unit(1.56e26, "yottameters")
  52644. },
  52645. ]
  52646. ))
  52647. characterMakers.push(() => makeCharacter(
  52648. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52649. {
  52650. front: {
  52651. height: math.unit(3, "feet"),
  52652. weight: math.unit(20, "lb"),
  52653. name: "Front",
  52654. image: {
  52655. source: "./media/characters/kit-fennec-fox/front.svg",
  52656. extra: 1027/932,
  52657. bottom: 16/1043
  52658. }
  52659. },
  52660. back: {
  52661. height: math.unit(3, "feet"),
  52662. weight: math.unit(20, "lb"),
  52663. name: "Back",
  52664. image: {
  52665. source: "./media/characters/kit-fennec-fox/back.svg",
  52666. extra: 1027/932,
  52667. bottom: 16/1043
  52668. }
  52669. },
  52670. },
  52671. [
  52672. {
  52673. name: "Normal",
  52674. height: math.unit(3, "feet"),
  52675. default: true
  52676. },
  52677. ]
  52678. ))
  52679. characterMakers.push(() => makeCharacter(
  52680. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52681. {
  52682. front: {
  52683. height: math.unit(167, "cm"),
  52684. name: "Front",
  52685. image: {
  52686. source: "./media/characters/blue-otter/front.svg",
  52687. extra: 1951/1920,
  52688. bottom: 31/1982
  52689. }
  52690. },
  52691. },
  52692. [
  52693. {
  52694. name: "Otter-Sized",
  52695. height: math.unit(100, "cm")
  52696. },
  52697. {
  52698. name: "Normal",
  52699. height: math.unit(167, "cm"),
  52700. default: true
  52701. },
  52702. ]
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52706. {
  52707. front: {
  52708. height: math.unit(4 + 4/12, "feet"),
  52709. name: "Front",
  52710. image: {
  52711. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52712. extra: 1072/1067,
  52713. bottom: 117/1189
  52714. }
  52715. },
  52716. back: {
  52717. height: math.unit(4 + 4/12, "feet"),
  52718. name: "Back",
  52719. image: {
  52720. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52721. extra: 1135/1129,
  52722. bottom: 57/1192
  52723. }
  52724. },
  52725. head: {
  52726. height: math.unit(1.77, "feet"),
  52727. name: "Head",
  52728. image: {
  52729. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52730. }
  52731. },
  52732. },
  52733. [
  52734. {
  52735. name: "Normal",
  52736. height: math.unit(4 + 4/12, "feet"),
  52737. default: true
  52738. },
  52739. ]
  52740. ))
  52741. characterMakers.push(() => makeCharacter(
  52742. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52743. {
  52744. front: {
  52745. height: math.unit(2, "inches"),
  52746. name: "Front",
  52747. image: {
  52748. source: "./media/characters/carley-hartford/front.svg",
  52749. extra: 1035/988,
  52750. bottom: 23/1058
  52751. }
  52752. },
  52753. back: {
  52754. height: math.unit(2, "inches"),
  52755. name: "Back",
  52756. image: {
  52757. source: "./media/characters/carley-hartford/back.svg",
  52758. extra: 1035/988,
  52759. bottom: 23/1058
  52760. }
  52761. },
  52762. dressed: {
  52763. height: math.unit(2, "inches"),
  52764. name: "Dressed",
  52765. image: {
  52766. source: "./media/characters/carley-hartford/dressed.svg",
  52767. extra: 651/620,
  52768. bottom: 0/651
  52769. }
  52770. },
  52771. },
  52772. [
  52773. {
  52774. name: "Micro",
  52775. height: math.unit(2, "inches"),
  52776. default: true
  52777. },
  52778. {
  52779. name: "Macro",
  52780. height: math.unit(6 + 3/12, "feet")
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52786. {
  52787. front: {
  52788. height: math.unit(2 + 3/12, "feet"),
  52789. weight: math.unit(15 + 7/16, "lb"),
  52790. name: "Front",
  52791. image: {
  52792. source: "./media/characters/duke/front.svg",
  52793. extra: 910/815,
  52794. bottom: 30/940
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Normal",
  52801. height: math.unit(2 + 3/12, "feet"),
  52802. default: true
  52803. },
  52804. ]
  52805. ))
  52806. characterMakers.push(() => makeCharacter(
  52807. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52808. {
  52809. front: {
  52810. height: math.unit(5 + 4/12, "feet"),
  52811. weight: math.unit(156, "lb"),
  52812. name: "Front",
  52813. image: {
  52814. source: "./media/characters/dein/front.svg",
  52815. extra: 855/815,
  52816. bottom: 48/903
  52817. }
  52818. },
  52819. side: {
  52820. height: math.unit(5 + 4/12, "feet"),
  52821. weight: math.unit(156, "lb"),
  52822. name: "side",
  52823. image: {
  52824. source: "./media/characters/dein/side.svg",
  52825. extra: 846/803,
  52826. bottom: 25/871
  52827. }
  52828. },
  52829. maw: {
  52830. height: math.unit(1.45, "feet"),
  52831. name: "Maw",
  52832. image: {
  52833. source: "./media/characters/dein/maw.svg"
  52834. }
  52835. },
  52836. },
  52837. [
  52838. {
  52839. name: "Ferret Sized",
  52840. height: math.unit(2 + 5/12, "feet")
  52841. },
  52842. {
  52843. name: "Normal",
  52844. height: math.unit(5 + 4/12, "feet"),
  52845. default: true
  52846. },
  52847. ]
  52848. ))
  52849. characterMakers.push(() => makeCharacter(
  52850. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52851. {
  52852. front: {
  52853. height: math.unit(84 + 8/12, "feet"),
  52854. weight: math.unit(942180, "lb"),
  52855. name: "Front",
  52856. image: {
  52857. source: "./media/characters/daurine-arima/front.svg",
  52858. extra: 1989/1782,
  52859. bottom: 37/2026
  52860. }
  52861. },
  52862. side: {
  52863. height: math.unit(84 + 8/12, "feet"),
  52864. weight: math.unit(942180, "lb"),
  52865. name: "Side",
  52866. image: {
  52867. source: "./media/characters/daurine-arima/side.svg",
  52868. extra: 1997/1790,
  52869. bottom: 21/2018
  52870. }
  52871. },
  52872. back: {
  52873. height: math.unit(84 + 8/12, "feet"),
  52874. weight: math.unit(942180, "lb"),
  52875. name: "Back",
  52876. image: {
  52877. source: "./media/characters/daurine-arima/back.svg",
  52878. extra: 1992/1800,
  52879. bottom: 12/2004
  52880. }
  52881. },
  52882. head: {
  52883. height: math.unit(15.5, "feet"),
  52884. name: "Head",
  52885. image: {
  52886. source: "./media/characters/daurine-arima/head.svg"
  52887. }
  52888. },
  52889. headAlt: {
  52890. height: math.unit(19.19, "feet"),
  52891. name: "Head (Alt)",
  52892. image: {
  52893. source: "./media/characters/daurine-arima/head-alt.svg"
  52894. }
  52895. },
  52896. },
  52897. [
  52898. {
  52899. name: "Minimum height",
  52900. height: math.unit(8 + 10/12, "feet")
  52901. },
  52902. {
  52903. name: "Comfort height",
  52904. height: math.unit(19 + 6 /12, "feet")
  52905. },
  52906. {
  52907. name: "\"Normal\" height",
  52908. height: math.unit(28 + 10/12, "feet")
  52909. },
  52910. {
  52911. name: "Base height",
  52912. height: math.unit(84 + 8/12, "feet"),
  52913. default: true
  52914. },
  52915. {
  52916. name: "Mini-macro",
  52917. height: math.unit(2360, "feet")
  52918. },
  52919. {
  52920. name: "Macro",
  52921. height: math.unit(10, "miles")
  52922. },
  52923. {
  52924. name: "Goddess",
  52925. height: math.unit(9.99e40, "yottameters")
  52926. },
  52927. ]
  52928. ))
  52929. characterMakers.push(() => makeCharacter(
  52930. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52931. {
  52932. front: {
  52933. height: math.unit(2.3, "meters"),
  52934. name: "Front",
  52935. image: {
  52936. source: "./media/characters/cilenomon/front.svg",
  52937. extra: 1963/1778,
  52938. bottom: 54/2017
  52939. }
  52940. },
  52941. },
  52942. [
  52943. {
  52944. name: "Normal",
  52945. height: math.unit(2.3, "meters"),
  52946. default: true
  52947. },
  52948. {
  52949. name: "Big",
  52950. height: math.unit(5, "meters")
  52951. },
  52952. {
  52953. name: "Macro",
  52954. height: math.unit(30, "meters")
  52955. },
  52956. {
  52957. name: "True",
  52958. height: math.unit(1, "universe")
  52959. },
  52960. ]
  52961. ))
  52962. characterMakers.push(() => makeCharacter(
  52963. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52964. {
  52965. front: {
  52966. height: math.unit(5, "feet"),
  52967. name: "Front",
  52968. image: {
  52969. source: "./media/characters/sen-mink/front.svg",
  52970. extra: 1727/1675,
  52971. bottom: 35/1762
  52972. }
  52973. },
  52974. },
  52975. [
  52976. {
  52977. name: "Normal",
  52978. height: math.unit(5, "feet"),
  52979. default: true
  52980. },
  52981. ]
  52982. ))
  52983. characterMakers.push(() => makeCharacter(
  52984. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52985. {
  52986. front: {
  52987. height: math.unit(5.42999, "feet"),
  52988. weight: math.unit(100, "lb"),
  52989. name: "Front",
  52990. image: {
  52991. source: "./media/characters/ophois/front.svg",
  52992. extra: 1429/1286,
  52993. bottom: 60/1489
  52994. }
  52995. },
  52996. },
  52997. [
  52998. {
  52999. name: "Normal",
  53000. height: math.unit(5.42999, "feet"),
  53001. default: true
  53002. },
  53003. ]
  53004. ))
  53005. characterMakers.push(() => makeCharacter(
  53006. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53007. {
  53008. front: {
  53009. height: math.unit(2, "meters"),
  53010. name: "Front",
  53011. image: {
  53012. source: "./media/characters/riley/front.svg",
  53013. extra: 1779/1754,
  53014. bottom: 139/1918
  53015. }
  53016. },
  53017. },
  53018. [
  53019. {
  53020. name: "Normal",
  53021. height: math.unit(2, "meters"),
  53022. default: true
  53023. },
  53024. ]
  53025. ))
  53026. characterMakers.push(() => makeCharacter(
  53027. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53028. {
  53029. front: {
  53030. height: math.unit(6 + 2/12, "feet"),
  53031. weight: math.unit(195, "lb"),
  53032. preyCapacity: math.unit(6, "people"),
  53033. name: "Front",
  53034. image: {
  53035. source: "./media/characters/shuken-flash/front.svg",
  53036. extra: 1905/1739,
  53037. bottom: 65/1970
  53038. }
  53039. },
  53040. back: {
  53041. height: math.unit(6 + 2/12, "feet"),
  53042. weight: math.unit(195, "lb"),
  53043. preyCapacity: math.unit(6, "people"),
  53044. name: "Back",
  53045. image: {
  53046. source: "./media/characters/shuken-flash/back.svg",
  53047. extra: 1912/1751,
  53048. bottom: 13/1925
  53049. }
  53050. },
  53051. },
  53052. [
  53053. {
  53054. name: "Normal",
  53055. height: math.unit(6 + 2/12, "feet"),
  53056. default: true
  53057. },
  53058. ]
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53062. {
  53063. front: {
  53064. height: math.unit(5 + 9/12, "feet"),
  53065. weight: math.unit(150, "lb"),
  53066. name: "Front",
  53067. image: {
  53068. source: "./media/characters/plat/front.svg",
  53069. extra: 1816/1703,
  53070. bottom: 43/1859
  53071. }
  53072. },
  53073. side: {
  53074. height: math.unit(5 + 9/12, "feet"),
  53075. weight: math.unit(300, "lb"),
  53076. name: "Side",
  53077. image: {
  53078. source: "./media/characters/plat/side.svg",
  53079. extra: 1824/1699,
  53080. bottom: 18/1842
  53081. }
  53082. },
  53083. },
  53084. [
  53085. {
  53086. name: "Normal",
  53087. height: math.unit(5 + 9/12, "feet"),
  53088. default: true
  53089. },
  53090. ]
  53091. ))
  53092. characterMakers.push(() => makeCharacter(
  53093. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53094. {
  53095. front: {
  53096. height: math.unit(9, "feet"),
  53097. weight: math.unit(1800, "lb"),
  53098. name: "Front",
  53099. image: {
  53100. source: "./media/characters/elaine/front.svg",
  53101. extra: 1833/1354,
  53102. bottom: 25/1858
  53103. }
  53104. },
  53105. back: {
  53106. height: math.unit(8.8, "feet"),
  53107. weight: math.unit(1800, "lb"),
  53108. name: "Back",
  53109. image: {
  53110. source: "./media/characters/elaine/back.svg",
  53111. extra: 1641/1233,
  53112. bottom: 53/1694
  53113. }
  53114. },
  53115. },
  53116. [
  53117. {
  53118. name: "Normal",
  53119. height: math.unit(9, "feet"),
  53120. default: true
  53121. },
  53122. ]
  53123. ))
  53124. characterMakers.push(() => makeCharacter(
  53125. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53126. {
  53127. front: {
  53128. height: math.unit(17 + 9/12, "feet"),
  53129. weight: math.unit(8000, "lb"),
  53130. name: "Front",
  53131. image: {
  53132. source: "./media/characters/vera-raven/front.svg",
  53133. extra: 1457/1412,
  53134. bottom: 121/1578
  53135. }
  53136. },
  53137. side: {
  53138. height: math.unit(17 + 9/12, "feet"),
  53139. weight: math.unit(8000, "lb"),
  53140. name: "Side",
  53141. image: {
  53142. source: "./media/characters/vera-raven/side.svg",
  53143. extra: 1510/1464,
  53144. bottom: 54/1564
  53145. }
  53146. },
  53147. },
  53148. [
  53149. {
  53150. name: "Normal",
  53151. height: math.unit(17 + 9/12, "feet"),
  53152. default: true
  53153. },
  53154. ]
  53155. ))
  53156. characterMakers.push(() => makeCharacter(
  53157. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53158. {
  53159. dressed: {
  53160. height: math.unit(6 + 9/12, "feet"),
  53161. name: "Dressed",
  53162. image: {
  53163. source: "./media/characters/nakisha/dressed.svg",
  53164. extra: 1909/1757,
  53165. bottom: 48/1957
  53166. }
  53167. },
  53168. nude: {
  53169. height: math.unit(6 + 9/12, "feet"),
  53170. name: "Nude",
  53171. image: {
  53172. source: "./media/characters/nakisha/nude.svg",
  53173. extra: 1917/1765,
  53174. bottom: 34/1951
  53175. }
  53176. },
  53177. },
  53178. [
  53179. {
  53180. name: "Normal",
  53181. height: math.unit(6 + 9/12, "feet"),
  53182. default: true
  53183. },
  53184. ]
  53185. ))
  53186. characterMakers.push(() => makeCharacter(
  53187. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53188. {
  53189. front: {
  53190. height: math.unit(87, "meters"),
  53191. name: "Front",
  53192. image: {
  53193. source: "./media/characters/serafin/front.svg",
  53194. extra: 1919/1776,
  53195. bottom: 65/1984
  53196. }
  53197. },
  53198. },
  53199. [
  53200. {
  53201. name: "Normal",
  53202. height: math.unit(87, "meters"),
  53203. default: true
  53204. },
  53205. ]
  53206. ))
  53207. characterMakers.push(() => makeCharacter(
  53208. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53209. {
  53210. front: {
  53211. height: math.unit(6, "feet"),
  53212. weight: math.unit(200, "lb"),
  53213. name: "Front",
  53214. image: {
  53215. source: "./media/characters/poptart/front.svg",
  53216. extra: 615/583,
  53217. bottom: 23/638
  53218. }
  53219. },
  53220. back: {
  53221. height: math.unit(6, "feet"),
  53222. weight: math.unit(200, "lb"),
  53223. name: "Back",
  53224. image: {
  53225. source: "./media/characters/poptart/back.svg",
  53226. extra: 617/584,
  53227. bottom: 22/639
  53228. }
  53229. },
  53230. frontNsfw: {
  53231. height: math.unit(6, "feet"),
  53232. weight: math.unit(200, "lb"),
  53233. name: "Front (NSFW)",
  53234. image: {
  53235. source: "./media/characters/poptart/front-nsfw.svg",
  53236. extra: 615/583,
  53237. bottom: 23/638
  53238. }
  53239. },
  53240. backNsfw: {
  53241. height: math.unit(6, "feet"),
  53242. weight: math.unit(200, "lb"),
  53243. name: "Back (NSFW)",
  53244. image: {
  53245. source: "./media/characters/poptart/back-nsfw.svg",
  53246. extra: 617/584,
  53247. bottom: 22/639
  53248. }
  53249. },
  53250. hand: {
  53251. height: math.unit(1.14, "feet"),
  53252. name: "Hand",
  53253. image: {
  53254. source: "./media/characters/poptart/hand.svg"
  53255. }
  53256. },
  53257. foot: {
  53258. height: math.unit(1.5, "feet"),
  53259. name: "Foot",
  53260. image: {
  53261. source: "./media/characters/poptart/foot.svg"
  53262. }
  53263. },
  53264. },
  53265. [
  53266. {
  53267. name: "Normal",
  53268. height: math.unit(6, "feet"),
  53269. default: true
  53270. },
  53271. {
  53272. name: "Grande",
  53273. height: math.unit(350, "feet")
  53274. },
  53275. {
  53276. name: "Massif",
  53277. height: math.unit(967, "feet")
  53278. },
  53279. ]
  53280. ))
  53281. characterMakers.push(() => makeCharacter(
  53282. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53283. {
  53284. hyenaSide: {
  53285. height: math.unit(120, "cm"),
  53286. weight: math.unit(120, "lb"),
  53287. name: "Side",
  53288. image: {
  53289. source: "./media/characters/trance/hyena-side.svg",
  53290. extra: 998/904,
  53291. bottom: 76/1074
  53292. }
  53293. },
  53294. },
  53295. [
  53296. {
  53297. name: "Normal",
  53298. height: math.unit(120, "cm"),
  53299. default: true
  53300. },
  53301. {
  53302. name: "Dire",
  53303. height: math.unit(230, "cm")
  53304. },
  53305. {
  53306. name: "Macro",
  53307. height: math.unit(37, "feet")
  53308. },
  53309. ]
  53310. ))
  53311. characterMakers.push(() => makeCharacter(
  53312. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53313. {
  53314. front: {
  53315. height: math.unit(6 + 3/12, "feet"),
  53316. name: "Front",
  53317. image: {
  53318. source: "./media/characters/michael-berretta/front.svg",
  53319. extra: 515/494,
  53320. bottom: 20/535
  53321. }
  53322. },
  53323. back: {
  53324. height: math.unit(6 + 3/12, "feet"),
  53325. name: "Back",
  53326. image: {
  53327. source: "./media/characters/michael-berretta/back.svg",
  53328. extra: 520/497,
  53329. bottom: 21/541
  53330. }
  53331. },
  53332. frontNsfw: {
  53333. height: math.unit(6 + 3/12, "feet"),
  53334. name: "Front (NSFW)",
  53335. image: {
  53336. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53337. extra: 515/494,
  53338. bottom: 20/535
  53339. }
  53340. },
  53341. dick: {
  53342. height: math.unit(1, "feet"),
  53343. name: "Dick",
  53344. image: {
  53345. source: "./media/characters/michael-berretta/dick.svg"
  53346. }
  53347. },
  53348. },
  53349. [
  53350. {
  53351. name: "Normal",
  53352. height: math.unit(6 + 3/12, "feet"),
  53353. default: true
  53354. },
  53355. {
  53356. name: "Big",
  53357. height: math.unit(12, "feet")
  53358. },
  53359. {
  53360. name: "Macro",
  53361. height: math.unit(187.5, "feet")
  53362. },
  53363. ]
  53364. ))
  53365. characterMakers.push(() => makeCharacter(
  53366. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53367. {
  53368. front: {
  53369. height: math.unit(9 + 9/12, "feet"),
  53370. weight: math.unit(1244, "lb"),
  53371. name: "Front",
  53372. image: {
  53373. source: "./media/characters/stella-edgecomb/front.svg",
  53374. extra: 1835/1706,
  53375. bottom: 49/1884
  53376. }
  53377. },
  53378. pen: {
  53379. height: math.unit(0.95, "feet"),
  53380. name: "Pen",
  53381. image: {
  53382. source: "./media/characters/stella-edgecomb/pen.svg"
  53383. }
  53384. },
  53385. },
  53386. [
  53387. {
  53388. name: "Cozy Bear",
  53389. height: math.unit(0.5, "inches")
  53390. },
  53391. {
  53392. name: "Normal",
  53393. height: math.unit(9 + 9/12, "feet"),
  53394. default: true
  53395. },
  53396. {
  53397. name: "Giga Bear",
  53398. height: math.unit(1, "mile")
  53399. },
  53400. {
  53401. name: "Great Bear",
  53402. height: math.unit(53, "miles")
  53403. },
  53404. {
  53405. name: "Goddess Bear",
  53406. height: math.unit(40000, "miles")
  53407. },
  53408. {
  53409. name: "Sun Bear",
  53410. height: math.unit(900000, "miles")
  53411. },
  53412. ]
  53413. ))
  53414. characterMakers.push(() => makeCharacter(
  53415. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53416. {
  53417. anthroFront: {
  53418. height: math.unit(556, "cm"),
  53419. weight: math.unit(2650, "kg"),
  53420. preyCapacity: math.unit(3, "people"),
  53421. name: "Front",
  53422. image: {
  53423. source: "./media/characters/ash´iika/front.svg",
  53424. extra: 710/673,
  53425. bottom: 15/725
  53426. },
  53427. form: "anthro",
  53428. default: true
  53429. },
  53430. anthroSide: {
  53431. height: math.unit(556, "cm"),
  53432. weight: math.unit(2650, "kg"),
  53433. preyCapacity: math.unit(3, "people"),
  53434. name: "Side",
  53435. image: {
  53436. source: "./media/characters/ash´iika/side.svg",
  53437. extra: 696/676,
  53438. bottom: 13/709
  53439. },
  53440. form: "anthro"
  53441. },
  53442. anthroDressed: {
  53443. height: math.unit(556, "cm"),
  53444. weight: math.unit(2650, "kg"),
  53445. preyCapacity: math.unit(3, "people"),
  53446. name: "Dressed",
  53447. image: {
  53448. source: "./media/characters/ash´iika/dressed.svg",
  53449. extra: 710/673,
  53450. bottom: 15/725
  53451. },
  53452. form: "anthro"
  53453. },
  53454. anthroHead: {
  53455. height: math.unit(3.5, "feet"),
  53456. name: "Head",
  53457. image: {
  53458. source: "./media/characters/ash´iika/head.svg",
  53459. extra: 348/291,
  53460. bottom: 45/393
  53461. },
  53462. form: "anthro"
  53463. },
  53464. feralSide: {
  53465. height: math.unit(870, "cm"),
  53466. weight: math.unit(17500, "kg"),
  53467. preyCapacity: math.unit(15, "people"),
  53468. name: "Side",
  53469. image: {
  53470. source: "./media/characters/ash´iika/feral.svg",
  53471. extra: 595/199,
  53472. bottom: 7/602
  53473. },
  53474. form: "feral",
  53475. default: true,
  53476. },
  53477. },
  53478. [
  53479. {
  53480. name: "Normal",
  53481. height: math.unit(556, "cm"),
  53482. default: true,
  53483. form: "anthro"
  53484. },
  53485. {
  53486. name: "Macro",
  53487. height: math.unit(88, "meters"),
  53488. form: "anthro"
  53489. },
  53490. {
  53491. name: "Normal",
  53492. height: math.unit(870, "cm"),
  53493. default: true,
  53494. form: "feral"
  53495. },
  53496. {
  53497. name: "Large",
  53498. height: math.unit(25, "meters"),
  53499. form: "feral"
  53500. },
  53501. ],
  53502. {
  53503. "anthro": {
  53504. name: "Anthro",
  53505. default: true
  53506. },
  53507. "feral": {
  53508. name: "Feral",
  53509. },
  53510. }
  53511. ))
  53512. characterMakers.push(() => makeCharacter(
  53513. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53514. {
  53515. front: {
  53516. height: math.unit(10, "feet"),
  53517. weight: math.unit(800, "lb"),
  53518. name: "Front",
  53519. image: {
  53520. source: "./media/characters/yen/front.svg",
  53521. extra: 443/411,
  53522. bottom: 6/449
  53523. }
  53524. },
  53525. sleeping: {
  53526. height: math.unit(10, "feet"),
  53527. weight: math.unit(800, "lb"),
  53528. name: "Sleeping",
  53529. image: {
  53530. source: "./media/characters/yen/sleeping.svg",
  53531. extra: 470/422,
  53532. bottom: 0/470
  53533. }
  53534. },
  53535. head: {
  53536. height: math.unit(2.2, "feet"),
  53537. name: "Head",
  53538. image: {
  53539. source: "./media/characters/yen/head.svg"
  53540. }
  53541. },
  53542. headAlt: {
  53543. height: math.unit(2.1, "feet"),
  53544. name: "Head (Alt)",
  53545. image: {
  53546. source: "./media/characters/yen/head-alt.svg"
  53547. }
  53548. },
  53549. },
  53550. [
  53551. {
  53552. name: "Normal",
  53553. height: math.unit(10, "feet"),
  53554. default: true
  53555. },
  53556. ]
  53557. ))
  53558. characterMakers.push(() => makeCharacter(
  53559. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53560. {
  53561. front: {
  53562. height: math.unit(12, "feet"),
  53563. name: "Front",
  53564. image: {
  53565. source: "./media/characters/citra/front.svg",
  53566. extra: 1950/1710,
  53567. bottom: 47/1997
  53568. }
  53569. },
  53570. },
  53571. [
  53572. {
  53573. name: "Normal",
  53574. height: math.unit(12, "feet"),
  53575. default: true
  53576. },
  53577. ]
  53578. ))
  53579. characterMakers.push(() => makeCharacter(
  53580. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53581. {
  53582. side: {
  53583. height: math.unit(7 + 10/12, "feet"),
  53584. name: "Side",
  53585. image: {
  53586. source: "./media/characters/sholstim/side.svg",
  53587. extra: 786/682,
  53588. bottom: 40/826
  53589. }
  53590. },
  53591. },
  53592. [
  53593. {
  53594. name: "Normal",
  53595. height: math.unit(7 + 10/12, "feet"),
  53596. default: true
  53597. },
  53598. ]
  53599. ))
  53600. characterMakers.push(() => makeCharacter(
  53601. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53602. {
  53603. front: {
  53604. height: math.unit(3.10, "meters"),
  53605. name: "Front",
  53606. image: {
  53607. source: "./media/characters/aggyn/front.svg",
  53608. extra: 1188/963,
  53609. bottom: 24/1212
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Normal",
  53616. height: math.unit(3.10, "meters"),
  53617. default: true
  53618. },
  53619. ]
  53620. ))
  53621. characterMakers.push(() => makeCharacter(
  53622. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53623. {
  53624. front: {
  53625. height: math.unit(7 + 5/12, "feet"),
  53626. weight: math.unit(687, "lb"),
  53627. name: "Front",
  53628. image: {
  53629. source: "./media/characters/alsandair-hergenroether/front.svg",
  53630. extra: 1251/1186,
  53631. bottom: 75/1326
  53632. }
  53633. },
  53634. back: {
  53635. height: math.unit(7 + 5/12, "feet"),
  53636. weight: math.unit(687, "lb"),
  53637. name: "Back",
  53638. image: {
  53639. source: "./media/characters/alsandair-hergenroether/back.svg",
  53640. extra: 1290/1229,
  53641. bottom: 17/1307
  53642. }
  53643. },
  53644. },
  53645. [
  53646. {
  53647. name: "Max Compression",
  53648. height: math.unit(7 + 5/12, "feet"),
  53649. default: true
  53650. },
  53651. {
  53652. name: "\"Normal\"",
  53653. height: math.unit(2, "universes")
  53654. },
  53655. ]
  53656. ))
  53657. characterMakers.push(() => makeCharacter(
  53658. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53659. {
  53660. front: {
  53661. height: math.unit(4 + 1/12, "feet"),
  53662. weight: math.unit(92, "lb"),
  53663. name: "Front",
  53664. image: {
  53665. source: "./media/characters/ie/front.svg",
  53666. extra: 1585/1352,
  53667. bottom: 91/1676
  53668. }
  53669. },
  53670. },
  53671. [
  53672. {
  53673. name: "Normal",
  53674. height: math.unit(4 + 1/12, "feet"),
  53675. default: true
  53676. },
  53677. ]
  53678. ))
  53679. characterMakers.push(() => makeCharacter(
  53680. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53681. {
  53682. anthro: {
  53683. height: math.unit(6, "feet"),
  53684. weight: math.unit(150, "lb"),
  53685. name: "Front",
  53686. image: {
  53687. source: "./media/characters/willow/anthro.svg",
  53688. extra: 1073/986,
  53689. bottom: 34/1107
  53690. },
  53691. form: "anthro",
  53692. default: true
  53693. },
  53694. taur: {
  53695. height: math.unit(6, "feet"),
  53696. weight: math.unit(150, "lb"),
  53697. name: "Side",
  53698. image: {
  53699. source: "./media/characters/willow/taur.svg",
  53700. extra: 647/512,
  53701. bottom: 136/783
  53702. },
  53703. form: "taur",
  53704. default: true
  53705. },
  53706. },
  53707. [
  53708. {
  53709. name: "Humanoid",
  53710. height: math.unit(2.7, "meters"),
  53711. form: "anthro"
  53712. },
  53713. {
  53714. name: "Normal",
  53715. height: math.unit(9, "meters"),
  53716. form: "anthro",
  53717. default: true
  53718. },
  53719. {
  53720. name: "Humanoid",
  53721. height: math.unit(2.1, "meters"),
  53722. form: "taur"
  53723. },
  53724. {
  53725. name: "Normal",
  53726. height: math.unit(7, "meters"),
  53727. form: "taur",
  53728. default: true
  53729. },
  53730. ],
  53731. {
  53732. "anthro": {
  53733. name: "Anthro",
  53734. default: true
  53735. },
  53736. "taur": {
  53737. name: "Taur",
  53738. },
  53739. }
  53740. ))
  53741. characterMakers.push(() => makeCharacter(
  53742. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53743. {
  53744. front: {
  53745. height: math.unit(2 + 5/12, "feet"),
  53746. name: "Front",
  53747. image: {
  53748. source: "./media/characters/kyan/front.svg",
  53749. extra: 460/334,
  53750. bottom: 23/483
  53751. },
  53752. extraAttributes: {
  53753. "toeLength": {
  53754. name: "Toe Length",
  53755. power: 1,
  53756. type: "length",
  53757. base: math.unit(7, "cm")
  53758. },
  53759. "toeclawLength": {
  53760. name: "Toeclaw Length",
  53761. power: 1,
  53762. type: "length",
  53763. base: math.unit(4.7, "cm")
  53764. },
  53765. "earHeight": {
  53766. name: "Ear Height",
  53767. power: 1,
  53768. type: "length",
  53769. base: math.unit(14.1, "cm")
  53770. },
  53771. }
  53772. },
  53773. paws: {
  53774. height: math.unit(0.45, "feet"),
  53775. name: "Paws",
  53776. image: {
  53777. source: "./media/characters/kyan/paws.svg",
  53778. extra: 581/581,
  53779. bottom: 114/695
  53780. }
  53781. },
  53782. },
  53783. [
  53784. {
  53785. name: "Normal",
  53786. height: math.unit(2 + 5/12, "feet"),
  53787. default: true
  53788. },
  53789. ]
  53790. ))
  53791. characterMakers.push(() => makeCharacter(
  53792. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53793. {
  53794. front: {
  53795. height: math.unit(2 + 2/3, "feet"),
  53796. name: "Front",
  53797. image: {
  53798. source: "./media/characters/xazzon/front.svg",
  53799. extra: 1109/984,
  53800. bottom: 42/1151
  53801. }
  53802. },
  53803. back: {
  53804. height: math.unit(2 + 2/3, "feet"),
  53805. name: "Back",
  53806. image: {
  53807. source: "./media/characters/xazzon/back.svg",
  53808. extra: 1095/971,
  53809. bottom: 23/1118
  53810. }
  53811. },
  53812. },
  53813. [
  53814. {
  53815. name: "Normal",
  53816. height: math.unit(2 + 2/3, "feet"),
  53817. default: true
  53818. },
  53819. ]
  53820. ))
  53821. characterMakers.push(() => makeCharacter(
  53822. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53823. {
  53824. dressed: {
  53825. height: math.unit(5 + 7/12, "feet"),
  53826. weight: math.unit(173, "lb"),
  53827. name: "Dressed",
  53828. image: {
  53829. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53830. extra: 3262/2862,
  53831. bottom: 188/3450
  53832. }
  53833. },
  53834. undressed: {
  53835. height: math.unit(5 + 7/12, "feet"),
  53836. weight: math.unit(173, "lb"),
  53837. name: "Undressed",
  53838. image: {
  53839. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53840. extra: 3262/2862,
  53841. bottom: 188/3450
  53842. }
  53843. },
  53844. },
  53845. [
  53846. {
  53847. name: "The void",
  53848. height: math.unit(7.29193e-34, "angstroms")
  53849. },
  53850. {
  53851. name: "Uh-Oh.",
  53852. height: math.unit(5.734e-7, "angstroms")
  53853. },
  53854. {
  53855. name: "Pico",
  53856. height: math.unit(0.876, "angstroms")
  53857. },
  53858. {
  53859. name: "Nano",
  53860. height: math.unit(0.000134200, "mm")
  53861. },
  53862. {
  53863. name: "Micro",
  53864. height: math.unit(0.0673020, "mm")
  53865. },
  53866. {
  53867. name: "Tiny",
  53868. height: math.unit(2.4, "mm")
  53869. },
  53870. {
  53871. name: "Actual Normal",
  53872. height: math.unit(3, "inches"),
  53873. default: true
  53874. },
  53875. {
  53876. name: "Normal",
  53877. height: math.unit(5 + 8/12, "feet")
  53878. },
  53879. {
  53880. name: "Giant",
  53881. height: math.unit(12, "feet")
  53882. },
  53883. {
  53884. name: "City Ruler",
  53885. height: math.unit(270, "meters")
  53886. },
  53887. {
  53888. name: "Giga",
  53889. height: math.unit(1117.6, "km")
  53890. },
  53891. {
  53892. name: "All-Powerful Queen",
  53893. height: math.unit(70.8, "gigameters")
  53894. },
  53895. {
  53896. name: "'Goddess'",
  53897. height: math.unit(600, "yottameters")
  53898. },
  53899. {
  53900. name: "Biggest!",
  53901. height: math.unit(4.23e5, "yottameters")
  53902. },
  53903. ]
  53904. ))
  53905. characterMakers.push(() => makeCharacter(
  53906. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53907. {
  53908. front: {
  53909. height: math.unit(8, "feet"),
  53910. weight: math.unit(300, "lb"),
  53911. name: "Front",
  53912. image: {
  53913. source: "./media/characters/khyla-shadowsong/front.svg",
  53914. extra: 861/798,
  53915. bottom: 32/893
  53916. }
  53917. },
  53918. side: {
  53919. height: math.unit(8, "feet"),
  53920. weight: math.unit(300, "lb"),
  53921. name: "Side",
  53922. image: {
  53923. source: "./media/characters/khyla-shadowsong/side.svg",
  53924. extra: 790/750,
  53925. bottom: 87/877
  53926. }
  53927. },
  53928. back: {
  53929. height: math.unit(8, "feet"),
  53930. weight: math.unit(300, "lb"),
  53931. name: "Back",
  53932. image: {
  53933. source: "./media/characters/khyla-shadowsong/back.svg",
  53934. extra: 855/808,
  53935. bottom: 14/869
  53936. }
  53937. },
  53938. head: {
  53939. height: math.unit(2.7, "feet"),
  53940. name: "Head",
  53941. image: {
  53942. source: "./media/characters/khyla-shadowsong/head.svg"
  53943. }
  53944. },
  53945. },
  53946. [
  53947. {
  53948. name: "Micro",
  53949. height: math.unit(6, "inches")
  53950. },
  53951. {
  53952. name: "Normal",
  53953. height: math.unit(8, "feet"),
  53954. default: true
  53955. },
  53956. ]
  53957. ))
  53958. characterMakers.push(() => makeCharacter(
  53959. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53960. {
  53961. hyperFront: {
  53962. height: math.unit(9 + 4/12, "feet"),
  53963. weight: math.unit(2000, "lb"),
  53964. name: "Front",
  53965. image: {
  53966. source: "./media/characters/tiden/hyper-front.svg",
  53967. extra: 400/382,
  53968. bottom: 6/406
  53969. },
  53970. form: "hyper",
  53971. },
  53972. regularFront: {
  53973. height: math.unit(7 + 10/12, "feet"),
  53974. weight: math.unit(470, "lb"),
  53975. name: "Front",
  53976. image: {
  53977. source: "./media/characters/tiden/regular-front.svg",
  53978. extra: 468/442,
  53979. bottom: 6/474
  53980. },
  53981. form: "regular",
  53982. },
  53983. },
  53984. [
  53985. {
  53986. name: "Normal",
  53987. height: math.unit(9 + 4/12, "feet"),
  53988. default: true,
  53989. form: "hyper"
  53990. },
  53991. {
  53992. name: "Normal",
  53993. height: math.unit(7 + 10/12, "feet"),
  53994. default: true,
  53995. form: "regular"
  53996. },
  53997. ],
  53998. {
  53999. "hyper": {
  54000. name: "Hyper",
  54001. default: true
  54002. },
  54003. "regular": {
  54004. name: "Regular",
  54005. },
  54006. }
  54007. ))
  54008. characterMakers.push(() => makeCharacter(
  54009. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54010. {
  54011. side: {
  54012. height: math.unit(6, "feet"),
  54013. weight: math.unit(150, "lb"),
  54014. name: "Side",
  54015. image: {
  54016. source: "./media/characters/jason-crowe/side.svg",
  54017. extra: 1771/766,
  54018. bottom: 219/1990
  54019. }
  54020. },
  54021. },
  54022. [
  54023. {
  54024. name: "Pocket Gryphon",
  54025. height: math.unit(6, "cm")
  54026. },
  54027. {
  54028. name: "Raven",
  54029. height: math.unit(60, "cm")
  54030. },
  54031. {
  54032. name: "Normal",
  54033. height: math.unit(1, "meter"),
  54034. default: true
  54035. },
  54036. ]
  54037. ))
  54038. characterMakers.push(() => makeCharacter(
  54039. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54040. {
  54041. front: {
  54042. height: math.unit(9 + 6/12, "feet"),
  54043. weight: math.unit(1100, "lb"),
  54044. name: "Front",
  54045. image: {
  54046. source: "./media/characters/django/front.svg",
  54047. extra: 1231/1136,
  54048. bottom: 34/1265
  54049. }
  54050. },
  54051. side: {
  54052. height: math.unit(9 + 6/12, "feet"),
  54053. weight: math.unit(1100, "lb"),
  54054. name: "Side",
  54055. image: {
  54056. source: "./media/characters/django/side.svg",
  54057. extra: 1267/1174,
  54058. bottom: 9/1276
  54059. }
  54060. },
  54061. },
  54062. [
  54063. {
  54064. name: "Normal",
  54065. height: math.unit(9 + 6/12, "feet"),
  54066. default: true
  54067. },
  54068. {
  54069. name: "Macro 1",
  54070. height: math.unit(50, "feet")
  54071. },
  54072. {
  54073. name: "Macro 2",
  54074. height: math.unit(500, "feet")
  54075. },
  54076. {
  54077. name: "Mega Macro",
  54078. height: math.unit(5300, "feet")
  54079. },
  54080. ]
  54081. ))
  54082. characterMakers.push(() => makeCharacter(
  54083. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54084. {
  54085. frontSfw: {
  54086. height: math.unit(120, "cm"),
  54087. weight: math.unit(15, "kg"),
  54088. name: "Front (SFW)",
  54089. image: {
  54090. source: "./media/characters/eri/front-sfw.svg",
  54091. extra: 1014/939,
  54092. bottom: 37/1051
  54093. },
  54094. form: "moth",
  54095. },
  54096. frontNsfw: {
  54097. height: math.unit(120, "cm"),
  54098. weight: math.unit(15, "kg"),
  54099. name: "Front (NSFW)",
  54100. image: {
  54101. source: "./media/characters/eri/front-nsfw.svg",
  54102. extra: 1014/939,
  54103. bottom: 37/1051
  54104. },
  54105. form: "moth",
  54106. default: true
  54107. },
  54108. egg: {
  54109. height: math.unit(10, "cm"),
  54110. name: "Egg",
  54111. image: {
  54112. source: "./media/characters/eri/egg.svg"
  54113. },
  54114. form: "egg",
  54115. default: true
  54116. },
  54117. },
  54118. [
  54119. {
  54120. name: "Normal",
  54121. height: math.unit(120, "cm"),
  54122. default: true,
  54123. form: "moth"
  54124. },
  54125. {
  54126. name: "Normal",
  54127. height: math.unit(10, "cm"),
  54128. default: true,
  54129. form: "egg"
  54130. },
  54131. ],
  54132. {
  54133. "moth": {
  54134. name: "Moth",
  54135. default: true
  54136. },
  54137. "egg": {
  54138. name: "Egg",
  54139. },
  54140. }
  54141. ))
  54142. characterMakers.push(() => makeCharacter(
  54143. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54144. {
  54145. front: {
  54146. height: math.unit(200, "feet"),
  54147. name: "Front",
  54148. image: {
  54149. source: "./media/characters/bishop-dowser/front.svg",
  54150. extra: 933/868,
  54151. bottom: 106/1039
  54152. }
  54153. },
  54154. },
  54155. [
  54156. {
  54157. name: "Giant",
  54158. height: math.unit(200, "feet"),
  54159. default: true
  54160. },
  54161. ]
  54162. ))
  54163. characterMakers.push(() => makeCharacter(
  54164. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54165. {
  54166. front: {
  54167. height: math.unit(2, "meters"),
  54168. preyCapacity: math.unit(3, "people"),
  54169. name: "Front",
  54170. image: {
  54171. source: "./media/characters/fryra/front.svg",
  54172. extra: 1025/948,
  54173. bottom: 30/1055
  54174. },
  54175. extraAttributes: {
  54176. "breastVolume": {
  54177. name: "Breast Volume",
  54178. power: 3,
  54179. type: "volume",
  54180. base: math.unit(8, "liters")
  54181. },
  54182. }
  54183. },
  54184. back: {
  54185. height: math.unit(2, "meters"),
  54186. preyCapacity: math.unit(3, "people"),
  54187. name: "Back",
  54188. image: {
  54189. source: "./media/characters/fryra/back.svg",
  54190. extra: 993/938,
  54191. bottom: 38/1031
  54192. },
  54193. extraAttributes: {
  54194. "breastVolume": {
  54195. name: "Breast Volume",
  54196. power: 3,
  54197. type: "volume",
  54198. base: math.unit(8, "liters")
  54199. },
  54200. }
  54201. },
  54202. head: {
  54203. height: math.unit(1.33, "feet"),
  54204. name: "Head",
  54205. image: {
  54206. source: "./media/characters/fryra/head.svg"
  54207. }
  54208. },
  54209. maw: {
  54210. height: math.unit(0.56, "feet"),
  54211. name: "Maw",
  54212. image: {
  54213. source: "./media/characters/fryra/maw.svg"
  54214. }
  54215. },
  54216. },
  54217. [
  54218. {
  54219. name: "Micro",
  54220. height: math.unit(5, "cm")
  54221. },
  54222. {
  54223. name: "Normal",
  54224. height: math.unit(2, "meters"),
  54225. default: true
  54226. },
  54227. {
  54228. name: "Small Macro",
  54229. height: math.unit(8, "meters")
  54230. },
  54231. {
  54232. name: "Macro",
  54233. height: math.unit(50, "meters")
  54234. },
  54235. {
  54236. name: "Megamacro",
  54237. height: math.unit(1, "km")
  54238. },
  54239. {
  54240. name: "Planetary",
  54241. height: math.unit(300000, "km")
  54242. },
  54243. {
  54244. name: "Universal",
  54245. height: math.unit(250, "lightyears")
  54246. },
  54247. {
  54248. name: "Fabric of Reality",
  54249. height: math.unit(1000, "multiverses")
  54250. },
  54251. ]
  54252. ))
  54253. characterMakers.push(() => makeCharacter(
  54254. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54255. {
  54256. frontDressed: {
  54257. height: math.unit(6 + 2/12, "feet"),
  54258. name: "Front (Dressed)",
  54259. image: {
  54260. source: "./media/characters/fiera/front-dressed.svg",
  54261. extra: 1883/1793,
  54262. bottom: 70/1953
  54263. }
  54264. },
  54265. backDressed: {
  54266. height: math.unit(6 + 2/12, "feet"),
  54267. name: "Back (Dressed)",
  54268. image: {
  54269. source: "./media/characters/fiera/back-dressed.svg",
  54270. extra: 1847/1780,
  54271. bottom: 70/1917
  54272. }
  54273. },
  54274. frontNude: {
  54275. height: math.unit(6 + 2/12, "feet"),
  54276. name: "Front (Nude)",
  54277. image: {
  54278. source: "./media/characters/fiera/front-nude.svg",
  54279. extra: 1875/1785,
  54280. bottom: 66/1941
  54281. }
  54282. },
  54283. backNude: {
  54284. height: math.unit(6 + 2/12, "feet"),
  54285. name: "Back (Nude)",
  54286. image: {
  54287. source: "./media/characters/fiera/back-nude.svg",
  54288. extra: 1855/1788,
  54289. bottom: 44/1899
  54290. }
  54291. },
  54292. maw: {
  54293. height: math.unit(1.3, "feet"),
  54294. name: "Maw",
  54295. image: {
  54296. source: "./media/characters/fiera/maw.svg"
  54297. }
  54298. },
  54299. paw: {
  54300. height: math.unit(1, "feet"),
  54301. name: "Paw",
  54302. image: {
  54303. source: "./media/characters/fiera/paw.svg"
  54304. }
  54305. },
  54306. shoe: {
  54307. height: math.unit(1.05, "feet"),
  54308. name: "Shoe",
  54309. image: {
  54310. source: "./media/characters/fiera/shoe.svg"
  54311. }
  54312. },
  54313. },
  54314. [
  54315. {
  54316. name: "Normal",
  54317. height: math.unit(6 + 2/12, "feet"),
  54318. default: true
  54319. },
  54320. {
  54321. name: "Size Difference",
  54322. height: math.unit(13, "feet")
  54323. },
  54324. {
  54325. name: "Macro",
  54326. height: math.unit(60, "feet")
  54327. },
  54328. {
  54329. name: "Mega Macro",
  54330. height: math.unit(200, "feet")
  54331. },
  54332. ]
  54333. ))
  54334. characterMakers.push(() => makeCharacter(
  54335. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54336. {
  54337. back: {
  54338. height: math.unit(6, "feet"),
  54339. name: "Back",
  54340. image: {
  54341. source: "./media/characters/flare/back.svg",
  54342. extra: 1883/1765,
  54343. bottom: 32/1915
  54344. }
  54345. },
  54346. },
  54347. [
  54348. {
  54349. name: "Normal",
  54350. height: math.unit(6 + 2/12, "feet"),
  54351. default: true
  54352. },
  54353. {
  54354. name: "Size Difference",
  54355. height: math.unit(13, "feet")
  54356. },
  54357. {
  54358. name: "Macro",
  54359. height: math.unit(60, "feet")
  54360. },
  54361. {
  54362. name: "Macro 2",
  54363. height: math.unit(100, "feet")
  54364. },
  54365. {
  54366. name: "Mega Macro",
  54367. height: math.unit(200, "feet")
  54368. },
  54369. ]
  54370. ))
  54371. characterMakers.push(() => makeCharacter(
  54372. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54373. {
  54374. front: {
  54375. height: math.unit(2.2, "m"),
  54376. weight: math.unit(300, "kg"),
  54377. name: "Front",
  54378. image: {
  54379. source: "./media/characters/hanna/front.svg",
  54380. extra: 1696/1502,
  54381. bottom: 206/1902
  54382. }
  54383. },
  54384. },
  54385. [
  54386. {
  54387. name: "Humanoid",
  54388. height: math.unit(2.2, "meters")
  54389. },
  54390. {
  54391. name: "Normal",
  54392. height: math.unit(4.8, "meters"),
  54393. default: true
  54394. },
  54395. ]
  54396. ))
  54397. characterMakers.push(() => makeCharacter(
  54398. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54399. {
  54400. front: {
  54401. height: math.unit(2.8, "meters"),
  54402. name: "Front",
  54403. image: {
  54404. source: "./media/characters/argo/front.svg",
  54405. extra: 731/518,
  54406. bottom: 84/815
  54407. }
  54408. },
  54409. },
  54410. [
  54411. {
  54412. name: "Normal",
  54413. height: math.unit(3, "meters"),
  54414. default: true
  54415. },
  54416. ]
  54417. ))
  54418. characterMakers.push(() => makeCharacter(
  54419. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54420. {
  54421. side: {
  54422. height: math.unit(3.8, "meters"),
  54423. name: "Side",
  54424. image: {
  54425. source: "./media/characters/sybil/side.svg",
  54426. extra: 382/361,
  54427. bottom: 25/407
  54428. }
  54429. },
  54430. },
  54431. [
  54432. {
  54433. name: "Normal",
  54434. height: math.unit(3.8, "meters"),
  54435. default: true
  54436. },
  54437. ]
  54438. ))
  54439. characterMakers.push(() => makeCharacter(
  54440. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54441. {
  54442. side: {
  54443. height: math.unit(6, "meters"),
  54444. name: "Side",
  54445. image: {
  54446. source: "./media/characters/plum/side.svg",
  54447. extra: 858/755,
  54448. bottom: 45/903
  54449. },
  54450. form: "taur",
  54451. default: true
  54452. },
  54453. back: {
  54454. height: math.unit(6.3, "meters"),
  54455. name: "Back",
  54456. image: {
  54457. source: "./media/characters/plum/back.svg",
  54458. extra: 887/813,
  54459. bottom: 32/919
  54460. },
  54461. form: "taur",
  54462. },
  54463. feral: {
  54464. height: math.unit(5.5, "meter"),
  54465. name: "Front",
  54466. image: {
  54467. source: "./media/characters/plum/feral.svg",
  54468. extra: 568/403,
  54469. bottom: 51/619
  54470. },
  54471. form: "feral",
  54472. default: true
  54473. },
  54474. head: {
  54475. height: math.unit(1.46, "meter"),
  54476. name: "Head",
  54477. image: {
  54478. source: "./media/characters/plum/head.svg"
  54479. },
  54480. form: "taur"
  54481. },
  54482. tailTop: {
  54483. height: math.unit(5.6, "meter"),
  54484. name: "Tail (Top)",
  54485. image: {
  54486. source: "./media/characters/plum/tail-top.svg"
  54487. },
  54488. form: "taur",
  54489. },
  54490. tailBottom: {
  54491. height: math.unit(5.6, "meter"),
  54492. name: "Tail (Bottom)",
  54493. image: {
  54494. source: "./media/characters/plum/tail-bottom.svg"
  54495. },
  54496. form: "taur",
  54497. },
  54498. feralHead: {
  54499. height: math.unit(2.56549521, "meter"),
  54500. name: "Head",
  54501. image: {
  54502. source: "./media/characters/plum/head.svg"
  54503. },
  54504. form: "feral"
  54505. },
  54506. feralTailTop: {
  54507. height: math.unit(5.44728435, "meter"),
  54508. name: "Tail (Top)",
  54509. image: {
  54510. source: "./media/characters/plum/tail-top.svg"
  54511. },
  54512. form: "feral",
  54513. },
  54514. feralTailBottom: {
  54515. height: math.unit(5.44728435, "meter"),
  54516. name: "Tail (Bottom)",
  54517. image: {
  54518. source: "./media/characters/plum/tail-bottom.svg"
  54519. },
  54520. form: "feral",
  54521. },
  54522. },
  54523. [
  54524. {
  54525. name: "Normal",
  54526. height: math.unit(6, "meters"),
  54527. default: true,
  54528. form: "taur"
  54529. },
  54530. {
  54531. name: "Normal",
  54532. height: math.unit(5.5, "meters"),
  54533. default: true,
  54534. form: "feral"
  54535. },
  54536. ],
  54537. {
  54538. "taur": {
  54539. name: "Taur",
  54540. default: true
  54541. },
  54542. "feral": {
  54543. name: "Feral",
  54544. },
  54545. }
  54546. ))
  54547. characterMakers.push(() => makeCharacter(
  54548. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54549. {
  54550. front: {
  54551. height: math.unit(6, "feet"),
  54552. weight: math.unit(115, "lb"),
  54553. name: "Front",
  54554. image: {
  54555. source: "./media/characters/celeste-kitsune/front.svg",
  54556. extra: 393/366,
  54557. bottom: 7/400
  54558. }
  54559. },
  54560. side: {
  54561. height: math.unit(6, "feet"),
  54562. weight: math.unit(115, "lb"),
  54563. name: "Side",
  54564. image: {
  54565. source: "./media/characters/celeste-kitsune/side.svg",
  54566. extra: 818/765,
  54567. bottom: 40/858
  54568. }
  54569. },
  54570. },
  54571. [
  54572. {
  54573. name: "Megamacro",
  54574. height: math.unit(1500, "miles"),
  54575. default: true
  54576. },
  54577. ]
  54578. ))
  54579. characterMakers.push(() => makeCharacter(
  54580. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54581. {
  54582. front: {
  54583. height: math.unit(8, "meters"),
  54584. name: "Front",
  54585. image: {
  54586. source: "./media/characters/io/front.svg",
  54587. extra: 865/722,
  54588. bottom: 58/923
  54589. }
  54590. },
  54591. back: {
  54592. height: math.unit(8, "meters"),
  54593. name: "Back",
  54594. image: {
  54595. source: "./media/characters/io/back.svg",
  54596. extra: 920/776,
  54597. bottom: 42/962
  54598. }
  54599. },
  54600. head: {
  54601. height: math.unit(5.09, "meters"),
  54602. name: "Head",
  54603. image: {
  54604. source: "./media/characters/io/head.svg"
  54605. }
  54606. },
  54607. hand: {
  54608. height: math.unit(1.6, "meters"),
  54609. name: "Hand",
  54610. image: {
  54611. source: "./media/characters/io/hand.svg"
  54612. }
  54613. },
  54614. foot: {
  54615. height: math.unit(2.4, "meters"),
  54616. name: "Foot",
  54617. image: {
  54618. source: "./media/characters/io/foot.svg"
  54619. }
  54620. },
  54621. },
  54622. [
  54623. {
  54624. name: "Normal",
  54625. height: math.unit(8, "meters"),
  54626. default: true
  54627. },
  54628. ]
  54629. ))
  54630. characterMakers.push(() => makeCharacter(
  54631. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54632. {
  54633. side: {
  54634. height: math.unit(6 + 3/12, "feet"),
  54635. weight: math.unit(225, "lb"),
  54636. name: "Side",
  54637. image: {
  54638. source: "./media/characters/silas/side.svg",
  54639. extra: 703/653,
  54640. bottom: 23/726
  54641. },
  54642. extraAttributes: {
  54643. "pawLength": {
  54644. name: "Paw Length",
  54645. power: 1,
  54646. type: "length",
  54647. base: math.unit(12, "inches")
  54648. },
  54649. "pawWidth": {
  54650. name: "Paw Width",
  54651. power: 1,
  54652. type: "length",
  54653. base: math.unit(4.5, "inches")
  54654. },
  54655. "pawArea": {
  54656. name: "Paw Area",
  54657. power: 2,
  54658. type: "area",
  54659. base: math.unit(12 * 4.5, "inches^2")
  54660. },
  54661. }
  54662. },
  54663. },
  54664. [
  54665. {
  54666. name: "Normal",
  54667. height: math.unit(6 + 3/12, "feet"),
  54668. default: true
  54669. },
  54670. ]
  54671. ))
  54672. characterMakers.push(() => makeCharacter(
  54673. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54674. {
  54675. back: {
  54676. height: math.unit(1.6, "meters"),
  54677. weight: math.unit(150, "lb"),
  54678. name: "Back",
  54679. image: {
  54680. source: "./media/characters/zari/back.svg",
  54681. extra: 424/411,
  54682. bottom: 32/456
  54683. },
  54684. extraAttributes: {
  54685. "bladderCapacity": {
  54686. name: "Bladder Size",
  54687. power: 3,
  54688. type: "volume",
  54689. base: math.unit(500, "mL")
  54690. },
  54691. "bladderFlow": {
  54692. name: "Flow Rate",
  54693. power: 3,
  54694. type: "volume",
  54695. base: math.unit(25, "mL")
  54696. },
  54697. }
  54698. },
  54699. },
  54700. [
  54701. {
  54702. name: "Normal",
  54703. height: math.unit(1.6, "meters"),
  54704. default: true
  54705. },
  54706. ]
  54707. ))
  54708. characterMakers.push(() => makeCharacter(
  54709. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54710. {
  54711. front: {
  54712. height: math.unit(25, "feet"),
  54713. weight: math.unit(5, "tons"),
  54714. name: "Front",
  54715. image: {
  54716. source: "./media/characters/charlie-human/front.svg",
  54717. extra: 1870/1740,
  54718. bottom: 102/1972
  54719. },
  54720. extraAttributes: {
  54721. "dickLength": {
  54722. name: "Dick Length",
  54723. power: 1,
  54724. type: "length",
  54725. base: math.unit(9, "feet")
  54726. },
  54727. }
  54728. },
  54729. back: {
  54730. height: math.unit(25, "feet"),
  54731. weight: math.unit(5, "tons"),
  54732. name: "Back",
  54733. image: {
  54734. source: "./media/characters/charlie-human/back.svg",
  54735. extra: 1858/1733,
  54736. bottom: 105/1963
  54737. },
  54738. extraAttributes: {
  54739. "dickLength": {
  54740. name: "Dick Length",
  54741. power: 1,
  54742. type: "length",
  54743. base: math.unit(9, "feet")
  54744. },
  54745. }
  54746. },
  54747. },
  54748. [
  54749. {
  54750. name: "\"Normal\"",
  54751. height: math.unit(6 + 4/12, "feet")
  54752. },
  54753. {
  54754. name: "Big",
  54755. height: math.unit(25, "feet"),
  54756. default: true
  54757. },
  54758. ]
  54759. ))
  54760. characterMakers.push(() => makeCharacter(
  54761. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54762. {
  54763. front: {
  54764. height: math.unit(6 + 4/12, "feet"),
  54765. weight: math.unit(320, "lb"),
  54766. name: "Front",
  54767. image: {
  54768. source: "./media/characters/ookitsu/front.svg",
  54769. extra: 1160/976,
  54770. bottom: 38/1198
  54771. }
  54772. },
  54773. frontNsfw: {
  54774. height: math.unit(6 + 4/12, "feet"),
  54775. weight: math.unit(320, "lb"),
  54776. name: "Front (NSFW)",
  54777. image: {
  54778. source: "./media/characters/ookitsu/front-nsfw.svg",
  54779. extra: 1160/976,
  54780. bottom: 38/1198
  54781. }
  54782. },
  54783. back: {
  54784. height: math.unit(6 + 4/12, "feet"),
  54785. weight: math.unit(320, "lb"),
  54786. name: "Back",
  54787. image: {
  54788. source: "./media/characters/ookitsu/back.svg",
  54789. extra: 1030/975,
  54790. bottom: 70/1100
  54791. }
  54792. },
  54793. head: {
  54794. height: math.unit(1.79, "feet"),
  54795. name: "Head",
  54796. image: {
  54797. source: "./media/characters/ookitsu/head.svg"
  54798. }
  54799. },
  54800. hand: {
  54801. height: math.unit(0.92, "feet"),
  54802. name: "Hand",
  54803. image: {
  54804. source: "./media/characters/ookitsu/hand.svg"
  54805. }
  54806. },
  54807. tails: {
  54808. height: math.unit(3.3, "feet"),
  54809. name: "Tails",
  54810. image: {
  54811. source: "./media/characters/ookitsu/tails.svg"
  54812. }
  54813. },
  54814. dick: {
  54815. height: math.unit(1.10833, "feet"),
  54816. name: "Dick",
  54817. image: {
  54818. source: "./media/characters/ookitsu/dick.svg"
  54819. }
  54820. },
  54821. },
  54822. [
  54823. {
  54824. name: "Normal",
  54825. height: math.unit(6 + 4/12, "feet"),
  54826. default: true
  54827. },
  54828. {
  54829. name: "Macro",
  54830. height: math.unit(30, "feet")
  54831. },
  54832. ]
  54833. ))
  54834. characterMakers.push(() => makeCharacter(
  54835. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54836. {
  54837. anthroFront: {
  54838. height: math.unit(6, "feet"),
  54839. weight: math.unit(250, "lb"),
  54840. name: "Front",
  54841. image: {
  54842. source: "./media/characters/jhusky/anthro-front.svg",
  54843. extra: 474/439,
  54844. bottom: 7/481
  54845. },
  54846. form: "anthro",
  54847. default: true
  54848. },
  54849. taurSideSfw: {
  54850. height: math.unit(6 + 4/12, "feet"),
  54851. weight: math.unit(500, "lb"),
  54852. name: "Side (SFW)",
  54853. image: {
  54854. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54855. extra: 1741/1629,
  54856. bottom: 196/1937
  54857. },
  54858. form: "taur",
  54859. default: true
  54860. },
  54861. taurSideNsfw: {
  54862. height: math.unit(6 + 4/12, "feet"),
  54863. weight: math.unit(500, "lb"),
  54864. name: "Taur (NSFW)",
  54865. image: {
  54866. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54867. extra: 1741/1629,
  54868. bottom: 196/1937
  54869. },
  54870. form: "taur",
  54871. },
  54872. },
  54873. [
  54874. {
  54875. name: "Huge",
  54876. height: math.unit(500, "feet"),
  54877. form: "anthro"
  54878. },
  54879. {
  54880. name: "Macro",
  54881. height: math.unit(1000, "feet"),
  54882. default: true,
  54883. form: "anthro"
  54884. },
  54885. {
  54886. name: "Megamacro",
  54887. height: math.unit(10000, "feet"),
  54888. form: "anthro"
  54889. },
  54890. {
  54891. name: "Huge",
  54892. height: math.unit(528, "feet"),
  54893. form: "taur"
  54894. },
  54895. {
  54896. name: "Macro",
  54897. height: math.unit(1056, "feet"),
  54898. default: true,
  54899. form: "taur"
  54900. },
  54901. {
  54902. name: "Megamacro",
  54903. height: math.unit(10556, "feet"),
  54904. form: "taur"
  54905. },
  54906. ],
  54907. {
  54908. "anthro": {
  54909. name: "Anthro",
  54910. default: true
  54911. },
  54912. "taur": {
  54913. name: "Taur",
  54914. },
  54915. }
  54916. ))
  54917. characterMakers.push(() => makeCharacter(
  54918. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54919. {
  54920. front: {
  54921. height: math.unit(8, "feet"),
  54922. weight: math.unit(500, "lb"),
  54923. name: "Front",
  54924. image: {
  54925. source: "./media/characters/armail/front.svg",
  54926. extra: 1753/1669,
  54927. bottom: 155/1908
  54928. }
  54929. },
  54930. back: {
  54931. height: math.unit(8, "feet"),
  54932. weight: math.unit(500, "lb"),
  54933. name: "Back",
  54934. image: {
  54935. source: "./media/characters/armail/back.svg",
  54936. extra: 1872/1803,
  54937. bottom: 63/1935
  54938. }
  54939. },
  54940. },
  54941. [
  54942. {
  54943. name: "Micro",
  54944. height: math.unit(0.25, "feet")
  54945. },
  54946. {
  54947. name: "Normal",
  54948. height: math.unit(8, "feet"),
  54949. default: true
  54950. },
  54951. {
  54952. name: "Mini-macro",
  54953. height: math.unit(30, "feet")
  54954. },
  54955. {
  54956. name: "Macro",
  54957. height: math.unit(400, "feet")
  54958. },
  54959. {
  54960. name: "Mega-macro",
  54961. height: math.unit(6000, "feet")
  54962. },
  54963. ]
  54964. ))
  54965. characterMakers.push(() => makeCharacter(
  54966. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54967. {
  54968. front: {
  54969. height: math.unit(6 + 7/12, "feet"),
  54970. weight: math.unit(210, "lb"),
  54971. name: "Front",
  54972. image: {
  54973. source: "./media/characters/wilfred-t-buxton/front.svg",
  54974. extra: 1068/882,
  54975. bottom: 28/1096
  54976. }
  54977. },
  54978. },
  54979. [
  54980. {
  54981. name: "Normal",
  54982. height: math.unit(6 + 7/12, "feet"),
  54983. default: true
  54984. },
  54985. ]
  54986. ))
  54987. characterMakers.push(() => makeCharacter(
  54988. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  54989. {
  54990. front: {
  54991. height: math.unit(5 + 2/12, "feet"),
  54992. weight: math.unit(120, "lb"),
  54993. name: "Front",
  54994. image: {
  54995. source: "./media/characters/leighton-marrow/front.svg",
  54996. extra: 441/409,
  54997. bottom: 37/478
  54998. }
  54999. },
  55000. },
  55001. [
  55002. {
  55003. name: "Normal",
  55004. height: math.unit(5 + 2/12, "feet"),
  55005. default: true
  55006. },
  55007. ]
  55008. ))
  55009. characterMakers.push(() => makeCharacter(
  55010. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55011. {
  55012. front: {
  55013. height: math.unit(4, "meters"),
  55014. weight: math.unit(1200, "kg"),
  55015. name: "Front",
  55016. image: {
  55017. source: "./media/characters/licos/front.svg",
  55018. extra: 1727/1604,
  55019. bottom: 101/1828
  55020. }
  55021. },
  55022. },
  55023. [
  55024. {
  55025. name: "Normal",
  55026. height: math.unit(4, "meters"),
  55027. default: true
  55028. },
  55029. ]
  55030. ))
  55031. characterMakers.push(() => makeCharacter(
  55032. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55033. {
  55034. front: {
  55035. height: math.unit(10 + 3/12, "feet"),
  55036. name: "Front",
  55037. image: {
  55038. source: "./media/characters/theo-monkey/front.svg",
  55039. extra: 1735/1658,
  55040. bottom: 73/1808
  55041. }
  55042. },
  55043. back: {
  55044. height: math.unit(10 + 3/12, "feet"),
  55045. name: "Back",
  55046. image: {
  55047. source: "./media/characters/theo-monkey/back.svg",
  55048. extra: 1742/1664,
  55049. bottom: 33/1775
  55050. }
  55051. },
  55052. head: {
  55053. height: math.unit(2.29, "feet"),
  55054. name: "Head",
  55055. image: {
  55056. source: "./media/characters/theo-monkey/head.svg"
  55057. }
  55058. },
  55059. handPalm: {
  55060. height: math.unit(1.73, "feet"),
  55061. name: "Hand (Palm)",
  55062. image: {
  55063. source: "./media/characters/theo-monkey/hand-palm.svg"
  55064. }
  55065. },
  55066. handBack: {
  55067. height: math.unit(1.63, "feet"),
  55068. name: "Hand (Back)",
  55069. image: {
  55070. source: "./media/characters/theo-monkey/hand-back.svg"
  55071. }
  55072. },
  55073. footSole: {
  55074. height: math.unit(2.15, "feet"),
  55075. name: "Foot (Sole)",
  55076. image: {
  55077. source: "./media/characters/theo-monkey/foot-sole.svg"
  55078. }
  55079. },
  55080. footSide: {
  55081. height: math.unit(1.6, "feet"),
  55082. name: "Foot (Side)",
  55083. image: {
  55084. source: "./media/characters/theo-monkey/foot-side.svg"
  55085. }
  55086. },
  55087. },
  55088. [
  55089. {
  55090. name: "Normal",
  55091. height: math.unit(10 + 3/12, "feet"),
  55092. default: true
  55093. },
  55094. ]
  55095. ))
  55096. characterMakers.push(() => makeCharacter(
  55097. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55098. {
  55099. front: {
  55100. height: math.unit(11, "feet"),
  55101. weight: math.unit(3000, "lb"),
  55102. preyCapacity: math.unit(10, "people"),
  55103. name: "Front",
  55104. image: {
  55105. source: "./media/characters/brook/front.svg",
  55106. extra: 909/835,
  55107. bottom: 108/1017
  55108. }
  55109. },
  55110. back: {
  55111. height: math.unit(11, "feet"),
  55112. weight: math.unit(3000, "lb"),
  55113. preyCapacity: math.unit(10, "people"),
  55114. name: "Back",
  55115. image: {
  55116. source: "./media/characters/brook/back.svg",
  55117. extra: 976/916,
  55118. bottom: 34/1010
  55119. }
  55120. },
  55121. backAlt: {
  55122. height: math.unit(11, "feet"),
  55123. weight: math.unit(3000, "lb"),
  55124. preyCapacity: math.unit(10, "people"),
  55125. name: "Back (Alt)",
  55126. image: {
  55127. source: "./media/characters/brook/back-alt.svg",
  55128. extra: 1283/1213,
  55129. bottom: 35/1318
  55130. }
  55131. },
  55132. bust: {
  55133. height: math.unit(9.0859030837, "feet"),
  55134. weight: math.unit(3000, "lb"),
  55135. preyCapacity: math.unit(10, "people"),
  55136. name: "Bust",
  55137. image: {
  55138. source: "./media/characters/brook/bust.svg",
  55139. extra: 2043/1923,
  55140. bottom: 0/2043
  55141. }
  55142. },
  55143. },
  55144. [
  55145. {
  55146. name: "Small",
  55147. height: math.unit(11, "feet"),
  55148. default: true
  55149. },
  55150. {
  55151. name: "Towering",
  55152. height: math.unit(5, "km")
  55153. },
  55154. {
  55155. name: "Enormous",
  55156. height: math.unit(25, "earths")
  55157. },
  55158. ]
  55159. ))
  55160. characterMakers.push(() => makeCharacter(
  55161. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55162. {
  55163. front: {
  55164. height: math.unit(4, "feet"),
  55165. weight: math.unit(150, "lb"),
  55166. name: "Front",
  55167. image: {
  55168. source: "./media/characters/squishi/front.svg",
  55169. extra: 1428/1271,
  55170. bottom: 30/1458
  55171. },
  55172. extraAttributes: {
  55173. "pawSize": {
  55174. name: "Paw Size",
  55175. power: 1,
  55176. type: "length",
  55177. base: math.unit(14, "ShoeSizeMensUS"),
  55178. defaultUnit: "ShoeSizeMensUS"
  55179. },
  55180. }
  55181. },
  55182. side: {
  55183. height: math.unit(4, "feet"),
  55184. weight: math.unit(150, "lb"),
  55185. name: "Side",
  55186. image: {
  55187. source: "./media/characters/squishi/side.svg",
  55188. extra: 1428/1271,
  55189. bottom: 30/1458
  55190. },
  55191. extraAttributes: {
  55192. "pawSize": {
  55193. name: "Paw Size",
  55194. power: 1,
  55195. type: "length",
  55196. base: math.unit(14, "ShoeSizeMensUS"),
  55197. defaultUnit: "ShoeSizeMensUS"
  55198. },
  55199. }
  55200. },
  55201. back: {
  55202. height: math.unit(4, "feet"),
  55203. weight: math.unit(150, "lb"),
  55204. name: "Back",
  55205. image: {
  55206. source: "./media/characters/squishi/back.svg",
  55207. extra: 1428/1271,
  55208. bottom: 30/1458
  55209. },
  55210. extraAttributes: {
  55211. "pawSize": {
  55212. name: "Paw Size",
  55213. power: 1,
  55214. type: "length",
  55215. base: math.unit(14, "ShoeSizeMensUS"),
  55216. defaultUnit: "ShoeSizeMensUS"
  55217. },
  55218. }
  55219. },
  55220. },
  55221. [
  55222. {
  55223. name: "Normal",
  55224. height: math.unit(4, "feet"),
  55225. default: true
  55226. },
  55227. ]
  55228. ))
  55229. characterMakers.push(() => makeCharacter(
  55230. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55231. {
  55232. front: {
  55233. height: math.unit(7 + 8/12, "feet"),
  55234. weight: math.unit(333, "lb"),
  55235. name: "Front",
  55236. image: {
  55237. source: "./media/characters/vincent-vasroc/front.svg",
  55238. extra: 1962/1860,
  55239. bottom: 41/2003
  55240. }
  55241. },
  55242. back: {
  55243. height: math.unit(7 + 8/12, "feet"),
  55244. weight: math.unit(333, "lb"),
  55245. name: "Back",
  55246. image: {
  55247. source: "./media/characters/vincent-vasroc/back.svg",
  55248. extra: 1952/1815,
  55249. bottom: 33/1985
  55250. }
  55251. },
  55252. paw: {
  55253. height: math.unit(1.24, "feet"),
  55254. name: "Paw",
  55255. image: {
  55256. source: "./media/characters/vincent-vasroc/paw.svg"
  55257. }
  55258. },
  55259. ear: {
  55260. height: math.unit(0.75, "feet"),
  55261. name: "Ear",
  55262. image: {
  55263. source: "./media/characters/vincent-vasroc/ear.svg"
  55264. }
  55265. },
  55266. },
  55267. [
  55268. {
  55269. name: "Nano",
  55270. height: math.unit(92, "micrometers")
  55271. },
  55272. {
  55273. name: "Normal",
  55274. height: math.unit(7 + 8/12, "feet"),
  55275. default: true
  55276. },
  55277. ]
  55278. ))
  55279. characterMakers.push(() => makeCharacter(
  55280. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55281. {
  55282. frontNsfw: {
  55283. height: math.unit(40, "feet"),
  55284. weight: math.unit(58, "tons"),
  55285. name: "Front (NSFW)",
  55286. image: {
  55287. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55288. extra: 1265/965,
  55289. bottom: 155/1420
  55290. }
  55291. },
  55292. frontSfw: {
  55293. height: math.unit(40, "feet"),
  55294. weight: math.unit(58, "tons"),
  55295. name: "Front (SFW)",
  55296. image: {
  55297. source: "./media/characters/ru-kahn/front-sfw.svg",
  55298. extra: 1265/965,
  55299. bottom: 80/1345
  55300. }
  55301. },
  55302. },
  55303. [
  55304. {
  55305. name: "Small",
  55306. height: math.unit(4, "feet")
  55307. },
  55308. {
  55309. name: "Normal",
  55310. height: math.unit(40, "feet"),
  55311. default: true
  55312. },
  55313. {
  55314. name: "Macro",
  55315. height: math.unit(400, "feet")
  55316. },
  55317. ]
  55318. ))
  55319. characterMakers.push(() => makeCharacter(
  55320. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55321. {
  55322. frontNude: {
  55323. height: math.unit(6 + 5/12, "feet"),
  55324. name: "Front (Nude)",
  55325. image: {
  55326. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55327. extra: 1369/1366,
  55328. bottom: 68/1437
  55329. }
  55330. },
  55331. frontDressed: {
  55332. height: math.unit(6 + 5/12, "feet"),
  55333. name: "Front (Dressed)",
  55334. image: {
  55335. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55336. extra: 1369/1366,
  55337. bottom: 68/1437
  55338. }
  55339. },
  55340. },
  55341. [
  55342. {
  55343. name: "Normal",
  55344. height: math.unit(6 + 5/12, "feet"),
  55345. default: true
  55346. },
  55347. {
  55348. name: "Maximum",
  55349. height: math.unit(1930, "feet")
  55350. },
  55351. ]
  55352. ))
  55353. characterMakers.push(() => makeCharacter(
  55354. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55355. {
  55356. front: {
  55357. height: math.unit(5 + 6/12, "feet"),
  55358. name: "Front",
  55359. image: {
  55360. source: "./media/characters/kaja/front.svg",
  55361. extra: 1874/1514,
  55362. bottom: 117/1991
  55363. }
  55364. },
  55365. },
  55366. [
  55367. {
  55368. name: "Normal",
  55369. height: math.unit(5 + 6/12, "feet"),
  55370. default: true
  55371. },
  55372. ]
  55373. ))
  55374. characterMakers.push(() => makeCharacter(
  55375. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55376. {
  55377. front: {
  55378. height: math.unit(5 + 9/12, "feet"),
  55379. weight: math.unit(200, "lb"),
  55380. name: "Front",
  55381. image: {
  55382. source: "./media/characters/mark-smith/front.svg",
  55383. extra: 1004/943,
  55384. bottom: 58/1062
  55385. }
  55386. },
  55387. back: {
  55388. height: math.unit(5 + 9/12, "feet"),
  55389. weight: math.unit(200, "lb"),
  55390. name: "Back",
  55391. image: {
  55392. source: "./media/characters/mark-smith/back.svg",
  55393. extra: 1023/953,
  55394. bottom: 24/1047
  55395. }
  55396. },
  55397. head: {
  55398. height: math.unit(1.82, "feet"),
  55399. name: "Head",
  55400. image: {
  55401. source: "./media/characters/mark-smith/head.svg"
  55402. }
  55403. },
  55404. hand: {
  55405. height: math.unit(1.4, "feet"),
  55406. name: "Hand",
  55407. image: {
  55408. source: "./media/characters/mark-smith/hand.svg"
  55409. }
  55410. },
  55411. paw: {
  55412. height: math.unit(1.69, "feet"),
  55413. name: "Paw",
  55414. image: {
  55415. source: "./media/characters/mark-smith/paw.svg"
  55416. }
  55417. },
  55418. },
  55419. [
  55420. {
  55421. name: "Micro",
  55422. height: math.unit(0.25, "inches")
  55423. },
  55424. {
  55425. name: "Normal",
  55426. height: math.unit(5 + 9/12, "feet"),
  55427. default: true
  55428. },
  55429. {
  55430. name: "Macro",
  55431. height: math.unit(500, "feet")
  55432. },
  55433. ]
  55434. ))
  55435. characterMakers.push(() => makeCharacter(
  55436. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55437. {
  55438. frontNude: {
  55439. height: math.unit(6, "feet"),
  55440. name: "Front (Nude)",
  55441. image: {
  55442. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55443. extra: 1384/1321,
  55444. bottom: 57/1441
  55445. }
  55446. },
  55447. frontDressed: {
  55448. height: math.unit(6, "feet"),
  55449. name: "Front (Dressed)",
  55450. image: {
  55451. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55452. extra: 1384/1321,
  55453. bottom: 57/1441
  55454. }
  55455. },
  55456. },
  55457. [
  55458. {
  55459. name: "Normal",
  55460. height: math.unit(6, "feet"),
  55461. default: true
  55462. },
  55463. {
  55464. name: "Maximum",
  55465. height: math.unit(1776, "feet")
  55466. },
  55467. ]
  55468. ))
  55469. characterMakers.push(() => makeCharacter(
  55470. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55471. {
  55472. front: {
  55473. height: math.unit(2 + 4/12, "feet"),
  55474. weight: math.unit(350, "lb"),
  55475. name: "Front",
  55476. image: {
  55477. source: "./media/characters/devos/front.svg",
  55478. extra: 958/852,
  55479. bottom: 143/1101
  55480. }
  55481. },
  55482. },
  55483. [
  55484. {
  55485. name: "Base",
  55486. height: math.unit(2 + 4/12, "feet"),
  55487. default: true
  55488. },
  55489. ]
  55490. ))
  55491. characterMakers.push(() => makeCharacter(
  55492. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55493. {
  55494. front: {
  55495. height: math.unit(9 + 2/12, "feet"),
  55496. name: "Front",
  55497. image: {
  55498. source: "./media/characters/hiveheart/front.svg",
  55499. extra: 394/364,
  55500. bottom: 65/459
  55501. }
  55502. },
  55503. back: {
  55504. height: math.unit(9 + 2/12, "feet"),
  55505. name: "Back",
  55506. image: {
  55507. source: "./media/characters/hiveheart/back.svg",
  55508. extra: 374/357,
  55509. bottom: 63/437
  55510. }
  55511. },
  55512. },
  55513. [
  55514. {
  55515. name: "Base",
  55516. height: math.unit(9 + 2/12, "feet"),
  55517. default: true
  55518. },
  55519. ]
  55520. ))
  55521. characterMakers.push(() => makeCharacter(
  55522. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55523. {
  55524. front: {
  55525. height: math.unit(2.5, "inches"),
  55526. weight: math.unit(0.6, "oz"),
  55527. name: "Front",
  55528. image: {
  55529. source: "./media/characters/bryn/front.svg",
  55530. extra: 1480/1205,
  55531. bottom: 27/1507
  55532. }
  55533. },
  55534. back: {
  55535. height: math.unit(2.5, "inches"),
  55536. weight: math.unit(0.6, "oz"),
  55537. name: "Back",
  55538. image: {
  55539. source: "./media/characters/bryn/back.svg",
  55540. extra: 1475/1201,
  55541. bottom: 39/1514
  55542. }
  55543. },
  55544. foot: {
  55545. height: math.unit(0.4, "inches"),
  55546. name: "Foot",
  55547. image: {
  55548. source: "./media/characters/bryn/foot.svg"
  55549. }
  55550. },
  55551. },
  55552. [
  55553. {
  55554. name: "Normal",
  55555. height: math.unit(2.5, "inches"),
  55556. default: true
  55557. },
  55558. ]
  55559. ))
  55560. characterMakers.push(() => makeCharacter(
  55561. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55562. {
  55563. side: {
  55564. height: math.unit(7, "feet"),
  55565. weight: math.unit(657, "kg"),
  55566. name: "Side",
  55567. image: {
  55568. source: "./media/characters/delta/side.svg",
  55569. extra: 781/212,
  55570. bottom: 7/788
  55571. },
  55572. extraAttributes: {
  55573. "wingspan": {
  55574. name: "Wingspan",
  55575. power: 1,
  55576. type: "length",
  55577. base: math.unit(48, "feet")
  55578. },
  55579. "length": {
  55580. name: "Length",
  55581. power: 1,
  55582. type: "length",
  55583. base: math.unit(21, "feet")
  55584. },
  55585. "pawSize": {
  55586. name: "Paw Size",
  55587. power: 2,
  55588. type: "area",
  55589. base: math.unit(1.5*1.4, "feet^2")
  55590. },
  55591. }
  55592. },
  55593. },
  55594. [
  55595. {
  55596. name: "Normal",
  55597. height: math.unit(6, "feet"),
  55598. default: true
  55599. },
  55600. ]
  55601. ))
  55602. characterMakers.push(() => makeCharacter(
  55603. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55604. {
  55605. front: {
  55606. height: math.unit(6, "feet"),
  55607. name: "Front",
  55608. image: {
  55609. source: "./media/characters/pyrow/front.svg",
  55610. extra: 513/486,
  55611. bottom: 14/527
  55612. }
  55613. },
  55614. frontWing: {
  55615. height: math.unit(6, "feet"),
  55616. name: "Front (Wing)",
  55617. image: {
  55618. source: "./media/characters/pyrow/front-wing.svg",
  55619. extra: 539/383,
  55620. bottom: 20/559
  55621. }
  55622. },
  55623. back: {
  55624. height: math.unit(6, "feet"),
  55625. name: "Back",
  55626. image: {
  55627. source: "./media/characters/pyrow/back.svg",
  55628. extra: 500/473,
  55629. bottom: 9/509
  55630. }
  55631. },
  55632. },
  55633. [
  55634. {
  55635. name: "Normal",
  55636. height: math.unit(6, "feet"),
  55637. default: true
  55638. },
  55639. ]
  55640. ))
  55641. characterMakers.push(() => makeCharacter(
  55642. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55643. {
  55644. front: {
  55645. height: math.unit(5, "meters"),
  55646. weight: math.unit(3, "tonnes"),
  55647. name: "Front",
  55648. image: {
  55649. source: "./media/characters/velikan/front.svg",
  55650. extra: 867/744,
  55651. bottom: 71/938
  55652. },
  55653. extraAttributes: {
  55654. "shoeSize": {
  55655. name: "Shoe Size",
  55656. power: 1,
  55657. type: "length",
  55658. base: math.unit(135, "ShoeSizeUK"),
  55659. defaultUnit: "ShoeSizeUK"
  55660. },
  55661. }
  55662. },
  55663. },
  55664. [
  55665. {
  55666. name: "Normal",
  55667. height: math.unit(5, "meters"),
  55668. default: true
  55669. },
  55670. {
  55671. name: "Macro",
  55672. height: math.unit(1, "km")
  55673. },
  55674. {
  55675. name: "Mega Macro",
  55676. height: math.unit(100, "km")
  55677. },
  55678. {
  55679. name: "Giga Macro",
  55680. height: math.unit(2, "megameters")
  55681. },
  55682. {
  55683. name: "Planetary",
  55684. height: math.unit(22, "megameters")
  55685. },
  55686. {
  55687. name: "Solar",
  55688. height: math.unit(8, "gigameters")
  55689. },
  55690. {
  55691. name: "Cosmic",
  55692. height: math.unit(10, "zettameters")
  55693. },
  55694. {
  55695. name: "Omni",
  55696. height: math.unit(9e260, "multiverses")
  55697. },
  55698. ]
  55699. ))
  55700. characterMakers.push(() => makeCharacter(
  55701. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55702. {
  55703. front: {
  55704. height: math.unit(4 + 3/12, "feet"),
  55705. weight: math.unit(90, "lb"),
  55706. name: "Front",
  55707. image: {
  55708. source: "./media/characters/sabiki/front.svg",
  55709. extra: 1662/1423,
  55710. bottom: 65/1727
  55711. }
  55712. },
  55713. },
  55714. [
  55715. {
  55716. name: "Normal",
  55717. height: math.unit(4 + 3/12, "feet"),
  55718. default: true
  55719. },
  55720. ]
  55721. ))
  55722. characterMakers.push(() => makeCharacter(
  55723. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55724. {
  55725. frontSfw: {
  55726. height: math.unit(2, "mm"),
  55727. name: "Front (SFW)",
  55728. image: {
  55729. source: "./media/characters/carmel/front-sfw.svg",
  55730. extra: 1131/1006,
  55731. bottom: 66/1197
  55732. }
  55733. },
  55734. frontNsfw: {
  55735. height: math.unit(2, "mm"),
  55736. name: "Front (NSFW)",
  55737. image: {
  55738. source: "./media/characters/carmel/front-nsfw.svg",
  55739. extra: 1131/1006,
  55740. bottom: 66/1197
  55741. }
  55742. },
  55743. foot: {
  55744. height: math.unit(0.3, "mm"),
  55745. name: "Foot",
  55746. image: {
  55747. source: "./media/characters/carmel/foot.svg"
  55748. }
  55749. },
  55750. tongue: {
  55751. height: math.unit(0.71, "mm"),
  55752. name: "Tongue",
  55753. image: {
  55754. source: "./media/characters/carmel/tongue.svg"
  55755. }
  55756. },
  55757. dick: {
  55758. height: math.unit(0.085, "mm"),
  55759. name: "Dick",
  55760. image: {
  55761. source: "./media/characters/carmel/dick.svg"
  55762. }
  55763. },
  55764. },
  55765. [
  55766. {
  55767. name: "Micro",
  55768. height: math.unit(2, "mm"),
  55769. default: true
  55770. },
  55771. {
  55772. name: "Normal",
  55773. height: math.unit(4 + 8/12, "feet")
  55774. },
  55775. {
  55776. name: "Mega Macro",
  55777. height: math.unit(250, "feet")
  55778. },
  55779. {
  55780. name: "BIGGER",
  55781. height: math.unit(1000, "feet")
  55782. },
  55783. {
  55784. name: "BIGGEST",
  55785. height: math.unit(2, "miles")
  55786. },
  55787. ]
  55788. ))
  55789. characterMakers.push(() => makeCharacter(
  55790. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55791. {
  55792. front: {
  55793. height: math.unit(6.5, "feet"),
  55794. weight: math.unit(198, "lb"),
  55795. name: "Front",
  55796. image: {
  55797. source: "./media/characters/tamani/anthro.svg",
  55798. extra: 930/890,
  55799. bottom: 34/964
  55800. },
  55801. form: "anthro",
  55802. default: true
  55803. },
  55804. side: {
  55805. height: math.unit(6, "feet"),
  55806. weight: math.unit(198*2, "lb"),
  55807. name: "Side",
  55808. image: {
  55809. source: "./media/characters/tamani/feral.svg",
  55810. extra: 559/519,
  55811. bottom: 43/602
  55812. },
  55813. form: "feral"
  55814. },
  55815. },
  55816. [
  55817. {
  55818. name: "Normal",
  55819. height: math.unit(6.5, "feet"),
  55820. default: true,
  55821. form: "anthro"
  55822. },
  55823. {
  55824. name: "Normal",
  55825. height: math.unit(6, "feet"),
  55826. default: true,
  55827. form: "feral"
  55828. },
  55829. ],
  55830. {
  55831. "anthro": {
  55832. name: "Anthro",
  55833. default: true
  55834. },
  55835. "feral": {
  55836. name: "Feral",
  55837. },
  55838. }
  55839. ))
  55840. characterMakers.push(() => makeCharacter(
  55841. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  55842. {
  55843. front: {
  55844. height: math.unit(4 + 1/12, "feet"),
  55845. weight: math.unit(114, "lb"),
  55846. name: "Front",
  55847. image: {
  55848. source: "./media/characters/dex/front.svg",
  55849. extra: 787/680,
  55850. bottom: 18/805
  55851. }
  55852. },
  55853. side: {
  55854. height: math.unit(4 + 1/12, "feet"),
  55855. weight: math.unit(114, "lb"),
  55856. name: "Side",
  55857. image: {
  55858. source: "./media/characters/dex/side.svg",
  55859. extra: 785/680,
  55860. bottom: 12/797
  55861. }
  55862. },
  55863. back: {
  55864. height: math.unit(4 + 1/12, "feet"),
  55865. weight: math.unit(114, "lb"),
  55866. name: "Back",
  55867. image: {
  55868. source: "./media/characters/dex/back.svg",
  55869. extra: 785/681,
  55870. bottom: 17/802
  55871. }
  55872. },
  55873. loungewear: {
  55874. height: math.unit(4 + 1/12, "feet"),
  55875. weight: math.unit(114, "lb"),
  55876. name: "Loungewear",
  55877. image: {
  55878. source: "./media/characters/dex/loungewear.svg",
  55879. extra: 787/680,
  55880. bottom: 18/805
  55881. }
  55882. },
  55883. workout: {
  55884. height: math.unit(4 + 1/12, "feet"),
  55885. weight: math.unit(114, "lb"),
  55886. name: "Workout",
  55887. image: {
  55888. source: "./media/characters/dex/workout.svg",
  55889. extra: 787/680,
  55890. bottom: 18/805
  55891. }
  55892. },
  55893. schoolUniform: {
  55894. height: math.unit(4 + 1/12, "feet"),
  55895. weight: math.unit(114, "lb"),
  55896. name: "School-uniform",
  55897. image: {
  55898. source: "./media/characters/dex/school-uniform.svg",
  55899. extra: 787/680,
  55900. bottom: 18/805
  55901. }
  55902. },
  55903. maw: {
  55904. height: math.unit(0.55, "feet"),
  55905. name: "Maw",
  55906. image: {
  55907. source: "./media/characters/dex/maw.svg"
  55908. }
  55909. },
  55910. paw: {
  55911. height: math.unit(0.87, "feet"),
  55912. name: "Paw",
  55913. image: {
  55914. source: "./media/characters/dex/paw.svg"
  55915. }
  55916. },
  55917. bust: {
  55918. height: math.unit(1.67, "feet"),
  55919. name: "Bust",
  55920. image: {
  55921. source: "./media/characters/dex/bust.svg"
  55922. }
  55923. },
  55924. },
  55925. [
  55926. {
  55927. name: "Normal",
  55928. height: math.unit(4 + 1/12, "feet"),
  55929. default: true
  55930. },
  55931. ]
  55932. ))
  55933. characterMakers.push(() => makeCharacter(
  55934. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  55935. {
  55936. front: {
  55937. height: math.unit(4 + 3/12, "feet"),
  55938. weight: math.unit(60, "lb"),
  55939. name: "Front",
  55940. image: {
  55941. source: "./media/characters/silke/front.svg",
  55942. extra: 1334/1122,
  55943. bottom: 21/1355
  55944. }
  55945. },
  55946. back: {
  55947. height: math.unit(4 + 3/12, "feet"),
  55948. weight: math.unit(60, "lb"),
  55949. name: "Back",
  55950. image: {
  55951. source: "./media/characters/silke/back.svg",
  55952. extra: 1328/1092,
  55953. bottom: 16/1344
  55954. }
  55955. },
  55956. dressed: {
  55957. height: math.unit(4 + 3/12, "feet"),
  55958. weight: math.unit(60, "lb"),
  55959. name: "Dressed",
  55960. image: {
  55961. source: "./media/characters/silke/dressed.svg",
  55962. extra: 1334/1122,
  55963. bottom: 43/1377
  55964. }
  55965. },
  55966. },
  55967. [
  55968. {
  55969. name: "Normal",
  55970. height: math.unit(4 + 3/12, "feet"),
  55971. default: true
  55972. },
  55973. ]
  55974. ))
  55975. characterMakers.push(() => makeCharacter(
  55976. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  55977. {
  55978. front: {
  55979. height: math.unit(1.58, "meters"),
  55980. weight: math.unit(47, "kg"),
  55981. name: "Front",
  55982. image: {
  55983. source: "./media/characters/wireshark/front.svg",
  55984. extra: 883/838,
  55985. bottom: 66/949
  55986. }
  55987. },
  55988. },
  55989. [
  55990. {
  55991. name: "Normal",
  55992. height: math.unit(1.58, "meters"),
  55993. default: true
  55994. },
  55995. ]
  55996. ))
  55997. characterMakers.push(() => makeCharacter(
  55998. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  55999. {
  56000. front: {
  56001. height: math.unit(6, "meters"),
  56002. weight: math.unit(15000, "kg"),
  56003. name: "Front",
  56004. image: {
  56005. source: "./media/characters/gallagher/front.svg"
  56006. }
  56007. },
  56008. },
  56009. [
  56010. {
  56011. name: "Normal",
  56012. height: math.unit(6, "meters"),
  56013. default: true
  56014. },
  56015. ]
  56016. ))
  56017. characterMakers.push(() => makeCharacter(
  56018. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56019. {
  56020. front: {
  56021. height: math.unit(2.4, "meters"),
  56022. weight: math.unit(270, "kg"),
  56023. name: "Front",
  56024. image: {
  56025. source: "./media/characters/alice/front.svg",
  56026. extra: 950/900,
  56027. bottom: 36/986
  56028. }
  56029. },
  56030. side: {
  56031. height: math.unit(2.4, "meters"),
  56032. weight: math.unit(270, "kg"),
  56033. name: "Side",
  56034. image: {
  56035. source: "./media/characters/alice/side.svg",
  56036. extra: 921/876,
  56037. bottom: 19/940
  56038. }
  56039. },
  56040. dressed: {
  56041. height: math.unit(2.4, "meters"),
  56042. weight: math.unit(270, "kg"),
  56043. name: "Dressed",
  56044. image: {
  56045. source: "./media/characters/alice/dressed.svg",
  56046. extra: 905/850,
  56047. bottom: 81/986
  56048. }
  56049. },
  56050. fishnet: {
  56051. height: math.unit(2.4, "meters"),
  56052. weight: math.unit(270, "kg"),
  56053. name: "Fishnet",
  56054. image: {
  56055. source: "./media/characters/alice/fishnet.svg",
  56056. extra: 905/850,
  56057. bottom: 81/986
  56058. }
  56059. },
  56060. },
  56061. [
  56062. {
  56063. name: "Normal",
  56064. height: math.unit(2.4, "meters"),
  56065. default: true
  56066. },
  56067. ]
  56068. ))
  56069. //characters
  56070. function makeCharacters() {
  56071. const results = [];
  56072. characterMakers.forEach(character => {
  56073. results.push(character());
  56074. });
  56075. return results;
  56076. }