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.
 
 
 

60568 lines
1.5 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: ["dinosaur"]
  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: ["theropod"]
  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: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. }
  2238. //species
  2239. function getSpeciesInfo(speciesList) {
  2240. let result = new Set();
  2241. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2242. result.add(entry)
  2243. });
  2244. return Array.from(result);
  2245. };
  2246. function getSpeciesInfoHelper(species) {
  2247. if (!speciesData[species]) {
  2248. console.warn(species + " doesn't exist");
  2249. return [];
  2250. }
  2251. if (speciesData[species].parents) {
  2252. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2253. } else {
  2254. return [species];
  2255. }
  2256. }
  2257. characterMakers.push(() => makeCharacter(
  2258. {
  2259. name: "Fen",
  2260. species: ["crux"],
  2261. description: {
  2262. title: "Bio",
  2263. text: "Very furry. Sheds on everything."
  2264. },
  2265. tags: [
  2266. "anthro",
  2267. "goo"
  2268. ]
  2269. },
  2270. {
  2271. front: {
  2272. height: math.unit(12, "feet"),
  2273. weight: math.unit(2400, "lb"),
  2274. preyCapacity: math.unit(1, "people"),
  2275. name: "Front",
  2276. image: {
  2277. source: "./media/characters/fen/front.svg",
  2278. extra: 1804/1562,
  2279. bottom: 205/2009
  2280. },
  2281. extraAttributes: {
  2282. pawSize: {
  2283. name: "Paw Size",
  2284. power: 2,
  2285. type: "area",
  2286. base: math.unit(0.35, "m^2")
  2287. }
  2288. }
  2289. },
  2290. diving: {
  2291. height: math.unit(4.9, "meters"),
  2292. weight: math.unit(2400, "lb"),
  2293. name: "Diving",
  2294. image: {
  2295. source: "./media/characters/fen/diving.svg"
  2296. }
  2297. },
  2298. sleeby: {
  2299. height: math.unit(3.45, "meters"),
  2300. weight: math.unit(2400, "lb"),
  2301. name: "Sleeby",
  2302. image: {
  2303. source: "./media/characters/fen/sleeby.svg"
  2304. }
  2305. },
  2306. goo: {
  2307. height: math.unit(12, "feet"),
  2308. weight: math.unit(3600, "lb"),
  2309. volume: math.unit(1000, "liters"),
  2310. preyCapacity: math.unit(6, "people"),
  2311. name: "Goo",
  2312. image: {
  2313. source: "./media/characters/fen/goo.svg",
  2314. extra: 1307/1071,
  2315. bottom: 134/1441
  2316. }
  2317. },
  2318. horror: {
  2319. height: math.unit(13.6, "feet"),
  2320. weight: math.unit(2400, "lb"),
  2321. preyCapacity: math.unit(1, "people"),
  2322. name: "Horror",
  2323. image: {
  2324. source: "./media/characters/fen/horror.svg",
  2325. extra: 893/797,
  2326. bottom: 0/893
  2327. }
  2328. },
  2329. gooNsfw: {
  2330. height: math.unit(12, "feet"),
  2331. weight: math.unit(3750, "lb"),
  2332. volume: math.unit(1000, "liters"),
  2333. preyCapacity: math.unit(6, "people"),
  2334. name: "Goo (NSFW)",
  2335. image: {
  2336. source: "./media/characters/fen/goo-nsfw.svg",
  2337. extra: 1875/1734,
  2338. bottom: 122/1997
  2339. }
  2340. },
  2341. maw: {
  2342. height: math.unit(5.03, "feet"),
  2343. name: "Maw",
  2344. image: {
  2345. source: "./media/characters/fen/maw.svg"
  2346. }
  2347. },
  2348. gooCeiling: {
  2349. height: math.unit(6.6, "feet"),
  2350. weight: math.unit(3000, "lb"),
  2351. volume: math.unit(1000, "liters"),
  2352. preyCapacity: math.unit(6, "people"),
  2353. name: "Maw (Goo)",
  2354. image: {
  2355. source: "./media/characters/fen/goo-maw.svg"
  2356. }
  2357. },
  2358. paw: {
  2359. height: math.unit(3.77, "feet"),
  2360. name: "Paw",
  2361. image: {
  2362. source: "./media/characters/fen/paw.svg"
  2363. },
  2364. extraAttributes: {
  2365. "toeSize": {
  2366. name: "Toe Size",
  2367. power: 2,
  2368. type: "area",
  2369. base: math.unit(0.02875, "m^2")
  2370. },
  2371. "pawSize": {
  2372. name: "Paw Size",
  2373. power: 2,
  2374. type: "area",
  2375. base: math.unit(0.378, "m^2")
  2376. },
  2377. }
  2378. },
  2379. tail: {
  2380. height: math.unit(12.1, "feet"),
  2381. name: "Tail",
  2382. image: {
  2383. source: "./media/characters/fen/tail.svg"
  2384. }
  2385. },
  2386. tailFull: {
  2387. height: math.unit(12.1, "feet"),
  2388. name: "Full Tail",
  2389. image: {
  2390. source: "./media/characters/fen/tail-full.svg"
  2391. }
  2392. },
  2393. back: {
  2394. height: math.unit(12, "feet"),
  2395. weight: math.unit(2400, "lb"),
  2396. name: "Back",
  2397. image: {
  2398. source: "./media/characters/fen/back.svg",
  2399. },
  2400. info: {
  2401. description: {
  2402. mode: "append",
  2403. text: "\n\nHe is not currently looking at you."
  2404. }
  2405. }
  2406. },
  2407. full: {
  2408. height: math.unit(1.85, "meter"),
  2409. weight: math.unit(3200, "lb"),
  2410. name: "Full",
  2411. image: {
  2412. source: "./media/characters/fen/full.svg",
  2413. extra: 1133/859,
  2414. bottom: 145/1278
  2415. },
  2416. info: {
  2417. description: {
  2418. mode: "append",
  2419. text: "\n\nMunch."
  2420. }
  2421. }
  2422. },
  2423. gooLounging: {
  2424. height: math.unit(4.53, "feet"),
  2425. weight: math.unit(3000, "lb"),
  2426. preyCapacity: math.unit(6, "people"),
  2427. name: "Goo (Lounging)",
  2428. image: {
  2429. source: "./media/characters/fen/goo-lounging.svg",
  2430. bottom: 116 / 613
  2431. }
  2432. },
  2433. lounging: {
  2434. height: math.unit(10.52, "feet"),
  2435. weight: math.unit(2400, "lb"),
  2436. name: "Lounging",
  2437. image: {
  2438. source: "./media/characters/fen/lounging.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Small",
  2445. height: math.unit(2.2428, "meter")
  2446. },
  2447. {
  2448. name: "Normal",
  2449. height: math.unit(12, "feet"),
  2450. default: true,
  2451. },
  2452. {
  2453. name: "Big",
  2454. height: math.unit(20, "feet")
  2455. },
  2456. {
  2457. name: "Minimacro",
  2458. height: math.unit(40, "feet"),
  2459. info: {
  2460. description: {
  2461. mode: "append",
  2462. text: "\n\nTOO DAMN BIG"
  2463. }
  2464. }
  2465. },
  2466. {
  2467. name: "Macro",
  2468. height: math.unit(100, "feet"),
  2469. info: {
  2470. description: {
  2471. mode: "append",
  2472. text: "\n\nTOO DAMN BIG"
  2473. }
  2474. }
  2475. },
  2476. {
  2477. name: "Megamacro",
  2478. height: math.unit(2, "miles")
  2479. },
  2480. {
  2481. name: "Gigamacro",
  2482. height: math.unit(10, "earths")
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(183, "cm"),
  2491. weight: math.unit(80, "kg"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/sofia-fluttertail/front.svg",
  2495. bottom: 0.01,
  2496. extra: 2154 / 2081
  2497. }
  2498. },
  2499. frontAlt: {
  2500. height: math.unit(183, "cm"),
  2501. weight: math.unit(80, "kg"),
  2502. name: "Front (alt)",
  2503. image: {
  2504. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2505. }
  2506. },
  2507. back: {
  2508. height: math.unit(183, "cm"),
  2509. weight: math.unit(80, "kg"),
  2510. name: "Back",
  2511. image: {
  2512. source: "./media/characters/sofia-fluttertail/back.svg"
  2513. }
  2514. },
  2515. kneeling: {
  2516. height: math.unit(125, "cm"),
  2517. weight: math.unit(80, "kg"),
  2518. name: "Kneeling",
  2519. image: {
  2520. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2521. extra: 1033 / 977,
  2522. bottom: 23.7 / 1057
  2523. }
  2524. },
  2525. maw: {
  2526. height: math.unit(183 / 5, "cm"),
  2527. name: "Maw",
  2528. image: {
  2529. source: "./media/characters/sofia-fluttertail/maw.svg"
  2530. }
  2531. },
  2532. mawcloseup: {
  2533. height: math.unit(183 / 5 * 0.41, "cm"),
  2534. name: "Maw (Closeup)",
  2535. image: {
  2536. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2537. }
  2538. },
  2539. paws: {
  2540. height: math.unit(1.17, "feet"),
  2541. name: "Paws",
  2542. image: {
  2543. source: "./media/characters/sofia-fluttertail/paws.svg",
  2544. extra: 851 / 851,
  2545. bottom: 17 / 868
  2546. }
  2547. },
  2548. },
  2549. [
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(1.83, "meter")
  2553. },
  2554. {
  2555. name: "Size Thief",
  2556. height: math.unit(18, "feet")
  2557. },
  2558. {
  2559. name: "50 Foot Collie",
  2560. height: math.unit(50, "feet")
  2561. },
  2562. {
  2563. name: "Macro",
  2564. height: math.unit(96, "feet"),
  2565. default: true
  2566. },
  2567. {
  2568. name: "Megamerger",
  2569. height: math.unit(650, "feet")
  2570. },
  2571. ]
  2572. ))
  2573. characterMakers.push(() => makeCharacter(
  2574. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2575. {
  2576. front: {
  2577. height: math.unit(7, "feet"),
  2578. weight: math.unit(100, "kg"),
  2579. name: "Front",
  2580. image: {
  2581. source: "./media/characters/march/front.svg",
  2582. extra: 1992/1851,
  2583. bottom: 39/2031
  2584. }
  2585. },
  2586. foot: {
  2587. height: math.unit(0.9, "feet"),
  2588. name: "Foot",
  2589. image: {
  2590. source: "./media/characters/march/foot.svg"
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Normal",
  2597. height: math.unit(7.9, "feet")
  2598. },
  2599. {
  2600. name: "Macro",
  2601. height: math.unit(220, "meters")
  2602. },
  2603. {
  2604. name: "Megamacro",
  2605. height: math.unit(2.98, "km"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Gigamacro",
  2610. height: math.unit(15963, "km")
  2611. },
  2612. {
  2613. name: "Teramacro",
  2614. height: math.unit(2980000000, "km")
  2615. },
  2616. {
  2617. name: "Examacro",
  2618. height: math.unit(250, "parsecs")
  2619. },
  2620. ]
  2621. ))
  2622. characterMakers.push(() => makeCharacter(
  2623. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2624. {
  2625. front: {
  2626. height: math.unit(6, "feet"),
  2627. weight: math.unit(60, "kg"),
  2628. name: "Front",
  2629. image: {
  2630. source: "./media/characters/noir/front.svg",
  2631. extra: 1,
  2632. bottom: 0.032
  2633. }
  2634. },
  2635. },
  2636. [
  2637. {
  2638. name: "Normal",
  2639. height: math.unit(6.6, "feet")
  2640. },
  2641. {
  2642. name: "Macro",
  2643. height: math.unit(500, "feet")
  2644. },
  2645. {
  2646. name: "Megamacro",
  2647. height: math.unit(2.5, "km"),
  2648. default: true
  2649. },
  2650. {
  2651. name: "Gigamacro",
  2652. height: math.unit(22500, "km")
  2653. },
  2654. {
  2655. name: "Teramacro",
  2656. height: math.unit(2500000000, "km")
  2657. },
  2658. {
  2659. name: "Examacro",
  2660. height: math.unit(200, "parsecs")
  2661. },
  2662. ]
  2663. ))
  2664. characterMakers.push(() => makeCharacter(
  2665. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2666. {
  2667. front: {
  2668. height: math.unit(7, "feet"),
  2669. weight: math.unit(100, "kg"),
  2670. name: "Front",
  2671. image: {
  2672. source: "./media/characters/okuri/front.svg",
  2673. extra: 739/665,
  2674. bottom: 39/778
  2675. }
  2676. },
  2677. back: {
  2678. height: math.unit(7, "feet"),
  2679. weight: math.unit(100, "kg"),
  2680. name: "Back",
  2681. image: {
  2682. source: "./media/characters/okuri/back.svg",
  2683. extra: 734/653,
  2684. bottom: 13/747
  2685. }
  2686. },
  2687. sitting: {
  2688. height: math.unit(2.95, "feet"),
  2689. weight: math.unit(100, "kg"),
  2690. name: "Sitting",
  2691. image: {
  2692. source: "./media/characters/okuri/sitting.svg",
  2693. extra: 370/318,
  2694. bottom: 99/469
  2695. }
  2696. },
  2697. },
  2698. [
  2699. {
  2700. name: "Smallest",
  2701. height: math.unit(5 + 2/12, "feet")
  2702. },
  2703. {
  2704. name: "Smaller",
  2705. height: math.unit(300, "feet")
  2706. },
  2707. {
  2708. name: "Small",
  2709. height: math.unit(1000, "feet")
  2710. },
  2711. {
  2712. name: "Macro",
  2713. height: math.unit(1, "mile")
  2714. },
  2715. {
  2716. name: "Mega Macro (Small)",
  2717. height: math.unit(20, "km")
  2718. },
  2719. {
  2720. name: "Mega Macro (Large)",
  2721. height: math.unit(600, "km")
  2722. },
  2723. {
  2724. name: "Giga Macro",
  2725. height: math.unit(10000, "km")
  2726. },
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(577560, "km"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Large",
  2734. height: math.unit(4, "galaxies")
  2735. },
  2736. {
  2737. name: "Largest",
  2738. height: math.unit(15, "multiverses")
  2739. },
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2744. {
  2745. front: {
  2746. height: math.unit(7, "feet"),
  2747. weight: math.unit(100, "kg"),
  2748. name: "Front",
  2749. image: {
  2750. source: "./media/characters/manny/front.svg",
  2751. extra: 1,
  2752. bottom: 0.06
  2753. }
  2754. },
  2755. back: {
  2756. height: math.unit(7, "feet"),
  2757. weight: math.unit(100, "kg"),
  2758. name: "Back",
  2759. image: {
  2760. source: "./media/characters/manny/back.svg",
  2761. extra: 1,
  2762. bottom: 0.014
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(7, "feet"),
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(78, "feet"),
  2774. default: true
  2775. },
  2776. {
  2777. name: "Macro+",
  2778. height: math.unit(300, "meters")
  2779. },
  2780. {
  2781. name: "Macro++",
  2782. height: math.unit(2400, "meters")
  2783. },
  2784. {
  2785. name: "Megamacro",
  2786. height: math.unit(5167, "meters")
  2787. },
  2788. {
  2789. name: "Gigamacro",
  2790. height: math.unit(41769, "miles")
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(7, "feet"),
  2799. weight: math.unit(100, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/adake/front-1.svg"
  2803. }
  2804. },
  2805. frontAlt: {
  2806. height: math.unit(7, "feet"),
  2807. weight: math.unit(100, "kg"),
  2808. name: "Front (Alt)",
  2809. image: {
  2810. source: "./media/characters/adake/front-2.svg",
  2811. extra: 1,
  2812. bottom: 0.01
  2813. }
  2814. },
  2815. back: {
  2816. height: math.unit(7, "feet"),
  2817. weight: math.unit(100, "kg"),
  2818. name: "Back",
  2819. image: {
  2820. source: "./media/characters/adake/back.svg",
  2821. }
  2822. },
  2823. kneel: {
  2824. height: math.unit(5.385, "feet"),
  2825. weight: math.unit(100, "kg"),
  2826. name: "Kneeling",
  2827. image: {
  2828. source: "./media/characters/adake/kneel.svg",
  2829. bottom: 0.052
  2830. }
  2831. },
  2832. },
  2833. [
  2834. {
  2835. name: "Normal",
  2836. height: math.unit(7, "feet"),
  2837. },
  2838. {
  2839. name: "Macro",
  2840. height: math.unit(78, "feet"),
  2841. default: true
  2842. },
  2843. {
  2844. name: "Macro+",
  2845. height: math.unit(300, "meters")
  2846. },
  2847. {
  2848. name: "Macro++",
  2849. height: math.unit(2400, "meters")
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(5167, "meters")
  2854. },
  2855. {
  2856. name: "Gigamacro",
  2857. height: math.unit(41769, "miles")
  2858. },
  2859. ]
  2860. ))
  2861. characterMakers.push(() => makeCharacter(
  2862. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2863. {
  2864. front: {
  2865. height: math.unit(1.65, "meters"),
  2866. weight: math.unit(50, "kg"),
  2867. name: "Front",
  2868. image: {
  2869. source: "./media/characters/elijah/front.svg",
  2870. extra: 858 / 830,
  2871. bottom: 95.5 / 953.8559
  2872. }
  2873. },
  2874. back: {
  2875. height: math.unit(1.65, "meters"),
  2876. weight: math.unit(50, "kg"),
  2877. name: "Back",
  2878. image: {
  2879. source: "./media/characters/elijah/back.svg",
  2880. extra: 895 / 850,
  2881. bottom: 5.3 / 897.956
  2882. }
  2883. },
  2884. frontNsfw: {
  2885. height: math.unit(1.65, "meters"),
  2886. weight: math.unit(50, "kg"),
  2887. name: "Front (NSFW)",
  2888. image: {
  2889. source: "./media/characters/elijah/front-nsfw.svg",
  2890. extra: 858 / 830,
  2891. bottom: 95.5 / 953.8559
  2892. }
  2893. },
  2894. backNsfw: {
  2895. height: math.unit(1.65, "meters"),
  2896. weight: math.unit(50, "kg"),
  2897. name: "Back (NSFW)",
  2898. image: {
  2899. source: "./media/characters/elijah/back-nsfw.svg",
  2900. extra: 895 / 850,
  2901. bottom: 5.3 / 897.956
  2902. }
  2903. },
  2904. dick: {
  2905. height: math.unit(1, "feet"),
  2906. name: "Dick",
  2907. image: {
  2908. source: "./media/characters/elijah/dick.svg"
  2909. }
  2910. },
  2911. beakOpen: {
  2912. height: math.unit(1.25, "feet"),
  2913. name: "Beak (Open)",
  2914. image: {
  2915. source: "./media/characters/elijah/beak-open.svg"
  2916. }
  2917. },
  2918. beakShut: {
  2919. height: math.unit(1.25, "feet"),
  2920. name: "Beak (Shut)",
  2921. image: {
  2922. source: "./media/characters/elijah/beak-shut.svg"
  2923. }
  2924. },
  2925. footFlexing: {
  2926. height: math.unit(1.61, "feet"),
  2927. name: "Foot (Flexing)",
  2928. image: {
  2929. source: "./media/characters/elijah/foot-flexing.svg"
  2930. }
  2931. },
  2932. footStepping: {
  2933. height: math.unit(1.44, "feet"),
  2934. name: "Foot (Stepping)",
  2935. image: {
  2936. source: "./media/characters/elijah/foot-stepping.svg"
  2937. }
  2938. },
  2939. plantigradeLeg: {
  2940. height: math.unit(2.34, "feet"),
  2941. name: "Plantigrade Leg",
  2942. image: {
  2943. source: "./media/characters/elijah/plantigrade-leg.svg"
  2944. }
  2945. },
  2946. plantigradeFootLeft: {
  2947. height: math.unit(0.9, "feet"),
  2948. name: "Plantigrade Foot (Left)",
  2949. image: {
  2950. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2951. }
  2952. },
  2953. plantigradeFootRight: {
  2954. height: math.unit(0.9, "feet"),
  2955. name: "Plantigrade Foot (Right)",
  2956. image: {
  2957. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2958. }
  2959. },
  2960. },
  2961. [
  2962. {
  2963. name: "Normal",
  2964. height: math.unit(1.65, "meters")
  2965. },
  2966. {
  2967. name: "Macro",
  2968. height: math.unit(55, "meters"),
  2969. default: true
  2970. },
  2971. {
  2972. name: "Macro+",
  2973. height: math.unit(105, "meters")
  2974. },
  2975. ]
  2976. ))
  2977. characterMakers.push(() => makeCharacter(
  2978. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2979. {
  2980. front: {
  2981. height: math.unit(7 + 2/12, "feet"),
  2982. weight: math.unit(320, "kg"),
  2983. preyCapacity: math.unit(0.276549935, "people"),
  2984. name: "Front",
  2985. image: {
  2986. source: "./media/characters/rai/front.svg",
  2987. extra: 1802/1696,
  2988. bottom: 68/1870
  2989. },
  2990. form: "anthro",
  2991. default: true
  2992. },
  2993. frontDressed: {
  2994. height: math.unit(7 + 2/12, "feet"),
  2995. weight: math.unit(320, "kg"),
  2996. preyCapacity: math.unit(0.276549935, "people"),
  2997. name: "Front (Dressed)",
  2998. image: {
  2999. source: "./media/characters/rai/front-dressed.svg",
  3000. extra: 1802/1696,
  3001. bottom: 68/1870
  3002. },
  3003. form: "anthro"
  3004. },
  3005. side: {
  3006. height: math.unit(7 + 2/12, "feet"),
  3007. weight: math.unit(320, "kg"),
  3008. preyCapacity: math.unit(0.276549935, "people"),
  3009. name: "Side",
  3010. image: {
  3011. source: "./media/characters/rai/side.svg",
  3012. extra: 1789/1710,
  3013. bottom: 115/1904
  3014. },
  3015. form: "anthro"
  3016. },
  3017. back: {
  3018. height: math.unit(7 + 2/12, "feet"),
  3019. weight: math.unit(320, "kg"),
  3020. preyCapacity: math.unit(0.276549935, "people"),
  3021. name: "Back",
  3022. image: {
  3023. source: "./media/characters/rai/back.svg",
  3024. extra: 1770/1707,
  3025. bottom: 28/1798
  3026. },
  3027. form: "anthro"
  3028. },
  3029. feral: {
  3030. height: math.unit(9.5, "feet"),
  3031. weight: math.unit(640, "kg"),
  3032. preyCapacity: math.unit(4, "people"),
  3033. name: "Feral",
  3034. image: {
  3035. source: "./media/characters/rai/feral.svg",
  3036. extra: 945/553,
  3037. bottom: 176/1121
  3038. },
  3039. form: "feral",
  3040. default: true
  3041. },
  3042. dragon: {
  3043. height: math.unit(23, "feet"),
  3044. weight: math.unit(50000, "lb"),
  3045. name: "Dragon",
  3046. image: {
  3047. source: "./media/characters/rai/dragon.svg",
  3048. extra: 2498 / 2030,
  3049. bottom: 85.2 / 2584
  3050. },
  3051. form: "dragon",
  3052. default: true
  3053. },
  3054. maw: {
  3055. height: math.unit(1.69, "feet"),
  3056. name: "Maw",
  3057. image: {
  3058. source: "./media/characters/rai/maw.svg"
  3059. },
  3060. form: "anthro"
  3061. },
  3062. },
  3063. [
  3064. {
  3065. name: "Normal",
  3066. height: math.unit(7 + 2/12, "feet"),
  3067. form: "anthro"
  3068. },
  3069. {
  3070. name: "Big",
  3071. height: math.unit(11, "feet"),
  3072. form: "anthro"
  3073. },
  3074. {
  3075. name: "Minimacro",
  3076. height: math.unit(77, "feet"),
  3077. form: "anthro"
  3078. },
  3079. {
  3080. name: "Macro",
  3081. height: math.unit(302, "feet"),
  3082. default: true,
  3083. form: "anthro"
  3084. },
  3085. {
  3086. name: "Normal",
  3087. height: math.unit(9.5, "feet"),
  3088. form: "feral",
  3089. default: true
  3090. },
  3091. {
  3092. name: "Normal",
  3093. height: math.unit(23, "feet"),
  3094. form: "dragon",
  3095. default: true
  3096. }
  3097. ],
  3098. {
  3099. "anthro": {
  3100. name: "Anthro",
  3101. default: true
  3102. },
  3103. "feral": {
  3104. name: "Feral",
  3105. },
  3106. "dragon": {
  3107. name: "Dragon",
  3108. },
  3109. }
  3110. ))
  3111. characterMakers.push(() => makeCharacter(
  3112. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3113. {
  3114. frontDressed: {
  3115. height: math.unit(216, "feet"),
  3116. weight: math.unit(7000000, "lb"),
  3117. preyCapacity: math.unit(1321, "people"),
  3118. name: "Front (Dressed)",
  3119. image: {
  3120. source: "./media/characters/jazzy/front-dressed.svg",
  3121. extra: 2738 / 2651,
  3122. bottom: 41.8 / 2786
  3123. }
  3124. },
  3125. backDressed: {
  3126. height: math.unit(216, "feet"),
  3127. weight: math.unit(7000000, "lb"),
  3128. preyCapacity: math.unit(1321, "people"),
  3129. name: "Back (Dressed)",
  3130. image: {
  3131. source: "./media/characters/jazzy/back-dressed.svg",
  3132. extra: 2775 / 2673,
  3133. bottom: 36.8 / 2817
  3134. }
  3135. },
  3136. front: {
  3137. height: math.unit(216, "feet"),
  3138. weight: math.unit(7000000, "lb"),
  3139. preyCapacity: math.unit(1321, "people"),
  3140. name: "Front",
  3141. image: {
  3142. source: "./media/characters/jazzy/front.svg",
  3143. extra: 2738 / 2651,
  3144. bottom: 41.8 / 2786
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(216, "feet"),
  3149. weight: math.unit(7000000, "lb"),
  3150. preyCapacity: math.unit(1321, "people"),
  3151. name: "Back",
  3152. image: {
  3153. source: "./media/characters/jazzy/back.svg",
  3154. extra: 2775 / 2673,
  3155. bottom: 36.8 / 2817
  3156. }
  3157. },
  3158. maw: {
  3159. height: math.unit(20, "feet"),
  3160. name: "Maw",
  3161. image: {
  3162. source: "./media/characters/jazzy/maw.svg"
  3163. }
  3164. },
  3165. paws: {
  3166. height: math.unit(27.5, "feet"),
  3167. name: "Paws",
  3168. image: {
  3169. source: "./media/characters/jazzy/paws.svg"
  3170. }
  3171. },
  3172. eye: {
  3173. height: math.unit(4.4, "feet"),
  3174. name: "Eye",
  3175. image: {
  3176. source: "./media/characters/jazzy/eye.svg"
  3177. }
  3178. },
  3179. droneOffense: {
  3180. height: math.unit(9.5, "inches"),
  3181. name: "Drone (Offense)",
  3182. image: {
  3183. source: "./media/characters/jazzy/drone-offense.svg"
  3184. }
  3185. },
  3186. droneRecon: {
  3187. height: math.unit(9.5, "inches"),
  3188. name: "Drone (Recon)",
  3189. image: {
  3190. source: "./media/characters/jazzy/drone-recon.svg"
  3191. }
  3192. },
  3193. droneDefense: {
  3194. height: math.unit(9.5, "inches"),
  3195. name: "Drone (Defense)",
  3196. image: {
  3197. source: "./media/characters/jazzy/drone-defense.svg"
  3198. }
  3199. },
  3200. },
  3201. [
  3202. {
  3203. name: "Macro",
  3204. height: math.unit(216, "feet"),
  3205. default: true
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(9 + 6/12, "feet"),
  3214. weight: math.unit(700, "lb"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/flamm/front.svg",
  3218. extra: 1736/1596,
  3219. bottom: 93/1829
  3220. }
  3221. },
  3222. buff: {
  3223. height: math.unit(9 + 6/12, "feet"),
  3224. weight: math.unit(950, "lb"),
  3225. name: "Buff",
  3226. image: {
  3227. source: "./media/characters/flamm/buff.svg",
  3228. extra: 3018/2874,
  3229. bottom: 221/3239
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(9.5, "feet")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(200, "feet"),
  3241. default: true
  3242. },
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(5 + 3/12, "feet"),
  3250. weight: math.unit(60, "kg"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/zephiro/front.svg",
  3254. extra: 1873/1761,
  3255. bottom: 147/2020
  3256. }
  3257. },
  3258. side: {
  3259. height: math.unit(5 + 3/12, "feet"),
  3260. weight: math.unit(60, "kg"),
  3261. name: "Side",
  3262. image: {
  3263. source: "./media/characters/zephiro/side.svg",
  3264. extra: 1929/1827,
  3265. bottom: 65/1994
  3266. }
  3267. },
  3268. back: {
  3269. height: math.unit(5 + 3/12, "feet"),
  3270. weight: math.unit(60, "kg"),
  3271. name: "Back",
  3272. image: {
  3273. source: "./media/characters/zephiro/back.svg",
  3274. extra: 1926/1816,
  3275. bottom: 41/1967
  3276. }
  3277. },
  3278. hand: {
  3279. height: math.unit(0.68, "feet"),
  3280. name: "Hand",
  3281. image: {
  3282. source: "./media/characters/zephiro/hand.svg"
  3283. }
  3284. },
  3285. paw: {
  3286. height: math.unit(1, "feet"),
  3287. name: "Paw",
  3288. image: {
  3289. source: "./media/characters/zephiro/paw.svg"
  3290. }
  3291. },
  3292. beans: {
  3293. height: math.unit(0.93, "feet"),
  3294. name: "Beans",
  3295. image: {
  3296. source: "./media/characters/zephiro/beans.svg"
  3297. }
  3298. },
  3299. },
  3300. [
  3301. {
  3302. name: "Micro",
  3303. height: math.unit(3, "inches")
  3304. },
  3305. {
  3306. name: "Normal",
  3307. height: math.unit(5 + 3 / 12, "feet"),
  3308. default: true
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(118, "feet")
  3313. },
  3314. ]
  3315. ))
  3316. characterMakers.push(() => makeCharacter(
  3317. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3318. {
  3319. front: {
  3320. height: math.unit(5, "feet"),
  3321. weight: math.unit(90, "kg"),
  3322. preyCapacity: math.unit(14, "people"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/fory/front.svg",
  3326. extra: 2862 / 2674,
  3327. bottom: 180 / 3043.8
  3328. },
  3329. form: "weaselbun",
  3330. default: true,
  3331. extraAttributes: {
  3332. "pawSize": {
  3333. name: "Paw Size",
  3334. power: 2,
  3335. type: "area",
  3336. base: math.unit(0.1596, "m^2")
  3337. },
  3338. "pawLength": {
  3339. name: "Paw Length",
  3340. power: 1,
  3341. type: "length",
  3342. base: math.unit(0.7, "m")
  3343. }
  3344. }
  3345. },
  3346. back: {
  3347. height: math.unit(5, "feet"),
  3348. weight: math.unit(90, "kg"),
  3349. preyCapacity: math.unit(14, "people"),
  3350. name: "Back",
  3351. image: {
  3352. source: "./media/characters/fory/back.svg",
  3353. extra: 1790/1672,
  3354. bottom: 84/1874
  3355. },
  3356. form: "weaselbun",
  3357. extraAttributes: {
  3358. "pawSize": {
  3359. name: "Paw Size",
  3360. power: 2,
  3361. type: "area",
  3362. base: math.unit(0.1596, "m^2")
  3363. },
  3364. "pawLength": {
  3365. name: "Paw Length",
  3366. power: 1,
  3367. type: "length",
  3368. base: math.unit(0.7, "m")
  3369. }
  3370. }
  3371. },
  3372. paw: {
  3373. height: math.unit(2.14, "feet"),
  3374. name: "Paw",
  3375. image: {
  3376. source: "./media/characters/fory/paw.svg"
  3377. },
  3378. form: "weaselbun",
  3379. extraAttributes: {
  3380. "pawSize": {
  3381. name: "Paw Size",
  3382. power: 2,
  3383. type: "area",
  3384. base: math.unit(0.1596, "m^2")
  3385. },
  3386. "pawLength": {
  3387. name: "Paw Length",
  3388. power: 1,
  3389. type: "length",
  3390. base: math.unit(0.48, "m")
  3391. }
  3392. }
  3393. },
  3394. bunBack: {
  3395. height: math.unit(3, "feet"),
  3396. weight: math.unit(20, "kg"),
  3397. preyCapacity: math.unit(3, "people"),
  3398. name: "Back",
  3399. image: {
  3400. source: "./media/characters/fory/bun-back.svg",
  3401. extra: 1749/1564,
  3402. bottom: 246/1995
  3403. },
  3404. form: "bun",
  3405. default: true,
  3406. extraAttributes: {
  3407. "pawSize": {
  3408. name: "Paw Size",
  3409. power: 2,
  3410. type: "area",
  3411. base: math.unit(0.072, "m^2")
  3412. },
  3413. "pawLength": {
  3414. name: "Paw Length",
  3415. power: 1,
  3416. type: "length",
  3417. base: math.unit(0.45, "m")
  3418. }
  3419. }
  3420. },
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(5, "feet"),
  3426. form: "weaselbun"
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(50, "feet"),
  3431. default: true,
  3432. form: "weaselbun"
  3433. },
  3434. {
  3435. name: "Megamacro",
  3436. height: math.unit(10, "miles"),
  3437. form: "weaselbun"
  3438. },
  3439. {
  3440. name: "Gigamacro",
  3441. height: math.unit(5, "earths"),
  3442. form: "weaselbun"
  3443. },
  3444. {
  3445. name: "Normal",
  3446. height: math.unit(3, "feet"),
  3447. default: true,
  3448. form: "bun"
  3449. },
  3450. {
  3451. name: "Fun-Size",
  3452. height: math.unit(12, "feet"),
  3453. form: "bun"
  3454. },
  3455. {
  3456. name: "Macro",
  3457. height: math.unit(100, "feet"),
  3458. form: "bun"
  3459. },
  3460. {
  3461. name: "Planetary",
  3462. height: math.unit(3, "earths"),
  3463. form: "bun"
  3464. },
  3465. ],
  3466. {
  3467. "weaselbun": {
  3468. name: "Weaselbun",
  3469. default: true
  3470. },
  3471. "bun": {
  3472. name: "Bun",
  3473. },
  3474. }
  3475. ))
  3476. characterMakers.push(() => makeCharacter(
  3477. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3478. {
  3479. front: {
  3480. height: math.unit(7, "feet"),
  3481. weight: math.unit(90, "kg"),
  3482. name: "Front",
  3483. image: {
  3484. source: "./media/characters/kurrikage/front.svg",
  3485. extra: 1845/1733,
  3486. bottom: 119/1964
  3487. }
  3488. },
  3489. back: {
  3490. height: math.unit(7, "feet"),
  3491. weight: math.unit(90, "kg"),
  3492. name: "Back",
  3493. image: {
  3494. source: "./media/characters/kurrikage/back.svg",
  3495. extra: 1790/1677,
  3496. bottom: 61/1851
  3497. }
  3498. },
  3499. dressed: {
  3500. height: math.unit(7, "feet"),
  3501. weight: math.unit(90, "kg"),
  3502. name: "Dressed",
  3503. image: {
  3504. source: "./media/characters/kurrikage/dressed.svg",
  3505. extra: 1845/1733,
  3506. bottom: 119/1964
  3507. }
  3508. },
  3509. foot: {
  3510. height: math.unit(1.5, "feet"),
  3511. name: "Foot",
  3512. image: {
  3513. source: "./media/characters/kurrikage/foot.svg"
  3514. }
  3515. },
  3516. staff: {
  3517. height: math.unit(6.7, "feet"),
  3518. name: "Staff",
  3519. image: {
  3520. source: "./media/characters/kurrikage/staff.svg"
  3521. }
  3522. },
  3523. peek: {
  3524. height: math.unit(1.05, "feet"),
  3525. name: "Peeking",
  3526. image: {
  3527. source: "./media/characters/kurrikage/peek.svg",
  3528. bottom: 0.08
  3529. }
  3530. },
  3531. },
  3532. [
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(12, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Big",
  3540. height: math.unit(20, "feet")
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(500, "feet")
  3545. },
  3546. {
  3547. name: "Megamacro",
  3548. height: math.unit(20, "miles")
  3549. },
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(6, "feet"),
  3557. weight: math.unit(75, "kg"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/shingo/front.svg",
  3561. extra: 1900/1825,
  3562. bottom: 82/1982
  3563. }
  3564. },
  3565. side: {
  3566. height: math.unit(6, "feet"),
  3567. weight: math.unit(75, "kg"),
  3568. name: "Side",
  3569. image: {
  3570. source: "./media/characters/shingo/side.svg",
  3571. extra: 1930/1865,
  3572. bottom: 16/1946
  3573. }
  3574. },
  3575. back: {
  3576. height: math.unit(6, "feet"),
  3577. weight: math.unit(75, "kg"),
  3578. name: "Back",
  3579. image: {
  3580. source: "./media/characters/shingo/back.svg",
  3581. extra: 1922/1852,
  3582. bottom: 16/1938
  3583. }
  3584. },
  3585. frontDressed: {
  3586. height: math.unit(6, "feet"),
  3587. weight: math.unit(150, "lb"),
  3588. name: "Front-dressed",
  3589. image: {
  3590. source: "./media/characters/shingo/front-dressed.svg",
  3591. extra: 1900/1825,
  3592. bottom: 82/1982
  3593. }
  3594. },
  3595. paw: {
  3596. height: math.unit(1.29, "feet"),
  3597. name: "Paw",
  3598. image: {
  3599. source: "./media/characters/shingo/paw.svg"
  3600. }
  3601. },
  3602. hand: {
  3603. height: math.unit(1.07, "feet"),
  3604. name: "Hand",
  3605. image: {
  3606. source: "./media/characters/shingo/hand.svg"
  3607. }
  3608. },
  3609. frontAlt: {
  3610. height: math.unit(6, "feet"),
  3611. weight: math.unit(75, "kg"),
  3612. name: "Front (Alt)",
  3613. image: {
  3614. source: "./media/characters/shingo/front-alt.svg",
  3615. extra: 3511 / 3338,
  3616. bottom: 0.005
  3617. }
  3618. },
  3619. frontAlt2: {
  3620. height: math.unit(6, "feet"),
  3621. weight: math.unit(75, "kg"),
  3622. name: "Front (Alt 2)",
  3623. image: {
  3624. source: "./media/characters/shingo/front-alt-2.svg",
  3625. extra: 706/681,
  3626. bottom: 11/717
  3627. }
  3628. },
  3629. pawAlt: {
  3630. height: math.unit(1, "feet"),
  3631. name: "Paw (Alt)",
  3632. image: {
  3633. source: "./media/characters/shingo/paw-alt.svg"
  3634. }
  3635. },
  3636. },
  3637. [
  3638. {
  3639. name: "Micro",
  3640. height: math.unit(4, "inches")
  3641. },
  3642. {
  3643. name: "Normal",
  3644. height: math.unit(6, "feet"),
  3645. default: true
  3646. },
  3647. {
  3648. name: "Macro",
  3649. height: math.unit(108, "feet")
  3650. },
  3651. {
  3652. name: "Macro+",
  3653. height: math.unit(1500, "feet")
  3654. },
  3655. ]
  3656. ))
  3657. characterMakers.push(() => makeCharacter(
  3658. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3659. {
  3660. side: {
  3661. height: math.unit(6, "feet"),
  3662. weight: math.unit(75, "kg"),
  3663. name: "Side",
  3664. image: {
  3665. source: "./media/characters/aigey/side.svg"
  3666. }
  3667. },
  3668. },
  3669. [
  3670. {
  3671. name: "Macro",
  3672. height: math.unit(200, "feet"),
  3673. default: true
  3674. },
  3675. {
  3676. name: "Megamacro",
  3677. height: math.unit(100, "miles")
  3678. },
  3679. ]
  3680. )
  3681. )
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(5 + 5 / 12, "feet"),
  3687. weight: math.unit(75, "kg"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/natasha/front.svg",
  3691. extra: 859 / 824,
  3692. bottom: 23 / 879.6
  3693. }
  3694. },
  3695. frontNsfw: {
  3696. height: math.unit(5 + 5 / 12, "feet"),
  3697. weight: math.unit(75, "kg"),
  3698. name: "Front (NSFW)",
  3699. image: {
  3700. source: "./media/characters/natasha/front-nsfw.svg",
  3701. extra: 859 / 824,
  3702. bottom: 23 / 879.6
  3703. }
  3704. },
  3705. frontErect: {
  3706. height: math.unit(5 + 5 / 12, "feet"),
  3707. weight: math.unit(75, "kg"),
  3708. name: "Front (Erect)",
  3709. image: {
  3710. source: "./media/characters/natasha/front-erect.svg",
  3711. extra: 859 / 824,
  3712. bottom: 23 / 879.6
  3713. }
  3714. },
  3715. back: {
  3716. height: math.unit(5 + 5 / 12, "feet"),
  3717. weight: math.unit(75, "kg"),
  3718. name: "Back",
  3719. image: {
  3720. source: "./media/characters/natasha/back.svg",
  3721. extra: 887.9 / 852.6,
  3722. bottom: 9.7 / 896.4
  3723. }
  3724. },
  3725. backAlt: {
  3726. height: math.unit(5 + 5 / 12, "feet"),
  3727. weight: math.unit(75, "kg"),
  3728. name: "Back (Alt)",
  3729. image: {
  3730. source: "./media/characters/natasha/back-alt.svg",
  3731. extra: 1236.7 / 1192,
  3732. bottom: 22.3 / 1258.2
  3733. }
  3734. },
  3735. dick: {
  3736. height: math.unit(1.772, "feet"),
  3737. name: "Dick",
  3738. image: {
  3739. source: "./media/characters/natasha/dick.svg"
  3740. }
  3741. },
  3742. paw: {
  3743. height: math.unit(0.250, "meters"),
  3744. name: "Paw",
  3745. image: {
  3746. source: "./media/characters/natasha/paw.svg"
  3747. },
  3748. extraAttributes: {
  3749. "toeSize": {
  3750. name: "Toe Size",
  3751. power: 2,
  3752. type: "area",
  3753. base: math.unit(0.0024, "m^2")
  3754. },
  3755. "padSize": {
  3756. name: "Pad Size",
  3757. power: 2,
  3758. type: "area",
  3759. base: math.unit(0.00889, "m^2")
  3760. },
  3761. "pawSize": {
  3762. name: "Paw Size",
  3763. power: 2,
  3764. type: "area",
  3765. base: math.unit(0.023667, "m^2")
  3766. },
  3767. }
  3768. },
  3769. },
  3770. [
  3771. {
  3772. name: "Shortstack",
  3773. height: math.unit(3, "feet"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Normal",
  3778. height: math.unit(5 + 5 / 12, "feet")
  3779. },
  3780. {
  3781. name: "Large",
  3782. height: math.unit(12, "feet")
  3783. },
  3784. {
  3785. name: "Macro",
  3786. height: math.unit(100, "feet")
  3787. },
  3788. {
  3789. name: "Macro+",
  3790. height: math.unit(260, "feet")
  3791. },
  3792. {
  3793. name: "Macro++",
  3794. height: math.unit(1, "mile")
  3795. },
  3796. ]
  3797. ))
  3798. characterMakers.push(() => makeCharacter(
  3799. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3800. {
  3801. front: {
  3802. height: math.unit(6, "feet"),
  3803. weight: math.unit(75, "kg"),
  3804. name: "Front",
  3805. image: {
  3806. source: "./media/characters/malik/front.svg",
  3807. extra: 1750/1561,
  3808. bottom: 80/1830
  3809. },
  3810. extraAttributes: {
  3811. "toeSize": {
  3812. name: "Toe Size",
  3813. power: 2,
  3814. type: "area",
  3815. base: math.unit(0.0159, "m^2")
  3816. },
  3817. "pawSize": {
  3818. name: "Paw Size",
  3819. power: 2,
  3820. type: "area",
  3821. base: math.unit(0.09834, "m^2")
  3822. },
  3823. }
  3824. },
  3825. side: {
  3826. height: math.unit(6, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Side",
  3829. image: {
  3830. source: "./media/characters/malik/side.svg",
  3831. extra: 1802/1685,
  3832. bottom: 42/1844
  3833. },
  3834. extraAttributes: {
  3835. "toeSize": {
  3836. name: "Toe Size",
  3837. power: 2,
  3838. type: "area",
  3839. base: math.unit(0.0159, "m^2")
  3840. },
  3841. "pawSize": {
  3842. name: "Paw Size",
  3843. power: 2,
  3844. type: "area",
  3845. base: math.unit(0.09834, "m^2")
  3846. },
  3847. }
  3848. },
  3849. back: {
  3850. height: math.unit(6, "feet"),
  3851. weight: math.unit(75, "kg"),
  3852. name: "Back",
  3853. image: {
  3854. source: "./media/characters/malik/back.svg",
  3855. extra: 1803/1607,
  3856. bottom: 33/1836
  3857. },
  3858. extraAttributes: {
  3859. "toeSize": {
  3860. name: "Toe Size",
  3861. power: 2,
  3862. type: "area",
  3863. base: math.unit(0.0159, "m^2")
  3864. },
  3865. "pawSize": {
  3866. name: "Paw Size",
  3867. power: 2,
  3868. type: "area",
  3869. base: math.unit(0.09834, "m^2")
  3870. },
  3871. }
  3872. },
  3873. },
  3874. [
  3875. {
  3876. name: "Macro",
  3877. height: math.unit(156, "feet"),
  3878. default: true
  3879. },
  3880. {
  3881. name: "Macro+",
  3882. height: math.unit(1188, "feet")
  3883. },
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3888. {
  3889. front: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(75, "kg"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/sefer/front.svg",
  3895. extra: 848 / 659,
  3896. bottom: 28.3 / 876.442
  3897. }
  3898. },
  3899. back: {
  3900. height: math.unit(6, "feet"),
  3901. weight: math.unit(75, "kg"),
  3902. name: "Back",
  3903. image: {
  3904. source: "./media/characters/sefer/back.svg",
  3905. extra: 864 / 695,
  3906. bottom: 10 / 871
  3907. }
  3908. },
  3909. frontDressed: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(75, "kg"),
  3912. name: "Dressed",
  3913. image: {
  3914. source: "./media/characters/sefer/dressed.svg",
  3915. extra: 839 / 653,
  3916. bottom: 37.6 / 878
  3917. }
  3918. },
  3919. },
  3920. [
  3921. {
  3922. name: "Normal",
  3923. height: math.unit(6, "feet"),
  3924. default: true
  3925. },
  3926. {
  3927. name: "Big",
  3928. height: math.unit(8, "meters")
  3929. },
  3930. ]
  3931. ))
  3932. characterMakers.push(() => makeCharacter(
  3933. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3934. {
  3935. body: {
  3936. height: math.unit(2.2428, "meter"),
  3937. weight: math.unit(124.738, "kg"),
  3938. name: "Body",
  3939. image: {
  3940. extra: 1225 / 1050,
  3941. source: "./media/characters/north/front.svg"
  3942. }
  3943. }
  3944. },
  3945. [
  3946. {
  3947. name: "Micro",
  3948. height: math.unit(4, "inches")
  3949. },
  3950. {
  3951. name: "Macro",
  3952. height: math.unit(63, "meters")
  3953. },
  3954. {
  3955. name: "Megamacro",
  3956. height: math.unit(101, "miles"),
  3957. default: true
  3958. }
  3959. ]
  3960. ))
  3961. characterMakers.push(() => makeCharacter(
  3962. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3963. {
  3964. angled: {
  3965. height: math.unit(4, "meter"),
  3966. weight: math.unit(150, "kg"),
  3967. name: "Angled",
  3968. image: {
  3969. source: "./media/characters/talan/angled-sfw.svg",
  3970. bottom: 29 / 3734
  3971. }
  3972. },
  3973. angledNsfw: {
  3974. height: math.unit(4, "meter"),
  3975. weight: math.unit(150, "kg"),
  3976. name: "Angled (NSFW)",
  3977. image: {
  3978. source: "./media/characters/talan/angled-nsfw.svg",
  3979. bottom: 29 / 3734
  3980. }
  3981. },
  3982. frontNsfw: {
  3983. height: math.unit(4, "meter"),
  3984. weight: math.unit(150, "kg"),
  3985. name: "Front (NSFW)",
  3986. image: {
  3987. source: "./media/characters/talan/front-nsfw.svg",
  3988. bottom: 29 / 3734
  3989. }
  3990. },
  3991. sideNsfw: {
  3992. height: math.unit(4, "meter"),
  3993. weight: math.unit(150, "kg"),
  3994. name: "Side (NSFW)",
  3995. image: {
  3996. source: "./media/characters/talan/side-nsfw.svg",
  3997. bottom: 29 / 3734
  3998. }
  3999. },
  4000. back: {
  4001. height: math.unit(4, "meter"),
  4002. weight: math.unit(150, "kg"),
  4003. name: "Back",
  4004. image: {
  4005. source: "./media/characters/talan/back.svg"
  4006. }
  4007. },
  4008. dickBottom: {
  4009. height: math.unit(0.621, "meter"),
  4010. name: "Dick (Bottom)",
  4011. image: {
  4012. source: "./media/characters/talan/dick-bottom.svg"
  4013. }
  4014. },
  4015. dickTop: {
  4016. height: math.unit(0.621, "meter"),
  4017. name: "Dick (Top)",
  4018. image: {
  4019. source: "./media/characters/talan/dick-top.svg"
  4020. }
  4021. },
  4022. dickSide: {
  4023. height: math.unit(0.305, "meter"),
  4024. name: "Dick (Side)",
  4025. image: {
  4026. source: "./media/characters/talan/dick-side.svg"
  4027. }
  4028. },
  4029. dickFront: {
  4030. height: math.unit(0.305, "meter"),
  4031. name: "Dick (Front)",
  4032. image: {
  4033. source: "./media/characters/talan/dick-front.svg"
  4034. }
  4035. },
  4036. },
  4037. [
  4038. {
  4039. name: "Normal",
  4040. height: math.unit(4, "meters")
  4041. },
  4042. {
  4043. name: "Macro",
  4044. height: math.unit(100, "meters")
  4045. },
  4046. {
  4047. name: "Megamacro",
  4048. height: math.unit(2, "miles"),
  4049. default: true
  4050. },
  4051. {
  4052. name: "Gigamacro",
  4053. height: math.unit(5000, "miles")
  4054. },
  4055. {
  4056. name: "Teramacro",
  4057. height: math.unit(100, "parsecs")
  4058. }
  4059. ]
  4060. ))
  4061. characterMakers.push(() => makeCharacter(
  4062. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4063. {
  4064. front: {
  4065. height: math.unit(2, "meter"),
  4066. weight: math.unit(90, "kg"),
  4067. name: "Front",
  4068. image: {
  4069. source: "./media/characters/gael'rathus/front.svg"
  4070. }
  4071. },
  4072. frontAlt: {
  4073. height: math.unit(2, "meter"),
  4074. weight: math.unit(90, "kg"),
  4075. name: "Front (alt)",
  4076. image: {
  4077. source: "./media/characters/gael'rathus/front-alt.svg"
  4078. }
  4079. },
  4080. frontAlt2: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(90, "kg"),
  4083. name: "Front (alt 2)",
  4084. image: {
  4085. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4086. }
  4087. }
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(9, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Large",
  4097. height: math.unit(25, "feet")
  4098. },
  4099. {
  4100. name: "Macro",
  4101. height: math.unit(0.25, "miles")
  4102. },
  4103. {
  4104. name: "Megamacro",
  4105. height: math.unit(10, "miles")
  4106. }
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4111. {
  4112. side: {
  4113. height: math.unit(2, "meter"),
  4114. weight: math.unit(140, "kg"),
  4115. name: "Side",
  4116. image: {
  4117. source: "./media/characters/sosha/side.svg",
  4118. extra: 1170/1006,
  4119. bottom: 94/1264
  4120. }
  4121. },
  4122. maw: {
  4123. height: math.unit(2.87, "feet"),
  4124. name: "Maw",
  4125. image: {
  4126. source: "./media/characters/sosha/maw.svg",
  4127. extra: 966/865,
  4128. bottom: 0/966
  4129. }
  4130. },
  4131. cooch: {
  4132. height: math.unit(5.6, "feet"),
  4133. name: "Cooch",
  4134. image: {
  4135. source: "./media/characters/sosha/cooch.svg"
  4136. }
  4137. },
  4138. },
  4139. [
  4140. {
  4141. name: "Normal",
  4142. height: math.unit(12, "feet"),
  4143. default: true
  4144. }
  4145. ]
  4146. ))
  4147. characterMakers.push(() => makeCharacter(
  4148. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4149. {
  4150. side: {
  4151. height: math.unit(5 + 5 / 12, "feet"),
  4152. weight: math.unit(170, "kg"),
  4153. name: "Side",
  4154. image: {
  4155. source: "./media/characters/runnola/side.svg",
  4156. extra: 741 / 448,
  4157. bottom: 0.05
  4158. }
  4159. },
  4160. },
  4161. [
  4162. {
  4163. name: "Small",
  4164. height: math.unit(3, "feet")
  4165. },
  4166. {
  4167. name: "Normal",
  4168. height: math.unit(5 + 5 / 12, "feet"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Big",
  4173. height: math.unit(10, "feet")
  4174. },
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(2, "meter"),
  4182. weight: math.unit(50, "kg"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/kurribird/front.svg",
  4186. bottom: 0.015
  4187. }
  4188. },
  4189. frontAlt: {
  4190. height: math.unit(1.5, "meter"),
  4191. weight: math.unit(50, "kg"),
  4192. name: "Front (Alt)",
  4193. image: {
  4194. source: "./media/characters/kurribird/front-alt.svg",
  4195. extra: 1.45
  4196. }
  4197. },
  4198. },
  4199. [
  4200. {
  4201. name: "Normal",
  4202. height: math.unit(7, "feet")
  4203. },
  4204. {
  4205. name: "Big",
  4206. height: math.unit(12, "feet"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Macro",
  4211. height: math.unit(1500, "feet")
  4212. },
  4213. {
  4214. name: "Megamacro",
  4215. height: math.unit(2, "miles")
  4216. }
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4221. {
  4222. front: {
  4223. height: math.unit(2, "meter"),
  4224. weight: math.unit(80, "kg"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/elbial/front.svg",
  4228. extra: 1643 / 1556,
  4229. bottom: 60.2 / 1696
  4230. }
  4231. },
  4232. side: {
  4233. height: math.unit(2, "meter"),
  4234. weight: math.unit(80, "kg"),
  4235. name: "Side",
  4236. image: {
  4237. source: "./media/characters/elbial/side.svg",
  4238. extra: 1601/1528,
  4239. bottom: 97/1698
  4240. }
  4241. },
  4242. back: {
  4243. height: math.unit(2, "meter"),
  4244. weight: math.unit(80, "kg"),
  4245. name: "Back",
  4246. image: {
  4247. source: "./media/characters/elbial/back.svg",
  4248. extra: 1653/1569,
  4249. bottom: 20/1673
  4250. }
  4251. },
  4252. frontDressed: {
  4253. height: math.unit(2, "meter"),
  4254. weight: math.unit(80, "kg"),
  4255. name: "Front (Dressed)",
  4256. image: {
  4257. source: "./media/characters/elbial/front-dressed.svg",
  4258. extra: 1638/1569,
  4259. bottom: 70/1708
  4260. }
  4261. },
  4262. genitals: {
  4263. height: math.unit(2 / 3.367, "meter"),
  4264. name: "Genitals",
  4265. image: {
  4266. source: "./media/characters/elbial/genitals.svg"
  4267. }
  4268. },
  4269. },
  4270. [
  4271. {
  4272. name: "Large",
  4273. height: math.unit(100, "feet")
  4274. },
  4275. {
  4276. name: "Macro",
  4277. height: math.unit(500, "feet"),
  4278. default: true
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(10, "miles")
  4283. },
  4284. {
  4285. name: "Gigamacro",
  4286. height: math.unit(25000, "miles")
  4287. },
  4288. {
  4289. name: "Full-Size",
  4290. height: math.unit(8000000, "gigaparsecs")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(2, "meter"),
  4299. weight: math.unit(60, "kg"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/noah/front.svg"
  4303. }
  4304. },
  4305. talons: {
  4306. height: math.unit(0.315, "meter"),
  4307. name: "Talons",
  4308. image: {
  4309. source: "./media/characters/noah/talons.svg"
  4310. }
  4311. }
  4312. },
  4313. [
  4314. {
  4315. name: "Large",
  4316. height: math.unit(50, "feet")
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(750, "feet"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Megamacro",
  4325. height: math.unit(50, "miles")
  4326. },
  4327. {
  4328. name: "Gigamacro",
  4329. height: math.unit(100000, "miles")
  4330. },
  4331. {
  4332. name: "Full-Size",
  4333. height: math.unit(3000000000, "miles")
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(2, "meter"),
  4342. weight: math.unit(80, "kg"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/natalya/front.svg"
  4346. }
  4347. },
  4348. back: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(80, "kg"),
  4351. name: "Back",
  4352. image: {
  4353. source: "./media/characters/natalya/back.svg"
  4354. }
  4355. }
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(150, "feet"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Megamacro",
  4365. height: math.unit(5, "miles")
  4366. },
  4367. {
  4368. name: "Full-Size",
  4369. height: math.unit(600, "kiloparsecs")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4375. {
  4376. front: {
  4377. height: math.unit(2, "meter"),
  4378. weight: math.unit(50, "kg"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/erestrebah/front.svg",
  4382. extra: 1262/1162,
  4383. bottom: 96/1358
  4384. }
  4385. },
  4386. back: {
  4387. height: math.unit(2, "meter"),
  4388. weight: math.unit(50, "kg"),
  4389. name: "Back",
  4390. image: {
  4391. source: "./media/characters/erestrebah/back.svg",
  4392. extra: 1257/1139,
  4393. bottom: 13/1270
  4394. }
  4395. },
  4396. wing: {
  4397. height: math.unit(2, "meter"),
  4398. weight: math.unit(50, "kg"),
  4399. name: "Wing",
  4400. image: {
  4401. source: "./media/characters/erestrebah/wing.svg",
  4402. extra: 1262/1162,
  4403. bottom: 96/1358
  4404. }
  4405. },
  4406. mouth: {
  4407. height: math.unit(0.39, "feet"),
  4408. name: "Mouth",
  4409. image: {
  4410. source: "./media/characters/erestrebah/mouth.svg"
  4411. }
  4412. }
  4413. },
  4414. [
  4415. {
  4416. name: "Normal",
  4417. height: math.unit(10, "feet")
  4418. },
  4419. {
  4420. name: "Large",
  4421. height: math.unit(50, "feet"),
  4422. default: true
  4423. },
  4424. {
  4425. name: "Macro",
  4426. height: math.unit(300, "feet")
  4427. },
  4428. {
  4429. name: "Macro+",
  4430. height: math.unit(750, "feet")
  4431. },
  4432. {
  4433. name: "Megamacro",
  4434. height: math.unit(3, "miles")
  4435. }
  4436. ]
  4437. ))
  4438. characterMakers.push(() => makeCharacter(
  4439. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4440. {
  4441. front: {
  4442. height: math.unit(2, "meter"),
  4443. weight: math.unit(80, "kg"),
  4444. name: "Front",
  4445. image: {
  4446. source: "./media/characters/jennifer/front.svg",
  4447. bottom: 0.11,
  4448. extra: 1.16
  4449. }
  4450. },
  4451. frontAlt: {
  4452. height: math.unit(2, "meter"),
  4453. weight: math.unit(80, "kg"),
  4454. name: "Front (Alt)",
  4455. image: {
  4456. source: "./media/characters/jennifer/front-alt.svg"
  4457. }
  4458. }
  4459. },
  4460. [
  4461. {
  4462. name: "Canon Height",
  4463. height: math.unit(120, "feet"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Macro+",
  4468. height: math.unit(300, "feet")
  4469. },
  4470. {
  4471. name: "Megamacro",
  4472. height: math.unit(20000, "feet")
  4473. }
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4478. {
  4479. front: {
  4480. height: math.unit(2, "meter"),
  4481. weight: math.unit(50, "kg"),
  4482. name: "Front",
  4483. image: {
  4484. source: "./media/characters/kalista/front.svg",
  4485. extra: 1314/1145,
  4486. bottom: 101/1415
  4487. }
  4488. },
  4489. back: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(50, "kg"),
  4492. name: "Back",
  4493. image: {
  4494. source: "./media/characters/kalista/back.svg",
  4495. extra: 1366 / 1156,
  4496. bottom: 33.9 / 1362.78
  4497. }
  4498. }
  4499. },
  4500. [
  4501. {
  4502. name: "Uncomfortably Small",
  4503. height: math.unit(10, "feet")
  4504. },
  4505. {
  4506. name: "Small",
  4507. height: math.unit(30, "feet")
  4508. },
  4509. {
  4510. name: "Macro",
  4511. height: math.unit(100, "feet"),
  4512. default: true
  4513. },
  4514. {
  4515. name: "Macro+",
  4516. height: math.unit(2000, "feet")
  4517. },
  4518. {
  4519. name: "True Form",
  4520. height: math.unit(8924, "miles")
  4521. }
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4526. {
  4527. front: {
  4528. height: math.unit(2, "meter"),
  4529. weight: math.unit(120, "kg"),
  4530. name: "Front",
  4531. image: {
  4532. source: "./media/characters/ggv/front.svg"
  4533. }
  4534. },
  4535. side: {
  4536. height: math.unit(2, "meter"),
  4537. weight: math.unit(120, "kg"),
  4538. name: "Side",
  4539. image: {
  4540. source: "./media/characters/ggv/side.svg"
  4541. }
  4542. }
  4543. },
  4544. [
  4545. {
  4546. name: "Extremely Puny",
  4547. height: math.unit(9 + 5 / 12, "feet")
  4548. },
  4549. {
  4550. name: "Horribly Small",
  4551. height: math.unit(47.7, "miles"),
  4552. default: true
  4553. },
  4554. {
  4555. name: "Reasonably Sized",
  4556. height: math.unit(25000, "parsecs")
  4557. },
  4558. {
  4559. name: "Slightly Uncompressed",
  4560. height: math.unit(7.77e31, "parsecs")
  4561. },
  4562. {
  4563. name: "Omniversal",
  4564. height: math.unit(1e300, "meters")
  4565. },
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4570. {
  4571. front: {
  4572. height: math.unit(2, "meter"),
  4573. weight: math.unit(75, "lb"),
  4574. name: "Front",
  4575. image: {
  4576. source: "./media/characters/napalm/front.svg"
  4577. }
  4578. },
  4579. back: {
  4580. height: math.unit(2, "meter"),
  4581. weight: math.unit(75, "lb"),
  4582. name: "Back",
  4583. image: {
  4584. source: "./media/characters/napalm/back.svg"
  4585. }
  4586. }
  4587. },
  4588. [
  4589. {
  4590. name: "Standard",
  4591. height: math.unit(55, "feet"),
  4592. default: true
  4593. }
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4598. {
  4599. front: {
  4600. height: math.unit(7 + 5 / 6, "feet"),
  4601. weight: math.unit(325, "lb"),
  4602. name: "Front",
  4603. image: {
  4604. source: "./media/characters/asana/front.svg",
  4605. extra: 1133 / 1060,
  4606. bottom: 15.2 / 1148.6
  4607. }
  4608. },
  4609. back: {
  4610. height: math.unit(7 + 5 / 6, "feet"),
  4611. weight: math.unit(325, "lb"),
  4612. name: "Back",
  4613. image: {
  4614. source: "./media/characters/asana/back.svg",
  4615. extra: 1114 / 1043,
  4616. bottom: 5 / 1120
  4617. }
  4618. },
  4619. dressedDark: {
  4620. height: math.unit(7 + 5 / 6, "feet"),
  4621. weight: math.unit(325, "lb"),
  4622. name: "Dressed (Dark)",
  4623. image: {
  4624. source: "./media/characters/asana/dressed-dark.svg",
  4625. extra: 1133 / 1060,
  4626. bottom: 15.2 / 1148.6
  4627. }
  4628. },
  4629. dressedLight: {
  4630. height: math.unit(7 + 5 / 6, "feet"),
  4631. weight: math.unit(325, "lb"),
  4632. name: "Dressed (Light)",
  4633. image: {
  4634. source: "./media/characters/asana/dressed-light.svg",
  4635. extra: 1133 / 1060,
  4636. bottom: 15.2 / 1148.6
  4637. }
  4638. },
  4639. },
  4640. [
  4641. {
  4642. name: "Standard",
  4643. height: math.unit(7 + 5 / 6, "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Large",
  4648. height: math.unit(10, "meters")
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(2500, "meters")
  4653. },
  4654. {
  4655. name: "Megamacro",
  4656. height: math.unit(5e6, "meters")
  4657. },
  4658. {
  4659. name: "Examacro",
  4660. height: math.unit(5e12, "lightyears")
  4661. },
  4662. {
  4663. name: "Max Size",
  4664. height: math.unit(1e31, "lightyears")
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(2, "meter"),
  4673. weight: math.unit(60, "kg"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/ebony/front.svg",
  4677. bottom: 0.03,
  4678. extra: 1045 / 810 + 0.03
  4679. }
  4680. },
  4681. side: {
  4682. height: math.unit(2, "meter"),
  4683. weight: math.unit(60, "kg"),
  4684. name: "Side",
  4685. image: {
  4686. source: "./media/characters/ebony/side.svg",
  4687. bottom: 0.03,
  4688. extra: 1045 / 810 + 0.03
  4689. }
  4690. },
  4691. back: {
  4692. height: math.unit(2, "meter"),
  4693. weight: math.unit(60, "kg"),
  4694. name: "Back",
  4695. image: {
  4696. source: "./media/characters/ebony/back.svg",
  4697. bottom: 0.01,
  4698. extra: 1045 / 810 + 0.01
  4699. }
  4700. },
  4701. },
  4702. [
  4703. // TODO check why I did this lol
  4704. {
  4705. name: "Standard",
  4706. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4707. default: true
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(200, "feet")
  4712. },
  4713. {
  4714. name: "Gigamacro",
  4715. height: math.unit(13000, "km")
  4716. }
  4717. ]
  4718. ))
  4719. characterMakers.push(() => makeCharacter(
  4720. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4721. {
  4722. front: {
  4723. height: math.unit(6, "feet"),
  4724. weight: math.unit(175, "lb"),
  4725. name: "Front",
  4726. image: {
  4727. source: "./media/characters/mountain/front.svg",
  4728. extra: 972 / 955,
  4729. bottom: 64 / 1036.6
  4730. }
  4731. },
  4732. back: {
  4733. height: math.unit(6, "feet"),
  4734. weight: math.unit(175, "lb"),
  4735. name: "Back",
  4736. image: {
  4737. source: "./media/characters/mountain/back.svg",
  4738. extra: 970 / 950,
  4739. bottom: 28.25 / 999
  4740. }
  4741. },
  4742. },
  4743. [
  4744. {
  4745. name: "Large",
  4746. height: math.unit(20, "meters")
  4747. },
  4748. {
  4749. name: "Macro",
  4750. height: math.unit(300, "meters")
  4751. },
  4752. {
  4753. name: "Gigamacro",
  4754. height: math.unit(10000, "km"),
  4755. default: true
  4756. },
  4757. {
  4758. name: "Examacro",
  4759. height: math.unit(10e9, "lightyears")
  4760. }
  4761. ]
  4762. ))
  4763. characterMakers.push(() => makeCharacter(
  4764. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4765. {
  4766. front: {
  4767. height: math.unit(8, "feet"),
  4768. weight: math.unit(500, "lb"),
  4769. name: "Front",
  4770. image: {
  4771. source: "./media/characters/rick/front.svg"
  4772. }
  4773. }
  4774. },
  4775. [
  4776. {
  4777. name: "Normal",
  4778. height: math.unit(8, "feet"),
  4779. default: true
  4780. },
  4781. {
  4782. name: "Macro",
  4783. height: math.unit(5, "km")
  4784. }
  4785. ]
  4786. ))
  4787. characterMakers.push(() => makeCharacter(
  4788. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4789. {
  4790. front: {
  4791. height: math.unit(8, "feet"),
  4792. weight: math.unit(120, "lb"),
  4793. name: "Front",
  4794. image: {
  4795. source: "./media/characters/ona/front.svg"
  4796. }
  4797. },
  4798. frontAlt: {
  4799. height: math.unit(8, "feet"),
  4800. weight: math.unit(120, "lb"),
  4801. name: "Front (Alt)",
  4802. image: {
  4803. source: "./media/characters/ona/front-alt.svg"
  4804. }
  4805. },
  4806. back: {
  4807. height: math.unit(8, "feet"),
  4808. weight: math.unit(120, "lb"),
  4809. name: "Back",
  4810. image: {
  4811. source: "./media/characters/ona/back.svg"
  4812. }
  4813. },
  4814. foot: {
  4815. height: math.unit(1.1, "feet"),
  4816. name: "Foot",
  4817. image: {
  4818. source: "./media/characters/ona/foot.svg"
  4819. }
  4820. }
  4821. },
  4822. [
  4823. {
  4824. name: "Megamacro",
  4825. height: math.unit(70, "km"),
  4826. default: true
  4827. },
  4828. {
  4829. name: "Gigamacro",
  4830. height: math.unit(681818, "miles")
  4831. },
  4832. {
  4833. name: "Examacro",
  4834. height: math.unit(3800000, "lightyears")
  4835. },
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4840. {
  4841. front: {
  4842. height: math.unit(12, "feet"),
  4843. weight: math.unit(3000, "lb"),
  4844. name: "Front",
  4845. image: {
  4846. source: "./media/characters/mech/front.svg",
  4847. extra: 2900 / 2770,
  4848. bottom: 110 / 3010
  4849. }
  4850. },
  4851. back: {
  4852. height: math.unit(12, "feet"),
  4853. weight: math.unit(3000, "lb"),
  4854. name: "Back",
  4855. image: {
  4856. source: "./media/characters/mech/back.svg",
  4857. extra: 3011 / 2890,
  4858. bottom: 94 / 3105
  4859. }
  4860. },
  4861. maw: {
  4862. height: math.unit(3.07, "feet"),
  4863. name: "Maw",
  4864. image: {
  4865. source: "./media/characters/mech/maw.svg"
  4866. }
  4867. },
  4868. head: {
  4869. height: math.unit(3.07, "feet"),
  4870. name: "Head",
  4871. image: {
  4872. source: "./media/characters/mech/head.svg"
  4873. }
  4874. },
  4875. dick: {
  4876. height: math.unit(1.43, "feet"),
  4877. name: "Dick",
  4878. image: {
  4879. source: "./media/characters/mech/dick.svg"
  4880. }
  4881. },
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(12, "feet")
  4887. },
  4888. {
  4889. name: "Macro",
  4890. height: math.unit(300, "feet"),
  4891. default: true
  4892. },
  4893. {
  4894. name: "Macro+",
  4895. height: math.unit(1500, "feet")
  4896. },
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4901. {
  4902. front: {
  4903. height: math.unit(1.3, "meter"),
  4904. weight: math.unit(30, "kg"),
  4905. name: "Front",
  4906. image: {
  4907. source: "./media/characters/gregory/front.svg",
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(1.3, "meter"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(20, "meter")
  4920. }
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4925. {
  4926. front: {
  4927. height: math.unit(2.8, "meter"),
  4928. weight: math.unit(200, "kg"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/elory/front.svg",
  4932. }
  4933. }
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(2.8, "meter"),
  4939. default: true
  4940. },
  4941. {
  4942. name: "Macro",
  4943. height: math.unit(38, "meter")
  4944. }
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(470, "feet"),
  4952. weight: math.unit(924, "tons"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/angelpatamon/front.svg",
  4956. }
  4957. }
  4958. },
  4959. [
  4960. {
  4961. name: "Normal",
  4962. height: math.unit(470, "feet"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Deity Size I",
  4967. height: math.unit(28651.2, "km")
  4968. },
  4969. {
  4970. name: "Deity Size II",
  4971. height: math.unit(171907.2, "km")
  4972. }
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4977. {
  4978. side: {
  4979. height: math.unit(7.2, "meter"),
  4980. weight: math.unit(8.2, "tons"),
  4981. name: "Side",
  4982. image: {
  4983. source: "./media/characters/cryae/side.svg",
  4984. extra: 3500 / 1500
  4985. }
  4986. }
  4987. },
  4988. [
  4989. {
  4990. name: "Normal",
  4991. height: math.unit(7.2, "meter"),
  4992. default: true
  4993. }
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4998. {
  4999. front: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(175, "lb"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/xera/front.svg",
  5005. extra: 2377 / 1972,
  5006. bottom: 75.5 / 2452
  5007. }
  5008. },
  5009. side: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(175, "lb"),
  5012. name: "Side",
  5013. image: {
  5014. source: "./media/characters/xera/side.svg",
  5015. extra: 2345 / 2019,
  5016. bottom: 39.7 / 2384
  5017. }
  5018. },
  5019. back: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(175, "lb"),
  5022. name: "Back",
  5023. image: {
  5024. source: "./media/characters/xera/back.svg",
  5025. extra: 2095 / 1984,
  5026. bottom: 67 / 2166
  5027. }
  5028. },
  5029. },
  5030. [
  5031. {
  5032. name: "Small",
  5033. height: math.unit(10, "feet")
  5034. },
  5035. {
  5036. name: "Macro",
  5037. height: math.unit(500, "meters"),
  5038. default: true
  5039. },
  5040. {
  5041. name: "Macro+",
  5042. height: math.unit(10, "km")
  5043. },
  5044. {
  5045. name: "Gigamacro",
  5046. height: math.unit(25000, "km")
  5047. },
  5048. {
  5049. name: "Teramacro",
  5050. height: math.unit(3e6, "km")
  5051. }
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(175, "lb"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/nebula/front.svg",
  5063. extra: 2566 / 2362,
  5064. bottom: 81 / 2644
  5065. }
  5066. }
  5067. },
  5068. [
  5069. {
  5070. name: "Small",
  5071. height: math.unit(4.5, "meters")
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(1500, "meters"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Megamacro",
  5080. height: math.unit(150, "km")
  5081. },
  5082. {
  5083. name: "Gigamacro",
  5084. height: math.unit(27000, "km")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(225, "lb"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/abysgar/front.svg",
  5097. extra: 1739/1614,
  5098. bottom: 71/1810
  5099. }
  5100. },
  5101. frontNsfw: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(225, "lb"),
  5104. name: "Front (NSFW)",
  5105. image: {
  5106. source: "./media/characters/abysgar/front-nsfw.svg",
  5107. extra: 1739/1614,
  5108. bottom: 71/1810
  5109. }
  5110. },
  5111. back: {
  5112. height: math.unit(4.6, "feet"),
  5113. weight: math.unit(225, "lb"),
  5114. name: "Back",
  5115. image: {
  5116. source: "./media/characters/abysgar/back.svg",
  5117. extra: 1384/1327,
  5118. bottom: 0/1384
  5119. }
  5120. },
  5121. head: {
  5122. height: math.unit(1.25, "feet"),
  5123. name: "Head",
  5124. image: {
  5125. source: "./media/characters/abysgar/head.svg",
  5126. extra: 669/569,
  5127. bottom: 0/669
  5128. }
  5129. },
  5130. },
  5131. [
  5132. {
  5133. name: "Small",
  5134. height: math.unit(4.5, "meters")
  5135. },
  5136. {
  5137. name: "Macro",
  5138. height: math.unit(1250, "meters"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Megamacro",
  5143. height: math.unit(125, "km")
  5144. },
  5145. {
  5146. name: "Gigamacro",
  5147. height: math.unit(26000, "km")
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(180, "lb"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/yakuz/front.svg"
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Small",
  5166. height: math.unit(5, "meters")
  5167. },
  5168. {
  5169. name: "Macro",
  5170. height: math.unit(1500, "meters"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Megamacro",
  5175. height: math.unit(200, "km")
  5176. },
  5177. {
  5178. name: "Gigamacro",
  5179. height: math.unit(100000, "km")
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5185. {
  5186. front: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(175, "lb"),
  5189. name: "Front",
  5190. image: {
  5191. source: "./media/characters/mirova/front.svg",
  5192. extra: 3334 / 3071,
  5193. bottom: 42 / 3375.6
  5194. }
  5195. }
  5196. },
  5197. [
  5198. {
  5199. name: "Small",
  5200. height: math.unit(5, "meters")
  5201. },
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(900, "meters"),
  5205. default: true
  5206. },
  5207. {
  5208. name: "Megamacro",
  5209. height: math.unit(135, "km")
  5210. },
  5211. {
  5212. name: "Gigamacro",
  5213. height: math.unit(20000, "km")
  5214. }
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5219. {
  5220. side: {
  5221. height: math.unit(28.35, "feet"),
  5222. weight: math.unit(99.75, "tons"),
  5223. name: "Side",
  5224. image: {
  5225. source: "./media/characters/asana-mech/side.svg",
  5226. extra: 923 / 699,
  5227. bottom: 50 / 975
  5228. }
  5229. },
  5230. chaingun: {
  5231. height: math.unit(7, "feet"),
  5232. weight: math.unit(2400, "lb"),
  5233. name: "Chaingun",
  5234. image: {
  5235. source: "./media/characters/asana-mech/chaingun.svg"
  5236. }
  5237. },
  5238. laser: {
  5239. height: math.unit(7.12, "feet"),
  5240. weight: math.unit(2000, "lb"),
  5241. name: "Laser",
  5242. image: {
  5243. source: "./media/characters/asana-mech/laser.svg"
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(28.35, "feet"),
  5251. default: true
  5252. },
  5253. {
  5254. name: "Macro",
  5255. height: math.unit(2500, "feet")
  5256. },
  5257. {
  5258. name: "Megamacro",
  5259. height: math.unit(25, "miles")
  5260. },
  5261. {
  5262. name: "Examacro",
  5263. height: math.unit(6e8, "lightyears")
  5264. },
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5269. {
  5270. front: {
  5271. height: math.unit(5, "meters"),
  5272. weight: math.unit(1000, "kg"),
  5273. name: "Front",
  5274. image: {
  5275. source: "./media/characters/asche/front.svg",
  5276. extra: 1258 / 1190,
  5277. bottom: 47 / 1305
  5278. }
  5279. },
  5280. frontUnderwear: {
  5281. height: math.unit(5, "meters"),
  5282. weight: math.unit(1000, "kg"),
  5283. name: "Front (Underwear)",
  5284. image: {
  5285. source: "./media/characters/asche/front-underwear.svg",
  5286. extra: 1258 / 1190,
  5287. bottom: 47 / 1305
  5288. }
  5289. },
  5290. frontDressed: {
  5291. height: math.unit(5, "meters"),
  5292. weight: math.unit(1000, "kg"),
  5293. name: "Front (Dressed)",
  5294. image: {
  5295. source: "./media/characters/asche/front-dressed.svg",
  5296. extra: 1258 / 1190,
  5297. bottom: 47 / 1305
  5298. }
  5299. },
  5300. frontArmor: {
  5301. height: math.unit(5, "meters"),
  5302. weight: math.unit(1000, "kg"),
  5303. name: "Front (Armored)",
  5304. image: {
  5305. source: "./media/characters/asche/front-armored.svg",
  5306. extra: 1374 / 1308,
  5307. bottom: 23 / 1397
  5308. }
  5309. },
  5310. mp724: {
  5311. height: math.unit(0.96, "meters"),
  5312. weight: math.unit(38, "kg"),
  5313. name: "H&K MP724",
  5314. image: {
  5315. source: "./media/characters/asche/h&k-mp724.svg"
  5316. }
  5317. },
  5318. side: {
  5319. height: math.unit(5, "meters"),
  5320. weight: math.unit(1000, "kg"),
  5321. name: "Side",
  5322. image: {
  5323. source: "./media/characters/asche/side.svg",
  5324. extra: 1717 / 1609,
  5325. bottom: 0.005
  5326. }
  5327. },
  5328. back: {
  5329. height: math.unit(5, "meters"),
  5330. weight: math.unit(1000, "kg"),
  5331. name: "Back",
  5332. image: {
  5333. source: "./media/characters/asche/back.svg",
  5334. extra: 1570 / 1501
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "DEFCON 5",
  5341. height: math.unit(5, "meters")
  5342. },
  5343. {
  5344. name: "DEFCON 4",
  5345. height: math.unit(500, "meters"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "DEFCON 3",
  5350. height: math.unit(5, "km")
  5351. },
  5352. {
  5353. name: "DEFCON 2",
  5354. height: math.unit(500, "km")
  5355. },
  5356. {
  5357. name: "DEFCON 1",
  5358. height: math.unit(500000, "km")
  5359. },
  5360. {
  5361. name: "DEFCON 0",
  5362. height: math.unit(3, "gigaparsecs")
  5363. },
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5368. {
  5369. front: {
  5370. height: math.unit(7, "feet"),
  5371. weight: math.unit(92.7, "kg"),
  5372. name: "Front",
  5373. image: {
  5374. source: "./media/characters/gale/front.svg",
  5375. extra: 977/919,
  5376. bottom: 105/1082
  5377. }
  5378. },
  5379. side: {
  5380. height: math.unit(6.7, "feet"),
  5381. weight: math.unit(92.7, "kg"),
  5382. name: "Side",
  5383. image: {
  5384. source: "./media/characters/gale/side.svg",
  5385. extra: 978/922,
  5386. bottom: 140/1118
  5387. }
  5388. },
  5389. back: {
  5390. height: math.unit(7, "feet"),
  5391. weight: math.unit(92.7, "kg"),
  5392. name: "Back",
  5393. image: {
  5394. source: "./media/characters/gale/back.svg",
  5395. extra: 966/920,
  5396. bottom: 61/1027
  5397. }
  5398. },
  5399. maw: {
  5400. height: math.unit(2.23, "feet"),
  5401. name: "Maw",
  5402. image: {
  5403. source: "./media/characters/gale/maw.svg"
  5404. }
  5405. },
  5406. foot: {
  5407. height: math.unit(2.1, "feet"),
  5408. name: "Foot",
  5409. image: {
  5410. source: "./media/characters/gale/foot.svg"
  5411. }
  5412. },
  5413. },
  5414. [
  5415. {
  5416. name: "Normal",
  5417. height: math.unit(7, "feet")
  5418. },
  5419. {
  5420. name: "Macro",
  5421. height: math.unit(150, "feet"),
  5422. default: true
  5423. },
  5424. {
  5425. name: "Macro+",
  5426. height: math.unit(300, "feet")
  5427. },
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5432. {
  5433. front: {
  5434. height: math.unit(5 + 10/12, "feet"),
  5435. weight: math.unit(67, "kg"),
  5436. name: "Front",
  5437. image: {
  5438. source: "./media/characters/draylen/front.svg",
  5439. extra: 832/777,
  5440. bottom: 85/917
  5441. }
  5442. }
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(5 + 10/12, "feet")
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(150, "feet"),
  5452. default: true
  5453. }
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5458. {
  5459. front: {
  5460. height: math.unit(7 + 9 / 12, "feet"),
  5461. weight: math.unit(379, "lbs"),
  5462. name: "Front",
  5463. image: {
  5464. source: "./media/characters/chez/front.svg"
  5465. }
  5466. },
  5467. side: {
  5468. height: math.unit(7 + 9 / 12, "feet"),
  5469. weight: math.unit(379, "lbs"),
  5470. name: "Side",
  5471. image: {
  5472. source: "./media/characters/chez/side.svg"
  5473. }
  5474. }
  5475. },
  5476. [
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(7 + 9 / 12, "feet"),
  5480. default: true
  5481. },
  5482. {
  5483. name: "God King",
  5484. height: math.unit(9750000, "meters")
  5485. }
  5486. ]
  5487. ))
  5488. characterMakers.push(() => makeCharacter(
  5489. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5490. {
  5491. front: {
  5492. height: math.unit(6, "feet"),
  5493. weight: math.unit(275, "lbs"),
  5494. name: "Front",
  5495. image: {
  5496. source: "./media/characters/kaylum/front.svg",
  5497. bottom: 0.01,
  5498. extra: 1166 / 1031
  5499. }
  5500. },
  5501. frontWingless: {
  5502. height: math.unit(6, "feet"),
  5503. weight: math.unit(275, "lbs"),
  5504. name: "Front (Wingless)",
  5505. image: {
  5506. source: "./media/characters/kaylum/front-wingless.svg",
  5507. bottom: 0.01,
  5508. extra: 1117 / 1031
  5509. }
  5510. }
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(3.05, "meters")
  5516. },
  5517. {
  5518. name: "Master",
  5519. height: math.unit(5.5, "meters")
  5520. },
  5521. {
  5522. name: "Rampage",
  5523. height: math.unit(19, "meters")
  5524. },
  5525. {
  5526. name: "Macro Lite",
  5527. height: math.unit(37, "meters")
  5528. },
  5529. {
  5530. name: "Hyper Predator",
  5531. height: math.unit(61, "meters")
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(138, "meters"),
  5536. default: true
  5537. }
  5538. ]
  5539. ))
  5540. characterMakers.push(() => makeCharacter(
  5541. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5542. {
  5543. front: {
  5544. height: math.unit(5 + 5 / 12, "feet"),
  5545. weight: math.unit(120, "lbs"),
  5546. name: "Front",
  5547. image: {
  5548. source: "./media/characters/geta/front.svg",
  5549. extra: 1003/933,
  5550. bottom: 21/1024
  5551. }
  5552. },
  5553. paw: {
  5554. height: math.unit(0.35, "feet"),
  5555. name: "Paw",
  5556. image: {
  5557. source: "./media/characters/geta/paw.svg"
  5558. }
  5559. },
  5560. },
  5561. [
  5562. {
  5563. name: "Micro",
  5564. height: math.unit(3, "inches"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Normal",
  5569. height: math.unit(5 + 5 / 12, "feet")
  5570. }
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5575. {
  5576. front: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(300, "lbs"),
  5579. name: "Front",
  5580. image: {
  5581. source: "./media/characters/tyrnn/front.svg"
  5582. }
  5583. }
  5584. },
  5585. [
  5586. {
  5587. name: "Main Height",
  5588. height: math.unit(355, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Fave. Height",
  5593. height: math.unit(2400, "feet")
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(300, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/appledectomy/front.svg"
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Macro",
  5612. height: math.unit(2500, "feet")
  5613. },
  5614. {
  5615. name: "Megamacro",
  5616. height: math.unit(50, "miles"),
  5617. default: true
  5618. },
  5619. {
  5620. name: "Gigamacro",
  5621. height: math.unit(5000, "miles")
  5622. },
  5623. {
  5624. name: "Teramacro",
  5625. height: math.unit(250000, "miles")
  5626. },
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(200, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/vulpes/front.svg",
  5638. extra: 573 / 543,
  5639. bottom: 0.033
  5640. }
  5641. },
  5642. side: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(200, "lbs"),
  5645. name: "Side",
  5646. image: {
  5647. source: "./media/characters/vulpes/side.svg",
  5648. extra: 577 / 549,
  5649. bottom: 11 / 588
  5650. }
  5651. },
  5652. back: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(200, "lbs"),
  5655. name: "Back",
  5656. image: {
  5657. source: "./media/characters/vulpes/back.svg",
  5658. extra: 573 / 549,
  5659. bottom: 20 / 593
  5660. }
  5661. },
  5662. feet: {
  5663. height: math.unit(1.276, "feet"),
  5664. name: "Feet",
  5665. image: {
  5666. source: "./media/characters/vulpes/feet.svg"
  5667. }
  5668. },
  5669. maw: {
  5670. height: math.unit(1.18, "feet"),
  5671. name: "Maw",
  5672. image: {
  5673. source: "./media/characters/vulpes/maw.svg"
  5674. }
  5675. },
  5676. },
  5677. [
  5678. {
  5679. name: "Micro",
  5680. height: math.unit(2, "inches")
  5681. },
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(6.3, "feet")
  5685. },
  5686. {
  5687. name: "Macro",
  5688. height: math.unit(850, "feet")
  5689. },
  5690. {
  5691. name: "Megamacro",
  5692. height: math.unit(7500, "feet"),
  5693. default: true
  5694. },
  5695. {
  5696. name: "Gigamacro",
  5697. height: math.unit(570000, "miles")
  5698. }
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5703. {
  5704. front: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(210, "lbs"),
  5707. name: "Front",
  5708. image: {
  5709. source: "./media/characters/rain-fallen/front.svg"
  5710. }
  5711. },
  5712. side: {
  5713. height: math.unit(6, "feet"),
  5714. weight: math.unit(210, "lbs"),
  5715. name: "Side",
  5716. image: {
  5717. source: "./media/characters/rain-fallen/side.svg"
  5718. }
  5719. },
  5720. back: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(210, "lbs"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/rain-fallen/back.svg"
  5726. }
  5727. },
  5728. feral: {
  5729. height: math.unit(9, "feet"),
  5730. weight: math.unit(700, "lbs"),
  5731. name: "Feral",
  5732. image: {
  5733. source: "./media/characters/rain-fallen/feral.svg"
  5734. }
  5735. },
  5736. },
  5737. [
  5738. {
  5739. name: "Meddling with Mortals",
  5740. height: math.unit(8 + 8/12, "feet")
  5741. },
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(5, "meter")
  5745. },
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(150, "meter"),
  5749. default: true
  5750. },
  5751. {
  5752. name: "Megamacro",
  5753. height: math.unit(278e6, "meter")
  5754. },
  5755. {
  5756. name: "Gigamacro",
  5757. height: math.unit(2e9, "meter")
  5758. },
  5759. {
  5760. name: "Teramacro",
  5761. height: math.unit(8e12, "meter")
  5762. },
  5763. {
  5764. name: "Devourer",
  5765. height: math.unit(14, "zettameters")
  5766. },
  5767. {
  5768. name: "Scarlet King",
  5769. height: math.unit(18, "yottameters")
  5770. },
  5771. {
  5772. name: "Void",
  5773. height: math.unit(1e88, "yottameters")
  5774. }
  5775. ]
  5776. ))
  5777. characterMakers.push(() => makeCharacter(
  5778. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5779. {
  5780. standing: {
  5781. height: math.unit(6, "feet"),
  5782. weight: math.unit(180, "lbs"),
  5783. name: "Standing",
  5784. image: {
  5785. source: "./media/characters/zaakira/standing.svg",
  5786. extra: 1599/1504,
  5787. bottom: 39/1638
  5788. }
  5789. },
  5790. laying: {
  5791. height: math.unit(3.3, "feet"),
  5792. weight: math.unit(180, "lbs"),
  5793. name: "Laying",
  5794. image: {
  5795. source: "./media/characters/zaakira/laying.svg"
  5796. }
  5797. },
  5798. },
  5799. [
  5800. {
  5801. name: "Normal",
  5802. height: math.unit(12, "feet")
  5803. },
  5804. {
  5805. name: "Macro",
  5806. height: math.unit(279, "feet"),
  5807. default: true
  5808. }
  5809. ]
  5810. ))
  5811. characterMakers.push(() => makeCharacter(
  5812. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5813. {
  5814. femSfw: {
  5815. height: math.unit(8, "feet"),
  5816. weight: math.unit(350, "lb"),
  5817. name: "Fem",
  5818. image: {
  5819. source: "./media/characters/sigvald/fem-sfw.svg",
  5820. extra: 182 / 164,
  5821. bottom: 8.7 / 190.5
  5822. }
  5823. },
  5824. femNsfw: {
  5825. height: math.unit(8, "feet"),
  5826. weight: math.unit(350, "lb"),
  5827. name: "Fem (NSFW)",
  5828. image: {
  5829. source: "./media/characters/sigvald/fem-nsfw.svg",
  5830. extra: 182 / 164,
  5831. bottom: 8.7 / 190.5
  5832. }
  5833. },
  5834. maleNsfw: {
  5835. height: math.unit(8, "feet"),
  5836. weight: math.unit(350, "lb"),
  5837. name: "Male (NSFW)",
  5838. image: {
  5839. source: "./media/characters/sigvald/male-nsfw.svg",
  5840. extra: 182 / 164,
  5841. bottom: 8.7 / 190.5
  5842. }
  5843. },
  5844. hermNsfw: {
  5845. height: math.unit(8, "feet"),
  5846. weight: math.unit(350, "lb"),
  5847. name: "Herm (NSFW)",
  5848. image: {
  5849. source: "./media/characters/sigvald/herm-nsfw.svg",
  5850. extra: 182 / 164,
  5851. bottom: 8.7 / 190.5
  5852. }
  5853. },
  5854. dick: {
  5855. height: math.unit(2.36, "feet"),
  5856. name: "Dick",
  5857. image: {
  5858. source: "./media/characters/sigvald/dick.svg"
  5859. }
  5860. },
  5861. eye: {
  5862. height: math.unit(0.31, "feet"),
  5863. name: "Eye",
  5864. image: {
  5865. source: "./media/characters/sigvald/eye.svg"
  5866. }
  5867. },
  5868. mouth: {
  5869. height: math.unit(0.92, "feet"),
  5870. name: "Mouth",
  5871. image: {
  5872. source: "./media/characters/sigvald/mouth.svg"
  5873. }
  5874. },
  5875. paws: {
  5876. height: math.unit(2.2, "feet"),
  5877. name: "Paws",
  5878. image: {
  5879. source: "./media/characters/sigvald/paws.svg"
  5880. }
  5881. }
  5882. },
  5883. [
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(8, "feet")
  5887. },
  5888. {
  5889. name: "Large",
  5890. height: math.unit(12, "feet")
  5891. },
  5892. {
  5893. name: "Larger",
  5894. height: math.unit(20, "feet")
  5895. },
  5896. {
  5897. name: "Macro",
  5898. height: math.unit(150, "feet")
  5899. },
  5900. {
  5901. name: "Macro+",
  5902. height: math.unit(200, "feet"),
  5903. default: true
  5904. },
  5905. ]
  5906. ))
  5907. characterMakers.push(() => makeCharacter(
  5908. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5909. {
  5910. side: {
  5911. height: math.unit(12, "feet"),
  5912. weight: math.unit(2000, "kg"),
  5913. name: "Side",
  5914. image: {
  5915. source: "./media/characters/scott/side.svg",
  5916. extra: 754 / 724,
  5917. bottom: 0.069
  5918. }
  5919. },
  5920. upright: {
  5921. height: math.unit(12, "feet"),
  5922. weight: math.unit(2000, "kg"),
  5923. name: "Upright",
  5924. image: {
  5925. source: "./media/characters/scott/upright.svg",
  5926. extra: 3881 / 3722,
  5927. bottom: 0.05
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(12, "feet"),
  5935. default: true
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5941. {
  5942. side: {
  5943. height: math.unit(8, "meters"),
  5944. weight: math.unit(84755, "lbs"),
  5945. name: "Side",
  5946. image: {
  5947. source: "./media/characters/tobias/side.svg",
  5948. extra: 1474 / 1096,
  5949. bottom: 38.9 / 1513.1235
  5950. }
  5951. },
  5952. },
  5953. [
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(8, "meters"),
  5957. default: true
  5958. },
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5963. {
  5964. front: {
  5965. height: math.unit(5.5, "feet"),
  5966. weight: math.unit(400, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/kieran/front.svg",
  5970. extra: 2694 / 2364,
  5971. bottom: 217 / 2908
  5972. }
  5973. },
  5974. side: {
  5975. height: math.unit(5.5, "feet"),
  5976. weight: math.unit(400, "lbs"),
  5977. name: "Side",
  5978. image: {
  5979. source: "./media/characters/kieran/side.svg",
  5980. extra: 875 / 777,
  5981. bottom: 84.6 / 959
  5982. }
  5983. },
  5984. },
  5985. [
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(5.5, "feet"),
  5989. default: true
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5995. {
  5996. side: {
  5997. height: math.unit(2, "meters"),
  5998. weight: math.unit(70, "kg"),
  5999. name: "Side",
  6000. image: {
  6001. source: "./media/characters/sanya/side.svg",
  6002. bottom: 0.02,
  6003. extra: 1.02
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Small",
  6010. height: math.unit(2, "meters")
  6011. },
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(3, "meters")
  6015. },
  6016. {
  6017. name: "Macro",
  6018. height: math.unit(16, "meters"),
  6019. default: true
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(2, "meters"),
  6028. weight: math.unit(120, "kg"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/miranda/front.svg",
  6032. extra: 195 / 185,
  6033. bottom: 10.9 / 206.5
  6034. }
  6035. },
  6036. back: {
  6037. height: math.unit(2, "meters"),
  6038. weight: math.unit(120, "kg"),
  6039. name: "Back",
  6040. image: {
  6041. source: "./media/characters/miranda/back.svg",
  6042. extra: 201 / 193,
  6043. bottom: 2.3 / 203.7
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(10, "feet"),
  6051. default: true
  6052. }
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "James", species: ["deer"], tags: ["anthro"] },
  6057. {
  6058. side: {
  6059. height: math.unit(2, "meters"),
  6060. weight: math.unit(100, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/james/front.svg",
  6064. extra: 10 / 8.5
  6065. }
  6066. },
  6067. },
  6068. [
  6069. {
  6070. name: "Normal",
  6071. height: math.unit(8.5, "feet"),
  6072. default: true
  6073. }
  6074. ]
  6075. ))
  6076. characterMakers.push(() => makeCharacter(
  6077. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6078. {
  6079. side: {
  6080. height: math.unit(9.5, "feet"),
  6081. weight: math.unit(2500, "lbs"),
  6082. name: "Side",
  6083. image: {
  6084. source: "./media/characters/heather/side.svg"
  6085. }
  6086. },
  6087. },
  6088. [
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(9.5, "feet"),
  6092. default: true
  6093. }
  6094. ]
  6095. ))
  6096. characterMakers.push(() => makeCharacter(
  6097. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6098. {
  6099. side: {
  6100. height: math.unit(6.5, "feet"),
  6101. weight: math.unit(400, "lbs"),
  6102. name: "Side",
  6103. image: {
  6104. source: "./media/characters/lukas/side.svg",
  6105. extra: 7.25 / 6.5
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(6.5, "feet"),
  6113. default: true
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6119. {
  6120. side: {
  6121. height: math.unit(5, "feet"),
  6122. weight: math.unit(3000, "lbs"),
  6123. name: "Side",
  6124. image: {
  6125. source: "./media/characters/louise/side.svg"
  6126. }
  6127. },
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(5, "feet"),
  6133. default: true
  6134. }
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6139. {
  6140. side: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(150, "lbs"),
  6143. name: "Side",
  6144. image: {
  6145. source: "./media/characters/ramona/side.svg",
  6146. extra: 871/854,
  6147. bottom: 41/912
  6148. }
  6149. },
  6150. },
  6151. [
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(6 + 4/12, "feet")
  6155. },
  6156. {
  6157. name: "Minimacro",
  6158. height: math.unit(5.3, "meters"),
  6159. default: true
  6160. },
  6161. {
  6162. name: "Macro",
  6163. height: math.unit(20, "stories")
  6164. },
  6165. {
  6166. name: "Macro+",
  6167. height: math.unit(50, "stories")
  6168. },
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6173. {
  6174. standing: {
  6175. height: math.unit(5.75, "feet"),
  6176. weight: math.unit(160, "lbs"),
  6177. name: "Standing",
  6178. image: {
  6179. source: "./media/characters/deerpuff/standing.svg",
  6180. extra: 682 / 624
  6181. }
  6182. },
  6183. sitting: {
  6184. height: math.unit(5.75 / 1.79, "feet"),
  6185. weight: math.unit(160, "lbs"),
  6186. name: "Sitting",
  6187. image: {
  6188. source: "./media/characters/deerpuff/sitting.svg",
  6189. bottom: 44 / 400,
  6190. extra: 1
  6191. }
  6192. },
  6193. taurLaying: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(400, "lbs"),
  6196. name: "Taur (Laying)",
  6197. image: {
  6198. source: "./media/characters/deerpuff/taur-laying.svg"
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Puffball",
  6205. height: math.unit(6, "inches")
  6206. },
  6207. {
  6208. name: "Normalpuff",
  6209. height: math.unit(5.75, "feet")
  6210. },
  6211. {
  6212. name: "Macropuff",
  6213. height: math.unit(1500, "feet"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Megapuff",
  6218. height: math.unit(500, "miles")
  6219. },
  6220. {
  6221. name: "Gigapuff",
  6222. height: math.unit(250000, "miles")
  6223. },
  6224. {
  6225. name: "Omegapuff",
  6226. height: math.unit(1000, "lightyears")
  6227. },
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6232. {
  6233. stomping: {
  6234. height: math.unit(6, "feet"),
  6235. weight: math.unit(170, "lbs"),
  6236. name: "Stomping",
  6237. image: {
  6238. source: "./media/characters/vivian/stomping.svg"
  6239. }
  6240. },
  6241. sitting: {
  6242. height: math.unit(6 / 1.75, "feet"),
  6243. weight: math.unit(170, "lbs"),
  6244. name: "Sitting",
  6245. image: {
  6246. source: "./media/characters/vivian/sitting.svg",
  6247. bottom: 1 / 6.4,
  6248. extra: 1,
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(7, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(10, "stories")
  6261. },
  6262. {
  6263. name: "Macro+",
  6264. height: math.unit(30, "stories")
  6265. },
  6266. {
  6267. name: "Megamacro",
  6268. height: math.unit(10, "miles")
  6269. },
  6270. {
  6271. name: "Megamacro+",
  6272. height: math.unit(2750000, "meters")
  6273. },
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(160, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/prince/front.svg",
  6285. extra: 1938/1682,
  6286. bottom: 45/1983
  6287. }
  6288. },
  6289. back: {
  6290. height: math.unit(6, "feet"),
  6291. weight: math.unit(160, "lbs"),
  6292. name: "Back",
  6293. image: {
  6294. source: "./media/characters/prince/back.svg",
  6295. extra: 1955/1726,
  6296. bottom: 6/1961
  6297. }
  6298. },
  6299. },
  6300. [
  6301. {
  6302. name: "Normal",
  6303. height: math.unit(7.75, "feet"),
  6304. default: true
  6305. },
  6306. {
  6307. name: "Not cute",
  6308. height: math.unit(17, "feet")
  6309. },
  6310. {
  6311. name: "I said NOT",
  6312. height: math.unit(91, "feet")
  6313. },
  6314. {
  6315. name: "Please stop",
  6316. height: math.unit(560, "feet")
  6317. },
  6318. {
  6319. name: "What have you done",
  6320. height: math.unit(2200, "feet")
  6321. },
  6322. {
  6323. name: "Deer God",
  6324. height: math.unit(3.6, "miles")
  6325. },
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6330. {
  6331. standing: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(300, "lbs"),
  6334. name: "Standing",
  6335. image: {
  6336. source: "./media/characters/psymon/standing.svg",
  6337. extra: 1888 / 1810,
  6338. bottom: 0.05
  6339. }
  6340. },
  6341. slithering: {
  6342. height: math.unit(6, "feet"),
  6343. weight: math.unit(300, "lbs"),
  6344. name: "Slithering",
  6345. image: {
  6346. source: "./media/characters/psymon/slithering.svg",
  6347. extra: 1330 / 1224
  6348. }
  6349. },
  6350. slitheringAlt: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(300, "lbs"),
  6353. name: "Slithering (Alt)",
  6354. image: {
  6355. source: "./media/characters/psymon/slithering-alt.svg",
  6356. extra: 1330 / 1224
  6357. }
  6358. },
  6359. },
  6360. [
  6361. {
  6362. name: "Normal",
  6363. height: math.unit(11.25, "feet"),
  6364. default: true
  6365. },
  6366. {
  6367. name: "Large",
  6368. height: math.unit(27, "feet")
  6369. },
  6370. {
  6371. name: "Giant",
  6372. height: math.unit(87, "feet")
  6373. },
  6374. {
  6375. name: "Macro",
  6376. height: math.unit(365, "feet")
  6377. },
  6378. {
  6379. name: "Megamacro",
  6380. height: math.unit(3, "miles")
  6381. },
  6382. {
  6383. name: "World Serpent",
  6384. height: math.unit(8000, "miles")
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(180, "lbs"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/daimos/front.svg",
  6397. extra: 4160 / 3897,
  6398. bottom: 0.021
  6399. }
  6400. }
  6401. },
  6402. [
  6403. {
  6404. name: "Normal",
  6405. height: math.unit(8, "feet"),
  6406. default: true
  6407. },
  6408. {
  6409. name: "Big Dog",
  6410. height: math.unit(22, "feet")
  6411. },
  6412. {
  6413. name: "Macro",
  6414. height: math.unit(127, "feet")
  6415. },
  6416. {
  6417. name: "Megamacro",
  6418. height: math.unit(3600, "feet")
  6419. },
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6424. {
  6425. side: {
  6426. height: math.unit(6, "feet"),
  6427. weight: math.unit(180, "lbs"),
  6428. name: "Side",
  6429. image: {
  6430. source: "./media/characters/blake/side.svg",
  6431. extra: 1212 / 1120,
  6432. bottom: 0.05
  6433. }
  6434. },
  6435. crouched: {
  6436. height: math.unit(6 * 0.57, "feet"),
  6437. weight: math.unit(180, "lbs"),
  6438. name: "Crouched",
  6439. image: {
  6440. source: "./media/characters/blake/crouched.svg",
  6441. extra: 840 / 587,
  6442. bottom: 0.04
  6443. }
  6444. },
  6445. bent: {
  6446. height: math.unit(6 * 0.75, "feet"),
  6447. weight: math.unit(180, "lbs"),
  6448. name: "Bent",
  6449. image: {
  6450. source: "./media/characters/blake/bent.svg",
  6451. extra: 592 / 544,
  6452. bottom: 0.035
  6453. }
  6454. },
  6455. },
  6456. [
  6457. {
  6458. name: "Normal",
  6459. height: math.unit(8 + 1 / 6, "feet"),
  6460. default: true
  6461. },
  6462. {
  6463. name: "Big Backside",
  6464. height: math.unit(37, "feet")
  6465. },
  6466. {
  6467. name: "Subway Shredder",
  6468. height: math.unit(72, "feet")
  6469. },
  6470. {
  6471. name: "City Carver",
  6472. height: math.unit(1675, "feet")
  6473. },
  6474. {
  6475. name: "Tectonic Tweaker",
  6476. height: math.unit(2300, "miles")
  6477. },
  6478. ]
  6479. ))
  6480. characterMakers.push(() => makeCharacter(
  6481. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6482. {
  6483. front: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(180, "lbs"),
  6486. name: "Front",
  6487. image: {
  6488. source: "./media/characters/guisetto/front.svg",
  6489. extra: 856 / 817,
  6490. bottom: 0.06
  6491. }
  6492. },
  6493. airborne: {
  6494. height: math.unit(6, "feet"),
  6495. weight: math.unit(180, "lbs"),
  6496. name: "Airborne",
  6497. image: {
  6498. source: "./media/characters/guisetto/airborne.svg",
  6499. extra: 584 / 525
  6500. }
  6501. },
  6502. },
  6503. [
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(10 + 11 / 12, "feet"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Large",
  6511. height: math.unit(35, "feet")
  6512. },
  6513. {
  6514. name: "Macro",
  6515. height: math.unit(475, "feet")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(180, "lbs"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/luxor/front.svg",
  6528. extra: 2940 / 2152
  6529. }
  6530. },
  6531. back: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(180, "lbs"),
  6534. name: "Back",
  6535. image: {
  6536. source: "./media/characters/luxor/back.svg",
  6537. extra: 1083 / 960
  6538. }
  6539. },
  6540. },
  6541. [
  6542. {
  6543. name: "Normal",
  6544. height: math.unit(5 + 5 / 6, "feet"),
  6545. default: true
  6546. },
  6547. {
  6548. name: "Lamp",
  6549. height: math.unit(50, "feet")
  6550. },
  6551. {
  6552. name: "Lämp",
  6553. height: math.unit(300, "feet")
  6554. },
  6555. {
  6556. name: "The sun is a lamp",
  6557. height: math.unit(250000, "miles")
  6558. },
  6559. ]
  6560. ))
  6561. characterMakers.push(() => makeCharacter(
  6562. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6563. {
  6564. front: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(50, "lbs"),
  6567. name: "Front",
  6568. image: {
  6569. source: "./media/characters/huoyan/front.svg"
  6570. }
  6571. },
  6572. side: {
  6573. height: math.unit(6, "feet"),
  6574. weight: math.unit(180, "lbs"),
  6575. name: "Side",
  6576. image: {
  6577. source: "./media/characters/huoyan/side.svg"
  6578. }
  6579. },
  6580. },
  6581. [
  6582. {
  6583. name: "Chef",
  6584. height: math.unit(9, "feet")
  6585. },
  6586. {
  6587. name: "Normal",
  6588. height: math.unit(65, "feet"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(780, "feet")
  6594. },
  6595. {
  6596. name: "Flaming Mountain",
  6597. height: math.unit(4.8, "miles")
  6598. },
  6599. {
  6600. name: "Celestial",
  6601. height: math.unit(765000, "miles")
  6602. },
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6607. {
  6608. front: {
  6609. height: math.unit(5 + 3 / 4, "feet"),
  6610. weight: math.unit(120, "lbs"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/tails/front.svg"
  6614. }
  6615. }
  6616. },
  6617. [
  6618. {
  6619. name: "Normal",
  6620. height: math.unit(5 + 3 / 4, "feet"),
  6621. default: true
  6622. }
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6627. {
  6628. front: {
  6629. height: math.unit(4, "feet"),
  6630. weight: math.unit(50, "lbs"),
  6631. name: "Front",
  6632. image: {
  6633. source: "./media/characters/rainy/front.svg"
  6634. }
  6635. }
  6636. },
  6637. [
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(800, "feet"),
  6641. default: true
  6642. }
  6643. ]
  6644. ))
  6645. characterMakers.push(() => makeCharacter(
  6646. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6647. {
  6648. front: {
  6649. height: math.unit(6, "feet"),
  6650. weight: math.unit(150, "lbs"),
  6651. name: "Front",
  6652. image: {
  6653. source: "./media/characters/rainier/front.svg"
  6654. }
  6655. }
  6656. },
  6657. [
  6658. {
  6659. name: "Micro",
  6660. height: math.unit(2, "mm"),
  6661. default: true
  6662. }
  6663. ]
  6664. ))
  6665. characterMakers.push(() => makeCharacter(
  6666. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6667. {
  6668. front: {
  6669. height: math.unit(8 + 4/12, "feet"),
  6670. weight: math.unit(450, "kilograms"),
  6671. volume: math.unit(5, "cups"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/andy-renard/front.svg",
  6675. extra: 1839/1726,
  6676. bottom: 134/1973
  6677. }
  6678. },
  6679. back: {
  6680. height: math.unit(8 + 4/12, "feet"),
  6681. weight: math.unit(450, "kilograms"),
  6682. volume: math.unit(5, "cups"),
  6683. name: "Back",
  6684. image: {
  6685. source: "./media/characters/andy-renard/back.svg",
  6686. extra: 1838/1710,
  6687. bottom: 105/1943
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Tall",
  6694. height: math.unit(8 + 4/12, "feet")
  6695. },
  6696. {
  6697. name: "Mini Macro",
  6698. height: math.unit(15, "feet"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Macro",
  6703. height: math.unit(100, "feet")
  6704. },
  6705. {
  6706. name: "Mega Macro",
  6707. height: math.unit(1000, "feet")
  6708. },
  6709. {
  6710. name: "Giga Macro",
  6711. height: math.unit(10, "miles")
  6712. },
  6713. {
  6714. name: "God Macro",
  6715. height: math.unit(1, "multiverse")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(210, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/cimmaron/front-sfw.svg",
  6728. extra: 701 / 676,
  6729. bottom: 0.046
  6730. }
  6731. },
  6732. back: {
  6733. height: math.unit(6, "feet"),
  6734. weight: math.unit(210, "lbs"),
  6735. name: "Back",
  6736. image: {
  6737. source: "./media/characters/cimmaron/back-sfw.svg",
  6738. extra: 701 / 676,
  6739. bottom: 0.046
  6740. }
  6741. },
  6742. frontNsfw: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(210, "lbs"),
  6745. name: "Front (NSFW)",
  6746. image: {
  6747. source: "./media/characters/cimmaron/front-nsfw.svg",
  6748. extra: 701 / 676,
  6749. bottom: 0.046
  6750. }
  6751. },
  6752. backNsfw: {
  6753. height: math.unit(6, "feet"),
  6754. weight: math.unit(210, "lbs"),
  6755. name: "Back (NSFW)",
  6756. image: {
  6757. source: "./media/characters/cimmaron/back-nsfw.svg",
  6758. extra: 701 / 676,
  6759. bottom: 0.046
  6760. }
  6761. },
  6762. dick: {
  6763. height: math.unit(1.714, "feet"),
  6764. name: "Dick",
  6765. image: {
  6766. source: "./media/characters/cimmaron/dick.svg"
  6767. }
  6768. },
  6769. },
  6770. [
  6771. {
  6772. name: "Normal",
  6773. height: math.unit(6, "feet"),
  6774. default: true
  6775. },
  6776. {
  6777. name: "Macro Mayor",
  6778. height: math.unit(350, "meters")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6784. {
  6785. front: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(200, "lbs"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/akari/front.svg",
  6791. extra: 962 / 901,
  6792. bottom: 0.04
  6793. }
  6794. }
  6795. },
  6796. [
  6797. {
  6798. name: "Micro",
  6799. height: math.unit(5, "inches"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Normal",
  6804. height: math.unit(7, "feet")
  6805. },
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(140, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/cynosura/front.svg",
  6817. extra: 437/410,
  6818. bottom: 9/446
  6819. }
  6820. },
  6821. back: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(140, "lbs"),
  6824. name: "Back",
  6825. image: {
  6826. source: "./media/characters/cynosura/back.svg",
  6827. extra: 1304/1160,
  6828. bottom: 71/1375
  6829. }
  6830. },
  6831. },
  6832. [
  6833. {
  6834. name: "Micro",
  6835. height: math.unit(4, "inches")
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(5.75, "feet"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Tall",
  6844. height: math.unit(10, "feet")
  6845. },
  6846. {
  6847. name: "Big",
  6848. height: math.unit(20, "feet")
  6849. },
  6850. {
  6851. name: "Macro",
  6852. height: math.unit(50, "feet")
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(13 + 2/12, "feet"),
  6861. weight: math.unit(800, "kg"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/gin/front.svg",
  6865. extra: 1312/1191,
  6866. bottom: 45/1357
  6867. }
  6868. },
  6869. mouth: {
  6870. height: math.unit(2.39 * 1.8, "feet"),
  6871. name: "Mouth",
  6872. image: {
  6873. source: "./media/characters/gin/mouth.svg"
  6874. }
  6875. },
  6876. hand: {
  6877. height: math.unit(1.57 * 2.19, "feet"),
  6878. name: "Hand",
  6879. image: {
  6880. source: "./media/characters/gin/hand.svg"
  6881. }
  6882. },
  6883. foot: {
  6884. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6885. name: "Foot",
  6886. image: {
  6887. source: "./media/characters/gin/foot.svg"
  6888. }
  6889. },
  6890. sole: {
  6891. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6892. name: "Sole",
  6893. image: {
  6894. source: "./media/characters/gin/sole.svg"
  6895. }
  6896. },
  6897. },
  6898. [
  6899. {
  6900. name: "Very Small",
  6901. height: math.unit(13 + 2 / 12, "feet")
  6902. },
  6903. {
  6904. name: "Micro",
  6905. height: math.unit(600, "miles")
  6906. },
  6907. {
  6908. name: "Regular",
  6909. height: math.unit(20, "earths"),
  6910. default: true
  6911. },
  6912. {
  6913. name: "Macro",
  6914. height: math.unit(2.2, "solarradii")
  6915. },
  6916. {
  6917. name: "Teramacro",
  6918. height: math.unit(1.2, "galaxies")
  6919. },
  6920. {
  6921. name: "Omegamacro",
  6922. height: math.unit(200, "universes")
  6923. },
  6924. ]
  6925. ))
  6926. characterMakers.push(() => makeCharacter(
  6927. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6928. {
  6929. front: {
  6930. height: math.unit(6 + 1 / 6, "feet"),
  6931. weight: math.unit(178, "lbs"),
  6932. name: "Front",
  6933. image: {
  6934. source: "./media/characters/guy/front.svg"
  6935. }
  6936. }
  6937. },
  6938. [
  6939. {
  6940. name: "Normal",
  6941. height: math.unit(6 + 1 / 6, "feet"),
  6942. default: true
  6943. },
  6944. {
  6945. name: "Large",
  6946. height: math.unit(25 + 7 / 12, "feet")
  6947. },
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(60 + 9 / 12, "feet")
  6951. },
  6952. {
  6953. name: "Macro+",
  6954. height: math.unit(246, "feet")
  6955. },
  6956. {
  6957. name: "Macro++",
  6958. height: math.unit(878, "feet")
  6959. }
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(9, "feet"),
  6967. weight: math.unit(800, "lbs"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/tiberius/front.svg",
  6971. extra: 2295 / 2071
  6972. }
  6973. },
  6974. back: {
  6975. height: math.unit(9, "feet"),
  6976. weight: math.unit(800, "lbs"),
  6977. name: "Back",
  6978. image: {
  6979. source: "./media/characters/tiberius/back.svg",
  6980. extra: 2373 / 2160
  6981. }
  6982. },
  6983. },
  6984. [
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(9, "feet"),
  6988. default: true
  6989. }
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6994. {
  6995. front: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(600, "lbs"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/surgo/front.svg",
  7001. extra: 3591 / 2227
  7002. }
  7003. },
  7004. back: {
  7005. height: math.unit(6, "feet"),
  7006. weight: math.unit(600, "lbs"),
  7007. name: "Back",
  7008. image: {
  7009. source: "./media/characters/surgo/back.svg",
  7010. extra: 3557 / 2228
  7011. }
  7012. },
  7013. laying: {
  7014. height: math.unit(6 * 0.85, "feet"),
  7015. weight: math.unit(600, "lbs"),
  7016. name: "Laying",
  7017. image: {
  7018. source: "./media/characters/surgo/laying.svg"
  7019. }
  7020. },
  7021. },
  7022. [
  7023. {
  7024. name: "Normal",
  7025. height: math.unit(6, "feet"),
  7026. default: true
  7027. }
  7028. ]
  7029. ))
  7030. characterMakers.push(() => makeCharacter(
  7031. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7032. {
  7033. side: {
  7034. height: math.unit(6, "feet"),
  7035. weight: math.unit(150, "lbs"),
  7036. name: "Side",
  7037. image: {
  7038. source: "./media/characters/cibus/side.svg",
  7039. extra: 800 / 400
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(6, "feet"),
  7047. default: true
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(240, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/nibbles/front.svg"
  7060. }
  7061. },
  7062. side: {
  7063. height: math.unit(6, "feet"),
  7064. weight: math.unit(240, "lbs"),
  7065. name: "Side",
  7066. image: {
  7067. source: "./media/characters/nibbles/side.svg"
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(9, "feet"),
  7075. default: true
  7076. }
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7081. {
  7082. side: {
  7083. height: math.unit(5 + 1 / 6, "feet"),
  7084. weight: math.unit(130, "lbs"),
  7085. name: "Side",
  7086. image: {
  7087. source: "./media/characters/rikky/side.svg",
  7088. extra: 851 / 801
  7089. }
  7090. },
  7091. },
  7092. [
  7093. {
  7094. name: "Normal",
  7095. height: math.unit(5 + 1 / 6, "feet")
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(152, "feet"),
  7100. default: true
  7101. },
  7102. {
  7103. name: "Megamacro",
  7104. height: math.unit(7, "miles")
  7105. }
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7110. {
  7111. side: {
  7112. height: math.unit(370, "cm"),
  7113. weight: math.unit(350, "lbs"),
  7114. name: "Side",
  7115. image: {
  7116. source: "./media/characters/malfressa/side.svg"
  7117. }
  7118. },
  7119. walking: {
  7120. height: math.unit(370, "cm"),
  7121. weight: math.unit(350, "lbs"),
  7122. name: "Walking",
  7123. image: {
  7124. source: "./media/characters/malfressa/walking.svg"
  7125. }
  7126. },
  7127. feral: {
  7128. height: math.unit(2500, "cm"),
  7129. weight: math.unit(100000, "lbs"),
  7130. name: "Feral",
  7131. image: {
  7132. source: "./media/characters/malfressa/feral.svg",
  7133. extra: 2108 / 837,
  7134. bottom: 0.02
  7135. }
  7136. },
  7137. },
  7138. [
  7139. {
  7140. name: "Normal",
  7141. height: math.unit(370, "cm")
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(300, "meters"),
  7146. default: true
  7147. }
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(6, "feet"),
  7155. weight: math.unit(60, "kg"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/jaro/front.svg",
  7159. extra: 845/817,
  7160. bottom: 45/890
  7161. }
  7162. },
  7163. back: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(60, "kg"),
  7166. name: "Back",
  7167. image: {
  7168. source: "./media/characters/jaro/back.svg",
  7169. extra: 847/817,
  7170. bottom: 34/881
  7171. }
  7172. },
  7173. },
  7174. [
  7175. {
  7176. name: "Micro",
  7177. height: math.unit(7, "inches")
  7178. },
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(5.5, "feet"),
  7182. default: true
  7183. },
  7184. {
  7185. name: "Minimacro",
  7186. height: math.unit(20, "feet")
  7187. },
  7188. {
  7189. name: "Macro",
  7190. height: math.unit(200, "meters")
  7191. }
  7192. ]
  7193. ))
  7194. characterMakers.push(() => makeCharacter(
  7195. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7196. {
  7197. front: {
  7198. height: math.unit(6, "feet"),
  7199. weight: math.unit(195, "lb"),
  7200. name: "Front",
  7201. image: {
  7202. source: "./media/characters/rogue/front.svg"
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(90, "feet"),
  7210. default: true
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7216. {
  7217. standing: {
  7218. height: math.unit(5 + 8 / 12, "feet"),
  7219. weight: math.unit(140, "lb"),
  7220. name: "Standing",
  7221. image: {
  7222. source: "./media/characters/piper/standing.svg",
  7223. extra: 1440/1284,
  7224. bottom: 66/1506
  7225. }
  7226. },
  7227. running: {
  7228. height: math.unit(5 + 8 / 12, "feet"),
  7229. weight: math.unit(140, "lb"),
  7230. name: "Running",
  7231. image: {
  7232. source: "./media/characters/piper/running.svg",
  7233. extra: 3948/3655,
  7234. bottom: 0/3948
  7235. }
  7236. },
  7237. sole: {
  7238. height: math.unit(0.81, "feet"),
  7239. weight: math.unit(2, "kg"),
  7240. name: "Sole",
  7241. image: {
  7242. source: "./media/characters/piper/sole.svg"
  7243. }
  7244. },
  7245. nipple: {
  7246. height: math.unit(0.25, "feet"),
  7247. weight: math.unit(1.5, "lb"),
  7248. name: "Nipple",
  7249. image: {
  7250. source: "./media/characters/piper/nipple.svg"
  7251. }
  7252. },
  7253. head: {
  7254. height: math.unit(1.1, "feet"),
  7255. name: "Head",
  7256. image: {
  7257. source: "./media/characters/piper/head.svg"
  7258. }
  7259. },
  7260. },
  7261. [
  7262. {
  7263. name: "Micro",
  7264. height: math.unit(2, "inches")
  7265. },
  7266. {
  7267. name: "Normal",
  7268. height: math.unit(5 + 8 / 12, "feet")
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(250, "feet"),
  7273. default: true
  7274. },
  7275. {
  7276. name: "Megamacro",
  7277. height: math.unit(7, "miles")
  7278. },
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(220, "lb"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/gemini/front.svg"
  7290. }
  7291. },
  7292. back: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(220, "lb"),
  7295. name: "Back",
  7296. image: {
  7297. source: "./media/characters/gemini/back.svg"
  7298. }
  7299. },
  7300. kneeling: {
  7301. height: math.unit(6 / 1.5, "feet"),
  7302. weight: math.unit(220, "lb"),
  7303. name: "Kneeling",
  7304. image: {
  7305. source: "./media/characters/gemini/kneeling.svg",
  7306. bottom: 0.02
  7307. }
  7308. },
  7309. },
  7310. [
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(300, "meters"),
  7314. default: true
  7315. },
  7316. {
  7317. name: "Megamacro",
  7318. height: math.unit(6900, "meters")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7324. {
  7325. anthro: {
  7326. height: math.unit(2.35, "meters"),
  7327. weight: math.unit(73, "kg"),
  7328. name: "Anthro",
  7329. image: {
  7330. source: "./media/characters/alicia/anthro.svg",
  7331. extra: 2571 / 2385,
  7332. bottom: 75 / 2648
  7333. }
  7334. },
  7335. paw: {
  7336. height: math.unit(1.32, "feet"),
  7337. name: "Paw",
  7338. image: {
  7339. source: "./media/characters/alicia/paw.svg"
  7340. }
  7341. },
  7342. feral: {
  7343. height: math.unit(1.69, "meters"),
  7344. weight: math.unit(73, "kg"),
  7345. name: "Feral",
  7346. image: {
  7347. source: "./media/characters/alicia/feral.svg",
  7348. extra: 2123 / 1715,
  7349. bottom: 222 / 2349
  7350. }
  7351. },
  7352. },
  7353. [
  7354. {
  7355. name: "Normal",
  7356. height: math.unit(2.35, "meters")
  7357. },
  7358. {
  7359. name: "Macro",
  7360. height: math.unit(60, "meters"),
  7361. default: true
  7362. },
  7363. {
  7364. name: "Megamacro",
  7365. height: math.unit(10000, "kilometers")
  7366. },
  7367. ]
  7368. ))
  7369. characterMakers.push(() => makeCharacter(
  7370. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7371. {
  7372. front: {
  7373. height: math.unit(7, "feet"),
  7374. weight: math.unit(250, "lbs"),
  7375. name: "Front",
  7376. image: {
  7377. source: "./media/characters/archy/front.svg"
  7378. }
  7379. }
  7380. },
  7381. [
  7382. {
  7383. name: "Micro",
  7384. height: math.unit(1, "inch")
  7385. },
  7386. {
  7387. name: "Shorty",
  7388. height: math.unit(5, "feet")
  7389. },
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(7, "feet")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(600, "meters"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(1, "mile")
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(1.65, "meters"),
  7410. weight: math.unit(74, "kg"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/berri/front.svg",
  7414. extra: 857 / 837,
  7415. bottom: 18 / 877
  7416. }
  7417. },
  7418. bum: {
  7419. height: math.unit(1.46, "feet"),
  7420. name: "Bum",
  7421. image: {
  7422. source: "./media/characters/berri/bum.svg"
  7423. }
  7424. },
  7425. mouth: {
  7426. height: math.unit(0.44, "feet"),
  7427. name: "Mouth",
  7428. image: {
  7429. source: "./media/characters/berri/mouth.svg"
  7430. }
  7431. },
  7432. paw: {
  7433. height: math.unit(0.826, "feet"),
  7434. name: "Paw",
  7435. image: {
  7436. source: "./media/characters/berri/paw.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(1.65, "meters")
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(60, "m"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Megamacro",
  7452. height: math.unit(9.213, "km")
  7453. },
  7454. {
  7455. name: "Planet Eater",
  7456. height: math.unit(489, "megameters")
  7457. },
  7458. {
  7459. name: "Teramacro",
  7460. height: math.unit(2471635000000, "meters")
  7461. },
  7462. {
  7463. name: "Examacro",
  7464. height: math.unit(8.0624e+26, "meters")
  7465. }
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7470. {
  7471. front: {
  7472. height: math.unit(1.72, "meters"),
  7473. weight: math.unit(68, "kg"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/lexi/front.svg"
  7477. }
  7478. }
  7479. },
  7480. [
  7481. {
  7482. name: "Very Smol",
  7483. height: math.unit(10, "mm")
  7484. },
  7485. {
  7486. name: "Micro",
  7487. height: math.unit(6.8, "cm"),
  7488. default: true
  7489. },
  7490. {
  7491. name: "Normal",
  7492. height: math.unit(1.72, "m")
  7493. }
  7494. ]
  7495. ))
  7496. characterMakers.push(() => makeCharacter(
  7497. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7498. {
  7499. front: {
  7500. height: math.unit(1.69, "meters"),
  7501. weight: math.unit(68, "kg"),
  7502. name: "Front",
  7503. image: {
  7504. source: "./media/characters/martin/front.svg",
  7505. extra: 596 / 581
  7506. }
  7507. }
  7508. },
  7509. [
  7510. {
  7511. name: "Micro",
  7512. height: math.unit(6.85, "cm"),
  7513. default: true
  7514. },
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(1.69, "m")
  7518. }
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(1.69, "meters"),
  7526. weight: math.unit(68, "kg"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/juno/front.svg"
  7530. }
  7531. }
  7532. },
  7533. [
  7534. {
  7535. name: "Micro",
  7536. height: math.unit(7, "cm")
  7537. },
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(1.89, "m")
  7541. },
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(353, "meters"),
  7545. default: true
  7546. }
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7551. {
  7552. front: {
  7553. height: math.unit(1.93, "meters"),
  7554. weight: math.unit(83, "kg"),
  7555. name: "Front",
  7556. image: {
  7557. source: "./media/characters/samantha/front.svg"
  7558. }
  7559. },
  7560. frontClothed: {
  7561. height: math.unit(1.93, "meters"),
  7562. weight: math.unit(83, "kg"),
  7563. name: "Front (Clothed)",
  7564. image: {
  7565. source: "./media/characters/samantha/front-clothed.svg"
  7566. }
  7567. },
  7568. back: {
  7569. height: math.unit(1.93, "meters"),
  7570. weight: math.unit(83, "kg"),
  7571. name: "Back",
  7572. image: {
  7573. source: "./media/characters/samantha/back.svg"
  7574. }
  7575. },
  7576. },
  7577. [
  7578. {
  7579. name: "Normal",
  7580. height: math.unit(1.93, "m")
  7581. },
  7582. {
  7583. name: "Macro",
  7584. height: math.unit(74, "meters"),
  7585. default: true
  7586. },
  7587. {
  7588. name: "Macro+",
  7589. height: math.unit(223, "meters"),
  7590. },
  7591. {
  7592. name: "Megamacro",
  7593. height: math.unit(8381, "meters"),
  7594. },
  7595. {
  7596. name: "Megamacro+",
  7597. height: math.unit(12000, "kilometers")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(1.92, "meters"),
  7606. weight: math.unit(80, "kg"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/dr-clay/front.svg"
  7610. }
  7611. },
  7612. frontClothed: {
  7613. height: math.unit(1.92, "meters"),
  7614. weight: math.unit(80, "kg"),
  7615. name: "Front (Clothed)",
  7616. image: {
  7617. source: "./media/characters/dr-clay/front-clothed.svg"
  7618. }
  7619. }
  7620. },
  7621. [
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(1.92, "m")
  7625. },
  7626. {
  7627. name: "Macro",
  7628. height: math.unit(214, "meters"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Macro+",
  7633. height: math.unit(12.237, "meters"),
  7634. },
  7635. {
  7636. name: "Megamacro",
  7637. height: math.unit(557, "megameters"),
  7638. },
  7639. {
  7640. name: "Unimaginable",
  7641. height: math.unit(120e9, "lightyears")
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(2, "meters"),
  7650. weight: math.unit(80, "kg"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Teramacro",
  7660. height: math.unit(500000, "lightyears"),
  7661. default: true
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7667. {
  7668. crux: {
  7669. height: math.unit(2, "meters"),
  7670. weight: math.unit(150, "kg"),
  7671. name: "Crux",
  7672. image: {
  7673. source: "./media/characters/vemus/crux.svg",
  7674. extra: 1074/936,
  7675. bottom: 23/1097
  7676. }
  7677. },
  7678. skunkTanuki: {
  7679. height: math.unit(2, "meters"),
  7680. weight: math.unit(150, "kg"),
  7681. name: "Skunk-Tanuki",
  7682. image: {
  7683. source: "./media/characters/vemus/skunk-tanuki.svg",
  7684. extra: 926/893,
  7685. bottom: 20/946
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(4, "meters"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "Big",
  7697. height: math.unit(8, "meters")
  7698. },
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(100, "meters")
  7702. },
  7703. {
  7704. name: "Macro+",
  7705. height: math.unit(1500, "meters")
  7706. },
  7707. {
  7708. name: "Stellar",
  7709. height: math.unit(14e8, "meters")
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(2, "meters"),
  7718. weight: math.unit(70, "kg"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/beherit/front.svg",
  7722. extra: 1234/1109,
  7723. bottom: 55/1289
  7724. }
  7725. }
  7726. },
  7727. [
  7728. {
  7729. name: "Normal",
  7730. height: math.unit(6, "feet")
  7731. },
  7732. {
  7733. name: "Lorg",
  7734. height: math.unit(25, "feet"),
  7735. default: true
  7736. },
  7737. {
  7738. name: "Lorger",
  7739. height: math.unit(75, "feet")
  7740. },
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(200, "meters")
  7744. },
  7745. ]
  7746. ))
  7747. characterMakers.push(() => makeCharacter(
  7748. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7749. {
  7750. front: {
  7751. height: math.unit(2, "meters"),
  7752. weight: math.unit(150, "kg"),
  7753. name: "Front",
  7754. image: {
  7755. source: "./media/characters/everett/front.svg",
  7756. extra: 1017/866,
  7757. bottom: 86/1103
  7758. }
  7759. },
  7760. paw: {
  7761. height: math.unit(2 / 3.6, "meters"),
  7762. name: "Paw",
  7763. image: {
  7764. source: "./media/characters/everett/paw.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(15, "feet"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Lorg",
  7776. height: math.unit(70, "feet"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Lorger",
  7781. height: math.unit(250, "feet")
  7782. },
  7783. {
  7784. name: "Macro",
  7785. height: math.unit(500, "meters")
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(2, "meters"),
  7794. weight: math.unit(86, "kg"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/rose/front.svg",
  7798. extra: 1785/1636,
  7799. bottom: 30/1815
  7800. },
  7801. form: "liom",
  7802. default: true
  7803. },
  7804. frontSporty: {
  7805. height: math.unit(2, "meters"),
  7806. weight: math.unit(86, "kg"),
  7807. name: "Front (Sporty)",
  7808. image: {
  7809. source: "./media/characters/rose/front-sporty.svg",
  7810. extra: 350/335,
  7811. bottom: 10/360
  7812. },
  7813. form: "liom"
  7814. },
  7815. frontAlt: {
  7816. height: math.unit(1.6, "meters"),
  7817. weight: math.unit(86, "kg"),
  7818. name: "Front (Alt)",
  7819. image: {
  7820. source: "./media/characters/rose/front-alt.svg",
  7821. extra: 299/283,
  7822. bottom: 3/302
  7823. },
  7824. form: "liom"
  7825. },
  7826. plush: {
  7827. height: math.unit(2, "meters"),
  7828. weight: math.unit(86/3, "kg"),
  7829. name: "Plush",
  7830. image: {
  7831. source: "./media/characters/rose/plush.svg",
  7832. extra: 361/337,
  7833. bottom: 11/372
  7834. },
  7835. form: "plush",
  7836. default: true
  7837. },
  7838. faeStanding: {
  7839. height: math.unit(10, "cm"),
  7840. weight: math.unit(10, "grams"),
  7841. name: "Standing",
  7842. image: {
  7843. source: "./media/characters/rose/fae-standing.svg",
  7844. extra: 1189/1060,
  7845. bottom: 27/1216
  7846. },
  7847. form: "fae",
  7848. default: true
  7849. },
  7850. faeSitting: {
  7851. height: math.unit(5, "cm"),
  7852. weight: math.unit(10, "grams"),
  7853. name: "Sitting",
  7854. image: {
  7855. source: "./media/characters/rose/fae-sitting.svg",
  7856. extra: 737/577,
  7857. bottom: 356/1093
  7858. },
  7859. form: "fae"
  7860. },
  7861. faePaw: {
  7862. height: math.unit(1.35, "cm"),
  7863. name: "Paw",
  7864. image: {
  7865. source: "./media/characters/rose/fae-paw.svg"
  7866. },
  7867. form: "fae"
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "True Micro",
  7873. height: math.unit(9, "cm"),
  7874. form: "liom"
  7875. },
  7876. {
  7877. name: "Micro",
  7878. height: math.unit(16, "cm"),
  7879. form: "liom"
  7880. },
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(1.85, "meters"),
  7884. default: true,
  7885. form: "liom"
  7886. },
  7887. {
  7888. name: "Mini-Macro",
  7889. height: math.unit(5, "meters"),
  7890. form: "liom"
  7891. },
  7892. {
  7893. name: "Macro",
  7894. height: math.unit(15, "meters"),
  7895. form: "liom"
  7896. },
  7897. {
  7898. name: "True Macro",
  7899. height: math.unit(40, "meters"),
  7900. form: "liom"
  7901. },
  7902. {
  7903. name: "City Scale",
  7904. height: math.unit(1, "km"),
  7905. form: "liom"
  7906. },
  7907. {
  7908. name: "Plushie",
  7909. height: math.unit(9, "cm"),
  7910. form: "plush",
  7911. default: true
  7912. },
  7913. {
  7914. name: "Fae",
  7915. height: math.unit(10, "cm"),
  7916. form: "fae",
  7917. default: true
  7918. },
  7919. ],
  7920. {
  7921. "liom": {
  7922. name: "Liom"
  7923. },
  7924. "plush": {
  7925. name: "Plush"
  7926. },
  7927. "fae": {
  7928. name: "Fae Fox",
  7929. default: true
  7930. }
  7931. }
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(2, "meters"),
  7938. weight: math.unit(350, "lbs"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/regal/front.svg"
  7942. }
  7943. },
  7944. back: {
  7945. height: math.unit(2, "meters"),
  7946. weight: math.unit(350, "lbs"),
  7947. name: "Back",
  7948. image: {
  7949. source: "./media/characters/regal/back.svg"
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Macro",
  7956. height: math.unit(350, "feet"),
  7957. default: true
  7958. }
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7963. {
  7964. front: {
  7965. height: math.unit(4 + 11 / 12, "feet"),
  7966. weight: math.unit(100, "lbs"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/opal/front.svg"
  7970. }
  7971. },
  7972. frontAlt: {
  7973. height: math.unit(4 + 11 / 12, "feet"),
  7974. weight: math.unit(100, "lbs"),
  7975. name: "Front (Alt)",
  7976. image: {
  7977. source: "./media/characters/opal/front-alt.svg"
  7978. }
  7979. },
  7980. },
  7981. [
  7982. {
  7983. name: "Small",
  7984. height: math.unit(4 + 11 / 12, "feet")
  7985. },
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(20, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(120, "feet")
  7994. },
  7995. {
  7996. name: "Megamacro",
  7997. height: math.unit(80, "miles")
  7998. },
  7999. {
  8000. name: "True Size",
  8001. height: math.unit(100000, "lightyears")
  8002. },
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8007. {
  8008. front: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(200, "lbs"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/vector-wuff/front.svg"
  8014. }
  8015. }
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(2.8, "meters")
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(450, "meters"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Megamacro",
  8029. height: math.unit(15, "kilometers")
  8030. }
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(256, "lbs"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/dannik/front.svg"
  8042. }
  8043. }
  8044. },
  8045. [
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(69.57, "meters"),
  8049. default: true
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(120, "lbs"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/azura-saharah/front.svg"
  8062. }
  8063. },
  8064. back: {
  8065. height: math.unit(6, "feet"),
  8066. weight: math.unit(120, "lbs"),
  8067. name: "Back",
  8068. image: {
  8069. source: "./media/characters/azura-saharah/back.svg"
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(100, "feet"),
  8077. default: true
  8078. },
  8079. ]
  8080. ))
  8081. characterMakers.push(() => makeCharacter(
  8082. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8083. {
  8084. side: {
  8085. height: math.unit(5 + 4 / 12, "feet"),
  8086. weight: math.unit(163, "lbs"),
  8087. name: "Side",
  8088. image: {
  8089. source: "./media/characters/kennedy/side.svg"
  8090. }
  8091. }
  8092. },
  8093. [
  8094. {
  8095. name: "Standard Doggo",
  8096. height: math.unit(5 + 4 / 12, "feet")
  8097. },
  8098. {
  8099. name: "Big Doggo",
  8100. height: math.unit(25 + 3 / 12, "feet"),
  8101. default: true
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(5 + 5/12, "feet"),
  8110. weight: math.unit(100, "lbs"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/odios-de-lunar/front.svg",
  8114. extra: 1468/1323,
  8115. bottom: 22/1490
  8116. }
  8117. }
  8118. },
  8119. [
  8120. {
  8121. name: "Micro",
  8122. height: math.unit(3, "inches")
  8123. },
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(5.5, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(100, "feet")
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8137. {
  8138. back: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(220, "lbs"),
  8141. name: "Back",
  8142. image: {
  8143. source: "./media/characters/mandake/back.svg"
  8144. }
  8145. }
  8146. },
  8147. [
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(7, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(78, "feet")
  8156. },
  8157. {
  8158. name: "Macro+",
  8159. height: math.unit(300, "meters")
  8160. },
  8161. {
  8162. name: "Macro++",
  8163. height: math.unit(2400, "feet")
  8164. },
  8165. {
  8166. name: "Megamacro",
  8167. height: math.unit(5167, "meters")
  8168. },
  8169. {
  8170. name: "Gigamacro",
  8171. height: math.unit(41769, "miles")
  8172. },
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8177. {
  8178. front: {
  8179. height: math.unit(6, "feet"),
  8180. weight: math.unit(120, "lbs"),
  8181. name: "Front",
  8182. image: {
  8183. source: "./media/characters/yozey/front.svg"
  8184. }
  8185. },
  8186. frontAlt: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(120, "lbs"),
  8189. name: "Front (Alt)",
  8190. image: {
  8191. source: "./media/characters/yozey/front-alt.svg"
  8192. }
  8193. },
  8194. side: {
  8195. height: math.unit(6, "feet"),
  8196. weight: math.unit(120, "lbs"),
  8197. name: "Side",
  8198. image: {
  8199. source: "./media/characters/yozey/side.svg"
  8200. }
  8201. },
  8202. },
  8203. [
  8204. {
  8205. name: "Micro",
  8206. height: math.unit(3, "inches"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(6, "feet")
  8212. }
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(6, "feet"),
  8220. weight: math.unit(103, "lbs"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/valeska-voss/front.svg"
  8224. }
  8225. }
  8226. },
  8227. [
  8228. {
  8229. name: "Mini-Sized Sub",
  8230. height: math.unit(3.1, "inches")
  8231. },
  8232. {
  8233. name: "Mid-Sized Sub",
  8234. height: math.unit(6.2, "inches")
  8235. },
  8236. {
  8237. name: "Full-Sized Sub",
  8238. height: math.unit(9.3, "inches")
  8239. },
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(5 + 2 / 12, "foot"),
  8243. default: true
  8244. },
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(6, "feet"),
  8252. weight: math.unit(160, "lbs"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/gene-zeta/front.svg",
  8256. extra: 3006 / 2826,
  8257. bottom: 182 / 3188
  8258. }
  8259. }
  8260. },
  8261. [
  8262. {
  8263. name: "Micro",
  8264. height: math.unit(6, "inches")
  8265. },
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(5 + 11 / 12, "foot"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "Macro",
  8273. height: math.unit(140, "feet")
  8274. },
  8275. {
  8276. name: "Supercharged",
  8277. height: math.unit(2500, "feet")
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8283. {
  8284. front: {
  8285. height: math.unit(6, "feet"),
  8286. weight: math.unit(350, "lbs"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/razinox/front.svg",
  8290. extra: 1686 / 1548,
  8291. bottom: 28.2 / 1868
  8292. }
  8293. },
  8294. back: {
  8295. height: math.unit(6, "feet"),
  8296. weight: math.unit(350, "lbs"),
  8297. name: "Back",
  8298. image: {
  8299. source: "./media/characters/razinox/back.svg",
  8300. extra: 1660 / 1590,
  8301. bottom: 15 / 1665
  8302. }
  8303. },
  8304. },
  8305. [
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(10 + 8 / 12, "foot")
  8309. },
  8310. {
  8311. name: "Minimacro",
  8312. height: math.unit(15, "foot")
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(60, "foot"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "Megamacro",
  8321. height: math.unit(5, "miles")
  8322. },
  8323. {
  8324. name: "Gigamacro",
  8325. height: math.unit(6000, "miles")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(6, "feet"),
  8334. weight: math.unit(150, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/cobalt/front.svg"
  8338. }
  8339. }
  8340. },
  8341. [
  8342. {
  8343. name: "Normal",
  8344. height: math.unit(8 + 1 / 12, "foot")
  8345. },
  8346. {
  8347. name: "Macro",
  8348. height: math.unit(111, "foot"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Supracosmic",
  8353. height: math.unit(1e42, "feet")
  8354. },
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8359. {
  8360. front: {
  8361. height: math.unit(5, "inches"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/amanda/front.svg",
  8365. extra: 926/791,
  8366. bottom: 38/964
  8367. }
  8368. },
  8369. back: {
  8370. height: math.unit(5, "inches"),
  8371. name: "Back",
  8372. image: {
  8373. source: "./media/characters/amanda/back.svg",
  8374. extra: 909/805,
  8375. bottom: 43/952
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Micro",
  8382. height: math.unit(5, "inches"),
  8383. default: true
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(2.75, "meters"),
  8392. weight: math.unit(1200, "lb"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/teal/front.svg",
  8396. extra: 2463 / 2320,
  8397. bottom: 166 / 2629
  8398. }
  8399. },
  8400. back: {
  8401. height: math.unit(2.75, "meters"),
  8402. weight: math.unit(1200, "lb"),
  8403. name: "Back",
  8404. image: {
  8405. source: "./media/characters/teal/back.svg",
  8406. extra: 2580 / 2489,
  8407. bottom: 151 / 2731
  8408. }
  8409. },
  8410. sitting: {
  8411. height: math.unit(1.9, "meters"),
  8412. weight: math.unit(1200, "lb"),
  8413. name: "Sitting",
  8414. image: {
  8415. source: "./media/characters/teal/sitting.svg",
  8416. extra: 623 / 590,
  8417. bottom: 121 / 744
  8418. }
  8419. },
  8420. standing: {
  8421. height: math.unit(2.75, "meters"),
  8422. weight: math.unit(1200, "lb"),
  8423. name: "Standing",
  8424. image: {
  8425. source: "./media/characters/teal/standing.svg",
  8426. extra: 923 / 893,
  8427. bottom: 60 / 983
  8428. }
  8429. },
  8430. stretching: {
  8431. height: math.unit(3.65, "meters"),
  8432. weight: math.unit(1200, "lb"),
  8433. name: "Stretching",
  8434. image: {
  8435. source: "./media/characters/teal/stretching.svg",
  8436. extra: 1276 / 1244,
  8437. bottom: 0 / 1276
  8438. }
  8439. },
  8440. legged: {
  8441. height: math.unit(1.3, "meters"),
  8442. weight: math.unit(100, "lb"),
  8443. name: "Legged",
  8444. image: {
  8445. source: "./media/characters/teal/legged.svg",
  8446. extra: 462 / 437,
  8447. bottom: 24 / 486
  8448. }
  8449. },
  8450. naga: {
  8451. height: math.unit(5.4, "meters"),
  8452. weight: math.unit(4000, "lb"),
  8453. name: "Naga",
  8454. image: {
  8455. source: "./media/characters/teal/naga.svg",
  8456. extra: 1902 / 1858,
  8457. bottom: 0 / 1902
  8458. }
  8459. },
  8460. hand: {
  8461. height: math.unit(0.52, "meters"),
  8462. name: "Hand",
  8463. image: {
  8464. source: "./media/characters/teal/hand.svg"
  8465. }
  8466. },
  8467. maw: {
  8468. height: math.unit(0.43, "meters"),
  8469. name: "Maw",
  8470. image: {
  8471. source: "./media/characters/teal/maw.svg"
  8472. }
  8473. },
  8474. slit: {
  8475. height: math.unit(0.25, "meters"),
  8476. name: "Slit",
  8477. image: {
  8478. source: "./media/characters/teal/slit.svg"
  8479. }
  8480. },
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(2.75, "meters"),
  8486. default: true
  8487. },
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(300, "feet")
  8491. },
  8492. {
  8493. name: "Macro+",
  8494. height: math.unit(2000, "feet")
  8495. },
  8496. ]
  8497. ))
  8498. characterMakers.push(() => makeCharacter(
  8499. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8500. {
  8501. frontCat: {
  8502. height: math.unit(6, "feet"),
  8503. weight: math.unit(180, "lbs"),
  8504. name: "Front (Cat)",
  8505. image: {
  8506. source: "./media/characters/ravin-amulet/front-cat.svg"
  8507. }
  8508. },
  8509. frontCatAlt: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(180, "lbs"),
  8512. name: "Front (Alt, Cat)",
  8513. image: {
  8514. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8515. }
  8516. },
  8517. frontWerewolf: {
  8518. height: math.unit(6 * 1.2, "feet"),
  8519. weight: math.unit(225, "lbs"),
  8520. name: "Front (Werewolf)",
  8521. image: {
  8522. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8523. }
  8524. },
  8525. backWerewolf: {
  8526. height: math.unit(6 * 1.2, "feet"),
  8527. weight: math.unit(225, "lbs"),
  8528. name: "Back (Werewolf)",
  8529. image: {
  8530. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8531. }
  8532. },
  8533. },
  8534. [
  8535. {
  8536. name: "Nano",
  8537. height: math.unit(1, "micrometer")
  8538. },
  8539. {
  8540. name: "Micro",
  8541. height: math.unit(1, "inch")
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(6, "feet"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Macro",
  8550. height: math.unit(60, "feet")
  8551. }
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(165, "lbs"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/fluoresce/front.svg"
  8563. }
  8564. }
  8565. },
  8566. [
  8567. {
  8568. name: "Micro",
  8569. height: math.unit(6, "cm")
  8570. },
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(5 + 7 / 12, "feet"),
  8574. default: true
  8575. },
  8576. {
  8577. name: "Macro",
  8578. height: math.unit(56, "feet")
  8579. },
  8580. {
  8581. name: "Megamacro",
  8582. height: math.unit(1.9, "miles")
  8583. },
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(9 + 6 / 12, "feet"),
  8591. weight: math.unit(523, "lbs"),
  8592. name: "Side",
  8593. image: {
  8594. source: "./media/characters/aurora/side.svg",
  8595. extra: 474/393,
  8596. bottom: 5/479
  8597. }
  8598. }
  8599. },
  8600. [
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(9 + 6 / 12, "feet")
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(96, "feet"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Macro+",
  8612. height: math.unit(243, "feet")
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(194, "cm"),
  8621. weight: math.unit(90, "kg"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/ranek/front.svg",
  8625. extra: 1862/1791,
  8626. bottom: 80/1942
  8627. }
  8628. },
  8629. back: {
  8630. height: math.unit(194, "cm"),
  8631. weight: math.unit(90, "kg"),
  8632. name: "Back",
  8633. image: {
  8634. source: "./media/characters/ranek/back.svg",
  8635. extra: 1853/1787,
  8636. bottom: 74/1927
  8637. }
  8638. },
  8639. feral: {
  8640. height: math.unit(30, "cm"),
  8641. weight: math.unit(1.6, "lbs"),
  8642. name: "Feral",
  8643. image: {
  8644. source: "./media/characters/ranek/feral.svg",
  8645. extra: 990/631,
  8646. bottom: 29/1019
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Normal",
  8653. height: math.unit(194, "cm"),
  8654. default: true
  8655. },
  8656. {
  8657. name: "Macro",
  8658. height: math.unit(100, "meters")
  8659. },
  8660. ]
  8661. ))
  8662. characterMakers.push(() => makeCharacter(
  8663. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8664. {
  8665. front: {
  8666. height: math.unit(5 + 6 / 12, "feet"),
  8667. weight: math.unit(153, "lbs"),
  8668. name: "Front",
  8669. image: {
  8670. source: "./media/characters/andrew-cooper/front.svg"
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Nano",
  8677. height: math.unit(1, "mm")
  8678. },
  8679. {
  8680. name: "Micro",
  8681. height: math.unit(2, "inches")
  8682. },
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(5 + 6 / 12, "feet"),
  8686. default: true
  8687. }
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(6, "feet"),
  8695. weight: math.unit(180, "lbs"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/akane-sato/front.svg",
  8699. extra: 1219 / 1140
  8700. }
  8701. },
  8702. back: {
  8703. height: math.unit(6, "feet"),
  8704. weight: math.unit(180, "lbs"),
  8705. name: "Back",
  8706. image: {
  8707. source: "./media/characters/akane-sato/back.svg",
  8708. extra: 1219 / 1170
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Normal",
  8715. height: math.unit(2.5, "meters")
  8716. },
  8717. {
  8718. name: "Macro",
  8719. height: math.unit(250, "meters"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Megamacro",
  8724. height: math.unit(25, "km")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8730. {
  8731. front: {
  8732. height: math.unit(6, "feet"),
  8733. weight: math.unit(65, "kg"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/rook/front.svg",
  8737. extra: 960 / 950
  8738. }
  8739. }
  8740. },
  8741. [
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(8.8, "feet")
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(88, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Megamacro",
  8753. height: math.unit(8, "miles")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(12 + 2 / 12, "feet"),
  8762. weight: math.unit(808, "lbs"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/prodigy/front.svg"
  8766. }
  8767. }
  8768. },
  8769. [
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(12 + 2 / 12, "feet"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Macro",
  8777. height: math.unit(143, "feet")
  8778. },
  8779. {
  8780. name: "Macro+",
  8781. height: math.unit(400, "feet")
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(225, "lbs"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/daniel/front.svg"
  8794. }
  8795. },
  8796. leaning: {
  8797. height: math.unit(6, "feet"),
  8798. weight: math.unit(225, "lbs"),
  8799. name: "Leaning",
  8800. image: {
  8801. source: "./media/characters/daniel/leaning.svg"
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Macro",
  8808. height: math.unit(1000, "feet"),
  8809. default: true
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(88, "lbs"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/chiros/front.svg",
  8822. extra: 306 / 226
  8823. }
  8824. },
  8825. side: {
  8826. height: math.unit(6, "feet"),
  8827. weight: math.unit(88, "lbs"),
  8828. name: "Side",
  8829. image: {
  8830. source: "./media/characters/chiros/side.svg",
  8831. extra: 306 / 226
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(6, "cm"),
  8839. default: true
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8845. {
  8846. front: {
  8847. height: math.unit(6, "feet"),
  8848. weight: math.unit(100, "lbs"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/selka/front.svg",
  8852. extra: 947 / 887
  8853. }
  8854. }
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(5, "cm"),
  8860. default: true
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8866. {
  8867. front: {
  8868. height: math.unit(8 + 3 / 12, "feet"),
  8869. weight: math.unit(424, "lbs"),
  8870. name: "Front",
  8871. image: {
  8872. source: "./media/characters/verin/front.svg",
  8873. extra: 1845 / 1550
  8874. }
  8875. },
  8876. frontArmored: {
  8877. height: math.unit(8 + 3 / 12, "feet"),
  8878. weight: math.unit(424, "lbs"),
  8879. name: "Front (Armored)",
  8880. image: {
  8881. source: "./media/characters/verin/front-armor.svg",
  8882. extra: 1845 / 1550,
  8883. bottom: 0.01
  8884. }
  8885. },
  8886. back: {
  8887. height: math.unit(8 + 3 / 12, "feet"),
  8888. weight: math.unit(424, "lbs"),
  8889. name: "Back",
  8890. image: {
  8891. source: "./media/characters/verin/back.svg",
  8892. bottom: 0.1,
  8893. extra: 1
  8894. }
  8895. },
  8896. foot: {
  8897. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8898. name: "Foot",
  8899. image: {
  8900. source: "./media/characters/verin/foot.svg"
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(8 + 3 / 12, "feet")
  8908. },
  8909. {
  8910. name: "Minimacro",
  8911. height: math.unit(21, "feet"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(626, "feet")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(2.718, "meters"),
  8925. weight: math.unit(150, "lbs"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/sovrim-terraquian/front.svg",
  8929. extra: 1752/1689,
  8930. bottom: 36/1788
  8931. }
  8932. },
  8933. back: {
  8934. height: math.unit(2.718, "meters"),
  8935. weight: math.unit(150, "lbs"),
  8936. name: "Back",
  8937. image: {
  8938. source: "./media/characters/sovrim-terraquian/back.svg",
  8939. extra: 1698/1657,
  8940. bottom: 58/1756
  8941. }
  8942. },
  8943. tongue: {
  8944. height: math.unit(2.865, "feet"),
  8945. name: "Tongue",
  8946. image: {
  8947. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8948. }
  8949. },
  8950. hand: {
  8951. height: math.unit(1.61, "feet"),
  8952. name: "Hand",
  8953. image: {
  8954. source: "./media/characters/sovrim-terraquian/hand.svg"
  8955. }
  8956. },
  8957. foot: {
  8958. height: math.unit(1.05, "feet"),
  8959. name: "Foot",
  8960. image: {
  8961. source: "./media/characters/sovrim-terraquian/foot.svg"
  8962. }
  8963. },
  8964. footAlt: {
  8965. height: math.unit(0.88, "feet"),
  8966. name: "Foot (Alt)",
  8967. image: {
  8968. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Micro",
  8975. height: math.unit(2, "inches")
  8976. },
  8977. {
  8978. name: "Small",
  8979. height: math.unit(1, "meter")
  8980. },
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(Math.E, "meters"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(20, "meters")
  8989. },
  8990. {
  8991. name: "Macro+",
  8992. height: math.unit(400, "meters")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(7, "feet"),
  9001. weight: math.unit(489, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/reece-silvermane/front.svg",
  9005. bottom: 0.02,
  9006. extra: 1
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(1.5, "miles"),
  9014. default: true
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(78, "kg"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/kane/front.svg",
  9027. extra: 978 / 899
  9028. }
  9029. },
  9030. },
  9031. [
  9032. {
  9033. name: "Normal",
  9034. height: math.unit(2.1, "m"),
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(1, "km"),
  9039. default: true
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(6, "feet"),
  9048. weight: math.unit(200, "kg"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/tegon/front.svg",
  9052. bottom: 0.01,
  9053. extra: 1
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Micro",
  9060. height: math.unit(1, "inch")
  9061. },
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(6 + 3 / 12, "feet"),
  9065. default: true
  9066. },
  9067. {
  9068. name: "Macro",
  9069. height: math.unit(300, "feet")
  9070. },
  9071. {
  9072. name: "Megamacro",
  9073. height: math.unit(69, "miles")
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9079. {
  9080. side: {
  9081. height: math.unit(6, "feet"),
  9082. weight: math.unit(2304, "lbs"),
  9083. name: "Side",
  9084. image: {
  9085. source: "./media/characters/arcturax/side.svg",
  9086. extra: 790 / 376,
  9087. bottom: 0.01
  9088. }
  9089. },
  9090. },
  9091. [
  9092. {
  9093. name: "Micro",
  9094. height: math.unit(2, "inch")
  9095. },
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(6, "feet")
  9099. },
  9100. {
  9101. name: "Macro",
  9102. height: math.unit(39, "feet"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Megamacro",
  9107. height: math.unit(7, "miles")
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(50, "lbs"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/sentri/front.svg",
  9120. extra: 1750 / 1570,
  9121. bottom: 0.025
  9122. }
  9123. },
  9124. frontAlt: {
  9125. height: math.unit(6, "feet"),
  9126. weight: math.unit(50, "lbs"),
  9127. name: "Front (Alt)",
  9128. image: {
  9129. source: "./media/characters/sentri/front-alt.svg",
  9130. extra: 1750 / 1570,
  9131. bottom: 0.025
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(15, "feet"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(2500, "feet")
  9144. }
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(5 + 8 / 12, "feet"),
  9152. weight: math.unit(130, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/corvin/front.svg",
  9156. extra: 1803 / 1629
  9157. }
  9158. },
  9159. frontShirt: {
  9160. height: math.unit(5 + 8 / 12, "feet"),
  9161. weight: math.unit(130, "lbs"),
  9162. name: "Front (Shirt)",
  9163. image: {
  9164. source: "./media/characters/corvin/front-shirt.svg",
  9165. extra: 1803 / 1629
  9166. }
  9167. },
  9168. frontPoncho: {
  9169. height: math.unit(5 + 8 / 12, "feet"),
  9170. weight: math.unit(130, "lbs"),
  9171. name: "Front (Poncho)",
  9172. image: {
  9173. source: "./media/characters/corvin/front-poncho.svg",
  9174. extra: 1803 / 1629
  9175. }
  9176. },
  9177. side: {
  9178. height: math.unit(5 + 8 / 12, "feet"),
  9179. weight: math.unit(130, "lbs"),
  9180. name: "Side",
  9181. image: {
  9182. source: "./media/characters/corvin/side.svg",
  9183. extra: 1012 / 945
  9184. }
  9185. },
  9186. back: {
  9187. height: math.unit(5 + 8 / 12, "feet"),
  9188. weight: math.unit(130, "lbs"),
  9189. name: "Back",
  9190. image: {
  9191. source: "./media/characters/corvin/back.svg",
  9192. extra: 1803 / 1629
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Micro",
  9199. height: math.unit(3, "inches")
  9200. },
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 8 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(300, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Megamacro",
  9212. height: math.unit(500, "miles")
  9213. }
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(6, "feet"),
  9221. weight: math.unit(135, "lbs"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/q/front.svg",
  9225. extra: 854 / 752,
  9226. bottom: 0.005
  9227. }
  9228. },
  9229. back: {
  9230. height: math.unit(6, "feet"),
  9231. weight: math.unit(130, "lbs"),
  9232. name: "Back",
  9233. image: {
  9234. source: "./media/characters/q/back.svg",
  9235. extra: 854 / 752
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Macro",
  9242. height: math.unit(90, "feet"),
  9243. default: true
  9244. },
  9245. {
  9246. name: "Extra Macro",
  9247. height: math.unit(300, "feet"),
  9248. },
  9249. {
  9250. name: "BIG WALF",
  9251. height: math.unit(750, "feet"),
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(3, "feet"),
  9260. weight: math.unit(28, "lbs"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/citrine/front.svg"
  9264. }
  9265. }
  9266. },
  9267. [
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(3, "feet"),
  9271. default: true
  9272. }
  9273. ]
  9274. ))
  9275. characterMakers.push(() => makeCharacter(
  9276. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9277. {
  9278. front: {
  9279. height: math.unit(14, "feet"),
  9280. weight: math.unit(1450, "kg"),
  9281. preyCapacity: math.unit(15, "people"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/aura-starwind/front.svg",
  9285. extra: 1440/1327,
  9286. bottom: 11/1451
  9287. }
  9288. },
  9289. side: {
  9290. height: math.unit(14, "feet"),
  9291. weight: math.unit(1450, "kg"),
  9292. preyCapacity: math.unit(15, "people"),
  9293. name: "Side",
  9294. image: {
  9295. source: "./media/characters/aura-starwind/side.svg",
  9296. extra: 1654 / 1497
  9297. }
  9298. },
  9299. taur: {
  9300. height: math.unit(18, "feet"),
  9301. weight: math.unit(5500, "kg"),
  9302. preyCapacity: math.unit(50, "people"),
  9303. name: "Taur",
  9304. image: {
  9305. source: "./media/characters/aura-starwind/taur.svg",
  9306. extra: 1760 / 1650
  9307. }
  9308. },
  9309. feral: {
  9310. height: math.unit(46, "feet"),
  9311. weight: math.unit(25000, "kg"),
  9312. preyCapacity: math.unit(120, "people"),
  9313. name: "Feral",
  9314. image: {
  9315. source: "./media/characters/aura-starwind/feral.svg"
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Normal",
  9322. height: math.unit(14, "feet"),
  9323. default: true
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(50, "meters")
  9328. },
  9329. {
  9330. name: "Megamacro",
  9331. height: math.unit(5000, "meters")
  9332. },
  9333. {
  9334. name: "Gigamacro",
  9335. height: math.unit(100000, "kilometers")
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9341. {
  9342. front: {
  9343. height: math.unit(2 + 7 / 12, "feet"),
  9344. weight: math.unit(32, "lbs"),
  9345. name: "Front",
  9346. image: {
  9347. source: "./media/characters/rivet/front.svg",
  9348. extra: 1716 / 1658,
  9349. bottom: 0.03
  9350. }
  9351. },
  9352. foot: {
  9353. height: math.unit(0.551, "feet"),
  9354. name: "Rivet's Foot",
  9355. image: {
  9356. source: "./media/characters/rivet/foot.svg"
  9357. },
  9358. rename: true
  9359. }
  9360. },
  9361. [
  9362. {
  9363. name: "Micro",
  9364. height: math.unit(1.5, "inches"),
  9365. },
  9366. {
  9367. name: "Normal",
  9368. height: math.unit(2 + 7 / 12, "feet"),
  9369. default: true
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(85, "feet")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(2.2, "km")
  9378. }
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9383. {
  9384. front: {
  9385. height: math.unit(5 + 9 / 12, "feet"),
  9386. weight: math.unit(150, "lbs"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/coffee/front.svg",
  9390. extra: 946/880,
  9391. bottom: 66/1012
  9392. }
  9393. },
  9394. foot: {
  9395. height: math.unit(1.29, "feet"),
  9396. name: "Foot",
  9397. image: {
  9398. source: "./media/characters/coffee/foot.svg"
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(2, "inches"),
  9406. },
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(5 + 9 / 12, "feet"),
  9410. default: true
  9411. },
  9412. {
  9413. name: "Macro",
  9414. height: math.unit(800, "feet")
  9415. },
  9416. {
  9417. name: "Megamacro",
  9418. height: math.unit(25, "miles")
  9419. }
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(200, "lbs"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/chari-gal/front.svg",
  9431. extra: 1568 / 1385,
  9432. bottom: 0.047
  9433. }
  9434. },
  9435. gigantamax: {
  9436. height: math.unit(6 * 16, "feet"),
  9437. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9438. name: "Gigantamax",
  9439. image: {
  9440. source: "./media/characters/chari-gal/gigantamax.svg",
  9441. extra: 1124 / 888,
  9442. bottom: 0.03
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(5 + 7 / 12, "feet")
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(200, "feet"),
  9454. default: true
  9455. }
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(150, "lbs"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/nova/front.svg",
  9467. extra: 5000 / 4722,
  9468. bottom: 0.02
  9469. }
  9470. }
  9471. },
  9472. [
  9473. {
  9474. name: "Micro-",
  9475. height: math.unit(0.8, "inches")
  9476. },
  9477. {
  9478. name: "Micro",
  9479. height: math.unit(2, "inches"),
  9480. default: true
  9481. },
  9482. ]
  9483. ))
  9484. characterMakers.push(() => makeCharacter(
  9485. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9486. {
  9487. koboldFront: {
  9488. height: math.unit(3 + 1 / 12, "feet"),
  9489. weight: math.unit(21.7, "lbs"),
  9490. name: "Front",
  9491. image: {
  9492. source: "./media/characters/argent/kobold-front.svg",
  9493. extra: 1471 / 1331,
  9494. bottom: 100.8 / 1575.5
  9495. },
  9496. form: "kobold",
  9497. default: true
  9498. },
  9499. dragonFront: {
  9500. height: math.unit(75, "inches"),
  9501. name: "Front",
  9502. image: {
  9503. source: "./media/characters/argent/dragon-front.svg",
  9504. extra: 1389/1248,
  9505. bottom: 54/1443
  9506. },
  9507. form: "dragon",
  9508. },
  9509. dragonBack: {
  9510. height: math.unit(75, "inches"),
  9511. name: "Back",
  9512. image: {
  9513. source: "./media/characters/argent/dragon-back.svg",
  9514. extra: 1399/1271,
  9515. bottom: 23/1422
  9516. },
  9517. form: "dragon",
  9518. },
  9519. dragonDressed: {
  9520. height: math.unit(75, "inches"),
  9521. name: "Dressed",
  9522. image: {
  9523. source: "./media/characters/argent/dragon-dressed.svg",
  9524. extra: 1350/1215,
  9525. bottom: 26/1376
  9526. },
  9527. form: "dragon"
  9528. },
  9529. dragonHead: {
  9530. height: math.unit(23.5, "inches"),
  9531. name: "Head",
  9532. image: {
  9533. source: "./media/characters/argent/dragon-head.svg"
  9534. },
  9535. form: "dragon",
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Micro",
  9541. height: math.unit(2, "inches"),
  9542. form: "kobold",
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(3 + 1 / 12, "feet"),
  9547. form: "kobold",
  9548. default: true
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(120, "feet"),
  9553. form: "kobold",
  9554. },
  9555. {
  9556. name: "Speck",
  9557. height: math.unit(1, "mm"),
  9558. form: "dragon",
  9559. },
  9560. {
  9561. name: "Tiny",
  9562. height: math.unit(1, "cm"),
  9563. form: "dragon",
  9564. },
  9565. {
  9566. name: "Micro",
  9567. height: math.unit(5, "cm"),
  9568. form: "dragon",
  9569. },
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(75, "inches"),
  9573. form: "dragon",
  9574. default: true
  9575. },
  9576. {
  9577. name: "Extra Tall",
  9578. height: math.unit(9, "feet"),
  9579. form: "dragon",
  9580. },
  9581. {
  9582. name: "Inconvenient",
  9583. height: math.unit(5, "meters"),
  9584. form: "dragon",
  9585. },
  9586. {
  9587. name: "Macro",
  9588. height: math.unit(70, "meters"),
  9589. form: "dragon",
  9590. },
  9591. {
  9592. name: "Macro+",
  9593. height: math.unit(250, "meters"),
  9594. form: "dragon",
  9595. },
  9596. {
  9597. name: "Megamacro",
  9598. height: math.unit(20, "km"),
  9599. form: "dragon",
  9600. },
  9601. {
  9602. name: "Mountainous",
  9603. height: math.unit(100, "km"),
  9604. form: "dragon",
  9605. },
  9606. {
  9607. name: "Continental",
  9608. height: math.unit(2, "megameters"),
  9609. form: "dragon",
  9610. },
  9611. {
  9612. name: "Too Big",
  9613. height: math.unit(900, "megameters"),
  9614. form: "dragon",
  9615. },
  9616. ],
  9617. {
  9618. "kobold": {
  9619. name: "Kobold",
  9620. default: true
  9621. },
  9622. "dragon": {
  9623. name: "Dragon",
  9624. },
  9625. }
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9629. {
  9630. lamp: {
  9631. height: math.unit(7 * 1559 / 989, "feet"),
  9632. name: "Magic Lamp",
  9633. image: {
  9634. source: "./media/characters/mira-al-cul/lamp.svg",
  9635. extra: 1617 / 1559
  9636. }
  9637. },
  9638. front: {
  9639. height: math.unit(7, "feet"),
  9640. name: "Front",
  9641. image: {
  9642. source: "./media/characters/mira-al-cul/front.svg",
  9643. extra: 1044 / 990
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Heavily Restricted",
  9650. height: math.unit(7 * 1559 / 989, "feet")
  9651. },
  9652. {
  9653. name: "Freshly Freed",
  9654. height: math.unit(50 * 1559 / 989, "feet")
  9655. },
  9656. {
  9657. name: "World Encompassing",
  9658. height: math.unit(10000 * 1559 / 989, "miles")
  9659. },
  9660. {
  9661. name: "Galactic",
  9662. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9663. },
  9664. {
  9665. name: "Palmed Universe",
  9666. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Multiversal Matriarch",
  9671. height: math.unit(8.87e10, "yottameters")
  9672. },
  9673. {
  9674. name: "Void Mother",
  9675. height: math.unit(3.14e110, "yottaparsecs")
  9676. },
  9677. {
  9678. name: "Toying with Transcendence",
  9679. height: math.unit(1e307, "meters")
  9680. },
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9685. {
  9686. front: {
  9687. height: math.unit(17 + 1 / 12, "feet"),
  9688. weight: math.unit(476.2 * 5, "lbs"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/kuro-shi-uchū/front.svg",
  9692. extra: 2329 / 1835,
  9693. bottom: 0.02
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Micro",
  9700. height: math.unit(2, "inches")
  9701. },
  9702. {
  9703. name: "Normal",
  9704. height: math.unit(12, "meters")
  9705. },
  9706. {
  9707. name: "Planetary",
  9708. height: math.unit(0.00929, "AU"),
  9709. default: true
  9710. },
  9711. {
  9712. name: "Universal",
  9713. height: math.unit(20, "gigaparsecs")
  9714. },
  9715. ]
  9716. ))
  9717. characterMakers.push(() => makeCharacter(
  9718. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9719. {
  9720. front: {
  9721. height: math.unit(5 + 2 / 12, "feet"),
  9722. weight: math.unit(120, "lbs"),
  9723. name: "Front",
  9724. image: {
  9725. source: "./media/characters/katherine/front.svg",
  9726. extra: 2075 / 1969
  9727. }
  9728. },
  9729. dress: {
  9730. height: math.unit(5 + 2 / 12, "feet"),
  9731. weight: math.unit(120, "lbs"),
  9732. name: "Dress",
  9733. image: {
  9734. source: "./media/characters/katherine/dress.svg",
  9735. extra: 2258 / 2064
  9736. }
  9737. },
  9738. },
  9739. [
  9740. {
  9741. name: "Micro",
  9742. height: math.unit(1, "inches"),
  9743. default: true
  9744. },
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(5 + 2 / 12, "feet")
  9748. },
  9749. {
  9750. name: "Macro",
  9751. height: math.unit(100, "meters")
  9752. },
  9753. {
  9754. name: "Megamacro",
  9755. height: math.unit(80, "miles")
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(7 + 8 / 12, "feet"),
  9764. weight: math.unit(250, "lbs"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/yevis/front.svg",
  9768. extra: 1938 / 1755
  9769. }
  9770. }
  9771. },
  9772. [
  9773. {
  9774. name: "Mortal",
  9775. height: math.unit(7 + 8 / 12, "feet")
  9776. },
  9777. {
  9778. name: "Battle",
  9779. height: math.unit(25 + 11 / 12, "feet")
  9780. },
  9781. {
  9782. name: "Wrath",
  9783. height: math.unit(1654 + 11 / 12, "feet")
  9784. },
  9785. {
  9786. name: "Planet Destroyer",
  9787. height: math.unit(12000, "miles")
  9788. },
  9789. {
  9790. name: "Galaxy Conqueror",
  9791. height: math.unit(1.45, "zettameters"),
  9792. default: true
  9793. },
  9794. {
  9795. name: "Universal War",
  9796. height: math.unit(184, "gigaparsecs")
  9797. },
  9798. {
  9799. name: "Eternity War",
  9800. height: math.unit(1.98e55, "yottaparsecs")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(5 + 8 / 12, "feet"),
  9809. weight: math.unit(63, "kg"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/xavier/front.svg",
  9813. extra: 944 / 883
  9814. }
  9815. },
  9816. frontStretch: {
  9817. height: math.unit(5 + 8 / 12, "feet"),
  9818. weight: math.unit(63, "kg"),
  9819. name: "Stretching",
  9820. image: {
  9821. source: "./media/characters/xavier/front-stretch.svg",
  9822. extra: 962 / 820
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(5 + 8 / 12, "feet")
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(100, "meters"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "McLargeHuge",
  9838. height: math.unit(10, "miles")
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(5 + 5 / 12, "feet"),
  9847. weight: math.unit(150, "lb"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/joshii/front.svg",
  9851. extra: 765 / 653,
  9852. bottom: 51 / 816
  9853. }
  9854. },
  9855. foot: {
  9856. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9857. name: "Foot",
  9858. image: {
  9859. source: "./media/characters/joshii/foot.svg"
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Micro",
  9866. height: math.unit(2, "inches")
  9867. },
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(5 + 5 / 12, "feet")
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(785, "feet"),
  9875. default: true
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(24.5, "miles")
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(150, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/goddess-elizabeth/front.svg",
  9892. extra: 1800 / 1525,
  9893. bottom: 0.005
  9894. }
  9895. },
  9896. foot: {
  9897. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9898. name: "Foot",
  9899. image: {
  9900. source: "./media/characters/goddess-elizabeth/foot.svg"
  9901. }
  9902. },
  9903. mouth: {
  9904. height: math.unit(6, "feet"),
  9905. name: "Mouth",
  9906. image: {
  9907. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Micro",
  9914. height: math.unit(12, "feet")
  9915. },
  9916. {
  9917. name: "Normal",
  9918. height: math.unit(80, "miles"),
  9919. default: true
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(15000, "parsecs")
  9924. },
  9925. ]
  9926. ))
  9927. characterMakers.push(() => makeCharacter(
  9928. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9929. {
  9930. front: {
  9931. height: math.unit(5 + 9 / 12, "feet"),
  9932. weight: math.unit(144, "lb"),
  9933. name: "Front",
  9934. image: {
  9935. source: "./media/characters/kara/front.svg"
  9936. }
  9937. },
  9938. feet: {
  9939. height: math.unit(6 / 6.765, "feet"),
  9940. name: "Kara's Feet",
  9941. rename: true,
  9942. image: {
  9943. source: "./media/characters/kara/feet.svg"
  9944. }
  9945. },
  9946. },
  9947. [
  9948. {
  9949. name: "Normal",
  9950. height: math.unit(5 + 9 / 12, "feet")
  9951. },
  9952. {
  9953. name: "Macro",
  9954. height: math.unit(174, "feet"),
  9955. default: true
  9956. },
  9957. ]
  9958. ))
  9959. characterMakers.push(() => makeCharacter(
  9960. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9961. {
  9962. front: {
  9963. height: math.unit(18, "feet"),
  9964. weight: math.unit(4050, "lb"),
  9965. name: "Front",
  9966. image: {
  9967. source: "./media/characters/tyrone/front.svg",
  9968. extra: 2405 / 2270,
  9969. bottom: 182 / 2587
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(18, "feet"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Macro",
  9981. height: math.unit(300, "feet")
  9982. },
  9983. {
  9984. name: "Megamacro",
  9985. height: math.unit(15, "km")
  9986. },
  9987. {
  9988. name: "Gigamacro",
  9989. height: math.unit(500, "km")
  9990. },
  9991. {
  9992. name: "Teramacro",
  9993. height: math.unit(0.5, "gigameters")
  9994. },
  9995. {
  9996. name: "Omnimacro",
  9997. height: math.unit(1e252, "yottauniverse")
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10003. {
  10004. front: {
  10005. height: math.unit(7 + 8 / 12, "feet"),
  10006. weight: math.unit(120, "lb"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/danny/front.svg",
  10010. extra: 1490 / 1350
  10011. }
  10012. },
  10013. back: {
  10014. height: math.unit(7 + 8 / 12, "feet"),
  10015. weight: math.unit(120, "lb"),
  10016. name: "Back",
  10017. image: {
  10018. source: "./media/characters/danny/back.svg",
  10019. extra: 1490 / 1350
  10020. }
  10021. },
  10022. },
  10023. [
  10024. {
  10025. name: "Normal",
  10026. height: math.unit(7 + 8 / 12, "feet"),
  10027. default: true
  10028. },
  10029. ]
  10030. ))
  10031. characterMakers.push(() => makeCharacter(
  10032. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10033. {
  10034. front: {
  10035. height: math.unit(3.5, "inches"),
  10036. weight: math.unit(19, "grams"),
  10037. name: "Front",
  10038. image: {
  10039. source: "./media/characters/mallow/front.svg",
  10040. extra: 471 / 431
  10041. }
  10042. },
  10043. back: {
  10044. height: math.unit(3.5, "inches"),
  10045. weight: math.unit(19, "grams"),
  10046. name: "Back",
  10047. image: {
  10048. source: "./media/characters/mallow/back.svg",
  10049. extra: 471 / 431
  10050. }
  10051. },
  10052. },
  10053. [
  10054. {
  10055. name: "Normal",
  10056. height: math.unit(3.5, "inches"),
  10057. default: true
  10058. },
  10059. ]
  10060. ))
  10061. characterMakers.push(() => makeCharacter(
  10062. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10063. {
  10064. front: {
  10065. height: math.unit(9, "feet"),
  10066. weight: math.unit(230, "kg"),
  10067. name: "Front",
  10068. image: {
  10069. source: "./media/characters/starry-aqua/front.svg"
  10070. }
  10071. },
  10072. back: {
  10073. height: math.unit(9, "feet"),
  10074. weight: math.unit(230, "kg"),
  10075. name: "Back",
  10076. image: {
  10077. source: "./media/characters/starry-aqua/back.svg"
  10078. }
  10079. },
  10080. hand: {
  10081. height: math.unit(9 * 0.1168, "feet"),
  10082. name: "Hand",
  10083. image: {
  10084. source: "./media/characters/starry-aqua/hand.svg"
  10085. }
  10086. },
  10087. foot: {
  10088. height: math.unit(9 * 0.18, "feet"),
  10089. name: "Foot",
  10090. image: {
  10091. source: "./media/characters/starry-aqua/foot.svg"
  10092. }
  10093. }
  10094. },
  10095. [
  10096. {
  10097. name: "Micro",
  10098. height: math.unit(3, "inches")
  10099. },
  10100. {
  10101. name: "Normal",
  10102. height: math.unit(9, "feet")
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(300, "feet"),
  10107. default: true
  10108. },
  10109. {
  10110. name: "Megamacro",
  10111. height: math.unit(3200, "feet")
  10112. }
  10113. ]
  10114. ))
  10115. characterMakers.push(() => makeCharacter(
  10116. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10117. {
  10118. front: {
  10119. height: math.unit(15, "feet"),
  10120. weight: math.unit(5026, "lb"),
  10121. name: "Front",
  10122. image: {
  10123. source: "./media/characters/luka-towers/front.svg",
  10124. extra: 1269/1133,
  10125. bottom: 51/1320
  10126. }
  10127. },
  10128. },
  10129. [
  10130. {
  10131. name: "Normal",
  10132. height: math.unit(15, "feet"),
  10133. default: true
  10134. },
  10135. {
  10136. name: "Minimacro",
  10137. height: math.unit(25, "feet")
  10138. },
  10139. {
  10140. name: "Macro",
  10141. height: math.unit(320, "feet")
  10142. },
  10143. {
  10144. name: "Megamacro",
  10145. height: math.unit(35000, "feet")
  10146. },
  10147. {
  10148. name: "Gigamacro",
  10149. height: math.unit(4000, "miles")
  10150. },
  10151. {
  10152. name: "Teramacro",
  10153. height: math.unit(15000, "miles")
  10154. },
  10155. ]
  10156. ))
  10157. characterMakers.push(() => makeCharacter(
  10158. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10159. {
  10160. front: {
  10161. height: math.unit(6, "feet"),
  10162. weight: math.unit(150, "lb"),
  10163. name: "Front",
  10164. image: {
  10165. source: "./media/characters/natalie-nightring/front.svg",
  10166. extra: 1,
  10167. bottom: 0.06
  10168. }
  10169. },
  10170. },
  10171. [
  10172. {
  10173. name: "Uh Oh",
  10174. height: math.unit(0.1, "mm")
  10175. },
  10176. {
  10177. name: "Small",
  10178. height: math.unit(3, "inches")
  10179. },
  10180. {
  10181. name: "Human Scale",
  10182. height: math.unit(6, "feet")
  10183. },
  10184. {
  10185. name: "Librarian",
  10186. height: math.unit(50, "feet"),
  10187. default: true
  10188. },
  10189. {
  10190. name: "Immense",
  10191. height: math.unit(200, "miles")
  10192. },
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10197. {
  10198. front: {
  10199. height: math.unit(6, "feet"),
  10200. weight: math.unit(180, "lbs"),
  10201. name: "Front",
  10202. image: {
  10203. source: "./media/characters/danni-rosie/front.svg",
  10204. extra: 1260 / 1128,
  10205. bottom: 0.022
  10206. }
  10207. },
  10208. },
  10209. [
  10210. {
  10211. name: "Micro",
  10212. height: math.unit(2, "inches"),
  10213. default: true
  10214. },
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10219. {
  10220. front: {
  10221. height: math.unit(5 + 9 / 12, "feet"),
  10222. weight: math.unit(220, "lb"),
  10223. name: "Front",
  10224. image: {
  10225. source: "./media/characters/samantha-kruse/front.svg",
  10226. extra: (985 / 935),
  10227. bottom: 0.03
  10228. }
  10229. },
  10230. frontUndressed: {
  10231. height: math.unit(5 + 9 / 12, "feet"),
  10232. weight: math.unit(220, "lb"),
  10233. name: "Front (Undressed)",
  10234. image: {
  10235. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10236. extra: (973 / 923),
  10237. bottom: 0.025
  10238. }
  10239. },
  10240. fat: {
  10241. height: math.unit(5 + 9 / 12, "feet"),
  10242. weight: math.unit(900, "lb"),
  10243. name: "Front (Fat)",
  10244. image: {
  10245. source: "./media/characters/samantha-kruse/fat.svg",
  10246. extra: 2688 / 2561
  10247. }
  10248. },
  10249. },
  10250. [
  10251. {
  10252. name: "Normal",
  10253. height: math.unit(5 + 9 / 12, "feet"),
  10254. default: true
  10255. }
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10260. {
  10261. back: {
  10262. height: math.unit(5 + 4 / 12, "feet"),
  10263. weight: math.unit(4963, "lb"),
  10264. name: "Back",
  10265. image: {
  10266. source: "./media/characters/amelia-rosie/back.svg",
  10267. extra: 1113 / 963,
  10268. bottom: 0.01
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Level 0",
  10275. height: math.unit(5 + 4 / 12, "feet")
  10276. },
  10277. {
  10278. name: "Level 1",
  10279. height: math.unit(164597, "feet"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Level 2",
  10284. height: math.unit(956243, "miles")
  10285. },
  10286. {
  10287. name: "Level 3",
  10288. height: math.unit(29421709423, "miles")
  10289. },
  10290. {
  10291. name: "Level 4",
  10292. height: math.unit(154, "lightyears")
  10293. },
  10294. {
  10295. name: "Level 5",
  10296. height: math.unit(4738272, "lightyears")
  10297. },
  10298. {
  10299. name: "Level 6",
  10300. height: math.unit(145787152896, "lightyears")
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(5 + 11 / 12, "feet"),
  10309. weight: math.unit(65, "kg"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/rook-kitara/front.svg",
  10313. extra: 1347 / 1274,
  10314. bottom: 0.005
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Totally Unfair",
  10321. height: math.unit(1.8, "mm")
  10322. },
  10323. {
  10324. name: "Lap Rookie",
  10325. height: math.unit(1.4, "feet")
  10326. },
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(5 + 11 / 12, "feet"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "How Did This Happen",
  10334. height: math.unit(80, "miles")
  10335. }
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(7, "feet"),
  10343. weight: math.unit(300, "lb"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/pisces/front.svg",
  10347. extra: 2255 / 2115,
  10348. bottom: 0.03
  10349. }
  10350. },
  10351. back: {
  10352. height: math.unit(7, "feet"),
  10353. weight: math.unit(300, "lb"),
  10354. name: "Back",
  10355. image: {
  10356. source: "./media/characters/pisces/back.svg",
  10357. extra: 2146 / 2055,
  10358. bottom: 0.04
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(7, "feet"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Swimming Pool",
  10370. height: math.unit(12.2, "meters")
  10371. },
  10372. {
  10373. name: "Olympic Swimming Pool",
  10374. height: math.unit(56.3, "meters")
  10375. },
  10376. {
  10377. name: "Lake Superior",
  10378. height: math.unit(93900, "meters")
  10379. },
  10380. {
  10381. name: "Mediterranean Sea",
  10382. height: math.unit(644457, "meters")
  10383. },
  10384. {
  10385. name: "World's Oceans",
  10386. height: math.unit(4567491, "meters")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(2.3, "meters"),
  10395. weight: math.unit(120, "kg"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/zelas/front.svg"
  10399. }
  10400. },
  10401. side: {
  10402. height: math.unit(2.3, "meters"),
  10403. weight: math.unit(120, "kg"),
  10404. name: "Side",
  10405. image: {
  10406. source: "./media/characters/zelas/side.svg"
  10407. }
  10408. },
  10409. back: {
  10410. height: math.unit(2.3, "meters"),
  10411. weight: math.unit(120, "kg"),
  10412. name: "Back",
  10413. image: {
  10414. source: "./media/characters/zelas/back.svg"
  10415. }
  10416. },
  10417. foot: {
  10418. height: math.unit(1.116, "feet"),
  10419. name: "Foot",
  10420. image: {
  10421. source: "./media/characters/zelas/foot.svg"
  10422. }
  10423. },
  10424. },
  10425. [
  10426. {
  10427. name: "Normal",
  10428. height: math.unit(2.3, "meters")
  10429. },
  10430. {
  10431. name: "Macro",
  10432. height: math.unit(30, "meters"),
  10433. default: true
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10439. {
  10440. front: {
  10441. height: math.unit(1, "inch"),
  10442. weight: math.unit(0.21, "grams"),
  10443. name: "Front",
  10444. image: {
  10445. source: "./media/characters/talbot/front.svg",
  10446. extra: 594 / 544
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Micro",
  10453. height: math.unit(1, "inch"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10460. {
  10461. front: {
  10462. height: math.unit(3 + 3 / 12, "feet"),
  10463. weight: math.unit(51.8, "lb"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/fliss/front.svg",
  10467. extra: 840 / 640
  10468. }
  10469. },
  10470. },
  10471. [
  10472. {
  10473. name: "Teeny Tiny",
  10474. height: math.unit(1, "mm")
  10475. },
  10476. {
  10477. name: "Small",
  10478. height: math.unit(1, "inch"),
  10479. default: true
  10480. },
  10481. {
  10482. name: "Standard Sylveon",
  10483. height: math.unit(3 + 3 / 12, "feet")
  10484. },
  10485. {
  10486. name: "Large Nuisance",
  10487. height: math.unit(33, "feet")
  10488. },
  10489. {
  10490. name: "City Filler",
  10491. height: math.unit(3000, "feet")
  10492. },
  10493. {
  10494. name: "New Horizon",
  10495. height: math.unit(6000, "miles")
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10501. {
  10502. front: {
  10503. height: math.unit(5, "cm"),
  10504. weight: math.unit(1.94, "g"),
  10505. name: "Front",
  10506. image: {
  10507. source: "./media/characters/fleta/front.svg",
  10508. extra: 835 / 803
  10509. }
  10510. },
  10511. back: {
  10512. height: math.unit(5, "cm"),
  10513. weight: math.unit(1.94, "g"),
  10514. name: "Back",
  10515. image: {
  10516. source: "./media/characters/fleta/back.svg",
  10517. extra: 835 / 803
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Micro",
  10524. height: math.unit(5, "cm"),
  10525. default: true
  10526. },
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10531. {
  10532. front: {
  10533. height: math.unit(6, "feet"),
  10534. weight: math.unit(225, "lb"),
  10535. name: "Front",
  10536. image: {
  10537. source: "./media/characters/dominic/front.svg",
  10538. extra: 1770 / 1620,
  10539. bottom: 0.025
  10540. }
  10541. },
  10542. back: {
  10543. height: math.unit(6, "feet"),
  10544. weight: math.unit(225, "lb"),
  10545. name: "Back",
  10546. image: {
  10547. source: "./media/characters/dominic/back.svg",
  10548. extra: 1745 / 1620,
  10549. bottom: 0.065
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Nano",
  10556. height: math.unit(0.1, "mm")
  10557. },
  10558. {
  10559. name: "Micro-",
  10560. height: math.unit(1, "mm")
  10561. },
  10562. {
  10563. name: "Micro",
  10564. height: math.unit(4, "inches")
  10565. },
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(6 + 4 / 12, "feet"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Macro",
  10573. height: math.unit(115, "feet")
  10574. },
  10575. {
  10576. name: "Macro+",
  10577. height: math.unit(955, "feet")
  10578. },
  10579. {
  10580. name: "Megamacro",
  10581. height: math.unit(8990, "feet")
  10582. },
  10583. {
  10584. name: "Gigmacro",
  10585. height: math.unit(9310, "miles")
  10586. },
  10587. {
  10588. name: "Teramacro",
  10589. height: math.unit(1567005010, "miles")
  10590. },
  10591. {
  10592. name: "Examacro",
  10593. height: math.unit(1425, "parsecs")
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(400, "feet"),
  10602. weight: math.unit(44444444, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/major-colonel/front.svg"
  10606. }
  10607. },
  10608. back: {
  10609. height: math.unit(400, "feet"),
  10610. weight: math.unit(44444444, "lb"),
  10611. name: "Back",
  10612. image: {
  10613. source: "./media/characters/major-colonel/back.svg"
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Macro",
  10620. height: math.unit(400, "feet"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10627. {
  10628. catFront: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(120, "lb"),
  10631. name: "Front (Cat Side)",
  10632. image: {
  10633. source: "./media/characters/axel-lycan/cat-front.svg",
  10634. extra: 430 / 402,
  10635. bottom: 43 / 472.35
  10636. }
  10637. },
  10638. catBack: {
  10639. height: math.unit(6, "feet"),
  10640. weight: math.unit(120, "lb"),
  10641. name: "Back (Cat Side)",
  10642. image: {
  10643. source: "./media/characters/axel-lycan/cat-back.svg",
  10644. extra: 447 / 419,
  10645. bottom: 23.3 / 469
  10646. }
  10647. },
  10648. wolfFront: {
  10649. height: math.unit(6, "feet"),
  10650. weight: math.unit(120, "lb"),
  10651. name: "Front (Wolf Side)",
  10652. image: {
  10653. source: "./media/characters/axel-lycan/wolf-front.svg",
  10654. extra: 485 / 456,
  10655. bottom: 19 / 504
  10656. }
  10657. },
  10658. wolfBack: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(120, "lb"),
  10661. name: "Back (Wolf Side)",
  10662. image: {
  10663. source: "./media/characters/axel-lycan/wolf-back.svg",
  10664. extra: 475 / 438,
  10665. bottom: 39.2 / 514
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(1, "km"),
  10673. default: true
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(5 + 9 / 12, "feet"),
  10682. weight: math.unit(175, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/vanrel-hyena/front.svg",
  10686. extra: 1086 / 1010,
  10687. bottom: 0.04
  10688. }
  10689. },
  10690. },
  10691. [
  10692. {
  10693. name: "Normal",
  10694. height: math.unit(5 + 9 / 12, "feet"),
  10695. default: true
  10696. },
  10697. ]
  10698. ))
  10699. characterMakers.push(() => makeCharacter(
  10700. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10701. {
  10702. front: {
  10703. height: math.unit(6, "feet"),
  10704. weight: math.unit(103, "lb"),
  10705. name: "Front",
  10706. image: {
  10707. source: "./media/characters/abbott-absol/front.svg",
  10708. extra: 2010 / 1842
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Megamicro",
  10715. height: math.unit(0.1, "mm")
  10716. },
  10717. {
  10718. name: "Micro",
  10719. height: math.unit(1, "inch")
  10720. },
  10721. {
  10722. name: "Normal",
  10723. height: math.unit(6, "feet"),
  10724. default: true
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(264, "lb"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/hector/front.svg",
  10737. extra: 2280 / 2130,
  10738. bottom: 0.07
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(12.25, "foot"),
  10746. default: true
  10747. },
  10748. {
  10749. name: "Macro",
  10750. height: math.unit(160, "feet")
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(6, "feet"),
  10759. weight: math.unit(150, "lb"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/sal/front.svg",
  10763. extra: 1846 / 1699,
  10764. bottom: 0.04
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Megamacro",
  10771. height: math.unit(10, "miles"),
  10772. default: true
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10778. {
  10779. front: {
  10780. height: math.unit(3, "meters"),
  10781. weight: math.unit(450, "kg"),
  10782. name: "front",
  10783. image: {
  10784. source: "./media/characters/ranger/front.svg",
  10785. extra: 2401 / 2243,
  10786. bottom: 0.05
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(3, "meters"),
  10794. default: true
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(14, "feet"),
  10803. weight: math.unit(800, "kg"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/theresa/front.svg",
  10807. extra: 3575 / 3346,
  10808. bottom: 0.03
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(14, "feet"),
  10816. default: true
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10822. {
  10823. front: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(3, "kg"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/ine/front.svg",
  10829. extra: 678 / 539,
  10830. bottom: 0.023
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Normal",
  10837. height: math.unit(2.265, "feet"),
  10838. default: true
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10844. {
  10845. front: {
  10846. height: math.unit(5, "feet"),
  10847. weight: math.unit(30, "kg"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/vial/front.svg",
  10851. extra: 1365 / 1277,
  10852. bottom: 0.04
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Normal",
  10859. height: math.unit(5, "feet"),
  10860. default: true
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10866. {
  10867. side: {
  10868. height: math.unit(3.4, "meters"),
  10869. weight: math.unit(1000, "lb"),
  10870. name: "Side",
  10871. image: {
  10872. source: "./media/characters/rovoska/side.svg",
  10873. extra: 4403 / 1515
  10874. }
  10875. },
  10876. },
  10877. [
  10878. {
  10879. name: "Normal",
  10880. height: math.unit(3.4, "meters"),
  10881. default: true
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(8, "feet"),
  10890. weight: math.unit(315, "lb"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/gunner-rotthbauer/front.svg"
  10894. }
  10895. },
  10896. back: {
  10897. height: math.unit(8, "feet"),
  10898. weight: math.unit(315, "lb"),
  10899. name: "Back",
  10900. image: {
  10901. source: "./media/characters/gunner-rotthbauer/back.svg"
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Micro",
  10908. height: math.unit(3.5, "inches")
  10909. },
  10910. {
  10911. name: "Normal",
  10912. height: math.unit(8, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Macro",
  10917. height: math.unit(250, "feet")
  10918. },
  10919. {
  10920. name: "Megamacro",
  10921. height: math.unit(1, "AU")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(5 + 5 / 12, "feet"),
  10930. weight: math.unit(140, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/allatia/front.svg",
  10934. extra: 1227 / 1180,
  10935. bottom: 0.027
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Normal",
  10942. height: math.unit(5 + 5 / 12, "feet")
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(250, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Megamacro",
  10951. height: math.unit(8, "miles")
  10952. }
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(120, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/tene/front.svg",
  10964. extra: 814/750,
  10965. bottom: 36/850
  10966. }
  10967. },
  10968. stomping: {
  10969. height: math.unit(2.025, "meters"),
  10970. weight: math.unit(120, "lb"),
  10971. name: "Stomping",
  10972. image: {
  10973. source: "./media/characters/tene/stomping.svg",
  10974. extra: 885/821,
  10975. bottom: 15/900
  10976. }
  10977. },
  10978. sitting: {
  10979. height: math.unit(1, "meter"),
  10980. weight: math.unit(120, "lb"),
  10981. name: "Sitting",
  10982. image: {
  10983. source: "./media/characters/tene/sitting.svg",
  10984. extra: 396/366,
  10985. bottom: 79/475
  10986. }
  10987. },
  10988. smiling: {
  10989. height: math.unit(1.2, "feet"),
  10990. name: "Smiling",
  10991. image: {
  10992. source: "./media/characters/tene/smiling.svg",
  10993. extra: 1364/1071,
  10994. bottom: 0/1364
  10995. }
  10996. },
  10997. smug: {
  10998. height: math.unit(1.3, "feet"),
  10999. name: "Smug",
  11000. image: {
  11001. source: "./media/characters/tene/smug.svg",
  11002. extra: 1323/1082,
  11003. bottom: 0/1323
  11004. }
  11005. },
  11006. feral: {
  11007. height: math.unit(3.9, "feet"),
  11008. weight: math.unit(250, "lb"),
  11009. name: "Feral",
  11010. image: {
  11011. source: "./media/characters/tene/feral.svg",
  11012. extra: 717 / 458,
  11013. bottom: 0.179
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(6, "feet")
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(300, "feet"),
  11025. default: true
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(5, "miles")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11035. {
  11036. side: {
  11037. height: math.unit(6, "feet"),
  11038. name: "Side",
  11039. image: {
  11040. source: "./media/characters/evander/side.svg",
  11041. extra: 877 / 477
  11042. }
  11043. },
  11044. },
  11045. [
  11046. {
  11047. name: "Normal",
  11048. height: math.unit(0.83, "meters"),
  11049. default: true
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11055. {
  11056. front: {
  11057. height: math.unit(12, "feet"),
  11058. weight: math.unit(1000, "lb"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11062. extra: 1762 / 1611
  11063. }
  11064. },
  11065. back: {
  11066. height: math.unit(12, "feet"),
  11067. weight: math.unit(1000, "lb"),
  11068. name: "Back",
  11069. image: {
  11070. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11071. extra: 1762 / 1611
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(12, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Kaiju",
  11083. height: math.unit(150, "feet")
  11084. },
  11085. ]
  11086. ))
  11087. characterMakers.push(() => makeCharacter(
  11088. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11089. {
  11090. front: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(150, "lb"),
  11093. name: "Front",
  11094. image: {
  11095. source: "./media/characters/zero-alurus/front.svg"
  11096. }
  11097. },
  11098. back: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(150, "lb"),
  11101. name: "Back",
  11102. image: {
  11103. source: "./media/characters/zero-alurus/back.svg"
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(5 + 10 / 12, "feet")
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(60, "feet"),
  11115. default: true
  11116. },
  11117. {
  11118. name: "Macro+",
  11119. height: math.unit(450, "feet")
  11120. },
  11121. ]
  11122. ))
  11123. characterMakers.push(() => makeCharacter(
  11124. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11125. {
  11126. front: {
  11127. height: math.unit(6, "feet"),
  11128. weight: math.unit(200, "lb"),
  11129. name: "Front",
  11130. image: {
  11131. source: "./media/characters/mega-shi/front.svg",
  11132. extra: 1279 / 1250,
  11133. bottom: 0.02
  11134. }
  11135. },
  11136. back: {
  11137. height: math.unit(6, "feet"),
  11138. weight: math.unit(200, "lb"),
  11139. name: "Back",
  11140. image: {
  11141. source: "./media/characters/mega-shi/back.svg",
  11142. extra: 1279 / 1250,
  11143. bottom: 0.02
  11144. }
  11145. },
  11146. },
  11147. [
  11148. {
  11149. name: "Micro",
  11150. height: math.unit(16 + 6 / 12, "feet")
  11151. },
  11152. {
  11153. name: "Third Dimension",
  11154. height: math.unit(40, "meters")
  11155. },
  11156. {
  11157. name: "Normal",
  11158. height: math.unit(660, "feet"),
  11159. default: true
  11160. },
  11161. {
  11162. name: "Megamacro",
  11163. height: math.unit(10, "miles")
  11164. },
  11165. {
  11166. name: "Planetary Launch",
  11167. height: math.unit(500, "miles")
  11168. },
  11169. {
  11170. name: "Interstellar",
  11171. height: math.unit(1e9, "miles")
  11172. },
  11173. {
  11174. name: "Leaving the Universe",
  11175. height: math.unit(1, "gigaparsec")
  11176. },
  11177. {
  11178. name: "Travelling Universes",
  11179. height: math.unit(30e15, "parsecs")
  11180. },
  11181. ]
  11182. ))
  11183. characterMakers.push(() => makeCharacter(
  11184. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11185. {
  11186. front: {
  11187. height: math.unit(5 + 4/12, "feet"),
  11188. weight: math.unit(120, "lb"),
  11189. name: "Front",
  11190. image: {
  11191. source: "./media/characters/odyssey/front.svg",
  11192. extra: 1747/1571,
  11193. bottom: 47/1794
  11194. }
  11195. },
  11196. side: {
  11197. height: math.unit(5.1, "feet"),
  11198. weight: math.unit(120, "lb"),
  11199. name: "Side",
  11200. image: {
  11201. source: "./media/characters/odyssey/side.svg",
  11202. extra: 1847/1619,
  11203. bottom: 47/1894
  11204. }
  11205. },
  11206. lounging: {
  11207. height: math.unit(1.464, "feet"),
  11208. weight: math.unit(120, "lb"),
  11209. name: "Lounging",
  11210. image: {
  11211. source: "./media/characters/odyssey/lounging.svg",
  11212. extra: 1235/837,
  11213. bottom: 551/1786
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Normal",
  11220. height: math.unit(5 + 4 / 12, "feet")
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(1, "km")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(3000, "km")
  11229. },
  11230. {
  11231. name: "Gigamacro",
  11232. height: math.unit(1, "AU"),
  11233. default: true
  11234. },
  11235. {
  11236. name: "Omniversal",
  11237. height: math.unit(100e14, "lightyears")
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11243. {
  11244. front: {
  11245. height: math.unit(5 + 10/12, "feet"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/mekuto/front.svg",
  11249. extra: 875/835,
  11250. bottom: 46/921
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Minimicro",
  11257. height: math.unit(0.2, "inches")
  11258. },
  11259. {
  11260. name: "Micro",
  11261. height: math.unit(1.5, "inches")
  11262. },
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(5 + 10 / 12, "feet"),
  11266. default: true
  11267. },
  11268. {
  11269. name: "Minimacro",
  11270. height: math.unit(17 + 9 / 12, "feet")
  11271. },
  11272. {
  11273. name: "Macro",
  11274. height: math.unit(177.5, "feet")
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(152, "miles")
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(6.5, "inches"),
  11287. weight: math.unit(13, "oz"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/dafydd-tomos/front.svg",
  11291. extra: 2990 / 2603,
  11292. bottom: 0.03
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Micro",
  11299. height: math.unit(6.5, "inches"),
  11300. default: true
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(150, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/splinter/front.svg",
  11313. extra: 2990 / 2882,
  11314. bottom: 0.04
  11315. }
  11316. },
  11317. back: {
  11318. height: math.unit(6, "feet"),
  11319. weight: math.unit(150, "lb"),
  11320. name: "Back",
  11321. image: {
  11322. source: "./media/characters/splinter/back.svg",
  11323. extra: 2990 / 2882,
  11324. bottom: 0.04
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(6, "feet")
  11332. },
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(230, "meters"),
  11336. default: true
  11337. },
  11338. ]
  11339. ))
  11340. characterMakers.push(() => makeCharacter(
  11341. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11342. {
  11343. front: {
  11344. height: math.unit(4 + 10 / 12, "feet"),
  11345. weight: math.unit(480, "lb"),
  11346. name: "Front",
  11347. image: {
  11348. source: "./media/characters/snow-gabumon/front.svg",
  11349. extra: 1140 / 963,
  11350. bottom: 0.058
  11351. }
  11352. },
  11353. back: {
  11354. height: math.unit(4 + 10 / 12, "feet"),
  11355. weight: math.unit(480, "lb"),
  11356. name: "Back",
  11357. image: {
  11358. source: "./media/characters/snow-gabumon/back.svg",
  11359. extra: 1115 / 962,
  11360. bottom: 0.041
  11361. }
  11362. },
  11363. frontUndresed: {
  11364. height: math.unit(4 + 10 / 12, "feet"),
  11365. weight: math.unit(480, "lb"),
  11366. name: "Front (Undressed)",
  11367. image: {
  11368. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11369. extra: 1061 / 960,
  11370. bottom: 0.045
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Micro",
  11377. height: math.unit(1, "inch")
  11378. },
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(4 + 10 / 12, "feet"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(200, "feet")
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(120, "miles")
  11391. },
  11392. {
  11393. name: "Gigamacro",
  11394. height: math.unit(9800, "miles")
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11400. {
  11401. front: {
  11402. height: math.unit(1.7, "meters"),
  11403. weight: math.unit(140, "lb"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/moody/front.svg",
  11407. extra: 3226 / 3007,
  11408. bottom: 0.087
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Micro",
  11415. height: math.unit(1, "mm")
  11416. },
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(1.7, "meters"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Macro",
  11424. height: math.unit(80, "meters")
  11425. },
  11426. {
  11427. name: "Macro+",
  11428. height: math.unit(500, "meters")
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11434. {
  11435. front: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(150, "lb"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/zyas/front.svg",
  11441. extra: 1180 / 1120,
  11442. bottom: 0.045
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(10, "feet"),
  11450. default: true
  11451. },
  11452. {
  11453. name: "Macro",
  11454. height: math.unit(500, "feet")
  11455. },
  11456. {
  11457. name: "Megamacro",
  11458. height: math.unit(5, "miles")
  11459. },
  11460. {
  11461. name: "Teramacro",
  11462. height: math.unit(150000, "miles")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11468. {
  11469. front: {
  11470. height: math.unit(6, "feet"),
  11471. weight: math.unit(150, "lb"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/cuon/front.svg",
  11475. extra: 1390 / 1320,
  11476. bottom: 0.008
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Micro",
  11483. height: math.unit(3, "inches")
  11484. },
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(18 + 9 / 12, "feet"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(360, "feet")
  11493. },
  11494. {
  11495. name: "Megamacro",
  11496. height: math.unit(360, "miles")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(2.4, "meters"),
  11505. weight: math.unit(70, "kg"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/nyanuxk/front.svg",
  11509. extra: 1172 / 1084,
  11510. bottom: 0.065
  11511. }
  11512. },
  11513. side: {
  11514. height: math.unit(2.4, "meters"),
  11515. weight: math.unit(70, "kg"),
  11516. name: "Side",
  11517. image: {
  11518. source: "./media/characters/nyanuxk/side.svg",
  11519. extra: 1190 / 1132,
  11520. bottom: 0.007
  11521. }
  11522. },
  11523. back: {
  11524. height: math.unit(2.4, "meters"),
  11525. weight: math.unit(70, "kg"),
  11526. name: "Back",
  11527. image: {
  11528. source: "./media/characters/nyanuxk/back.svg",
  11529. extra: 1200 / 1141,
  11530. bottom: 0.015
  11531. }
  11532. },
  11533. foot: {
  11534. height: math.unit(0.52, "meters"),
  11535. name: "Foot",
  11536. image: {
  11537. source: "./media/characters/nyanuxk/foot.svg"
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(2, "cm")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(2.4, "meters"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Smaller Macro",
  11553. height: math.unit(120, "meters")
  11554. },
  11555. {
  11556. name: "Bigger Macro",
  11557. height: math.unit(1.2, "km")
  11558. },
  11559. {
  11560. name: "Megamacro",
  11561. height: math.unit(15, "kilometers")
  11562. },
  11563. {
  11564. name: "Gigamacro",
  11565. height: math.unit(2000, "km")
  11566. },
  11567. {
  11568. name: "Teramacro",
  11569. height: math.unit(500000, "km")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11575. {
  11576. side: {
  11577. height: math.unit(6, "feet"),
  11578. name: "Side",
  11579. image: {
  11580. source: "./media/characters/ailbhe/side.svg",
  11581. extra: 757 / 464,
  11582. bottom: 0.041
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(1.07, "meters"),
  11590. default: true
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(120, "kg"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/zevulfius/front.svg",
  11603. extra: 965 / 903
  11604. }
  11605. },
  11606. side: {
  11607. height: math.unit(6, "feet"),
  11608. weight: math.unit(120, "kg"),
  11609. name: "Side",
  11610. image: {
  11611. source: "./media/characters/zevulfius/side.svg",
  11612. extra: 939 / 900
  11613. }
  11614. },
  11615. back: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(120, "kg"),
  11618. name: "Back",
  11619. image: {
  11620. source: "./media/characters/zevulfius/back.svg",
  11621. extra: 918 / 854,
  11622. bottom: 0.005
  11623. }
  11624. },
  11625. foot: {
  11626. height: math.unit(6 / 3.72, "feet"),
  11627. name: "Foot",
  11628. image: {
  11629. source: "./media/characters/zevulfius/foot.svg"
  11630. }
  11631. },
  11632. },
  11633. [
  11634. {
  11635. name: "Macro",
  11636. height: math.unit(750, "meters")
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(20, "km"),
  11641. default: true
  11642. },
  11643. {
  11644. name: "Gigamacro",
  11645. height: math.unit(2000, "km")
  11646. },
  11647. {
  11648. name: "Teramacro",
  11649. height: math.unit(250000, "km")
  11650. },
  11651. ]
  11652. ))
  11653. characterMakers.push(() => makeCharacter(
  11654. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11655. {
  11656. front: {
  11657. height: math.unit(100, "feet"),
  11658. weight: math.unit(350, "kg"),
  11659. name: "Front",
  11660. image: {
  11661. source: "./media/characters/rikes/front.svg",
  11662. extra: 1565 / 1483,
  11663. bottom: 0.017
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Macro",
  11670. height: math.unit(100, "feet"),
  11671. default: true
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(8, "feet"),
  11680. weight: math.unit(356, "lb"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/adam-silver-mane/front.svg",
  11684. extra: 1036/937,
  11685. bottom: 63/1099
  11686. }
  11687. },
  11688. side: {
  11689. height: math.unit(8, "feet"),
  11690. weight: math.unit(356, "lb"),
  11691. name: "Side",
  11692. image: {
  11693. source: "./media/characters/adam-silver-mane/side.svg",
  11694. extra: 997/901,
  11695. bottom: 59/1056
  11696. }
  11697. },
  11698. frontNsfw: {
  11699. height: math.unit(8, "feet"),
  11700. weight: math.unit(356, "lb"),
  11701. name: "Front (NSFW)",
  11702. image: {
  11703. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11704. extra: 1036/937,
  11705. bottom: 63/1099
  11706. }
  11707. },
  11708. sideNsfw: {
  11709. height: math.unit(8, "feet"),
  11710. weight: math.unit(356, "lb"),
  11711. name: "Side (NSFW)",
  11712. image: {
  11713. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11714. extra: 997/901,
  11715. bottom: 59/1056
  11716. }
  11717. },
  11718. dick: {
  11719. height: math.unit(2.1, "feet"),
  11720. name: "Dick",
  11721. image: {
  11722. source: "./media/characters/adam-silver-mane/dick.svg"
  11723. }
  11724. },
  11725. taur: {
  11726. height: math.unit(16, "feet"),
  11727. weight: math.unit(1500, "kg"),
  11728. name: "Taur",
  11729. image: {
  11730. source: "./media/characters/adam-silver-mane/taur.svg",
  11731. extra: 1713 / 1571,
  11732. bottom: 0.01
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(8, "feet")
  11740. },
  11741. {
  11742. name: "Minimacro",
  11743. height: math.unit(80, "feet")
  11744. },
  11745. {
  11746. name: "MDA",
  11747. height: math.unit(80, "meters")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(800, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(8000, "feet")
  11757. },
  11758. {
  11759. name: "Gigamacro",
  11760. height: math.unit(800, "miles")
  11761. },
  11762. {
  11763. name: "Teramacro",
  11764. height: math.unit(80000, "miles")
  11765. },
  11766. {
  11767. name: "Celestial",
  11768. height: math.unit(8e6, "miles")
  11769. },
  11770. {
  11771. name: "Star Dragon",
  11772. height: math.unit(800000, "parsecs")
  11773. },
  11774. {
  11775. name: "Godly",
  11776. height: math.unit(800, "teraparsecs")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Ky'owin", species: ["dragon", "cat"], 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/ky'owin/front.svg",
  11789. extra: 3862/3053,
  11790. bottom: 74/3936
  11791. }
  11792. },
  11793. },
  11794. [
  11795. {
  11796. name: "Normal",
  11797. height: math.unit(6 + 8 / 12, "feet")
  11798. },
  11799. {
  11800. name: "Large",
  11801. height: math.unit(68, "feet")
  11802. },
  11803. {
  11804. name: "Macro",
  11805. height: math.unit(132, "feet")
  11806. },
  11807. {
  11808. name: "Macro+",
  11809. height: math.unit(340, "feet")
  11810. },
  11811. {
  11812. name: "Macro++",
  11813. height: math.unit(680, "feet"),
  11814. default: true
  11815. },
  11816. {
  11817. name: "Megamacro",
  11818. height: math.unit(1, "mile")
  11819. },
  11820. {
  11821. name: "Megamacro+",
  11822. height: math.unit(10, "miles")
  11823. },
  11824. ]
  11825. ))
  11826. characterMakers.push(() => makeCharacter(
  11827. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11828. {
  11829. front: {
  11830. height: math.unit(4, "feet"),
  11831. weight: math.unit(50, "lb"),
  11832. name: "Front",
  11833. image: {
  11834. source: "./media/characters/mal/front.svg",
  11835. extra: 785 / 724,
  11836. bottom: 0.07
  11837. }
  11838. },
  11839. },
  11840. [
  11841. {
  11842. name: "Micro",
  11843. height: math.unit(4, "inches")
  11844. },
  11845. {
  11846. name: "Normal",
  11847. height: math.unit(4, "feet"),
  11848. default: true
  11849. },
  11850. {
  11851. name: "Macro",
  11852. height: math.unit(200, "feet")
  11853. },
  11854. ]
  11855. ))
  11856. characterMakers.push(() => makeCharacter(
  11857. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11858. {
  11859. front: {
  11860. height: math.unit(6, "feet"),
  11861. weight: math.unit(150, "lb"),
  11862. name: "Front",
  11863. image: {
  11864. source: "./media/characters/jordan-deware/front.svg",
  11865. extra: 1191 / 1012
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Nano",
  11872. height: math.unit(0.01, "mm")
  11873. },
  11874. {
  11875. name: "Minimicro",
  11876. height: math.unit(1, "mm")
  11877. },
  11878. {
  11879. name: "Micro",
  11880. height: math.unit(0.5, "inches")
  11881. },
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(4, "feet"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Minimacro",
  11889. height: math.unit(40, "meters")
  11890. },
  11891. {
  11892. name: "Small Macro",
  11893. height: math.unit(400, "meters")
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(4, "miles")
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(40, "miles")
  11902. },
  11903. {
  11904. name: "Megamacro+",
  11905. height: math.unit(400, "miles")
  11906. },
  11907. {
  11908. name: "Gigamacro",
  11909. height: math.unit(400000, "miles")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11915. {
  11916. side: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Side",
  11920. image: {
  11921. source: "./media/characters/kimiko/side.svg",
  11922. extra: 600 / 358
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(15, "feet"),
  11930. default: true
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(220, "feet")
  11935. },
  11936. {
  11937. name: "Macro+",
  11938. height: math.unit(1450, "feet")
  11939. },
  11940. {
  11941. name: "Megamacro",
  11942. height: math.unit(11500, "feet")
  11943. },
  11944. {
  11945. name: "Gigamacro",
  11946. height: math.unit(9500, "miles")
  11947. },
  11948. {
  11949. name: "Teramacro",
  11950. height: math.unit(2208005005, "miles")
  11951. },
  11952. {
  11953. name: "Examacro",
  11954. height: math.unit(2750, "parsecs")
  11955. },
  11956. {
  11957. name: "Zettamacro",
  11958. height: math.unit(101500, "parsecs")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11964. {
  11965. front: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(70, "kg"),
  11968. name: "Front",
  11969. image: {
  11970. source: "./media/characters/andrew-sleepy/front.svg"
  11971. }
  11972. },
  11973. side: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(70, "kg"),
  11976. name: "Side",
  11977. image: {
  11978. source: "./media/characters/andrew-sleepy/side.svg"
  11979. }
  11980. },
  11981. },
  11982. [
  11983. {
  11984. name: "Micro",
  11985. height: math.unit(1, "mm"),
  11986. default: true
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11992. {
  11993. front: {
  11994. height: math.unit(6, "feet"),
  11995. weight: math.unit(150, "lb"),
  11996. name: "Front",
  11997. image: {
  11998. source: "./media/characters/judio/front.svg",
  11999. extra: 1258 / 1110
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Normal",
  12006. height: math.unit(5 + 6 / 12, "feet")
  12007. },
  12008. {
  12009. name: "Macro",
  12010. height: math.unit(1000, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Megamacro",
  12015. height: math.unit(10, "miles")
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12021. {
  12022. frontDressed: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(68, "kg"),
  12025. name: "Front (Dressed)",
  12026. image: {
  12027. source: "./media/characters/nomaxice/front-dressed.svg",
  12028. extra: 1137/824,
  12029. bottom: 74/1211
  12030. }
  12031. },
  12032. frontShorts: {
  12033. height: math.unit(6, "feet"),
  12034. weight: math.unit(68, "kg"),
  12035. name: "Front (Shorts)",
  12036. image: {
  12037. source: "./media/characters/nomaxice/front-shorts.svg",
  12038. extra: 1137/824,
  12039. bottom: 74/1211
  12040. }
  12041. },
  12042. back: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(68, "kg"),
  12045. name: "Back",
  12046. image: {
  12047. source: "./media/characters/nomaxice/back.svg",
  12048. extra: 822/786,
  12049. bottom: 39/861
  12050. }
  12051. },
  12052. hand: {
  12053. height: math.unit(0.565, "feet"),
  12054. name: "Hand",
  12055. image: {
  12056. source: "./media/characters/nomaxice/hand.svg"
  12057. }
  12058. },
  12059. foot: {
  12060. height: math.unit(1, "feet"),
  12061. name: "Foot",
  12062. image: {
  12063. source: "./media/characters/nomaxice/foot.svg"
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Micro",
  12070. height: math.unit(8, "cm")
  12071. },
  12072. {
  12073. name: "Norm",
  12074. height: math.unit(1.82, "m")
  12075. },
  12076. {
  12077. name: "Norm+",
  12078. height: math.unit(8.8, "feet"),
  12079. default: true
  12080. },
  12081. {
  12082. name: "Big",
  12083. height: math.unit(8, "meters")
  12084. },
  12085. {
  12086. name: "Macro",
  12087. height: math.unit(18, "meters")
  12088. },
  12089. {
  12090. name: "Macro+",
  12091. height: math.unit(88, "meters")
  12092. },
  12093. ]
  12094. ))
  12095. characterMakers.push(() => makeCharacter(
  12096. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12097. {
  12098. front: {
  12099. height: math.unit(12, "feet"),
  12100. weight: math.unit(1.5, "tons"),
  12101. name: "Front",
  12102. image: {
  12103. source: "./media/characters/dydros/front.svg",
  12104. extra: 863 / 800,
  12105. bottom: 0.015
  12106. }
  12107. },
  12108. back: {
  12109. height: math.unit(12, "feet"),
  12110. weight: math.unit(1.5, "tons"),
  12111. name: "Back",
  12112. image: {
  12113. source: "./media/characters/dydros/back.svg",
  12114. extra: 900 / 843,
  12115. bottom: 0.005
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Normal",
  12122. height: math.unit(12, "feet"),
  12123. default: true
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(100, "kg"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/riggi/front.svg",
  12136. extra: 5787 / 5303
  12137. }
  12138. },
  12139. hyper: {
  12140. height: math.unit(6 * 5 / 3, "feet"),
  12141. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12142. name: "Hyper",
  12143. image: {
  12144. source: "./media/characters/riggi/hyper.svg",
  12145. extra: 3595 / 3485
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Small Macro",
  12152. height: math.unit(50, "feet")
  12153. },
  12154. {
  12155. name: "Default",
  12156. height: math.unit(200, "feet"),
  12157. default: true
  12158. },
  12159. {
  12160. name: "Loom",
  12161. height: math.unit(10000, "feet")
  12162. },
  12163. {
  12164. name: "Cruising Altitude",
  12165. height: math.unit(30000, "feet")
  12166. },
  12167. {
  12168. name: "Megamacro",
  12169. height: math.unit(100, "miles")
  12170. },
  12171. {
  12172. name: "Continent Sized",
  12173. height: math.unit(2800, "miles")
  12174. },
  12175. {
  12176. name: "Earth Sized",
  12177. height: math.unit(8000, "miles")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(6, "feet"),
  12186. weight: math.unit(250, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/alexi/front.svg",
  12190. extra: 3483 / 3291,
  12191. bottom: 0.04
  12192. }
  12193. },
  12194. back: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(250, "lb"),
  12197. name: "Back",
  12198. image: {
  12199. source: "./media/characters/alexi/back.svg",
  12200. extra: 3533 / 3356,
  12201. bottom: 0.021
  12202. }
  12203. },
  12204. frontTransforming: {
  12205. height: math.unit(8.58, "feet"),
  12206. weight: math.unit(1300, "lb"),
  12207. name: "Transforming",
  12208. image: {
  12209. source: "./media/characters/alexi/front-transforming.svg",
  12210. extra: 437 / 409,
  12211. bottom: 19 / 458.66
  12212. }
  12213. },
  12214. frontTransformed: {
  12215. height: math.unit(12.5, "feet"),
  12216. weight: math.unit(4000, "lb"),
  12217. name: "Transformed",
  12218. image: {
  12219. source: "./media/characters/alexi/front-transformed.svg",
  12220. extra: 639 / 614,
  12221. bottom: 30.55 / 671
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(14, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Minimacro",
  12233. height: math.unit(30, "meters")
  12234. },
  12235. {
  12236. name: "Macro",
  12237. height: math.unit(500, "meters")
  12238. },
  12239. {
  12240. name: "Megamacro",
  12241. height: math.unit(9000, "km")
  12242. },
  12243. {
  12244. name: "Teramacro",
  12245. height: math.unit(384000, "km")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(150, "lb"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/kayroo/front.svg",
  12258. extra: 1153 / 1038,
  12259. bottom: 0.06
  12260. }
  12261. },
  12262. foot: {
  12263. height: math.unit(6, "feet"),
  12264. weight: math.unit(150, "lb"),
  12265. name: "Foot",
  12266. image: {
  12267. source: "./media/characters/kayroo/foot.svg"
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(8, "feet"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Minimacro",
  12279. height: math.unit(250, "feet")
  12280. },
  12281. {
  12282. name: "Macro",
  12283. height: math.unit(2800, "feet")
  12284. },
  12285. {
  12286. name: "Megamacro",
  12287. height: math.unit(5200, "feet")
  12288. },
  12289. {
  12290. name: "Gigamacro",
  12291. height: math.unit(27000, "feet")
  12292. },
  12293. {
  12294. name: "Omega",
  12295. height: math.unit(45000, "feet")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(18, "feet"),
  12304. weight: math.unit(5800, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/rhys/front.svg",
  12308. extra: 3386 / 3090,
  12309. bottom: 0.07
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Normal",
  12316. height: math.unit(18, "feet"),
  12317. default: true
  12318. },
  12319. {
  12320. name: "Working Size",
  12321. height: math.unit(200, "feet")
  12322. },
  12323. {
  12324. name: "Demolition Size",
  12325. height: math.unit(2000, "feet")
  12326. },
  12327. {
  12328. name: "Maximum Licensed Size",
  12329. height: math.unit(5, "miles")
  12330. },
  12331. {
  12332. name: "Maximum Observed Size",
  12333. height: math.unit(10, "yottameters")
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(6, "feet"),
  12342. weight: math.unit(250, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/toto/front.svg",
  12346. extra: 527 / 479,
  12347. bottom: 0.05
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Micro",
  12354. height: math.unit(3, "feet")
  12355. },
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(10, "feet")
  12359. },
  12360. {
  12361. name: "Macro",
  12362. height: math.unit(150, "feet"),
  12363. default: true
  12364. },
  12365. {
  12366. name: "Megamacro",
  12367. height: math.unit(1200, "feet")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "King", species: ["lion"], tags: ["anthro"] },
  12373. {
  12374. back: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(150, "lb"),
  12377. name: "Back",
  12378. image: {
  12379. source: "./media/characters/king/back.svg"
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Micro",
  12386. height: math.unit(2, "inches")
  12387. },
  12388. {
  12389. name: "Normal",
  12390. height: math.unit(8, "feet")
  12391. },
  12392. {
  12393. name: "Macro",
  12394. height: math.unit(200, "feet"),
  12395. default: true
  12396. },
  12397. {
  12398. name: "Megamacro",
  12399. height: math.unit(50, "miles")
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(11, "feet"),
  12408. weight: math.unit(1400, "lb"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/cordite/front.svg",
  12412. extra: 1919/1827,
  12413. bottom: 40/1959
  12414. }
  12415. },
  12416. side: {
  12417. height: math.unit(11, "feet"),
  12418. weight: math.unit(1400, "lb"),
  12419. name: "Side",
  12420. image: {
  12421. source: "./media/characters/cordite/side.svg",
  12422. extra: 1908/1793,
  12423. bottom: 38/1946
  12424. }
  12425. },
  12426. back: {
  12427. height: math.unit(11, "feet"),
  12428. weight: math.unit(1400, "lb"),
  12429. name: "Back",
  12430. image: {
  12431. source: "./media/characters/cordite/back.svg",
  12432. extra: 1938/1837,
  12433. bottom: 10/1948
  12434. }
  12435. },
  12436. feral: {
  12437. height: math.unit(2, "feet"),
  12438. weight: math.unit(90, "lb"),
  12439. name: "Feral",
  12440. image: {
  12441. source: "./media/characters/cordite/feral.svg",
  12442. extra: 1260 / 755,
  12443. bottom: 0.05
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Normal",
  12450. height: math.unit(11, "feet"),
  12451. default: true
  12452. },
  12453. ]
  12454. ))
  12455. characterMakers.push(() => makeCharacter(
  12456. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12457. {
  12458. front: {
  12459. height: math.unit(6, "feet"),
  12460. weight: math.unit(150, "lb"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/pianostrong/front.svg",
  12464. extra: 6577 / 6254,
  12465. bottom: 0.02
  12466. }
  12467. },
  12468. side: {
  12469. height: math.unit(6, "feet"),
  12470. weight: math.unit(150, "lb"),
  12471. name: "Side",
  12472. image: {
  12473. source: "./media/characters/pianostrong/side.svg",
  12474. extra: 6106 / 5730
  12475. }
  12476. },
  12477. back: {
  12478. height: math.unit(6, "feet"),
  12479. weight: math.unit(150, "lb"),
  12480. name: "Back",
  12481. image: {
  12482. source: "./media/characters/pianostrong/back.svg",
  12483. extra: 6085 / 5733,
  12484. bottom: 0.01
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Macro",
  12491. height: math.unit(100, "feet")
  12492. },
  12493. {
  12494. name: "Macro+",
  12495. height: math.unit(300, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Macro++",
  12500. height: math.unit(1000, "feet")
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(150, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/kona/front.svg",
  12513. extra: 2960 / 2629,
  12514. bottom: 0.005
  12515. }
  12516. },
  12517. },
  12518. [
  12519. {
  12520. name: "Normal",
  12521. height: math.unit(11 + 8 / 12, "feet")
  12522. },
  12523. {
  12524. name: "Macro",
  12525. height: math.unit(850, "feet"),
  12526. default: true
  12527. },
  12528. {
  12529. name: "Macro+",
  12530. height: math.unit(1.5, "km"),
  12531. default: true
  12532. },
  12533. {
  12534. name: "Megamacro",
  12535. height: math.unit(80, "miles")
  12536. },
  12537. {
  12538. name: "Gigamacro",
  12539. height: math.unit(3500, "miles")
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12545. {
  12546. side: {
  12547. height: math.unit(1.9, "meters"),
  12548. weight: math.unit(326, "kg"),
  12549. name: "Side",
  12550. image: {
  12551. source: "./media/characters/levi/side.svg",
  12552. extra: 1704 / 1334,
  12553. bottom: 0.02
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(1.9, "meters"),
  12561. default: true
  12562. },
  12563. {
  12564. name: "Macro",
  12565. height: math.unit(20, "meters")
  12566. },
  12567. {
  12568. name: "Macro+",
  12569. height: math.unit(200, "meters")
  12570. },
  12571. {
  12572. name: "Megamacro",
  12573. height: math.unit(2, "km")
  12574. },
  12575. {
  12576. name: "Megamacro+",
  12577. height: math.unit(20, "km")
  12578. },
  12579. {
  12580. name: "Gigamacro",
  12581. height: math.unit(2500, "km")
  12582. },
  12583. {
  12584. name: "Gigamacro+",
  12585. height: math.unit(120000, "km")
  12586. },
  12587. {
  12588. name: "Teramacro",
  12589. height: math.unit(7.77e6, "km")
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12595. {
  12596. front: {
  12597. height: math.unit(6 + 4/12, "feet"),
  12598. weight: math.unit(190, "lb"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/bmc/front.svg",
  12602. extra: 1626/1472,
  12603. bottom: 79/1705
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(6 + 4/12, "feet"),
  12608. weight: math.unit(190, "lb"),
  12609. name: "Back",
  12610. image: {
  12611. source: "./media/characters/bmc/back.svg",
  12612. extra: 1640/1479,
  12613. bottom: 45/1685
  12614. }
  12615. },
  12616. frontArmor: {
  12617. height: math.unit(6 + 4/12, "feet"),
  12618. weight: math.unit(190, "lb"),
  12619. name: "Front-armor",
  12620. image: {
  12621. source: "./media/characters/bmc/front-armor.svg",
  12622. extra: 1538/1468,
  12623. bottom: 79/1617
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Human-sized",
  12630. height: math.unit(6 + 4 / 12, "feet")
  12631. },
  12632. {
  12633. name: "Interactive Size",
  12634. height: math.unit(25, "feet")
  12635. },
  12636. {
  12637. name: "Small",
  12638. height: math.unit(250, "feet")
  12639. },
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(1250, "feet"),
  12643. default: true
  12644. },
  12645. {
  12646. name: "Good Day",
  12647. height: math.unit(88, "miles")
  12648. },
  12649. {
  12650. name: "Largest Measured Size",
  12651. height: math.unit(105.960, "galaxies")
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12657. {
  12658. front: {
  12659. height: math.unit(20, "feet"),
  12660. weight: math.unit(2016, "kg"),
  12661. name: "Front",
  12662. image: {
  12663. source: "./media/characters/sven-the-kaiju/front.svg",
  12664. extra: 1277/1250,
  12665. bottom: 35/1312
  12666. }
  12667. },
  12668. mouth: {
  12669. height: math.unit(1.85, "feet"),
  12670. name: "Mouth",
  12671. image: {
  12672. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Fairy",
  12679. height: math.unit(6, "inches")
  12680. },
  12681. {
  12682. name: "Normal",
  12683. height: math.unit(20, "feet"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Rampage",
  12688. height: math.unit(200, "feet")
  12689. },
  12690. {
  12691. name: "Archfey Forest Guardian",
  12692. height: math.unit(1, "mile")
  12693. },
  12694. ]
  12695. ))
  12696. characterMakers.push(() => makeCharacter(
  12697. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12698. {
  12699. front: {
  12700. height: math.unit(4, "meters"),
  12701. weight: math.unit(2, "tons"),
  12702. name: "Front",
  12703. image: {
  12704. source: "./media/characters/marik/front.svg",
  12705. extra: 1057 / 1003,
  12706. bottom: 0.08
  12707. }
  12708. },
  12709. },
  12710. [
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(4, "meters"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Macro",
  12718. height: math.unit(20, "meters")
  12719. },
  12720. {
  12721. name: "Megamacro",
  12722. height: math.unit(50, "km")
  12723. },
  12724. {
  12725. name: "Gigamacro",
  12726. height: math.unit(100, "km")
  12727. },
  12728. {
  12729. name: "Alpha Macro",
  12730. height: math.unit(7.88e7, "yottameters")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(6, "feet"),
  12739. weight: math.unit(110, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/mel/front.svg",
  12743. extra: 736 / 617,
  12744. bottom: 0.017
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Pico",
  12751. height: math.unit(3, "pm")
  12752. },
  12753. {
  12754. name: "Nano",
  12755. height: math.unit(3, "nm")
  12756. },
  12757. {
  12758. name: "Micro",
  12759. height: math.unit(0.3, "mm"),
  12760. default: true
  12761. },
  12762. {
  12763. name: "Micro+",
  12764. height: math.unit(3, "mm")
  12765. },
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(5 + 10.5 / 12, "feet")
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12774. {
  12775. kaiju: {
  12776. height: math.unit(1.75, "meters"),
  12777. weight: math.unit(55, "kg"),
  12778. name: "Kaiju",
  12779. image: {
  12780. source: "./media/characters/lykonous/kaiju.svg",
  12781. extra: 1055 / 946,
  12782. bottom: 0.135
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Normal",
  12789. height: math.unit(2.5, "meters"),
  12790. default: true
  12791. },
  12792. {
  12793. name: "Kaiju Dragon",
  12794. height: math.unit(60, "meters")
  12795. },
  12796. {
  12797. name: "Mega Kaiju",
  12798. height: math.unit(120, "km")
  12799. },
  12800. {
  12801. name: "Giga Kaiju",
  12802. height: math.unit(200, "megameters")
  12803. },
  12804. {
  12805. name: "Terra Kaiju",
  12806. height: math.unit(400, "gigameters")
  12807. },
  12808. {
  12809. name: "Kaiju Dragon God",
  12810. height: math.unit(13000, "exaparsecs")
  12811. },
  12812. ]
  12813. ))
  12814. characterMakers.push(() => makeCharacter(
  12815. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12816. {
  12817. front: {
  12818. height: math.unit(6, "feet"),
  12819. weight: math.unit(150, "lb"),
  12820. name: "Front",
  12821. image: {
  12822. source: "./media/characters/blü/front.svg",
  12823. extra: 1883 / 1564,
  12824. bottom: 0.031
  12825. }
  12826. },
  12827. },
  12828. [
  12829. {
  12830. name: "Normal",
  12831. height: math.unit(13, "feet"),
  12832. default: true
  12833. },
  12834. {
  12835. name: "Big Boi",
  12836. height: math.unit(150, "meters")
  12837. },
  12838. {
  12839. name: "Mini Stomper",
  12840. height: math.unit(300, "meters")
  12841. },
  12842. {
  12843. name: "Macro",
  12844. height: math.unit(1000, "meters")
  12845. },
  12846. {
  12847. name: "Megamacro",
  12848. height: math.unit(11000, "meters")
  12849. },
  12850. {
  12851. name: "Gigamacro",
  12852. height: math.unit(11000, "km")
  12853. },
  12854. {
  12855. name: "Teramacro",
  12856. height: math.unit(420000, "km")
  12857. },
  12858. {
  12859. name: "Examacro",
  12860. height: math.unit(120, "parsecs")
  12861. },
  12862. {
  12863. name: "God Tho",
  12864. height: math.unit(98000000000, "parsecs")
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12870. {
  12871. taurFront: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(200, "lb"),
  12874. name: "Taur (Front)",
  12875. image: {
  12876. source: "./media/characters/scales/taur-front.svg",
  12877. extra: 1,
  12878. bottom: 0.05
  12879. }
  12880. },
  12881. taurBack: {
  12882. height: math.unit(6, "feet"),
  12883. weight: math.unit(200, "lb"),
  12884. name: "Taur (Back)",
  12885. image: {
  12886. source: "./media/characters/scales/taur-back.svg",
  12887. extra: 1,
  12888. bottom: 0.08
  12889. }
  12890. },
  12891. anthro: {
  12892. height: math.unit(6 * 7 / 12, "feet"),
  12893. weight: math.unit(100, "lb"),
  12894. name: "Anthro",
  12895. image: {
  12896. source: "./media/characters/scales/anthro.svg",
  12897. extra: 1,
  12898. bottom: 0.06
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(12, "feet"),
  12906. default: true
  12907. },
  12908. ]
  12909. ))
  12910. characterMakers.push(() => makeCharacter(
  12911. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12912. {
  12913. front: {
  12914. height: math.unit(6, "feet"),
  12915. weight: math.unit(150, "lb"),
  12916. name: "Front",
  12917. image: {
  12918. source: "./media/characters/koragos/front.svg",
  12919. extra: 841 / 794,
  12920. bottom: 0.035
  12921. }
  12922. },
  12923. back: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(150, "lb"),
  12926. name: "Back",
  12927. image: {
  12928. source: "./media/characters/koragos/back.svg",
  12929. extra: 841 / 810,
  12930. bottom: 0.022
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(6 + 11 / 12, "feet"),
  12938. default: true
  12939. },
  12940. {
  12941. name: "Macro",
  12942. height: math.unit(490, "feet")
  12943. },
  12944. {
  12945. name: "Megamacro",
  12946. height: math.unit(10, "miles")
  12947. },
  12948. {
  12949. name: "Gigamacro",
  12950. height: math.unit(50, "miles")
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12956. {
  12957. front: {
  12958. height: math.unit(6, "feet"),
  12959. weight: math.unit(250, "lb"),
  12960. name: "Front",
  12961. image: {
  12962. source: "./media/characters/xylrem/front.svg",
  12963. extra: 3323 / 3050,
  12964. bottom: 0.065
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Micro",
  12971. height: math.unit(4, "feet")
  12972. },
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(16, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(2720, "feet")
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(25000, "miles")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12990. {
  12991. front: {
  12992. height: math.unit(8, "feet"),
  12993. weight: math.unit(250, "kg"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/ikideru/front.svg",
  12997. extra: 930 / 870,
  12998. bottom: 0.087
  12999. }
  13000. },
  13001. back: {
  13002. height: math.unit(8, "feet"),
  13003. weight: math.unit(250, "kg"),
  13004. name: "Back",
  13005. image: {
  13006. source: "./media/characters/ikideru/back.svg",
  13007. extra: 919 / 852,
  13008. bottom: 0.055
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Rare",
  13015. height: math.unit(8, "feet"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Playful Loom",
  13020. height: math.unit(80, "feet")
  13021. },
  13022. {
  13023. name: "City Leaner",
  13024. height: math.unit(230, "feet")
  13025. },
  13026. {
  13027. name: "Megamacro",
  13028. height: math.unit(2500, "feet")
  13029. },
  13030. {
  13031. name: "Gigamacro",
  13032. height: math.unit(26400, "feet")
  13033. },
  13034. {
  13035. name: "Tectonic Shifter",
  13036. height: math.unit(1.7, "megameters")
  13037. },
  13038. {
  13039. name: "Planet Carer",
  13040. height: math.unit(21, "megameters")
  13041. },
  13042. {
  13043. name: "God",
  13044. height: math.unit(11157.22, "parsecs")
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13050. {
  13051. front: {
  13052. height: math.unit(6, "feet"),
  13053. weight: math.unit(120, "lb"),
  13054. name: "Front",
  13055. image: {
  13056. source: "./media/characters/neo/front.svg"
  13057. }
  13058. },
  13059. },
  13060. [
  13061. {
  13062. name: "Micro",
  13063. height: math.unit(2, "inches"),
  13064. default: true
  13065. },
  13066. {
  13067. name: "Human Size",
  13068. height: math.unit(5 + 8 / 12, "feet")
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13074. {
  13075. front: {
  13076. height: math.unit(13 + 10 / 12, "feet"),
  13077. weight: math.unit(5320, "lb"),
  13078. name: "Front",
  13079. image: {
  13080. source: "./media/characters/chauncey-chantz/front.svg",
  13081. extra: 1587 / 1435,
  13082. bottom: 0.02
  13083. }
  13084. },
  13085. },
  13086. [
  13087. {
  13088. name: "Normal",
  13089. height: math.unit(13 + 10 / 12, "feet"),
  13090. default: true
  13091. },
  13092. {
  13093. name: "Macro",
  13094. height: math.unit(45, "feet")
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(250, "miles")
  13099. },
  13100. {
  13101. name: "Planetary",
  13102. height: math.unit(10000, "miles")
  13103. },
  13104. {
  13105. name: "Galactic",
  13106. height: math.unit(40000, "parsecs")
  13107. },
  13108. {
  13109. name: "Universal",
  13110. height: math.unit(1, "yottameter")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13116. {
  13117. front: {
  13118. height: math.unit(6, "feet"),
  13119. weight: math.unit(150, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/epifox/front.svg",
  13123. extra: 1,
  13124. bottom: 0.075
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Micro",
  13131. height: math.unit(6, "inches")
  13132. },
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(12, "feet"),
  13136. default: true
  13137. },
  13138. {
  13139. name: "Macro",
  13140. height: math.unit(3810, "feet")
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(500, "miles")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(1.8796, "m"),
  13153. weight: math.unit(230, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/colin-t/front.svg",
  13157. extra: 1272 / 1193,
  13158. bottom: 0.07
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Micro",
  13165. height: math.unit(0.571, "meters")
  13166. },
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(1.8796, "meters"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Tall",
  13174. height: math.unit(4, "meters")
  13175. },
  13176. {
  13177. name: "Macro",
  13178. height: math.unit(67.241, "meters")
  13179. },
  13180. {
  13181. name: "Megamacro",
  13182. height: math.unit(371.856, "meters")
  13183. },
  13184. {
  13185. name: "Planetary",
  13186. height: math.unit(12631.5689, "km")
  13187. },
  13188. ]
  13189. ))
  13190. characterMakers.push(() => makeCharacter(
  13191. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13192. {
  13193. front: {
  13194. height: math.unit(1.85, "meters"),
  13195. weight: math.unit(80, "kg"),
  13196. name: "Front",
  13197. image: {
  13198. source: "./media/characters/matvei/front.svg",
  13199. extra: 456/447,
  13200. bottom: 8/464
  13201. }
  13202. },
  13203. back: {
  13204. height: math.unit(1.85, "meters"),
  13205. weight: math.unit(80, "kg"),
  13206. name: "Back",
  13207. image: {
  13208. source: "./media/characters/matvei/back.svg",
  13209. extra: 434/427,
  13210. bottom: 11/445
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(1.85, "meters"),
  13218. default: true
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(5 + 9 / 12, "feet"),
  13227. weight: math.unit(70, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/quincy/front.svg",
  13231. extra: 3041 / 2751
  13232. }
  13233. },
  13234. back: {
  13235. height: math.unit(5 + 9 / 12, "feet"),
  13236. weight: math.unit(70, "lb"),
  13237. name: "Back",
  13238. image: {
  13239. source: "./media/characters/quincy/back.svg",
  13240. extra: 3041 / 2751
  13241. }
  13242. },
  13243. flying: {
  13244. height: math.unit(5 + 4 / 12, "feet"),
  13245. weight: math.unit(70, "lb"),
  13246. name: "Flying",
  13247. image: {
  13248. source: "./media/characters/quincy/flying.svg",
  13249. extra: 1044 / 930
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Micro",
  13256. height: math.unit(3, "cm")
  13257. },
  13258. {
  13259. name: "Normal",
  13260. height: math.unit(5 + 9 / 12, "feet")
  13261. },
  13262. {
  13263. name: "Macro",
  13264. height: math.unit(200, "meters"),
  13265. default: true
  13266. },
  13267. {
  13268. name: "Megamacro",
  13269. height: math.unit(1000, "meters")
  13270. },
  13271. ]
  13272. ))
  13273. characterMakers.push(() => makeCharacter(
  13274. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13275. {
  13276. front: {
  13277. height: math.unit(3 + 11/12, "feet"),
  13278. weight: math.unit(50, "lb"),
  13279. name: "Front",
  13280. image: {
  13281. source: "./media/characters/vanrel/front.svg",
  13282. extra: 1104/949,
  13283. bottom: 52/1156
  13284. }
  13285. },
  13286. back: {
  13287. height: math.unit(3 + 11/12, "feet"),
  13288. weight: math.unit(50, "lb"),
  13289. name: "Back",
  13290. image: {
  13291. source: "./media/characters/vanrel/back.svg",
  13292. extra: 1119/976,
  13293. bottom: 37/1156
  13294. }
  13295. },
  13296. tome: {
  13297. height: math.unit(1.35, "feet"),
  13298. weight: math.unit(10, "lb"),
  13299. name: "Vanrel's Tome",
  13300. rename: true,
  13301. image: {
  13302. source: "./media/characters/vanrel/tome.svg"
  13303. }
  13304. },
  13305. beans: {
  13306. height: math.unit(0.89, "feet"),
  13307. name: "Beans",
  13308. image: {
  13309. source: "./media/characters/vanrel/beans.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Normal",
  13316. height: math.unit(3 + 11/12, "feet"),
  13317. default: true
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13323. {
  13324. front: {
  13325. height: math.unit(7 + 5 / 12, "feet"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/kuiper-vanrel/front.svg",
  13329. extra: 1219/1169,
  13330. bottom: 69/1288
  13331. }
  13332. },
  13333. back: {
  13334. height: math.unit(7 + 5 / 12, "feet"),
  13335. name: "Back",
  13336. image: {
  13337. source: "./media/characters/kuiper-vanrel/back.svg",
  13338. extra: 1236/1193,
  13339. bottom: 27/1263
  13340. }
  13341. },
  13342. foot: {
  13343. height: math.unit(0.55, "meters"),
  13344. name: "Foot",
  13345. image: {
  13346. source: "./media/characters/kuiper-vanrel/foot.svg",
  13347. }
  13348. },
  13349. battle: {
  13350. height: math.unit(6.824, "feet"),
  13351. name: "Battle",
  13352. image: {
  13353. source: "./media/characters/kuiper-vanrel/battle.svg",
  13354. extra: 1466 / 1327,
  13355. bottom: 29 / 1492.5
  13356. }
  13357. },
  13358. meerkui: {
  13359. height: math.unit(18, "inches"),
  13360. name: "Meerkui",
  13361. image: {
  13362. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13363. extra: 1354/1289,
  13364. bottom: 69/1423
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Normal",
  13371. height: math.unit(7 + 5 / 12, "feet"),
  13372. default: true
  13373. },
  13374. ]
  13375. ))
  13376. characterMakers.push(() => makeCharacter(
  13377. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13378. {
  13379. front: {
  13380. height: math.unit(8 + 5 / 12, "feet"),
  13381. name: "Front",
  13382. image: {
  13383. source: "./media/characters/keset-vanrel/front.svg",
  13384. extra: 1231/1148,
  13385. bottom: 82/1313
  13386. }
  13387. },
  13388. back: {
  13389. height: math.unit(8 + 5 / 12, "feet"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/keset-vanrel/back.svg",
  13393. extra: 1240/1174,
  13394. bottom: 33/1273
  13395. }
  13396. },
  13397. hand: {
  13398. height: math.unit(0.6, "meters"),
  13399. name: "Hand",
  13400. image: {
  13401. source: "./media/characters/keset-vanrel/hand.svg"
  13402. }
  13403. },
  13404. foot: {
  13405. height: math.unit(0.94978, "meters"),
  13406. name: "Foot",
  13407. image: {
  13408. source: "./media/characters/keset-vanrel/foot.svg"
  13409. }
  13410. },
  13411. battle: {
  13412. height: math.unit(7.408, "feet"),
  13413. name: "Battle",
  13414. image: {
  13415. source: "./media/characters/keset-vanrel/battle.svg",
  13416. extra: 1890 / 1386,
  13417. bottom: 73.28 / 1970
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Normal",
  13424. height: math.unit(8 + 5 / 12, "feet"),
  13425. default: true
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(150, "lb"),
  13435. name: "Front",
  13436. image: {
  13437. source: "./media/characters/neos/front.svg",
  13438. extra: 1696 / 992,
  13439. bottom: 0.14
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Normal",
  13446. height: math.unit(54, "cm"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Macro",
  13451. height: math.unit(100, "m")
  13452. },
  13453. {
  13454. name: "Megamacro",
  13455. height: math.unit(10, "km")
  13456. },
  13457. {
  13458. name: "Megamacro+",
  13459. height: math.unit(100, "km")
  13460. },
  13461. {
  13462. name: "Gigamacro",
  13463. height: math.unit(100, "Mm")
  13464. },
  13465. {
  13466. name: "Teramacro",
  13467. height: math.unit(100, "Gm")
  13468. },
  13469. {
  13470. name: "Examacro",
  13471. height: math.unit(100, "Em")
  13472. },
  13473. {
  13474. name: "Godly",
  13475. height: math.unit(10000, "Ym")
  13476. },
  13477. {
  13478. name: "Beyond Godly",
  13479. height: math.unit(25, "multiverses")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13485. {
  13486. feminine: {
  13487. height: math.unit(5, "feet"),
  13488. weight: math.unit(100, "lb"),
  13489. name: "Feminine",
  13490. image: {
  13491. source: "./media/characters/sammy-mouse/feminine.svg",
  13492. extra: 2526 / 2425,
  13493. bottom: 0.123
  13494. }
  13495. },
  13496. masculine: {
  13497. height: math.unit(5, "feet"),
  13498. weight: math.unit(100, "lb"),
  13499. name: "Masculine",
  13500. image: {
  13501. source: "./media/characters/sammy-mouse/masculine.svg",
  13502. extra: 2526 / 2425,
  13503. bottom: 0.123
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Micro",
  13510. height: math.unit(5, "inches")
  13511. },
  13512. {
  13513. name: "Normal",
  13514. height: math.unit(5, "feet"),
  13515. default: true
  13516. },
  13517. {
  13518. name: "Macro",
  13519. height: math.unit(60, "feet")
  13520. },
  13521. ]
  13522. ))
  13523. characterMakers.push(() => makeCharacter(
  13524. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13525. {
  13526. front: {
  13527. height: math.unit(4, "feet"),
  13528. weight: math.unit(50, "lb"),
  13529. name: "Front",
  13530. image: {
  13531. source: "./media/characters/kole/front.svg",
  13532. extra: 1423 / 1303,
  13533. bottom: 0.025
  13534. }
  13535. },
  13536. back: {
  13537. height: math.unit(4, "feet"),
  13538. weight: math.unit(50, "lb"),
  13539. name: "Back",
  13540. image: {
  13541. source: "./media/characters/kole/back.svg",
  13542. extra: 1426 / 1280,
  13543. bottom: 0.02
  13544. }
  13545. },
  13546. },
  13547. [
  13548. {
  13549. name: "Normal",
  13550. height: math.unit(4, "feet"),
  13551. default: true
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13557. {
  13558. front: {
  13559. height: math.unit(2.5, "feet"),
  13560. weight: math.unit(32, "lb"),
  13561. name: "Front",
  13562. image: {
  13563. source: "./media/characters/rufran/front.svg",
  13564. extra: 1313/885,
  13565. bottom: 94/1407
  13566. }
  13567. },
  13568. side: {
  13569. height: math.unit(2.5, "feet"),
  13570. weight: math.unit(32, "lb"),
  13571. name: "Side",
  13572. image: {
  13573. source: "./media/characters/rufran/side.svg",
  13574. extra: 1109/852,
  13575. bottom: 118/1227
  13576. }
  13577. },
  13578. back: {
  13579. height: math.unit(2.5, "feet"),
  13580. weight: math.unit(32, "lb"),
  13581. name: "Back",
  13582. image: {
  13583. source: "./media/characters/rufran/back.svg",
  13584. extra: 1280/878,
  13585. bottom: 131/1411
  13586. }
  13587. },
  13588. mouth: {
  13589. height: math.unit(1.13, "feet"),
  13590. name: "Mouth",
  13591. image: {
  13592. source: "./media/characters/rufran/mouth.svg"
  13593. }
  13594. },
  13595. foot: {
  13596. height: math.unit(1.33, "feet"),
  13597. name: "Foot",
  13598. image: {
  13599. source: "./media/characters/rufran/foot.svg"
  13600. }
  13601. },
  13602. koboldFront: {
  13603. height: math.unit(2 + 6 / 12, "feet"),
  13604. weight: math.unit(20, "lb"),
  13605. name: "Front (Kobold)",
  13606. image: {
  13607. source: "./media/characters/rufran/kobold-front.svg",
  13608. extra: 2041 / 1839,
  13609. bottom: 0.055
  13610. }
  13611. },
  13612. koboldBack: {
  13613. height: math.unit(2 + 6 / 12, "feet"),
  13614. weight: math.unit(20, "lb"),
  13615. name: "Back (Kobold)",
  13616. image: {
  13617. source: "./media/characters/rufran/kobold-back.svg",
  13618. extra: 2054 / 1839,
  13619. bottom: 0.01
  13620. }
  13621. },
  13622. koboldHand: {
  13623. height: math.unit(0.2166, "meters"),
  13624. name: "Hand (Kobold)",
  13625. image: {
  13626. source: "./media/characters/rufran/kobold-hand.svg"
  13627. }
  13628. },
  13629. koboldFoot: {
  13630. height: math.unit(0.185, "meters"),
  13631. name: "Foot (Kobold)",
  13632. image: {
  13633. source: "./media/characters/rufran/kobold-foot.svg"
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Micro",
  13640. height: math.unit(1, "inch")
  13641. },
  13642. {
  13643. name: "Normal",
  13644. height: math.unit(2 + 6 / 12, "feet"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Big",
  13649. height: math.unit(60, "feet")
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(325, "feet")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(0.3, "meters"),
  13662. weight: math.unit(3.5, "kg"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/chip/front.svg",
  13666. extra: 748 / 674
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Micro",
  13673. height: math.unit(1, "inch"),
  13674. default: true
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13680. {
  13681. side: {
  13682. height: math.unit(2.3, "meters"),
  13683. weight: math.unit(3500, "lb"),
  13684. name: "Side",
  13685. image: {
  13686. source: "./media/characters/torvid/side.svg",
  13687. extra: 1972 / 722,
  13688. bottom: 0.035
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Normal",
  13695. height: math.unit(2.3, "meters"),
  13696. default: true
  13697. },
  13698. ]
  13699. ))
  13700. characterMakers.push(() => makeCharacter(
  13701. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13702. {
  13703. front: {
  13704. height: math.unit(2, "meters"),
  13705. weight: math.unit(150.5, "kg"),
  13706. name: "Front",
  13707. image: {
  13708. source: "./media/characters/susan/front.svg",
  13709. extra: 693 / 635,
  13710. bottom: 0.05
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Megamacro",
  13717. height: math.unit(505, "miles"),
  13718. default: true
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(150, "lb"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/raindrops/front.svg",
  13731. extra: 2655 / 2461,
  13732. bottom: 49 / 2705
  13733. }
  13734. },
  13735. back: {
  13736. height: math.unit(6, "feet"),
  13737. weight: math.unit(150, "lb"),
  13738. name: "Back",
  13739. image: {
  13740. source: "./media/characters/raindrops/back.svg",
  13741. extra: 2574 / 2400,
  13742. bottom: 65 / 2634
  13743. }
  13744. },
  13745. },
  13746. [
  13747. {
  13748. name: "Micro",
  13749. height: math.unit(6, "inches")
  13750. },
  13751. {
  13752. name: "Normal",
  13753. height: math.unit(6 + 2 / 12, "feet")
  13754. },
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(131, "feet"),
  13758. default: true
  13759. },
  13760. {
  13761. name: "Megamacro",
  13762. height: math.unit(15, "miles")
  13763. },
  13764. {
  13765. name: "Gigamacro",
  13766. height: math.unit(4000, "miles")
  13767. },
  13768. {
  13769. name: "Teramacro",
  13770. height: math.unit(315000, "miles")
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13776. {
  13777. front: {
  13778. height: math.unit(2.794, "meters"),
  13779. weight: math.unit(325, "kg"),
  13780. name: "Front",
  13781. image: {
  13782. source: "./media/characters/tezwa/front.svg",
  13783. extra: 2083 / 1906,
  13784. bottom: 0.031
  13785. }
  13786. },
  13787. foot: {
  13788. height: math.unit(0.687, "meters"),
  13789. name: "Foot",
  13790. image: {
  13791. source: "./media/characters/tezwa/foot.svg"
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Normal",
  13798. height: math.unit(9 + 2 / 12, "feet"),
  13799. default: true
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(58, "feet"),
  13808. weight: math.unit(89000, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/typhus/front.svg",
  13812. extra: 816 / 800,
  13813. bottom: 0.065
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(58, "feet"),
  13821. default: true
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(12, "feet"),
  13830. weight: math.unit(6, "tonnes"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/lyra-von-wulf/front.svg",
  13834. extra: 1,
  13835. bottom: 0.10
  13836. }
  13837. },
  13838. frontMecha: {
  13839. height: math.unit(12, "feet"),
  13840. weight: math.unit(12, "tonnes"),
  13841. name: "Front (Mecha)",
  13842. image: {
  13843. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13844. extra: 1,
  13845. bottom: 0.042
  13846. }
  13847. },
  13848. maw: {
  13849. height: math.unit(2.2, "feet"),
  13850. name: "Maw",
  13851. image: {
  13852. source: "./media/characters/lyra-von-wulf/maw.svg"
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Normal",
  13859. height: math.unit(12, "feet"),
  13860. default: true
  13861. },
  13862. {
  13863. name: "Classic",
  13864. height: math.unit(50, "feet")
  13865. },
  13866. {
  13867. name: "Macro",
  13868. height: math.unit(500, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(1, "mile")
  13873. },
  13874. {
  13875. name: "Gigamacro",
  13876. height: math.unit(400, "miles")
  13877. },
  13878. {
  13879. name: "Teramacro",
  13880. height: math.unit(22000, "miles")
  13881. },
  13882. {
  13883. name: "Solarmacro",
  13884. height: math.unit(8600000, "miles")
  13885. },
  13886. {
  13887. name: "Galactic",
  13888. height: math.unit(1057000, "lightyears")
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13894. {
  13895. front: {
  13896. height: math.unit(6 + 10 / 12, "feet"),
  13897. weight: math.unit(150, "lb"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/dixon/front.svg",
  13901. extra: 3361 / 3209,
  13902. bottom: 0.01
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Normal",
  13909. height: math.unit(6 + 10 / 12, "feet"),
  13910. default: true
  13911. },
  13912. {
  13913. name: "Big",
  13914. height: math.unit(12, "meters")
  13915. },
  13916. {
  13917. name: "Macro",
  13918. height: math.unit(500, "meters")
  13919. },
  13920. {
  13921. name: "Megamacro",
  13922. height: math.unit(2, "km")
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(185, "cm"),
  13931. weight: math.unit(68, "kg"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/kauko/front.svg",
  13935. extra: 1455 / 1421,
  13936. bottom: 0.03
  13937. }
  13938. },
  13939. back: {
  13940. height: math.unit(185, "cm"),
  13941. weight: math.unit(68, "kg"),
  13942. name: "Back",
  13943. image: {
  13944. source: "./media/characters/kauko/back.svg",
  13945. extra: 1455 / 1421,
  13946. bottom: 0.004
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(185, "cm"),
  13954. default: true
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13960. {
  13961. frontSfw: {
  13962. height: math.unit(5, "meters"),
  13963. weight: math.unit(4250, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/varg/front-sfw.svg",
  13967. extra: 1103/1010,
  13968. bottom: 50/1153
  13969. },
  13970. form: "anthro",
  13971. default: true
  13972. },
  13973. backSfw: {
  13974. height: math.unit(5, "meters"),
  13975. weight: math.unit(4250, "lb"),
  13976. name: "Back",
  13977. image: {
  13978. source: "./media/characters/varg/back-sfw.svg",
  13979. extra: 1038/1022,
  13980. bottom: 36/1074
  13981. },
  13982. form: "anthro"
  13983. },
  13984. frontNsfw: {
  13985. height: math.unit(5, "meters"),
  13986. weight: math.unit(4250, "lb"),
  13987. name: "Front (NSFW)",
  13988. image: {
  13989. source: "./media/characters/varg/front-nsfw.svg",
  13990. extra: 1103/1010,
  13991. bottom: 50/1153
  13992. },
  13993. form: "anthro"
  13994. },
  13995. sheath: {
  13996. height: math.unit(3.8, "feet"),
  13997. weight: math.unit(90, "kilograms"),
  13998. name: "Sheath",
  13999. image: {
  14000. source: "./media/characters/varg/sheath.svg"
  14001. },
  14002. form: "anthro"
  14003. },
  14004. dick: {
  14005. height: math.unit(4.6, "feet"),
  14006. weight: math.unit(451, "kilograms"),
  14007. name: "Dick",
  14008. image: {
  14009. source: "./media/characters/varg/dick.svg"
  14010. },
  14011. form: "anthro"
  14012. },
  14013. feralSfw: {
  14014. height: math.unit(5, "meters"),
  14015. weight: math.unit(100000, "lb"),
  14016. name: "Side",
  14017. image: {
  14018. source: "./media/characters/varg/feral-sfw.svg",
  14019. extra: 1065/511,
  14020. bottom: 211/1276
  14021. },
  14022. form: "feral",
  14023. default: true
  14024. },
  14025. feralNsfw: {
  14026. height: math.unit(5, "meters"),
  14027. weight: math.unit(100000, "lb"),
  14028. name: "Side (NSFW)",
  14029. image: {
  14030. source: "./media/characters/varg/feral-nsfw.svg",
  14031. extra: 1065/511,
  14032. bottom: 211/1276
  14033. },
  14034. form: "feral",
  14035. },
  14036. feralSheath: {
  14037. height: math.unit(9.8, "feet"),
  14038. weight: math.unit(2000, "kilograms"),
  14039. name: "Sheath",
  14040. image: {
  14041. source: "./media/characters/varg/sheath.svg"
  14042. },
  14043. form: "feral"
  14044. },
  14045. feralDick: {
  14046. height: math.unit(13.11, "feet"),
  14047. weight: math.unit(10440, "kilograms"),
  14048. name: "Dick",
  14049. image: {
  14050. source: "./media/characters/varg/dick.svg"
  14051. },
  14052. form: "feral"
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(5, "meters"),
  14059. form: "anthro"
  14060. },
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(200, "meters"),
  14064. form: "anthro"
  14065. },
  14066. {
  14067. name: "Megamacro",
  14068. height: math.unit(20, "kilometers"),
  14069. form: "anthro"
  14070. },
  14071. {
  14072. name: "True Size",
  14073. height: math.unit(211, "km"),
  14074. form: "anthro",
  14075. default: true
  14076. },
  14077. {
  14078. name: "Gigamacro",
  14079. height: math.unit(1000, "km"),
  14080. form: "anthro"
  14081. },
  14082. {
  14083. name: "Gigamacro+",
  14084. height: math.unit(8000, "km"),
  14085. form: "anthro"
  14086. },
  14087. {
  14088. name: "Teramacro",
  14089. height: math.unit(1000000, "km"),
  14090. form: "anthro"
  14091. },
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(5, "meters"),
  14095. form: "feral"
  14096. },
  14097. {
  14098. name: "Macro",
  14099. height: math.unit(200, "meters"),
  14100. form: "feral"
  14101. },
  14102. {
  14103. name: "Megamacro",
  14104. height: math.unit(20, "kilometers"),
  14105. form: "feral"
  14106. },
  14107. {
  14108. name: "True Size",
  14109. height: math.unit(211, "km"),
  14110. form: "feral",
  14111. default: true
  14112. },
  14113. {
  14114. name: "Gigamacro",
  14115. height: math.unit(1000, "km"),
  14116. form: "feral"
  14117. },
  14118. {
  14119. name: "Gigamacro+",
  14120. height: math.unit(8000, "km"),
  14121. form: "feral"
  14122. },
  14123. {
  14124. name: "Teramacro",
  14125. height: math.unit(1000000, "km"),
  14126. form: "feral"
  14127. },
  14128. ],
  14129. {
  14130. "anthro": {
  14131. name: "Anthro",
  14132. default: true
  14133. },
  14134. "feral": {
  14135. name: "Feral",
  14136. },
  14137. }
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(7 + 7 / 12, "feet"),
  14144. weight: math.unit(267, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/dayza/front.svg",
  14148. extra: 1262 / 1200,
  14149. bottom: 0.035
  14150. }
  14151. },
  14152. side: {
  14153. height: math.unit(7 + 7 / 12, "feet"),
  14154. weight: math.unit(267, "lb"),
  14155. name: "Side",
  14156. image: {
  14157. source: "./media/characters/dayza/side.svg",
  14158. extra: 1295 / 1245,
  14159. bottom: 0.05
  14160. }
  14161. },
  14162. back: {
  14163. height: math.unit(7 + 7 / 12, "feet"),
  14164. weight: math.unit(267, "lb"),
  14165. name: "Back",
  14166. image: {
  14167. source: "./media/characters/dayza/back.svg",
  14168. extra: 1241 / 1170
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(7 + 7 / 12, "feet"),
  14176. default: true
  14177. },
  14178. {
  14179. name: "Macro",
  14180. height: math.unit(155, "feet")
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14186. {
  14187. front: {
  14188. height: math.unit(6 + 5 / 12, "feet"),
  14189. weight: math.unit(160, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/xanthos/front.svg",
  14193. extra: 1,
  14194. bottom: 0.04
  14195. }
  14196. },
  14197. back: {
  14198. height: math.unit(6 + 5 / 12, "feet"),
  14199. weight: math.unit(160, "lb"),
  14200. name: "Back",
  14201. image: {
  14202. source: "./media/characters/xanthos/back.svg",
  14203. extra: 1,
  14204. bottom: 0.03
  14205. }
  14206. },
  14207. hand: {
  14208. height: math.unit(0.928, "feet"),
  14209. name: "Hand",
  14210. image: {
  14211. source: "./media/characters/xanthos/hand.svg"
  14212. }
  14213. },
  14214. foot: {
  14215. height: math.unit(1.286, "feet"),
  14216. name: "Foot",
  14217. image: {
  14218. source: "./media/characters/xanthos/foot.svg"
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(6 + 5 / 12, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Normal+",
  14230. height: math.unit(6, "meters")
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(40, "feet")
  14235. },
  14236. {
  14237. name: "Macro+",
  14238. height: math.unit(200, "meters")
  14239. },
  14240. {
  14241. name: "Megamacro",
  14242. height: math.unit(20, "km")
  14243. },
  14244. {
  14245. name: "Megamacro+",
  14246. height: math.unit(100, "km")
  14247. },
  14248. {
  14249. name: "Gigamacro",
  14250. height: math.unit(200, "megameters")
  14251. },
  14252. {
  14253. name: "Gigamacro+",
  14254. height: math.unit(1.5, "gigameters")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(6 + 3 / 12, "feet"),
  14263. weight: math.unit(215, "lb"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/grynn/front.svg",
  14267. extra: 4627 / 4209,
  14268. bottom: 0.047
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Micro",
  14275. height: math.unit(6, "inches")
  14276. },
  14277. {
  14278. name: "Normal",
  14279. height: math.unit(6 + 3 / 12, "feet"),
  14280. default: true
  14281. },
  14282. {
  14283. name: "Big",
  14284. height: math.unit(104, "feet")
  14285. },
  14286. {
  14287. name: "Macro",
  14288. height: math.unit(944, "feet")
  14289. },
  14290. {
  14291. name: "Macro+",
  14292. height: math.unit(9480, "feet")
  14293. },
  14294. {
  14295. name: "Megamacro",
  14296. height: math.unit(78752, "feet")
  14297. },
  14298. {
  14299. name: "Megamacro+",
  14300. height: math.unit(630128, "feet")
  14301. },
  14302. {
  14303. name: "Megamacro++",
  14304. height: math.unit(3150695, "feet")
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(7 + 5 / 12, "feet"),
  14313. weight: math.unit(450, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/mocha-aura/front.svg",
  14317. extra: 1907 / 1817,
  14318. bottom: 0.04
  14319. }
  14320. },
  14321. back: {
  14322. height: math.unit(7 + 5 / 12, "feet"),
  14323. weight: math.unit(450, "lb"),
  14324. name: "Back",
  14325. image: {
  14326. source: "./media/characters/mocha-aura/back.svg",
  14327. extra: 1900 / 1825,
  14328. bottom: 0.045
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Nano",
  14335. height: math.unit(1, "nm")
  14336. },
  14337. {
  14338. name: "Megamicro",
  14339. height: math.unit(1, "mm")
  14340. },
  14341. {
  14342. name: "Micro",
  14343. height: math.unit(3, "inches")
  14344. },
  14345. {
  14346. name: "Normal",
  14347. height: math.unit(7 + 5 / 12, "feet"),
  14348. default: true
  14349. },
  14350. {
  14351. name: "Macro",
  14352. height: math.unit(30, "feet")
  14353. },
  14354. {
  14355. name: "Megamacro",
  14356. height: math.unit(3500, "feet")
  14357. },
  14358. {
  14359. name: "Teramacro",
  14360. height: math.unit(500000, "miles")
  14361. },
  14362. {
  14363. name: "Petamacro",
  14364. height: math.unit(50000000000000000, "parsecs")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(6, "feet"),
  14373. weight: math.unit(150, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/ilisha-devya/front.svg",
  14377. extra: 1053/1049,
  14378. bottom: 270/1323
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(6, "feet"),
  14383. weight: math.unit(150, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/ilisha-devya/back.svg",
  14387. extra: 1131/1128,
  14388. bottom: 39/1170
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Macro",
  14395. height: math.unit(500, "feet"),
  14396. default: true
  14397. },
  14398. {
  14399. name: "Megamacro",
  14400. height: math.unit(10, "miles")
  14401. },
  14402. {
  14403. name: "Gigamacro",
  14404. height: math.unit(100000, "miles")
  14405. },
  14406. {
  14407. name: "Examacro",
  14408. height: math.unit(1e9, "lightyears")
  14409. },
  14410. {
  14411. name: "Omniversal",
  14412. height: math.unit(1e33, "lightyears")
  14413. },
  14414. {
  14415. name: "Beyond Infinite",
  14416. height: math.unit(1e100, "lightyears")
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14422. {
  14423. Side: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(150, "lb"),
  14426. name: "Side",
  14427. image: {
  14428. source: "./media/characters/mira/side.svg",
  14429. extra: 900 / 799,
  14430. bottom: 0.02
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Human Size",
  14437. height: math.unit(6, "feet")
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(100, "feet"),
  14442. default: true
  14443. },
  14444. {
  14445. name: "Megamacro",
  14446. height: math.unit(10, "miles")
  14447. },
  14448. {
  14449. name: "Gigamacro",
  14450. height: math.unit(25000, "miles")
  14451. },
  14452. {
  14453. name: "Teramacro",
  14454. height: math.unit(300, "AU")
  14455. },
  14456. {
  14457. name: "Full Size",
  14458. height: math.unit(4.5e10, "lightyears")
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(6, "feet"),
  14467. weight: math.unit(150, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/holly/front.svg",
  14471. extra: 639 / 606
  14472. }
  14473. },
  14474. back: {
  14475. height: math.unit(6, "feet"),
  14476. weight: math.unit(150, "lb"),
  14477. name: "Back",
  14478. image: {
  14479. source: "./media/characters/holly/back.svg",
  14480. extra: 623 / 598
  14481. }
  14482. },
  14483. frontWorking: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Front (Working)",
  14487. image: {
  14488. source: "./media/characters/holly/front-working.svg",
  14489. extra: 607 / 577,
  14490. bottom: 0.048
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(12 + 3 / 12, "feet"),
  14498. default: true
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14504. {
  14505. front: {
  14506. height: math.unit(6, "feet"),
  14507. weight: math.unit(150, "lb"),
  14508. name: "Front",
  14509. image: {
  14510. source: "./media/characters/porter/front.svg",
  14511. extra: 1,
  14512. bottom: 0.01
  14513. }
  14514. },
  14515. frontRobes: {
  14516. height: math.unit(6, "feet"),
  14517. weight: math.unit(150, "lb"),
  14518. name: "Front (Robes)",
  14519. image: {
  14520. source: "./media/characters/porter/front-robes.svg",
  14521. extra: 1.01,
  14522. bottom: 0.01
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(11 + 9 / 12, "feet"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14536. {
  14537. legendary: {
  14538. height: math.unit(6, "feet"),
  14539. weight: math.unit(150, "lb"),
  14540. name: "Legendary",
  14541. image: {
  14542. source: "./media/characters/lucy/legendary.svg",
  14543. extra: 1355 / 1100,
  14544. bottom: 0.045
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Legendary",
  14551. height: math.unit(86882 * 2, "miles"),
  14552. default: true
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(6, "feet"),
  14561. weight: math.unit(150, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/drusilla/front.svg",
  14565. extra: 678 / 635,
  14566. bottom: 0.03
  14567. }
  14568. },
  14569. back: {
  14570. height: math.unit(6, "feet"),
  14571. weight: math.unit(150, "lb"),
  14572. name: "Back",
  14573. image: {
  14574. source: "./media/characters/drusilla/back.svg",
  14575. extra: 678 / 635,
  14576. bottom: 0.005
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Macro",
  14583. height: math.unit(100, "feet")
  14584. },
  14585. {
  14586. name: "Canon Height",
  14587. height: math.unit(2000, "feet"),
  14588. default: true
  14589. },
  14590. ]
  14591. ))
  14592. characterMakers.push(() => makeCharacter(
  14593. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14594. {
  14595. front: {
  14596. height: math.unit(6, "feet"),
  14597. weight: math.unit(180, "lb"),
  14598. name: "Front",
  14599. image: {
  14600. source: "./media/characters/renard-thatch/front.svg",
  14601. extra: 2411 / 2275,
  14602. bottom: 0.01
  14603. }
  14604. },
  14605. frontPosing: {
  14606. height: math.unit(6, "feet"),
  14607. weight: math.unit(180, "lb"),
  14608. name: "Front (Posing)",
  14609. image: {
  14610. source: "./media/characters/renard-thatch/front-posing.svg",
  14611. extra: 2381 / 2261,
  14612. bottom: 0.01
  14613. }
  14614. },
  14615. back: {
  14616. height: math.unit(6, "feet"),
  14617. weight: math.unit(180, "lb"),
  14618. name: "Back",
  14619. image: {
  14620. source: "./media/characters/renard-thatch/back.svg",
  14621. extra: 2428 / 2288
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Micro",
  14628. height: math.unit(3, "inches")
  14629. },
  14630. {
  14631. name: "Default",
  14632. height: math.unit(6, "feet"),
  14633. default: true
  14634. },
  14635. {
  14636. name: "Macro",
  14637. height: math.unit(75, "feet")
  14638. },
  14639. ]
  14640. ))
  14641. characterMakers.push(() => makeCharacter(
  14642. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14643. {
  14644. front: {
  14645. height: math.unit(1450, "feet"),
  14646. weight: math.unit(1.21e6, "tons"),
  14647. name: "Front",
  14648. image: {
  14649. source: "./media/characters/sekvra/front.svg",
  14650. extra: 1193/1190,
  14651. bottom: 78/1271
  14652. }
  14653. },
  14654. side: {
  14655. height: math.unit(1450, "feet"),
  14656. weight: math.unit(1.21e6, "tons"),
  14657. name: "Side",
  14658. image: {
  14659. source: "./media/characters/sekvra/side.svg",
  14660. extra: 1193/1190,
  14661. bottom: 52/1245
  14662. }
  14663. },
  14664. back: {
  14665. height: math.unit(1450, "feet"),
  14666. weight: math.unit(1.21e6, "tons"),
  14667. name: "Back",
  14668. image: {
  14669. source: "./media/characters/sekvra/back.svg",
  14670. extra: 1219/1216,
  14671. bottom: 21/1240
  14672. }
  14673. },
  14674. frontClothed: {
  14675. height: math.unit(1450, "feet"),
  14676. weight: math.unit(1.21e6, "tons"),
  14677. name: "Front (Clothed)",
  14678. image: {
  14679. source: "./media/characters/sekvra/front-clothed.svg",
  14680. extra: 1192/1189,
  14681. bottom: 79/1271
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Macro",
  14688. height: math.unit(1450, "feet"),
  14689. default: true
  14690. },
  14691. {
  14692. name: "Megamacro",
  14693. height: math.unit(15000, "feet")
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(6, "feet"),
  14702. weight: math.unit(150, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/carmine/front.svg",
  14706. extra: 1,
  14707. bottom: 0.035
  14708. }
  14709. },
  14710. frontArmor: {
  14711. height: math.unit(6, "feet"),
  14712. weight: math.unit(150, "lb"),
  14713. name: "Front (Armor)",
  14714. image: {
  14715. source: "./media/characters/carmine/front-armor.svg",
  14716. extra: 1,
  14717. bottom: 0.035
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Large",
  14724. height: math.unit(1, "mile")
  14725. },
  14726. {
  14727. name: "Huge",
  14728. height: math.unit(40, "miles"),
  14729. default: true
  14730. },
  14731. {
  14732. name: "Colossal",
  14733. height: math.unit(2500, "miles")
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14739. {
  14740. front: {
  14741. height: math.unit(6, "feet"),
  14742. weight: math.unit(150, "lb"),
  14743. name: "Front",
  14744. image: {
  14745. source: "./media/characters/elyssia/front.svg",
  14746. extra: 2201 / 2035,
  14747. bottom: 0.05
  14748. }
  14749. },
  14750. frontClothed: {
  14751. height: math.unit(6, "feet"),
  14752. weight: math.unit(150, "lb"),
  14753. name: "Front (Clothed)",
  14754. image: {
  14755. source: "./media/characters/elyssia/front-clothed.svg",
  14756. extra: 2201 / 2035,
  14757. bottom: 0.05
  14758. }
  14759. },
  14760. back: {
  14761. height: math.unit(6, "feet"),
  14762. weight: math.unit(150, "lb"),
  14763. name: "Back",
  14764. image: {
  14765. source: "./media/characters/elyssia/back.svg",
  14766. extra: 2201 / 2035,
  14767. bottom: 0.013
  14768. }
  14769. },
  14770. },
  14771. [
  14772. {
  14773. name: "Smaller",
  14774. height: math.unit(150, "feet")
  14775. },
  14776. {
  14777. name: "Standard",
  14778. height: math.unit(1400, "feet"),
  14779. default: true
  14780. },
  14781. {
  14782. name: "Distracted",
  14783. height: math.unit(15000, "feet")
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(7 + 4/12, "feet"),
  14792. weight: math.unit(690, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/geno-maxwell/front.svg",
  14796. extra: 984/856,
  14797. bottom: 87/1071
  14798. }
  14799. },
  14800. back: {
  14801. height: math.unit(7 + 4/12, "feet"),
  14802. weight: math.unit(690, "lb"),
  14803. name: "Back",
  14804. image: {
  14805. source: "./media/characters/geno-maxwell/back.svg",
  14806. extra: 981/854,
  14807. bottom: 57/1038
  14808. }
  14809. },
  14810. frontCostume: {
  14811. height: math.unit(7 + 4/12, "feet"),
  14812. weight: math.unit(690, "lb"),
  14813. name: "Front (Costume)",
  14814. image: {
  14815. source: "./media/characters/geno-maxwell/front-costume.svg",
  14816. extra: 984/856,
  14817. bottom: 87/1071
  14818. }
  14819. },
  14820. backcostume: {
  14821. height: math.unit(7 + 4/12, "feet"),
  14822. weight: math.unit(690, "lb"),
  14823. name: "Back (Costume)",
  14824. image: {
  14825. source: "./media/characters/geno-maxwell/back-costume.svg",
  14826. extra: 981/854,
  14827. bottom: 57/1038
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Micro",
  14834. height: math.unit(3, "inches")
  14835. },
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(7 + 4 / 12, "feet"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(220, "feet")
  14844. },
  14845. {
  14846. name: "Megamacro",
  14847. height: math.unit(11, "miles")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(7 + 4/12, "feet"),
  14856. weight: math.unit(750, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/regena-maxwell/front.svg",
  14860. extra: 984/856,
  14861. bottom: 87/1071
  14862. }
  14863. },
  14864. back: {
  14865. height: math.unit(7 + 4/12, "feet"),
  14866. weight: math.unit(750, "lb"),
  14867. name: "Back",
  14868. image: {
  14869. source: "./media/characters/regena-maxwell/back.svg",
  14870. extra: 981/854,
  14871. bottom: 57/1038
  14872. }
  14873. },
  14874. frontCostume: {
  14875. height: math.unit(7 + 4/12, "feet"),
  14876. weight: math.unit(750, "lb"),
  14877. name: "Front (Costume)",
  14878. image: {
  14879. source: "./media/characters/regena-maxwell/front-costume.svg",
  14880. extra: 984/856,
  14881. bottom: 87/1071
  14882. }
  14883. },
  14884. backcostume: {
  14885. height: math.unit(7 + 4/12, "feet"),
  14886. weight: math.unit(750, "lb"),
  14887. name: "Back (Costume)",
  14888. image: {
  14889. source: "./media/characters/regena-maxwell/back-costume.svg",
  14890. extra: 981/854,
  14891. bottom: 57/1038
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(7 + 4 / 12, "feet"),
  14899. default: true
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(220, "feet")
  14904. },
  14905. {
  14906. name: "Megamacro",
  14907. height: math.unit(11, "miles")
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14920. extra: 860 / 690,
  14921. bottom: 0.03
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Normal",
  14928. height: math.unit(1.7, "meters"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14935. {
  14936. front: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front",
  14940. image: {
  14941. source: "./media/characters/quilly/front.svg",
  14942. extra: 890 / 776
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Gigamacro",
  14949. height: math.unit(404090, "miles"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(7 + 8 / 12, "feet"),
  14959. weight: math.unit(350, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/tempest/front.svg",
  14963. extra: 1175 / 1086,
  14964. bottom: 0.02
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(7 + 8 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14978. {
  14979. side: {
  14980. height: math.unit(4 + 5 / 12, "feet"),
  14981. weight: math.unit(80, "lb"),
  14982. name: "Side",
  14983. image: {
  14984. source: "./media/characters/rodger/side.svg",
  14985. extra: 1235 / 1118
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Micro",
  14992. height: math.unit(1, "inch")
  14993. },
  14994. {
  14995. name: "Normal",
  14996. height: math.unit(4 + 5 / 12, "feet"),
  14997. default: true
  14998. },
  14999. {
  15000. name: "Macro",
  15001. height: math.unit(120, "feet")
  15002. },
  15003. ]
  15004. ))
  15005. characterMakers.push(() => makeCharacter(
  15006. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15007. {
  15008. front: {
  15009. height: math.unit(6, "feet"),
  15010. weight: math.unit(150, "lb"),
  15011. name: "Front",
  15012. image: {
  15013. source: "./media/characters/danyel/front.svg",
  15014. extra: 1185 / 1123,
  15015. bottom: 0.05
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Shrunken",
  15022. height: math.unit(0.5, "mm")
  15023. },
  15024. {
  15025. name: "Micro",
  15026. height: math.unit(1, "mm"),
  15027. default: true
  15028. },
  15029. {
  15030. name: "Upsized",
  15031. height: math.unit(5 + 5 / 12, "feet")
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(5 + 6 / 12, "feet"),
  15040. weight: math.unit(200, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/vivian-bijoux/front.svg",
  15044. extra: 1217/1209,
  15045. bottom: 76/1293
  15046. }
  15047. },
  15048. back: {
  15049. height: math.unit(5 + 6 / 12, "feet"),
  15050. weight: math.unit(200, "lb"),
  15051. name: "Back",
  15052. image: {
  15053. source: "./media/characters/vivian-bijoux/back.svg",
  15054. extra: 1214/1208,
  15055. bottom: 51/1265
  15056. }
  15057. },
  15058. dressed: {
  15059. height: math.unit(5 + 6 / 12, "feet"),
  15060. weight: math.unit(200, "lb"),
  15061. name: "Dressed",
  15062. image: {
  15063. source: "./media/characters/vivian-bijoux/dressed.svg",
  15064. extra: 1217/1209,
  15065. bottom: 76/1293
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(5 + 6 / 12, "feet"),
  15073. default: true
  15074. },
  15075. {
  15076. name: "Bad Dream",
  15077. height: math.unit(500, "feet")
  15078. },
  15079. {
  15080. name: "Nightmare",
  15081. height: math.unit(500, "miles")
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15087. {
  15088. front: {
  15089. height: math.unit(6 + 1 / 12, "feet"),
  15090. weight: math.unit(260, "lb"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/zeta/front.svg",
  15094. extra: 1968 / 1889,
  15095. bottom: 0.06
  15096. }
  15097. },
  15098. back: {
  15099. height: math.unit(6 + 1 / 12, "feet"),
  15100. weight: math.unit(260, "lb"),
  15101. name: "Back",
  15102. image: {
  15103. source: "./media/characters/zeta/back.svg",
  15104. extra: 1944 / 1858,
  15105. bottom: 0.03
  15106. }
  15107. },
  15108. hand: {
  15109. height: math.unit(1.112, "feet"),
  15110. name: "Hand",
  15111. image: {
  15112. source: "./media/characters/zeta/hand.svg"
  15113. }
  15114. },
  15115. foot: {
  15116. height: math.unit(1.48, "feet"),
  15117. name: "Foot",
  15118. image: {
  15119. source: "./media/characters/zeta/foot.svg"
  15120. }
  15121. },
  15122. },
  15123. [
  15124. {
  15125. name: "Micro",
  15126. height: math.unit(6, "inches")
  15127. },
  15128. {
  15129. name: "Normal",
  15130. height: math.unit(6 + 1 / 12, "feet"),
  15131. default: true
  15132. },
  15133. {
  15134. name: "Macro",
  15135. height: math.unit(20, "feet")
  15136. },
  15137. ]
  15138. ))
  15139. characterMakers.push(() => makeCharacter(
  15140. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15141. {
  15142. front: {
  15143. height: math.unit(6, "feet"),
  15144. weight: math.unit(150, "lb"),
  15145. name: "Front",
  15146. image: {
  15147. source: "./media/characters/jamie-larsen/front.svg",
  15148. extra: 962 / 933,
  15149. bottom: 0.02
  15150. }
  15151. },
  15152. back: {
  15153. height: math.unit(6, "feet"),
  15154. weight: math.unit(150, "lb"),
  15155. name: "Back",
  15156. image: {
  15157. source: "./media/characters/jamie-larsen/back.svg",
  15158. extra: 997 / 946
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Macro",
  15165. height: math.unit(28 + 7 / 12, "feet"),
  15166. default: true
  15167. },
  15168. {
  15169. name: "Macro+",
  15170. height: math.unit(180, "feet")
  15171. },
  15172. {
  15173. name: "Megamacro",
  15174. height: math.unit(10, "miles")
  15175. },
  15176. {
  15177. name: "Gigamacro",
  15178. height: math.unit(200000, "miles")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(120, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/vance/front.svg",
  15191. extra: 1980 / 1890,
  15192. bottom: 0.09
  15193. }
  15194. },
  15195. back: {
  15196. height: math.unit(6, "feet"),
  15197. weight: math.unit(120, "lb"),
  15198. name: "Back",
  15199. image: {
  15200. source: "./media/characters/vance/back.svg",
  15201. extra: 2081 / 1994,
  15202. bottom: 0.014
  15203. }
  15204. },
  15205. hand: {
  15206. height: math.unit(0.88, "feet"),
  15207. name: "Hand",
  15208. image: {
  15209. source: "./media/characters/vance/hand.svg"
  15210. }
  15211. },
  15212. foot: {
  15213. height: math.unit(0.64, "feet"),
  15214. name: "Foot",
  15215. image: {
  15216. source: "./media/characters/vance/foot.svg"
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Small",
  15223. height: math.unit(90, "feet"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Macro",
  15228. height: math.unit(100, "meters")
  15229. },
  15230. {
  15231. name: "Megamacro",
  15232. height: math.unit(15, "miles")
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(180, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/xochitl/front.svg",
  15245. extra: 2297 / 2261,
  15246. bottom: 0.065
  15247. }
  15248. },
  15249. back: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(180, "lb"),
  15252. name: "Back",
  15253. image: {
  15254. source: "./media/characters/xochitl/back.svg",
  15255. extra: 2386 / 2354,
  15256. bottom: 0.01
  15257. }
  15258. },
  15259. foot: {
  15260. height: math.unit(6 / 5 * 1.15, "feet"),
  15261. weight: math.unit(150, "lb"),
  15262. name: "Foot",
  15263. image: {
  15264. source: "./media/characters/xochitl/foot.svg"
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Macro",
  15271. height: math.unit(80, "feet")
  15272. },
  15273. {
  15274. name: "Macro+",
  15275. height: math.unit(400, "feet"),
  15276. default: true
  15277. },
  15278. {
  15279. name: "Gigamacro",
  15280. height: math.unit(80000, "miles")
  15281. },
  15282. {
  15283. name: "Gigamacro+",
  15284. height: math.unit(400000, "miles")
  15285. },
  15286. {
  15287. name: "Teramacro",
  15288. height: math.unit(300, "AU")
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(6, "feet"),
  15297. weight: math.unit(150, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/vincent/front.svg",
  15301. extra: 1130 / 1080,
  15302. bottom: 0.055
  15303. }
  15304. },
  15305. beak: {
  15306. height: math.unit(6 * 0.1, "feet"),
  15307. name: "Beak",
  15308. image: {
  15309. source: "./media/characters/vincent/beak.svg"
  15310. }
  15311. },
  15312. hand: {
  15313. height: math.unit(6 * 0.85, "feet"),
  15314. weight: math.unit(150, "lb"),
  15315. name: "Hand",
  15316. image: {
  15317. source: "./media/characters/vincent/hand.svg"
  15318. }
  15319. },
  15320. foot: {
  15321. height: math.unit(6 * 0.19, "feet"),
  15322. weight: math.unit(150, "lb"),
  15323. name: "Foot",
  15324. image: {
  15325. source: "./media/characters/vincent/foot.svg"
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Base",
  15332. height: math.unit(6 + 5 / 12, "feet"),
  15333. default: true
  15334. },
  15335. {
  15336. name: "Macro",
  15337. height: math.unit(300, "feet")
  15338. },
  15339. {
  15340. name: "Megamacro",
  15341. height: math.unit(2, "miles")
  15342. },
  15343. {
  15344. name: "Gigamacro",
  15345. height: math.unit(1000, "miles")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(2, "meters"),
  15354. weight: math.unit(500, "kg"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/coatl/front.svg",
  15358. extra: 3948 / 3500,
  15359. bottom: 0.082
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(4, "meters")
  15367. },
  15368. {
  15369. name: "Macro",
  15370. height: math.unit(100, "meters"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Macro+",
  15375. height: math.unit(300, "meters")
  15376. },
  15377. {
  15378. name: "Megamacro",
  15379. height: math.unit(3, "gigameters")
  15380. },
  15381. {
  15382. name: "Megamacro+",
  15383. height: math.unit(300, "terameters")
  15384. },
  15385. {
  15386. name: "Megamacro++",
  15387. height: math.unit(3, "lightyears")
  15388. },
  15389. ]
  15390. ))
  15391. characterMakers.push(() => makeCharacter(
  15392. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15393. {
  15394. front: {
  15395. height: math.unit(6, "feet"),
  15396. weight: math.unit(50, "kg"),
  15397. name: "front",
  15398. image: {
  15399. source: "./media/characters/shiroryu/front.svg",
  15400. extra: 1990 / 1935
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Mortal Mingling",
  15407. height: math.unit(3, "meters")
  15408. },
  15409. {
  15410. name: "Kaiju-ish",
  15411. height: math.unit(250, "meters")
  15412. },
  15413. {
  15414. name: "Somewhat Godly",
  15415. height: math.unit(400, "km"),
  15416. default: true
  15417. },
  15418. {
  15419. name: "Planetary",
  15420. height: math.unit(300, "megameters")
  15421. },
  15422. {
  15423. name: "Galaxy-dwarfing",
  15424. height: math.unit(450, "kiloparsecs")
  15425. },
  15426. {
  15427. name: "Universe Eater",
  15428. height: math.unit(150, "gigaparsecs")
  15429. },
  15430. {
  15431. name: "Almost Immeasurable",
  15432. height: math.unit(1.3e266, "yottaparsecs")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/umeko/front.svg",
  15445. extra: 1,
  15446. bottom: 0.019
  15447. }
  15448. },
  15449. frontArmored: {
  15450. height: math.unit(6, "feet"),
  15451. weight: math.unit(150, "lb"),
  15452. name: "Front (Armored)",
  15453. image: {
  15454. source: "./media/characters/umeko/front-armored.svg",
  15455. extra: 1,
  15456. bottom: 0.021
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Macro",
  15463. height: math.unit(220, "feet"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Guardian Dragon",
  15468. height: math.unit(50, "miles")
  15469. },
  15470. {
  15471. name: "Cosmic",
  15472. height: math.unit(800000, "miles")
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(6, "feet"),
  15481. weight: math.unit(150, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/cassidy/front.svg",
  15485. extra: 810/808,
  15486. bottom: 41/851
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Canon Height",
  15493. height: math.unit(120, "feet"),
  15494. default: true
  15495. },
  15496. {
  15497. name: "Macro+",
  15498. height: math.unit(400, "feet")
  15499. },
  15500. {
  15501. name: "Macro++",
  15502. height: math.unit(4000, "feet")
  15503. },
  15504. {
  15505. name: "Megamacro",
  15506. height: math.unit(3, "miles")
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15512. {
  15513. front: {
  15514. height: math.unit(6, "feet"),
  15515. weight: math.unit(150, "lb"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/isaac/front.svg",
  15519. extra: 896 / 815,
  15520. bottom: 0.11
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Human Size",
  15527. height: math.unit(8, "feet"),
  15528. default: true
  15529. },
  15530. {
  15531. name: "Macro",
  15532. height: math.unit(400, "feet")
  15533. },
  15534. {
  15535. name: "Megamacro",
  15536. height: math.unit(50, "miles")
  15537. },
  15538. {
  15539. name: "Canon Height",
  15540. height: math.unit(200, "AU")
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(72, "kg"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/sleekit/front.svg",
  15553. extra: 4693 / 4487,
  15554. bottom: 0.012
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Minimum Height",
  15561. height: math.unit(10, "meters")
  15562. },
  15563. {
  15564. name: "Smaller",
  15565. height: math.unit(25, "meters")
  15566. },
  15567. {
  15568. name: "Larger",
  15569. height: math.unit(38, "meters"),
  15570. default: true
  15571. },
  15572. {
  15573. name: "Maximum height",
  15574. height: math.unit(100, "meters")
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(6, "feet"),
  15583. weight: math.unit(150, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/nillia/front.svg",
  15587. extra: 2195 / 2037,
  15588. bottom: 0.005
  15589. }
  15590. },
  15591. back: {
  15592. height: math.unit(6, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Back",
  15595. image: {
  15596. source: "./media/characters/nillia/back.svg",
  15597. extra: 2195 / 2037,
  15598. bottom: 0.005
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Canon Height",
  15605. height: math.unit(489, "feet"),
  15606. default: true
  15607. }
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/mesmyriza/front.svg",
  15619. extra: 2067 / 1784,
  15620. bottom: 0.035
  15621. }
  15622. },
  15623. foot: {
  15624. height: math.unit(6 / (250 / 35), "feet"),
  15625. name: "Foot",
  15626. image: {
  15627. source: "./media/characters/mesmyriza/foot.svg"
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Macro",
  15634. height: math.unit(457, "meters"),
  15635. default: true
  15636. },
  15637. {
  15638. name: "Megamacro",
  15639. height: math.unit(8, "megameters")
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15645. {
  15646. front: {
  15647. height: math.unit(6, "feet"),
  15648. weight: math.unit(250, "lb"),
  15649. name: "Front",
  15650. image: {
  15651. source: "./media/characters/saudade/front.svg",
  15652. extra: 1172 / 1139,
  15653. bottom: 0.035
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Micro",
  15660. height: math.unit(3, "inches")
  15661. },
  15662. {
  15663. name: "Normal",
  15664. height: math.unit(6, "feet"),
  15665. default: true
  15666. },
  15667. {
  15668. name: "Macro",
  15669. height: math.unit(50, "feet")
  15670. },
  15671. {
  15672. name: "Megamacro",
  15673. height: math.unit(2800, "feet")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(5 + 4 / 12, "feet"),
  15682. weight: math.unit(100, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/keireer/front.svg",
  15686. extra: 716 / 666,
  15687. bottom: 0.05
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(5 + 4 / 12, "feet"),
  15695. default: true
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(5.5, "feet"),
  15704. weight: math.unit(90, "kg"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/mirja/front.svg",
  15708. extra: 1452/1262,
  15709. bottom: 67/1519
  15710. }
  15711. },
  15712. frontDressed: {
  15713. height: math.unit(5.5, "feet"),
  15714. weight: math.unit(90, "lb"),
  15715. name: "Front (Dressed)",
  15716. image: {
  15717. source: "./media/characters/mirja/dressed.svg",
  15718. extra: 1452/1262,
  15719. bottom: 67/1519
  15720. }
  15721. },
  15722. back: {
  15723. height: math.unit(6, "feet"),
  15724. weight: math.unit(90, "lb"),
  15725. name: "Back",
  15726. image: {
  15727. source: "./media/characters/mirja/back.svg",
  15728. extra: 1892/1795,
  15729. bottom: 48/1940
  15730. }
  15731. },
  15732. maw: {
  15733. height: math.unit(1.312, "feet"),
  15734. name: "Maw",
  15735. image: {
  15736. source: "./media/characters/mirja/maw.svg"
  15737. }
  15738. },
  15739. paw: {
  15740. height: math.unit(1.15, "feet"),
  15741. name: "Paw",
  15742. image: {
  15743. source: "./media/characters/mirja/paw.svg"
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "\"Incognito\"",
  15750. height: math.unit(3, "meters")
  15751. },
  15752. {
  15753. name: "Strolling Size",
  15754. height: math.unit(15, "km")
  15755. },
  15756. {
  15757. name: "Larger Strolling Size",
  15758. height: math.unit(400, "km")
  15759. },
  15760. {
  15761. name: "Preferred Size",
  15762. height: math.unit(5000, "km"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "True Size",
  15767. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15773. {
  15774. front: {
  15775. height: math.unit(15, "feet"),
  15776. weight: math.unit(880, "kg"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/nightraver/front.svg",
  15780. extra: 2444 / 2160,
  15781. bottom: 0.027
  15782. }
  15783. },
  15784. back: {
  15785. height: math.unit(15, "feet"),
  15786. weight: math.unit(880, "kg"),
  15787. name: "Back",
  15788. image: {
  15789. source: "./media/characters/nightraver/back.svg",
  15790. extra: 2309 / 2180,
  15791. bottom: 0.005
  15792. }
  15793. },
  15794. sole: {
  15795. height: math.unit(2.878, "feet"),
  15796. name: "Sole",
  15797. image: {
  15798. source: "./media/characters/nightraver/sole.svg"
  15799. }
  15800. },
  15801. foot: {
  15802. height: math.unit(2.285, "feet"),
  15803. name: "Foot",
  15804. image: {
  15805. source: "./media/characters/nightraver/foot.svg"
  15806. }
  15807. },
  15808. maw: {
  15809. height: math.unit(2.67, "feet"),
  15810. name: "Maw",
  15811. image: {
  15812. source: "./media/characters/nightraver/maw.svg"
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Micro",
  15819. height: math.unit(1, "cm")
  15820. },
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(15, "feet"),
  15824. default: true
  15825. },
  15826. {
  15827. name: "Macro",
  15828. height: math.unit(300, "feet")
  15829. },
  15830. {
  15831. name: "Megamacro",
  15832. height: math.unit(300, "miles")
  15833. },
  15834. {
  15835. name: "Gigamacro",
  15836. height: math.unit(10000, "miles")
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15842. {
  15843. side: {
  15844. height: math.unit(2, "inches"),
  15845. weight: math.unit(5, "grams"),
  15846. name: "Side",
  15847. image: {
  15848. source: "./media/characters/arc/side.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Micro",
  15855. height: math.unit(2, "inches"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(1.1938, "meters"),
  15865. weight: math.unit(54, "kg"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/nebula-shahar/front.svg",
  15869. extra: 1642 / 1436,
  15870. bottom: 0.06
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Megamicro",
  15877. height: math.unit(0.3, "mm")
  15878. },
  15879. {
  15880. name: "Micro",
  15881. height: math.unit(3, "cm")
  15882. },
  15883. {
  15884. name: "Normal",
  15885. height: math.unit(138, "cm"),
  15886. default: true
  15887. },
  15888. {
  15889. name: "Macro",
  15890. height: math.unit(30, "m")
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(5.24, "feet"),
  15899. weight: math.unit(150, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/shayla/front.svg",
  15903. extra: 1512 / 1414,
  15904. bottom: 0.01
  15905. }
  15906. },
  15907. back: {
  15908. height: math.unit(5.24, "feet"),
  15909. weight: math.unit(150, "lb"),
  15910. name: "Back",
  15911. image: {
  15912. source: "./media/characters/shayla/back.svg",
  15913. extra: 1512 / 1414
  15914. }
  15915. },
  15916. hand: {
  15917. height: math.unit(0.7781496062992126, "feet"),
  15918. name: "Hand",
  15919. image: {
  15920. source: "./media/characters/shayla/hand.svg"
  15921. }
  15922. },
  15923. foot: {
  15924. height: math.unit(1.4206036745406823, "feet"),
  15925. name: "Foot",
  15926. image: {
  15927. source: "./media/characters/shayla/foot.svg"
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Micro",
  15934. height: math.unit(0.32, "feet")
  15935. },
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(5.24, "feet"),
  15939. default: true
  15940. },
  15941. {
  15942. name: "Macro",
  15943. height: math.unit(492.12, "feet")
  15944. },
  15945. {
  15946. name: "Megamacro",
  15947. height: math.unit(186.41, "miles")
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(2.2, "m"),
  15956. weight: math.unit(120, "kg"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/pia-jr/front.svg",
  15960. extra: 1000 / 970,
  15961. bottom: 0.035
  15962. }
  15963. },
  15964. hand: {
  15965. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15966. name: "Hand",
  15967. image: {
  15968. source: "./media/characters/pia-jr/hand.svg"
  15969. }
  15970. },
  15971. paw: {
  15972. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15973. name: "Paw",
  15974. image: {
  15975. source: "./media/characters/pia-jr/paw.svg"
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Micro",
  15982. height: math.unit(1.2, "cm")
  15983. },
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(2.2, "m"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Macro",
  15991. height: math.unit(180, "m")
  15992. },
  15993. {
  15994. name: "Megamacro",
  15995. height: math.unit(420, "km")
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(2, "m"),
  16004. weight: math.unit(115, "kg"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/pia-sr/front.svg",
  16008. extra: 760 / 730,
  16009. bottom: 0.015
  16010. }
  16011. },
  16012. back: {
  16013. height: math.unit(2, "m"),
  16014. weight: math.unit(115, "kg"),
  16015. name: "Back",
  16016. image: {
  16017. source: "./media/characters/pia-sr/back.svg",
  16018. extra: 760 / 730,
  16019. bottom: 0.01
  16020. }
  16021. },
  16022. hand: {
  16023. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16024. name: "Hand",
  16025. image: {
  16026. source: "./media/characters/pia-sr/hand.svg"
  16027. }
  16028. },
  16029. foot: {
  16030. height: math.unit(1.83, "feet"),
  16031. name: "Foot",
  16032. image: {
  16033. source: "./media/characters/pia-sr/foot.svg"
  16034. }
  16035. },
  16036. },
  16037. [
  16038. {
  16039. name: "Micro",
  16040. height: math.unit(88, "mm")
  16041. },
  16042. {
  16043. name: "Normal",
  16044. height: math.unit(2, "m"),
  16045. default: true
  16046. },
  16047. {
  16048. name: "Macro",
  16049. height: math.unit(200, "m")
  16050. },
  16051. {
  16052. name: "Megamacro",
  16053. height: math.unit(420, "km")
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(8 + 2 / 12, "feet"),
  16062. weight: math.unit(300, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/kibibyte/front.svg",
  16066. extra: 2221 / 2098,
  16067. bottom: 0.04
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(8 + 2 / 12, "feet"),
  16075. default: true
  16076. },
  16077. {
  16078. name: "Socialable Macro",
  16079. height: math.unit(50, "feet")
  16080. },
  16081. {
  16082. name: "Macro",
  16083. height: math.unit(300, "feet")
  16084. },
  16085. {
  16086. name: "Megamacro",
  16087. height: math.unit(500, "miles")
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(6, "feet"),
  16096. weight: math.unit(150, "lb"),
  16097. name: "Front",
  16098. image: {
  16099. source: "./media/characters/felix/front.svg",
  16100. extra: 762 / 722,
  16101. bottom: 0.02
  16102. }
  16103. },
  16104. frontClothed: {
  16105. height: math.unit(6, "feet"),
  16106. weight: math.unit(150, "lb"),
  16107. name: "Front (Clothed)",
  16108. image: {
  16109. source: "./media/characters/felix/front-clothed.svg",
  16110. extra: 762 / 722,
  16111. bottom: 0.02
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(6 + 8 / 12, "feet"),
  16119. default: true
  16120. },
  16121. {
  16122. name: "Macro",
  16123. height: math.unit(2600, "feet")
  16124. },
  16125. {
  16126. name: "Megamacro",
  16127. height: math.unit(450, "miles")
  16128. },
  16129. ]
  16130. ))
  16131. characterMakers.push(() => makeCharacter(
  16132. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16133. {
  16134. front: {
  16135. height: math.unit(6 + 1 / 12, "feet"),
  16136. weight: math.unit(250, "lb"),
  16137. name: "Front",
  16138. image: {
  16139. source: "./media/characters/tobo/front.svg",
  16140. extra: 608 / 586,
  16141. bottom: 0.023
  16142. }
  16143. },
  16144. back: {
  16145. height: math.unit(6 + 1 / 12, "feet"),
  16146. weight: math.unit(250, "lb"),
  16147. name: "Back",
  16148. image: {
  16149. source: "./media/characters/tobo/back.svg",
  16150. extra: 608 / 586
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Nano",
  16157. height: math.unit(2, "nm")
  16158. },
  16159. {
  16160. name: "Megamicro",
  16161. height: math.unit(0.1, "mm")
  16162. },
  16163. {
  16164. name: "Micro",
  16165. height: math.unit(1, "inch"),
  16166. default: true
  16167. },
  16168. {
  16169. name: "Human-sized",
  16170. height: math.unit(6 + 1 / 12, "feet")
  16171. },
  16172. {
  16173. name: "Macro",
  16174. height: math.unit(250, "feet")
  16175. },
  16176. {
  16177. name: "Megamacro",
  16178. height: math.unit(75, "miles")
  16179. },
  16180. {
  16181. name: "Texas-sized",
  16182. height: math.unit(750, "miles")
  16183. },
  16184. {
  16185. name: "Teramacro",
  16186. height: math.unit(50000, "miles")
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(6, "feet"),
  16195. weight: math.unit(269, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/danny-kapowsky/front.svg",
  16199. extra: 766 / 736,
  16200. bottom: 0.044
  16201. }
  16202. },
  16203. back: {
  16204. height: math.unit(6, "feet"),
  16205. weight: math.unit(269, "lb"),
  16206. name: "Back",
  16207. image: {
  16208. source: "./media/characters/danny-kapowsky/back.svg",
  16209. extra: 797 / 760,
  16210. bottom: 0.025
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Macro",
  16217. height: math.unit(150, "feet"),
  16218. default: true
  16219. },
  16220. {
  16221. name: "Macro+",
  16222. height: math.unit(200, "feet")
  16223. },
  16224. {
  16225. name: "Macro++",
  16226. height: math.unit(300, "feet")
  16227. },
  16228. {
  16229. name: "Macro+++",
  16230. height: math.unit(400, "feet")
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16236. {
  16237. side: {
  16238. height: math.unit(6, "feet"),
  16239. weight: math.unit(170, "lb"),
  16240. name: "Side",
  16241. image: {
  16242. source: "./media/characters/finn/side.svg",
  16243. extra: 1953 / 1807,
  16244. bottom: 0.057
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Megamacro",
  16251. height: math.unit(14445, "feet"),
  16252. default: true
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(5 + 6 / 12, "feet"),
  16261. weight: math.unit(125, "lb"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/roy/front.svg",
  16265. extra: 1,
  16266. bottom: 0.11
  16267. }
  16268. },
  16269. },
  16270. [
  16271. {
  16272. name: "Micro",
  16273. height: math.unit(3, "inches"),
  16274. default: true
  16275. },
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(5 + 6 / 12, "feet")
  16279. },
  16280. {
  16281. name: "Lesser Macro",
  16282. height: math.unit(60, "feet")
  16283. },
  16284. {
  16285. name: "Greater Macro",
  16286. height: math.unit(120, "feet")
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(100, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/aevsivs/front.svg",
  16299. extra: 1,
  16300. bottom: 0.03
  16301. }
  16302. },
  16303. back: {
  16304. height: math.unit(6, "feet"),
  16305. weight: math.unit(100, "lb"),
  16306. name: "Back",
  16307. image: {
  16308. source: "./media/characters/aevsivs/back.svg"
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Micro",
  16315. height: math.unit(2, "inches"),
  16316. default: true
  16317. },
  16318. {
  16319. name: "Normal",
  16320. height: math.unit(5, "feet")
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(5 + 7 / 12, "feet"),
  16329. weight: math.unit(159, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/hildegard/front.svg",
  16333. extra: 289 / 269,
  16334. bottom: 7.63 / 297.8
  16335. }
  16336. },
  16337. back: {
  16338. height: math.unit(5 + 7 / 12, "feet"),
  16339. weight: math.unit(159, "lb"),
  16340. name: "Back",
  16341. image: {
  16342. source: "./media/characters/hildegard/back.svg",
  16343. extra: 280 / 260,
  16344. bottom: 2.3 / 282
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(5 + 7 / 12, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16358. {
  16359. bernard: {
  16360. height: math.unit(2 + 7 / 12, "feet"),
  16361. weight: math.unit(66, "lb"),
  16362. name: "Bernard",
  16363. rename: true,
  16364. image: {
  16365. source: "./media/characters/bernard-wilder/bernard.svg",
  16366. extra: 192 / 128,
  16367. bottom: 0.05
  16368. }
  16369. },
  16370. wilder: {
  16371. height: math.unit(5 + 8 / 12, "feet"),
  16372. weight: math.unit(143, "lb"),
  16373. name: "Wilder",
  16374. rename: true,
  16375. image: {
  16376. source: "./media/characters/bernard-wilder/wilder.svg",
  16377. extra: 361 / 312,
  16378. bottom: 0.02
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(2 + 7 / 12, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16392. {
  16393. anthro: {
  16394. height: math.unit(6 + 1 / 12, "feet"),
  16395. weight: math.unit(155, "lb"),
  16396. name: "Anthro",
  16397. image: {
  16398. source: "./media/characters/hearth/anthro.svg",
  16399. extra: 1178/1136,
  16400. bottom: 28/1206
  16401. }
  16402. },
  16403. feral: {
  16404. height: math.unit(3.78, "feet"),
  16405. weight: math.unit(35, "kg"),
  16406. name: "Feral",
  16407. image: {
  16408. source: "./media/characters/hearth/feral.svg",
  16409. extra: 153 / 135,
  16410. bottom: 0.03
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(6 + 1 / 12, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(6, "feet"),
  16427. weight: math.unit(182, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/ingrid/front.svg",
  16431. extra: 294 / 268,
  16432. bottom: 0.027
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(6, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16446. {
  16447. eevee: {
  16448. height: math.unit(2 + 10 / 12, "feet"),
  16449. weight: math.unit(86, "lb"),
  16450. name: "Malgam",
  16451. image: {
  16452. source: "./media/characters/malgam/eevee.svg",
  16453. extra: 952/784,
  16454. bottom: 38/990
  16455. }
  16456. },
  16457. sylveon: {
  16458. height: math.unit(4, "feet"),
  16459. weight: math.unit(101, "lb"),
  16460. name: "Future Malgam",
  16461. rename: true,
  16462. image: {
  16463. source: "./media/characters/malgam/sylveon.svg",
  16464. extra: 371 / 325,
  16465. bottom: 0.015
  16466. }
  16467. },
  16468. gigantamax: {
  16469. height: math.unit(50, "feet"),
  16470. name: "Gigantamax Malgam",
  16471. rename: true,
  16472. image: {
  16473. source: "./media/characters/malgam/gigantamax.svg"
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(2 + 10 / 12, "feet"),
  16481. default: true
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(5 + 11 / 12, "feet"),
  16490. weight: math.unit(188, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/fleur/front.svg",
  16494. extra: 309 / 283,
  16495. bottom: 0.007
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(5 + 11 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(5 + 4 / 12, "feet"),
  16512. weight: math.unit(122, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/jude/front.svg",
  16516. extra: 288 / 273,
  16517. bottom: 0.03
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Normal",
  16524. height: math.unit(5 + 4 / 12, "feet"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(5 + 11 / 12, "feet"),
  16534. weight: math.unit(190, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/seara/front.svg",
  16538. extra: 1,
  16539. bottom: 0.05
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Normal",
  16546. height: math.unit(5 + 11 / 12, "feet"),
  16547. default: true
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(16 + 5 / 12, "feet"),
  16556. weight: math.unit(524, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/caspian-lugia/front.svg",
  16560. extra: 1,
  16561. bottom: 0.04
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(16 + 5 / 12, "feet"),
  16569. default: true
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(5 + 7 / 12, "feet"),
  16578. weight: math.unit(170, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/mika/front.svg",
  16582. extra: 1,
  16583. bottom: 0.016
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Normal",
  16590. height: math.unit(5 + 7 / 12, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6 + 2 / 12, "feet"),
  16600. weight: math.unit(268, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/sol/front.svg",
  16604. extra: 247 / 231,
  16605. bottom: 0.05
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(6 + 2 / 12, "feet"),
  16613. default: true
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16619. {
  16620. buizel: {
  16621. height: math.unit(2 + 5 / 12, "feet"),
  16622. weight: math.unit(87, "lb"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/umiko/buizel.svg",
  16626. extra: 172 / 157,
  16627. bottom: 0.01
  16628. },
  16629. form: "buizel",
  16630. default: true
  16631. },
  16632. floatzel: {
  16633. height: math.unit(5 + 9 / 12, "feet"),
  16634. weight: math.unit(250, "lb"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/umiko/floatzel.svg",
  16638. extra: 1076/1006,
  16639. bottom: 15/1091
  16640. },
  16641. form: "floatzel",
  16642. default: true
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(2 + 5 / 12, "feet"),
  16649. form: "buizel",
  16650. default: true
  16651. },
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(5 + 9 / 12, "feet"),
  16655. form: "floatzel",
  16656. default: true
  16657. },
  16658. ],
  16659. {
  16660. "buizel": {
  16661. name: "Buizel"
  16662. },
  16663. "floatzel": {
  16664. name: "Floatzel",
  16665. default: true
  16666. }
  16667. }
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(6 + 2 / 12, "feet"),
  16674. weight: math.unit(146, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/iliac/front.svg",
  16678. extra: 389 / 365,
  16679. bottom: 0.035
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(6 + 2 / 12, "feet"),
  16687. default: true
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16693. {
  16694. front: {
  16695. height: math.unit(6, "feet"),
  16696. weight: math.unit(170, "lb"),
  16697. name: "Front",
  16698. image: {
  16699. source: "./media/characters/topaz/front.svg",
  16700. extra: 317 / 303,
  16701. bottom: 0.055
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(6, "feet"),
  16709. default: true
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 11 / 12, "feet"),
  16718. weight: math.unit(144, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/gabriel/front.svg",
  16722. extra: 285 / 262,
  16723. bottom: 0.004
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(5 + 11 / 12, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16737. {
  16738. side: {
  16739. height: math.unit(6 + 5 / 12, "feet"),
  16740. weight: math.unit(300, "lb"),
  16741. name: "Side",
  16742. image: {
  16743. source: "./media/characters/tempest-suicune/side.svg",
  16744. extra: 195 / 154,
  16745. bottom: 0.04
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(6 + 5 / 12, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(7 + 2 / 12, "feet"),
  16762. weight: math.unit(322, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/vulcan/front.svg",
  16766. extra: 154 / 147,
  16767. bottom: 0.04
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(7 + 2 / 12, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(5 + 10 / 12, "feet"),
  16784. weight: math.unit(264, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/gault/front.svg",
  16788. extra: 161 / 140,
  16789. bottom: 0.028
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(5 + 10 / 12, "feet"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6, "feet"),
  16806. weight: math.unit(150, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/shard/front.svg",
  16810. extra: 273 / 238,
  16811. bottom: 0.02
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(3 + 6 / 12, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(5 + 11 / 12, "feet"),
  16828. weight: math.unit(146, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/ashe/front.svg",
  16832. extra: 400 / 373,
  16833. bottom: 0.01
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(5 + 11 / 12, "feet"),
  16841. default: true
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(5 + 5 / 12, "feet"),
  16850. weight: math.unit(135, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/beatrix/front.svg",
  16854. extra: 392 / 379,
  16855. bottom: 0.01
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(6, "feet"),
  16863. default: true
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16869. {
  16870. front: {
  16871. height: math.unit(6 + 2/12, "feet"),
  16872. weight: math.unit(135, "lb"),
  16873. name: "Front",
  16874. image: {
  16875. source: "./media/characters/ignatius/front.svg",
  16876. extra: 1380/1259,
  16877. bottom: 27/1407
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Normal",
  16884. height: math.unit(6 + 2/12, "feet"),
  16885. default: true
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16891. {
  16892. front: {
  16893. height: math.unit(6 + 2 / 12, "feet"),
  16894. weight: math.unit(138, "lb"),
  16895. name: "Front",
  16896. image: {
  16897. source: "./media/characters/mei-li/front.svg",
  16898. extra: 237 / 229,
  16899. bottom: 0.03
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(6 + 2 / 12, "feet"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16913. {
  16914. front: {
  16915. height: math.unit(2 + 4 / 12, "feet"),
  16916. weight: math.unit(62, "lb"),
  16917. name: "Front",
  16918. image: {
  16919. source: "./media/characters/puru/front.svg",
  16920. extra: 206 / 149,
  16921. bottom: 0.06
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(2 + 4 / 12, "feet"),
  16929. default: true
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16935. {
  16936. anthro: {
  16937. height: math.unit(5 + 8/12, "feet"),
  16938. weight: math.unit(200, "lb"),
  16939. energyNeed: math.unit(2000, "kcal"),
  16940. name: "Anthro",
  16941. image: {
  16942. source: "./media/characters/kee/anthro.svg",
  16943. extra: 3251/3184,
  16944. bottom: 250/3501
  16945. }
  16946. },
  16947. taur: {
  16948. height: math.unit(11, "feet"),
  16949. weight: math.unit(500, "lb"),
  16950. energyNeed: math.unit(5000, "kcal"),
  16951. name: "Taur",
  16952. image: {
  16953. source: "./media/characters/kee/taur.svg",
  16954. extra: 1362/1320,
  16955. bottom: 83/1445
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(5 + 8/12, "feet"),
  16963. default: true
  16964. },
  16965. {
  16966. name: "Macro",
  16967. height: math.unit(35, "feet")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16973. {
  16974. anthro: {
  16975. height: math.unit(7, "feet"),
  16976. weight: math.unit(190, "lb"),
  16977. name: "Anthro",
  16978. image: {
  16979. source: "./media/characters/cobalt-dracha/anthro.svg",
  16980. extra: 231 / 225,
  16981. bottom: 0.04
  16982. }
  16983. },
  16984. feral: {
  16985. height: math.unit(9 + 7 / 12, "feet"),
  16986. weight: math.unit(294, "lb"),
  16987. name: "Feral",
  16988. image: {
  16989. source: "./media/characters/cobalt-dracha/feral.svg",
  16990. extra: 692 / 633,
  16991. bottom: 0.05
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(7, "feet"),
  16999. default: true
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17005. {
  17006. fallen: {
  17007. height: math.unit(11 + 8 / 12, "feet"),
  17008. weight: math.unit(485, "lb"),
  17009. name: "Java (Fallen)",
  17010. rename: true,
  17011. image: {
  17012. source: "./media/characters/java/fallen.svg",
  17013. extra: 226 / 208,
  17014. bottom: 0.005
  17015. }
  17016. },
  17017. godkin: {
  17018. height: math.unit(10 + 6 / 12, "feet"),
  17019. weight: math.unit(328, "lb"),
  17020. name: "Java (Godkin)",
  17021. rename: true,
  17022. image: {
  17023. source: "./media/characters/java/godkin.svg",
  17024. extra: 1104/1068,
  17025. bottom: 36/1140
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(11 + 8 / 12, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17039. {
  17040. front: {
  17041. height: math.unit(5 + 9 / 12, "feet"),
  17042. weight: math.unit(170, "lb"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/purna/front.svg",
  17046. extra: 239 / 229,
  17047. bottom: 0.01
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(5 + 9 / 12, "feet"),
  17055. default: true
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(5 + 9 / 12, "feet"),
  17064. weight: math.unit(142, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/kuva/front.svg",
  17068. extra: 281 / 271,
  17069. bottom: 0.006
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(5 + 9 / 12, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17083. {
  17084. anthro: {
  17085. height: math.unit(9 + 2 / 12, "feet"),
  17086. weight: math.unit(270, "lb"),
  17087. name: "Anthro",
  17088. image: {
  17089. source: "./media/characters/embra/anthro.svg",
  17090. extra: 200 / 187,
  17091. bottom: 0.02
  17092. }
  17093. },
  17094. feral: {
  17095. height: math.unit(18 + 8 / 12, "feet"),
  17096. weight: math.unit(576, "lb"),
  17097. name: "Feral",
  17098. image: {
  17099. source: "./media/characters/embra/feral.svg",
  17100. extra: 152 / 137,
  17101. bottom: 0.037
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(9 + 2 / 12, "feet"),
  17109. default: true
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17115. {
  17116. anthro: {
  17117. height: math.unit(10 + 9 / 12, "feet"),
  17118. weight: math.unit(224, "lb"),
  17119. name: "Anthro",
  17120. image: {
  17121. source: "./media/characters/grottos/anthro.svg",
  17122. extra: 350 / 332,
  17123. bottom: 0.045
  17124. }
  17125. },
  17126. feral: {
  17127. height: math.unit(20 + 7 / 12, "feet"),
  17128. weight: math.unit(629, "lb"),
  17129. name: "Feral",
  17130. image: {
  17131. source: "./media/characters/grottos/feral.svg",
  17132. extra: 207 / 190,
  17133. bottom: 0.05
  17134. }
  17135. },
  17136. },
  17137. [
  17138. {
  17139. name: "Normal",
  17140. height: math.unit(10 + 9 / 12, "feet"),
  17141. default: true
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17147. {
  17148. anthro: {
  17149. height: math.unit(9 + 6 / 12, "feet"),
  17150. weight: math.unit(298, "lb"),
  17151. name: "Anthro",
  17152. image: {
  17153. source: "./media/characters/frifna/anthro.svg",
  17154. extra: 282 / 269,
  17155. bottom: 0.015
  17156. }
  17157. },
  17158. feral: {
  17159. height: math.unit(16 + 2 / 12, "feet"),
  17160. weight: math.unit(624, "lb"),
  17161. name: "Feral",
  17162. image: {
  17163. source: "./media/characters/frifna/feral.svg"
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(9 + 6 / 12, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(6 + 2 / 12, "feet"),
  17180. weight: math.unit(168, "lb"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/elise/front.svg",
  17184. extra: 276 / 271
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6 + 2 / 12, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(5 + 10 / 12, "feet"),
  17201. weight: math.unit(210, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/glade/front.svg",
  17205. extra: 258 / 247,
  17206. bottom: 0.008
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(5 + 10 / 12, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(5 + 10 / 12, "feet"),
  17223. weight: math.unit(129, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/rina/front.svg",
  17227. extra: 266 / 255,
  17228. bottom: 0.005
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(5 + 10 / 12, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17242. {
  17243. front: {
  17244. height: math.unit(6 + 1 / 12, "feet"),
  17245. weight: math.unit(192, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/veronica/front.svg",
  17249. extra: 319 / 309,
  17250. bottom: 0.005
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(6 + 1 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(9 + 3 / 12, "feet"),
  17267. weight: math.unit(1100, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/braxton/front.svg",
  17271. extra: 1057 / 984,
  17272. bottom: 0.05
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(9 + 3 / 12, "feet")
  17280. },
  17281. {
  17282. name: "Giant",
  17283. height: math.unit(300, "feet"),
  17284. default: true
  17285. },
  17286. {
  17287. name: "Macro",
  17288. height: math.unit(700, "feet")
  17289. },
  17290. {
  17291. name: "Megamacro",
  17292. height: math.unit(6000, "feet")
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17298. {
  17299. front: {
  17300. height: math.unit(6 + 7 / 12, "feet"),
  17301. weight: math.unit(150, "lb"),
  17302. name: "Front",
  17303. image: {
  17304. source: "./media/characters/blue-feyonics/front.svg",
  17305. extra: 1403 / 1306,
  17306. bottom: 0.047
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(6 + 7 / 12, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(1.8, "meters"),
  17323. weight: math.unit(60, "kg"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/maxwell/front.svg",
  17327. extra: 2060 / 1873
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Micro",
  17334. height: math.unit(1, "mm")
  17335. },
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(1.8, "meter"),
  17339. default: true
  17340. },
  17341. {
  17342. name: "Macro",
  17343. height: math.unit(30, "meters")
  17344. },
  17345. {
  17346. name: "Megamacro",
  17347. height: math.unit(10, "km")
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17353. {
  17354. front: {
  17355. height: math.unit(6, "feet"),
  17356. weight: math.unit(150, "lb"),
  17357. name: "Front",
  17358. image: {
  17359. source: "./media/characters/jack/front.svg",
  17360. extra: 1754 / 1640,
  17361. bottom: 0.01
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(80000, "feet"),
  17369. default: true
  17370. },
  17371. {
  17372. name: "Max size",
  17373. height: math.unit(10, "lightyears")
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17379. {
  17380. urban: {
  17381. height: math.unit(5, "feet"),
  17382. weight: math.unit(240, "lb"),
  17383. name: "Urban",
  17384. image: {
  17385. source: "./media/characters/cafat/urban.svg",
  17386. extra: 1223/1126,
  17387. bottom: 205/1428
  17388. }
  17389. },
  17390. summer: {
  17391. height: math.unit(5, "feet"),
  17392. weight: math.unit(240, "lb"),
  17393. name: "Summer",
  17394. image: {
  17395. source: "./media/characters/cafat/summer.svg",
  17396. extra: 1223/1126,
  17397. bottom: 205/1428
  17398. }
  17399. },
  17400. winter: {
  17401. height: math.unit(5, "feet"),
  17402. weight: math.unit(240, "lb"),
  17403. name: "Winter",
  17404. image: {
  17405. source: "./media/characters/cafat/winter.svg",
  17406. extra: 1223/1126,
  17407. bottom: 205/1428
  17408. }
  17409. },
  17410. lingerie: {
  17411. height: math.unit(5, "feet"),
  17412. weight: math.unit(240, "lb"),
  17413. name: "Lingerie",
  17414. image: {
  17415. source: "./media/characters/cafat/lingerie.svg",
  17416. extra: 1223/1126,
  17417. bottom: 205/1428
  17418. }
  17419. },
  17420. upright: {
  17421. height: math.unit(6.3, "feet"),
  17422. weight: math.unit(240, "lb"),
  17423. name: "Upright",
  17424. image: {
  17425. source: "./media/characters/cafat/upright.svg",
  17426. bottom: 0.01
  17427. }
  17428. },
  17429. uprightFull: {
  17430. height: math.unit(6.3, "feet"),
  17431. weight: math.unit(240, "lb"),
  17432. name: "Upright (Full)",
  17433. image: {
  17434. source: "./media/characters/cafat/upright-full.svg",
  17435. bottom: 0.01
  17436. }
  17437. },
  17438. },
  17439. [
  17440. {
  17441. name: "Small",
  17442. height: math.unit(5, "feet"),
  17443. default: true
  17444. },
  17445. {
  17446. name: "Large",
  17447. height: math.unit(13, "feet")
  17448. },
  17449. ]
  17450. ))
  17451. characterMakers.push(() => makeCharacter(
  17452. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17453. {
  17454. front: {
  17455. height: math.unit(6, "feet"),
  17456. weight: math.unit(150, "lb"),
  17457. name: "Front",
  17458. image: {
  17459. source: "./media/characters/verin-raharra/front.svg",
  17460. extra: 5019 / 4835,
  17461. bottom: 0.023
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Normal",
  17468. height: math.unit(7 + 5 / 12, "feet"),
  17469. default: true
  17470. },
  17471. {
  17472. name: "Upsized",
  17473. height: math.unit(20, "feet")
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(7, "feet"),
  17482. weight: math.unit(230, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/nakata/front.svg",
  17486. extra: 1.005,
  17487. bottom: 0.01
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(7, "feet"),
  17495. default: true
  17496. },
  17497. {
  17498. name: "Big",
  17499. height: math.unit(14, "feet")
  17500. },
  17501. {
  17502. name: "Macro",
  17503. height: math.unit(400, "feet")
  17504. },
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17509. {
  17510. front: {
  17511. height: math.unit(4.91, "feet"),
  17512. weight: math.unit(100, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/lily/front.svg",
  17516. extra: 1585 / 1415,
  17517. bottom: 0.02
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(4.91, "feet"),
  17525. default: true
  17526. },
  17527. ]
  17528. ))
  17529. characterMakers.push(() => makeCharacter(
  17530. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17531. {
  17532. laying: {
  17533. height: math.unit(4 + 4 / 12, "feet"),
  17534. weight: math.unit(600, "lb"),
  17535. name: "Laying",
  17536. image: {
  17537. source: "./media/characters/sheila/laying.svg",
  17538. extra: 1333 / 1265,
  17539. bottom: 0.16
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(4 + 4 / 12, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17553. {
  17554. front: {
  17555. height: math.unit(6, "feet"),
  17556. weight: math.unit(190, "lb"),
  17557. name: "Front",
  17558. image: {
  17559. source: "./media/characters/sax/front.svg",
  17560. extra: 1187 / 973,
  17561. bottom: 0.042
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Micro",
  17568. height: math.unit(4, "inches"),
  17569. default: true
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17575. {
  17576. front: {
  17577. height: math.unit(6, "feet"),
  17578. weight: math.unit(150, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/pandora/front.svg",
  17582. extra: 2720 / 2556,
  17583. bottom: 0.015
  17584. }
  17585. },
  17586. back: {
  17587. height: math.unit(6, "feet"),
  17588. weight: math.unit(150, "lb"),
  17589. name: "Back",
  17590. image: {
  17591. source: "./media/characters/pandora/back.svg",
  17592. extra: 2720 / 2556,
  17593. bottom: 0.01
  17594. }
  17595. },
  17596. beans: {
  17597. height: math.unit(6 / 8, "feet"),
  17598. name: "Beans",
  17599. image: {
  17600. source: "./media/characters/pandora/beans.svg"
  17601. }
  17602. },
  17603. collar: {
  17604. height: math.unit(0.31, "feet"),
  17605. name: "Collar",
  17606. image: {
  17607. source: "./media/characters/pandora/collar.svg"
  17608. }
  17609. },
  17610. skirt: {
  17611. height: math.unit(6, "feet"),
  17612. weight: math.unit(150, "lb"),
  17613. name: "Skirt",
  17614. image: {
  17615. source: "./media/characters/pandora/skirt.svg",
  17616. extra: 1622 / 1525,
  17617. bottom: 0.015
  17618. }
  17619. },
  17620. hoodie: {
  17621. height: math.unit(6, "feet"),
  17622. weight: math.unit(150, "lb"),
  17623. name: "Hoodie",
  17624. image: {
  17625. source: "./media/characters/pandora/hoodie.svg",
  17626. extra: 1622 / 1525,
  17627. bottom: 0.015
  17628. }
  17629. },
  17630. casual: {
  17631. height: math.unit(6, "feet"),
  17632. weight: math.unit(150, "lb"),
  17633. name: "Casual",
  17634. image: {
  17635. source: "./media/characters/pandora/casual.svg",
  17636. extra: 1622 / 1525,
  17637. bottom: 0.015
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(6, "feet")
  17645. },
  17646. {
  17647. name: "Big Steppy",
  17648. height: math.unit(1, "km"),
  17649. default: true
  17650. },
  17651. {
  17652. name: "Galactic Steppy",
  17653. height: math.unit(2, "gigameters")
  17654. },
  17655. ]
  17656. ))
  17657. characterMakers.push(() => makeCharacter(
  17658. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17659. {
  17660. side: {
  17661. height: math.unit(10, "feet"),
  17662. weight: math.unit(800, "kg"),
  17663. name: "Side",
  17664. image: {
  17665. source: "./media/characters/venio-darcony/side.svg",
  17666. extra: 1373 / 1003,
  17667. bottom: 0.037
  17668. }
  17669. },
  17670. front: {
  17671. height: math.unit(19, "feet"),
  17672. weight: math.unit(800, "kg"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/venio-darcony/front.svg"
  17676. }
  17677. },
  17678. back: {
  17679. height: math.unit(19, "feet"),
  17680. weight: math.unit(800, "kg"),
  17681. name: "Back",
  17682. image: {
  17683. source: "./media/characters/venio-darcony/back.svg"
  17684. }
  17685. },
  17686. sideNsfw: {
  17687. height: math.unit(10, "feet"),
  17688. weight: math.unit(800, "kg"),
  17689. name: "Side (NSFW)",
  17690. image: {
  17691. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17692. extra: 1373 / 1003,
  17693. bottom: 0.037
  17694. }
  17695. },
  17696. frontNsfw: {
  17697. height: math.unit(19, "feet"),
  17698. weight: math.unit(800, "kg"),
  17699. name: "Front (NSFW)",
  17700. image: {
  17701. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17702. }
  17703. },
  17704. backNsfw: {
  17705. height: math.unit(19, "feet"),
  17706. weight: math.unit(800, "kg"),
  17707. name: "Back (NSFW)",
  17708. image: {
  17709. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17710. }
  17711. },
  17712. sideArmored: {
  17713. height: math.unit(10, "feet"),
  17714. weight: math.unit(800, "kg"),
  17715. name: "Side (Armored)",
  17716. image: {
  17717. source: "./media/characters/venio-darcony/side-armored.svg",
  17718. extra: 1373 / 1003,
  17719. bottom: 0.037
  17720. }
  17721. },
  17722. frontArmored: {
  17723. height: math.unit(19, "feet"),
  17724. weight: math.unit(900, "kg"),
  17725. name: "Front (Armored)",
  17726. image: {
  17727. source: "./media/characters/venio-darcony/front-armored.svg"
  17728. }
  17729. },
  17730. backArmored: {
  17731. height: math.unit(19, "feet"),
  17732. weight: math.unit(900, "kg"),
  17733. name: "Back (Armored)",
  17734. image: {
  17735. source: "./media/characters/venio-darcony/back-armored.svg"
  17736. }
  17737. },
  17738. sword: {
  17739. height: math.unit(10, "feet"),
  17740. weight: math.unit(50, "lb"),
  17741. name: "Sword",
  17742. image: {
  17743. source: "./media/characters/venio-darcony/sword.svg"
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(10, "feet")
  17751. },
  17752. {
  17753. name: "Macro",
  17754. height: math.unit(130, "feet"),
  17755. default: true
  17756. },
  17757. {
  17758. name: "Macro+",
  17759. height: math.unit(240, "feet")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(6, "feet"),
  17768. weight: math.unit(150, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/veski/front.svg",
  17772. extra: 1299 / 1225,
  17773. bottom: 0.04
  17774. }
  17775. },
  17776. back: {
  17777. height: math.unit(6, "feet"),
  17778. weight: math.unit(150, "lb"),
  17779. name: "Back",
  17780. image: {
  17781. source: "./media/characters/veski/back.svg",
  17782. extra: 1299 / 1225,
  17783. bottom: 0.008
  17784. }
  17785. },
  17786. maw: {
  17787. height: math.unit(1.5 * 1.21, "feet"),
  17788. name: "Maw",
  17789. image: {
  17790. source: "./media/characters/veski/maw.svg"
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Macro",
  17797. height: math.unit(2, "km"),
  17798. default: true
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(5 + 7 / 12, "feet"),
  17807. name: "Front",
  17808. image: {
  17809. source: "./media/characters/isabelle/front.svg",
  17810. extra: 2130 / 1976,
  17811. bottom: 0.05
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Supermicro",
  17818. height: math.unit(10, "micrometers")
  17819. },
  17820. {
  17821. name: "Micro",
  17822. height: math.unit(1, "inch")
  17823. },
  17824. {
  17825. name: "Tiny",
  17826. height: math.unit(5, "inches")
  17827. },
  17828. {
  17829. name: "Standard",
  17830. height: math.unit(5 + 7 / 12, "inches")
  17831. },
  17832. {
  17833. name: "Macro",
  17834. height: math.unit(80, "meters"),
  17835. default: true
  17836. },
  17837. {
  17838. name: "Megamacro",
  17839. height: math.unit(250, "meters")
  17840. },
  17841. {
  17842. name: "Gigamacro",
  17843. height: math.unit(5, "km")
  17844. },
  17845. {
  17846. name: "Cosmic",
  17847. height: math.unit(2.5e6, "miles")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(6, "feet"),
  17856. weight: math.unit(150, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/hanzo/front.svg",
  17860. extra: 374 / 344,
  17861. bottom: 0.02
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(8, "feet"),
  17869. default: true
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(7, "feet"),
  17878. weight: math.unit(130, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/anna/front.svg",
  17882. extra: 169 / 145,
  17883. bottom: 0.06
  17884. }
  17885. },
  17886. full: {
  17887. height: math.unit(4.96, "feet"),
  17888. weight: math.unit(220, "lb"),
  17889. name: "Full",
  17890. image: {
  17891. source: "./media/characters/anna/full.svg",
  17892. extra: 138 / 114,
  17893. bottom: 0.15
  17894. }
  17895. },
  17896. tongue: {
  17897. height: math.unit(2.53, "feet"),
  17898. name: "Tongue",
  17899. image: {
  17900. source: "./media/characters/anna/tongue.svg"
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(7, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(7, "feet"),
  17917. weight: math.unit(150, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/ian-corvid/front.svg",
  17921. extra: 150 / 142,
  17922. bottom: 0.02
  17923. }
  17924. },
  17925. back: {
  17926. height: math.unit(7, "feet"),
  17927. weight: math.unit(150, "lb"),
  17928. name: "Back",
  17929. image: {
  17930. source: "./media/characters/ian-corvid/back.svg",
  17931. extra: 150 / 143,
  17932. bottom: 0.01
  17933. }
  17934. },
  17935. stomping: {
  17936. height: math.unit(7, "feet"),
  17937. weight: math.unit(150, "lb"),
  17938. name: "Stomping",
  17939. image: {
  17940. source: "./media/characters/ian-corvid/stomping.svg",
  17941. extra: 76 / 72
  17942. }
  17943. },
  17944. sitting: {
  17945. height: math.unit(7 / 1.8, "feet"),
  17946. weight: math.unit(150, "lb"),
  17947. name: "Sitting",
  17948. image: {
  17949. source: "./media/characters/ian-corvid/sitting.svg",
  17950. extra: 1400 / 1269,
  17951. bottom: 0.15
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Tiny Microw",
  17958. height: math.unit(1, "inch")
  17959. },
  17960. {
  17961. name: "Microw",
  17962. height: math.unit(6, "inches")
  17963. },
  17964. {
  17965. name: "Crow",
  17966. height: math.unit(7 + 1 / 12, "feet"),
  17967. default: true
  17968. },
  17969. {
  17970. name: "Macrow",
  17971. height: math.unit(176, "feet")
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17977. {
  17978. front: {
  17979. height: math.unit(5 + 7 / 12, "feet"),
  17980. weight: math.unit(147, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/natalie-kellon/front.svg",
  17984. extra: 1214 / 1141,
  17985. bottom: 0.02
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Micro",
  17992. height: math.unit(1 / 16, "inch")
  17993. },
  17994. {
  17995. name: "Tiny",
  17996. height: math.unit(4, "inches")
  17997. },
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(5 + 7 / 12, "feet"),
  18001. default: true
  18002. },
  18003. {
  18004. name: "Amazon",
  18005. height: math.unit(12, "feet")
  18006. },
  18007. {
  18008. name: "Giantess",
  18009. height: math.unit(160, "meters")
  18010. },
  18011. {
  18012. name: "Titaness",
  18013. height: math.unit(800, "meters")
  18014. },
  18015. ]
  18016. ))
  18017. characterMakers.push(() => makeCharacter(
  18018. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18019. {
  18020. front: {
  18021. height: math.unit(6, "feet"),
  18022. weight: math.unit(150, "lb"),
  18023. name: "Front",
  18024. image: {
  18025. source: "./media/characters/alluria/front.svg",
  18026. extra: 806 / 738,
  18027. bottom: 0.01
  18028. }
  18029. },
  18030. side: {
  18031. height: math.unit(6, "feet"),
  18032. weight: math.unit(150, "lb"),
  18033. name: "Side",
  18034. image: {
  18035. source: "./media/characters/alluria/side.svg",
  18036. extra: 800 / 750,
  18037. }
  18038. },
  18039. back: {
  18040. height: math.unit(6, "feet"),
  18041. weight: math.unit(150, "lb"),
  18042. name: "Back",
  18043. image: {
  18044. source: "./media/characters/alluria/back.svg",
  18045. extra: 806 / 738,
  18046. }
  18047. },
  18048. frontMaid: {
  18049. height: math.unit(6, "feet"),
  18050. weight: math.unit(150, "lb"),
  18051. name: "Front (Maid)",
  18052. image: {
  18053. source: "./media/characters/alluria/front-maid.svg",
  18054. extra: 806 / 738,
  18055. bottom: 0.01
  18056. }
  18057. },
  18058. sideMaid: {
  18059. height: math.unit(6, "feet"),
  18060. weight: math.unit(150, "lb"),
  18061. name: "Side (Maid)",
  18062. image: {
  18063. source: "./media/characters/alluria/side-maid.svg",
  18064. extra: 800 / 750,
  18065. bottom: 0.005
  18066. }
  18067. },
  18068. backMaid: {
  18069. height: math.unit(6, "feet"),
  18070. weight: math.unit(150, "lb"),
  18071. name: "Back (Maid)",
  18072. image: {
  18073. source: "./media/characters/alluria/back-maid.svg",
  18074. extra: 806 / 738,
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Micro",
  18081. height: math.unit(6, "inches"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(6, "feet"),
  18091. weight: math.unit(150, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/kyle/front.svg",
  18095. extra: 1069 / 962,
  18096. bottom: 77.228 / 1727.45
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Macro",
  18103. height: math.unit(150, "feet"),
  18104. default: true
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18110. {
  18111. front: {
  18112. height: math.unit(6, "feet"),
  18113. weight: math.unit(300, "lb"),
  18114. name: "Front",
  18115. image: {
  18116. source: "./media/characters/duncan/front.svg",
  18117. extra: 1650 / 1482,
  18118. bottom: 0.05
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Macro",
  18125. height: math.unit(100, "feet"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(5 + 4 / 12, "feet"),
  18135. weight: math.unit(220, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/memory/front.svg",
  18139. extra: 3641 / 3545,
  18140. bottom: 0.03
  18141. }
  18142. },
  18143. back: {
  18144. height: math.unit(5 + 4 / 12, "feet"),
  18145. weight: math.unit(220, "lb"),
  18146. name: "Back",
  18147. image: {
  18148. source: "./media/characters/memory/back.svg",
  18149. extra: 3641 / 3545,
  18150. bottom: 0.025
  18151. }
  18152. },
  18153. frontSkirt: {
  18154. height: math.unit(5 + 4 / 12, "feet"),
  18155. weight: math.unit(220, "lb"),
  18156. name: "Front (Skirt)",
  18157. image: {
  18158. source: "./media/characters/memory/front-skirt.svg",
  18159. extra: 3641 / 3545,
  18160. bottom: 0.03
  18161. }
  18162. },
  18163. frontDress: {
  18164. height: math.unit(5 + 4 / 12, "feet"),
  18165. weight: math.unit(220, "lb"),
  18166. name: "Front (Dress)",
  18167. image: {
  18168. source: "./media/characters/memory/front-dress.svg",
  18169. extra: 3641 / 3545,
  18170. bottom: 0.03
  18171. }
  18172. },
  18173. },
  18174. [
  18175. {
  18176. name: "Micro",
  18177. height: math.unit(6, "inches"),
  18178. default: true
  18179. },
  18180. {
  18181. name: "Normal",
  18182. height: math.unit(5 + 4 / 12, "feet")
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18188. {
  18189. front: {
  18190. height: math.unit(4 + 11 / 12, "feet"),
  18191. weight: math.unit(100, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/luno/front.svg",
  18195. extra: 1535 / 1487,
  18196. bottom: 0.03
  18197. }
  18198. },
  18199. },
  18200. [
  18201. {
  18202. name: "Micro",
  18203. height: math.unit(3, "inches")
  18204. },
  18205. {
  18206. name: "Normal",
  18207. height: math.unit(4 + 11 / 12, "feet"),
  18208. default: true
  18209. },
  18210. {
  18211. name: "Macro",
  18212. height: math.unit(300, "feet")
  18213. },
  18214. {
  18215. name: "Megamacro",
  18216. height: math.unit(700, "miles")
  18217. },
  18218. ]
  18219. ))
  18220. characterMakers.push(() => makeCharacter(
  18221. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18222. {
  18223. front: {
  18224. height: math.unit(6 + 2 / 12, "feet"),
  18225. weight: math.unit(170, "lb"),
  18226. name: "Front",
  18227. image: {
  18228. source: "./media/characters/jamesy/front.svg",
  18229. extra: 440 / 382,
  18230. bottom: 0.005
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Micro",
  18237. height: math.unit(3, "inches")
  18238. },
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(6 + 2 / 12, "feet"),
  18242. default: true
  18243. },
  18244. {
  18245. name: "Macro",
  18246. height: math.unit(300, "feet")
  18247. },
  18248. {
  18249. name: "Megamacro",
  18250. height: math.unit(700, "miles")
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(6, "feet"),
  18259. weight: math.unit(160, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/mark/front.svg",
  18263. extra: 3300 / 3100,
  18264. bottom: 136.42 / 3440.47
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Macro",
  18271. height: math.unit(120, "meters")
  18272. },
  18273. {
  18274. name: "Bigger Macro",
  18275. height: math.unit(350, "meters")
  18276. },
  18277. {
  18278. name: "Megamacro",
  18279. height: math.unit(8, "km"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Continental",
  18284. height: math.unit(4550, "km")
  18285. },
  18286. {
  18287. name: "Planetary",
  18288. height: math.unit(65000, "km")
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18294. {
  18295. front: {
  18296. height: math.unit(6, "feet"),
  18297. weight: math.unit(400, "lb"),
  18298. name: "Front",
  18299. image: {
  18300. source: "./media/characters/mac/front.svg",
  18301. extra: 1048 / 987.7,
  18302. bottom: 60 / 1107.6,
  18303. }
  18304. },
  18305. },
  18306. [
  18307. {
  18308. name: "Macro",
  18309. height: math.unit(500, "feet"),
  18310. default: true
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(5 + 2 / 12, "feet"),
  18319. weight: math.unit(190, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/bari/front.svg",
  18323. extra: 3156 / 2880,
  18324. bottom: 0.03
  18325. }
  18326. },
  18327. back: {
  18328. height: math.unit(5 + 2 / 12, "feet"),
  18329. weight: math.unit(190, "lb"),
  18330. name: "Back",
  18331. image: {
  18332. source: "./media/characters/bari/back.svg",
  18333. extra: 3260 / 2834,
  18334. bottom: 0.025
  18335. }
  18336. },
  18337. frontPlush: {
  18338. height: math.unit(5 + 2 / 12, "feet"),
  18339. weight: math.unit(190, "lb"),
  18340. name: "Front (Plush)",
  18341. image: {
  18342. source: "./media/characters/bari/front-plush.svg",
  18343. extra: 1112 / 1061,
  18344. bottom: 0.002
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Micro",
  18351. height: math.unit(3, "inches")
  18352. },
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(5 + 2 / 12, "feet"),
  18356. default: true
  18357. },
  18358. {
  18359. name: "Macro",
  18360. height: math.unit(20, "feet")
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(6 + 1 / 12, "feet"),
  18369. weight: math.unit(275, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/hunter-misha-raven/front.svg"
  18373. }
  18374. },
  18375. },
  18376. [
  18377. {
  18378. name: "Mortal",
  18379. height: math.unit(6 + 1 / 12, "feet")
  18380. },
  18381. {
  18382. name: "Divine",
  18383. height: math.unit(1.12134e34, "parsecs"),
  18384. default: true
  18385. },
  18386. ]
  18387. ))
  18388. characterMakers.push(() => makeCharacter(
  18389. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18390. {
  18391. front: {
  18392. height: math.unit(6 + 3 / 12, "feet"),
  18393. weight: math.unit(220, "lb"),
  18394. name: "Front",
  18395. image: {
  18396. source: "./media/characters/max-calore/front.svg",
  18397. extra: 1700 / 1648,
  18398. bottom: 0.01
  18399. }
  18400. },
  18401. back: {
  18402. height: math.unit(6 + 3 / 12, "feet"),
  18403. weight: math.unit(220, "lb"),
  18404. name: "Back",
  18405. image: {
  18406. source: "./media/characters/max-calore/back.svg",
  18407. extra: 1700 / 1648,
  18408. bottom: 0.01
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(6 + 3 / 12, "feet"),
  18416. default: true
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18422. {
  18423. side: {
  18424. height: math.unit(2 + 8 / 12, "feet"),
  18425. weight: math.unit(99, "lb"),
  18426. name: "Side",
  18427. image: {
  18428. source: "./media/characters/aspen/side.svg",
  18429. extra: 152 / 138,
  18430. bottom: 0.032
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Normal",
  18437. height: math.unit(2 + 8 / 12, "feet"),
  18438. default: true
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18444. {
  18445. side: {
  18446. height: math.unit(3 + 2 / 12, "feet"),
  18447. weight: math.unit(224, "lb"),
  18448. name: "Side",
  18449. image: {
  18450. source: "./media/characters/sheila-feral-wolf/side.svg",
  18451. extra: 179 / 166,
  18452. bottom: 0.03
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(3 + 2 / 12, "feet"),
  18460. default: true
  18461. },
  18462. ]
  18463. ))
  18464. characterMakers.push(() => makeCharacter(
  18465. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18466. {
  18467. side: {
  18468. height: math.unit(1 + 9 / 12, "feet"),
  18469. weight: math.unit(38, "lb"),
  18470. name: "Side",
  18471. image: {
  18472. source: "./media/characters/michelle/side.svg",
  18473. extra: 147 / 136.7,
  18474. bottom: 0.03
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(1 + 9 / 12, "feet"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(1.54, "feet"),
  18491. weight: math.unit(50, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/nino/front.svg"
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(1.54, "feet"),
  18502. default: true
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18508. {
  18509. front: {
  18510. height: math.unit(1.49, "feet"),
  18511. weight: math.unit(45, "lb"),
  18512. name: "Front",
  18513. image: {
  18514. source: "./media/characters/viola/front.svg"
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(1.49, "feet"),
  18522. default: true
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18528. {
  18529. front: {
  18530. height: math.unit(6 + 5 / 12, "feet"),
  18531. weight: math.unit(580, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/atlas/front.svg",
  18535. extra: 298.5 / 290,
  18536. bottom: 0.015
  18537. }
  18538. },
  18539. },
  18540. [
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(6 + 5 / 12, "feet"),
  18544. default: true
  18545. },
  18546. ]
  18547. ))
  18548. characterMakers.push(() => makeCharacter(
  18549. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18550. {
  18551. side: {
  18552. height: math.unit(15.6, "inches"),
  18553. weight: math.unit(10, "lb"),
  18554. name: "Side",
  18555. image: {
  18556. source: "./media/characters/davy/side.svg",
  18557. extra: 200 / 170,
  18558. bottom: 0.01
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(15.6, "inches"),
  18566. default: true
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18572. {
  18573. side: {
  18574. height: math.unit(4 + 8 / 12, "feet"),
  18575. weight: math.unit(166, "lb"),
  18576. name: "Side",
  18577. image: {
  18578. source: "./media/characters/fiona/side.svg",
  18579. extra: 232 / 220,
  18580. bottom: 0.03
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(4 + 8 / 12, "feet"),
  18588. default: true
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18594. {
  18595. front: {
  18596. height: math.unit(26, "inches"),
  18597. weight: math.unit(35, "lb"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/lyla/front.svg",
  18601. bottom: 0.1
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(3, "feet"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18615. {
  18616. side: {
  18617. height: math.unit(1.8, "feet"),
  18618. weight: math.unit(44, "lb"),
  18619. name: "Side",
  18620. image: {
  18621. source: "./media/characters/perseus/side.svg",
  18622. bottom: 0.21
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(1.8, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18636. {
  18637. side: {
  18638. height: math.unit(4 + 2 / 12, "feet"),
  18639. weight: math.unit(20, "lb"),
  18640. name: "Side",
  18641. image: {
  18642. source: "./media/characters/remus/side.svg"
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(4 + 2 / 12, "feet"),
  18650. default: true
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18656. {
  18657. front: {
  18658. height: math.unit(4 + 11 / 12, "feet"),
  18659. weight: math.unit(114, "lb"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/raf/front.svg",
  18663. extra: 1504/1339,
  18664. bottom: 26/1530
  18665. }
  18666. },
  18667. side: {
  18668. height: math.unit(4 + 11 / 12, "feet"),
  18669. weight: math.unit(114, "lb"),
  18670. name: "Side",
  18671. image: {
  18672. source: "./media/characters/raf/side.svg",
  18673. extra: 1466/1316,
  18674. bottom: 29/1495
  18675. }
  18676. },
  18677. paw: {
  18678. height: math.unit(1.45, "feet"),
  18679. name: "Paw",
  18680. image: {
  18681. source: "./media/characters/raf/paw.svg"
  18682. },
  18683. extraAttributes: {
  18684. "toeSize": {
  18685. name: "Toe Size",
  18686. power: 2,
  18687. type: "area",
  18688. base: math.unit(0.004, "m^2")
  18689. },
  18690. "padSize": {
  18691. name: "Pad Size",
  18692. power: 2,
  18693. type: "area",
  18694. base: math.unit(0.04, "m^2")
  18695. },
  18696. "footSize": {
  18697. name: "Foot Size",
  18698. power: 2,
  18699. type: "area",
  18700. base: math.unit(0.08, "m^2")
  18701. },
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Micro",
  18708. height: math.unit(2, "inches")
  18709. },
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(4 + 11 / 12, "feet"),
  18713. default: true
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(70, "feet")
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(1.5, "meters"),
  18726. weight: math.unit(68, "kg"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/liam-einarr/front.svg",
  18730. extra: 2822 / 2666
  18731. }
  18732. },
  18733. back: {
  18734. height: math.unit(1.5, "meters"),
  18735. weight: math.unit(68, "kg"),
  18736. name: "Back",
  18737. image: {
  18738. source: "./media/characters/liam-einarr/back.svg",
  18739. extra: 2822 / 2666,
  18740. bottom: 0.015
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(1.5, "meters"),
  18748. default: true
  18749. },
  18750. {
  18751. name: "Macro",
  18752. height: math.unit(150, "meters")
  18753. },
  18754. {
  18755. name: "Megamacro",
  18756. height: math.unit(35, "km")
  18757. },
  18758. ]
  18759. ))
  18760. characterMakers.push(() => makeCharacter(
  18761. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18762. {
  18763. front: {
  18764. height: math.unit(6, "feet"),
  18765. weight: math.unit(75, "kg"),
  18766. name: "Front",
  18767. image: {
  18768. source: "./media/characters/linda/front.svg",
  18769. extra: 930 / 874,
  18770. bottom: 0.004
  18771. }
  18772. },
  18773. },
  18774. [
  18775. {
  18776. name: "Normal",
  18777. height: math.unit(6, "feet"),
  18778. default: true
  18779. },
  18780. ]
  18781. ))
  18782. characterMakers.push(() => makeCharacter(
  18783. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18784. {
  18785. front: {
  18786. height: math.unit(6 + 8 / 12, "feet"),
  18787. weight: math.unit(220, "lb"),
  18788. name: "Front",
  18789. image: {
  18790. source: "./media/characters/caylex/front.svg",
  18791. extra: 821 / 772,
  18792. bottom: 0.07
  18793. }
  18794. },
  18795. back: {
  18796. height: math.unit(6 + 8 / 12, "feet"),
  18797. weight: math.unit(220, "lb"),
  18798. name: "Back",
  18799. image: {
  18800. source: "./media/characters/caylex/back.svg",
  18801. extra: 821 / 772,
  18802. bottom: 0.022
  18803. }
  18804. },
  18805. hand: {
  18806. height: math.unit(1.25, "feet"),
  18807. name: "Hand",
  18808. image: {
  18809. source: "./media/characters/caylex/hand.svg"
  18810. }
  18811. },
  18812. foot: {
  18813. height: math.unit(1.6, "feet"),
  18814. name: "Foot",
  18815. image: {
  18816. source: "./media/characters/caylex/foot.svg"
  18817. }
  18818. },
  18819. armored: {
  18820. height: math.unit(6 + 8 / 12, "feet"),
  18821. weight: math.unit(250, "lb"),
  18822. name: "Armored",
  18823. image: {
  18824. source: "./media/characters/caylex/armored.svg",
  18825. extra: 1420 / 1310,
  18826. bottom: 0.045
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(6 + 8 / 12, "feet"),
  18834. default: true
  18835. },
  18836. {
  18837. name: "Normal+",
  18838. height: math.unit(12, "feet")
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18844. {
  18845. front: {
  18846. height: math.unit(7 + 6 / 12, "feet"),
  18847. weight: math.unit(288, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/alana/front.svg",
  18851. extra: 679 / 653,
  18852. bottom: 22.5 / 701
  18853. }
  18854. },
  18855. },
  18856. [
  18857. {
  18858. name: "Normal",
  18859. height: math.unit(7 + 6 / 12, "feet")
  18860. },
  18861. {
  18862. name: "Large",
  18863. height: math.unit(50, "feet")
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(100, "feet"),
  18868. default: true
  18869. },
  18870. {
  18871. name: "Macro+",
  18872. height: math.unit(200, "feet")
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(6 + 1 / 12, "feet"),
  18881. weight: math.unit(210, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/hasani/front.svg",
  18885. extra: 244 / 232,
  18886. bottom: 0.01
  18887. }
  18888. },
  18889. back: {
  18890. height: math.unit(6 + 1 / 12, "feet"),
  18891. weight: math.unit(210, "lb"),
  18892. name: "Back",
  18893. image: {
  18894. source: "./media/characters/hasani/back.svg",
  18895. extra: 244 / 232,
  18896. bottom: 0.01
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Normal",
  18903. height: math.unit(6 + 1 / 12, "feet")
  18904. },
  18905. {
  18906. name: "Macro",
  18907. height: math.unit(175, "feet"),
  18908. default: true
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(1.82, "meters"),
  18917. weight: math.unit(140, "lb"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/nita/front.svg",
  18921. extra: 2473 / 2363,
  18922. bottom: 0.01
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(1.82, "m")
  18930. },
  18931. {
  18932. name: "Macro",
  18933. height: math.unit(300, "m")
  18934. },
  18935. {
  18936. name: "Mistake Canon",
  18937. height: math.unit(0.5, "miles"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Big Mistake",
  18942. height: math.unit(13, "miles")
  18943. },
  18944. {
  18945. name: "Playing God",
  18946. height: math.unit(2450, "miles")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(4, "feet"),
  18955. weight: math.unit(120, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/shiriko/front.svg",
  18959. extra: 970/934,
  18960. bottom: 5/975
  18961. }
  18962. },
  18963. },
  18964. [
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(4, "feet"),
  18968. default: true
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6, "feet"),
  18977. name: "front",
  18978. image: {
  18979. source: "./media/characters/deja/front.svg",
  18980. extra: 926 / 840,
  18981. bottom: 0.07
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Planck Length",
  18988. height: math.unit(1.6e-35, "meters")
  18989. },
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(30.48, "meters"),
  18993. default: true
  18994. },
  18995. {
  18996. name: "Universal",
  18997. height: math.unit(8.8e26, "meters")
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19003. {
  19004. side: {
  19005. height: math.unit(8, "feet"),
  19006. weight: math.unit(6300, "lb"),
  19007. name: "Side",
  19008. image: {
  19009. source: "./media/characters/anima/side.svg",
  19010. bottom: 0.035
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(8, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(8, "feet"),
  19027. weight: math.unit(350, "lb"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/bianca/front.svg",
  19031. extra: 234 / 225,
  19032. bottom: 0.03
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(8, "feet"),
  19040. default: true
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(11 + 5/12, "feet"),
  19049. weight: math.unit(1200, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/adinia/front.svg",
  19053. extra: 1767/1641,
  19054. bottom: 44/1811
  19055. },
  19056. extraAttributes: {
  19057. "energyIntake": {
  19058. name: "Energy Intake",
  19059. power: 3,
  19060. type: "energy",
  19061. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19062. },
  19063. }
  19064. },
  19065. back: {
  19066. height: math.unit(11 + 5/12, "feet"),
  19067. weight: math.unit(1200, "lb"),
  19068. name: "Back",
  19069. image: {
  19070. source: "./media/characters/adinia/back.svg",
  19071. extra: 1834/1684,
  19072. bottom: 14/1848
  19073. },
  19074. extraAttributes: {
  19075. "energyIntake": {
  19076. name: "Energy Intake",
  19077. power: 3,
  19078. type: "energy",
  19079. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19080. },
  19081. }
  19082. },
  19083. maw: {
  19084. height: math.unit(3.79, "feet"),
  19085. name: "Maw",
  19086. image: {
  19087. source: "./media/characters/adinia/maw.svg"
  19088. }
  19089. },
  19090. rump: {
  19091. height: math.unit(4.6, "feet"),
  19092. name: "Rump",
  19093. image: {
  19094. source: "./media/characters/adinia/rump.svg"
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(11 + 5 / 12, "feet"),
  19102. default: true
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(3, "meters"),
  19111. weight: math.unit(200, "kg"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/lykasa/front.svg",
  19115. extra: 1076 / 976,
  19116. bottom: 0.06
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(3, "meters")
  19124. },
  19125. {
  19126. name: "Kaiju",
  19127. height: math.unit(120, "meters"),
  19128. default: true
  19129. },
  19130. {
  19131. name: "Mega Kaiju",
  19132. height: math.unit(240, "km")
  19133. },
  19134. {
  19135. name: "Giga Kaiju",
  19136. height: math.unit(400, "megameters")
  19137. },
  19138. {
  19139. name: "Tera Kaiju",
  19140. height: math.unit(800, "gigameters")
  19141. },
  19142. {
  19143. name: "Kaiju Dragon Goddess",
  19144. height: math.unit(26, "zettaparsecs")
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19150. {
  19151. side: {
  19152. height: math.unit(283 / 124 * 6, "feet"),
  19153. weight: math.unit(35000, "lb"),
  19154. name: "Side",
  19155. image: {
  19156. source: "./media/characters/malfaren/side.svg",
  19157. extra: 1310/529,
  19158. bottom: 24/1334
  19159. }
  19160. },
  19161. front: {
  19162. height: math.unit(22.36, "feet"),
  19163. weight: math.unit(35000, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/malfaren/front.svg",
  19167. extra: 1237/1115,
  19168. bottom: 32/1269
  19169. }
  19170. },
  19171. maw: {
  19172. height: math.unit(6.9, "feet"),
  19173. name: "Maw",
  19174. image: {
  19175. source: "./media/characters/malfaren/maw.svg"
  19176. }
  19177. },
  19178. dick: {
  19179. height: math.unit(6.19, "feet"),
  19180. name: "Dick",
  19181. image: {
  19182. source: "./media/characters/malfaren/dick.svg"
  19183. }
  19184. },
  19185. eye: {
  19186. height: math.unit(0.69, "feet"),
  19187. name: "Eye",
  19188. image: {
  19189. source: "./media/characters/malfaren/eye.svg"
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Big",
  19196. height: math.unit(283 / 162 * 6, "feet"),
  19197. },
  19198. {
  19199. name: "Bigger",
  19200. height: math.unit(283 / 124 * 6, "feet")
  19201. },
  19202. {
  19203. name: "Massive",
  19204. height: math.unit(283 / 92 * 6, "feet"),
  19205. default: true
  19206. },
  19207. {
  19208. name: "👀💦",
  19209. height: math.unit(283 / 73 * 6, "feet"),
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19215. {
  19216. front: {
  19217. height: math.unit(1.7, "m"),
  19218. weight: math.unit(70, "kg"),
  19219. name: "Front",
  19220. image: {
  19221. source: "./media/characters/kernel/front.svg",
  19222. extra: 222 / 210,
  19223. bottom: 0.007
  19224. }
  19225. },
  19226. },
  19227. [
  19228. {
  19229. name: "Nano",
  19230. height: math.unit(17, "micrometers")
  19231. },
  19232. {
  19233. name: "Micro",
  19234. height: math.unit(1.7, "mm")
  19235. },
  19236. {
  19237. name: "Small",
  19238. height: math.unit(1.7, "cm")
  19239. },
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(1.7, "m"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(1.75, "meters"),
  19252. weight: math.unit(65, "kg"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/jayne-folest/front.svg",
  19256. extra: 2115 / 2007,
  19257. bottom: 0.02
  19258. }
  19259. },
  19260. back: {
  19261. height: math.unit(1.75, "meters"),
  19262. weight: math.unit(65, "kg"),
  19263. name: "Back",
  19264. image: {
  19265. source: "./media/characters/jayne-folest/back.svg",
  19266. extra: 2115 / 2007,
  19267. bottom: 0.005
  19268. }
  19269. },
  19270. frontClothed: {
  19271. height: math.unit(1.75, "meters"),
  19272. weight: math.unit(65, "kg"),
  19273. name: "Front (Clothed)",
  19274. image: {
  19275. source: "./media/characters/jayne-folest/front-clothed.svg",
  19276. extra: 2115 / 2007,
  19277. bottom: 0.035
  19278. }
  19279. },
  19280. hand: {
  19281. height: math.unit(1 / 1.260, "feet"),
  19282. name: "Hand",
  19283. image: {
  19284. source: "./media/characters/jayne-folest/hand.svg"
  19285. }
  19286. },
  19287. foot: {
  19288. height: math.unit(1 / 0.918, "feet"),
  19289. name: "Foot",
  19290. image: {
  19291. source: "./media/characters/jayne-folest/foot.svg"
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Micro",
  19298. height: math.unit(4, "cm")
  19299. },
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(1.75, "meters")
  19303. },
  19304. {
  19305. name: "Macro",
  19306. height: math.unit(47.5, "meters"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(180, "cm"),
  19316. weight: math.unit(70, "kg"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/algier/front.svg",
  19320. extra: 596 / 572,
  19321. bottom: 0.04
  19322. }
  19323. },
  19324. back: {
  19325. height: math.unit(180, "cm"),
  19326. weight: math.unit(70, "kg"),
  19327. name: "Back",
  19328. image: {
  19329. source: "./media/characters/algier/back.svg",
  19330. extra: 596 / 572,
  19331. bottom: 0.025
  19332. }
  19333. },
  19334. frontdressed: {
  19335. height: math.unit(180, "cm"),
  19336. weight: math.unit(150, "kg"),
  19337. name: "Front-dressed",
  19338. image: {
  19339. source: "./media/characters/algier/front-dressed.svg",
  19340. extra: 596 / 572,
  19341. bottom: 0.038
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Micro",
  19348. height: math.unit(5, "cm")
  19349. },
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(180, "cm"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Macro",
  19357. height: math.unit(64, "m")
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19363. {
  19364. upright: {
  19365. height: math.unit(7, "feet"),
  19366. weight: math.unit(300, "lb"),
  19367. name: "Upright",
  19368. image: {
  19369. source: "./media/characters/pretzel/upright.svg",
  19370. extra: 534 / 522,
  19371. bottom: 0.065
  19372. }
  19373. },
  19374. sprawling: {
  19375. height: math.unit(3.75, "feet"),
  19376. weight: math.unit(300, "lb"),
  19377. name: "Sprawling",
  19378. image: {
  19379. source: "./media/characters/pretzel/sprawling.svg",
  19380. extra: 314 / 281,
  19381. bottom: 0.1
  19382. }
  19383. },
  19384. tongue: {
  19385. height: math.unit(2, "feet"),
  19386. name: "Tongue",
  19387. image: {
  19388. source: "./media/characters/pretzel/tongue.svg"
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(7, "feet"),
  19396. default: true
  19397. },
  19398. {
  19399. name: "Oversized",
  19400. height: math.unit(15, "feet")
  19401. },
  19402. {
  19403. name: "Huge",
  19404. height: math.unit(30, "feet")
  19405. },
  19406. {
  19407. name: "Macro",
  19408. height: math.unit(250, "feet")
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19414. {
  19415. sideFront: {
  19416. height: math.unit(5 + 2 / 12, "feet"),
  19417. weight: math.unit(120, "lb"),
  19418. name: "Front Side",
  19419. image: {
  19420. source: "./media/characters/roxi/side-front.svg",
  19421. extra: 2924 / 2717,
  19422. bottom: 0.08
  19423. }
  19424. },
  19425. sideBack: {
  19426. height: math.unit(5 + 2 / 12, "feet"),
  19427. weight: math.unit(120, "lb"),
  19428. name: "Back Side",
  19429. image: {
  19430. source: "./media/characters/roxi/side-back.svg",
  19431. extra: 2904 / 2693,
  19432. bottom: 0.06
  19433. }
  19434. },
  19435. front: {
  19436. height: math.unit(5 + 2 / 12, "feet"),
  19437. weight: math.unit(120, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/roxi/front.svg",
  19441. extra: 2028 / 1907,
  19442. bottom: 0.01
  19443. }
  19444. },
  19445. frontAlt: {
  19446. height: math.unit(5 + 2 / 12, "feet"),
  19447. weight: math.unit(120, "lb"),
  19448. name: "Front (Alt)",
  19449. image: {
  19450. source: "./media/characters/roxi/front-alt.svg",
  19451. extra: 1828 / 1798,
  19452. bottom: 0.01
  19453. }
  19454. },
  19455. sitting: {
  19456. height: math.unit(2.8, "feet"),
  19457. weight: math.unit(120, "lb"),
  19458. name: "Sitting",
  19459. image: {
  19460. source: "./media/characters/roxi/sitting.svg",
  19461. extra: 2660 / 2462,
  19462. bottom: 0.1
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(5 + 2 / 12, "feet"),
  19470. default: true
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19476. {
  19477. side: {
  19478. height: math.unit(55, "feet"),
  19479. weight: math.unit(153, "tons"),
  19480. name: "Side",
  19481. image: {
  19482. source: "./media/characters/shadow/side.svg",
  19483. extra: 701 / 628,
  19484. bottom: 0.02
  19485. }
  19486. },
  19487. flying: {
  19488. height: math.unit(145, "feet"),
  19489. weight: math.unit(153, "tons"),
  19490. name: "Flying",
  19491. image: {
  19492. source: "./media/characters/shadow/flying.svg"
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(55, "feet"),
  19500. default: true
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19506. {
  19507. front: {
  19508. height: math.unit(6, "feet"),
  19509. weight: math.unit(200, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/marcie/front.svg",
  19513. extra: 960 / 876,
  19514. bottom: 58 / 1017.87
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Macro",
  19521. height: math.unit(1, "mile"),
  19522. default: true
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19528. {
  19529. front: {
  19530. height: math.unit(7, "feet"),
  19531. weight: math.unit(200, "lb"),
  19532. name: "Front",
  19533. image: {
  19534. source: "./media/characters/kachina/front.svg",
  19535. extra: 1290.68 / 1119,
  19536. bottom: 36.5 / 1327.18
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(7, "feet"),
  19544. default: true
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19550. {
  19551. looking: {
  19552. height: math.unit(2, "meters"),
  19553. weight: math.unit(300, "kg"),
  19554. name: "Looking",
  19555. image: {
  19556. source: "./media/characters/kash/looking.svg",
  19557. extra: 474 / 344,
  19558. bottom: 0.03
  19559. }
  19560. },
  19561. side: {
  19562. height: math.unit(2, "meters"),
  19563. weight: math.unit(300, "kg"),
  19564. name: "Side",
  19565. image: {
  19566. source: "./media/characters/kash/side.svg",
  19567. extra: 302 / 251,
  19568. bottom: 0.03
  19569. }
  19570. },
  19571. front: {
  19572. height: math.unit(2, "meters"),
  19573. weight: math.unit(300, "kg"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/kash/front.svg",
  19577. extra: 495 / 360,
  19578. bottom: 0.015
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(2, "meters"),
  19586. default: true
  19587. },
  19588. {
  19589. name: "Big",
  19590. height: math.unit(3, "meters")
  19591. },
  19592. {
  19593. name: "Large",
  19594. height: math.unit(5, "meters")
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19600. {
  19601. feeding: {
  19602. height: math.unit(6.7, "feet"),
  19603. weight: math.unit(350, "lb"),
  19604. name: "Feeding",
  19605. image: {
  19606. source: "./media/characters/lalim/feeding.svg",
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(6.7, "feet"),
  19614. default: true
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19620. {
  19621. front: {
  19622. height: math.unit(9.5, "feet"),
  19623. weight: math.unit(600, "lb"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/de'vout/front.svg",
  19627. extra: 1443 / 1328,
  19628. bottom: 0.025
  19629. }
  19630. },
  19631. back: {
  19632. height: math.unit(9.5, "feet"),
  19633. weight: math.unit(600, "lb"),
  19634. name: "Back",
  19635. image: {
  19636. source: "./media/characters/de'vout/back.svg",
  19637. extra: 1443 / 1328
  19638. }
  19639. },
  19640. frontDressed: {
  19641. height: math.unit(9.5, "feet"),
  19642. weight: math.unit(600, "lb"),
  19643. name: "Front (Dressed",
  19644. image: {
  19645. source: "./media/characters/de'vout/front-dressed.svg",
  19646. extra: 1443 / 1328,
  19647. bottom: 0.025
  19648. }
  19649. },
  19650. backDressed: {
  19651. height: math.unit(9.5, "feet"),
  19652. weight: math.unit(600, "lb"),
  19653. name: "Back (Dressed",
  19654. image: {
  19655. source: "./media/characters/de'vout/back-dressed.svg",
  19656. extra: 1443 / 1328
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(9.5, "feet"),
  19664. default: true
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19670. {
  19671. front: {
  19672. height: math.unit(8, "feet"),
  19673. weight: math.unit(225, "lb"),
  19674. name: "Front",
  19675. image: {
  19676. source: "./media/characters/talana/front.svg",
  19677. extra: 1410 / 1300,
  19678. bottom: 0.015
  19679. }
  19680. },
  19681. frontDressed: {
  19682. height: math.unit(8, "feet"),
  19683. weight: math.unit(225, "lb"),
  19684. name: "Front (Dressed",
  19685. image: {
  19686. source: "./media/characters/talana/front-dressed.svg",
  19687. extra: 1410 / 1300,
  19688. bottom: 0.015
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(8, "feet"),
  19696. default: true
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19702. {
  19703. side: {
  19704. height: math.unit(7.2, "feet"),
  19705. weight: math.unit(150, "lb"),
  19706. name: "Side",
  19707. image: {
  19708. source: "./media/characters/xeauvok/side.svg",
  19709. extra: 1975 / 1523,
  19710. bottom: 0.07
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(7.2, "feet"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19724. {
  19725. side: {
  19726. height: math.unit(4, "meters"),
  19727. weight: math.unit(2200, "kg"),
  19728. name: "Side",
  19729. image: {
  19730. source: "./media/characters/zara/side.svg",
  19731. extra: 765/744,
  19732. bottom: 156/921
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(4, "meters"),
  19740. default: true
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19746. {
  19747. side: {
  19748. height: math.unit(6, "feet"),
  19749. weight: math.unit(150, "lb"),
  19750. name: "Side",
  19751. image: {
  19752. source: "./media/characters/richard-dragon/side.svg",
  19753. extra: 845 / 340,
  19754. bottom: 0.017
  19755. }
  19756. },
  19757. maw: {
  19758. height: math.unit(2.97, "feet"),
  19759. name: "Maw",
  19760. image: {
  19761. source: "./media/characters/richard-dragon/maw.svg"
  19762. }
  19763. },
  19764. },
  19765. [
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(4, "feet"),
  19773. weight: math.unit(100, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/richard-smeargle/front.svg",
  19777. extra: 2952 / 2820,
  19778. bottom: 0.028
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(4, "feet"),
  19786. default: true
  19787. },
  19788. {
  19789. name: "Dynamax",
  19790. height: math.unit(20, "meters")
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19796. {
  19797. front: {
  19798. height: math.unit(6, "feet"),
  19799. weight: math.unit(110, "lb"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/klay/front.svg",
  19803. extra: 962 / 883,
  19804. bottom: 0.04
  19805. }
  19806. },
  19807. back: {
  19808. height: math.unit(6, "feet"),
  19809. weight: math.unit(110, "lb"),
  19810. name: "Back",
  19811. image: {
  19812. source: "./media/characters/klay/back.svg",
  19813. extra: 962 / 883
  19814. }
  19815. },
  19816. beans: {
  19817. height: math.unit(1.15, "feet"),
  19818. name: "Beans",
  19819. image: {
  19820. source: "./media/characters/klay/beans.svg"
  19821. }
  19822. },
  19823. },
  19824. [
  19825. {
  19826. name: "Micro",
  19827. height: math.unit(6, "inches")
  19828. },
  19829. {
  19830. name: "Mini",
  19831. height: math.unit(3, "feet")
  19832. },
  19833. {
  19834. name: "Normal",
  19835. height: math.unit(6, "feet"),
  19836. default: true
  19837. },
  19838. {
  19839. name: "Big",
  19840. height: math.unit(25, "feet")
  19841. },
  19842. {
  19843. name: "Macro",
  19844. height: math.unit(100, "feet")
  19845. },
  19846. {
  19847. name: "Megamacro",
  19848. height: math.unit(400, "feet")
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19854. {
  19855. front: {
  19856. height: math.unit(6, "feet"),
  19857. weight: math.unit(160, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/marcus/front.svg",
  19861. extra: 734 / 676,
  19862. bottom: 0.03
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Little",
  19869. height: math.unit(6, "feet")
  19870. },
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(110, "feet"),
  19874. default: true
  19875. },
  19876. {
  19877. name: "Macro",
  19878. height: math.unit(250, "feet")
  19879. },
  19880. {
  19881. name: "Megamacro",
  19882. height: math.unit(1000, "feet")
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19888. {
  19889. front: {
  19890. height: math.unit(7, "feet"),
  19891. weight: math.unit(275, "lb"),
  19892. name: "Front",
  19893. image: {
  19894. source: "./media/characters/claude-delroute/front.svg",
  19895. extra: 902/827,
  19896. bottom: 26/928
  19897. }
  19898. },
  19899. side: {
  19900. height: math.unit(7, "feet"),
  19901. weight: math.unit(275, "lb"),
  19902. name: "Side",
  19903. image: {
  19904. source: "./media/characters/claude-delroute/side.svg",
  19905. extra: 908/853,
  19906. bottom: 16/924
  19907. }
  19908. },
  19909. back: {
  19910. height: math.unit(7, "feet"),
  19911. weight: math.unit(275, "lb"),
  19912. name: "Back",
  19913. image: {
  19914. source: "./media/characters/claude-delroute/back.svg",
  19915. extra: 911/829,
  19916. bottom: 18/929
  19917. }
  19918. },
  19919. maw: {
  19920. height: math.unit(0.6407, "meters"),
  19921. name: "Maw",
  19922. image: {
  19923. source: "./media/characters/claude-delroute/maw.svg"
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(7, "feet"),
  19931. default: true
  19932. },
  19933. {
  19934. name: "Lorge",
  19935. height: math.unit(20, "feet")
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(8 + 4 / 12, "feet"),
  19944. weight: math.unit(600, "lb"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/dragonien/front.svg",
  19948. extra: 100 / 94,
  19949. bottom: 3.3 / 103.3445
  19950. }
  19951. },
  19952. back: {
  19953. height: math.unit(8 + 4 / 12, "feet"),
  19954. weight: math.unit(600, "lb"),
  19955. name: "Back",
  19956. image: {
  19957. source: "./media/characters/dragonien/back.svg",
  19958. extra: 776 / 746,
  19959. bottom: 6.4 / 782.0616
  19960. }
  19961. },
  19962. foot: {
  19963. height: math.unit(1.54, "feet"),
  19964. name: "Foot",
  19965. image: {
  19966. source: "./media/characters/dragonien/foot.svg",
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(8 + 4 / 12, "feet"),
  19974. default: true
  19975. },
  19976. {
  19977. name: "Macro",
  19978. height: math.unit(200, "feet")
  19979. },
  19980. {
  19981. name: "Megamacro",
  19982. height: math.unit(1, "mile")
  19983. },
  19984. {
  19985. name: "Gigamacro",
  19986. height: math.unit(1000, "miles")
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(5 + 2 / 12, "feet"),
  19995. weight: math.unit(110, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/desta/front.svg",
  19999. extra: 767 / 726,
  20000. bottom: 11.7 / 779
  20001. }
  20002. },
  20003. back: {
  20004. height: math.unit(5 + 2 / 12, "feet"),
  20005. weight: math.unit(110, "lb"),
  20006. name: "Back",
  20007. image: {
  20008. source: "./media/characters/desta/back.svg",
  20009. extra: 777 / 728,
  20010. bottom: 6 / 784
  20011. }
  20012. },
  20013. frontAlt: {
  20014. height: math.unit(5 + 2 / 12, "feet"),
  20015. weight: math.unit(110, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/desta/front-alt.svg",
  20019. extra: 1482 / 1417
  20020. }
  20021. },
  20022. side: {
  20023. height: math.unit(5 + 2 / 12, "feet"),
  20024. weight: math.unit(110, "lb"),
  20025. name: "Side",
  20026. image: {
  20027. source: "./media/characters/desta/side.svg",
  20028. extra: 2579 / 2491,
  20029. bottom: 0.053
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Micro",
  20036. height: math.unit(6, "inches")
  20037. },
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(5 + 2 / 12, "feet"),
  20041. default: true
  20042. },
  20043. {
  20044. name: "Macro",
  20045. height: math.unit(62, "feet")
  20046. },
  20047. {
  20048. name: "Megamacro",
  20049. height: math.unit(1800, "feet")
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20055. {
  20056. front: {
  20057. height: math.unit(10, "feet"),
  20058. weight: math.unit(700, "lb"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/storm-alystar/front.svg",
  20062. extra: 2112 / 1898,
  20063. bottom: 0.034
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Micro",
  20070. height: math.unit(3.5, "inches")
  20071. },
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(10, "feet"),
  20075. default: true
  20076. },
  20077. {
  20078. name: "Macro",
  20079. height: math.unit(400, "feet")
  20080. },
  20081. {
  20082. name: "Deific",
  20083. height: math.unit(60, "miles")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(2.35, "meters"),
  20092. weight: math.unit(119, "kg"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/ilia/front.svg",
  20096. extra: 1285 / 1255,
  20097. bottom: 0.06
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(2.35, "meters")
  20105. },
  20106. {
  20107. name: "Macro",
  20108. height: math.unit(140, "meters"),
  20109. default: true
  20110. },
  20111. {
  20112. name: "Megamacro",
  20113. height: math.unit(100, "miles")
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(6 + 5 / 12, "feet"),
  20122. weight: math.unit(190, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/kingdead/front.svg",
  20126. extra: 1228 / 1177
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Micro",
  20133. height: math.unit(7, "inches")
  20134. },
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(6 + 5 / 12, "feet")
  20138. },
  20139. {
  20140. name: "Macro",
  20141. height: math.unit(150, "feet"),
  20142. default: true
  20143. },
  20144. {
  20145. name: "Megamacro",
  20146. height: math.unit(200, "miles")
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20152. {
  20153. front: {
  20154. height: math.unit(8, "feet"),
  20155. weight: math.unit(600, "lb"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/kyrehx/front.svg",
  20159. extra: 1195 / 1095,
  20160. bottom: 0.034
  20161. }
  20162. },
  20163. },
  20164. [
  20165. {
  20166. name: "Micro",
  20167. height: math.unit(2, "inches")
  20168. },
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(8, "feet"),
  20172. default: true
  20173. },
  20174. {
  20175. name: "Macro",
  20176. height: math.unit(255, "feet")
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20182. {
  20183. front: {
  20184. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20185. weight: math.unit(184, "lb"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/xang/front.svg",
  20189. extra: 845 / 755
  20190. }
  20191. },
  20192. },
  20193. [
  20194. {
  20195. name: "Normal",
  20196. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20197. default: true
  20198. },
  20199. {
  20200. name: "Macro",
  20201. height: math.unit(0.935 * 146, "feet")
  20202. },
  20203. {
  20204. name: "Megamacro",
  20205. height: math.unit(0.935 * 3, "miles")
  20206. },
  20207. ]
  20208. ))
  20209. characterMakers.push(() => makeCharacter(
  20210. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20211. {
  20212. frontDressed: {
  20213. height: math.unit(5 + 7 / 12, "feet"),
  20214. weight: math.unit(140, "lb"),
  20215. name: "Front (Dressed)",
  20216. image: {
  20217. source: "./media/characters/doc-weardno/front-dressed.svg",
  20218. extra: 263 / 234
  20219. }
  20220. },
  20221. backDressed: {
  20222. height: math.unit(5 + 7 / 12, "feet"),
  20223. weight: math.unit(140, "lb"),
  20224. name: "Back (Dressed)",
  20225. image: {
  20226. source: "./media/characters/doc-weardno/back-dressed.svg",
  20227. extra: 266 / 238
  20228. }
  20229. },
  20230. front: {
  20231. height: math.unit(5 + 7 / 12, "feet"),
  20232. weight: math.unit(140, "lb"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/doc-weardno/front.svg",
  20236. extra: 254 / 233
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Micro",
  20243. height: math.unit(3, "inches")
  20244. },
  20245. {
  20246. name: "Normal",
  20247. height: math.unit(5 + 7 / 12, "feet"),
  20248. default: true
  20249. },
  20250. {
  20251. name: "Macro",
  20252. height: math.unit(25, "feet")
  20253. },
  20254. {
  20255. name: "Megamacro",
  20256. height: math.unit(2, "miles")
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20262. {
  20263. front: {
  20264. height: math.unit(6 + 2 / 12, "feet"),
  20265. weight: math.unit(153, "lb"),
  20266. name: "Front",
  20267. image: {
  20268. source: "./media/characters/seth-whilst/front.svg",
  20269. bottom: 0.07
  20270. }
  20271. },
  20272. },
  20273. [
  20274. {
  20275. name: "Micro",
  20276. height: math.unit(5, "inches")
  20277. },
  20278. {
  20279. name: "Normal",
  20280. height: math.unit(6 + 2 / 12, "feet"),
  20281. default: true
  20282. },
  20283. ]
  20284. ))
  20285. characterMakers.push(() => makeCharacter(
  20286. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20287. {
  20288. front: {
  20289. height: math.unit(3, "inches"),
  20290. weight: math.unit(8, "grams"),
  20291. name: "Front",
  20292. image: {
  20293. source: "./media/characters/pocket-jabari/front.svg",
  20294. extra: 1024 / 974,
  20295. bottom: 0.039
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Minimicro",
  20302. height: math.unit(8, "mm")
  20303. },
  20304. {
  20305. name: "Micro",
  20306. height: math.unit(3, "inches"),
  20307. default: true
  20308. },
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(3, "feet")
  20312. },
  20313. ]
  20314. ))
  20315. characterMakers.push(() => makeCharacter(
  20316. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20317. {
  20318. frontDressed: {
  20319. height: math.unit(15, "feet"),
  20320. weight: math.unit(3280, "lb"),
  20321. name: "Front (Dressed)",
  20322. image: {
  20323. source: "./media/characters/sapphy/front-dressed.svg",
  20324. extra: 1951/1654,
  20325. bottom: 194/2145
  20326. },
  20327. form: "anthro",
  20328. default: true
  20329. },
  20330. backDressed: {
  20331. height: math.unit(15, "feet"),
  20332. weight: math.unit(3280, "lb"),
  20333. name: "Back (Dressed)",
  20334. image: {
  20335. source: "./media/characters/sapphy/back-dressed.svg",
  20336. extra: 2058/1918,
  20337. bottom: 125/2183
  20338. },
  20339. form: "anthro"
  20340. },
  20341. frontNude: {
  20342. height: math.unit(15, "feet"),
  20343. weight: math.unit(3280, "lb"),
  20344. name: "Front (Nude)",
  20345. image: {
  20346. source: "./media/characters/sapphy/front-nude.svg",
  20347. extra: 1951/1654,
  20348. bottom: 194/2145
  20349. },
  20350. form: "anthro"
  20351. },
  20352. backNude: {
  20353. height: math.unit(15, "feet"),
  20354. weight: math.unit(3280, "lb"),
  20355. name: "Back (Nude)",
  20356. image: {
  20357. source: "./media/characters/sapphy/back-nude.svg",
  20358. extra: 2058/1918,
  20359. bottom: 125/2183
  20360. },
  20361. form: "anthro"
  20362. },
  20363. full: {
  20364. height: math.unit(15, "feet"),
  20365. weight: math.unit(3280, "lb"),
  20366. name: "Full",
  20367. image: {
  20368. source: "./media/characters/sapphy/full.svg",
  20369. extra: 1396/1317,
  20370. bottom: 44/1440
  20371. },
  20372. form: "anthro"
  20373. },
  20374. dick: {
  20375. height: math.unit(3.8, "feet"),
  20376. name: "Dick",
  20377. image: {
  20378. source: "./media/characters/sapphy/dick.svg"
  20379. },
  20380. form: "anthro"
  20381. },
  20382. feral: {
  20383. height: math.unit(35, "feet"),
  20384. weight: math.unit(160, "tons"),
  20385. name: "Feral",
  20386. image: {
  20387. source: "./media/characters/sapphy/feral.svg",
  20388. extra: 1050/573,
  20389. bottom: 60/1110
  20390. },
  20391. form: "feral",
  20392. default: true
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(15, "feet"),
  20399. form: "anthro"
  20400. },
  20401. {
  20402. name: "Casual Macro",
  20403. height: math.unit(120, "feet"),
  20404. form: "anthro"
  20405. },
  20406. {
  20407. name: "Macro",
  20408. height: math.unit(2150, "feet"),
  20409. default: true,
  20410. form: "anthro"
  20411. },
  20412. {
  20413. name: "Megamacro",
  20414. height: math.unit(8, "miles"),
  20415. form: "anthro"
  20416. },
  20417. {
  20418. name: "Galaxy Mom",
  20419. height: math.unit(6, "megalightyears"),
  20420. form: "anthro"
  20421. },
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(35, "feet"),
  20425. form: "feral",
  20426. default: true
  20427. },
  20428. {
  20429. name: "Macro",
  20430. height: math.unit(300, "feet"),
  20431. form: "feral"
  20432. },
  20433. {
  20434. name: "Galaxy Mom",
  20435. height: math.unit(10, "megalightyears"),
  20436. form: "feral"
  20437. },
  20438. ],
  20439. {
  20440. "anthro": {
  20441. name: "Anthro",
  20442. default: true
  20443. },
  20444. "feral": {
  20445. name: "Feral"
  20446. }
  20447. }
  20448. ))
  20449. characterMakers.push(() => makeCharacter(
  20450. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20451. {
  20452. hyenaFront: {
  20453. height: math.unit(6, "feet"),
  20454. weight: math.unit(190, "lb"),
  20455. name: "Front",
  20456. image: {
  20457. source: "./media/characters/kiro/hyena-front.svg",
  20458. extra: 927/839,
  20459. bottom: 91/1018
  20460. },
  20461. form: "hyena",
  20462. default: true
  20463. },
  20464. front: {
  20465. height: math.unit(6, "feet"),
  20466. weight: math.unit(170, "lb"),
  20467. name: "Front",
  20468. image: {
  20469. source: "./media/characters/kiro/front.svg",
  20470. extra: 1064 / 1012,
  20471. bottom: 0.052
  20472. },
  20473. form: "folf",
  20474. default: true
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Micro",
  20480. height: math.unit(6, "inches"),
  20481. form: "folf"
  20482. },
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(6, "feet"),
  20486. form: "folf",
  20487. default: true
  20488. },
  20489. {
  20490. name: "Macro",
  20491. height: math.unit(72, "feet"),
  20492. form: "folf"
  20493. },
  20494. {
  20495. name: "Micro",
  20496. height: math.unit(6, "inches"),
  20497. form: "hyena"
  20498. },
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(6, "feet"),
  20502. form: "hyena",
  20503. default: true
  20504. },
  20505. {
  20506. name: "Macro",
  20507. height: math.unit(72, "feet"),
  20508. form: "hyena"
  20509. },
  20510. ],
  20511. {
  20512. "hyena": {
  20513. name: "Hyena",
  20514. default: true
  20515. },
  20516. "folf": {
  20517. name: "Folf",
  20518. },
  20519. }
  20520. ))
  20521. characterMakers.push(() => makeCharacter(
  20522. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20523. {
  20524. front: {
  20525. height: math.unit(5 + 9 / 12, "feet"),
  20526. weight: math.unit(175, "lb"),
  20527. name: "Front",
  20528. image: {
  20529. source: "./media/characters/irishfox/front.svg",
  20530. extra: 1912 / 1680,
  20531. bottom: 0.02
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Nano",
  20538. height: math.unit(1, "mm")
  20539. },
  20540. {
  20541. name: "Micro",
  20542. height: math.unit(2, "inches")
  20543. },
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(5 + 9 / 12, "feet"),
  20547. default: true
  20548. },
  20549. {
  20550. name: "Macro",
  20551. height: math.unit(45, "feet")
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(6 + 1 / 12, "feet"),
  20560. weight: math.unit(75, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/aronai-sieyes/front.svg",
  20564. extra: 1532/1450,
  20565. bottom: 42/1574
  20566. }
  20567. },
  20568. side: {
  20569. height: math.unit(6 + 1 / 12, "feet"),
  20570. weight: math.unit(75, "lb"),
  20571. name: "Side",
  20572. image: {
  20573. source: "./media/characters/aronai-sieyes/side.svg",
  20574. extra: 1422/1365,
  20575. bottom: 148/1570
  20576. }
  20577. },
  20578. back: {
  20579. height: math.unit(6 + 1 / 12, "feet"),
  20580. weight: math.unit(75, "lb"),
  20581. name: "Back",
  20582. image: {
  20583. source: "./media/characters/aronai-sieyes/back.svg",
  20584. extra: 1526/1464,
  20585. bottom: 51/1577
  20586. }
  20587. },
  20588. dressed: {
  20589. height: math.unit(6 + 1 / 12, "feet"),
  20590. weight: math.unit(75, "lb"),
  20591. name: "Dressed",
  20592. image: {
  20593. source: "./media/characters/aronai-sieyes/dressed.svg",
  20594. extra: 1559/1483,
  20595. bottom: 39/1598
  20596. }
  20597. },
  20598. slit: {
  20599. height: math.unit(1.3, "feet"),
  20600. name: "Slit",
  20601. image: {
  20602. source: "./media/characters/aronai-sieyes/slit.svg"
  20603. }
  20604. },
  20605. slitSpread: {
  20606. height: math.unit(0.9, "feet"),
  20607. name: "Slit (Spread)",
  20608. image: {
  20609. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20610. }
  20611. },
  20612. rump: {
  20613. height: math.unit(1.3, "feet"),
  20614. name: "Rump",
  20615. image: {
  20616. source: "./media/characters/aronai-sieyes/rump.svg"
  20617. }
  20618. },
  20619. maw: {
  20620. height: math.unit(1.25, "feet"),
  20621. name: "Maw",
  20622. image: {
  20623. source: "./media/characters/aronai-sieyes/maw.svg"
  20624. }
  20625. },
  20626. feral: {
  20627. height: math.unit(18, "feet"),
  20628. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20629. name: "Feral",
  20630. image: {
  20631. source: "./media/characters/aronai-sieyes/feral.svg",
  20632. extra: 1530 / 1240,
  20633. bottom: 0.035
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Micro",
  20640. height: math.unit(2, "inches")
  20641. },
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(6 + 1 / 12, "feet"),
  20645. default: true
  20646. }
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(12, "feet"),
  20654. weight: math.unit(410, "kg"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/xuna/front.svg",
  20658. extra: 2184 / 1980
  20659. }
  20660. },
  20661. side: {
  20662. height: math.unit(12, "feet"),
  20663. weight: math.unit(410, "kg"),
  20664. name: "Side",
  20665. image: {
  20666. source: "./media/characters/xuna/side.svg",
  20667. extra: 2184 / 1980
  20668. }
  20669. },
  20670. back: {
  20671. height: math.unit(12, "feet"),
  20672. weight: math.unit(410, "kg"),
  20673. name: "Back",
  20674. image: {
  20675. source: "./media/characters/xuna/back.svg",
  20676. extra: 2184 / 1980
  20677. }
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Nano glow",
  20683. height: math.unit(10, "nm")
  20684. },
  20685. {
  20686. name: "Micro floof",
  20687. height: math.unit(0.3, "m")
  20688. },
  20689. {
  20690. name: "Huggable softy boi",
  20691. height: math.unit(3.6576, "m"),
  20692. default: true
  20693. },
  20694. {
  20695. name: "Admirable floof",
  20696. height: math.unit(80, "meters")
  20697. },
  20698. {
  20699. name: "Gentle macro",
  20700. height: math.unit(300, "meters")
  20701. },
  20702. {
  20703. name: "Very careful floof",
  20704. height: math.unit(3200, "meters")
  20705. },
  20706. {
  20707. name: "The mega floof",
  20708. height: math.unit(36000, "meters")
  20709. },
  20710. {
  20711. name: "Giga-fur-Wicker",
  20712. height: math.unit(4800000, "meters")
  20713. },
  20714. {
  20715. name: "Licky world",
  20716. height: math.unit(20000000, "meters")
  20717. },
  20718. {
  20719. name: "Floofy cyan sun",
  20720. height: math.unit(1500000000, "meters")
  20721. },
  20722. {
  20723. name: "Milky Wicker",
  20724. height: math.unit(1000000000000000000000, "meters")
  20725. },
  20726. {
  20727. name: "The observing Wicker",
  20728. height: math.unit(999999999999999999999999999, "meters")
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20734. {
  20735. front: {
  20736. height: math.unit(5 + 9 / 12, "feet"),
  20737. weight: math.unit(150, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/arokha-sieyes/front.svg",
  20741. extra: 1425 / 1284,
  20742. bottom: 0.05
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(5 + 9 / 12, "feet")
  20750. },
  20751. {
  20752. name: "Macro",
  20753. height: math.unit(30, "meters"),
  20754. default: true
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20760. {
  20761. front: {
  20762. height: math.unit(6, "feet"),
  20763. weight: math.unit(180, "lb"),
  20764. name: "Front",
  20765. image: {
  20766. source: "./media/characters/arokh-sieyes/front.svg",
  20767. extra: 1830 / 1769,
  20768. bottom: 0.01
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(6, "feet")
  20776. },
  20777. {
  20778. name: "Macro",
  20779. height: math.unit(30, "meters"),
  20780. default: true
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20786. {
  20787. side: {
  20788. height: math.unit(13 + 1 / 12, "feet"),
  20789. weight: math.unit(8.5, "tonnes"),
  20790. preyCapacity: math.unit(36, "people"),
  20791. name: "Side",
  20792. image: {
  20793. source: "./media/characters/goldeneye/side.svg",
  20794. extra: 1139/741,
  20795. bottom: 98/1237
  20796. }
  20797. },
  20798. front: {
  20799. height: math.unit(5.1, "feet"),
  20800. weight: math.unit(8.5, "tonnes"),
  20801. preyCapacity: math.unit(36, "people"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/goldeneye/front.svg",
  20805. extra: 635/365,
  20806. bottom: 598/1233
  20807. }
  20808. },
  20809. maw: {
  20810. height: math.unit(6.6, "feet"),
  20811. name: "Maw",
  20812. image: {
  20813. source: "./media/characters/goldeneye/maw.svg"
  20814. }
  20815. },
  20816. headFront: {
  20817. height: math.unit(8, "feet"),
  20818. name: "Head (Front)",
  20819. image: {
  20820. source: "./media/characters/goldeneye/head-front.svg"
  20821. }
  20822. },
  20823. headSide: {
  20824. height: math.unit(6, "feet"),
  20825. name: "Head (Side)",
  20826. image: {
  20827. source: "./media/characters/goldeneye/head-side.svg"
  20828. }
  20829. },
  20830. headBack: {
  20831. height: math.unit(8, "feet"),
  20832. name: "Head (Back)",
  20833. image: {
  20834. source: "./media/characters/goldeneye/head-back.svg"
  20835. }
  20836. },
  20837. paw: {
  20838. height: math.unit(3.4, "feet"),
  20839. name: "Paw",
  20840. image: {
  20841. source: "./media/characters/goldeneye/paw.svg"
  20842. }
  20843. },
  20844. toering: {
  20845. height: math.unit(0.45, "feet"),
  20846. name: "Toering",
  20847. image: {
  20848. source: "./media/characters/goldeneye/toering.svg"
  20849. }
  20850. },
  20851. eyes: {
  20852. height: math.unit(0.5, "feet"),
  20853. name: "Eyes",
  20854. image: {
  20855. source: "./media/characters/goldeneye/eyes.svg"
  20856. }
  20857. },
  20858. },
  20859. [
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(13 + 1 / 12, "feet"),
  20863. default: true
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20869. {
  20870. front: {
  20871. height: math.unit(6 + 1 / 12, "feet"),
  20872. weight: math.unit(210, "lb"),
  20873. name: "Front",
  20874. image: {
  20875. source: "./media/characters/leonardo-lycheborne/front.svg",
  20876. extra: 776/723,
  20877. bottom: 34/810
  20878. }
  20879. },
  20880. side: {
  20881. height: math.unit(6 + 1 / 12, "feet"),
  20882. weight: math.unit(210, "lb"),
  20883. name: "Side",
  20884. image: {
  20885. source: "./media/characters/leonardo-lycheborne/side.svg",
  20886. extra: 780/728,
  20887. bottom: 12/792
  20888. }
  20889. },
  20890. back: {
  20891. height: math.unit(6 + 1 / 12, "feet"),
  20892. weight: math.unit(210, "lb"),
  20893. name: "Back",
  20894. image: {
  20895. source: "./media/characters/leonardo-lycheborne/back.svg",
  20896. extra: 775/721,
  20897. bottom: 17/792
  20898. }
  20899. },
  20900. hand: {
  20901. height: math.unit(1.08, "feet"),
  20902. name: "Hand",
  20903. image: {
  20904. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20905. }
  20906. },
  20907. foot: {
  20908. height: math.unit(1.32, "feet"),
  20909. name: "Foot",
  20910. image: {
  20911. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20912. }
  20913. },
  20914. maw: {
  20915. height: math.unit(1, "feet"),
  20916. name: "Maw",
  20917. image: {
  20918. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20919. }
  20920. },
  20921. were: {
  20922. height: math.unit(20, "feet"),
  20923. weight: math.unit(7800, "lb"),
  20924. name: "Were",
  20925. image: {
  20926. source: "./media/characters/leonardo-lycheborne/were.svg",
  20927. extra: 1224/1165,
  20928. bottom: 72/1296
  20929. }
  20930. },
  20931. feral: {
  20932. height: math.unit(7.5, "feet"),
  20933. weight: math.unit(600, "lb"),
  20934. name: "Feral",
  20935. image: {
  20936. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20937. extra: 797/702,
  20938. bottom: 139/936
  20939. }
  20940. },
  20941. taur: {
  20942. height: math.unit(11, "feet"),
  20943. weight: math.unit(3300, "lb"),
  20944. name: "Taur",
  20945. image: {
  20946. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20947. extra: 1271/1197,
  20948. bottom: 47/1318
  20949. }
  20950. },
  20951. barghest: {
  20952. height: math.unit(11, "feet"),
  20953. weight: math.unit(1300, "lb"),
  20954. name: "Barghest",
  20955. image: {
  20956. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20957. extra: 1291/1204,
  20958. bottom: 37/1328
  20959. }
  20960. },
  20961. dick: {
  20962. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20963. name: "Dick",
  20964. image: {
  20965. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20966. }
  20967. },
  20968. dickWere: {
  20969. height: math.unit((20) / 3.8, "feet"),
  20970. name: "Dick (Were)",
  20971. image: {
  20972. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(6 + 1 / 12, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(10, "feet"),
  20989. weight: math.unit(350, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/jet/front.svg",
  20993. extra: 2050 / 1980,
  20994. bottom: 0.013
  20995. }
  20996. },
  20997. back: {
  20998. height: math.unit(10, "feet"),
  20999. weight: math.unit(350, "lb"),
  21000. name: "Back",
  21001. image: {
  21002. source: "./media/characters/jet/back.svg",
  21003. extra: 2050 / 1980,
  21004. bottom: 0.013
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Micro",
  21011. height: math.unit(6, "inches")
  21012. },
  21013. {
  21014. name: "Normal",
  21015. height: math.unit(10, "feet"),
  21016. default: true
  21017. },
  21018. {
  21019. name: "Macro",
  21020. height: math.unit(100, "feet")
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21026. {
  21027. front: {
  21028. height: math.unit(15, "feet"),
  21029. weight: math.unit(2800, "lb"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/tanarath/front.svg",
  21033. extra: 2392 / 2220,
  21034. bottom: 0.03
  21035. }
  21036. },
  21037. back: {
  21038. height: math.unit(15, "feet"),
  21039. weight: math.unit(2800, "lb"),
  21040. name: "Back",
  21041. image: {
  21042. source: "./media/characters/tanarath/back.svg",
  21043. extra: 2392 / 2220,
  21044. bottom: 0.03
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(15, "feet"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(7 + 1 / 12, "feet"),
  21061. weight: math.unit(175, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/patty-cattybatty/front.svg",
  21065. extra: 908 / 874,
  21066. bottom: 0.025
  21067. }
  21068. },
  21069. },
  21070. [
  21071. {
  21072. name: "Micro",
  21073. height: math.unit(1, "inch")
  21074. },
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(7 + 1 / 12, "feet")
  21078. },
  21079. {
  21080. name: "Mini Macro",
  21081. height: math.unit(155, "feet")
  21082. },
  21083. {
  21084. name: "Macro",
  21085. height: math.unit(1077, "feet")
  21086. },
  21087. {
  21088. name: "Mega Macro",
  21089. height: math.unit(47650, "feet"),
  21090. default: true
  21091. },
  21092. {
  21093. name: "Giga Macro",
  21094. height: math.unit(440, "miles")
  21095. },
  21096. {
  21097. name: "Tera Macro",
  21098. height: math.unit(8700, "miles")
  21099. },
  21100. {
  21101. name: "Planetary Macro",
  21102. height: math.unit(32700, "miles")
  21103. },
  21104. {
  21105. name: "Solar Macro",
  21106. height: math.unit(550000, "miles")
  21107. },
  21108. {
  21109. name: "Celestial Macro",
  21110. height: math.unit(2.5, "AU")
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(4 + 5 / 12, "feet"),
  21119. weight: math.unit(90, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/cappu/front.svg",
  21123. extra: 1247 / 1152,
  21124. bottom: 0.012
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(4 + 5 / 12, "feet"),
  21132. default: true
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21138. {
  21139. frontDressed: {
  21140. height: math.unit(70, "cm"),
  21141. weight: math.unit(6, "kg"),
  21142. name: "Front (Dressed)",
  21143. image: {
  21144. source: "./media/characters/sebi/front-dressed.svg",
  21145. extra: 713.5 / 686.5,
  21146. bottom: 0.003
  21147. }
  21148. },
  21149. front: {
  21150. height: math.unit(70, "cm"),
  21151. weight: math.unit(5, "kg"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/sebi/front.svg",
  21155. extra: 713.5 / 686.5,
  21156. bottom: 0.003
  21157. }
  21158. }
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(70, "cm"),
  21164. default: true
  21165. },
  21166. {
  21167. name: "Macro",
  21168. height: math.unit(8, "meters")
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(6, "feet"),
  21177. weight: math.unit(150, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/typhek/front.svg",
  21181. extra: 1948 / 1929,
  21182. bottom: 0.025
  21183. }
  21184. },
  21185. side: {
  21186. height: math.unit(6, "feet"),
  21187. weight: math.unit(150, "lb"),
  21188. name: "Side",
  21189. image: {
  21190. source: "./media/characters/typhek/side.svg",
  21191. extra: 2034 / 2010,
  21192. bottom: 0.003
  21193. }
  21194. },
  21195. back: {
  21196. height: math.unit(6, "feet"),
  21197. weight: math.unit(150, "lb"),
  21198. name: "Back",
  21199. image: {
  21200. source: "./media/characters/typhek/back.svg",
  21201. extra: 2005 / 1978,
  21202. bottom: 0.004
  21203. }
  21204. },
  21205. palm: {
  21206. height: math.unit(1.2, "feet"),
  21207. name: "Palm",
  21208. image: {
  21209. source: "./media/characters/typhek/palm.svg"
  21210. }
  21211. },
  21212. fist: {
  21213. height: math.unit(1.1, "feet"),
  21214. name: "Fist",
  21215. image: {
  21216. source: "./media/characters/typhek/fist.svg"
  21217. }
  21218. },
  21219. foot: {
  21220. height: math.unit(1.57, "feet"),
  21221. name: "Foot",
  21222. image: {
  21223. source: "./media/characters/typhek/foot.svg"
  21224. }
  21225. },
  21226. sole: {
  21227. height: math.unit(2.05, "feet"),
  21228. name: "Sole",
  21229. image: {
  21230. source: "./media/characters/typhek/sole.svg"
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Macro",
  21237. height: math.unit(40, "stories"),
  21238. default: true
  21239. },
  21240. {
  21241. name: "Megamacro",
  21242. height: math.unit(1, "mile")
  21243. },
  21244. {
  21245. name: "Gigamacro",
  21246. height: math.unit(4000, "solarradii")
  21247. },
  21248. {
  21249. name: "Universal",
  21250. height: math.unit(1.1, "universes")
  21251. }
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21256. {
  21257. side: {
  21258. height: math.unit(5 + 7 / 12, "feet"),
  21259. weight: math.unit(150, "lb"),
  21260. name: "Side",
  21261. image: {
  21262. source: "./media/characters/kassy/side.svg",
  21263. extra: 1280 / 1225,
  21264. bottom: 0.002
  21265. }
  21266. },
  21267. front: {
  21268. height: math.unit(5 + 7 / 12, "feet"),
  21269. weight: math.unit(150, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/kassy/front.svg",
  21273. extra: 1280 / 1225,
  21274. bottom: 0.025
  21275. }
  21276. },
  21277. back: {
  21278. height: math.unit(5 + 7 / 12, "feet"),
  21279. weight: math.unit(150, "lb"),
  21280. name: "Back",
  21281. image: {
  21282. source: "./media/characters/kassy/back.svg",
  21283. extra: 1280 / 1225,
  21284. bottom: 0.002
  21285. }
  21286. },
  21287. foot: {
  21288. height: math.unit(1.266, "feet"),
  21289. name: "Foot",
  21290. image: {
  21291. source: "./media/characters/kassy/foot.svg"
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(5 + 7 / 12, "feet")
  21299. },
  21300. {
  21301. name: "Macro",
  21302. height: math.unit(137, "feet"),
  21303. default: true
  21304. },
  21305. {
  21306. name: "Megamacro",
  21307. height: math.unit(1, "mile")
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21313. {
  21314. front: {
  21315. height: math.unit(6 + 1 / 12, "feet"),
  21316. weight: math.unit(200, "lb"),
  21317. name: "Front",
  21318. image: {
  21319. source: "./media/characters/neil/front.svg",
  21320. extra: 1326 / 1250,
  21321. bottom: 0.023
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(6 + 1 / 12, "feet"),
  21329. default: true
  21330. },
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(200, "feet")
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21339. {
  21340. front: {
  21341. height: math.unit(5 + 9 / 12, "feet"),
  21342. weight: math.unit(190, "lb"),
  21343. name: "Front",
  21344. image: {
  21345. source: "./media/characters/atticus/front.svg",
  21346. extra: 2934 / 2785,
  21347. bottom: 0.025
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(5 + 9 / 12, "feet"),
  21355. default: true
  21356. },
  21357. {
  21358. name: "Macro",
  21359. height: math.unit(180, "feet")
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21365. {
  21366. side: {
  21367. height: math.unit(9, "feet"),
  21368. weight: math.unit(650, "lb"),
  21369. name: "Side",
  21370. image: {
  21371. source: "./media/characters/milo/side.svg",
  21372. extra: 2644 / 2310,
  21373. bottom: 0.032
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(9, "feet"),
  21381. default: true
  21382. },
  21383. {
  21384. name: "Macro",
  21385. height: math.unit(300, "feet")
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21391. {
  21392. side: {
  21393. height: math.unit(8, "meters"),
  21394. weight: math.unit(90000, "kg"),
  21395. name: "Side",
  21396. image: {
  21397. source: "./media/characters/ijzer/side.svg",
  21398. extra: 2756 / 1600,
  21399. bottom: 0.01
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Small",
  21406. height: math.unit(3, "meters")
  21407. },
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(8, "meters"),
  21411. default: true
  21412. },
  21413. {
  21414. name: "Normal+",
  21415. height: math.unit(10, "meters")
  21416. },
  21417. {
  21418. name: "Bigger",
  21419. height: math.unit(24, "meters")
  21420. },
  21421. {
  21422. name: "Huge",
  21423. height: math.unit(80, "meters")
  21424. },
  21425. ]
  21426. ))
  21427. characterMakers.push(() => makeCharacter(
  21428. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21429. {
  21430. front: {
  21431. height: math.unit(6 + 2 / 12, "feet"),
  21432. weight: math.unit(153, "lb"),
  21433. name: "Front",
  21434. image: {
  21435. source: "./media/characters/luca-cervicum/front.svg",
  21436. extra: 370 / 327,
  21437. bottom: 0.015
  21438. }
  21439. },
  21440. back: {
  21441. height: math.unit(6 + 2 / 12, "feet"),
  21442. weight: math.unit(153, "lb"),
  21443. name: "Back",
  21444. image: {
  21445. source: "./media/characters/luca-cervicum/back.svg",
  21446. extra: 367 / 333,
  21447. bottom: 0.005
  21448. }
  21449. },
  21450. frontGear: {
  21451. height: math.unit(6 + 2 / 12, "feet"),
  21452. weight: math.unit(173, "lb"),
  21453. name: "Front (Gear)",
  21454. image: {
  21455. source: "./media/characters/luca-cervicum/front-gear.svg",
  21456. extra: 377 / 333,
  21457. bottom: 0.006
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(6 + 2 / 12, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(6 + 1 / 12, "feet"),
  21474. weight: math.unit(304, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/oliver/front.svg",
  21478. extra: 157 / 143,
  21479. bottom: 0.08
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(6 + 1 / 12, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(5 + 7 / 12, "feet"),
  21496. weight: math.unit(140, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/shane/front.svg",
  21500. extra: 304 / 289,
  21501. bottom: 0.005
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(5 + 7 / 12, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(5 + 9 / 12, "feet"),
  21518. weight: math.unit(178, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/shin/front.svg",
  21522. extra: 159 / 151,
  21523. bottom: 0.015
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(5 + 9 / 12, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(5 + 10 / 12, "feet"),
  21540. weight: math.unit(168, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/xerxes/front.svg",
  21544. extra: 282 / 260,
  21545. bottom: 0.045
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(5 + 10 / 12, "feet"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21559. {
  21560. front: {
  21561. height: math.unit(6 + 7 / 12, "feet"),
  21562. weight: math.unit(208, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/chaska/front.svg",
  21566. extra: 332 / 319,
  21567. bottom: 0.015
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(6 + 7 / 12, "feet"),
  21575. default: true
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21581. {
  21582. front: {
  21583. height: math.unit(5 + 8 / 12, "feet"),
  21584. weight: math.unit(208, "lb"),
  21585. name: "Front",
  21586. image: {
  21587. source: "./media/characters/enuk/front.svg",
  21588. extra: 437 / 406,
  21589. bottom: 0.02
  21590. }
  21591. },
  21592. },
  21593. [
  21594. {
  21595. name: "Normal",
  21596. height: math.unit(5 + 8 / 12, "feet"),
  21597. default: true
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21603. {
  21604. front: {
  21605. height: math.unit(5 + 10 / 12, "feet"),
  21606. weight: math.unit(252, "lb"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/bruun/front.svg",
  21610. extra: 197 / 187,
  21611. bottom: 0.012
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Normal",
  21618. height: math.unit(5 + 10 / 12, "feet"),
  21619. default: true
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21625. {
  21626. front: {
  21627. height: math.unit(6 + 10 / 12, "feet"),
  21628. weight: math.unit(255, "lb"),
  21629. name: "Front",
  21630. image: {
  21631. source: "./media/characters/alexeev/front.svg",
  21632. extra: 213 / 200,
  21633. bottom: 0.05
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Normal",
  21640. height: math.unit(6 + 10 / 12, "feet"),
  21641. default: true
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21647. {
  21648. front: {
  21649. height: math.unit(2 + 8 / 12, "feet"),
  21650. weight: math.unit(22, "lb"),
  21651. name: "Front",
  21652. image: {
  21653. source: "./media/characters/evelyn/front.svg",
  21654. extra: 208 / 180
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(2 + 8 / 12, "feet"),
  21662. default: true
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(5 + 9 / 12, "feet"),
  21671. weight: math.unit(139, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/inca/front.svg",
  21675. extra: 294 / 291,
  21676. bottom: 0.03
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Normal",
  21683. height: math.unit(5 + 9 / 12, "feet"),
  21684. default: true
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21690. {
  21691. front: {
  21692. height: math.unit(6 + 3 / 12, "feet"),
  21693. weight: math.unit(185, "lb"),
  21694. name: "Front",
  21695. image: {
  21696. source: "./media/characters/mera/front.svg",
  21697. extra: 291 / 277,
  21698. bottom: 0.03
  21699. }
  21700. },
  21701. },
  21702. [
  21703. {
  21704. name: "Normal",
  21705. height: math.unit(6 + 3 / 12, "feet"),
  21706. default: true
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21712. {
  21713. front: {
  21714. height: math.unit(6 + 7 / 12, "feet"),
  21715. weight: math.unit(160, "lb"),
  21716. name: "Front",
  21717. image: {
  21718. source: "./media/characters/ceres/front.svg",
  21719. extra: 1023 / 950,
  21720. bottom: 0.027
  21721. }
  21722. },
  21723. back: {
  21724. height: math.unit(6 + 7 / 12, "feet"),
  21725. weight: math.unit(160, "lb"),
  21726. name: "Back",
  21727. image: {
  21728. source: "./media/characters/ceres/back.svg",
  21729. extra: 1023 / 950
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Normal",
  21736. height: math.unit(6 + 7 / 12, "feet"),
  21737. default: true
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(5 + 10 / 12, "feet"),
  21746. weight: math.unit(150, "lb"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/kris/front.svg",
  21750. extra: 885 / 803,
  21751. bottom: 0.03
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(5 + 10 / 12, "feet"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(7, "feet"),
  21768. weight: math.unit(120, "kg"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/taluthus/front.svg",
  21772. extra: 903 / 833,
  21773. bottom: 0.015
  21774. }
  21775. },
  21776. },
  21777. [
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(7, "feet"),
  21781. default: true
  21782. },
  21783. {
  21784. name: "Macro",
  21785. height: math.unit(300, "feet")
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(5 + 9 / 12, "feet"),
  21794. weight: math.unit(145, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/dawn/front.svg",
  21798. extra: 2094 / 2016,
  21799. bottom: 0.025
  21800. }
  21801. },
  21802. back: {
  21803. height: math.unit(5 + 9 / 12, "feet"),
  21804. weight: math.unit(160, "lb"),
  21805. name: "Back",
  21806. image: {
  21807. source: "./media/characters/dawn/back.svg",
  21808. extra: 2112 / 2080,
  21809. bottom: 0.005
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(6 + 7 / 12, "feet"),
  21817. default: true
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21823. {
  21824. anthro: {
  21825. height: math.unit(8 + 3 / 12, "feet"),
  21826. weight: math.unit(450, "lb"),
  21827. name: "Anthro",
  21828. image: {
  21829. source: "./media/characters/arador/anthro.svg",
  21830. extra: 1835 / 1718,
  21831. bottom: 0.025
  21832. }
  21833. },
  21834. feral: {
  21835. height: math.unit(4, "feet"),
  21836. weight: math.unit(200, "lb"),
  21837. name: "Feral",
  21838. image: {
  21839. source: "./media/characters/arador/feral.svg",
  21840. extra: 1683 / 1514,
  21841. bottom: 0.07
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(8 + 3 / 12, "feet")
  21849. },
  21850. {
  21851. name: "Macro",
  21852. height: math.unit(82.5, "feet"),
  21853. default: true
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21859. {
  21860. front: {
  21861. height: math.unit(5 + 10 / 12, "feet"),
  21862. weight: math.unit(125, "lb"),
  21863. name: "Front",
  21864. image: {
  21865. source: "./media/characters/dharsi/front.svg",
  21866. extra: 716 / 630,
  21867. bottom: 0.035
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Nano",
  21874. height: math.unit(100, "nm")
  21875. },
  21876. {
  21877. name: "Micro",
  21878. height: math.unit(2, "inches")
  21879. },
  21880. {
  21881. name: "Normal",
  21882. height: math.unit(5 + 10 / 12, "feet"),
  21883. default: true
  21884. },
  21885. {
  21886. name: "Macro",
  21887. height: math.unit(1000, "feet")
  21888. },
  21889. {
  21890. name: "Megamacro",
  21891. height: math.unit(10, "miles")
  21892. },
  21893. {
  21894. name: "Gigamacro",
  21895. height: math.unit(3000, "miles")
  21896. },
  21897. {
  21898. name: "Teramacro",
  21899. height: math.unit(500000, "miles")
  21900. },
  21901. {
  21902. name: "Teramacro+",
  21903. height: math.unit(30, "galaxies")
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(6, "feet"),
  21912. weight: math.unit(150, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/deathy/front.svg",
  21916. extra: 1552 / 1463,
  21917. bottom: 0.025
  21918. }
  21919. },
  21920. side: {
  21921. height: math.unit(6, "feet"),
  21922. weight: math.unit(150, "lb"),
  21923. name: "Side",
  21924. image: {
  21925. source: "./media/characters/deathy/side.svg",
  21926. extra: 1604 / 1455,
  21927. bottom: 0.025
  21928. }
  21929. },
  21930. back: {
  21931. height: math.unit(6, "feet"),
  21932. weight: math.unit(150, "lb"),
  21933. name: "Back",
  21934. image: {
  21935. source: "./media/characters/deathy/back.svg",
  21936. extra: 1580 / 1463,
  21937. bottom: 0.005
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Micro",
  21944. height: math.unit(5, "millimeters")
  21945. },
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(6 + 5 / 12, "feet"),
  21949. default: true
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21955. {
  21956. front: {
  21957. height: math.unit(16, "feet"),
  21958. weight: math.unit(4000, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/juniper/front.svg",
  21962. bottom: 0.04
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(16, "feet"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(6, "feet"),
  21979. weight: math.unit(150, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/hipster/front.svg",
  21983. extra: 1312 / 1209,
  21984. bottom: 0.025
  21985. }
  21986. },
  21987. back: {
  21988. height: math.unit(6, "feet"),
  21989. weight: math.unit(150, "lb"),
  21990. name: "Back",
  21991. image: {
  21992. source: "./media/characters/hipster/back.svg",
  21993. extra: 1281 / 1196,
  21994. bottom: 0.01
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Micro",
  22001. height: math.unit(1, "mm")
  22002. },
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(4, "inches"),
  22006. default: true
  22007. },
  22008. {
  22009. name: "Macro",
  22010. height: math.unit(500, "feet")
  22011. },
  22012. {
  22013. name: "Megamacro",
  22014. height: math.unit(1000, "miles")
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(6, "feet"),
  22023. weight: math.unit(150, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/tendirmuldr/front.svg",
  22027. extra: 1878 / 1772,
  22028. bottom: 0.015
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Megamacro",
  22035. height: math.unit(1500, "miles"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22042. {
  22043. front: {
  22044. height: math.unit(14, "feet"),
  22045. weight: math.unit(12000, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/mort/front.svg",
  22049. extra: 365 / 318,
  22050. bottom: 0.01
  22051. }
  22052. },
  22053. side: {
  22054. height: math.unit(14, "feet"),
  22055. weight: math.unit(12000, "lb"),
  22056. name: "Side",
  22057. image: {
  22058. source: "./media/characters/mort/side.svg",
  22059. extra: 365 / 318,
  22060. bottom: 0.052
  22061. },
  22062. default: true
  22063. },
  22064. back: {
  22065. height: math.unit(14, "feet"),
  22066. weight: math.unit(12000, "lb"),
  22067. name: "Back",
  22068. image: {
  22069. source: "./media/characters/mort/back.svg",
  22070. extra: 371 / 332,
  22071. bottom: 0.18
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(14, "feet"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22085. {
  22086. front: {
  22087. height: math.unit(8, "feet"),
  22088. weight: math.unit(1, "ton"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/lycoa/front.svg",
  22092. extra: 1836/1728,
  22093. bottom: 81/1917
  22094. }
  22095. },
  22096. back: {
  22097. height: math.unit(8, "feet"),
  22098. weight: math.unit(1, "ton"),
  22099. name: "Back",
  22100. image: {
  22101. source: "./media/characters/lycoa/back.svg",
  22102. extra: 1785/1720,
  22103. bottom: 91/1876
  22104. }
  22105. },
  22106. head: {
  22107. height: math.unit(1.6243, "feet"),
  22108. name: "Head",
  22109. image: {
  22110. source: "./media/characters/lycoa/head.svg",
  22111. extra: 1011/782,
  22112. bottom: 0/1011
  22113. }
  22114. },
  22115. tailmaw: {
  22116. height: math.unit(1.9, "feet"),
  22117. name: "Tailmaw",
  22118. image: {
  22119. source: "./media/characters/lycoa/tailmaw.svg"
  22120. }
  22121. },
  22122. tentacles: {
  22123. height: math.unit(2.1, "feet"),
  22124. name: "Tentacles",
  22125. image: {
  22126. source: "./media/characters/lycoa/tentacles.svg"
  22127. }
  22128. },
  22129. dick: {
  22130. height: math.unit(1.73, "feet"),
  22131. name: "Dick",
  22132. image: {
  22133. source: "./media/characters/lycoa/dick.svg"
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(8, "feet"),
  22141. default: true
  22142. },
  22143. {
  22144. name: "Macro",
  22145. height: math.unit(30, "feet")
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22151. {
  22152. front: {
  22153. height: math.unit(4 + 2 / 12, "feet"),
  22154. weight: math.unit(70, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/naldara/front.svg",
  22158. extra: 1664/1387,
  22159. bottom: 81/1745
  22160. },
  22161. form: "anthro",
  22162. default: true
  22163. },
  22164. naga: {
  22165. height: math.unit(20, "feet"),
  22166. weight: math.unit(15000, "kg"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/naldara/naga.svg",
  22170. extra: 1590/1396,
  22171. bottom: 285/1875
  22172. },
  22173. form: "naga",
  22174. default: true
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(4 + 2 / 12, "feet"),
  22181. form: "anthro",
  22182. default: true
  22183. },
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(20, "feet"),
  22187. form: "naga",
  22188. default: true
  22189. },
  22190. ],
  22191. {
  22192. "anthro": {
  22193. name: "Anthro",
  22194. default: true
  22195. },
  22196. "naga": {
  22197. name: "Naga"
  22198. }
  22199. }
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22203. {
  22204. front: {
  22205. height: math.unit(13 + 7 / 12, "feet"),
  22206. weight: math.unit(1500, "lb"),
  22207. name: "Front",
  22208. image: {
  22209. source: "./media/characters/briar/front.svg",
  22210. extra: 1223/1157,
  22211. bottom: 123/1346
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(13 + 7 / 12, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22225. {
  22226. side: {
  22227. height: math.unit(16, "feet"),
  22228. weight: math.unit(500, "lb"),
  22229. name: "Side",
  22230. image: {
  22231. source: "./media/characters/vanguard/side.svg",
  22232. extra: 1022/914,
  22233. bottom: 30/1052
  22234. }
  22235. },
  22236. sideAlt: {
  22237. height: math.unit(10, "feet"),
  22238. weight: math.unit(500, "lb"),
  22239. name: "Side (Alt)",
  22240. image: {
  22241. source: "./media/characters/vanguard/side-alt.svg",
  22242. extra: 502 / 425,
  22243. bottom: 0.087
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(17.71, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(7.5, "feet"),
  22260. weight: math.unit(2, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/artemis/work-safe-front.svg",
  22264. extra: 1192 / 1075,
  22265. bottom: 0.07
  22266. },
  22267. form: "work-safe",
  22268. default: true
  22269. },
  22270. frontNsfw: {
  22271. height: math.unit(7.5, "feet"),
  22272. weight: math.unit(2, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/artemis/calibrating-front.svg",
  22276. extra: 1192 / 1075,
  22277. bottom: 0.07
  22278. },
  22279. form: "calibrating",
  22280. default: true
  22281. },
  22282. frontNsfwer: {
  22283. height: math.unit(7.5, "feet"),
  22284. weight: math.unit(2, "lb"),
  22285. name: "Front",
  22286. image: {
  22287. source: "./media/characters/artemis/oversize-load-front.svg",
  22288. extra: 1192 / 1075,
  22289. bottom: 0.07
  22290. },
  22291. form: "oversize-load",
  22292. default: true
  22293. },
  22294. side: {
  22295. height: math.unit(7.5, "feet"),
  22296. weight: math.unit(2, "lb"),
  22297. name: "Side",
  22298. image: {
  22299. source: "./media/characters/artemis/work-safe-side.svg",
  22300. extra: 1192 / 1075,
  22301. bottom: 0.07
  22302. },
  22303. form: "work-safe"
  22304. },
  22305. sideNsfw: {
  22306. height: math.unit(7.5, "feet"),
  22307. weight: math.unit(2, "lb"),
  22308. name: "Side",
  22309. image: {
  22310. source: "./media/characters/artemis/calibrating-side.svg",
  22311. extra: 1192 / 1075,
  22312. bottom: 0.07
  22313. },
  22314. form: "calibrating"
  22315. },
  22316. sideNsfwer: {
  22317. height: math.unit(7.5, "feet"),
  22318. weight: math.unit(2, "lb"),
  22319. name: "Side",
  22320. image: {
  22321. source: "./media/characters/artemis/oversize-load-side.svg",
  22322. extra: 1192 / 1075,
  22323. bottom: 0.07
  22324. },
  22325. form: "oversize-load"
  22326. },
  22327. maw: {
  22328. height: math.unit(1.1, "feet"),
  22329. name: "Maw",
  22330. image: {
  22331. source: "./media/characters/artemis/maw.svg"
  22332. },
  22333. form: "work-safe"
  22334. },
  22335. stomach: {
  22336. height: math.unit(0.95, "feet"),
  22337. name: "Stomach",
  22338. image: {
  22339. source: "./media/characters/artemis/stomach.svg"
  22340. },
  22341. form: "work-safe"
  22342. },
  22343. dickCanine: {
  22344. height: math.unit(1, "feet"),
  22345. name: "Dick (Canine)",
  22346. image: {
  22347. source: "./media/characters/artemis/dick-canine.svg"
  22348. },
  22349. form: "calibrating"
  22350. },
  22351. dickEquine: {
  22352. height: math.unit(0.85, "feet"),
  22353. name: "Dick (Equine)",
  22354. image: {
  22355. source: "./media/characters/artemis/dick-equine.svg"
  22356. },
  22357. form: "calibrating"
  22358. },
  22359. dickExotic: {
  22360. height: math.unit(0.85, "feet"),
  22361. name: "Dick (Exotic)",
  22362. image: {
  22363. source: "./media/characters/artemis/dick-exotic.svg"
  22364. },
  22365. form: "calibrating"
  22366. },
  22367. dickCanineBigger: {
  22368. height: math.unit(1 * 1.33, "feet"),
  22369. name: "Dick (Canine)",
  22370. image: {
  22371. source: "./media/characters/artemis/dick-canine.svg"
  22372. },
  22373. form: "oversize-load"
  22374. },
  22375. dickEquineBigger: {
  22376. height: math.unit(0.85 * 1.33, "feet"),
  22377. name: "Dick (Equine)",
  22378. image: {
  22379. source: "./media/characters/artemis/dick-equine.svg"
  22380. },
  22381. form: "oversize-load"
  22382. },
  22383. dickExoticBigger: {
  22384. height: math.unit(0.85 * 1.33, "feet"),
  22385. name: "Dick (Exotic)",
  22386. image: {
  22387. source: "./media/characters/artemis/dick-exotic.svg"
  22388. },
  22389. form: "oversize-load"
  22390. },
  22391. },
  22392. [
  22393. {
  22394. name: "Normal",
  22395. height: math.unit(7.5, "feet"),
  22396. form: "work-safe",
  22397. default: true
  22398. },
  22399. {
  22400. name: "Normal",
  22401. height: math.unit(7.5, "feet"),
  22402. form: "calibrating",
  22403. default: true
  22404. },
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(7.5, "feet"),
  22408. form: "oversize-load",
  22409. default: true
  22410. },
  22411. {
  22412. name: "Enlarged",
  22413. height: math.unit(12, "feet"),
  22414. form: "work-safe",
  22415. },
  22416. {
  22417. name: "Enlarged",
  22418. height: math.unit(12, "feet"),
  22419. form: "calibrating",
  22420. },
  22421. {
  22422. name: "Enlarged",
  22423. height: math.unit(12, "feet"),
  22424. form: "oversize-load",
  22425. },
  22426. ],
  22427. {
  22428. "work-safe": {
  22429. name: "Work-Safe",
  22430. default: true
  22431. },
  22432. "calibrating": {
  22433. name: "Calibrating"
  22434. },
  22435. "oversize-load": {
  22436. name: "Oversize Load"
  22437. }
  22438. }
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(5 + 3 / 12, "feet"),
  22445. weight: math.unit(160, "lb"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/kira/front.svg",
  22449. extra: 906 / 786,
  22450. bottom: 0.01
  22451. }
  22452. },
  22453. back: {
  22454. height: math.unit(5 + 3 / 12, "feet"),
  22455. weight: math.unit(160, "lb"),
  22456. name: "Back",
  22457. image: {
  22458. source: "./media/characters/kira/back.svg",
  22459. extra: 882 / 757,
  22460. bottom: 0.005
  22461. }
  22462. },
  22463. frontDressed: {
  22464. height: math.unit(5 + 3 / 12, "feet"),
  22465. weight: math.unit(160, "lb"),
  22466. name: "Front (Dressed)",
  22467. image: {
  22468. source: "./media/characters/kira/front-dressed.svg",
  22469. extra: 906 / 786,
  22470. bottom: 0.01
  22471. }
  22472. },
  22473. beans: {
  22474. height: math.unit(0.92, "feet"),
  22475. name: "Beans",
  22476. image: {
  22477. source: "./media/characters/kira/beans.svg"
  22478. }
  22479. },
  22480. },
  22481. [
  22482. {
  22483. name: "Normal",
  22484. height: math.unit(5 + 3 / 12, "feet"),
  22485. default: true
  22486. },
  22487. ]
  22488. ))
  22489. characterMakers.push(() => makeCharacter(
  22490. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22491. {
  22492. front: {
  22493. height: math.unit(5 + 4 / 12, "feet"),
  22494. weight: math.unit(145, "lb"),
  22495. name: "Front",
  22496. image: {
  22497. source: "./media/characters/scramble/front.svg",
  22498. extra: 763 / 727,
  22499. bottom: 0.05
  22500. }
  22501. },
  22502. back: {
  22503. height: math.unit(5 + 4 / 12, "feet"),
  22504. weight: math.unit(145, "lb"),
  22505. name: "Back",
  22506. image: {
  22507. source: "./media/characters/scramble/back.svg",
  22508. extra: 826 / 737,
  22509. bottom: 0.002
  22510. }
  22511. },
  22512. },
  22513. [
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(5 + 4 / 12, "feet"),
  22517. default: true
  22518. },
  22519. ]
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22523. {
  22524. side: {
  22525. height: math.unit(6 + 2 / 12, "feet"),
  22526. weight: math.unit(190, "lb"),
  22527. name: "Side",
  22528. image: {
  22529. source: "./media/characters/biscuit/side.svg",
  22530. extra: 858 / 791,
  22531. bottom: 0.044
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(6 + 2 / 12, "feet"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(5 + 2 / 12, "feet"),
  22548. weight: math.unit(120, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/poffin/front.svg",
  22552. extra: 786 / 680,
  22553. bottom: 0.005
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(5 + 2 / 12, "feet"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(6 + 3 / 12, "feet"),
  22570. weight: math.unit(519, "lb"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/dhari/front.svg",
  22574. extra: 1048 / 946,
  22575. bottom: 0.015
  22576. }
  22577. },
  22578. back: {
  22579. height: math.unit(6 + 3 / 12, "feet"),
  22580. weight: math.unit(519, "lb"),
  22581. name: "Back",
  22582. image: {
  22583. source: "./media/characters/dhari/back.svg",
  22584. extra: 1048 / 931,
  22585. bottom: 0.005
  22586. }
  22587. },
  22588. frontDressed: {
  22589. height: math.unit(6 + 3 / 12, "feet"),
  22590. weight: math.unit(519, "lb"),
  22591. name: "Front (Dressed)",
  22592. image: {
  22593. source: "./media/characters/dhari/front-dressed.svg",
  22594. extra: 1713 / 1546,
  22595. bottom: 0.02
  22596. }
  22597. },
  22598. backDressed: {
  22599. height: math.unit(6 + 3 / 12, "feet"),
  22600. weight: math.unit(519, "lb"),
  22601. name: "Back (Dressed)",
  22602. image: {
  22603. source: "./media/characters/dhari/back-dressed.svg",
  22604. extra: 1699 / 1537,
  22605. bottom: 0.01
  22606. }
  22607. },
  22608. maw: {
  22609. height: math.unit(0.95, "feet"),
  22610. name: "Maw",
  22611. image: {
  22612. source: "./media/characters/dhari/maw.svg"
  22613. }
  22614. },
  22615. wereFront: {
  22616. height: math.unit(12 + 8 / 12, "feet"),
  22617. weight: math.unit(4000, "lb"),
  22618. name: "Front (Were)",
  22619. image: {
  22620. source: "./media/characters/dhari/were-front.svg",
  22621. extra: 1065 / 969,
  22622. bottom: 0.015
  22623. }
  22624. },
  22625. wereBack: {
  22626. height: math.unit(12 + 8 / 12, "feet"),
  22627. weight: math.unit(4000, "lb"),
  22628. name: "Back (Were)",
  22629. image: {
  22630. source: "./media/characters/dhari/were-back.svg",
  22631. extra: 1065 / 969,
  22632. bottom: 0.012
  22633. }
  22634. },
  22635. wereMaw: {
  22636. height: math.unit(0.625, "meters"),
  22637. name: "Maw (Were)",
  22638. image: {
  22639. source: "./media/characters/dhari/were-maw.svg"
  22640. }
  22641. },
  22642. },
  22643. [
  22644. {
  22645. name: "Normal",
  22646. height: math.unit(6 + 3 / 12, "feet"),
  22647. default: true
  22648. },
  22649. ]
  22650. ))
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22653. {
  22654. anthro: {
  22655. height: math.unit(5 + 7 / 12, "feet"),
  22656. weight: math.unit(175, "lb"),
  22657. name: "Anthro",
  22658. image: {
  22659. source: "./media/characters/rena-dyne/anthro.svg",
  22660. extra: 1849 / 1785,
  22661. bottom: 0.005
  22662. }
  22663. },
  22664. taur: {
  22665. height: math.unit(15 + 6 / 12, "feet"),
  22666. weight: math.unit(8000, "lb"),
  22667. name: "Taur",
  22668. image: {
  22669. source: "./media/characters/rena-dyne/taur.svg",
  22670. extra: 2315 / 2234,
  22671. bottom: 0.033
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(5 + 7 / 12, "feet"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(8, "feet"),
  22688. weight: math.unit(600, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/weremeep/front.svg",
  22692. extra: 970/849,
  22693. bottom: 7/977
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(8, "feet"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Lorg",
  22705. height: math.unit(12, "feet")
  22706. },
  22707. {
  22708. name: "Oh Lawd She Comin'",
  22709. height: math.unit(20, "feet")
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22715. {
  22716. front: {
  22717. height: math.unit(4, "feet"),
  22718. weight: math.unit(90, "lb"),
  22719. name: "Front",
  22720. image: {
  22721. source: "./media/characters/reza/front.svg",
  22722. extra: 1183 / 1111,
  22723. bottom: 0.017
  22724. }
  22725. },
  22726. back: {
  22727. height: math.unit(4, "feet"),
  22728. weight: math.unit(90, "lb"),
  22729. name: "Back",
  22730. image: {
  22731. source: "./media/characters/reza/back.svg",
  22732. extra: 1183 / 1111,
  22733. bottom: 0.01
  22734. }
  22735. },
  22736. drake: {
  22737. height: math.unit(30, "feet"),
  22738. weight: math.unit(246960, "lb"),
  22739. name: "Drake",
  22740. image: {
  22741. source: "./media/characters/reza/drake.svg",
  22742. extra: 2350 / 2024,
  22743. bottom: 60.7 / 2403
  22744. }
  22745. },
  22746. },
  22747. [
  22748. {
  22749. name: "Normal",
  22750. height: math.unit(4, "feet"),
  22751. default: true
  22752. },
  22753. ]
  22754. ))
  22755. characterMakers.push(() => makeCharacter(
  22756. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22757. {
  22758. side: {
  22759. height: math.unit(15, "feet"),
  22760. weight: math.unit(14, "tons"),
  22761. name: "Side",
  22762. image: {
  22763. source: "./media/characters/athea/side.svg",
  22764. extra: 960 / 540,
  22765. bottom: 0.003
  22766. }
  22767. },
  22768. sitting: {
  22769. height: math.unit(6 * 2.85, "feet"),
  22770. weight: math.unit(14, "tons"),
  22771. name: "Sitting",
  22772. image: {
  22773. source: "./media/characters/athea/sitting.svg",
  22774. extra: 621 / 581,
  22775. bottom: 0.075
  22776. }
  22777. },
  22778. maw: {
  22779. height: math.unit(7.59498031496063, "feet"),
  22780. name: "Maw",
  22781. image: {
  22782. source: "./media/characters/athea/maw.svg"
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Lap Cat",
  22789. height: math.unit(2.5, "feet")
  22790. },
  22791. {
  22792. name: "Minimacro",
  22793. height: math.unit(15, "feet"),
  22794. default: true
  22795. },
  22796. {
  22797. name: "Macro",
  22798. height: math.unit(120, "feet")
  22799. },
  22800. {
  22801. name: "Macro+",
  22802. height: math.unit(640, "feet")
  22803. },
  22804. {
  22805. name: "Colossus",
  22806. height: math.unit(2.2, "miles")
  22807. },
  22808. ]
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22812. {
  22813. front: {
  22814. height: math.unit(8 + 8 / 12, "feet"),
  22815. weight: math.unit(130, "kg"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/seroko/front.svg",
  22819. extra: 1385 / 1280,
  22820. bottom: 0.025
  22821. }
  22822. },
  22823. back: {
  22824. height: math.unit(8 + 8 / 12, "feet"),
  22825. weight: math.unit(130, "kg"),
  22826. name: "Back",
  22827. image: {
  22828. source: "./media/characters/seroko/back.svg",
  22829. extra: 1369 / 1238,
  22830. bottom: 0.018
  22831. }
  22832. },
  22833. frontDressed: {
  22834. height: math.unit(8 + 8 / 12, "feet"),
  22835. weight: math.unit(130, "kg"),
  22836. name: "Front (Dressed)",
  22837. image: {
  22838. source: "./media/characters/seroko/front-dressed.svg",
  22839. extra: 1366 / 1275,
  22840. bottom: 0.03
  22841. }
  22842. },
  22843. },
  22844. [
  22845. {
  22846. name: "Normal",
  22847. height: math.unit(8 + 8 / 12, "feet"),
  22848. default: true
  22849. },
  22850. ]
  22851. ))
  22852. characterMakers.push(() => makeCharacter(
  22853. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22854. {
  22855. front: {
  22856. height: math.unit(5.5, "feet"),
  22857. weight: math.unit(160, "lb"),
  22858. name: "Front",
  22859. image: {
  22860. source: "./media/characters/quatzi/front.svg",
  22861. extra: 2346 / 2242,
  22862. bottom: 0.015
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Normal",
  22869. height: math.unit(5.5, "feet"),
  22870. default: true
  22871. },
  22872. {
  22873. name: "Big",
  22874. height: math.unit(7.7, "feet")
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(5 + 11 / 12, "feet"),
  22883. weight: math.unit(180, "lb"),
  22884. name: "Front",
  22885. image: {
  22886. source: "./media/characters/sen/front.svg",
  22887. extra: 1321 / 1254,
  22888. bottom: 0.015
  22889. }
  22890. },
  22891. side: {
  22892. height: math.unit(5 + 11 / 12, "feet"),
  22893. weight: math.unit(180, "lb"),
  22894. name: "Side",
  22895. image: {
  22896. source: "./media/characters/sen/side.svg",
  22897. extra: 1321 / 1254,
  22898. bottom: 0.007
  22899. }
  22900. },
  22901. back: {
  22902. height: math.unit(5 + 11 / 12, "feet"),
  22903. weight: math.unit(180, "lb"),
  22904. name: "Back",
  22905. image: {
  22906. source: "./media/characters/sen/back.svg",
  22907. extra: 1321 / 1254
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(5 + 11 / 12, "feet"),
  22915. default: true
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22921. {
  22922. front: {
  22923. height: math.unit(166.6, "cm"),
  22924. weight: math.unit(66.6, "kg"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/fruity/front.svg",
  22928. extra: 1510 / 1386,
  22929. bottom: 0.04
  22930. }
  22931. },
  22932. back: {
  22933. height: math.unit(166.6, "cm"),
  22934. weight: math.unit(66.6, "lb"),
  22935. name: "Back",
  22936. image: {
  22937. source: "./media/characters/fruity/back.svg",
  22938. extra: 1563 / 1435,
  22939. bottom: 0.005
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(166.6, "cm"),
  22947. default: true
  22948. },
  22949. {
  22950. name: "Demonic",
  22951. height: math.unit(166.6, "feet")
  22952. },
  22953. ]
  22954. ))
  22955. characterMakers.push(() => makeCharacter(
  22956. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22957. {
  22958. side: {
  22959. height: math.unit(10, "feet"),
  22960. weight: math.unit(500, "lb"),
  22961. name: "Side",
  22962. image: {
  22963. source: "./media/characters/zost/side.svg",
  22964. extra: 2870/2533,
  22965. bottom: 252/3122
  22966. }
  22967. },
  22968. mawFront: {
  22969. height: math.unit(1.08, "meters"),
  22970. name: "Maw (Front)",
  22971. image: {
  22972. source: "./media/characters/zost/maw-front.svg"
  22973. }
  22974. },
  22975. mawSide: {
  22976. height: math.unit(2.66, "feet"),
  22977. name: "Maw (Side)",
  22978. image: {
  22979. source: "./media/characters/zost/maw-side.svg"
  22980. }
  22981. },
  22982. wingspan: {
  22983. height: math.unit(7.4, "feet"),
  22984. name: "Wingspan",
  22985. image: {
  22986. source: "./media/characters/zost/wingspan.svg"
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(10, "feet"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(5 + 4 / 12, "feet"),
  23003. weight: math.unit(120, "lb"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/luci/front.svg",
  23007. extra: 1985 / 1884,
  23008. bottom: 0.04
  23009. }
  23010. },
  23011. back: {
  23012. height: math.unit(5 + 4 / 12, "feet"),
  23013. weight: math.unit(120, "lb"),
  23014. name: "Back",
  23015. image: {
  23016. source: "./media/characters/luci/back.svg",
  23017. extra: 1892 / 1791,
  23018. bottom: 0.002
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Normal",
  23025. height: math.unit(5 + 4 / 12, "feet"),
  23026. default: true
  23027. },
  23028. ]
  23029. ))
  23030. characterMakers.push(() => makeCharacter(
  23031. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23032. {
  23033. front: {
  23034. height: math.unit(1500, "feet"),
  23035. weight: math.unit(3.8e6, "tons"),
  23036. name: "Front",
  23037. image: {
  23038. source: "./media/characters/2th/front.svg",
  23039. extra: 3489 / 3350,
  23040. bottom: 0.1
  23041. }
  23042. },
  23043. foot: {
  23044. height: math.unit(461, "feet"),
  23045. name: "Foot",
  23046. image: {
  23047. source: "./media/characters/2th/foot.svg"
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "\"Micro\"",
  23054. height: math.unit(15 + 7 / 12, "feet")
  23055. },
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(1500, "feet"),
  23059. default: true
  23060. },
  23061. {
  23062. name: "Macro",
  23063. height: math.unit(5000, "feet")
  23064. },
  23065. {
  23066. name: "Megamacro",
  23067. height: math.unit(15, "miles")
  23068. },
  23069. {
  23070. name: "Gigamacro",
  23071. height: math.unit(4000, "miles")
  23072. },
  23073. {
  23074. name: "Galactic",
  23075. height: math.unit(50, "AU")
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(5 + 6 / 12, "feet"),
  23084. weight: math.unit(220, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/amethyst/front.svg",
  23088. extra: 2078 / 2040,
  23089. bottom: 0.045
  23090. }
  23091. },
  23092. back: {
  23093. height: math.unit(5 + 6 / 12, "feet"),
  23094. weight: math.unit(220, "lb"),
  23095. name: "Back",
  23096. image: {
  23097. source: "./media/characters/amethyst/back.svg",
  23098. extra: 2021 / 1989,
  23099. bottom: 0.02
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Normal",
  23106. height: math.unit(5 + 6 / 12, "feet"),
  23107. default: true
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(4 + 11 / 12, "feet"),
  23116. weight: math.unit(120, "lb"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/yumi-akiyama/front.svg",
  23120. extra: 1327 / 1235,
  23121. bottom: 0.02
  23122. }
  23123. },
  23124. back: {
  23125. height: math.unit(4 + 11 / 12, "feet"),
  23126. weight: math.unit(120, "lb"),
  23127. name: "Back",
  23128. image: {
  23129. source: "./media/characters/yumi-akiyama/back.svg",
  23130. extra: 1287 / 1245,
  23131. bottom: 0.002
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Galactic",
  23138. height: math.unit(50, "galaxies"),
  23139. default: true
  23140. },
  23141. {
  23142. name: "Universal",
  23143. height: math.unit(100, "universes")
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(8, "feet"),
  23152. weight: math.unit(500, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/rifter-yrmori/front.svg",
  23156. extra: 1180 / 1125,
  23157. bottom: 0.02
  23158. }
  23159. },
  23160. back: {
  23161. height: math.unit(8, "feet"),
  23162. weight: math.unit(500, "lb"),
  23163. name: "Back",
  23164. image: {
  23165. source: "./media/characters/rifter-yrmori/back.svg",
  23166. extra: 1190 / 1145,
  23167. bottom: 0.001
  23168. }
  23169. },
  23170. wings: {
  23171. height: math.unit(7.75, "feet"),
  23172. weight: math.unit(500, "lb"),
  23173. name: "Wings",
  23174. image: {
  23175. source: "./media/characters/rifter-yrmori/wings.svg",
  23176. extra: 1357 / 1285
  23177. }
  23178. },
  23179. maw: {
  23180. height: math.unit(0.8, "feet"),
  23181. name: "Maw",
  23182. image: {
  23183. source: "./media/characters/rifter-yrmori/maw.svg"
  23184. }
  23185. },
  23186. mawfront: {
  23187. height: math.unit(1.45, "feet"),
  23188. name: "Maw (Front)",
  23189. image: {
  23190. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23191. }
  23192. },
  23193. },
  23194. [
  23195. {
  23196. name: "Normal",
  23197. height: math.unit(8, "feet"),
  23198. default: true
  23199. },
  23200. {
  23201. name: "Macro",
  23202. height: math.unit(42, "meters")
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23208. {
  23209. were: {
  23210. height: math.unit(25 + 6 / 12, "feet"),
  23211. weight: math.unit(10000, "lb"),
  23212. name: "Were",
  23213. image: {
  23214. source: "./media/characters/tahajin/were.svg",
  23215. extra: 801 / 770,
  23216. bottom: 0.042
  23217. }
  23218. },
  23219. aquatic: {
  23220. height: math.unit(6 + 4 / 12, "feet"),
  23221. weight: math.unit(160, "lb"),
  23222. name: "Aquatic",
  23223. image: {
  23224. source: "./media/characters/tahajin/aquatic.svg",
  23225. extra: 572 / 542,
  23226. bottom: 0.04
  23227. }
  23228. },
  23229. chow: {
  23230. height: math.unit(8 + 11 / 12, "feet"),
  23231. weight: math.unit(450, "lb"),
  23232. name: "Chow",
  23233. image: {
  23234. source: "./media/characters/tahajin/chow.svg",
  23235. extra: 660 / 640,
  23236. bottom: 0.015
  23237. }
  23238. },
  23239. demiNaga: {
  23240. height: math.unit(6 + 8 / 12, "feet"),
  23241. weight: math.unit(300, "lb"),
  23242. name: "Demi Naga",
  23243. image: {
  23244. source: "./media/characters/tahajin/demi-naga.svg",
  23245. extra: 643 / 615,
  23246. bottom: 0.1
  23247. }
  23248. },
  23249. data: {
  23250. height: math.unit(5, "inches"),
  23251. weight: math.unit(0.1, "lb"),
  23252. name: "Data",
  23253. image: {
  23254. source: "./media/characters/tahajin/data.svg"
  23255. }
  23256. },
  23257. fluu: {
  23258. height: math.unit(5 + 7 / 12, "feet"),
  23259. weight: math.unit(140, "lb"),
  23260. name: "Fluu",
  23261. image: {
  23262. source: "./media/characters/tahajin/fluu.svg",
  23263. extra: 628 / 592,
  23264. bottom: 0.02
  23265. }
  23266. },
  23267. starWarrior: {
  23268. height: math.unit(4 + 5 / 12, "feet"),
  23269. weight: math.unit(50, "lb"),
  23270. name: "Star Warrior",
  23271. image: {
  23272. source: "./media/characters/tahajin/star-warrior.svg"
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(25 + 6 / 12, "feet"),
  23280. default: true
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(8, "feet"),
  23289. weight: math.unit(350, "lb"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/gabira/front.svg",
  23293. extra: 1261/1154,
  23294. bottom: 51/1312
  23295. }
  23296. },
  23297. back: {
  23298. height: math.unit(8, "feet"),
  23299. weight: math.unit(350, "lb"),
  23300. name: "Back",
  23301. image: {
  23302. source: "./media/characters/gabira/back.svg",
  23303. extra: 1265/1163,
  23304. bottom: 46/1311
  23305. }
  23306. },
  23307. head: {
  23308. height: math.unit(2.85, "feet"),
  23309. name: "Head",
  23310. image: {
  23311. source: "./media/characters/gabira/head.svg"
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Normal",
  23318. height: math.unit(8, "feet"),
  23319. default: true
  23320. },
  23321. ]
  23322. ))
  23323. characterMakers.push(() => makeCharacter(
  23324. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23325. {
  23326. front: {
  23327. height: math.unit(5 + 3 / 12, "feet"),
  23328. weight: math.unit(137, "lb"),
  23329. name: "Front",
  23330. image: {
  23331. source: "./media/characters/sasha-katraine/front.svg",
  23332. extra: 1745/1694,
  23333. bottom: 37/1782
  23334. }
  23335. },
  23336. back: {
  23337. height: math.unit(5 + 3 / 12, "feet"),
  23338. weight: math.unit(137, "lb"),
  23339. name: "Back",
  23340. image: {
  23341. source: "./media/characters/sasha-katraine/back.svg",
  23342. extra: 1776/1699,
  23343. bottom: 26/1802
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Micro",
  23350. height: math.unit(5, "inches")
  23351. },
  23352. {
  23353. name: "Normal",
  23354. height: math.unit(5 + 3 / 12, "feet"),
  23355. default: true
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23361. {
  23362. side: {
  23363. height: math.unit(4, "inches"),
  23364. weight: math.unit(200, "grams"),
  23365. name: "Side",
  23366. image: {
  23367. source: "./media/characters/der/side.svg",
  23368. extra: 719 / 400,
  23369. bottom: 30.6 / 749.9187
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Micro",
  23376. height: math.unit(4, "inches"),
  23377. default: true
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23383. {
  23384. side: {
  23385. height: math.unit(30, "meters"),
  23386. weight: math.unit(700, "tonnes"),
  23387. name: "Side",
  23388. image: {
  23389. source: "./media/characters/fixerdragon/side.svg",
  23390. extra: (1293.0514 - 116.03) / 1106.86,
  23391. bottom: 116.03 / 1293.0514
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Planck",
  23398. height: math.unit(1.6e-35, "meters")
  23399. },
  23400. {
  23401. name: "Micro",
  23402. height: math.unit(0.4, "meters")
  23403. },
  23404. {
  23405. name: "Normal",
  23406. height: math.unit(30, "meters"),
  23407. default: true
  23408. },
  23409. {
  23410. name: "Megamacro",
  23411. height: math.unit(1.2, "megameters")
  23412. },
  23413. {
  23414. name: "Teramacro",
  23415. height: math.unit(130, "terameters")
  23416. },
  23417. {
  23418. name: "Yottamacro",
  23419. height: math.unit(6200, "yottameters")
  23420. },
  23421. ]
  23422. ));
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(8, "feet"),
  23428. weight: math.unit(250, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/kite/front.svg",
  23432. extra: 2796 / 2659,
  23433. bottom: 0.002
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(8, "feet"),
  23441. default: true
  23442. },
  23443. {
  23444. name: "Macro",
  23445. height: math.unit(360, "feet")
  23446. },
  23447. {
  23448. name: "Megamacro",
  23449. height: math.unit(1500, "feet")
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23455. {
  23456. front: {
  23457. height: math.unit(5 + 11/12, "feet"),
  23458. weight: math.unit(170, "lb"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/poojawa-vynar/front.svg",
  23462. extra: 1735/1585,
  23463. bottom: 96/1831
  23464. }
  23465. },
  23466. back: {
  23467. height: math.unit(5 + 11/12, "feet"),
  23468. weight: math.unit(170, "lb"),
  23469. name: "Back",
  23470. image: {
  23471. source: "./media/characters/poojawa-vynar/back.svg",
  23472. extra: 1749/1607,
  23473. bottom: 28/1777
  23474. }
  23475. },
  23476. male: {
  23477. height: math.unit(5 + 11/12, "feet"),
  23478. weight: math.unit(170, "lb"),
  23479. name: "Male",
  23480. image: {
  23481. source: "./media/characters/poojawa-vynar/male.svg",
  23482. extra: 1855/1713,
  23483. bottom: 63/1918
  23484. }
  23485. },
  23486. taur: {
  23487. height: math.unit(5 + 11/12, "feet"),
  23488. weight: math.unit(170, "lb"),
  23489. name: "Taur",
  23490. image: {
  23491. source: "./media/characters/poojawa-vynar/taur.svg",
  23492. extra: 1151/1059,
  23493. bottom: 356/1507
  23494. }
  23495. },
  23496. frontDressed: {
  23497. height: math.unit(5 + 11/12, "feet"),
  23498. weight: math.unit(170, "lb"),
  23499. name: "Front (Dressed)",
  23500. image: {
  23501. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23502. extra: 1735/1585,
  23503. bottom: 96/1831
  23504. }
  23505. },
  23506. backDressed: {
  23507. height: math.unit(5 + 11/12, "feet"),
  23508. weight: math.unit(170, "lb"),
  23509. name: "Back (Dressed)",
  23510. image: {
  23511. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23512. extra: 1749/1607,
  23513. bottom: 28/1777
  23514. }
  23515. },
  23516. maleDressed: {
  23517. height: math.unit(5 + 11/12, "feet"),
  23518. weight: math.unit(170, "lb"),
  23519. name: "Male (Dressed)",
  23520. image: {
  23521. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23522. extra: 1855/1713,
  23523. bottom: 63/1918
  23524. }
  23525. },
  23526. taurDressed: {
  23527. height: math.unit(5 + 11/12, "feet"),
  23528. weight: math.unit(170, "lb"),
  23529. name: "Taur (Dressed)",
  23530. image: {
  23531. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23532. extra: 1151/1059,
  23533. bottom: 356/1507
  23534. }
  23535. },
  23536. maw: {
  23537. height: math.unit(1.46, "feet"),
  23538. name: "Maw",
  23539. image: {
  23540. source: "./media/characters/poojawa-vynar/maw.svg"
  23541. }
  23542. },
  23543. head: {
  23544. height: math.unit(2.34, "feet"),
  23545. name: "Head",
  23546. image: {
  23547. source: "./media/characters/poojawa-vynar/head.svg"
  23548. }
  23549. },
  23550. paw: {
  23551. height: math.unit(1.61, "feet"),
  23552. name: "Paw",
  23553. image: {
  23554. source: "./media/characters/poojawa-vynar/paw.svg"
  23555. }
  23556. },
  23557. pawToering: {
  23558. height: math.unit(1.72, "feet"),
  23559. name: "Paw (Toering)",
  23560. image: {
  23561. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23562. }
  23563. },
  23564. toering: {
  23565. height: math.unit(2.9, "inches"),
  23566. name: "Toering",
  23567. image: {
  23568. source: "./media/characters/poojawa-vynar/toering.svg"
  23569. }
  23570. },
  23571. shaft: {
  23572. height: math.unit(0.625, "feet"),
  23573. name: "Shaft",
  23574. image: {
  23575. source: "./media/characters/poojawa-vynar/shaft.svg"
  23576. }
  23577. },
  23578. spade: {
  23579. height: math.unit(0.42, "feet"),
  23580. name: "Spade",
  23581. image: {
  23582. source: "./media/characters/poojawa-vynar/spade.svg"
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Shortstack",
  23589. height: math.unit(4, "feet")
  23590. },
  23591. {
  23592. name: "Normal",
  23593. height: math.unit(5 + 11 / 12, "feet"),
  23594. default: true
  23595. },
  23596. {
  23597. name: "Tauric",
  23598. height: math.unit(4, "meters")
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23604. {
  23605. front: {
  23606. height: math.unit(293, "meters"),
  23607. weight: math.unit(70400, "tons"),
  23608. name: "Front",
  23609. image: {
  23610. source: "./media/characters/violette/front.svg",
  23611. extra: 1227 / 1180,
  23612. bottom: 0.005
  23613. }
  23614. },
  23615. back: {
  23616. height: math.unit(293, "meters"),
  23617. weight: math.unit(70400, "tons"),
  23618. name: "Back",
  23619. image: {
  23620. source: "./media/characters/violette/back.svg",
  23621. extra: 1227 / 1180,
  23622. bottom: 0.005
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Macro",
  23629. height: math.unit(293, "meters"),
  23630. default: true
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23636. {
  23637. front: {
  23638. height: math.unit(1050, "feet"),
  23639. weight: math.unit(200000, "tons"),
  23640. name: "Front",
  23641. image: {
  23642. source: "./media/characters/alessandra/front.svg",
  23643. extra: 960 / 912,
  23644. bottom: 0.06
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Macro",
  23651. height: math.unit(1050, "feet")
  23652. },
  23653. {
  23654. name: "Macro+",
  23655. height: math.unit(900, "meters"),
  23656. default: true
  23657. },
  23658. ]
  23659. ))
  23660. characterMakers.push(() => makeCharacter(
  23661. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23662. {
  23663. front: {
  23664. height: math.unit(5, "feet"),
  23665. weight: math.unit(187, "lb"),
  23666. name: "Front",
  23667. image: {
  23668. source: "./media/characters/person/front.svg",
  23669. extra: 3087 / 2945,
  23670. bottom: 91 / 3181
  23671. }
  23672. },
  23673. },
  23674. [
  23675. {
  23676. name: "Micro",
  23677. height: math.unit(3, "inches")
  23678. },
  23679. {
  23680. name: "Normal",
  23681. height: math.unit(5, "feet"),
  23682. default: true
  23683. },
  23684. {
  23685. name: "Macro",
  23686. height: math.unit(90, "feet")
  23687. },
  23688. {
  23689. name: "Max Size",
  23690. height: math.unit(280, "feet")
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(4.5, "meters"),
  23699. weight: math.unit(3200, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/ty/front.svg",
  23703. extra: 1038 / 960,
  23704. bottom: 31.156 / 1068
  23705. }
  23706. },
  23707. back: {
  23708. height: math.unit(4.5, "meters"),
  23709. weight: math.unit(3200, "lb"),
  23710. name: "Back",
  23711. image: {
  23712. source: "./media/characters/ty/back.svg",
  23713. extra: 1044 / 966,
  23714. bottom: 7.48 / 1049
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Normal",
  23721. height: math.unit(4.5, "meters"),
  23722. default: true
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23728. {
  23729. front: {
  23730. height: math.unit(5 + 4 / 12, "feet"),
  23731. weight: math.unit(115, "lb"),
  23732. name: "Front",
  23733. image: {
  23734. source: "./media/characters/rocky/front.svg",
  23735. extra: 1012 / 975,
  23736. bottom: 54 / 1066
  23737. }
  23738. },
  23739. },
  23740. [
  23741. {
  23742. name: "Normal",
  23743. height: math.unit(5 + 4 / 12, "feet"),
  23744. default: true
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23750. {
  23751. upright: {
  23752. height: math.unit(6, "meters"),
  23753. weight: math.unit(4000, "kg"),
  23754. name: "Upright",
  23755. image: {
  23756. source: "./media/characters/ruin/upright.svg",
  23757. extra: 668 / 661,
  23758. bottom: 42 / 799.8396
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(6, "meters"),
  23766. default: true
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(5, "feet"),
  23775. weight: math.unit(106, "lb"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/robin/front.svg",
  23779. extra: 862 / 799,
  23780. bottom: 42.4 / 914.8856
  23781. }
  23782. },
  23783. },
  23784. [
  23785. {
  23786. name: "Normal",
  23787. height: math.unit(5, "feet"),
  23788. default: true
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23794. {
  23795. side: {
  23796. height: math.unit(3, "feet"),
  23797. weight: math.unit(225, "lb"),
  23798. name: "Side",
  23799. image: {
  23800. source: "./media/characters/saian/side.svg",
  23801. extra: 566 / 356,
  23802. bottom: 79.7 / 643
  23803. }
  23804. },
  23805. maw: {
  23806. height: math.unit(2.85, "feet"),
  23807. name: "Maw",
  23808. image: {
  23809. source: "./media/characters/saian/maw.svg"
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(3, "feet"),
  23817. default: true
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23823. {
  23824. side: {
  23825. height: math.unit(8, "feet"),
  23826. weight: math.unit(300, "lb"),
  23827. name: "Side",
  23828. image: {
  23829. source: "./media/characters/equus-silvermane/side.svg",
  23830. extra: 2176 / 2050,
  23831. bottom: 65.7 / 2245
  23832. }
  23833. },
  23834. front: {
  23835. height: math.unit(8, "feet"),
  23836. weight: math.unit(300, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/equus-silvermane/front.svg",
  23840. extra: 4633 / 4400,
  23841. bottom: 71.3 / 4706.915
  23842. }
  23843. },
  23844. sideStepping: {
  23845. height: math.unit(8, "feet"),
  23846. weight: math.unit(300, "lb"),
  23847. name: "Side (Stepping)",
  23848. image: {
  23849. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23850. extra: 1968 / 1860,
  23851. bottom: 16.4 / 1989
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Normal",
  23858. height: math.unit(8, "feet")
  23859. },
  23860. {
  23861. name: "Minimacro",
  23862. height: math.unit(75, "feet"),
  23863. default: true
  23864. },
  23865. {
  23866. name: "Macro",
  23867. height: math.unit(150, "feet")
  23868. },
  23869. {
  23870. name: "Macro+",
  23871. height: math.unit(1000, "feet")
  23872. },
  23873. {
  23874. name: "Megamacro",
  23875. height: math.unit(1, "mile")
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23881. {
  23882. side: {
  23883. height: math.unit(20, "feet"),
  23884. weight: math.unit(30000, "kg"),
  23885. name: "Side",
  23886. image: {
  23887. source: "./media/characters/windar/side.svg",
  23888. extra: 1491 / 1248,
  23889. bottom: 82.56 / 1568
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Normal",
  23896. height: math.unit(20, "feet"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23903. {
  23904. side: {
  23905. height: math.unit(15.66, "feet"),
  23906. weight: math.unit(150, "lb"),
  23907. name: "Side",
  23908. image: {
  23909. source: "./media/characters/melody/side.svg",
  23910. extra: 1097 / 944,
  23911. bottom: 11.8 / 1109
  23912. }
  23913. },
  23914. sideOutfit: {
  23915. height: math.unit(15.66, "feet"),
  23916. weight: math.unit(150, "lb"),
  23917. name: "Side (Outfit)",
  23918. image: {
  23919. source: "./media/characters/melody/side-outfit.svg",
  23920. extra: 1097 / 944,
  23921. bottom: 11.8 / 1109
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Normal",
  23928. height: math.unit(15.66, "feet"),
  23929. default: true
  23930. },
  23931. ]
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23935. {
  23936. armoredFront: {
  23937. height: math.unit(8, "feet"),
  23938. weight: math.unit(325, "lb"),
  23939. name: "Front",
  23940. image: {
  23941. source: "./media/characters/windera/armored-front.svg",
  23942. extra: 1830/1598,
  23943. bottom: 151/1981
  23944. },
  23945. form: "armored",
  23946. default: true
  23947. },
  23948. macroFront: {
  23949. height: math.unit(70, "feet"),
  23950. weight: math.unit(315453, "lb"),
  23951. name: "Front",
  23952. image: {
  23953. source: "./media/characters/windera/macro-front.svg",
  23954. extra: 963/883,
  23955. bottom: 23/986
  23956. },
  23957. form: "macro",
  23958. default: true
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Normal",
  23964. height: math.unit(8, "feet"),
  23965. default: true,
  23966. form: "armored"
  23967. },
  23968. {
  23969. name: "Normal",
  23970. height: math.unit(70, "feet"),
  23971. default: true,
  23972. form: "macro"
  23973. },
  23974. ],
  23975. {
  23976. "armored": {
  23977. name: "Armored",
  23978. default: true
  23979. },
  23980. "macro": {
  23981. name: "Macro",
  23982. },
  23983. }
  23984. ))
  23985. characterMakers.push(() => makeCharacter(
  23986. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23987. {
  23988. front: {
  23989. height: math.unit(28.75, "feet"),
  23990. weight: math.unit(2000, "kg"),
  23991. name: "Front",
  23992. image: {
  23993. source: "./media/characters/sonear/front.svg",
  23994. extra: 1041.1 / 964.9,
  23995. bottom: 53.7 / 1096.6
  23996. }
  23997. },
  23998. },
  23999. [
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(28.75, "feet"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24009. {
  24010. side: {
  24011. height: math.unit(25.5, "feet"),
  24012. weight: math.unit(23000, "kg"),
  24013. name: "Side",
  24014. image: {
  24015. source: "./media/characters/kanara/side.svg"
  24016. }
  24017. },
  24018. },
  24019. [
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(25.5, "feet"),
  24023. default: true
  24024. },
  24025. ]
  24026. ))
  24027. characterMakers.push(() => makeCharacter(
  24028. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24029. {
  24030. side: {
  24031. height: math.unit(10, "feet"),
  24032. weight: math.unit(1000, "kg"),
  24033. name: "Side",
  24034. image: {
  24035. source: "./media/characters/ereus/side.svg",
  24036. extra: 1157 / 959,
  24037. bottom: 153 / 1312.5
  24038. }
  24039. },
  24040. },
  24041. [
  24042. {
  24043. name: "Normal",
  24044. height: math.unit(10, "feet"),
  24045. default: true
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24051. {
  24052. side: {
  24053. height: math.unit(4.5, "feet"),
  24054. weight: math.unit(500, "lb"),
  24055. name: "Side",
  24056. image: {
  24057. source: "./media/characters/e-ter/side.svg",
  24058. extra: 1550 / 1248,
  24059. bottom: 146 / 1694
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(4.5, "feet"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24073. {
  24074. side: {
  24075. height: math.unit(9.7, "feet"),
  24076. weight: math.unit(4000, "kg"),
  24077. name: "Side",
  24078. image: {
  24079. source: "./media/characters/yamie/side.svg"
  24080. }
  24081. },
  24082. },
  24083. [
  24084. {
  24085. name: "Normal",
  24086. height: math.unit(9.7, "feet"),
  24087. default: true
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24093. {
  24094. front: {
  24095. height: math.unit(50, "feet"),
  24096. weight: math.unit(50000, "kg"),
  24097. name: "Front",
  24098. image: {
  24099. source: "./media/characters/anders/front.svg",
  24100. extra: 570 / 539,
  24101. bottom: 14.7 / 586.7
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Large",
  24108. height: math.unit(50, "feet")
  24109. },
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(2000, "feet"),
  24113. default: true
  24114. },
  24115. {
  24116. name: "Megamacro",
  24117. height: math.unit(12, "miles")
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24123. {
  24124. front: {
  24125. height: math.unit(7 + 2 / 12, "feet"),
  24126. weight: math.unit(300, "lb"),
  24127. name: "Front",
  24128. image: {
  24129. source: "./media/characters/reban/front.svg",
  24130. extra: 1287/1212,
  24131. bottom: 148/1435
  24132. }
  24133. },
  24134. head: {
  24135. height: math.unit(1.95, "feet"),
  24136. name: "Head",
  24137. image: {
  24138. source: "./media/characters/reban/head.svg"
  24139. }
  24140. },
  24141. maw: {
  24142. height: math.unit(0.95, "feet"),
  24143. name: "Maw",
  24144. image: {
  24145. source: "./media/characters/reban/maw.svg"
  24146. }
  24147. },
  24148. foot: {
  24149. height: math.unit(1.65, "feet"),
  24150. name: "Foot",
  24151. image: {
  24152. source: "./media/characters/reban/foot.svg"
  24153. }
  24154. },
  24155. dick: {
  24156. height: math.unit(7 / 5, "feet"),
  24157. name: "Dick",
  24158. image: {
  24159. source: "./media/characters/reban/dick.svg"
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Natural Height",
  24166. height: math.unit(7 + 2 / 12, "feet")
  24167. },
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(500, "feet"),
  24171. default: true
  24172. },
  24173. {
  24174. name: "Canon Height",
  24175. height: math.unit(50, "AU")
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24181. {
  24182. front: {
  24183. height: math.unit(6, "feet"),
  24184. weight: math.unit(150, "lb"),
  24185. name: "Front",
  24186. image: {
  24187. source: "./media/characters/terrance-keayes/front.svg",
  24188. extra: 1.005,
  24189. bottom: 151 / 1615
  24190. }
  24191. },
  24192. side: {
  24193. height: math.unit(6, "feet"),
  24194. weight: math.unit(150, "lb"),
  24195. name: "Side",
  24196. image: {
  24197. source: "./media/characters/terrance-keayes/side.svg",
  24198. extra: 1.005,
  24199. bottom: 129.4 / 1544
  24200. }
  24201. },
  24202. back: {
  24203. height: math.unit(6, "feet"),
  24204. weight: math.unit(150, "lb"),
  24205. name: "Back",
  24206. image: {
  24207. source: "./media/characters/terrance-keayes/back.svg",
  24208. extra: 1.005,
  24209. bottom: 58.4 / 1557.3
  24210. }
  24211. },
  24212. dick: {
  24213. height: math.unit(6 * 0.208, "feet"),
  24214. name: "Dick",
  24215. image: {
  24216. source: "./media/characters/terrance-keayes/dick.svg"
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Canon Height",
  24223. height: math.unit(35, "miles"),
  24224. default: true
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(6, "feet"),
  24233. weight: math.unit(150, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/ofelia/front.svg",
  24237. extra: 1130/1117,
  24238. bottom: 91/1221
  24239. }
  24240. },
  24241. back: {
  24242. height: math.unit(6, "feet"),
  24243. weight: math.unit(150, "lb"),
  24244. name: "Back",
  24245. image: {
  24246. source: "./media/characters/ofelia/back.svg",
  24247. extra: 1172/1159,
  24248. bottom: 28/1200
  24249. }
  24250. },
  24251. maw: {
  24252. height: math.unit(1, "feet"),
  24253. name: "Maw",
  24254. image: {
  24255. source: "./media/characters/ofelia/maw.svg"
  24256. }
  24257. },
  24258. foot: {
  24259. height: math.unit(1.949, "feet"),
  24260. name: "Foot",
  24261. image: {
  24262. source: "./media/characters/ofelia/foot.svg"
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Canon Height",
  24269. height: math.unit(2000, "miles"),
  24270. default: true
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24276. {
  24277. front: {
  24278. height: math.unit(6, "feet"),
  24279. weight: math.unit(150, "lb"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/samuel/front.svg",
  24283. extra: 265 / 258,
  24284. bottom: 2 / 266.1566
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Macro",
  24291. height: math.unit(100, "feet"),
  24292. default: true
  24293. },
  24294. {
  24295. name: "Full Size",
  24296. height: math.unit(1000, "miles")
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24302. {
  24303. front: {
  24304. height: math.unit(6, "feet"),
  24305. weight: math.unit(300, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/beishir-kiel/front.svg",
  24309. extra: 569 / 547,
  24310. bottom: 41.9 / 609
  24311. }
  24312. },
  24313. maw: {
  24314. height: math.unit(6 * 0.202, "feet"),
  24315. name: "Maw",
  24316. image: {
  24317. source: "./media/characters/beishir-kiel/maw.svg"
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Macro",
  24324. height: math.unit(300, "feet"),
  24325. default: true
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24331. {
  24332. front: {
  24333. height: math.unit(5 + 7/12, "feet"),
  24334. weight: math.unit(120, "lb"),
  24335. name: "Front",
  24336. image: {
  24337. source: "./media/characters/logan-grey/front.svg",
  24338. extra: 1836/1738,
  24339. bottom: 108/1944
  24340. }
  24341. },
  24342. back: {
  24343. height: math.unit(5 + 7/12, "feet"),
  24344. weight: math.unit(120, "lb"),
  24345. name: "Back",
  24346. image: {
  24347. source: "./media/characters/logan-grey/back.svg",
  24348. extra: 1880/1794,
  24349. bottom: 24/1904
  24350. }
  24351. },
  24352. frontSfw: {
  24353. height: math.unit(5 + 7/12, "feet"),
  24354. weight: math.unit(120, "lb"),
  24355. name: "Front (SFW)",
  24356. image: {
  24357. source: "./media/characters/logan-grey/front-sfw.svg",
  24358. extra: 1836/1738,
  24359. bottom: 108/1944
  24360. }
  24361. },
  24362. backSfw: {
  24363. height: math.unit(5 + 7/12, "feet"),
  24364. weight: math.unit(120, "lb"),
  24365. name: "Back (SFW)",
  24366. image: {
  24367. source: "./media/characters/logan-grey/back-sfw.svg",
  24368. extra: 1880/1794,
  24369. bottom: 24/1904
  24370. }
  24371. },
  24372. hands: {
  24373. height: math.unit(0.84, "feet"),
  24374. name: "Hands",
  24375. image: {
  24376. source: "./media/characters/logan-grey/hands.svg"
  24377. }
  24378. },
  24379. paws: {
  24380. height: math.unit(0.72, "feet"),
  24381. name: "Paws",
  24382. image: {
  24383. source: "./media/characters/logan-grey/paws.svg"
  24384. }
  24385. },
  24386. cock: {
  24387. height: math.unit(1.45, "feet"),
  24388. name: "Cock",
  24389. image: {
  24390. source: "./media/characters/logan-grey/cock.svg"
  24391. }
  24392. },
  24393. cockAlt: {
  24394. height: math.unit(1.437, "feet"),
  24395. name: "Cock (alt)",
  24396. image: {
  24397. source: "./media/characters/logan-grey/cock-alt.svg"
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(5 + 8 / 12, "feet")
  24405. },
  24406. {
  24407. name: "The 500 Foot Femboy",
  24408. height: math.unit(500, "feet"),
  24409. default: true
  24410. },
  24411. {
  24412. name: "Megmacro",
  24413. height: math.unit(20, "miles")
  24414. },
  24415. ]
  24416. ))
  24417. characterMakers.push(() => makeCharacter(
  24418. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24419. {
  24420. front: {
  24421. height: math.unit(8 + 2 / 12, "feet"),
  24422. weight: math.unit(275, "lb"),
  24423. name: "Front",
  24424. image: {
  24425. source: "./media/characters/draganta/front.svg",
  24426. extra: 1177 / 1135,
  24427. bottom: 33.46 / 1212.1
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(8 + 6 / 12, "feet"),
  24435. default: true
  24436. },
  24437. {
  24438. name: "Macro",
  24439. height: math.unit(150, "feet")
  24440. },
  24441. {
  24442. name: "Megamacro",
  24443. height: math.unit(1000, "miles")
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24449. {
  24450. front: {
  24451. height: math.unit(1.72, "m"),
  24452. weight: math.unit(80, "lb"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/voski/front.svg",
  24456. extra: 2076.22 / 2022.4,
  24457. bottom: 102.7 / 2177.3866
  24458. }
  24459. },
  24460. frontFlaccid: {
  24461. height: math.unit(1.72, "m"),
  24462. weight: math.unit(80, "lb"),
  24463. name: "Front (Flaccid)",
  24464. image: {
  24465. source: "./media/characters/voski/front-flaccid.svg",
  24466. extra: 2076.22 / 2022.4,
  24467. bottom: 102.7 / 2177.3866
  24468. }
  24469. },
  24470. frontErect: {
  24471. height: math.unit(1.72, "m"),
  24472. weight: math.unit(80, "lb"),
  24473. name: "Front (Erect)",
  24474. image: {
  24475. source: "./media/characters/voski/front-erect.svg",
  24476. extra: 2076.22 / 2022.4,
  24477. bottom: 102.7 / 2177.3866
  24478. }
  24479. },
  24480. back: {
  24481. height: math.unit(1.72, "m"),
  24482. weight: math.unit(80, "lb"),
  24483. name: "Back",
  24484. image: {
  24485. source: "./media/characters/voski/back.svg",
  24486. extra: 2104 / 2051,
  24487. bottom: 10.45 / 2113.63
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Normal",
  24494. height: math.unit(1.72, "m")
  24495. },
  24496. {
  24497. name: "Macro",
  24498. height: math.unit(55, "m"),
  24499. default: true
  24500. },
  24501. {
  24502. name: "Macro+",
  24503. height: math.unit(300, "m")
  24504. },
  24505. {
  24506. name: "Macro++",
  24507. height: math.unit(700, "m")
  24508. },
  24509. {
  24510. name: "Macro+++",
  24511. height: math.unit(4500, "m")
  24512. },
  24513. {
  24514. name: "Macro++++",
  24515. height: math.unit(45, "km")
  24516. },
  24517. {
  24518. name: "Macro+++++",
  24519. height: math.unit(1220, "km")
  24520. },
  24521. ]
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24525. {
  24526. front: {
  24527. height: math.unit(2.3, "m"),
  24528. weight: math.unit(304, "kg"),
  24529. name: "Front",
  24530. image: {
  24531. source: "./media/characters/icowom-lee/front.svg",
  24532. extra: 985 / 955,
  24533. bottom: 25.4 / 1012
  24534. }
  24535. },
  24536. fronttentacles: {
  24537. height: math.unit(2.3, "m"),
  24538. weight: math.unit(304, "kg"),
  24539. name: "Front-tentacles",
  24540. image: {
  24541. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24542. extra: 985 / 955,
  24543. bottom: 25.4 / 1012
  24544. }
  24545. },
  24546. back: {
  24547. height: math.unit(2.3, "m"),
  24548. weight: math.unit(304, "kg"),
  24549. name: "Back",
  24550. image: {
  24551. source: "./media/characters/icowom-lee/back.svg",
  24552. extra: 975 / 954,
  24553. bottom: 9.5 / 985
  24554. }
  24555. },
  24556. backtentacles: {
  24557. height: math.unit(2.3, "m"),
  24558. weight: math.unit(304, "kg"),
  24559. name: "Back-tentacles",
  24560. image: {
  24561. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24562. extra: 975 / 954,
  24563. bottom: 9.5 / 985
  24564. }
  24565. },
  24566. frontDressed: {
  24567. height: math.unit(2.3, "m"),
  24568. weight: math.unit(304, "kg"),
  24569. name: "Front (Dressed)",
  24570. image: {
  24571. source: "./media/characters/icowom-lee/front-dressed.svg",
  24572. extra: 3076 / 2933,
  24573. bottom: 51.4 / 3125.1889
  24574. }
  24575. },
  24576. rump: {
  24577. height: math.unit(0.776, "meters"),
  24578. name: "Rump",
  24579. image: {
  24580. source: "./media/characters/icowom-lee/rump.svg"
  24581. }
  24582. },
  24583. genitals: {
  24584. height: math.unit(0.78, "meters"),
  24585. name: "Genitals",
  24586. image: {
  24587. source: "./media/characters/icowom-lee/genitals.svg"
  24588. }
  24589. },
  24590. },
  24591. [
  24592. {
  24593. name: "Normal",
  24594. height: math.unit(2.3, "meters"),
  24595. default: true
  24596. },
  24597. {
  24598. name: "Macro",
  24599. height: math.unit(94, "meters"),
  24600. default: true
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24606. {
  24607. front: {
  24608. height: math.unit(22, "meters"),
  24609. weight: math.unit(21000, "kg"),
  24610. name: "Front",
  24611. image: {
  24612. source: "./media/characters/shock-diamond/front.svg",
  24613. extra: 2204 / 2053,
  24614. bottom: 65 / 2239.47
  24615. }
  24616. },
  24617. frontNude: {
  24618. height: math.unit(22, "meters"),
  24619. weight: math.unit(21000, "kg"),
  24620. name: "Front (Nude)",
  24621. image: {
  24622. source: "./media/characters/shock-diamond/front-nude.svg",
  24623. extra: 2514 / 2285,
  24624. bottom: 13 / 2527.56
  24625. }
  24626. },
  24627. },
  24628. [
  24629. {
  24630. name: "Normal",
  24631. height: math.unit(3, "meters")
  24632. },
  24633. {
  24634. name: "Macro",
  24635. height: math.unit(22, "meters"),
  24636. default: true
  24637. },
  24638. ]
  24639. ))
  24640. characterMakers.push(() => makeCharacter(
  24641. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24642. {
  24643. front: {
  24644. height: math.unit(5 + 4/12, "feet"),
  24645. weight: math.unit(125, "lb"),
  24646. name: "Front",
  24647. image: {
  24648. source: "./media/characters/rory/front.svg",
  24649. extra: 1790/1681,
  24650. bottom: 66/1856
  24651. },
  24652. form: "normal",
  24653. default: true
  24654. },
  24655. back: {
  24656. height: math.unit(5 + 4/12, "feet"),
  24657. weight: math.unit(125, "lb"),
  24658. name: "Back",
  24659. image: {
  24660. source: "./media/characters/rory/back.svg",
  24661. extra: 1805/1690,
  24662. bottom: 56/1861
  24663. },
  24664. form: "normal"
  24665. },
  24666. frontDressed: {
  24667. height: math.unit(5 + 4/12, "feet"),
  24668. weight: math.unit(125, "lb"),
  24669. name: "Front (Dressed)",
  24670. image: {
  24671. source: "./media/characters/rory/front-dressed.svg",
  24672. extra: 1790/1681,
  24673. bottom: 66/1856
  24674. },
  24675. form: "normal"
  24676. },
  24677. backDressed: {
  24678. height: math.unit(5 + 4/12, "feet"),
  24679. weight: math.unit(125, "lb"),
  24680. name: "Back (Dressed)",
  24681. image: {
  24682. source: "./media/characters/rory/back-dressed.svg",
  24683. extra: 1805/1690,
  24684. bottom: 56/1861
  24685. },
  24686. form: "normal"
  24687. },
  24688. frontNsfw: {
  24689. height: math.unit(5 + 4/12, "feet"),
  24690. weight: math.unit(125, "lb"),
  24691. name: "Front (NSFW)",
  24692. image: {
  24693. source: "./media/characters/rory/front-nsfw.svg",
  24694. extra: 1790/1681,
  24695. bottom: 66/1856
  24696. },
  24697. form: "normal"
  24698. },
  24699. backNsfw: {
  24700. height: math.unit(5 + 4/12, "feet"),
  24701. weight: math.unit(125, "lb"),
  24702. name: "Back (NSFW)",
  24703. image: {
  24704. source: "./media/characters/rory/back-nsfw.svg",
  24705. extra: 1805/1690,
  24706. bottom: 56/1861
  24707. },
  24708. form: "normal"
  24709. },
  24710. dick: {
  24711. height: math.unit(0.8, "feet"),
  24712. name: "Dick",
  24713. image: {
  24714. source: "./media/characters/rory/dick.svg"
  24715. },
  24716. form: "normal"
  24717. },
  24718. thicc_front: {
  24719. height: math.unit(5 + 4/12, "feet"),
  24720. weight: math.unit(195, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/rory/thicc-front.svg",
  24724. extra: 1220/1100,
  24725. bottom: 103/1323
  24726. },
  24727. form: "thicc",
  24728. default: true
  24729. },
  24730. thicc_back: {
  24731. height: math.unit(5 + 4/12, "feet"),
  24732. weight: math.unit(195, "lb"),
  24733. name: "Back",
  24734. image: {
  24735. source: "./media/characters/rory/thicc-back.svg",
  24736. extra: 1166/1086,
  24737. bottom: 35/1201
  24738. },
  24739. form: "thicc"
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Micro",
  24745. height: math.unit(3, "inches"),
  24746. allForms: true
  24747. },
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(5 + 4/12, "feet"),
  24751. allForms: true,
  24752. default: true
  24753. },
  24754. {
  24755. name: "Macro",
  24756. height: math.unit(90, "feet"),
  24757. allForms: true
  24758. },
  24759. {
  24760. name: "Supercharged",
  24761. height: math.unit(270, "feet"),
  24762. allForms: true
  24763. },
  24764. ],
  24765. {
  24766. "normal": {
  24767. name: "Normal",
  24768. default: true
  24769. },
  24770. "thicc": {
  24771. name: "Thicc",
  24772. },
  24773. }
  24774. ))
  24775. characterMakers.push(() => makeCharacter(
  24776. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24777. {
  24778. front: {
  24779. height: math.unit(5 + 9 / 12, "feet"),
  24780. weight: math.unit(190, "lb"),
  24781. name: "Front",
  24782. image: {
  24783. source: "./media/characters/sprisk/front.svg",
  24784. extra: 1225 / 1180,
  24785. bottom: 42.7 / 1266.4
  24786. }
  24787. },
  24788. frontNsfw: {
  24789. height: math.unit(5 + 9 / 12, "feet"),
  24790. weight: math.unit(190, "lb"),
  24791. name: "Front (NSFW)",
  24792. image: {
  24793. source: "./media/characters/sprisk/front-nsfw.svg",
  24794. extra: 1225 / 1180,
  24795. bottom: 42.7 / 1266.4
  24796. }
  24797. },
  24798. back: {
  24799. height: math.unit(5 + 9 / 12, "feet"),
  24800. weight: math.unit(190, "lb"),
  24801. name: "Back",
  24802. image: {
  24803. source: "./media/characters/sprisk/back.svg",
  24804. extra: 1247 / 1200,
  24805. bottom: 5.6 / 1253.04
  24806. }
  24807. },
  24808. },
  24809. [
  24810. {
  24811. name: "Tiny",
  24812. height: math.unit(2, "inches")
  24813. },
  24814. {
  24815. name: "Normal",
  24816. height: math.unit(5 + 9 / 12, "feet"),
  24817. default: true
  24818. },
  24819. {
  24820. name: "Mini Macro",
  24821. height: math.unit(18, "feet")
  24822. },
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(100, "feet")
  24826. },
  24827. {
  24828. name: "MACRO",
  24829. height: math.unit(50, "miles")
  24830. },
  24831. {
  24832. name: "M A C R O",
  24833. height: math.unit(300, "miles")
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24839. {
  24840. side: {
  24841. height: math.unit(15.6, "meters"),
  24842. weight: math.unit(700000, "kg"),
  24843. name: "Side",
  24844. image: {
  24845. source: "./media/characters/bunsen/side.svg",
  24846. extra: 1644 / 358
  24847. }
  24848. },
  24849. foot: {
  24850. height: math.unit(1.611 * 1644 / 358, "meter"),
  24851. name: "Foot",
  24852. image: {
  24853. source: "./media/characters/bunsen/foot.svg"
  24854. }
  24855. },
  24856. },
  24857. [
  24858. {
  24859. name: "Small",
  24860. height: math.unit(10, "feet")
  24861. },
  24862. {
  24863. name: "Normal",
  24864. height: math.unit(15.6, "meters"),
  24865. default: true
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(4 + 11 / 12, "feet"),
  24874. weight: math.unit(140, "lb"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/sesh/front.svg",
  24878. extra: 3420 / 3231,
  24879. bottom: 72 / 3949.5
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(4 + 11 / 12, "feet")
  24887. },
  24888. {
  24889. name: "Grown",
  24890. height: math.unit(15, "feet"),
  24891. default: true
  24892. },
  24893. {
  24894. name: "Macro",
  24895. height: math.unit(1500, "feet")
  24896. },
  24897. {
  24898. name: "Megamacro",
  24899. height: math.unit(30, "miles")
  24900. },
  24901. {
  24902. name: "Continental",
  24903. height: math.unit(3000, "miles")
  24904. },
  24905. {
  24906. name: "Gravity Mass",
  24907. height: math.unit(300000, "miles")
  24908. },
  24909. {
  24910. name: "Planet Buster",
  24911. height: math.unit(30000000, "miles")
  24912. },
  24913. {
  24914. name: "Big",
  24915. height: math.unit(3000000000, "miles")
  24916. },
  24917. ]
  24918. ))
  24919. characterMakers.push(() => makeCharacter(
  24920. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24921. {
  24922. front: {
  24923. height: math.unit(9, "feet"),
  24924. weight: math.unit(350, "lb"),
  24925. name: "Front",
  24926. image: {
  24927. source: "./media/characters/pepper/front.svg",
  24928. extra: 1448 / 1312,
  24929. bottom: 9.4 / 1457.88
  24930. }
  24931. },
  24932. back: {
  24933. height: math.unit(9, "feet"),
  24934. weight: math.unit(350, "lb"),
  24935. name: "Back",
  24936. image: {
  24937. source: "./media/characters/pepper/back.svg",
  24938. extra: 1423 / 1300,
  24939. bottom: 4.6 / 1429
  24940. }
  24941. },
  24942. maw: {
  24943. height: math.unit(0.932, "feet"),
  24944. name: "Maw",
  24945. image: {
  24946. source: "./media/characters/pepper/maw.svg"
  24947. }
  24948. },
  24949. },
  24950. [
  24951. {
  24952. name: "Normal",
  24953. height: math.unit(9, "feet"),
  24954. default: true
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(6, "feet"),
  24963. weight: math.unit(150, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/maelstrom/front.svg",
  24967. extra: 2100 / 1883,
  24968. bottom: 94 / 2196.7
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Less Kaiju",
  24975. height: math.unit(200, "feet")
  24976. },
  24977. {
  24978. name: "Kaiju",
  24979. height: math.unit(400, "feet"),
  24980. default: true
  24981. },
  24982. {
  24983. name: "Kaiju-er",
  24984. height: math.unit(600, "feet")
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(6 + 5 / 12, "feet"),
  24993. weight: math.unit(180, "lb"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/lexir/front.svg",
  24997. extra: 180 / 172,
  24998. bottom: 12 / 192
  24999. }
  25000. },
  25001. back: {
  25002. height: math.unit(6 + 5 / 12, "feet"),
  25003. weight: math.unit(180, "lb"),
  25004. name: "Back",
  25005. image: {
  25006. source: "./media/characters/lexir/back.svg",
  25007. extra: 1273/1201,
  25008. bottom: 39/1312
  25009. }
  25010. },
  25011. },
  25012. [
  25013. {
  25014. name: "Very Smal",
  25015. height: math.unit(1, "nm")
  25016. },
  25017. {
  25018. name: "Normal",
  25019. height: math.unit(6 + 5 / 12, "feet"),
  25020. default: true
  25021. },
  25022. {
  25023. name: "Macro",
  25024. height: math.unit(1, "mile")
  25025. },
  25026. {
  25027. name: "Megamacro",
  25028. height: math.unit(50, "miles")
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25034. {
  25035. front: {
  25036. height: math.unit(1.5, "meters"),
  25037. weight: math.unit(100, "lb"),
  25038. name: "Front",
  25039. image: {
  25040. source: "./media/characters/maksio/front.svg",
  25041. extra: 1549 / 1531,
  25042. bottom: 123.7 / 1674.5429
  25043. }
  25044. },
  25045. back: {
  25046. height: math.unit(1.5, "meters"),
  25047. weight: math.unit(100, "lb"),
  25048. name: "Back",
  25049. image: {
  25050. source: "./media/characters/maksio/back.svg",
  25051. extra: 1541 / 1509,
  25052. bottom: 97 / 1639
  25053. }
  25054. },
  25055. hand: {
  25056. height: math.unit(0.621, "feet"),
  25057. name: "Hand",
  25058. image: {
  25059. source: "./media/characters/maksio/hand.svg"
  25060. }
  25061. },
  25062. foot: {
  25063. height: math.unit(1.611, "feet"),
  25064. name: "Foot",
  25065. image: {
  25066. source: "./media/characters/maksio/foot.svg"
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Shrunken",
  25073. height: math.unit(10, "cm")
  25074. },
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(150, "cm"),
  25078. default: true
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25084. {
  25085. front: {
  25086. height: math.unit(100, "feet"),
  25087. name: "Front",
  25088. image: {
  25089. source: "./media/characters/erza-bear/front.svg",
  25090. extra: 2449 / 2390,
  25091. bottom: 46 / 2494
  25092. }
  25093. },
  25094. back: {
  25095. height: math.unit(100, "feet"),
  25096. name: "Back",
  25097. image: {
  25098. source: "./media/characters/erza-bear/back.svg",
  25099. extra: 2489 / 2430,
  25100. bottom: 85.4 / 2480
  25101. }
  25102. },
  25103. tail: {
  25104. height: math.unit(42, "feet"),
  25105. name: "Tail",
  25106. image: {
  25107. source: "./media/characters/erza-bear/tail.svg"
  25108. }
  25109. },
  25110. tongue: {
  25111. height: math.unit(8, "feet"),
  25112. name: "Tongue",
  25113. image: {
  25114. source: "./media/characters/erza-bear/tongue.svg"
  25115. }
  25116. },
  25117. dick: {
  25118. height: math.unit(10.5, "feet"),
  25119. name: "Dick",
  25120. image: {
  25121. source: "./media/characters/erza-bear/dick.svg"
  25122. }
  25123. },
  25124. dickVertical: {
  25125. height: math.unit(16.9, "feet"),
  25126. name: "Dick (Vertical)",
  25127. image: {
  25128. source: "./media/characters/erza-bear/dick-vertical.svg"
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Macro",
  25135. height: math.unit(100, "feet"),
  25136. default: true
  25137. },
  25138. ]
  25139. ))
  25140. characterMakers.push(() => makeCharacter(
  25141. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25142. {
  25143. front: {
  25144. height: math.unit(172, "cm"),
  25145. weight: math.unit(73, "kg"),
  25146. name: "Front",
  25147. image: {
  25148. source: "./media/characters/violet-flor/front.svg",
  25149. extra: 1530 / 1442,
  25150. bottom: 61.9 / 1588.8
  25151. }
  25152. },
  25153. back: {
  25154. height: math.unit(180, "cm"),
  25155. weight: math.unit(73, "kg"),
  25156. name: "Back",
  25157. image: {
  25158. source: "./media/characters/violet-flor/back.svg",
  25159. extra: 1692 / 1630,
  25160. bottom: 20 / 1712
  25161. }
  25162. },
  25163. },
  25164. [
  25165. {
  25166. name: "Normal",
  25167. height: math.unit(172, "cm"),
  25168. default: true
  25169. },
  25170. ]
  25171. ))
  25172. characterMakers.push(() => makeCharacter(
  25173. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25174. {
  25175. front: {
  25176. height: math.unit(6, "feet"),
  25177. weight: math.unit(220, "lb"),
  25178. name: "Front",
  25179. image: {
  25180. source: "./media/characters/lynn-rhea/front.svg",
  25181. extra: 310 / 273
  25182. }
  25183. },
  25184. back: {
  25185. height: math.unit(6, "feet"),
  25186. weight: math.unit(220, "lb"),
  25187. name: "Back",
  25188. image: {
  25189. source: "./media/characters/lynn-rhea/back.svg",
  25190. extra: 310 / 273
  25191. }
  25192. },
  25193. dicks: {
  25194. height: math.unit(0.9, "feet"),
  25195. name: "Dicks",
  25196. image: {
  25197. source: "./media/characters/lynn-rhea/dicks.svg"
  25198. }
  25199. },
  25200. slit: {
  25201. height: math.unit(0.4, "feet"),
  25202. name: "Slit",
  25203. image: {
  25204. source: "./media/characters/lynn-rhea/slit.svg"
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Micro",
  25211. height: math.unit(1, "inch")
  25212. },
  25213. {
  25214. name: "Macro",
  25215. height: math.unit(60, "feet"),
  25216. default: true
  25217. },
  25218. {
  25219. name: "Megamacro",
  25220. height: math.unit(2, "miles")
  25221. },
  25222. {
  25223. name: "Gigamacro",
  25224. height: math.unit(3, "earths")
  25225. },
  25226. {
  25227. name: "Galactic",
  25228. height: math.unit(0.8, "galaxies")
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25234. {
  25235. front: {
  25236. height: math.unit(1600, "feet"),
  25237. weight: math.unit(85758785169, "kg"),
  25238. name: "Front",
  25239. image: {
  25240. source: "./media/characters/valathos/front.svg",
  25241. extra: 1451 / 1339
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Macro",
  25248. height: math.unit(1600, "feet"),
  25249. default: true
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25255. {
  25256. front: {
  25257. height: math.unit(7 + 5 / 12, "feet"),
  25258. weight: math.unit(300, "lb"),
  25259. name: "Front",
  25260. image: {
  25261. source: "./media/characters/azula/front.svg",
  25262. extra: 3208 / 2880,
  25263. bottom: 80.2 / 3277
  25264. }
  25265. },
  25266. back: {
  25267. height: math.unit(7 + 5 / 12, "feet"),
  25268. weight: math.unit(300, "lb"),
  25269. name: "Back",
  25270. image: {
  25271. source: "./media/characters/azula/back.svg",
  25272. extra: 3169 / 2822,
  25273. bottom: 150.6 / 3321
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(7 + 5 / 12, "feet"),
  25281. default: true
  25282. },
  25283. {
  25284. name: "Big",
  25285. height: math.unit(20, "feet")
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25291. {
  25292. front: {
  25293. height: math.unit(5 + 1 / 12, "feet"),
  25294. weight: math.unit(110, "lb"),
  25295. name: "Front",
  25296. image: {
  25297. source: "./media/characters/rupert/front.svg",
  25298. extra: 1549 / 1495,
  25299. bottom: 54.2 / 1604.4
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Normal",
  25306. height: math.unit(5 + 1 / 12, "feet"),
  25307. default: true
  25308. },
  25309. ]
  25310. ))
  25311. characterMakers.push(() => makeCharacter(
  25312. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25313. {
  25314. front: {
  25315. height: math.unit(8 + 4 / 12, "feet"),
  25316. weight: math.unit(350, "lb"),
  25317. name: "Front",
  25318. image: {
  25319. source: "./media/characters/sheera-castellar/front.svg",
  25320. extra: 1957 / 1894,
  25321. bottom: 26.97 / 1975.017
  25322. }
  25323. },
  25324. side: {
  25325. height: math.unit(8 + 4 / 12, "feet"),
  25326. weight: math.unit(350, "lb"),
  25327. name: "Side",
  25328. image: {
  25329. source: "./media/characters/sheera-castellar/side.svg",
  25330. extra: 1957 / 1894
  25331. }
  25332. },
  25333. back: {
  25334. height: math.unit(8 + 4 / 12, "feet"),
  25335. weight: math.unit(350, "lb"),
  25336. name: "Back",
  25337. image: {
  25338. source: "./media/characters/sheera-castellar/back.svg",
  25339. extra: 1957 / 1894
  25340. }
  25341. },
  25342. angled: {
  25343. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25344. weight: math.unit(350, "lb"),
  25345. name: "Angled",
  25346. image: {
  25347. source: "./media/characters/sheera-castellar/angled.svg",
  25348. extra: 1807 / 1707,
  25349. bottom: 68 / 1875
  25350. }
  25351. },
  25352. genitals: {
  25353. height: math.unit(2.2, "feet"),
  25354. name: "Genitals",
  25355. image: {
  25356. source: "./media/characters/sheera-castellar/genitals.svg"
  25357. }
  25358. },
  25359. taur: {
  25360. height: math.unit(10 + 6/12, "feet"),
  25361. name: "Taur",
  25362. image: {
  25363. source: "./media/characters/sheera-castellar/taur.svg",
  25364. extra: 2017/1909,
  25365. bottom: 185/2202
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Normal",
  25372. height: math.unit(8 + 4 / 12, "feet")
  25373. },
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(150, "feet"),
  25377. default: true
  25378. },
  25379. {
  25380. name: "Macro+",
  25381. height: math.unit(800, "feet")
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(6, "feet"),
  25390. weight: math.unit(150, "lb"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/jaipur/front.svg",
  25394. extra: 3860 / 3731,
  25395. bottom: 287 / 4140
  25396. }
  25397. },
  25398. back: {
  25399. height: math.unit(6, "feet"),
  25400. weight: math.unit(150, "lb"),
  25401. name: "Back",
  25402. image: {
  25403. source: "./media/characters/jaipur/back.svg",
  25404. extra: 1637/1561,
  25405. bottom: 154/1791
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(1.85, "meters"),
  25413. default: true
  25414. },
  25415. {
  25416. name: "Macro",
  25417. height: math.unit(150, "meters")
  25418. },
  25419. {
  25420. name: "Macro+",
  25421. height: math.unit(0.5, "miles")
  25422. },
  25423. {
  25424. name: "Macro++",
  25425. height: math.unit(2.5, "miles")
  25426. },
  25427. {
  25428. name: "Macro+++",
  25429. height: math.unit(12, "miles")
  25430. },
  25431. {
  25432. name: "Macro++++",
  25433. height: math.unit(120, "miles")
  25434. },
  25435. {
  25436. name: "Macro+++++",
  25437. height: math.unit(1200, "miles")
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(6, "feet"),
  25446. weight: math.unit(150, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/sheila-wolf/front.svg",
  25450. extra: 1931 / 1808,
  25451. bottom: 29.5 / 1960
  25452. }
  25453. },
  25454. dick: {
  25455. height: math.unit(1.464, "feet"),
  25456. name: "Dick",
  25457. image: {
  25458. source: "./media/characters/sheila-wolf/dick.svg"
  25459. }
  25460. },
  25461. muzzle: {
  25462. height: math.unit(0.513, "feet"),
  25463. name: "Muzzle",
  25464. image: {
  25465. source: "./media/characters/sheila-wolf/muzzle.svg"
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Macro",
  25472. height: math.unit(70, "feet"),
  25473. default: true
  25474. },
  25475. ]
  25476. ))
  25477. characterMakers.push(() => makeCharacter(
  25478. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25479. {
  25480. front: {
  25481. height: math.unit(32, "meters"),
  25482. weight: math.unit(300000, "kg"),
  25483. name: "Front",
  25484. image: {
  25485. source: "./media/characters/almor/front.svg",
  25486. extra: 1408 / 1322,
  25487. bottom: 94.6 / 1506.5
  25488. }
  25489. },
  25490. },
  25491. [
  25492. {
  25493. name: "Macro",
  25494. height: math.unit(32, "meters"),
  25495. default: true
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25501. {
  25502. front: {
  25503. height: math.unit(7, "feet"),
  25504. weight: math.unit(200, "lb"),
  25505. name: "Front",
  25506. image: {
  25507. source: "./media/characters/silver/front.svg",
  25508. extra: 472.1 / 450.5,
  25509. bottom: 26.5 / 499.424
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Normal",
  25516. height: math.unit(7, "feet"),
  25517. default: true
  25518. },
  25519. {
  25520. name: "Macro",
  25521. height: math.unit(800, "feet")
  25522. },
  25523. {
  25524. name: "Megamacro",
  25525. height: math.unit(250, "miles")
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(6, "feet"),
  25534. weight: math.unit(150, "lb"),
  25535. name: "Front",
  25536. image: {
  25537. source: "./media/characters/pliskin/front.svg",
  25538. extra: 1469 / 1359,
  25539. bottom: 70 / 1540
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Micro",
  25546. height: math.unit(3, "inches")
  25547. },
  25548. {
  25549. name: "Normal",
  25550. height: math.unit(5 + 11 / 12, "feet"),
  25551. default: true
  25552. },
  25553. {
  25554. name: "Macro",
  25555. height: math.unit(120, "feet")
  25556. },
  25557. ]
  25558. ))
  25559. characterMakers.push(() => makeCharacter(
  25560. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25561. {
  25562. front: {
  25563. height: math.unit(6, "feet"),
  25564. weight: math.unit(150, "lb"),
  25565. name: "Front",
  25566. image: {
  25567. source: "./media/characters/sammy/front.svg",
  25568. extra: 1193 / 1089,
  25569. bottom: 30.5 / 1226
  25570. }
  25571. },
  25572. },
  25573. [
  25574. {
  25575. name: "Macro",
  25576. height: math.unit(1700, "feet"),
  25577. default: true
  25578. },
  25579. {
  25580. name: "Examacro",
  25581. height: math.unit(2.5e9, "lightyears")
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25587. {
  25588. front: {
  25589. height: math.unit(21, "meters"),
  25590. weight: math.unit(12, "tonnes"),
  25591. name: "Front",
  25592. image: {
  25593. source: "./media/characters/kuru/front.svg",
  25594. extra: 4301 / 3785,
  25595. bottom: 371.3 / 4691
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Macro",
  25602. height: math.unit(21, "meters"),
  25603. default: true
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25609. {
  25610. front: {
  25611. height: math.unit(23, "meters"),
  25612. weight: math.unit(12.2, "tonnes"),
  25613. name: "Front",
  25614. image: {
  25615. source: "./media/characters/rakka/front.svg",
  25616. extra: 4670 / 4169,
  25617. bottom: 301 / 4968.7
  25618. }
  25619. },
  25620. },
  25621. [
  25622. {
  25623. name: "Macro",
  25624. height: math.unit(23, "meters"),
  25625. default: true
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25631. {
  25632. front: {
  25633. height: math.unit(6, "feet"),
  25634. weight: math.unit(150, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/rhys-feline/front.svg",
  25638. extra: 2488 / 2308,
  25639. bottom: 35.67 / 2519.19
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Really Small",
  25646. height: math.unit(1, "nm")
  25647. },
  25648. {
  25649. name: "Micro",
  25650. height: math.unit(4, "inches")
  25651. },
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(4 + 10 / 12, "feet"),
  25655. default: true
  25656. },
  25657. {
  25658. name: "Macro",
  25659. height: math.unit(100, "feet")
  25660. },
  25661. {
  25662. name: "Megamacto",
  25663. height: math.unit(50, "miles")
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25669. {
  25670. side: {
  25671. height: math.unit(30, "feet"),
  25672. weight: math.unit(35000, "kg"),
  25673. name: "Side",
  25674. image: {
  25675. source: "./media/characters/alydar/side.svg",
  25676. extra: 234 / 222,
  25677. bottom: 6.5 / 241
  25678. }
  25679. },
  25680. front: {
  25681. height: math.unit(30, "feet"),
  25682. weight: math.unit(35000, "kg"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/alydar/front.svg",
  25686. extra: 223.37 / 210.2,
  25687. bottom: 22.3 / 246.76
  25688. }
  25689. },
  25690. top: {
  25691. height: math.unit(64.54, "feet"),
  25692. weight: math.unit(35000, "kg"),
  25693. name: "Top",
  25694. image: {
  25695. source: "./media/characters/alydar/top.svg"
  25696. }
  25697. },
  25698. anthro: {
  25699. height: math.unit(30, "feet"),
  25700. weight: math.unit(9000, "kg"),
  25701. name: "Anthro",
  25702. image: {
  25703. source: "./media/characters/alydar/anthro.svg",
  25704. extra: 432 / 421,
  25705. bottom: 7.18 / 440
  25706. }
  25707. },
  25708. maw: {
  25709. height: math.unit(11.693, "feet"),
  25710. name: "Maw",
  25711. image: {
  25712. source: "./media/characters/alydar/maw.svg"
  25713. }
  25714. },
  25715. head: {
  25716. height: math.unit(11.693, "feet"),
  25717. name: "Head",
  25718. image: {
  25719. source: "./media/characters/alydar/head.svg"
  25720. }
  25721. },
  25722. headAlt: {
  25723. height: math.unit(12.861, "feet"),
  25724. name: "Head (Alt)",
  25725. image: {
  25726. source: "./media/characters/alydar/head-alt.svg"
  25727. }
  25728. },
  25729. wing: {
  25730. height: math.unit(20.712, "feet"),
  25731. name: "Wing",
  25732. image: {
  25733. source: "./media/characters/alydar/wing.svg"
  25734. }
  25735. },
  25736. wingFeather: {
  25737. height: math.unit(9.662, "feet"),
  25738. name: "Wing Feather",
  25739. image: {
  25740. source: "./media/characters/alydar/wing-feather.svg"
  25741. }
  25742. },
  25743. countourFeather: {
  25744. height: math.unit(4.154, "feet"),
  25745. name: "Contour Feather",
  25746. image: {
  25747. source: "./media/characters/alydar/contour-feather.svg"
  25748. }
  25749. },
  25750. },
  25751. [
  25752. {
  25753. name: "Diplomatic",
  25754. height: math.unit(13, "feet"),
  25755. default: true
  25756. },
  25757. {
  25758. name: "Small",
  25759. height: math.unit(30, "feet")
  25760. },
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(95, "feet"),
  25764. default: true
  25765. },
  25766. {
  25767. name: "Large",
  25768. height: math.unit(285, "feet")
  25769. },
  25770. {
  25771. name: "Incomprehensible",
  25772. height: math.unit(450, "megameters")
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25778. {
  25779. side: {
  25780. height: math.unit(11, "feet"),
  25781. weight: math.unit(1750, "kg"),
  25782. name: "Side",
  25783. image: {
  25784. source: "./media/characters/selicia/side.svg",
  25785. extra: 440 / 396,
  25786. bottom: 24.8 / 465.979
  25787. }
  25788. },
  25789. maw: {
  25790. height: math.unit(4.665, "feet"),
  25791. name: "Maw",
  25792. image: {
  25793. source: "./media/characters/selicia/maw.svg"
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Normal",
  25800. height: math.unit(11, "feet"),
  25801. default: true
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25807. {
  25808. side: {
  25809. height: math.unit(2 + 6 / 12, "feet"),
  25810. weight: math.unit(30, "lb"),
  25811. name: "Side",
  25812. image: {
  25813. source: "./media/characters/layla/side.svg",
  25814. extra: 244 / 188,
  25815. bottom: 18.2 / 262.1
  25816. }
  25817. },
  25818. back: {
  25819. height: math.unit(2 + 6 / 12, "feet"),
  25820. weight: math.unit(30, "lb"),
  25821. name: "Back",
  25822. image: {
  25823. source: "./media/characters/layla/back.svg",
  25824. extra: 308 / 241.5,
  25825. bottom: 8.9 / 316.8
  25826. }
  25827. },
  25828. cumming: {
  25829. height: math.unit(2 + 6 / 12, "feet"),
  25830. weight: math.unit(30, "lb"),
  25831. name: "Cumming",
  25832. image: {
  25833. source: "./media/characters/layla/cumming.svg",
  25834. extra: 342 / 279,
  25835. bottom: 595 / 938
  25836. }
  25837. },
  25838. dickFlaccid: {
  25839. height: math.unit(2.595, "feet"),
  25840. name: "Flaccid Genitals",
  25841. image: {
  25842. source: "./media/characters/layla/dick-flaccid.svg"
  25843. }
  25844. },
  25845. dickErect: {
  25846. height: math.unit(2.359, "feet"),
  25847. name: "Erect Genitals",
  25848. image: {
  25849. source: "./media/characters/layla/dick-erect.svg"
  25850. }
  25851. },
  25852. dragon: {
  25853. height: math.unit(40, "feet"),
  25854. name: "Dragon",
  25855. image: {
  25856. source: "./media/characters/layla/dragon.svg",
  25857. extra: 610/535,
  25858. bottom: 367/977
  25859. }
  25860. },
  25861. taur: {
  25862. height: math.unit(30, "feet"),
  25863. name: "Taur",
  25864. image: {
  25865. source: "./media/characters/layla/taur.svg",
  25866. extra: 1268/1199,
  25867. bottom: 112/1380
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Micro",
  25874. height: math.unit(1, "inch")
  25875. },
  25876. {
  25877. name: "Small",
  25878. height: math.unit(1, "foot")
  25879. },
  25880. {
  25881. name: "Normal",
  25882. height: math.unit(2 + 6 / 12, "feet"),
  25883. default: true
  25884. },
  25885. {
  25886. name: "Macro",
  25887. height: math.unit(200, "feet")
  25888. },
  25889. {
  25890. name: "Megamacro",
  25891. height: math.unit(1000, "miles")
  25892. },
  25893. {
  25894. name: "Planetary",
  25895. height: math.unit(8000, "miles")
  25896. },
  25897. {
  25898. name: "True Layla",
  25899. height: math.unit(200000 * 7, "multiverses")
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25905. {
  25906. back: {
  25907. height: math.unit(10.5, "feet"),
  25908. weight: math.unit(800, "lb"),
  25909. name: "Back",
  25910. image: {
  25911. source: "./media/characters/knox/back.svg",
  25912. extra: 1486 / 1089,
  25913. bottom: 107 / 1601.4
  25914. }
  25915. },
  25916. side: {
  25917. height: math.unit(10.5, "feet"),
  25918. weight: math.unit(800, "lb"),
  25919. name: "Side",
  25920. image: {
  25921. source: "./media/characters/knox/side.svg",
  25922. extra: 244 / 218,
  25923. bottom: 14 / 260
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Compact",
  25930. height: math.unit(10.5, "feet"),
  25931. default: true
  25932. },
  25933. {
  25934. name: "Dynamax",
  25935. height: math.unit(210, "feet")
  25936. },
  25937. {
  25938. name: "Full Macro",
  25939. height: math.unit(850, "feet")
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(28, "feet"),
  25948. weight: math.unit(10500, "lb"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/kayda/front.svg",
  25952. extra: 1536 / 1428,
  25953. bottom: 68.7 / 1603
  25954. }
  25955. },
  25956. back: {
  25957. height: math.unit(28, "feet"),
  25958. weight: math.unit(10500, "lb"),
  25959. name: "Back",
  25960. image: {
  25961. source: "./media/characters/kayda/back.svg",
  25962. extra: 1557 / 1464,
  25963. bottom: 39.5 / 1597.49
  25964. }
  25965. },
  25966. dick: {
  25967. height: math.unit(3.858, "feet"),
  25968. name: "Dick",
  25969. image: {
  25970. source: "./media/characters/kayda/dick.svg"
  25971. }
  25972. },
  25973. },
  25974. [
  25975. {
  25976. name: "Macro",
  25977. height: math.unit(28, "feet"),
  25978. default: true
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(10 + 11 / 12, "feet"),
  25987. weight: math.unit(1400, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/brian/front.svg",
  25991. extra: 737 / 692,
  25992. bottom: 55.4 / 785
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Normal",
  25999. height: math.unit(10 + 11 / 12, "feet"),
  26000. default: true
  26001. },
  26002. ]
  26003. ))
  26004. characterMakers.push(() => makeCharacter(
  26005. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26006. {
  26007. front: {
  26008. height: math.unit(5 + 8 / 12, "feet"),
  26009. weight: math.unit(140, "lb"),
  26010. name: "Front",
  26011. image: {
  26012. source: "./media/characters/khemri/front.svg",
  26013. extra: 4780 / 4059,
  26014. bottom: 80.1 / 4859.25
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Micro",
  26021. height: math.unit(6, "inches")
  26022. },
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(5 + 8 / 12, "feet"),
  26026. default: true
  26027. },
  26028. ]
  26029. ))
  26030. characterMakers.push(() => makeCharacter(
  26031. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26032. {
  26033. front: {
  26034. height: math.unit(13, "feet"),
  26035. weight: math.unit(1700, "lb"),
  26036. name: "Front",
  26037. image: {
  26038. source: "./media/characters/felix-braveheart/front.svg",
  26039. extra: 1222 / 1157,
  26040. bottom: 53.2 / 1280
  26041. }
  26042. },
  26043. back: {
  26044. height: math.unit(13, "feet"),
  26045. weight: math.unit(1700, "lb"),
  26046. name: "Back",
  26047. image: {
  26048. source: "./media/characters/felix-braveheart/back.svg",
  26049. extra: 1277 / 1203,
  26050. bottom: 50.2 / 1327
  26051. }
  26052. },
  26053. feral: {
  26054. height: math.unit(6, "feet"),
  26055. weight: math.unit(400, "lb"),
  26056. name: "Feral",
  26057. image: {
  26058. source: "./media/characters/felix-braveheart/feral.svg",
  26059. extra: 682 / 625,
  26060. bottom: 6.9 / 688
  26061. }
  26062. },
  26063. },
  26064. [
  26065. {
  26066. name: "Normal",
  26067. height: math.unit(13, "feet"),
  26068. default: true
  26069. },
  26070. ]
  26071. ))
  26072. characterMakers.push(() => makeCharacter(
  26073. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26074. {
  26075. side: {
  26076. height: math.unit(5 + 11 / 12, "feet"),
  26077. weight: math.unit(1400, "lb"),
  26078. name: "Side",
  26079. image: {
  26080. source: "./media/characters/shadow-blade/side.svg",
  26081. extra: 1726 / 1267,
  26082. bottom: 58.4 / 1785
  26083. }
  26084. },
  26085. },
  26086. [
  26087. {
  26088. name: "Normal",
  26089. height: math.unit(5 + 11 / 12, "feet"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(1 + 6 / 12, "feet"),
  26099. weight: math.unit(25, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/karla-halldor/front.svg",
  26103. extra: 1459 / 1383,
  26104. bottom: 12 / 1472
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(1 + 6 / 12, "feet"),
  26112. default: true
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(6 + 2 / 12, "feet"),
  26121. weight: math.unit(160, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/ariam/front.svg",
  26125. extra: 1073/976,
  26126. bottom: 52/1125
  26127. }
  26128. },
  26129. back: {
  26130. height: math.unit(6 + 2/12, "feet"),
  26131. weight: math.unit(160, "lb"),
  26132. name: "Back",
  26133. image: {
  26134. source: "./media/characters/ariam/back.svg",
  26135. extra: 1103/1023,
  26136. bottom: 9/1112
  26137. }
  26138. },
  26139. dressed: {
  26140. height: math.unit(6 + 2/12, "feet"),
  26141. weight: math.unit(160, "lb"),
  26142. name: "Dressed",
  26143. image: {
  26144. source: "./media/characters/ariam/dressed.svg",
  26145. extra: 1099/1009,
  26146. bottom: 25/1124
  26147. }
  26148. },
  26149. squatting: {
  26150. height: math.unit(4.1, "feet"),
  26151. weight: math.unit(160, "lb"),
  26152. name: "Squatting",
  26153. image: {
  26154. source: "./media/characters/ariam/squatting.svg",
  26155. extra: 2617 / 2112,
  26156. bottom: 61.2 / 2681,
  26157. }
  26158. },
  26159. },
  26160. [
  26161. {
  26162. name: "Normal",
  26163. height: math.unit(6 + 2 / 12, "feet"),
  26164. default: true
  26165. },
  26166. {
  26167. name: "Normal+",
  26168. height: math.unit(4, "meters")
  26169. },
  26170. {
  26171. name: "Macro",
  26172. height: math.unit(50, "meters")
  26173. },
  26174. {
  26175. name: "Macro+",
  26176. height: math.unit(100, "meters")
  26177. },
  26178. {
  26179. name: "Megamacro",
  26180. height: math.unit(20, "km")
  26181. },
  26182. {
  26183. name: "Caretaker",
  26184. height: math.unit(444, "megameters")
  26185. },
  26186. ]
  26187. ))
  26188. characterMakers.push(() => makeCharacter(
  26189. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26190. {
  26191. front: {
  26192. height: math.unit(1.67, "meters"),
  26193. weight: math.unit(140, "lb"),
  26194. name: "Front",
  26195. image: {
  26196. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26197. extra: 438 / 410,
  26198. bottom: 0.75 / 439
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Shrunken",
  26205. height: math.unit(7.6, "cm")
  26206. },
  26207. {
  26208. name: "Human Scale",
  26209. height: math.unit(1.67, "meters")
  26210. },
  26211. {
  26212. name: "Wolxi Scale",
  26213. height: math.unit(36.7, "meters"),
  26214. default: true
  26215. },
  26216. ]
  26217. ))
  26218. characterMakers.push(() => makeCharacter(
  26219. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26220. {
  26221. front: {
  26222. height: math.unit(1.73, "meters"),
  26223. weight: math.unit(240, "lb"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/izue-two-mothers/front.svg",
  26227. extra: 469 / 437,
  26228. bottom: 1.24 / 470.6
  26229. }
  26230. },
  26231. },
  26232. [
  26233. {
  26234. name: "Shrunken",
  26235. height: math.unit(7.86, "cm")
  26236. },
  26237. {
  26238. name: "Human Scale",
  26239. height: math.unit(1.73, "meters")
  26240. },
  26241. {
  26242. name: "Wolxi Scale",
  26243. height: math.unit(38, "meters"),
  26244. default: true
  26245. },
  26246. ]
  26247. ))
  26248. characterMakers.push(() => makeCharacter(
  26249. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26250. {
  26251. front: {
  26252. height: math.unit(1.55, "meters"),
  26253. weight: math.unit(120, "lb"),
  26254. name: "Front",
  26255. image: {
  26256. source: "./media/characters/teeku-love-shack/front.svg",
  26257. extra: 387 / 362,
  26258. bottom: 1.51 / 388
  26259. }
  26260. },
  26261. },
  26262. [
  26263. {
  26264. name: "Shrunken",
  26265. height: math.unit(7, "cm")
  26266. },
  26267. {
  26268. name: "Human Scale",
  26269. height: math.unit(1.55, "meters")
  26270. },
  26271. {
  26272. name: "Wolxi Scale",
  26273. height: math.unit(34.1, "meters"),
  26274. default: true
  26275. },
  26276. ]
  26277. ))
  26278. characterMakers.push(() => makeCharacter(
  26279. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26280. {
  26281. front: {
  26282. height: math.unit(1.83, "meters"),
  26283. weight: math.unit(135, "lb"),
  26284. name: "Front",
  26285. image: {
  26286. source: "./media/characters/dejma-the-red/front.svg",
  26287. extra: 480 / 458,
  26288. bottom: 1.8 / 482
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Shrunken",
  26295. height: math.unit(8.3, "cm")
  26296. },
  26297. {
  26298. name: "Human Scale",
  26299. height: math.unit(1.83, "meters")
  26300. },
  26301. {
  26302. name: "Wolxi Scale",
  26303. height: math.unit(40, "meters"),
  26304. default: true
  26305. },
  26306. ]
  26307. ))
  26308. characterMakers.push(() => makeCharacter(
  26309. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26310. {
  26311. front: {
  26312. height: math.unit(1.78, "meters"),
  26313. weight: math.unit(65, "kg"),
  26314. name: "Front",
  26315. image: {
  26316. source: "./media/characters/aki/front.svg",
  26317. extra: 452 / 415
  26318. }
  26319. },
  26320. frontNsfw: {
  26321. height: math.unit(1.78, "meters"),
  26322. weight: math.unit(65, "kg"),
  26323. name: "Front (NSFW)",
  26324. image: {
  26325. source: "./media/characters/aki/front-nsfw.svg",
  26326. extra: 452 / 415
  26327. }
  26328. },
  26329. back: {
  26330. height: math.unit(1.78, "meters"),
  26331. weight: math.unit(65, "kg"),
  26332. name: "Back",
  26333. image: {
  26334. source: "./media/characters/aki/back.svg",
  26335. extra: 452 / 415
  26336. }
  26337. },
  26338. rump: {
  26339. height: math.unit(2.05, "feet"),
  26340. name: "Rump",
  26341. image: {
  26342. source: "./media/characters/aki/rump.svg"
  26343. }
  26344. },
  26345. dick: {
  26346. height: math.unit(0.95, "feet"),
  26347. name: "Dick",
  26348. image: {
  26349. source: "./media/characters/aki/dick.svg"
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Micro",
  26356. height: math.unit(15, "cm")
  26357. },
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(178, "cm"),
  26361. default: true
  26362. },
  26363. {
  26364. name: "Macro",
  26365. height: math.unit(214, "m")
  26366. },
  26367. {
  26368. name: "Macro+",
  26369. height: math.unit(534, "m")
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26375. {
  26376. front: {
  26377. height: math.unit(5 + 5 / 12, "feet"),
  26378. weight: math.unit(120, "lb"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/ari/front.svg",
  26382. extra: 1550/1471,
  26383. bottom: 39/1589
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(5 + 5 / 12, "feet")
  26391. },
  26392. {
  26393. name: "Macro",
  26394. height: math.unit(100, "feet"),
  26395. default: true
  26396. },
  26397. {
  26398. name: "Megamacro",
  26399. height: math.unit(100, "miles")
  26400. },
  26401. {
  26402. name: "Gigamacro",
  26403. height: math.unit(80000, "miles")
  26404. },
  26405. ]
  26406. ))
  26407. characterMakers.push(() => makeCharacter(
  26408. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26409. {
  26410. side: {
  26411. height: math.unit(9, "feet"),
  26412. weight: math.unit(400, "kg"),
  26413. name: "Side",
  26414. image: {
  26415. source: "./media/characters/bolt/side.svg",
  26416. extra: 1126 / 896,
  26417. bottom: 60 / 1187.3,
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Micro",
  26424. height: math.unit(5, "inches")
  26425. },
  26426. {
  26427. name: "Normal",
  26428. height: math.unit(9, "feet"),
  26429. default: true
  26430. },
  26431. {
  26432. name: "Macro",
  26433. height: math.unit(700, "feet")
  26434. },
  26435. {
  26436. name: "Max Size",
  26437. height: math.unit(1.52e22, "yottameters")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(4.3, "meters"),
  26446. weight: math.unit(3, "tons"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/draekon-sylviar/front.svg",
  26450. extra: 2072/1512,
  26451. bottom: 74/2146
  26452. }
  26453. },
  26454. back: {
  26455. height: math.unit(4.3, "meters"),
  26456. weight: math.unit(3, "tons"),
  26457. name: "Back",
  26458. image: {
  26459. source: "./media/characters/draekon-sylviar/back.svg",
  26460. extra: 1639/1483,
  26461. bottom: 41/1680
  26462. }
  26463. },
  26464. feral: {
  26465. height: math.unit(1.15, "meters"),
  26466. weight: math.unit(3, "tons"),
  26467. name: "Feral",
  26468. image: {
  26469. source: "./media/characters/draekon-sylviar/feral.svg",
  26470. extra: 1033/395,
  26471. bottom: 130/1163
  26472. }
  26473. },
  26474. maw: {
  26475. height: math.unit(1.3, "meters"),
  26476. name: "Maw",
  26477. image: {
  26478. source: "./media/characters/draekon-sylviar/maw.svg"
  26479. }
  26480. },
  26481. mawSeparated: {
  26482. height: math.unit(1.53, "meters"),
  26483. name: "Separated Maw",
  26484. image: {
  26485. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26486. }
  26487. },
  26488. tail: {
  26489. height: math.unit(1.15, "meters"),
  26490. name: "Tail",
  26491. image: {
  26492. source: "./media/characters/draekon-sylviar/tail.svg"
  26493. }
  26494. },
  26495. tailDick: {
  26496. height: math.unit(1.15, "meters"),
  26497. name: "Tail (Dick)",
  26498. image: {
  26499. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26500. }
  26501. },
  26502. tailDickSeparated: {
  26503. height: math.unit(1.19, "meters"),
  26504. name: "Tail (Separated Dick)",
  26505. image: {
  26506. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26507. }
  26508. },
  26509. slit: {
  26510. height: math.unit(1, "meters"),
  26511. name: "Slit",
  26512. image: {
  26513. source: "./media/characters/draekon-sylviar/slit.svg"
  26514. }
  26515. },
  26516. dick: {
  26517. height: math.unit(1.15, "meters"),
  26518. name: "Dick",
  26519. image: {
  26520. source: "./media/characters/draekon-sylviar/dick.svg"
  26521. }
  26522. },
  26523. dickSeparated: {
  26524. height: math.unit(1.1, "meters"),
  26525. name: "Separated Dick",
  26526. image: {
  26527. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26528. }
  26529. },
  26530. sheath: {
  26531. height: math.unit(1.15, "meters"),
  26532. name: "Sheath",
  26533. image: {
  26534. source: "./media/characters/draekon-sylviar/sheath.svg"
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Small",
  26541. height: math.unit(4.53 / 2, "meters"),
  26542. default: true
  26543. },
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(4.53, "meters"),
  26547. default: true
  26548. },
  26549. {
  26550. name: "Large",
  26551. height: math.unit(4.53 * 2, "meters"),
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26557. {
  26558. front: {
  26559. height: math.unit(6 + 2 / 12, "feet"),
  26560. weight: math.unit(180, "lb"),
  26561. name: "Front",
  26562. image: {
  26563. source: "./media/characters/brawler/front.svg",
  26564. extra: 3301 / 3027,
  26565. bottom: 138 / 3439
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(6 + 2 / 12, "feet"),
  26573. default: true
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(11, "feet"),
  26582. weight: math.unit(1000, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/alex/front.svg",
  26586. bottom: 44.5 / 620
  26587. }
  26588. },
  26589. },
  26590. [
  26591. {
  26592. name: "Micro",
  26593. height: math.unit(5, "inches")
  26594. },
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(11, "feet"),
  26598. default: true
  26599. },
  26600. {
  26601. name: "Macro",
  26602. height: math.unit(9.5e9, "feet")
  26603. },
  26604. {
  26605. name: "Max Size",
  26606. height: math.unit(1.4e283, "yottameters")
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26612. {
  26613. female: {
  26614. height: math.unit(29.9, "m"),
  26615. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26616. name: "Female",
  26617. image: {
  26618. source: "./media/characters/zenari/female.svg",
  26619. extra: 3281.6 / 3217,
  26620. bottom: 72.2 / 3353
  26621. }
  26622. },
  26623. male: {
  26624. height: math.unit(27.7, "m"),
  26625. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26626. name: "Male",
  26627. image: {
  26628. source: "./media/characters/zenari/male.svg",
  26629. extra: 3008 / 2991,
  26630. bottom: 54.6 / 3069
  26631. }
  26632. },
  26633. },
  26634. [
  26635. {
  26636. name: "Macro",
  26637. height: math.unit(29.7, "meters"),
  26638. default: true
  26639. },
  26640. ]
  26641. ))
  26642. characterMakers.push(() => makeCharacter(
  26643. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26644. {
  26645. female: {
  26646. height: math.unit(23.8, "m"),
  26647. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26648. name: "Female",
  26649. image: {
  26650. source: "./media/characters/mactarian/female.svg",
  26651. extra: 2662 / 2569,
  26652. bottom: 73 / 2736
  26653. }
  26654. },
  26655. male: {
  26656. height: math.unit(23.8, "m"),
  26657. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26658. name: "Male",
  26659. image: {
  26660. source: "./media/characters/mactarian/male.svg",
  26661. extra: 2673 / 2600,
  26662. bottom: 76 / 2750
  26663. }
  26664. },
  26665. },
  26666. [
  26667. {
  26668. name: "Macro",
  26669. height: math.unit(23.8, "meters"),
  26670. default: true
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26676. {
  26677. female: {
  26678. height: math.unit(19.3, "m"),
  26679. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26680. name: "Female",
  26681. image: {
  26682. source: "./media/characters/umok/female.svg",
  26683. extra: 2186 / 2078,
  26684. bottom: 87 / 2277
  26685. }
  26686. },
  26687. male: {
  26688. height: math.unit(19.5, "m"),
  26689. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26690. name: "Male",
  26691. image: {
  26692. source: "./media/characters/umok/male.svg",
  26693. extra: 2233 / 2140,
  26694. bottom: 24.4 / 2258
  26695. }
  26696. },
  26697. },
  26698. [
  26699. {
  26700. name: "Macro",
  26701. height: math.unit(19.3, "meters"),
  26702. default: true
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26708. {
  26709. female: {
  26710. height: math.unit(26.15, "m"),
  26711. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26712. name: "Female",
  26713. image: {
  26714. source: "./media/characters/joraxian/female.svg",
  26715. extra: 2912 / 2824,
  26716. bottom: 36 / 2956
  26717. }
  26718. },
  26719. male: {
  26720. height: math.unit(25.4, "m"),
  26721. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26722. name: "Male",
  26723. image: {
  26724. source: "./media/characters/joraxian/male.svg",
  26725. extra: 2877 / 2721,
  26726. bottom: 82 / 2967
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Macro",
  26733. height: math.unit(26.15, "meters"),
  26734. default: true
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26740. {
  26741. female: {
  26742. height: math.unit(21.6, "m"),
  26743. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26744. name: "Female",
  26745. image: {
  26746. source: "./media/characters/sthara/female.svg",
  26747. extra: 2516 / 2347,
  26748. bottom: 21.5 / 2537
  26749. }
  26750. },
  26751. male: {
  26752. height: math.unit(24, "m"),
  26753. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26754. name: "Male",
  26755. image: {
  26756. source: "./media/characters/sthara/male.svg",
  26757. extra: 2732 / 2607,
  26758. bottom: 23 / 2732
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Macro",
  26765. height: math.unit(21.6, "meters"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26772. {
  26773. front: {
  26774. height: math.unit(6 + 4 / 12, "feet"),
  26775. weight: math.unit(175, "lb"),
  26776. name: "Front",
  26777. image: {
  26778. source: "./media/characters/luka-bryzant/front.svg",
  26779. extra: 311 / 289,
  26780. bottom: 4 / 315
  26781. }
  26782. },
  26783. back: {
  26784. height: math.unit(6 + 4 / 12, "feet"),
  26785. weight: math.unit(175, "lb"),
  26786. name: "Back",
  26787. image: {
  26788. source: "./media/characters/luka-bryzant/back.svg",
  26789. extra: 311 / 289,
  26790. bottom: 3.8 / 313.7
  26791. }
  26792. },
  26793. },
  26794. [
  26795. {
  26796. name: "Micro",
  26797. height: math.unit(10, "inches")
  26798. },
  26799. {
  26800. name: "Normal",
  26801. height: math.unit(6 + 4 / 12, "feet"),
  26802. default: true
  26803. },
  26804. {
  26805. name: "Large",
  26806. height: math.unit(12, "feet")
  26807. },
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26812. {
  26813. front: {
  26814. height: math.unit(5 + 7 / 12, "feet"),
  26815. weight: math.unit(185, "lb"),
  26816. name: "Front",
  26817. image: {
  26818. source: "./media/characters/aman-aquila/front.svg",
  26819. extra: 1013 / 976,
  26820. bottom: 45.6 / 1057
  26821. }
  26822. },
  26823. side: {
  26824. height: math.unit(5 + 7 / 12, "feet"),
  26825. weight: math.unit(185, "lb"),
  26826. name: "Side",
  26827. image: {
  26828. source: "./media/characters/aman-aquila/side.svg",
  26829. extra: 1054 / 1011,
  26830. bottom: 15 / 1070
  26831. }
  26832. },
  26833. back: {
  26834. height: math.unit(5 + 7 / 12, "feet"),
  26835. weight: math.unit(185, "lb"),
  26836. name: "Back",
  26837. image: {
  26838. source: "./media/characters/aman-aquila/back.svg",
  26839. extra: 1026 / 970,
  26840. bottom: 12 / 1039
  26841. }
  26842. },
  26843. head: {
  26844. height: math.unit(1.211, "feet"),
  26845. name: "Head",
  26846. image: {
  26847. source: "./media/characters/aman-aquila/head.svg",
  26848. }
  26849. },
  26850. },
  26851. [
  26852. {
  26853. name: "Minimicro",
  26854. height: math.unit(0.057, "inches")
  26855. },
  26856. {
  26857. name: "Micro",
  26858. height: math.unit(7, "inches")
  26859. },
  26860. {
  26861. name: "Mini",
  26862. height: math.unit(3 + 7 / 12, "feet")
  26863. },
  26864. {
  26865. name: "Normal",
  26866. height: math.unit(5 + 7 / 12, "feet"),
  26867. default: true
  26868. },
  26869. {
  26870. name: "Macro",
  26871. height: math.unit(157 + 7 / 12, "feet")
  26872. },
  26873. {
  26874. name: "Megamacro",
  26875. height: math.unit(1557 + 7 / 12, "feet")
  26876. },
  26877. {
  26878. name: "Gigamacro",
  26879. height: math.unit(15557 + 7 / 12, "feet")
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(3 + 2 / 12, "inches"),
  26888. weight: math.unit(0.3, "ounces"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/hiphae/front.svg",
  26892. extra: 1931 / 1683,
  26893. bottom: 24 / 1955
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(3 + 1 / 2, "inches"),
  26901. default: true
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(5 + 10 / 12, "feet"),
  26910. weight: math.unit(165, "lb"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/nicky/front.svg",
  26914. extra: 3144 / 2886,
  26915. bottom: 45.6 / 3192
  26916. }
  26917. },
  26918. back: {
  26919. height: math.unit(5 + 10 / 12, "feet"),
  26920. weight: math.unit(165, "lb"),
  26921. name: "Back",
  26922. image: {
  26923. source: "./media/characters/nicky/back.svg",
  26924. extra: 3055 / 2804,
  26925. bottom: 28.4 / 3087
  26926. }
  26927. },
  26928. frontclothed: {
  26929. height: math.unit(5 + 10 / 12, "feet"),
  26930. weight: math.unit(165, "lb"),
  26931. name: "Front-clothed",
  26932. image: {
  26933. source: "./media/characters/nicky/front-clothed.svg",
  26934. extra: 3184.9 / 2926.9,
  26935. bottom: 86.5 / 3239.9
  26936. }
  26937. },
  26938. foot: {
  26939. height: math.unit(1.16, "feet"),
  26940. name: "Foot",
  26941. image: {
  26942. source: "./media/characters/nicky/foot.svg"
  26943. }
  26944. },
  26945. feet: {
  26946. height: math.unit(1.34, "feet"),
  26947. name: "Feet",
  26948. image: {
  26949. source: "./media/characters/nicky/feet.svg"
  26950. }
  26951. },
  26952. maw: {
  26953. height: math.unit(0.9, "feet"),
  26954. name: "Maw",
  26955. image: {
  26956. source: "./media/characters/nicky/maw.svg"
  26957. }
  26958. },
  26959. },
  26960. [
  26961. {
  26962. name: "Normal",
  26963. height: math.unit(5 + 10 / 12, "feet"),
  26964. default: true
  26965. },
  26966. {
  26967. name: "Macro",
  26968. height: math.unit(60, "feet")
  26969. },
  26970. {
  26971. name: "Megamacro",
  26972. height: math.unit(1, "mile")
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26978. {
  26979. side: {
  26980. height: math.unit(10, "feet"),
  26981. weight: math.unit(600, "lb"),
  26982. name: "Side",
  26983. image: {
  26984. source: "./media/characters/blair/side.svg",
  26985. bottom: 16.6 / 475,
  26986. extra: 458 / 431
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Micro",
  26993. height: math.unit(8, "inches")
  26994. },
  26995. {
  26996. name: "Normal",
  26997. height: math.unit(10, "feet"),
  26998. default: true
  26999. },
  27000. {
  27001. name: "Macro",
  27002. height: math.unit(180, "feet")
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27008. {
  27009. front: {
  27010. height: math.unit(5 + 4 / 12, "feet"),
  27011. weight: math.unit(125, "lb"),
  27012. name: "Front",
  27013. image: {
  27014. source: "./media/characters/fisher/front.svg",
  27015. extra: 444 / 390,
  27016. bottom: 2 / 444.8
  27017. }
  27018. },
  27019. },
  27020. [
  27021. {
  27022. name: "Micro",
  27023. height: math.unit(4, "inches")
  27024. },
  27025. {
  27026. name: "Normal",
  27027. height: math.unit(5 + 4 / 12, "feet"),
  27028. default: true
  27029. },
  27030. {
  27031. name: "Macro",
  27032. height: math.unit(100, "feet")
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(6.71, "feet"),
  27041. weight: math.unit(200, "lb"),
  27042. preyCapacity: math.unit(1000000, "people"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/gliss/front.svg",
  27046. extra: 2347 / 2231,
  27047. bottom: 113 / 2462
  27048. }
  27049. },
  27050. hammerspaceSize: {
  27051. height: math.unit(6.71 * 717, "feet"),
  27052. weight: math.unit(200, "lb"),
  27053. preyCapacity: math.unit(1000000, "people"),
  27054. name: "Hammerspace Size",
  27055. image: {
  27056. source: "./media/characters/gliss/front.svg",
  27057. extra: 2347 / 2231,
  27058. bottom: 113 / 2462
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Normal",
  27065. height: math.unit(6.71, "feet"),
  27066. default: true
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27072. {
  27073. side: {
  27074. height: math.unit(1.44, "m"),
  27075. weight: math.unit(80, "kg"),
  27076. name: "Side",
  27077. image: {
  27078. source: "./media/characters/dune-anderson/side.svg",
  27079. bottom: 49 / 1426
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Wolf-sized",
  27086. height: math.unit(1.44, "meters")
  27087. },
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(5.05, "meters"),
  27091. default: true
  27092. },
  27093. {
  27094. name: "Big",
  27095. height: math.unit(14.4, "meters")
  27096. },
  27097. {
  27098. name: "Huge",
  27099. height: math.unit(144, "meters")
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27105. {
  27106. front: {
  27107. height: math.unit(7, "feet"),
  27108. weight: math.unit(425, "lb"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/hind/front.svg",
  27112. extra: 2091 / 1860,
  27113. bottom: 129 / 2220
  27114. }
  27115. },
  27116. back: {
  27117. height: math.unit(7, "feet"),
  27118. weight: math.unit(425, "lb"),
  27119. name: "Back",
  27120. image: {
  27121. source: "./media/characters/hind/back.svg",
  27122. extra: 2091 / 1860,
  27123. bottom: 24.6 / 2309
  27124. }
  27125. },
  27126. tail: {
  27127. height: math.unit(2.8, "feet"),
  27128. name: "Tail",
  27129. image: {
  27130. source: "./media/characters/hind/tail.svg"
  27131. }
  27132. },
  27133. head: {
  27134. height: math.unit(2.55, "feet"),
  27135. name: "Head",
  27136. image: {
  27137. source: "./media/characters/hind/head.svg"
  27138. }
  27139. },
  27140. },
  27141. [
  27142. {
  27143. name: "XS",
  27144. height: math.unit(0.7, "feet")
  27145. },
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(7, "feet"),
  27149. default: true
  27150. },
  27151. {
  27152. name: "XL",
  27153. height: math.unit(70, "feet")
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(2.1, "meters"),
  27162. weight: math.unit(150, "lb"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/tharquench-sizestealer/front.svg",
  27166. extra: 1605/1470,
  27167. bottom: 36/1641
  27168. }
  27169. },
  27170. frontAlt: {
  27171. height: math.unit(2.1, "meters"),
  27172. weight: math.unit(150, "lb"),
  27173. name: "Front (Alt)",
  27174. image: {
  27175. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27176. extra: 2318 / 2063,
  27177. bottom: 93.4 / 2410
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Nano",
  27184. height: math.unit(1, "mm")
  27185. },
  27186. {
  27187. name: "Micro",
  27188. height: math.unit(1, "cm")
  27189. },
  27190. {
  27191. name: "Normal",
  27192. height: math.unit(2.1, "meters"),
  27193. default: true
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27199. {
  27200. front: {
  27201. height: math.unit(7 + 5 / 12, "feet"),
  27202. weight: math.unit(357, "lb"),
  27203. name: "Front",
  27204. image: {
  27205. source: "./media/characters/solex-draconov/front.svg",
  27206. extra: 1993 / 1865,
  27207. bottom: 117 / 2111
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Natural Height",
  27214. height: math.unit(7 + 5 / 12, "feet"),
  27215. default: true
  27216. },
  27217. {
  27218. name: "Macro",
  27219. height: math.unit(350, "feet")
  27220. },
  27221. {
  27222. name: "Macro+",
  27223. height: math.unit(1000, "feet")
  27224. },
  27225. {
  27226. name: "Megamacro",
  27227. height: math.unit(20, "km")
  27228. },
  27229. {
  27230. name: "Megamacro+",
  27231. height: math.unit(1000, "km")
  27232. },
  27233. {
  27234. name: "Gigamacro",
  27235. height: math.unit(2.5, "Gm")
  27236. },
  27237. {
  27238. name: "Teramacro",
  27239. height: math.unit(15, "Tm")
  27240. },
  27241. {
  27242. name: "Galactic",
  27243. height: math.unit(30, "Zm")
  27244. },
  27245. {
  27246. name: "Universal",
  27247. height: math.unit(21000, "Ym")
  27248. },
  27249. {
  27250. name: "Omniversal",
  27251. height: math.unit(9.861e50, "Ym")
  27252. },
  27253. {
  27254. name: "Existential",
  27255. height: math.unit(1e300, "meters")
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27261. {
  27262. side: {
  27263. height: math.unit(25, "feet"),
  27264. weight: math.unit(90000, "lb"),
  27265. name: "Side",
  27266. image: {
  27267. source: "./media/characters/mandarax/side.svg",
  27268. extra: 614 / 332,
  27269. bottom: 55 / 630
  27270. }
  27271. },
  27272. lounging: {
  27273. height: math.unit(15.4, "feet"),
  27274. weight: math.unit(90000, "lb"),
  27275. name: "Lounging",
  27276. image: {
  27277. source: "./media/characters/mandarax/lounging.svg",
  27278. extra: 817/609,
  27279. bottom: 685/1502
  27280. }
  27281. },
  27282. head: {
  27283. height: math.unit(11.4, "feet"),
  27284. name: "Head",
  27285. image: {
  27286. source: "./media/characters/mandarax/head.svg"
  27287. }
  27288. },
  27289. belly: {
  27290. height: math.unit(33, "feet"),
  27291. name: "Belly",
  27292. preyCapacity: math.unit(500, "people"),
  27293. image: {
  27294. source: "./media/characters/mandarax/belly.svg"
  27295. }
  27296. },
  27297. dick: {
  27298. height: math.unit(8.46, "feet"),
  27299. name: "Dick",
  27300. image: {
  27301. source: "./media/characters/mandarax/dick.svg"
  27302. }
  27303. },
  27304. top: {
  27305. height: math.unit(28, "meters"),
  27306. name: "Top",
  27307. image: {
  27308. source: "./media/characters/mandarax/top.svg"
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(25, "feet"),
  27316. default: true
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27322. {
  27323. front: {
  27324. height: math.unit(5, "feet"),
  27325. weight: math.unit(90, "lb"),
  27326. name: "Front",
  27327. image: {
  27328. source: "./media/characters/pixil/front.svg",
  27329. extra: 2000 / 1618,
  27330. bottom: 12.3 / 2011
  27331. }
  27332. },
  27333. },
  27334. [
  27335. {
  27336. name: "Normal",
  27337. height: math.unit(5, "feet"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Megamacro",
  27342. height: math.unit(10, "miles"),
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(7 + 2 / 12, "feet"),
  27351. weight: math.unit(200, "lb"),
  27352. name: "Front",
  27353. image: {
  27354. source: "./media/characters/angel/front.svg",
  27355. extra: 1830 / 1737,
  27356. bottom: 22.6 / 1854,
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(7 + 2 / 12, "feet"),
  27364. default: true
  27365. },
  27366. {
  27367. name: "Macro",
  27368. height: math.unit(1000, "feet")
  27369. },
  27370. {
  27371. name: "Megamacro",
  27372. height: math.unit(2, "miles")
  27373. },
  27374. {
  27375. name: "Gigamacro",
  27376. height: math.unit(20, "earths")
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(5, "feet"),
  27385. weight: math.unit(180, "lb"),
  27386. name: "Front",
  27387. image: {
  27388. source: "./media/characters/mekana/front.svg",
  27389. extra: 1671 / 1605,
  27390. bottom: 3.5 / 1691
  27391. }
  27392. },
  27393. side: {
  27394. height: math.unit(5, "feet"),
  27395. weight: math.unit(180, "lb"),
  27396. name: "Side",
  27397. image: {
  27398. source: "./media/characters/mekana/side.svg",
  27399. extra: 1671 / 1605,
  27400. bottom: 3.5 / 1691
  27401. }
  27402. },
  27403. back: {
  27404. height: math.unit(5, "feet"),
  27405. weight: math.unit(180, "lb"),
  27406. name: "Back",
  27407. image: {
  27408. source: "./media/characters/mekana/back.svg",
  27409. extra: 1671 / 1605,
  27410. bottom: 3.5 / 1691
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(5, "feet"),
  27418. default: true
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(4 + 6 / 12, "feet"),
  27427. weight: math.unit(80, "lb"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/pixie/front.svg",
  27431. extra: 1924 / 1825,
  27432. bottom: 22.4 / 1946
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Normal",
  27439. height: math.unit(4 + 6 / 12, "feet"),
  27440. default: true
  27441. },
  27442. {
  27443. name: "Macro",
  27444. height: math.unit(40, "feet")
  27445. },
  27446. ]
  27447. ))
  27448. characterMakers.push(() => makeCharacter(
  27449. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27450. {
  27451. front: {
  27452. height: math.unit(2.1, "meters"),
  27453. weight: math.unit(200, "lb"),
  27454. name: "Front",
  27455. image: {
  27456. source: "./media/characters/the-lascivious/front.svg",
  27457. extra: 1 / 0.893,
  27458. bottom: 3.5 / 573.7
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Human Scale",
  27465. height: math.unit(2.1, "meters")
  27466. },
  27467. {
  27468. name: "Wolxi Scale",
  27469. height: math.unit(46.2, "m"),
  27470. default: true
  27471. },
  27472. {
  27473. name: "Boinker of Buildings",
  27474. height: math.unit(10, "km")
  27475. },
  27476. {
  27477. name: "Shagger of Skyscrapers",
  27478. height: math.unit(40, "km")
  27479. },
  27480. {
  27481. name: "Banger of Boroughs",
  27482. height: math.unit(4000, "km")
  27483. },
  27484. {
  27485. name: "Screwer of States",
  27486. height: math.unit(100000, "km")
  27487. },
  27488. {
  27489. name: "Pounder of Planets",
  27490. height: math.unit(2000000, "km")
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27496. {
  27497. front: {
  27498. height: math.unit(6, "feet"),
  27499. weight: math.unit(150, "lb"),
  27500. name: "Front",
  27501. image: {
  27502. source: "./media/characters/aj/front.svg",
  27503. extra: 2039 / 1562,
  27504. bottom: 40 / 2079
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(11 + 6 / 12, "feet"),
  27512. default: true
  27513. },
  27514. {
  27515. name: "Megamacro",
  27516. height: math.unit(60, "megameters")
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27522. {
  27523. side: {
  27524. height: math.unit(31 + 8 / 12, "feet"),
  27525. weight: math.unit(75000, "kg"),
  27526. name: "Side",
  27527. image: {
  27528. source: "./media/characters/koros/side.svg",
  27529. extra: 1442 / 1297,
  27530. bottom: 122.7 / 1562
  27531. }
  27532. },
  27533. dicksKingsCrown: {
  27534. height: math.unit(6, "feet"),
  27535. name: "Dicks (King's Crown)",
  27536. image: {
  27537. source: "./media/characters/koros/dicks-kings-crown.svg"
  27538. }
  27539. },
  27540. dicksTailSet: {
  27541. height: math.unit(3, "feet"),
  27542. name: "Dicks (Tail Set)",
  27543. image: {
  27544. source: "./media/characters/koros/dicks-tail-set.svg"
  27545. }
  27546. },
  27547. dickCumming: {
  27548. height: math.unit(7.98, "feet"),
  27549. name: "Dick (Cumming)",
  27550. image: {
  27551. source: "./media/characters/koros/dick-cumming.svg"
  27552. }
  27553. },
  27554. dicksBack: {
  27555. height: math.unit(5.9, "feet"),
  27556. name: "Dicks (Back)",
  27557. image: {
  27558. source: "./media/characters/koros/dicks-back.svg"
  27559. }
  27560. },
  27561. dicksFront: {
  27562. height: math.unit(3.72, "feet"),
  27563. name: "Dicks (Front)",
  27564. image: {
  27565. source: "./media/characters/koros/dicks-front.svg"
  27566. }
  27567. },
  27568. dicksPeeking: {
  27569. height: math.unit(3.0, "feet"),
  27570. name: "Dicks (Peeking)",
  27571. image: {
  27572. source: "./media/characters/koros/dicks-peeking.svg"
  27573. }
  27574. },
  27575. eye: {
  27576. height: math.unit(1.7, "feet"),
  27577. name: "Eye",
  27578. image: {
  27579. source: "./media/characters/koros/eye.svg"
  27580. }
  27581. },
  27582. headFront: {
  27583. height: math.unit(11.69, "feet"),
  27584. name: "Head (Front)",
  27585. image: {
  27586. source: "./media/characters/koros/head-front.svg"
  27587. }
  27588. },
  27589. headSide: {
  27590. height: math.unit(14, "feet"),
  27591. name: "Head (Side)",
  27592. image: {
  27593. source: "./media/characters/koros/head-side.svg"
  27594. }
  27595. },
  27596. leg: {
  27597. height: math.unit(17, "feet"),
  27598. name: "Leg",
  27599. image: {
  27600. source: "./media/characters/koros/leg.svg"
  27601. }
  27602. },
  27603. mawSide: {
  27604. height: math.unit(12.8, "feet"),
  27605. name: "Maw (Side)",
  27606. image: {
  27607. source: "./media/characters/koros/maw-side.svg"
  27608. }
  27609. },
  27610. mawSpitting: {
  27611. height: math.unit(17, "feet"),
  27612. name: "Maw (Spitting)",
  27613. image: {
  27614. source: "./media/characters/koros/maw-spitting.svg"
  27615. }
  27616. },
  27617. slit: {
  27618. height: math.unit(2.8, "feet"),
  27619. name: "Slit",
  27620. image: {
  27621. source: "./media/characters/koros/slit.svg"
  27622. }
  27623. },
  27624. stomach: {
  27625. height: math.unit(6.8, "feet"),
  27626. preyCapacity: math.unit(20, "people"),
  27627. name: "Stomach",
  27628. image: {
  27629. source: "./media/characters/koros/stomach.svg"
  27630. }
  27631. },
  27632. wingspanBottom: {
  27633. height: math.unit(114, "feet"),
  27634. name: "Wingspan (Bottom)",
  27635. image: {
  27636. source: "./media/characters/koros/wingspan-bottom.svg"
  27637. }
  27638. },
  27639. wingspanTop: {
  27640. height: math.unit(104, "feet"),
  27641. name: "Wingspan (Top)",
  27642. image: {
  27643. source: "./media/characters/koros/wingspan-top.svg"
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(31 + 8 / 12, "feet"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(18 + 5 / 12, "feet"),
  27660. weight: math.unit(3750, "kg"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/vexx/front.svg",
  27664. extra: 426 / 396,
  27665. bottom: 31.5 / 458
  27666. }
  27667. },
  27668. maw: {
  27669. height: math.unit(6, "feet"),
  27670. name: "Maw",
  27671. image: {
  27672. source: "./media/characters/vexx/maw.svg"
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(18 + 5 / 12, "feet"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(17 + 6 / 12, "feet"),
  27689. weight: math.unit(150, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/baadra/front.svg",
  27693. extra: 1694/1553,
  27694. bottom: 179/1873
  27695. }
  27696. },
  27697. frontAlt: {
  27698. height: math.unit(17 + 6 / 12, "feet"),
  27699. weight: math.unit(150, "lb"),
  27700. name: "Front (Alt)",
  27701. image: {
  27702. source: "./media/characters/baadra/front-alt.svg",
  27703. extra: 3137 / 2890,
  27704. bottom: 168.4 / 3305
  27705. }
  27706. },
  27707. back: {
  27708. height: math.unit(17 + 6 / 12, "feet"),
  27709. weight: math.unit(150, "lb"),
  27710. name: "Back",
  27711. image: {
  27712. source: "./media/characters/baadra/back.svg",
  27713. extra: 3142 / 2890,
  27714. bottom: 220 / 3371
  27715. }
  27716. },
  27717. head: {
  27718. height: math.unit(5.45, "feet"),
  27719. name: "Head",
  27720. image: {
  27721. source: "./media/characters/baadra/head.svg"
  27722. }
  27723. },
  27724. headAngry: {
  27725. height: math.unit(4.95, "feet"),
  27726. name: "Head (Angry)",
  27727. image: {
  27728. source: "./media/characters/baadra/head-angry.svg"
  27729. }
  27730. },
  27731. headOpen: {
  27732. height: math.unit(6, "feet"),
  27733. name: "Head (Open)",
  27734. image: {
  27735. source: "./media/characters/baadra/head-open.svg"
  27736. }
  27737. },
  27738. },
  27739. [
  27740. {
  27741. name: "Normal",
  27742. height: math.unit(17 + 6 / 12, "feet"),
  27743. default: true
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27749. {
  27750. front: {
  27751. height: math.unit(7 + 3 / 12, "feet"),
  27752. weight: math.unit(180, "lb"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/juri/front.svg",
  27756. extra: 1401 / 1237,
  27757. bottom: 18.5 / 1418
  27758. }
  27759. },
  27760. side: {
  27761. height: math.unit(7 + 3 / 12, "feet"),
  27762. weight: math.unit(180, "lb"),
  27763. name: "Side",
  27764. image: {
  27765. source: "./media/characters/juri/side.svg",
  27766. extra: 1424 / 1242,
  27767. bottom: 18.5 / 1447
  27768. }
  27769. },
  27770. sitting: {
  27771. height: math.unit(6, "feet"),
  27772. weight: math.unit(180, "lb"),
  27773. name: "Sitting",
  27774. image: {
  27775. source: "./media/characters/juri/sitting.svg",
  27776. extra: 1270 / 1143,
  27777. bottom: 100 / 1343
  27778. }
  27779. },
  27780. back: {
  27781. height: math.unit(7 + 3 / 12, "feet"),
  27782. weight: math.unit(180, "lb"),
  27783. name: "Back",
  27784. image: {
  27785. source: "./media/characters/juri/back.svg",
  27786. extra: 1377 / 1240,
  27787. bottom: 23.7 / 1405
  27788. }
  27789. },
  27790. maw: {
  27791. height: math.unit(2.8, "feet"),
  27792. name: "Maw",
  27793. image: {
  27794. source: "./media/characters/juri/maw.svg"
  27795. }
  27796. },
  27797. stomach: {
  27798. height: math.unit(0.89, "feet"),
  27799. preyCapacity: math.unit(4, "liters"),
  27800. name: "Stomach",
  27801. image: {
  27802. source: "./media/characters/juri/stomach.svg"
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(7 + 3 / 12, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27816. {
  27817. fox: {
  27818. height: math.unit(5 + 6 / 12, "feet"),
  27819. weight: math.unit(140, "lb"),
  27820. name: "Fox",
  27821. image: {
  27822. source: "./media/characters/maxene-sita/fox.svg",
  27823. extra: 146 / 138,
  27824. bottom: 2.1 / 148.19
  27825. }
  27826. },
  27827. foxLaying: {
  27828. height: math.unit(1.70, "feet"),
  27829. weight: math.unit(140, "lb"),
  27830. name: "Fox (Laying)",
  27831. image: {
  27832. source: "./media/characters/maxene-sita/fox-laying.svg",
  27833. extra: 910 / 572,
  27834. bottom: 71 / 981
  27835. }
  27836. },
  27837. kitsune: {
  27838. height: math.unit(10, "feet"),
  27839. weight: math.unit(800, "lb"),
  27840. name: "Kitsune",
  27841. image: {
  27842. source: "./media/characters/maxene-sita/kitsune.svg",
  27843. extra: 185 / 176,
  27844. bottom: 4.7 / 189.9
  27845. }
  27846. },
  27847. hellhound: {
  27848. height: math.unit(10, "feet"),
  27849. weight: math.unit(700, "lb"),
  27850. name: "Hellhound",
  27851. image: {
  27852. source: "./media/characters/maxene-sita/hellhound.svg",
  27853. extra: 1600 / 1545,
  27854. bottom: 81 / 1681
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(5 + 6 / 12, "feet"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27868. {
  27869. front: {
  27870. height: math.unit(3 + 4 / 12, "feet"),
  27871. weight: math.unit(70, "lb"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/maia/front.svg",
  27875. extra: 227 / 219.5,
  27876. bottom: 40 / 267
  27877. }
  27878. },
  27879. back: {
  27880. height: math.unit(3 + 4 / 12, "feet"),
  27881. weight: math.unit(70, "lb"),
  27882. name: "Back",
  27883. image: {
  27884. source: "./media/characters/maia/back.svg",
  27885. extra: 237 / 225
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(3 + 4 / 12, "feet"),
  27893. default: true
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27899. {
  27900. front: {
  27901. height: math.unit(5 + 10 / 12, "feet"),
  27902. weight: math.unit(197, "lb"),
  27903. name: "Front",
  27904. image: {
  27905. source: "./media/characters/jabaro/front.svg",
  27906. extra: 225 / 216,
  27907. bottom: 5.06 / 230
  27908. }
  27909. },
  27910. back: {
  27911. height: math.unit(5 + 10 / 12, "feet"),
  27912. weight: math.unit(197, "lb"),
  27913. name: "Back",
  27914. image: {
  27915. source: "./media/characters/jabaro/back.svg",
  27916. extra: 225 / 219,
  27917. bottom: 1.9 / 227
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(5 + 10 / 12, "feet"),
  27925. default: true
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(5 + 8 / 12, "feet"),
  27934. weight: math.unit(139, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/risa/front.svg",
  27938. extra: 270 / 260,
  27939. bottom: 11.2 / 282
  27940. }
  27941. },
  27942. back: {
  27943. height: math.unit(5 + 8 / 12, "feet"),
  27944. weight: math.unit(139, "lb"),
  27945. name: "Back",
  27946. image: {
  27947. source: "./media/characters/risa/back.svg",
  27948. extra: 264 / 255,
  27949. bottom: 4 / 268
  27950. }
  27951. },
  27952. },
  27953. [
  27954. {
  27955. name: "Normal",
  27956. height: math.unit(5 + 8 / 12, "feet"),
  27957. default: true
  27958. },
  27959. ]
  27960. ))
  27961. characterMakers.push(() => makeCharacter(
  27962. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27963. {
  27964. front: {
  27965. height: math.unit(2 + 11 / 12, "feet"),
  27966. weight: math.unit(30, "lb"),
  27967. name: "Front",
  27968. image: {
  27969. source: "./media/characters/weatley/front.svg",
  27970. bottom: 10.7 / 414,
  27971. extra: 403.5 / 362
  27972. }
  27973. },
  27974. back: {
  27975. height: math.unit(2 + 11 / 12, "feet"),
  27976. weight: math.unit(30, "lb"),
  27977. name: "Back",
  27978. image: {
  27979. source: "./media/characters/weatley/back.svg",
  27980. bottom: 10.7 / 414,
  27981. extra: 403.5 / 362
  27982. }
  27983. },
  27984. },
  27985. [
  27986. {
  27987. name: "Normal",
  27988. height: math.unit(2 + 11 / 12, "feet"),
  27989. default: true
  27990. },
  27991. ]
  27992. ))
  27993. characterMakers.push(() => makeCharacter(
  27994. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27995. {
  27996. front: {
  27997. height: math.unit(5 + 2 / 12, "feet"),
  27998. weight: math.unit(50, "kg"),
  27999. name: "Front",
  28000. image: {
  28001. source: "./media/characters/mercury-crescent/front.svg",
  28002. extra: 1088 / 1033,
  28003. bottom: 18.9 / 1109
  28004. }
  28005. },
  28006. },
  28007. [
  28008. {
  28009. name: "Normal",
  28010. height: math.unit(5 + 2 / 12, "feet"),
  28011. default: true
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28017. {
  28018. front: {
  28019. height: math.unit(2, "feet"),
  28020. weight: math.unit(15, "kg"),
  28021. name: "Front",
  28022. image: {
  28023. source: "./media/characters/diamond-jones/front.svg",
  28024. extra: 727/723,
  28025. bottom: 46/773
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Normal",
  28032. height: math.unit(2, "feet"),
  28033. default: true
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28039. {
  28040. front: {
  28041. height: math.unit(3, "feet"),
  28042. weight: math.unit(30, "kg"),
  28043. name: "Front",
  28044. image: {
  28045. source: "./media/characters/sweet-bit/front.svg",
  28046. extra: 675 / 567,
  28047. bottom: 27.7 / 703
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(3, "feet"),
  28055. default: true
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28061. {
  28062. side: {
  28063. height: math.unit(9.178, "feet"),
  28064. weight: math.unit(500, "lb"),
  28065. name: "Side",
  28066. image: {
  28067. source: "./media/characters/umbrazen/side.svg",
  28068. extra: 1730 / 1473,
  28069. bottom: 34.6 / 1765
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(9.178, "feet"),
  28077. default: true
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28083. {
  28084. front: {
  28085. height: math.unit(10, "feet"),
  28086. weight: math.unit(750, "lb"),
  28087. name: "Front",
  28088. image: {
  28089. source: "./media/characters/arlist/front.svg",
  28090. extra: 961 / 778,
  28091. bottom: 6.2 / 986
  28092. }
  28093. },
  28094. },
  28095. [
  28096. {
  28097. name: "Normal",
  28098. height: math.unit(10, "feet"),
  28099. default: true
  28100. },
  28101. ]
  28102. ))
  28103. characterMakers.push(() => makeCharacter(
  28104. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28105. {
  28106. front: {
  28107. height: math.unit(5 + 1 / 12, "feet"),
  28108. weight: math.unit(110, "lb"),
  28109. name: "Front",
  28110. image: {
  28111. source: "./media/characters/aradel/front.svg",
  28112. extra: 324 / 303,
  28113. bottom: 3.6 / 329.4
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Normal",
  28120. height: math.unit(5 + 1 / 12, "feet"),
  28121. default: true
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28127. {
  28128. dressed: {
  28129. height: math.unit(3 + 8 / 12, "feet"),
  28130. weight: math.unit(50, "lb"),
  28131. name: "Dressed",
  28132. image: {
  28133. source: "./media/characters/serryn/dressed.svg",
  28134. extra: 1792 / 1656,
  28135. bottom: 43.5 / 1840
  28136. }
  28137. },
  28138. nude: {
  28139. height: math.unit(3 + 8 / 12, "feet"),
  28140. weight: math.unit(50, "lb"),
  28141. name: "Nude",
  28142. image: {
  28143. source: "./media/characters/serryn/nude.svg",
  28144. extra: 1792 / 1656,
  28145. bottom: 43.5 / 1840
  28146. }
  28147. },
  28148. },
  28149. [
  28150. {
  28151. name: "Normal",
  28152. height: math.unit(3 + 8 / 12, "feet"),
  28153. default: true
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28159. {
  28160. front: {
  28161. height: math.unit(7 + 10 / 12, "feet"),
  28162. weight: math.unit(255, "lb"),
  28163. name: "Front",
  28164. image: {
  28165. source: "./media/characters/xavier-thyme/front.svg",
  28166. extra: 3733 / 3642,
  28167. bottom: 131 / 3869
  28168. }
  28169. },
  28170. frontRaven: {
  28171. height: math.unit(7 + 10 / 12, "feet"),
  28172. weight: math.unit(255, "lb"),
  28173. name: "Front (Raven)",
  28174. image: {
  28175. source: "./media/characters/xavier-thyme/front-raven.svg",
  28176. extra: 4385 / 3642,
  28177. bottom: 131 / 4517
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(7 + 10 / 12, "feet"),
  28185. default: true
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28191. {
  28192. front: {
  28193. height: math.unit(1.6, "m"),
  28194. weight: math.unit(50, "kg"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/kiki/front.svg",
  28198. extra: 4682 / 3610,
  28199. bottom: 115 / 4777
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(1.6, "meters"),
  28207. default: true
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(50, "m"),
  28216. weight: math.unit(500, "tonnes"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/ryoko/front.svg",
  28220. extra: 4632 / 3926,
  28221. bottom: 193 / 4823
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Normal",
  28228. height: math.unit(50, "meters"),
  28229. default: true
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28235. {
  28236. front: {
  28237. height: math.unit(30, "m"),
  28238. weight: math.unit(22, "tonnes"),
  28239. name: "Front",
  28240. image: {
  28241. source: "./media/characters/elio/front.svg",
  28242. extra: 4582 / 3720,
  28243. bottom: 236 / 4828
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(30, "meters"),
  28251. default: true
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(6 + 3 / 12, "feet"),
  28260. weight: math.unit(120, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/azura/front.svg",
  28264. extra: 1149 / 1135,
  28265. bottom: 45 / 1194
  28266. }
  28267. },
  28268. frontClothed: {
  28269. height: math.unit(6 + 3 / 12, "feet"),
  28270. weight: math.unit(120, "lb"),
  28271. name: "Front (Clothed)",
  28272. image: {
  28273. source: "./media/characters/azura/front-clothed.svg",
  28274. extra: 1149 / 1135,
  28275. bottom: 45 / 1194
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(6 + 3 / 12, "feet"),
  28283. default: true
  28284. },
  28285. {
  28286. name: "Macro",
  28287. height: math.unit(20 + 6 / 12, "feet")
  28288. },
  28289. {
  28290. name: "Megamacro",
  28291. height: math.unit(12, "miles")
  28292. },
  28293. {
  28294. name: "Gigamacro",
  28295. height: math.unit(10000, "miles")
  28296. },
  28297. {
  28298. name: "Teramacro",
  28299. height: math.unit(900000, "miles")
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(12, "feet"),
  28308. weight: math.unit(1, "ton"),
  28309. capacity: math.unit(660000, "gallons"),
  28310. name: "Front",
  28311. image: {
  28312. source: "./media/characters/zeus/front.svg",
  28313. extra: 5005 / 4717,
  28314. bottom: 363 / 5388
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(12, "feet")
  28322. },
  28323. {
  28324. name: "Preferred Size",
  28325. height: math.unit(0.5, "miles"),
  28326. default: true
  28327. },
  28328. {
  28329. name: "Giga Horse",
  28330. height: math.unit(300, "miles")
  28331. },
  28332. {
  28333. name: "Riding Planets",
  28334. height: math.unit(30, "megameters")
  28335. },
  28336. {
  28337. name: "Cosmic Giant",
  28338. height: math.unit(3, "zettameters")
  28339. },
  28340. {
  28341. name: "Breeding God",
  28342. height: math.unit(9.92e22, "yottameters")
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28348. {
  28349. side: {
  28350. height: math.unit(9, "feet"),
  28351. weight: math.unit(1500, "kg"),
  28352. name: "Side",
  28353. image: {
  28354. source: "./media/characters/fang/side.svg",
  28355. extra: 924 / 866,
  28356. bottom: 47.5 / 972.3
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(9, "feet"),
  28364. default: true
  28365. },
  28366. {
  28367. name: "Macro",
  28368. height: math.unit(75 + 6 / 12, "feet")
  28369. },
  28370. {
  28371. name: "Teramacro",
  28372. height: math.unit(50000, "miles")
  28373. },
  28374. ]
  28375. ))
  28376. characterMakers.push(() => makeCharacter(
  28377. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28378. {
  28379. front: {
  28380. height: math.unit(10, "feet"),
  28381. weight: math.unit(2, "tons"),
  28382. name: "Front",
  28383. image: {
  28384. source: "./media/characters/rekhit/front.svg",
  28385. extra: 2796 / 2590,
  28386. bottom: 225 / 3022
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(10, "feet"),
  28394. default: true
  28395. },
  28396. {
  28397. name: "Macro",
  28398. height: math.unit(500, "feet")
  28399. },
  28400. ]
  28401. ))
  28402. characterMakers.push(() => makeCharacter(
  28403. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28404. {
  28405. front: {
  28406. height: math.unit(7 + 6.451 / 12, "feet"),
  28407. weight: math.unit(310, "lb"),
  28408. name: "Front",
  28409. image: {
  28410. source: "./media/characters/dahlia-verrick/front.svg",
  28411. extra: 1488 / 1365,
  28412. bottom: 6.2 / 1495
  28413. }
  28414. },
  28415. back: {
  28416. height: math.unit(7 + 6.451 / 12, "feet"),
  28417. weight: math.unit(310, "lb"),
  28418. name: "Back",
  28419. image: {
  28420. source: "./media/characters/dahlia-verrick/back.svg",
  28421. extra: 1472 / 1351,
  28422. bottom: 5.28 / 1477
  28423. }
  28424. },
  28425. frontBusiness: {
  28426. height: math.unit(7 + 6.451 / 12, "feet"),
  28427. weight: math.unit(200, "lb"),
  28428. name: "Front (Business)",
  28429. image: {
  28430. source: "./media/characters/dahlia-verrick/front-business.svg",
  28431. extra: 1478 / 1381,
  28432. bottom: 5.5 / 1484
  28433. }
  28434. },
  28435. frontCasual: {
  28436. height: math.unit(7 + 6.451 / 12, "feet"),
  28437. weight: math.unit(200, "lb"),
  28438. name: "Front (Casual)",
  28439. image: {
  28440. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28441. extra: 1478 / 1381,
  28442. bottom: 5.5 / 1484
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Travel-Sized",
  28449. height: math.unit(7.45, "inches")
  28450. },
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(7 + 6.451 / 12, "feet"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Hitting the Town",
  28458. height: math.unit(37 + 8 / 12, "feet")
  28459. },
  28460. {
  28461. name: "Stomp in the Suburbs",
  28462. height: math.unit(964 + 9.728 / 12, "feet")
  28463. },
  28464. {
  28465. name: "Sit on the City",
  28466. height: math.unit(61747 + 10.592 / 12, "feet")
  28467. },
  28468. {
  28469. name: "Glomp the Globe",
  28470. height: math.unit(252919327 + 4.832 / 12, "feet")
  28471. },
  28472. ]
  28473. ))
  28474. characterMakers.push(() => makeCharacter(
  28475. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28476. {
  28477. front: {
  28478. height: math.unit(6 + 4 / 12, "feet"),
  28479. weight: math.unit(320, "lb"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/balina-mahigan/front.svg",
  28483. extra: 447 / 428,
  28484. bottom: 18 / 466
  28485. }
  28486. },
  28487. back: {
  28488. height: math.unit(6 + 4 / 12, "feet"),
  28489. weight: math.unit(320, "lb"),
  28490. name: "Back",
  28491. image: {
  28492. source: "./media/characters/balina-mahigan/back.svg",
  28493. extra: 445 / 428,
  28494. bottom: 4.07 / 448
  28495. }
  28496. },
  28497. arm: {
  28498. height: math.unit(1.88, "feet"),
  28499. name: "Arm",
  28500. image: {
  28501. source: "./media/characters/balina-mahigan/arm.svg"
  28502. }
  28503. },
  28504. backPort: {
  28505. height: math.unit(0.685, "feet"),
  28506. name: "Back Port",
  28507. image: {
  28508. source: "./media/characters/balina-mahigan/back-port.svg"
  28509. }
  28510. },
  28511. hoofpaw: {
  28512. height: math.unit(1.41, "feet"),
  28513. name: "Hoofpaw",
  28514. image: {
  28515. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28516. }
  28517. },
  28518. leftHandBack: {
  28519. height: math.unit(0.938, "feet"),
  28520. name: "Left Hand (Back)",
  28521. image: {
  28522. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28523. }
  28524. },
  28525. leftHandFront: {
  28526. height: math.unit(0.938, "feet"),
  28527. name: "Left Hand (Front)",
  28528. image: {
  28529. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28530. }
  28531. },
  28532. rightHandBack: {
  28533. height: math.unit(0.95, "feet"),
  28534. name: "Right Hand (Back)",
  28535. image: {
  28536. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28537. }
  28538. },
  28539. rightHandFront: {
  28540. height: math.unit(0.95, "feet"),
  28541. name: "Right Hand (Front)",
  28542. image: {
  28543. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28544. }
  28545. },
  28546. },
  28547. [
  28548. {
  28549. name: "Normal",
  28550. height: math.unit(6 + 4 / 12, "feet"),
  28551. default: true
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28557. {
  28558. front: {
  28559. height: math.unit(6, "feet"),
  28560. weight: math.unit(320, "lb"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/balina-mejeri/front.svg",
  28564. extra: 517 / 488,
  28565. bottom: 44.2 / 561
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(6 + 4 / 12, "feet")
  28573. },
  28574. {
  28575. name: "Business",
  28576. height: math.unit(155, "feet"),
  28577. default: true
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28583. {
  28584. kneeling: {
  28585. height: math.unit(6 + 4 / 12, "feet"),
  28586. weight: math.unit(300 * 20, "lb"),
  28587. name: "Kneeling",
  28588. image: {
  28589. source: "./media/characters/balbarian/kneeling.svg",
  28590. extra: 922 / 862,
  28591. bottom: 42.4 / 965
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(6 + 4 / 12, "feet")
  28599. },
  28600. {
  28601. name: "Treasured",
  28602. height: math.unit(18 + 9 / 12, "feet"),
  28603. default: true
  28604. },
  28605. {
  28606. name: "Macro",
  28607. height: math.unit(900, "feet")
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(6 + 4 / 12, "feet"),
  28616. weight: math.unit(325, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/balina-amarini/front.svg",
  28620. extra: 415 / 403,
  28621. bottom: 19 / 433.4
  28622. }
  28623. },
  28624. back: {
  28625. height: math.unit(6 + 4 / 12, "feet"),
  28626. weight: math.unit(325, "lb"),
  28627. name: "Back",
  28628. image: {
  28629. source: "./media/characters/balina-amarini/back.svg",
  28630. extra: 415 / 403,
  28631. bottom: 13.5 / 432
  28632. }
  28633. },
  28634. overdrive: {
  28635. height: math.unit(6 + 4 / 12, "feet"),
  28636. weight: math.unit(400, "lb"),
  28637. name: "Overdrive",
  28638. image: {
  28639. source: "./media/characters/balina-amarini/overdrive.svg",
  28640. extra: 269 / 259,
  28641. bottom: 12 / 282
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Boom",
  28648. height: math.unit(9 + 10 / 12, "feet"),
  28649. default: true
  28650. },
  28651. {
  28652. name: "Macro",
  28653. height: math.unit(280, "feet")
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28659. {
  28660. goddess: {
  28661. height: math.unit(600, "feet"),
  28662. weight: math.unit(2000000, "tons"),
  28663. name: "Goddess",
  28664. image: {
  28665. source: "./media/characters/lady-kubwa/goddess.svg",
  28666. extra: 1240.5 / 1223,
  28667. bottom: 22 / 1263
  28668. }
  28669. },
  28670. goddesser: {
  28671. height: math.unit(900, "feet"),
  28672. weight: math.unit(20000000, "lb"),
  28673. name: "Goddess-er",
  28674. image: {
  28675. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28676. extra: 899 / 888,
  28677. bottom: 12.6 / 912
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Macro",
  28684. height: math.unit(600, "feet"),
  28685. default: true
  28686. },
  28687. {
  28688. name: "Megamacro",
  28689. height: math.unit(250, "miles")
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(7 + 7 / 12, "feet"),
  28698. weight: math.unit(250, "lb"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/tala-grovehorn/front.svg",
  28702. extra: 2636 / 2525,
  28703. bottom: 147 / 2781
  28704. }
  28705. },
  28706. back: {
  28707. height: math.unit(7 + 7 / 12, "feet"),
  28708. weight: math.unit(250, "lb"),
  28709. name: "Back",
  28710. image: {
  28711. source: "./media/characters/tala-grovehorn/back.svg",
  28712. extra: 2635 / 2539,
  28713. bottom: 100 / 2732.8
  28714. }
  28715. },
  28716. mouth: {
  28717. height: math.unit(1.15, "feet"),
  28718. name: "Mouth",
  28719. image: {
  28720. source: "./media/characters/tala-grovehorn/mouth.svg"
  28721. }
  28722. },
  28723. dick: {
  28724. height: math.unit(2.36, "feet"),
  28725. name: "Dick",
  28726. image: {
  28727. source: "./media/characters/tala-grovehorn/dick.svg"
  28728. }
  28729. },
  28730. slit: {
  28731. height: math.unit(0.61, "feet"),
  28732. name: "Slit",
  28733. image: {
  28734. source: "./media/characters/tala-grovehorn/slit.svg"
  28735. }
  28736. },
  28737. },
  28738. [
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(7 + 7 / 12, "feet"),
  28746. weight: math.unit(225, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/epona/front.svg",
  28750. extra: 2445 / 2290,
  28751. bottom: 251 / 2696
  28752. }
  28753. },
  28754. back: {
  28755. height: math.unit(7 + 7 / 12, "feet"),
  28756. weight: math.unit(225, "lb"),
  28757. name: "Back",
  28758. image: {
  28759. source: "./media/characters/epona/back.svg",
  28760. extra: 2546 / 2408,
  28761. bottom: 44 / 2589
  28762. }
  28763. },
  28764. genitals: {
  28765. height: math.unit(1.5, "feet"),
  28766. name: "Genitals",
  28767. image: {
  28768. source: "./media/characters/epona/genitals.svg"
  28769. }
  28770. },
  28771. },
  28772. [
  28773. {
  28774. name: "Normal",
  28775. height: math.unit(7 + 7 / 12, "feet"),
  28776. default: true
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(7, "feet"),
  28785. weight: math.unit(518, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/avia-bloodbourn/front.svg",
  28789. extra: 1466 / 1350,
  28790. bottom: 65 / 1527
  28791. }
  28792. },
  28793. },
  28794. [
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(9.35, "feet"),
  28802. weight: math.unit(600, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/amera/front.svg",
  28806. extra: 891 / 818,
  28807. bottom: 30 / 922.7
  28808. }
  28809. },
  28810. back: {
  28811. height: math.unit(9.35, "feet"),
  28812. weight: math.unit(600, "lb"),
  28813. name: "Back",
  28814. image: {
  28815. source: "./media/characters/amera/back.svg",
  28816. extra: 876 / 824,
  28817. bottom: 6.8 / 884
  28818. }
  28819. },
  28820. dick: {
  28821. height: math.unit(2.14, "feet"),
  28822. name: "Dick",
  28823. image: {
  28824. source: "./media/characters/amera/dick.svg"
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(9.35, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28838. {
  28839. kneeling: {
  28840. height: math.unit(3 + 4 / 12, "feet"),
  28841. weight: math.unit(90, "lb"),
  28842. name: "Kneeling",
  28843. image: {
  28844. source: "./media/characters/rosewen/kneeling.svg",
  28845. extra: 1835 / 1571,
  28846. bottom: 27.7 / 1862
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(3 + 4 / 12, "feet"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28860. {
  28861. front: {
  28862. height: math.unit(5 + 10 / 12, "feet"),
  28863. weight: math.unit(200, "lb"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/sabah/front.svg",
  28867. extra: 849 / 763,
  28868. bottom: 33.9 / 881
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(5 + 10 / 12, "feet"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28882. {
  28883. front: {
  28884. height: math.unit(3 + 5 / 12, "feet"),
  28885. weight: math.unit(40, "kg"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/purple-flame/front.svg",
  28889. extra: 1577 / 1412,
  28890. bottom: 97 / 1694
  28891. }
  28892. },
  28893. frontDressed: {
  28894. height: math.unit(3 + 5 / 12, "feet"),
  28895. weight: math.unit(40, "kg"),
  28896. name: "Front (Dressed)",
  28897. image: {
  28898. source: "./media/characters/purple-flame/front-dressed.svg",
  28899. extra: 1577 / 1412,
  28900. bottom: 97 / 1694
  28901. }
  28902. },
  28903. headphones: {
  28904. height: math.unit(0.85, "feet"),
  28905. name: "Headphones",
  28906. image: {
  28907. source: "./media/characters/purple-flame/headphones.svg"
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Really Small",
  28914. height: math.unit(5, "cm")
  28915. },
  28916. {
  28917. name: "Micro",
  28918. height: math.unit(1 + 5 / 12, "feet")
  28919. },
  28920. {
  28921. name: "Normal",
  28922. height: math.unit(3 + 5 / 12, "feet"),
  28923. default: true
  28924. },
  28925. {
  28926. name: "Minimacro",
  28927. height: math.unit(125, "feet")
  28928. },
  28929. {
  28930. name: "Macro",
  28931. height: math.unit(0.5, "miles")
  28932. },
  28933. {
  28934. name: "Megamacro",
  28935. height: math.unit(50, "miles")
  28936. },
  28937. {
  28938. name: "Gigantic",
  28939. height: math.unit(750, "miles")
  28940. },
  28941. {
  28942. name: "Planetary",
  28943. height: math.unit(15000, "miles")
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28949. {
  28950. front: {
  28951. height: math.unit(14, "feet"),
  28952. weight: math.unit(959, "lb"),
  28953. name: "Front",
  28954. image: {
  28955. source: "./media/characters/arsenal/front.svg",
  28956. extra: 2357 / 2157,
  28957. bottom: 93 / 2458
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(14, "feet"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(6, "feet"),
  28974. weight: math.unit(150, "lb"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/adira/front.svg",
  28978. extra: 1078 / 1029,
  28979. bottom: 87 / 1166
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Micro",
  28986. height: math.unit(4, "inches"),
  28987. default: true
  28988. },
  28989. {
  28990. name: "Macro",
  28991. height: math.unit(50, "feet")
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(16, "feet"),
  29000. weight: math.unit(1000, "lb"),
  29001. name: "Front",
  29002. image: {
  29003. source: "./media/characters/grim/front.svg",
  29004. extra: 622 / 614,
  29005. bottom: 18.1 / 642
  29006. }
  29007. },
  29008. back: {
  29009. height: math.unit(16, "feet"),
  29010. weight: math.unit(1000, "lb"),
  29011. name: "Back",
  29012. image: {
  29013. source: "./media/characters/grim/back.svg",
  29014. extra: 610.6 / 602,
  29015. bottom: 40.8 / 652
  29016. }
  29017. },
  29018. hunched: {
  29019. height: math.unit(9.75, "feet"),
  29020. weight: math.unit(1000, "lb"),
  29021. name: "Hunched",
  29022. image: {
  29023. source: "./media/characters/grim/hunched.svg",
  29024. extra: 304 / 297,
  29025. bottom: 35.4 / 394
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(16, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(2.3, "meters"),
  29042. weight: math.unit(300, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/sinja/front-sfw.svg",
  29046. extra: 1393 / 1294,
  29047. bottom: 70 / 1463
  29048. }
  29049. },
  29050. frontNsfw: {
  29051. height: math.unit(2.3, "meters"),
  29052. weight: math.unit(300, "lb"),
  29053. name: "Front (NSFW)",
  29054. image: {
  29055. source: "./media/characters/sinja/front-nsfw.svg",
  29056. extra: 1393 / 1294,
  29057. bottom: 70 / 1463
  29058. }
  29059. },
  29060. back: {
  29061. height: math.unit(2.3, "meters"),
  29062. weight: math.unit(300, "lb"),
  29063. name: "Back",
  29064. image: {
  29065. source: "./media/characters/sinja/back.svg",
  29066. extra: 1393 / 1294,
  29067. bottom: 70 / 1463
  29068. }
  29069. },
  29070. head: {
  29071. height: math.unit(1.771, "feet"),
  29072. name: "Head",
  29073. image: {
  29074. source: "./media/characters/sinja/head.svg"
  29075. }
  29076. },
  29077. slit: {
  29078. height: math.unit(0.8, "feet"),
  29079. name: "Slit",
  29080. image: {
  29081. source: "./media/characters/sinja/slit.svg"
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(2.3, "meters")
  29089. },
  29090. {
  29091. name: "Macro",
  29092. height: math.unit(91, "meters"),
  29093. default: true
  29094. },
  29095. {
  29096. name: "Megamacro",
  29097. height: math.unit(91440, "meters")
  29098. },
  29099. {
  29100. name: "Gigamacro",
  29101. height: math.unit(60960000, "meters")
  29102. },
  29103. {
  29104. name: "Teramacro",
  29105. height: math.unit(9144000000, "meters")
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29111. {
  29112. front: {
  29113. height: math.unit(1.7, "meters"),
  29114. weight: math.unit(130, "lb"),
  29115. name: "Front",
  29116. image: {
  29117. source: "./media/characters/kyu/front.svg",
  29118. extra: 415 / 395,
  29119. bottom: 5 / 420
  29120. }
  29121. },
  29122. head: {
  29123. height: math.unit(1.75, "feet"),
  29124. name: "Head",
  29125. image: {
  29126. source: "./media/characters/kyu/head.svg"
  29127. }
  29128. },
  29129. foot: {
  29130. height: math.unit(0.81, "feet"),
  29131. name: "Foot",
  29132. image: {
  29133. source: "./media/characters/kyu/foot.svg"
  29134. }
  29135. },
  29136. },
  29137. [
  29138. {
  29139. name: "Normal",
  29140. height: math.unit(1.7, "meters")
  29141. },
  29142. {
  29143. name: "Macro",
  29144. height: math.unit(131, "feet"),
  29145. default: true
  29146. },
  29147. {
  29148. name: "Megamacro",
  29149. height: math.unit(91440, "meters")
  29150. },
  29151. {
  29152. name: "Gigamacro",
  29153. height: math.unit(60960000, "meters")
  29154. },
  29155. {
  29156. name: "Teramacro",
  29157. height: math.unit(9144000000, "meters")
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(7 + 1 / 12, "feet"),
  29166. weight: math.unit(250, "lb"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/joey/front.svg",
  29170. extra: 1791 / 1537,
  29171. bottom: 28 / 1816
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Micro",
  29178. height: math.unit(3, "inches")
  29179. },
  29180. {
  29181. name: "Normal",
  29182. height: math.unit(7 + 1 / 12, "feet"),
  29183. default: true
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(165, "cm"),
  29192. weight: math.unit(140, "lb"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/sam-evans/front.svg",
  29196. extra: 3417 / 3230,
  29197. bottom: 41.3 / 3417
  29198. }
  29199. },
  29200. frontSixTails: {
  29201. height: math.unit(165, "cm"),
  29202. weight: math.unit(140, "lb"),
  29203. name: "Front-six-tails",
  29204. image: {
  29205. source: "./media/characters/sam-evans/front-six-tails.svg",
  29206. extra: 3417 / 3230,
  29207. bottom: 41.3 / 3417
  29208. }
  29209. },
  29210. back: {
  29211. height: math.unit(165, "cm"),
  29212. weight: math.unit(140, "lb"),
  29213. name: "Back",
  29214. image: {
  29215. source: "./media/characters/sam-evans/back.svg",
  29216. extra: 3227 / 3032,
  29217. bottom: 6.8 / 3234
  29218. }
  29219. },
  29220. face: {
  29221. height: math.unit(0.68, "feet"),
  29222. name: "Face",
  29223. image: {
  29224. source: "./media/characters/sam-evans/face.svg"
  29225. }
  29226. },
  29227. },
  29228. [
  29229. {
  29230. name: "Normal",
  29231. height: math.unit(165, "cm"),
  29232. default: true
  29233. },
  29234. {
  29235. name: "Macro",
  29236. height: math.unit(100, "meters")
  29237. },
  29238. {
  29239. name: "Macro+",
  29240. height: math.unit(800, "meters")
  29241. },
  29242. {
  29243. name: "Macro++",
  29244. height: math.unit(3, "km")
  29245. },
  29246. {
  29247. name: "Macro+++",
  29248. height: math.unit(30, "km")
  29249. },
  29250. ]
  29251. ))
  29252. characterMakers.push(() => makeCharacter(
  29253. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29254. {
  29255. front: {
  29256. height: math.unit(10, "feet"),
  29257. weight: math.unit(750, "lb"),
  29258. name: "Front",
  29259. image: {
  29260. source: "./media/characters/juliet-a/front.svg",
  29261. extra: 1766 / 1720,
  29262. bottom: 43 / 1809
  29263. }
  29264. },
  29265. back: {
  29266. height: math.unit(10, "feet"),
  29267. weight: math.unit(750, "lb"),
  29268. name: "Back",
  29269. image: {
  29270. source: "./media/characters/juliet-a/back.svg",
  29271. extra: 1781 / 1734,
  29272. bottom: 35 / 1810,
  29273. }
  29274. },
  29275. },
  29276. [
  29277. {
  29278. name: "Normal",
  29279. height: math.unit(10, "feet"),
  29280. default: true
  29281. },
  29282. {
  29283. name: "Dragon Form",
  29284. height: math.unit(250, "feet")
  29285. },
  29286. {
  29287. name: "Macro",
  29288. height: math.unit(1000, "feet")
  29289. },
  29290. {
  29291. name: "Megamacro",
  29292. height: math.unit(10000, "feet")
  29293. }
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29298. {
  29299. regular: {
  29300. height: math.unit(7 + 3 / 12, "feet"),
  29301. weight: math.unit(260, "lb"),
  29302. name: "Regular",
  29303. image: {
  29304. source: "./media/characters/wild/regular.svg",
  29305. extra: 97.45 / 92,
  29306. bottom: 6.8 / 104.3
  29307. }
  29308. },
  29309. biggums: {
  29310. height: math.unit(8 + 6 / 12, "feet"),
  29311. weight: math.unit(425, "lb"),
  29312. name: "Biggums",
  29313. image: {
  29314. source: "./media/characters/wild/biggums.svg",
  29315. extra: 97.45 / 92,
  29316. bottom: 7.5 / 132.34
  29317. }
  29318. },
  29319. mawRegular: {
  29320. height: math.unit(1.24, "feet"),
  29321. name: "Maw (Regular)",
  29322. image: {
  29323. source: "./media/characters/wild/maw.svg"
  29324. }
  29325. },
  29326. mawBiggums: {
  29327. height: math.unit(1.47, "feet"),
  29328. name: "Maw (Biggums)",
  29329. image: {
  29330. source: "./media/characters/wild/maw.svg"
  29331. }
  29332. },
  29333. },
  29334. [
  29335. {
  29336. name: "Normal",
  29337. height: math.unit(7 + 3 / 12, "feet"),
  29338. default: true
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29344. {
  29345. front: {
  29346. height: math.unit(2.5, "meters"),
  29347. weight: math.unit(200, "kg"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/vidar/front.svg",
  29351. extra: 2994 / 2795,
  29352. bottom: 56 / 3061
  29353. }
  29354. },
  29355. back: {
  29356. height: math.unit(2.5, "meters"),
  29357. weight: math.unit(200, "kg"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/vidar/back.svg",
  29361. extra: 3131 / 2928,
  29362. bottom: 13.5 / 3141.5
  29363. }
  29364. },
  29365. feral: {
  29366. height: math.unit(2.5, "meters"),
  29367. weight: math.unit(2000, "kg"),
  29368. name: "Feral",
  29369. image: {
  29370. source: "./media/characters/vidar/feral.svg",
  29371. extra: 2790 / 1765,
  29372. bottom: 6 / 2796
  29373. }
  29374. },
  29375. },
  29376. [
  29377. {
  29378. name: "Normal",
  29379. height: math.unit(2.5, "meters"),
  29380. default: true
  29381. },
  29382. {
  29383. name: "Macro",
  29384. height: math.unit(100, "meters")
  29385. },
  29386. ]
  29387. ))
  29388. characterMakers.push(() => makeCharacter(
  29389. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29390. {
  29391. front: {
  29392. height: math.unit(5 + 9 / 12, "feet"),
  29393. weight: math.unit(120, "lb"),
  29394. name: "Front",
  29395. image: {
  29396. source: "./media/characters/ash/front.svg",
  29397. extra: 2189 / 1961,
  29398. bottom: 5.2 / 2194
  29399. }
  29400. },
  29401. },
  29402. [
  29403. {
  29404. name: "Normal",
  29405. height: math.unit(5 + 9 / 12, "feet"),
  29406. default: true
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(9, "feet"),
  29415. weight: math.unit(10000, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/gygabite/front.svg",
  29419. bottom: 31.7 / 537.8,
  29420. extra: 505 / 370
  29421. }
  29422. },
  29423. },
  29424. [
  29425. {
  29426. name: "Normal",
  29427. height: math.unit(9, "feet"),
  29428. default: true
  29429. },
  29430. ]
  29431. ))
  29432. characterMakers.push(() => makeCharacter(
  29433. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29434. {
  29435. front: {
  29436. height: math.unit(12, "feet"),
  29437. weight: math.unit(4000, "lb"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/p0tat0/front.svg",
  29441. extra: 1065 / 921,
  29442. bottom: 55.7 / 1121.25
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Normal",
  29449. height: math.unit(12, "feet"),
  29450. default: true
  29451. },
  29452. ]
  29453. ))
  29454. characterMakers.push(() => makeCharacter(
  29455. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29456. {
  29457. side: {
  29458. height: math.unit(6.5, "feet"),
  29459. weight: math.unit(800, "lb"),
  29460. name: "Side",
  29461. image: {
  29462. source: "./media/characters/dusk/side.svg",
  29463. extra: 615 / 373,
  29464. bottom: 53 / 664
  29465. }
  29466. },
  29467. sitting: {
  29468. height: math.unit(7, "feet"),
  29469. weight: math.unit(800, "lb"),
  29470. name: "Sitting",
  29471. image: {
  29472. source: "./media/characters/dusk/sitting.svg",
  29473. extra: 753 / 425,
  29474. bottom: 33 / 774
  29475. }
  29476. },
  29477. head: {
  29478. height: math.unit(6.1, "feet"),
  29479. name: "Head",
  29480. image: {
  29481. source: "./media/characters/dusk/head.svg"
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(7, "feet"),
  29489. default: true
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(15, "feet"),
  29498. weight: math.unit(7000, "lb"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/jay-direwolf/front.svg",
  29502. extra: 1810 / 1732,
  29503. bottom: 66 / 1892
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Normal",
  29510. height: math.unit(15, "feet"),
  29511. default: true
  29512. },
  29513. ]
  29514. ))
  29515. characterMakers.push(() => makeCharacter(
  29516. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29517. {
  29518. front: {
  29519. height: math.unit(4 + 9 / 12, "feet"),
  29520. weight: math.unit(130, "lb"),
  29521. name: "Front",
  29522. image: {
  29523. source: "./media/characters/anchovie/front.svg",
  29524. extra: 382 / 350,
  29525. bottom: 25 / 409
  29526. }
  29527. },
  29528. back: {
  29529. height: math.unit(4 + 9 / 12, "feet"),
  29530. weight: math.unit(130, "lb"),
  29531. name: "Back",
  29532. image: {
  29533. source: "./media/characters/anchovie/back.svg",
  29534. extra: 385 / 352,
  29535. bottom: 16.6 / 402
  29536. }
  29537. },
  29538. frontDressed: {
  29539. height: math.unit(4 + 9 / 12, "feet"),
  29540. weight: math.unit(130, "lb"),
  29541. name: "Front (Dressed)",
  29542. image: {
  29543. source: "./media/characters/anchovie/front-dressed.svg",
  29544. extra: 382 / 350,
  29545. bottom: 25 / 409
  29546. }
  29547. },
  29548. backDressed: {
  29549. height: math.unit(4 + 9 / 12, "feet"),
  29550. weight: math.unit(130, "lb"),
  29551. name: "Back (Dressed)",
  29552. image: {
  29553. source: "./media/characters/anchovie/back-dressed.svg",
  29554. extra: 385 / 352,
  29555. bottom: 16.6 / 402
  29556. }
  29557. },
  29558. },
  29559. [
  29560. {
  29561. name: "Micro",
  29562. height: math.unit(6.4, "inches")
  29563. },
  29564. {
  29565. name: "Normal",
  29566. height: math.unit(4 + 9 / 12, "feet"),
  29567. default: true
  29568. },
  29569. ]
  29570. ))
  29571. characterMakers.push(() => makeCharacter(
  29572. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29573. {
  29574. front: {
  29575. height: math.unit(2, "meters"),
  29576. weight: math.unit(180, "lb"),
  29577. name: "Front",
  29578. image: {
  29579. source: "./media/characters/acidrenamon/front.svg",
  29580. extra: 987 / 890,
  29581. bottom: 22.8 / 1009
  29582. }
  29583. },
  29584. back: {
  29585. height: math.unit(2, "meters"),
  29586. weight: math.unit(180, "lb"),
  29587. name: "Back",
  29588. image: {
  29589. source: "./media/characters/acidrenamon/back.svg",
  29590. extra: 983 / 891,
  29591. bottom: 8.4 / 992
  29592. }
  29593. },
  29594. head: {
  29595. height: math.unit(1.92, "feet"),
  29596. name: "Head",
  29597. image: {
  29598. source: "./media/characters/acidrenamon/head.svg"
  29599. }
  29600. },
  29601. rump: {
  29602. height: math.unit(1.72, "feet"),
  29603. name: "Rump",
  29604. image: {
  29605. source: "./media/characters/acidrenamon/rump.svg"
  29606. }
  29607. },
  29608. tail: {
  29609. height: math.unit(4.2, "feet"),
  29610. name: "Tail",
  29611. image: {
  29612. source: "./media/characters/acidrenamon/tail.svg"
  29613. }
  29614. },
  29615. },
  29616. [
  29617. {
  29618. name: "Normal",
  29619. height: math.unit(2, "meters"),
  29620. default: true
  29621. },
  29622. {
  29623. name: "Minimacro",
  29624. height: math.unit(7, "meters")
  29625. },
  29626. {
  29627. name: "Macro",
  29628. height: math.unit(200, "meters")
  29629. },
  29630. {
  29631. name: "Gigamacro",
  29632. height: math.unit(0.2, "earths")
  29633. },
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29638. {
  29639. front: {
  29640. height: math.unit(152, "feet"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/kenzie-lee/front.svg",
  29644. extra: 1869/1774,
  29645. bottom: 128/1997
  29646. }
  29647. },
  29648. side: {
  29649. height: math.unit(86, "feet"),
  29650. name: "Side",
  29651. image: {
  29652. source: "./media/characters/kenzie-lee/side.svg",
  29653. extra: 930/815,
  29654. bottom: 177/1107
  29655. }
  29656. },
  29657. paw: {
  29658. height: math.unit(15, "feet"),
  29659. name: "Paw",
  29660. image: {
  29661. source: "./media/characters/kenzie-lee/paw.svg"
  29662. }
  29663. },
  29664. },
  29665. [
  29666. {
  29667. name: "Kenzie Flea",
  29668. height: math.unit(2, "mm"),
  29669. default: true
  29670. },
  29671. {
  29672. name: "Micro",
  29673. height: math.unit(2, "inches")
  29674. },
  29675. {
  29676. name: "Normal",
  29677. height: math.unit(152, "feet")
  29678. },
  29679. {
  29680. name: "Megamacro",
  29681. height: math.unit(7, "miles")
  29682. },
  29683. {
  29684. name: "Gigamacro",
  29685. height: math.unit(8000, "miles")
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(6, "feet"),
  29694. name: "Front",
  29695. image: {
  29696. source: "./media/characters/withers/front.svg",
  29697. extra: 1935/1760,
  29698. bottom: 72/2007
  29699. }
  29700. },
  29701. back: {
  29702. height: math.unit(6, "feet"),
  29703. name: "Back",
  29704. image: {
  29705. source: "./media/characters/withers/back.svg",
  29706. extra: 1944/1792,
  29707. bottom: 12/1956
  29708. }
  29709. },
  29710. dressed: {
  29711. height: math.unit(6, "feet"),
  29712. name: "Dressed",
  29713. image: {
  29714. source: "./media/characters/withers/dressed.svg",
  29715. extra: 1937/1765,
  29716. bottom: 73/2010
  29717. }
  29718. },
  29719. phase1: {
  29720. height: math.unit(1.1, "feet"),
  29721. name: "Phase 1",
  29722. image: {
  29723. source: "./media/characters/withers/phase-1.svg",
  29724. extra: 1885/1232,
  29725. bottom: 0/1885
  29726. }
  29727. },
  29728. phase2: {
  29729. height: math.unit(1.05, "feet"),
  29730. name: "Phase 2",
  29731. image: {
  29732. source: "./media/characters/withers/phase-2.svg",
  29733. extra: 1792/1090,
  29734. bottom: 0/1792
  29735. }
  29736. },
  29737. partyWipe: {
  29738. height: math.unit(1.1, "feet"),
  29739. name: "Party Wipe",
  29740. image: {
  29741. source: "./media/characters/withers/party-wipe.svg",
  29742. extra: 1864/1207,
  29743. bottom: 0/1864
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Macro",
  29750. height: math.unit(167, "feet"),
  29751. default: true
  29752. },
  29753. {
  29754. name: "Megamacro",
  29755. height: math.unit(15, "miles")
  29756. }
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29761. {
  29762. front: {
  29763. height: math.unit(6 + 7 / 12, "feet"),
  29764. weight: math.unit(250, "lb"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/nemoskii/front.svg",
  29768. extra: 2270 / 1734,
  29769. bottom: 86 / 2354
  29770. }
  29771. },
  29772. back: {
  29773. height: math.unit(6 + 7 / 12, "feet"),
  29774. weight: math.unit(250, "lb"),
  29775. name: "Back",
  29776. image: {
  29777. source: "./media/characters/nemoskii/back.svg",
  29778. extra: 1845 / 1788,
  29779. bottom: 10.5 / 1852
  29780. }
  29781. },
  29782. head: {
  29783. height: math.unit(1.31, "feet"),
  29784. name: "Head",
  29785. image: {
  29786. source: "./media/characters/nemoskii/head.svg"
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Micro",
  29793. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29794. },
  29795. {
  29796. name: "Normal",
  29797. height: math.unit(6 + 7 / 12, "feet"),
  29798. default: true
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit((6 + 7 / 12) * 150, "feet")
  29803. },
  29804. {
  29805. name: "Macro+",
  29806. height: math.unit((6 + 7 / 12) * 500, "feet")
  29807. },
  29808. {
  29809. name: "Megamacro",
  29810. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29811. },
  29812. ]
  29813. ))
  29814. characterMakers.push(() => makeCharacter(
  29815. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29816. {
  29817. front: {
  29818. height: math.unit(1, "mile"),
  29819. weight: math.unit(265261.9, "lb"),
  29820. name: "Front",
  29821. image: {
  29822. source: "./media/characters/shui/front.svg",
  29823. extra: 1633 / 1564,
  29824. bottom: 91.5 / 1726
  29825. }
  29826. },
  29827. },
  29828. [
  29829. {
  29830. name: "Macro",
  29831. height: math.unit(1, "mile"),
  29832. default: true
  29833. },
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29838. {
  29839. front: {
  29840. height: math.unit(12 + 6 / 12, "feet"),
  29841. weight: math.unit(1342, "lb"),
  29842. name: "Front",
  29843. image: {
  29844. source: "./media/characters/arokh-takakura/front.svg",
  29845. extra: 1089 / 1043,
  29846. bottom: 77.4 / 1176.7
  29847. }
  29848. },
  29849. back: {
  29850. height: math.unit(12 + 6 / 12, "feet"),
  29851. weight: math.unit(1342, "lb"),
  29852. name: "Back",
  29853. image: {
  29854. source: "./media/characters/arokh-takakura/back.svg",
  29855. extra: 1046 / 1019,
  29856. bottom: 102 / 1150
  29857. }
  29858. },
  29859. },
  29860. [
  29861. {
  29862. name: "Big",
  29863. height: math.unit(12 + 6 / 12, "feet"),
  29864. default: true
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29870. {
  29871. front: {
  29872. height: math.unit(5 + 6 / 12, "feet"),
  29873. weight: math.unit(150, "lb"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/theo/front.svg",
  29877. extra: 1184 / 1131,
  29878. bottom: 7.4 / 1191
  29879. }
  29880. },
  29881. },
  29882. [
  29883. {
  29884. name: "Micro",
  29885. height: math.unit(5, "inches")
  29886. },
  29887. {
  29888. name: "Normal",
  29889. height: math.unit(5 + 6 / 12, "feet"),
  29890. default: true
  29891. },
  29892. ]
  29893. ))
  29894. characterMakers.push(() => makeCharacter(
  29895. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29896. {
  29897. front: {
  29898. height: math.unit(5 + 9 / 12, "feet"),
  29899. weight: math.unit(130, "lb"),
  29900. name: "Front",
  29901. image: {
  29902. source: "./media/characters/cecelia-swift/front.svg",
  29903. extra: 502 / 484,
  29904. bottom: 23 / 523
  29905. }
  29906. },
  29907. back: {
  29908. height: math.unit(5 + 9 / 12, "feet"),
  29909. weight: math.unit(130, "lb"),
  29910. name: "Back",
  29911. image: {
  29912. source: "./media/characters/cecelia-swift/back.svg",
  29913. extra: 499 / 485,
  29914. bottom: 12 / 511
  29915. }
  29916. },
  29917. head: {
  29918. height: math.unit(0.90, "feet"),
  29919. name: "Head",
  29920. image: {
  29921. source: "./media/characters/cecelia-swift/head.svg"
  29922. }
  29923. },
  29924. rump: {
  29925. height: math.unit(1.75, "feet"),
  29926. name: "Rump",
  29927. image: {
  29928. source: "./media/characters/cecelia-swift/rump.svg"
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Normal",
  29935. height: math.unit(5 + 9 / 12, "feet"),
  29936. default: true
  29937. },
  29938. {
  29939. name: "Big",
  29940. height: math.unit(50, "feet")
  29941. },
  29942. {
  29943. name: "Macro",
  29944. height: math.unit(100, "feet")
  29945. },
  29946. {
  29947. name: "Macro+",
  29948. height: math.unit(500, "feet")
  29949. },
  29950. {
  29951. name: "Macro++",
  29952. height: math.unit(1000, "feet")
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29958. {
  29959. front: {
  29960. height: math.unit(6, "feet"),
  29961. weight: math.unit(150, "lb"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/kaunan/front.svg",
  29965. extra: 2890 / 2523,
  29966. bottom: 49 / 2939
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Macro",
  29973. height: math.unit(150, "feet"),
  29974. default: true
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29980. {
  29981. dressed: {
  29982. height: math.unit(175, "cm"),
  29983. weight: math.unit(60, "kg"),
  29984. name: "Dressed",
  29985. image: {
  29986. source: "./media/characters/fei/dressed.svg",
  29987. extra: 1402/1278,
  29988. bottom: 27/1429
  29989. }
  29990. },
  29991. nude: {
  29992. height: math.unit(175, "cm"),
  29993. weight: math.unit(60, "kg"),
  29994. name: "Nude",
  29995. image: {
  29996. source: "./media/characters/fei/nude.svg",
  29997. extra: 1402/1278,
  29998. bottom: 27/1429
  29999. }
  30000. },
  30001. heels: {
  30002. height: math.unit(0.466, "feet"),
  30003. name: "Heels",
  30004. image: {
  30005. source: "./media/characters/fei/heels.svg",
  30006. extra: 156/152,
  30007. bottom: 28/184
  30008. }
  30009. },
  30010. },
  30011. [
  30012. {
  30013. name: "Mortal",
  30014. height: math.unit(175, "cm")
  30015. },
  30016. {
  30017. name: "Normal",
  30018. height: math.unit(3500, "m")
  30019. },
  30020. {
  30021. name: "Stroll",
  30022. height: math.unit(18.4, "km"),
  30023. default: true
  30024. },
  30025. {
  30026. name: "Showoff",
  30027. height: math.unit(175, "km")
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30033. {
  30034. front: {
  30035. height: math.unit(7, "feet"),
  30036. weight: math.unit(1000, "kg"),
  30037. name: "Front",
  30038. image: {
  30039. source: "./media/characters/edrax/front.svg",
  30040. extra: 2838 / 2550,
  30041. bottom: 130 / 2968
  30042. }
  30043. },
  30044. },
  30045. [
  30046. {
  30047. name: "Small",
  30048. height: math.unit(7, "feet")
  30049. },
  30050. {
  30051. name: "Normal",
  30052. height: math.unit(1500, "meters")
  30053. },
  30054. {
  30055. name: "Mega",
  30056. height: math.unit(12000000, "km"),
  30057. default: true
  30058. },
  30059. {
  30060. name: "Megamacro",
  30061. height: math.unit(10600000, "lightyears")
  30062. },
  30063. {
  30064. name: "Hypermacro",
  30065. height: math.unit(256, "yottameters")
  30066. },
  30067. ]
  30068. ))
  30069. characterMakers.push(() => makeCharacter(
  30070. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30071. {
  30072. front: {
  30073. height: math.unit(10, "feet"),
  30074. weight: math.unit(750, "lb"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/clove/front.svg",
  30078. extra: 1918/1751,
  30079. bottom: 52/1970
  30080. }
  30081. },
  30082. back: {
  30083. height: math.unit(10, "feet"),
  30084. weight: math.unit(750, "lb"),
  30085. name: "Back",
  30086. image: {
  30087. source: "./media/characters/clove/back.svg",
  30088. extra: 1912/1747,
  30089. bottom: 50/1962
  30090. }
  30091. },
  30092. },
  30093. [
  30094. {
  30095. name: "Normal",
  30096. height: math.unit(10, "feet"),
  30097. default: true
  30098. },
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30103. {
  30104. front: {
  30105. height: math.unit(4, "feet"),
  30106. weight: math.unit(50, "lb"),
  30107. name: "Front",
  30108. image: {
  30109. source: "./media/characters/alex-rabbit/front.svg",
  30110. extra: 507 / 458,
  30111. bottom: 18.5 / 527
  30112. }
  30113. },
  30114. back: {
  30115. height: math.unit(4, "feet"),
  30116. weight: math.unit(50, "lb"),
  30117. name: "Back",
  30118. image: {
  30119. source: "./media/characters/alex-rabbit/back.svg",
  30120. extra: 502 / 460,
  30121. bottom: 18.9 / 521
  30122. }
  30123. },
  30124. },
  30125. [
  30126. {
  30127. name: "Normal",
  30128. height: math.unit(4, "feet"),
  30129. default: true
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(1 + 3 / 12, "feet"),
  30138. weight: math.unit(80, "lb"),
  30139. name: "Front",
  30140. image: {
  30141. source: "./media/characters/zander-rose/front.svg",
  30142. extra: 916 / 797,
  30143. bottom: 17 / 933
  30144. }
  30145. },
  30146. back: {
  30147. height: math.unit(1 + 3 / 12, "feet"),
  30148. weight: math.unit(80, "lb"),
  30149. name: "Back",
  30150. image: {
  30151. source: "./media/characters/zander-rose/back.svg",
  30152. extra: 903 / 779,
  30153. bottom: 31 / 934
  30154. }
  30155. },
  30156. },
  30157. [
  30158. {
  30159. name: "Normal",
  30160. height: math.unit(1 + 3 / 12, "feet"),
  30161. default: true
  30162. },
  30163. ]
  30164. ))
  30165. characterMakers.push(() => makeCharacter(
  30166. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30167. {
  30168. anthro: {
  30169. height: math.unit(6, "feet"),
  30170. weight: math.unit(150, "lb"),
  30171. name: "Anthro",
  30172. image: {
  30173. source: "./media/characters/razz/anthro.svg",
  30174. extra: 1437 / 1343,
  30175. bottom: 48 / 1485
  30176. }
  30177. },
  30178. feral: {
  30179. height: math.unit(6, "feet"),
  30180. weight: math.unit(150, "lb"),
  30181. name: "Feral",
  30182. image: {
  30183. source: "./media/characters/razz/feral.svg",
  30184. extra: 2569 / 1385,
  30185. bottom: 95 / 2664
  30186. }
  30187. },
  30188. },
  30189. [
  30190. {
  30191. name: "Normal",
  30192. height: math.unit(6, "feet"),
  30193. default: true
  30194. },
  30195. ]
  30196. ))
  30197. characterMakers.push(() => makeCharacter(
  30198. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30199. {
  30200. front: {
  30201. height: math.unit(9 + 4 / 12, "feet"),
  30202. weight: math.unit(500, "lb"),
  30203. name: "Front",
  30204. image: {
  30205. source: "./media/characters/morrigan/front.svg",
  30206. extra: 2707 / 2579,
  30207. bottom: 156 / 2863
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Normal",
  30214. height: math.unit(9 + 4 / 12, "feet"),
  30215. default: true
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30221. {
  30222. front: {
  30223. height: math.unit(5, "stories"),
  30224. weight: math.unit(4000, "lb"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/jenene/front.svg",
  30228. extra: 1780 / 1710,
  30229. bottom: 57 / 1837
  30230. }
  30231. },
  30232. },
  30233. [
  30234. {
  30235. name: "Normal",
  30236. height: math.unit(5, "stories"),
  30237. default: true
  30238. },
  30239. ]
  30240. ))
  30241. characterMakers.push(() => makeCharacter(
  30242. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30243. {
  30244. taurSfw: {
  30245. height: math.unit(10, "meters"),
  30246. weight: math.unit(17500, "kg"),
  30247. name: "Taur",
  30248. image: {
  30249. source: "./media/characters/faey/taur-sfw.svg",
  30250. extra: 1200 / 968,
  30251. bottom: 41 / 1241
  30252. }
  30253. },
  30254. chestmaw: {
  30255. height: math.unit(2.01, "meters"),
  30256. name: "Chestmaw",
  30257. image: {
  30258. source: "./media/characters/faey/chestmaw.svg"
  30259. }
  30260. },
  30261. foot: {
  30262. height: math.unit(2.43, "meters"),
  30263. name: "Foot",
  30264. image: {
  30265. source: "./media/characters/faey/foot.svg"
  30266. }
  30267. },
  30268. jaws: {
  30269. height: math.unit(1.66, "meters"),
  30270. name: "Jaws",
  30271. image: {
  30272. source: "./media/characters/faey/jaws.svg"
  30273. }
  30274. },
  30275. tongues: {
  30276. height: math.unit(2.01, "meters"),
  30277. name: "Tongues",
  30278. image: {
  30279. source: "./media/characters/faey/tongues.svg"
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Small",
  30286. height: math.unit(10, "meters"),
  30287. default: true
  30288. },
  30289. {
  30290. name: "Big",
  30291. height: math.unit(500000, "km")
  30292. },
  30293. ]
  30294. ))
  30295. characterMakers.push(() => makeCharacter(
  30296. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30297. {
  30298. front: {
  30299. height: math.unit(7, "feet"),
  30300. weight: math.unit(275, "lb"),
  30301. name: "Front",
  30302. image: {
  30303. source: "./media/characters/roku/front.svg",
  30304. extra: 903 / 878,
  30305. bottom: 37 / 940
  30306. }
  30307. },
  30308. },
  30309. [
  30310. {
  30311. name: "Normal",
  30312. height: math.unit(7, "feet"),
  30313. default: true
  30314. },
  30315. {
  30316. name: "Macro",
  30317. height: math.unit(500, "feet")
  30318. },
  30319. {
  30320. name: "Megamacro",
  30321. height: math.unit(200, "miles")
  30322. },
  30323. ]
  30324. ))
  30325. characterMakers.push(() => makeCharacter(
  30326. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30327. {
  30328. front: {
  30329. height: math.unit(6 + 2 / 12, "feet"),
  30330. weight: math.unit(150, "lb"),
  30331. name: "Front",
  30332. image: {
  30333. source: "./media/characters/lira/front.svg",
  30334. extra: 1727 / 1605,
  30335. bottom: 26 / 1753
  30336. }
  30337. },
  30338. back: {
  30339. height: math.unit(6 + 2 / 12, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Back",
  30342. image: {
  30343. source: "./media/characters/lira/back.svg",
  30344. extra: 1713/1621,
  30345. bottom: 20/1733
  30346. }
  30347. },
  30348. hand: {
  30349. height: math.unit(0.75, "feet"),
  30350. name: "Hand",
  30351. image: {
  30352. source: "./media/characters/lira/hand.svg"
  30353. }
  30354. },
  30355. maw: {
  30356. height: math.unit(0.65, "feet"),
  30357. name: "Maw",
  30358. image: {
  30359. source: "./media/characters/lira/maw.svg"
  30360. }
  30361. },
  30362. pawDigi: {
  30363. height: math.unit(1.6, "feet"),
  30364. name: "Paw Digi",
  30365. image: {
  30366. source: "./media/characters/lira/paw-digi.svg"
  30367. }
  30368. },
  30369. pawPlanti: {
  30370. height: math.unit(1.4, "feet"),
  30371. name: "Paw Planti",
  30372. image: {
  30373. source: "./media/characters/lira/paw-planti.svg"
  30374. }
  30375. },
  30376. },
  30377. [
  30378. {
  30379. name: "Normal",
  30380. height: math.unit(6 + 2 / 12, "feet"),
  30381. default: true
  30382. },
  30383. {
  30384. name: "Macro",
  30385. height: math.unit(100, "feet")
  30386. },
  30387. {
  30388. name: "Macro²",
  30389. height: math.unit(1600, "feet")
  30390. },
  30391. {
  30392. name: "Planetary",
  30393. height: math.unit(20, "earths")
  30394. },
  30395. ]
  30396. ))
  30397. characterMakers.push(() => makeCharacter(
  30398. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30399. {
  30400. front: {
  30401. height: math.unit(6, "feet"),
  30402. weight: math.unit(150, "lb"),
  30403. name: "Front",
  30404. image: {
  30405. source: "./media/characters/hadjet/front.svg",
  30406. extra: 1480 / 1346,
  30407. bottom: 26 / 1506
  30408. }
  30409. },
  30410. frontNsfw: {
  30411. height: math.unit(6, "feet"),
  30412. weight: math.unit(150, "lb"),
  30413. name: "Front (NSFW)",
  30414. image: {
  30415. source: "./media/characters/hadjet/front-nsfw.svg",
  30416. extra: 1440 / 1358,
  30417. bottom: 52 / 1492
  30418. }
  30419. },
  30420. },
  30421. [
  30422. {
  30423. name: "Macro",
  30424. height: math.unit(10, "stories"),
  30425. default: true
  30426. },
  30427. {
  30428. name: "Megamacro",
  30429. height: math.unit(1.5, "miles")
  30430. },
  30431. {
  30432. name: "Megamacro+",
  30433. height: math.unit(5, "miles")
  30434. },
  30435. ]
  30436. ))
  30437. characterMakers.push(() => makeCharacter(
  30438. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30439. {
  30440. side: {
  30441. height: math.unit(106, "feet"),
  30442. weight: math.unit(500, "tonnes"),
  30443. name: "Side",
  30444. image: {
  30445. source: "./media/characters/kodran/side.svg",
  30446. extra: 553 / 480,
  30447. bottom: 33 / 586
  30448. }
  30449. },
  30450. front: {
  30451. height: math.unit(132, "feet"),
  30452. weight: math.unit(500, "tonnes"),
  30453. name: "Front",
  30454. image: {
  30455. source: "./media/characters/kodran/front.svg",
  30456. extra: 667 / 643,
  30457. bottom: 42 / 709
  30458. }
  30459. },
  30460. flying: {
  30461. height: math.unit(350, "feet"),
  30462. weight: math.unit(500, "tonnes"),
  30463. name: "Flying",
  30464. image: {
  30465. source: "./media/characters/kodran/flying.svg"
  30466. }
  30467. },
  30468. foot: {
  30469. height: math.unit(33, "feet"),
  30470. name: "Foot",
  30471. image: {
  30472. source: "./media/characters/kodran/foot.svg"
  30473. }
  30474. },
  30475. footFront: {
  30476. height: math.unit(19, "feet"),
  30477. name: "Foot (Front)",
  30478. image: {
  30479. source: "./media/characters/kodran/foot-front.svg",
  30480. extra: 261 / 261,
  30481. bottom: 91 / 352
  30482. }
  30483. },
  30484. headFront: {
  30485. height: math.unit(53, "feet"),
  30486. name: "Head (Front)",
  30487. image: {
  30488. source: "./media/characters/kodran/head-front.svg"
  30489. }
  30490. },
  30491. headSide: {
  30492. height: math.unit(65, "feet"),
  30493. name: "Head (Side)",
  30494. image: {
  30495. source: "./media/characters/kodran/head-side.svg"
  30496. }
  30497. },
  30498. throat: {
  30499. height: math.unit(79, "feet"),
  30500. name: "Throat",
  30501. image: {
  30502. source: "./media/characters/kodran/throat.svg"
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Large",
  30509. height: math.unit(106, "feet"),
  30510. default: true
  30511. },
  30512. ]
  30513. ))
  30514. characterMakers.push(() => makeCharacter(
  30515. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30516. {
  30517. side: {
  30518. height: math.unit(11, "feet"),
  30519. weight: math.unit(150, "lb"),
  30520. name: "Side",
  30521. image: {
  30522. source: "./media/characters/pyxaron/side.svg",
  30523. extra: 305 / 195,
  30524. bottom: 17 / 322
  30525. }
  30526. },
  30527. },
  30528. [
  30529. {
  30530. name: "Normal",
  30531. height: math.unit(11, "feet"),
  30532. default: true
  30533. },
  30534. ]
  30535. ))
  30536. characterMakers.push(() => makeCharacter(
  30537. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30538. {
  30539. front: {
  30540. height: math.unit(6, "feet"),
  30541. weight: math.unit(150, "lb"),
  30542. name: "Front",
  30543. image: {
  30544. source: "./media/characters/meep/front.svg",
  30545. extra: 88 / 80,
  30546. bottom: 6 / 94
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Fun Sized",
  30553. height: math.unit(2, "inches"),
  30554. default: true
  30555. },
  30556. {
  30557. name: "Friend Sized",
  30558. height: math.unit(8, "inches")
  30559. },
  30560. ]
  30561. ))
  30562. characterMakers.push(() => makeCharacter(
  30563. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30564. {
  30565. front: {
  30566. height: math.unit(15, "feet"),
  30567. weight: math.unit(2500, "lb"),
  30568. name: "Front",
  30569. image: {
  30570. source: "./media/characters/holly-rabbit/front.svg",
  30571. extra: 1433 / 1233,
  30572. bottom: 125 / 1558
  30573. }
  30574. },
  30575. dick: {
  30576. height: math.unit(4.6, "feet"),
  30577. name: "Dick",
  30578. image: {
  30579. source: "./media/characters/holly-rabbit/dick.svg"
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(15, "feet"),
  30587. default: true
  30588. },
  30589. {
  30590. name: "Macro",
  30591. height: math.unit(250, "feet")
  30592. },
  30593. {
  30594. name: "Macro+",
  30595. height: math.unit(2500, "feet")
  30596. },
  30597. ]
  30598. ))
  30599. characterMakers.push(() => makeCharacter(
  30600. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30601. {
  30602. front: {
  30603. height: math.unit(3.02, "meters"),
  30604. weight: math.unit(500, "kg"),
  30605. name: "Front",
  30606. image: {
  30607. source: "./media/characters/drena/front.svg",
  30608. extra: 282 / 243,
  30609. bottom: 8 / 290
  30610. }
  30611. },
  30612. side: {
  30613. height: math.unit(3.02, "meters"),
  30614. weight: math.unit(500, "kg"),
  30615. name: "Side",
  30616. image: {
  30617. source: "./media/characters/drena/side.svg",
  30618. extra: 280 / 245,
  30619. bottom: 10 / 290
  30620. }
  30621. },
  30622. back: {
  30623. height: math.unit(3.02, "meters"),
  30624. weight: math.unit(500, "kg"),
  30625. name: "Back",
  30626. image: {
  30627. source: "./media/characters/drena/back.svg",
  30628. extra: 278 / 243,
  30629. bottom: 2 / 280
  30630. }
  30631. },
  30632. foot: {
  30633. height: math.unit(0.75, "meters"),
  30634. name: "Foot",
  30635. image: {
  30636. source: "./media/characters/drena/foot.svg"
  30637. }
  30638. },
  30639. maw: {
  30640. height: math.unit(0.82, "meters"),
  30641. name: "Maw",
  30642. image: {
  30643. source: "./media/characters/drena/maw.svg"
  30644. }
  30645. },
  30646. eating: {
  30647. height: math.unit(0.75, "meters"),
  30648. name: "Eating",
  30649. image: {
  30650. source: "./media/characters/drena/eating.svg"
  30651. }
  30652. },
  30653. rump: {
  30654. height: math.unit(0.93, "meters"),
  30655. name: "Rump",
  30656. image: {
  30657. source: "./media/characters/drena/rump.svg"
  30658. }
  30659. },
  30660. },
  30661. [
  30662. {
  30663. name: "Normal",
  30664. height: math.unit(3.02, "meters"),
  30665. default: true
  30666. },
  30667. ]
  30668. ))
  30669. characterMakers.push(() => makeCharacter(
  30670. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30671. {
  30672. front: {
  30673. height: math.unit(6 + 4 / 12, "feet"),
  30674. weight: math.unit(250, "lb"),
  30675. name: "Front",
  30676. image: {
  30677. source: "./media/characters/remmyzilla/front.svg",
  30678. extra: 4033 / 3588,
  30679. bottom: 123 / 4156
  30680. }
  30681. },
  30682. back: {
  30683. height: math.unit(6 + 4 / 12, "feet"),
  30684. weight: math.unit(250, "lb"),
  30685. name: "Back",
  30686. image: {
  30687. source: "./media/characters/remmyzilla/back.svg",
  30688. extra: 2687 / 2555,
  30689. bottom: 48 / 2735
  30690. }
  30691. },
  30692. paw: {
  30693. height: math.unit(1.73, "feet"),
  30694. name: "Paw",
  30695. image: {
  30696. source: "./media/characters/remmyzilla/paw.svg"
  30697. },
  30698. extraAttributes: {
  30699. "toeSize": {
  30700. name: "Toe Size",
  30701. power: 2,
  30702. type: "area",
  30703. base: math.unit(0.0035, "m^2")
  30704. },
  30705. "padSize": {
  30706. name: "Pad Size",
  30707. power: 2,
  30708. type: "area",
  30709. base: math.unit(0.015, "m^2")
  30710. },
  30711. "pawsize": {
  30712. name: "Paw Size",
  30713. power: 2,
  30714. type: "area",
  30715. base: math.unit(0.072, "m^2")
  30716. },
  30717. }
  30718. },
  30719. maw: {
  30720. height: math.unit(1.73, "feet"),
  30721. name: "Maw",
  30722. image: {
  30723. source: "./media/characters/remmyzilla/maw.svg"
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Normal",
  30730. height: math.unit(6 + 4 / 12, "feet")
  30731. },
  30732. {
  30733. name: "Minimacro",
  30734. height: math.unit(12 + 8 / 12, "feet")
  30735. },
  30736. {
  30737. name: "Normal",
  30738. height: math.unit(640, "feet"),
  30739. default: true
  30740. },
  30741. {
  30742. name: "Megamacro",
  30743. height: math.unit(6400, "feet")
  30744. },
  30745. {
  30746. name: "Gigamacro",
  30747. height: math.unit(64000, "miles")
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30753. {
  30754. front: {
  30755. height: math.unit(2.5, "meters"),
  30756. weight: math.unit(300, "lb"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/lawrence/front.svg",
  30760. extra: 357 / 335,
  30761. bottom: 30 / 387
  30762. }
  30763. },
  30764. back: {
  30765. height: math.unit(2.5, "meters"),
  30766. weight: math.unit(300, "lb"),
  30767. name: "Back",
  30768. image: {
  30769. source: "./media/characters/lawrence/back.svg",
  30770. extra: 357 / 338,
  30771. bottom: 16 / 373
  30772. }
  30773. },
  30774. head: {
  30775. height: math.unit(0.9, "meter"),
  30776. name: "Head",
  30777. image: {
  30778. source: "./media/characters/lawrence/head.svg"
  30779. }
  30780. },
  30781. maw: {
  30782. height: math.unit(0.7, "meter"),
  30783. name: "Maw",
  30784. image: {
  30785. source: "./media/characters/lawrence/maw.svg"
  30786. }
  30787. },
  30788. footBottom: {
  30789. height: math.unit(0.5, "meter"),
  30790. name: "Foot (Bottom)",
  30791. image: {
  30792. source: "./media/characters/lawrence/foot-bottom.svg"
  30793. }
  30794. },
  30795. footTop: {
  30796. height: math.unit(0.5, "meter"),
  30797. name: "Foot (Top)",
  30798. image: {
  30799. source: "./media/characters/lawrence/foot-top.svg"
  30800. }
  30801. },
  30802. },
  30803. [
  30804. {
  30805. name: "Normal",
  30806. height: math.unit(2.5, "meters"),
  30807. default: true
  30808. },
  30809. {
  30810. name: "Macro",
  30811. height: math.unit(95, "meters")
  30812. },
  30813. {
  30814. name: "Megamacro",
  30815. height: math.unit(150, "km")
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30821. {
  30822. front: {
  30823. height: math.unit(4.2, "meters"),
  30824. preyCapacity: math.unit(50, "m^3"),
  30825. weight: math.unit(30, "tonnes"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/sydney/front.svg",
  30829. extra: 1177/1129,
  30830. bottom: 197/1374
  30831. },
  30832. extraAttributes: {
  30833. "length": {
  30834. name: "Length",
  30835. power: 1,
  30836. type: "length",
  30837. base: math.unit(21, "meters")
  30838. },
  30839. }
  30840. },
  30841. },
  30842. [
  30843. {
  30844. name: "Normal",
  30845. height: math.unit(4.2, "meters"),
  30846. default: true
  30847. },
  30848. ]
  30849. ))
  30850. characterMakers.push(() => makeCharacter(
  30851. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30852. {
  30853. back: {
  30854. height: math.unit(201, "feet"),
  30855. name: "Back",
  30856. image: {
  30857. source: "./media/characters/jessica/back.svg",
  30858. extra: 273 / 259,
  30859. bottom: 7 / 280
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(201, "feet"),
  30867. default: true
  30868. },
  30869. {
  30870. name: "Megamacro",
  30871. height: math.unit(8, "miles")
  30872. },
  30873. ]
  30874. ))
  30875. characterMakers.push(() => makeCharacter(
  30876. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30877. {
  30878. side: {
  30879. height: math.unit(5.6, "m"),
  30880. weight: math.unit(8000, "kg"),
  30881. name: "Side",
  30882. image: {
  30883. source: "./media/characters/victoria/side.svg",
  30884. extra: 1542/1229,
  30885. bottom: 124/1666
  30886. }
  30887. },
  30888. maw: {
  30889. height: math.unit(7.14, "feet"),
  30890. name: "Maw",
  30891. image: {
  30892. source: "./media/characters/victoria/maw.svg"
  30893. }
  30894. },
  30895. },
  30896. [
  30897. {
  30898. name: "Normal",
  30899. height: math.unit(5.6, "m"),
  30900. default: true
  30901. },
  30902. ]
  30903. ))
  30904. characterMakers.push(() => makeCharacter(
  30905. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30906. {
  30907. front: {
  30908. height: math.unit(5 + 6 / 12, "feet"),
  30909. name: "Front",
  30910. image: {
  30911. source: "./media/characters/cat/front.svg",
  30912. extra: 1449/1295,
  30913. bottom: 34/1483
  30914. },
  30915. form: "cat",
  30916. default: true
  30917. },
  30918. back: {
  30919. height: math.unit(5 + 6 / 12, "feet"),
  30920. name: "Back",
  30921. image: {
  30922. source: "./media/characters/cat/back.svg",
  30923. extra: 1466/1301,
  30924. bottom: 19/1485
  30925. },
  30926. form: "cat"
  30927. },
  30928. taur: {
  30929. height: math.unit(7, "feet"),
  30930. name: "Taur",
  30931. image: {
  30932. source: "./media/characters/cat/taur.svg",
  30933. extra: 1389/1233,
  30934. bottom: 83/1472
  30935. },
  30936. form: "taur",
  30937. default: true
  30938. },
  30939. lucarioFront: {
  30940. height: math.unit(4, "feet"),
  30941. name: "Lucario (Front)",
  30942. image: {
  30943. source: "./media/characters/cat/lucario-front.svg",
  30944. extra: 1149/1019,
  30945. bottom: 84/1233
  30946. },
  30947. form: "lucario",
  30948. default: true
  30949. },
  30950. lucarioBack: {
  30951. height: math.unit(4, "feet"),
  30952. name: "Lucario (Back)",
  30953. image: {
  30954. source: "./media/characters/cat/lucario-back.svg",
  30955. extra: 1190/1059,
  30956. bottom: 33/1223
  30957. },
  30958. form: "lucario"
  30959. },
  30960. megaLucario: {
  30961. height: math.unit(4, "feet"),
  30962. name: "Mega Lucario",
  30963. image: {
  30964. source: "./media/characters/cat/mega-lucario.svg",
  30965. extra: 1515 / 1319,
  30966. bottom: 63 / 1578
  30967. },
  30968. form: "lucario"
  30969. },
  30970. nickit: {
  30971. height: math.unit(2, "feet"),
  30972. name: "Nickit",
  30973. image: {
  30974. source: "./media/characters/cat/nickit.svg",
  30975. extra: 1980 / 1585,
  30976. bottom: 102 / 2082
  30977. },
  30978. form: "nickit",
  30979. default: true
  30980. },
  30981. lopunnyFront: {
  30982. height: math.unit(5, "feet"),
  30983. name: "Lopunny (Front)",
  30984. image: {
  30985. source: "./media/characters/cat/lopunny-front.svg",
  30986. extra: 1782 / 1469,
  30987. bottom: 38 / 1820
  30988. },
  30989. form: "lopunny",
  30990. default: true
  30991. },
  30992. lopunnyBack: {
  30993. height: math.unit(5, "feet"),
  30994. name: "Lopunny (Back)",
  30995. image: {
  30996. source: "./media/characters/cat/lopunny-back.svg",
  30997. extra: 1660 / 1490,
  30998. bottom: 25 / 1685
  30999. },
  31000. form: "lopunny"
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Really small",
  31006. height: math.unit(1, "nm")
  31007. },
  31008. {
  31009. name: "Micro",
  31010. height: math.unit(5, "inches")
  31011. },
  31012. {
  31013. name: "Normal",
  31014. height: math.unit(5 + 6 / 12, "feet"),
  31015. default: true
  31016. },
  31017. {
  31018. name: "Macro",
  31019. height: math.unit(50, "feet")
  31020. },
  31021. {
  31022. name: "Macro+",
  31023. height: math.unit(150, "feet")
  31024. },
  31025. {
  31026. name: "Megamacro",
  31027. height: math.unit(100, "miles")
  31028. },
  31029. ]
  31030. ))
  31031. characterMakers.push(() => makeCharacter(
  31032. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31033. {
  31034. front: {
  31035. height: math.unit(63.4, "meters"),
  31036. weight: math.unit(3.28349e+6, "kilograms"),
  31037. name: "Front",
  31038. image: {
  31039. source: "./media/characters/kirina-violet/front.svg",
  31040. extra: 2812 / 2725,
  31041. bottom: 0 / 2812
  31042. }
  31043. },
  31044. back: {
  31045. height: math.unit(63.4, "meters"),
  31046. weight: math.unit(3.28349e+6, "kilograms"),
  31047. name: "Back",
  31048. image: {
  31049. source: "./media/characters/kirina-violet/back.svg",
  31050. extra: 2812 / 2725,
  31051. bottom: 0 / 2812
  31052. }
  31053. },
  31054. mouth: {
  31055. height: math.unit(4.35, "meters"),
  31056. name: "Mouth",
  31057. image: {
  31058. source: "./media/characters/kirina-violet/mouth.svg"
  31059. }
  31060. },
  31061. paw: {
  31062. height: math.unit(5.6, "meters"),
  31063. name: "Paw",
  31064. image: {
  31065. source: "./media/characters/kirina-violet/paw.svg"
  31066. }
  31067. },
  31068. tail: {
  31069. height: math.unit(18, "meters"),
  31070. name: "Tail",
  31071. image: {
  31072. source: "./media/characters/kirina-violet/tail.svg"
  31073. }
  31074. },
  31075. },
  31076. [
  31077. {
  31078. name: "Macro",
  31079. height: math.unit(63.4, "meters"),
  31080. default: true
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31086. {
  31087. front: {
  31088. height: math.unit(75, "feet"),
  31089. name: "Front",
  31090. image: {
  31091. source: "./media/characters/cat-gigachu/front.svg",
  31092. extra: 1239/1027,
  31093. bottom: 32/1271
  31094. }
  31095. },
  31096. back: {
  31097. height: math.unit(75, "feet"),
  31098. name: "Back",
  31099. image: {
  31100. source: "./media/characters/cat-gigachu/back.svg",
  31101. extra: 1229/1030,
  31102. bottom: 9/1238
  31103. }
  31104. },
  31105. },
  31106. [
  31107. {
  31108. name: "Dynamax",
  31109. height: math.unit(75, "feet"),
  31110. default: true
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Sfaiyan", species: ["jackal"], 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/sfaiyan/front.svg",
  31123. extra: 999 / 978,
  31124. bottom: 5 / 1004
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(1.82, "meters")
  31132. },
  31133. {
  31134. name: "Giant",
  31135. height: math.unit(2.27, "km"),
  31136. default: true
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(179, "cm"),
  31145. weight: math.unit(100, "kg"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/raunehkeli/front.svg",
  31149. extra: 1934 / 1926,
  31150. bottom: 0 / 1934
  31151. }
  31152. },
  31153. },
  31154. [
  31155. {
  31156. name: "Normal",
  31157. height: math.unit(179, "cm")
  31158. },
  31159. {
  31160. name: "Maximum",
  31161. height: math.unit(575, "meters"),
  31162. default: true
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(6, "feet"),
  31171. weight: math.unit(150, "lb"),
  31172. name: "Front",
  31173. image: {
  31174. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31175. extra: 2625 / 2518,
  31176. bottom: 60 / 2685
  31177. }
  31178. },
  31179. },
  31180. [
  31181. {
  31182. name: "Normal",
  31183. height: math.unit(6 + 2 / 12, "feet")
  31184. },
  31185. {
  31186. name: "Macro",
  31187. height: math.unit(1180, "feet"),
  31188. default: true
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(5 + 6 / 12, "feet"),
  31197. weight: math.unit(108, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/lilith-zott/front.svg",
  31201. extra: 2510 / 2238,
  31202. bottom: 100 / 2610
  31203. }
  31204. },
  31205. frontDressed: {
  31206. height: math.unit(5 + 6 / 12, "feet"),
  31207. weight: math.unit(108, "lb"),
  31208. name: "Front (Dressed)",
  31209. image: {
  31210. source: "./media/characters/lilith-zott/front-dressed.svg",
  31211. extra: 2510 / 2238,
  31212. bottom: 100 / 2610
  31213. }
  31214. },
  31215. },
  31216. [
  31217. {
  31218. name: "Normal",
  31219. height: math.unit(5 + 6 / 12, "feet")
  31220. },
  31221. {
  31222. name: "Macro",
  31223. height: math.unit(1030, "feet"),
  31224. default: true
  31225. },
  31226. ]
  31227. ))
  31228. characterMakers.push(() => makeCharacter(
  31229. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31230. {
  31231. front: {
  31232. height: math.unit(6, "feet"),
  31233. weight: math.unit(150, "lb"),
  31234. name: "Front",
  31235. image: {
  31236. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31237. extra: 2567 / 2435,
  31238. bottom: 39 / 2606
  31239. }
  31240. },
  31241. frontSuper: {
  31242. height: math.unit(6, "feet"),
  31243. name: "Front (Super)",
  31244. image: {
  31245. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31246. extra: 2567 / 2435,
  31247. bottom: 39 / 2606
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Normal",
  31254. height: math.unit(5 + 10 / 12, "feet")
  31255. },
  31256. {
  31257. name: "Macro",
  31258. height: math.unit(1100, "feet"),
  31259. default: true
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31265. {
  31266. front: {
  31267. height: math.unit(100, "miles"),
  31268. name: "Front",
  31269. image: {
  31270. source: "./media/characters/sona/front.svg",
  31271. extra: 2433 / 2201,
  31272. bottom: 53 / 2486
  31273. }
  31274. },
  31275. foot: {
  31276. height: math.unit(16.1, "miles"),
  31277. name: "Foot",
  31278. image: {
  31279. source: "./media/characters/sona/foot.svg"
  31280. }
  31281. },
  31282. },
  31283. [
  31284. {
  31285. name: "Macro",
  31286. height: math.unit(100, "miles"),
  31287. default: true
  31288. },
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31293. {
  31294. front: {
  31295. height: math.unit(6, "feet"),
  31296. weight: math.unit(150, "lb"),
  31297. name: "Front",
  31298. image: {
  31299. source: "./media/characters/bailey/front.svg",
  31300. extra: 1778 / 1724,
  31301. bottom: 30 / 1808
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Micro",
  31308. height: math.unit(4, "inches")
  31309. },
  31310. {
  31311. name: "Normal",
  31312. height: math.unit(5 + 5 / 12, "feet"),
  31313. default: true
  31314. },
  31315. {
  31316. name: "Macro",
  31317. height: math.unit(250, "feet")
  31318. },
  31319. {
  31320. name: "Megamacro",
  31321. height: math.unit(100, "miles")
  31322. },
  31323. ]
  31324. ))
  31325. characterMakers.push(() => makeCharacter(
  31326. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31327. {
  31328. front: {
  31329. height: math.unit(5 + 2 / 12, "feet"),
  31330. weight: math.unit(120, "lb"),
  31331. name: "Front",
  31332. image: {
  31333. source: "./media/characters/snaps/front.svg",
  31334. extra: 2370 / 2177,
  31335. bottom: 48 / 2418
  31336. }
  31337. },
  31338. back: {
  31339. height: math.unit(5 + 2 / 12, "feet"),
  31340. weight: math.unit(120, "lb"),
  31341. name: "Back",
  31342. image: {
  31343. source: "./media/characters/snaps/back.svg",
  31344. extra: 2408 / 2258,
  31345. bottom: 15 / 2423
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Micro",
  31352. height: math.unit(9, "inches")
  31353. },
  31354. {
  31355. name: "Normal",
  31356. height: math.unit(5 + 2 / 12, "feet"),
  31357. default: true
  31358. },
  31359. {
  31360. name: "Mini Macro",
  31361. height: math.unit(10, "feet")
  31362. },
  31363. ]
  31364. ))
  31365. characterMakers.push(() => makeCharacter(
  31366. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31367. {
  31368. front: {
  31369. height: math.unit(1.8, "meters"),
  31370. weight: math.unit(85, "kg"),
  31371. name: "Front",
  31372. image: {
  31373. source: "./media/characters/azteck/front.svg",
  31374. extra: 2815 / 2625,
  31375. bottom: 89 / 2904
  31376. }
  31377. },
  31378. back: {
  31379. height: math.unit(1.8, "meters"),
  31380. weight: math.unit(85, "kg"),
  31381. name: "Back",
  31382. image: {
  31383. source: "./media/characters/azteck/back.svg",
  31384. extra: 2856 / 2648,
  31385. bottom: 85 / 2941
  31386. }
  31387. },
  31388. frontDressed: {
  31389. height: math.unit(1.8, "meters"),
  31390. weight: math.unit(85, "kg"),
  31391. name: "Front (Dressed)",
  31392. image: {
  31393. source: "./media/characters/azteck/front-dressed.svg",
  31394. extra: 2147 / 2003,
  31395. bottom: 68 / 2215
  31396. }
  31397. },
  31398. head: {
  31399. height: math.unit(0.47, "meters"),
  31400. weight: math.unit(85, "kg"),
  31401. name: "Head",
  31402. image: {
  31403. source: "./media/characters/azteck/head.svg"
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Bite sized",
  31410. height: math.unit(16, "cm")
  31411. },
  31412. {
  31413. name: "Normal",
  31414. height: math.unit(1.8, "meters"),
  31415. default: true
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31421. {
  31422. front: {
  31423. height: math.unit(6, "feet"),
  31424. weight: math.unit(150, "lb"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/pidge/front.svg",
  31428. extra: 1936/1820,
  31429. bottom: 0/1936
  31430. }
  31431. },
  31432. back: {
  31433. height: math.unit(6, "feet"),
  31434. weight: math.unit(150, "lb"),
  31435. name: "Back",
  31436. image: {
  31437. source: "./media/characters/pidge/back.svg",
  31438. extra: 1938/1843,
  31439. bottom: 0/1938
  31440. }
  31441. },
  31442. casual: {
  31443. height: math.unit(6, "feet"),
  31444. weight: math.unit(150, "lb"),
  31445. name: "Casual",
  31446. image: {
  31447. source: "./media/characters/pidge/casual.svg",
  31448. extra: 1936/1820,
  31449. bottom: 0/1936
  31450. }
  31451. },
  31452. tech: {
  31453. height: math.unit(6, "feet"),
  31454. weight: math.unit(150, "lb"),
  31455. name: "Tech",
  31456. image: {
  31457. source: "./media/characters/pidge/tech.svg",
  31458. extra: 1802/1682,
  31459. bottom: 0/1802
  31460. }
  31461. },
  31462. head: {
  31463. height: math.unit(1.61, "feet"),
  31464. name: "Head",
  31465. image: {
  31466. source: "./media/characters/pidge/head.svg"
  31467. }
  31468. },
  31469. collar: {
  31470. height: math.unit(0.82, "feet"),
  31471. name: "Collar",
  31472. image: {
  31473. source: "./media/characters/pidge/collar.svg"
  31474. }
  31475. },
  31476. },
  31477. [
  31478. {
  31479. name: "Macro",
  31480. height: math.unit(2, "mile"),
  31481. default: true
  31482. },
  31483. {
  31484. name: "PUPPY",
  31485. height: math.unit(20, "miles")
  31486. },
  31487. ]
  31488. ))
  31489. characterMakers.push(() => makeCharacter(
  31490. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31491. {
  31492. front: {
  31493. height: math.unit(6, "feet"),
  31494. weight: math.unit(150, "lb"),
  31495. name: "Front",
  31496. image: {
  31497. source: "./media/characters/en/front.svg",
  31498. extra: 1697 / 1563,
  31499. bottom: 103 / 1800
  31500. }
  31501. },
  31502. back: {
  31503. height: math.unit(6, "feet"),
  31504. weight: math.unit(150, "lb"),
  31505. name: "Back",
  31506. image: {
  31507. source: "./media/characters/en/back.svg",
  31508. extra: 1700 / 1570,
  31509. bottom: 51 / 1751
  31510. }
  31511. },
  31512. frontDressed: {
  31513. height: math.unit(6, "feet"),
  31514. weight: math.unit(150, "lb"),
  31515. name: "Front (Dressed)",
  31516. image: {
  31517. source: "./media/characters/en/front-dressed.svg",
  31518. extra: 1697 / 1563,
  31519. bottom: 103 / 1800
  31520. }
  31521. },
  31522. backDressed: {
  31523. height: math.unit(6, "feet"),
  31524. weight: math.unit(150, "lb"),
  31525. name: "Back (Dressed)",
  31526. image: {
  31527. source: "./media/characters/en/back-dressed.svg",
  31528. extra: 1700 / 1570,
  31529. bottom: 51 / 1751
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Macro",
  31536. height: math.unit(210, "feet"),
  31537. default: true
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31543. {
  31544. front: {
  31545. height: math.unit(6, "feet"),
  31546. weight: math.unit(150, "lb"),
  31547. name: "Front",
  31548. image: {
  31549. source: "./media/characters/haze-orris/front.svg",
  31550. extra: 3975 / 3525,
  31551. bottom: 137 / 4112
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Micro",
  31558. height: math.unit(150, "mm"),
  31559. default: true
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31565. {
  31566. front: {
  31567. height: math.unit(6, "feet"),
  31568. weight: math.unit(150, "lb"),
  31569. name: "Front",
  31570. image: {
  31571. source: "./media/characters/casselene-yaro/front.svg",
  31572. extra: 4721 / 4541,
  31573. bottom: 82 / 4803
  31574. }
  31575. },
  31576. back: {
  31577. height: math.unit(6, "feet"),
  31578. weight: math.unit(150, "lb"),
  31579. name: "Back",
  31580. image: {
  31581. source: "./media/characters/casselene-yaro/back.svg",
  31582. extra: 4569 / 4377,
  31583. bottom: 69 / 4638
  31584. }
  31585. },
  31586. dressed: {
  31587. height: math.unit(6, "feet"),
  31588. weight: math.unit(150, "lb"),
  31589. name: "Dressed",
  31590. image: {
  31591. source: "./media/characters/casselene-yaro/dressed.svg",
  31592. extra: 4721 / 4541,
  31593. bottom: 82 / 4803
  31594. }
  31595. },
  31596. maw: {
  31597. height: math.unit(1, "feet"),
  31598. name: "Maw",
  31599. image: {
  31600. source: "./media/characters/casselene-yaro/maw.svg"
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Macro",
  31607. height: math.unit(190, "feet"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(10, "feet"),
  31617. weight: math.unit(15015, "lb"),
  31618. name: "Front",
  31619. image: {
  31620. source: "./media/characters/platine/front.svg",
  31621. extra: 1741/1650,
  31622. bottom: 84/1825
  31623. }
  31624. },
  31625. side: {
  31626. height: math.unit(10, "feet"),
  31627. weight: math.unit(15015, "lb"),
  31628. name: "Side",
  31629. image: {
  31630. source: "./media/characters/platine/side.svg",
  31631. extra: 1790/1705,
  31632. bottom: 29/1819
  31633. }
  31634. },
  31635. },
  31636. [
  31637. {
  31638. name: "Normal",
  31639. height: math.unit(10, "feet"),
  31640. default: true
  31641. },
  31642. {
  31643. name: "Macro",
  31644. height: math.unit(100, "feet")
  31645. },
  31646. {
  31647. name: "Megamacro",
  31648. height: math.unit(1000, "feet")
  31649. },
  31650. ]
  31651. ))
  31652. characterMakers.push(() => makeCharacter(
  31653. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31654. {
  31655. front: {
  31656. height: math.unit(15 + 5 / 12, "feet"),
  31657. weight: math.unit(4600, "lb"),
  31658. name: "Front",
  31659. image: {
  31660. source: "./media/characters/neapolitan-ananassa/front.svg",
  31661. extra: 2903 / 2736,
  31662. bottom: 0 / 2903
  31663. }
  31664. },
  31665. side: {
  31666. height: math.unit(15 + 5 / 12, "feet"),
  31667. weight: math.unit(4600, "lb"),
  31668. name: "Side",
  31669. image: {
  31670. source: "./media/characters/neapolitan-ananassa/side.svg",
  31671. extra: 2925 / 2719,
  31672. bottom: 0 / 2925
  31673. }
  31674. },
  31675. back: {
  31676. height: math.unit(15 + 5 / 12, "feet"),
  31677. weight: math.unit(4600, "lb"),
  31678. name: "Back",
  31679. image: {
  31680. source: "./media/characters/neapolitan-ananassa/back.svg",
  31681. extra: 2903 / 2736,
  31682. bottom: 0 / 2903
  31683. }
  31684. },
  31685. },
  31686. [
  31687. {
  31688. name: "Normal",
  31689. height: math.unit(15 + 5 / 12, "feet"),
  31690. default: true
  31691. },
  31692. {
  31693. name: "Post-Millenium",
  31694. height: math.unit(35 + 5 / 12, "feet")
  31695. },
  31696. {
  31697. name: "Post-Era",
  31698. height: math.unit(450 + 5 / 12, "feet")
  31699. },
  31700. ]
  31701. ))
  31702. characterMakers.push(() => makeCharacter(
  31703. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31704. {
  31705. front: {
  31706. height: math.unit(300, "meters"),
  31707. weight: math.unit(125000, "tonnes"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/pazuzu/front.svg",
  31711. extra: 877 / 794,
  31712. bottom: 47 / 924
  31713. }
  31714. },
  31715. },
  31716. [
  31717. {
  31718. name: "Macro",
  31719. height: math.unit(300, "meters"),
  31720. default: true
  31721. },
  31722. ]
  31723. ))
  31724. characterMakers.push(() => makeCharacter(
  31725. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31726. {
  31727. side: {
  31728. height: math.unit(10 + 7 / 12, "feet"),
  31729. weight: math.unit(2.5, "tons"),
  31730. name: "Side",
  31731. image: {
  31732. source: "./media/characters/aasha/side.svg",
  31733. extra: 1345 / 1245,
  31734. bottom: 111 / 1456
  31735. }
  31736. },
  31737. back: {
  31738. height: math.unit(10 + 7 / 12, "feet"),
  31739. weight: math.unit(2.5, "tons"),
  31740. name: "Back",
  31741. image: {
  31742. source: "./media/characters/aasha/back.svg",
  31743. extra: 1133 / 1057,
  31744. bottom: 257 / 1390
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Normal",
  31751. height: math.unit(10 + 7 / 12, "feet"),
  31752. default: true
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(6 + 3 / 12, "feet"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/nevan/front.svg",
  31764. extra: 704 / 704,
  31765. bottom: 28 / 732
  31766. }
  31767. },
  31768. back: {
  31769. height: math.unit(6 + 3 / 12, "feet"),
  31770. name: "Back",
  31771. image: {
  31772. source: "./media/characters/nevan/back.svg",
  31773. extra: 714 / 714,
  31774. bottom: 21 / 735
  31775. }
  31776. },
  31777. frontFlaccid: {
  31778. height: math.unit(6 + 3 / 12, "feet"),
  31779. name: "Front (Flaccid)",
  31780. image: {
  31781. source: "./media/characters/nevan/front-flaccid.svg",
  31782. extra: 704 / 704,
  31783. bottom: 28 / 732
  31784. }
  31785. },
  31786. frontErect: {
  31787. height: math.unit(6 + 3 / 12, "feet"),
  31788. name: "Front (Erect)",
  31789. image: {
  31790. source: "./media/characters/nevan/front-erect.svg",
  31791. extra: 704 / 704,
  31792. bottom: 28 / 732
  31793. }
  31794. },
  31795. backFlaccid: {
  31796. height: math.unit(6 + 3 / 12, "feet"),
  31797. name: "Back (Flaccid)",
  31798. image: {
  31799. source: "./media/characters/nevan/back-flaccid.svg",
  31800. extra: 714 / 714,
  31801. bottom: 21 / 735
  31802. }
  31803. },
  31804. },
  31805. [
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(6 + 3 / 12, "feet"),
  31809. default: true
  31810. },
  31811. ]
  31812. ))
  31813. characterMakers.push(() => makeCharacter(
  31814. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31815. {
  31816. front: {
  31817. height: math.unit(4, "feet"),
  31818. name: "Front",
  31819. image: {
  31820. source: "./media/characters/arhan/front.svg",
  31821. extra: 3368 / 3133,
  31822. bottom: 0 / 3368
  31823. }
  31824. },
  31825. side: {
  31826. height: math.unit(4, "feet"),
  31827. name: "Side",
  31828. image: {
  31829. source: "./media/characters/arhan/side.svg",
  31830. extra: 3347 / 3105,
  31831. bottom: 0 / 3347
  31832. }
  31833. },
  31834. tongue: {
  31835. height: math.unit(1.42, "feet"),
  31836. name: "Tongue",
  31837. image: {
  31838. source: "./media/characters/arhan/tongue.svg"
  31839. }
  31840. },
  31841. head: {
  31842. height: math.unit(0.85, "feet"),
  31843. name: "Head",
  31844. image: {
  31845. source: "./media/characters/arhan/head.svg"
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Normal",
  31852. height: math.unit(4, "feet"),
  31853. default: true
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(5 + 7.5 / 12, "feet"),
  31862. weight: math.unit(120, "lb"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/digi-duncan/front.svg",
  31866. extra: 330 / 326,
  31867. bottom: 16 / 346
  31868. }
  31869. },
  31870. side: {
  31871. height: math.unit(5 + 7.5 / 12, "feet"),
  31872. weight: math.unit(120, "lb"),
  31873. name: "Side",
  31874. image: {
  31875. source: "./media/characters/digi-duncan/side.svg",
  31876. extra: 341 / 337,
  31877. bottom: 1 / 342
  31878. }
  31879. },
  31880. back: {
  31881. height: math.unit(5 + 7.5 / 12, "feet"),
  31882. weight: math.unit(120, "lb"),
  31883. name: "Back",
  31884. image: {
  31885. source: "./media/characters/digi-duncan/back.svg",
  31886. extra: 330 / 326,
  31887. bottom: 12 / 342
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Speck",
  31894. height: math.unit(0.25, "mm")
  31895. },
  31896. {
  31897. name: "Micro",
  31898. height: math.unit(5, "mm")
  31899. },
  31900. {
  31901. name: "Tiny",
  31902. height: math.unit(0.5, "inches"),
  31903. default: true
  31904. },
  31905. {
  31906. name: "Human",
  31907. height: math.unit(5 + 7.5 / 12, "feet")
  31908. },
  31909. {
  31910. name: "Minigiant",
  31911. height: math.unit(8 + 5.25, "feet")
  31912. },
  31913. {
  31914. name: "Giant",
  31915. height: math.unit(2000, "feet")
  31916. },
  31917. {
  31918. name: "Mega",
  31919. height: math.unit(371.1, "miles")
  31920. },
  31921. ]
  31922. ))
  31923. characterMakers.push(() => makeCharacter(
  31924. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31925. {
  31926. front: {
  31927. height: math.unit(2, "meters"),
  31928. weight: math.unit(350, "kg"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31932. extra: 898 / 838,
  31933. bottom: 9 / 907
  31934. }
  31935. },
  31936. },
  31937. [
  31938. {
  31939. name: "Micro",
  31940. height: math.unit(8, "meters")
  31941. },
  31942. {
  31943. name: "Normal",
  31944. height: math.unit(50, "meters"),
  31945. default: true
  31946. },
  31947. {
  31948. name: "Macro",
  31949. height: math.unit(500, "meters")
  31950. },
  31951. ]
  31952. ))
  31953. characterMakers.push(() => makeCharacter(
  31954. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31955. {
  31956. front: {
  31957. height: math.unit(6 + 6 / 12, "feet"),
  31958. name: "Front",
  31959. image: {
  31960. source: "./media/characters/khardesh/front.svg",
  31961. extra: 1788/1596,
  31962. bottom: 66/1854
  31963. }
  31964. },
  31965. back: {
  31966. height: math.unit(6 + 6 / 12, "feet"),
  31967. name: "Back",
  31968. image: {
  31969. source: "./media/characters/khardesh/back.svg",
  31970. extra: 1781/1584,
  31971. bottom: 68/1849
  31972. }
  31973. },
  31974. },
  31975. [
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(6 + 6 / 12, "feet"),
  31979. default: true
  31980. },
  31981. {
  31982. name: "Normal+",
  31983. height: math.unit(4, "meters")
  31984. },
  31985. {
  31986. name: "Macro",
  31987. height: math.unit(50, "meters")
  31988. },
  31989. {
  31990. name: "Macro+",
  31991. height: math.unit(100, "meters")
  31992. },
  31993. {
  31994. name: "Megamacro",
  31995. height: math.unit(20, "km")
  31996. },
  31997. ]
  31998. ))
  31999. characterMakers.push(() => makeCharacter(
  32000. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32001. {
  32002. front: {
  32003. height: math.unit(6, "feet"),
  32004. weight: math.unit(150, "lb"),
  32005. name: "Front",
  32006. image: {
  32007. source: "./media/characters/kosho/front.svg",
  32008. extra: 1847 / 1847,
  32009. bottom: 86 / 1933
  32010. }
  32011. },
  32012. },
  32013. [
  32014. {
  32015. name: "Second-stage micro",
  32016. height: math.unit(0.5, "inches")
  32017. },
  32018. {
  32019. name: "First-stage micro",
  32020. height: math.unit(6, "inches")
  32021. },
  32022. {
  32023. name: "Normal",
  32024. height: math.unit(6, "feet"),
  32025. default: true
  32026. },
  32027. {
  32028. name: "First-stage macro",
  32029. height: math.unit(72, "feet")
  32030. },
  32031. {
  32032. name: "Second-stage macro",
  32033. height: math.unit(864, "feet")
  32034. },
  32035. ]
  32036. ))
  32037. characterMakers.push(() => makeCharacter(
  32038. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32039. {
  32040. normal: {
  32041. height: math.unit(4 + 6 / 12, "feet"),
  32042. name: "Normal",
  32043. image: {
  32044. source: "./media/characters/hydra/normal.svg",
  32045. extra: 2833 / 2634,
  32046. bottom: 68 / 2901
  32047. }
  32048. },
  32049. smol: {
  32050. height: math.unit(0.705, "inches"),
  32051. name: "Smol",
  32052. image: {
  32053. source: "./media/characters/hydra/smol.svg",
  32054. extra: 2715 / 2540,
  32055. bottom: 0 / 2715
  32056. }
  32057. },
  32058. },
  32059. [
  32060. {
  32061. name: "Normal",
  32062. height: math.unit(4 + 6 / 12, "feet"),
  32063. default: true
  32064. }
  32065. ]
  32066. ))
  32067. characterMakers.push(() => makeCharacter(
  32068. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32069. {
  32070. front: {
  32071. height: math.unit(0.6, "cm"),
  32072. name: "Front",
  32073. image: {
  32074. source: "./media/characters/daz/front.svg",
  32075. extra: 1682 / 1164,
  32076. bottom: 42 / 1724
  32077. }
  32078. },
  32079. },
  32080. [
  32081. {
  32082. name: "Normal",
  32083. height: math.unit(0.6, "cm"),
  32084. default: true
  32085. },
  32086. ]
  32087. ))
  32088. characterMakers.push(() => makeCharacter(
  32089. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32090. {
  32091. front: {
  32092. height: math.unit(6, "feet"),
  32093. weight: math.unit(235, "lb"),
  32094. name: "Front",
  32095. image: {
  32096. source: "./media/characters/theo-pangolin/front.svg",
  32097. extra: 1996 / 1969,
  32098. bottom: 115 / 2111
  32099. }
  32100. },
  32101. back: {
  32102. height: math.unit(6, "feet"),
  32103. weight: math.unit(235, "lb"),
  32104. name: "Back",
  32105. image: {
  32106. source: "./media/characters/theo-pangolin/back.svg",
  32107. extra: 1979 / 1979,
  32108. bottom: 40 / 2019
  32109. }
  32110. },
  32111. feral: {
  32112. height: math.unit(2, "feet"),
  32113. weight: math.unit(30, "lb"),
  32114. name: "Feral",
  32115. image: {
  32116. source: "./media/characters/theo-pangolin/feral.svg",
  32117. extra: 803 / 791,
  32118. bottom: 181 / 984
  32119. }
  32120. },
  32121. footFive: {
  32122. height: math.unit(1.43, "feet"),
  32123. name: "Foot (Five Toes)",
  32124. image: {
  32125. source: "./media/characters/theo-pangolin/foot-five.svg"
  32126. }
  32127. },
  32128. footFour: {
  32129. height: math.unit(1.43, "feet"),
  32130. name: "Foot (Four Toes)",
  32131. image: {
  32132. source: "./media/characters/theo-pangolin/foot-four.svg"
  32133. }
  32134. },
  32135. handFour: {
  32136. height: math.unit(0.81, "feet"),
  32137. name: "Hand (Four Fingers)",
  32138. image: {
  32139. source: "./media/characters/theo-pangolin/hand-four.svg"
  32140. }
  32141. },
  32142. handThree: {
  32143. height: math.unit(0.81, "feet"),
  32144. name: "Hand (Three Fingers)",
  32145. image: {
  32146. source: "./media/characters/theo-pangolin/hand-three.svg"
  32147. }
  32148. },
  32149. headFront: {
  32150. height: math.unit(1.37, "feet"),
  32151. name: "Head (Front)",
  32152. image: {
  32153. source: "./media/characters/theo-pangolin/head-front.svg"
  32154. }
  32155. },
  32156. headSide: {
  32157. height: math.unit(1.43, "feet"),
  32158. name: "Head (Side)",
  32159. image: {
  32160. source: "./media/characters/theo-pangolin/head-side.svg"
  32161. }
  32162. },
  32163. tongue: {
  32164. height: math.unit(2.29, "feet"),
  32165. name: "Tongue",
  32166. image: {
  32167. source: "./media/characters/theo-pangolin/tongue.svg"
  32168. }
  32169. },
  32170. },
  32171. [
  32172. {
  32173. name: "Normal",
  32174. height: math.unit(6, "feet")
  32175. },
  32176. {
  32177. name: "Macro",
  32178. height: math.unit(400, "feet"),
  32179. default: true
  32180. },
  32181. ]
  32182. ))
  32183. characterMakers.push(() => makeCharacter(
  32184. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32185. {
  32186. front: {
  32187. height: math.unit(6, "inches"),
  32188. weight: math.unit(0.036, "kg"),
  32189. name: "Front",
  32190. image: {
  32191. source: "./media/characters/renée/front.svg",
  32192. extra: 900 / 886,
  32193. bottom: 8 / 908
  32194. }
  32195. },
  32196. },
  32197. [
  32198. {
  32199. name: "Nano",
  32200. height: math.unit(1, "nm")
  32201. },
  32202. {
  32203. name: "Micro",
  32204. height: math.unit(1, "mm")
  32205. },
  32206. {
  32207. name: "Normal",
  32208. height: math.unit(6, "inches")
  32209. },
  32210. {
  32211. name: "Macro",
  32212. height: math.unit(2000, "feet"),
  32213. default: true
  32214. },
  32215. {
  32216. name: "Megamacro",
  32217. height: math.unit(2, "km")
  32218. },
  32219. {
  32220. name: "Gigamacro",
  32221. height: math.unit(2000, "km")
  32222. },
  32223. {
  32224. name: "Teramacro",
  32225. height: math.unit(250000, "km")
  32226. },
  32227. ]
  32228. ))
  32229. characterMakers.push(() => makeCharacter(
  32230. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32231. {
  32232. front: {
  32233. height: math.unit(4, "meters"),
  32234. weight: math.unit(150, "kg"),
  32235. name: "Front",
  32236. image: {
  32237. source: "./media/characters/caledvwlch/front.svg",
  32238. extra: 1757/1537,
  32239. bottom: 31/1788
  32240. }
  32241. },
  32242. side: {
  32243. height: math.unit(4, "meters"),
  32244. weight: math.unit(150, "kg"),
  32245. name: "Side",
  32246. image: {
  32247. source: "./media/characters/caledvwlch/side.svg",
  32248. extra: 1605 / 1536,
  32249. bottom: 31 / 1636
  32250. }
  32251. },
  32252. back: {
  32253. height: math.unit(4, "meters"),
  32254. weight: math.unit(150, "kg"),
  32255. name: "Back",
  32256. image: {
  32257. source: "./media/characters/caledvwlch/back.svg",
  32258. extra: 1635 / 1565,
  32259. bottom: 27 / 1662
  32260. }
  32261. },
  32262. },
  32263. [
  32264. {
  32265. name: "\"Incognito\"",
  32266. height: math.unit(4, "meters")
  32267. },
  32268. {
  32269. name: "Small rampage",
  32270. height: math.unit(600, "meters")
  32271. },
  32272. {
  32273. name: "Mega",
  32274. height: math.unit(30, "km")
  32275. },
  32276. {
  32277. name: "Home-size",
  32278. height: math.unit(50, "km"),
  32279. default: true
  32280. },
  32281. {
  32282. name: "Giga",
  32283. height: math.unit(300, "km")
  32284. },
  32285. {
  32286. name: "Lounging",
  32287. height: math.unit(11000, "km")
  32288. },
  32289. {
  32290. name: "Planet snacking",
  32291. height: math.unit(2000000, "km")
  32292. },
  32293. ]
  32294. ))
  32295. characterMakers.push(() => makeCharacter(
  32296. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32297. {
  32298. front: {
  32299. height: math.unit(6, "feet"),
  32300. weight: math.unit(215, "lb"),
  32301. name: "Front",
  32302. image: {
  32303. source: "./media/characters/sapphire-svell/front.svg",
  32304. extra: 495 / 455,
  32305. bottom: 20 / 515
  32306. }
  32307. },
  32308. back: {
  32309. height: math.unit(6, "feet"),
  32310. weight: math.unit(216, "lb"),
  32311. name: "Back",
  32312. image: {
  32313. source: "./media/characters/sapphire-svell/back.svg",
  32314. extra: 497 / 477,
  32315. bottom: 7 / 504
  32316. }
  32317. },
  32318. maw: {
  32319. height: math.unit(1.57, "feet"),
  32320. name: "Maw",
  32321. image: {
  32322. source: "./media/characters/sapphire-svell/maw.svg"
  32323. }
  32324. },
  32325. foot: {
  32326. height: math.unit(1.07, "feet"),
  32327. name: "Foot",
  32328. image: {
  32329. source: "./media/characters/sapphire-svell/foot.svg"
  32330. }
  32331. },
  32332. toering: {
  32333. height: math.unit(1.7, "inch"),
  32334. name: "Toering",
  32335. image: {
  32336. source: "./media/characters/sapphire-svell/toering.svg"
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "Normal",
  32343. height: math.unit(300, "feet"),
  32344. default: true
  32345. },
  32346. {
  32347. name: "Augmented",
  32348. height: math.unit(1250, "feet")
  32349. },
  32350. {
  32351. name: "Unleashed",
  32352. height: math.unit(3000, "feet")
  32353. },
  32354. ]
  32355. ))
  32356. characterMakers.push(() => makeCharacter(
  32357. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32358. {
  32359. side: {
  32360. height: math.unit(2 + 3 / 12, "feet"),
  32361. weight: math.unit(110, "lb"),
  32362. name: "Side",
  32363. image: {
  32364. source: "./media/characters/glitch-flux/side.svg",
  32365. extra: 997 / 805,
  32366. bottom: 20 / 1017
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(2 + 3 / 12, "feet"),
  32374. default: true
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(4, "meters"),
  32383. name: "Front",
  32384. image: {
  32385. source: "./media/characters/mid/front.svg",
  32386. extra: 507 / 476,
  32387. bottom: 17 / 524
  32388. }
  32389. },
  32390. back: {
  32391. height: math.unit(4, "meters"),
  32392. name: "Back",
  32393. image: {
  32394. source: "./media/characters/mid/back.svg",
  32395. extra: 519 / 487,
  32396. bottom: 7 / 526
  32397. }
  32398. },
  32399. stuck: {
  32400. height: math.unit(2.2, "meters"),
  32401. name: "Stuck",
  32402. image: {
  32403. source: "./media/characters/mid/stuck.svg",
  32404. extra: 1951 / 1869,
  32405. bottom: 88 / 2039
  32406. }
  32407. }
  32408. },
  32409. [
  32410. {
  32411. name: "Normal",
  32412. height: math.unit(4, "meters"),
  32413. default: true
  32414. },
  32415. {
  32416. name: "Big",
  32417. height: math.unit(10, "meters")
  32418. },
  32419. {
  32420. name: "Macro",
  32421. height: math.unit(800, "meters")
  32422. },
  32423. {
  32424. name: "Megamacro",
  32425. height: math.unit(100, "km")
  32426. },
  32427. {
  32428. name: "Overgrown",
  32429. height: math.unit(1, "parsec")
  32430. },
  32431. ]
  32432. ))
  32433. characterMakers.push(() => makeCharacter(
  32434. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32435. {
  32436. front: {
  32437. height: math.unit(2.5, "meters"),
  32438. weight: math.unit(225, "kg"),
  32439. name: "Front",
  32440. image: {
  32441. source: "./media/characters/iris/front.svg",
  32442. extra: 3348 / 3251,
  32443. bottom: 205 / 3553
  32444. }
  32445. },
  32446. maw: {
  32447. height: math.unit(0.56, "meter"),
  32448. name: "Maw",
  32449. image: {
  32450. source: "./media/characters/iris/maw.svg"
  32451. }
  32452. },
  32453. },
  32454. [
  32455. {
  32456. name: "Mewter cat",
  32457. height: math.unit(1.2, "meters")
  32458. },
  32459. {
  32460. name: "Normal",
  32461. height: math.unit(2.5, "meters"),
  32462. default: true
  32463. },
  32464. {
  32465. name: "Minimacro",
  32466. height: math.unit(18, "feet")
  32467. },
  32468. {
  32469. name: "Macro",
  32470. height: math.unit(140, "feet")
  32471. },
  32472. {
  32473. name: "Macro+",
  32474. height: math.unit(180, "meters")
  32475. },
  32476. {
  32477. name: "Megamacro",
  32478. height: math.unit(2746, "meters")
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(6, "feet"),
  32487. weight: math.unit(135, "lb"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/axel/front.svg",
  32491. extra: 908 / 908,
  32492. bottom: 58 / 966
  32493. }
  32494. },
  32495. side: {
  32496. height: math.unit(6, "feet"),
  32497. weight: math.unit(135, "lb"),
  32498. name: "Side",
  32499. image: {
  32500. source: "./media/characters/axel/side.svg",
  32501. extra: 958 / 958,
  32502. bottom: 11 / 969
  32503. }
  32504. },
  32505. back: {
  32506. height: math.unit(6, "feet"),
  32507. weight: math.unit(135, "lb"),
  32508. name: "Back",
  32509. image: {
  32510. source: "./media/characters/axel/back.svg",
  32511. extra: 887 / 887,
  32512. bottom: 34 / 921
  32513. }
  32514. },
  32515. head: {
  32516. height: math.unit(1.07, "feet"),
  32517. name: "Head",
  32518. image: {
  32519. source: "./media/characters/axel/head.svg"
  32520. }
  32521. },
  32522. beak: {
  32523. height: math.unit(1.4, "feet"),
  32524. name: "Beak",
  32525. image: {
  32526. source: "./media/characters/axel/beak.svg"
  32527. }
  32528. },
  32529. beakSide: {
  32530. height: math.unit(1.4, "feet"),
  32531. name: "Beak Side",
  32532. image: {
  32533. source: "./media/characters/axel/beak-side.svg"
  32534. }
  32535. },
  32536. sheath: {
  32537. height: math.unit(0.5, "feet"),
  32538. name: "Sheath",
  32539. image: {
  32540. source: "./media/characters/axel/sheath.svg"
  32541. }
  32542. },
  32543. dick: {
  32544. height: math.unit(0.98, "feet"),
  32545. name: "Dick",
  32546. image: {
  32547. source: "./media/characters/axel/dick.svg"
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Macro",
  32554. height: math.unit(68, "meters"),
  32555. default: true
  32556. },
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32561. {
  32562. front: {
  32563. height: math.unit(3.5, "meters"),
  32564. weight: math.unit(1200, "kg"),
  32565. name: "Front",
  32566. image: {
  32567. source: "./media/characters/joanna/front.svg",
  32568. extra: 1596 / 1488,
  32569. bottom: 29 / 1625
  32570. }
  32571. },
  32572. back: {
  32573. height: math.unit(3.5, "meters"),
  32574. weight: math.unit(1200, "kg"),
  32575. name: "Back",
  32576. image: {
  32577. source: "./media/characters/joanna/back.svg",
  32578. extra: 1594 / 1495,
  32579. bottom: 26 / 1620
  32580. }
  32581. },
  32582. frontShorts: {
  32583. height: math.unit(3.5, "meters"),
  32584. weight: math.unit(1200, "kg"),
  32585. name: "Front (Shorts)",
  32586. image: {
  32587. source: "./media/characters/joanna/front-shorts.svg",
  32588. extra: 1596 / 1488,
  32589. bottom: 29 / 1625
  32590. }
  32591. },
  32592. frontBiker: {
  32593. height: math.unit(3.5, "meters"),
  32594. weight: math.unit(1200, "kg"),
  32595. name: "Front (Biker)",
  32596. image: {
  32597. source: "./media/characters/joanna/front-biker.svg",
  32598. extra: 1596 / 1488,
  32599. bottom: 29 / 1625
  32600. }
  32601. },
  32602. backBiker: {
  32603. height: math.unit(3.5, "meters"),
  32604. weight: math.unit(1200, "kg"),
  32605. name: "Back (Biker)",
  32606. image: {
  32607. source: "./media/characters/joanna/back-biker.svg",
  32608. extra: 1594 / 1495,
  32609. bottom: 88 / 1682
  32610. }
  32611. },
  32612. bikeLeft: {
  32613. height: math.unit(2.4, "meters"),
  32614. weight: math.unit(1600, "kg"),
  32615. name: "Bike (Left)",
  32616. image: {
  32617. source: "./media/characters/joanna/bike-left.svg",
  32618. extra: 720 / 720,
  32619. bottom: 8 / 728
  32620. }
  32621. },
  32622. bikeRight: {
  32623. height: math.unit(2.4, "meters"),
  32624. weight: math.unit(1600, "kg"),
  32625. name: "Bike (Right)",
  32626. image: {
  32627. source: "./media/characters/joanna/bike-right.svg",
  32628. extra: 720 / 720,
  32629. bottom: 8 / 728
  32630. }
  32631. },
  32632. },
  32633. [
  32634. {
  32635. name: "Incognito",
  32636. height: math.unit(3.5, "meters")
  32637. },
  32638. {
  32639. name: "Casual Big",
  32640. height: math.unit(200, "meters")
  32641. },
  32642. {
  32643. name: "Macro",
  32644. height: math.unit(600, "meters")
  32645. },
  32646. {
  32647. name: "Original",
  32648. height: math.unit(20, "km"),
  32649. default: true
  32650. },
  32651. {
  32652. name: "Giga",
  32653. height: math.unit(400, "km")
  32654. },
  32655. {
  32656. name: "Lounging",
  32657. height: math.unit(1500, "km")
  32658. },
  32659. {
  32660. name: "Planetary",
  32661. height: math.unit(200000, "km")
  32662. },
  32663. ]
  32664. ))
  32665. characterMakers.push(() => makeCharacter(
  32666. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32667. {
  32668. front: {
  32669. height: math.unit(6, "feet"),
  32670. weight: math.unit(150, "lb"),
  32671. name: "Front",
  32672. image: {
  32673. source: "./media/characters/hugo-sigil/front.svg",
  32674. extra: 522 / 500,
  32675. bottom: 2 / 524
  32676. }
  32677. },
  32678. back: {
  32679. height: math.unit(6, "feet"),
  32680. weight: math.unit(150, "lb"),
  32681. name: "Back",
  32682. image: {
  32683. source: "./media/characters/hugo-sigil/back.svg",
  32684. extra: 519 / 495,
  32685. bottom: 5 / 524
  32686. }
  32687. },
  32688. maw: {
  32689. height: math.unit(1.4, "feet"),
  32690. weight: math.unit(150, "lb"),
  32691. name: "Maw",
  32692. image: {
  32693. source: "./media/characters/hugo-sigil/maw.svg"
  32694. }
  32695. },
  32696. feet: {
  32697. height: math.unit(1.56, "feet"),
  32698. weight: math.unit(150, "lb"),
  32699. name: "Feet",
  32700. image: {
  32701. source: "./media/characters/hugo-sigil/feet.svg",
  32702. extra: 177 / 177,
  32703. bottom: 12 / 189
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(6, "feet")
  32711. },
  32712. {
  32713. name: "Macro",
  32714. height: math.unit(200, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(6, "feet"),
  32724. weight: math.unit(150, "lb"),
  32725. name: "Front",
  32726. image: {
  32727. source: "./media/characters/peri/front.svg",
  32728. extra: 2354 / 2233,
  32729. bottom: 49 / 2403
  32730. }
  32731. },
  32732. },
  32733. [
  32734. {
  32735. name: "Really Small",
  32736. height: math.unit(1, "nm")
  32737. },
  32738. {
  32739. name: "Micro",
  32740. height: math.unit(4, "inches")
  32741. },
  32742. {
  32743. name: "Normal",
  32744. height: math.unit(7, "inches"),
  32745. default: true
  32746. },
  32747. {
  32748. name: "Macro",
  32749. height: math.unit(400, "feet")
  32750. },
  32751. {
  32752. name: "Megamacro",
  32753. height: math.unit(100, "miles")
  32754. },
  32755. ]
  32756. ))
  32757. characterMakers.push(() => makeCharacter(
  32758. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32759. {
  32760. frontSlim: {
  32761. height: math.unit(7, "feet"),
  32762. name: "Front (Slim)",
  32763. image: {
  32764. source: "./media/characters/issilora/front-slim.svg",
  32765. extra: 529 / 449,
  32766. bottom: 53 / 582
  32767. }
  32768. },
  32769. sideSlim: {
  32770. height: math.unit(7, "feet"),
  32771. name: "Side (Slim)",
  32772. image: {
  32773. source: "./media/characters/issilora/side-slim.svg",
  32774. extra: 570 / 480,
  32775. bottom: 30 / 600
  32776. }
  32777. },
  32778. backSlim: {
  32779. height: math.unit(7, "feet"),
  32780. name: "Back (Slim)",
  32781. image: {
  32782. source: "./media/characters/issilora/back-slim.svg",
  32783. extra: 537 / 455,
  32784. bottom: 46 / 583
  32785. }
  32786. },
  32787. frontBuff: {
  32788. height: math.unit(7, "feet"),
  32789. name: "Front (Buff)",
  32790. image: {
  32791. source: "./media/characters/issilora/front-buff.svg",
  32792. extra: 2310 / 2035,
  32793. bottom: 335 / 2645
  32794. }
  32795. },
  32796. head: {
  32797. height: math.unit(1.94, "feet"),
  32798. name: "Head",
  32799. image: {
  32800. source: "./media/characters/issilora/head.svg"
  32801. }
  32802. },
  32803. },
  32804. [
  32805. {
  32806. name: "Minimum",
  32807. height: math.unit(7, "feet")
  32808. },
  32809. {
  32810. name: "Comfortable",
  32811. height: math.unit(17, "feet")
  32812. },
  32813. {
  32814. name: "Fun Size",
  32815. height: math.unit(47, "feet")
  32816. },
  32817. {
  32818. name: "Natural Macro",
  32819. height: math.unit(137, "feet"),
  32820. default: true
  32821. },
  32822. {
  32823. name: "Maximum Kaiju",
  32824. height: math.unit(397, "feet")
  32825. },
  32826. ]
  32827. ))
  32828. characterMakers.push(() => makeCharacter(
  32829. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32830. {
  32831. front: {
  32832. height: math.unit(50 + 9/12, "feet"),
  32833. weight: math.unit(32.8, "tons"),
  32834. name: "Front",
  32835. image: {
  32836. source: "./media/characters/irb'iiritaahn/front.svg",
  32837. extra: 1878/1826,
  32838. bottom: 326/2204
  32839. }
  32840. },
  32841. back: {
  32842. height: math.unit(50 + 9/12, "feet"),
  32843. weight: math.unit(32.8, "tons"),
  32844. name: "Back",
  32845. image: {
  32846. source: "./media/characters/irb'iiritaahn/back.svg",
  32847. extra: 2052/2018,
  32848. bottom: 152/2204
  32849. }
  32850. },
  32851. head: {
  32852. height: math.unit(12.86, "feet"),
  32853. name: "Head",
  32854. image: {
  32855. source: "./media/characters/irb'iiritaahn/head.svg"
  32856. }
  32857. },
  32858. maw: {
  32859. height: math.unit(9.66, "feet"),
  32860. name: "Maw",
  32861. image: {
  32862. source: "./media/characters/irb'iiritaahn/maw.svg"
  32863. }
  32864. },
  32865. frontDick: {
  32866. height: math.unit(8.78461, "feet"),
  32867. name: "Front Dick",
  32868. image: {
  32869. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32870. }
  32871. },
  32872. rearDick: {
  32873. height: math.unit(8.78461, "feet"),
  32874. name: "Rear Dick",
  32875. image: {
  32876. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32877. }
  32878. },
  32879. rearDickUnfolded: {
  32880. height: math.unit(8.78, "feet"),
  32881. name: "Rear Dick (Unfolded)",
  32882. image: {
  32883. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32884. }
  32885. },
  32886. wings: {
  32887. height: math.unit(43, "feet"),
  32888. name: "Wings",
  32889. image: {
  32890. source: "./media/characters/irb'iiritaahn/wings.svg"
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Macro",
  32897. height: math.unit(50 + 9/12, "feet"),
  32898. default: true
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32904. {
  32905. front: {
  32906. height: math.unit(205, "cm"),
  32907. weight: math.unit(102, "kg"),
  32908. name: "Front",
  32909. image: {
  32910. source: "./media/characters/irbisgreif/front.svg",
  32911. extra: 785/706,
  32912. bottom: 13/798
  32913. }
  32914. },
  32915. back: {
  32916. height: math.unit(205, "cm"),
  32917. weight: math.unit(102, "kg"),
  32918. name: "Back",
  32919. image: {
  32920. source: "./media/characters/irbisgreif/back.svg",
  32921. extra: 713/701,
  32922. bottom: 26/739
  32923. }
  32924. },
  32925. frontDressed: {
  32926. height: math.unit(216, "cm"),
  32927. weight: math.unit(102, "kg"),
  32928. name: "Front-dressed",
  32929. image: {
  32930. source: "./media/characters/irbisgreif/front-dressed.svg",
  32931. extra: 902/776,
  32932. bottom: 14/916
  32933. }
  32934. },
  32935. sideDressed: {
  32936. height: math.unit(195, "cm"),
  32937. weight: math.unit(102, "kg"),
  32938. name: "Side-dressed",
  32939. image: {
  32940. source: "./media/characters/irbisgreif/side-dressed.svg",
  32941. extra: 788/688,
  32942. bottom: 21/809
  32943. }
  32944. },
  32945. backDressed: {
  32946. height: math.unit(216, "cm"),
  32947. weight: math.unit(102, "kg"),
  32948. name: "Back-dressed",
  32949. image: {
  32950. source: "./media/characters/irbisgreif/back-dressed.svg",
  32951. extra: 901/783,
  32952. bottom: 10/911
  32953. }
  32954. },
  32955. dick: {
  32956. height: math.unit(0.49, "feet"),
  32957. name: "Dick",
  32958. image: {
  32959. source: "./media/characters/irbisgreif/dick.svg"
  32960. }
  32961. },
  32962. wingTop: {
  32963. height: math.unit(1.93 , "feet"),
  32964. name: "Wing-top",
  32965. image: {
  32966. source: "./media/characters/irbisgreif/wing-top.svg"
  32967. }
  32968. },
  32969. wingBottom: {
  32970. height: math.unit(1.93 , "feet"),
  32971. name: "Wing-bottom",
  32972. image: {
  32973. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32974. }
  32975. },
  32976. },
  32977. [
  32978. {
  32979. name: "Normal",
  32980. height: math.unit(216, "cm"),
  32981. default: true
  32982. },
  32983. ]
  32984. ))
  32985. characterMakers.push(() => makeCharacter(
  32986. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32987. {
  32988. front: {
  32989. height: math.unit(6, "feet"),
  32990. weight: math.unit(150, "lb"),
  32991. name: "Front",
  32992. image: {
  32993. source: "./media/characters/pride/front.svg",
  32994. extra: 1299/1230,
  32995. bottom: 18/1317
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Normal",
  33002. height: math.unit(7, "feet")
  33003. },
  33004. {
  33005. name: "Mini-macro",
  33006. height: math.unit(11, "feet")
  33007. },
  33008. {
  33009. name: "Macro",
  33010. height: math.unit(15, "meters"),
  33011. default: true
  33012. },
  33013. {
  33014. name: "Macro+",
  33015. height: math.unit(40, "meters")
  33016. },
  33017. ]
  33018. ))
  33019. characterMakers.push(() => makeCharacter(
  33020. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33021. {
  33022. front: {
  33023. height: math.unit(4 + 2 / 12, "feet"),
  33024. weight: math.unit(95, "lb"),
  33025. name: "Front",
  33026. image: {
  33027. source: "./media/characters/vaelophis-nyx/front.svg",
  33028. extra: 2532/2330,
  33029. bottom: 0/2532
  33030. }
  33031. },
  33032. back: {
  33033. height: math.unit(4 + 2 / 12, "feet"),
  33034. weight: math.unit(95, "lb"),
  33035. name: "Back",
  33036. image: {
  33037. source: "./media/characters/vaelophis-nyx/back.svg",
  33038. extra: 2484/2361,
  33039. bottom: 0/2484
  33040. }
  33041. },
  33042. feralSide: {
  33043. height: math.unit(2 + 1/12, "feet"),
  33044. weight: math.unit(20, "lb"),
  33045. name: "Feral (Side)",
  33046. image: {
  33047. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33048. extra: 1721/1581,
  33049. bottom: 70/1791
  33050. }
  33051. },
  33052. feralLazing: {
  33053. height: math.unit(1.08, "feet"),
  33054. weight: math.unit(20, "lb"),
  33055. name: "Feral (Lazing)",
  33056. image: {
  33057. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33058. extra: 822/822,
  33059. bottom: 248/1070
  33060. }
  33061. },
  33062. ear: {
  33063. height: math.unit(0.416, "feet"),
  33064. name: "Ear",
  33065. image: {
  33066. source: "./media/characters/vaelophis-nyx/ear.svg"
  33067. }
  33068. },
  33069. eye: {
  33070. height: math.unit(0.0748, "feet"),
  33071. name: "Eye",
  33072. image: {
  33073. source: "./media/characters/vaelophis-nyx/eye.svg"
  33074. }
  33075. },
  33076. mouth: {
  33077. height: math.unit(0.378, "feet"),
  33078. name: "Mouth",
  33079. image: {
  33080. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33081. }
  33082. },
  33083. spade: {
  33084. height: math.unit(0.55, "feet"),
  33085. name: "Spade",
  33086. image: {
  33087. source: "./media/characters/vaelophis-nyx/spade.svg"
  33088. }
  33089. },
  33090. },
  33091. [
  33092. {
  33093. name: "Normal",
  33094. height: math.unit(4 + 2/12, "feet"),
  33095. default: true
  33096. },
  33097. ]
  33098. ))
  33099. characterMakers.push(() => makeCharacter(
  33100. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33101. {
  33102. front: {
  33103. height: math.unit(7, "feet"),
  33104. weight: math.unit(231, "lb"),
  33105. name: "Front",
  33106. image: {
  33107. source: "./media/characters/flux/front.svg",
  33108. extra: 919/871,
  33109. bottom: 0/919
  33110. }
  33111. },
  33112. back: {
  33113. height: math.unit(7, "feet"),
  33114. weight: math.unit(231, "lb"),
  33115. name: "Back",
  33116. image: {
  33117. source: "./media/characters/flux/back.svg",
  33118. extra: 1040/992,
  33119. bottom: 0/1040
  33120. }
  33121. },
  33122. frontDressed: {
  33123. height: math.unit(7, "feet"),
  33124. weight: math.unit(231, "lb"),
  33125. name: "Front (Dressed)",
  33126. image: {
  33127. source: "./media/characters/flux/front-dressed.svg",
  33128. extra: 919/871,
  33129. bottom: 0/919
  33130. }
  33131. },
  33132. feralSide: {
  33133. height: math.unit(5, "feet"),
  33134. weight: math.unit(150, "lb"),
  33135. name: "Feral (Side)",
  33136. image: {
  33137. source: "./media/characters/flux/feral-side.svg",
  33138. extra: 598/528,
  33139. bottom: 28/626
  33140. }
  33141. },
  33142. head: {
  33143. height: math.unit(1.585, "feet"),
  33144. name: "Head",
  33145. image: {
  33146. source: "./media/characters/flux/head.svg"
  33147. }
  33148. },
  33149. headSide: {
  33150. height: math.unit(1.74, "feet"),
  33151. name: "Head (Side)",
  33152. image: {
  33153. source: "./media/characters/flux/head-side.svg"
  33154. }
  33155. },
  33156. headSideFire: {
  33157. height: math.unit(1.76, "feet"),
  33158. name: "Head (Side, Fire)",
  33159. image: {
  33160. source: "./media/characters/flux/head-side-fire.svg"
  33161. }
  33162. },
  33163. },
  33164. [
  33165. {
  33166. name: "Normal",
  33167. height: math.unit(7, "feet"),
  33168. default: true
  33169. },
  33170. ]
  33171. ))
  33172. characterMakers.push(() => makeCharacter(
  33173. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33174. {
  33175. front: {
  33176. height: math.unit(9, "feet"),
  33177. weight: math.unit(1012, "lb"),
  33178. name: "Front",
  33179. image: {
  33180. source: "./media/characters/ulfra-lupae/front.svg",
  33181. extra: 1083/1011,
  33182. bottom: 67/1150
  33183. }
  33184. },
  33185. },
  33186. [
  33187. {
  33188. name: "Micro",
  33189. height: math.unit(6, "inches")
  33190. },
  33191. {
  33192. name: "Socializing",
  33193. height: math.unit(6 + 5/12, "feet")
  33194. },
  33195. {
  33196. name: "Normal",
  33197. height: math.unit(9, "feet"),
  33198. default: true
  33199. },
  33200. {
  33201. name: "Macro",
  33202. height: math.unit(150, "feet")
  33203. },
  33204. ]
  33205. ))
  33206. characterMakers.push(() => makeCharacter(
  33207. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33208. {
  33209. front: {
  33210. height: math.unit(5 + 2/12, "feet"),
  33211. weight: math.unit(120, "lb"),
  33212. name: "Front",
  33213. image: {
  33214. source: "./media/characters/timber/front.svg",
  33215. extra: 2814/2705,
  33216. bottom: 181/2995
  33217. }
  33218. },
  33219. },
  33220. [
  33221. {
  33222. name: "Normal",
  33223. height: math.unit(5 + 2/12, "feet"),
  33224. default: true
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33230. {
  33231. front: {
  33232. height: math.unit(9, "feet"),
  33233. name: "Front",
  33234. image: {
  33235. source: "./media/characters/nicki/front.svg",
  33236. extra: 1240/990,
  33237. bottom: 45/1285
  33238. },
  33239. form: "anthro",
  33240. default: true
  33241. },
  33242. side: {
  33243. height: math.unit(9, "feet"),
  33244. name: "Side",
  33245. image: {
  33246. source: "./media/characters/nicki/side.svg",
  33247. extra: 1047/973,
  33248. bottom: 61/1108
  33249. },
  33250. form: "anthro"
  33251. },
  33252. back: {
  33253. height: math.unit(9, "feet"),
  33254. name: "Back",
  33255. image: {
  33256. source: "./media/characters/nicki/back.svg",
  33257. extra: 1006/965,
  33258. bottom: 39/1045
  33259. },
  33260. form: "anthro"
  33261. },
  33262. taur: {
  33263. height: math.unit(15, "feet"),
  33264. name: "Taur",
  33265. image: {
  33266. source: "./media/characters/nicki/taur.svg",
  33267. extra: 1592/1347,
  33268. bottom: 0/1592
  33269. },
  33270. form: "taur",
  33271. default: true
  33272. },
  33273. },
  33274. [
  33275. {
  33276. name: "Normal",
  33277. height: math.unit(9, "feet"),
  33278. form: "anthro",
  33279. default: true
  33280. },
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(15, "feet"),
  33284. form: "taur",
  33285. default: true
  33286. }
  33287. ],
  33288. {
  33289. "anthro": {
  33290. name: "Anthro",
  33291. default: true
  33292. },
  33293. "taur": {
  33294. name: "Taur"
  33295. }
  33296. }
  33297. ))
  33298. characterMakers.push(() => makeCharacter(
  33299. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33300. {
  33301. front: {
  33302. height: math.unit(7 + 10/12, "feet"),
  33303. weight: math.unit(3.5, "tons"),
  33304. name: "Front",
  33305. image: {
  33306. source: "./media/characters/lee/front.svg",
  33307. extra: 1773/1615,
  33308. bottom: 86/1859
  33309. }
  33310. },
  33311. hand: {
  33312. height: math.unit(1.78, "feet"),
  33313. name: "Hand",
  33314. image: {
  33315. source: "./media/characters/lee/hand.svg"
  33316. }
  33317. },
  33318. maw: {
  33319. height: math.unit(1.18, "feet"),
  33320. name: "Maw",
  33321. image: {
  33322. source: "./media/characters/lee/maw.svg"
  33323. }
  33324. },
  33325. },
  33326. [
  33327. {
  33328. name: "Normal",
  33329. height: math.unit(7 + 10/12, "feet"),
  33330. default: true
  33331. },
  33332. ]
  33333. ))
  33334. characterMakers.push(() => makeCharacter(
  33335. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33336. {
  33337. front: {
  33338. height: math.unit(9, "feet"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/guti/front.svg",
  33342. extra: 4551/4355,
  33343. bottom: 123/4674
  33344. }
  33345. },
  33346. tongue: {
  33347. height: math.unit(1, "feet"),
  33348. name: "Tongue",
  33349. image: {
  33350. source: "./media/characters/guti/tongue.svg"
  33351. }
  33352. },
  33353. paw: {
  33354. height: math.unit(1.18, "feet"),
  33355. name: "Paw",
  33356. image: {
  33357. source: "./media/characters/guti/paw.svg"
  33358. }
  33359. },
  33360. },
  33361. [
  33362. {
  33363. name: "Normal",
  33364. height: math.unit(9, "feet"),
  33365. default: true
  33366. },
  33367. ]
  33368. ))
  33369. characterMakers.push(() => makeCharacter(
  33370. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33371. {
  33372. side: {
  33373. height: math.unit(5, "meters"),
  33374. name: "Side",
  33375. image: {
  33376. source: "./media/characters/vesper/side.svg",
  33377. extra: 1605/1518,
  33378. bottom: 0/1605
  33379. }
  33380. },
  33381. },
  33382. [
  33383. {
  33384. name: "Small",
  33385. height: math.unit(5, "meters")
  33386. },
  33387. {
  33388. name: "Sage",
  33389. height: math.unit(100, "meters"),
  33390. default: true
  33391. },
  33392. {
  33393. name: "Fun Size",
  33394. height: math.unit(600, "meters")
  33395. },
  33396. {
  33397. name: "Goddess",
  33398. height: math.unit(20000, "km")
  33399. },
  33400. {
  33401. name: "Maximum",
  33402. height: math.unit(5, "galaxies")
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33408. {
  33409. front: {
  33410. height: math.unit(6 + 3/12, "feet"),
  33411. weight: math.unit(190, "lb"),
  33412. name: "Front",
  33413. image: {
  33414. source: "./media/characters/gawain/front.svg",
  33415. extra: 2222/2139,
  33416. bottom: 90/2312
  33417. }
  33418. },
  33419. back: {
  33420. height: math.unit(6 + 3/12, "feet"),
  33421. weight: math.unit(190, "lb"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/gawain/back.svg",
  33425. extra: 2199/2111,
  33426. bottom: 73/2272
  33427. }
  33428. },
  33429. },
  33430. [
  33431. {
  33432. name: "Normal",
  33433. height: math.unit(6 + 3/12, "feet"),
  33434. default: true
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33440. {
  33441. side: {
  33442. height: math.unit(3.5, "meters"),
  33443. weight: math.unit(16000, "lb"),
  33444. name: "Side",
  33445. image: {
  33446. source: "./media/characters/dascalti/side.svg",
  33447. extra: 392/273,
  33448. bottom: 47/439
  33449. }
  33450. },
  33451. breath: {
  33452. height: math.unit(7.4, "feet"),
  33453. name: "Breath",
  33454. image: {
  33455. source: "./media/characters/dascalti/breath.svg"
  33456. }
  33457. },
  33458. fed: {
  33459. height: math.unit(3.6, "meters"),
  33460. weight: math.unit(16000, "lb"),
  33461. name: "Fed",
  33462. image: {
  33463. source: "./media/characters/dascalti/fed.svg",
  33464. extra: 1419/820,
  33465. bottom: 95/1514
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(3.5, "meters"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33479. {
  33480. front: {
  33481. height: math.unit(3 + 5/12, "feet"),
  33482. name: "Front",
  33483. image: {
  33484. source: "./media/characters/mauve/front.svg",
  33485. extra: 1126/1033,
  33486. bottom: 65/1191
  33487. }
  33488. },
  33489. side: {
  33490. height: math.unit(3 + 5/12, "feet"),
  33491. name: "Side",
  33492. image: {
  33493. source: "./media/characters/mauve/side.svg",
  33494. extra: 1089/1001,
  33495. bottom: 29/1118
  33496. }
  33497. },
  33498. back: {
  33499. height: math.unit(3 + 5/12, "feet"),
  33500. name: "Back",
  33501. image: {
  33502. source: "./media/characters/mauve/back.svg",
  33503. extra: 1173/1053,
  33504. bottom: 109/1282
  33505. }
  33506. },
  33507. },
  33508. [
  33509. {
  33510. name: "Normal",
  33511. height: math.unit(3 + 5/12, "feet"),
  33512. default: true
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33518. {
  33519. front: {
  33520. height: math.unit(6 + 3/12, "feet"),
  33521. weight: math.unit(430, "lb"),
  33522. name: "Front",
  33523. image: {
  33524. source: "./media/characters/carlos/front.svg",
  33525. extra: 1964/1913,
  33526. bottom: 70/2034
  33527. }
  33528. },
  33529. },
  33530. [
  33531. {
  33532. name: "Normal",
  33533. height: math.unit(6 + 3/12, "feet"),
  33534. default: true
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33540. {
  33541. back: {
  33542. height: math.unit(5 + 10/12, "feet"),
  33543. weight: math.unit(200, "lb"),
  33544. name: "Back",
  33545. image: {
  33546. source: "./media/characters/jax/back.svg",
  33547. extra: 764/739,
  33548. bottom: 25/789
  33549. }
  33550. },
  33551. },
  33552. [
  33553. {
  33554. name: "Normal",
  33555. height: math.unit(5 + 10/12, "feet"),
  33556. default: true
  33557. },
  33558. ]
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33562. {
  33563. front: {
  33564. height: math.unit(8, "feet"),
  33565. weight: math.unit(250, "lb"),
  33566. name: "Front",
  33567. image: {
  33568. source: "./media/characters/eikthynir/front.svg",
  33569. extra: 1332/1166,
  33570. bottom: 82/1414
  33571. }
  33572. },
  33573. back: {
  33574. height: math.unit(8, "feet"),
  33575. weight: math.unit(250, "lb"),
  33576. name: "Back",
  33577. image: {
  33578. source: "./media/characters/eikthynir/back.svg",
  33579. extra: 1342/1190,
  33580. bottom: 19/1361
  33581. }
  33582. },
  33583. dick: {
  33584. height: math.unit(2.35, "feet"),
  33585. name: "Dick",
  33586. image: {
  33587. source: "./media/characters/eikthynir/dick.svg"
  33588. }
  33589. },
  33590. },
  33591. [
  33592. {
  33593. name: "Normal",
  33594. height: math.unit(8, "feet"),
  33595. default: true
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33601. {
  33602. front: {
  33603. height: math.unit(99, "meters"),
  33604. weight: math.unit(13000, "tons"),
  33605. name: "Front",
  33606. image: {
  33607. source: "./media/characters/zlmos/front.svg",
  33608. extra: 2202/1992,
  33609. bottom: 315/2517
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Macro",
  33616. height: math.unit(99, "meters"),
  33617. default: true
  33618. },
  33619. ]
  33620. ))
  33621. characterMakers.push(() => makeCharacter(
  33622. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33623. {
  33624. front: {
  33625. height: math.unit(6 + 5/12, "feet"),
  33626. name: "Front",
  33627. image: {
  33628. source: "./media/characters/purri/front.svg",
  33629. extra: 1698/1610,
  33630. bottom: 32/1730
  33631. }
  33632. },
  33633. frontAlt: {
  33634. height: math.unit(6 + 5/12, "feet"),
  33635. name: "Front (Alt)",
  33636. image: {
  33637. source: "./media/characters/purri/front-alt.svg",
  33638. extra: 450/420,
  33639. bottom: 26/476
  33640. }
  33641. },
  33642. boots: {
  33643. height: math.unit(5.5, "feet"),
  33644. name: "Boots",
  33645. image: {
  33646. source: "./media/characters/purri/boots.svg",
  33647. extra: 905/853,
  33648. bottom: 18/923
  33649. }
  33650. },
  33651. lying: {
  33652. height: math.unit(2, "feet"),
  33653. name: "Lying",
  33654. image: {
  33655. source: "./media/characters/purri/lying.svg",
  33656. extra: 940/843,
  33657. bottom: 146/1086
  33658. }
  33659. },
  33660. devious: {
  33661. height: math.unit(1.77, "feet"),
  33662. name: "Devious",
  33663. image: {
  33664. source: "./media/characters/purri/devious.svg",
  33665. extra: 1440/1155,
  33666. bottom: 147/1587
  33667. }
  33668. },
  33669. bean: {
  33670. height: math.unit(1.94, "feet"),
  33671. name: "Bean",
  33672. image: {
  33673. source: "./media/characters/purri/bean.svg"
  33674. }
  33675. },
  33676. },
  33677. [
  33678. {
  33679. name: "Micro",
  33680. height: math.unit(1, "mm")
  33681. },
  33682. {
  33683. name: "Normal",
  33684. height: math.unit(6 + 5/12, "feet"),
  33685. default: true
  33686. },
  33687. {
  33688. name: "Macro :3c",
  33689. height: math.unit(2, "miles")
  33690. },
  33691. ]
  33692. ))
  33693. characterMakers.push(() => makeCharacter(
  33694. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33695. {
  33696. front: {
  33697. height: math.unit(6 + 2/12, "feet"),
  33698. weight: math.unit(250, "lb"),
  33699. name: "Front",
  33700. image: {
  33701. source: "./media/characters/moonlight/front.svg",
  33702. extra: 1044/908,
  33703. bottom: 56/1100
  33704. }
  33705. },
  33706. feral: {
  33707. height: math.unit(3 + 1/12, "feet"),
  33708. weight: math.unit(50, "kg"),
  33709. name: "Feral",
  33710. image: {
  33711. source: "./media/characters/moonlight/feral.svg",
  33712. extra: 3705/2791,
  33713. bottom: 145/3850
  33714. }
  33715. },
  33716. paw: {
  33717. height: math.unit(1, "feet"),
  33718. name: "Paw",
  33719. image: {
  33720. source: "./media/characters/moonlight/paw.svg"
  33721. }
  33722. },
  33723. paws: {
  33724. height: math.unit(0.98, "feet"),
  33725. name: "Paws",
  33726. image: {
  33727. source: "./media/characters/moonlight/paws.svg",
  33728. extra: 939/939,
  33729. bottom: 50/989
  33730. }
  33731. },
  33732. mouth: {
  33733. height: math.unit(0.48, "feet"),
  33734. name: "Mouth",
  33735. image: {
  33736. source: "./media/characters/moonlight/mouth.svg"
  33737. }
  33738. },
  33739. dick: {
  33740. height: math.unit(1.46, "feet"),
  33741. name: "Dick",
  33742. image: {
  33743. source: "./media/characters/moonlight/dick.svg"
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Normal",
  33750. height: math.unit(6 + 2/12, "feet"),
  33751. default: true
  33752. },
  33753. {
  33754. name: "Macro",
  33755. height: math.unit(300, "feet")
  33756. },
  33757. {
  33758. name: "Macro+",
  33759. height: math.unit(1, "mile")
  33760. },
  33761. {
  33762. name: "Mt. Moon",
  33763. height: math.unit(5, "miles")
  33764. },
  33765. {
  33766. name: "Megamacro",
  33767. height: math.unit(15, "miles")
  33768. },
  33769. ]
  33770. ))
  33771. characterMakers.push(() => makeCharacter(
  33772. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33773. {
  33774. back: {
  33775. height: math.unit(6, "feet"),
  33776. weight: math.unit(150, "lb"),
  33777. name: "Back",
  33778. image: {
  33779. source: "./media/characters/sylen/back.svg",
  33780. extra: 1335/1273,
  33781. bottom: 107/1442
  33782. }
  33783. },
  33784. },
  33785. [
  33786. {
  33787. name: "Normal",
  33788. height: math.unit(5 + 5/12, "feet")
  33789. },
  33790. {
  33791. name: "Megamacro",
  33792. height: math.unit(3, "miles"),
  33793. default: true
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33799. {
  33800. front: {
  33801. height: math.unit(6, "feet"),
  33802. weight: math.unit(190, "lb"),
  33803. name: "Front",
  33804. image: {
  33805. source: "./media/characters/huttser/front.svg",
  33806. extra: 1152/1058,
  33807. bottom: 23/1175
  33808. }
  33809. },
  33810. side: {
  33811. height: math.unit(6, "feet"),
  33812. weight: math.unit(190, "lb"),
  33813. name: "Side",
  33814. image: {
  33815. source: "./media/characters/huttser/side.svg",
  33816. extra: 1174/1065,
  33817. bottom: 18/1192
  33818. }
  33819. },
  33820. back: {
  33821. height: math.unit(6, "feet"),
  33822. weight: math.unit(190, "lb"),
  33823. name: "Back",
  33824. image: {
  33825. source: "./media/characters/huttser/back.svg",
  33826. extra: 1158/1056,
  33827. bottom: 12/1170
  33828. }
  33829. },
  33830. },
  33831. [
  33832. ]
  33833. ))
  33834. characterMakers.push(() => makeCharacter(
  33835. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33836. {
  33837. side: {
  33838. height: math.unit(12 + 9/12, "feet"),
  33839. weight: math.unit(15000, "lb"),
  33840. name: "Side",
  33841. image: {
  33842. source: "./media/characters/faan/side.svg",
  33843. extra: 2747/2697,
  33844. bottom: 0/2747
  33845. }
  33846. },
  33847. front: {
  33848. height: math.unit(12 + 9/12, "feet"),
  33849. weight: math.unit(15000, "lb"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/faan/front.svg",
  33853. extra: 607/571,
  33854. bottom: 24/631
  33855. }
  33856. },
  33857. head: {
  33858. height: math.unit(2.85, "feet"),
  33859. name: "Head",
  33860. image: {
  33861. source: "./media/characters/faan/head.svg"
  33862. }
  33863. },
  33864. headAlt: {
  33865. height: math.unit(3.13, "feet"),
  33866. name: "Head-alt",
  33867. image: {
  33868. source: "./media/characters/faan/head-alt.svg"
  33869. }
  33870. },
  33871. },
  33872. [
  33873. {
  33874. name: "Normal",
  33875. height: math.unit(12 + 9/12, "feet"),
  33876. default: true
  33877. },
  33878. ]
  33879. ))
  33880. characterMakers.push(() => makeCharacter(
  33881. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33882. {
  33883. front: {
  33884. height: math.unit(6, "feet"),
  33885. weight: math.unit(300, "lb"),
  33886. name: "Front",
  33887. image: {
  33888. source: "./media/characters/tanio/front.svg",
  33889. extra: 711/673,
  33890. bottom: 25/736
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Normal",
  33897. height: math.unit(6, "feet"),
  33898. default: true
  33899. },
  33900. ]
  33901. ))
  33902. characterMakers.push(() => makeCharacter(
  33903. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33904. {
  33905. front: {
  33906. height: math.unit(3, "inches"),
  33907. name: "Front",
  33908. image: {
  33909. source: "./media/characters/noboru/front.svg",
  33910. extra: 1039/932,
  33911. bottom: 18/1057
  33912. }
  33913. },
  33914. },
  33915. [
  33916. {
  33917. name: "Micro",
  33918. height: math.unit(3, "inches"),
  33919. default: true
  33920. },
  33921. ]
  33922. ))
  33923. characterMakers.push(() => makeCharacter(
  33924. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33925. {
  33926. front: {
  33927. height: math.unit(1.85, "meters"),
  33928. weight: math.unit(80, "kg"),
  33929. name: "Front",
  33930. image: {
  33931. source: "./media/characters/daniel-barrett/front.svg",
  33932. extra: 355/337,
  33933. bottom: 9/364
  33934. }
  33935. },
  33936. },
  33937. [
  33938. {
  33939. name: "Pico",
  33940. height: math.unit(0.0433, "mm")
  33941. },
  33942. {
  33943. name: "Nano",
  33944. height: math.unit(1.5, "mm")
  33945. },
  33946. {
  33947. name: "Micro",
  33948. height: math.unit(5.3, "cm"),
  33949. default: true
  33950. },
  33951. {
  33952. name: "Normal",
  33953. height: math.unit(1.85, "meters")
  33954. },
  33955. {
  33956. name: "Macro",
  33957. height: math.unit(64.7, "meters")
  33958. },
  33959. {
  33960. name: "Megamacro",
  33961. height: math.unit(2.26, "km")
  33962. },
  33963. {
  33964. name: "Gigamacro",
  33965. height: math.unit(79, "km")
  33966. },
  33967. {
  33968. name: "Teramacro",
  33969. height: math.unit(2765, "km")
  33970. },
  33971. {
  33972. name: "Petamacro",
  33973. height: math.unit(96678, "km")
  33974. },
  33975. ]
  33976. ))
  33977. characterMakers.push(() => makeCharacter(
  33978. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33979. {
  33980. front: {
  33981. height: math.unit(30, "meters"),
  33982. weight: math.unit(400, "tons"),
  33983. name: "Front",
  33984. image: {
  33985. source: "./media/characters/zeel/front.svg",
  33986. extra: 2599/2599,
  33987. bottom: 226/2825
  33988. }
  33989. },
  33990. },
  33991. [
  33992. {
  33993. name: "Macro",
  33994. height: math.unit(30, "meters"),
  33995. default: true
  33996. },
  33997. ]
  33998. ))
  33999. characterMakers.push(() => makeCharacter(
  34000. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34001. {
  34002. front: {
  34003. height: math.unit(6 + 7/12, "feet"),
  34004. weight: math.unit(210, "lb"),
  34005. name: "Front",
  34006. image: {
  34007. source: "./media/characters/tarn/front.svg",
  34008. extra: 3517/3220,
  34009. bottom: 91/3608
  34010. }
  34011. },
  34012. back: {
  34013. height: math.unit(6 + 7/12, "feet"),
  34014. weight: math.unit(210, "lb"),
  34015. name: "Back",
  34016. image: {
  34017. source: "./media/characters/tarn/back.svg",
  34018. extra: 3566/3241,
  34019. bottom: 34/3600
  34020. }
  34021. },
  34022. dick: {
  34023. height: math.unit(1.65, "feet"),
  34024. name: "Dick",
  34025. image: {
  34026. source: "./media/characters/tarn/dick.svg"
  34027. }
  34028. },
  34029. paw: {
  34030. height: math.unit(1.80, "feet"),
  34031. name: "Paw",
  34032. image: {
  34033. source: "./media/characters/tarn/paw.svg"
  34034. }
  34035. },
  34036. tongue: {
  34037. height: math.unit(0.97, "feet"),
  34038. name: "Tongue",
  34039. image: {
  34040. source: "./media/characters/tarn/tongue.svg"
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Micro",
  34047. height: math.unit(4, "inches")
  34048. },
  34049. {
  34050. name: "Normal",
  34051. height: math.unit(6 + 7/12, "feet"),
  34052. default: true
  34053. },
  34054. {
  34055. name: "Macro",
  34056. height: math.unit(300, "feet")
  34057. },
  34058. ]
  34059. ))
  34060. characterMakers.push(() => makeCharacter(
  34061. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34062. {
  34063. front: {
  34064. height: math.unit(5 + 7/12, "feet"),
  34065. weight: math.unit(80, "kg"),
  34066. name: "Front",
  34067. image: {
  34068. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34069. extra: 3023/2865,
  34070. bottom: 33/3056
  34071. }
  34072. },
  34073. back: {
  34074. height: math.unit(5 + 7/12, "feet"),
  34075. weight: math.unit(80, "kg"),
  34076. name: "Back",
  34077. image: {
  34078. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34079. extra: 3020/2886,
  34080. bottom: 30/3050
  34081. }
  34082. },
  34083. dick: {
  34084. height: math.unit(0.98, "feet"),
  34085. name: "Dick",
  34086. image: {
  34087. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34088. }
  34089. },
  34090. anatomy: {
  34091. height: math.unit(2.86, "feet"),
  34092. name: "Anatomy",
  34093. image: {
  34094. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34095. }
  34096. },
  34097. },
  34098. [
  34099. {
  34100. name: "Really Small",
  34101. height: math.unit(2, "inches")
  34102. },
  34103. {
  34104. name: "Micro",
  34105. height: math.unit(5.583, "inches")
  34106. },
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(5 + 7/12, "feet"),
  34110. default: true
  34111. },
  34112. {
  34113. name: "Macro",
  34114. height: math.unit(67, "feet")
  34115. },
  34116. {
  34117. name: "Megamacro",
  34118. height: math.unit(134, "feet")
  34119. },
  34120. ]
  34121. ))
  34122. characterMakers.push(() => makeCharacter(
  34123. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34124. {
  34125. front: {
  34126. height: math.unit(9, "feet"),
  34127. weight: math.unit(120, "lb"),
  34128. name: "Front",
  34129. image: {
  34130. source: "./media/characters/sally/front.svg",
  34131. extra: 1506/1349,
  34132. bottom: 66/1572
  34133. }
  34134. },
  34135. },
  34136. [
  34137. {
  34138. name: "Normal",
  34139. height: math.unit(9, "feet"),
  34140. default: true
  34141. },
  34142. ]
  34143. ))
  34144. characterMakers.push(() => makeCharacter(
  34145. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34146. {
  34147. front: {
  34148. height: math.unit(8, "feet"),
  34149. weight: math.unit(900, "lb"),
  34150. name: "Front",
  34151. image: {
  34152. source: "./media/characters/owen/front.svg",
  34153. extra: 1761/1657,
  34154. bottom: 74/1835
  34155. }
  34156. },
  34157. side: {
  34158. height: math.unit(8, "feet"),
  34159. weight: math.unit(900, "lb"),
  34160. name: "Side",
  34161. image: {
  34162. source: "./media/characters/owen/side.svg",
  34163. extra: 1797/1734,
  34164. bottom: 30/1827
  34165. }
  34166. },
  34167. back: {
  34168. height: math.unit(8, "feet"),
  34169. weight: math.unit(900, "lb"),
  34170. name: "Back",
  34171. image: {
  34172. source: "./media/characters/owen/back.svg",
  34173. extra: 1796/1706,
  34174. bottom: 59/1855
  34175. }
  34176. },
  34177. maw: {
  34178. height: math.unit(1.76, "feet"),
  34179. name: "Maw",
  34180. image: {
  34181. source: "./media/characters/owen/maw.svg"
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Normal",
  34188. height: math.unit(8, "feet"),
  34189. default: true
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34195. {
  34196. front: {
  34197. height: math.unit(4, "feet"),
  34198. weight: math.unit(400, "lb"),
  34199. name: "Front",
  34200. image: {
  34201. source: "./media/characters/ryth/front.svg",
  34202. extra: 1920/1748,
  34203. bottom: 42/1962
  34204. }
  34205. },
  34206. back: {
  34207. height: math.unit(4, "feet"),
  34208. weight: math.unit(400, "lb"),
  34209. name: "Back",
  34210. image: {
  34211. source: "./media/characters/ryth/back.svg",
  34212. extra: 1897/1690,
  34213. bottom: 89/1986
  34214. }
  34215. },
  34216. mouth: {
  34217. height: math.unit(1.39, "feet"),
  34218. name: "Mouth",
  34219. image: {
  34220. source: "./media/characters/ryth/mouth.svg"
  34221. }
  34222. },
  34223. tailmaw: {
  34224. height: math.unit(1.23, "feet"),
  34225. name: "Tailmaw",
  34226. image: {
  34227. source: "./media/characters/ryth/tailmaw.svg"
  34228. }
  34229. },
  34230. goia: {
  34231. height: math.unit(4, "meters"),
  34232. weight: math.unit(10800, "lb"),
  34233. name: "Goia",
  34234. image: {
  34235. source: "./media/characters/ryth/goia.svg",
  34236. extra: 745/640,
  34237. bottom: 107/852
  34238. }
  34239. },
  34240. goiaFront: {
  34241. height: math.unit(4, "meters"),
  34242. weight: math.unit(10800, "lb"),
  34243. name: "Goia (Front)",
  34244. image: {
  34245. source: "./media/characters/ryth/goia-front.svg",
  34246. extra: 750/586,
  34247. bottom: 114/864
  34248. }
  34249. },
  34250. goiaMaw: {
  34251. height: math.unit(5.55, "feet"),
  34252. name: "Goia Maw",
  34253. image: {
  34254. source: "./media/characters/ryth/goia-maw.svg"
  34255. }
  34256. },
  34257. goiaForepaw: {
  34258. height: math.unit(3.5, "feet"),
  34259. name: "Goia Forepaw",
  34260. image: {
  34261. source: "./media/characters/ryth/goia-forepaw.svg"
  34262. }
  34263. },
  34264. goiaHindpaw: {
  34265. height: math.unit(5.55, "feet"),
  34266. name: "Goia Hindpaw",
  34267. image: {
  34268. source: "./media/characters/ryth/goia-hindpaw.svg"
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(4, "feet"),
  34276. default: true
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(7, "feet"),
  34285. weight: math.unit(180, "lb"),
  34286. name: "Front",
  34287. image: {
  34288. source: "./media/characters/necrolance/front.svg",
  34289. extra: 1062/947,
  34290. bottom: 41/1103
  34291. }
  34292. },
  34293. back: {
  34294. height: math.unit(7, "feet"),
  34295. weight: math.unit(180, "lb"),
  34296. name: "Back",
  34297. image: {
  34298. source: "./media/characters/necrolance/back.svg",
  34299. extra: 1045/984,
  34300. bottom: 14/1059
  34301. }
  34302. },
  34303. wing: {
  34304. height: math.unit(2.67, "feet"),
  34305. name: "Wing",
  34306. image: {
  34307. source: "./media/characters/necrolance/wing.svg"
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Normal",
  34314. height: math.unit(7, "feet"),
  34315. default: true
  34316. },
  34317. ]
  34318. ))
  34319. characterMakers.push(() => makeCharacter(
  34320. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34321. {
  34322. front: {
  34323. height: math.unit(76, "meters"),
  34324. weight: math.unit(30000, "tons"),
  34325. name: "Front",
  34326. image: {
  34327. source: "./media/characters/tyler/front.svg",
  34328. extra: 1640/1640,
  34329. bottom: 114/1754
  34330. }
  34331. },
  34332. },
  34333. [
  34334. {
  34335. name: "Macro",
  34336. height: math.unit(76, "meters"),
  34337. default: true
  34338. },
  34339. ]
  34340. ))
  34341. characterMakers.push(() => makeCharacter(
  34342. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34343. {
  34344. front: {
  34345. height: math.unit(4 + 11/12, "feet"),
  34346. weight: math.unit(132, "lb"),
  34347. name: "Front",
  34348. image: {
  34349. source: "./media/characters/icey/front.svg",
  34350. extra: 2750/2550,
  34351. bottom: 33/2783
  34352. }
  34353. },
  34354. back: {
  34355. height: math.unit(4 + 11/12, "feet"),
  34356. weight: math.unit(132, "lb"),
  34357. name: "Back",
  34358. image: {
  34359. source: "./media/characters/icey/back.svg",
  34360. extra: 2624/2481,
  34361. bottom: 35/2659
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Normal",
  34368. height: math.unit(4 + 11/12, "feet"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(100, "feet"),
  34378. weight: math.unit(0, "lb"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/smile/front.svg",
  34382. extra: 2983/2912,
  34383. bottom: 162/3145
  34384. }
  34385. },
  34386. back: {
  34387. height: math.unit(100, "feet"),
  34388. weight: math.unit(0, "lb"),
  34389. name: "Back",
  34390. image: {
  34391. source: "./media/characters/smile/back.svg",
  34392. extra: 3143/3031,
  34393. bottom: 91/3234
  34394. }
  34395. },
  34396. head: {
  34397. height: math.unit(26.3, "feet"),
  34398. weight: math.unit(0, "lb"),
  34399. name: "Head",
  34400. image: {
  34401. source: "./media/characters/smile/head.svg"
  34402. }
  34403. },
  34404. collar: {
  34405. height: math.unit(5.3, "feet"),
  34406. weight: math.unit(0, "lb"),
  34407. name: "Collar",
  34408. image: {
  34409. source: "./media/characters/smile/collar.svg"
  34410. }
  34411. },
  34412. },
  34413. [
  34414. {
  34415. name: "Macro",
  34416. height: math.unit(100, "feet"),
  34417. default: true
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34423. {
  34424. dragon: {
  34425. height: math.unit(26, "feet"),
  34426. weight: math.unit(36, "tons"),
  34427. name: "Dragon",
  34428. image: {
  34429. source: "./media/characters/arimphae/dragon.svg",
  34430. extra: 1574/983,
  34431. bottom: 357/1931
  34432. }
  34433. },
  34434. drake: {
  34435. height: math.unit(9, "feet"),
  34436. weight: math.unit(1.5, "tons"),
  34437. name: "Drake",
  34438. image: {
  34439. source: "./media/characters/arimphae/drake.svg",
  34440. extra: 1120/925,
  34441. bottom: 435/1555
  34442. }
  34443. },
  34444. },
  34445. [
  34446. {
  34447. name: "Small",
  34448. height: math.unit(26*5/9, "feet")
  34449. },
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(26, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(8 + 9/12, "feet"),
  34462. name: "Front",
  34463. image: {
  34464. source: "./media/characters/xander/front.svg",
  34465. extra: 1237/974,
  34466. bottom: 94/1331
  34467. }
  34468. },
  34469. },
  34470. [
  34471. {
  34472. name: "Normal",
  34473. height: math.unit(8 + 9/12, "feet"),
  34474. default: true
  34475. },
  34476. {
  34477. name: "Gaze Grabber",
  34478. height: math.unit(13 + 8/12, "feet")
  34479. },
  34480. {
  34481. name: "Jaw Dropper",
  34482. height: math.unit(27, "feet")
  34483. },
  34484. {
  34485. name: "Show Stopper",
  34486. height: math.unit(136, "feet")
  34487. },
  34488. {
  34489. name: "Superstar",
  34490. height: math.unit(1.9e6, "miles")
  34491. },
  34492. ]
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34496. {
  34497. side: {
  34498. height: math.unit(2100, "feet"),
  34499. name: "Side",
  34500. image: {
  34501. source: "./media/characters/osiris/side.svg",
  34502. extra: 1105/939,
  34503. bottom: 167/1272
  34504. }
  34505. },
  34506. },
  34507. [
  34508. {
  34509. name: "Macro",
  34510. height: math.unit(2100, "feet"),
  34511. default: true
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(6 + 8/12, "feet"),
  34520. weight: math.unit(225, "lb"),
  34521. name: "Front",
  34522. image: {
  34523. source: "./media/characters/rhys-londe/front.svg",
  34524. extra: 2258/2141,
  34525. bottom: 188/2446
  34526. }
  34527. },
  34528. back: {
  34529. height: math.unit(6 + 8/12, "feet"),
  34530. weight: math.unit(225, "lb"),
  34531. name: "Back",
  34532. image: {
  34533. source: "./media/characters/rhys-londe/back.svg",
  34534. extra: 2237/2137,
  34535. bottom: 63/2300
  34536. }
  34537. },
  34538. frontNsfw: {
  34539. height: math.unit(6 + 8/12, "feet"),
  34540. weight: math.unit(225, "lb"),
  34541. name: "Front (NSFW)",
  34542. image: {
  34543. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34544. extra: 2258/2141,
  34545. bottom: 188/2446
  34546. }
  34547. },
  34548. backNsfw: {
  34549. height: math.unit(6 + 8/12, "feet"),
  34550. weight: math.unit(225, "lb"),
  34551. name: "Back (NSFW)",
  34552. image: {
  34553. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34554. extra: 2237/2137,
  34555. bottom: 63/2300
  34556. }
  34557. },
  34558. dick: {
  34559. height: math.unit(30, "inches"),
  34560. name: "Dick",
  34561. image: {
  34562. source: "./media/characters/rhys-londe/dick.svg"
  34563. }
  34564. },
  34565. maw: {
  34566. height: math.unit(1.6, "feet"),
  34567. name: "Maw",
  34568. image: {
  34569. source: "./media/characters/rhys-londe/maw.svg"
  34570. }
  34571. },
  34572. },
  34573. [
  34574. {
  34575. name: "Normal",
  34576. height: math.unit(6 + 8/12, "feet"),
  34577. default: true
  34578. },
  34579. ]
  34580. ))
  34581. characterMakers.push(() => makeCharacter(
  34582. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34583. {
  34584. front: {
  34585. height: math.unit(3 + 10/12, "feet"),
  34586. weight: math.unit(90, "lb"),
  34587. name: "Front",
  34588. image: {
  34589. source: "./media/characters/taivas-ensim/front.svg",
  34590. extra: 1327/1216,
  34591. bottom: 96/1423
  34592. }
  34593. },
  34594. back: {
  34595. height: math.unit(3 + 10/12, "feet"),
  34596. weight: math.unit(90, "lb"),
  34597. name: "Back",
  34598. image: {
  34599. source: "./media/characters/taivas-ensim/back.svg",
  34600. extra: 1355/1247,
  34601. bottom: 11/1366
  34602. }
  34603. },
  34604. frontNsfw: {
  34605. height: math.unit(3 + 10/12, "feet"),
  34606. weight: math.unit(90, "lb"),
  34607. name: "Front (NSFW)",
  34608. image: {
  34609. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34610. extra: 1327/1216,
  34611. bottom: 96/1423
  34612. }
  34613. },
  34614. backNsfw: {
  34615. height: math.unit(3 + 10/12, "feet"),
  34616. weight: math.unit(90, "lb"),
  34617. name: "Back (NSFW)",
  34618. image: {
  34619. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34620. extra: 1355/1247,
  34621. bottom: 11/1366
  34622. }
  34623. },
  34624. },
  34625. [
  34626. {
  34627. name: "Normal",
  34628. height: math.unit(3 + 10/12, "feet"),
  34629. default: true
  34630. },
  34631. ]
  34632. ))
  34633. characterMakers.push(() => makeCharacter(
  34634. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34635. {
  34636. front: {
  34637. height: math.unit(9 + 6/12, "feet"),
  34638. weight: math.unit(940, "lb"),
  34639. name: "Front",
  34640. image: {
  34641. source: "./media/characters/byliss/front.svg",
  34642. extra: 1327/1290,
  34643. bottom: 82/1409
  34644. }
  34645. },
  34646. back: {
  34647. height: math.unit(9 + 6/12, "feet"),
  34648. weight: math.unit(940, "lb"),
  34649. name: "Back",
  34650. image: {
  34651. source: "./media/characters/byliss/back.svg",
  34652. extra: 1376/1349,
  34653. bottom: 9/1385
  34654. }
  34655. },
  34656. frontNsfw: {
  34657. height: math.unit(9 + 6/12, "feet"),
  34658. weight: math.unit(940, "lb"),
  34659. name: "Front (NSFW)",
  34660. image: {
  34661. source: "./media/characters/byliss/front-nsfw.svg",
  34662. extra: 1327/1290,
  34663. bottom: 82/1409
  34664. }
  34665. },
  34666. backNsfw: {
  34667. height: math.unit(9 + 6/12, "feet"),
  34668. weight: math.unit(940, "lb"),
  34669. name: "Back (NSFW)",
  34670. image: {
  34671. source: "./media/characters/byliss/back-nsfw.svg",
  34672. extra: 1376/1349,
  34673. bottom: 9/1385
  34674. }
  34675. },
  34676. },
  34677. [
  34678. {
  34679. name: "Normal",
  34680. height: math.unit(9 + 6/12, "feet"),
  34681. default: true
  34682. },
  34683. ]
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34687. {
  34688. front: {
  34689. height: math.unit(5 + 2/12, "feet"),
  34690. weight: math.unit(200, "lb"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/noraly/front.svg",
  34694. extra: 4985/4773,
  34695. bottom: 150/5135
  34696. }
  34697. },
  34698. full: {
  34699. height: math.unit(5 + 2/12, "feet"),
  34700. weight: math.unit(164, "lb"),
  34701. name: "Full",
  34702. image: {
  34703. source: "./media/characters/noraly/full.svg",
  34704. extra: 1114/1059,
  34705. bottom: 35/1149
  34706. }
  34707. },
  34708. fuller: {
  34709. height: math.unit(5 + 2/12, "feet"),
  34710. weight: math.unit(230, "lb"),
  34711. name: "Fuller",
  34712. image: {
  34713. source: "./media/characters/noraly/fuller.svg",
  34714. extra: 1114/1059,
  34715. bottom: 35/1149
  34716. }
  34717. },
  34718. fullest: {
  34719. height: math.unit(5 + 2/12, "feet"),
  34720. weight: math.unit(300, "lb"),
  34721. name: "Fullest",
  34722. image: {
  34723. source: "./media/characters/noraly/fullest.svg",
  34724. extra: 1114/1059,
  34725. bottom: 35/1149
  34726. }
  34727. },
  34728. },
  34729. [
  34730. {
  34731. name: "Normal",
  34732. height: math.unit(5 + 2/12, "feet"),
  34733. default: true
  34734. },
  34735. ]
  34736. ))
  34737. characterMakers.push(() => makeCharacter(
  34738. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34739. {
  34740. front: {
  34741. height: math.unit(5 + 2/12, "feet"),
  34742. weight: math.unit(210, "lb"),
  34743. name: "Front",
  34744. image: {
  34745. source: "./media/characters/pera/front.svg",
  34746. extra: 1560/1531,
  34747. bottom: 165/1725
  34748. }
  34749. },
  34750. back: {
  34751. height: math.unit(5 + 2/12, "feet"),
  34752. weight: math.unit(210, "lb"),
  34753. name: "Back",
  34754. image: {
  34755. source: "./media/characters/pera/back.svg",
  34756. extra: 1523/1493,
  34757. bottom: 152/1675
  34758. }
  34759. },
  34760. dick: {
  34761. height: math.unit(2.4, "feet"),
  34762. name: "Dick",
  34763. image: {
  34764. source: "./media/characters/pera/dick.svg"
  34765. }
  34766. },
  34767. },
  34768. [
  34769. {
  34770. name: "Normal",
  34771. height: math.unit(5 + 2/12, "feet"),
  34772. default: true
  34773. },
  34774. ]
  34775. ))
  34776. characterMakers.push(() => makeCharacter(
  34777. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34778. {
  34779. front: {
  34780. height: math.unit(12, "feet"),
  34781. weight: math.unit(3200, "lb"),
  34782. name: "Front",
  34783. image: {
  34784. source: "./media/characters/julian/front.svg",
  34785. extra: 2962/2701,
  34786. bottom: 184/3146
  34787. }
  34788. },
  34789. maw: {
  34790. height: math.unit(5.35, "feet"),
  34791. name: "Maw",
  34792. image: {
  34793. source: "./media/characters/julian/maw.svg"
  34794. }
  34795. },
  34796. paw: {
  34797. height: math.unit(3.07, "feet"),
  34798. name: "Paw",
  34799. image: {
  34800. source: "./media/characters/julian/paw.svg"
  34801. }
  34802. },
  34803. },
  34804. [
  34805. {
  34806. name: "Default",
  34807. height: math.unit(12, "feet"),
  34808. default: true
  34809. },
  34810. {
  34811. name: "Big",
  34812. height: math.unit(50, "feet")
  34813. },
  34814. {
  34815. name: "Really Big",
  34816. height: math.unit(1, "mile")
  34817. },
  34818. {
  34819. name: "Extremely Big",
  34820. height: math.unit(100, "miles")
  34821. },
  34822. {
  34823. name: "Planet Hugger",
  34824. height: math.unit(200, "megameters")
  34825. },
  34826. {
  34827. name: "Unreasonably Big",
  34828. height: math.unit(1e300, "meters")
  34829. },
  34830. ]
  34831. ))
  34832. characterMakers.push(() => makeCharacter(
  34833. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34834. {
  34835. solgooleo: {
  34836. height: math.unit(4, "meters"),
  34837. weight: math.unit(6000*1.5, "kg"),
  34838. volume: math.unit(6000, "liters"),
  34839. name: "Solgooleo",
  34840. image: {
  34841. source: "./media/characters/pi/solgooleo.svg",
  34842. extra: 388/331,
  34843. bottom: 29/417
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(4, "meters"),
  34851. default: true
  34852. },
  34853. ]
  34854. ))
  34855. characterMakers.push(() => makeCharacter(
  34856. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34857. {
  34858. front: {
  34859. height: math.unit(8, "feet"),
  34860. weight: math.unit(4, "tons"),
  34861. name: "Front",
  34862. image: {
  34863. source: "./media/characters/shaun/front.svg",
  34864. extra: 503/495,
  34865. bottom: 20/523
  34866. }
  34867. },
  34868. back: {
  34869. height: math.unit(8, "feet"),
  34870. weight: math.unit(4, "tons"),
  34871. name: "Back",
  34872. image: {
  34873. source: "./media/characters/shaun/back.svg",
  34874. extra: 487/480,
  34875. bottom: 20/507
  34876. }
  34877. },
  34878. },
  34879. [
  34880. {
  34881. name: "Lorg",
  34882. height: math.unit(8, "feet"),
  34883. default: true
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34889. {
  34890. frontAnthro: {
  34891. height: math.unit(7, "feet"),
  34892. name: "Front",
  34893. image: {
  34894. source: "./media/characters/sini/front-anthro.svg",
  34895. extra: 726/678,
  34896. bottom: 35/761
  34897. },
  34898. form: "anthro",
  34899. default: true
  34900. },
  34901. backAnthro: {
  34902. height: math.unit(7, "feet"),
  34903. name: "Back",
  34904. image: {
  34905. source: "./media/characters/sini/back-anthro.svg",
  34906. extra: 743/701,
  34907. bottom: 12/755
  34908. },
  34909. form: "anthro",
  34910. },
  34911. frontAnthroNsfw: {
  34912. height: math.unit(7, "feet"),
  34913. name: "Front (NSFW)",
  34914. image: {
  34915. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34916. extra: 726/678,
  34917. bottom: 35/761
  34918. },
  34919. form: "anthro"
  34920. },
  34921. backAnthroNsfw: {
  34922. height: math.unit(7, "feet"),
  34923. name: "Back (NSFW)",
  34924. image: {
  34925. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34926. extra: 743/701,
  34927. bottom: 12/755
  34928. },
  34929. form: "anthro",
  34930. },
  34931. mawAnthro: {
  34932. height: math.unit(2.14, "feet"),
  34933. name: "Maw",
  34934. image: {
  34935. source: "./media/characters/sini/maw-anthro.svg"
  34936. },
  34937. form: "anthro"
  34938. },
  34939. dick: {
  34940. height: math.unit(1.45, "feet"),
  34941. name: "Dick",
  34942. image: {
  34943. source: "./media/characters/sini/dick-anthro.svg"
  34944. },
  34945. form: "anthro"
  34946. },
  34947. feral: {
  34948. height: math.unit(16, "feet"),
  34949. name: "Feral",
  34950. image: {
  34951. source: "./media/characters/sini/feral.svg",
  34952. extra: 814/605,
  34953. bottom: 11/825
  34954. },
  34955. form: "feral",
  34956. default: true
  34957. },
  34958. feralNsfw: {
  34959. height: math.unit(16, "feet"),
  34960. name: "Feral (NSFW)",
  34961. image: {
  34962. source: "./media/characters/sini/feral-nsfw.svg",
  34963. extra: 814/605,
  34964. bottom: 11/825
  34965. },
  34966. form: "feral"
  34967. },
  34968. mawFeral: {
  34969. height: math.unit(5.66, "feet"),
  34970. name: "Maw",
  34971. image: {
  34972. source: "./media/characters/sini/maw-feral.svg"
  34973. },
  34974. form: "feral",
  34975. },
  34976. pawFeral: {
  34977. height: math.unit(5.17, "feet"),
  34978. name: "Paw",
  34979. image: {
  34980. source: "./media/characters/sini/paw-feral.svg"
  34981. },
  34982. form: "feral",
  34983. },
  34984. rumpFeral: {
  34985. height: math.unit(13.11, "feet"),
  34986. name: "Rump",
  34987. image: {
  34988. source: "./media/characters/sini/rump-feral.svg"
  34989. },
  34990. form: "feral",
  34991. },
  34992. dickFeral: {
  34993. height: math.unit(1, "feet"),
  34994. name: "Dick",
  34995. image: {
  34996. source: "./media/characters/sini/dick-feral.svg"
  34997. },
  34998. form: "feral",
  34999. },
  35000. eyeFeral: {
  35001. height: math.unit(1.23, "feet"),
  35002. name: "Eye",
  35003. image: {
  35004. source: "./media/characters/sini/eye-feral.svg"
  35005. },
  35006. form: "feral",
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(7, "feet"),
  35013. default: true,
  35014. form: "anthro"
  35015. },
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(16, "feet"),
  35019. default: true,
  35020. form: "feral"
  35021. },
  35022. ],
  35023. {
  35024. "anthro": {
  35025. name: "Anthro",
  35026. default: true
  35027. },
  35028. "feral": {
  35029. name: "Feral",
  35030. }
  35031. }
  35032. ))
  35033. characterMakers.push(() => makeCharacter(
  35034. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35035. {
  35036. side: {
  35037. height: math.unit(47.2, "meters"),
  35038. weight: math.unit(10000, "tons"),
  35039. name: "Side",
  35040. image: {
  35041. source: "./media/characters/raylldo/side.svg",
  35042. extra: 2363/642,
  35043. bottom: 221/2584
  35044. }
  35045. },
  35046. top: {
  35047. height: math.unit(240, "meters"),
  35048. weight: math.unit(10000, "tons"),
  35049. name: "Top",
  35050. image: {
  35051. source: "./media/characters/raylldo/top.svg"
  35052. }
  35053. },
  35054. bottom: {
  35055. height: math.unit(240, "meters"),
  35056. weight: math.unit(10000, "tons"),
  35057. name: "Bottom",
  35058. image: {
  35059. source: "./media/characters/raylldo/bottom.svg"
  35060. }
  35061. },
  35062. head: {
  35063. height: math.unit(38.6, "meters"),
  35064. name: "Head",
  35065. image: {
  35066. source: "./media/characters/raylldo/head.svg",
  35067. extra: 1335/1112,
  35068. bottom: 0/1335
  35069. }
  35070. },
  35071. maw: {
  35072. height: math.unit(16.37, "meters"),
  35073. name: "Maw",
  35074. image: {
  35075. source: "./media/characters/raylldo/maw.svg",
  35076. extra: 883/660,
  35077. bottom: 0/883
  35078. },
  35079. extraAttributes: {
  35080. preyCapacity: {
  35081. name: "Capacity",
  35082. power: 3,
  35083. type: "volume",
  35084. base: math.unit(1000, "people")
  35085. },
  35086. tongueSize: {
  35087. name: "Tongue Size",
  35088. power: 2,
  35089. type: "area",
  35090. base: math.unit(21, "m^2")
  35091. }
  35092. }
  35093. },
  35094. forepaw: {
  35095. height: math.unit(18, "meters"),
  35096. name: "Forepaw",
  35097. image: {
  35098. source: "./media/characters/raylldo/forepaw.svg"
  35099. }
  35100. },
  35101. hindpaw: {
  35102. height: math.unit(23, "meters"),
  35103. name: "Hindpaw",
  35104. image: {
  35105. source: "./media/characters/raylldo/hindpaw.svg"
  35106. }
  35107. },
  35108. genitals: {
  35109. height: math.unit(42, "meters"),
  35110. name: "Genitals",
  35111. image: {
  35112. source: "./media/characters/raylldo/genitals.svg"
  35113. }
  35114. },
  35115. },
  35116. [
  35117. {
  35118. name: "Normal",
  35119. height: math.unit(47.2, "meters"),
  35120. default: true
  35121. },
  35122. ]
  35123. ))
  35124. characterMakers.push(() => makeCharacter(
  35125. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35126. {
  35127. anthroFront: {
  35128. height: math.unit(9, "feet"),
  35129. weight: math.unit(600, "lb"),
  35130. name: "Anthro (Front)",
  35131. image: {
  35132. source: "./media/characters/glint/anthro-front.svg",
  35133. extra: 1097/1018,
  35134. bottom: 28/1125
  35135. }
  35136. },
  35137. anthroBack: {
  35138. height: math.unit(9, "feet"),
  35139. weight: math.unit(600, "lb"),
  35140. name: "Anthro (Back)",
  35141. image: {
  35142. source: "./media/characters/glint/anthro-back.svg",
  35143. extra: 1154/997,
  35144. bottom: 36/1190
  35145. }
  35146. },
  35147. feral: {
  35148. height: math.unit(11, "feet"),
  35149. weight: math.unit(50000, "lb"),
  35150. name: "Feral",
  35151. image: {
  35152. source: "./media/characters/glint/feral.svg",
  35153. extra: 3035/1585,
  35154. bottom: 1169/4204
  35155. }
  35156. },
  35157. dickAnthro: {
  35158. height: math.unit(0.7, "meters"),
  35159. name: "Dick (Anthro)",
  35160. image: {
  35161. source: "./media/characters/glint/dick-anthro.svg"
  35162. }
  35163. },
  35164. dickFeral: {
  35165. height: math.unit(2.65, "meters"),
  35166. name: "Dick (Feral)",
  35167. image: {
  35168. source: "./media/characters/glint/dick-feral.svg"
  35169. }
  35170. },
  35171. slitHidden: {
  35172. height: math.unit(5.85, "meters"),
  35173. name: "Slit (Hidden)",
  35174. image: {
  35175. source: "./media/characters/glint/slit-hidden.svg"
  35176. }
  35177. },
  35178. slitErect: {
  35179. height: math.unit(5.85, "meters"),
  35180. name: "Slit (Erect)",
  35181. image: {
  35182. source: "./media/characters/glint/slit-erect.svg"
  35183. }
  35184. },
  35185. mawAnthro: {
  35186. height: math.unit(0.63, "meters"),
  35187. name: "Maw (Anthro)",
  35188. image: {
  35189. source: "./media/characters/glint/maw.svg"
  35190. }
  35191. },
  35192. mawFeral: {
  35193. height: math.unit(2.89, "meters"),
  35194. name: "Maw (Feral)",
  35195. image: {
  35196. source: "./media/characters/glint/maw.svg"
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(9, "feet"),
  35204. default: true
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35210. {
  35211. side: {
  35212. height: math.unit(15, "feet"),
  35213. weight: math.unit(5000, "kg"),
  35214. name: "Side",
  35215. image: {
  35216. source: "./media/characters/kairne/side.svg",
  35217. extra: 979/811,
  35218. bottom: 13/992
  35219. }
  35220. },
  35221. front: {
  35222. height: math.unit(15, "feet"),
  35223. weight: math.unit(5000, "kg"),
  35224. name: "Front",
  35225. image: {
  35226. source: "./media/characters/kairne/front.svg",
  35227. extra: 908/814,
  35228. bottom: 26/934
  35229. }
  35230. },
  35231. sideNsfw: {
  35232. height: math.unit(15, "feet"),
  35233. weight: math.unit(5000, "kg"),
  35234. name: "Side (NSFW)",
  35235. image: {
  35236. source: "./media/characters/kairne/side-nsfw.svg",
  35237. extra: 979/811,
  35238. bottom: 13/992
  35239. }
  35240. },
  35241. frontNsfw: {
  35242. height: math.unit(15, "feet"),
  35243. weight: math.unit(5000, "kg"),
  35244. name: "Front (NSFW)",
  35245. image: {
  35246. source: "./media/characters/kairne/front-nsfw.svg",
  35247. extra: 908/814,
  35248. bottom: 26/934
  35249. }
  35250. },
  35251. dickCaged: {
  35252. height: math.unit(0.65, "meters"),
  35253. name: "Dick-caged",
  35254. image: {
  35255. source: "./media/characters/kairne/dick-caged.svg"
  35256. }
  35257. },
  35258. dick: {
  35259. height: math.unit(0.79, "meters"),
  35260. name: "Dick",
  35261. image: {
  35262. source: "./media/characters/kairne/dick.svg"
  35263. }
  35264. },
  35265. genitals: {
  35266. height: math.unit(1.29, "meters"),
  35267. name: "Genitals",
  35268. image: {
  35269. source: "./media/characters/kairne/genitals.svg"
  35270. }
  35271. },
  35272. maw: {
  35273. height: math.unit(1.73, "meters"),
  35274. name: "Maw",
  35275. image: {
  35276. source: "./media/characters/kairne/maw.svg"
  35277. }
  35278. },
  35279. },
  35280. [
  35281. {
  35282. name: "Normal",
  35283. height: math.unit(15, "feet"),
  35284. default: true
  35285. },
  35286. ]
  35287. ))
  35288. characterMakers.push(() => makeCharacter(
  35289. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35290. {
  35291. front: {
  35292. height: math.unit(5 + 8/12, "feet"),
  35293. weight: math.unit(139, "lb"),
  35294. name: "Front",
  35295. image: {
  35296. source: "./media/characters/biscuit-jackal/front.svg",
  35297. extra: 2106/1961,
  35298. bottom: 58/2164
  35299. }
  35300. },
  35301. back: {
  35302. height: math.unit(5 + 8/12, "feet"),
  35303. weight: math.unit(139, "lb"),
  35304. name: "Back",
  35305. image: {
  35306. source: "./media/characters/biscuit-jackal/back.svg",
  35307. extra: 2132/1976,
  35308. bottom: 57/2189
  35309. }
  35310. },
  35311. werejackal: {
  35312. height: math.unit(6 + 3/12, "feet"),
  35313. weight: math.unit(188, "lb"),
  35314. name: "Werejackal",
  35315. image: {
  35316. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35317. extra: 2373/2178,
  35318. bottom: 53/2426
  35319. }
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Normal",
  35325. height: math.unit(5 + 8/12, "feet"),
  35326. default: true
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35332. {
  35333. front: {
  35334. height: math.unit(140, "cm"),
  35335. weight: math.unit(45, "kg"),
  35336. name: "Front",
  35337. image: {
  35338. source: "./media/characters/tayra-white/front.svg",
  35339. extra: 2229/2192,
  35340. bottom: 75/2304
  35341. }
  35342. },
  35343. },
  35344. [
  35345. {
  35346. name: "Normal",
  35347. height: math.unit(140, "cm"),
  35348. default: true
  35349. },
  35350. ]
  35351. ))
  35352. characterMakers.push(() => makeCharacter(
  35353. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35354. {
  35355. front: {
  35356. height: math.unit(4 + 5/12, "feet"),
  35357. name: "Front",
  35358. image: {
  35359. source: "./media/characters/scoop/front.svg",
  35360. extra: 1257/1136,
  35361. bottom: 69/1326
  35362. }
  35363. },
  35364. back: {
  35365. height: math.unit(4 + 5/12, "feet"),
  35366. name: "Back",
  35367. image: {
  35368. source: "./media/characters/scoop/back.svg",
  35369. extra: 1321/1152,
  35370. bottom: 32/1353
  35371. }
  35372. },
  35373. maw: {
  35374. height: math.unit(0.68, "feet"),
  35375. name: "Maw",
  35376. image: {
  35377. source: "./media/characters/scoop/maw.svg"
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Really Small",
  35384. height: math.unit(1, "mm")
  35385. },
  35386. {
  35387. name: "Micro",
  35388. height: math.unit(1, "inch")
  35389. },
  35390. {
  35391. name: "Normal",
  35392. height: math.unit(4 + 5/12, "feet"),
  35393. default: true
  35394. },
  35395. {
  35396. name: "Macro",
  35397. height: math.unit(200, "feet")
  35398. },
  35399. {
  35400. name: "Megamacro",
  35401. height: math.unit(3240, "feet")
  35402. },
  35403. {
  35404. name: "Teramacro",
  35405. height: math.unit(2500, "miles")
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(15 + 7/12, "feet"),
  35414. weight: math.unit(1150, "tons"),
  35415. name: "Front",
  35416. image: {
  35417. source: "./media/characters/saphinara/front.svg",
  35418. extra: 1837/1643,
  35419. bottom: 84/1921
  35420. },
  35421. form: "normal",
  35422. default: true
  35423. },
  35424. side: {
  35425. height: math.unit(15 + 7/12, "feet"),
  35426. weight: math.unit(1150, "tons"),
  35427. name: "Side",
  35428. image: {
  35429. source: "./media/characters/saphinara/side.svg",
  35430. extra: 605/547,
  35431. bottom: 6/611
  35432. },
  35433. form: "normal"
  35434. },
  35435. back: {
  35436. height: math.unit(15 + 7/12, "feet"),
  35437. weight: math.unit(1150, "tons"),
  35438. name: "Back",
  35439. image: {
  35440. source: "./media/characters/saphinara/back.svg",
  35441. extra: 591/531,
  35442. bottom: 13/604
  35443. },
  35444. form: "normal"
  35445. },
  35446. frontTail: {
  35447. height: math.unit(15 + 7/12, "feet"),
  35448. weight: math.unit(1150, "tons"),
  35449. name: "Front (Full Tail)",
  35450. image: {
  35451. source: "./media/characters/saphinara/front-tail.svg",
  35452. extra: 2256/1630,
  35453. bottom: 261/2517
  35454. },
  35455. form: "normal"
  35456. },
  35457. insides: {
  35458. height: math.unit(11.92, "feet"),
  35459. name: "Insides",
  35460. image: {
  35461. source: "./media/characters/saphinara/insides.svg"
  35462. },
  35463. form: "normal"
  35464. },
  35465. head: {
  35466. height: math.unit(4.17, "feet"),
  35467. name: "Head",
  35468. image: {
  35469. source: "./media/characters/saphinara/head.svg"
  35470. },
  35471. form: "normal"
  35472. },
  35473. tongue: {
  35474. height: math.unit(4.60, "feet"),
  35475. name: "Tongue",
  35476. image: {
  35477. source: "./media/characters/saphinara/tongue.svg"
  35478. },
  35479. form: "normal"
  35480. },
  35481. headEnraged: {
  35482. height: math.unit(5.55, "feet"),
  35483. name: "Head (Enraged)",
  35484. image: {
  35485. source: "./media/characters/saphinara/head-enraged.svg"
  35486. },
  35487. form: "normal"
  35488. },
  35489. wings: {
  35490. height: math.unit(11.95, "feet"),
  35491. name: "Wings",
  35492. image: {
  35493. source: "./media/characters/saphinara/wings.svg"
  35494. },
  35495. form: "normal"
  35496. },
  35497. feathers: {
  35498. height: math.unit(8.92, "feet"),
  35499. name: "Feathers",
  35500. image: {
  35501. source: "./media/characters/saphinara/feathers.svg"
  35502. },
  35503. form: "normal"
  35504. },
  35505. shackles: {
  35506. height: math.unit(2, "feet"),
  35507. name: "Shackles",
  35508. image: {
  35509. source: "./media/characters/saphinara/shackles.svg"
  35510. },
  35511. form: "normal"
  35512. },
  35513. eyes: {
  35514. height: math.unit(1.331, "feet"),
  35515. name: "Eyes",
  35516. image: {
  35517. source: "./media/characters/saphinara/eyes.svg"
  35518. },
  35519. form: "normal"
  35520. },
  35521. eyesEnraged: {
  35522. height: math.unit(1.331, "feet"),
  35523. name: "Eyes (Enraged)",
  35524. image: {
  35525. source: "./media/characters/saphinara/eyes-enraged.svg"
  35526. },
  35527. form: "normal"
  35528. },
  35529. trueFormSide: {
  35530. height: math.unit(200, "feet"),
  35531. weight: math.unit(1e7, "tons"),
  35532. name: "Side",
  35533. image: {
  35534. source: "./media/characters/saphinara/true-form-side.svg",
  35535. extra: 1399/770,
  35536. bottom: 97/1496
  35537. },
  35538. form: "true-form",
  35539. default: true
  35540. },
  35541. trueFormMaw: {
  35542. height: math.unit(71.5, "feet"),
  35543. name: "Maw",
  35544. image: {
  35545. source: "./media/characters/saphinara/true-form-maw.svg",
  35546. extra: 2302/1453,
  35547. bottom: 0/2302
  35548. },
  35549. form: "true-form"
  35550. },
  35551. meowberusSide: {
  35552. height: math.unit(75, "feet"),
  35553. weight: math.unit(180000, "kg"),
  35554. preyCapacity: math.unit(50000, "people"),
  35555. name: "Side",
  35556. image: {
  35557. source: "./media/characters/saphinara/meowberus-side.svg",
  35558. extra: 1400/711,
  35559. bottom: 126/1526
  35560. },
  35561. form: "meowberus",
  35562. extraAttributes: {
  35563. "pawArea": {
  35564. name: "Paw Size",
  35565. power: 2,
  35566. type: "area",
  35567. base: math.unit(35, "m^2")
  35568. }
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(15 + 7/12, "feet"),
  35576. default: true,
  35577. form: "normal"
  35578. },
  35579. {
  35580. name: "Angry",
  35581. height: math.unit(30 + 6/12, "feet"),
  35582. form: "normal"
  35583. },
  35584. {
  35585. name: "Enraged",
  35586. height: math.unit(102 + 1/12, "feet"),
  35587. form: "normal"
  35588. },
  35589. {
  35590. name: "True",
  35591. height: math.unit(200, "feet"),
  35592. default: true,
  35593. form: "true-form"
  35594. },
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(75, "feet"),
  35598. default: true,
  35599. form: "meowberus"
  35600. },
  35601. ],
  35602. {
  35603. "normal": {
  35604. name: "Normal",
  35605. default: true
  35606. },
  35607. "true-form": {
  35608. name: "True Form"
  35609. },
  35610. "meowberus": {
  35611. name: "Meowberus",
  35612. },
  35613. }
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35617. {
  35618. front: {
  35619. height: math.unit(6 + 8/12, "feet"),
  35620. weight: math.unit(300, "lb"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/jrain/front.svg",
  35624. extra: 3039/2865,
  35625. bottom: 399/3438
  35626. }
  35627. },
  35628. back: {
  35629. height: math.unit(6 + 8/12, "feet"),
  35630. weight: math.unit(300, "lb"),
  35631. name: "Back",
  35632. image: {
  35633. source: "./media/characters/jrain/back.svg",
  35634. extra: 3089/2938,
  35635. bottom: 172/3261
  35636. }
  35637. },
  35638. head: {
  35639. height: math.unit(2.14, "feet"),
  35640. name: "Head",
  35641. image: {
  35642. source: "./media/characters/jrain/head.svg"
  35643. }
  35644. },
  35645. maw: {
  35646. height: math.unit(1.77, "feet"),
  35647. name: "Maw",
  35648. image: {
  35649. source: "./media/characters/jrain/maw.svg"
  35650. }
  35651. },
  35652. leftHand: {
  35653. height: math.unit(1.1, "feet"),
  35654. name: "Left Hand",
  35655. image: {
  35656. source: "./media/characters/jrain/left-hand.svg"
  35657. }
  35658. },
  35659. rightHand: {
  35660. height: math.unit(1.1, "feet"),
  35661. name: "Right Hand",
  35662. image: {
  35663. source: "./media/characters/jrain/right-hand.svg"
  35664. }
  35665. },
  35666. eye: {
  35667. height: math.unit(0.35, "feet"),
  35668. name: "Eye",
  35669. image: {
  35670. source: "./media/characters/jrain/eye.svg"
  35671. }
  35672. },
  35673. },
  35674. [
  35675. {
  35676. name: "Normal",
  35677. height: math.unit(6 + 8/12, "feet"),
  35678. default: true
  35679. },
  35680. {
  35681. name: "Casually Large",
  35682. height: math.unit(25, "feet")
  35683. },
  35684. {
  35685. name: "Giant",
  35686. height: math.unit(100, "feet")
  35687. },
  35688. {
  35689. name: "Kaiju",
  35690. height: math.unit(300, "feet")
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35696. {
  35697. dragon: {
  35698. height: math.unit(5, "meters"),
  35699. name: "Dragon",
  35700. image: {
  35701. source: "./media/characters/sabrina/dragon.svg",
  35702. extra: 3670 / 2365,
  35703. bottom: 333 / 4003
  35704. }
  35705. },
  35706. gryphon: {
  35707. height: math.unit(3, "meters"),
  35708. name: "Gryphon",
  35709. image: {
  35710. source: "./media/characters/sabrina/gryphon.svg",
  35711. extra: 1576 / 945,
  35712. bottom: 71 / 1647
  35713. }
  35714. },
  35715. snake: {
  35716. height: math.unit(12, "meters"),
  35717. name: "Snake",
  35718. image: {
  35719. source: "./media/characters/sabrina/snake.svg",
  35720. extra: 1758 / 1320,
  35721. bottom: 186 / 1944
  35722. }
  35723. },
  35724. collar: {
  35725. height: math.unit(1.86, "meters"),
  35726. name: "Collar",
  35727. image: {
  35728. source: "./media/characters/sabrina/collar.svg"
  35729. }
  35730. },
  35731. eye: {
  35732. height: math.unit(0.53, "meters"),
  35733. name: "Eye",
  35734. image: {
  35735. source: "./media/characters/sabrina/eye.svg"
  35736. }
  35737. },
  35738. foot: {
  35739. height: math.unit(1.86, "meters"),
  35740. name: "Foot",
  35741. image: {
  35742. source: "./media/characters/sabrina/foot.svg"
  35743. }
  35744. },
  35745. hand: {
  35746. height: math.unit(1.32, "meters"),
  35747. name: "Hand",
  35748. image: {
  35749. source: "./media/characters/sabrina/hand.svg"
  35750. }
  35751. },
  35752. head: {
  35753. height: math.unit(2.44, "meters"),
  35754. name: "Head",
  35755. image: {
  35756. source: "./media/characters/sabrina/head.svg"
  35757. }
  35758. },
  35759. headAngry: {
  35760. height: math.unit(2.44, "meters"),
  35761. name: "Head (Angry))",
  35762. image: {
  35763. source: "./media/characters/sabrina/head-angry.svg"
  35764. }
  35765. },
  35766. maw: {
  35767. height: math.unit(1.65, "meters"),
  35768. name: "Maw",
  35769. image: {
  35770. source: "./media/characters/sabrina/maw.svg"
  35771. }
  35772. },
  35773. spikes: {
  35774. height: math.unit(1.69, "meters"),
  35775. name: "Spikes",
  35776. image: {
  35777. source: "./media/characters/sabrina/spikes.svg"
  35778. }
  35779. },
  35780. stomach: {
  35781. height: math.unit(1.15, "meters"),
  35782. name: "Stomach",
  35783. image: {
  35784. source: "./media/characters/sabrina/stomach.svg"
  35785. }
  35786. },
  35787. tongue: {
  35788. height: math.unit(1.27, "meters"),
  35789. name: "Tongue",
  35790. image: {
  35791. source: "./media/characters/sabrina/tongue.svg"
  35792. }
  35793. },
  35794. wingDorsal: {
  35795. height: math.unit(4.85, "meters"),
  35796. name: "Wing (Dorsal)",
  35797. image: {
  35798. source: "./media/characters/sabrina/wing-dorsal.svg"
  35799. }
  35800. },
  35801. wingVentral: {
  35802. height: math.unit(4.85, "meters"),
  35803. name: "Wing (Ventral)",
  35804. image: {
  35805. source: "./media/characters/sabrina/wing-ventral.svg"
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(5, "meters"),
  35813. default: true
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35819. {
  35820. frontMaid: {
  35821. height: math.unit(5 + 5/12, "feet"),
  35822. weight: math.unit(130, "lb"),
  35823. name: "Front (Maid)",
  35824. image: {
  35825. source: "./media/characters/midnight-tales/front-maid.svg",
  35826. extra: 489/454,
  35827. bottom: 61/550
  35828. }
  35829. },
  35830. frontFormal: {
  35831. height: math.unit(5 + 5/12, "feet"),
  35832. weight: math.unit(130, "lb"),
  35833. name: "Front (Formal)",
  35834. image: {
  35835. source: "./media/characters/midnight-tales/front-formal.svg",
  35836. extra: 489/454,
  35837. bottom: 61/550
  35838. }
  35839. },
  35840. back: {
  35841. height: math.unit(5 + 5/12, "feet"),
  35842. weight: math.unit(130, "lb"),
  35843. name: "Back",
  35844. image: {
  35845. source: "./media/characters/midnight-tales/back.svg",
  35846. extra: 498/456,
  35847. bottom: 33/531
  35848. }
  35849. },
  35850. frontBeast: {
  35851. height: math.unit(40, "feet"),
  35852. weight: math.unit(64000, "lb"),
  35853. name: "Front (Beast)",
  35854. image: {
  35855. source: "./media/characters/midnight-tales/front-beast.svg",
  35856. extra: 927/860,
  35857. bottom: 53/980
  35858. }
  35859. },
  35860. backBeast: {
  35861. height: math.unit(40, "feet"),
  35862. weight: math.unit(64000, "lb"),
  35863. name: "Back (Beast)",
  35864. image: {
  35865. source: "./media/characters/midnight-tales/back-beast.svg",
  35866. extra: 929/855,
  35867. bottom: 16/945
  35868. }
  35869. },
  35870. footBeast: {
  35871. height: math.unit(6.7, "feet"),
  35872. name: "Foot (Beast)",
  35873. image: {
  35874. source: "./media/characters/midnight-tales/foot-beast.svg"
  35875. }
  35876. },
  35877. headBeast: {
  35878. height: math.unit(8, "feet"),
  35879. name: "Head (Beast)",
  35880. image: {
  35881. source: "./media/characters/midnight-tales/head-beast.svg"
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(5 + 5 / 12, "feet"),
  35889. default: true
  35890. },
  35891. {
  35892. name: "Macro",
  35893. height: math.unit(25, "feet")
  35894. },
  35895. ]
  35896. ))
  35897. characterMakers.push(() => makeCharacter(
  35898. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35899. {
  35900. front: {
  35901. height: math.unit(5 + 10/12, "feet"),
  35902. name: "Front",
  35903. image: {
  35904. source: "./media/characters/argon/front.svg",
  35905. extra: 2009/1935,
  35906. bottom: 118/2127
  35907. }
  35908. },
  35909. back: {
  35910. height: math.unit(5 + 10/12, "feet"),
  35911. name: "Back",
  35912. image: {
  35913. source: "./media/characters/argon/back.svg",
  35914. extra: 2047/1992,
  35915. bottom: 20/2067
  35916. }
  35917. },
  35918. frontDressed: {
  35919. height: math.unit(5 + 10/12, "feet"),
  35920. name: "Front (Dressed)",
  35921. image: {
  35922. source: "./media/characters/argon/front-dressed.svg",
  35923. extra: 2009/1935,
  35924. bottom: 118/2127
  35925. }
  35926. },
  35927. },
  35928. [
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(5 + 10/12, "feet"),
  35932. default: true
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35938. {
  35939. front: {
  35940. height: math.unit(8 + 6/12, "feet"),
  35941. weight: math.unit(1150, "lb"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/kichi/front.svg",
  35945. extra: 1267/1164,
  35946. bottom: 61/1328
  35947. }
  35948. },
  35949. back: {
  35950. height: math.unit(8 + 6/12, "feet"),
  35951. weight: math.unit(1150, "lb"),
  35952. name: "Back",
  35953. image: {
  35954. source: "./media/characters/kichi/back.svg",
  35955. extra: 1273/1166,
  35956. bottom: 33/1306
  35957. }
  35958. },
  35959. },
  35960. [
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(8 + 6/12, "feet"),
  35964. default: true
  35965. },
  35966. ]
  35967. ))
  35968. characterMakers.push(() => makeCharacter(
  35969. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35970. {
  35971. front: {
  35972. height: math.unit(6, "feet"),
  35973. weight: math.unit(210, "lb"),
  35974. name: "Front",
  35975. image: {
  35976. source: "./media/characters/manetel-greyscale/front.svg",
  35977. extra: 350/312,
  35978. bottom: 8/358
  35979. }
  35980. },
  35981. },
  35982. [
  35983. {
  35984. name: "Micro",
  35985. height: math.unit(2, "inches")
  35986. },
  35987. {
  35988. name: "Normal",
  35989. height: math.unit(6, "feet"),
  35990. default: true
  35991. },
  35992. {
  35993. name: "Minimacro",
  35994. height: math.unit(17, "feet")
  35995. },
  35996. {
  35997. name: "Macro",
  35998. height: math.unit(117, "feet")
  35999. },
  36000. ]
  36001. ))
  36002. characterMakers.push(() => makeCharacter(
  36003. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36004. {
  36005. side: {
  36006. height: math.unit(5 + 1/12, "feet"),
  36007. weight: math.unit(418, "lb"),
  36008. name: "Side",
  36009. image: {
  36010. source: "./media/characters/softpurr/side.svg",
  36011. extra: 1993/1945,
  36012. bottom: 134/2127
  36013. }
  36014. },
  36015. front: {
  36016. height: math.unit(5 + 1/12, "feet"),
  36017. weight: math.unit(418, "lb"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/softpurr/front.svg",
  36021. extra: 1950/1856,
  36022. bottom: 174/2124
  36023. }
  36024. },
  36025. paw: {
  36026. height: math.unit(1, "feet"),
  36027. name: "Paw",
  36028. image: {
  36029. source: "./media/characters/softpurr/paw.svg"
  36030. }
  36031. },
  36032. },
  36033. [
  36034. {
  36035. name: "Normal",
  36036. height: math.unit(5 + 1/12, "feet"),
  36037. default: true
  36038. },
  36039. ]
  36040. ))
  36041. characterMakers.push(() => makeCharacter(
  36042. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36043. {
  36044. front: {
  36045. height: math.unit(260, "meters"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/anahita/front.svg",
  36049. extra: 665/635,
  36050. bottom: 89/754
  36051. }
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "Macro",
  36057. height: math.unit(260, "meters"),
  36058. default: true
  36059. },
  36060. ]
  36061. ))
  36062. characterMakers.push(() => makeCharacter(
  36063. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36064. {
  36065. front: {
  36066. height: math.unit(4 + 10/12, "feet"),
  36067. weight: math.unit(160, "lb"),
  36068. name: "Front",
  36069. image: {
  36070. source: "./media/characters/chip-mouse/front.svg",
  36071. extra: 3528/3408,
  36072. bottom: 0/3528
  36073. }
  36074. },
  36075. frontNsfw: {
  36076. height: math.unit(4 + 10/12, "feet"),
  36077. weight: math.unit(160, "lb"),
  36078. name: "Front (NSFW)",
  36079. image: {
  36080. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36081. extra: 3528/3408,
  36082. bottom: 0/3528
  36083. }
  36084. },
  36085. },
  36086. [
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(4 + 10/12, "feet"),
  36090. default: true
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36096. {
  36097. side: {
  36098. height: math.unit(10, "feet"),
  36099. weight: math.unit(14000, "lb"),
  36100. name: "Side",
  36101. image: {
  36102. source: "./media/characters/kremm/side.svg",
  36103. extra: 1390/1053,
  36104. bottom: 90/1480
  36105. }
  36106. },
  36107. gut: {
  36108. height: math.unit(5.8, "feet"),
  36109. name: "Gut",
  36110. image: {
  36111. source: "./media/characters/kremm/gut.svg"
  36112. }
  36113. },
  36114. ass: {
  36115. height: math.unit(6.1, "feet"),
  36116. name: "Ass",
  36117. image: {
  36118. source: "./media/characters/kremm/ass.svg"
  36119. }
  36120. },
  36121. jaws: {
  36122. height: math.unit(2.2, "feet"),
  36123. name: "Jaws",
  36124. image: {
  36125. source: "./media/characters/kremm/jaws.svg"
  36126. }
  36127. },
  36128. dick: {
  36129. height: math.unit(4.26, "feet"),
  36130. name: "Dick",
  36131. image: {
  36132. source: "./media/characters/kremm/dick.svg"
  36133. }
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "Normal",
  36139. height: math.unit(10, "feet"),
  36140. default: true
  36141. },
  36142. ]
  36143. ))
  36144. characterMakers.push(() => makeCharacter(
  36145. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36146. {
  36147. front: {
  36148. height: math.unit(30, "stories"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/kai/front.svg",
  36152. extra: 1892/1718,
  36153. bottom: 162/2054
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Macro",
  36160. height: math.unit(30, "stories"),
  36161. default: true
  36162. },
  36163. ]
  36164. ))
  36165. characterMakers.push(() => makeCharacter(
  36166. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36167. {
  36168. front: {
  36169. height: math.unit(6 + 4/12, "feet"),
  36170. weight: math.unit(145, "lb"),
  36171. name: "Front",
  36172. image: {
  36173. source: "./media/characters/sykes/front.svg",
  36174. extra: 1321 / 1187,
  36175. bottom: 66 / 1387
  36176. }
  36177. },
  36178. back: {
  36179. height: math.unit(6 + 4/12, "feet"),
  36180. weight: math.unit(145, "lb"),
  36181. name: "Back",
  36182. image: {
  36183. source: "./media/characters/sykes/back.svg",
  36184. extra: 1326/1181,
  36185. bottom: 31/1357
  36186. }
  36187. },
  36188. traditionalOutfit: {
  36189. height: math.unit(6 + 4/12, "feet"),
  36190. weight: math.unit(145, "lb"),
  36191. name: "Traditional Outfit",
  36192. image: {
  36193. source: "./media/characters/sykes/traditional-outfit.svg",
  36194. extra: 1321 / 1187,
  36195. bottom: 66 / 1387
  36196. }
  36197. },
  36198. adventureOutfit: {
  36199. height: math.unit(6 + 4/12, "feet"),
  36200. weight: math.unit(145, "lb"),
  36201. name: "Adventure Outfit",
  36202. image: {
  36203. source: "./media/characters/sykes/adventure-outfit.svg",
  36204. extra: 1321 / 1187,
  36205. bottom: 66 / 1387
  36206. }
  36207. },
  36208. handLeft: {
  36209. height: math.unit(0.9, "feet"),
  36210. name: "Hand (Left)",
  36211. image: {
  36212. source: "./media/characters/sykes/hand-left.svg"
  36213. }
  36214. },
  36215. handRight: {
  36216. height: math.unit(0.839, "feet"),
  36217. name: "Hand (Right)",
  36218. image: {
  36219. source: "./media/characters/sykes/hand-right.svg"
  36220. }
  36221. },
  36222. leftFoot: {
  36223. height: math.unit(1.2, "feet"),
  36224. name: "Foot (Left)",
  36225. image: {
  36226. source: "./media/characters/sykes/foot-left.svg"
  36227. }
  36228. },
  36229. rightFoot: {
  36230. height: math.unit(1.2, "feet"),
  36231. name: "Foot (Right)",
  36232. image: {
  36233. source: "./media/characters/sykes/foot-right.svg"
  36234. }
  36235. },
  36236. maw: {
  36237. height: math.unit(1.93, "feet"),
  36238. name: "Maw",
  36239. image: {
  36240. source: "./media/characters/sykes/maw.svg"
  36241. }
  36242. },
  36243. teeth: {
  36244. height: math.unit(0.51, "feet"),
  36245. name: "Teeth",
  36246. image: {
  36247. source: "./media/characters/sykes/teeth.svg"
  36248. }
  36249. },
  36250. tongue: {
  36251. height: math.unit(2.13, "feet"),
  36252. name: "Tongue",
  36253. image: {
  36254. source: "./media/characters/sykes/tongue.svg"
  36255. }
  36256. },
  36257. uvula: {
  36258. height: math.unit(0.16, "feet"),
  36259. name: "Uvula",
  36260. image: {
  36261. source: "./media/characters/sykes/uvula.svg"
  36262. }
  36263. },
  36264. collar: {
  36265. height: math.unit(0.287, "feet"),
  36266. name: "Collar",
  36267. image: {
  36268. source: "./media/characters/sykes/collar.svg"
  36269. }
  36270. },
  36271. tail: {
  36272. height: math.unit(3.8, "feet"),
  36273. name: "Tail",
  36274. image: {
  36275. source: "./media/characters/sykes/tail.svg"
  36276. }
  36277. },
  36278. },
  36279. [
  36280. {
  36281. name: "Shrunken",
  36282. height: math.unit(5, "inches")
  36283. },
  36284. {
  36285. name: "Normal",
  36286. height: math.unit(6 + 4 / 12, "feet"),
  36287. default: true
  36288. },
  36289. {
  36290. name: "Big",
  36291. height: math.unit(15, "feet")
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36297. {
  36298. front: {
  36299. height: math.unit(5 + 8/12, "feet"),
  36300. weight: math.unit(190, "lb"),
  36301. name: "Front",
  36302. image: {
  36303. source: "./media/characters/oven-otter/front.svg",
  36304. extra: 1809/1740,
  36305. bottom: 181/1990
  36306. }
  36307. },
  36308. back: {
  36309. height: math.unit(5 + 8/12, "feet"),
  36310. weight: math.unit(190, "lb"),
  36311. name: "Back",
  36312. image: {
  36313. source: "./media/characters/oven-otter/back.svg",
  36314. extra: 1709/1635,
  36315. bottom: 118/1827
  36316. }
  36317. },
  36318. hand: {
  36319. height: math.unit(1.07, "feet"),
  36320. name: "Hand",
  36321. image: {
  36322. source: "./media/characters/oven-otter/hand.svg"
  36323. }
  36324. },
  36325. beans: {
  36326. height: math.unit(1.74, "feet"),
  36327. name: "Beans",
  36328. image: {
  36329. source: "./media/characters/oven-otter/beans.svg"
  36330. }
  36331. },
  36332. },
  36333. [
  36334. {
  36335. name: "Micro",
  36336. height: math.unit(0.5, "inches")
  36337. },
  36338. {
  36339. name: "Normal",
  36340. height: math.unit(5 + 8/12, "feet"),
  36341. default: true
  36342. },
  36343. {
  36344. name: "Macro",
  36345. height: math.unit(250, "feet")
  36346. },
  36347. {
  36348. name: "Really High",
  36349. height: math.unit(420, "feet")
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36355. {
  36356. front: {
  36357. height: math.unit(5, "meters"),
  36358. weight: math.unit(292000000000000, "kg"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/devourer/front.svg",
  36362. extra: 1800/1733,
  36363. bottom: 211/2011
  36364. }
  36365. },
  36366. maw: {
  36367. height: math.unit(1.1, "meter"),
  36368. name: "Maw",
  36369. image: {
  36370. source: "./media/characters/devourer/maw.svg"
  36371. }
  36372. },
  36373. },
  36374. [
  36375. {
  36376. name: "Small",
  36377. height: math.unit(3, "meters")
  36378. },
  36379. {
  36380. name: "Large",
  36381. height: math.unit(5, "meters"),
  36382. default: true
  36383. },
  36384. ]
  36385. ))
  36386. characterMakers.push(() => makeCharacter(
  36387. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36388. {
  36389. front: {
  36390. height: math.unit(6, "feet"),
  36391. weight: math.unit(400, "lb"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/ellarby/front.svg",
  36395. extra: 1909/1763,
  36396. bottom: 80/1989
  36397. }
  36398. },
  36399. back: {
  36400. height: math.unit(6, "feet"),
  36401. weight: math.unit(400, "lb"),
  36402. name: "Back",
  36403. image: {
  36404. source: "./media/characters/ellarby/back.svg",
  36405. extra: 1914/1784,
  36406. bottom: 172/2086
  36407. }
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "Mischief",
  36413. height: math.unit(18, "inches")
  36414. },
  36415. {
  36416. name: "Trouble",
  36417. height: math.unit(12, "feet")
  36418. },
  36419. {
  36420. name: "Havoc",
  36421. height: math.unit(200, "feet"),
  36422. default: true
  36423. },
  36424. {
  36425. name: "Pandemonium",
  36426. height: math.unit(1, "mile")
  36427. },
  36428. {
  36429. name: "Catastrophe",
  36430. height: math.unit(100, "miles")
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36436. {
  36437. front: {
  36438. height: math.unit(4.7, "meters"),
  36439. weight: math.unit(6500, "kg"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/vex/front.svg",
  36443. extra: 1288/1140,
  36444. bottom: 100/1388
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(4.7, "meters"),
  36452. default: true
  36453. },
  36454. ]
  36455. ))
  36456. characterMakers.push(() => makeCharacter(
  36457. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36458. {
  36459. normal: {
  36460. height: math.unit(6, "feet"),
  36461. weight: math.unit(350, "lb"),
  36462. name: "Normal",
  36463. image: {
  36464. source: "./media/characters/teshy/normal.svg",
  36465. extra: 1795/1735,
  36466. bottom: 16/1811
  36467. }
  36468. },
  36469. monsterFront: {
  36470. height: math.unit(12, "feet"),
  36471. weight: math.unit(4700, "lb"),
  36472. name: "Monster (Front)",
  36473. image: {
  36474. source: "./media/characters/teshy/monster-front.svg",
  36475. extra: 2042/2034,
  36476. bottom: 128/2170
  36477. }
  36478. },
  36479. monsterSide: {
  36480. height: math.unit(12, "feet"),
  36481. weight: math.unit(4700, "lb"),
  36482. name: "Monster (Side)",
  36483. image: {
  36484. source: "./media/characters/teshy/monster-side.svg",
  36485. extra: 2067/2056,
  36486. bottom: 70/2137
  36487. }
  36488. },
  36489. monsterBack: {
  36490. height: math.unit(12, "feet"),
  36491. weight: math.unit(4700, "lb"),
  36492. name: "Monster (Back)",
  36493. image: {
  36494. source: "./media/characters/teshy/monster-back.svg",
  36495. extra: 1921/1914,
  36496. bottom: 171/2092
  36497. }
  36498. },
  36499. },
  36500. [
  36501. {
  36502. name: "Normal",
  36503. height: math.unit(6, "feet"),
  36504. default: true
  36505. },
  36506. ]
  36507. ))
  36508. characterMakers.push(() => makeCharacter(
  36509. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36510. {
  36511. front: {
  36512. height: math.unit(6, "feet"),
  36513. name: "Front",
  36514. image: {
  36515. source: "./media/characters/ramey/front.svg",
  36516. extra: 790/787,
  36517. bottom: 27/817
  36518. }
  36519. },
  36520. },
  36521. [
  36522. {
  36523. name: "Normal",
  36524. height: math.unit(6, "feet"),
  36525. default: true
  36526. },
  36527. ]
  36528. ))
  36529. characterMakers.push(() => makeCharacter(
  36530. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36531. {
  36532. front: {
  36533. height: math.unit(5 + 5/12, "feet"),
  36534. weight: math.unit(120, "lb"),
  36535. name: "Front",
  36536. image: {
  36537. source: "./media/characters/phirae/front.svg",
  36538. extra: 2491/2436,
  36539. bottom: 38/2529
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(5 + 5/12, "feet"),
  36547. default: true
  36548. },
  36549. ]
  36550. ))
  36551. characterMakers.push(() => makeCharacter(
  36552. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36553. {
  36554. front: {
  36555. height: math.unit(5 + 3/12, "feet"),
  36556. name: "Front",
  36557. image: {
  36558. source: "./media/characters/stagglas/front.svg",
  36559. extra: 962/882,
  36560. bottom: 53/1015
  36561. }
  36562. },
  36563. feral: {
  36564. height: math.unit(335, "cm"),
  36565. name: "Feral",
  36566. image: {
  36567. source: "./media/characters/stagglas/feral.svg",
  36568. extra: 1732/1090,
  36569. bottom: 48/1780
  36570. }
  36571. },
  36572. },
  36573. [
  36574. {
  36575. name: "Normal",
  36576. height: math.unit(5 + 3/12, "feet"),
  36577. default: true
  36578. },
  36579. ]
  36580. ))
  36581. characterMakers.push(() => makeCharacter(
  36582. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36583. {
  36584. front: {
  36585. height: math.unit(5 + 4/12, "feet"),
  36586. weight: math.unit(145, "lb"),
  36587. name: "Front",
  36588. image: {
  36589. source: "./media/characters/starra/front.svg",
  36590. extra: 1790/1691,
  36591. bottom: 91/1881
  36592. }
  36593. },
  36594. },
  36595. [
  36596. {
  36597. name: "Normal",
  36598. height: math.unit(5 + 4/12, "feet"),
  36599. default: true
  36600. },
  36601. ]
  36602. ))
  36603. characterMakers.push(() => makeCharacter(
  36604. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36605. {
  36606. front: {
  36607. height: math.unit(2.2, "meters"),
  36608. name: "Front",
  36609. image: {
  36610. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36611. extra: 1248/972,
  36612. bottom: 38/1286
  36613. }
  36614. },
  36615. },
  36616. [
  36617. {
  36618. name: "Normal",
  36619. height: math.unit(2.2, "meters"),
  36620. default: true
  36621. },
  36622. ]
  36623. ))
  36624. characterMakers.push(() => makeCharacter(
  36625. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36626. {
  36627. side: {
  36628. height: math.unit(8 + 2/12, "feet"),
  36629. weight: math.unit(1240, "lb"),
  36630. name: "Side",
  36631. image: {
  36632. source: "./media/characters/mika-valentine/side.svg",
  36633. extra: 2670/2501,
  36634. bottom: 250/2920
  36635. }
  36636. },
  36637. },
  36638. [
  36639. {
  36640. name: "Normal",
  36641. height: math.unit(8 + 2/12, "feet"),
  36642. default: true
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36648. {
  36649. front: {
  36650. height: math.unit(7 + 2/12, "feet"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/xoltol/front.svg",
  36654. extra: 2212/2124,
  36655. bottom: 84/2296
  36656. }
  36657. },
  36658. side: {
  36659. height: math.unit(7 + 2/12, "feet"),
  36660. name: "Side",
  36661. image: {
  36662. source: "./media/characters/xoltol/side.svg",
  36663. extra: 2273/2197,
  36664. bottom: 26/2299
  36665. }
  36666. },
  36667. hand: {
  36668. height: math.unit(2.5, "feet"),
  36669. name: "Hand",
  36670. image: {
  36671. source: "./media/characters/xoltol/hand.svg"
  36672. }
  36673. },
  36674. },
  36675. [
  36676. {
  36677. name: "Small-ish",
  36678. height: math.unit(5 + 11/12, "feet")
  36679. },
  36680. {
  36681. name: "Normal",
  36682. height: math.unit(7 + 2/12, "feet")
  36683. },
  36684. {
  36685. name: "\"Macro\"",
  36686. height: math.unit(14 + 9/12, "feet"),
  36687. default: true
  36688. },
  36689. {
  36690. name: "Alternate Height",
  36691. height: math.unit(20, "feet")
  36692. },
  36693. {
  36694. name: "Actually Macro",
  36695. height: math.unit(100, "feet")
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(5 + 2/12, "feet"),
  36704. name: "Front",
  36705. image: {
  36706. source: "./media/characters/kotetsu-redwood/front.svg",
  36707. extra: 1053/942,
  36708. bottom: 60/1113
  36709. }
  36710. },
  36711. },
  36712. [
  36713. {
  36714. name: "Normal",
  36715. height: math.unit(5 + 2/12, "feet"),
  36716. default: true
  36717. },
  36718. ]
  36719. ))
  36720. characterMakers.push(() => makeCharacter(
  36721. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36722. {
  36723. front: {
  36724. height: math.unit(2.4, "meters"),
  36725. weight: math.unit(125, "kg"),
  36726. name: "Front",
  36727. image: {
  36728. source: "./media/characters/lilith/front.svg",
  36729. extra: 1590/1513,
  36730. bottom: 203/1793
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Humanoid",
  36737. height: math.unit(2.4, "meters")
  36738. },
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(6, "meters"),
  36742. default: true
  36743. },
  36744. {
  36745. name: "Largest",
  36746. height: math.unit(55, "meters")
  36747. },
  36748. ]
  36749. ))
  36750. characterMakers.push(() => makeCharacter(
  36751. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36752. {
  36753. front: {
  36754. height: math.unit(8 + 4/12, "feet"),
  36755. weight: math.unit(535, "lb"),
  36756. name: "Front",
  36757. image: {
  36758. source: "./media/characters/beh'kah-bolger/front.svg",
  36759. extra: 1660/1603,
  36760. bottom: 37/1697
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(8 + 4/12, "feet"),
  36768. default: true
  36769. },
  36770. {
  36771. name: "Kaiju",
  36772. height: math.unit(250, "feet")
  36773. },
  36774. {
  36775. name: "Still Growing",
  36776. height: math.unit(10, "miles")
  36777. },
  36778. {
  36779. name: "Continental",
  36780. height: math.unit(5000, "miles")
  36781. },
  36782. {
  36783. name: "Final Form",
  36784. height: math.unit(2500000, "miles")
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36790. {
  36791. front: {
  36792. height: math.unit(7 + 2/12, "feet"),
  36793. weight: math.unit(230, "kg"),
  36794. name: "Front",
  36795. image: {
  36796. source: "./media/characters/tatyana-milewska/front.svg",
  36797. extra: 1199/1150,
  36798. bottom: 86/1285
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(7 + 2/12, "feet"),
  36806. default: true
  36807. },
  36808. {
  36809. name: "Big",
  36810. height: math.unit(12, "feet")
  36811. },
  36812. {
  36813. name: "Minimacro",
  36814. height: math.unit(20, "feet")
  36815. },
  36816. {
  36817. name: "Macro",
  36818. height: math.unit(120, "feet")
  36819. },
  36820. ]
  36821. ))
  36822. characterMakers.push(() => makeCharacter(
  36823. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36824. {
  36825. front: {
  36826. height: math.unit(7 + 8/12, "feet"),
  36827. weight: math.unit(152, "kg"),
  36828. name: "Front",
  36829. image: {
  36830. source: "./media/characters/helen-arri/front.svg",
  36831. extra: 440/423,
  36832. bottom: 14/454
  36833. }
  36834. },
  36835. back: {
  36836. height: math.unit(7 + 8/12, "feet"),
  36837. weight: math.unit(152, "kg"),
  36838. name: "Back",
  36839. image: {
  36840. source: "./media/characters/helen-arri/back.svg",
  36841. extra: 443/426,
  36842. bottom: 8/451
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(7 + 8/12, "feet"),
  36850. default: true
  36851. },
  36852. {
  36853. name: "Big",
  36854. height: math.unit(14, "feet")
  36855. },
  36856. {
  36857. name: "Minimacro",
  36858. height: math.unit(24, "feet")
  36859. },
  36860. {
  36861. name: "Macro",
  36862. height: math.unit(140, "feet")
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36868. {
  36869. front: {
  36870. height: math.unit(6, "meters"),
  36871. name: "Front",
  36872. image: {
  36873. source: "./media/characters/ehanu-rehu/front.svg",
  36874. extra: 1800/1800,
  36875. bottom: 59/1859
  36876. }
  36877. },
  36878. },
  36879. [
  36880. {
  36881. name: "Normal",
  36882. height: math.unit(6, "meters"),
  36883. default: true
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36889. {
  36890. front: {
  36891. height: math.unit(7 + 3/12, "feet"),
  36892. name: "Front",
  36893. image: {
  36894. source: "./media/characters/renholder/front.svg",
  36895. extra: 3096/2960,
  36896. bottom: 250/3346
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Normal Bat",
  36903. height: math.unit(7 + 3/12, "feet"),
  36904. default: true
  36905. },
  36906. {
  36907. name: "Slightly Tall Bat",
  36908. height: math.unit(100, "feet")
  36909. },
  36910. {
  36911. name: "Big Bat",
  36912. height: math.unit(1000, "feet")
  36913. },
  36914. {
  36915. name: "City-Sized Bat",
  36916. height: math.unit(200000, "feet")
  36917. },
  36918. {
  36919. name: "Bigger Bat",
  36920. height: math.unit(10000, "miles")
  36921. },
  36922. {
  36923. name: "Solar Sized Bat",
  36924. height: math.unit(100, "AU")
  36925. },
  36926. {
  36927. name: "Galactic Bat",
  36928. height: math.unit(200000, "lightyears")
  36929. },
  36930. {
  36931. name: "Universally Known Bat",
  36932. height: math.unit(1, "universe")
  36933. },
  36934. ]
  36935. ))
  36936. characterMakers.push(() => makeCharacter(
  36937. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36938. {
  36939. front: {
  36940. height: math.unit(6 + 11/12, "feet"),
  36941. weight: math.unit(250, "lb"),
  36942. name: "Front",
  36943. image: {
  36944. source: "./media/characters/cookiecat/front.svg",
  36945. extra: 893/827,
  36946. bottom: 14/907
  36947. }
  36948. },
  36949. },
  36950. [
  36951. {
  36952. name: "Micro",
  36953. height: math.unit(3, "inches")
  36954. },
  36955. {
  36956. name: "Normal",
  36957. height: math.unit(6 + 11/12, "feet"),
  36958. default: true
  36959. },
  36960. {
  36961. name: "Macro",
  36962. height: math.unit(100, "feet")
  36963. },
  36964. {
  36965. name: "Macro+",
  36966. height: math.unit(404, "feet")
  36967. },
  36968. {
  36969. name: "Megamacro",
  36970. height: math.unit(165, "miles")
  36971. },
  36972. {
  36973. name: "Planetary",
  36974. height: math.unit(4600, "miles")
  36975. },
  36976. ]
  36977. ))
  36978. characterMakers.push(() => makeCharacter(
  36979. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36980. {
  36981. front: {
  36982. height: math.unit(10 + 3/12, "feet"),
  36983. weight: math.unit(1500, "lb"),
  36984. name: "Front",
  36985. image: {
  36986. source: "./media/characters/tux-kusanagi/front.svg",
  36987. extra: 944/840,
  36988. bottom: 39/983
  36989. }
  36990. },
  36991. back: {
  36992. height: math.unit(10 + 3/12, "feet"),
  36993. weight: math.unit(1500, "lb"),
  36994. name: "Back",
  36995. image: {
  36996. source: "./media/characters/tux-kusanagi/back.svg",
  36997. extra: 941/842,
  36998. bottom: 28/969
  36999. }
  37000. },
  37001. rump: {
  37002. height: math.unit(5.25, "feet"),
  37003. name: "Rump",
  37004. image: {
  37005. source: "./media/characters/tux-kusanagi/rump.svg"
  37006. }
  37007. },
  37008. beak: {
  37009. height: math.unit(1.54, "feet"),
  37010. name: "Beak",
  37011. image: {
  37012. source: "./media/characters/tux-kusanagi/beak.svg"
  37013. }
  37014. },
  37015. },
  37016. [
  37017. {
  37018. name: "Normal",
  37019. height: math.unit(10 + 3/12, "feet"),
  37020. default: true
  37021. },
  37022. ]
  37023. ))
  37024. characterMakers.push(() => makeCharacter(
  37025. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37026. {
  37027. front: {
  37028. height: math.unit(58, "feet"),
  37029. weight: math.unit(200, "tons"),
  37030. name: "Front",
  37031. image: {
  37032. source: "./media/characters/uzarmazari/front.svg",
  37033. extra: 1575/1455,
  37034. bottom: 152/1727
  37035. }
  37036. },
  37037. back: {
  37038. height: math.unit(58, "feet"),
  37039. weight: math.unit(200, "tons"),
  37040. name: "Back",
  37041. image: {
  37042. source: "./media/characters/uzarmazari/back.svg",
  37043. extra: 1585/1510,
  37044. bottom: 157/1742
  37045. }
  37046. },
  37047. head: {
  37048. height: math.unit(26, "feet"),
  37049. name: "Head",
  37050. image: {
  37051. source: "./media/characters/uzarmazari/head.svg"
  37052. }
  37053. },
  37054. },
  37055. [
  37056. {
  37057. name: "Normal",
  37058. height: math.unit(58, "feet"),
  37059. default: true
  37060. },
  37061. ]
  37062. ))
  37063. characterMakers.push(() => makeCharacter(
  37064. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37065. {
  37066. side: {
  37067. height: math.unit(15, "feet"),
  37068. name: "Side",
  37069. image: {
  37070. source: "./media/characters/akitu/side.svg",
  37071. extra: 1421/1321,
  37072. bottom: 157/1578
  37073. }
  37074. },
  37075. front: {
  37076. height: math.unit(15, "feet"),
  37077. name: "Front",
  37078. image: {
  37079. source: "./media/characters/akitu/front.svg",
  37080. extra: 1435/1326,
  37081. bottom: 232/1667
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "Normal",
  37088. height: math.unit(15, "feet"),
  37089. default: true
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37095. {
  37096. front: {
  37097. height: math.unit(10 + 8/12, "feet"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/azalie-croixland/front.svg",
  37101. extra: 1972/1856,
  37102. bottom: 31/2003
  37103. }
  37104. },
  37105. },
  37106. [
  37107. {
  37108. name: "Original Height",
  37109. height: math.unit(5 + 4/12, "feet")
  37110. },
  37111. {
  37112. name: "Normal Height",
  37113. height: math.unit(10 + 8/12, "feet"),
  37114. default: true
  37115. },
  37116. ]
  37117. ))
  37118. characterMakers.push(() => makeCharacter(
  37119. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37120. {
  37121. side: {
  37122. height: math.unit(7 + 1/12, "feet"),
  37123. weight: math.unit(245, "lb"),
  37124. name: "Side",
  37125. image: {
  37126. source: "./media/characters/kavus-kazian/side.svg",
  37127. extra: 349/342,
  37128. bottom: 15/364
  37129. }
  37130. },
  37131. },
  37132. [
  37133. {
  37134. name: "Normal",
  37135. height: math.unit(7 + 1/12, "feet"),
  37136. default: true
  37137. },
  37138. ]
  37139. ))
  37140. characterMakers.push(() => makeCharacter(
  37141. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37142. {
  37143. normalFront: {
  37144. height: math.unit(5 + 11/12, "feet"),
  37145. name: "Front",
  37146. image: {
  37147. source: "./media/characters/moonlight-rose/normal-front.svg",
  37148. extra: 1980/1825,
  37149. bottom: 18/1998
  37150. },
  37151. form: "normal",
  37152. default: true
  37153. },
  37154. normalBack: {
  37155. height: math.unit(5 + 11/12, "feet"),
  37156. name: "Back",
  37157. image: {
  37158. source: "./media/characters/moonlight-rose/normal-back.svg",
  37159. extra: 2010/1839,
  37160. bottom: 10/2020
  37161. },
  37162. form: "normal"
  37163. },
  37164. demonFront: {
  37165. height: math.unit(1.5, "earths"),
  37166. name: "Front",
  37167. image: {
  37168. source: "./media/characters/moonlight-rose/demon.svg",
  37169. extra: 1400/1294,
  37170. bottom: 45/1445
  37171. },
  37172. form: "demon",
  37173. default: true
  37174. },
  37175. terraFront: {
  37176. height: math.unit(1.5, "earths"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/moonlight-rose/terra.svg"
  37180. },
  37181. form: "terra",
  37182. default: true
  37183. },
  37184. jupiterFront: {
  37185. height: math.unit(69911*2, "km"),
  37186. name: "Front",
  37187. image: {
  37188. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37189. extra: 1367/1286,
  37190. bottom: 55/1422
  37191. },
  37192. form: "jupiter",
  37193. default: true
  37194. },
  37195. neptuneFront: {
  37196. height: math.unit(24622*2, "feet"),
  37197. name: "Front",
  37198. image: {
  37199. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37200. extra: 1851/1712,
  37201. bottom: 0/1851
  37202. },
  37203. form: "neptune",
  37204. default: true
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "\"Natural\" Height",
  37210. height: math.unit(5 + 11/12, "feet"),
  37211. form: "normal"
  37212. },
  37213. {
  37214. name: "Smallest comfortable size",
  37215. height: math.unit(40, "meters"),
  37216. form: "normal"
  37217. },
  37218. {
  37219. name: "Common size",
  37220. height: math.unit(50, "km"),
  37221. form: "normal",
  37222. default: true
  37223. },
  37224. {
  37225. name: "Normal",
  37226. height: math.unit(1.5, "earths"),
  37227. form: "demon",
  37228. default: true
  37229. },
  37230. {
  37231. name: "Universal",
  37232. height: math.unit(15, "universes"),
  37233. form: "demon"
  37234. },
  37235. {
  37236. name: "Earth",
  37237. height: math.unit(1.5, "earths"),
  37238. form: "terra",
  37239. default: true
  37240. },
  37241. {
  37242. name: "Super Earth",
  37243. height: math.unit(67.5, "earths"),
  37244. form: "terra"
  37245. },
  37246. {
  37247. name: "Doesn't fit in a solar system...",
  37248. height: math.unit(1, "galaxy"),
  37249. form: "terra"
  37250. },
  37251. {
  37252. name: "Saturn",
  37253. height: math.unit(58232*2, "km"),
  37254. form: "jupiter"
  37255. },
  37256. {
  37257. name: "Jupiter",
  37258. height: math.unit(69911*2, "km"),
  37259. form: "jupiter",
  37260. default: true
  37261. },
  37262. {
  37263. name: "HD 100546 b",
  37264. height: math.unit(482938, "km"),
  37265. form: "jupiter"
  37266. },
  37267. {
  37268. name: "Enceladus",
  37269. height: math.unit(513*2, "km"),
  37270. form: "neptune"
  37271. },
  37272. {
  37273. name: "Europe",
  37274. height: math.unit(1560*2, "km"),
  37275. form: "neptune"
  37276. },
  37277. {
  37278. name: "Neptune",
  37279. height: math.unit(24622*2, "km"),
  37280. form: "neptune",
  37281. default: true
  37282. },
  37283. {
  37284. name: "CoRoT-9b",
  37285. height: math.unit(75067*2, "km"),
  37286. form: "neptune"
  37287. },
  37288. ],
  37289. {
  37290. "normal": {
  37291. name: "Normal",
  37292. default: true
  37293. },
  37294. "demon": {
  37295. name: "Demon"
  37296. },
  37297. "terra": {
  37298. name: "Terra"
  37299. },
  37300. "jupiter": {
  37301. name: "Jupiter"
  37302. },
  37303. "neptune": {
  37304. name: "Neptune"
  37305. }
  37306. }
  37307. ))
  37308. characterMakers.push(() => makeCharacter(
  37309. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37310. {
  37311. front: {
  37312. height: math.unit(16, "feet"),
  37313. weight: math.unit(610, "kg"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/huckle/front.svg",
  37317. extra: 1731/1625,
  37318. bottom: 33/1764
  37319. }
  37320. },
  37321. back: {
  37322. height: math.unit(16, "feet"),
  37323. weight: math.unit(610, "kg"),
  37324. name: "Back",
  37325. image: {
  37326. source: "./media/characters/huckle/back.svg",
  37327. extra: 1738/1651,
  37328. bottom: 37/1775
  37329. }
  37330. },
  37331. laughing: {
  37332. height: math.unit(3.75, "feet"),
  37333. name: "Laughing",
  37334. image: {
  37335. source: "./media/characters/huckle/laughing.svg"
  37336. }
  37337. },
  37338. angry: {
  37339. height: math.unit(4.15, "feet"),
  37340. name: "Angry",
  37341. image: {
  37342. source: "./media/characters/huckle/angry.svg"
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Normal",
  37349. height: math.unit(16, "feet"),
  37350. default: true
  37351. },
  37352. {
  37353. name: "Mini Macro",
  37354. height: math.unit(463, "feet")
  37355. },
  37356. {
  37357. name: "Macro",
  37358. height: math.unit(1680, "meters")
  37359. },
  37360. {
  37361. name: "Mega Macro",
  37362. height: math.unit(175, "km")
  37363. },
  37364. {
  37365. name: "Terra Macro",
  37366. height: math.unit(32, "gigameters")
  37367. },
  37368. {
  37369. name: "Multiverse+",
  37370. height: math.unit(2.56e23, "yottameters")
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37376. {
  37377. front: {
  37378. height: math.unit(6 + 9/12, "feet"),
  37379. weight: math.unit(280, "lb"),
  37380. name: "Front",
  37381. image: {
  37382. source: "./media/characters/candy/front.svg",
  37383. extra: 234/217,
  37384. bottom: 11/245
  37385. }
  37386. },
  37387. },
  37388. [
  37389. {
  37390. name: "Really Small",
  37391. height: math.unit(0.1, "nm")
  37392. },
  37393. {
  37394. name: "Micro",
  37395. height: math.unit(2, "inches")
  37396. },
  37397. {
  37398. name: "Normal",
  37399. height: math.unit(6 + 9/12, "feet"),
  37400. default: true
  37401. },
  37402. {
  37403. name: "Small Macro",
  37404. height: math.unit(69, "feet")
  37405. },
  37406. {
  37407. name: "Macro",
  37408. height: math.unit(160, "feet")
  37409. },
  37410. {
  37411. name: "Megamacro",
  37412. height: math.unit(22000, "miles")
  37413. },
  37414. {
  37415. name: "Gigamacro",
  37416. height: math.unit(50000, "miles")
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(4, "feet"),
  37425. weight: math.unit(90, "lb"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/joey-mcdonald/front.svg",
  37429. extra: 1059/852,
  37430. bottom: 33/1092
  37431. }
  37432. },
  37433. back: {
  37434. height: math.unit(4, "feet"),
  37435. weight: math.unit(90, "lb"),
  37436. name: "Back",
  37437. image: {
  37438. source: "./media/characters/joey-mcdonald/back.svg",
  37439. extra: 1077/879,
  37440. bottom: 5/1082
  37441. }
  37442. },
  37443. frontKobold: {
  37444. height: math.unit(4, "feet"),
  37445. weight: math.unit(100, "lb"),
  37446. name: "Front-kobold",
  37447. image: {
  37448. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37449. extra: 1480/1367,
  37450. bottom: 0/1480
  37451. }
  37452. },
  37453. backKobold: {
  37454. height: math.unit(4, "feet"),
  37455. weight: math.unit(100, "lb"),
  37456. name: "Back-kobold",
  37457. image: {
  37458. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37459. extra: 1449/1361,
  37460. bottom: 0/1449
  37461. }
  37462. },
  37463. },
  37464. [
  37465. {
  37466. name: "Normal",
  37467. height: math.unit(4, "feet"),
  37468. default: true
  37469. },
  37470. ]
  37471. ))
  37472. characterMakers.push(() => makeCharacter(
  37473. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37474. {
  37475. front: {
  37476. height: math.unit(12 + 6/12, "feet"),
  37477. name: "Front",
  37478. image: {
  37479. source: "./media/characters/kass-lockheed/front.svg",
  37480. extra: 354/343,
  37481. bottom: 9/363
  37482. }
  37483. },
  37484. back: {
  37485. height: math.unit(12 + 6/12, "feet"),
  37486. name: "Back",
  37487. image: {
  37488. source: "./media/characters/kass-lockheed/back.svg",
  37489. extra: 364/352,
  37490. bottom: 3/367
  37491. }
  37492. },
  37493. dick: {
  37494. height: math.unit(3.12, "feet"),
  37495. name: "Dick",
  37496. image: {
  37497. source: "./media/characters/kass-lockheed/dick.svg"
  37498. }
  37499. },
  37500. head: {
  37501. height: math.unit(2.6, "feet"),
  37502. name: "Head",
  37503. image: {
  37504. source: "./media/characters/kass-lockheed/head.svg"
  37505. }
  37506. },
  37507. bleh: {
  37508. height: math.unit(2.85, "feet"),
  37509. name: "Bleh",
  37510. image: {
  37511. source: "./media/characters/kass-lockheed/bleh.svg"
  37512. }
  37513. },
  37514. smug: {
  37515. height: math.unit(2.85, "feet"),
  37516. name: "Smug",
  37517. image: {
  37518. source: "./media/characters/kass-lockheed/smug.svg"
  37519. }
  37520. },
  37521. },
  37522. [
  37523. {
  37524. name: "Normal",
  37525. height: math.unit(12 + 6/12, "feet"),
  37526. default: true
  37527. },
  37528. ]
  37529. ))
  37530. characterMakers.push(() => makeCharacter(
  37531. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37532. {
  37533. front: {
  37534. height: math.unit(6 + 2/12, "feet"),
  37535. name: "Front",
  37536. image: {
  37537. source: "./media/characters/taylor/front.svg",
  37538. extra: 639/495,
  37539. bottom: 12/651
  37540. }
  37541. },
  37542. },
  37543. [
  37544. {
  37545. name: "Normal",
  37546. height: math.unit(6 + 2/12, "feet"),
  37547. default: true
  37548. },
  37549. {
  37550. name: "Big",
  37551. height: math.unit(15, "feet")
  37552. },
  37553. {
  37554. name: "Lorg",
  37555. height: math.unit(80, "feet")
  37556. },
  37557. {
  37558. name: "Too Lorg",
  37559. height: math.unit(120, "feet")
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(15, "feet"),
  37568. name: "Front",
  37569. image: {
  37570. source: "./media/characters/kaizer/front.svg",
  37571. extra: 1612/1436,
  37572. bottom: 43/1655
  37573. }
  37574. },
  37575. },
  37576. [
  37577. {
  37578. name: "Normal",
  37579. height: math.unit(15, "feet"),
  37580. default: true
  37581. },
  37582. ]
  37583. ))
  37584. characterMakers.push(() => makeCharacter(
  37585. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37586. {
  37587. front: {
  37588. height: math.unit(2, "feet"),
  37589. weight: math.unit(30, "lb"),
  37590. name: "Front",
  37591. image: {
  37592. source: "./media/characters/sandy/front.svg",
  37593. extra: 1439/1307,
  37594. bottom: 194/1633
  37595. }
  37596. },
  37597. },
  37598. [
  37599. {
  37600. name: "Normal",
  37601. height: math.unit(2, "feet"),
  37602. default: true
  37603. },
  37604. ]
  37605. ))
  37606. characterMakers.push(() => makeCharacter(
  37607. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37608. {
  37609. front: {
  37610. height: math.unit(3, "feet"),
  37611. name: "Front",
  37612. image: {
  37613. source: "./media/characters/mellvi/front.svg",
  37614. extra: 1831/1630,
  37615. bottom: 58/1889
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(3, "feet"),
  37623. default: true
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(5 + 11/12, "feet"),
  37632. weight: math.unit(200, "lb"),
  37633. name: "Front",
  37634. image: {
  37635. source: "./media/characters/shirou/front.svg",
  37636. extra: 2491/2383,
  37637. bottom: 189/2680
  37638. }
  37639. },
  37640. back: {
  37641. height: math.unit(5 + 11/12, "feet"),
  37642. weight: math.unit(200, "lb"),
  37643. name: "Back",
  37644. image: {
  37645. source: "./media/characters/shirou/back.svg",
  37646. extra: 2554/2450,
  37647. bottom: 76/2630
  37648. }
  37649. },
  37650. },
  37651. [
  37652. {
  37653. name: "Normal",
  37654. height: math.unit(5 + 11/12, "feet"),
  37655. default: true
  37656. },
  37657. ]
  37658. ))
  37659. characterMakers.push(() => makeCharacter(
  37660. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37661. {
  37662. front: {
  37663. height: math.unit(6 + 3/12, "feet"),
  37664. weight: math.unit(177, "lb"),
  37665. name: "Front",
  37666. image: {
  37667. source: "./media/characters/noryu/front.svg",
  37668. extra: 973/885,
  37669. bottom: 10/983
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(6 + 3/12, "feet"),
  37677. default: true
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(5 + 6/12, "feet"),
  37686. weight: math.unit(170, "lb"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/mevolas-rubenido/front.svg",
  37690. extra: 2109/1901,
  37691. bottom: 96/2205
  37692. }
  37693. },
  37694. },
  37695. [
  37696. {
  37697. name: "Normal",
  37698. height: math.unit(5 + 6/12, "feet"),
  37699. default: true
  37700. },
  37701. ]
  37702. ))
  37703. characterMakers.push(() => makeCharacter(
  37704. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37705. {
  37706. front: {
  37707. height: math.unit(100, "feet"),
  37708. name: "Front",
  37709. image: {
  37710. source: "./media/characters/dee/front.svg",
  37711. extra: 2153/2036,
  37712. bottom: 59/2212
  37713. }
  37714. },
  37715. back: {
  37716. height: math.unit(100, "feet"),
  37717. name: "Back",
  37718. image: {
  37719. source: "./media/characters/dee/back.svg",
  37720. extra: 2183/2058,
  37721. bottom: 75/2258
  37722. }
  37723. },
  37724. foot: {
  37725. height: math.unit(19.43, "feet"),
  37726. name: "Foot",
  37727. image: {
  37728. source: "./media/characters/dee/foot.svg"
  37729. }
  37730. },
  37731. hoof: {
  37732. height: math.unit(20.6, "feet"),
  37733. name: "Hoof",
  37734. image: {
  37735. source: "./media/characters/dee/hoof.svg"
  37736. }
  37737. },
  37738. },
  37739. [
  37740. {
  37741. name: "Macro",
  37742. height: math.unit(100, "feet"),
  37743. default: true
  37744. },
  37745. ]
  37746. ))
  37747. characterMakers.push(() => makeCharacter(
  37748. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37749. {
  37750. front: {
  37751. height: math.unit(5 + 6/12, "feet"),
  37752. name: "Front",
  37753. image: {
  37754. source: "./media/characters/teh/front.svg",
  37755. extra: 1002/847,
  37756. bottom: 62/1064
  37757. }
  37758. },
  37759. },
  37760. [
  37761. {
  37762. name: "Normal",
  37763. height: math.unit(5 + 6/12, "feet"),
  37764. default: true
  37765. },
  37766. ]
  37767. ))
  37768. characterMakers.push(() => makeCharacter(
  37769. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37770. {
  37771. side: {
  37772. height: math.unit(6 + 1/12, "feet"),
  37773. weight: math.unit(204, "lb"),
  37774. name: "Side",
  37775. image: {
  37776. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37777. extra: 974/775,
  37778. bottom: 169/1143
  37779. }
  37780. },
  37781. sitting: {
  37782. height: math.unit(6 + 2/12, "feet"),
  37783. weight: math.unit(204, "lb"),
  37784. name: "Sitting",
  37785. image: {
  37786. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37787. extra: 1175/964,
  37788. bottom: 378/1553
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(6 + 1/12, "feet"),
  37796. default: true
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37802. {
  37803. front: {
  37804. height: math.unit(6, "inches"),
  37805. name: "Front",
  37806. image: {
  37807. source: "./media/characters/tululi/front.svg",
  37808. extra: 1997/1876,
  37809. bottom: 20/2017
  37810. }
  37811. },
  37812. },
  37813. [
  37814. {
  37815. name: "Normal",
  37816. height: math.unit(6, "inches"),
  37817. default: true
  37818. },
  37819. ]
  37820. ))
  37821. characterMakers.push(() => makeCharacter(
  37822. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37823. {
  37824. front: {
  37825. height: math.unit(4 + 1/12, "feet"),
  37826. name: "Front",
  37827. image: {
  37828. source: "./media/characters/star/front.svg",
  37829. extra: 1493/1189,
  37830. bottom: 48/1541
  37831. }
  37832. },
  37833. },
  37834. [
  37835. {
  37836. name: "Normal",
  37837. height: math.unit(4 + 1/12, "feet"),
  37838. default: true
  37839. },
  37840. ]
  37841. ))
  37842. characterMakers.push(() => makeCharacter(
  37843. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37844. {
  37845. front: {
  37846. height: math.unit(6 + 3/12, "feet"),
  37847. name: "Front",
  37848. image: {
  37849. source: "./media/characters/comet/front.svg",
  37850. extra: 1681/1462,
  37851. bottom: 26/1707
  37852. }
  37853. },
  37854. },
  37855. [
  37856. {
  37857. name: "Normal",
  37858. height: math.unit(6 + 3/12, "feet"),
  37859. default: true
  37860. },
  37861. ]
  37862. ))
  37863. characterMakers.push(() => makeCharacter(
  37864. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37865. {
  37866. front: {
  37867. height: math.unit(950, "feet"),
  37868. name: "Front",
  37869. image: {
  37870. source: "./media/characters/vortex/front.svg",
  37871. extra: 1497/1434,
  37872. bottom: 56/1553
  37873. }
  37874. },
  37875. maw: {
  37876. height: math.unit(285, "feet"),
  37877. name: "Maw",
  37878. image: {
  37879. source: "./media/characters/vortex/maw.svg"
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Macro",
  37886. height: math.unit(950, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37893. {
  37894. front: {
  37895. height: math.unit(600, "feet"),
  37896. weight: math.unit(0.02, "grams"),
  37897. name: "Front",
  37898. image: {
  37899. source: "./media/characters/doodle/front.svg",
  37900. extra: 1578/1413,
  37901. bottom: 37/1615
  37902. }
  37903. },
  37904. },
  37905. [
  37906. {
  37907. name: "Macro",
  37908. height: math.unit(600, "feet"),
  37909. default: true
  37910. },
  37911. ]
  37912. ))
  37913. characterMakers.push(() => makeCharacter(
  37914. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37915. {
  37916. front: {
  37917. height: math.unit(6 + 6/12, "feet"),
  37918. name: "Front",
  37919. image: {
  37920. source: "./media/characters/jai/front.svg",
  37921. extra: 1645/1534,
  37922. bottom: 115/1760
  37923. }
  37924. },
  37925. },
  37926. [
  37927. {
  37928. name: "Normal",
  37929. height: math.unit(6 + 6/12, "feet"),
  37930. default: true
  37931. },
  37932. ]
  37933. ))
  37934. characterMakers.push(() => makeCharacter(
  37935. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37936. {
  37937. front: {
  37938. height: math.unit(6 + 8/12, "feet"),
  37939. name: "Front",
  37940. image: {
  37941. source: "./media/characters/pixel/front.svg",
  37942. extra: 1900/1735,
  37943. bottom: 63/1963
  37944. }
  37945. },
  37946. },
  37947. [
  37948. {
  37949. name: "Normal",
  37950. height: math.unit(6 + 8/12, "feet"),
  37951. default: true
  37952. },
  37953. ]
  37954. ))
  37955. characterMakers.push(() => makeCharacter(
  37956. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37957. {
  37958. back: {
  37959. height: math.unit(4 + 1/12, "feet"),
  37960. weight: math.unit(75, "lb"),
  37961. name: "Back",
  37962. image: {
  37963. source: "./media/characters/rhett/back.svg",
  37964. extra: 930/878,
  37965. bottom: 25/955
  37966. }
  37967. },
  37968. front: {
  37969. height: math.unit(4 + 1/12, "feet"),
  37970. weight: math.unit(75, "lb"),
  37971. name: "Front",
  37972. image: {
  37973. source: "./media/characters/rhett/front.svg",
  37974. extra: 1682/1586,
  37975. bottom: 92/1774
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Micro",
  37982. height: math.unit(8, "inches")
  37983. },
  37984. {
  37985. name: "Tiny",
  37986. height: math.unit(2, "feet")
  37987. },
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(4 + 1/12, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(3 + 3/12, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/penny/front.svg",
  38003. extra: 1406/1311,
  38004. bottom: 26/1432
  38005. }
  38006. },
  38007. },
  38008. [
  38009. {
  38010. name: "Normal",
  38011. height: math.unit(3 + 3/12, "feet"),
  38012. default: true
  38013. },
  38014. ]
  38015. ))
  38016. characterMakers.push(() => makeCharacter(
  38017. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38018. {
  38019. front: {
  38020. height: math.unit(4 + 11/12, "feet"),
  38021. name: "Front",
  38022. image: {
  38023. source: "./media/characters/monty/front.svg",
  38024. extra: 1479/1209,
  38025. bottom: 0/1479
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Normal",
  38032. height: math.unit(4 + 11/12, "feet"),
  38033. default: true
  38034. },
  38035. ]
  38036. ))
  38037. characterMakers.push(() => makeCharacter(
  38038. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38039. {
  38040. front: {
  38041. height: math.unit(8 + 4/12, "feet"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/sterling/front.svg",
  38045. extra: 1420/1236,
  38046. bottom: 27/1447
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(8 + 4/12, "feet"),
  38054. default: true
  38055. },
  38056. ]
  38057. ))
  38058. characterMakers.push(() => makeCharacter(
  38059. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38060. {
  38061. front: {
  38062. height: math.unit(15, "feet"),
  38063. name: "Front",
  38064. image: {
  38065. source: "./media/characters/marble/front.svg",
  38066. extra: 973/937,
  38067. bottom: 32/1005
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Normal",
  38074. height: math.unit(15, "feet"),
  38075. default: true
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38081. {
  38082. front: {
  38083. height: math.unit(3, "inches"),
  38084. name: "Front",
  38085. image: {
  38086. source: "./media/characters/powder/front.svg",
  38087. extra: 1504/1334,
  38088. bottom: 518/2022
  38089. }
  38090. },
  38091. },
  38092. [
  38093. {
  38094. name: "Normal",
  38095. height: math.unit(3, "inches"),
  38096. default: true
  38097. },
  38098. ]
  38099. ))
  38100. characterMakers.push(() => makeCharacter(
  38101. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38102. {
  38103. front: {
  38104. height: math.unit(4 + 5/12, "feet"),
  38105. name: "Front",
  38106. image: {
  38107. source: "./media/characters/joey-raccoon/front.svg",
  38108. extra: 1273/1197,
  38109. bottom: 0/1273
  38110. }
  38111. },
  38112. },
  38113. [
  38114. {
  38115. name: "Normal",
  38116. height: math.unit(4 + 5/12, "feet"),
  38117. default: true
  38118. },
  38119. ]
  38120. ))
  38121. characterMakers.push(() => makeCharacter(
  38122. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38123. {
  38124. front: {
  38125. height: math.unit(8 + 4/12, "feet"),
  38126. name: "Front",
  38127. image: {
  38128. source: "./media/characters/vick/front.svg",
  38129. extra: 2187/2118,
  38130. bottom: 47/2234
  38131. }
  38132. },
  38133. },
  38134. [
  38135. {
  38136. name: "Normal",
  38137. height: math.unit(8 + 4/12, "feet"),
  38138. default: true
  38139. },
  38140. ]
  38141. ))
  38142. characterMakers.push(() => makeCharacter(
  38143. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38144. {
  38145. front: {
  38146. height: math.unit(5 + 5/12, "feet"),
  38147. name: "Front",
  38148. image: {
  38149. source: "./media/characters/mitsy/front.svg",
  38150. extra: 1842/1695,
  38151. bottom: 0/1842
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(5 + 5/12, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(6 + 3/12, "feet"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/silvy/front.svg",
  38171. extra: 1995/1836,
  38172. bottom: 225/2220
  38173. }
  38174. },
  38175. },
  38176. [
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(6 + 3/12, "feet"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(3 + 8/12, "feet"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/rodney/front.svg",
  38192. extra: 1956/1747,
  38193. bottom: 31/1987
  38194. }
  38195. },
  38196. frontDressed: {
  38197. height: math.unit(2.9, "feet"),
  38198. name: "Front (Dressed)",
  38199. image: {
  38200. source: "./media/characters/rodney/front-dressed.svg",
  38201. extra: 1382/1241,
  38202. bottom: 385/1767
  38203. }
  38204. },
  38205. },
  38206. [
  38207. {
  38208. name: "Normal",
  38209. height: math.unit(3 + 8/12, "feet"),
  38210. default: true
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(5 + 9/12, "feet"),
  38219. weight: math.unit(194, "lbs"),
  38220. name: "Front",
  38221. image: {
  38222. source: "./media/characters/zakail-sudekai/front.svg",
  38223. extra: 2696/2533,
  38224. bottom: 248/2944
  38225. }
  38226. },
  38227. maw: {
  38228. height: math.unit(1.35, "feet"),
  38229. name: "Maw",
  38230. image: {
  38231. source: "./media/characters/zakail-sudekai/maw.svg"
  38232. }
  38233. },
  38234. },
  38235. [
  38236. {
  38237. name: "Normal",
  38238. height: math.unit(5 + 9/12, "feet"),
  38239. default: true
  38240. },
  38241. ]
  38242. ))
  38243. characterMakers.push(() => makeCharacter(
  38244. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38245. {
  38246. front: {
  38247. height: math.unit(8 + 4/12, "feet"),
  38248. weight: math.unit(1200, "lb"),
  38249. name: "Front",
  38250. image: {
  38251. source: "./media/characters/eleanor/front.svg",
  38252. extra: 1226/1192,
  38253. bottom: 52/1278
  38254. }
  38255. },
  38256. back: {
  38257. height: math.unit(8 + 4/12, "feet"),
  38258. weight: math.unit(1200, "lb"),
  38259. name: "Back",
  38260. image: {
  38261. source: "./media/characters/eleanor/back.svg",
  38262. extra: 1242/1184,
  38263. bottom: 60/1302
  38264. }
  38265. },
  38266. head: {
  38267. height: math.unit(2.62, "feet"),
  38268. name: "Head",
  38269. image: {
  38270. source: "./media/characters/eleanor/head.svg"
  38271. }
  38272. },
  38273. },
  38274. [
  38275. {
  38276. name: "Normal",
  38277. height: math.unit(8 + 4/12, "feet"),
  38278. default: true
  38279. },
  38280. ]
  38281. ))
  38282. characterMakers.push(() => makeCharacter(
  38283. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38284. {
  38285. front: {
  38286. height: math.unit(8 + 4/12, "feet"),
  38287. weight: math.unit(750, "lb"),
  38288. name: "Front",
  38289. image: {
  38290. source: "./media/characters/tanya/front.svg",
  38291. extra: 1749/1615,
  38292. bottom: 33/1782
  38293. }
  38294. },
  38295. },
  38296. [
  38297. {
  38298. name: "Normal",
  38299. height: math.unit(8 + 4/12, "feet"),
  38300. default: true
  38301. },
  38302. ]
  38303. ))
  38304. characterMakers.push(() => makeCharacter(
  38305. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38306. {
  38307. front: {
  38308. height: math.unit(5, "feet"),
  38309. weight: math.unit(225, "lb"),
  38310. name: "Front",
  38311. image: {
  38312. source: "./media/characters/cindy/front.svg",
  38313. extra: 1320/1250,
  38314. bottom: 42/1362
  38315. }
  38316. },
  38317. frontDressed: {
  38318. height: math.unit(5, "feet"),
  38319. weight: math.unit(225, "lb"),
  38320. name: "Front (Dressed)",
  38321. image: {
  38322. source: "./media/characters/cindy/front-dressed.svg",
  38323. extra: 1320/1250,
  38324. bottom: 42/1362
  38325. }
  38326. },
  38327. back: {
  38328. height: math.unit(5, "feet"),
  38329. weight: math.unit(225, "lb"),
  38330. name: "Back",
  38331. image: {
  38332. source: "./media/characters/cindy/back.svg",
  38333. extra: 1384/1346,
  38334. bottom: 14/1398
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(5, "feet"),
  38342. default: true
  38343. },
  38344. ]
  38345. ))
  38346. characterMakers.push(() => makeCharacter(
  38347. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38348. {
  38349. front: {
  38350. height: math.unit(6 + 9/12, "feet"),
  38351. weight: math.unit(440, "lb"),
  38352. name: "Front",
  38353. image: {
  38354. source: "./media/characters/wilbur-owen/front.svg",
  38355. extra: 1575/1448,
  38356. bottom: 72/1647
  38357. }
  38358. },
  38359. back: {
  38360. height: math.unit(6 + 9/12, "feet"),
  38361. weight: math.unit(440, "lb"),
  38362. name: "Back",
  38363. image: {
  38364. source: "./media/characters/wilbur-owen/back.svg",
  38365. extra: 1578/1445,
  38366. bottom: 36/1614
  38367. }
  38368. },
  38369. },
  38370. [
  38371. {
  38372. name: "Normal",
  38373. height: math.unit(6 + 9/12, "feet"),
  38374. default: true
  38375. },
  38376. ]
  38377. ))
  38378. characterMakers.push(() => makeCharacter(
  38379. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38380. {
  38381. front: {
  38382. height: math.unit(6 + 5/12, "feet"),
  38383. weight: math.unit(650, "lb"),
  38384. name: "Front",
  38385. image: {
  38386. source: "./media/characters/keegan/front.svg",
  38387. extra: 2387/2198,
  38388. bottom: 33/2420
  38389. }
  38390. },
  38391. side: {
  38392. height: math.unit(6 + 5/12, "feet"),
  38393. weight: math.unit(650, "lb"),
  38394. name: "Side",
  38395. image: {
  38396. source: "./media/characters/keegan/side.svg",
  38397. extra: 2390/2202,
  38398. bottom: 47/2437
  38399. }
  38400. },
  38401. back: {
  38402. height: math.unit(6 + 5/12, "feet"),
  38403. weight: math.unit(650, "lb"),
  38404. name: "Back",
  38405. image: {
  38406. source: "./media/characters/keegan/back.svg",
  38407. extra: 2418/2268,
  38408. bottom: 15/2433
  38409. }
  38410. },
  38411. frontSfw: {
  38412. height: math.unit(6 + 5/12, "feet"),
  38413. weight: math.unit(650, "lb"),
  38414. name: "Front (SFW)",
  38415. image: {
  38416. source: "./media/characters/keegan/front-sfw.svg",
  38417. extra: 2387/2198,
  38418. bottom: 33/2420
  38419. }
  38420. },
  38421. beans: {
  38422. height: math.unit(1.85, "feet"),
  38423. name: "Beans",
  38424. image: {
  38425. source: "./media/characters/keegan/beans.svg"
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Normal",
  38432. height: math.unit(6 + 5/12, "feet"),
  38433. default: true
  38434. },
  38435. ]
  38436. ))
  38437. characterMakers.push(() => makeCharacter(
  38438. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38439. {
  38440. front: {
  38441. height: math.unit(9, "feet"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/colton/front.svg",
  38445. extra: 1589/1326,
  38446. bottom: 139/1728
  38447. }
  38448. },
  38449. },
  38450. [
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(9, "feet"),
  38454. default: true
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38460. {
  38461. front: {
  38462. height: math.unit(2 + 9/12, "feet"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/bora/front.svg",
  38466. extra: 1265/1250,
  38467. bottom: 24/1289
  38468. }
  38469. },
  38470. },
  38471. [
  38472. {
  38473. name: "Normal",
  38474. height: math.unit(2 + 9/12, "feet"),
  38475. default: true
  38476. },
  38477. ]
  38478. ))
  38479. characterMakers.push(() => makeCharacter(
  38480. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38481. {
  38482. front: {
  38483. height: math.unit(8, "feet"),
  38484. name: "Front",
  38485. image: {
  38486. source: "./media/characters/myu-myu/front.svg",
  38487. extra: 1949/1857,
  38488. bottom: 90/2039
  38489. }
  38490. },
  38491. },
  38492. [
  38493. {
  38494. name: "Normal",
  38495. height: math.unit(8, "feet"),
  38496. default: true
  38497. },
  38498. {
  38499. name: "Big",
  38500. height: math.unit(15, "feet")
  38501. },
  38502. {
  38503. name: "BIG",
  38504. height: math.unit(25, "feet")
  38505. },
  38506. ]
  38507. ))
  38508. characterMakers.push(() => makeCharacter(
  38509. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38510. {
  38511. side: {
  38512. height: math.unit(7 + 5/12, "feet"),
  38513. weight: math.unit(2800, "lb"),
  38514. name: "Side",
  38515. image: {
  38516. source: "./media/characters/haloren/side.svg",
  38517. extra: 1793/409,
  38518. bottom: 59/1852
  38519. }
  38520. },
  38521. frontPaw: {
  38522. height: math.unit(2.36, "feet"),
  38523. name: "Front paw",
  38524. image: {
  38525. source: "./media/characters/haloren/front-paw.svg"
  38526. }
  38527. },
  38528. hindPaw: {
  38529. height: math.unit(3.18, "feet"),
  38530. name: "Hind paw",
  38531. image: {
  38532. source: "./media/characters/haloren/hind-paw.svg"
  38533. }
  38534. },
  38535. maw: {
  38536. height: math.unit(5.05, "feet"),
  38537. name: "Maw",
  38538. image: {
  38539. source: "./media/characters/haloren/maw.svg"
  38540. }
  38541. },
  38542. dick: {
  38543. height: math.unit(2.90, "feet"),
  38544. name: "Dick",
  38545. image: {
  38546. source: "./media/characters/haloren/dick.svg"
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(7 + 5/12, "feet"),
  38554. default: true
  38555. },
  38556. {
  38557. name: "Enhanced",
  38558. height: math.unit(14 + 3/12, "feet")
  38559. },
  38560. ]
  38561. ))
  38562. characterMakers.push(() => makeCharacter(
  38563. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38564. {
  38565. front: {
  38566. height: math.unit(171, "cm"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/kimmy/front.svg",
  38570. extra: 1491/1435,
  38571. bottom: 53/1544
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Small",
  38578. height: math.unit(9, "cm")
  38579. },
  38580. {
  38581. name: "Normal",
  38582. height: math.unit(171, "cm"),
  38583. default: true
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38589. {
  38590. front: {
  38591. height: math.unit(8, "feet"),
  38592. weight: math.unit(300, "lb"),
  38593. name: "Front",
  38594. image: {
  38595. source: "./media/characters/galeboomer/front.svg",
  38596. extra: 4651/4415,
  38597. bottom: 162/4813
  38598. }
  38599. },
  38600. back: {
  38601. height: math.unit(8, "feet"),
  38602. weight: math.unit(300, "lb"),
  38603. name: "Back",
  38604. image: {
  38605. source: "./media/characters/galeboomer/back.svg",
  38606. extra: 4544/4314,
  38607. bottom: 16/4560
  38608. }
  38609. },
  38610. frontAlt: {
  38611. height: math.unit(8, "feet"),
  38612. weight: math.unit(300, "lb"),
  38613. name: "Front (Alt)",
  38614. image: {
  38615. source: "./media/characters/galeboomer/front-alt.svg",
  38616. extra: 4458/4228,
  38617. bottom: 68/4526
  38618. }
  38619. },
  38620. maw: {
  38621. height: math.unit(1.2, "feet"),
  38622. name: "Maw",
  38623. image: {
  38624. source: "./media/characters/galeboomer/maw.svg"
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Normal",
  38631. height: math.unit(8, "feet"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(5 + 9/12, "feet"),
  38641. weight: math.unit(120, "lb"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/chyr/front.svg",
  38645. extra: 1323/1254,
  38646. bottom: 63/1386
  38647. }
  38648. },
  38649. back: {
  38650. height: math.unit(5 + 9/12, "feet"),
  38651. weight: math.unit(120, "lb"),
  38652. name: "Back",
  38653. image: {
  38654. source: "./media/characters/chyr/back.svg",
  38655. extra: 1323/1252,
  38656. bottom: 48/1371
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Normal",
  38663. height: math.unit(5 + 9/12, "feet"),
  38664. default: true
  38665. },
  38666. ]
  38667. ))
  38668. characterMakers.push(() => makeCharacter(
  38669. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38670. {
  38671. front: {
  38672. height: math.unit(7, "feet"),
  38673. weight: math.unit(310, "lb"),
  38674. name: "Front",
  38675. image: {
  38676. source: "./media/characters/solarus/front.svg",
  38677. extra: 2415/2021,
  38678. bottom: 103/2518
  38679. }
  38680. },
  38681. back: {
  38682. height: math.unit(7, "feet"),
  38683. weight: math.unit(310, "lb"),
  38684. name: "Back",
  38685. image: {
  38686. source: "./media/characters/solarus/back.svg",
  38687. extra: 2463/2089,
  38688. bottom: 79/2542
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Normal",
  38695. height: math.unit(7, "feet"),
  38696. default: true
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(16, "feet"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38708. extra: 1844/1780,
  38709. bottom: 58/1902
  38710. }
  38711. },
  38712. winterCoat: {
  38713. height: math.unit(16, "feet"),
  38714. name: "Winter Coat",
  38715. image: {
  38716. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38717. extra: 1807/1775,
  38718. bottom: 69/1876
  38719. }
  38720. },
  38721. },
  38722. [
  38723. {
  38724. name: "Normal",
  38725. height: math.unit(16, "feet"),
  38726. default: true
  38727. },
  38728. {
  38729. name: "Chicago Size",
  38730. height: math.unit(560, "feet")
  38731. },
  38732. ]
  38733. ))
  38734. characterMakers.push(() => makeCharacter(
  38735. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38736. {
  38737. front: {
  38738. height: math.unit(11 + 6/12, "feet"),
  38739. weight: math.unit(1366, "lb"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/lexor/front.svg",
  38743. extra: 1560/1481,
  38744. bottom: 211/1771
  38745. }
  38746. },
  38747. back: {
  38748. height: math.unit(11 + 6/12, "feet"),
  38749. weight: math.unit(1366, "lb"),
  38750. name: "Back",
  38751. image: {
  38752. source: "./media/characters/lexor/back.svg",
  38753. extra: 1614/1533,
  38754. bottom: 76/1690
  38755. }
  38756. },
  38757. maw: {
  38758. height: math.unit(3, "feet"),
  38759. name: "Maw",
  38760. image: {
  38761. source: "./media/characters/lexor/maw.svg"
  38762. }
  38763. },
  38764. dick: {
  38765. height: math.unit(2.59, "feet"),
  38766. name: "Dick",
  38767. image: {
  38768. source: "./media/characters/lexor/dick.svg"
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Normal",
  38775. height: math.unit(11 + 6/12, "feet"),
  38776. default: true
  38777. },
  38778. ]
  38779. ))
  38780. characterMakers.push(() => makeCharacter(
  38781. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38782. {
  38783. front: {
  38784. height: math.unit(5 + 8/12, "feet"),
  38785. name: "Front",
  38786. image: {
  38787. source: "./media/characters/magnum/front.svg",
  38788. extra: 942/855,
  38789. bottom: 26/968
  38790. }
  38791. },
  38792. },
  38793. [
  38794. {
  38795. name: "Normal",
  38796. height: math.unit(5 + 8/12, "feet"),
  38797. default: true
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(18 + 4/12, "feet"),
  38806. weight: math.unit(1500, "kg"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/solas-sharpsman/front.svg",
  38810. extra: 1698/1589,
  38811. bottom: 0/1698
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Normal",
  38818. height: math.unit(18 + 4/12, "feet"),
  38819. default: true
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38825. {
  38826. front: {
  38827. height: math.unit(5 + 5/12, "feet"),
  38828. weight: math.unit(180, "lb"),
  38829. name: "Front",
  38830. image: {
  38831. source: "./media/characters/october/front.svg",
  38832. extra: 1800/1650,
  38833. bottom: 0/1800
  38834. }
  38835. },
  38836. frontNsfw: {
  38837. height: math.unit(5 + 5/12, "feet"),
  38838. weight: math.unit(180, "lb"),
  38839. name: "Front (NSFW)",
  38840. image: {
  38841. source: "./media/characters/october/front-nsfw.svg",
  38842. extra: 1392/1307,
  38843. bottom: 42/1434
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Normal",
  38850. height: math.unit(5 + 5/12, "feet"),
  38851. default: true
  38852. },
  38853. ]
  38854. ))
  38855. characterMakers.push(() => makeCharacter(
  38856. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38857. {
  38858. front: {
  38859. height: math.unit(8 + 6/12, "feet"),
  38860. name: "Front",
  38861. image: {
  38862. source: "./media/characters/essynkardi/front.svg",
  38863. extra: 1914/1846,
  38864. bottom: 22/1936
  38865. }
  38866. },
  38867. },
  38868. [
  38869. {
  38870. name: "Normal",
  38871. height: math.unit(8 + 6/12, "feet"),
  38872. default: true
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(6 + 6/12, "feet"),
  38881. weight: math.unit(7, "lb"),
  38882. name: "Front",
  38883. image: {
  38884. source: "./media/characters/icky/front.svg",
  38885. extra: 813/782,
  38886. bottom: 66/879
  38887. }
  38888. },
  38889. back: {
  38890. height: math.unit(6 + 6/12, "feet"),
  38891. weight: math.unit(7, "lb"),
  38892. name: "Back",
  38893. image: {
  38894. source: "./media/characters/icky/back.svg",
  38895. extra: 754/735,
  38896. bottom: 56/810
  38897. }
  38898. },
  38899. },
  38900. [
  38901. {
  38902. name: "Normal",
  38903. height: math.unit(6 + 6/12, "feet"),
  38904. default: true
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38910. {
  38911. front: {
  38912. height: math.unit(15, "feet"),
  38913. name: "Front",
  38914. image: {
  38915. source: "./media/characters/rojas/front.svg",
  38916. extra: 1462/1408,
  38917. bottom: 95/1557
  38918. }
  38919. },
  38920. back: {
  38921. height: math.unit(15, "feet"),
  38922. name: "Back",
  38923. image: {
  38924. source: "./media/characters/rojas/back.svg",
  38925. extra: 1023/954,
  38926. bottom: 28/1051
  38927. }
  38928. },
  38929. },
  38930. [
  38931. {
  38932. name: "Normal",
  38933. height: math.unit(15, "feet"),
  38934. default: true
  38935. },
  38936. ]
  38937. ))
  38938. characterMakers.push(() => makeCharacter(
  38939. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38940. {
  38941. frontHuman: {
  38942. height: math.unit(5 + 7/12, "feet"),
  38943. name: "Front (Human)",
  38944. image: {
  38945. source: "./media/characters/alek-dryagan/front-human.svg",
  38946. extra: 1687/1667,
  38947. bottom: 69/1756
  38948. }
  38949. },
  38950. backHuman: {
  38951. height: math.unit(5 + 7/12, "feet"),
  38952. name: "Back (Human)",
  38953. image: {
  38954. source: "./media/characters/alek-dryagan/back-human.svg",
  38955. extra: 1670/1649,
  38956. bottom: 65/1735
  38957. }
  38958. },
  38959. frontDemi: {
  38960. height: math.unit(65, "feet"),
  38961. name: "Front (Demi)",
  38962. image: {
  38963. source: "./media/characters/alek-dryagan/front-demi.svg",
  38964. extra: 1669/1642,
  38965. bottom: 49/1718
  38966. }
  38967. },
  38968. backDemi: {
  38969. height: math.unit(65, "feet"),
  38970. name: "Back (Demi)",
  38971. image: {
  38972. source: "./media/characters/alek-dryagan/back-demi.svg",
  38973. extra: 1658/1637,
  38974. bottom: 40/1698
  38975. }
  38976. },
  38977. mawHuman: {
  38978. height: math.unit(0.3, "feet"),
  38979. name: "Maw (Human)",
  38980. image: {
  38981. source: "./media/characters/alek-dryagan/maw-human.svg"
  38982. }
  38983. },
  38984. mawDemi: {
  38985. height: math.unit(3.8, "feet"),
  38986. name: "Maw (Demi)",
  38987. image: {
  38988. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38989. }
  38990. },
  38991. },
  38992. [
  38993. {
  38994. name: "Normal",
  38995. height: math.unit(5 + 7/12, "feet"),
  38996. default: true
  38997. },
  38998. ]
  38999. ))
  39000. characterMakers.push(() => makeCharacter(
  39001. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39002. {
  39003. frontHuman: {
  39004. height: math.unit(5 + 2/12, "feet"),
  39005. name: "Front (Human)",
  39006. image: {
  39007. source: "./media/characters/gen/front-human.svg",
  39008. extra: 1627/1538,
  39009. bottom: 71/1698
  39010. }
  39011. },
  39012. backHuman: {
  39013. height: math.unit(5 + 2/12, "feet"),
  39014. name: "Back (Human)",
  39015. image: {
  39016. source: "./media/characters/gen/back-human.svg",
  39017. extra: 1638/1548,
  39018. bottom: 69/1707
  39019. }
  39020. },
  39021. frontDemi: {
  39022. height: math.unit(5 + 2/12, "feet"),
  39023. name: "Front (Demi)",
  39024. image: {
  39025. source: "./media/characters/gen/front-demi.svg",
  39026. extra: 1627/1538,
  39027. bottom: 71/1698
  39028. }
  39029. },
  39030. backDemi: {
  39031. height: math.unit(5 + 2/12, "feet"),
  39032. name: "Back (Demi)",
  39033. image: {
  39034. source: "./media/characters/gen/back-demi.svg",
  39035. extra: 1638/1548,
  39036. bottom: 69/1707
  39037. }
  39038. },
  39039. },
  39040. [
  39041. {
  39042. name: "Normal",
  39043. height: math.unit(5 + 2/12, "feet"),
  39044. default: true
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39050. {
  39051. frontImp: {
  39052. height: math.unit(1 + 11/12, "feet"),
  39053. name: "Front (Imp)",
  39054. image: {
  39055. source: "./media/characters/max-kobold/front-imp.svg",
  39056. extra: 1238/1134,
  39057. bottom: 81/1319
  39058. }
  39059. },
  39060. backImp: {
  39061. height: math.unit(1 + 11/12, "feet"),
  39062. name: "Back (Imp)",
  39063. image: {
  39064. source: "./media/characters/max-kobold/back-imp.svg",
  39065. extra: 1334/1175,
  39066. bottom: 34/1368
  39067. }
  39068. },
  39069. frontDemi: {
  39070. height: math.unit(5 + 9/12, "feet"),
  39071. name: "Front (Demi)",
  39072. image: {
  39073. source: "./media/characters/max-kobold/front-demi.svg",
  39074. extra: 1715/1685,
  39075. bottom: 54/1769
  39076. }
  39077. },
  39078. backDemi: {
  39079. height: math.unit(5 + 9/12, "feet"),
  39080. name: "Back (Demi)",
  39081. image: {
  39082. source: "./media/characters/max-kobold/back-demi.svg",
  39083. extra: 1752/1729,
  39084. bottom: 41/1793
  39085. }
  39086. },
  39087. handImp: {
  39088. height: math.unit(0.45, "feet"),
  39089. name: "Hand (Imp)",
  39090. image: {
  39091. source: "./media/characters/max-kobold/hand.svg"
  39092. }
  39093. },
  39094. pawImp: {
  39095. height: math.unit(0.46, "feet"),
  39096. name: "Paw (Imp)",
  39097. image: {
  39098. source: "./media/characters/max-kobold/paw.svg"
  39099. }
  39100. },
  39101. handDemi: {
  39102. height: math.unit(0.80, "feet"),
  39103. name: "Hand (Demi)",
  39104. image: {
  39105. source: "./media/characters/max-kobold/hand.svg"
  39106. }
  39107. },
  39108. pawDemi: {
  39109. height: math.unit(1.1, "feet"),
  39110. name: "Paw (Demi)",
  39111. image: {
  39112. source: "./media/characters/max-kobold/paw.svg"
  39113. }
  39114. },
  39115. headImp: {
  39116. height: math.unit(1.33, "feet"),
  39117. name: "Head (Imp)",
  39118. image: {
  39119. source: "./media/characters/max-kobold/head-imp.svg"
  39120. }
  39121. },
  39122. mawImp: {
  39123. height: math.unit(0.75, "feet"),
  39124. name: "Maw (Imp)",
  39125. image: {
  39126. source: "./media/characters/max-kobold/maw-imp.svg"
  39127. }
  39128. },
  39129. mawDemi: {
  39130. height: math.unit(0.42, "feet"),
  39131. name: "Maw (Demi)",
  39132. image: {
  39133. source: "./media/characters/max-kobold/maw-demi.svg"
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(1 + 11/12, "feet"),
  39141. default: true
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(7 + 5/12, "feet"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/carbon/front.svg",
  39153. extra: 1754/1689,
  39154. bottom: 65/1819
  39155. }
  39156. },
  39157. back: {
  39158. height: math.unit(7 + 5/12, "feet"),
  39159. name: "Back",
  39160. image: {
  39161. source: "./media/characters/carbon/back.svg",
  39162. extra: 1762/1695,
  39163. bottom: 24/1786
  39164. }
  39165. },
  39166. frontGigantamax: {
  39167. height: math.unit(150, "feet"),
  39168. name: "Front (Gigantamax)",
  39169. image: {
  39170. source: "./media/characters/carbon/front-gigantamax.svg",
  39171. extra: 1826/1669,
  39172. bottom: 59/1885
  39173. }
  39174. },
  39175. backGigantamax: {
  39176. height: math.unit(150, "feet"),
  39177. name: "Back (Gigantamax)",
  39178. image: {
  39179. source: "./media/characters/carbon/back-gigantamax.svg",
  39180. extra: 1796/1653,
  39181. bottom: 53/1849
  39182. }
  39183. },
  39184. maw: {
  39185. height: math.unit(0.48, "feet"),
  39186. name: "Maw",
  39187. image: {
  39188. source: "./media/characters/carbon/maw.svg"
  39189. }
  39190. },
  39191. mawGigantamax: {
  39192. height: math.unit(7.5, "feet"),
  39193. name: "Maw (Gigantamax)",
  39194. image: {
  39195. source: "./media/characters/carbon/maw-gigantamax.svg"
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Normal",
  39202. height: math.unit(7 + 5/12, "feet"),
  39203. default: true
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39209. {
  39210. front: {
  39211. height: math.unit(6, "feet"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/maverick/front.svg",
  39215. extra: 1672/1661,
  39216. bottom: 85/1757
  39217. }
  39218. },
  39219. back: {
  39220. height: math.unit(6, "feet"),
  39221. name: "Back",
  39222. image: {
  39223. source: "./media/characters/maverick/back.svg",
  39224. extra: 1642/1631,
  39225. bottom: 38/1680
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Normal",
  39232. height: math.unit(6, "feet"),
  39233. default: true
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39239. {
  39240. front: {
  39241. height: math.unit(15, "feet"),
  39242. weight: math.unit(615, "lb"),
  39243. name: "Front",
  39244. image: {
  39245. source: "./media/characters/grockle/front.svg",
  39246. extra: 1535/1427,
  39247. bottom: 56/1591
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Normal",
  39254. height: math.unit(15, "feet"),
  39255. default: true
  39256. },
  39257. {
  39258. name: "Large",
  39259. height: math.unit(150, "feet")
  39260. },
  39261. {
  39262. name: "Macro",
  39263. height: math.unit(1876, "feet")
  39264. },
  39265. {
  39266. name: "Mega Macro",
  39267. height: math.unit(121940, "feet")
  39268. },
  39269. {
  39270. name: "Giga Macro",
  39271. height: math.unit(750, "km")
  39272. },
  39273. {
  39274. name: "Tera Macro",
  39275. height: math.unit(750000, "km")
  39276. },
  39277. {
  39278. name: "Galactic",
  39279. height: math.unit(1.4e5, "km")
  39280. },
  39281. {
  39282. name: "Godlike",
  39283. height: math.unit(9.8e280, "galaxies")
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(11, "meters"),
  39292. weight: math.unit(20, "tonnes"),
  39293. name: "Front",
  39294. image: {
  39295. source: "./media/characters/alistair/front.svg",
  39296. extra: 1265/1009,
  39297. bottom: 93/1358
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(11, "meters"),
  39305. default: true
  39306. },
  39307. ]
  39308. ))
  39309. characterMakers.push(() => makeCharacter(
  39310. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39311. {
  39312. front: {
  39313. height: math.unit(5 + 8/12, "feet"),
  39314. name: "Front",
  39315. image: {
  39316. source: "./media/characters/haruka/front.svg",
  39317. extra: 2012/1952,
  39318. bottom: 0/2012
  39319. }
  39320. },
  39321. },
  39322. [
  39323. {
  39324. name: "Normal",
  39325. height: math.unit(5 + 8/12, "feet"),
  39326. default: true
  39327. },
  39328. ]
  39329. ))
  39330. characterMakers.push(() => makeCharacter(
  39331. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39332. {
  39333. back: {
  39334. height: math.unit(9, "feet"),
  39335. name: "Back",
  39336. image: {
  39337. source: "./media/characters/vivian-sylveon/back.svg",
  39338. extra: 1853/1714,
  39339. bottom: 0/1853
  39340. }
  39341. },
  39342. },
  39343. [
  39344. {
  39345. name: "Normal",
  39346. height: math.unit(9, "feet"),
  39347. default: true
  39348. },
  39349. {
  39350. name: "Macro",
  39351. height: math.unit(500, "feet")
  39352. },
  39353. {
  39354. name: "Megamacro",
  39355. height: math.unit(600, "miles")
  39356. },
  39357. {
  39358. name: "Gigamacro",
  39359. height: math.unit(30000, "miles")
  39360. },
  39361. ]
  39362. ))
  39363. characterMakers.push(() => makeCharacter(
  39364. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39365. {
  39366. anthro: {
  39367. height: math.unit(5 + 10/12, "feet"),
  39368. weight: math.unit(100, "lb"),
  39369. name: "Anthro",
  39370. image: {
  39371. source: "./media/characters/daiki/anthro.svg",
  39372. extra: 1115/1027,
  39373. bottom: 69/1184
  39374. }
  39375. },
  39376. feral: {
  39377. height: math.unit(200, "feet"),
  39378. name: "Feral",
  39379. image: {
  39380. source: "./media/characters/daiki/feral.svg",
  39381. extra: 1256/313,
  39382. bottom: 39/1295
  39383. }
  39384. },
  39385. feralHead: {
  39386. height: math.unit(171, "feet"),
  39387. name: "Feral Head",
  39388. image: {
  39389. source: "./media/characters/daiki/feral-head.svg"
  39390. }
  39391. },
  39392. manaDragon: {
  39393. height: math.unit(170, "meters"),
  39394. name: "Mana-dragon",
  39395. image: {
  39396. source: "./media/characters/daiki/mana-dragon.svg",
  39397. extra: 763/420,
  39398. bottom: 97/860
  39399. }
  39400. },
  39401. },
  39402. [
  39403. {
  39404. name: "Normal",
  39405. height: math.unit(5 + 10/12, "feet"),
  39406. default: true
  39407. },
  39408. ]
  39409. ))
  39410. characterMakers.push(() => makeCharacter(
  39411. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39412. {
  39413. fullyEquippedFront: {
  39414. height: math.unit(3 + 1/12, "feet"),
  39415. weight: math.unit(24, "lb"),
  39416. name: "Fully Equipped (Front)",
  39417. image: {
  39418. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39419. extra: 687/605,
  39420. bottom: 18/705
  39421. }
  39422. },
  39423. fullyEquippedBack: {
  39424. height: math.unit(3 + 1/12, "feet"),
  39425. weight: math.unit(24, "lb"),
  39426. name: "Fully Equipped (Back)",
  39427. image: {
  39428. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39429. extra: 689/590,
  39430. bottom: 18/707
  39431. }
  39432. },
  39433. dailyWear: {
  39434. height: math.unit(3 + 1/12, "feet"),
  39435. weight: math.unit(24, "lb"),
  39436. name: "Daily Wear",
  39437. image: {
  39438. source: "./media/characters/tea-spot/daily-wear.svg",
  39439. extra: 701/620,
  39440. bottom: 21/722
  39441. }
  39442. },
  39443. maidWork: {
  39444. height: math.unit(3 + 1/12, "feet"),
  39445. weight: math.unit(24, "lb"),
  39446. name: "Maid Work",
  39447. image: {
  39448. source: "./media/characters/tea-spot/maid-work.svg",
  39449. extra: 693/609,
  39450. bottom: 15/708
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Normal",
  39457. height: math.unit(3 + 1/12, "feet"),
  39458. default: true
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39464. {
  39465. front: {
  39466. height: math.unit(175, "cm"),
  39467. weight: math.unit(75, "kg"),
  39468. name: "Front",
  39469. image: {
  39470. source: "./media/characters/chee/front.svg",
  39471. extra: 1796/1740,
  39472. bottom: 40/1836
  39473. }
  39474. },
  39475. },
  39476. [
  39477. {
  39478. name: "Micro-Micro",
  39479. height: math.unit(1, "nm")
  39480. },
  39481. {
  39482. name: "Micro-erst",
  39483. height: math.unit(1, "micrometer")
  39484. },
  39485. {
  39486. name: "Micro-er",
  39487. height: math.unit(1, "cm")
  39488. },
  39489. {
  39490. name: "Normal",
  39491. height: math.unit(175, "cm"),
  39492. default: true
  39493. },
  39494. {
  39495. name: "Macro",
  39496. height: math.unit(100, "m")
  39497. },
  39498. {
  39499. name: "Macro-er",
  39500. height: math.unit(1, "km")
  39501. },
  39502. {
  39503. name: "Macro-erst",
  39504. height: math.unit(10, "km")
  39505. },
  39506. {
  39507. name: "Macro-Macro",
  39508. height: math.unit(100, "km")
  39509. },
  39510. ]
  39511. ))
  39512. characterMakers.push(() => makeCharacter(
  39513. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39514. {
  39515. front: {
  39516. height: math.unit(11 + 9/12, "feet"),
  39517. weight: math.unit(935, "lb"),
  39518. name: "Front",
  39519. image: {
  39520. source: "./media/characters/kingsley/front.svg",
  39521. extra: 1803/1674,
  39522. bottom: 127/1930
  39523. }
  39524. },
  39525. frontNude: {
  39526. height: math.unit(11 + 9/12, "feet"),
  39527. weight: math.unit(935, "lb"),
  39528. name: "Front (Nude)",
  39529. image: {
  39530. source: "./media/characters/kingsley/front-nude.svg",
  39531. extra: 1803/1674,
  39532. bottom: 127/1930
  39533. }
  39534. },
  39535. },
  39536. [
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(11 + 9/12, "feet"),
  39540. default: true
  39541. },
  39542. ]
  39543. ))
  39544. characterMakers.push(() => makeCharacter(
  39545. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39546. {
  39547. side: {
  39548. height: math.unit(9, "feet"),
  39549. name: "Side",
  39550. image: {
  39551. source: "./media/characters/rymel/side.svg",
  39552. extra: 792/469,
  39553. bottom: 121/913
  39554. }
  39555. },
  39556. maw: {
  39557. height: math.unit(2.4, "meters"),
  39558. name: "Maw",
  39559. image: {
  39560. source: "./media/characters/rymel/maw.svg"
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "House Drake",
  39567. height: math.unit(2, "feet")
  39568. },
  39569. {
  39570. name: "Reduced",
  39571. height: math.unit(4.5, "feet")
  39572. },
  39573. {
  39574. name: "Normal",
  39575. height: math.unit(9, "feet"),
  39576. default: true
  39577. },
  39578. ]
  39579. ))
  39580. characterMakers.push(() => makeCharacter(
  39581. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39582. {
  39583. front: {
  39584. height: math.unit(1.74, "meters"),
  39585. weight: math.unit(55, "kg"),
  39586. name: "Front",
  39587. image: {
  39588. source: "./media/characters/rubus/front.svg",
  39589. extra: 1894/1742,
  39590. bottom: 44/1938
  39591. }
  39592. },
  39593. },
  39594. [
  39595. {
  39596. name: "Normal",
  39597. height: math.unit(1.74, "meters"),
  39598. default: true
  39599. },
  39600. ]
  39601. ))
  39602. characterMakers.push(() => makeCharacter(
  39603. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39604. {
  39605. front: {
  39606. height: math.unit(5 + 2/12, "feet"),
  39607. weight: math.unit(112, "lb"),
  39608. name: "Front",
  39609. image: {
  39610. source: "./media/characters/cassie-kingston/front.svg",
  39611. extra: 1438/1390,
  39612. bottom: 47/1485
  39613. }
  39614. },
  39615. },
  39616. [
  39617. {
  39618. name: "Normal",
  39619. height: math.unit(5 + 2/12, "feet"),
  39620. default: true
  39621. },
  39622. {
  39623. name: "Macro",
  39624. height: math.unit(128, "feet")
  39625. },
  39626. {
  39627. name: "Megamacro",
  39628. height: math.unit(2.56, "miles")
  39629. },
  39630. ]
  39631. ))
  39632. characterMakers.push(() => makeCharacter(
  39633. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39634. {
  39635. front: {
  39636. height: math.unit(7, "feet"),
  39637. name: "Front",
  39638. image: {
  39639. source: "./media/characters/fox/front.svg",
  39640. extra: 1798/1703,
  39641. bottom: 55/1853
  39642. }
  39643. },
  39644. back: {
  39645. height: math.unit(7, "feet"),
  39646. name: "Back",
  39647. image: {
  39648. source: "./media/characters/fox/back.svg",
  39649. extra: 1748/1649,
  39650. bottom: 32/1780
  39651. }
  39652. },
  39653. head: {
  39654. height: math.unit(1.95, "feet"),
  39655. name: "Head",
  39656. image: {
  39657. source: "./media/characters/fox/head.svg"
  39658. }
  39659. },
  39660. dick: {
  39661. height: math.unit(1.33, "feet"),
  39662. name: "Dick",
  39663. image: {
  39664. source: "./media/characters/fox/dick.svg"
  39665. }
  39666. },
  39667. foot: {
  39668. height: math.unit(1, "feet"),
  39669. name: "Foot",
  39670. image: {
  39671. source: "./media/characters/fox/foot.svg"
  39672. }
  39673. },
  39674. paw: {
  39675. height: math.unit(0.92, "feet"),
  39676. name: "Paw",
  39677. image: {
  39678. source: "./media/characters/fox/paw.svg"
  39679. }
  39680. },
  39681. },
  39682. [
  39683. {
  39684. name: "Small",
  39685. height: math.unit(3, "inches")
  39686. },
  39687. {
  39688. name: "\"Realistic\"",
  39689. height: math.unit(7, "feet")
  39690. },
  39691. {
  39692. name: "Normal",
  39693. height: math.unit(150, "feet"),
  39694. default: true
  39695. },
  39696. {
  39697. name: "BIG",
  39698. height: math.unit(1200, "feet")
  39699. },
  39700. {
  39701. name: "👀",
  39702. height: math.unit(5, "miles")
  39703. },
  39704. {
  39705. name: "👀👀👀",
  39706. height: math.unit(64, "miles")
  39707. },
  39708. ]
  39709. ))
  39710. characterMakers.push(() => makeCharacter(
  39711. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39712. {
  39713. front: {
  39714. height: math.unit(625, "feet"),
  39715. name: "Front",
  39716. image: {
  39717. source: "./media/characters/asonja-rossa/front.svg",
  39718. extra: 1833/1686,
  39719. bottom: 24/1857
  39720. }
  39721. },
  39722. back: {
  39723. height: math.unit(625, "feet"),
  39724. name: "Back",
  39725. image: {
  39726. source: "./media/characters/asonja-rossa/back.svg",
  39727. extra: 1852/1753,
  39728. bottom: 26/1878
  39729. }
  39730. },
  39731. },
  39732. [
  39733. {
  39734. name: "Macro",
  39735. height: math.unit(625, "feet"),
  39736. default: true
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39742. {
  39743. side: {
  39744. height: math.unit(8, "feet"),
  39745. name: "Side",
  39746. image: {
  39747. source: "./media/characters/rezukii/side.svg",
  39748. extra: 979/542,
  39749. bottom: 87/1066
  39750. }
  39751. },
  39752. sitting: {
  39753. height: math.unit(14.6, "feet"),
  39754. name: "Sitting",
  39755. image: {
  39756. source: "./media/characters/rezukii/sitting.svg",
  39757. extra: 1023/813,
  39758. bottom: 45/1068
  39759. }
  39760. },
  39761. },
  39762. [
  39763. {
  39764. name: "Tiny",
  39765. height: math.unit(2, "feet")
  39766. },
  39767. {
  39768. name: "Smol",
  39769. height: math.unit(4, "feet")
  39770. },
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(8, "feet"),
  39774. default: true
  39775. },
  39776. {
  39777. name: "Big",
  39778. height: math.unit(12, "feet")
  39779. },
  39780. {
  39781. name: "Macro",
  39782. height: math.unit(30, "feet")
  39783. },
  39784. ]
  39785. ))
  39786. characterMakers.push(() => makeCharacter(
  39787. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39788. {
  39789. front: {
  39790. height: math.unit(14, "feet"),
  39791. weight: math.unit(9.5, "tonnes"),
  39792. name: "Front",
  39793. image: {
  39794. source: "./media/characters/dawnheart/front.svg",
  39795. extra: 2792/2675,
  39796. bottom: 64/2856
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Normal",
  39803. height: math.unit(14, "feet"),
  39804. default: true
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39810. {
  39811. front: {
  39812. height: math.unit(1.7, "m"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/gladi/front.svg",
  39816. extra: 1460/1362,
  39817. bottom: 19/1479
  39818. }
  39819. },
  39820. back: {
  39821. height: math.unit(1.7, "m"),
  39822. name: "Back",
  39823. image: {
  39824. source: "./media/characters/gladi/back.svg",
  39825. extra: 1459/1357,
  39826. bottom: 12/1471
  39827. }
  39828. },
  39829. feral: {
  39830. height: math.unit(2.05, "m"),
  39831. name: "Feral",
  39832. image: {
  39833. source: "./media/characters/gladi/feral.svg",
  39834. extra: 821/557,
  39835. bottom: 91/912
  39836. }
  39837. },
  39838. },
  39839. [
  39840. {
  39841. name: "Shortest",
  39842. height: math.unit(70, "cm")
  39843. },
  39844. {
  39845. name: "Normal",
  39846. height: math.unit(1.7, "m")
  39847. },
  39848. {
  39849. name: "Macro",
  39850. height: math.unit(10, "m"),
  39851. default: true
  39852. },
  39853. {
  39854. name: "Tallest",
  39855. height: math.unit(200, "m")
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(5 + 7/12, "feet"),
  39864. weight: math.unit(2, "tons"),
  39865. name: "Front",
  39866. image: {
  39867. source: "./media/characters/erdno/front.svg",
  39868. extra: 1234/1129,
  39869. bottom: 35/1269
  39870. }
  39871. },
  39872. angled: {
  39873. height: math.unit(5 + 7/12, "feet"),
  39874. weight: math.unit(2, "tons"),
  39875. name: "Angled",
  39876. image: {
  39877. source: "./media/characters/erdno/angled.svg",
  39878. extra: 1185/1139,
  39879. bottom: 36/1221
  39880. }
  39881. },
  39882. side: {
  39883. height: math.unit(5 + 7/12, "feet"),
  39884. weight: math.unit(2, "tons"),
  39885. name: "Side",
  39886. image: {
  39887. source: "./media/characters/erdno/side.svg",
  39888. extra: 1191/1144,
  39889. bottom: 40/1231
  39890. }
  39891. },
  39892. back: {
  39893. height: math.unit(5 + 7/12, "feet"),
  39894. weight: math.unit(2, "tons"),
  39895. name: "Back",
  39896. image: {
  39897. source: "./media/characters/erdno/back.svg",
  39898. extra: 1202/1146,
  39899. bottom: 17/1219
  39900. }
  39901. },
  39902. frontNsfw: {
  39903. height: math.unit(5 + 7/12, "feet"),
  39904. weight: math.unit(2, "tons"),
  39905. name: "Front (NSFW)",
  39906. image: {
  39907. source: "./media/characters/erdno/front-nsfw.svg",
  39908. extra: 1234/1129,
  39909. bottom: 35/1269
  39910. }
  39911. },
  39912. angledNsfw: {
  39913. height: math.unit(5 + 7/12, "feet"),
  39914. weight: math.unit(2, "tons"),
  39915. name: "Angled (NSFW)",
  39916. image: {
  39917. source: "./media/characters/erdno/angled-nsfw.svg",
  39918. extra: 1185/1139,
  39919. bottom: 36/1221
  39920. }
  39921. },
  39922. sideNsfw: {
  39923. height: math.unit(5 + 7/12, "feet"),
  39924. weight: math.unit(2, "tons"),
  39925. name: "Side (NSFW)",
  39926. image: {
  39927. source: "./media/characters/erdno/side-nsfw.svg",
  39928. extra: 1191/1144,
  39929. bottom: 40/1231
  39930. }
  39931. },
  39932. backNsfw: {
  39933. height: math.unit(5 + 7/12, "feet"),
  39934. weight: math.unit(2, "tons"),
  39935. name: "Back (NSFW)",
  39936. image: {
  39937. source: "./media/characters/erdno/back-nsfw.svg",
  39938. extra: 1202/1146,
  39939. bottom: 17/1219
  39940. }
  39941. },
  39942. frontHyper: {
  39943. height: math.unit(5 + 7/12, "feet"),
  39944. weight: math.unit(2, "tons"),
  39945. name: "Front (Hyper)",
  39946. image: {
  39947. source: "./media/characters/erdno/front-hyper.svg",
  39948. extra: 1298/1136,
  39949. bottom: 35/1333
  39950. }
  39951. },
  39952. },
  39953. [
  39954. {
  39955. name: "Normal",
  39956. height: math.unit(5 + 7/12, "feet"),
  39957. default: true
  39958. },
  39959. {
  39960. name: "Big",
  39961. height: math.unit(5.7, "meters")
  39962. },
  39963. {
  39964. name: "Macro",
  39965. height: math.unit(5.7, "kilometers")
  39966. },
  39967. {
  39968. name: "Megamacro",
  39969. height: math.unit(5.7, "earths")
  39970. },
  39971. ]
  39972. ))
  39973. characterMakers.push(() => makeCharacter(
  39974. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39975. {
  39976. front: {
  39977. height: math.unit(5 + 10/12, "feet"),
  39978. weight: math.unit(150, "lb"),
  39979. name: "Front",
  39980. image: {
  39981. source: "./media/characters/jamie/front.svg",
  39982. extra: 1908/1768,
  39983. bottom: 19/1927
  39984. }
  39985. },
  39986. },
  39987. [
  39988. {
  39989. name: "Minimum",
  39990. height: math.unit(2, "cm")
  39991. },
  39992. {
  39993. name: "Micro",
  39994. height: math.unit(3, "inches")
  39995. },
  39996. {
  39997. name: "Normal",
  39998. height: math.unit(5 + 10/12, "feet"),
  39999. default: true
  40000. },
  40001. {
  40002. name: "Macro",
  40003. height: math.unit(150, "feet")
  40004. },
  40005. {
  40006. name: "Megamacro",
  40007. height: math.unit(10000, "m")
  40008. },
  40009. ]
  40010. ))
  40011. characterMakers.push(() => makeCharacter(
  40012. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40013. {
  40014. front: {
  40015. height: math.unit(2, "meters"),
  40016. weight: math.unit(100, "kg"),
  40017. name: "Front",
  40018. image: {
  40019. source: "./media/characters/shiron/front.svg",
  40020. extra: 2103/1985,
  40021. bottom: 98/2201
  40022. }
  40023. },
  40024. back: {
  40025. height: math.unit(2, "meters"),
  40026. weight: math.unit(100, "kg"),
  40027. name: "Back",
  40028. image: {
  40029. source: "./media/characters/shiron/back.svg",
  40030. extra: 2110/2015,
  40031. bottom: 89/2199
  40032. }
  40033. },
  40034. hand: {
  40035. height: math.unit(0.96, "feet"),
  40036. name: "Hand",
  40037. image: {
  40038. source: "./media/characters/shiron/hand.svg"
  40039. }
  40040. },
  40041. foot: {
  40042. height: math.unit(1.464, "feet"),
  40043. name: "Foot",
  40044. image: {
  40045. source: "./media/characters/shiron/foot.svg"
  40046. }
  40047. },
  40048. },
  40049. [
  40050. {
  40051. name: "Normal",
  40052. height: math.unit(2, "meters")
  40053. },
  40054. {
  40055. name: "Macro",
  40056. height: math.unit(500, "meters"),
  40057. default: true
  40058. },
  40059. {
  40060. name: "Megamacro",
  40061. height: math.unit(20, "km")
  40062. },
  40063. ]
  40064. ))
  40065. characterMakers.push(() => makeCharacter(
  40066. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40067. {
  40068. front: {
  40069. height: math.unit(6, "feet"),
  40070. name: "Front",
  40071. image: {
  40072. source: "./media/characters/sam/front.svg",
  40073. extra: 849/826,
  40074. bottom: 19/868
  40075. }
  40076. },
  40077. },
  40078. [
  40079. {
  40080. name: "Normal",
  40081. height: math.unit(6, "feet"),
  40082. default: true
  40083. },
  40084. ]
  40085. ))
  40086. characterMakers.push(() => makeCharacter(
  40087. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40088. {
  40089. front: {
  40090. height: math.unit(8 + 4/12, "feet"),
  40091. weight: math.unit(122, "kg"),
  40092. name: "Front",
  40093. image: {
  40094. source: "./media/characters/namori-kurogawa/front.svg",
  40095. extra: 1894/1576,
  40096. bottom: 34/1928
  40097. }
  40098. },
  40099. },
  40100. [
  40101. {
  40102. name: "Normal",
  40103. height: math.unit(8 + 4/12, "feet"),
  40104. default: true
  40105. },
  40106. ]
  40107. ))
  40108. characterMakers.push(() => makeCharacter(
  40109. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40110. {
  40111. front: {
  40112. height: math.unit(9, "feet"),
  40113. weight: math.unit(621, "lb"),
  40114. name: "Front",
  40115. image: {
  40116. source: "./media/characters/unmru/front.svg",
  40117. extra: 1853/1747,
  40118. bottom: 73/1926
  40119. }
  40120. },
  40121. side: {
  40122. height: math.unit(9, "feet"),
  40123. weight: math.unit(621, "lb"),
  40124. name: "Side",
  40125. image: {
  40126. source: "./media/characters/unmru/side.svg",
  40127. extra: 1781/1671,
  40128. bottom: 127/1908
  40129. }
  40130. },
  40131. back: {
  40132. height: math.unit(9, "feet"),
  40133. weight: math.unit(621, "lb"),
  40134. name: "Back",
  40135. image: {
  40136. source: "./media/characters/unmru/back.svg",
  40137. extra: 1894/1765,
  40138. bottom: 75/1969
  40139. }
  40140. },
  40141. dick: {
  40142. height: math.unit(3, "feet"),
  40143. weight: math.unit(35, "lb"),
  40144. name: "Dick",
  40145. image: {
  40146. source: "./media/characters/unmru/dick.svg"
  40147. }
  40148. },
  40149. },
  40150. [
  40151. {
  40152. name: "Normal",
  40153. height: math.unit(9, "feet")
  40154. },
  40155. {
  40156. name: "Natural",
  40157. height: math.unit(27, "feet"),
  40158. default: true
  40159. },
  40160. {
  40161. name: "Giant",
  40162. height: math.unit(90, "feet")
  40163. },
  40164. {
  40165. name: "Kaiju",
  40166. height: math.unit(270, "feet")
  40167. },
  40168. {
  40169. name: "Macro",
  40170. height: math.unit(900, "feet")
  40171. },
  40172. {
  40173. name: "Macro+",
  40174. height: math.unit(2700, "feet")
  40175. },
  40176. {
  40177. name: "Megamacro",
  40178. height: math.unit(9000, "feet")
  40179. },
  40180. {
  40181. name: "City-Crushing",
  40182. height: math.unit(27000, "feet")
  40183. },
  40184. {
  40185. name: "Mountain-Mashing",
  40186. height: math.unit(90000, "feet")
  40187. },
  40188. {
  40189. name: "Earth-Eclipsing",
  40190. height: math.unit(2.7e8, "feet")
  40191. },
  40192. {
  40193. name: "Sol-Swallowing",
  40194. height: math.unit(9e10, "feet")
  40195. },
  40196. {
  40197. name: "Majoris-Munching",
  40198. height: math.unit(2.7e13, "feet")
  40199. },
  40200. ]
  40201. ))
  40202. characterMakers.push(() => makeCharacter(
  40203. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40204. {
  40205. front: {
  40206. height: math.unit(1, "inch"),
  40207. name: "Front",
  40208. image: {
  40209. source: "./media/characters/squeaks-mouse/front.svg",
  40210. extra: 352/308,
  40211. bottom: 25/377
  40212. }
  40213. },
  40214. },
  40215. [
  40216. {
  40217. name: "Micro",
  40218. height: math.unit(1, "inch"),
  40219. default: true
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40225. {
  40226. side: {
  40227. height: math.unit(35, "feet"),
  40228. name: "Side",
  40229. image: {
  40230. source: "./media/characters/sayko/side.svg",
  40231. extra: 1697/1021,
  40232. bottom: 82/1779
  40233. }
  40234. },
  40235. head: {
  40236. height: math.unit(16, "feet"),
  40237. name: "Head",
  40238. image: {
  40239. source: "./media/characters/sayko/head.svg"
  40240. }
  40241. },
  40242. forepaw: {
  40243. height: math.unit(7.85, "feet"),
  40244. name: "Forepaw",
  40245. image: {
  40246. source: "./media/characters/sayko/forepaw.svg"
  40247. }
  40248. },
  40249. hindpaw: {
  40250. height: math.unit(8.8, "feet"),
  40251. name: "Hindpaw",
  40252. image: {
  40253. source: "./media/characters/sayko/hindpaw.svg"
  40254. }
  40255. },
  40256. },
  40257. [
  40258. {
  40259. name: "Normal",
  40260. height: math.unit(35, "feet"),
  40261. default: true
  40262. },
  40263. {
  40264. name: "Colossus",
  40265. height: math.unit(100, "meters")
  40266. },
  40267. {
  40268. name: "\"Small\" Deity",
  40269. height: math.unit(1, "km")
  40270. },
  40271. {
  40272. name: "\"Large\" Deity",
  40273. height: math.unit(15, "km")
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40279. {
  40280. front: {
  40281. height: math.unit(6, "feet"),
  40282. weight: math.unit(250, "lb"),
  40283. name: "Front",
  40284. image: {
  40285. source: "./media/characters/mukiro/front.svg",
  40286. extra: 1368/1310,
  40287. bottom: 34/1402
  40288. }
  40289. },
  40290. },
  40291. [
  40292. {
  40293. name: "Normal",
  40294. height: math.unit(6, "feet"),
  40295. default: true
  40296. },
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40301. {
  40302. front: {
  40303. height: math.unit(12 + 4/12, "feet"),
  40304. name: "Front",
  40305. image: {
  40306. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40307. extra: 1346/1311,
  40308. bottom: 65/1411
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Base",
  40315. height: math.unit(12 + 4/12, "feet"),
  40316. default: true
  40317. },
  40318. {
  40319. name: "Macro",
  40320. height: math.unit(150, "feet")
  40321. },
  40322. {
  40323. name: "Mega",
  40324. height: math.unit(2, "miles")
  40325. },
  40326. {
  40327. name: "Demi God",
  40328. height: math.unit(4, "AU")
  40329. },
  40330. {
  40331. name: "God Size",
  40332. height: math.unit(1, "universe")
  40333. },
  40334. ]
  40335. ))
  40336. characterMakers.push(() => makeCharacter(
  40337. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40338. {
  40339. front: {
  40340. height: math.unit(3 + 3/12, "feet"),
  40341. weight: math.unit(88, "lb"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/trey/front.svg",
  40345. extra: 1815/1509,
  40346. bottom: 60/1875
  40347. }
  40348. },
  40349. },
  40350. [
  40351. {
  40352. name: "Normal",
  40353. height: math.unit(3 + 3/12, "feet"),
  40354. default: true
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40360. {
  40361. front: {
  40362. height: math.unit(4, "meters"),
  40363. name: "Front",
  40364. image: {
  40365. source: "./media/characters/adelonda/front.svg",
  40366. extra: 1077/982,
  40367. bottom: 39/1116
  40368. }
  40369. },
  40370. back: {
  40371. height: math.unit(4, "meters"),
  40372. name: "Back",
  40373. image: {
  40374. source: "./media/characters/adelonda/back.svg",
  40375. extra: 1105/1003,
  40376. bottom: 25/1130
  40377. }
  40378. },
  40379. feral: {
  40380. height: math.unit(40/1.5, "meters"),
  40381. name: "Feral",
  40382. image: {
  40383. source: "./media/characters/adelonda/feral.svg",
  40384. extra: 597/271,
  40385. bottom: 387/984
  40386. }
  40387. },
  40388. },
  40389. [
  40390. {
  40391. name: "Normal",
  40392. height: math.unit(4, "meters"),
  40393. default: true
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(8 + 4/12, "feet"),
  40402. weight: math.unit(670, "lb"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/acadiel/front.svg",
  40406. extra: 1901/1595,
  40407. bottom: 142/2043
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Normal",
  40414. height: math.unit(8 + 4/12, "feet"),
  40415. default: true
  40416. },
  40417. {
  40418. name: "Macro",
  40419. height: math.unit(200, "feet")
  40420. },
  40421. ]
  40422. ))
  40423. characterMakers.push(() => makeCharacter(
  40424. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40425. {
  40426. front: {
  40427. height: math.unit(6 + 2/12, "feet"),
  40428. weight: math.unit(185, "lb"),
  40429. name: "Front",
  40430. image: {
  40431. source: "./media/characters/kayne-ein/front.svg",
  40432. extra: 1780/1560,
  40433. bottom: 81/1861
  40434. }
  40435. },
  40436. },
  40437. [
  40438. {
  40439. name: "Normal",
  40440. height: math.unit(6 + 2/12, "feet"),
  40441. default: true
  40442. },
  40443. {
  40444. name: "Transformation Stage",
  40445. height: math.unit(15, "feet")
  40446. },
  40447. {
  40448. name: "Macro",
  40449. height: math.unit(150, "feet")
  40450. },
  40451. {
  40452. name: "Earth's Shadow",
  40453. height: math.unit(6200, "miles")
  40454. },
  40455. {
  40456. name: "Universal Demon",
  40457. height: math.unit(28e9, "parsecs")
  40458. },
  40459. {
  40460. name: "Multiverse God",
  40461. height: math.unit(3, "multiverses")
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40467. {
  40468. front: {
  40469. height: math.unit(5 + 5/12, "feet"),
  40470. name: "Front",
  40471. image: {
  40472. source: "./media/characters/fawn/front.svg",
  40473. extra: 1873/1731,
  40474. bottom: 95/1968
  40475. }
  40476. },
  40477. back: {
  40478. height: math.unit(5 + 5/12, "feet"),
  40479. name: "Back",
  40480. image: {
  40481. source: "./media/characters/fawn/back.svg",
  40482. extra: 1813/1700,
  40483. bottom: 14/1827
  40484. }
  40485. },
  40486. hoof: {
  40487. height: math.unit(1.45, "feet"),
  40488. name: "Hoof",
  40489. image: {
  40490. source: "./media/characters/fawn/hoof.svg"
  40491. }
  40492. },
  40493. },
  40494. [
  40495. {
  40496. name: "Normal",
  40497. height: math.unit(5 + 5/12, "feet"),
  40498. default: true
  40499. },
  40500. ]
  40501. ))
  40502. characterMakers.push(() => makeCharacter(
  40503. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40504. {
  40505. front: {
  40506. height: math.unit(2 + 5/12, "feet"),
  40507. name: "Front",
  40508. image: {
  40509. source: "./media/characters/orion/front.svg",
  40510. extra: 1366/1304,
  40511. bottom: 43/1409
  40512. }
  40513. },
  40514. paw: {
  40515. height: math.unit(0.52, "feet"),
  40516. name: "Paw",
  40517. image: {
  40518. source: "./media/characters/orion/paw.svg"
  40519. }
  40520. },
  40521. },
  40522. [
  40523. {
  40524. name: "Normal",
  40525. height: math.unit(2 + 5/12, "feet"),
  40526. default: true
  40527. },
  40528. ]
  40529. ))
  40530. characterMakers.push(() => makeCharacter(
  40531. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40532. {
  40533. front: {
  40534. height: math.unit(5 + 10/12, "feet"),
  40535. name: "Front",
  40536. image: {
  40537. source: "./media/characters/vera/front.svg",
  40538. extra: 1680/1575,
  40539. bottom: 49/1729
  40540. }
  40541. },
  40542. back: {
  40543. height: math.unit(5 + 10/12, "feet"),
  40544. name: "Back",
  40545. image: {
  40546. source: "./media/characters/vera/back.svg",
  40547. extra: 1700/1588,
  40548. bottom: 18/1718
  40549. }
  40550. },
  40551. arcanine: {
  40552. height: math.unit(6 + 8/12, "feet"),
  40553. name: "Arcanine",
  40554. image: {
  40555. source: "./media/characters/vera/arcanine.svg",
  40556. extra: 1590/1511,
  40557. bottom: 71/1661
  40558. }
  40559. },
  40560. maw: {
  40561. height: math.unit(0.82, "feet"),
  40562. name: "Maw",
  40563. image: {
  40564. source: "./media/characters/vera/maw.svg"
  40565. }
  40566. },
  40567. mawArcanine: {
  40568. height: math.unit(0.97, "feet"),
  40569. name: "Maw (Arcanine)",
  40570. image: {
  40571. source: "./media/characters/vera/maw-arcanine.svg"
  40572. }
  40573. },
  40574. paw: {
  40575. height: math.unit(0.75, "feet"),
  40576. name: "Paw",
  40577. image: {
  40578. source: "./media/characters/vera/paw.svg"
  40579. }
  40580. },
  40581. pawprint: {
  40582. height: math.unit(0.52, "feet"),
  40583. name: "Pawprint",
  40584. image: {
  40585. source: "./media/characters/vera/pawprint.svg"
  40586. }
  40587. },
  40588. },
  40589. [
  40590. {
  40591. name: "Normal",
  40592. height: math.unit(5 + 10/12, "feet"),
  40593. default: true
  40594. },
  40595. {
  40596. name: "Macro",
  40597. height: math.unit(75, "feet")
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(4, "feet"),
  40606. weight: math.unit(40, "lb"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/orvan-rabbit/front.svg",
  40610. extra: 1896/1642,
  40611. bottom: 29/1925
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Normal",
  40618. height: math.unit(4, "feet"),
  40619. default: true
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40625. {
  40626. front: {
  40627. height: math.unit(6, "feet"),
  40628. weight: math.unit(168, "lb"),
  40629. name: "Front",
  40630. image: {
  40631. source: "./media/characters/lisa/front.svg",
  40632. extra: 2065/1867,
  40633. bottom: 46/2111
  40634. }
  40635. },
  40636. back: {
  40637. height: math.unit(6, "feet"),
  40638. weight: math.unit(168, "lb"),
  40639. name: "Back",
  40640. image: {
  40641. source: "./media/characters/lisa/back.svg",
  40642. extra: 1982/1838,
  40643. bottom: 29/2011
  40644. }
  40645. },
  40646. maw: {
  40647. height: math.unit(0.81, "feet"),
  40648. name: "Maw",
  40649. image: {
  40650. source: "./media/characters/lisa/maw.svg"
  40651. }
  40652. },
  40653. paw: {
  40654. height: math.unit(0.9, "feet"),
  40655. name: "Paw",
  40656. image: {
  40657. source: "./media/characters/lisa/paw.svg"
  40658. }
  40659. },
  40660. caribousune: {
  40661. height: math.unit(7 + 2/12, "feet"),
  40662. weight: math.unit(268, "lb"),
  40663. name: "Caribousune",
  40664. image: {
  40665. source: "./media/characters/lisa/caribousune.svg",
  40666. extra: 1843/1633,
  40667. bottom: 29/1872
  40668. }
  40669. },
  40670. frontCaribousune: {
  40671. height: math.unit(7 + 2/12, "feet"),
  40672. weight: math.unit(268, "lb"),
  40673. name: "Front (Caribousune)",
  40674. image: {
  40675. source: "./media/characters/lisa/front-caribousune.svg",
  40676. extra: 1818/1638,
  40677. bottom: 52/1870
  40678. }
  40679. },
  40680. sideCaribousune: {
  40681. height: math.unit(7 + 2/12, "feet"),
  40682. weight: math.unit(268, "lb"),
  40683. name: "Side (Caribousune)",
  40684. image: {
  40685. source: "./media/characters/lisa/side-caribousune.svg",
  40686. extra: 1851/1635,
  40687. bottom: 16/1867
  40688. }
  40689. },
  40690. backCaribousune: {
  40691. height: math.unit(7 + 2/12, "feet"),
  40692. weight: math.unit(268, "lb"),
  40693. name: "Back (Caribousune)",
  40694. image: {
  40695. source: "./media/characters/lisa/back-caribousune.svg",
  40696. extra: 1801/1604,
  40697. bottom: 44/1845
  40698. }
  40699. },
  40700. caribou: {
  40701. height: math.unit(7 + 2/12, "feet"),
  40702. weight: math.unit(268, "lb"),
  40703. name: "Caribou",
  40704. image: {
  40705. source: "./media/characters/lisa/caribou.svg",
  40706. extra: 1843/1633,
  40707. bottom: 29/1872
  40708. }
  40709. },
  40710. frontCaribou: {
  40711. height: math.unit(7 + 2/12, "feet"),
  40712. weight: math.unit(268, "lb"),
  40713. name: "Front (Caribou)",
  40714. image: {
  40715. source: "./media/characters/lisa/front-caribou.svg",
  40716. extra: 1818/1638,
  40717. bottom: 52/1870
  40718. }
  40719. },
  40720. sideCaribou: {
  40721. height: math.unit(7 + 2/12, "feet"),
  40722. weight: math.unit(268, "lb"),
  40723. name: "Side (Caribou)",
  40724. image: {
  40725. source: "./media/characters/lisa/side-caribou.svg",
  40726. extra: 1851/1635,
  40727. bottom: 16/1867
  40728. }
  40729. },
  40730. backCaribou: {
  40731. height: math.unit(7 + 2/12, "feet"),
  40732. weight: math.unit(268, "lb"),
  40733. name: "Back (Caribou)",
  40734. image: {
  40735. source: "./media/characters/lisa/back-caribou.svg",
  40736. extra: 1801/1604,
  40737. bottom: 44/1845
  40738. }
  40739. },
  40740. mawCaribou: {
  40741. height: math.unit(1.45, "feet"),
  40742. name: "Maw (Caribou)",
  40743. image: {
  40744. source: "./media/characters/lisa/maw-caribou.svg"
  40745. }
  40746. },
  40747. mawCaribousune: {
  40748. height: math.unit(1.45, "feet"),
  40749. name: "Maw (Caribousune)",
  40750. image: {
  40751. source: "./media/characters/lisa/maw-caribousune.svg"
  40752. }
  40753. },
  40754. pawCaribousune: {
  40755. height: math.unit(1.61, "feet"),
  40756. name: "Paw (Caribou)",
  40757. image: {
  40758. source: "./media/characters/lisa/paw-caribousune.svg"
  40759. }
  40760. },
  40761. },
  40762. [
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(6, "feet")
  40766. },
  40767. {
  40768. name: "God Size",
  40769. height: math.unit(72, "feet"),
  40770. default: true
  40771. },
  40772. {
  40773. name: "Towering",
  40774. height: math.unit(288, "feet")
  40775. },
  40776. {
  40777. name: "City Size",
  40778. height: math.unit(48384, "feet")
  40779. },
  40780. {
  40781. name: "Continental",
  40782. height: math.unit(4200, "miles")
  40783. },
  40784. {
  40785. name: "Planet Eater",
  40786. height: math.unit(42, "earths")
  40787. },
  40788. {
  40789. name: "Star Swallower",
  40790. height: math.unit(42, "solarradii")
  40791. },
  40792. {
  40793. name: "System Swallower",
  40794. height: math.unit(84000, "AU")
  40795. },
  40796. {
  40797. name: "Galaxy Gobbler",
  40798. height: math.unit(42, "galaxies")
  40799. },
  40800. {
  40801. name: "Universe Devourer",
  40802. height: math.unit(42, "universes")
  40803. },
  40804. {
  40805. name: "Multiverse Muncher",
  40806. height: math.unit(42, "multiverses")
  40807. },
  40808. ]
  40809. ))
  40810. characterMakers.push(() => makeCharacter(
  40811. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40812. {
  40813. front: {
  40814. height: math.unit(36, "feet"),
  40815. name: "Front",
  40816. image: {
  40817. source: "./media/characters/shadow-rat/front.svg",
  40818. extra: 1845/1758,
  40819. bottom: 83/1928
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Macro",
  40826. height: math.unit(36, "feet"),
  40827. default: true
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40833. {
  40834. side: {
  40835. height: math.unit(8, "feet"),
  40836. weight: math.unit(2630, "lb"),
  40837. name: "Side",
  40838. image: {
  40839. source: "./media/characters/torallia/side.svg",
  40840. extra: 2164/2021,
  40841. bottom: 371/2535
  40842. }
  40843. },
  40844. },
  40845. [
  40846. {
  40847. name: "Mortal Interaction",
  40848. height: math.unit(8, "feet")
  40849. },
  40850. {
  40851. name: "Natural",
  40852. height: math.unit(24, "feet"),
  40853. default: true
  40854. },
  40855. {
  40856. name: "Giant",
  40857. height: math.unit(80, "feet")
  40858. },
  40859. {
  40860. name: "Kaiju",
  40861. height: math.unit(240, "feet")
  40862. },
  40863. {
  40864. name: "Macro",
  40865. height: math.unit(800, "feet")
  40866. },
  40867. {
  40868. name: "Macro+",
  40869. height: math.unit(2400, "feet")
  40870. },
  40871. {
  40872. name: "Macro++",
  40873. height: math.unit(8000, "feet")
  40874. },
  40875. {
  40876. name: "City-Crushing",
  40877. height: math.unit(24000, "feet")
  40878. },
  40879. {
  40880. name: "Mountain-Mashing",
  40881. height: math.unit(80000, "feet")
  40882. },
  40883. {
  40884. name: "District Demolisher",
  40885. height: math.unit(240000, "feet")
  40886. },
  40887. {
  40888. name: "Tri-County Terror",
  40889. height: math.unit(800000, "feet")
  40890. },
  40891. {
  40892. name: "State Smasher",
  40893. height: math.unit(2.4e6, "feet")
  40894. },
  40895. {
  40896. name: "Nation Nemesis",
  40897. height: math.unit(8e6, "feet")
  40898. },
  40899. {
  40900. name: "Continent Cracker",
  40901. height: math.unit(2.4e7, "feet")
  40902. },
  40903. {
  40904. name: "Planet-Pillaging",
  40905. height: math.unit(8e7, "feet")
  40906. },
  40907. {
  40908. name: "Earth-Eclipsing",
  40909. height: math.unit(2.4e8, "feet")
  40910. },
  40911. {
  40912. name: "Jovian-Jostling",
  40913. height: math.unit(8e8, "feet")
  40914. },
  40915. {
  40916. name: "Gas Giant Gulper",
  40917. height: math.unit(2.4e9, "feet")
  40918. },
  40919. {
  40920. name: "Astral Annihilator",
  40921. height: math.unit(8e9, "feet")
  40922. },
  40923. {
  40924. name: "Celestial Conqueror",
  40925. height: math.unit(2.4e10, "feet")
  40926. },
  40927. {
  40928. name: "Sol-Swallowing",
  40929. height: math.unit(8e10, "feet")
  40930. },
  40931. {
  40932. name: "Hunter of the Heavens",
  40933. height: math.unit(2.4e13, "feet")
  40934. },
  40935. ]
  40936. ))
  40937. characterMakers.push(() => makeCharacter(
  40938. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40939. {
  40940. front: {
  40941. height: math.unit(6 + 8/12, "feet"),
  40942. weight: math.unit(250, "kilograms"),
  40943. volume: math.unit(28, "liters"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/rebecca-pawlson/front.svg",
  40947. extra: 1737/1596,
  40948. bottom: 107/1844
  40949. }
  40950. },
  40951. back: {
  40952. height: math.unit(6 + 8/12, "feet"),
  40953. weight: math.unit(250, "kilograms"),
  40954. volume: math.unit(28, "liters"),
  40955. name: "Back",
  40956. image: {
  40957. source: "./media/characters/rebecca-pawlson/back.svg",
  40958. extra: 1702/1523,
  40959. bottom: 86/1788
  40960. }
  40961. },
  40962. },
  40963. [
  40964. {
  40965. name: "Normal",
  40966. height: math.unit(6 + 8/12, "feet")
  40967. },
  40968. {
  40969. name: "Mini Macro",
  40970. height: math.unit(10, "feet"),
  40971. default: true
  40972. },
  40973. {
  40974. name: "Macro",
  40975. height: math.unit(100, "feet")
  40976. },
  40977. {
  40978. name: "Mega Macro",
  40979. height: math.unit(2500, "feet")
  40980. },
  40981. {
  40982. name: "Giga Macro",
  40983. height: math.unit(50, "miles")
  40984. },
  40985. ]
  40986. ))
  40987. characterMakers.push(() => makeCharacter(
  40988. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40989. {
  40990. front: {
  40991. height: math.unit(7 + 6/12, "feet"),
  40992. weight: math.unit(600, "lb"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/moxie-nova/front.svg",
  40996. extra: 1734/1652,
  40997. bottom: 41/1775
  40998. }
  40999. },
  41000. },
  41001. [
  41002. {
  41003. name: "Normal",
  41004. height: math.unit(7 + 6/12, "feet"),
  41005. default: true
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41011. {
  41012. goat: {
  41013. height: math.unit(4, "feet"),
  41014. weight: math.unit(180, "lb"),
  41015. name: "Goat",
  41016. image: {
  41017. source: "./media/characters/tiffany/goat.svg",
  41018. extra: 1845/1595,
  41019. bottom: 106/1951
  41020. }
  41021. },
  41022. front: {
  41023. height: math.unit(5, "feet"),
  41024. weight: math.unit(150, "lb"),
  41025. name: "Foxcoon",
  41026. image: {
  41027. source: "./media/characters/tiffany/foxcoon.svg",
  41028. extra: 1941/1845,
  41029. bottom: 58/1999
  41030. }
  41031. },
  41032. },
  41033. [
  41034. {
  41035. name: "Normal",
  41036. height: math.unit(5, "feet"),
  41037. default: true
  41038. },
  41039. ]
  41040. ))
  41041. characterMakers.push(() => makeCharacter(
  41042. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41043. {
  41044. front: {
  41045. height: math.unit(8, "feet"),
  41046. weight: math.unit(300, "lb"),
  41047. name: "Front",
  41048. image: {
  41049. source: "./media/characters/raxinath/front.svg",
  41050. extra: 1407/1309,
  41051. bottom: 39/1446
  41052. }
  41053. },
  41054. back: {
  41055. height: math.unit(8, "feet"),
  41056. weight: math.unit(300, "lb"),
  41057. name: "Back",
  41058. image: {
  41059. source: "./media/characters/raxinath/back.svg",
  41060. extra: 1405/1315,
  41061. bottom: 9/1414
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Speck",
  41068. height: math.unit(0.5, "nm")
  41069. },
  41070. {
  41071. name: "Micro",
  41072. height: math.unit(3, "inches")
  41073. },
  41074. {
  41075. name: "Kobold",
  41076. height: math.unit(3, "feet")
  41077. },
  41078. {
  41079. name: "Normal",
  41080. height: math.unit(8, "feet"),
  41081. default: true
  41082. },
  41083. {
  41084. name: "Giant",
  41085. height: math.unit(50, "feet")
  41086. },
  41087. {
  41088. name: "Macro",
  41089. height: math.unit(1000, "feet")
  41090. },
  41091. {
  41092. name: "Megamacro",
  41093. height: math.unit(1, "mile")
  41094. },
  41095. ]
  41096. ))
  41097. characterMakers.push(() => makeCharacter(
  41098. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41099. {
  41100. front: {
  41101. height: math.unit(10, "feet"),
  41102. weight: math.unit(1442, "lb"),
  41103. name: "Front",
  41104. image: {
  41105. source: "./media/characters/mal-dragon/front.svg",
  41106. extra: 1515/1444,
  41107. bottom: 113/1628
  41108. }
  41109. },
  41110. back: {
  41111. height: math.unit(10, "feet"),
  41112. weight: math.unit(1442, "lb"),
  41113. name: "Back",
  41114. image: {
  41115. source: "./media/characters/mal-dragon/back.svg",
  41116. extra: 1527/1434,
  41117. bottom: 25/1552
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Mortal Interaction",
  41124. height: math.unit(10, "feet"),
  41125. default: true
  41126. },
  41127. {
  41128. name: "Large",
  41129. height: math.unit(30, "feet")
  41130. },
  41131. {
  41132. name: "Kaiju",
  41133. height: math.unit(300, "feet")
  41134. },
  41135. {
  41136. name: "Megamacro",
  41137. height: math.unit(10000, "feet")
  41138. },
  41139. {
  41140. name: "Continent Cracker",
  41141. height: math.unit(30000000, "feet")
  41142. },
  41143. {
  41144. name: "Sol-Swallowing",
  41145. height: math.unit(1e11, "feet")
  41146. },
  41147. {
  41148. name: "Light Universal",
  41149. height: math.unit(5, "universes")
  41150. },
  41151. {
  41152. name: "Universe Atoms",
  41153. height: math.unit(1.829e9, "universes")
  41154. },
  41155. {
  41156. name: "Light Multiversal",
  41157. height: math.unit(5, "multiverses")
  41158. },
  41159. {
  41160. name: "Multiverse Atoms",
  41161. height: math.unit(1.829e9, "multiverses")
  41162. },
  41163. {
  41164. name: "Fabric of Time",
  41165. height: math.unit(1e262, "multiverses")
  41166. },
  41167. ]
  41168. ))
  41169. characterMakers.push(() => makeCharacter(
  41170. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41171. {
  41172. front: {
  41173. height: math.unit(9, "feet"),
  41174. weight: math.unit(1050, "lb"),
  41175. name: "Front",
  41176. image: {
  41177. source: "./media/characters/tabitha/front.svg",
  41178. extra: 2083/1994,
  41179. bottom: 68/2151
  41180. }
  41181. },
  41182. },
  41183. [
  41184. {
  41185. name: "Baseline",
  41186. height: math.unit(9, "feet"),
  41187. default: true
  41188. },
  41189. {
  41190. name: "Giant",
  41191. height: math.unit(90, "feet")
  41192. },
  41193. {
  41194. name: "Macro",
  41195. height: math.unit(900, "feet")
  41196. },
  41197. {
  41198. name: "Megamacro",
  41199. height: math.unit(9000, "feet")
  41200. },
  41201. {
  41202. name: "City-Crushing",
  41203. height: math.unit(27000, "feet")
  41204. },
  41205. {
  41206. name: "Mountain-Mashing",
  41207. height: math.unit(90000, "feet")
  41208. },
  41209. {
  41210. name: "Nation Nemesis",
  41211. height: math.unit(9e6, "feet")
  41212. },
  41213. {
  41214. name: "Continent Cracker",
  41215. height: math.unit(27e6, "feet")
  41216. },
  41217. {
  41218. name: "Earth-Eclipsing",
  41219. height: math.unit(2.7e8, "feet")
  41220. },
  41221. {
  41222. name: "Gas Giant Gulper",
  41223. height: math.unit(2.7e9, "feet")
  41224. },
  41225. {
  41226. name: "Sol-Swallowing",
  41227. height: math.unit(9e10, "feet")
  41228. },
  41229. {
  41230. name: "Galaxy Gulper",
  41231. height: math.unit(9, "galaxies")
  41232. },
  41233. {
  41234. name: "Cosmos Churner",
  41235. height: math.unit(9, "universes")
  41236. },
  41237. ]
  41238. ))
  41239. characterMakers.push(() => makeCharacter(
  41240. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41241. {
  41242. front: {
  41243. height: math.unit(160, "cm"),
  41244. weight: math.unit(55, "kg"),
  41245. name: "Front",
  41246. image: {
  41247. source: "./media/characters/tow/front.svg",
  41248. extra: 1751/1722,
  41249. bottom: 74/1825
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Norm",
  41256. height: math.unit(160, "cm")
  41257. },
  41258. {
  41259. name: "Casual",
  41260. height: math.unit(3200, "m"),
  41261. default: true
  41262. },
  41263. {
  41264. name: "Show-Off",
  41265. height: math.unit(160, "km")
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41271. {
  41272. front: {
  41273. height: math.unit(7 + 11/12, "feet"),
  41274. weight: math.unit(342.8, "lb"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/vivian-orca-dragon/front.svg",
  41278. extra: 1890/1865,
  41279. bottom: 28/1918
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Micro",
  41286. height: math.unit(5, "inches")
  41287. },
  41288. {
  41289. name: "Normal",
  41290. height: math.unit(7 + 11/12, "feet"),
  41291. default: true
  41292. },
  41293. {
  41294. name: "Macro",
  41295. height: math.unit(395 + 7/12, "feet")
  41296. },
  41297. ]
  41298. ))
  41299. characterMakers.push(() => makeCharacter(
  41300. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41301. {
  41302. side: {
  41303. height: math.unit(10, "feet"),
  41304. weight: math.unit(1442, "lb"),
  41305. name: "Side",
  41306. image: {
  41307. source: "./media/characters/lotherakon/side.svg",
  41308. extra: 1604/1497,
  41309. bottom: 89/1693
  41310. }
  41311. },
  41312. },
  41313. [
  41314. {
  41315. name: "Mortal Interaction",
  41316. height: math.unit(10, "feet")
  41317. },
  41318. {
  41319. name: "Large",
  41320. height: math.unit(30, "feet"),
  41321. default: true
  41322. },
  41323. {
  41324. name: "Giant",
  41325. height: math.unit(100, "feet")
  41326. },
  41327. {
  41328. name: "Kaiju",
  41329. height: math.unit(300, "feet")
  41330. },
  41331. {
  41332. name: "Macro",
  41333. height: math.unit(1000, "feet")
  41334. },
  41335. {
  41336. name: "Macro+",
  41337. height: math.unit(3000, "feet")
  41338. },
  41339. {
  41340. name: "Megamacro",
  41341. height: math.unit(10000, "feet")
  41342. },
  41343. {
  41344. name: "City-Crushing",
  41345. height: math.unit(30000, "feet")
  41346. },
  41347. {
  41348. name: "Continent Cracker",
  41349. height: math.unit(30e6, "feet")
  41350. },
  41351. {
  41352. name: "Earth Eclipsing",
  41353. height: math.unit(3e8, "feet")
  41354. },
  41355. {
  41356. name: "Gas Giant Gulper",
  41357. height: math.unit(3e9, "feet")
  41358. },
  41359. {
  41360. name: "Sol-Swallowing",
  41361. height: math.unit(1e11, "feet")
  41362. },
  41363. {
  41364. name: "System Swallower",
  41365. height: math.unit(3e14, "feet")
  41366. },
  41367. {
  41368. name: "Galaxy Gulper",
  41369. height: math.unit(10, "galaxies")
  41370. },
  41371. {
  41372. name: "Light Universal",
  41373. height: math.unit(5, "universes")
  41374. },
  41375. {
  41376. name: "Universe Palm",
  41377. height: math.unit(20, "universes")
  41378. },
  41379. {
  41380. name: "Light Multiversal",
  41381. height: math.unit(5, "multiverses")
  41382. },
  41383. {
  41384. name: "Multiverse Palm",
  41385. height: math.unit(20, "multiverses")
  41386. },
  41387. {
  41388. name: "Inferno Incarnate",
  41389. height: math.unit(1e7, "multiverses")
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41395. {
  41396. front: {
  41397. height: math.unit(8, "feet"),
  41398. weight: math.unit(1200, "lb"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/malithee/front.svg",
  41402. extra: 1675/1640,
  41403. bottom: 162/1837
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Mortal Interaction",
  41410. height: math.unit(8, "feet"),
  41411. default: true
  41412. },
  41413. {
  41414. name: "Large",
  41415. height: math.unit(24, "feet")
  41416. },
  41417. {
  41418. name: "Kaiju",
  41419. height: math.unit(240, "feet")
  41420. },
  41421. {
  41422. name: "Megamacro",
  41423. height: math.unit(8000, "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: "Sol-Swallowing",
  41435. height: math.unit(8e10, "feet")
  41436. },
  41437. {
  41438. name: "Galaxy Gulper",
  41439. height: math.unit(8, "galaxies")
  41440. },
  41441. {
  41442. name: "Light Universal",
  41443. height: math.unit(4, "universes")
  41444. },
  41445. {
  41446. name: "Universe Atoms",
  41447. height: math.unit(1.829e9, "universes")
  41448. },
  41449. {
  41450. name: "Light Multiversal",
  41451. height: math.unit(4, "multiverses")
  41452. },
  41453. {
  41454. name: "Multiverse Atoms",
  41455. height: math.unit(1.829e9, "multiverses")
  41456. },
  41457. {
  41458. name: "Nigh-Omnipresence",
  41459. height: math.unit(8e261, "multiverses")
  41460. },
  41461. ]
  41462. ))
  41463. characterMakers.push(() => makeCharacter(
  41464. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41465. {
  41466. front: {
  41467. height: math.unit(10, "feet"),
  41468. weight: math.unit(1500, "lb"),
  41469. name: "Front",
  41470. image: {
  41471. source: "./media/characters/miles-thestia/front.svg",
  41472. extra: 1812/1727,
  41473. bottom: 86/1898
  41474. }
  41475. },
  41476. back: {
  41477. height: math.unit(10, "feet"),
  41478. weight: math.unit(1500, "lb"),
  41479. name: "Back",
  41480. image: {
  41481. source: "./media/characters/miles-thestia/back.svg",
  41482. extra: 1799/1690,
  41483. bottom: 47/1846
  41484. }
  41485. },
  41486. frontNsfw: {
  41487. height: math.unit(10, "feet"),
  41488. weight: math.unit(1500, "lb"),
  41489. name: "Front (NSFW)",
  41490. image: {
  41491. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41492. extra: 1812/1727,
  41493. bottom: 86/1898
  41494. }
  41495. },
  41496. },
  41497. [
  41498. {
  41499. name: "Mini-Macro",
  41500. height: math.unit(10, "feet"),
  41501. default: true
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41507. {
  41508. front: {
  41509. height: math.unit(25, "feet"),
  41510. name: "Front",
  41511. image: {
  41512. source: "./media/characters/titan-s-wulf/front.svg",
  41513. extra: 1560/1484,
  41514. bottom: 76/1636
  41515. }
  41516. },
  41517. },
  41518. [
  41519. {
  41520. name: "Smallest",
  41521. height: math.unit(25, "feet"),
  41522. default: true
  41523. },
  41524. {
  41525. name: "Normal",
  41526. height: math.unit(200, "feet")
  41527. },
  41528. {
  41529. name: "Macro",
  41530. height: math.unit(200000, "feet")
  41531. },
  41532. {
  41533. name: "Multiversal Original",
  41534. height: math.unit(10000, "multiverses")
  41535. },
  41536. ]
  41537. ))
  41538. characterMakers.push(() => makeCharacter(
  41539. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41540. {
  41541. front: {
  41542. height: math.unit(8, "feet"),
  41543. weight: math.unit(553, "lb"),
  41544. name: "Front",
  41545. image: {
  41546. source: "./media/characters/tawendeh/front.svg",
  41547. extra: 2365/2268,
  41548. bottom: 83/2448
  41549. }
  41550. },
  41551. frontClothed: {
  41552. height: math.unit(8, "feet"),
  41553. weight: math.unit(553, "lb"),
  41554. name: "Front (Clothed)",
  41555. image: {
  41556. source: "./media/characters/tawendeh/front-clothed.svg",
  41557. extra: 2365/2268,
  41558. bottom: 83/2448
  41559. }
  41560. },
  41561. back: {
  41562. height: math.unit(8, "feet"),
  41563. weight: math.unit(553, "lb"),
  41564. name: "Back",
  41565. image: {
  41566. source: "./media/characters/tawendeh/back.svg",
  41567. extra: 2397/2294,
  41568. bottom: 42/2439
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Mortal Interaction",
  41575. height: math.unit(8, "feet"),
  41576. default: true
  41577. },
  41578. {
  41579. name: "Giant",
  41580. height: math.unit(80, "feet")
  41581. },
  41582. {
  41583. name: "Macro",
  41584. height: math.unit(800, "feet")
  41585. },
  41586. {
  41587. name: "Megamacro",
  41588. height: math.unit(8000, "feet")
  41589. },
  41590. {
  41591. name: "City-Crushing",
  41592. height: math.unit(24000, "feet")
  41593. },
  41594. {
  41595. name: "Mountain-Mashing",
  41596. height: math.unit(80000, "feet")
  41597. },
  41598. {
  41599. name: "Nation Nemesis",
  41600. height: math.unit(8e6, "feet")
  41601. },
  41602. {
  41603. name: "Continent Cracker",
  41604. height: math.unit(24e6, "feet")
  41605. },
  41606. {
  41607. name: "Earth-Eclipsing",
  41608. height: math.unit(2.4e8, "feet")
  41609. },
  41610. {
  41611. name: "Gas Giant Gulper",
  41612. height: math.unit(2.4e9, "feet")
  41613. },
  41614. {
  41615. name: "Sol-Swallowing",
  41616. height: math.unit(8e10, "feet")
  41617. },
  41618. {
  41619. name: "Galaxy Gulper",
  41620. height: math.unit(8, "galaxies")
  41621. },
  41622. {
  41623. name: "Cosmos Churner",
  41624. height: math.unit(8, "universes")
  41625. },
  41626. {
  41627. name: "Omnipotent Otter",
  41628. height: math.unit(80, "universes")
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41634. {
  41635. front: {
  41636. height: math.unit(2.6, "meters"),
  41637. weight: math.unit(900, "kg"),
  41638. name: "Front",
  41639. image: {
  41640. source: "./media/characters/neesha/front.svg",
  41641. extra: 1803/1653,
  41642. bottom: 128/1931
  41643. }
  41644. },
  41645. },
  41646. [
  41647. {
  41648. name: "Normal",
  41649. height: math.unit(2.6, "meters"),
  41650. default: true
  41651. },
  41652. {
  41653. name: "Macro",
  41654. height: math.unit(50, "meters")
  41655. },
  41656. ]
  41657. ))
  41658. characterMakers.push(() => makeCharacter(
  41659. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41660. {
  41661. front: {
  41662. height: math.unit(5, "feet"),
  41663. weight: math.unit(185, "lb"),
  41664. name: "Front",
  41665. image: {
  41666. source: "./media/characters/kyera/front.svg",
  41667. extra: 1875/1790,
  41668. bottom: 96/1971
  41669. }
  41670. },
  41671. },
  41672. [
  41673. {
  41674. name: "Normal",
  41675. height: math.unit(5, "feet"),
  41676. default: true
  41677. },
  41678. ]
  41679. ))
  41680. characterMakers.push(() => makeCharacter(
  41681. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41682. {
  41683. front: {
  41684. height: math.unit(7 + 6/12, "feet"),
  41685. weight: math.unit(540, "lb"),
  41686. name: "Front",
  41687. image: {
  41688. source: "./media/characters/yuko/front.svg",
  41689. extra: 1282/1222,
  41690. bottom: 101/1383
  41691. }
  41692. },
  41693. frontClothed: {
  41694. height: math.unit(7 + 6/12, "feet"),
  41695. weight: math.unit(540, "lb"),
  41696. name: "Front (Clothed)",
  41697. image: {
  41698. source: "./media/characters/yuko/front-clothed.svg",
  41699. extra: 1282/1222,
  41700. bottom: 101/1383
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Normal",
  41707. height: math.unit(7 + 6/12, "feet"),
  41708. default: true
  41709. },
  41710. {
  41711. name: "Macro",
  41712. height: math.unit(26 + 9/12, "feet")
  41713. },
  41714. {
  41715. name: "Megamacro",
  41716. height: math.unit(300, "feet")
  41717. },
  41718. {
  41719. name: "Gigamacro",
  41720. height: math.unit(5000, "feet")
  41721. },
  41722. {
  41723. name: "Planetary",
  41724. height: math.unit(10000, "miles")
  41725. },
  41726. ]
  41727. ))
  41728. characterMakers.push(() => makeCharacter(
  41729. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41730. {
  41731. front: {
  41732. height: math.unit(8 + 2/12, "feet"),
  41733. weight: math.unit(600, "lb"),
  41734. name: "Front",
  41735. image: {
  41736. source: "./media/characters/deam-nitrel/front.svg",
  41737. extra: 1308/1234,
  41738. bottom: 125/1433
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Normal",
  41745. height: math.unit(8 + 2/12, "feet"),
  41746. default: true
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41752. {
  41753. front: {
  41754. height: math.unit(6.1, "feet"),
  41755. weight: math.unit(180, "lb"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/skyress/front.svg",
  41759. extra: 1045/915,
  41760. bottom: 28/1073
  41761. }
  41762. },
  41763. maw: {
  41764. height: math.unit(1, "feet"),
  41765. name: "Maw",
  41766. image: {
  41767. source: "./media/characters/skyress/maw.svg"
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Normal",
  41774. height: math.unit(6.1, "feet"),
  41775. default: true
  41776. },
  41777. {
  41778. name: "Macro",
  41779. height: math.unit(200, "feet")
  41780. },
  41781. ]
  41782. ))
  41783. characterMakers.push(() => makeCharacter(
  41784. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41785. {
  41786. front: {
  41787. height: math.unit(4 + 2/12, "feet"),
  41788. weight: math.unit(40, "kg"),
  41789. name: "Front",
  41790. image: {
  41791. source: "./media/characters/amethyst-jones/front.svg",
  41792. extra: 1220/1150,
  41793. bottom: 101/1321
  41794. }
  41795. },
  41796. },
  41797. [
  41798. {
  41799. name: "Normal",
  41800. height: math.unit(4 + 2/12, "feet"),
  41801. default: true
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41807. {
  41808. front: {
  41809. height: math.unit(1.7, "m"),
  41810. weight: math.unit(135, "lb"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/jade/front.svg",
  41814. extra: 1818/1767,
  41815. bottom: 32/1850
  41816. }
  41817. },
  41818. back: {
  41819. height: math.unit(1.7, "m"),
  41820. weight: math.unit(135, "lb"),
  41821. name: "Back",
  41822. image: {
  41823. source: "./media/characters/jade/back.svg",
  41824. extra: 1869/1809,
  41825. bottom: 35/1904
  41826. }
  41827. },
  41828. hand: {
  41829. height: math.unit(0.24, "m"),
  41830. name: "Hand",
  41831. image: {
  41832. source: "./media/characters/jade/hand.svg"
  41833. }
  41834. },
  41835. foot: {
  41836. height: math.unit(0.263, "m"),
  41837. name: "Foot",
  41838. image: {
  41839. source: "./media/characters/jade/foot.svg"
  41840. }
  41841. },
  41842. dick: {
  41843. height: math.unit(0.47, "m"),
  41844. name: "Dick",
  41845. image: {
  41846. source: "./media/characters/jade/dick.svg"
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Micro",
  41853. height: math.unit(22, "cm")
  41854. },
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(1.7, "m"),
  41858. default: true
  41859. },
  41860. {
  41861. name: "Macro",
  41862. height: math.unit(152, "m")
  41863. },
  41864. ]
  41865. ))
  41866. characterMakers.push(() => makeCharacter(
  41867. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41868. {
  41869. front: {
  41870. height: math.unit(100, "miles"),
  41871. weight: math.unit(20000, "tons"),
  41872. name: "Front",
  41873. image: {
  41874. source: "./media/characters/cookie/front.svg",
  41875. extra: 1125/1070,
  41876. bottom: 30/1155
  41877. }
  41878. },
  41879. },
  41880. [
  41881. {
  41882. name: "Big",
  41883. height: math.unit(50, "feet")
  41884. },
  41885. {
  41886. name: "Macro",
  41887. height: math.unit(100, "miles"),
  41888. default: true
  41889. },
  41890. {
  41891. name: "Megamacro",
  41892. height: math.unit(90000, "miles")
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41898. {
  41899. front: {
  41900. height: math.unit(6, "feet"),
  41901. weight: math.unit(145, "lb"),
  41902. name: "Front",
  41903. image: {
  41904. source: "./media/characters/farzian/front.svg",
  41905. extra: 1902/1693,
  41906. bottom: 108/2010
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Macro",
  41913. height: math.unit(500, "feet"),
  41914. default: true
  41915. },
  41916. ]
  41917. ))
  41918. characterMakers.push(() => makeCharacter(
  41919. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41920. {
  41921. front: {
  41922. height: math.unit(3 + 6/12, "feet"),
  41923. weight: math.unit(50, "lb"),
  41924. name: "Front",
  41925. image: {
  41926. source: "./media/characters/kimberly-tilson/front.svg",
  41927. extra: 1400/1322,
  41928. bottom: 36/1436
  41929. }
  41930. },
  41931. back: {
  41932. height: math.unit(3 + 6/12, "feet"),
  41933. weight: math.unit(50, "lb"),
  41934. name: "Back",
  41935. image: {
  41936. source: "./media/characters/kimberly-tilson/back.svg",
  41937. extra: 1370/1307,
  41938. bottom: 20/1390
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Normal",
  41945. height: math.unit(3 + 6/12, "feet"),
  41946. default: true
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41952. {
  41953. front: {
  41954. height: math.unit(1148, "feet"),
  41955. weight: math.unit(34057, "lb"),
  41956. name: "Front",
  41957. image: {
  41958. source: "./media/characters/harthos/front.svg",
  41959. extra: 1391/1339,
  41960. bottom: 13/1404
  41961. }
  41962. },
  41963. },
  41964. [
  41965. {
  41966. name: "Macro",
  41967. height: math.unit(1148, "feet"),
  41968. default: true
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(15, "feet"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/hypatia/front.svg",
  41980. extra: 1653/1591,
  41981. bottom: 79/1732
  41982. }
  41983. },
  41984. },
  41985. [
  41986. {
  41987. name: "Normal",
  41988. height: math.unit(15, "feet")
  41989. },
  41990. {
  41991. name: "Small",
  41992. height: math.unit(300, "feet")
  41993. },
  41994. {
  41995. name: "Macro",
  41996. height: math.unit(2500, "feet"),
  41997. default: true
  41998. },
  41999. {
  42000. name: "Mega Macro",
  42001. height: math.unit(1500, "miles")
  42002. },
  42003. {
  42004. name: "Giga Macro",
  42005. height: math.unit(1.5e6, "miles")
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(6, "feet"),
  42014. weight: math.unit(200, "lb"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/wulver/front.svg",
  42018. extra: 1724/1632,
  42019. bottom: 130/1854
  42020. }
  42021. },
  42022. frontNsfw: {
  42023. height: math.unit(6, "feet"),
  42024. weight: math.unit(200, "lb"),
  42025. name: "Front (NSFW)",
  42026. image: {
  42027. source: "./media/characters/wulver/front-nsfw.svg",
  42028. extra: 1724/1632,
  42029. bottom: 130/1854
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Human-Sized",
  42036. height: math.unit(6, "feet")
  42037. },
  42038. {
  42039. name: "Normal",
  42040. height: math.unit(4, "meters"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Large",
  42045. height: math.unit(6, "m")
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(7, "feet"),
  42054. name: "Front",
  42055. image: {
  42056. source: "./media/characters/maru/front.svg",
  42057. extra: 1595/1570,
  42058. bottom: 0/1595
  42059. }
  42060. },
  42061. },
  42062. [
  42063. {
  42064. name: "Normal",
  42065. height: math.unit(7, "feet"),
  42066. default: true
  42067. },
  42068. {
  42069. name: "Macro",
  42070. height: math.unit(700, "feet")
  42071. },
  42072. {
  42073. name: "Mega Macro",
  42074. height: math.unit(25, "miles")
  42075. },
  42076. ]
  42077. ))
  42078. characterMakers.push(() => makeCharacter(
  42079. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42080. {
  42081. front: {
  42082. height: math.unit(6, "feet"),
  42083. weight: math.unit(170, "lb"),
  42084. name: "Front",
  42085. image: {
  42086. source: "./media/characters/xenon/front.svg",
  42087. extra: 1376/1305,
  42088. bottom: 56/1432
  42089. }
  42090. },
  42091. back: {
  42092. height: math.unit(6, "feet"),
  42093. weight: math.unit(170, "lb"),
  42094. name: "Back",
  42095. image: {
  42096. source: "./media/characters/xenon/back.svg",
  42097. extra: 1328/1259,
  42098. bottom: 95/1423
  42099. }
  42100. },
  42101. maw: {
  42102. height: math.unit(0.52, "feet"),
  42103. name: "Maw",
  42104. image: {
  42105. source: "./media/characters/xenon/maw.svg"
  42106. }
  42107. },
  42108. handLeft: {
  42109. height: math.unit(0.82 * 169 / 153, "feet"),
  42110. name: "Hand (Left)",
  42111. image: {
  42112. source: "./media/characters/xenon/hand-left.svg"
  42113. }
  42114. },
  42115. handRight: {
  42116. height: math.unit(0.82, "feet"),
  42117. name: "Hand (Right)",
  42118. image: {
  42119. source: "./media/characters/xenon/hand-right.svg"
  42120. }
  42121. },
  42122. footLeft: {
  42123. height: math.unit(1.13, "feet"),
  42124. name: "Foot (Left)",
  42125. image: {
  42126. source: "./media/characters/xenon/foot-left.svg"
  42127. }
  42128. },
  42129. footRight: {
  42130. height: math.unit(1.13 * 194 / 196, "feet"),
  42131. name: "Foot (Right)",
  42132. image: {
  42133. source: "./media/characters/xenon/foot-right.svg"
  42134. }
  42135. },
  42136. },
  42137. [
  42138. {
  42139. name: "Micro",
  42140. height: math.unit(0.8, "inches")
  42141. },
  42142. {
  42143. name: "Normal",
  42144. height: math.unit(6, "feet")
  42145. },
  42146. {
  42147. name: "Macro",
  42148. height: math.unit(50, "feet"),
  42149. default: true
  42150. },
  42151. {
  42152. name: "Macro+",
  42153. height: math.unit(250, "feet")
  42154. },
  42155. {
  42156. name: "Megamacro",
  42157. height: math.unit(1500, "feet")
  42158. },
  42159. ]
  42160. ))
  42161. characterMakers.push(() => makeCharacter(
  42162. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42163. {
  42164. front: {
  42165. height: math.unit(7 + 5/12, "feet"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/zane/front.svg",
  42169. extra: 1260/1203,
  42170. bottom: 94/1354
  42171. }
  42172. },
  42173. back: {
  42174. height: math.unit(5.05, "feet"),
  42175. name: "Back",
  42176. image: {
  42177. source: "./media/characters/zane/back.svg",
  42178. extra: 893/829,
  42179. bottom: 30/923
  42180. }
  42181. },
  42182. werewolf: {
  42183. height: math.unit(11, "feet"),
  42184. name: "Werewolf",
  42185. image: {
  42186. source: "./media/characters/zane/werewolf.svg",
  42187. extra: 1383/1323,
  42188. bottom: 89/1472
  42189. }
  42190. },
  42191. foot: {
  42192. height: math.unit(1.46, "feet"),
  42193. name: "Foot",
  42194. image: {
  42195. source: "./media/characters/zane/foot.svg"
  42196. }
  42197. },
  42198. footFront: {
  42199. height: math.unit(0.784, "feet"),
  42200. name: "Foot (Front)",
  42201. image: {
  42202. source: "./media/characters/zane/foot-front.svg"
  42203. }
  42204. },
  42205. dick: {
  42206. height: math.unit(1.95, "feet"),
  42207. name: "Dick",
  42208. image: {
  42209. source: "./media/characters/zane/dick.svg"
  42210. }
  42211. },
  42212. dickWerewolf: {
  42213. height: math.unit(3.77, "feet"),
  42214. name: "Dick (Werewolf)",
  42215. image: {
  42216. source: "./media/characters/zane/dick.svg"
  42217. }
  42218. },
  42219. },
  42220. [
  42221. {
  42222. name: "Normal",
  42223. height: math.unit(7 + 5/12, "feet"),
  42224. default: true
  42225. },
  42226. ]
  42227. ))
  42228. characterMakers.push(() => makeCharacter(
  42229. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42230. {
  42231. front: {
  42232. height: math.unit(6 + 2/12, "feet"),
  42233. weight: math.unit(284, "lb"),
  42234. name: "Front",
  42235. image: {
  42236. source: "./media/characters/benni-desparque/front.svg",
  42237. extra: 1353/1126,
  42238. bottom: 69/1422
  42239. }
  42240. },
  42241. },
  42242. [
  42243. {
  42244. name: "Civilian",
  42245. height: math.unit(6 + 2/12, "feet")
  42246. },
  42247. {
  42248. name: "Normal",
  42249. height: math.unit(98, "feet"),
  42250. default: true
  42251. },
  42252. {
  42253. name: "Kaiju Fighter",
  42254. height: math.unit(268, "feet")
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42260. {
  42261. front: {
  42262. height: math.unit(5, "feet"),
  42263. weight: math.unit(105, "lb"),
  42264. name: "Front",
  42265. image: {
  42266. source: "./media/characters/maxine/front.svg",
  42267. extra: 1386/1250,
  42268. bottom: 71/1457
  42269. }
  42270. },
  42271. },
  42272. [
  42273. {
  42274. name: "Normal",
  42275. height: math.unit(5, "feet"),
  42276. default: true
  42277. },
  42278. ]
  42279. ))
  42280. characterMakers.push(() => makeCharacter(
  42281. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42282. {
  42283. front: {
  42284. height: math.unit(11 + 7/12, "feet"),
  42285. weight: math.unit(9576, "lb"),
  42286. name: "Front",
  42287. image: {
  42288. source: "./media/characters/scaly/front.svg",
  42289. extra: 888/867,
  42290. bottom: 36/924
  42291. }
  42292. },
  42293. },
  42294. [
  42295. {
  42296. name: "Normal",
  42297. height: math.unit(11 + 7/12, "feet"),
  42298. default: true
  42299. },
  42300. ]
  42301. ))
  42302. characterMakers.push(() => makeCharacter(
  42303. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42304. {
  42305. front: {
  42306. height: math.unit(6 + 3/12, "feet"),
  42307. name: "Front",
  42308. image: {
  42309. source: "./media/characters/saelria/front.svg",
  42310. extra: 1243/1138,
  42311. bottom: 46/1289
  42312. }
  42313. },
  42314. },
  42315. [
  42316. {
  42317. name: "Micro",
  42318. height: math.unit(6, "inches"),
  42319. },
  42320. {
  42321. name: "Normal",
  42322. height: math.unit(6 + 3/12, "feet"),
  42323. default: true
  42324. },
  42325. {
  42326. name: "Macro",
  42327. height: math.unit(25, "feet")
  42328. },
  42329. ]
  42330. ))
  42331. characterMakers.push(() => makeCharacter(
  42332. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42333. {
  42334. front: {
  42335. height: math.unit(80, "meters"),
  42336. weight: math.unit(7000, "tonnes"),
  42337. name: "Front",
  42338. image: {
  42339. source: "./media/characters/tef/front.svg",
  42340. extra: 2036/1991,
  42341. bottom: 54/2090
  42342. }
  42343. },
  42344. back: {
  42345. height: math.unit(80, "meters"),
  42346. weight: math.unit(7000, "tonnes"),
  42347. name: "Back",
  42348. image: {
  42349. source: "./media/characters/tef/back.svg",
  42350. extra: 2036/1991,
  42351. bottom: 54/2090
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Macro",
  42358. height: math.unit(80, "meters"),
  42359. default: true
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(13, "feet"),
  42368. weight: math.unit(6, "tons"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/rover/front.svg",
  42372. extra: 1233/1156,
  42373. bottom: 50/1283
  42374. }
  42375. },
  42376. back: {
  42377. height: math.unit(13, "feet"),
  42378. weight: math.unit(6, "tons"),
  42379. name: "Back",
  42380. image: {
  42381. source: "./media/characters/rover/back.svg",
  42382. extra: 1327/1258,
  42383. bottom: 39/1366
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Normal",
  42390. height: math.unit(13, "feet"),
  42391. default: true
  42392. },
  42393. {
  42394. name: "Macro",
  42395. height: math.unit(1300, "feet")
  42396. },
  42397. {
  42398. name: "Megamacro",
  42399. height: math.unit(1300, "miles")
  42400. },
  42401. {
  42402. name: "Gigamacro",
  42403. height: math.unit(1300000, "miles")
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42409. {
  42410. front: {
  42411. height: math.unit(6, "feet"),
  42412. weight: math.unit(150, "lb"),
  42413. name: "Front",
  42414. image: {
  42415. source: "./media/characters/ariz/front.svg",
  42416. extra: 1401/1346,
  42417. bottom: 5/1406
  42418. }
  42419. },
  42420. },
  42421. [
  42422. {
  42423. name: "Normal",
  42424. height: math.unit(10, "feet"),
  42425. default: true
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42431. {
  42432. front: {
  42433. height: math.unit(6, "feet"),
  42434. weight: math.unit(140, "lb"),
  42435. name: "Front",
  42436. image: {
  42437. source: "./media/characters/sigrun/front.svg",
  42438. extra: 1418/1359,
  42439. bottom: 27/1445
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Macro",
  42446. height: math.unit(35, "feet"),
  42447. default: true
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(6, "feet"),
  42456. weight: math.unit(150, "lb"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/numin/front.svg",
  42460. extra: 1433/1388,
  42461. bottom: 12/1445
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Macro",
  42468. height: math.unit(21.5, "km"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42475. {
  42476. front: {
  42477. height: math.unit(6, "feet"),
  42478. weight: math.unit(463, "lb"),
  42479. name: "Front",
  42480. image: {
  42481. source: "./media/characters/melwa/front.svg",
  42482. extra: 1307/1248,
  42483. bottom: 93/1400
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Macro",
  42490. height: math.unit(50, "meters"),
  42491. default: true
  42492. },
  42493. ]
  42494. ))
  42495. characterMakers.push(() => makeCharacter(
  42496. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42497. {
  42498. front: {
  42499. height: math.unit(325, "feet"),
  42500. name: "Front",
  42501. image: {
  42502. source: "./media/characters/zorkaiju/front.svg",
  42503. extra: 1955/1814,
  42504. bottom: 40/1995
  42505. }
  42506. },
  42507. frontExtended: {
  42508. height: math.unit(325, "feet"),
  42509. name: "Front (Extended)",
  42510. image: {
  42511. source: "./media/characters/zorkaiju/front-extended.svg",
  42512. extra: 1955/1814,
  42513. bottom: 40/1995
  42514. }
  42515. },
  42516. side: {
  42517. height: math.unit(325, "feet"),
  42518. name: "Side",
  42519. image: {
  42520. source: "./media/characters/zorkaiju/side.svg",
  42521. extra: 1495/1396,
  42522. bottom: 17/1512
  42523. }
  42524. },
  42525. sideExtended: {
  42526. height: math.unit(325, "feet"),
  42527. name: "Side (Extended)",
  42528. image: {
  42529. source: "./media/characters/zorkaiju/side-extended.svg",
  42530. extra: 1495/1396,
  42531. bottom: 17/1512
  42532. }
  42533. },
  42534. back: {
  42535. height: math.unit(325, "feet"),
  42536. name: "Back",
  42537. image: {
  42538. source: "./media/characters/zorkaiju/back.svg",
  42539. extra: 1959/1821,
  42540. bottom: 31/1990
  42541. }
  42542. },
  42543. backExtended: {
  42544. height: math.unit(325, "feet"),
  42545. name: "Back (Extended)",
  42546. image: {
  42547. source: "./media/characters/zorkaiju/back-extended.svg",
  42548. extra: 1959/1821,
  42549. bottom: 31/1990
  42550. }
  42551. },
  42552. hand: {
  42553. height: math.unit(58.4, "feet"),
  42554. name: "Hand",
  42555. image: {
  42556. source: "./media/characters/zorkaiju/hand.svg"
  42557. }
  42558. },
  42559. handExtended: {
  42560. height: math.unit(61.4, "feet"),
  42561. name: "Hand (Extended)",
  42562. image: {
  42563. source: "./media/characters/zorkaiju/hand-extended.svg"
  42564. }
  42565. },
  42566. foot: {
  42567. height: math.unit(95, "feet"),
  42568. name: "Foot",
  42569. image: {
  42570. source: "./media/characters/zorkaiju/foot.svg"
  42571. }
  42572. },
  42573. leftArm: {
  42574. height: math.unit(59, "feet"),
  42575. name: "Left Arm",
  42576. image: {
  42577. source: "./media/characters/zorkaiju/left-arm.svg"
  42578. }
  42579. },
  42580. rightArm: {
  42581. height: math.unit(59, "feet"),
  42582. name: "Right Arm",
  42583. image: {
  42584. source: "./media/characters/zorkaiju/right-arm.svg"
  42585. }
  42586. },
  42587. leftArmExtended: {
  42588. height: math.unit(59 * 1.033546, "feet"),
  42589. name: "Left Arm (Extended)",
  42590. image: {
  42591. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42592. }
  42593. },
  42594. rightArmExtended: {
  42595. height: math.unit(59 * 1.0496, "feet"),
  42596. name: "Right Arm (Extended)",
  42597. image: {
  42598. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42599. }
  42600. },
  42601. tail: {
  42602. height: math.unit(104, "feet"),
  42603. name: "Tail",
  42604. image: {
  42605. source: "./media/characters/zorkaiju/tail.svg"
  42606. }
  42607. },
  42608. tailExtended: {
  42609. height: math.unit(104, "feet"),
  42610. name: "Tail (Extended)",
  42611. image: {
  42612. source: "./media/characters/zorkaiju/tail-extended.svg"
  42613. }
  42614. },
  42615. tailBottom: {
  42616. height: math.unit(104, "feet"),
  42617. name: "Tail Bottom",
  42618. image: {
  42619. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42620. }
  42621. },
  42622. crystal: {
  42623. height: math.unit(27.54, "feet"),
  42624. name: "Crystal",
  42625. image: {
  42626. source: "./media/characters/zorkaiju/crystal.svg"
  42627. }
  42628. },
  42629. },
  42630. [
  42631. {
  42632. name: "Kaiju",
  42633. height: math.unit(325, "feet"),
  42634. default: true
  42635. },
  42636. ]
  42637. ))
  42638. characterMakers.push(() => makeCharacter(
  42639. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42640. {
  42641. front: {
  42642. height: math.unit(6 + 1/12, "feet"),
  42643. weight: math.unit(115, "lb"),
  42644. name: "Front",
  42645. image: {
  42646. source: "./media/characters/bailey-belfry/front.svg",
  42647. extra: 1240/1121,
  42648. bottom: 101/1341
  42649. }
  42650. },
  42651. },
  42652. [
  42653. {
  42654. name: "Normal",
  42655. height: math.unit(6 + 1/12, "feet"),
  42656. default: true
  42657. },
  42658. ]
  42659. ))
  42660. characterMakers.push(() => makeCharacter(
  42661. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42662. {
  42663. side: {
  42664. height: math.unit(4, "meters"),
  42665. weight: math.unit(250, "kg"),
  42666. name: "Side",
  42667. image: {
  42668. source: "./media/characters/blacky/side.svg",
  42669. extra: 1027/919,
  42670. bottom: 43/1070
  42671. }
  42672. },
  42673. maw: {
  42674. height: math.unit(1, "meters"),
  42675. name: "Maw",
  42676. image: {
  42677. source: "./media/characters/blacky/maw.svg"
  42678. }
  42679. },
  42680. paw: {
  42681. height: math.unit(1, "meters"),
  42682. name: "Paw",
  42683. image: {
  42684. source: "./media/characters/blacky/paw.svg"
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Normal",
  42691. height: math.unit(4, "meters"),
  42692. default: true
  42693. },
  42694. ]
  42695. ))
  42696. characterMakers.push(() => makeCharacter(
  42697. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42698. {
  42699. front: {
  42700. height: math.unit(170, "cm"),
  42701. weight: math.unit(66, "kg"),
  42702. name: "Front",
  42703. image: {
  42704. source: "./media/characters/thux-ei/front.svg",
  42705. extra: 1109/1011,
  42706. bottom: 8/1117
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Normal",
  42713. height: math.unit(170, "cm"),
  42714. default: true
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42720. {
  42721. front: {
  42722. height: math.unit(5, "feet"),
  42723. weight: math.unit(120, "lb"),
  42724. name: "Front",
  42725. image: {
  42726. source: "./media/characters/roxanne-voltaire/front.svg",
  42727. extra: 1901/1779,
  42728. bottom: 53/1954
  42729. }
  42730. },
  42731. },
  42732. [
  42733. {
  42734. name: "Normal",
  42735. height: math.unit(5, "feet"),
  42736. default: true
  42737. },
  42738. {
  42739. name: "Giant",
  42740. height: math.unit(50, "feet")
  42741. },
  42742. {
  42743. name: "Titan",
  42744. height: math.unit(500, "feet")
  42745. },
  42746. {
  42747. name: "Macro",
  42748. height: math.unit(5000, "feet")
  42749. },
  42750. {
  42751. name: "Megamacro",
  42752. height: math.unit(50000, "feet")
  42753. },
  42754. {
  42755. name: "Gigamacro",
  42756. height: math.unit(500000, "feet")
  42757. },
  42758. {
  42759. name: "Teramacro",
  42760. height: math.unit(5e6, "feet")
  42761. },
  42762. ]
  42763. ))
  42764. characterMakers.push(() => makeCharacter(
  42765. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42766. {
  42767. front: {
  42768. height: math.unit(6 + 2/12, "feet"),
  42769. name: "Front",
  42770. image: {
  42771. source: "./media/characters/squeaks/front.svg",
  42772. extra: 1823/1768,
  42773. bottom: 138/1961
  42774. }
  42775. },
  42776. },
  42777. [
  42778. {
  42779. name: "Micro",
  42780. height: math.unit(0.5, "inches")
  42781. },
  42782. {
  42783. name: "Normal",
  42784. height: math.unit(6 + 2/12, "feet"),
  42785. default: true
  42786. },
  42787. {
  42788. name: "Macro",
  42789. height: math.unit(600, "feet")
  42790. },
  42791. ]
  42792. ))
  42793. characterMakers.push(() => makeCharacter(
  42794. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42795. {
  42796. front: {
  42797. height: math.unit(1.72, "meters"),
  42798. name: "Front",
  42799. image: {
  42800. source: "./media/characters/archinger/front.svg",
  42801. extra: 1861/1675,
  42802. bottom: 125/1986
  42803. }
  42804. },
  42805. back: {
  42806. height: math.unit(1.72, "meters"),
  42807. name: "Back",
  42808. image: {
  42809. source: "./media/characters/archinger/back.svg",
  42810. extra: 1844/1701,
  42811. bottom: 104/1948
  42812. }
  42813. },
  42814. cock: {
  42815. height: math.unit(0.59, "feet"),
  42816. name: "Cock",
  42817. image: {
  42818. source: "./media/characters/archinger/cock.svg"
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Normal",
  42825. height: math.unit(1.72, "meters"),
  42826. default: true
  42827. },
  42828. {
  42829. name: "Macro",
  42830. height: math.unit(84, "meters")
  42831. },
  42832. {
  42833. name: "Macro+",
  42834. height: math.unit(112, "meters")
  42835. },
  42836. {
  42837. name: "Macro++",
  42838. height: math.unit(960, "meters")
  42839. },
  42840. {
  42841. name: "Macro+++",
  42842. height: math.unit(4, "km")
  42843. },
  42844. {
  42845. name: "Macro++++",
  42846. height: math.unit(48, "km")
  42847. },
  42848. {
  42849. name: "Macro+++++",
  42850. height: math.unit(4500, "km")
  42851. },
  42852. ]
  42853. ))
  42854. characterMakers.push(() => makeCharacter(
  42855. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42856. {
  42857. front: {
  42858. height: math.unit(5 + 5/12, "feet"),
  42859. name: "Front",
  42860. image: {
  42861. source: "./media/characters/alsnapz/front.svg",
  42862. extra: 1157/1065,
  42863. bottom: 42/1199
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Normal",
  42870. height: math.unit(5 + 5/12, "feet"),
  42871. default: true
  42872. },
  42873. ]
  42874. ))
  42875. characterMakers.push(() => makeCharacter(
  42876. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42877. {
  42878. side: {
  42879. height: math.unit(3.2, "earths"),
  42880. name: "Side",
  42881. image: {
  42882. source: "./media/characters/mag/side.svg",
  42883. extra: 1331/1008,
  42884. bottom: 52/1383
  42885. }
  42886. },
  42887. wing: {
  42888. height: math.unit(1.94, "earths"),
  42889. name: "Wing",
  42890. image: {
  42891. source: "./media/characters/mag/wing.svg"
  42892. }
  42893. },
  42894. dick: {
  42895. height: math.unit(1.8, "earths"),
  42896. name: "Dick",
  42897. image: {
  42898. source: "./media/characters/mag/dick.svg"
  42899. }
  42900. },
  42901. ass: {
  42902. height: math.unit(1.33, "earths"),
  42903. name: "Ass",
  42904. image: {
  42905. source: "./media/characters/mag/ass.svg"
  42906. }
  42907. },
  42908. head: {
  42909. height: math.unit(1.1, "earths"),
  42910. name: "Head",
  42911. image: {
  42912. source: "./media/characters/mag/head.svg"
  42913. }
  42914. },
  42915. maw: {
  42916. height: math.unit(1.62, "earths"),
  42917. name: "Maw",
  42918. image: {
  42919. source: "./media/characters/mag/maw.svg"
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Small",
  42926. height: math.unit(162, "feet")
  42927. },
  42928. {
  42929. name: "Normal",
  42930. height: math.unit(3.2, "earths"),
  42931. default: true
  42932. },
  42933. ]
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42937. {
  42938. front: {
  42939. height: math.unit(512, "feet"),
  42940. weight: math.unit(63509, "tonnes"),
  42941. name: "Front",
  42942. image: {
  42943. source: "./media/characters/vorrel-harroc/front.svg",
  42944. extra: 1075/1063,
  42945. bottom: 62/1137
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(10, "feet")
  42953. },
  42954. {
  42955. name: "Macro",
  42956. height: math.unit(512, "feet"),
  42957. default: true
  42958. },
  42959. {
  42960. name: "Megamacro",
  42961. height: math.unit(256, "miles")
  42962. },
  42963. {
  42964. name: "Gigamacro",
  42965. height: math.unit(4096, "miles")
  42966. },
  42967. ]
  42968. ))
  42969. characterMakers.push(() => makeCharacter(
  42970. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42971. {
  42972. side: {
  42973. height: math.unit(50, "feet"),
  42974. name: "Side",
  42975. image: {
  42976. source: "./media/characters/froimar/side.svg",
  42977. extra: 855/638,
  42978. bottom: 99/954
  42979. }
  42980. },
  42981. },
  42982. [
  42983. {
  42984. name: "Macro",
  42985. height: math.unit(50, "feet"),
  42986. default: true
  42987. },
  42988. ]
  42989. ))
  42990. characterMakers.push(() => makeCharacter(
  42991. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42992. {
  42993. front: {
  42994. height: math.unit(210, "miles"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/timothy/front.svg",
  42998. extra: 1007/943,
  42999. bottom: 62/1069
  43000. }
  43001. },
  43002. frontSkirt: {
  43003. height: math.unit(210, "miles"),
  43004. name: "Front (Skirt)",
  43005. image: {
  43006. source: "./media/characters/timothy/front-skirt.svg",
  43007. extra: 1007/943,
  43008. bottom: 62/1069
  43009. }
  43010. },
  43011. frontCoat: {
  43012. height: math.unit(210, "miles"),
  43013. name: "Front (Coat)",
  43014. image: {
  43015. source: "./media/characters/timothy/front-coat.svg",
  43016. extra: 1007/943,
  43017. bottom: 62/1069
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Macro",
  43024. height: math.unit(210, "miles"),
  43025. default: true
  43026. },
  43027. {
  43028. name: "Megamacro",
  43029. height: math.unit(210000, "miles")
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43035. {
  43036. front: {
  43037. height: math.unit(188, "feet"),
  43038. name: "Front",
  43039. image: {
  43040. source: "./media/characters/pyotr/front.svg",
  43041. extra: 1912/1826,
  43042. bottom: 18/1930
  43043. }
  43044. },
  43045. },
  43046. [
  43047. {
  43048. name: "Macro",
  43049. height: math.unit(188, "feet"),
  43050. default: true
  43051. },
  43052. {
  43053. name: "Megamacro",
  43054. height: math.unit(8, "miles")
  43055. },
  43056. ]
  43057. ))
  43058. characterMakers.push(() => makeCharacter(
  43059. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43060. {
  43061. side: {
  43062. height: math.unit(10, "feet"),
  43063. weight: math.unit(4500, "lb"),
  43064. name: "Side",
  43065. image: {
  43066. source: "./media/characters/ackart/side.svg",
  43067. extra: 1776/1668,
  43068. bottom: 116/1892
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Normal",
  43075. height: math.unit(10, "feet"),
  43076. default: true
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43082. {
  43083. side: {
  43084. height: math.unit(21, "feet"),
  43085. name: "Side",
  43086. image: {
  43087. source: "./media/characters/nolow/side.svg",
  43088. extra: 1484/1434,
  43089. bottom: 85/1569
  43090. }
  43091. },
  43092. sideErect: {
  43093. height: math.unit(21, "feet"),
  43094. name: "Side-erect",
  43095. image: {
  43096. source: "./media/characters/nolow/side-erect.svg",
  43097. extra: 1484/1434,
  43098. bottom: 85/1569
  43099. }
  43100. },
  43101. },
  43102. [
  43103. {
  43104. name: "Regular",
  43105. height: math.unit(12, "feet")
  43106. },
  43107. {
  43108. name: "Big Chee",
  43109. height: math.unit(21, "feet"),
  43110. default: true
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(7, "feet"),
  43119. weight: math.unit(250, "lb"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/nines/front.svg",
  43123. extra: 1741/1607,
  43124. bottom: 41/1782
  43125. }
  43126. },
  43127. side: {
  43128. height: math.unit(7, "feet"),
  43129. weight: math.unit(250, "lb"),
  43130. name: "Side",
  43131. image: {
  43132. source: "./media/characters/nines/side.svg",
  43133. extra: 1854/1735,
  43134. bottom: 93/1947
  43135. }
  43136. },
  43137. back: {
  43138. height: math.unit(7, "feet"),
  43139. weight: math.unit(250, "lb"),
  43140. name: "Back",
  43141. image: {
  43142. source: "./media/characters/nines/back.svg",
  43143. extra: 1748/1615,
  43144. bottom: 20/1768
  43145. }
  43146. },
  43147. },
  43148. [
  43149. {
  43150. name: "Megamacro",
  43151. height: math.unit(99, "km"),
  43152. default: true
  43153. },
  43154. ]
  43155. ))
  43156. characterMakers.push(() => makeCharacter(
  43157. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43158. {
  43159. front: {
  43160. height: math.unit(5 + 10/12, "feet"),
  43161. weight: math.unit(210, "lb"),
  43162. name: "Front",
  43163. image: {
  43164. source: "./media/characters/zenith/front.svg",
  43165. extra: 1531/1452,
  43166. bottom: 198/1729
  43167. }
  43168. },
  43169. back: {
  43170. height: math.unit(5 + 10/12, "feet"),
  43171. weight: math.unit(210, "lb"),
  43172. name: "Back",
  43173. image: {
  43174. source: "./media/characters/zenith/back.svg",
  43175. extra: 1571/1487,
  43176. bottom: 75/1646
  43177. }
  43178. },
  43179. },
  43180. [
  43181. {
  43182. name: "Normal",
  43183. height: math.unit(5 + 10/12, "feet"),
  43184. default: true
  43185. }
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43190. {
  43191. front: {
  43192. height: math.unit(4, "feet"),
  43193. weight: math.unit(60, "lb"),
  43194. name: "Front",
  43195. image: {
  43196. source: "./media/characters/jasper/front.svg",
  43197. extra: 1450/1379,
  43198. bottom: 19/1469
  43199. }
  43200. },
  43201. },
  43202. [
  43203. {
  43204. name: "Normal",
  43205. height: math.unit(4, "feet"),
  43206. default: true
  43207. },
  43208. ]
  43209. ))
  43210. characterMakers.push(() => makeCharacter(
  43211. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43212. {
  43213. front: {
  43214. height: math.unit(6 + 5/12, "feet"),
  43215. weight: math.unit(290, "lb"),
  43216. name: "Front",
  43217. image: {
  43218. source: "./media/characters/tiberius-thyben/front.svg",
  43219. extra: 757/739,
  43220. bottom: 39/796
  43221. }
  43222. },
  43223. },
  43224. [
  43225. {
  43226. name: "Micro",
  43227. height: math.unit(1.5, "inches")
  43228. },
  43229. {
  43230. name: "Normal",
  43231. height: math.unit(6 + 5/12, "feet"),
  43232. default: true
  43233. },
  43234. {
  43235. name: "Macro",
  43236. height: math.unit(300, "feet")
  43237. },
  43238. ]
  43239. ))
  43240. characterMakers.push(() => makeCharacter(
  43241. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43242. {
  43243. front: {
  43244. height: math.unit(5 + 6/12, "feet"),
  43245. weight: math.unit(60, "kg"),
  43246. name: "Front",
  43247. image: {
  43248. source: "./media/characters/sabre/front.svg",
  43249. extra: 738/671,
  43250. bottom: 27/765
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Teeny",
  43257. height: math.unit(2, "inches")
  43258. },
  43259. {
  43260. name: "Smol",
  43261. height: math.unit(8, "inches")
  43262. },
  43263. {
  43264. name: "Normal",
  43265. height: math.unit(5 + 6/12, "feet"),
  43266. default: true
  43267. },
  43268. {
  43269. name: "Mini-Macro",
  43270. height: math.unit(15, "feet")
  43271. },
  43272. {
  43273. name: "Macro",
  43274. height: math.unit(50, "feet")
  43275. },
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43280. {
  43281. front: {
  43282. height: math.unit(6 + 4/12, "feet"),
  43283. weight: math.unit(170, "lb"),
  43284. name: "Front",
  43285. image: {
  43286. source: "./media/characters/charlie/front.svg",
  43287. extra: 1348/1228,
  43288. bottom: 15/1363
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Macro",
  43295. height: math.unit(1700, "meters"),
  43296. default: true
  43297. },
  43298. {
  43299. name: "MegaMacro",
  43300. height: math.unit(20400, "meters")
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43306. {
  43307. front: {
  43308. height: math.unit(6 + 3/12, "feet"),
  43309. weight: math.unit(185, "lb"),
  43310. name: "Front",
  43311. image: {
  43312. source: "./media/characters/susan-grant/front.svg",
  43313. extra: 1351/1327,
  43314. bottom: 26/1377
  43315. }
  43316. },
  43317. },
  43318. [
  43319. {
  43320. name: "Normal",
  43321. height: math.unit(6 + 3/12, "feet"),
  43322. default: true
  43323. },
  43324. {
  43325. name: "Macro",
  43326. height: math.unit(225, "feet")
  43327. },
  43328. {
  43329. name: "Macro+",
  43330. height: math.unit(900, "feet")
  43331. },
  43332. {
  43333. name: "MegaMacro",
  43334. height: math.unit(14400, "feet")
  43335. },
  43336. ]
  43337. ))
  43338. characterMakers.push(() => makeCharacter(
  43339. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43340. {
  43341. front: {
  43342. height: math.unit(5 + 4/12, "feet"),
  43343. weight: math.unit(110, "lb"),
  43344. name: "Front",
  43345. image: {
  43346. source: "./media/characters/axel-isanov/front.svg",
  43347. extra: 1096/1065,
  43348. bottom: 13/1109
  43349. }
  43350. },
  43351. },
  43352. [
  43353. {
  43354. name: "Normal",
  43355. height: math.unit(5 + 4/12, "feet"),
  43356. default: true
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43362. {
  43363. front: {
  43364. height: math.unit(9, "feet"),
  43365. weight: math.unit(467, "lb"),
  43366. name: "Front",
  43367. image: {
  43368. source: "./media/characters/necahual/front.svg",
  43369. extra: 920/873,
  43370. bottom: 26/946
  43371. }
  43372. },
  43373. back: {
  43374. height: math.unit(9, "feet"),
  43375. weight: math.unit(467, "lb"),
  43376. name: "Back",
  43377. image: {
  43378. source: "./media/characters/necahual/back.svg",
  43379. extra: 930/884,
  43380. bottom: 16/946
  43381. }
  43382. },
  43383. frontUnderwear: {
  43384. height: math.unit(9, "feet"),
  43385. weight: math.unit(467, "lb"),
  43386. name: "Front (Underwear)",
  43387. image: {
  43388. source: "./media/characters/necahual/front-underwear.svg",
  43389. extra: 920/873,
  43390. bottom: 26/946
  43391. }
  43392. },
  43393. frontDressed: {
  43394. height: math.unit(9, "feet"),
  43395. weight: math.unit(467, "lb"),
  43396. name: "Front (Dressed)",
  43397. image: {
  43398. source: "./media/characters/necahual/front-dressed.svg",
  43399. extra: 920/873,
  43400. bottom: 26/946
  43401. }
  43402. },
  43403. },
  43404. [
  43405. {
  43406. name: "Comprsesed",
  43407. height: math.unit(9, "feet")
  43408. },
  43409. {
  43410. name: "Natural",
  43411. height: math.unit(15, "feet"),
  43412. default: true
  43413. },
  43414. {
  43415. name: "Boosted",
  43416. height: math.unit(50, "feet")
  43417. },
  43418. {
  43419. name: "Boosted+",
  43420. height: math.unit(150, "feet")
  43421. },
  43422. {
  43423. name: "Max",
  43424. height: math.unit(500, "feet")
  43425. },
  43426. ]
  43427. ))
  43428. characterMakers.push(() => makeCharacter(
  43429. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43430. {
  43431. front: {
  43432. height: math.unit(22 + 1/12, "feet"),
  43433. weight: math.unit(3200, "lb"),
  43434. name: "Front",
  43435. image: {
  43436. source: "./media/characters/theo-acacia/front.svg",
  43437. extra: 1796/1741,
  43438. bottom: 83/1879
  43439. }
  43440. },
  43441. frontUnderwear: {
  43442. height: math.unit(22 + 1/12, "feet"),
  43443. weight: math.unit(3200, "lb"),
  43444. name: "Front (Underwear)",
  43445. image: {
  43446. source: "./media/characters/theo-acacia/front-underwear.svg",
  43447. extra: 1796/1741,
  43448. bottom: 83/1879
  43449. }
  43450. },
  43451. frontNude: {
  43452. height: math.unit(22 + 1/12, "feet"),
  43453. weight: math.unit(3200, "lb"),
  43454. name: "Front (Nude)",
  43455. image: {
  43456. source: "./media/characters/theo-acacia/front-nude.svg",
  43457. extra: 1796/1741,
  43458. bottom: 83/1879
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Normal",
  43465. height: math.unit(22 + 1/12, "feet"),
  43466. default: true
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43472. {
  43473. front: {
  43474. height: math.unit(20, "feet"),
  43475. name: "Front",
  43476. image: {
  43477. source: "./media/characters/astra/front.svg",
  43478. extra: 1850/1714,
  43479. bottom: 106/1956
  43480. }
  43481. },
  43482. frontUndressed: {
  43483. height: math.unit(20, "feet"),
  43484. name: "Front (Undressed)",
  43485. image: {
  43486. source: "./media/characters/astra/front-undressed.svg",
  43487. extra: 1926/1749,
  43488. bottom: 0/1926
  43489. }
  43490. },
  43491. hand: {
  43492. height: math.unit(1.53, "feet"),
  43493. name: "Hand",
  43494. image: {
  43495. source: "./media/characters/astra/hand.svg"
  43496. }
  43497. },
  43498. paw: {
  43499. height: math.unit(1.53, "feet"),
  43500. name: "Paw",
  43501. image: {
  43502. source: "./media/characters/astra/paw.svg"
  43503. }
  43504. },
  43505. },
  43506. [
  43507. {
  43508. name: "Smallest",
  43509. height: math.unit(20, "feet")
  43510. },
  43511. {
  43512. name: "Normal",
  43513. height: math.unit(1e9, "miles"),
  43514. default: true
  43515. },
  43516. {
  43517. name: "Larger",
  43518. height: math.unit(5, "multiverses")
  43519. },
  43520. {
  43521. name: "Largest",
  43522. height: math.unit(1e9, "multiverses")
  43523. },
  43524. ]
  43525. ))
  43526. characterMakers.push(() => makeCharacter(
  43527. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43528. {
  43529. front: {
  43530. height: math.unit(8, "feet"),
  43531. name: "Front",
  43532. image: {
  43533. source: "./media/characters/breanna/front.svg",
  43534. extra: 1912/1632,
  43535. bottom: 33/1945
  43536. }
  43537. },
  43538. },
  43539. [
  43540. {
  43541. name: "Smallest",
  43542. height: math.unit(8, "feet")
  43543. },
  43544. {
  43545. name: "Normal",
  43546. height: math.unit(1, "mile"),
  43547. default: true
  43548. },
  43549. {
  43550. name: "Maximum",
  43551. height: math.unit(1500000000000, "lightyears")
  43552. },
  43553. ]
  43554. ))
  43555. characterMakers.push(() => makeCharacter(
  43556. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43557. {
  43558. front: {
  43559. height: math.unit(5 + 11/12, "feet"),
  43560. weight: math.unit(155, "lb"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/cai/front.svg",
  43564. extra: 1823/1702,
  43565. bottom: 32/1855
  43566. }
  43567. },
  43568. back: {
  43569. height: math.unit(5 + 11/12, "feet"),
  43570. weight: math.unit(155, "lb"),
  43571. name: "Back",
  43572. image: {
  43573. source: "./media/characters/cai/back.svg",
  43574. extra: 1809/1708,
  43575. bottom: 31/1840
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(5 + 11/12, "feet"),
  43583. default: true
  43584. },
  43585. {
  43586. name: "Big",
  43587. height: math.unit(15, "feet")
  43588. },
  43589. {
  43590. name: "Macro",
  43591. height: math.unit(200, "feet")
  43592. },
  43593. ]
  43594. ))
  43595. characterMakers.push(() => makeCharacter(
  43596. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43597. {
  43598. front: {
  43599. height: math.unit(5 + 6/12, "feet"),
  43600. weight: math.unit(160, "lb"),
  43601. name: "Front",
  43602. image: {
  43603. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43604. extra: 1227/1174,
  43605. bottom: 37/1264
  43606. }
  43607. },
  43608. },
  43609. [
  43610. {
  43611. name: "Macro",
  43612. height: math.unit(444, "meters"),
  43613. default: true
  43614. },
  43615. ]
  43616. ))
  43617. characterMakers.push(() => makeCharacter(
  43618. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43619. {
  43620. front: {
  43621. height: math.unit(18 + 7/12, "feet"),
  43622. name: "Front",
  43623. image: {
  43624. source: "./media/characters/rex/front.svg",
  43625. extra: 1941/1807,
  43626. bottom: 66/2007
  43627. }
  43628. },
  43629. back: {
  43630. height: math.unit(18 + 7/12, "feet"),
  43631. name: "Back",
  43632. image: {
  43633. source: "./media/characters/rex/back.svg",
  43634. extra: 1937/1822,
  43635. bottom: 42/1979
  43636. }
  43637. },
  43638. boot: {
  43639. height: math.unit(3.45, "feet"),
  43640. name: "Boot",
  43641. image: {
  43642. source: "./media/characters/rex/boot.svg"
  43643. }
  43644. },
  43645. paw: {
  43646. height: math.unit(4.17, "feet"),
  43647. name: "Paw",
  43648. image: {
  43649. source: "./media/characters/rex/paw.svg"
  43650. }
  43651. },
  43652. head: {
  43653. height: math.unit(6.728, "feet"),
  43654. name: "Head",
  43655. image: {
  43656. source: "./media/characters/rex/head.svg"
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Nano",
  43663. height: math.unit(18 + 7/12, "feet")
  43664. },
  43665. {
  43666. name: "Micro",
  43667. height: math.unit(1.5, "megameters")
  43668. },
  43669. {
  43670. name: "Normal",
  43671. height: math.unit(440, "megameters"),
  43672. default: true
  43673. },
  43674. {
  43675. name: "Macro",
  43676. height: math.unit(2.5, "gigameters")
  43677. },
  43678. {
  43679. name: "Gigamacro",
  43680. height: math.unit(2, "galaxies")
  43681. },
  43682. ]
  43683. ))
  43684. characterMakers.push(() => makeCharacter(
  43685. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43686. {
  43687. side: {
  43688. height: math.unit(32, "feet"),
  43689. weight: math.unit(250000, "lb"),
  43690. name: "Side",
  43691. image: {
  43692. source: "./media/characters/silverwing/side.svg",
  43693. extra: 1100/1019,
  43694. bottom: 204/1304
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "Normal",
  43701. height: math.unit(32, "feet"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(6 + 6/12, "feet"),
  43711. weight: math.unit(350, "lb"),
  43712. name: "Front",
  43713. image: {
  43714. source: "./media/characters/tristan-hawthorne/front.svg",
  43715. extra: 1159/1124,
  43716. bottom: 37/1196
  43717. },
  43718. form: "labrador",
  43719. default: true
  43720. },
  43721. skunkFront: {
  43722. height: math.unit(4 + 6/12, "feet"),
  43723. weight: math.unit(120, "lb"),
  43724. name: "Front",
  43725. image: {
  43726. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43727. extra: 1609/1551,
  43728. bottom: 169/1778
  43729. },
  43730. form: "skunk",
  43731. default: true
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Normal",
  43737. height: math.unit(6 + 6/12, "feet"),
  43738. form: "labrador",
  43739. default: true
  43740. },
  43741. {
  43742. name: "Normal",
  43743. height: math.unit(4 + 6/12, "feet"),
  43744. form: "skunk",
  43745. default: true
  43746. },
  43747. ],
  43748. {
  43749. "labrador": {
  43750. name: "Labrador",
  43751. default: true
  43752. },
  43753. "skunk": {
  43754. name: "Skunk"
  43755. }
  43756. }
  43757. ))
  43758. characterMakers.push(() => makeCharacter(
  43759. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43760. {
  43761. front: {
  43762. height: math.unit(5 + 11/12, "feet"),
  43763. weight: math.unit(190, "lb"),
  43764. name: "Front",
  43765. image: {
  43766. source: "./media/characters/mizu/front.svg",
  43767. extra: 1988/1788,
  43768. bottom: 14/2002
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Normal",
  43775. height: math.unit(5 + 11/12, "feet"),
  43776. default: true
  43777. },
  43778. ]
  43779. ))
  43780. characterMakers.push(() => makeCharacter(
  43781. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43782. {
  43783. front: {
  43784. height: math.unit(1.7, "feet"),
  43785. weight: math.unit(50, "lb"),
  43786. name: "Front",
  43787. image: {
  43788. source: "./media/characters/dechroma/front.svg",
  43789. extra: 1095/859,
  43790. bottom: 64/1159
  43791. }
  43792. },
  43793. },
  43794. [
  43795. {
  43796. name: "Normal",
  43797. height: math.unit(1.7, "feet"),
  43798. default: true
  43799. },
  43800. ]
  43801. ))
  43802. characterMakers.push(() => makeCharacter(
  43803. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43804. {
  43805. side: {
  43806. height: math.unit(30, "feet"),
  43807. name: "Side",
  43808. image: {
  43809. source: "./media/characters/veluren-thanazel/side.svg",
  43810. extra: 1611/633,
  43811. bottom: 118/1729
  43812. }
  43813. },
  43814. front: {
  43815. height: math.unit(30, "feet"),
  43816. name: "Front",
  43817. image: {
  43818. source: "./media/characters/veluren-thanazel/front.svg",
  43819. extra: 1486/636,
  43820. bottom: 238/1724
  43821. }
  43822. },
  43823. head: {
  43824. height: math.unit(21.4, "feet"),
  43825. name: "Head",
  43826. image: {
  43827. source: "./media/characters/veluren-thanazel/head.svg"
  43828. }
  43829. },
  43830. genitals: {
  43831. height: math.unit(19.4, "feet"),
  43832. name: "Genitals",
  43833. image: {
  43834. source: "./media/characters/veluren-thanazel/genitals.svg"
  43835. }
  43836. },
  43837. },
  43838. [
  43839. {
  43840. name: "Social",
  43841. height: math.unit(6, "feet")
  43842. },
  43843. {
  43844. name: "Play",
  43845. height: math.unit(12, "feet")
  43846. },
  43847. {
  43848. name: "True",
  43849. height: math.unit(30, "feet"),
  43850. default: true
  43851. },
  43852. ]
  43853. ))
  43854. characterMakers.push(() => makeCharacter(
  43855. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43856. {
  43857. front: {
  43858. height: math.unit(7 + 6/12, "feet"),
  43859. weight: math.unit(500, "kg"),
  43860. name: "Front",
  43861. image: {
  43862. source: "./media/characters/arcturas/front.svg",
  43863. extra: 1700/1500,
  43864. bottom: 145/1845
  43865. }
  43866. },
  43867. },
  43868. [
  43869. {
  43870. name: "Normal",
  43871. height: math.unit(7 + 6/12, "feet"),
  43872. default: true
  43873. },
  43874. ]
  43875. ))
  43876. characterMakers.push(() => makeCharacter(
  43877. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43878. {
  43879. side: {
  43880. height: math.unit(6, "feet"),
  43881. weight: math.unit(2, "tons"),
  43882. name: "Side",
  43883. image: {
  43884. source: "./media/characters/vitaen/side.svg",
  43885. extra: 1157/617,
  43886. bottom: 122/1279
  43887. }
  43888. },
  43889. },
  43890. [
  43891. {
  43892. name: "Normal",
  43893. height: math.unit(6, "feet"),
  43894. default: true
  43895. },
  43896. ]
  43897. ))
  43898. characterMakers.push(() => makeCharacter(
  43899. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43900. {
  43901. front: {
  43902. height: math.unit(19, "feet"),
  43903. name: "Front",
  43904. image: {
  43905. source: "./media/characters/fia-dreamweaver/front.svg",
  43906. extra: 1630/1504,
  43907. bottom: 25/1655
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "Normal",
  43914. height: math.unit(19, "feet"),
  43915. default: true
  43916. },
  43917. ]
  43918. ))
  43919. characterMakers.push(() => makeCharacter(
  43920. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43921. {
  43922. front: {
  43923. height: math.unit(5 + 4/12, "feet"),
  43924. name: "Front",
  43925. image: {
  43926. source: "./media/characters/artan/front.svg",
  43927. extra: 1618/1535,
  43928. bottom: 46/1664
  43929. }
  43930. },
  43931. back: {
  43932. height: math.unit(5 + 4/12, "feet"),
  43933. name: "Back",
  43934. image: {
  43935. source: "./media/characters/artan/back.svg",
  43936. extra: 1618/1543,
  43937. bottom: 31/1649
  43938. }
  43939. },
  43940. },
  43941. [
  43942. {
  43943. name: "Normal",
  43944. height: math.unit(5 + 4/12, "feet"),
  43945. default: true
  43946. },
  43947. ]
  43948. ))
  43949. characterMakers.push(() => makeCharacter(
  43950. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43951. {
  43952. side: {
  43953. height: math.unit(182, "cm"),
  43954. weight: math.unit(1000, "lb"),
  43955. name: "Side",
  43956. image: {
  43957. source: "./media/characters/silver-dragon/side.svg",
  43958. extra: 710/287,
  43959. bottom: 88/798
  43960. }
  43961. },
  43962. },
  43963. [
  43964. {
  43965. name: "Normal",
  43966. height: math.unit(182, "cm"),
  43967. default: true
  43968. },
  43969. ]
  43970. ))
  43971. characterMakers.push(() => makeCharacter(
  43972. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43973. {
  43974. side: {
  43975. height: math.unit(6 + 6/12, "feet"),
  43976. weight: math.unit(1.5, "tons"),
  43977. name: "Side",
  43978. image: {
  43979. source: "./media/characters/zephyr/side.svg",
  43980. extra: 1433/586,
  43981. bottom: 109/1542
  43982. }
  43983. },
  43984. },
  43985. [
  43986. {
  43987. name: "Normal",
  43988. height: math.unit(6 + 6/12, "feet"),
  43989. default: true
  43990. },
  43991. ]
  43992. ))
  43993. characterMakers.push(() => makeCharacter(
  43994. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43995. {
  43996. side: {
  43997. height: math.unit(1, "feet"),
  43998. name: "Side",
  43999. image: {
  44000. source: "./media/characters/vixye/side.svg",
  44001. extra: 632/541,
  44002. bottom: 0/632
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Normal",
  44009. height: math.unit(1, "feet"),
  44010. default: true
  44011. },
  44012. {
  44013. name: "True",
  44014. height: math.unit(1e15, "multiverses")
  44015. },
  44016. ]
  44017. ))
  44018. characterMakers.push(() => makeCharacter(
  44019. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44020. {
  44021. front: {
  44022. height: math.unit(8 + 2/12, "feet"),
  44023. weight: math.unit(650, "lb"),
  44024. name: "Front",
  44025. image: {
  44026. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44027. extra: 1174/1137,
  44028. bottom: 82/1256
  44029. }
  44030. },
  44031. back: {
  44032. height: math.unit(8 + 2/12, "feet"),
  44033. weight: math.unit(650, "lb"),
  44034. name: "Back",
  44035. image: {
  44036. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44037. extra: 1204/1157,
  44038. bottom: 46/1250
  44039. }
  44040. },
  44041. },
  44042. [
  44043. {
  44044. name: "Wildform",
  44045. height: math.unit(8 + 2/12, "feet"),
  44046. default: true
  44047. },
  44048. ]
  44049. ))
  44050. characterMakers.push(() => makeCharacter(
  44051. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44052. {
  44053. front: {
  44054. height: math.unit(18, "feet"),
  44055. name: "Front",
  44056. image: {
  44057. source: "./media/characters/cyphin/front.svg",
  44058. extra: 970/886,
  44059. bottom: 42/1012
  44060. }
  44061. },
  44062. back: {
  44063. height: math.unit(18, "feet"),
  44064. name: "Back",
  44065. image: {
  44066. source: "./media/characters/cyphin/back.svg",
  44067. extra: 1009/894,
  44068. bottom: 24/1033
  44069. }
  44070. },
  44071. head: {
  44072. height: math.unit(5.05, "feet"),
  44073. name: "Head",
  44074. image: {
  44075. source: "./media/characters/cyphin/head.svg"
  44076. }
  44077. },
  44078. tailbud: {
  44079. height: math.unit(5, "feet"),
  44080. name: "Tailbud",
  44081. image: {
  44082. source: "./media/characters/cyphin/tailbud.svg"
  44083. }
  44084. },
  44085. },
  44086. [
  44087. ]
  44088. ))
  44089. characterMakers.push(() => makeCharacter(
  44090. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44091. {
  44092. side: {
  44093. height: math.unit(10, "feet"),
  44094. weight: math.unit(6, "tons"),
  44095. name: "Side",
  44096. image: {
  44097. source: "./media/characters/raijin/side.svg",
  44098. extra: 1529/613,
  44099. bottom: 337/1866
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Normal",
  44106. height: math.unit(10, "feet"),
  44107. default: true
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44113. {
  44114. side: {
  44115. height: math.unit(9, "feet"),
  44116. name: "Side",
  44117. image: {
  44118. source: "./media/characters/nilghais/side.svg",
  44119. extra: 1047/744,
  44120. bottom: 91/1138
  44121. }
  44122. },
  44123. head: {
  44124. height: math.unit(3.14, "feet"),
  44125. name: "Head",
  44126. image: {
  44127. source: "./media/characters/nilghais/head.svg"
  44128. }
  44129. },
  44130. mouth: {
  44131. height: math.unit(4.6, "feet"),
  44132. name: "Mouth",
  44133. image: {
  44134. source: "./media/characters/nilghais/mouth.svg"
  44135. }
  44136. },
  44137. wings: {
  44138. height: math.unit(24, "feet"),
  44139. name: "Wings",
  44140. image: {
  44141. source: "./media/characters/nilghais/wings.svg"
  44142. }
  44143. },
  44144. ass: {
  44145. height: math.unit(6.12, "feet"),
  44146. name: "Ass",
  44147. image: {
  44148. source: "./media/characters/nilghais/ass.svg"
  44149. }
  44150. },
  44151. },
  44152. [
  44153. {
  44154. name: "Normal",
  44155. height: math.unit(9, "feet"),
  44156. default: true
  44157. },
  44158. ]
  44159. ))
  44160. characterMakers.push(() => makeCharacter(
  44161. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44162. {
  44163. regular: {
  44164. height: math.unit(16 + 2/12, "feet"),
  44165. weight: math.unit(2300, "lb"),
  44166. name: "Regular",
  44167. image: {
  44168. source: "./media/characters/zolgar/regular.svg",
  44169. extra: 1246/1004,
  44170. bottom: 124/1370
  44171. }
  44172. },
  44173. boxers: {
  44174. height: math.unit(16 + 2/12, "feet"),
  44175. weight: math.unit(2300, "lb"),
  44176. name: "Boxers",
  44177. image: {
  44178. source: "./media/characters/zolgar/boxers.svg",
  44179. extra: 1246/1004,
  44180. bottom: 124/1370
  44181. }
  44182. },
  44183. armored: {
  44184. height: math.unit(16 + 2/12, "feet"),
  44185. weight: math.unit(2300, "lb"),
  44186. name: "Armored",
  44187. image: {
  44188. source: "./media/characters/zolgar/armored.svg",
  44189. extra: 1246/1004,
  44190. bottom: 124/1370
  44191. }
  44192. },
  44193. goth: {
  44194. height: math.unit(16 + 2/12, "feet"),
  44195. weight: math.unit(2300, "lb"),
  44196. name: "Goth",
  44197. image: {
  44198. source: "./media/characters/zolgar/goth.svg",
  44199. extra: 1246/1004,
  44200. bottom: 124/1370
  44201. }
  44202. },
  44203. },
  44204. [
  44205. {
  44206. name: "Shrunken Down",
  44207. height: math.unit(9 + 2/12, "feet")
  44208. },
  44209. {
  44210. name: "Normal",
  44211. height: math.unit(16 + 2/12, "feet"),
  44212. default: true
  44213. },
  44214. ]
  44215. ))
  44216. characterMakers.push(() => makeCharacter(
  44217. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44218. {
  44219. front: {
  44220. height: math.unit(6, "feet"),
  44221. weight: math.unit(168, "lb"),
  44222. name: "Front",
  44223. image: {
  44224. source: "./media/characters/luca/front.svg",
  44225. extra: 841/667,
  44226. bottom: 102/943
  44227. }
  44228. },
  44229. },
  44230. [
  44231. {
  44232. name: "Normal",
  44233. height: math.unit(6, "feet"),
  44234. default: true
  44235. },
  44236. ]
  44237. ))
  44238. characterMakers.push(() => makeCharacter(
  44239. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44240. {
  44241. side: {
  44242. height: math.unit(7 + 3/12, "feet"),
  44243. weight: math.unit(312, "lb"),
  44244. name: "Side",
  44245. image: {
  44246. source: "./media/characters/zezo/side.svg",
  44247. extra: 1192/1067,
  44248. bottom: 63/1255
  44249. }
  44250. },
  44251. },
  44252. [
  44253. {
  44254. name: "Normal",
  44255. height: math.unit(7 + 3/12, "feet"),
  44256. default: true
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44262. {
  44263. front: {
  44264. height: math.unit(5 + 5/12, "feet"),
  44265. weight: math.unit(170, "lb"),
  44266. name: "Front",
  44267. image: {
  44268. source: "./media/characters/mayso/front.svg",
  44269. extra: 1215/1108,
  44270. bottom: 16/1231
  44271. }
  44272. },
  44273. },
  44274. [
  44275. {
  44276. name: "Normal",
  44277. height: math.unit(5 + 5/12, "feet"),
  44278. default: true
  44279. },
  44280. ]
  44281. ))
  44282. characterMakers.push(() => makeCharacter(
  44283. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44284. {
  44285. front: {
  44286. height: math.unit(4 + 3/12, "feet"),
  44287. weight: math.unit(80, "lb"),
  44288. name: "Front",
  44289. image: {
  44290. source: "./media/characters/hess/front.svg",
  44291. extra: 1200/1123,
  44292. bottom: 16/1216
  44293. }
  44294. },
  44295. },
  44296. [
  44297. {
  44298. name: "Normal",
  44299. height: math.unit(4 + 3/12, "feet"),
  44300. default: true
  44301. },
  44302. ]
  44303. ))
  44304. characterMakers.push(() => makeCharacter(
  44305. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44306. {
  44307. front: {
  44308. height: math.unit(1.9, "meters"),
  44309. name: "Front",
  44310. image: {
  44311. source: "./media/characters/ashgar/front.svg",
  44312. extra: 1177/1146,
  44313. bottom: 99/1276
  44314. }
  44315. },
  44316. back: {
  44317. height: math.unit(1.9, "meters"),
  44318. name: "Back",
  44319. image: {
  44320. source: "./media/characters/ashgar/back.svg",
  44321. extra: 1201/1183,
  44322. bottom: 53/1254
  44323. }
  44324. },
  44325. feral: {
  44326. height: math.unit(1.4, "meters"),
  44327. name: "Feral",
  44328. image: {
  44329. source: "./media/characters/ashgar/feral.svg",
  44330. extra: 370/345,
  44331. bottom: 45/415
  44332. }
  44333. },
  44334. },
  44335. [
  44336. {
  44337. name: "Normal",
  44338. height: math.unit(1.9, "meters"),
  44339. default: true
  44340. },
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44345. {
  44346. regular: {
  44347. height: math.unit(6, "feet"),
  44348. weight: math.unit(220, "lb"),
  44349. name: "Regular",
  44350. image: {
  44351. source: "./media/characters/phillip/regular.svg",
  44352. extra: 1373/1277,
  44353. bottom: 75/1448
  44354. }
  44355. },
  44356. dressed: {
  44357. height: math.unit(6, "feet"),
  44358. weight: math.unit(220, "lb"),
  44359. name: "Dressed",
  44360. image: {
  44361. source: "./media/characters/phillip/dressed.svg",
  44362. extra: 1373/1277,
  44363. bottom: 75/1448
  44364. }
  44365. },
  44366. paw: {
  44367. height: math.unit(1.44, "feet"),
  44368. name: "Paw",
  44369. image: {
  44370. source: "./media/characters/phillip/paw.svg"
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Normal",
  44377. height: math.unit(6, "feet"),
  44378. default: true
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44384. {
  44385. side: {
  44386. height: math.unit(42, "feet"),
  44387. name: "Side",
  44388. image: {
  44389. source: "./media/characters/uvula/side.svg",
  44390. extra: 683/586,
  44391. bottom: 60/743
  44392. }
  44393. },
  44394. front: {
  44395. height: math.unit(42, "feet"),
  44396. name: "Front",
  44397. image: {
  44398. source: "./media/characters/uvula/front.svg",
  44399. extra: 705/613,
  44400. bottom: 54/759
  44401. }
  44402. },
  44403. maw: {
  44404. height: math.unit(23.5, "feet"),
  44405. name: "Maw",
  44406. image: {
  44407. source: "./media/characters/uvula/maw.svg"
  44408. }
  44409. },
  44410. },
  44411. [
  44412. {
  44413. name: "Original Size",
  44414. height: math.unit(14, "inches")
  44415. },
  44416. {
  44417. name: "Human Size",
  44418. height: math.unit(6, "feet")
  44419. },
  44420. {
  44421. name: "Big",
  44422. height: math.unit(42, "feet"),
  44423. default: true
  44424. },
  44425. {
  44426. name: "Bigger",
  44427. height: math.unit(100, "feet")
  44428. },
  44429. ]
  44430. ))
  44431. characterMakers.push(() => makeCharacter(
  44432. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44433. {
  44434. front: {
  44435. height: math.unit(5 + 11/12, "feet"),
  44436. name: "Front",
  44437. image: {
  44438. source: "./media/characters/lannah/front.svg",
  44439. extra: 1208/1113,
  44440. bottom: 97/1305
  44441. }
  44442. },
  44443. },
  44444. [
  44445. {
  44446. name: "Normal",
  44447. height: math.unit(5 + 11/12, "feet"),
  44448. default: true
  44449. },
  44450. ]
  44451. ))
  44452. characterMakers.push(() => makeCharacter(
  44453. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44454. {
  44455. front: {
  44456. height: math.unit(6 + 3/12, "feet"),
  44457. weight: math.unit(3.5, "tons"),
  44458. name: "Front",
  44459. image: {
  44460. source: "./media/characters/emberflame/front.svg",
  44461. extra: 1198/672,
  44462. bottom: 82/1280
  44463. }
  44464. },
  44465. side: {
  44466. height: math.unit(6 + 3/12, "feet"),
  44467. weight: math.unit(3.5, "tons"),
  44468. name: "Side",
  44469. image: {
  44470. source: "./media/characters/emberflame/side.svg",
  44471. extra: 938/527,
  44472. bottom: 56/994
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Normal",
  44479. height: math.unit(6 + 3/12, "feet"),
  44480. default: true
  44481. },
  44482. ]
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44486. {
  44487. side: {
  44488. height: math.unit(17.5, "feet"),
  44489. weight: math.unit(35, "tons"),
  44490. name: "Side",
  44491. image: {
  44492. source: "./media/characters/sophie-ambrose/side.svg",
  44493. extra: 1573/1242,
  44494. bottom: 71/1644
  44495. }
  44496. },
  44497. maw: {
  44498. height: math.unit(7.4, "feet"),
  44499. name: "Maw",
  44500. image: {
  44501. source: "./media/characters/sophie-ambrose/maw.svg"
  44502. }
  44503. },
  44504. },
  44505. [
  44506. {
  44507. name: "Normal",
  44508. height: math.unit(17.5, "feet"),
  44509. default: true
  44510. },
  44511. ]
  44512. ))
  44513. characterMakers.push(() => makeCharacter(
  44514. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44515. {
  44516. front: {
  44517. height: math.unit(280, "feet"),
  44518. weight: math.unit(550, "tons"),
  44519. name: "Front",
  44520. image: {
  44521. source: "./media/characters/king-mugi/front.svg",
  44522. extra: 1102/947,
  44523. bottom: 104/1206
  44524. }
  44525. },
  44526. },
  44527. [
  44528. {
  44529. name: "King Mugi",
  44530. height: math.unit(280, "feet"),
  44531. default: true
  44532. },
  44533. ]
  44534. ))
  44535. characterMakers.push(() => makeCharacter(
  44536. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44537. {
  44538. front: {
  44539. height: math.unit(64, "meters"),
  44540. name: "Front",
  44541. image: {
  44542. source: "./media/characters/nova-fox/front.svg",
  44543. extra: 1310/1246,
  44544. bottom: 65/1375
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Macro",
  44551. height: math.unit(64, "meters"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(6 + 3/12, "feet"),
  44561. weight: math.unit(170, "lb"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/sam-bat/front.svg",
  44565. extra: 1601/1411,
  44566. bottom: 125/1726
  44567. }
  44568. },
  44569. back: {
  44570. height: math.unit(6 + 3/12, "feet"),
  44571. weight: math.unit(170, "lb"),
  44572. name: "Back",
  44573. image: {
  44574. source: "./media/characters/sam-bat/back.svg",
  44575. extra: 1577/1405,
  44576. bottom: 58/1635
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Normal",
  44583. height: math.unit(6 + 3/12, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44590. {
  44591. front: {
  44592. height: math.unit(59, "feet"),
  44593. weight: math.unit(40000, "lb"),
  44594. name: "Front",
  44595. image: {
  44596. source: "./media/characters/inari/front.svg",
  44597. extra: 1884/1350,
  44598. bottom: 95/1979
  44599. }
  44600. },
  44601. },
  44602. [
  44603. {
  44604. name: "Gigantamax",
  44605. height: math.unit(59, "feet"),
  44606. default: true
  44607. },
  44608. ]
  44609. ))
  44610. characterMakers.push(() => makeCharacter(
  44611. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44612. {
  44613. front: {
  44614. height: math.unit(5 + 8/12, "feet"),
  44615. name: "Front",
  44616. image: {
  44617. source: "./media/characters/elizabeth/front.svg",
  44618. extra: 1395/1298,
  44619. bottom: 54/1449
  44620. }
  44621. },
  44622. mouth: {
  44623. height: math.unit(1.97, "feet"),
  44624. name: "Mouth",
  44625. image: {
  44626. source: "./media/characters/elizabeth/mouth.svg"
  44627. }
  44628. },
  44629. foot: {
  44630. height: math.unit(1.17, "feet"),
  44631. name: "Foot",
  44632. image: {
  44633. source: "./media/characters/elizabeth/foot.svg"
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Normal",
  44640. height: math.unit(5 + 8/12, "feet"),
  44641. default: true
  44642. },
  44643. {
  44644. name: "Minimacro",
  44645. height: math.unit(18, "feet")
  44646. },
  44647. {
  44648. name: "Macro",
  44649. height: math.unit(180, "feet")
  44650. },
  44651. ]
  44652. ))
  44653. characterMakers.push(() => makeCharacter(
  44654. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44655. {
  44656. front: {
  44657. height: math.unit(5 + 2/12, "feet"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/october-gossamer/front.svg",
  44661. extra: 505/454,
  44662. bottom: 7/512
  44663. }
  44664. },
  44665. back: {
  44666. height: math.unit(5 + 2/12, "feet"),
  44667. name: "Back",
  44668. image: {
  44669. source: "./media/characters/october-gossamer/back.svg",
  44670. extra: 501/454,
  44671. bottom: 11/512
  44672. }
  44673. },
  44674. },
  44675. [
  44676. {
  44677. name: "Normal",
  44678. height: math.unit(5 + 2/12, "feet"),
  44679. default: true
  44680. },
  44681. ]
  44682. ))
  44683. characterMakers.push(() => makeCharacter(
  44684. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44685. {
  44686. front: {
  44687. height: math.unit(5, "feet"),
  44688. name: "Front",
  44689. image: {
  44690. source: "./media/characters/epiglottis/front.svg",
  44691. extra: 923/849,
  44692. bottom: 17/940
  44693. }
  44694. },
  44695. },
  44696. [
  44697. {
  44698. name: "Original Size",
  44699. height: math.unit(10, "inches")
  44700. },
  44701. {
  44702. name: "Human Size",
  44703. height: math.unit(5, "feet"),
  44704. default: true
  44705. },
  44706. {
  44707. name: "Big",
  44708. height: math.unit(25, "feet")
  44709. },
  44710. {
  44711. name: "Bigger",
  44712. height: math.unit(50, "feet")
  44713. },
  44714. {
  44715. name: "oh lawd",
  44716. height: math.unit(75, "feet")
  44717. },
  44718. ]
  44719. ))
  44720. characterMakers.push(() => makeCharacter(
  44721. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44722. {
  44723. front: {
  44724. height: math.unit(2 + 4/12, "feet"),
  44725. weight: math.unit(60, "lb"),
  44726. name: "Front",
  44727. image: {
  44728. source: "./media/characters/lerm/front.svg",
  44729. extra: 796/790,
  44730. bottom: 79/875
  44731. }
  44732. },
  44733. },
  44734. [
  44735. {
  44736. name: "Normal",
  44737. height: math.unit(2 + 4/12, "feet"),
  44738. default: true
  44739. },
  44740. ]
  44741. ))
  44742. characterMakers.push(() => makeCharacter(
  44743. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44744. {
  44745. front: {
  44746. height: math.unit(5.5, "feet"),
  44747. weight: math.unit(130, "lb"),
  44748. name: "Front",
  44749. image: {
  44750. source: "./media/characters/xena-nebadon/front.svg",
  44751. extra: 1828/1730,
  44752. bottom: 79/1907
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Tiny Puppy",
  44759. height: math.unit(3, "inches")
  44760. },
  44761. {
  44762. name: "Normal",
  44763. height: math.unit(5.5, "feet"),
  44764. default: true
  44765. },
  44766. {
  44767. name: "Lotta Lady",
  44768. height: math.unit(12, "feet")
  44769. },
  44770. {
  44771. name: "Pretty Big",
  44772. height: math.unit(100, "feet")
  44773. },
  44774. {
  44775. name: "Big",
  44776. height: math.unit(500, "feet")
  44777. },
  44778. {
  44779. name: "Skyscraper Toys",
  44780. height: math.unit(2500, "feet")
  44781. },
  44782. {
  44783. name: "Plane Catcher",
  44784. height: math.unit(8, "miles")
  44785. },
  44786. {
  44787. name: "Planet Toys",
  44788. height: math.unit(15, "earths")
  44789. },
  44790. {
  44791. name: "Stardust",
  44792. height: math.unit(0.25, "galaxies")
  44793. },
  44794. {
  44795. name: "Snacks",
  44796. height: math.unit(70, "universes")
  44797. },
  44798. ]
  44799. ))
  44800. characterMakers.push(() => makeCharacter(
  44801. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44802. {
  44803. front: {
  44804. height: math.unit(1.6, "meters"),
  44805. weight: math.unit(60, "kg"),
  44806. name: "Front",
  44807. image: {
  44808. source: "./media/characters/bounty/front.svg",
  44809. extra: 1426/1308,
  44810. bottom: 15/1441
  44811. }
  44812. },
  44813. back: {
  44814. height: math.unit(1.6, "meters"),
  44815. weight: math.unit(60, "kg"),
  44816. name: "Back",
  44817. image: {
  44818. source: "./media/characters/bounty/back.svg",
  44819. extra: 1417/1307,
  44820. bottom: 8/1425
  44821. }
  44822. },
  44823. },
  44824. [
  44825. {
  44826. name: "Normal",
  44827. height: math.unit(1.6, "meters"),
  44828. default: true
  44829. },
  44830. {
  44831. name: "Macro",
  44832. height: math.unit(300, "meters")
  44833. },
  44834. ]
  44835. ))
  44836. characterMakers.push(() => makeCharacter(
  44837. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44838. {
  44839. front: {
  44840. height: math.unit(2 + 8/12, "feet"),
  44841. weight: math.unit(15, "lb"),
  44842. name: "Front",
  44843. image: {
  44844. source: "./media/characters/mochi/front.svg",
  44845. extra: 1022/852,
  44846. bottom: 435/1457
  44847. }
  44848. },
  44849. back: {
  44850. height: math.unit(2 + 8/12, "feet"),
  44851. weight: math.unit(15, "lb"),
  44852. name: "Back",
  44853. image: {
  44854. source: "./media/characters/mochi/back.svg",
  44855. extra: 1335/1119,
  44856. bottom: 39/1374
  44857. }
  44858. },
  44859. bird: {
  44860. height: math.unit(2 + 8/12, "feet"),
  44861. weight: math.unit(15, "lb"),
  44862. name: "Bird",
  44863. image: {
  44864. source: "./media/characters/mochi/bird.svg",
  44865. extra: 1251/1113,
  44866. bottom: 178/1429
  44867. }
  44868. },
  44869. kaiju: {
  44870. height: math.unit(154, "feet"),
  44871. weight: math.unit(1e7, "lb"),
  44872. name: "Kaiju",
  44873. image: {
  44874. source: "./media/characters/mochi/kaiju.svg",
  44875. extra: 460/324,
  44876. bottom: 40/500
  44877. }
  44878. },
  44879. head: {
  44880. height: math.unit(1.21, "feet"),
  44881. name: "Head",
  44882. image: {
  44883. source: "./media/characters/mochi/head.svg"
  44884. }
  44885. },
  44886. alternateTail: {
  44887. height: math.unit(2 + 8/12, "feet"),
  44888. weight: math.unit(45, "lb"),
  44889. name: "Alternate Tail",
  44890. image: {
  44891. source: "./media/characters/mochi/alternate-tail.svg",
  44892. extra: 139/76,
  44893. bottom: 45/184
  44894. }
  44895. },
  44896. },
  44897. [
  44898. {
  44899. name: "Micro",
  44900. height: math.unit(2, "inches")
  44901. },
  44902. {
  44903. name: "Normal",
  44904. height: math.unit(2 + 8/12, "feet"),
  44905. default: true
  44906. },
  44907. {
  44908. name: "Macro",
  44909. height: math.unit(106, "feet")
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(5.67, "feet"),
  44918. weight: math.unit(135, "lb"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/sarel/front.svg",
  44922. extra: 865/788,
  44923. bottom: 97/962
  44924. }
  44925. },
  44926. back: {
  44927. height: math.unit(5.67, "feet"),
  44928. weight: math.unit(135, "lb"),
  44929. name: "Back",
  44930. image: {
  44931. source: "./media/characters/sarel/back.svg",
  44932. extra: 857/777,
  44933. bottom: 32/889
  44934. }
  44935. },
  44936. chozoan: {
  44937. height: math.unit(5.67, "feet"),
  44938. weight: math.unit(135, "lb"),
  44939. name: "Chozoan",
  44940. image: {
  44941. source: "./media/characters/sarel/chozoan.svg",
  44942. extra: 865/788,
  44943. bottom: 97/962
  44944. }
  44945. },
  44946. current: {
  44947. height: math.unit(5.67, "feet"),
  44948. weight: math.unit(135, "lb"),
  44949. name: "Current",
  44950. image: {
  44951. source: "./media/characters/sarel/current.svg",
  44952. extra: 865/788,
  44953. bottom: 97/962
  44954. }
  44955. },
  44956. head: {
  44957. height: math.unit(1.77, "feet"),
  44958. name: "Head",
  44959. image: {
  44960. source: "./media/characters/sarel/head.svg"
  44961. }
  44962. },
  44963. claws: {
  44964. height: math.unit(1.8, "feet"),
  44965. name: "Claws",
  44966. image: {
  44967. source: "./media/characters/sarel/claws.svg"
  44968. }
  44969. },
  44970. clawsAlt: {
  44971. height: math.unit(1.8, "feet"),
  44972. name: "Claws-alt",
  44973. image: {
  44974. source: "./media/characters/sarel/claws-alt.svg"
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(5.67, "feet"),
  44982. default: true
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(5500, "feet"),
  44991. name: "Front",
  44992. image: {
  44993. source: "./media/characters/alyonia/front.svg",
  44994. extra: 1200/1135,
  44995. bottom: 29/1229
  44996. }
  44997. },
  44998. back: {
  44999. height: math.unit(5500, "feet"),
  45000. name: "Back",
  45001. image: {
  45002. source: "./media/characters/alyonia/back.svg",
  45003. extra: 1205/1138,
  45004. bottom: 10/1215
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Small",
  45011. height: math.unit(10, "feet")
  45012. },
  45013. {
  45014. name: "Macro",
  45015. height: math.unit(500, "feet")
  45016. },
  45017. {
  45018. name: "Mega Macro",
  45019. height: math.unit(5500, "feet"),
  45020. default: true
  45021. },
  45022. {
  45023. name: "Mega Macro+",
  45024. height: math.unit(500000, "feet")
  45025. },
  45026. {
  45027. name: "Giga Macro",
  45028. height: math.unit(3000, "miles")
  45029. },
  45030. {
  45031. name: "Tera Macro",
  45032. height: math.unit(2.8e6, "miles")
  45033. },
  45034. {
  45035. name: "Galactic",
  45036. height: math.unit(120000, "lightyears")
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45042. {
  45043. werewolf: {
  45044. height: math.unit(8, "feet"),
  45045. weight: math.unit(425, "lb"),
  45046. name: "Werewolf",
  45047. image: {
  45048. source: "./media/characters/autumn/werewolf.svg",
  45049. extra: 2154/2031,
  45050. bottom: 160/2314
  45051. }
  45052. },
  45053. human: {
  45054. height: math.unit(5 + 8/12, "feet"),
  45055. weight: math.unit(150, "lb"),
  45056. name: "Human",
  45057. image: {
  45058. source: "./media/characters/autumn/human.svg",
  45059. extra: 1200/1149,
  45060. bottom: 30/1230
  45061. }
  45062. },
  45063. },
  45064. [
  45065. {
  45066. name: "Normal",
  45067. height: math.unit(8, "feet"),
  45068. default: true
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45074. {
  45075. front: {
  45076. height: math.unit(8 + 5/12, "feet"),
  45077. weight: math.unit(825, "lb"),
  45078. name: "Front",
  45079. image: {
  45080. source: "./media/characters/cobalt-charizard/front.svg",
  45081. extra: 1268/1155,
  45082. bottom: 122/1390
  45083. }
  45084. },
  45085. side: {
  45086. height: math.unit(8 + 5/12, "feet"),
  45087. weight: math.unit(825, "lb"),
  45088. name: "Side",
  45089. image: {
  45090. source: "./media/characters/cobalt-charizard/side.svg",
  45091. extra: 1348/1257,
  45092. bottom: 58/1406
  45093. }
  45094. },
  45095. gMax: {
  45096. height: math.unit(134 + 11/12, "feet"),
  45097. name: "G-Max",
  45098. image: {
  45099. source: "./media/characters/cobalt-charizard/g-max.svg",
  45100. extra: 1835/1541,
  45101. bottom: 151/1986
  45102. }
  45103. },
  45104. },
  45105. [
  45106. {
  45107. name: "Normal",
  45108. height: math.unit(8 + 5/12, "feet"),
  45109. default: true
  45110. },
  45111. ]
  45112. ))
  45113. characterMakers.push(() => makeCharacter(
  45114. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45115. {
  45116. front: {
  45117. height: math.unit(6 + 3/12, "feet"),
  45118. weight: math.unit(210, "lb"),
  45119. name: "Front",
  45120. image: {
  45121. source: "./media/characters/stella/front.svg",
  45122. extra: 3549/3335,
  45123. bottom: 51/3600
  45124. }
  45125. },
  45126. },
  45127. [
  45128. {
  45129. name: "Normal",
  45130. height: math.unit(6 + 3/12, "feet"),
  45131. default: true
  45132. },
  45133. ]
  45134. ))
  45135. characterMakers.push(() => makeCharacter(
  45136. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45137. {
  45138. front: {
  45139. height: math.unit(5, "feet"),
  45140. weight: math.unit(90, "lb"),
  45141. name: "Front",
  45142. image: {
  45143. source: "./media/characters/riley-bishop/front.svg",
  45144. extra: 1450/1428,
  45145. bottom: 152/1602
  45146. }
  45147. },
  45148. },
  45149. [
  45150. {
  45151. name: "Normal",
  45152. height: math.unit(5, "feet"),
  45153. default: true
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45159. {
  45160. side: {
  45161. height: math.unit(8 + 2/12, "feet"),
  45162. weight: math.unit(500, "kg"),
  45163. name: "Side",
  45164. image: {
  45165. source: "./media/characters/theo-arcanine/side.svg",
  45166. extra: 1342/1074,
  45167. bottom: 111/1453
  45168. }
  45169. },
  45170. },
  45171. [
  45172. {
  45173. name: "Normal",
  45174. height: math.unit(8 + 2/12, "feet"),
  45175. default: true
  45176. },
  45177. ]
  45178. ))
  45179. characterMakers.push(() => makeCharacter(
  45180. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45181. {
  45182. front: {
  45183. height: math.unit(4, "feet"),
  45184. name: "Front",
  45185. image: {
  45186. source: "./media/characters/kali/front.svg",
  45187. extra: 1921/1357,
  45188. bottom: 70/1991
  45189. }
  45190. },
  45191. },
  45192. [
  45193. {
  45194. name: "Normal",
  45195. height: math.unit(4, "feet"),
  45196. default: true
  45197. },
  45198. {
  45199. name: "Macro",
  45200. height: math.unit(32, "meters")
  45201. },
  45202. {
  45203. name: "Macro+",
  45204. height: math.unit(150, "meters")
  45205. },
  45206. {
  45207. name: "Megamacro",
  45208. height: math.unit(7500, "meters")
  45209. },
  45210. {
  45211. name: "Megamacro+",
  45212. height: math.unit(80, "kilometers")
  45213. },
  45214. ]
  45215. ))
  45216. characterMakers.push(() => makeCharacter(
  45217. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45218. {
  45219. side: {
  45220. height: math.unit(5 + 11/12, "feet"),
  45221. weight: math.unit(236, "lb"),
  45222. name: "Side",
  45223. image: {
  45224. source: "./media/characters/gapp/side.svg",
  45225. extra: 775/340,
  45226. bottom: 58/833
  45227. }
  45228. },
  45229. mouth: {
  45230. height: math.unit(2.98, "feet"),
  45231. name: "Mouth",
  45232. image: {
  45233. source: "./media/characters/gapp/mouth.svg"
  45234. }
  45235. },
  45236. },
  45237. [
  45238. {
  45239. name: "Normal",
  45240. height: math.unit(5 + 1/12, "feet"),
  45241. default: true
  45242. },
  45243. ]
  45244. ))
  45245. characterMakers.push(() => makeCharacter(
  45246. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45247. {
  45248. front: {
  45249. height: math.unit(6, "feet"),
  45250. name: "Front",
  45251. image: {
  45252. source: "./media/characters/persephone/front.svg",
  45253. extra: 1895/1717,
  45254. bottom: 96/1991
  45255. }
  45256. },
  45257. back: {
  45258. height: math.unit(6, "feet"),
  45259. name: "Back",
  45260. image: {
  45261. source: "./media/characters/persephone/back.svg",
  45262. extra: 1868/1679,
  45263. bottom: 26/1894
  45264. }
  45265. },
  45266. casual: {
  45267. height: math.unit(6, "feet"),
  45268. name: "Casual",
  45269. image: {
  45270. source: "./media/characters/persephone/casual.svg",
  45271. extra: 1713/1541,
  45272. bottom: 76/1789
  45273. }
  45274. },
  45275. },
  45276. [
  45277. {
  45278. name: "Human Size",
  45279. height: math.unit(6, "feet")
  45280. },
  45281. {
  45282. name: "Big Steppy",
  45283. height: math.unit(600, "meters"),
  45284. default: true
  45285. },
  45286. {
  45287. name: "Galaxy Brain",
  45288. height: math.unit(1, "zettameter")
  45289. },
  45290. ]
  45291. ))
  45292. characterMakers.push(() => makeCharacter(
  45293. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45294. {
  45295. front: {
  45296. height: math.unit(1.85, "meters"),
  45297. name: "Front",
  45298. image: {
  45299. source: "./media/characters/riley-foxthing/front.svg",
  45300. extra: 1495/1354,
  45301. bottom: 122/1617
  45302. }
  45303. },
  45304. frontAlt: {
  45305. height: math.unit(1.85, "meters"),
  45306. name: "Front (Alt)",
  45307. image: {
  45308. source: "./media/characters/riley-foxthing/front-alt.svg",
  45309. extra: 1572/1389,
  45310. bottom: 116/1688
  45311. }
  45312. },
  45313. },
  45314. [
  45315. {
  45316. name: "Normal Sized",
  45317. height: math.unit(1.85, "meters"),
  45318. default: true
  45319. },
  45320. {
  45321. name: "Quite Sizable",
  45322. height: math.unit(5, "meters")
  45323. },
  45324. {
  45325. name: "Rather Large",
  45326. height: math.unit(20, "meters")
  45327. },
  45328. {
  45329. name: "Macro",
  45330. height: math.unit(450, "meters")
  45331. },
  45332. {
  45333. name: "Giga",
  45334. height: math.unit(5, "km")
  45335. },
  45336. ]
  45337. ))
  45338. characterMakers.push(() => makeCharacter(
  45339. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45340. {
  45341. front: {
  45342. height: math.unit(6, "feet"),
  45343. weight: math.unit(200, "lb"),
  45344. name: "Front",
  45345. image: {
  45346. source: "./media/characters/blizzard/front.svg",
  45347. extra: 1136/990,
  45348. bottom: 136/1272
  45349. }
  45350. },
  45351. back: {
  45352. height: math.unit(6, "feet"),
  45353. weight: math.unit(200, "lb"),
  45354. name: "Back",
  45355. image: {
  45356. source: "./media/characters/blizzard/back.svg",
  45357. extra: 1175/1034,
  45358. bottom: 97/1272
  45359. }
  45360. },
  45361. sitting: {
  45362. height: math.unit(3.725, "feet"),
  45363. weight: math.unit(200, "lb"),
  45364. name: "Sitting",
  45365. image: {
  45366. source: "./media/characters/blizzard/sitting.svg",
  45367. extra: 581/485,
  45368. bottom: 90/671
  45369. }
  45370. },
  45371. frontWizard: {
  45372. height: math.unit(7.9, "feet"),
  45373. weight: math.unit(200, "lb"),
  45374. name: "Front (Wizard)",
  45375. image: {
  45376. source: "./media/characters/blizzard/front-wizard.svg"
  45377. }
  45378. },
  45379. backWizard: {
  45380. height: math.unit(7.9, "feet"),
  45381. weight: math.unit(200, "lb"),
  45382. name: "Back (Wizard)",
  45383. image: {
  45384. source: "./media/characters/blizzard/back-wizard.svg"
  45385. }
  45386. },
  45387. frontNsfw: {
  45388. height: math.unit(6, "feet"),
  45389. weight: math.unit(200, "lb"),
  45390. name: "Front (NSFW)",
  45391. image: {
  45392. source: "./media/characters/blizzard/front-nsfw.svg",
  45393. extra: 1136/990,
  45394. bottom: 136/1272
  45395. }
  45396. },
  45397. backNsfw: {
  45398. height: math.unit(6, "feet"),
  45399. weight: math.unit(200, "lb"),
  45400. name: "Back (NSFW)",
  45401. image: {
  45402. source: "./media/characters/blizzard/back-nsfw.svg",
  45403. extra: 1175/1034,
  45404. bottom: 97/1272
  45405. }
  45406. },
  45407. sittingNsfw: {
  45408. height: math.unit(3.725, "feet"),
  45409. weight: math.unit(200, "lb"),
  45410. name: "Sitting (NSFW)",
  45411. image: {
  45412. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45413. extra: 581/485,
  45414. bottom: 90/671
  45415. }
  45416. },
  45417. wizardFrontNsfw: {
  45418. height: math.unit(7.9, "feet"),
  45419. weight: math.unit(200, "lb"),
  45420. name: "Wizard (Front, NSFW)",
  45421. image: {
  45422. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(6, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(5 + 2/12, "feet"),
  45439. name: "Front",
  45440. image: {
  45441. source: "./media/characters/lumi/front.svg",
  45442. extra: 1328/1268,
  45443. bottom: 103/1431
  45444. }
  45445. },
  45446. back: {
  45447. height: math.unit(5 + 2/12, "feet"),
  45448. name: "Back",
  45449. image: {
  45450. source: "./media/characters/lumi/back.svg",
  45451. extra: 1381/1327,
  45452. bottom: 43/1424
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(5 + 2/12, "feet"),
  45460. default: true
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45466. {
  45467. front: {
  45468. height: math.unit(5 + 9/12, "feet"),
  45469. name: "Front",
  45470. image: {
  45471. source: "./media/characters/aliya-cotton/front.svg",
  45472. extra: 577/564,
  45473. bottom: 29/606
  45474. }
  45475. },
  45476. },
  45477. [
  45478. {
  45479. name: "Normal",
  45480. height: math.unit(5 + 9/12, "feet"),
  45481. default: true
  45482. },
  45483. ]
  45484. ))
  45485. characterMakers.push(() => makeCharacter(
  45486. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45487. {
  45488. front: {
  45489. height: math.unit(2.7, "meters"),
  45490. weight: math.unit(25000, "lb"),
  45491. name: "Front",
  45492. image: {
  45493. source: "./media/characters/noah-luxray/front.svg",
  45494. extra: 1644/825,
  45495. bottom: 339/1983
  45496. }
  45497. },
  45498. side: {
  45499. height: math.unit(2.97, "meters"),
  45500. weight: math.unit(25000, "lb"),
  45501. name: "Side",
  45502. image: {
  45503. source: "./media/characters/noah-luxray/side.svg",
  45504. extra: 1319/650,
  45505. bottom: 163/1482
  45506. }
  45507. },
  45508. dick: {
  45509. height: math.unit(7.4, "feet"),
  45510. weight: math.unit(2500, "lb"),
  45511. name: "Dick",
  45512. image: {
  45513. source: "./media/characters/noah-luxray/dick.svg"
  45514. }
  45515. },
  45516. dickAlt: {
  45517. height: math.unit(10.83, "feet"),
  45518. weight: math.unit(2500, "lb"),
  45519. name: "Dick-alt",
  45520. image: {
  45521. source: "./media/characters/noah-luxray/dick-alt.svg"
  45522. }
  45523. },
  45524. },
  45525. [
  45526. {
  45527. name: "BIG",
  45528. height: math.unit(2.7, "meters"),
  45529. default: true
  45530. },
  45531. ]
  45532. ))
  45533. characterMakers.push(() => makeCharacter(
  45534. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45535. {
  45536. standing: {
  45537. height: math.unit(183, "cm"),
  45538. weight: math.unit(68, "kg"),
  45539. name: "Standing",
  45540. image: {
  45541. source: "./media/characters/arion/standing.svg",
  45542. extra: 1869/1807,
  45543. bottom: 93/1962
  45544. }
  45545. },
  45546. reclining: {
  45547. height: math.unit(70.5, "cm"),
  45548. weight: math.unit(68, "lb"),
  45549. name: "Reclining",
  45550. image: {
  45551. source: "./media/characters/arion/reclining.svg",
  45552. extra: 937/870,
  45553. bottom: 63/1000
  45554. }
  45555. },
  45556. },
  45557. [
  45558. {
  45559. name: "Colossus Size, Low",
  45560. height: math.unit(33, "meters"),
  45561. default: true
  45562. },
  45563. {
  45564. name: "Colossus Size, Mid",
  45565. height: math.unit(52, "meters")
  45566. },
  45567. {
  45568. name: "Colossus Size, High",
  45569. height: math.unit(60, "meters")
  45570. },
  45571. {
  45572. name: "Titan Size, Low",
  45573. height: math.unit(91, "meters"),
  45574. },
  45575. {
  45576. name: "Titan Size, Mid",
  45577. height: math.unit(122, "meters")
  45578. },
  45579. {
  45580. name: "Titan Size, High",
  45581. height: math.unit(162, "meters")
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45587. {
  45588. front: {
  45589. height: math.unit(53, "meters"),
  45590. name: "Front",
  45591. image: {
  45592. source: "./media/characters/stellar-marbey/front.svg",
  45593. extra: 1913/1805,
  45594. bottom: 92/2005
  45595. }
  45596. },
  45597. back: {
  45598. height: math.unit(53, "meters"),
  45599. name: "Back",
  45600. image: {
  45601. source: "./media/characters/stellar-marbey/back.svg",
  45602. extra: 1960/1851,
  45603. bottom: 28/1988
  45604. }
  45605. },
  45606. mouth: {
  45607. height: math.unit(3.5, "meters"),
  45608. name: "Mouth",
  45609. image: {
  45610. source: "./media/characters/stellar-marbey/mouth.svg"
  45611. }
  45612. },
  45613. },
  45614. [
  45615. {
  45616. name: "Macro",
  45617. height: math.unit(53, "meters"),
  45618. default: true
  45619. },
  45620. ]
  45621. ))
  45622. characterMakers.push(() => makeCharacter(
  45623. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45624. {
  45625. front: {
  45626. height: math.unit(8 + 1/12, "feet"),
  45627. weight: math.unit(233, "lb"),
  45628. name: "Front",
  45629. image: {
  45630. source: "./media/characters/matsu/front.svg",
  45631. extra: 832/772,
  45632. bottom: 40/872
  45633. }
  45634. },
  45635. back: {
  45636. height: math.unit(8 + 1/12, "feet"),
  45637. weight: math.unit(233, "lb"),
  45638. name: "Back",
  45639. image: {
  45640. source: "./media/characters/matsu/back.svg",
  45641. extra: 839/780,
  45642. bottom: 47/886
  45643. }
  45644. },
  45645. },
  45646. [
  45647. {
  45648. name: "Normal",
  45649. height: math.unit(8 + 1/12, "feet"),
  45650. default: true
  45651. },
  45652. ]
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45656. {
  45657. front: {
  45658. height: math.unit(4, "feet"),
  45659. weight: math.unit(148, "lb"),
  45660. name: "Front",
  45661. image: {
  45662. source: "./media/characters/thiz/front.svg",
  45663. extra: 1913/1748,
  45664. bottom: 62/1975
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(4, "feet"),
  45672. default: true
  45673. },
  45674. ]
  45675. ))
  45676. characterMakers.push(() => makeCharacter(
  45677. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45678. {
  45679. front: {
  45680. height: math.unit(7 + 6/12, "feet"),
  45681. weight: math.unit(267, "lb"),
  45682. name: "Front",
  45683. image: {
  45684. source: "./media/characters/marcel/front.svg",
  45685. extra: 1221/1096,
  45686. bottom: 76/1297
  45687. }
  45688. },
  45689. },
  45690. [
  45691. {
  45692. name: "Normal",
  45693. height: math.unit(7 + 6/12, "feet"),
  45694. default: true
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45700. {
  45701. side: {
  45702. height: math.unit(42, "meters"),
  45703. name: "Side",
  45704. image: {
  45705. source: "./media/characters/flake/side.svg",
  45706. extra: 1525/1306,
  45707. bottom: 209/1734
  45708. }
  45709. },
  45710. },
  45711. [
  45712. {
  45713. name: "Normal",
  45714. height: math.unit(42, "meters"),
  45715. default: true
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45721. {
  45722. dressed: {
  45723. height: math.unit(6 + 4/12, "feet"),
  45724. weight: math.unit(520, "lb"),
  45725. name: "Dressed",
  45726. image: {
  45727. source: "./media/characters/someonne/dressed.svg",
  45728. extra: 1020/1010,
  45729. bottom: 178/1198
  45730. }
  45731. },
  45732. undressed: {
  45733. height: math.unit(6 + 4/12, "feet"),
  45734. weight: math.unit(520, "lb"),
  45735. name: "Undressed",
  45736. image: {
  45737. source: "./media/characters/someonne/undressed.svg",
  45738. extra: 1019/1014,
  45739. bottom: 169/1188
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Normal",
  45746. height: math.unit(6 + 4/12, "feet"),
  45747. default: true
  45748. },
  45749. ]
  45750. ))
  45751. characterMakers.push(() => makeCharacter(
  45752. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45753. {
  45754. front: {
  45755. height: math.unit(3, "feet"),
  45756. weight: math.unit(30, "lb"),
  45757. name: "Front",
  45758. image: {
  45759. source: "./media/characters/till/front.svg",
  45760. extra: 892/823,
  45761. bottom: 55/947
  45762. }
  45763. },
  45764. },
  45765. [
  45766. {
  45767. name: "Normal",
  45768. height: math.unit(3, "feet"),
  45769. default: true
  45770. },
  45771. ]
  45772. ))
  45773. characterMakers.push(() => makeCharacter(
  45774. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45775. {
  45776. front: {
  45777. height: math.unit(9 + 8/12, "feet"),
  45778. weight: math.unit(800, "lb"),
  45779. name: "Front",
  45780. image: {
  45781. source: "./media/characters/sydney-heki/front.svg",
  45782. extra: 1360/1300,
  45783. bottom: 22/1382
  45784. }
  45785. },
  45786. back: {
  45787. height: math.unit(9 + 8/12, "feet"),
  45788. weight: math.unit(800, "lb"),
  45789. name: "Back",
  45790. image: {
  45791. source: "./media/characters/sydney-heki/back.svg",
  45792. extra: 1356/1293,
  45793. bottom: 12/1368
  45794. }
  45795. },
  45796. frontDressed: {
  45797. height: math.unit(9 + 8/12, "feet"),
  45798. weight: math.unit(800, "lb"),
  45799. name: "Front-dressed",
  45800. image: {
  45801. source: "./media/characters/sydney-heki/front-dressed.svg",
  45802. extra: 1360/1300,
  45803. bottom: 22/1382
  45804. }
  45805. },
  45806. },
  45807. [
  45808. {
  45809. name: "Normal",
  45810. height: math.unit(9 + 8/12, "feet"),
  45811. default: true
  45812. },
  45813. {
  45814. name: "Macro",
  45815. height: math.unit(500, "feet")
  45816. },
  45817. {
  45818. name: "Megamacro",
  45819. height: math.unit(3.6, "miles")
  45820. },
  45821. ]
  45822. ))
  45823. characterMakers.push(() => makeCharacter(
  45824. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45825. {
  45826. front: {
  45827. height: math.unit(200, "cm"),
  45828. weight: math.unit(250, "lb"),
  45829. name: "Front",
  45830. image: {
  45831. source: "./media/characters/fowler-karlsson/front.svg",
  45832. extra: 897/845,
  45833. bottom: 123/1020
  45834. }
  45835. },
  45836. back: {
  45837. height: math.unit(200, "cm"),
  45838. weight: math.unit(250, "lb"),
  45839. name: "Back",
  45840. image: {
  45841. source: "./media/characters/fowler-karlsson/back.svg",
  45842. extra: 999/944,
  45843. bottom: 26/1025
  45844. }
  45845. },
  45846. dick: {
  45847. height: math.unit(1.92, "feet"),
  45848. weight: math.unit(150, "lb"),
  45849. name: "Dick",
  45850. image: {
  45851. source: "./media/characters/fowler-karlsson/dick.svg"
  45852. }
  45853. },
  45854. },
  45855. [
  45856. {
  45857. name: "Normal",
  45858. height: math.unit(200, "cm"),
  45859. default: true
  45860. },
  45861. {
  45862. name: "Smaller Macro",
  45863. height: math.unit(90, "m")
  45864. },
  45865. {
  45866. name: "Macro",
  45867. height: math.unit(150, "m")
  45868. },
  45869. {
  45870. name: "Bigger Macro",
  45871. height: math.unit(300, "m")
  45872. },
  45873. ]
  45874. ))
  45875. characterMakers.push(() => makeCharacter(
  45876. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45877. {
  45878. side: {
  45879. height: math.unit(8 + 2/12, "feet"),
  45880. weight: math.unit(1, "tonne"),
  45881. name: "Side",
  45882. image: {
  45883. source: "./media/characters/rylide/side.svg",
  45884. extra: 1318/1034,
  45885. bottom: 106/1424
  45886. }
  45887. },
  45888. sitting: {
  45889. height: math.unit(303, "cm"),
  45890. weight: math.unit(1, "tonne"),
  45891. name: "Sitting",
  45892. image: {
  45893. source: "./media/characters/rylide/sitting.svg",
  45894. extra: 1303/1103,
  45895. bottom: 36/1339
  45896. }
  45897. },
  45898. },
  45899. [
  45900. {
  45901. name: "Normal",
  45902. height: math.unit(8 + 2/12, "feet"),
  45903. default: true
  45904. },
  45905. ]
  45906. ))
  45907. characterMakers.push(() => makeCharacter(
  45908. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45909. {
  45910. front: {
  45911. height: math.unit(5 + 10/12, "feet"),
  45912. weight: math.unit(160, "lb"),
  45913. name: "Front",
  45914. image: {
  45915. source: "./media/characters/pudask/front.svg",
  45916. extra: 1616/1590,
  45917. bottom: 161/1777
  45918. }
  45919. },
  45920. },
  45921. [
  45922. {
  45923. name: "Ferret Height",
  45924. height: math.unit(2 + 5/12, "feet")
  45925. },
  45926. {
  45927. name: "Canon Height",
  45928. height: math.unit(5 + 10/12, "feet"),
  45929. default: true
  45930. },
  45931. ]
  45932. ))
  45933. characterMakers.push(() => makeCharacter(
  45934. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45935. {
  45936. front: {
  45937. height: math.unit(3 + 6/12, "feet"),
  45938. weight: math.unit(60, "lb"),
  45939. name: "Front",
  45940. image: {
  45941. source: "./media/characters/ramita/front.svg",
  45942. extra: 1402/1232,
  45943. bottom: 62/1464
  45944. }
  45945. },
  45946. dressed: {
  45947. height: math.unit(3 + 6/12, "feet"),
  45948. weight: math.unit(60, "lb"),
  45949. name: "Dressed",
  45950. image: {
  45951. source: "./media/characters/ramita/dressed.svg",
  45952. extra: 1534/1249,
  45953. bottom: 50/1584
  45954. }
  45955. },
  45956. },
  45957. [
  45958. {
  45959. name: "Normal",
  45960. height: math.unit(3 + 6/12, "feet"),
  45961. default: true
  45962. },
  45963. ]
  45964. ))
  45965. characterMakers.push(() => makeCharacter(
  45966. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45967. {
  45968. front: {
  45969. height: math.unit(8, "feet"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/ark/front.svg",
  45973. extra: 772/693,
  45974. bottom: 45/817
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Normal",
  45981. height: math.unit(8, "feet"),
  45982. default: true
  45983. },
  45984. ]
  45985. ))
  45986. characterMakers.push(() => makeCharacter(
  45987. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45988. {
  45989. front: {
  45990. height: math.unit(6, "feet"),
  45991. weight: math.unit(250, "lb"),
  45992. volume: math.unit(5/8, "gallons"),
  45993. name: "Front",
  45994. image: {
  45995. source: "./media/characters/ludwig-horn/front.svg",
  45996. extra: 1782/1635,
  45997. bottom: 96/1878
  45998. }
  45999. },
  46000. back: {
  46001. height: math.unit(6, "feet"),
  46002. weight: math.unit(250, "lb"),
  46003. volume: math.unit(5/8, "gallons"),
  46004. name: "Back",
  46005. image: {
  46006. source: "./media/characters/ludwig-horn/back.svg",
  46007. extra: 1874/1729,
  46008. bottom: 27/1901
  46009. }
  46010. },
  46011. dick: {
  46012. height: math.unit(1.05, "feet"),
  46013. weight: math.unit(15, "lb"),
  46014. volume: math.unit(5/8, "gallons"),
  46015. name: "Dick",
  46016. image: {
  46017. source: "./media/characters/ludwig-horn/dick.svg"
  46018. }
  46019. },
  46020. },
  46021. [
  46022. {
  46023. name: "Small",
  46024. height: math.unit(6, "feet")
  46025. },
  46026. {
  46027. name: "Typical",
  46028. height: math.unit(12, "feet"),
  46029. default: true
  46030. },
  46031. {
  46032. name: "Building",
  46033. height: math.unit(80, "feet")
  46034. },
  46035. {
  46036. name: "Town",
  46037. height: math.unit(800, "feet")
  46038. },
  46039. {
  46040. name: "Kingdom",
  46041. height: math.unit(80000, "feet")
  46042. },
  46043. {
  46044. name: "Planet",
  46045. height: math.unit(8000000, "feet")
  46046. },
  46047. {
  46048. name: "Universe",
  46049. height: math.unit(8000000000, "feet")
  46050. },
  46051. {
  46052. name: "Transcended",
  46053. height: math.unit(8e27, "feet")
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46059. {
  46060. front: {
  46061. height: math.unit(5, "feet"),
  46062. weight: math.unit(50, "kg"),
  46063. name: "Front",
  46064. image: {
  46065. source: "./media/characters/biot-avery/front.svg",
  46066. extra: 1295/1232,
  46067. bottom: 86/1381
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Normal",
  46074. height: math.unit(5, "feet"),
  46075. default: true
  46076. },
  46077. ]
  46078. ))
  46079. characterMakers.push(() => makeCharacter(
  46080. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46081. {
  46082. front: {
  46083. height: math.unit(6, "feet"),
  46084. name: "Front",
  46085. image: {
  46086. source: "./media/characters/kitsune-kiro/front.svg",
  46087. extra: 1270/1158,
  46088. bottom: 42/1312
  46089. }
  46090. },
  46091. frontAlt: {
  46092. height: math.unit(6, "feet"),
  46093. name: "Front-alt",
  46094. image: {
  46095. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46096. extra: 1130/1081,
  46097. bottom: 36/1166
  46098. }
  46099. },
  46100. },
  46101. [
  46102. {
  46103. name: "Smol",
  46104. height: math.unit(3, "feet")
  46105. },
  46106. {
  46107. name: "Normal",
  46108. height: math.unit(6, "feet"),
  46109. default: true
  46110. },
  46111. ]
  46112. ))
  46113. characterMakers.push(() => makeCharacter(
  46114. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46115. {
  46116. front: {
  46117. height: math.unit(6, "feet"),
  46118. weight: math.unit(125, "lb"),
  46119. name: "Front",
  46120. image: {
  46121. source: "./media/characters/jack-thatcher/front.svg",
  46122. extra: 1474/1370,
  46123. bottom: 26/1500
  46124. }
  46125. },
  46126. back: {
  46127. height: math.unit(6, "feet"),
  46128. weight: math.unit(125, "lb"),
  46129. name: "Back",
  46130. image: {
  46131. source: "./media/characters/jack-thatcher/back.svg",
  46132. extra: 1489/1384,
  46133. bottom: 18/1507
  46134. }
  46135. },
  46136. },
  46137. [
  46138. {
  46139. name: "Normal",
  46140. height: math.unit(6, "feet"),
  46141. default: true
  46142. },
  46143. {
  46144. name: "Macro",
  46145. height: math.unit(75, "feet")
  46146. },
  46147. {
  46148. name: "Macro-er",
  46149. height: math.unit(250, "feet")
  46150. },
  46151. ]
  46152. ))
  46153. characterMakers.push(() => makeCharacter(
  46154. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46155. {
  46156. front: {
  46157. height: math.unit(7, "feet"),
  46158. weight: math.unit(110, "kg"),
  46159. name: "Front",
  46160. image: {
  46161. source: "./media/characters/max-hyper/front.svg",
  46162. extra: 1969/1881,
  46163. bottom: 49/2018
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(7, "feet"),
  46171. default: true
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46177. {
  46178. front: {
  46179. height: math.unit(5 + 5/12, "feet"),
  46180. weight: math.unit(160, "lb"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/spook/front.svg",
  46184. extra: 794/791,
  46185. bottom: 54/848
  46186. }
  46187. },
  46188. back: {
  46189. height: math.unit(5 + 5/12, "feet"),
  46190. weight: math.unit(160, "lb"),
  46191. name: "Back",
  46192. image: {
  46193. source: "./media/characters/spook/back.svg",
  46194. extra: 812/798,
  46195. bottom: 32/844
  46196. }
  46197. },
  46198. },
  46199. [
  46200. {
  46201. name: "Normal",
  46202. height: math.unit(5 + 5/12, "feet"),
  46203. default: true
  46204. },
  46205. ]
  46206. ))
  46207. characterMakers.push(() => makeCharacter(
  46208. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46209. {
  46210. front: {
  46211. height: math.unit(18, "feet"),
  46212. name: "Front",
  46213. image: {
  46214. source: "./media/characters/xeaduulix/front.svg",
  46215. extra: 1380/1166,
  46216. bottom: 110/1490
  46217. }
  46218. },
  46219. back: {
  46220. height: math.unit(18, "feet"),
  46221. name: "Back",
  46222. image: {
  46223. source: "./media/characters/xeaduulix/back.svg",
  46224. extra: 1592/1170,
  46225. bottom: 128/1720
  46226. }
  46227. },
  46228. frontNsfw: {
  46229. height: math.unit(18, "feet"),
  46230. name: "Front (NSFW)",
  46231. image: {
  46232. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46233. extra: 1380/1166,
  46234. bottom: 110/1490
  46235. }
  46236. },
  46237. backNsfw: {
  46238. height: math.unit(18, "feet"),
  46239. name: "Back (NSFW)",
  46240. image: {
  46241. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46242. extra: 1592/1170,
  46243. bottom: 128/1720
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Normal",
  46250. height: math.unit(18, "feet"),
  46251. default: true
  46252. },
  46253. ]
  46254. ))
  46255. characterMakers.push(() => makeCharacter(
  46256. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46257. {
  46258. spreadWings: {
  46259. height: math.unit(20, "feet"),
  46260. name: "Spread Wings",
  46261. image: {
  46262. source: "./media/characters/fledge/spread-wings.svg",
  46263. extra: 693/635,
  46264. bottom: 26/719
  46265. }
  46266. },
  46267. front: {
  46268. height: math.unit(20, "feet"),
  46269. name: "Front",
  46270. image: {
  46271. source: "./media/characters/fledge/front.svg",
  46272. extra: 684/637,
  46273. bottom: 18/702
  46274. }
  46275. },
  46276. frontAlt: {
  46277. height: math.unit(20, "feet"),
  46278. name: "Front (Alt)",
  46279. image: {
  46280. source: "./media/characters/fledge/front-alt.svg",
  46281. extra: 708/664,
  46282. bottom: 13/721
  46283. }
  46284. },
  46285. back: {
  46286. height: math.unit(20, "feet"),
  46287. name: "Back",
  46288. image: {
  46289. source: "./media/characters/fledge/back.svg",
  46290. extra: 718/634,
  46291. bottom: 22/740
  46292. }
  46293. },
  46294. head: {
  46295. height: math.unit(5.55, "feet"),
  46296. name: "Head",
  46297. image: {
  46298. source: "./media/characters/fledge/head.svg"
  46299. }
  46300. },
  46301. headAlt: {
  46302. height: math.unit(5.1, "feet"),
  46303. name: "Head (Alt)",
  46304. image: {
  46305. source: "./media/characters/fledge/head-alt.svg"
  46306. }
  46307. },
  46308. },
  46309. [
  46310. {
  46311. name: "Small",
  46312. height: math.unit(6 + 2/12, "feet")
  46313. },
  46314. {
  46315. name: "Big",
  46316. height: math.unit(20, "feet"),
  46317. default: true
  46318. },
  46319. {
  46320. name: "Giant",
  46321. height: math.unit(100, "feet")
  46322. },
  46323. {
  46324. name: "Macro",
  46325. height: math.unit(200, "feet")
  46326. },
  46327. ]
  46328. ))
  46329. characterMakers.push(() => makeCharacter(
  46330. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46331. {
  46332. front: {
  46333. height: math.unit(1, "meter"),
  46334. name: "Front",
  46335. image: {
  46336. source: "./media/characters/atlas-morenai/front.svg",
  46337. extra: 1275/1043,
  46338. bottom: 19/1294
  46339. }
  46340. },
  46341. back: {
  46342. height: math.unit(1, "meter"),
  46343. name: "Back",
  46344. image: {
  46345. source: "./media/characters/atlas-morenai/back.svg",
  46346. extra: 1141/1001,
  46347. bottom: 25/1166
  46348. }
  46349. },
  46350. },
  46351. [
  46352. {
  46353. name: "Normal",
  46354. height: math.unit(1, "meter"),
  46355. default: true
  46356. },
  46357. {
  46358. name: "Magic-Infused",
  46359. height: math.unit(5, "meters")
  46360. },
  46361. ]
  46362. ))
  46363. characterMakers.push(() => makeCharacter(
  46364. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46365. {
  46366. front: {
  46367. height: math.unit(5, "meters"),
  46368. name: "Front",
  46369. image: {
  46370. source: "./media/characters/cintia/front.svg",
  46371. extra: 1312/1228,
  46372. bottom: 38/1350
  46373. }
  46374. },
  46375. back: {
  46376. height: math.unit(5, "meters"),
  46377. name: "Back",
  46378. image: {
  46379. source: "./media/characters/cintia/back.svg",
  46380. extra: 1260/1166,
  46381. bottom: 98/1358
  46382. }
  46383. },
  46384. frontDick: {
  46385. height: math.unit(5, "meters"),
  46386. name: "Front (Dick)",
  46387. image: {
  46388. source: "./media/characters/cintia/front-dick.svg",
  46389. extra: 1312/1228,
  46390. bottom: 38/1350
  46391. }
  46392. },
  46393. backDick: {
  46394. height: math.unit(5, "meters"),
  46395. name: "Back (Dick)",
  46396. image: {
  46397. source: "./media/characters/cintia/back-dick.svg",
  46398. extra: 1260/1166,
  46399. bottom: 98/1358
  46400. }
  46401. },
  46402. bust: {
  46403. height: math.unit(1.97, "meters"),
  46404. name: "Bust",
  46405. image: {
  46406. source: "./media/characters/cintia/bust.svg",
  46407. extra: 617/565,
  46408. bottom: 0/617
  46409. }
  46410. },
  46411. },
  46412. [
  46413. {
  46414. name: "Normal",
  46415. height: math.unit(5, "meters"),
  46416. default: true
  46417. },
  46418. ]
  46419. ))
  46420. characterMakers.push(() => makeCharacter(
  46421. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46422. {
  46423. side: {
  46424. height: math.unit(100, "feet"),
  46425. name: "Side",
  46426. image: {
  46427. source: "./media/characters/denora/side.svg",
  46428. extra: 875/803,
  46429. bottom: 9/884
  46430. }
  46431. },
  46432. },
  46433. [
  46434. {
  46435. name: "Standard",
  46436. height: math.unit(100, "feet"),
  46437. default: true
  46438. },
  46439. {
  46440. name: "Grand",
  46441. height: math.unit(1000, "feet")
  46442. },
  46443. {
  46444. name: "Conquering",
  46445. height: math.unit(10000, "feet")
  46446. },
  46447. ]
  46448. ))
  46449. characterMakers.push(() => makeCharacter(
  46450. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46451. {
  46452. dressed: {
  46453. height: math.unit(8 + 5/12, "feet"),
  46454. weight: math.unit(700, "lb"),
  46455. name: "Dressed",
  46456. image: {
  46457. source: "./media/characters/kiva/dressed.svg",
  46458. extra: 1102/1055,
  46459. bottom: 60/1162
  46460. }
  46461. },
  46462. nude: {
  46463. height: math.unit(8 + 5/12, "feet"),
  46464. weight: math.unit(700, "lb"),
  46465. name: "Nude",
  46466. image: {
  46467. source: "./media/characters/kiva/nude.svg",
  46468. extra: 1102/1055,
  46469. bottom: 60/1162
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Base Height",
  46476. height: math.unit(8 + 5/12, "feet"),
  46477. default: true
  46478. },
  46479. {
  46480. name: "Macro",
  46481. height: math.unit(100, "feet")
  46482. },
  46483. {
  46484. name: "Max",
  46485. height: math.unit(3280, "feet")
  46486. },
  46487. ]
  46488. ))
  46489. characterMakers.push(() => makeCharacter(
  46490. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46491. {
  46492. front: {
  46493. height: math.unit(6 + 8/12, "feet"),
  46494. weight: math.unit(250, "lb"),
  46495. name: "Front",
  46496. image: {
  46497. source: "./media/characters/ztragon/front.svg",
  46498. extra: 1825/1684,
  46499. bottom: 98/1923
  46500. }
  46501. },
  46502. },
  46503. [
  46504. {
  46505. name: "Normal",
  46506. height: math.unit(6 + 8/12, "feet"),
  46507. default: true
  46508. },
  46509. {
  46510. name: "Macro",
  46511. height: math.unit(80, "feet")
  46512. },
  46513. ]
  46514. ))
  46515. characterMakers.push(() => makeCharacter(
  46516. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46517. {
  46518. front: {
  46519. height: math.unit(10.4, "feet"),
  46520. weight: math.unit(2, "tons"),
  46521. name: "Front",
  46522. image: {
  46523. source: "./media/characters/yesenia/front.svg",
  46524. extra: 1479/1474,
  46525. bottom: 233/1712
  46526. }
  46527. },
  46528. },
  46529. [
  46530. {
  46531. name: "Normal",
  46532. height: math.unit(10.4, "feet"),
  46533. default: true
  46534. },
  46535. ]
  46536. ))
  46537. characterMakers.push(() => makeCharacter(
  46538. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46539. {
  46540. normal: {
  46541. height: math.unit(6 + 1/12, "feet"),
  46542. weight: math.unit(180, "lb"),
  46543. name: "Normal",
  46544. image: {
  46545. source: "./media/characters/leanne-lycheborne/normal.svg",
  46546. extra: 1748/1660,
  46547. bottom: 98/1846
  46548. }
  46549. },
  46550. were: {
  46551. height: math.unit(12, "feet"),
  46552. weight: math.unit(1600, "lb"),
  46553. name: "Were",
  46554. image: {
  46555. source: "./media/characters/leanne-lycheborne/were.svg",
  46556. extra: 1485/1432,
  46557. bottom: 66/1551
  46558. }
  46559. },
  46560. },
  46561. [
  46562. {
  46563. name: "Normal",
  46564. height: math.unit(6 + 1/12, "feet"),
  46565. default: true
  46566. },
  46567. ]
  46568. ))
  46569. characterMakers.push(() => makeCharacter(
  46570. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46571. {
  46572. side: {
  46573. height: math.unit(13, "feet"),
  46574. name: "Side",
  46575. image: {
  46576. source: "./media/characters/kira-tyler/side.svg",
  46577. extra: 693/393,
  46578. bottom: 58/751
  46579. }
  46580. },
  46581. },
  46582. [
  46583. {
  46584. name: "Normal",
  46585. height: math.unit(13, "feet"),
  46586. default: true
  46587. },
  46588. ]
  46589. ))
  46590. characterMakers.push(() => makeCharacter(
  46591. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46592. {
  46593. front: {
  46594. height: math.unit(10.3, "feet"),
  46595. weight: math.unit(150, "lb"),
  46596. name: "Front",
  46597. image: {
  46598. source: "./media/characters/blaze/front.svg",
  46599. extra: 1378/1286,
  46600. bottom: 172/1550
  46601. }
  46602. },
  46603. },
  46604. [
  46605. {
  46606. name: "Normal",
  46607. height: math.unit(10.3, "feet"),
  46608. default: true
  46609. },
  46610. ]
  46611. ))
  46612. characterMakers.push(() => makeCharacter(
  46613. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46614. {
  46615. side: {
  46616. height: math.unit(2, "meters"),
  46617. weight: math.unit(400, "kg"),
  46618. name: "Side",
  46619. image: {
  46620. source: "./media/characters/anu/side.svg",
  46621. extra: 506/394,
  46622. bottom: 18/524
  46623. }
  46624. },
  46625. },
  46626. [
  46627. {
  46628. name: "Humanoid",
  46629. height: math.unit(2, "meters")
  46630. },
  46631. {
  46632. name: "Normal",
  46633. height: math.unit(5, "meters"),
  46634. default: true
  46635. },
  46636. ]
  46637. ))
  46638. characterMakers.push(() => makeCharacter(
  46639. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46640. {
  46641. front: {
  46642. height: math.unit(5 + 5/12, "feet"),
  46643. weight: math.unit(170, "lb"),
  46644. name: "Front",
  46645. image: {
  46646. source: "./media/characters/synx-the-lynx/front.svg",
  46647. extra: 1893/1745,
  46648. bottom: 17/1910
  46649. }
  46650. },
  46651. side: {
  46652. height: math.unit(5 + 5/12, "feet"),
  46653. weight: math.unit(170, "lb"),
  46654. name: "Side",
  46655. image: {
  46656. source: "./media/characters/synx-the-lynx/side.svg",
  46657. extra: 1884/1740,
  46658. bottom: 39/1923
  46659. }
  46660. },
  46661. back: {
  46662. height: math.unit(5 + 5/12, "feet"),
  46663. weight: math.unit(170, "lb"),
  46664. name: "Back",
  46665. image: {
  46666. source: "./media/characters/synx-the-lynx/back.svg",
  46667. extra: 1903/1755,
  46668. bottom: 14/1917
  46669. }
  46670. },
  46671. },
  46672. [
  46673. {
  46674. name: "Normal",
  46675. height: math.unit(5 + 5/12, "feet"),
  46676. default: true
  46677. },
  46678. ]
  46679. ))
  46680. characterMakers.push(() => makeCharacter(
  46681. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46682. {
  46683. back: {
  46684. height: math.unit(15, "feet"),
  46685. name: "Back",
  46686. image: {
  46687. source: "./media/characters/nadezda-fex/back.svg",
  46688. extra: 1695/1481,
  46689. bottom: 25/1720
  46690. }
  46691. },
  46692. },
  46693. [
  46694. {
  46695. name: "Normal",
  46696. height: math.unit(15, "feet"),
  46697. default: true
  46698. },
  46699. {
  46700. name: "Macro",
  46701. height: math.unit(2.5, "miles")
  46702. },
  46703. {
  46704. name: "Goddess",
  46705. height: math.unit(2, "multiverses")
  46706. },
  46707. ]
  46708. ))
  46709. characterMakers.push(() => makeCharacter(
  46710. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46711. {
  46712. front: {
  46713. height: math.unit(216, "cm"),
  46714. name: "Front",
  46715. image: {
  46716. source: "./media/characters/lev/front.svg",
  46717. extra: 1728/1670,
  46718. bottom: 82/1810
  46719. }
  46720. },
  46721. back: {
  46722. height: math.unit(216, "cm"),
  46723. name: "Back",
  46724. image: {
  46725. source: "./media/characters/lev/back.svg",
  46726. extra: 1738/1675,
  46727. bottom: 24/1762
  46728. }
  46729. },
  46730. dressed: {
  46731. height: math.unit(216, "cm"),
  46732. name: "Dressed",
  46733. image: {
  46734. source: "./media/characters/lev/dressed.svg",
  46735. extra: 1397/1351,
  46736. bottom: 73/1470
  46737. }
  46738. },
  46739. head: {
  46740. height: math.unit(0.51, "meter"),
  46741. name: "Head",
  46742. image: {
  46743. source: "./media/characters/lev/head.svg"
  46744. }
  46745. },
  46746. },
  46747. [
  46748. {
  46749. name: "Normal",
  46750. height: math.unit(216, "cm"),
  46751. default: true
  46752. },
  46753. {
  46754. name: "Relatively Macro",
  46755. height: math.unit(80, "meters")
  46756. },
  46757. {
  46758. name: "Megamacro",
  46759. height: math.unit(21600, "meters")
  46760. },
  46761. {
  46762. name: "Megamacro+",
  46763. height: math.unit(64800, "meters")
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46769. {
  46770. front: {
  46771. height: math.unit(2, "meters"),
  46772. weight: math.unit(80, "kg"),
  46773. name: "Front",
  46774. image: {
  46775. source: "./media/characters/moka/front.svg",
  46776. extra: 1337/1255,
  46777. bottom: 58/1395
  46778. }
  46779. },
  46780. },
  46781. [
  46782. {
  46783. name: "Micro",
  46784. height: math.unit(15, "cm")
  46785. },
  46786. {
  46787. name: "Normal",
  46788. height: math.unit(2, "meters"),
  46789. default: true
  46790. },
  46791. {
  46792. name: "Macro",
  46793. height: math.unit(20, "meters"),
  46794. },
  46795. ]
  46796. ))
  46797. characterMakers.push(() => makeCharacter(
  46798. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46799. {
  46800. front: {
  46801. height: math.unit(9, "feet"),
  46802. weight: math.unit(240, "lb"),
  46803. name: "Front",
  46804. image: {
  46805. source: "./media/characters/kuzco/front.svg",
  46806. extra: 1593/1487,
  46807. bottom: 32/1625
  46808. }
  46809. },
  46810. side: {
  46811. height: math.unit(9, "feet"),
  46812. weight: math.unit(240, "lb"),
  46813. name: "Side",
  46814. image: {
  46815. source: "./media/characters/kuzco/side.svg",
  46816. extra: 1575/1485,
  46817. bottom: 30/1605
  46818. }
  46819. },
  46820. back: {
  46821. height: math.unit(9, "feet"),
  46822. weight: math.unit(240, "lb"),
  46823. name: "Back",
  46824. image: {
  46825. source: "./media/characters/kuzco/back.svg",
  46826. extra: 1603/1514,
  46827. bottom: 14/1617
  46828. }
  46829. },
  46830. },
  46831. [
  46832. {
  46833. name: "Normal",
  46834. height: math.unit(9, "feet"),
  46835. default: true
  46836. },
  46837. ]
  46838. ))
  46839. characterMakers.push(() => makeCharacter(
  46840. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46841. {
  46842. side: {
  46843. height: math.unit(2, "meters"),
  46844. weight: math.unit(300, "kg"),
  46845. name: "Side",
  46846. image: {
  46847. source: "./media/characters/ceruleus/side.svg",
  46848. extra: 1068/974,
  46849. bottom: 126/1194
  46850. }
  46851. },
  46852. maw: {
  46853. height: math.unit(0.8125, "meter"),
  46854. name: "Maw",
  46855. image: {
  46856. source: "./media/characters/ceruleus/maw.svg"
  46857. }
  46858. },
  46859. },
  46860. [
  46861. {
  46862. name: "Normal",
  46863. height: math.unit(16, "meters"),
  46864. default: true
  46865. },
  46866. ]
  46867. ))
  46868. characterMakers.push(() => makeCharacter(
  46869. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46870. {
  46871. front: {
  46872. height: math.unit(9, "feet"),
  46873. weight: math.unit(500, "kg"),
  46874. name: "Front",
  46875. image: {
  46876. source: "./media/characters/acouya/front.svg",
  46877. extra: 1660/1473,
  46878. bottom: 28/1688
  46879. }
  46880. },
  46881. },
  46882. [
  46883. {
  46884. name: "Normal",
  46885. height: math.unit(9, "feet"),
  46886. default: true
  46887. },
  46888. ]
  46889. ))
  46890. characterMakers.push(() => makeCharacter(
  46891. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46892. {
  46893. front: {
  46894. height: math.unit(5 + 6/12, "feet"),
  46895. weight: math.unit(195, "lb"),
  46896. name: "Front",
  46897. image: {
  46898. source: "./media/characters/vant/front.svg",
  46899. extra: 1396/1320,
  46900. bottom: 20/1416
  46901. }
  46902. },
  46903. back: {
  46904. height: math.unit(5 + 6/12, "feet"),
  46905. weight: math.unit(195, "lb"),
  46906. name: "Back",
  46907. image: {
  46908. source: "./media/characters/vant/back.svg",
  46909. extra: 1396/1320,
  46910. bottom: 20/1416
  46911. }
  46912. },
  46913. maw: {
  46914. height: math.unit(0.75, "feet"),
  46915. name: "Maw",
  46916. image: {
  46917. source: "./media/characters/vant/maw.svg"
  46918. }
  46919. },
  46920. paw: {
  46921. height: math.unit(1.07, "feet"),
  46922. name: "Paw",
  46923. image: {
  46924. source: "./media/characters/vant/paw.svg"
  46925. }
  46926. },
  46927. },
  46928. [
  46929. {
  46930. name: "Micro",
  46931. height: math.unit(0.25, "inches")
  46932. },
  46933. {
  46934. name: "Normal",
  46935. height: math.unit(5 + 6/12, "feet"),
  46936. default: true
  46937. },
  46938. {
  46939. name: "Macro",
  46940. height: math.unit(75, "feet")
  46941. },
  46942. ]
  46943. ))
  46944. characterMakers.push(() => makeCharacter(
  46945. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46946. {
  46947. front: {
  46948. height: math.unit(30, "meters"),
  46949. weight: math.unit(363, "tons"),
  46950. name: "Front",
  46951. image: {
  46952. source: "./media/characters/ahra/front.svg",
  46953. extra: 1914/1814,
  46954. bottom: 46/1960
  46955. }
  46956. },
  46957. },
  46958. [
  46959. {
  46960. name: "Macro",
  46961. height: math.unit(30, "meters"),
  46962. default: true
  46963. },
  46964. ]
  46965. ))
  46966. characterMakers.push(() => makeCharacter(
  46967. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46968. {
  46969. undressed: {
  46970. height: math.unit(2, "m"),
  46971. weight: math.unit(250, "kg"),
  46972. name: "Undressed",
  46973. image: {
  46974. source: "./media/characters/coriander/undressed.svg",
  46975. extra: 1757/1606,
  46976. bottom: 107/1864
  46977. }
  46978. },
  46979. dressed: {
  46980. height: math.unit(2, "m"),
  46981. weight: math.unit(250, "kg"),
  46982. name: "Dressed",
  46983. image: {
  46984. source: "./media/characters/coriander/dressed.svg",
  46985. extra: 1757/1606,
  46986. bottom: 107/1864
  46987. }
  46988. },
  46989. },
  46990. [
  46991. {
  46992. name: "Normal",
  46993. height: math.unit(4, "meters"),
  46994. default: true
  46995. },
  46996. {
  46997. name: "XL",
  46998. height: math.unit(6, "meters")
  46999. },
  47000. {
  47001. name: "XXL",
  47002. height: math.unit(8, "meters")
  47003. },
  47004. ]
  47005. ))
  47006. characterMakers.push(() => makeCharacter(
  47007. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47008. {
  47009. front: {
  47010. height: math.unit(6, "feet"),
  47011. name: "Front",
  47012. image: {
  47013. source: "./media/characters/syrinx/front.svg",
  47014. extra: 1557/1259,
  47015. bottom: 171/1728
  47016. }
  47017. },
  47018. },
  47019. [
  47020. {
  47021. name: "Normal",
  47022. height: math.unit(6 + 3/12, "feet"),
  47023. default: true
  47024. },
  47025. ]
  47026. ))
  47027. characterMakers.push(() => makeCharacter(
  47028. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47029. {
  47030. front: {
  47031. height: math.unit(11 + 6/12, "feet"),
  47032. weight: math.unit(1.5, "tons"),
  47033. name: "Front",
  47034. image: {
  47035. source: "./media/characters/bor/front.svg",
  47036. extra: 1189/1109,
  47037. bottom: 170/1359
  47038. }
  47039. },
  47040. },
  47041. [
  47042. {
  47043. name: "Normal",
  47044. height: math.unit(11 + 6/12, "feet"),
  47045. default: true
  47046. },
  47047. {
  47048. name: "Macro",
  47049. height: math.unit(32 + 9/12, "feet")
  47050. },
  47051. ]
  47052. ))
  47053. characterMakers.push(() => makeCharacter(
  47054. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47055. {
  47056. anthro: {
  47057. height: math.unit(9, "feet"),
  47058. weight: math.unit(2076, "lb"),
  47059. name: "Anthro",
  47060. image: {
  47061. source: "./media/characters/abacus/anthro.svg",
  47062. extra: 1540/1494,
  47063. bottom: 233/1773
  47064. }
  47065. },
  47066. pigeon: {
  47067. height: math.unit(1, "feet"),
  47068. name: "Pigeon",
  47069. image: {
  47070. source: "./media/characters/abacus/pigeon.svg",
  47071. extra: 528/525,
  47072. bottom: 46/574
  47073. }
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(9, "feet"),
  47080. default: true
  47081. },
  47082. ]
  47083. ))
  47084. characterMakers.push(() => makeCharacter(
  47085. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47086. {
  47087. side: {
  47088. height: math.unit(6, "feet"),
  47089. name: "Side",
  47090. image: {
  47091. source: "./media/characters/delkhan/side.svg",
  47092. extra: 1884/1786,
  47093. bottom: 308/2192
  47094. }
  47095. },
  47096. head: {
  47097. height: math.unit(3.38, "feet"),
  47098. name: "Head",
  47099. image: {
  47100. source: "./media/characters/delkhan/head.svg"
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(72, "feet"),
  47108. default: true
  47109. },
  47110. {
  47111. name: "Giant",
  47112. height: math.unit(172, "feet")
  47113. },
  47114. ]
  47115. ))
  47116. characterMakers.push(() => makeCharacter(
  47117. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47118. {
  47119. standing: {
  47120. height: math.unit(6, "feet"),
  47121. name: "Standing",
  47122. image: {
  47123. source: "./media/characters/euchidat/standing.svg",
  47124. extra: 1612/1553,
  47125. bottom: 116/1728
  47126. }
  47127. },
  47128. leaning: {
  47129. height: math.unit(6, "feet"),
  47130. name: "Leaning",
  47131. image: {
  47132. source: "./media/characters/euchidat/leaning.svg",
  47133. extra: 1719/1674,
  47134. bottom: 27/1746
  47135. }
  47136. },
  47137. },
  47138. [
  47139. {
  47140. name: "Normal",
  47141. height: math.unit(175, "feet"),
  47142. default: true
  47143. },
  47144. {
  47145. name: "Megamacro",
  47146. height: math.unit(190, "miles")
  47147. },
  47148. {
  47149. name: "Gigamacro",
  47150. height: math.unit(190000, "miles")
  47151. },
  47152. ]
  47153. ))
  47154. characterMakers.push(() => makeCharacter(
  47155. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47156. {
  47157. front: {
  47158. height: math.unit(6, "feet"),
  47159. weight: math.unit(150, "lb"),
  47160. name: "Front",
  47161. image: {
  47162. source: "./media/characters/rebecca-stack/front.svg",
  47163. extra: 1256/1201,
  47164. bottom: 18/1274
  47165. }
  47166. },
  47167. },
  47168. [
  47169. {
  47170. name: "Normal",
  47171. height: math.unit(5 + 8/12, "feet"),
  47172. default: true
  47173. },
  47174. {
  47175. name: "Demolitionist",
  47176. height: math.unit(200, "feet")
  47177. },
  47178. {
  47179. name: "Out of Control",
  47180. height: math.unit(2, "miles")
  47181. },
  47182. {
  47183. name: "Giga",
  47184. height: math.unit(7200, "miles")
  47185. },
  47186. ]
  47187. ))
  47188. characterMakers.push(() => makeCharacter(
  47189. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47190. {
  47191. front: {
  47192. height: math.unit(6, "feet"),
  47193. weight: math.unit(150, "lb"),
  47194. name: "Front",
  47195. image: {
  47196. source: "./media/characters/jenny-cartwright/front.svg",
  47197. extra: 1384/1376,
  47198. bottom: 58/1442
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(6 + 7/12, "feet"),
  47206. default: true
  47207. },
  47208. {
  47209. name: "Librarian",
  47210. height: math.unit(55, "feet")
  47211. },
  47212. {
  47213. name: "Sightseer",
  47214. height: math.unit(50, "miles")
  47215. },
  47216. {
  47217. name: "Giga",
  47218. height: math.unit(30000, "miles")
  47219. },
  47220. ]
  47221. ))
  47222. characterMakers.push(() => makeCharacter(
  47223. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47224. {
  47225. nude: {
  47226. height: math.unit(8, "feet"),
  47227. weight: math.unit(225, "lb"),
  47228. name: "Nude",
  47229. image: {
  47230. source: "./media/characters/marvy/nude.svg",
  47231. extra: 1900/1683,
  47232. bottom: 89/1989
  47233. }
  47234. },
  47235. dressed: {
  47236. height: math.unit(8, "feet"),
  47237. weight: math.unit(225, "lb"),
  47238. name: "Dressed",
  47239. image: {
  47240. source: "./media/characters/marvy/dressed.svg",
  47241. extra: 1900/1683,
  47242. bottom: 89/1989
  47243. }
  47244. },
  47245. head: {
  47246. height: math.unit(2.85, "feet"),
  47247. name: "Head",
  47248. image: {
  47249. source: "./media/characters/marvy/head.svg"
  47250. }
  47251. },
  47252. },
  47253. [
  47254. {
  47255. name: "Normal",
  47256. height: math.unit(8, "feet"),
  47257. default: true
  47258. },
  47259. ]
  47260. ))
  47261. characterMakers.push(() => makeCharacter(
  47262. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47263. {
  47264. front: {
  47265. height: math.unit(8, "feet"),
  47266. weight: math.unit(250, "lb"),
  47267. name: "Front",
  47268. image: {
  47269. source: "./media/characters/leah/front.svg",
  47270. extra: 1257/1149,
  47271. bottom: 109/1366
  47272. }
  47273. },
  47274. },
  47275. [
  47276. {
  47277. name: "Normal",
  47278. height: math.unit(8, "feet"),
  47279. default: true
  47280. },
  47281. {
  47282. name: "Minimacro",
  47283. height: math.unit(40, "feet")
  47284. },
  47285. {
  47286. name: "Macro",
  47287. height: math.unit(124, "feet")
  47288. },
  47289. {
  47290. name: "Megamacro",
  47291. height: math.unit(850, "feet")
  47292. },
  47293. ]
  47294. ))
  47295. characterMakers.push(() => makeCharacter(
  47296. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47297. {
  47298. side: {
  47299. height: math.unit(13 + 6/12, "feet"),
  47300. weight: math.unit(3200, "lb"),
  47301. name: "Side",
  47302. image: {
  47303. source: "./media/characters/alvir/side.svg",
  47304. extra: 896/589,
  47305. bottom: 26/922
  47306. }
  47307. },
  47308. },
  47309. [
  47310. {
  47311. name: "Normal",
  47312. height: math.unit(13 + 6/12, "feet"),
  47313. default: true
  47314. },
  47315. ]
  47316. ))
  47317. characterMakers.push(() => makeCharacter(
  47318. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47319. {
  47320. front: {
  47321. height: math.unit(5 + 4/12, "feet"),
  47322. weight: math.unit(236, "lb"),
  47323. name: "Front",
  47324. image: {
  47325. source: "./media/characters/zaina-khalil/front.svg",
  47326. extra: 1533/1485,
  47327. bottom: 94/1627
  47328. }
  47329. },
  47330. side: {
  47331. height: math.unit(5 + 4/12, "feet"),
  47332. weight: math.unit(236, "lb"),
  47333. name: "Side",
  47334. image: {
  47335. source: "./media/characters/zaina-khalil/side.svg",
  47336. extra: 1537/1498,
  47337. bottom: 66/1603
  47338. }
  47339. },
  47340. back: {
  47341. height: math.unit(5 + 4/12, "feet"),
  47342. weight: math.unit(236, "lb"),
  47343. name: "Back",
  47344. image: {
  47345. source: "./media/characters/zaina-khalil/back.svg",
  47346. extra: 1546/1494,
  47347. bottom: 89/1635
  47348. }
  47349. },
  47350. },
  47351. [
  47352. {
  47353. name: "Normal",
  47354. height: math.unit(5 + 4/12, "feet"),
  47355. default: true
  47356. },
  47357. ]
  47358. ))
  47359. characterMakers.push(() => makeCharacter(
  47360. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47361. {
  47362. side: {
  47363. height: math.unit(12, "feet"),
  47364. weight: math.unit(4000, "lb"),
  47365. name: "Side",
  47366. image: {
  47367. source: "./media/characters/terry/side.svg",
  47368. extra: 1518/1439,
  47369. bottom: 149/1667
  47370. }
  47371. },
  47372. },
  47373. [
  47374. {
  47375. name: "Normal",
  47376. height: math.unit(12, "feet"),
  47377. default: true
  47378. },
  47379. ]
  47380. ))
  47381. characterMakers.push(() => makeCharacter(
  47382. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47383. {
  47384. front: {
  47385. height: math.unit(12, "feet"),
  47386. weight: math.unit(1500, "lb"),
  47387. name: "Front",
  47388. image: {
  47389. source: "./media/characters/kahea/front.svg",
  47390. extra: 1722/1617,
  47391. bottom: 179/1901
  47392. }
  47393. },
  47394. },
  47395. [
  47396. {
  47397. name: "Normal",
  47398. height: math.unit(12, "feet"),
  47399. default: true
  47400. },
  47401. ]
  47402. ))
  47403. characterMakers.push(() => makeCharacter(
  47404. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47405. {
  47406. demonFront: {
  47407. height: math.unit(36, "feet"),
  47408. name: "Front",
  47409. image: {
  47410. source: "./media/characters/alex-xuria/demon-front.svg",
  47411. extra: 1705/1673,
  47412. bottom: 198/1903
  47413. },
  47414. form: "demon",
  47415. default: true
  47416. },
  47417. demonBack: {
  47418. height: math.unit(36, "feet"),
  47419. name: "Back",
  47420. image: {
  47421. source: "./media/characters/alex-xuria/demon-back.svg",
  47422. extra: 1725/1693,
  47423. bottom: 70/1795
  47424. },
  47425. form: "demon"
  47426. },
  47427. demonHead: {
  47428. height: math.unit(2.14, "meters"),
  47429. name: "Head",
  47430. image: {
  47431. source: "./media/characters/alex-xuria/demon-head.svg"
  47432. },
  47433. form: "demon"
  47434. },
  47435. demonHand: {
  47436. height: math.unit(1.61, "meters"),
  47437. name: "Hand",
  47438. image: {
  47439. source: "./media/characters/alex-xuria/demon-hand.svg"
  47440. },
  47441. form: "demon"
  47442. },
  47443. demonPaw: {
  47444. height: math.unit(1.35, "meters"),
  47445. name: "Paw",
  47446. image: {
  47447. source: "./media/characters/alex-xuria/demon-paw.svg"
  47448. },
  47449. form: "demon"
  47450. },
  47451. demonFoot: {
  47452. height: math.unit(2.2, "meters"),
  47453. name: "Foot",
  47454. image: {
  47455. source: "./media/characters/alex-xuria/demon-foot.svg"
  47456. },
  47457. form: "demon"
  47458. },
  47459. demonCock: {
  47460. height: math.unit(1.74, "meters"),
  47461. name: "Cock",
  47462. image: {
  47463. source: "./media/characters/alex-xuria/demon-cock.svg"
  47464. },
  47465. form: "demon"
  47466. },
  47467. demonTailClosed: {
  47468. height: math.unit(1.47, "meters"),
  47469. name: "Tail (Closed)",
  47470. image: {
  47471. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47472. },
  47473. form: "demon"
  47474. },
  47475. demonTailOpen: {
  47476. height: math.unit(2.85, "meters"),
  47477. name: "Tail (Open)",
  47478. image: {
  47479. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47480. },
  47481. form: "demon"
  47482. },
  47483. incubusFront: {
  47484. height: math.unit(12, "feet"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/alex-xuria/incubus-front.svg",
  47488. extra: 1754/1677,
  47489. bottom: 125/1879
  47490. },
  47491. form: "incubus",
  47492. default: true
  47493. },
  47494. incubusBack: {
  47495. height: math.unit(12, "feet"),
  47496. name: "Back",
  47497. image: {
  47498. source: "./media/characters/alex-xuria/incubus-back.svg",
  47499. extra: 1702/1647,
  47500. bottom: 30/1732
  47501. },
  47502. form: "incubus"
  47503. },
  47504. incubusHead: {
  47505. height: math.unit(3.45, "feet"),
  47506. name: "Head",
  47507. image: {
  47508. source: "./media/characters/alex-xuria/incubus-head.svg"
  47509. },
  47510. form: "incubus"
  47511. },
  47512. rabbitFront: {
  47513. height: math.unit(6, "feet"),
  47514. name: "Front",
  47515. image: {
  47516. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47517. extra: 1369/1349,
  47518. bottom: 45/1414
  47519. },
  47520. form: "rabbit",
  47521. default: true
  47522. },
  47523. rabbitSide: {
  47524. height: math.unit(6, "feet"),
  47525. name: "Side",
  47526. image: {
  47527. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47528. extra: 1370/1356,
  47529. bottom: 37/1407
  47530. },
  47531. form: "rabbit"
  47532. },
  47533. rabbitBack: {
  47534. height: math.unit(6, "feet"),
  47535. name: "Back",
  47536. image: {
  47537. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47538. extra: 1375/1358,
  47539. bottom: 43/1418
  47540. },
  47541. form: "rabbit"
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Normal",
  47547. height: math.unit(6, "feet"),
  47548. default: true,
  47549. form: "rabbit"
  47550. },
  47551. {
  47552. name: "Incubus",
  47553. height: math.unit(12, "feet"),
  47554. default: true,
  47555. form: "incubus"
  47556. },
  47557. {
  47558. name: "Demon",
  47559. height: math.unit(36, "feet"),
  47560. default: true,
  47561. form: "demon"
  47562. }
  47563. ],
  47564. {
  47565. "demon": {
  47566. name: "Demon",
  47567. default: true
  47568. },
  47569. "incubus": {
  47570. name: "Incubus",
  47571. },
  47572. "rabbit": {
  47573. name: "Rabbit"
  47574. }
  47575. }
  47576. ))
  47577. characterMakers.push(() => makeCharacter(
  47578. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47579. {
  47580. front: {
  47581. height: math.unit(7 + 5/12, "feet"),
  47582. weight: math.unit(510, "lb"),
  47583. name: "Front",
  47584. image: {
  47585. source: "./media/characters/syrup/front.svg",
  47586. extra: 932/916,
  47587. bottom: 26/958
  47588. }
  47589. },
  47590. },
  47591. [
  47592. {
  47593. name: "Normal",
  47594. height: math.unit(7 + 5/12, "feet"),
  47595. default: true
  47596. },
  47597. {
  47598. name: "Big",
  47599. height: math.unit(50, "feet")
  47600. },
  47601. {
  47602. name: "Macro",
  47603. height: math.unit(300, "feet")
  47604. },
  47605. {
  47606. name: "Megamacro",
  47607. height: math.unit(1, "mile")
  47608. },
  47609. ]
  47610. ))
  47611. characterMakers.push(() => makeCharacter(
  47612. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47613. {
  47614. front: {
  47615. height: math.unit(6 + 9/12, "feet"),
  47616. name: "Front",
  47617. image: {
  47618. source: "./media/characters/zeimne/front.svg",
  47619. extra: 1969/1806,
  47620. bottom: 53/2022
  47621. }
  47622. },
  47623. },
  47624. [
  47625. {
  47626. name: "Normal",
  47627. height: math.unit(6 + 9/12, "feet"),
  47628. default: true
  47629. },
  47630. {
  47631. name: "Giant",
  47632. height: math.unit(550, "feet")
  47633. },
  47634. {
  47635. name: "Mega",
  47636. height: math.unit(3, "miles")
  47637. },
  47638. {
  47639. name: "Giga",
  47640. height: math.unit(250, "miles")
  47641. },
  47642. {
  47643. name: "Tera",
  47644. height: math.unit(1, "AU")
  47645. },
  47646. ]
  47647. ))
  47648. characterMakers.push(() => makeCharacter(
  47649. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47650. {
  47651. front: {
  47652. height: math.unit(5 + 2/12, "feet"),
  47653. name: "Front",
  47654. image: {
  47655. source: "./media/characters/grar/front.svg",
  47656. extra: 1331/1119,
  47657. bottom: 60/1391
  47658. }
  47659. },
  47660. back: {
  47661. height: math.unit(5 + 2/12, "feet"),
  47662. name: "Back",
  47663. image: {
  47664. source: "./media/characters/grar/back.svg",
  47665. extra: 1385/1169,
  47666. bottom: 23/1408
  47667. }
  47668. },
  47669. },
  47670. [
  47671. {
  47672. name: "Normal",
  47673. height: math.unit(5 + 2/12, "feet"),
  47674. default: true
  47675. },
  47676. ]
  47677. ))
  47678. characterMakers.push(() => makeCharacter(
  47679. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47680. {
  47681. front: {
  47682. height: math.unit(13 + 7/12, "feet"),
  47683. weight: math.unit(2200, "lb"),
  47684. name: "Front",
  47685. image: {
  47686. source: "./media/characters/endraya/front.svg",
  47687. extra: 1289/1215,
  47688. bottom: 50/1339
  47689. }
  47690. },
  47691. nude: {
  47692. height: math.unit(13 + 7/12, "feet"),
  47693. weight: math.unit(2200, "lb"),
  47694. name: "Nude",
  47695. image: {
  47696. source: "./media/characters/endraya/nude.svg",
  47697. extra: 1247/1171,
  47698. bottom: 40/1287
  47699. }
  47700. },
  47701. head: {
  47702. height: math.unit(2.6, "feet"),
  47703. name: "Head",
  47704. image: {
  47705. source: "./media/characters/endraya/head.svg"
  47706. }
  47707. },
  47708. slit: {
  47709. height: math.unit(3.4, "feet"),
  47710. name: "Slit",
  47711. image: {
  47712. source: "./media/characters/endraya/slit.svg"
  47713. }
  47714. },
  47715. },
  47716. [
  47717. {
  47718. name: "Normal",
  47719. height: math.unit(13 + 7/12, "feet"),
  47720. default: true
  47721. },
  47722. {
  47723. name: "Macro",
  47724. height: math.unit(200, "feet")
  47725. },
  47726. ]
  47727. ))
  47728. characterMakers.push(() => makeCharacter(
  47729. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47730. {
  47731. front: {
  47732. height: math.unit(1.81, "meters"),
  47733. weight: math.unit(69, "kg"),
  47734. name: "Front",
  47735. image: {
  47736. source: "./media/characters/rodryana/front.svg",
  47737. extra: 2002/1921,
  47738. bottom: 53/2055
  47739. }
  47740. },
  47741. back: {
  47742. height: math.unit(1.81, "meters"),
  47743. weight: math.unit(69, "kg"),
  47744. name: "Back",
  47745. image: {
  47746. source: "./media/characters/rodryana/back.svg",
  47747. extra: 1993/1926,
  47748. bottom: 48/2041
  47749. }
  47750. },
  47751. maw: {
  47752. height: math.unit(0.19769417475, "meters"),
  47753. name: "Maw",
  47754. image: {
  47755. source: "./media/characters/rodryana/maw.svg"
  47756. }
  47757. },
  47758. slit: {
  47759. height: math.unit(0.31631067961, "meters"),
  47760. name: "Slit",
  47761. image: {
  47762. source: "./media/characters/rodryana/slit.svg"
  47763. }
  47764. },
  47765. },
  47766. [
  47767. {
  47768. name: "Normal",
  47769. height: math.unit(1.81, "meters")
  47770. },
  47771. {
  47772. name: "Mini Macro",
  47773. height: math.unit(181, "meters")
  47774. },
  47775. {
  47776. name: "Macro",
  47777. height: math.unit(452, "meters"),
  47778. default: true
  47779. },
  47780. {
  47781. name: "Mega Macro",
  47782. height: math.unit(1.375, "km")
  47783. },
  47784. {
  47785. name: "Giga Macro",
  47786. height: math.unit(13.575, "km")
  47787. },
  47788. ]
  47789. ))
  47790. characterMakers.push(() => makeCharacter(
  47791. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47792. {
  47793. front: {
  47794. height: math.unit(6, "feet"),
  47795. weight: math.unit(1000, "lb"),
  47796. name: "Front",
  47797. image: {
  47798. source: "./media/characters/asaya/front.svg",
  47799. extra: 1460/1200,
  47800. bottom: 71/1531
  47801. }
  47802. },
  47803. },
  47804. [
  47805. {
  47806. name: "Normal",
  47807. height: math.unit(8, "km"),
  47808. default: true
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47814. {
  47815. front: {
  47816. height: math.unit(3.5, "meters"),
  47817. name: "Front",
  47818. image: {
  47819. source: "./media/characters/sarzu-and-israz/front.svg",
  47820. extra: 1570/1558,
  47821. bottom: 150/1720
  47822. },
  47823. },
  47824. back: {
  47825. height: math.unit(3.5, "meters"),
  47826. name: "Back",
  47827. image: {
  47828. source: "./media/characters/sarzu-and-israz/back.svg",
  47829. extra: 1523/1509,
  47830. bottom: 132/1655
  47831. },
  47832. },
  47833. frontFemale: {
  47834. height: math.unit(3.5, "meters"),
  47835. name: "Front (Female)",
  47836. image: {
  47837. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47838. extra: 1570/1558,
  47839. bottom: 150/1720
  47840. },
  47841. },
  47842. frontHerm: {
  47843. height: math.unit(3.5, "meters"),
  47844. name: "Front (Herm)",
  47845. image: {
  47846. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47847. extra: 1570/1558,
  47848. bottom: 150/1720
  47849. },
  47850. },
  47851. },
  47852. [
  47853. {
  47854. name: "Normal",
  47855. height: math.unit(3.5, "meters"),
  47856. default: true,
  47857. },
  47858. {
  47859. name: "Macro",
  47860. height: math.unit(65.5, "meters"),
  47861. },
  47862. ],
  47863. ))
  47864. characterMakers.push(() => makeCharacter(
  47865. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47866. {
  47867. front: {
  47868. height: math.unit(6, "feet"),
  47869. weight: math.unit(250, "lb"),
  47870. name: "Front",
  47871. image: {
  47872. source: "./media/characters/zenimma/front.svg",
  47873. extra: 1346/1320,
  47874. bottom: 58/1404
  47875. }
  47876. },
  47877. back: {
  47878. height: math.unit(6, "feet"),
  47879. weight: math.unit(250, "lb"),
  47880. name: "Back",
  47881. image: {
  47882. source: "./media/characters/zenimma/back.svg",
  47883. extra: 1324/1308,
  47884. bottom: 44/1368
  47885. }
  47886. },
  47887. dick: {
  47888. height: math.unit(1.44, "feet"),
  47889. name: "Dick",
  47890. image: {
  47891. source: "./media/characters/zenimma/dick.svg"
  47892. }
  47893. },
  47894. },
  47895. [
  47896. {
  47897. name: "Canon Height",
  47898. height: math.unit(66, "miles"),
  47899. default: true
  47900. },
  47901. ]
  47902. ))
  47903. characterMakers.push(() => makeCharacter(
  47904. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47905. {
  47906. nude: {
  47907. height: math.unit(6, "feet"),
  47908. weight: math.unit(150, "lb"),
  47909. name: "Nude",
  47910. image: {
  47911. source: "./media/characters/shavon/nude.svg",
  47912. extra: 1242/1096,
  47913. bottom: 98/1340
  47914. }
  47915. },
  47916. dressed: {
  47917. height: math.unit(6, "feet"),
  47918. weight: math.unit(150, "lb"),
  47919. name: "Dressed",
  47920. image: {
  47921. source: "./media/characters/shavon/dressed.svg",
  47922. extra: 1242/1096,
  47923. bottom: 98/1340
  47924. }
  47925. },
  47926. },
  47927. [
  47928. {
  47929. name: "Macro",
  47930. height: math.unit(255, "feet"),
  47931. default: true
  47932. },
  47933. ]
  47934. ))
  47935. characterMakers.push(() => makeCharacter(
  47936. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47937. {
  47938. front: {
  47939. height: math.unit(6, "feet"),
  47940. name: "Front",
  47941. image: {
  47942. source: "./media/characters/steph/front.svg",
  47943. extra: 1430/1330,
  47944. bottom: 54/1484
  47945. }
  47946. },
  47947. },
  47948. [
  47949. {
  47950. name: "Normal",
  47951. height: math.unit(6, "feet"),
  47952. default: true
  47953. },
  47954. ]
  47955. ))
  47956. characterMakers.push(() => makeCharacter(
  47957. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47958. {
  47959. front: {
  47960. height: math.unit(9, "feet"),
  47961. weight: math.unit(400, "lb"),
  47962. name: "Front",
  47963. image: {
  47964. source: "./media/characters/kil'aman/front.svg",
  47965. extra: 1210/1159,
  47966. bottom: 109/1319
  47967. }
  47968. },
  47969. head: {
  47970. height: math.unit(2.14, "feet"),
  47971. name: "Head",
  47972. image: {
  47973. source: "./media/characters/kil'aman/head.svg"
  47974. }
  47975. },
  47976. maw: {
  47977. height: math.unit(1.21, "feet"),
  47978. name: "Maw",
  47979. image: {
  47980. source: "./media/characters/kil'aman/maw.svg"
  47981. }
  47982. },
  47983. foot: {
  47984. height: math.unit(1.7, "feet"),
  47985. name: "Foot",
  47986. image: {
  47987. source: "./media/characters/kil'aman/foot.svg"
  47988. }
  47989. },
  47990. dick: {
  47991. height: math.unit(2.1, "feet"),
  47992. name: "Dick",
  47993. image: {
  47994. source: "./media/characters/kil'aman/dick.svg"
  47995. }
  47996. },
  47997. },
  47998. [
  47999. {
  48000. name: "Normal",
  48001. height: math.unit(9, "feet")
  48002. },
  48003. {
  48004. name: "Canon Height",
  48005. height: math.unit(10, "miles"),
  48006. default: true
  48007. },
  48008. {
  48009. name: "Maximum",
  48010. height: math.unit(6e9, "miles")
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48016. {
  48017. front: {
  48018. height: math.unit(90, "feet"),
  48019. weight: math.unit(675000, "lb"),
  48020. name: "Front",
  48021. image: {
  48022. source: "./media/characters/qadan/front.svg",
  48023. extra: 1012/1004,
  48024. bottom: 78/1090
  48025. }
  48026. },
  48027. back: {
  48028. height: math.unit(90, "feet"),
  48029. weight: math.unit(675000, "lb"),
  48030. name: "Back",
  48031. image: {
  48032. source: "./media/characters/qadan/back.svg",
  48033. extra: 1042/1031,
  48034. bottom: 55/1097
  48035. }
  48036. },
  48037. armored: {
  48038. height: math.unit(90, "feet"),
  48039. weight: math.unit(675000, "lb"),
  48040. name: "Armored",
  48041. image: {
  48042. source: "./media/characters/qadan/armored.svg",
  48043. extra: 1047/1037,
  48044. bottom: 48/1095
  48045. }
  48046. },
  48047. },
  48048. [
  48049. {
  48050. name: "Normal",
  48051. height: math.unit(90, "feet"),
  48052. default: true
  48053. },
  48054. ]
  48055. ))
  48056. characterMakers.push(() => makeCharacter(
  48057. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48058. {
  48059. front: {
  48060. height: math.unit(6, "feet"),
  48061. weight: math.unit(225, "lb"),
  48062. name: "Front",
  48063. image: {
  48064. source: "./media/characters/brooke/front.svg",
  48065. extra: 1050/1010,
  48066. bottom: 66/1116
  48067. }
  48068. },
  48069. back: {
  48070. height: math.unit(6, "feet"),
  48071. weight: math.unit(225, "lb"),
  48072. name: "Back",
  48073. image: {
  48074. source: "./media/characters/brooke/back.svg",
  48075. extra: 1053/1013,
  48076. bottom: 41/1094
  48077. }
  48078. },
  48079. dressed: {
  48080. height: math.unit(6, "feet"),
  48081. weight: math.unit(225, "lb"),
  48082. name: "Dressed",
  48083. image: {
  48084. source: "./media/characters/brooke/dressed.svg",
  48085. extra: 1050/1010,
  48086. bottom: 66/1116
  48087. }
  48088. },
  48089. },
  48090. [
  48091. {
  48092. name: "Canon Height",
  48093. height: math.unit(500, "miles"),
  48094. default: true
  48095. },
  48096. ]
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48100. {
  48101. front: {
  48102. height: math.unit(6 + 2/12, "feet"),
  48103. weight: math.unit(210, "lb"),
  48104. name: "Front",
  48105. image: {
  48106. source: "./media/characters/wubs/front.svg",
  48107. extra: 1345/1325,
  48108. bottom: 70/1415
  48109. }
  48110. },
  48111. back: {
  48112. height: math.unit(6 + 2/12, "feet"),
  48113. weight: math.unit(210, "lb"),
  48114. name: "Back",
  48115. image: {
  48116. source: "./media/characters/wubs/back.svg",
  48117. extra: 1296/1275,
  48118. bottom: 58/1354
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(6 + 2/12, "feet"),
  48126. default: true
  48127. },
  48128. {
  48129. name: "Macro",
  48130. height: math.unit(1000, "feet")
  48131. },
  48132. {
  48133. name: "Megamacro",
  48134. height: math.unit(1, "mile")
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48140. {
  48141. front: {
  48142. height: math.unit(4, "feet"),
  48143. weight: math.unit(120, "lb"),
  48144. name: "Front",
  48145. image: {
  48146. source: "./media/characters/blue/front.svg",
  48147. extra: 1636/1525,
  48148. bottom: 43/1679
  48149. }
  48150. },
  48151. back: {
  48152. height: math.unit(4, "feet"),
  48153. weight: math.unit(120, "lb"),
  48154. name: "Back",
  48155. image: {
  48156. source: "./media/characters/blue/back.svg",
  48157. extra: 1660/1560,
  48158. bottom: 57/1717
  48159. }
  48160. },
  48161. paws: {
  48162. height: math.unit(0.826, "feet"),
  48163. name: "Paws",
  48164. image: {
  48165. source: "./media/characters/blue/paws.svg"
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Micro",
  48172. height: math.unit(3, "inches")
  48173. },
  48174. {
  48175. name: "Normal",
  48176. height: math.unit(4, "feet"),
  48177. default: true
  48178. },
  48179. {
  48180. name: "Femenine Form",
  48181. height: math.unit(14, "feet")
  48182. },
  48183. {
  48184. name: "Werebat Form",
  48185. height: math.unit(18, "feet")
  48186. },
  48187. ]
  48188. ))
  48189. characterMakers.push(() => makeCharacter(
  48190. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48191. {
  48192. female: {
  48193. height: math.unit(7 + 4/12, "feet"),
  48194. weight: math.unit(243, "lb"),
  48195. name: "Female",
  48196. image: {
  48197. source: "./media/characters/kaya/female.svg",
  48198. extra: 975/898,
  48199. bottom: 34/1009
  48200. }
  48201. },
  48202. herm: {
  48203. height: math.unit(7 + 4/12, "feet"),
  48204. weight: math.unit(243, "lb"),
  48205. name: "Herm",
  48206. image: {
  48207. source: "./media/characters/kaya/herm.svg",
  48208. extra: 975/898,
  48209. bottom: 34/1009
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Normal",
  48216. height: math.unit(7 + 4/12, "feet"),
  48217. default: true
  48218. },
  48219. ]
  48220. ))
  48221. characterMakers.push(() => makeCharacter(
  48222. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48223. {
  48224. female: {
  48225. height: math.unit(9 + 4/12, "feet"),
  48226. weight: math.unit(398, "lb"),
  48227. name: "Female",
  48228. image: {
  48229. source: "./media/characters/kassandra/female.svg",
  48230. extra: 908/839,
  48231. bottom: 61/969
  48232. }
  48233. },
  48234. intersex: {
  48235. height: math.unit(9 + 4/12, "feet"),
  48236. weight: math.unit(398, "lb"),
  48237. name: "Intersex",
  48238. image: {
  48239. source: "./media/characters/kassandra/intersex.svg",
  48240. extra: 908/839,
  48241. bottom: 61/969
  48242. }
  48243. },
  48244. },
  48245. [
  48246. {
  48247. name: "Normal",
  48248. height: math.unit(9 + 4/12, "feet"),
  48249. default: true
  48250. },
  48251. ]
  48252. ))
  48253. characterMakers.push(() => makeCharacter(
  48254. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48255. {
  48256. front: {
  48257. height: math.unit(3, "meters"),
  48258. name: "Front",
  48259. image: {
  48260. source: "./media/characters/amy/front.svg",
  48261. extra: 1380/1343,
  48262. bottom: 70/1450
  48263. }
  48264. },
  48265. back: {
  48266. height: math.unit(3, "meters"),
  48267. name: "Back",
  48268. image: {
  48269. source: "./media/characters/amy/back.svg",
  48270. extra: 1380/1347,
  48271. bottom: 66/1446
  48272. }
  48273. },
  48274. },
  48275. [
  48276. {
  48277. name: "Normal",
  48278. height: math.unit(3, "meters"),
  48279. default: true
  48280. },
  48281. ]
  48282. ))
  48283. characterMakers.push(() => makeCharacter(
  48284. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48285. {
  48286. side: {
  48287. height: math.unit(47, "cm"),
  48288. weight: math.unit(10.8, "kg"),
  48289. name: "Side",
  48290. image: {
  48291. source: "./media/characters/alphaschakal/side.svg",
  48292. extra: 1058/568,
  48293. bottom: 62/1120
  48294. }
  48295. },
  48296. back: {
  48297. height: math.unit(78, "cm"),
  48298. weight: math.unit(10.8, "kg"),
  48299. name: "Back",
  48300. image: {
  48301. source: "./media/characters/alphaschakal/back.svg",
  48302. extra: 1102/942,
  48303. bottom: 185/1287
  48304. }
  48305. },
  48306. head: {
  48307. height: math.unit(28, "cm"),
  48308. name: "Head",
  48309. image: {
  48310. source: "./media/characters/alphaschakal/head.svg",
  48311. extra: 696/508,
  48312. bottom: 0/696
  48313. }
  48314. },
  48315. paw: {
  48316. height: math.unit(16, "cm"),
  48317. name: "Paw",
  48318. image: {
  48319. source: "./media/characters/alphaschakal/paw.svg"
  48320. }
  48321. },
  48322. },
  48323. [
  48324. {
  48325. name: "Normal",
  48326. height: math.unit(47, "cm"),
  48327. default: true
  48328. },
  48329. {
  48330. name: "Macro",
  48331. height: math.unit(340, "cm")
  48332. },
  48333. ]
  48334. ))
  48335. characterMakers.push(() => makeCharacter(
  48336. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48337. {
  48338. front: {
  48339. height: math.unit(36, "earths"),
  48340. name: "Front",
  48341. image: {
  48342. source: "./media/characters/ecobyss/front.svg",
  48343. extra: 1282/1215,
  48344. bottom: 11/1293
  48345. }
  48346. },
  48347. back: {
  48348. height: math.unit(36, "earths"),
  48349. name: "Back",
  48350. image: {
  48351. source: "./media/characters/ecobyss/back.svg",
  48352. extra: 1291/1222,
  48353. bottom: 8/1299
  48354. }
  48355. },
  48356. },
  48357. [
  48358. {
  48359. name: "Normal",
  48360. height: math.unit(36, "earths"),
  48361. default: true
  48362. },
  48363. ]
  48364. ))
  48365. characterMakers.push(() => makeCharacter(
  48366. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48367. {
  48368. front: {
  48369. height: math.unit(12, "feet"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/vasuk/front.svg",
  48373. extra: 1326/1207,
  48374. bottom: 64/1390
  48375. }
  48376. },
  48377. },
  48378. [
  48379. {
  48380. name: "Normal",
  48381. height: math.unit(12, "feet"),
  48382. default: true
  48383. },
  48384. ]
  48385. ))
  48386. characterMakers.push(() => makeCharacter(
  48387. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48388. {
  48389. side: {
  48390. height: math.unit(100, "feet"),
  48391. name: "Side",
  48392. image: {
  48393. source: "./media/characters/linneaus/side.svg",
  48394. extra: 987/807,
  48395. bottom: 47/1034
  48396. }
  48397. },
  48398. },
  48399. [
  48400. {
  48401. name: "Macro",
  48402. height: math.unit(100, "feet"),
  48403. default: true
  48404. },
  48405. ]
  48406. ))
  48407. characterMakers.push(() => makeCharacter(
  48408. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48409. {
  48410. front: {
  48411. height: math.unit(8, "feet"),
  48412. weight: math.unit(1200, "lb"),
  48413. name: "Front",
  48414. image: {
  48415. source: "./media/characters/nyterious-daligdig/front.svg",
  48416. extra: 1284/1094,
  48417. bottom: 84/1368
  48418. }
  48419. },
  48420. back: {
  48421. height: math.unit(8, "feet"),
  48422. weight: math.unit(1200, "lb"),
  48423. name: "Back",
  48424. image: {
  48425. source: "./media/characters/nyterious-daligdig/back.svg",
  48426. extra: 1301/1121,
  48427. bottom: 129/1430
  48428. }
  48429. },
  48430. mouth: {
  48431. height: math.unit(1.464, "feet"),
  48432. name: "Mouth",
  48433. image: {
  48434. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48435. }
  48436. },
  48437. },
  48438. [
  48439. {
  48440. name: "Small",
  48441. height: math.unit(8, "feet"),
  48442. default: true
  48443. },
  48444. {
  48445. name: "Normal",
  48446. height: math.unit(15, "feet")
  48447. },
  48448. {
  48449. name: "Macro",
  48450. height: math.unit(90, "feet")
  48451. },
  48452. ]
  48453. ))
  48454. characterMakers.push(() => makeCharacter(
  48455. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48456. {
  48457. front: {
  48458. height: math.unit(7 + 4/12, "feet"),
  48459. weight: math.unit(252, "lb"),
  48460. name: "Front",
  48461. image: {
  48462. source: "./media/characters/bandel/front.svg",
  48463. extra: 1946/1775,
  48464. bottom: 26/1972
  48465. }
  48466. },
  48467. back: {
  48468. height: math.unit(7 + 4/12, "feet"),
  48469. weight: math.unit(252, "lb"),
  48470. name: "Back",
  48471. image: {
  48472. source: "./media/characters/bandel/back.svg",
  48473. extra: 1940/1770,
  48474. bottom: 25/1965
  48475. }
  48476. },
  48477. maw: {
  48478. height: math.unit(2.15, "feet"),
  48479. name: "Maw",
  48480. image: {
  48481. source: "./media/characters/bandel/maw.svg"
  48482. }
  48483. },
  48484. stomach: {
  48485. height: math.unit(1.95, "feet"),
  48486. name: "Stomach",
  48487. image: {
  48488. source: "./media/characters/bandel/stomach.svg"
  48489. }
  48490. },
  48491. },
  48492. [
  48493. {
  48494. name: "Normal",
  48495. height: math.unit(7 + 4/12, "feet"),
  48496. default: true
  48497. },
  48498. ]
  48499. ))
  48500. characterMakers.push(() => makeCharacter(
  48501. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48502. {
  48503. front: {
  48504. height: math.unit(10 + 5/12, "feet"),
  48505. weight: math.unit(773.5, "kg"),
  48506. name: "Front",
  48507. image: {
  48508. source: "./media/characters/zed/front.svg",
  48509. extra: 987/941,
  48510. bottom: 52/1039
  48511. }
  48512. },
  48513. },
  48514. [
  48515. {
  48516. name: "Short",
  48517. height: math.unit(5 + 4/12, "feet")
  48518. },
  48519. {
  48520. name: "Average",
  48521. height: math.unit(10 + 5/12, "feet"),
  48522. default: true
  48523. },
  48524. {
  48525. name: "Mini-Macro",
  48526. height: math.unit(24 + 9/12, "feet")
  48527. },
  48528. {
  48529. name: "Macro",
  48530. height: math.unit(249, "feet")
  48531. },
  48532. {
  48533. name: "Mega-Macro",
  48534. height: math.unit(12490, "feet")
  48535. },
  48536. {
  48537. name: "Giga-Macro",
  48538. height: math.unit(24.9, "miles")
  48539. },
  48540. {
  48541. name: "Tera-Macro",
  48542. height: math.unit(24900, "miles")
  48543. },
  48544. {
  48545. name: "Cosmic Scale",
  48546. height: math.unit(38.9, "lightyears")
  48547. },
  48548. {
  48549. name: "Universal Scale",
  48550. height: math.unit(138e12, "lightyears")
  48551. },
  48552. ]
  48553. ))
  48554. characterMakers.push(() => makeCharacter(
  48555. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48556. {
  48557. front: {
  48558. height: math.unit(1561, "inches"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/ivan/front.svg",
  48562. extra: 1126/1071,
  48563. bottom: 26/1152
  48564. }
  48565. },
  48566. back: {
  48567. height: math.unit(1561, "inches"),
  48568. name: "Back",
  48569. image: {
  48570. source: "./media/characters/ivan/back.svg",
  48571. extra: 1134/1079,
  48572. bottom: 30/1164
  48573. }
  48574. },
  48575. },
  48576. [
  48577. {
  48578. name: "Normal",
  48579. height: math.unit(1561, "inches"),
  48580. default: true
  48581. },
  48582. ]
  48583. ))
  48584. characterMakers.push(() => makeCharacter(
  48585. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48586. {
  48587. front: {
  48588. height: math.unit(5 + 7/12, "feet"),
  48589. weight: math.unit(150, "lb"),
  48590. name: "Front",
  48591. image: {
  48592. source: "./media/characters/robin-arctic-hare/front.svg",
  48593. extra: 1148/974,
  48594. bottom: 20/1168
  48595. }
  48596. },
  48597. },
  48598. [
  48599. {
  48600. name: "Normal",
  48601. height: math.unit(5 + 7/12, "feet"),
  48602. default: true
  48603. },
  48604. ]
  48605. ))
  48606. characterMakers.push(() => makeCharacter(
  48607. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48608. {
  48609. side: {
  48610. height: math.unit(5, "feet"),
  48611. name: "Side",
  48612. image: {
  48613. source: "./media/characters/birch/side.svg",
  48614. extra: 985/796,
  48615. bottom: 111/1096
  48616. }
  48617. },
  48618. },
  48619. [
  48620. {
  48621. name: "Normal",
  48622. height: math.unit(5, "feet"),
  48623. default: true
  48624. },
  48625. ]
  48626. ))
  48627. characterMakers.push(() => makeCharacter(
  48628. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48629. {
  48630. front: {
  48631. height: math.unit(4, "feet"),
  48632. name: "Front",
  48633. image: {
  48634. source: "./media/characters/rasp/front.svg",
  48635. extra: 561/478,
  48636. bottom: 74/635
  48637. }
  48638. },
  48639. },
  48640. [
  48641. {
  48642. name: "Normal",
  48643. height: math.unit(4, "feet"),
  48644. default: true
  48645. },
  48646. ]
  48647. ))
  48648. characterMakers.push(() => makeCharacter(
  48649. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48650. {
  48651. front: {
  48652. height: math.unit(4 + 6/12, "feet"),
  48653. name: "Front",
  48654. image: {
  48655. source: "./media/characters/agatha/front.svg",
  48656. extra: 947/933,
  48657. bottom: 42/989
  48658. }
  48659. },
  48660. back: {
  48661. height: math.unit(4 + 6/12, "feet"),
  48662. name: "Back",
  48663. image: {
  48664. source: "./media/characters/agatha/back.svg",
  48665. extra: 935/922,
  48666. bottom: 48/983
  48667. }
  48668. },
  48669. },
  48670. [
  48671. {
  48672. name: "Normal",
  48673. height: math.unit(4 + 6 /12, "feet"),
  48674. default: true
  48675. },
  48676. {
  48677. name: "Max Size",
  48678. height: math.unit(500, "feet")
  48679. },
  48680. ]
  48681. ))
  48682. characterMakers.push(() => makeCharacter(
  48683. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48684. {
  48685. side: {
  48686. height: math.unit(30, "feet"),
  48687. name: "Side",
  48688. image: {
  48689. source: "./media/characters/roggy/side.svg",
  48690. extra: 909/643,
  48691. bottom: 63/972
  48692. }
  48693. },
  48694. lounging: {
  48695. height: math.unit(20, "feet"),
  48696. name: "Lounging",
  48697. image: {
  48698. source: "./media/characters/roggy/lounging.svg",
  48699. extra: 643/479,
  48700. bottom: 145/788
  48701. }
  48702. },
  48703. handpaw: {
  48704. height: math.unit(13.1, "feet"),
  48705. name: "Handpaw",
  48706. image: {
  48707. source: "./media/characters/roggy/handpaw.svg"
  48708. }
  48709. },
  48710. footpaw: {
  48711. height: math.unit(15.8, "feet"),
  48712. name: "Footpaw",
  48713. image: {
  48714. source: "./media/characters/roggy/footpaw.svg"
  48715. }
  48716. },
  48717. },
  48718. [
  48719. {
  48720. name: "Menacing",
  48721. height: math.unit(30, "feet"),
  48722. default: true
  48723. },
  48724. ]
  48725. ))
  48726. characterMakers.push(() => makeCharacter(
  48727. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48728. {
  48729. front: {
  48730. height: math.unit(5 + 7/12, "feet"),
  48731. weight: math.unit(135, "lb"),
  48732. name: "Front",
  48733. image: {
  48734. source: "./media/characters/naomi/front.svg",
  48735. extra: 1209/1154,
  48736. bottom: 129/1338
  48737. }
  48738. },
  48739. back: {
  48740. height: math.unit(5 + 7/12, "feet"),
  48741. weight: math.unit(135, "lb"),
  48742. name: "Back",
  48743. image: {
  48744. source: "./media/characters/naomi/back.svg",
  48745. extra: 1252/1190,
  48746. bottom: 23/1275
  48747. }
  48748. },
  48749. },
  48750. [
  48751. {
  48752. name: "Normal",
  48753. height: math.unit(5 + 7 /12, "feet"),
  48754. default: true
  48755. },
  48756. ]
  48757. ))
  48758. characterMakers.push(() => makeCharacter(
  48759. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48760. {
  48761. side: {
  48762. height: math.unit(35, "meters"),
  48763. name: "Side",
  48764. image: {
  48765. source: "./media/characters/kimpi/side.svg",
  48766. extra: 419/382,
  48767. bottom: 63/482
  48768. }
  48769. },
  48770. hand: {
  48771. height: math.unit(8.96, "meters"),
  48772. name: "Hand",
  48773. image: {
  48774. source: "./media/characters/kimpi/hand.svg"
  48775. }
  48776. },
  48777. },
  48778. [
  48779. {
  48780. name: "Normal",
  48781. height: math.unit(35, "meters"),
  48782. default: true
  48783. },
  48784. ]
  48785. ))
  48786. characterMakers.push(() => makeCharacter(
  48787. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48788. {
  48789. front: {
  48790. height: math.unit(4 + 4/12, "feet"),
  48791. name: "Front",
  48792. image: {
  48793. source: "./media/characters/pepper-purrloin/front.svg",
  48794. extra: 1141/1024,
  48795. bottom: 21/1162
  48796. }
  48797. },
  48798. },
  48799. [
  48800. {
  48801. name: "Normal",
  48802. height: math.unit(4 + 4/12, "feet"),
  48803. default: true
  48804. },
  48805. ]
  48806. ))
  48807. characterMakers.push(() => makeCharacter(
  48808. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48809. {
  48810. front: {
  48811. height: math.unit(6 + 2/12, "feet"),
  48812. name: "Front",
  48813. image: {
  48814. source: "./media/characters/raphael/front.svg",
  48815. extra: 1101/962,
  48816. bottom: 59/1160
  48817. }
  48818. },
  48819. },
  48820. [
  48821. {
  48822. name: "Normal",
  48823. height: math.unit(6 + 2/12, "feet"),
  48824. default: true
  48825. },
  48826. ]
  48827. ))
  48828. characterMakers.push(() => makeCharacter(
  48829. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48830. {
  48831. front: {
  48832. height: math.unit(6, "feet"),
  48833. weight: math.unit(150, "lb"),
  48834. name: "Front",
  48835. image: {
  48836. source: "./media/characters/victor-williams/front.svg",
  48837. extra: 1894/1825,
  48838. bottom: 67/1961
  48839. }
  48840. },
  48841. },
  48842. [
  48843. {
  48844. name: "Normal",
  48845. height: math.unit(6, "feet"),
  48846. default: true
  48847. },
  48848. ]
  48849. ))
  48850. characterMakers.push(() => makeCharacter(
  48851. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48852. {
  48853. front: {
  48854. height: math.unit(5 + 8/12, "feet"),
  48855. weight: math.unit(150, "lb"),
  48856. name: "Front",
  48857. image: {
  48858. source: "./media/characters/rachel/front.svg",
  48859. extra: 1902/1787,
  48860. bottom: 46/1948
  48861. }
  48862. },
  48863. },
  48864. [
  48865. {
  48866. name: "Base Height",
  48867. height: math.unit(5 + 8/12, "feet"),
  48868. default: true
  48869. },
  48870. {
  48871. name: "Macro",
  48872. height: math.unit(200, "feet")
  48873. },
  48874. {
  48875. name: "Mega Macro",
  48876. height: math.unit(1, "mile")
  48877. },
  48878. {
  48879. name: "Giga Macro",
  48880. height: math.unit(1500, "miles")
  48881. },
  48882. {
  48883. name: "Tera Macro",
  48884. height: math.unit(8000, "miles")
  48885. },
  48886. {
  48887. name: "Tera Macro+",
  48888. height: math.unit(2e5, "miles")
  48889. },
  48890. ]
  48891. ))
  48892. characterMakers.push(() => makeCharacter(
  48893. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48894. {
  48895. front: {
  48896. height: math.unit(6.5, "feet"),
  48897. name: "Front",
  48898. image: {
  48899. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48900. extra: 860/819,
  48901. bottom: 307/1167
  48902. }
  48903. },
  48904. back: {
  48905. height: math.unit(6.5, "feet"),
  48906. name: "Back",
  48907. image: {
  48908. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48909. extra: 880/837,
  48910. bottom: 395/1275
  48911. }
  48912. },
  48913. sleeping: {
  48914. height: math.unit(2.79, "feet"),
  48915. name: "Sleeping",
  48916. image: {
  48917. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48918. extra: 465/383,
  48919. bottom: 263/728
  48920. }
  48921. },
  48922. maw: {
  48923. height: math.unit(2.52, "feet"),
  48924. name: "Maw",
  48925. image: {
  48926. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48927. }
  48928. },
  48929. },
  48930. [
  48931. {
  48932. name: "Normal",
  48933. height: math.unit(6.5, "feet"),
  48934. default: true
  48935. },
  48936. ]
  48937. ))
  48938. characterMakers.push(() => makeCharacter(
  48939. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48940. {
  48941. front: {
  48942. height: math.unit(5, "feet"),
  48943. name: "Front",
  48944. image: {
  48945. source: "./media/characters/nova-nerium/front.svg",
  48946. extra: 1548/1392,
  48947. bottom: 374/1922
  48948. }
  48949. },
  48950. back: {
  48951. height: math.unit(5, "feet"),
  48952. name: "Back",
  48953. image: {
  48954. source: "./media/characters/nova-nerium/back.svg",
  48955. extra: 1658/1468,
  48956. bottom: 257/1915
  48957. }
  48958. },
  48959. },
  48960. [
  48961. {
  48962. name: "Normal",
  48963. height: math.unit(5, "feet"),
  48964. default: true
  48965. },
  48966. ]
  48967. ))
  48968. characterMakers.push(() => makeCharacter(
  48969. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48970. {
  48971. front: {
  48972. height: math.unit(5 + 4/12, "feet"),
  48973. name: "Front",
  48974. image: {
  48975. source: "./media/characters/ashe-pyriph/front.svg",
  48976. extra: 1935/1747,
  48977. bottom: 60/1995
  48978. }
  48979. },
  48980. },
  48981. [
  48982. {
  48983. name: "Normal",
  48984. height: math.unit(5 + 4/12, "feet"),
  48985. default: true
  48986. },
  48987. ]
  48988. ))
  48989. characterMakers.push(() => makeCharacter(
  48990. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48991. {
  48992. front: {
  48993. height: math.unit(8.7, "feet"),
  48994. name: "Front",
  48995. image: {
  48996. source: "./media/characters/flicker-wisp/front.svg",
  48997. extra: 1835/1613,
  48998. bottom: 449/2284
  48999. }
  49000. },
  49001. side: {
  49002. height: math.unit(8.7, "feet"),
  49003. name: "Side",
  49004. image: {
  49005. source: "./media/characters/flicker-wisp/side.svg",
  49006. extra: 1841/1642,
  49007. bottom: 336/2177
  49008. },
  49009. default: true
  49010. },
  49011. maw: {
  49012. height: math.unit(3.35, "feet"),
  49013. name: "Maw",
  49014. image: {
  49015. source: "./media/characters/flicker-wisp/maw.svg",
  49016. extra: 2338/1506,
  49017. bottom: 0/2338
  49018. }
  49019. },
  49020. ovipositor: {
  49021. height: math.unit(4.95, "feet"),
  49022. name: "Ovipositor",
  49023. image: {
  49024. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49025. }
  49026. },
  49027. egg: {
  49028. height: math.unit(0.385, "feet"),
  49029. weight: math.unit(2, "lb"),
  49030. name: "Egg",
  49031. image: {
  49032. source: "./media/characters/flicker-wisp/egg.svg"
  49033. }
  49034. },
  49035. },
  49036. [
  49037. {
  49038. name: "Normal",
  49039. height: math.unit(8.7, "feet"),
  49040. default: true
  49041. },
  49042. ]
  49043. ))
  49044. characterMakers.push(() => makeCharacter(
  49045. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49046. {
  49047. side: {
  49048. height: math.unit(11, "feet"),
  49049. name: "Side",
  49050. image: {
  49051. source: "./media/characters/faefnul/side.svg",
  49052. extra: 1100/1007,
  49053. bottom: 0/1100
  49054. }
  49055. },
  49056. },
  49057. [
  49058. {
  49059. name: "Normal",
  49060. height: math.unit(11, "feet"),
  49061. default: true
  49062. },
  49063. ]
  49064. ))
  49065. characterMakers.push(() => makeCharacter(
  49066. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49067. {
  49068. front: {
  49069. height: math.unit(6 + 2/12, "feet"),
  49070. name: "Front",
  49071. image: {
  49072. source: "./media/characters/shady/front.svg",
  49073. extra: 502/461,
  49074. bottom: 9/511
  49075. }
  49076. },
  49077. kneeling: {
  49078. height: math.unit(4.6, "feet"),
  49079. name: "Kneeling",
  49080. image: {
  49081. source: "./media/characters/shady/kneeling.svg",
  49082. extra: 1328/1219,
  49083. bottom: 117/1445
  49084. }
  49085. },
  49086. maw: {
  49087. height: math.unit(2, "feet"),
  49088. name: "Maw",
  49089. image: {
  49090. source: "./media/characters/shady/maw.svg"
  49091. }
  49092. },
  49093. },
  49094. [
  49095. {
  49096. name: "Nano",
  49097. height: math.unit(1, "mm")
  49098. },
  49099. {
  49100. name: "Micro",
  49101. height: math.unit(12, "mm")
  49102. },
  49103. {
  49104. name: "Tiny",
  49105. height: math.unit(3, "inches")
  49106. },
  49107. {
  49108. name: "Normal",
  49109. height: math.unit(6 + 2/12, "feet"),
  49110. default: true
  49111. },
  49112. {
  49113. name: "Big",
  49114. height: math.unit(15, "feet")
  49115. },
  49116. {
  49117. name: "Macro",
  49118. height: math.unit(150, "feet")
  49119. },
  49120. {
  49121. name: "Titanic",
  49122. height: math.unit(500, "feet")
  49123. },
  49124. ]
  49125. ))
  49126. characterMakers.push(() => makeCharacter(
  49127. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49128. {
  49129. front: {
  49130. height: math.unit(12, "feet"),
  49131. name: "Front",
  49132. image: {
  49133. source: "./media/characters/fenrir/front.svg",
  49134. extra: 968/875,
  49135. bottom: 22/990
  49136. }
  49137. },
  49138. },
  49139. [
  49140. {
  49141. name: "Big",
  49142. height: math.unit(12, "feet"),
  49143. default: true
  49144. },
  49145. ]
  49146. ))
  49147. characterMakers.push(() => makeCharacter(
  49148. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49149. {
  49150. front: {
  49151. height: math.unit(5 + 4/12, "feet"),
  49152. name: "Front",
  49153. image: {
  49154. source: "./media/characters/makar/front.svg",
  49155. extra: 1181/1112,
  49156. bottom: 78/1259
  49157. }
  49158. },
  49159. },
  49160. [
  49161. {
  49162. name: "Normal",
  49163. height: math.unit(5 + 4/12, "feet"),
  49164. default: true
  49165. },
  49166. ]
  49167. ))
  49168. characterMakers.push(() => makeCharacter(
  49169. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49170. {
  49171. front: {
  49172. height: math.unit(5 + 7/12, "feet"),
  49173. name: "Front",
  49174. image: {
  49175. source: "./media/characters/callow/front.svg",
  49176. extra: 1482/1304,
  49177. bottom: 23/1505
  49178. }
  49179. },
  49180. back: {
  49181. height: math.unit(5 + 7/12, "feet"),
  49182. name: "Back",
  49183. image: {
  49184. source: "./media/characters/callow/back.svg",
  49185. extra: 1484/1296,
  49186. bottom: 25/1509
  49187. }
  49188. },
  49189. },
  49190. [
  49191. {
  49192. name: "Micro",
  49193. height: math.unit(3, "inches"),
  49194. default: true
  49195. },
  49196. {
  49197. name: "Normal",
  49198. height: math.unit(5 + 7/12, "feet")
  49199. },
  49200. ]
  49201. ))
  49202. characterMakers.push(() => makeCharacter(
  49203. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49204. {
  49205. front: {
  49206. height: math.unit(6 + 2/12, "feet"),
  49207. name: "Front",
  49208. image: {
  49209. source: "./media/characters/natel/front.svg",
  49210. extra: 1833/1692,
  49211. bottom: 166/1999
  49212. }
  49213. },
  49214. },
  49215. [
  49216. {
  49217. name: "Normal",
  49218. height: math.unit(6 + 2/12, "feet"),
  49219. default: true
  49220. },
  49221. ]
  49222. ))
  49223. characterMakers.push(() => makeCharacter(
  49224. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49225. {
  49226. front: {
  49227. height: math.unit(1.75, "meters"),
  49228. name: "Front",
  49229. image: {
  49230. source: "./media/characters/misu/front.svg",
  49231. extra: 1690/1558,
  49232. bottom: 234/1924
  49233. }
  49234. },
  49235. back: {
  49236. height: math.unit(1.75, "meters"),
  49237. name: "Back",
  49238. image: {
  49239. source: "./media/characters/misu/back.svg",
  49240. extra: 1762/1618,
  49241. bottom: 146/1908
  49242. }
  49243. },
  49244. frontNude: {
  49245. height: math.unit(1.75, "meters"),
  49246. name: "Front (Nude)",
  49247. image: {
  49248. source: "./media/characters/misu/front-nude.svg",
  49249. extra: 1690/1558,
  49250. bottom: 234/1924
  49251. }
  49252. },
  49253. backNude: {
  49254. height: math.unit(1.75, "meters"),
  49255. name: "Back (Nude)",
  49256. image: {
  49257. source: "./media/characters/misu/back-nude.svg",
  49258. extra: 1762/1618,
  49259. bottom: 146/1908
  49260. }
  49261. },
  49262. frontErect: {
  49263. height: math.unit(1.75, "meters"),
  49264. name: "Front (Erect)",
  49265. image: {
  49266. source: "./media/characters/misu/front-erect.svg",
  49267. extra: 1690/1558,
  49268. bottom: 234/1924
  49269. }
  49270. },
  49271. maw: {
  49272. height: math.unit(0.47, "meters"),
  49273. name: "Maw",
  49274. image: {
  49275. source: "./media/characters/misu/maw.svg"
  49276. }
  49277. },
  49278. head: {
  49279. height: math.unit(0.35, "meters"),
  49280. name: "Head",
  49281. image: {
  49282. source: "./media/characters/misu/head.svg"
  49283. }
  49284. },
  49285. rear: {
  49286. height: math.unit(0.47, "meters"),
  49287. name: "Rear",
  49288. image: {
  49289. source: "./media/characters/misu/rear.svg"
  49290. }
  49291. },
  49292. },
  49293. [
  49294. {
  49295. name: "Normal",
  49296. height: math.unit(1.75, "meters")
  49297. },
  49298. {
  49299. name: "Not good for the people",
  49300. height: math.unit(42, "meters")
  49301. },
  49302. {
  49303. name: "Not good for the neighborhood",
  49304. height: math.unit(135, "meters")
  49305. },
  49306. {
  49307. name: "Bit bigger problem",
  49308. height: math.unit(380, "meters"),
  49309. default: true
  49310. },
  49311. {
  49312. name: "Not good for the city",
  49313. height: math.unit(1.5, "km")
  49314. },
  49315. {
  49316. name: "Not good for the county",
  49317. height: math.unit(5.5, "km")
  49318. },
  49319. {
  49320. name: "Not good for the state",
  49321. height: math.unit(25, "km")
  49322. },
  49323. {
  49324. name: "Not good for the country",
  49325. height: math.unit(125, "km")
  49326. },
  49327. {
  49328. name: "Not good for the continent",
  49329. height: math.unit(2100, "km")
  49330. },
  49331. {
  49332. name: "Not good for the planet",
  49333. height: math.unit(35000, "km")
  49334. },
  49335. {
  49336. name: "Just no",
  49337. height: math.unit(8.5e18, "km")
  49338. },
  49339. ]
  49340. ))
  49341. characterMakers.push(() => makeCharacter(
  49342. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49343. {
  49344. front: {
  49345. height: math.unit(6.5, "feet"),
  49346. name: "Front",
  49347. image: {
  49348. source: "./media/characters/poppy/front.svg",
  49349. extra: 1878/1812,
  49350. bottom: 43/1921
  49351. }
  49352. },
  49353. feet: {
  49354. height: math.unit(1.06, "feet"),
  49355. name: "Feet",
  49356. image: {
  49357. source: "./media/characters/poppy/feet.svg",
  49358. extra: 1083/1083,
  49359. bottom: 87/1170
  49360. }
  49361. },
  49362. },
  49363. [
  49364. {
  49365. name: "Human",
  49366. height: math.unit(6.5, "feet")
  49367. },
  49368. {
  49369. name: "Default",
  49370. height: math.unit(300, "feet"),
  49371. default: true
  49372. },
  49373. {
  49374. name: "Huge",
  49375. height: math.unit(850, "feet")
  49376. },
  49377. {
  49378. name: "Mega",
  49379. height: math.unit(8000, "feet")
  49380. },
  49381. {
  49382. name: "Giga",
  49383. height: math.unit(300, "miles")
  49384. },
  49385. ]
  49386. ))
  49387. characterMakers.push(() => makeCharacter(
  49388. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49389. {
  49390. bipedal: {
  49391. height: math.unit(7, "feet"),
  49392. name: "Bipedal",
  49393. image: {
  49394. source: "./media/characters/zener/bipedal.svg",
  49395. extra: 874/805,
  49396. bottom: 109/983
  49397. }
  49398. },
  49399. quadrupedal: {
  49400. height: math.unit(4.64, "feet"),
  49401. name: "Quadrupedal",
  49402. image: {
  49403. source: "./media/characters/zener/quadrupedal.svg",
  49404. extra: 638/507,
  49405. bottom: 190/828
  49406. }
  49407. },
  49408. cock: {
  49409. height: math.unit(18, "inches"),
  49410. name: "Cock",
  49411. image: {
  49412. source: "./media/characters/zener/cock.svg"
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(7, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49426. {
  49427. nude: {
  49428. height: math.unit(5 + 6/12, "feet"),
  49429. name: "Nude",
  49430. image: {
  49431. source: "./media/characters/charlie-dog/nude.svg",
  49432. extra: 768/734,
  49433. bottom: 26/794
  49434. }
  49435. },
  49436. dressed: {
  49437. height: math.unit(5 + 6/12, "feet"),
  49438. name: "Dressed",
  49439. image: {
  49440. source: "./media/characters/charlie-dog/dressed.svg",
  49441. extra: 768/734,
  49442. bottom: 26/794
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Normal",
  49449. height: math.unit(5 + 6/12, "feet"),
  49450. default: true
  49451. },
  49452. ]
  49453. ))
  49454. characterMakers.push(() => makeCharacter(
  49455. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49456. {
  49457. front: {
  49458. height: math.unit(6 + 4/12, "feet"),
  49459. name: "Front",
  49460. image: {
  49461. source: "./media/characters/ir'istrasz/front.svg",
  49462. extra: 1014/977,
  49463. bottom: 65/1079
  49464. }
  49465. },
  49466. back: {
  49467. height: math.unit(6 + 4/12, "feet"),
  49468. name: "Back",
  49469. image: {
  49470. source: "./media/characters/ir'istrasz/back.svg",
  49471. extra: 1024/992,
  49472. bottom: 34/1058
  49473. }
  49474. },
  49475. },
  49476. [
  49477. {
  49478. name: "Normal",
  49479. height: math.unit(6 + 4/12, "feet"),
  49480. default: true
  49481. },
  49482. ]
  49483. ))
  49484. characterMakers.push(() => makeCharacter(
  49485. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49486. {
  49487. front: {
  49488. height: math.unit(5 + 8/12, "feet"),
  49489. name: "Front",
  49490. image: {
  49491. source: "./media/characters/dee-ditto/front.svg",
  49492. extra: 1874/1785,
  49493. bottom: 68/1942
  49494. }
  49495. },
  49496. back: {
  49497. height: math.unit(5 + 8/12, "feet"),
  49498. name: "Back",
  49499. image: {
  49500. source: "./media/characters/dee-ditto/back.svg",
  49501. extra: 1870/1783,
  49502. bottom: 77/1947
  49503. }
  49504. },
  49505. },
  49506. [
  49507. {
  49508. name: "Normal",
  49509. height: math.unit(5 + 8/12, "feet"),
  49510. default: true
  49511. },
  49512. ]
  49513. ))
  49514. characterMakers.push(() => makeCharacter(
  49515. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49516. {
  49517. front: {
  49518. height: math.unit(7 + 6/12, "feet"),
  49519. name: "Front",
  49520. image: {
  49521. source: "./media/characters/fey/front.svg",
  49522. extra: 995/979,
  49523. bottom: 30/1025
  49524. }
  49525. },
  49526. back: {
  49527. height: math.unit(7 + 6/12, "feet"),
  49528. name: "Back",
  49529. image: {
  49530. source: "./media/characters/fey/back.svg",
  49531. extra: 1079/1008,
  49532. bottom: 5/1084
  49533. }
  49534. },
  49535. dressed: {
  49536. height: math.unit(7 + 6/12, "feet"),
  49537. name: "Dressed",
  49538. image: {
  49539. source: "./media/characters/fey/dressed.svg",
  49540. extra: 995/979,
  49541. bottom: 30/1025
  49542. }
  49543. },
  49544. },
  49545. [
  49546. {
  49547. name: "Normal",
  49548. height: math.unit(7 + 6/12, "feet"),
  49549. default: true
  49550. },
  49551. ]
  49552. ))
  49553. characterMakers.push(() => makeCharacter(
  49554. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49555. {
  49556. standing: {
  49557. height: math.unit(17, "feet"),
  49558. name: "Standing",
  49559. image: {
  49560. source: "./media/characters/aster/standing.svg",
  49561. extra: 1798/1598,
  49562. bottom: 117/1915
  49563. }
  49564. },
  49565. },
  49566. [
  49567. {
  49568. name: "Normal",
  49569. height: math.unit(17, "feet"),
  49570. default: true
  49571. },
  49572. {
  49573. name: "Homewrecker",
  49574. height: math.unit(95, "feet")
  49575. },
  49576. {
  49577. name: "Planet Devourer",
  49578. height: math.unit(1008000, "miles")
  49579. },
  49580. ]
  49581. ))
  49582. characterMakers.push(() => makeCharacter(
  49583. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49584. {
  49585. front: {
  49586. height: math.unit(6 + 5/12, "feet"),
  49587. weight: math.unit(265, "lb"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/devon-childs/front.svg",
  49591. extra: 1795/1721,
  49592. bottom: 41/1836
  49593. }
  49594. },
  49595. side: {
  49596. height: math.unit(6 + 5/12, "feet"),
  49597. weight: math.unit(265, "lb"),
  49598. name: "Side",
  49599. image: {
  49600. source: "./media/characters/devon-childs/side.svg",
  49601. extra: 1812/1738,
  49602. bottom: 30/1842
  49603. }
  49604. },
  49605. back: {
  49606. height: math.unit(6 + 5/12, "feet"),
  49607. weight: math.unit(265, "lb"),
  49608. name: "Back",
  49609. image: {
  49610. source: "./media/characters/devon-childs/back.svg",
  49611. extra: 1808/1735,
  49612. bottom: 23/1831
  49613. }
  49614. },
  49615. hand: {
  49616. height: math.unit(1.464, "feet"),
  49617. name: "Hand",
  49618. image: {
  49619. source: "./media/characters/devon-childs/hand.svg"
  49620. }
  49621. },
  49622. foot: {
  49623. height: math.unit(1.6, "feet"),
  49624. name: "Foot",
  49625. image: {
  49626. source: "./media/characters/devon-childs/foot.svg"
  49627. }
  49628. },
  49629. },
  49630. [
  49631. {
  49632. name: "Micro",
  49633. height: math.unit(7, "cm")
  49634. },
  49635. {
  49636. name: "Normal",
  49637. height: math.unit(6 + 5/12, "feet"),
  49638. default: true
  49639. },
  49640. {
  49641. name: "Macro",
  49642. height: math.unit(154, "feet")
  49643. },
  49644. ]
  49645. ))
  49646. characterMakers.push(() => makeCharacter(
  49647. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49648. {
  49649. front: {
  49650. height: math.unit(6, "feet"),
  49651. weight: math.unit(180, "lb"),
  49652. name: "Front",
  49653. image: {
  49654. source: "./media/characters/lydemox-vir/front.svg",
  49655. extra: 1632/1435,
  49656. bottom: 58/1690
  49657. }
  49658. },
  49659. frontSFW: {
  49660. height: math.unit(6, "feet"),
  49661. weight: math.unit(180, "lb"),
  49662. name: "Front (SFW)",
  49663. image: {
  49664. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49665. extra: 1632/1435,
  49666. bottom: 58/1690
  49667. }
  49668. },
  49669. back: {
  49670. height: math.unit(6, "feet"),
  49671. weight: math.unit(180, "lb"),
  49672. name: "Back",
  49673. image: {
  49674. source: "./media/characters/lydemox-vir/back.svg",
  49675. extra: 1593/1408,
  49676. bottom: 31/1624
  49677. }
  49678. },
  49679. paw: {
  49680. height: math.unit(1.85, "feet"),
  49681. name: "Paw",
  49682. image: {
  49683. source: "./media/characters/lydemox-vir/paw.svg"
  49684. }
  49685. },
  49686. dick: {
  49687. height: math.unit(1.8, "feet"),
  49688. name: "Dick",
  49689. image: {
  49690. source: "./media/characters/lydemox-vir/dick.svg"
  49691. }
  49692. },
  49693. },
  49694. [
  49695. {
  49696. name: "Macro",
  49697. height: math.unit(100, "feet"),
  49698. default: true
  49699. },
  49700. {
  49701. name: "Teramacro",
  49702. height: math.unit(1, "earth")
  49703. },
  49704. {
  49705. name: "Planetary",
  49706. height: math.unit(20, "earths")
  49707. },
  49708. ]
  49709. ))
  49710. characterMakers.push(() => makeCharacter(
  49711. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49712. {
  49713. front: {
  49714. height: math.unit(15 + 8/12, "feet"),
  49715. weight: math.unit(1237, "kg"),
  49716. name: "Front",
  49717. image: {
  49718. source: "./media/characters/mia/front.svg",
  49719. extra: 1573/1446,
  49720. bottom: 58/1631
  49721. }
  49722. },
  49723. },
  49724. [
  49725. {
  49726. name: "Small",
  49727. height: math.unit(9 + 5/12, "feet")
  49728. },
  49729. {
  49730. name: "Normal",
  49731. height: math.unit(15 + 8/12, "feet"),
  49732. default: true
  49733. },
  49734. ]
  49735. ))
  49736. characterMakers.push(() => makeCharacter(
  49737. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49738. {
  49739. front: {
  49740. height: math.unit(10 + 6/12, "feet"),
  49741. weight: math.unit(1.3, "tons"),
  49742. name: "Front",
  49743. image: {
  49744. source: "./media/characters/mr-graves/front.svg",
  49745. extra: 1779/1695,
  49746. bottom: 198/1977
  49747. }
  49748. },
  49749. },
  49750. [
  49751. {
  49752. name: "Normal",
  49753. height: math.unit(10 + 6 /12, "feet"),
  49754. default: true
  49755. },
  49756. ]
  49757. ))
  49758. characterMakers.push(() => makeCharacter(
  49759. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49760. {
  49761. dressedFront: {
  49762. height: math.unit(5 + 8/12, "feet"),
  49763. weight: math.unit(125, "lb"),
  49764. name: "Dressed (Front)",
  49765. image: {
  49766. source: "./media/characters/jess/dressed-front.svg",
  49767. extra: 1176/1152,
  49768. bottom: 42/1218
  49769. }
  49770. },
  49771. dressedSide: {
  49772. height: math.unit(5 + 8/12, "feet"),
  49773. weight: math.unit(125, "lb"),
  49774. name: "Dressed (Side)",
  49775. image: {
  49776. source: "./media/characters/jess/dressed-side.svg",
  49777. extra: 1204/1190,
  49778. bottom: 6/1210
  49779. }
  49780. },
  49781. nudeFront: {
  49782. height: math.unit(5 + 8/12, "feet"),
  49783. weight: math.unit(125, "lb"),
  49784. name: "Nude (Front)",
  49785. image: {
  49786. source: "./media/characters/jess/nude-front.svg",
  49787. extra: 1176/1152,
  49788. bottom: 42/1218
  49789. }
  49790. },
  49791. nudeSide: {
  49792. height: math.unit(5 + 8/12, "feet"),
  49793. weight: math.unit(125, "lb"),
  49794. name: "Nude (Side)",
  49795. image: {
  49796. source: "./media/characters/jess/nude-side.svg",
  49797. extra: 1204/1190,
  49798. bottom: 6/1210
  49799. }
  49800. },
  49801. organsFront: {
  49802. height: math.unit(2.83799342105, "feet"),
  49803. name: "Organs (Front)",
  49804. image: {
  49805. source: "./media/characters/jess/organs-front.svg"
  49806. }
  49807. },
  49808. organsSide: {
  49809. height: math.unit(2.64225290474, "feet"),
  49810. name: "Organs (Side)",
  49811. image: {
  49812. source: "./media/characters/jess/organs-side.svg"
  49813. }
  49814. },
  49815. digestiveTractFront: {
  49816. height: math.unit(2.8106580871, "feet"),
  49817. name: "Digestive Tract (Front)",
  49818. image: {
  49819. source: "./media/characters/jess/digestive-tract-front.svg"
  49820. }
  49821. },
  49822. digestiveTractSide: {
  49823. height: math.unit(2.54365045014, "feet"),
  49824. name: "Digestive Tract (Side)",
  49825. image: {
  49826. source: "./media/characters/jess/digestive-tract-side.svg"
  49827. }
  49828. },
  49829. respiratorySystemFront: {
  49830. height: math.unit(1.11196233456, "feet"),
  49831. name: "Respiratory System (Front)",
  49832. image: {
  49833. source: "./media/characters/jess/respiratory-system-front.svg"
  49834. }
  49835. },
  49836. respiratorySystemSide: {
  49837. height: math.unit(0.89327966297, "feet"),
  49838. name: "Respiratory System (Side)",
  49839. image: {
  49840. source: "./media/characters/jess/respiratory-system-side.svg"
  49841. }
  49842. },
  49843. urinaryTractFront: {
  49844. height: math.unit(1.16126356186, "feet"),
  49845. name: "Urinary Tract (Front)",
  49846. image: {
  49847. source: "./media/characters/jess/urinary-tract-front.svg"
  49848. }
  49849. },
  49850. urinaryTractSide: {
  49851. height: math.unit(1.20910039627, "feet"),
  49852. name: "Urinary Tract (Side)",
  49853. image: {
  49854. source: "./media/characters/jess/urinary-tract-side.svg"
  49855. }
  49856. },
  49857. reproductiveOrgansFront: {
  49858. height: math.unit(0.48422591566, "feet"),
  49859. name: "Reproductive Organs (Front)",
  49860. image: {
  49861. source: "./media/characters/jess/reproductive-organs-front.svg"
  49862. }
  49863. },
  49864. reproductiveOrgansSide: {
  49865. height: math.unit(0.61553314481, "feet"),
  49866. name: "Reproductive Organs (Side)",
  49867. image: {
  49868. source: "./media/characters/jess/reproductive-organs-side.svg"
  49869. }
  49870. },
  49871. breastsFront: {
  49872. height: math.unit(0.47690395121, "feet"),
  49873. name: "Breasts (Front)",
  49874. image: {
  49875. source: "./media/characters/jess/breasts-front.svg"
  49876. }
  49877. },
  49878. breastsSide: {
  49879. height: math.unit(0.30556998307, "feet"),
  49880. name: "Breasts (Side)",
  49881. image: {
  49882. source: "./media/characters/jess/breasts-side.svg"
  49883. }
  49884. },
  49885. heartFront: {
  49886. height: math.unit(0.53011022622, "feet"),
  49887. name: "Heart (Front)",
  49888. image: {
  49889. source: "./media/characters/jess/heart-front.svg"
  49890. }
  49891. },
  49892. heartSide: {
  49893. height: math.unit(0.51790695213, "feet"),
  49894. name: "Heart (Side)",
  49895. image: {
  49896. source: "./media/characters/jess/heart-side.svg"
  49897. }
  49898. },
  49899. earsAndNoseFront: {
  49900. height: math.unit(0.29385483995, "feet"),
  49901. name: "Ears and Nose (Front)",
  49902. image: {
  49903. source: "./media/characters/jess/ears-and-nose-front.svg"
  49904. }
  49905. },
  49906. earsAndNoseSide: {
  49907. height: math.unit(0.18109658741, "feet"),
  49908. name: "Ears and Nose (Side)",
  49909. image: {
  49910. source: "./media/characters/jess/ears-and-nose-side.svg"
  49911. }
  49912. },
  49913. },
  49914. [
  49915. {
  49916. name: "Normal",
  49917. height: math.unit(5 + 8/12, "feet"),
  49918. default: true
  49919. },
  49920. ]
  49921. ))
  49922. characterMakers.push(() => makeCharacter(
  49923. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49924. {
  49925. front: {
  49926. height: math.unit(6, "feet"),
  49927. weight: math.unit(6.64467e-7, "grams"),
  49928. name: "Front",
  49929. image: {
  49930. source: "./media/characters/wimpering/front.svg",
  49931. extra: 597/587,
  49932. bottom: 34/631
  49933. }
  49934. },
  49935. },
  49936. [
  49937. {
  49938. name: "Micro",
  49939. height: math.unit(0.4, "mm"),
  49940. default: true
  49941. },
  49942. ]
  49943. ))
  49944. characterMakers.push(() => makeCharacter(
  49945. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49946. {
  49947. front: {
  49948. height: math.unit(5 + 2/12, "feet"),
  49949. weight: math.unit(110, "lb"),
  49950. name: "Front",
  49951. image: {
  49952. source: "./media/characters/keltre/front.svg",
  49953. extra: 1099/1057,
  49954. bottom: 22/1121
  49955. }
  49956. },
  49957. back: {
  49958. height: math.unit(5 + 2/12, "feet"),
  49959. weight: math.unit(110, "lb"),
  49960. name: "Back",
  49961. image: {
  49962. source: "./media/characters/keltre/back.svg",
  49963. extra: 1095/1053,
  49964. bottom: 17/1112
  49965. }
  49966. },
  49967. dressed: {
  49968. height: math.unit(5 + 2/12, "feet"),
  49969. weight: math.unit(110, "lb"),
  49970. name: "Dressed",
  49971. image: {
  49972. source: "./media/characters/keltre/dressed.svg",
  49973. extra: 1099/1057,
  49974. bottom: 22/1121
  49975. }
  49976. },
  49977. winter: {
  49978. height: math.unit(5 + 2/12, "feet"),
  49979. weight: math.unit(110, "lb"),
  49980. name: "Winter",
  49981. image: {
  49982. source: "./media/characters/keltre/winter.svg",
  49983. extra: 1099/1057,
  49984. bottom: 22/1121
  49985. }
  49986. },
  49987. head: {
  49988. height: math.unit(1.61 * 0.86, "feet"),
  49989. name: "Head",
  49990. image: {
  49991. source: "./media/characters/keltre/head.svg",
  49992. extra: 534/421,
  49993. bottom: 0/534
  49994. }
  49995. },
  49996. hand: {
  49997. height: math.unit(1.3 * 0.86, "feet"),
  49998. name: "Hand",
  49999. image: {
  50000. source: "./media/characters/keltre/hand.svg"
  50001. }
  50002. },
  50003. foot: {
  50004. height: math.unit(1.8 * 0.86, "feet"),
  50005. name: "Foot",
  50006. image: {
  50007. source: "./media/characters/keltre/foot.svg"
  50008. }
  50009. },
  50010. },
  50011. [
  50012. {
  50013. name: "Fine",
  50014. height: math.unit(1, "inch")
  50015. },
  50016. {
  50017. name: "Dimnutive",
  50018. height: math.unit(4, "inches")
  50019. },
  50020. {
  50021. name: "Tiny",
  50022. height: math.unit(1, "foot")
  50023. },
  50024. {
  50025. name: "Small",
  50026. height: math.unit(3, "feet")
  50027. },
  50028. {
  50029. name: "Normal",
  50030. height: math.unit(5 + 2/12, "feet"),
  50031. default: true
  50032. },
  50033. ]
  50034. ))
  50035. characterMakers.push(() => makeCharacter(
  50036. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50037. {
  50038. front: {
  50039. height: math.unit(6 + 2/12, "feet"),
  50040. name: "Front",
  50041. image: {
  50042. source: "./media/characters/nox/front.svg",
  50043. extra: 1917/1830,
  50044. bottom: 74/1991
  50045. }
  50046. },
  50047. back: {
  50048. height: math.unit(6 + 2/12, "feet"),
  50049. name: "Back",
  50050. image: {
  50051. source: "./media/characters/nox/back.svg",
  50052. extra: 1896/1815,
  50053. bottom: 21/1917
  50054. }
  50055. },
  50056. head: {
  50057. height: math.unit(1.1, "feet"),
  50058. name: "Head",
  50059. image: {
  50060. source: "./media/characters/nox/head.svg",
  50061. extra: 874/704,
  50062. bottom: 0/874
  50063. }
  50064. },
  50065. tattoo: {
  50066. height: math.unit(0.729, "feet"),
  50067. name: "Tattoo",
  50068. image: {
  50069. source: "./media/characters/nox/tattoo.svg"
  50070. }
  50071. },
  50072. },
  50073. [
  50074. {
  50075. name: "Normal",
  50076. height: math.unit(6 + 2/12, "feet")
  50077. },
  50078. {
  50079. name: "Gigamacro",
  50080. height: math.unit(2, "earths"),
  50081. default: true
  50082. },
  50083. {
  50084. name: "Cosmic",
  50085. height: math.unit(867, "yottameters")
  50086. },
  50087. ]
  50088. ))
  50089. characterMakers.push(() => makeCharacter(
  50090. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50091. {
  50092. front: {
  50093. height: math.unit(6, "feet"),
  50094. weight: math.unit(150, "lb"),
  50095. name: "Front",
  50096. image: {
  50097. source: "./media/characters/caspian/front.svg",
  50098. extra: 1443/1359,
  50099. bottom: 0/1443
  50100. }
  50101. },
  50102. back: {
  50103. height: math.unit(6, "feet"),
  50104. weight: math.unit(150, "lb"),
  50105. name: "Back",
  50106. image: {
  50107. source: "./media/characters/caspian/back.svg",
  50108. extra: 1379/1309,
  50109. bottom: 0/1379
  50110. }
  50111. },
  50112. head: {
  50113. height: math.unit(0.9, "feet"),
  50114. name: "Head",
  50115. image: {
  50116. source: "./media/characters/caspian/head.svg",
  50117. extra: 692/492,
  50118. bottom: 0/692
  50119. }
  50120. },
  50121. headAlt: {
  50122. height: math.unit(0.95, "feet"),
  50123. name: "Head (Alt)",
  50124. image: {
  50125. source: "./media/characters/caspian/head-alt.svg",
  50126. extra: 668/508,
  50127. bottom: 0/668
  50128. }
  50129. },
  50130. hand: {
  50131. height: math.unit(0.8, "feet"),
  50132. name: "Hand",
  50133. image: {
  50134. source: "./media/characters/caspian/hand.svg"
  50135. }
  50136. },
  50137. paw: {
  50138. height: math.unit(0.95, "feet"),
  50139. name: "Paw",
  50140. image: {
  50141. source: "./media/characters/caspian/paw.svg"
  50142. }
  50143. },
  50144. },
  50145. [
  50146. {
  50147. name: "Normal",
  50148. height: math.unit(162, "feet"),
  50149. default: true
  50150. },
  50151. ]
  50152. ))
  50153. characterMakers.push(() => makeCharacter(
  50154. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50155. {
  50156. front: {
  50157. height: math.unit(6, "feet"),
  50158. name: "Front",
  50159. image: {
  50160. source: "./media/characters/myra-aisling/front.svg",
  50161. extra: 1268/1166,
  50162. bottom: 73/1341
  50163. }
  50164. },
  50165. back: {
  50166. height: math.unit(6, "feet"),
  50167. name: "Back",
  50168. image: {
  50169. source: "./media/characters/myra-aisling/back.svg",
  50170. extra: 1249/1149,
  50171. bottom: 79/1328
  50172. }
  50173. },
  50174. dressed: {
  50175. height: math.unit(6, "feet"),
  50176. name: "Dressed",
  50177. image: {
  50178. source: "./media/characters/myra-aisling/dressed.svg",
  50179. extra: 1290/1189,
  50180. bottom: 47/1337
  50181. }
  50182. },
  50183. hand: {
  50184. height: math.unit(1.1, "feet"),
  50185. name: "Hand",
  50186. image: {
  50187. source: "./media/characters/myra-aisling/hand.svg"
  50188. }
  50189. },
  50190. paw: {
  50191. height: math.unit(1.23, "feet"),
  50192. name: "Paw",
  50193. image: {
  50194. source: "./media/characters/myra-aisling/paw.svg"
  50195. }
  50196. },
  50197. },
  50198. [
  50199. {
  50200. name: "Normal",
  50201. height: math.unit(160, "feet"),
  50202. default: true
  50203. },
  50204. ]
  50205. ))
  50206. characterMakers.push(() => makeCharacter(
  50207. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50208. {
  50209. front: {
  50210. height: math.unit(6, "feet"),
  50211. name: "Front",
  50212. image: {
  50213. source: "./media/characters/tenley-sidero/front.svg",
  50214. extra: 1365/1276,
  50215. bottom: 47/1412
  50216. }
  50217. },
  50218. back: {
  50219. height: math.unit(6, "feet"),
  50220. name: "Back",
  50221. image: {
  50222. source: "./media/characters/tenley-sidero/back.svg",
  50223. extra: 1383/1283,
  50224. bottom: 35/1418
  50225. }
  50226. },
  50227. dressed: {
  50228. height: math.unit(6, "feet"),
  50229. name: "Dressed",
  50230. image: {
  50231. source: "./media/characters/tenley-sidero/dressed.svg",
  50232. extra: 1364/1275,
  50233. bottom: 42/1406
  50234. }
  50235. },
  50236. head: {
  50237. height: math.unit(1.47, "feet"),
  50238. name: "Head",
  50239. image: {
  50240. source: "./media/characters/tenley-sidero/head.svg",
  50241. extra: 610/490,
  50242. bottom: 0/610
  50243. }
  50244. },
  50245. },
  50246. [
  50247. {
  50248. name: "Normal",
  50249. height: math.unit(154, "feet"),
  50250. default: true
  50251. },
  50252. ]
  50253. ))
  50254. characterMakers.push(() => makeCharacter(
  50255. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50256. {
  50257. front: {
  50258. height: math.unit(5, "inches"),
  50259. name: "Front",
  50260. image: {
  50261. source: "./media/characters/mallory/front.svg",
  50262. extra: 1919/1678,
  50263. bottom: 29/1948
  50264. }
  50265. },
  50266. hand: {
  50267. height: math.unit(0.73, "inches"),
  50268. name: "Hand",
  50269. image: {
  50270. source: "./media/characters/mallory/hand.svg"
  50271. }
  50272. },
  50273. paw: {
  50274. height: math.unit(0.68, "inches"),
  50275. name: "Paw",
  50276. image: {
  50277. source: "./media/characters/mallory/paw.svg"
  50278. }
  50279. },
  50280. },
  50281. [
  50282. {
  50283. name: "Small",
  50284. height: math.unit(5, "inches"),
  50285. default: true
  50286. },
  50287. ]
  50288. ))
  50289. characterMakers.push(() => makeCharacter(
  50290. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50291. {
  50292. naked: {
  50293. height: math.unit(6, "feet"),
  50294. name: "Naked",
  50295. image: {
  50296. source: "./media/characters/mab/naked.svg",
  50297. extra: 1855/1757,
  50298. bottom: 208/2063
  50299. }
  50300. },
  50301. outside: {
  50302. height: math.unit(6, "feet"),
  50303. name: "Outside",
  50304. image: {
  50305. source: "./media/characters/mab/outside.svg",
  50306. extra: 1855/1757,
  50307. bottom: 208/2063
  50308. }
  50309. },
  50310. party: {
  50311. height: math.unit(6, "feet"),
  50312. name: "Party",
  50313. image: {
  50314. source: "./media/characters/mab/party.svg",
  50315. extra: 1855/1757,
  50316. bottom: 208/2063
  50317. }
  50318. },
  50319. },
  50320. [
  50321. {
  50322. name: "Normal",
  50323. height: math.unit(165, "feet"),
  50324. default: true
  50325. },
  50326. ]
  50327. ))
  50328. characterMakers.push(() => makeCharacter(
  50329. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50330. {
  50331. feral: {
  50332. height: math.unit(12, "feet"),
  50333. weight: math.unit(20000, "lb"),
  50334. name: "Side",
  50335. image: {
  50336. source: "./media/characters/winter/feral.svg",
  50337. extra: 1286/943,
  50338. bottom: 112/1398
  50339. },
  50340. form: "feral",
  50341. default: true
  50342. },
  50343. feralNsfw: {
  50344. height: math.unit(12, "feet"),
  50345. weight: math.unit(20000, "lb"),
  50346. name: "Side (NSFW)",
  50347. image: {
  50348. source: "./media/characters/winter/feral-nsfw.svg",
  50349. extra: 1286/943,
  50350. bottom: 112/1398
  50351. },
  50352. form: "feral"
  50353. },
  50354. dick: {
  50355. height: math.unit(3.79, "feet"),
  50356. name: "Dick",
  50357. image: {
  50358. source: "./media/characters/winter/dick.svg"
  50359. },
  50360. form: "feral"
  50361. },
  50362. anthro: {
  50363. height: math.unit(12, "feet"),
  50364. weight: math.unit(10, "tons"),
  50365. name: "Anthro",
  50366. image: {
  50367. source: "./media/characters/winter/anthro.svg",
  50368. extra: 1701/1553,
  50369. bottom: 64/1765
  50370. },
  50371. form: "anthro",
  50372. default: true
  50373. },
  50374. },
  50375. [
  50376. {
  50377. name: "Big",
  50378. height: math.unit(12, "feet"),
  50379. default: true,
  50380. form: "feral"
  50381. },
  50382. {
  50383. name: "Big",
  50384. height: math.unit(12, "feet"),
  50385. default: true,
  50386. form: "anthro"
  50387. },
  50388. ],
  50389. {
  50390. "feral": {
  50391. name: "Feral",
  50392. default: true
  50393. },
  50394. "anthro": {
  50395. name: "Anthro"
  50396. }
  50397. }
  50398. ))
  50399. characterMakers.push(() => makeCharacter(
  50400. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50401. {
  50402. front: {
  50403. height: math.unit(4.1, "inches"),
  50404. name: "Front",
  50405. image: {
  50406. source: "./media/characters/alto/front.svg",
  50407. extra: 736/627,
  50408. bottom: 90/826
  50409. }
  50410. },
  50411. },
  50412. [
  50413. {
  50414. name: "Normal",
  50415. height: math.unit(4.1, "inches"),
  50416. default: true
  50417. },
  50418. ]
  50419. ))
  50420. characterMakers.push(() => makeCharacter(
  50421. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50422. {
  50423. sitting: {
  50424. height: math.unit(3, "feet"),
  50425. name: "Sitting",
  50426. image: {
  50427. source: "./media/characters/ratstrid-v/sitting.svg",
  50428. extra: 355/310,
  50429. bottom: 136/491
  50430. }
  50431. },
  50432. },
  50433. [
  50434. {
  50435. name: "Normal",
  50436. height: math.unit(3, "feet"),
  50437. default: true
  50438. },
  50439. ]
  50440. ))
  50441. characterMakers.push(() => makeCharacter(
  50442. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50443. {
  50444. back: {
  50445. height: math.unit(6, "feet"),
  50446. weight: math.unit(450, "lb"),
  50447. name: "Back",
  50448. image: {
  50449. source: "./media/characters/siz/back.svg",
  50450. extra: 1449/1274,
  50451. bottom: 13/1462
  50452. }
  50453. },
  50454. },
  50455. [
  50456. {
  50457. name: "Smallest",
  50458. height: math.unit(18 + 3/12, "feet")
  50459. },
  50460. {
  50461. name: "Modest",
  50462. height: math.unit(56 + 8/12, "feet"),
  50463. default: true
  50464. },
  50465. {
  50466. name: "Largest",
  50467. height: math.unit(3590, "feet")
  50468. },
  50469. ]
  50470. ))
  50471. characterMakers.push(() => makeCharacter(
  50472. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50473. {
  50474. front: {
  50475. height: math.unit(5 + 9/12, "feet"),
  50476. weight: math.unit(150, "lb"),
  50477. name: "Front",
  50478. image: {
  50479. source: "./media/characters/ven/front.svg",
  50480. extra: 1372/1320,
  50481. bottom: 73/1445
  50482. }
  50483. },
  50484. side: {
  50485. height: math.unit(5 + 9/12, "feet"),
  50486. weight: math.unit(1150, "lb"),
  50487. name: "Side",
  50488. image: {
  50489. source: "./media/characters/ven/side.svg",
  50490. extra: 1119/1070,
  50491. bottom: 42/1161
  50492. },
  50493. default: true
  50494. },
  50495. },
  50496. [
  50497. {
  50498. name: "Normal",
  50499. height: math.unit(5 + 9/12, "feet"),
  50500. default: true
  50501. },
  50502. ]
  50503. ))
  50504. characterMakers.push(() => makeCharacter(
  50505. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50506. {
  50507. front: {
  50508. height: math.unit(12, "feet"),
  50509. weight: math.unit(1000, "kg"),
  50510. name: "Front",
  50511. image: {
  50512. source: "./media/characters/maple/front.svg",
  50513. extra: 1193/1081,
  50514. bottom: 22/1215
  50515. }
  50516. },
  50517. },
  50518. [
  50519. {
  50520. name: "Compressed",
  50521. height: math.unit(7, "feet")
  50522. },
  50523. {
  50524. name: "Normal",
  50525. height: math.unit(12, "feet"),
  50526. default: true
  50527. },
  50528. ]
  50529. ))
  50530. characterMakers.push(() => makeCharacter(
  50531. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50532. {
  50533. front: {
  50534. height: math.unit(9, "feet"),
  50535. weight: math.unit(1500, "lb"),
  50536. name: "Front",
  50537. image: {
  50538. source: "./media/characters/nora/front.svg",
  50539. extra: 1348/1286,
  50540. bottom: 218/1566
  50541. }
  50542. },
  50543. erect: {
  50544. height: math.unit(9, "feet"),
  50545. weight: math.unit(11500, "lb"),
  50546. name: "Erect",
  50547. image: {
  50548. source: "./media/characters/nora/erect.svg",
  50549. extra: 1488/1433,
  50550. bottom: 133/1621
  50551. }
  50552. },
  50553. },
  50554. [
  50555. {
  50556. name: "Normal",
  50557. height: math.unit(9, "feet"),
  50558. default: true
  50559. },
  50560. ]
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50564. {
  50565. front: {
  50566. height: math.unit(25, "feet"),
  50567. weight: math.unit(27500, "lb"),
  50568. name: "Front",
  50569. image: {
  50570. source: "./media/characters/north-caudin/front.svg",
  50571. extra: 1184/1082,
  50572. bottom: 23/1207
  50573. }
  50574. },
  50575. },
  50576. [
  50577. {
  50578. name: "Compressed",
  50579. height: math.unit(10, "feet")
  50580. },
  50581. {
  50582. name: "Normal",
  50583. height: math.unit(25, "feet"),
  50584. default: true
  50585. },
  50586. ]
  50587. ))
  50588. characterMakers.push(() => makeCharacter(
  50589. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50590. {
  50591. front: {
  50592. height: math.unit(9, "feet"),
  50593. weight: math.unit(1250, "lb"),
  50594. name: "Front",
  50595. image: {
  50596. source: "./media/characters/merrian/front.svg",
  50597. extra: 2393/2304,
  50598. bottom: 40/2433
  50599. }
  50600. },
  50601. },
  50602. [
  50603. {
  50604. name: "Normal",
  50605. height: math.unit(9, "feet"),
  50606. default: true
  50607. },
  50608. ]
  50609. ))
  50610. characterMakers.push(() => makeCharacter(
  50611. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50612. {
  50613. front: {
  50614. height: math.unit(9, "feet"),
  50615. weight: math.unit(1000, "lb"),
  50616. name: "Front",
  50617. image: {
  50618. source: "./media/characters/hazel/front.svg",
  50619. extra: 2351/2298,
  50620. bottom: 38/2389
  50621. }
  50622. },
  50623. },
  50624. [
  50625. {
  50626. name: "Normal",
  50627. height: math.unit(9, "feet"),
  50628. default: true
  50629. },
  50630. ]
  50631. ))
  50632. characterMakers.push(() => makeCharacter(
  50633. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50634. {
  50635. front: {
  50636. height: math.unit(13, "feet"),
  50637. weight: math.unit(3200, "lb"),
  50638. name: "Front",
  50639. image: {
  50640. source: "./media/characters/emma/front.svg",
  50641. extra: 2263/2029,
  50642. bottom: 68/2331
  50643. }
  50644. },
  50645. },
  50646. [
  50647. {
  50648. name: "Normal",
  50649. height: math.unit(13, "feet"),
  50650. default: true
  50651. },
  50652. ]
  50653. ))
  50654. characterMakers.push(() => makeCharacter(
  50655. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50656. {
  50657. front: {
  50658. height: math.unit(11 + 9/12, "feet"),
  50659. weight: math.unit(2500, "lb"),
  50660. name: "Front",
  50661. image: {
  50662. source: "./media/characters/ilumina/front.svg",
  50663. extra: 2248/2209,
  50664. bottom: 164/2412
  50665. }
  50666. },
  50667. },
  50668. [
  50669. {
  50670. name: "Normal",
  50671. height: math.unit(11 + 9/12, "feet"),
  50672. default: true
  50673. },
  50674. ]
  50675. ))
  50676. characterMakers.push(() => makeCharacter(
  50677. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50678. {
  50679. front: {
  50680. height: math.unit(8 + 10/12, "feet"),
  50681. weight: math.unit(1350, "lb"),
  50682. name: "Front",
  50683. image: {
  50684. source: "./media/characters/moonshine/front.svg",
  50685. extra: 2395/2288,
  50686. bottom: 40/2435
  50687. }
  50688. },
  50689. },
  50690. [
  50691. {
  50692. name: "Normal",
  50693. height: math.unit(8 + 10/12, "feet"),
  50694. default: true
  50695. },
  50696. ]
  50697. ))
  50698. characterMakers.push(() => makeCharacter(
  50699. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50700. {
  50701. front: {
  50702. height: math.unit(14, "feet"),
  50703. weight: math.unit(3400, "lb"),
  50704. name: "Front",
  50705. image: {
  50706. source: "./media/characters/aletia/front.svg",
  50707. extra: 1185/1052,
  50708. bottom: 21/1206
  50709. }
  50710. },
  50711. },
  50712. [
  50713. {
  50714. name: "Compressed",
  50715. height: math.unit(8, "feet")
  50716. },
  50717. {
  50718. name: "Normal",
  50719. height: math.unit(14, "feet"),
  50720. default: true
  50721. },
  50722. ]
  50723. ))
  50724. characterMakers.push(() => makeCharacter(
  50725. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50726. {
  50727. front: {
  50728. height: math.unit(17, "feet"),
  50729. weight: math.unit(6500, "lb"),
  50730. name: "Front",
  50731. image: {
  50732. source: "./media/characters/deidra/front.svg",
  50733. extra: 1201/1081,
  50734. bottom: 16/1217
  50735. }
  50736. },
  50737. },
  50738. [
  50739. {
  50740. name: "Compressed",
  50741. height: math.unit(9 + 6/12, "feet")
  50742. },
  50743. {
  50744. name: "Normal",
  50745. height: math.unit(17, "feet"),
  50746. default: true
  50747. },
  50748. ]
  50749. ))
  50750. characterMakers.push(() => makeCharacter(
  50751. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50752. {
  50753. front: {
  50754. height: math.unit(7 + 4/12, "feet"),
  50755. weight: math.unit(280, "lb"),
  50756. name: "Front",
  50757. image: {
  50758. source: "./media/characters/freki-yrmori/front.svg",
  50759. extra: 1286/1182,
  50760. bottom: 29/1315
  50761. }
  50762. },
  50763. maw: {
  50764. height: math.unit(0.9, "feet"),
  50765. name: "Maw",
  50766. image: {
  50767. source: "./media/characters/freki-yrmori/maw.svg"
  50768. }
  50769. },
  50770. },
  50771. [
  50772. {
  50773. name: "Normal",
  50774. height: math.unit(7 + 4/12, "feet"),
  50775. default: true
  50776. },
  50777. {
  50778. name: "Macro",
  50779. height: math.unit(38.5, "meters")
  50780. },
  50781. ]
  50782. ))
  50783. characterMakers.push(() => makeCharacter(
  50784. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50785. {
  50786. side: {
  50787. height: math.unit(47.2, "meters"),
  50788. weight: math.unit(10000, "tons"),
  50789. name: "Side",
  50790. image: {
  50791. source: "./media/characters/aetherios/side.svg",
  50792. extra: 2363/642,
  50793. bottom: 221/2584
  50794. }
  50795. },
  50796. top: {
  50797. height: math.unit(240, "meters"),
  50798. weight: math.unit(10000, "tons"),
  50799. name: "Top",
  50800. image: {
  50801. source: "./media/characters/aetherios/top.svg"
  50802. }
  50803. },
  50804. bottom: {
  50805. height: math.unit(240, "meters"),
  50806. weight: math.unit(10000, "tons"),
  50807. name: "Bottom",
  50808. image: {
  50809. source: "./media/characters/aetherios/bottom.svg"
  50810. }
  50811. },
  50812. head: {
  50813. height: math.unit(38.6, "meters"),
  50814. name: "Head",
  50815. image: {
  50816. source: "./media/characters/aetherios/head.svg",
  50817. extra: 1335/1112,
  50818. bottom: 0/1335
  50819. }
  50820. },
  50821. front: {
  50822. height: math.unit(29, "meters"),
  50823. name: "Front",
  50824. image: {
  50825. source: "./media/characters/aetherios/front.svg",
  50826. extra: 1266/953,
  50827. bottom: 158/1424
  50828. }
  50829. },
  50830. maw: {
  50831. height: math.unit(16.37, "meters"),
  50832. name: "Maw",
  50833. image: {
  50834. source: "./media/characters/aetherios/maw.svg",
  50835. extra: 748/637,
  50836. bottom: 0/748
  50837. },
  50838. extraAttributes: {
  50839. preyCapacity: {
  50840. name: "Capacity",
  50841. power: 3,
  50842. type: "volume",
  50843. base: math.unit(1000, "people")
  50844. },
  50845. tongueSize: {
  50846. name: "Tongue Size",
  50847. power: 2,
  50848. type: "area",
  50849. base: math.unit(21, "m^2")
  50850. }
  50851. }
  50852. },
  50853. forepaw: {
  50854. height: math.unit(18, "meters"),
  50855. name: "Forepaw",
  50856. image: {
  50857. source: "./media/characters/aetherios/forepaw.svg"
  50858. }
  50859. },
  50860. hindpaw: {
  50861. height: math.unit(23, "meters"),
  50862. name: "Hindpaw",
  50863. image: {
  50864. source: "./media/characters/aetherios/hindpaw.svg"
  50865. }
  50866. },
  50867. genitals: {
  50868. height: math.unit(42, "meters"),
  50869. name: "Genitals",
  50870. image: {
  50871. source: "./media/characters/aetherios/genitals.svg"
  50872. }
  50873. },
  50874. },
  50875. [
  50876. {
  50877. name: "Normal",
  50878. height: math.unit(47.2, "meters"),
  50879. default: true
  50880. },
  50881. {
  50882. name: "Macro",
  50883. height: math.unit(160, "meters")
  50884. },
  50885. {
  50886. name: "Mega",
  50887. height: math.unit(1.87, "km")
  50888. },
  50889. {
  50890. name: "Giga",
  50891. height: math.unit(40000, "km")
  50892. },
  50893. {
  50894. name: "Stellar",
  50895. height: math.unit(158000000, "km")
  50896. },
  50897. {
  50898. name: "Cosmic",
  50899. height: math.unit(9.46e12, "km")
  50900. },
  50901. ]
  50902. ))
  50903. characterMakers.push(() => makeCharacter(
  50904. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50905. {
  50906. front: {
  50907. height: math.unit(5 + 4/12, "feet"),
  50908. weight: math.unit(80, "lb"),
  50909. name: "Front",
  50910. image: {
  50911. source: "./media/characters/mizu-gieeg/front.svg",
  50912. extra: 850/709,
  50913. bottom: 52/902
  50914. }
  50915. },
  50916. back: {
  50917. height: math.unit(5 + 4/12, "feet"),
  50918. weight: math.unit(80, "lb"),
  50919. name: "Back",
  50920. image: {
  50921. source: "./media/characters/mizu-gieeg/back.svg",
  50922. extra: 882/745,
  50923. bottom: 25/907
  50924. }
  50925. },
  50926. },
  50927. [
  50928. {
  50929. name: "Normal",
  50930. height: math.unit(5 + 4/12, "feet"),
  50931. default: true
  50932. },
  50933. ]
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50937. {
  50938. front: {
  50939. height: math.unit(6, "feet"),
  50940. name: "Front",
  50941. image: {
  50942. source: "./media/characters/roselle-st-papier/front.svg",
  50943. extra: 1430/1280,
  50944. bottom: 37/1467
  50945. }
  50946. },
  50947. back: {
  50948. height: math.unit(6, "feet"),
  50949. name: "Back",
  50950. image: {
  50951. source: "./media/characters/roselle-st-papier/back.svg",
  50952. extra: 1491/1296,
  50953. bottom: 23/1514
  50954. }
  50955. },
  50956. ear: {
  50957. height: math.unit(1.26, "feet"),
  50958. name: "Ear",
  50959. image: {
  50960. source: "./media/characters/roselle-st-papier/ear.svg"
  50961. }
  50962. },
  50963. },
  50964. [
  50965. {
  50966. name: "Normal",
  50967. height: math.unit(150, "feet"),
  50968. default: true
  50969. },
  50970. ]
  50971. ))
  50972. characterMakers.push(() => makeCharacter(
  50973. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50974. {
  50975. front: {
  50976. height: math.unit(1, "inches"),
  50977. name: "Front",
  50978. image: {
  50979. source: "./media/characters/valargent/front.svg",
  50980. extra: 1825/1694,
  50981. bottom: 62/1887
  50982. }
  50983. },
  50984. back: {
  50985. height: math.unit(1, "inches"),
  50986. name: "Back",
  50987. image: {
  50988. source: "./media/characters/valargent/back.svg",
  50989. extra: 1775/1682,
  50990. bottom: 88/1863
  50991. }
  50992. },
  50993. },
  50994. [
  50995. {
  50996. name: "Micro",
  50997. height: math.unit(1, "inch"),
  50998. default: true
  50999. },
  51000. ]
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51004. {
  51005. front: {
  51006. height: math.unit(3.4, "meters"),
  51007. name: "Front",
  51008. image: {
  51009. source: "./media/characters/zarina/front.svg",
  51010. extra: 1733/1425,
  51011. bottom: 93/1826
  51012. }
  51013. },
  51014. squatting: {
  51015. height: math.unit(2.14, "meters"),
  51016. name: "Squatting",
  51017. image: {
  51018. source: "./media/characters/zarina/squatting.svg",
  51019. extra: 1073/788,
  51020. bottom: 63/1136
  51021. }
  51022. },
  51023. back: {
  51024. height: math.unit(2.14, "meters"),
  51025. name: "Back",
  51026. image: {
  51027. source: "./media/characters/zarina/back.svg",
  51028. extra: 1128/885,
  51029. bottom: 0/1128
  51030. }
  51031. },
  51032. },
  51033. [
  51034. {
  51035. name: "Normal",
  51036. height: math.unit(3.4, "meters"),
  51037. default: true
  51038. },
  51039. {
  51040. name: "Big",
  51041. height: math.unit(5, "meters")
  51042. },
  51043. {
  51044. name: "Macro",
  51045. height: math.unit(110, "meters")
  51046. },
  51047. ]
  51048. ))
  51049. characterMakers.push(() => makeCharacter(
  51050. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51051. {
  51052. front: {
  51053. height: math.unit(7, "feet"),
  51054. name: "Front",
  51055. image: {
  51056. source: "./media/characters/ventus-astro-fox/front.svg",
  51057. extra: 1792/1623,
  51058. bottom: 28/1820
  51059. }
  51060. },
  51061. back: {
  51062. height: math.unit(7, "feet"),
  51063. name: "Back",
  51064. image: {
  51065. source: "./media/characters/ventus-astro-fox/back.svg",
  51066. extra: 1789/1620,
  51067. bottom: 31/1820
  51068. }
  51069. },
  51070. outfit: {
  51071. height: math.unit(7, "feet"),
  51072. name: "Outfit",
  51073. image: {
  51074. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51075. extra: 1054/925,
  51076. bottom: 15/1069
  51077. }
  51078. },
  51079. head: {
  51080. height: math.unit(1.12, "feet"),
  51081. name: "Head",
  51082. image: {
  51083. source: "./media/characters/ventus-astro-fox/head.svg",
  51084. extra: 866/504,
  51085. bottom: 0/866
  51086. }
  51087. },
  51088. hand: {
  51089. height: math.unit(1, "feet"),
  51090. name: "Hand",
  51091. image: {
  51092. source: "./media/characters/ventus-astro-fox/hand.svg"
  51093. }
  51094. },
  51095. paw: {
  51096. height: math.unit(1.5, "feet"),
  51097. name: "Paw",
  51098. image: {
  51099. source: "./media/characters/ventus-astro-fox/paw.svg"
  51100. }
  51101. },
  51102. },
  51103. [
  51104. {
  51105. name: "Normal",
  51106. height: math.unit(7, "feet"),
  51107. default: true
  51108. },
  51109. {
  51110. name: "Macro",
  51111. height: math.unit(200, "feet")
  51112. },
  51113. {
  51114. name: "Cosmic",
  51115. height: math.unit(3, "universes")
  51116. },
  51117. ]
  51118. ))
  51119. characterMakers.push(() => makeCharacter(
  51120. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51121. {
  51122. front: {
  51123. height: math.unit(3, "meters"),
  51124. weight: math.unit(7000, "lb"),
  51125. name: "Front",
  51126. image: {
  51127. source: "./media/characters/core-t/front.svg",
  51128. extra: 5729/4941,
  51129. bottom: 1129/6858
  51130. }
  51131. },
  51132. },
  51133. [
  51134. {
  51135. name: "Big",
  51136. height: math.unit(3, "meters"),
  51137. default: true
  51138. },
  51139. ]
  51140. ))
  51141. characterMakers.push(() => makeCharacter(
  51142. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51143. {
  51144. normal: {
  51145. height: math.unit(6 + 6/12, "feet"),
  51146. weight: math.unit(275, "lb"),
  51147. name: "Front",
  51148. image: {
  51149. source: "./media/characters/cadbunny/normal.svg",
  51150. extra: 1129/947,
  51151. bottom: 93/1222
  51152. },
  51153. default: true,
  51154. form: "normal"
  51155. },
  51156. gigantamax: {
  51157. height: math.unit(26, "feet"),
  51158. weight: math.unit(16000, "lb"),
  51159. name: "Front",
  51160. image: {
  51161. source: "./media/characters/cadbunny/gigantamax.svg",
  51162. extra: 1133/944,
  51163. bottom: 90/1223
  51164. },
  51165. default: true,
  51166. form: "gigantamax"
  51167. },
  51168. },
  51169. [
  51170. {
  51171. name: "Normal",
  51172. height: math.unit(6 + 6/12, "feet"),
  51173. default: true,
  51174. form: "normal"
  51175. },
  51176. {
  51177. name: "Small",
  51178. height: math.unit(26, "feet"),
  51179. default: true,
  51180. form: "gigantamax"
  51181. },
  51182. {
  51183. name: "Large",
  51184. height: math.unit(78, "feet"),
  51185. form: "gigantamax"
  51186. },
  51187. ],
  51188. {
  51189. "normal": {
  51190. name: "Normal",
  51191. default: true
  51192. },
  51193. "gigantamax": {
  51194. name: "Gigantamax"
  51195. }
  51196. }
  51197. ))
  51198. characterMakers.push(() => makeCharacter(
  51199. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51200. {
  51201. anthroFront: {
  51202. height: math.unit(8, "feet"),
  51203. weight: math.unit(300, "lb"),
  51204. name: "Front",
  51205. image: {
  51206. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51207. extra: 1272/1176,
  51208. bottom: 53/1325
  51209. },
  51210. form: "anthro",
  51211. default: true
  51212. },
  51213. feralSide: {
  51214. height: math.unit(4, "feet"),
  51215. weight: math.unit(250, "lb"),
  51216. name: "Side",
  51217. image: {
  51218. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51219. extra: 731/621,
  51220. bottom: 0/731
  51221. },
  51222. form: "feral",
  51223. default: true
  51224. },
  51225. },
  51226. [
  51227. {
  51228. name: "Regular",
  51229. height: math.unit(8, "feet"),
  51230. form: "anthro"
  51231. },
  51232. {
  51233. name: "Macro",
  51234. height: math.unit(250, "feet"),
  51235. form: "anthro",
  51236. default: true
  51237. },
  51238. {
  51239. name: "Regular",
  51240. height: math.unit(4, "feet"),
  51241. form: "feral"
  51242. },
  51243. {
  51244. name: "Macro",
  51245. height: math.unit(125, "feet"),
  51246. form: "feral",
  51247. default: true
  51248. },
  51249. ],
  51250. {
  51251. "anthro": {
  51252. name: "Anthro",
  51253. default: true
  51254. },
  51255. "feral": {
  51256. name: "Feral",
  51257. },
  51258. }
  51259. ))
  51260. characterMakers.push(() => makeCharacter(
  51261. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51262. {
  51263. front: {
  51264. height: math.unit(11 + 10/12, "feet"),
  51265. weight: math.unit(1587, "kg"),
  51266. name: "Front",
  51267. image: {
  51268. source: "./media/characters/maple-javira-dragon/front.svg",
  51269. extra: 1136/744,
  51270. bottom: 73/1209
  51271. }
  51272. },
  51273. side: {
  51274. height: math.unit(11 + 10/12, "feet"),
  51275. weight: math.unit(1587, "kg"),
  51276. name: "Side",
  51277. image: {
  51278. source: "./media/characters/maple-javira-dragon/side.svg",
  51279. extra: 712/505,
  51280. bottom: 17/729
  51281. }
  51282. },
  51283. head: {
  51284. height: math.unit(8.05, "feet"),
  51285. name: "Head",
  51286. image: {
  51287. source: "./media/characters/maple-javira-dragon/head.svg",
  51288. extra: 1420/1344,
  51289. bottom: 0/1420
  51290. }
  51291. },
  51292. },
  51293. [
  51294. {
  51295. name: "Normal",
  51296. height: math.unit(11 + 10/12, "feet"),
  51297. default: true
  51298. },
  51299. ]
  51300. ))
  51301. characterMakers.push(() => makeCharacter(
  51302. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51303. {
  51304. front: {
  51305. height: math.unit(117, "cm"),
  51306. weight: math.unit(50, "kg"),
  51307. name: "Front",
  51308. image: {
  51309. source: "./media/characters/sonia-wyverntail/front.svg",
  51310. extra: 708/592,
  51311. bottom: 25/733
  51312. }
  51313. },
  51314. },
  51315. [
  51316. {
  51317. name: "Normal",
  51318. height: math.unit(117, "cm"),
  51319. default: true
  51320. },
  51321. ]
  51322. ))
  51323. characterMakers.push(() => makeCharacter(
  51324. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51325. {
  51326. front: {
  51327. height: math.unit(6 + 5/12, "feet"),
  51328. name: "Front",
  51329. image: {
  51330. source: "./media/characters/micah/front.svg",
  51331. extra: 1758/1546,
  51332. bottom: 214/1972
  51333. }
  51334. },
  51335. },
  51336. [
  51337. {
  51338. name: "Normal",
  51339. height: math.unit(6 + 5/12, "feet"),
  51340. default: true
  51341. },
  51342. ]
  51343. ))
  51344. characterMakers.push(() => makeCharacter(
  51345. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51346. {
  51347. front: {
  51348. height: math.unit(1.75, "meters"),
  51349. weight: math.unit(100, "kg"),
  51350. name: "Front",
  51351. image: {
  51352. source: "./media/characters/zarya/front.svg",
  51353. extra: 741/735,
  51354. bottom: 44/785
  51355. },
  51356. extraAttributes: {
  51357. "tailLength": {
  51358. name: "Tail Length",
  51359. power: 1,
  51360. type: "length",
  51361. base: math.unit(180, "cm")
  51362. },
  51363. "pawLength": {
  51364. name: "Paw Length",
  51365. power: 1,
  51366. type: "length",
  51367. base: math.unit(31, "cm")
  51368. },
  51369. }
  51370. },
  51371. side: {
  51372. height: math.unit(1.75, "meters"),
  51373. weight: math.unit(100, "kg"),
  51374. name: "Side",
  51375. image: {
  51376. source: "./media/characters/zarya/side.svg",
  51377. extra: 776/770,
  51378. bottom: 17/793
  51379. },
  51380. extraAttributes: {
  51381. "tailLength": {
  51382. name: "Tail Length",
  51383. power: 1,
  51384. type: "length",
  51385. base: math.unit(180, "cm")
  51386. },
  51387. "pawLength": {
  51388. name: "Paw Length",
  51389. power: 1,
  51390. type: "length",
  51391. base: math.unit(31, "cm")
  51392. },
  51393. }
  51394. },
  51395. back: {
  51396. height: math.unit(1.75, "meters"),
  51397. weight: math.unit(100, "kg"),
  51398. name: "Back",
  51399. image: {
  51400. source: "./media/characters/zarya/back.svg",
  51401. extra: 741/735,
  51402. bottom: 44/785
  51403. },
  51404. extraAttributes: {
  51405. "tailLength": {
  51406. name: "Tail Length",
  51407. power: 1,
  51408. type: "length",
  51409. base: math.unit(180, "cm")
  51410. },
  51411. "pawLength": {
  51412. name: "Paw Length",
  51413. power: 1,
  51414. type: "length",
  51415. base: math.unit(31, "cm")
  51416. },
  51417. }
  51418. },
  51419. frontNoTail: {
  51420. height: math.unit(1.75, "meters"),
  51421. weight: math.unit(100, "kg"),
  51422. name: "Front (No Tail)",
  51423. image: {
  51424. source: "./media/characters/zarya/front-no-tail.svg",
  51425. extra: 741/735,
  51426. bottom: 44/785
  51427. },
  51428. extraAttributes: {
  51429. "tailLength": {
  51430. name: "Tail Length",
  51431. power: 1,
  51432. type: "length",
  51433. base: math.unit(180, "cm")
  51434. },
  51435. "pawLength": {
  51436. name: "Paw Length",
  51437. power: 1,
  51438. type: "length",
  51439. base: math.unit(31, "cm")
  51440. },
  51441. }
  51442. },
  51443. dressed: {
  51444. height: math.unit(1.75, "meters"),
  51445. weight: math.unit(100, "kg"),
  51446. name: "Dressed",
  51447. image: {
  51448. source: "./media/characters/zarya/dressed.svg",
  51449. extra: 683/672,
  51450. bottom: 79/762
  51451. },
  51452. extraAttributes: {
  51453. "tailLength": {
  51454. name: "Tail Length",
  51455. power: 1,
  51456. type: "length",
  51457. base: math.unit(180, "cm")
  51458. },
  51459. "pawLength": {
  51460. name: "Paw Length",
  51461. power: 1,
  51462. type: "length",
  51463. base: math.unit(31, "cm")
  51464. },
  51465. }
  51466. },
  51467. },
  51468. [
  51469. {
  51470. name: "Micro",
  51471. height: math.unit(5, "cm")
  51472. },
  51473. {
  51474. name: "Normal",
  51475. height: math.unit(1.75, "meters"),
  51476. default: true
  51477. },
  51478. {
  51479. name: "Macro",
  51480. height: math.unit(122, "meters")
  51481. },
  51482. ]
  51483. ))
  51484. characterMakers.push(() => makeCharacter(
  51485. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51486. {
  51487. front: {
  51488. height: math.unit(7.5, "feet"),
  51489. name: "Front",
  51490. image: {
  51491. source: "./media/characters/sven-hatisson/front.svg",
  51492. extra: 917/857,
  51493. bottom: 42/959
  51494. }
  51495. },
  51496. back: {
  51497. height: math.unit(7.5, "feet"),
  51498. name: "Back",
  51499. image: {
  51500. source: "./media/characters/sven-hatisson/back.svg",
  51501. extra: 903/856,
  51502. bottom: 15/918
  51503. }
  51504. },
  51505. },
  51506. [
  51507. {
  51508. name: "Base Height",
  51509. height: math.unit(7.5, "feet")
  51510. },
  51511. {
  51512. name: "Usual Height",
  51513. height: math.unit(13.5, "feet"),
  51514. default: true
  51515. },
  51516. {
  51517. name: "Smaller Macro",
  51518. height: math.unit(85, "feet")
  51519. },
  51520. {
  51521. name: "Moderate Macro",
  51522. height: math.unit(320, "feet")
  51523. },
  51524. {
  51525. name: "Large Macro",
  51526. height: math.unit(1000, "feet")
  51527. },
  51528. {
  51529. name: "Largest Size",
  51530. height: math.unit(2, "miles")
  51531. },
  51532. ]
  51533. ))
  51534. characterMakers.push(() => makeCharacter(
  51535. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51536. {
  51537. side: {
  51538. height: math.unit(1.8, "meters"),
  51539. weight: math.unit(275, "kg"),
  51540. name: "Side",
  51541. image: {
  51542. source: "./media/characters/terra/side.svg",
  51543. extra: 1273/1147,
  51544. bottom: 0/1273
  51545. }
  51546. },
  51547. },
  51548. [
  51549. {
  51550. name: "Normal",
  51551. height: math.unit(16.2, "meters"),
  51552. default: true
  51553. },
  51554. ]
  51555. ))
  51556. characterMakers.push(() => makeCharacter(
  51557. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51558. {
  51559. borzoiFront: {
  51560. height: math.unit(6 + 9/12, "feet"),
  51561. name: "Front",
  51562. image: {
  51563. source: "./media/characters/rae/borzoi-front.svg",
  51564. extra: 1161/1098,
  51565. bottom: 31/1192
  51566. },
  51567. form: "borzoi",
  51568. default: true
  51569. },
  51570. werewolfFront: {
  51571. height: math.unit(8 + 7/12, "feet"),
  51572. name: "Front",
  51573. image: {
  51574. source: "./media/characters/rae/werewolf-front.svg",
  51575. extra: 1411/1334,
  51576. bottom: 127/1538
  51577. },
  51578. form: "werewolf",
  51579. default: true
  51580. },
  51581. },
  51582. [
  51583. {
  51584. name: "Normal",
  51585. height: math.unit(6 + 9/12, "feet"),
  51586. default: true,
  51587. form: "borzoi"
  51588. },
  51589. {
  51590. name: "Normal",
  51591. height: math.unit(8 + 7/12, "feet"),
  51592. default: true,
  51593. form: "werewolf"
  51594. },
  51595. ],
  51596. {
  51597. "borzoi": {
  51598. name: "Borzoi",
  51599. default: true
  51600. },
  51601. "werewolf": {
  51602. name: "Werewolf",
  51603. },
  51604. }
  51605. ))
  51606. characterMakers.push(() => makeCharacter(
  51607. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51608. {
  51609. front: {
  51610. height: math.unit(8 + 7/12, "feet"),
  51611. weight: math.unit(482, "lb"),
  51612. name: "Front",
  51613. image: {
  51614. source: "./media/characters/kit/front.svg",
  51615. extra: 1247/1103,
  51616. bottom: 41/1288
  51617. }
  51618. },
  51619. back: {
  51620. height: math.unit(8 + 7/12, "feet"),
  51621. weight: math.unit(482, "lb"),
  51622. name: "Back",
  51623. image: {
  51624. source: "./media/characters/kit/back.svg",
  51625. extra: 1252/1123,
  51626. bottom: 21/1273
  51627. }
  51628. },
  51629. paw: {
  51630. height: math.unit(1.46, "feet"),
  51631. name: "Paw",
  51632. image: {
  51633. source: "./media/characters/kit/paw.svg"
  51634. }
  51635. },
  51636. },
  51637. [
  51638. {
  51639. name: "Normal",
  51640. height: math.unit(2.61, "meters"),
  51641. default: true
  51642. },
  51643. {
  51644. name: "\"Tall\"",
  51645. height: math.unit(8.21, "meters")
  51646. },
  51647. {
  51648. name: "Tall",
  51649. height: math.unit(19.6, "meters")
  51650. },
  51651. {
  51652. name: "Very Tall",
  51653. height: math.unit(57.91, "meters")
  51654. },
  51655. {
  51656. name: "Semi-Macro",
  51657. height: math.unit(138.64, "meters")
  51658. },
  51659. {
  51660. name: "Macro",
  51661. height: math.unit(831.99, "meters")
  51662. },
  51663. {
  51664. name: "EX-Macro",
  51665. height: math.unit(96451121, "meters")
  51666. },
  51667. {
  51668. name: "S1-Omnipotent",
  51669. height: math.unit(4.42074e+9, "meters")
  51670. },
  51671. {
  51672. name: "S2-Omnipotent",
  51673. height: math.unit(9.42074e+17, "meters")
  51674. },
  51675. {
  51676. name: "Omnipotent",
  51677. height: math.unit(4.23112e+24, "meters")
  51678. },
  51679. {
  51680. name: "Hypergod",
  51681. height: math.unit(5.05176e+27, "meters")
  51682. },
  51683. {
  51684. name: "Hypergod-EX",
  51685. height: math.unit(9.45532e+49, "meters")
  51686. },
  51687. {
  51688. name: "Hypergod-SP",
  51689. height: math.unit(9.45532e+195, "meters")
  51690. },
  51691. ]
  51692. ))
  51693. characterMakers.push(() => makeCharacter(
  51694. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51695. {
  51696. side: {
  51697. height: math.unit(0.6, "meters"),
  51698. weight: math.unit(24, "kg"),
  51699. name: "Side",
  51700. image: {
  51701. source: "./media/characters/celeste/side.svg",
  51702. extra: 810/517,
  51703. bottom: 53/863
  51704. }
  51705. },
  51706. },
  51707. [
  51708. {
  51709. name: "Velociraptor",
  51710. height: math.unit(0.6, "meters"),
  51711. default: true
  51712. },
  51713. {
  51714. name: "Utahraptor",
  51715. height: math.unit(1.8, "meters")
  51716. },
  51717. {
  51718. name: "Gallimimus",
  51719. height: math.unit(4.0, "meters")
  51720. },
  51721. {
  51722. name: "Large",
  51723. height: math.unit(20, "meters")
  51724. },
  51725. {
  51726. name: "Planetary",
  51727. height: math.unit(50, "megameters")
  51728. },
  51729. {
  51730. name: "Stellar",
  51731. height: math.unit(1.5, "gigameters")
  51732. },
  51733. {
  51734. name: "Galactic",
  51735. height: math.unit(100, "exameters")
  51736. },
  51737. ]
  51738. ))
  51739. characterMakers.push(() => makeCharacter(
  51740. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51741. {
  51742. front: {
  51743. height: math.unit(6, "feet"),
  51744. weight: math.unit(210, "lb"),
  51745. name: "Front",
  51746. image: {
  51747. source: "./media/characters/glacia/front.svg",
  51748. extra: 958/901,
  51749. bottom: 45/1003
  51750. }
  51751. },
  51752. },
  51753. [
  51754. {
  51755. name: "Macro",
  51756. height: math.unit(1000, "meters"),
  51757. default: true
  51758. },
  51759. ]
  51760. ))
  51761. characterMakers.push(() => makeCharacter(
  51762. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51763. {
  51764. front: {
  51765. height: math.unit(4, "meters"),
  51766. name: "Front",
  51767. image: {
  51768. source: "./media/characters/giri/front.svg",
  51769. extra: 966/894,
  51770. bottom: 21/987
  51771. }
  51772. },
  51773. },
  51774. [
  51775. {
  51776. name: "Normal",
  51777. height: math.unit(4, "meters"),
  51778. default: true
  51779. },
  51780. ]
  51781. ))
  51782. characterMakers.push(() => makeCharacter(
  51783. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51784. {
  51785. back: {
  51786. height: math.unit(4, "feet"),
  51787. weight: math.unit(37, "lb"),
  51788. name: "Back",
  51789. image: {
  51790. source: "./media/characters/tin/back.svg",
  51791. extra: 845/780,
  51792. bottom: 28/873
  51793. }
  51794. },
  51795. },
  51796. [
  51797. {
  51798. name: "Normal",
  51799. height: math.unit(4, "feet"),
  51800. default: true
  51801. },
  51802. ]
  51803. ))
  51804. characterMakers.push(() => makeCharacter(
  51805. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51806. {
  51807. front: {
  51808. height: math.unit(25, "feet"),
  51809. name: "Front",
  51810. image: {
  51811. source: "./media/characters/cadenza-vivace/front.svg",
  51812. extra: 1842/1578,
  51813. bottom: 30/1872
  51814. }
  51815. },
  51816. },
  51817. [
  51818. {
  51819. name: "Macro",
  51820. height: math.unit(25, "feet"),
  51821. default: true
  51822. },
  51823. ]
  51824. ))
  51825. characterMakers.push(() => makeCharacter(
  51826. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51827. {
  51828. front: {
  51829. height: math.unit(10, "feet"),
  51830. weight: math.unit(625, "kg"),
  51831. name: "Front",
  51832. image: {
  51833. source: "./media/characters/zain/front.svg",
  51834. extra: 1682/1498,
  51835. bottom: 223/1905
  51836. }
  51837. },
  51838. back: {
  51839. height: math.unit(10, "feet"),
  51840. weight: math.unit(625, "kg"),
  51841. name: "Back",
  51842. image: {
  51843. source: "./media/characters/zain/back.svg",
  51844. extra: 1814/1657,
  51845. bottom: 152/1966
  51846. }
  51847. },
  51848. head: {
  51849. height: math.unit(10, "feet"),
  51850. weight: math.unit(625, "kg"),
  51851. name: "Head",
  51852. image: {
  51853. source: "./media/characters/zain/head.svg",
  51854. extra: 1059/762,
  51855. bottom: 0/1059
  51856. }
  51857. },
  51858. },
  51859. [
  51860. {
  51861. name: "Normal",
  51862. height: math.unit(10, "feet"),
  51863. default: true
  51864. },
  51865. ]
  51866. ))
  51867. characterMakers.push(() => makeCharacter(
  51868. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51869. {
  51870. front: {
  51871. height: math.unit(6 + 5/12, "feet"),
  51872. weight: math.unit(750, "lb"),
  51873. name: "Front",
  51874. image: {
  51875. source: "./media/characters/ruchex/front.svg",
  51876. extra: 877/820,
  51877. bottom: 17/894
  51878. },
  51879. extraAttributes: {
  51880. "width": {
  51881. name: "Width",
  51882. power: 1,
  51883. type: "length",
  51884. base: math.unit(4.757, "feet")
  51885. },
  51886. }
  51887. },
  51888. },
  51889. [
  51890. {
  51891. name: "Normal",
  51892. height: math.unit(6 + 5/12, "feet"),
  51893. default: true
  51894. },
  51895. ]
  51896. ))
  51897. characterMakers.push(() => makeCharacter(
  51898. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51899. {
  51900. dressedFront: {
  51901. height: math.unit(191, "cm"),
  51902. weight: math.unit(80, "kg"),
  51903. name: "Front",
  51904. image: {
  51905. source: "./media/characters/buster/dressed-front.svg",
  51906. extra: 1022/973,
  51907. bottom: 69/1091
  51908. }
  51909. },
  51910. dressedBack: {
  51911. height: math.unit(191, "cm"),
  51912. weight: math.unit(80, "kg"),
  51913. name: "Back",
  51914. image: {
  51915. source: "./media/characters/buster/dressed-back.svg",
  51916. extra: 1018/970,
  51917. bottom: 55/1073
  51918. }
  51919. },
  51920. nudeFront: {
  51921. height: math.unit(191, "cm"),
  51922. weight: math.unit(80, "kg"),
  51923. name: "Front (Nude)",
  51924. image: {
  51925. source: "./media/characters/buster/nude-front.svg",
  51926. extra: 1022/973,
  51927. bottom: 69/1091
  51928. }
  51929. },
  51930. nudeBack: {
  51931. height: math.unit(191, "cm"),
  51932. weight: math.unit(80, "kg"),
  51933. name: "Back (Nude)",
  51934. image: {
  51935. source: "./media/characters/buster/nude-back.svg",
  51936. extra: 1018/970,
  51937. bottom: 55/1073
  51938. }
  51939. },
  51940. dick: {
  51941. height: math.unit(2.59, "feet"),
  51942. name: "Dick",
  51943. image: {
  51944. source: "./media/characters/buster/dick.svg"
  51945. }
  51946. },
  51947. ass: {
  51948. height: math.unit(1.2, "feet"),
  51949. name: "Ass",
  51950. image: {
  51951. source: "./media/characters/buster/ass.svg"
  51952. }
  51953. },
  51954. },
  51955. [
  51956. {
  51957. name: "Normal",
  51958. height: math.unit(191, "cm"),
  51959. default: true
  51960. },
  51961. ]
  51962. ))
  51963. characterMakers.push(() => makeCharacter(
  51964. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51965. {
  51966. side: {
  51967. height: math.unit(8.1, "feet"),
  51968. weight: math.unit(3500, "lb"),
  51969. name: "Side",
  51970. image: {
  51971. source: "./media/characters/sonya/side.svg",
  51972. extra: 1730/1317,
  51973. bottom: 86/1816
  51974. }
  51975. },
  51976. },
  51977. [
  51978. {
  51979. name: "Normal",
  51980. height: math.unit(8.1, "feet"),
  51981. default: true
  51982. },
  51983. ]
  51984. ))
  51985. characterMakers.push(() => makeCharacter(
  51986. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51987. {
  51988. front: {
  51989. height: math.unit(6, "feet"),
  51990. weight: math.unit(150, "lb"),
  51991. name: "Front",
  51992. image: {
  51993. source: "./media/characters/cadence-andrysiak/front.svg",
  51994. extra: 1164/1121,
  51995. bottom: 60/1224
  51996. }
  51997. },
  51998. back: {
  51999. height: math.unit(6, "feet"),
  52000. weight: math.unit(150, "lb"),
  52001. name: "Back",
  52002. image: {
  52003. source: "./media/characters/cadence-andrysiak/back.svg",
  52004. extra: 1200/1165,
  52005. bottom: 9/1209
  52006. }
  52007. },
  52008. dressed: {
  52009. height: math.unit(6, "feet"),
  52010. weight: math.unit(150, "lb"),
  52011. name: "Dressed",
  52012. image: {
  52013. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52014. extra: 1164/1121,
  52015. bottom: 60/1224
  52016. }
  52017. },
  52018. },
  52019. [
  52020. {
  52021. name: "Micro",
  52022. height: math.unit(1, "mm")
  52023. },
  52024. {
  52025. name: "Normal",
  52026. height: math.unit(6, "feet"),
  52027. default: true
  52028. },
  52029. ]
  52030. ))
  52031. characterMakers.push(() => makeCharacter(
  52032. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52033. {
  52034. front: {
  52035. height: math.unit(60, "inches"),
  52036. weight: math.unit(16, "lb"),
  52037. preyCapacity: math.unit(80, "liters"),
  52038. name: "Front",
  52039. image: {
  52040. source: "./media/characters/penny-lynx/front.svg",
  52041. extra: 1959/1769,
  52042. bottom: 49/2008
  52043. }
  52044. },
  52045. },
  52046. [
  52047. {
  52048. name: "Nokia",
  52049. height: math.unit(2, "inches")
  52050. },
  52051. {
  52052. name: "Desktop",
  52053. height: math.unit(24, "inches")
  52054. },
  52055. {
  52056. name: "TV",
  52057. height: math.unit(60, "inches")
  52058. },
  52059. {
  52060. name: "Jumbotron",
  52061. height: math.unit(12, "feet")
  52062. },
  52063. {
  52064. name: "Billboard",
  52065. height: math.unit(48, "feet"),
  52066. default: true
  52067. },
  52068. {
  52069. name: "IMAX",
  52070. height: math.unit(96, "feet")
  52071. },
  52072. {
  52073. name: "SINGULARITY",
  52074. height: math.unit(864938, "miles")
  52075. },
  52076. ]
  52077. ))
  52078. characterMakers.push(() => makeCharacter(
  52079. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52080. {
  52081. front: {
  52082. height: math.unit(5 + 4/12, "feet"),
  52083. weight: math.unit(230, "lb"),
  52084. name: "Front",
  52085. image: {
  52086. source: "./media/characters/sukebe/front.svg",
  52087. extra: 2130/2038,
  52088. bottom: 90/2220
  52089. }
  52090. },
  52091. back: {
  52092. height: math.unit(3.48, "feet"),
  52093. weight: math.unit(230, "lb"),
  52094. name: "Back",
  52095. image: {
  52096. source: "./media/characters/sukebe/back.svg",
  52097. extra: 1670/1604,
  52098. bottom: 0/1670
  52099. }
  52100. },
  52101. },
  52102. [
  52103. {
  52104. name: "Normal",
  52105. height: math.unit(5 + 4/12, "feet"),
  52106. default: true
  52107. },
  52108. ]
  52109. ))
  52110. characterMakers.push(() => makeCharacter(
  52111. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52112. {
  52113. front: {
  52114. height: math.unit(6, "feet"),
  52115. name: "Front",
  52116. image: {
  52117. source: "./media/characters/nylla/front.svg",
  52118. extra: 1868/1699,
  52119. bottom: 97/1965
  52120. }
  52121. },
  52122. back: {
  52123. height: math.unit(6, "feet"),
  52124. name: "Back",
  52125. image: {
  52126. source: "./media/characters/nylla/back.svg",
  52127. extra: 1889/1712,
  52128. bottom: 93/1982
  52129. }
  52130. },
  52131. frontNsfw: {
  52132. height: math.unit(6, "feet"),
  52133. name: "Front (NSFW)",
  52134. image: {
  52135. source: "./media/characters/nylla/front-nsfw.svg",
  52136. extra: 1868/1699,
  52137. bottom: 97/1965
  52138. },
  52139. extraAttributes: {
  52140. "dickLength": {
  52141. name: "Dick Length",
  52142. power: 1,
  52143. type: "length",
  52144. base: math.unit(1.4, "feet")
  52145. },
  52146. "cumVolume": {
  52147. name: "Cum Volume",
  52148. power: 3,
  52149. type: "volume",
  52150. base: math.unit(100, "mL")
  52151. },
  52152. }
  52153. },
  52154. backNsfw: {
  52155. height: math.unit(6, "feet"),
  52156. name: "Back (NSFW)",
  52157. image: {
  52158. source: "./media/characters/nylla/back-nsfw.svg",
  52159. extra: 1889/1712,
  52160. bottom: 93/1982
  52161. }
  52162. },
  52163. maw: {
  52164. height: math.unit(2.10, "feet"),
  52165. name: "Maw",
  52166. image: {
  52167. source: "./media/characters/nylla/maw.svg"
  52168. }
  52169. },
  52170. paws: {
  52171. height: math.unit(2.06, "feet"),
  52172. name: "Paws",
  52173. image: {
  52174. source: "./media/characters/nylla/paws.svg"
  52175. }
  52176. },
  52177. muzzle: {
  52178. height: math.unit(0.61, "feet"),
  52179. name: "Muzzle",
  52180. image: {
  52181. source: "./media/characters/nylla/muzzle.svg"
  52182. }
  52183. },
  52184. sheath: {
  52185. height: math.unit(1.305, "feet"),
  52186. name: "Sheath",
  52187. image: {
  52188. source: "./media/characters/nylla/sheath.svg"
  52189. }
  52190. },
  52191. },
  52192. [
  52193. {
  52194. name: "Micro",
  52195. height: math.unit(7.5, "inches")
  52196. },
  52197. {
  52198. name: "Normal",
  52199. height: math.unit(7, "feet"),
  52200. default: true
  52201. },
  52202. {
  52203. name: "Macro",
  52204. height: math.unit(60, "feet")
  52205. },
  52206. {
  52207. name: "Mega",
  52208. height: math.unit(200, "feet")
  52209. },
  52210. ]
  52211. ))
  52212. characterMakers.push(() => makeCharacter(
  52213. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52214. {
  52215. front: {
  52216. height: math.unit(10, "feet"),
  52217. weight: math.unit(2300, "lb"),
  52218. name: "Front",
  52219. image: {
  52220. source: "./media/characters/hunt3r/front.svg",
  52221. extra: 1909/1742,
  52222. bottom: 46/1955
  52223. }
  52224. },
  52225. },
  52226. [
  52227. {
  52228. name: "Normal",
  52229. height: math.unit(10, "feet"),
  52230. default: true
  52231. },
  52232. ]
  52233. ))
  52234. characterMakers.push(() => makeCharacter(
  52235. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52236. {
  52237. dressed: {
  52238. height: math.unit(11, "feet"),
  52239. weight: math.unit(18500, "lb"),
  52240. preyCapacity: math.unit(9, "people"),
  52241. name: "Dressed",
  52242. image: {
  52243. source: "./media/characters/cylphis/dressed.svg",
  52244. extra: 1028/1003,
  52245. bottom: 75/1103
  52246. },
  52247. },
  52248. undressed: {
  52249. height: math.unit(11, "feet"),
  52250. weight: math.unit(18500, "lb"),
  52251. preyCapacity: math.unit(9, "people"),
  52252. name: "Undressed",
  52253. image: {
  52254. source: "./media/characters/cylphis/undressed.svg",
  52255. extra: 1028/1003,
  52256. bottom: 75/1103
  52257. }
  52258. },
  52259. full: {
  52260. height: math.unit(11, "feet"),
  52261. weight: math.unit(18500 + 150*9, "lb"),
  52262. preyCapacity: math.unit(9, "people"),
  52263. name: "Full",
  52264. image: {
  52265. source: "./media/characters/cylphis/full.svg",
  52266. extra: 1028/1003,
  52267. bottom: 75/1103
  52268. }
  52269. },
  52270. },
  52271. [
  52272. {
  52273. name: "Small",
  52274. height: math.unit(8, "feet")
  52275. },
  52276. {
  52277. name: "Normal",
  52278. height: math.unit(11, "feet"),
  52279. default: true
  52280. },
  52281. ]
  52282. ))
  52283. characterMakers.push(() => makeCharacter(
  52284. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52285. {
  52286. front: {
  52287. height: math.unit(2 + 7/12, "feet"),
  52288. name: "Front",
  52289. image: {
  52290. source: "./media/characters/orishan/front.svg",
  52291. extra: 1058/1023,
  52292. bottom: 23/1081
  52293. }
  52294. },
  52295. back: {
  52296. height: math.unit(2 + 7/12, "feet"),
  52297. name: "Back",
  52298. image: {
  52299. source: "./media/characters/orishan/back.svg",
  52300. extra: 1058/1023,
  52301. bottom: 23/1081
  52302. }
  52303. },
  52304. },
  52305. [
  52306. {
  52307. name: "Micro",
  52308. height: math.unit(2, "cm")
  52309. },
  52310. {
  52311. name: "Normal",
  52312. height: math.unit(2 + 7/12, "feet"),
  52313. default: true
  52314. },
  52315. ]
  52316. ))
  52317. characterMakers.push(() => makeCharacter(
  52318. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52319. {
  52320. front: {
  52321. height: math.unit(3, "meters"),
  52322. weight: math.unit(508, "kg"),
  52323. name: "Front",
  52324. image: {
  52325. source: "./media/characters/seranis/front.svg",
  52326. extra: 1478/1454,
  52327. bottom: 41/1519
  52328. }
  52329. },
  52330. },
  52331. [
  52332. {
  52333. name: "Normal",
  52334. height: math.unit(3, "meters"),
  52335. default: true
  52336. },
  52337. {
  52338. name: "Macro",
  52339. height: math.unit(108, "meters")
  52340. },
  52341. {
  52342. name: "Megamacro",
  52343. height: math.unit(1250, "meters")
  52344. },
  52345. ]
  52346. ))
  52347. characterMakers.push(() => makeCharacter(
  52348. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52349. {
  52350. undressed: {
  52351. height: math.unit(5 + 3/12, "feet"),
  52352. name: "Undressed",
  52353. image: {
  52354. source: "./media/characters/ankou/undressed.svg",
  52355. extra: 1301/1213,
  52356. bottom: 87/1388
  52357. }
  52358. },
  52359. dressed: {
  52360. height: math.unit(5 + 3/12, "feet"),
  52361. name: "Dressed",
  52362. image: {
  52363. source: "./media/characters/ankou/dressed.svg",
  52364. extra: 1301/1213,
  52365. bottom: 87/1388
  52366. }
  52367. },
  52368. head: {
  52369. height: math.unit(1.61, "feet"),
  52370. name: "Head",
  52371. image: {
  52372. source: "./media/characters/ankou/head.svg"
  52373. }
  52374. },
  52375. },
  52376. [
  52377. {
  52378. name: "Normal",
  52379. height: math.unit(5 + 3/12, "feet"),
  52380. default: true
  52381. },
  52382. ]
  52383. ))
  52384. characterMakers.push(() => makeCharacter(
  52385. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52386. {
  52387. side: {
  52388. height: math.unit(6 + 3/12, "feet"),
  52389. weight: math.unit(200, "kg"),
  52390. name: "Side",
  52391. image: {
  52392. source: "./media/characters/juniper-skunktaur/side.svg",
  52393. extra: 1574/1229,
  52394. bottom: 38/1612
  52395. }
  52396. },
  52397. front: {
  52398. height: math.unit(6 + 3/12, "feet"),
  52399. weight: math.unit(200, "kg"),
  52400. name: "Front",
  52401. image: {
  52402. source: "./media/characters/juniper-skunktaur/front.svg",
  52403. extra: 1337/1278,
  52404. bottom: 22/1359
  52405. }
  52406. },
  52407. back: {
  52408. height: math.unit(6 + 3/12, "feet"),
  52409. weight: math.unit(200, "kg"),
  52410. name: "Back",
  52411. image: {
  52412. source: "./media/characters/juniper-skunktaur/back.svg",
  52413. extra: 1618/1273,
  52414. bottom: 13/1631
  52415. }
  52416. },
  52417. top: {
  52418. height: math.unit(2.62, "feet"),
  52419. weight: math.unit(200, "kg"),
  52420. name: "Top",
  52421. image: {
  52422. source: "./media/characters/juniper-skunktaur/top.svg"
  52423. }
  52424. },
  52425. },
  52426. [
  52427. {
  52428. name: "Normal",
  52429. height: math.unit(6 + 3/12, "feet"),
  52430. default: true
  52431. },
  52432. ]
  52433. ))
  52434. characterMakers.push(() => makeCharacter(
  52435. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52436. {
  52437. front: {
  52438. height: math.unit(20.5, "feet"),
  52439. name: "Front",
  52440. image: {
  52441. source: "./media/characters/rei/front.svg",
  52442. extra: 1349/1195,
  52443. bottom: 31/1380
  52444. }
  52445. },
  52446. back: {
  52447. height: math.unit(20.5, "feet"),
  52448. name: "Back",
  52449. image: {
  52450. source: "./media/characters/rei/back.svg",
  52451. extra: 1358/1204,
  52452. bottom: 22/1380
  52453. }
  52454. },
  52455. pawsDigi: {
  52456. height: math.unit(3.45, "feet"),
  52457. name: "Paws (Digi)",
  52458. image: {
  52459. source: "./media/characters/rei/paws-digi.svg"
  52460. }
  52461. },
  52462. pawsPlanti: {
  52463. height: math.unit(3.45, "feet"),
  52464. name: "Paws (Planti)",
  52465. image: {
  52466. source: "./media/characters/rei/paws-planti.svg"
  52467. }
  52468. },
  52469. },
  52470. [
  52471. {
  52472. name: "Normal",
  52473. height: math.unit(20.5, "feet"),
  52474. default: true
  52475. },
  52476. ]
  52477. ))
  52478. characterMakers.push(() => makeCharacter(
  52479. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52480. {
  52481. front: {
  52482. height: math.unit(5 + 11/12, "feet"),
  52483. name: "Front",
  52484. image: {
  52485. source: "./media/characters/carina/front.svg",
  52486. extra: 1720/1449,
  52487. bottom: 14/1734
  52488. }
  52489. },
  52490. back: {
  52491. height: math.unit(5 + 11/12, "feet"),
  52492. name: "Back",
  52493. image: {
  52494. source: "./media/characters/carina/back.svg",
  52495. extra: 1493/1445,
  52496. bottom: 17/1510
  52497. }
  52498. },
  52499. paw: {
  52500. height: math.unit(0.92, "feet"),
  52501. name: "Paw",
  52502. image: {
  52503. source: "./media/characters/carina/paw.svg"
  52504. }
  52505. },
  52506. },
  52507. [
  52508. {
  52509. name: "Normal",
  52510. height: math.unit(5 + 11/12, "feet"),
  52511. default: true
  52512. },
  52513. ]
  52514. ))
  52515. characterMakers.push(() => makeCharacter(
  52516. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52517. {
  52518. front: {
  52519. height: math.unit(4.88, "meters"),
  52520. name: "Front",
  52521. image: {
  52522. source: "./media/characters/maya/front.svg",
  52523. extra: 1222/1145,
  52524. bottom: 57/1279
  52525. }
  52526. },
  52527. },
  52528. [
  52529. {
  52530. name: "Normal",
  52531. height: math.unit(4.88, "meters"),
  52532. default: true
  52533. },
  52534. {
  52535. name: "Macro",
  52536. height: math.unit(38.1, "meters")
  52537. },
  52538. {
  52539. name: "Macro+",
  52540. height: math.unit(152.4, "meters")
  52541. },
  52542. {
  52543. name: "Macro++",
  52544. height: math.unit(16.09, "km")
  52545. },
  52546. {
  52547. name: "Mega-macro",
  52548. height: math.unit(700, "megameters")
  52549. },
  52550. ]
  52551. ))
  52552. characterMakers.push(() => makeCharacter(
  52553. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52554. {
  52555. front: {
  52556. height: math.unit(6 + 2/12, "feet"),
  52557. weight: math.unit(500, "lb"),
  52558. preyCapacity: math.unit(4, "people"),
  52559. name: "Front",
  52560. image: {
  52561. source: "./media/characters/yepir/front.svg"
  52562. }
  52563. },
  52564. side: {
  52565. height: math.unit(6 + 2/12, "feet"),
  52566. weight: math.unit(500, "lb"),
  52567. preyCapacity: math.unit(4, "people"),
  52568. name: "Side",
  52569. image: {
  52570. source: "./media/characters/yepir/side.svg"
  52571. }
  52572. },
  52573. paw: {
  52574. height: math.unit(1.05, "feet"),
  52575. name: "Paw",
  52576. image: {
  52577. source: "./media/characters/yepir/paw.svg"
  52578. }
  52579. },
  52580. },
  52581. [
  52582. {
  52583. name: "Normal",
  52584. height: math.unit(6 + 2/12, "feet"),
  52585. default: true
  52586. },
  52587. ]
  52588. ))
  52589. characterMakers.push(() => makeCharacter(
  52590. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52591. {
  52592. front: {
  52593. height: math.unit(5 + 4/12, "feet"),
  52594. name: "Front",
  52595. image: {
  52596. source: "./media/characters/russec/front.svg",
  52597. extra: 1926/1626,
  52598. bottom: 72/1998
  52599. }
  52600. },
  52601. back: {
  52602. height: math.unit(5 + 4/12, "feet"),
  52603. name: "Back",
  52604. image: {
  52605. source: "./media/characters/russec/back.svg",
  52606. extra: 1910/1591,
  52607. bottom: 48/1958
  52608. }
  52609. },
  52610. },
  52611. [
  52612. {
  52613. name: "Small",
  52614. height: math.unit(5 + 4/12, "feet")
  52615. },
  52616. {
  52617. name: "Normal",
  52618. height: math.unit(72, "feet"),
  52619. default: true
  52620. },
  52621. ]
  52622. ))
  52623. characterMakers.push(() => makeCharacter(
  52624. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52625. {
  52626. side: {
  52627. height: math.unit(12, "feet"),
  52628. name: "Side",
  52629. image: {
  52630. source: "./media/characters/cianus/side.svg",
  52631. extra: 808/526,
  52632. bottom: 61/869
  52633. }
  52634. },
  52635. },
  52636. [
  52637. {
  52638. name: "Normal",
  52639. height: math.unit(12, "feet"),
  52640. default: true
  52641. },
  52642. ]
  52643. ))
  52644. characterMakers.push(() => makeCharacter(
  52645. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52646. {
  52647. front: {
  52648. height: math.unit(9 + 6/12, "feet"),
  52649. weight: math.unit(300, "lb"),
  52650. name: "Front",
  52651. image: {
  52652. source: "./media/characters/ahab/front.svg",
  52653. extra: 1897/1868,
  52654. bottom: 121/2018
  52655. }
  52656. },
  52657. frontNsfw: {
  52658. height: math.unit(9 + 6/12, "feet"),
  52659. weight: math.unit(300, "lb"),
  52660. name: "Front-nsfw",
  52661. image: {
  52662. source: "./media/characters/ahab/front-nsfw.svg",
  52663. extra: 1897/1868,
  52664. bottom: 121/2018
  52665. }
  52666. },
  52667. },
  52668. [
  52669. {
  52670. name: "Normal",
  52671. height: math.unit(9 + 6/12, "feet")
  52672. },
  52673. {
  52674. name: "Macro",
  52675. height: math.unit(657, "feet"),
  52676. default: true
  52677. },
  52678. ]
  52679. ))
  52680. characterMakers.push(() => makeCharacter(
  52681. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52682. {
  52683. front: {
  52684. height: math.unit(2.69, "meters"),
  52685. weight: math.unit(132, "kg"),
  52686. name: "Front",
  52687. image: {
  52688. source: "./media/characters/aarkus/front.svg",
  52689. extra: 1400/1231,
  52690. bottom: 34/1434
  52691. }
  52692. },
  52693. back: {
  52694. height: math.unit(2.69, "meters"),
  52695. weight: math.unit(132, "kg"),
  52696. name: "Back",
  52697. image: {
  52698. source: "./media/characters/aarkus/back.svg",
  52699. extra: 1381/1218,
  52700. bottom: 30/1411
  52701. }
  52702. },
  52703. frontNsfw: {
  52704. height: math.unit(2.69, "meters"),
  52705. weight: math.unit(132, "kg"),
  52706. name: "Front (NSFW)",
  52707. image: {
  52708. source: "./media/characters/aarkus/front-nsfw.svg",
  52709. extra: 1400/1231,
  52710. bottom: 34/1434
  52711. }
  52712. },
  52713. foot: {
  52714. height: math.unit(1.45, "feet"),
  52715. name: "Foot",
  52716. image: {
  52717. source: "./media/characters/aarkus/foot.svg"
  52718. }
  52719. },
  52720. head: {
  52721. height: math.unit(2.85, "feet"),
  52722. name: "Head",
  52723. image: {
  52724. source: "./media/characters/aarkus/head.svg"
  52725. }
  52726. },
  52727. headAlt: {
  52728. height: math.unit(3.07, "feet"),
  52729. name: "Head (Alt)",
  52730. image: {
  52731. source: "./media/characters/aarkus/head-alt.svg"
  52732. }
  52733. },
  52734. mouth: {
  52735. height: math.unit(1.25, "feet"),
  52736. name: "Mouth",
  52737. image: {
  52738. source: "./media/characters/aarkus/mouth.svg"
  52739. }
  52740. },
  52741. dick: {
  52742. height: math.unit(1.77, "feet"),
  52743. name: "Dick",
  52744. image: {
  52745. source: "./media/characters/aarkus/dick.svg"
  52746. }
  52747. },
  52748. },
  52749. [
  52750. {
  52751. name: "Normal",
  52752. height: math.unit(2.69, "meters"),
  52753. default: true
  52754. },
  52755. {
  52756. name: "Macro",
  52757. height: math.unit(269, "meters")
  52758. },
  52759. {
  52760. name: "Macro+",
  52761. height: math.unit(672.5, "meters")
  52762. },
  52763. {
  52764. name: "Megamacro",
  52765. height: math.unit(2.017, "km")
  52766. },
  52767. ]
  52768. ))
  52769. characterMakers.push(() => makeCharacter(
  52770. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52771. {
  52772. front: {
  52773. height: math.unit(23.47, "cm"),
  52774. weight: math.unit(600, "grams"),
  52775. name: "Front",
  52776. image: {
  52777. source: "./media/characters/diode/front.svg",
  52778. extra: 1778/1396,
  52779. bottom: 95/1873
  52780. }
  52781. },
  52782. side: {
  52783. height: math.unit(23.47, "cm"),
  52784. weight: math.unit(600, "grams"),
  52785. name: "Side",
  52786. image: {
  52787. source: "./media/characters/diode/side.svg",
  52788. extra: 1831/1404,
  52789. bottom: 86/1917
  52790. }
  52791. },
  52792. wings: {
  52793. height: math.unit(0.683, "feet"),
  52794. name: "Wings",
  52795. image: {
  52796. source: "./media/characters/diode/wings.svg"
  52797. }
  52798. },
  52799. },
  52800. [
  52801. {
  52802. name: "Normal",
  52803. height: math.unit(23.47, "cm"),
  52804. default: true
  52805. },
  52806. ]
  52807. ))
  52808. characterMakers.push(() => makeCharacter(
  52809. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52810. {
  52811. front: {
  52812. height: math.unit(6 + 3/12, "feet"),
  52813. weight: math.unit(250, "lb"),
  52814. name: "Front",
  52815. image: {
  52816. source: "./media/characters/reika/front.svg",
  52817. extra: 1120/1078,
  52818. bottom: 86/1206
  52819. }
  52820. },
  52821. },
  52822. [
  52823. {
  52824. name: "Normal",
  52825. height: math.unit(6 + 3/12, "feet"),
  52826. default: true
  52827. },
  52828. ]
  52829. ))
  52830. characterMakers.push(() => makeCharacter(
  52831. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52832. {
  52833. front: {
  52834. height: math.unit(16 + 8/12, "feet"),
  52835. weight: math.unit(9000, "lb"),
  52836. name: "Front",
  52837. image: {
  52838. source: "./media/characters/lokuto-takama/front.svg",
  52839. extra: 1774/1632,
  52840. bottom: 147/1921
  52841. },
  52842. extraAttributes: {
  52843. "bustWidth": {
  52844. name: "Bust Width",
  52845. power: 1,
  52846. type: "length",
  52847. base: math.unit(2.4, "meters")
  52848. },
  52849. "breastWeight": {
  52850. name: "Breast Weight",
  52851. power: 3,
  52852. type: "mass",
  52853. base: math.unit(1000, "kg")
  52854. },
  52855. }
  52856. },
  52857. },
  52858. [
  52859. {
  52860. name: "Normal",
  52861. height: math.unit(16 + 8/12, "feet"),
  52862. default: true
  52863. },
  52864. ]
  52865. ))
  52866. characterMakers.push(() => makeCharacter(
  52867. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52868. {
  52869. front: {
  52870. height: math.unit(10, "cm"),
  52871. weight: math.unit(850, "grams"),
  52872. name: "Front",
  52873. image: {
  52874. source: "./media/characters/owak-bone/front.svg",
  52875. extra: 1965/1801,
  52876. bottom: 31/1996
  52877. }
  52878. },
  52879. },
  52880. [
  52881. {
  52882. name: "Normal",
  52883. height: math.unit(10, "cm"),
  52884. default: true
  52885. },
  52886. ]
  52887. ))
  52888. characterMakers.push(() => makeCharacter(
  52889. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52890. {
  52891. front: {
  52892. height: math.unit(2 + 6/12, "feet"),
  52893. weight: math.unit(9, "lb"),
  52894. name: "Front",
  52895. image: {
  52896. source: "./media/characters/muffin/front.svg",
  52897. extra: 1220/1195,
  52898. bottom: 84/1304
  52899. }
  52900. },
  52901. },
  52902. [
  52903. {
  52904. name: "Normal",
  52905. height: math.unit(2 + 6/12, "feet"),
  52906. default: true
  52907. },
  52908. ]
  52909. ))
  52910. characterMakers.push(() => makeCharacter(
  52911. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52912. {
  52913. front: {
  52914. height: math.unit(7, "feet"),
  52915. name: "Front",
  52916. image: {
  52917. source: "./media/characters/chimera/front.svg",
  52918. extra: 1752/1614,
  52919. bottom: 68/1820
  52920. }
  52921. },
  52922. },
  52923. [
  52924. {
  52925. name: "Normal",
  52926. height: math.unit(7, "feet")
  52927. },
  52928. {
  52929. name: "Gigamacro",
  52930. height: math.unit(2.9, "gigameters"),
  52931. default: true
  52932. },
  52933. {
  52934. name: "Universal",
  52935. height: math.unit(1.56e26, "yottameters")
  52936. },
  52937. ]
  52938. ))
  52939. characterMakers.push(() => makeCharacter(
  52940. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52941. {
  52942. front: {
  52943. height: math.unit(3, "feet"),
  52944. weight: math.unit(20, "lb"),
  52945. name: "Front",
  52946. image: {
  52947. source: "./media/characters/kit-fennec-fox/front.svg",
  52948. extra: 1027/932,
  52949. bottom: 16/1043
  52950. }
  52951. },
  52952. back: {
  52953. height: math.unit(3, "feet"),
  52954. weight: math.unit(20, "lb"),
  52955. name: "Back",
  52956. image: {
  52957. source: "./media/characters/kit-fennec-fox/back.svg",
  52958. extra: 1027/932,
  52959. bottom: 16/1043
  52960. }
  52961. },
  52962. },
  52963. [
  52964. {
  52965. name: "Normal",
  52966. height: math.unit(3, "feet"),
  52967. default: true
  52968. },
  52969. ]
  52970. ))
  52971. characterMakers.push(() => makeCharacter(
  52972. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52973. {
  52974. front: {
  52975. height: math.unit(167, "cm"),
  52976. name: "Front",
  52977. image: {
  52978. source: "./media/characters/blue-otter/front.svg",
  52979. extra: 1951/1920,
  52980. bottom: 31/1982
  52981. }
  52982. },
  52983. },
  52984. [
  52985. {
  52986. name: "Otter-Sized",
  52987. height: math.unit(100, "cm")
  52988. },
  52989. {
  52990. name: "Normal",
  52991. height: math.unit(167, "cm"),
  52992. default: true
  52993. },
  52994. ]
  52995. ))
  52996. characterMakers.push(() => makeCharacter(
  52997. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52998. {
  52999. front: {
  53000. height: math.unit(4 + 4/12, "feet"),
  53001. name: "Front",
  53002. image: {
  53003. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53004. extra: 1072/1067,
  53005. bottom: 117/1189
  53006. }
  53007. },
  53008. back: {
  53009. height: math.unit(4 + 4/12, "feet"),
  53010. name: "Back",
  53011. image: {
  53012. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53013. extra: 1135/1129,
  53014. bottom: 57/1192
  53015. }
  53016. },
  53017. head: {
  53018. height: math.unit(1.77, "feet"),
  53019. name: "Head",
  53020. image: {
  53021. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53022. }
  53023. },
  53024. },
  53025. [
  53026. {
  53027. name: "Normal",
  53028. height: math.unit(4 + 4/12, "feet"),
  53029. default: true
  53030. },
  53031. ]
  53032. ))
  53033. characterMakers.push(() => makeCharacter(
  53034. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53035. {
  53036. front: {
  53037. height: math.unit(2, "inches"),
  53038. name: "Front",
  53039. image: {
  53040. source: "./media/characters/carley-hartford/front.svg",
  53041. extra: 1035/988,
  53042. bottom: 23/1058
  53043. }
  53044. },
  53045. back: {
  53046. height: math.unit(2, "inches"),
  53047. name: "Back",
  53048. image: {
  53049. source: "./media/characters/carley-hartford/back.svg",
  53050. extra: 1035/988,
  53051. bottom: 23/1058
  53052. }
  53053. },
  53054. dressed: {
  53055. height: math.unit(2, "inches"),
  53056. name: "Dressed",
  53057. image: {
  53058. source: "./media/characters/carley-hartford/dressed.svg",
  53059. extra: 651/620,
  53060. bottom: 0/651
  53061. }
  53062. },
  53063. },
  53064. [
  53065. {
  53066. name: "Micro",
  53067. height: math.unit(2, "inches"),
  53068. default: true
  53069. },
  53070. {
  53071. name: "Macro",
  53072. height: math.unit(6 + 3/12, "feet")
  53073. },
  53074. ]
  53075. ))
  53076. characterMakers.push(() => makeCharacter(
  53077. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53078. {
  53079. front: {
  53080. height: math.unit(2 + 3/12, "feet"),
  53081. weight: math.unit(15 + 7/16, "lb"),
  53082. name: "Front",
  53083. image: {
  53084. source: "./media/characters/duke/front.svg",
  53085. extra: 910/815,
  53086. bottom: 30/940
  53087. }
  53088. },
  53089. },
  53090. [
  53091. {
  53092. name: "Normal",
  53093. height: math.unit(2 + 3/12, "feet"),
  53094. default: true
  53095. },
  53096. ]
  53097. ))
  53098. characterMakers.push(() => makeCharacter(
  53099. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53100. {
  53101. front: {
  53102. height: math.unit(5 + 4/12, "feet"),
  53103. weight: math.unit(156, "lb"),
  53104. name: "Front",
  53105. image: {
  53106. source: "./media/characters/dein/front.svg",
  53107. extra: 855/815,
  53108. bottom: 48/903
  53109. }
  53110. },
  53111. side: {
  53112. height: math.unit(5 + 4/12, "feet"),
  53113. weight: math.unit(156, "lb"),
  53114. name: "side",
  53115. image: {
  53116. source: "./media/characters/dein/side.svg",
  53117. extra: 846/803,
  53118. bottom: 25/871
  53119. }
  53120. },
  53121. maw: {
  53122. height: math.unit(1.45, "feet"),
  53123. name: "Maw",
  53124. image: {
  53125. source: "./media/characters/dein/maw.svg"
  53126. }
  53127. },
  53128. },
  53129. [
  53130. {
  53131. name: "Ferret Sized",
  53132. height: math.unit(2 + 5/12, "feet")
  53133. },
  53134. {
  53135. name: "Normal",
  53136. height: math.unit(5 + 4/12, "feet"),
  53137. default: true
  53138. },
  53139. ]
  53140. ))
  53141. characterMakers.push(() => makeCharacter(
  53142. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53143. {
  53144. front: {
  53145. height: math.unit(84 + 8/12, "feet"),
  53146. weight: math.unit(942180, "lb"),
  53147. name: "Front",
  53148. image: {
  53149. source: "./media/characters/daurine-arima/front.svg",
  53150. extra: 1989/1782,
  53151. bottom: 37/2026
  53152. }
  53153. },
  53154. side: {
  53155. height: math.unit(84 + 8/12, "feet"),
  53156. weight: math.unit(942180, "lb"),
  53157. name: "Side",
  53158. image: {
  53159. source: "./media/characters/daurine-arima/side.svg",
  53160. extra: 1997/1790,
  53161. bottom: 21/2018
  53162. }
  53163. },
  53164. back: {
  53165. height: math.unit(84 + 8/12, "feet"),
  53166. weight: math.unit(942180, "lb"),
  53167. name: "Back",
  53168. image: {
  53169. source: "./media/characters/daurine-arima/back.svg",
  53170. extra: 1992/1800,
  53171. bottom: 12/2004
  53172. }
  53173. },
  53174. head: {
  53175. height: math.unit(15.5, "feet"),
  53176. name: "Head",
  53177. image: {
  53178. source: "./media/characters/daurine-arima/head.svg"
  53179. }
  53180. },
  53181. headAlt: {
  53182. height: math.unit(19.19, "feet"),
  53183. name: "Head (Alt)",
  53184. image: {
  53185. source: "./media/characters/daurine-arima/head-alt.svg"
  53186. }
  53187. },
  53188. },
  53189. [
  53190. {
  53191. name: "Minimum height",
  53192. height: math.unit(8 + 10/12, "feet")
  53193. },
  53194. {
  53195. name: "Comfort height",
  53196. height: math.unit(19 + 6 /12, "feet")
  53197. },
  53198. {
  53199. name: "\"Normal\" height",
  53200. height: math.unit(28 + 10/12, "feet")
  53201. },
  53202. {
  53203. name: "Base height",
  53204. height: math.unit(84 + 8/12, "feet"),
  53205. default: true
  53206. },
  53207. {
  53208. name: "Mini-macro",
  53209. height: math.unit(2360, "feet")
  53210. },
  53211. {
  53212. name: "Macro",
  53213. height: math.unit(10, "miles")
  53214. },
  53215. {
  53216. name: "Goddess",
  53217. height: math.unit(9.99e40, "yottameters")
  53218. },
  53219. ]
  53220. ))
  53221. characterMakers.push(() => makeCharacter(
  53222. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53223. {
  53224. front: {
  53225. height: math.unit(2.3, "meters"),
  53226. name: "Front",
  53227. image: {
  53228. source: "./media/characters/cilenomon/front.svg",
  53229. extra: 1963/1778,
  53230. bottom: 54/2017
  53231. }
  53232. },
  53233. },
  53234. [
  53235. {
  53236. name: "Normal",
  53237. height: math.unit(2.3, "meters"),
  53238. default: true
  53239. },
  53240. {
  53241. name: "Big",
  53242. height: math.unit(5, "meters")
  53243. },
  53244. {
  53245. name: "Macro",
  53246. height: math.unit(30, "meters")
  53247. },
  53248. {
  53249. name: "True",
  53250. height: math.unit(1, "universe")
  53251. },
  53252. ]
  53253. ))
  53254. characterMakers.push(() => makeCharacter(
  53255. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53256. {
  53257. front: {
  53258. height: math.unit(5, "feet"),
  53259. name: "Front",
  53260. image: {
  53261. source: "./media/characters/sen-mink/front.svg",
  53262. extra: 1727/1675,
  53263. bottom: 35/1762
  53264. }
  53265. },
  53266. },
  53267. [
  53268. {
  53269. name: "Normal",
  53270. height: math.unit(5, "feet"),
  53271. default: true
  53272. },
  53273. ]
  53274. ))
  53275. characterMakers.push(() => makeCharacter(
  53276. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53277. {
  53278. front: {
  53279. height: math.unit(5.42999, "feet"),
  53280. weight: math.unit(100, "lb"),
  53281. name: "Front",
  53282. image: {
  53283. source: "./media/characters/ophois/front.svg",
  53284. extra: 1429/1286,
  53285. bottom: 60/1489
  53286. }
  53287. },
  53288. },
  53289. [
  53290. {
  53291. name: "Normal",
  53292. height: math.unit(5.42999, "feet"),
  53293. default: true
  53294. },
  53295. ]
  53296. ))
  53297. characterMakers.push(() => makeCharacter(
  53298. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53299. {
  53300. front: {
  53301. height: math.unit(2, "meters"),
  53302. name: "Front",
  53303. image: {
  53304. source: "./media/characters/riley/front.svg",
  53305. extra: 1779/1754,
  53306. bottom: 139/1918
  53307. }
  53308. },
  53309. },
  53310. [
  53311. {
  53312. name: "Normal",
  53313. height: math.unit(2, "meters"),
  53314. default: true
  53315. },
  53316. ]
  53317. ))
  53318. characterMakers.push(() => makeCharacter(
  53319. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53320. {
  53321. front: {
  53322. height: math.unit(6 + 2/12, "feet"),
  53323. weight: math.unit(195, "lb"),
  53324. preyCapacity: math.unit(6, "people"),
  53325. name: "Front",
  53326. image: {
  53327. source: "./media/characters/shuken-flash/front.svg",
  53328. extra: 1905/1739,
  53329. bottom: 65/1970
  53330. }
  53331. },
  53332. back: {
  53333. height: math.unit(6 + 2/12, "feet"),
  53334. weight: math.unit(195, "lb"),
  53335. preyCapacity: math.unit(6, "people"),
  53336. name: "Back",
  53337. image: {
  53338. source: "./media/characters/shuken-flash/back.svg",
  53339. extra: 1912/1751,
  53340. bottom: 13/1925
  53341. }
  53342. },
  53343. },
  53344. [
  53345. {
  53346. name: "Normal",
  53347. height: math.unit(6 + 2/12, "feet"),
  53348. default: true
  53349. },
  53350. ]
  53351. ))
  53352. characterMakers.push(() => makeCharacter(
  53353. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53354. {
  53355. front: {
  53356. height: math.unit(5 + 9/12, "feet"),
  53357. weight: math.unit(150, "lb"),
  53358. name: "Front",
  53359. image: {
  53360. source: "./media/characters/plat/front.svg",
  53361. extra: 1816/1703,
  53362. bottom: 43/1859
  53363. }
  53364. },
  53365. side: {
  53366. height: math.unit(5 + 9/12, "feet"),
  53367. weight: math.unit(300, "lb"),
  53368. name: "Side",
  53369. image: {
  53370. source: "./media/characters/plat/side.svg",
  53371. extra: 1824/1699,
  53372. bottom: 18/1842
  53373. }
  53374. },
  53375. },
  53376. [
  53377. {
  53378. name: "Normal",
  53379. height: math.unit(5 + 9/12, "feet"),
  53380. default: true
  53381. },
  53382. ]
  53383. ))
  53384. characterMakers.push(() => makeCharacter(
  53385. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53386. {
  53387. front: {
  53388. height: math.unit(9, "feet"),
  53389. weight: math.unit(1800, "lb"),
  53390. name: "Front",
  53391. image: {
  53392. source: "./media/characters/elaine/front.svg",
  53393. extra: 1833/1354,
  53394. bottom: 25/1858
  53395. }
  53396. },
  53397. back: {
  53398. height: math.unit(8.8, "feet"),
  53399. weight: math.unit(1800, "lb"),
  53400. name: "Back",
  53401. image: {
  53402. source: "./media/characters/elaine/back.svg",
  53403. extra: 1641/1233,
  53404. bottom: 53/1694
  53405. }
  53406. },
  53407. },
  53408. [
  53409. {
  53410. name: "Normal",
  53411. height: math.unit(9, "feet"),
  53412. default: true
  53413. },
  53414. ]
  53415. ))
  53416. characterMakers.push(() => makeCharacter(
  53417. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53418. {
  53419. front: {
  53420. height: math.unit(17 + 9/12, "feet"),
  53421. weight: math.unit(8000, "lb"),
  53422. name: "Front",
  53423. image: {
  53424. source: "./media/characters/vera-raven/front.svg",
  53425. extra: 1457/1412,
  53426. bottom: 121/1578
  53427. }
  53428. },
  53429. side: {
  53430. height: math.unit(17 + 9/12, "feet"),
  53431. weight: math.unit(8000, "lb"),
  53432. name: "Side",
  53433. image: {
  53434. source: "./media/characters/vera-raven/side.svg",
  53435. extra: 1510/1464,
  53436. bottom: 54/1564
  53437. }
  53438. },
  53439. },
  53440. [
  53441. {
  53442. name: "Normal",
  53443. height: math.unit(17 + 9/12, "feet"),
  53444. default: true
  53445. },
  53446. ]
  53447. ))
  53448. characterMakers.push(() => makeCharacter(
  53449. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53450. {
  53451. dressed: {
  53452. height: math.unit(6 + 9/12, "feet"),
  53453. name: "Dressed",
  53454. image: {
  53455. source: "./media/characters/nakisha/dressed.svg",
  53456. extra: 1909/1757,
  53457. bottom: 48/1957
  53458. }
  53459. },
  53460. nude: {
  53461. height: math.unit(6 + 9/12, "feet"),
  53462. name: "Nude",
  53463. image: {
  53464. source: "./media/characters/nakisha/nude.svg",
  53465. extra: 1917/1765,
  53466. bottom: 34/1951
  53467. }
  53468. },
  53469. },
  53470. [
  53471. {
  53472. name: "Normal",
  53473. height: math.unit(6 + 9/12, "feet"),
  53474. default: true
  53475. },
  53476. ]
  53477. ))
  53478. characterMakers.push(() => makeCharacter(
  53479. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53480. {
  53481. front: {
  53482. height: math.unit(87, "meters"),
  53483. name: "Front",
  53484. image: {
  53485. source: "./media/characters/serafin/front.svg",
  53486. extra: 1919/1776,
  53487. bottom: 65/1984
  53488. }
  53489. },
  53490. },
  53491. [
  53492. {
  53493. name: "Normal",
  53494. height: math.unit(87, "meters"),
  53495. default: true
  53496. },
  53497. ]
  53498. ))
  53499. characterMakers.push(() => makeCharacter(
  53500. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53501. {
  53502. front: {
  53503. height: math.unit(6, "feet"),
  53504. weight: math.unit(200, "lb"),
  53505. name: "Front",
  53506. image: {
  53507. source: "./media/characters/poptart/front.svg",
  53508. extra: 615/583,
  53509. bottom: 23/638
  53510. }
  53511. },
  53512. back: {
  53513. height: math.unit(6, "feet"),
  53514. weight: math.unit(200, "lb"),
  53515. name: "Back",
  53516. image: {
  53517. source: "./media/characters/poptart/back.svg",
  53518. extra: 617/584,
  53519. bottom: 22/639
  53520. }
  53521. },
  53522. frontNsfw: {
  53523. height: math.unit(6, "feet"),
  53524. weight: math.unit(200, "lb"),
  53525. name: "Front (NSFW)",
  53526. image: {
  53527. source: "./media/characters/poptart/front-nsfw.svg",
  53528. extra: 615/583,
  53529. bottom: 23/638
  53530. }
  53531. },
  53532. backNsfw: {
  53533. height: math.unit(6, "feet"),
  53534. weight: math.unit(200, "lb"),
  53535. name: "Back (NSFW)",
  53536. image: {
  53537. source: "./media/characters/poptart/back-nsfw.svg",
  53538. extra: 617/584,
  53539. bottom: 22/639
  53540. }
  53541. },
  53542. hand: {
  53543. height: math.unit(1.14, "feet"),
  53544. name: "Hand",
  53545. image: {
  53546. source: "./media/characters/poptart/hand.svg"
  53547. }
  53548. },
  53549. foot: {
  53550. height: math.unit(1.5, "feet"),
  53551. name: "Foot",
  53552. image: {
  53553. source: "./media/characters/poptart/foot.svg"
  53554. }
  53555. },
  53556. },
  53557. [
  53558. {
  53559. name: "Normal",
  53560. height: math.unit(6, "feet"),
  53561. default: true
  53562. },
  53563. {
  53564. name: "Grande",
  53565. height: math.unit(350, "feet")
  53566. },
  53567. {
  53568. name: "Massif",
  53569. height: math.unit(967, "feet")
  53570. },
  53571. ]
  53572. ))
  53573. characterMakers.push(() => makeCharacter(
  53574. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53575. {
  53576. hyenaSide: {
  53577. height: math.unit(120, "cm"),
  53578. weight: math.unit(120, "lb"),
  53579. name: "Side",
  53580. image: {
  53581. source: "./media/characters/trance/hyena-side.svg",
  53582. extra: 998/904,
  53583. bottom: 76/1074
  53584. }
  53585. },
  53586. },
  53587. [
  53588. {
  53589. name: "Normal",
  53590. height: math.unit(120, "cm"),
  53591. default: true
  53592. },
  53593. {
  53594. name: "Dire",
  53595. height: math.unit(230, "cm")
  53596. },
  53597. {
  53598. name: "Macro",
  53599. height: math.unit(37, "feet")
  53600. },
  53601. ]
  53602. ))
  53603. characterMakers.push(() => makeCharacter(
  53604. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53605. {
  53606. front: {
  53607. height: math.unit(6 + 3/12, "feet"),
  53608. name: "Front",
  53609. image: {
  53610. source: "./media/characters/michael-berretta/front.svg",
  53611. extra: 515/494,
  53612. bottom: 20/535
  53613. }
  53614. },
  53615. back: {
  53616. height: math.unit(6 + 3/12, "feet"),
  53617. name: "Back",
  53618. image: {
  53619. source: "./media/characters/michael-berretta/back.svg",
  53620. extra: 520/497,
  53621. bottom: 21/541
  53622. }
  53623. },
  53624. frontNsfw: {
  53625. height: math.unit(6 + 3/12, "feet"),
  53626. name: "Front (NSFW)",
  53627. image: {
  53628. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53629. extra: 515/494,
  53630. bottom: 20/535
  53631. }
  53632. },
  53633. dick: {
  53634. height: math.unit(1, "feet"),
  53635. name: "Dick",
  53636. image: {
  53637. source: "./media/characters/michael-berretta/dick.svg"
  53638. }
  53639. },
  53640. },
  53641. [
  53642. {
  53643. name: "Normal",
  53644. height: math.unit(6 + 3/12, "feet"),
  53645. default: true
  53646. },
  53647. {
  53648. name: "Big",
  53649. height: math.unit(12, "feet")
  53650. },
  53651. {
  53652. name: "Macro",
  53653. height: math.unit(187.5, "feet")
  53654. },
  53655. ]
  53656. ))
  53657. characterMakers.push(() => makeCharacter(
  53658. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53659. {
  53660. front: {
  53661. height: math.unit(9 + 9/12, "feet"),
  53662. weight: math.unit(1244, "lb"),
  53663. name: "Front",
  53664. image: {
  53665. source: "./media/characters/stella-edgecomb/front.svg",
  53666. extra: 1835/1706,
  53667. bottom: 49/1884
  53668. }
  53669. },
  53670. pen: {
  53671. height: math.unit(0.95, "feet"),
  53672. name: "Pen",
  53673. image: {
  53674. source: "./media/characters/stella-edgecomb/pen.svg"
  53675. }
  53676. },
  53677. },
  53678. [
  53679. {
  53680. name: "Cozy Bear",
  53681. height: math.unit(0.5, "inches")
  53682. },
  53683. {
  53684. name: "Normal",
  53685. height: math.unit(9 + 9/12, "feet"),
  53686. default: true
  53687. },
  53688. {
  53689. name: "Giga Bear",
  53690. height: math.unit(1, "mile")
  53691. },
  53692. {
  53693. name: "Great Bear",
  53694. height: math.unit(53, "miles")
  53695. },
  53696. {
  53697. name: "Goddess Bear",
  53698. height: math.unit(40000, "miles")
  53699. },
  53700. {
  53701. name: "Sun Bear",
  53702. height: math.unit(900000, "miles")
  53703. },
  53704. ]
  53705. ))
  53706. characterMakers.push(() => makeCharacter(
  53707. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53708. {
  53709. anthroFront: {
  53710. height: math.unit(556, "cm"),
  53711. weight: math.unit(2650, "kg"),
  53712. preyCapacity: math.unit(3, "people"),
  53713. name: "Front",
  53714. image: {
  53715. source: "./media/characters/ash´iika/front.svg",
  53716. extra: 710/673,
  53717. bottom: 15/725
  53718. },
  53719. form: "anthro",
  53720. default: true
  53721. },
  53722. anthroSide: {
  53723. height: math.unit(556, "cm"),
  53724. weight: math.unit(2650, "kg"),
  53725. preyCapacity: math.unit(3, "people"),
  53726. name: "Side",
  53727. image: {
  53728. source: "./media/characters/ash´iika/side.svg",
  53729. extra: 696/676,
  53730. bottom: 13/709
  53731. },
  53732. form: "anthro"
  53733. },
  53734. anthroDressed: {
  53735. height: math.unit(556, "cm"),
  53736. weight: math.unit(2650, "kg"),
  53737. preyCapacity: math.unit(3, "people"),
  53738. name: "Dressed",
  53739. image: {
  53740. source: "./media/characters/ash´iika/dressed.svg",
  53741. extra: 710/673,
  53742. bottom: 15/725
  53743. },
  53744. form: "anthro"
  53745. },
  53746. anthroHead: {
  53747. height: math.unit(3.5, "feet"),
  53748. name: "Head",
  53749. image: {
  53750. source: "./media/characters/ash´iika/head.svg",
  53751. extra: 348/291,
  53752. bottom: 45/393
  53753. },
  53754. form: "anthro"
  53755. },
  53756. feralSide: {
  53757. height: math.unit(870, "cm"),
  53758. weight: math.unit(17500, "kg"),
  53759. preyCapacity: math.unit(15, "people"),
  53760. name: "Side",
  53761. image: {
  53762. source: "./media/characters/ash´iika/feral.svg",
  53763. extra: 595/199,
  53764. bottom: 7/602
  53765. },
  53766. form: "feral",
  53767. default: true,
  53768. },
  53769. },
  53770. [
  53771. {
  53772. name: "Normal",
  53773. height: math.unit(556, "cm"),
  53774. default: true,
  53775. form: "anthro"
  53776. },
  53777. {
  53778. name: "Macro",
  53779. height: math.unit(88, "meters"),
  53780. form: "anthro"
  53781. },
  53782. {
  53783. name: "Normal",
  53784. height: math.unit(870, "cm"),
  53785. default: true,
  53786. form: "feral"
  53787. },
  53788. {
  53789. name: "Large",
  53790. height: math.unit(25, "meters"),
  53791. form: "feral"
  53792. },
  53793. ],
  53794. {
  53795. "anthro": {
  53796. name: "Anthro",
  53797. default: true
  53798. },
  53799. "feral": {
  53800. name: "Feral",
  53801. },
  53802. }
  53803. ))
  53804. characterMakers.push(() => makeCharacter(
  53805. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53806. {
  53807. front: {
  53808. height: math.unit(10, "feet"),
  53809. weight: math.unit(800, "lb"),
  53810. name: "Front",
  53811. image: {
  53812. source: "./media/characters/yen/front.svg",
  53813. extra: 443/411,
  53814. bottom: 6/449
  53815. }
  53816. },
  53817. sleeping: {
  53818. height: math.unit(10, "feet"),
  53819. weight: math.unit(800, "lb"),
  53820. name: "Sleeping",
  53821. image: {
  53822. source: "./media/characters/yen/sleeping.svg",
  53823. extra: 470/422,
  53824. bottom: 0/470
  53825. }
  53826. },
  53827. head: {
  53828. height: math.unit(2.2, "feet"),
  53829. name: "Head",
  53830. image: {
  53831. source: "./media/characters/yen/head.svg"
  53832. }
  53833. },
  53834. headAlt: {
  53835. height: math.unit(2.1, "feet"),
  53836. name: "Head (Alt)",
  53837. image: {
  53838. source: "./media/characters/yen/head-alt.svg"
  53839. }
  53840. },
  53841. },
  53842. [
  53843. {
  53844. name: "Normal",
  53845. height: math.unit(10, "feet"),
  53846. default: true
  53847. },
  53848. ]
  53849. ))
  53850. characterMakers.push(() => makeCharacter(
  53851. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53852. {
  53853. front: {
  53854. height: math.unit(12, "feet"),
  53855. name: "Front",
  53856. image: {
  53857. source: "./media/characters/citra/front.svg",
  53858. extra: 1950/1710,
  53859. bottom: 47/1997
  53860. }
  53861. },
  53862. },
  53863. [
  53864. {
  53865. name: "Normal",
  53866. height: math.unit(12, "feet"),
  53867. default: true
  53868. },
  53869. ]
  53870. ))
  53871. characterMakers.push(() => makeCharacter(
  53872. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53873. {
  53874. side: {
  53875. height: math.unit(7 + 10/12, "feet"),
  53876. name: "Side",
  53877. image: {
  53878. source: "./media/characters/sholstim/side.svg",
  53879. extra: 786/682,
  53880. bottom: 40/826
  53881. }
  53882. },
  53883. },
  53884. [
  53885. {
  53886. name: "Normal",
  53887. height: math.unit(7 + 10/12, "feet"),
  53888. default: true
  53889. },
  53890. ]
  53891. ))
  53892. characterMakers.push(() => makeCharacter(
  53893. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53894. {
  53895. front: {
  53896. height: math.unit(3.10, "meters"),
  53897. name: "Front",
  53898. image: {
  53899. source: "./media/characters/aggyn/front.svg",
  53900. extra: 1188/963,
  53901. bottom: 24/1212
  53902. }
  53903. },
  53904. },
  53905. [
  53906. {
  53907. name: "Normal",
  53908. height: math.unit(3.10, "meters"),
  53909. default: true
  53910. },
  53911. ]
  53912. ))
  53913. characterMakers.push(() => makeCharacter(
  53914. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53915. {
  53916. front: {
  53917. height: math.unit(7 + 5/12, "feet"),
  53918. weight: math.unit(687, "lb"),
  53919. name: "Front",
  53920. image: {
  53921. source: "./media/characters/alsandair-hergenroether/front.svg",
  53922. extra: 1251/1186,
  53923. bottom: 75/1326
  53924. }
  53925. },
  53926. back: {
  53927. height: math.unit(7 + 5/12, "feet"),
  53928. weight: math.unit(687, "lb"),
  53929. name: "Back",
  53930. image: {
  53931. source: "./media/characters/alsandair-hergenroether/back.svg",
  53932. extra: 1290/1229,
  53933. bottom: 17/1307
  53934. }
  53935. },
  53936. },
  53937. [
  53938. {
  53939. name: "Max Compression",
  53940. height: math.unit(7 + 5/12, "feet"),
  53941. default: true
  53942. },
  53943. {
  53944. name: "\"Normal\"",
  53945. height: math.unit(2, "universes")
  53946. },
  53947. ]
  53948. ))
  53949. characterMakers.push(() => makeCharacter(
  53950. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53951. {
  53952. front: {
  53953. height: math.unit(4 + 1/12, "feet"),
  53954. weight: math.unit(92, "lb"),
  53955. name: "Front",
  53956. image: {
  53957. source: "./media/characters/ie/front.svg",
  53958. extra: 1585/1352,
  53959. bottom: 91/1676
  53960. }
  53961. },
  53962. },
  53963. [
  53964. {
  53965. name: "Normal",
  53966. height: math.unit(4 + 1/12, "feet"),
  53967. default: true
  53968. },
  53969. ]
  53970. ))
  53971. characterMakers.push(() => makeCharacter(
  53972. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53973. {
  53974. anthro: {
  53975. height: math.unit(6, "feet"),
  53976. weight: math.unit(150, "lb"),
  53977. name: "Front",
  53978. image: {
  53979. source: "./media/characters/willow/anthro.svg",
  53980. extra: 1073/986,
  53981. bottom: 34/1107
  53982. },
  53983. form: "anthro",
  53984. default: true
  53985. },
  53986. taur: {
  53987. height: math.unit(6, "feet"),
  53988. weight: math.unit(150, "lb"),
  53989. name: "Side",
  53990. image: {
  53991. source: "./media/characters/willow/taur.svg",
  53992. extra: 647/512,
  53993. bottom: 136/783
  53994. },
  53995. form: "taur",
  53996. default: true
  53997. },
  53998. },
  53999. [
  54000. {
  54001. name: "Humanoid",
  54002. height: math.unit(2.7, "meters"),
  54003. form: "anthro"
  54004. },
  54005. {
  54006. name: "Normal",
  54007. height: math.unit(9, "meters"),
  54008. form: "anthro",
  54009. default: true
  54010. },
  54011. {
  54012. name: "Humanoid",
  54013. height: math.unit(2.1, "meters"),
  54014. form: "taur"
  54015. },
  54016. {
  54017. name: "Normal",
  54018. height: math.unit(7, "meters"),
  54019. form: "taur",
  54020. default: true
  54021. },
  54022. ],
  54023. {
  54024. "anthro": {
  54025. name: "Anthro",
  54026. default: true
  54027. },
  54028. "taur": {
  54029. name: "Taur",
  54030. },
  54031. }
  54032. ))
  54033. characterMakers.push(() => makeCharacter(
  54034. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54035. {
  54036. front: {
  54037. height: math.unit(2 + 5/12, "feet"),
  54038. name: "Front",
  54039. image: {
  54040. source: "./media/characters/kyan/front.svg",
  54041. extra: 460/334,
  54042. bottom: 23/483
  54043. },
  54044. extraAttributes: {
  54045. "toeLength": {
  54046. name: "Toe Length",
  54047. power: 1,
  54048. type: "length",
  54049. base: math.unit(7, "cm")
  54050. },
  54051. "toeclawLength": {
  54052. name: "Toeclaw Length",
  54053. power: 1,
  54054. type: "length",
  54055. base: math.unit(4.7, "cm")
  54056. },
  54057. "earHeight": {
  54058. name: "Ear Height",
  54059. power: 1,
  54060. type: "length",
  54061. base: math.unit(14.1, "cm")
  54062. },
  54063. }
  54064. },
  54065. paws: {
  54066. height: math.unit(0.45, "feet"),
  54067. name: "Paws",
  54068. image: {
  54069. source: "./media/characters/kyan/paws.svg",
  54070. extra: 581/581,
  54071. bottom: 114/695
  54072. }
  54073. },
  54074. },
  54075. [
  54076. {
  54077. name: "Normal",
  54078. height: math.unit(2 + 5/12, "feet"),
  54079. default: true
  54080. },
  54081. ]
  54082. ))
  54083. characterMakers.push(() => makeCharacter(
  54084. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54085. {
  54086. front: {
  54087. height: math.unit(2 + 2/3, "feet"),
  54088. name: "Front",
  54089. image: {
  54090. source: "./media/characters/xazzon/front.svg",
  54091. extra: 1109/984,
  54092. bottom: 42/1151
  54093. }
  54094. },
  54095. back: {
  54096. height: math.unit(2 + 2/3, "feet"),
  54097. name: "Back",
  54098. image: {
  54099. source: "./media/characters/xazzon/back.svg",
  54100. extra: 1095/971,
  54101. bottom: 23/1118
  54102. }
  54103. },
  54104. },
  54105. [
  54106. {
  54107. name: "Normal",
  54108. height: math.unit(2 + 2/3, "feet"),
  54109. default: true
  54110. },
  54111. ]
  54112. ))
  54113. characterMakers.push(() => makeCharacter(
  54114. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54115. {
  54116. dressed: {
  54117. height: math.unit(5 + 7/12, "feet"),
  54118. weight: math.unit(173, "lb"),
  54119. name: "Dressed",
  54120. image: {
  54121. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54122. extra: 3262/2862,
  54123. bottom: 188/3450
  54124. }
  54125. },
  54126. undressed: {
  54127. height: math.unit(5 + 7/12, "feet"),
  54128. weight: math.unit(173, "lb"),
  54129. name: "Undressed",
  54130. image: {
  54131. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54132. extra: 3262/2862,
  54133. bottom: 188/3450
  54134. }
  54135. },
  54136. },
  54137. [
  54138. {
  54139. name: "The void",
  54140. height: math.unit(7.29193e-34, "angstroms")
  54141. },
  54142. {
  54143. name: "Uh-Oh.",
  54144. height: math.unit(5.734e-7, "angstroms")
  54145. },
  54146. {
  54147. name: "Pico",
  54148. height: math.unit(0.876, "angstroms")
  54149. },
  54150. {
  54151. name: "Nano",
  54152. height: math.unit(0.000134200, "mm")
  54153. },
  54154. {
  54155. name: "Micro",
  54156. height: math.unit(0.0673020, "mm")
  54157. },
  54158. {
  54159. name: "Tiny",
  54160. height: math.unit(2.4, "mm")
  54161. },
  54162. {
  54163. name: "Actual Normal",
  54164. height: math.unit(3, "inches"),
  54165. default: true
  54166. },
  54167. {
  54168. name: "Normal",
  54169. height: math.unit(5 + 8/12, "feet")
  54170. },
  54171. {
  54172. name: "Giant",
  54173. height: math.unit(12, "feet")
  54174. },
  54175. {
  54176. name: "City Ruler",
  54177. height: math.unit(270, "meters")
  54178. },
  54179. {
  54180. name: "Giga",
  54181. height: math.unit(1117.6, "km")
  54182. },
  54183. {
  54184. name: "All-Powerful Queen",
  54185. height: math.unit(70.8, "gigameters")
  54186. },
  54187. {
  54188. name: "'Goddess'",
  54189. height: math.unit(600, "yottameters")
  54190. },
  54191. {
  54192. name: "Biggest!",
  54193. height: math.unit(4.23e5, "yottameters")
  54194. },
  54195. ]
  54196. ))
  54197. characterMakers.push(() => makeCharacter(
  54198. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54199. {
  54200. front: {
  54201. height: math.unit(8, "feet"),
  54202. weight: math.unit(300, "lb"),
  54203. name: "Front",
  54204. image: {
  54205. source: "./media/characters/khyla-shadowsong/front.svg",
  54206. extra: 861/798,
  54207. bottom: 32/893
  54208. }
  54209. },
  54210. side: {
  54211. height: math.unit(8, "feet"),
  54212. weight: math.unit(300, "lb"),
  54213. name: "Side",
  54214. image: {
  54215. source: "./media/characters/khyla-shadowsong/side.svg",
  54216. extra: 790/750,
  54217. bottom: 87/877
  54218. }
  54219. },
  54220. back: {
  54221. height: math.unit(8, "feet"),
  54222. weight: math.unit(300, "lb"),
  54223. name: "Back",
  54224. image: {
  54225. source: "./media/characters/khyla-shadowsong/back.svg",
  54226. extra: 855/808,
  54227. bottom: 14/869
  54228. }
  54229. },
  54230. head: {
  54231. height: math.unit(2.7, "feet"),
  54232. name: "Head",
  54233. image: {
  54234. source: "./media/characters/khyla-shadowsong/head.svg"
  54235. }
  54236. },
  54237. },
  54238. [
  54239. {
  54240. name: "Micro",
  54241. height: math.unit(6, "inches")
  54242. },
  54243. {
  54244. name: "Normal",
  54245. height: math.unit(8, "feet"),
  54246. default: true
  54247. },
  54248. ]
  54249. ))
  54250. characterMakers.push(() => makeCharacter(
  54251. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54252. {
  54253. hyperFront: {
  54254. height: math.unit(9 + 4/12, "feet"),
  54255. weight: math.unit(2000, "lb"),
  54256. name: "Front",
  54257. image: {
  54258. source: "./media/characters/tiden/hyper-front.svg",
  54259. extra: 400/382,
  54260. bottom: 6/406
  54261. },
  54262. form: "hyper",
  54263. },
  54264. regularFront: {
  54265. height: math.unit(7 + 10/12, "feet"),
  54266. weight: math.unit(470, "lb"),
  54267. name: "Front",
  54268. image: {
  54269. source: "./media/characters/tiden/regular-front.svg",
  54270. extra: 468/442,
  54271. bottom: 6/474
  54272. },
  54273. form: "regular",
  54274. },
  54275. },
  54276. [
  54277. {
  54278. name: "Normal",
  54279. height: math.unit(9 + 4/12, "feet"),
  54280. default: true,
  54281. form: "hyper"
  54282. },
  54283. {
  54284. name: "Normal",
  54285. height: math.unit(7 + 10/12, "feet"),
  54286. default: true,
  54287. form: "regular"
  54288. },
  54289. ],
  54290. {
  54291. "hyper": {
  54292. name: "Hyper",
  54293. default: true
  54294. },
  54295. "regular": {
  54296. name: "Regular",
  54297. },
  54298. }
  54299. ))
  54300. characterMakers.push(() => makeCharacter(
  54301. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54302. {
  54303. side: {
  54304. height: math.unit(6, "feet"),
  54305. weight: math.unit(150, "lb"),
  54306. name: "Side",
  54307. image: {
  54308. source: "./media/characters/jason-crowe/side.svg",
  54309. extra: 1771/766,
  54310. bottom: 219/1990
  54311. }
  54312. },
  54313. },
  54314. [
  54315. {
  54316. name: "Pocket Gryphon",
  54317. height: math.unit(6, "cm")
  54318. },
  54319. {
  54320. name: "Raven",
  54321. height: math.unit(60, "cm")
  54322. },
  54323. {
  54324. name: "Normal",
  54325. height: math.unit(1, "meter"),
  54326. default: true
  54327. },
  54328. ]
  54329. ))
  54330. characterMakers.push(() => makeCharacter(
  54331. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54332. {
  54333. front: {
  54334. height: math.unit(9 + 6/12, "feet"),
  54335. weight: math.unit(1100, "lb"),
  54336. name: "Front",
  54337. image: {
  54338. source: "./media/characters/django/front.svg",
  54339. extra: 1231/1136,
  54340. bottom: 34/1265
  54341. }
  54342. },
  54343. side: {
  54344. height: math.unit(9 + 6/12, "feet"),
  54345. weight: math.unit(1100, "lb"),
  54346. name: "Side",
  54347. image: {
  54348. source: "./media/characters/django/side.svg",
  54349. extra: 1267/1174,
  54350. bottom: 9/1276
  54351. }
  54352. },
  54353. },
  54354. [
  54355. {
  54356. name: "Normal",
  54357. height: math.unit(9 + 6/12, "feet"),
  54358. default: true
  54359. },
  54360. {
  54361. name: "Macro 1",
  54362. height: math.unit(50, "feet")
  54363. },
  54364. {
  54365. name: "Macro 2",
  54366. height: math.unit(500, "feet")
  54367. },
  54368. {
  54369. name: "Mega Macro",
  54370. height: math.unit(5300, "feet")
  54371. },
  54372. ]
  54373. ))
  54374. characterMakers.push(() => makeCharacter(
  54375. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54376. {
  54377. frontSfw: {
  54378. height: math.unit(120, "cm"),
  54379. weight: math.unit(15, "kg"),
  54380. name: "Front (SFW)",
  54381. image: {
  54382. source: "./media/characters/eri/front-sfw.svg",
  54383. extra: 1014/939,
  54384. bottom: 37/1051
  54385. },
  54386. form: "moth",
  54387. },
  54388. frontNsfw: {
  54389. height: math.unit(120, "cm"),
  54390. weight: math.unit(15, "kg"),
  54391. name: "Front (NSFW)",
  54392. image: {
  54393. source: "./media/characters/eri/front-nsfw.svg",
  54394. extra: 1014/939,
  54395. bottom: 37/1051
  54396. },
  54397. form: "moth",
  54398. default: true
  54399. },
  54400. egg: {
  54401. height: math.unit(10, "cm"),
  54402. name: "Egg",
  54403. image: {
  54404. source: "./media/characters/eri/egg.svg"
  54405. },
  54406. form: "egg",
  54407. default: true
  54408. },
  54409. },
  54410. [
  54411. {
  54412. name: "Normal",
  54413. height: math.unit(120, "cm"),
  54414. default: true,
  54415. form: "moth"
  54416. },
  54417. {
  54418. name: "Normal",
  54419. height: math.unit(10, "cm"),
  54420. default: true,
  54421. form: "egg"
  54422. },
  54423. ],
  54424. {
  54425. "moth": {
  54426. name: "Moth",
  54427. default: true
  54428. },
  54429. "egg": {
  54430. name: "Egg",
  54431. },
  54432. }
  54433. ))
  54434. characterMakers.push(() => makeCharacter(
  54435. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54436. {
  54437. front: {
  54438. height: math.unit(200, "feet"),
  54439. name: "Front",
  54440. image: {
  54441. source: "./media/characters/bishop-dowser/front.svg",
  54442. extra: 933/868,
  54443. bottom: 106/1039
  54444. }
  54445. },
  54446. },
  54447. [
  54448. {
  54449. name: "Giant",
  54450. height: math.unit(200, "feet"),
  54451. default: true
  54452. },
  54453. ]
  54454. ))
  54455. characterMakers.push(() => makeCharacter(
  54456. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54457. {
  54458. front: {
  54459. height: math.unit(2, "meters"),
  54460. preyCapacity: math.unit(3, "people"),
  54461. name: "Front",
  54462. image: {
  54463. source: "./media/characters/fryra/front.svg",
  54464. extra: 1025/948,
  54465. bottom: 30/1055
  54466. },
  54467. extraAttributes: {
  54468. "breastVolume": {
  54469. name: "Breast Volume",
  54470. power: 3,
  54471. type: "volume",
  54472. base: math.unit(8, "liters")
  54473. },
  54474. }
  54475. },
  54476. back: {
  54477. height: math.unit(2, "meters"),
  54478. preyCapacity: math.unit(3, "people"),
  54479. name: "Back",
  54480. image: {
  54481. source: "./media/characters/fryra/back.svg",
  54482. extra: 993/938,
  54483. bottom: 38/1031
  54484. },
  54485. extraAttributes: {
  54486. "breastVolume": {
  54487. name: "Breast Volume",
  54488. power: 3,
  54489. type: "volume",
  54490. base: math.unit(8, "liters")
  54491. },
  54492. }
  54493. },
  54494. head: {
  54495. height: math.unit(1.33, "feet"),
  54496. name: "Head",
  54497. image: {
  54498. source: "./media/characters/fryra/head.svg"
  54499. }
  54500. },
  54501. maw: {
  54502. height: math.unit(0.56, "feet"),
  54503. name: "Maw",
  54504. image: {
  54505. source: "./media/characters/fryra/maw.svg"
  54506. }
  54507. },
  54508. },
  54509. [
  54510. {
  54511. name: "Micro",
  54512. height: math.unit(5, "cm")
  54513. },
  54514. {
  54515. name: "Normal",
  54516. height: math.unit(2, "meters"),
  54517. default: true
  54518. },
  54519. {
  54520. name: "Small Macro",
  54521. height: math.unit(8, "meters")
  54522. },
  54523. {
  54524. name: "Macro",
  54525. height: math.unit(50, "meters")
  54526. },
  54527. {
  54528. name: "Megamacro",
  54529. height: math.unit(1, "km")
  54530. },
  54531. {
  54532. name: "Planetary",
  54533. height: math.unit(300000, "km")
  54534. },
  54535. {
  54536. name: "Universal",
  54537. height: math.unit(250, "lightyears")
  54538. },
  54539. {
  54540. name: "Fabric of Reality",
  54541. height: math.unit(1000, "multiverses")
  54542. },
  54543. ]
  54544. ))
  54545. characterMakers.push(() => makeCharacter(
  54546. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54547. {
  54548. frontDressed: {
  54549. height: math.unit(6 + 2/12, "feet"),
  54550. name: "Front (Dressed)",
  54551. image: {
  54552. source: "./media/characters/fiera/front-dressed.svg",
  54553. extra: 1883/1793,
  54554. bottom: 70/1953
  54555. }
  54556. },
  54557. backDressed: {
  54558. height: math.unit(6 + 2/12, "feet"),
  54559. name: "Back (Dressed)",
  54560. image: {
  54561. source: "./media/characters/fiera/back-dressed.svg",
  54562. extra: 1847/1780,
  54563. bottom: 70/1917
  54564. }
  54565. },
  54566. frontNude: {
  54567. height: math.unit(6 + 2/12, "feet"),
  54568. name: "Front (Nude)",
  54569. image: {
  54570. source: "./media/characters/fiera/front-nude.svg",
  54571. extra: 1875/1785,
  54572. bottom: 66/1941
  54573. }
  54574. },
  54575. backNude: {
  54576. height: math.unit(6 + 2/12, "feet"),
  54577. name: "Back (Nude)",
  54578. image: {
  54579. source: "./media/characters/fiera/back-nude.svg",
  54580. extra: 1855/1788,
  54581. bottom: 44/1899
  54582. }
  54583. },
  54584. maw: {
  54585. height: math.unit(1.3, "feet"),
  54586. name: "Maw",
  54587. image: {
  54588. source: "./media/characters/fiera/maw.svg"
  54589. }
  54590. },
  54591. paw: {
  54592. height: math.unit(1, "feet"),
  54593. name: "Paw",
  54594. image: {
  54595. source: "./media/characters/fiera/paw.svg"
  54596. }
  54597. },
  54598. shoe: {
  54599. height: math.unit(1.05, "feet"),
  54600. name: "Shoe",
  54601. image: {
  54602. source: "./media/characters/fiera/shoe.svg"
  54603. }
  54604. },
  54605. },
  54606. [
  54607. {
  54608. name: "Normal",
  54609. height: math.unit(6 + 2/12, "feet"),
  54610. default: true
  54611. },
  54612. {
  54613. name: "Size Difference",
  54614. height: math.unit(13, "feet")
  54615. },
  54616. {
  54617. name: "Macro",
  54618. height: math.unit(60, "feet")
  54619. },
  54620. {
  54621. name: "Mega Macro",
  54622. height: math.unit(200, "feet")
  54623. },
  54624. ]
  54625. ))
  54626. characterMakers.push(() => makeCharacter(
  54627. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54628. {
  54629. back: {
  54630. height: math.unit(6, "feet"),
  54631. name: "Back",
  54632. image: {
  54633. source: "./media/characters/flare/back.svg",
  54634. extra: 1883/1765,
  54635. bottom: 32/1915
  54636. }
  54637. },
  54638. },
  54639. [
  54640. {
  54641. name: "Normal",
  54642. height: math.unit(6 + 2/12, "feet"),
  54643. default: true
  54644. },
  54645. {
  54646. name: "Size Difference",
  54647. height: math.unit(13, "feet")
  54648. },
  54649. {
  54650. name: "Macro",
  54651. height: math.unit(60, "feet")
  54652. },
  54653. {
  54654. name: "Macro 2",
  54655. height: math.unit(100, "feet")
  54656. },
  54657. {
  54658. name: "Mega Macro",
  54659. height: math.unit(200, "feet")
  54660. },
  54661. ]
  54662. ))
  54663. characterMakers.push(() => makeCharacter(
  54664. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54665. {
  54666. front: {
  54667. height: math.unit(2.2, "m"),
  54668. weight: math.unit(300, "kg"),
  54669. name: "Front",
  54670. image: {
  54671. source: "./media/characters/hanna/front.svg",
  54672. extra: 1696/1502,
  54673. bottom: 206/1902
  54674. }
  54675. },
  54676. },
  54677. [
  54678. {
  54679. name: "Humanoid",
  54680. height: math.unit(2.2, "meters")
  54681. },
  54682. {
  54683. name: "Normal",
  54684. height: math.unit(4.8, "meters"),
  54685. default: true
  54686. },
  54687. ]
  54688. ))
  54689. characterMakers.push(() => makeCharacter(
  54690. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54691. {
  54692. front: {
  54693. height: math.unit(2.8, "meters"),
  54694. name: "Front",
  54695. image: {
  54696. source: "./media/characters/argo/front.svg",
  54697. extra: 731/518,
  54698. bottom: 84/815
  54699. }
  54700. },
  54701. },
  54702. [
  54703. {
  54704. name: "Normal",
  54705. height: math.unit(3, "meters"),
  54706. default: true
  54707. },
  54708. ]
  54709. ))
  54710. characterMakers.push(() => makeCharacter(
  54711. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54712. {
  54713. side: {
  54714. height: math.unit(3.8, "meters"),
  54715. name: "Side",
  54716. image: {
  54717. source: "./media/characters/sybil/side.svg",
  54718. extra: 382/361,
  54719. bottom: 25/407
  54720. }
  54721. },
  54722. },
  54723. [
  54724. {
  54725. name: "Normal",
  54726. height: math.unit(3.8, "meters"),
  54727. default: true
  54728. },
  54729. ]
  54730. ))
  54731. characterMakers.push(() => makeCharacter(
  54732. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54733. {
  54734. side: {
  54735. height: math.unit(6, "meters"),
  54736. name: "Side",
  54737. image: {
  54738. source: "./media/characters/plum/side.svg",
  54739. extra: 858/755,
  54740. bottom: 45/903
  54741. },
  54742. form: "taur",
  54743. default: true
  54744. },
  54745. back: {
  54746. height: math.unit(6.3, "meters"),
  54747. name: "Back",
  54748. image: {
  54749. source: "./media/characters/plum/back.svg",
  54750. extra: 887/813,
  54751. bottom: 32/919
  54752. },
  54753. form: "taur",
  54754. },
  54755. feral: {
  54756. height: math.unit(5.5, "meter"),
  54757. name: "Front",
  54758. image: {
  54759. source: "./media/characters/plum/feral.svg",
  54760. extra: 568/403,
  54761. bottom: 51/619
  54762. },
  54763. form: "feral",
  54764. default: true
  54765. },
  54766. head: {
  54767. height: math.unit(1.46, "meter"),
  54768. name: "Head",
  54769. image: {
  54770. source: "./media/characters/plum/head.svg"
  54771. },
  54772. form: "taur"
  54773. },
  54774. tailTop: {
  54775. height: math.unit(5.6, "meter"),
  54776. name: "Tail (Top)",
  54777. image: {
  54778. source: "./media/characters/plum/tail-top.svg"
  54779. },
  54780. form: "taur",
  54781. },
  54782. tailBottom: {
  54783. height: math.unit(5.6, "meter"),
  54784. name: "Tail (Bottom)",
  54785. image: {
  54786. source: "./media/characters/plum/tail-bottom.svg"
  54787. },
  54788. form: "taur",
  54789. },
  54790. feralHead: {
  54791. height: math.unit(2.56549521, "meter"),
  54792. name: "Head",
  54793. image: {
  54794. source: "./media/characters/plum/head.svg"
  54795. },
  54796. form: "feral"
  54797. },
  54798. feralTailTop: {
  54799. height: math.unit(5.44728435, "meter"),
  54800. name: "Tail (Top)",
  54801. image: {
  54802. source: "./media/characters/plum/tail-top.svg"
  54803. },
  54804. form: "feral",
  54805. },
  54806. feralTailBottom: {
  54807. height: math.unit(5.44728435, "meter"),
  54808. name: "Tail (Bottom)",
  54809. image: {
  54810. source: "./media/characters/plum/tail-bottom.svg"
  54811. },
  54812. form: "feral",
  54813. },
  54814. },
  54815. [
  54816. {
  54817. name: "Normal",
  54818. height: math.unit(6, "meters"),
  54819. default: true,
  54820. form: "taur"
  54821. },
  54822. {
  54823. name: "Normal",
  54824. height: math.unit(5.5, "meters"),
  54825. default: true,
  54826. form: "feral"
  54827. },
  54828. ],
  54829. {
  54830. "taur": {
  54831. name: "Taur",
  54832. default: true
  54833. },
  54834. "feral": {
  54835. name: "Feral",
  54836. },
  54837. }
  54838. ))
  54839. characterMakers.push(() => makeCharacter(
  54840. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54841. {
  54842. front: {
  54843. height: math.unit(6, "feet"),
  54844. weight: math.unit(115, "lb"),
  54845. name: "Front",
  54846. image: {
  54847. source: "./media/characters/celeste-kitsune/front.svg",
  54848. extra: 393/366,
  54849. bottom: 7/400
  54850. }
  54851. },
  54852. side: {
  54853. height: math.unit(6, "feet"),
  54854. weight: math.unit(115, "lb"),
  54855. name: "Side",
  54856. image: {
  54857. source: "./media/characters/celeste-kitsune/side.svg",
  54858. extra: 818/765,
  54859. bottom: 40/858
  54860. }
  54861. },
  54862. },
  54863. [
  54864. {
  54865. name: "Megamacro",
  54866. height: math.unit(1500, "miles"),
  54867. default: true
  54868. },
  54869. ]
  54870. ))
  54871. characterMakers.push(() => makeCharacter(
  54872. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54873. {
  54874. front: {
  54875. height: math.unit(8, "meters"),
  54876. name: "Front",
  54877. image: {
  54878. source: "./media/characters/io/front.svg",
  54879. extra: 865/722,
  54880. bottom: 58/923
  54881. }
  54882. },
  54883. back: {
  54884. height: math.unit(8, "meters"),
  54885. name: "Back",
  54886. image: {
  54887. source: "./media/characters/io/back.svg",
  54888. extra: 920/776,
  54889. bottom: 42/962
  54890. }
  54891. },
  54892. head: {
  54893. height: math.unit(5.09, "meters"),
  54894. name: "Head",
  54895. image: {
  54896. source: "./media/characters/io/head.svg"
  54897. }
  54898. },
  54899. hand: {
  54900. height: math.unit(1.6, "meters"),
  54901. name: "Hand",
  54902. image: {
  54903. source: "./media/characters/io/hand.svg"
  54904. }
  54905. },
  54906. foot: {
  54907. height: math.unit(2.4, "meters"),
  54908. name: "Foot",
  54909. image: {
  54910. source: "./media/characters/io/foot.svg"
  54911. }
  54912. },
  54913. },
  54914. [
  54915. {
  54916. name: "Normal",
  54917. height: math.unit(8, "meters"),
  54918. default: true
  54919. },
  54920. ]
  54921. ))
  54922. characterMakers.push(() => makeCharacter(
  54923. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54924. {
  54925. side: {
  54926. height: math.unit(6 + 3/12, "feet"),
  54927. weight: math.unit(225, "lb"),
  54928. name: "Side",
  54929. image: {
  54930. source: "./media/characters/silas/side.svg",
  54931. extra: 703/653,
  54932. bottom: 23/726
  54933. },
  54934. extraAttributes: {
  54935. "pawLength": {
  54936. name: "Paw Length",
  54937. power: 1,
  54938. type: "length",
  54939. base: math.unit(12, "inches")
  54940. },
  54941. "pawWidth": {
  54942. name: "Paw Width",
  54943. power: 1,
  54944. type: "length",
  54945. base: math.unit(4.5, "inches")
  54946. },
  54947. "pawArea": {
  54948. name: "Paw Area",
  54949. power: 2,
  54950. type: "area",
  54951. base: math.unit(12 * 4.5, "inches^2")
  54952. },
  54953. }
  54954. },
  54955. },
  54956. [
  54957. {
  54958. name: "Normal",
  54959. height: math.unit(6 + 3/12, "feet"),
  54960. default: true
  54961. },
  54962. ]
  54963. ))
  54964. characterMakers.push(() => makeCharacter(
  54965. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54966. {
  54967. back: {
  54968. height: math.unit(1.6, "meters"),
  54969. weight: math.unit(150, "lb"),
  54970. name: "Back",
  54971. image: {
  54972. source: "./media/characters/zari/back.svg",
  54973. extra: 424/411,
  54974. bottom: 32/456
  54975. },
  54976. extraAttributes: {
  54977. "bladderCapacity": {
  54978. name: "Bladder Size",
  54979. power: 3,
  54980. type: "volume",
  54981. base: math.unit(500, "mL")
  54982. },
  54983. "bladderFlow": {
  54984. name: "Flow Rate",
  54985. power: 3,
  54986. type: "volume",
  54987. base: math.unit(25, "mL")
  54988. },
  54989. }
  54990. },
  54991. },
  54992. [
  54993. {
  54994. name: "Normal",
  54995. height: math.unit(1.6, "meters"),
  54996. default: true
  54997. },
  54998. ]
  54999. ))
  55000. characterMakers.push(() => makeCharacter(
  55001. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55002. {
  55003. front: {
  55004. height: math.unit(25, "feet"),
  55005. weight: math.unit(5, "tons"),
  55006. name: "Front",
  55007. image: {
  55008. source: "./media/characters/charlie-human/front.svg",
  55009. extra: 1870/1740,
  55010. bottom: 102/1972
  55011. },
  55012. extraAttributes: {
  55013. "dickLength": {
  55014. name: "Dick Length",
  55015. power: 1,
  55016. type: "length",
  55017. base: math.unit(9, "feet")
  55018. },
  55019. }
  55020. },
  55021. back: {
  55022. height: math.unit(25, "feet"),
  55023. weight: math.unit(5, "tons"),
  55024. name: "Back",
  55025. image: {
  55026. source: "./media/characters/charlie-human/back.svg",
  55027. extra: 1858/1733,
  55028. bottom: 105/1963
  55029. },
  55030. extraAttributes: {
  55031. "dickLength": {
  55032. name: "Dick Length",
  55033. power: 1,
  55034. type: "length",
  55035. base: math.unit(9, "feet")
  55036. },
  55037. }
  55038. },
  55039. },
  55040. [
  55041. {
  55042. name: "\"Normal\"",
  55043. height: math.unit(6 + 4/12, "feet")
  55044. },
  55045. {
  55046. name: "Big",
  55047. height: math.unit(25, "feet"),
  55048. default: true
  55049. },
  55050. ]
  55051. ))
  55052. characterMakers.push(() => makeCharacter(
  55053. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55054. {
  55055. front: {
  55056. height: math.unit(6 + 4/12, "feet"),
  55057. weight: math.unit(320, "lb"),
  55058. name: "Front",
  55059. image: {
  55060. source: "./media/characters/ookitsu/front.svg",
  55061. extra: 1160/976,
  55062. bottom: 38/1198
  55063. }
  55064. },
  55065. frontNsfw: {
  55066. height: math.unit(6 + 4/12, "feet"),
  55067. weight: math.unit(320, "lb"),
  55068. name: "Front (NSFW)",
  55069. image: {
  55070. source: "./media/characters/ookitsu/front-nsfw.svg",
  55071. extra: 1160/976,
  55072. bottom: 38/1198
  55073. }
  55074. },
  55075. back: {
  55076. height: math.unit(6 + 4/12, "feet"),
  55077. weight: math.unit(320, "lb"),
  55078. name: "Back",
  55079. image: {
  55080. source: "./media/characters/ookitsu/back.svg",
  55081. extra: 1030/975,
  55082. bottom: 70/1100
  55083. }
  55084. },
  55085. head: {
  55086. height: math.unit(1.79, "feet"),
  55087. name: "Head",
  55088. image: {
  55089. source: "./media/characters/ookitsu/head.svg"
  55090. }
  55091. },
  55092. hand: {
  55093. height: math.unit(0.92, "feet"),
  55094. name: "Hand",
  55095. image: {
  55096. source: "./media/characters/ookitsu/hand.svg"
  55097. }
  55098. },
  55099. tails: {
  55100. height: math.unit(3.3, "feet"),
  55101. name: "Tails",
  55102. image: {
  55103. source: "./media/characters/ookitsu/tails.svg"
  55104. }
  55105. },
  55106. dick: {
  55107. height: math.unit(1.10833, "feet"),
  55108. name: "Dick",
  55109. image: {
  55110. source: "./media/characters/ookitsu/dick.svg"
  55111. }
  55112. },
  55113. },
  55114. [
  55115. {
  55116. name: "Normal",
  55117. height: math.unit(6 + 4/12, "feet"),
  55118. default: true
  55119. },
  55120. {
  55121. name: "Macro",
  55122. height: math.unit(30, "feet")
  55123. },
  55124. ]
  55125. ))
  55126. characterMakers.push(() => makeCharacter(
  55127. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55128. {
  55129. anthroFront: {
  55130. height: math.unit(6, "feet"),
  55131. weight: math.unit(250, "lb"),
  55132. name: "Front",
  55133. image: {
  55134. source: "./media/characters/jhusky/anthro-front.svg",
  55135. extra: 474/439,
  55136. bottom: 7/481
  55137. },
  55138. form: "anthro",
  55139. default: true
  55140. },
  55141. taurSideSfw: {
  55142. height: math.unit(6 + 4/12, "feet"),
  55143. weight: math.unit(500, "lb"),
  55144. name: "Side (SFW)",
  55145. image: {
  55146. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55147. extra: 1741/1629,
  55148. bottom: 196/1937
  55149. },
  55150. form: "taur",
  55151. default: true
  55152. },
  55153. taurSideNsfw: {
  55154. height: math.unit(6 + 4/12, "feet"),
  55155. weight: math.unit(500, "lb"),
  55156. name: "Taur (NSFW)",
  55157. image: {
  55158. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55159. extra: 1741/1629,
  55160. bottom: 196/1937
  55161. },
  55162. form: "taur",
  55163. },
  55164. },
  55165. [
  55166. {
  55167. name: "Huge",
  55168. height: math.unit(500, "feet"),
  55169. form: "anthro"
  55170. },
  55171. {
  55172. name: "Macro",
  55173. height: math.unit(1000, "feet"),
  55174. default: true,
  55175. form: "anthro"
  55176. },
  55177. {
  55178. name: "Megamacro",
  55179. height: math.unit(10000, "feet"),
  55180. form: "anthro"
  55181. },
  55182. {
  55183. name: "Huge",
  55184. height: math.unit(528, "feet"),
  55185. form: "taur"
  55186. },
  55187. {
  55188. name: "Macro",
  55189. height: math.unit(1056, "feet"),
  55190. default: true,
  55191. form: "taur"
  55192. },
  55193. {
  55194. name: "Megamacro",
  55195. height: math.unit(10556, "feet"),
  55196. form: "taur"
  55197. },
  55198. ],
  55199. {
  55200. "anthro": {
  55201. name: "Anthro",
  55202. default: true
  55203. },
  55204. "taur": {
  55205. name: "Taur",
  55206. },
  55207. }
  55208. ))
  55209. characterMakers.push(() => makeCharacter(
  55210. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55211. {
  55212. front: {
  55213. height: math.unit(8, "feet"),
  55214. weight: math.unit(500, "lb"),
  55215. name: "Front",
  55216. image: {
  55217. source: "./media/characters/armail/front.svg",
  55218. extra: 1753/1669,
  55219. bottom: 155/1908
  55220. }
  55221. },
  55222. back: {
  55223. height: math.unit(8, "feet"),
  55224. weight: math.unit(500, "lb"),
  55225. name: "Back",
  55226. image: {
  55227. source: "./media/characters/armail/back.svg",
  55228. extra: 1872/1803,
  55229. bottom: 63/1935
  55230. }
  55231. },
  55232. },
  55233. [
  55234. {
  55235. name: "Micro",
  55236. height: math.unit(0.25, "feet")
  55237. },
  55238. {
  55239. name: "Normal",
  55240. height: math.unit(8, "feet"),
  55241. default: true
  55242. },
  55243. {
  55244. name: "Mini-macro",
  55245. height: math.unit(30, "feet")
  55246. },
  55247. {
  55248. name: "Macro",
  55249. height: math.unit(400, "feet")
  55250. },
  55251. {
  55252. name: "Mega-macro",
  55253. height: math.unit(6000, "feet")
  55254. },
  55255. ]
  55256. ))
  55257. characterMakers.push(() => makeCharacter(
  55258. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55259. {
  55260. front: {
  55261. height: math.unit(6 + 7/12, "feet"),
  55262. weight: math.unit(210, "lb"),
  55263. name: "Front",
  55264. image: {
  55265. source: "./media/characters/wilfred-t-buxton/front.svg",
  55266. extra: 1068/882,
  55267. bottom: 28/1096
  55268. }
  55269. },
  55270. },
  55271. [
  55272. {
  55273. name: "Normal",
  55274. height: math.unit(6 + 7/12, "feet"),
  55275. default: true
  55276. },
  55277. ]
  55278. ))
  55279. characterMakers.push(() => makeCharacter(
  55280. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55281. {
  55282. front: {
  55283. height: math.unit(5 + 2/12, "feet"),
  55284. weight: math.unit(120, "lb"),
  55285. name: "Front",
  55286. image: {
  55287. source: "./media/characters/leighton-marrow/front.svg",
  55288. extra: 441/409,
  55289. bottom: 37/478
  55290. }
  55291. },
  55292. },
  55293. [
  55294. {
  55295. name: "Normal",
  55296. height: math.unit(5 + 2/12, "feet"),
  55297. default: true
  55298. },
  55299. ]
  55300. ))
  55301. characterMakers.push(() => makeCharacter(
  55302. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55303. {
  55304. front: {
  55305. height: math.unit(4, "meters"),
  55306. weight: math.unit(1200, "kg"),
  55307. name: "Front",
  55308. image: {
  55309. source: "./media/characters/licos/front.svg",
  55310. extra: 1727/1604,
  55311. bottom: 101/1828
  55312. },
  55313. form: "anthro",
  55314. default: true
  55315. },
  55316. taur_side: {
  55317. height: math.unit(20, "meters"),
  55318. weight: math.unit(1100000, "kg"),
  55319. name: "Side",
  55320. image: {
  55321. source: "./media/characters/licos/taur.svg",
  55322. extra: 1158/1091,
  55323. bottom: 80/1238
  55324. },
  55325. form: "taur",
  55326. default: true
  55327. },
  55328. },
  55329. [
  55330. {
  55331. name: "Normal",
  55332. height: math.unit(4, "meters"),
  55333. default: true,
  55334. form: "anthro"
  55335. },
  55336. {
  55337. name: "Normal",
  55338. height: math.unit(20, "meters"),
  55339. default: true,
  55340. form: "taur"
  55341. },
  55342. ],
  55343. {
  55344. "anthro": {
  55345. name: "Anthro",
  55346. default: true
  55347. },
  55348. "taur": {
  55349. name: "Taur",
  55350. },
  55351. }
  55352. ))
  55353. characterMakers.push(() => makeCharacter(
  55354. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55355. {
  55356. front: {
  55357. height: math.unit(10 + 3/12, "feet"),
  55358. name: "Front",
  55359. image: {
  55360. source: "./media/characters/theo-monkey/front.svg",
  55361. extra: 1735/1658,
  55362. bottom: 73/1808
  55363. }
  55364. },
  55365. back: {
  55366. height: math.unit(10 + 3/12, "feet"),
  55367. name: "Back",
  55368. image: {
  55369. source: "./media/characters/theo-monkey/back.svg",
  55370. extra: 1742/1664,
  55371. bottom: 33/1775
  55372. }
  55373. },
  55374. head: {
  55375. height: math.unit(2.29, "feet"),
  55376. name: "Head",
  55377. image: {
  55378. source: "./media/characters/theo-monkey/head.svg"
  55379. }
  55380. },
  55381. handPalm: {
  55382. height: math.unit(1.73, "feet"),
  55383. name: "Hand (Palm)",
  55384. image: {
  55385. source: "./media/characters/theo-monkey/hand-palm.svg"
  55386. }
  55387. },
  55388. handBack: {
  55389. height: math.unit(1.63, "feet"),
  55390. name: "Hand (Back)",
  55391. image: {
  55392. source: "./media/characters/theo-monkey/hand-back.svg"
  55393. }
  55394. },
  55395. footSole: {
  55396. height: math.unit(2.15, "feet"),
  55397. name: "Foot (Sole)",
  55398. image: {
  55399. source: "./media/characters/theo-monkey/foot-sole.svg"
  55400. }
  55401. },
  55402. footSide: {
  55403. height: math.unit(1.6, "feet"),
  55404. name: "Foot (Side)",
  55405. image: {
  55406. source: "./media/characters/theo-monkey/foot-side.svg"
  55407. }
  55408. },
  55409. },
  55410. [
  55411. {
  55412. name: "Normal",
  55413. height: math.unit(10 + 3/12, "feet"),
  55414. default: true
  55415. },
  55416. ]
  55417. ))
  55418. characterMakers.push(() => makeCharacter(
  55419. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55420. {
  55421. front: {
  55422. height: math.unit(11, "feet"),
  55423. weight: math.unit(3000, "lb"),
  55424. preyCapacity: math.unit(10, "people"),
  55425. name: "Front",
  55426. image: {
  55427. source: "./media/characters/brook/front.svg",
  55428. extra: 909/835,
  55429. bottom: 108/1017
  55430. }
  55431. },
  55432. back: {
  55433. height: math.unit(11, "feet"),
  55434. weight: math.unit(3000, "lb"),
  55435. preyCapacity: math.unit(10, "people"),
  55436. name: "Back",
  55437. image: {
  55438. source: "./media/characters/brook/back.svg",
  55439. extra: 976/916,
  55440. bottom: 34/1010
  55441. }
  55442. },
  55443. backAlt: {
  55444. height: math.unit(11, "feet"),
  55445. weight: math.unit(3000, "lb"),
  55446. preyCapacity: math.unit(10, "people"),
  55447. name: "Back (Alt)",
  55448. image: {
  55449. source: "./media/characters/brook/back-alt.svg",
  55450. extra: 1283/1213,
  55451. bottom: 35/1318
  55452. }
  55453. },
  55454. bust: {
  55455. height: math.unit(9.0859030837, "feet"),
  55456. weight: math.unit(3000, "lb"),
  55457. preyCapacity: math.unit(10, "people"),
  55458. name: "Bust",
  55459. image: {
  55460. source: "./media/characters/brook/bust.svg",
  55461. extra: 2043/1923,
  55462. bottom: 0/2043
  55463. }
  55464. },
  55465. },
  55466. [
  55467. {
  55468. name: "Small",
  55469. height: math.unit(11, "feet"),
  55470. default: true
  55471. },
  55472. {
  55473. name: "Towering",
  55474. height: math.unit(5, "km")
  55475. },
  55476. {
  55477. name: "Enormous",
  55478. height: math.unit(25, "earths")
  55479. },
  55480. ]
  55481. ))
  55482. characterMakers.push(() => makeCharacter(
  55483. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55484. {
  55485. front: {
  55486. height: math.unit(4, "feet"),
  55487. weight: math.unit(150, "lb"),
  55488. name: "Front",
  55489. image: {
  55490. source: "./media/characters/squishi/front.svg",
  55491. extra: 1428/1271,
  55492. bottom: 30/1458
  55493. },
  55494. extraAttributes: {
  55495. "pawSize": {
  55496. name: "Paw Size",
  55497. power: 1,
  55498. type: "length",
  55499. base: math.unit(14, "ShoeSizeMensUS"),
  55500. defaultUnit: "ShoeSizeMensUS"
  55501. },
  55502. }
  55503. },
  55504. side: {
  55505. height: math.unit(4, "feet"),
  55506. weight: math.unit(150, "lb"),
  55507. name: "Side",
  55508. image: {
  55509. source: "./media/characters/squishi/side.svg",
  55510. extra: 1428/1271,
  55511. bottom: 30/1458
  55512. },
  55513. extraAttributes: {
  55514. "pawSize": {
  55515. name: "Paw Size",
  55516. power: 1,
  55517. type: "length",
  55518. base: math.unit(14, "ShoeSizeMensUS"),
  55519. defaultUnit: "ShoeSizeMensUS"
  55520. },
  55521. }
  55522. },
  55523. back: {
  55524. height: math.unit(4, "feet"),
  55525. weight: math.unit(150, "lb"),
  55526. name: "Back",
  55527. image: {
  55528. source: "./media/characters/squishi/back.svg",
  55529. extra: 1428/1271,
  55530. bottom: 30/1458
  55531. },
  55532. extraAttributes: {
  55533. "pawSize": {
  55534. name: "Paw Size",
  55535. power: 1,
  55536. type: "length",
  55537. base: math.unit(14, "ShoeSizeMensUS"),
  55538. defaultUnit: "ShoeSizeMensUS"
  55539. },
  55540. }
  55541. },
  55542. },
  55543. [
  55544. {
  55545. name: "Normal",
  55546. height: math.unit(4, "feet"),
  55547. default: true
  55548. },
  55549. ]
  55550. ))
  55551. characterMakers.push(() => makeCharacter(
  55552. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55553. {
  55554. front: {
  55555. height: math.unit(7 + 8/12, "feet"),
  55556. weight: math.unit(333, "lb"),
  55557. name: "Front",
  55558. image: {
  55559. source: "./media/characters/vincent-vasroc/front.svg",
  55560. extra: 1962/1860,
  55561. bottom: 41/2003
  55562. }
  55563. },
  55564. back: {
  55565. height: math.unit(7 + 8/12, "feet"),
  55566. weight: math.unit(333, "lb"),
  55567. name: "Back",
  55568. image: {
  55569. source: "./media/characters/vincent-vasroc/back.svg",
  55570. extra: 1952/1815,
  55571. bottom: 33/1985
  55572. }
  55573. },
  55574. paw: {
  55575. height: math.unit(1.24, "feet"),
  55576. name: "Paw",
  55577. image: {
  55578. source: "./media/characters/vincent-vasroc/paw.svg"
  55579. }
  55580. },
  55581. ear: {
  55582. height: math.unit(0.75, "feet"),
  55583. name: "Ear",
  55584. image: {
  55585. source: "./media/characters/vincent-vasroc/ear.svg"
  55586. }
  55587. },
  55588. },
  55589. [
  55590. {
  55591. name: "Nano",
  55592. height: math.unit(92, "micrometers")
  55593. },
  55594. {
  55595. name: "Normal",
  55596. height: math.unit(7 + 8/12, "feet"),
  55597. default: true
  55598. },
  55599. ]
  55600. ))
  55601. characterMakers.push(() => makeCharacter(
  55602. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55603. {
  55604. frontNsfw: {
  55605. height: math.unit(40, "feet"),
  55606. weight: math.unit(58, "tons"),
  55607. name: "Front (NSFW)",
  55608. image: {
  55609. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55610. extra: 1265/965,
  55611. bottom: 155/1420
  55612. }
  55613. },
  55614. frontSfw: {
  55615. height: math.unit(40, "feet"),
  55616. weight: math.unit(58, "tons"),
  55617. name: "Front (SFW)",
  55618. image: {
  55619. source: "./media/characters/ru-kahn/front-sfw.svg",
  55620. extra: 1265/965,
  55621. bottom: 80/1345
  55622. }
  55623. },
  55624. },
  55625. [
  55626. {
  55627. name: "Small",
  55628. height: math.unit(4, "feet")
  55629. },
  55630. {
  55631. name: "Normal",
  55632. height: math.unit(40, "feet"),
  55633. default: true
  55634. },
  55635. {
  55636. name: "Macro",
  55637. height: math.unit(400, "feet")
  55638. },
  55639. ]
  55640. ))
  55641. characterMakers.push(() => makeCharacter(
  55642. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55643. {
  55644. frontNude: {
  55645. height: math.unit(6 + 5/12, "feet"),
  55646. name: "Front (Nude)",
  55647. image: {
  55648. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55649. extra: 1369/1366,
  55650. bottom: 68/1437
  55651. }
  55652. },
  55653. frontDressed: {
  55654. height: math.unit(6 + 5/12, "feet"),
  55655. name: "Front (Dressed)",
  55656. image: {
  55657. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55658. extra: 1369/1366,
  55659. bottom: 68/1437
  55660. }
  55661. },
  55662. },
  55663. [
  55664. {
  55665. name: "Normal",
  55666. height: math.unit(6 + 5/12, "feet"),
  55667. default: true
  55668. },
  55669. {
  55670. name: "Maximum",
  55671. height: math.unit(1930, "feet")
  55672. },
  55673. ]
  55674. ))
  55675. characterMakers.push(() => makeCharacter(
  55676. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55677. {
  55678. front: {
  55679. height: math.unit(5 + 6/12, "feet"),
  55680. name: "Front",
  55681. image: {
  55682. source: "./media/characters/kaja/front.svg",
  55683. extra: 1874/1514,
  55684. bottom: 117/1991
  55685. }
  55686. },
  55687. },
  55688. [
  55689. {
  55690. name: "Normal",
  55691. height: math.unit(5 + 6/12, "feet"),
  55692. default: true
  55693. },
  55694. ]
  55695. ))
  55696. characterMakers.push(() => makeCharacter(
  55697. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55698. {
  55699. front: {
  55700. height: math.unit(5 + 9/12, "feet"),
  55701. weight: math.unit(200, "lb"),
  55702. name: "Front",
  55703. image: {
  55704. source: "./media/characters/mark-smith/front.svg",
  55705. extra: 1004/943,
  55706. bottom: 58/1062
  55707. }
  55708. },
  55709. back: {
  55710. height: math.unit(5 + 9/12, "feet"),
  55711. weight: math.unit(200, "lb"),
  55712. name: "Back",
  55713. image: {
  55714. source: "./media/characters/mark-smith/back.svg",
  55715. extra: 1023/953,
  55716. bottom: 24/1047
  55717. }
  55718. },
  55719. head: {
  55720. height: math.unit(1.82, "feet"),
  55721. name: "Head",
  55722. image: {
  55723. source: "./media/characters/mark-smith/head.svg"
  55724. }
  55725. },
  55726. hand: {
  55727. height: math.unit(1.4, "feet"),
  55728. name: "Hand",
  55729. image: {
  55730. source: "./media/characters/mark-smith/hand.svg"
  55731. }
  55732. },
  55733. paw: {
  55734. height: math.unit(1.69, "feet"),
  55735. name: "Paw",
  55736. image: {
  55737. source: "./media/characters/mark-smith/paw.svg"
  55738. }
  55739. },
  55740. },
  55741. [
  55742. {
  55743. name: "Micro",
  55744. height: math.unit(0.25, "inches")
  55745. },
  55746. {
  55747. name: "Normal",
  55748. height: math.unit(5 + 9/12, "feet"),
  55749. default: true
  55750. },
  55751. {
  55752. name: "Macro",
  55753. height: math.unit(500, "feet")
  55754. },
  55755. ]
  55756. ))
  55757. characterMakers.push(() => makeCharacter(
  55758. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55759. {
  55760. frontNude: {
  55761. height: math.unit(6, "feet"),
  55762. name: "Front (Nude)",
  55763. image: {
  55764. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55765. extra: 1384/1321,
  55766. bottom: 57/1441
  55767. }
  55768. },
  55769. frontDressed: {
  55770. height: math.unit(6, "feet"),
  55771. name: "Front (Dressed)",
  55772. image: {
  55773. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55774. extra: 1384/1321,
  55775. bottom: 57/1441
  55776. }
  55777. },
  55778. },
  55779. [
  55780. {
  55781. name: "Normal",
  55782. height: math.unit(6, "feet"),
  55783. default: true
  55784. },
  55785. {
  55786. name: "Maximum",
  55787. height: math.unit(1776, "feet")
  55788. },
  55789. ]
  55790. ))
  55791. characterMakers.push(() => makeCharacter(
  55792. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55793. {
  55794. front: {
  55795. height: math.unit(2 + 4/12, "feet"),
  55796. weight: math.unit(350, "lb"),
  55797. name: "Front",
  55798. image: {
  55799. source: "./media/characters/devos/front.svg",
  55800. extra: 958/852,
  55801. bottom: 143/1101
  55802. }
  55803. },
  55804. },
  55805. [
  55806. {
  55807. name: "Base",
  55808. height: math.unit(2 + 4/12, "feet"),
  55809. default: true
  55810. },
  55811. ]
  55812. ))
  55813. characterMakers.push(() => makeCharacter(
  55814. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55815. {
  55816. front: {
  55817. height: math.unit(9 + 2/12, "feet"),
  55818. name: "Front",
  55819. image: {
  55820. source: "./media/characters/hiveheart/front.svg",
  55821. extra: 394/364,
  55822. bottom: 65/459
  55823. }
  55824. },
  55825. back: {
  55826. height: math.unit(9 + 2/12, "feet"),
  55827. name: "Back",
  55828. image: {
  55829. source: "./media/characters/hiveheart/back.svg",
  55830. extra: 374/357,
  55831. bottom: 63/437
  55832. }
  55833. },
  55834. },
  55835. [
  55836. {
  55837. name: "Base",
  55838. height: math.unit(9 + 2/12, "feet"),
  55839. default: true
  55840. },
  55841. ]
  55842. ))
  55843. characterMakers.push(() => makeCharacter(
  55844. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55845. {
  55846. front: {
  55847. height: math.unit(2.5, "inches"),
  55848. weight: math.unit(0.6, "oz"),
  55849. name: "Front",
  55850. image: {
  55851. source: "./media/characters/bryn/front.svg",
  55852. extra: 1480/1205,
  55853. bottom: 27/1507
  55854. }
  55855. },
  55856. back: {
  55857. height: math.unit(2.5, "inches"),
  55858. weight: math.unit(0.6, "oz"),
  55859. name: "Back",
  55860. image: {
  55861. source: "./media/characters/bryn/back.svg",
  55862. extra: 1475/1201,
  55863. bottom: 39/1514
  55864. }
  55865. },
  55866. foot: {
  55867. height: math.unit(0.4, "inches"),
  55868. name: "Foot",
  55869. image: {
  55870. source: "./media/characters/bryn/foot.svg"
  55871. }
  55872. },
  55873. },
  55874. [
  55875. {
  55876. name: "Normal",
  55877. height: math.unit(2.5, "inches"),
  55878. default: true
  55879. },
  55880. ]
  55881. ))
  55882. characterMakers.push(() => makeCharacter(
  55883. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55884. {
  55885. side: {
  55886. height: math.unit(7, "feet"),
  55887. weight: math.unit(657, "kg"),
  55888. name: "Side",
  55889. image: {
  55890. source: "./media/characters/delta/side.svg",
  55891. extra: 781/212,
  55892. bottom: 7/788
  55893. },
  55894. extraAttributes: {
  55895. "wingspan": {
  55896. name: "Wingspan",
  55897. power: 1,
  55898. type: "length",
  55899. base: math.unit(48, "feet")
  55900. },
  55901. "length": {
  55902. name: "Length",
  55903. power: 1,
  55904. type: "length",
  55905. base: math.unit(21, "feet")
  55906. },
  55907. "pawSize": {
  55908. name: "Paw Size",
  55909. power: 2,
  55910. type: "area",
  55911. base: math.unit(1.5*1.4, "feet^2")
  55912. },
  55913. }
  55914. },
  55915. },
  55916. [
  55917. {
  55918. name: "Normal",
  55919. height: math.unit(6, "feet"),
  55920. default: true
  55921. },
  55922. ]
  55923. ))
  55924. characterMakers.push(() => makeCharacter(
  55925. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55926. {
  55927. front: {
  55928. height: math.unit(6, "feet"),
  55929. name: "Front",
  55930. image: {
  55931. source: "./media/characters/pyrow/front.svg",
  55932. extra: 513/486,
  55933. bottom: 14/527
  55934. }
  55935. },
  55936. frontWing: {
  55937. height: math.unit(6, "feet"),
  55938. name: "Front (Wing)",
  55939. image: {
  55940. source: "./media/characters/pyrow/front-wing.svg",
  55941. extra: 539/383,
  55942. bottom: 20/559
  55943. }
  55944. },
  55945. back: {
  55946. height: math.unit(6, "feet"),
  55947. name: "Back",
  55948. image: {
  55949. source: "./media/characters/pyrow/back.svg",
  55950. extra: 500/473,
  55951. bottom: 9/509
  55952. }
  55953. },
  55954. },
  55955. [
  55956. {
  55957. name: "Normal",
  55958. height: math.unit(6, "feet"),
  55959. default: true
  55960. },
  55961. ]
  55962. ))
  55963. characterMakers.push(() => makeCharacter(
  55964. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55965. {
  55966. front: {
  55967. height: math.unit(5, "meters"),
  55968. weight: math.unit(3, "tonnes"),
  55969. name: "Front",
  55970. image: {
  55971. source: "./media/characters/velikan/front.svg",
  55972. extra: 867/744,
  55973. bottom: 71/938
  55974. },
  55975. extraAttributes: {
  55976. "shoeSize": {
  55977. name: "Shoe Size",
  55978. power: 1,
  55979. type: "length",
  55980. base: math.unit(135, "ShoeSizeUK"),
  55981. defaultUnit: "ShoeSizeUK"
  55982. },
  55983. }
  55984. },
  55985. },
  55986. [
  55987. {
  55988. name: "Normal",
  55989. height: math.unit(5, "meters"),
  55990. default: true
  55991. },
  55992. {
  55993. name: "Macro",
  55994. height: math.unit(1, "km")
  55995. },
  55996. {
  55997. name: "Mega Macro",
  55998. height: math.unit(100, "km")
  55999. },
  56000. {
  56001. name: "Giga Macro",
  56002. height: math.unit(2, "megameters")
  56003. },
  56004. {
  56005. name: "Planetary",
  56006. height: math.unit(22, "megameters")
  56007. },
  56008. {
  56009. name: "Solar",
  56010. height: math.unit(8, "gigameters")
  56011. },
  56012. {
  56013. name: "Cosmic",
  56014. height: math.unit(10, "zettameters")
  56015. },
  56016. {
  56017. name: "Omni",
  56018. height: math.unit(9e260, "multiverses")
  56019. },
  56020. ]
  56021. ))
  56022. characterMakers.push(() => makeCharacter(
  56023. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56024. {
  56025. front: {
  56026. height: math.unit(4 + 3/12, "feet"),
  56027. weight: math.unit(90, "lb"),
  56028. name: "Front",
  56029. image: {
  56030. source: "./media/characters/sabiki/front.svg",
  56031. extra: 1662/1423,
  56032. bottom: 65/1727
  56033. }
  56034. },
  56035. },
  56036. [
  56037. {
  56038. name: "Normal",
  56039. height: math.unit(4 + 3/12, "feet"),
  56040. default: true
  56041. },
  56042. ]
  56043. ))
  56044. characterMakers.push(() => makeCharacter(
  56045. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56046. {
  56047. frontSfw: {
  56048. height: math.unit(2, "mm"),
  56049. name: "Front (SFW)",
  56050. image: {
  56051. source: "./media/characters/carmel/front-sfw.svg",
  56052. extra: 1131/1006,
  56053. bottom: 66/1197
  56054. }
  56055. },
  56056. frontNsfw: {
  56057. height: math.unit(2, "mm"),
  56058. name: "Front (NSFW)",
  56059. image: {
  56060. source: "./media/characters/carmel/front-nsfw.svg",
  56061. extra: 1131/1006,
  56062. bottom: 66/1197
  56063. }
  56064. },
  56065. foot: {
  56066. height: math.unit(0.3, "mm"),
  56067. name: "Foot",
  56068. image: {
  56069. source: "./media/characters/carmel/foot.svg"
  56070. }
  56071. },
  56072. tongue: {
  56073. height: math.unit(0.71, "mm"),
  56074. name: "Tongue",
  56075. image: {
  56076. source: "./media/characters/carmel/tongue.svg"
  56077. }
  56078. },
  56079. dick: {
  56080. height: math.unit(0.085, "mm"),
  56081. name: "Dick",
  56082. image: {
  56083. source: "./media/characters/carmel/dick.svg"
  56084. }
  56085. },
  56086. },
  56087. [
  56088. {
  56089. name: "Micro",
  56090. height: math.unit(2, "mm"),
  56091. default: true
  56092. },
  56093. {
  56094. name: "Normal",
  56095. height: math.unit(4 + 8/12, "feet")
  56096. },
  56097. {
  56098. name: "Mega Macro",
  56099. height: math.unit(250, "feet")
  56100. },
  56101. {
  56102. name: "BIGGER",
  56103. height: math.unit(1000, "feet")
  56104. },
  56105. {
  56106. name: "BIGGEST",
  56107. height: math.unit(2, "miles")
  56108. },
  56109. ]
  56110. ))
  56111. characterMakers.push(() => makeCharacter(
  56112. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56113. {
  56114. front: {
  56115. height: math.unit(6.5, "feet"),
  56116. weight: math.unit(198, "lb"),
  56117. name: "Front",
  56118. image: {
  56119. source: "./media/characters/tamani/anthro.svg",
  56120. extra: 930/890,
  56121. bottom: 34/964
  56122. },
  56123. form: "anthro",
  56124. default: true
  56125. },
  56126. side: {
  56127. height: math.unit(6, "feet"),
  56128. weight: math.unit(198*2, "lb"),
  56129. name: "Side",
  56130. image: {
  56131. source: "./media/characters/tamani/feral.svg",
  56132. extra: 559/519,
  56133. bottom: 43/602
  56134. },
  56135. form: "feral"
  56136. },
  56137. },
  56138. [
  56139. {
  56140. name: "Normal",
  56141. height: math.unit(6.5, "feet"),
  56142. default: true,
  56143. form: "anthro"
  56144. },
  56145. {
  56146. name: "Normal",
  56147. height: math.unit(6, "feet"),
  56148. default: true,
  56149. form: "feral"
  56150. },
  56151. ],
  56152. {
  56153. "anthro": {
  56154. name: "Anthro",
  56155. default: true
  56156. },
  56157. "feral": {
  56158. name: "Feral",
  56159. },
  56160. }
  56161. ))
  56162. characterMakers.push(() => makeCharacter(
  56163. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56164. {
  56165. front: {
  56166. height: math.unit(4 + 1/12, "feet"),
  56167. weight: math.unit(114, "lb"),
  56168. name: "Front",
  56169. image: {
  56170. source: "./media/characters/dex/front.svg",
  56171. extra: 787/680,
  56172. bottom: 18/805
  56173. }
  56174. },
  56175. side: {
  56176. height: math.unit(4 + 1/12, "feet"),
  56177. weight: math.unit(114, "lb"),
  56178. name: "Side",
  56179. image: {
  56180. source: "./media/characters/dex/side.svg",
  56181. extra: 785/680,
  56182. bottom: 12/797
  56183. }
  56184. },
  56185. back: {
  56186. height: math.unit(4 + 1/12, "feet"),
  56187. weight: math.unit(114, "lb"),
  56188. name: "Back",
  56189. image: {
  56190. source: "./media/characters/dex/back.svg",
  56191. extra: 785/681,
  56192. bottom: 17/802
  56193. }
  56194. },
  56195. loungewear: {
  56196. height: math.unit(4 + 1/12, "feet"),
  56197. weight: math.unit(114, "lb"),
  56198. name: "Loungewear",
  56199. image: {
  56200. source: "./media/characters/dex/loungewear.svg",
  56201. extra: 787/680,
  56202. bottom: 18/805
  56203. }
  56204. },
  56205. workout: {
  56206. height: math.unit(4 + 1/12, "feet"),
  56207. weight: math.unit(114, "lb"),
  56208. name: "Workout",
  56209. image: {
  56210. source: "./media/characters/dex/workout.svg",
  56211. extra: 787/680,
  56212. bottom: 18/805
  56213. }
  56214. },
  56215. schoolUniform: {
  56216. height: math.unit(4 + 1/12, "feet"),
  56217. weight: math.unit(114, "lb"),
  56218. name: "School-uniform",
  56219. image: {
  56220. source: "./media/characters/dex/school-uniform.svg",
  56221. extra: 787/680,
  56222. bottom: 18/805
  56223. }
  56224. },
  56225. maw: {
  56226. height: math.unit(0.55, "feet"),
  56227. name: "Maw",
  56228. image: {
  56229. source: "./media/characters/dex/maw.svg"
  56230. }
  56231. },
  56232. paw: {
  56233. height: math.unit(0.87, "feet"),
  56234. name: "Paw",
  56235. image: {
  56236. source: "./media/characters/dex/paw.svg"
  56237. }
  56238. },
  56239. bust: {
  56240. height: math.unit(1.67, "feet"),
  56241. name: "Bust",
  56242. image: {
  56243. source: "./media/characters/dex/bust.svg"
  56244. }
  56245. },
  56246. },
  56247. [
  56248. {
  56249. name: "Normal",
  56250. height: math.unit(4 + 1/12, "feet"),
  56251. default: true
  56252. },
  56253. ]
  56254. ))
  56255. characterMakers.push(() => makeCharacter(
  56256. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56257. {
  56258. front: {
  56259. height: math.unit(4 + 3/12, "feet"),
  56260. weight: math.unit(60, "lb"),
  56261. name: "Front",
  56262. image: {
  56263. source: "./media/characters/silke/front.svg",
  56264. extra: 1334/1122,
  56265. bottom: 21/1355
  56266. }
  56267. },
  56268. back: {
  56269. height: math.unit(4 + 3/12, "feet"),
  56270. weight: math.unit(60, "lb"),
  56271. name: "Back",
  56272. image: {
  56273. source: "./media/characters/silke/back.svg",
  56274. extra: 1328/1092,
  56275. bottom: 16/1344
  56276. }
  56277. },
  56278. dressed: {
  56279. height: math.unit(4 + 3/12, "feet"),
  56280. weight: math.unit(60, "lb"),
  56281. name: "Dressed",
  56282. image: {
  56283. source: "./media/characters/silke/dressed.svg",
  56284. extra: 1334/1122,
  56285. bottom: 43/1377
  56286. }
  56287. },
  56288. },
  56289. [
  56290. {
  56291. name: "Normal",
  56292. height: math.unit(4 + 3/12, "feet"),
  56293. default: true
  56294. },
  56295. ]
  56296. ))
  56297. characterMakers.push(() => makeCharacter(
  56298. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56299. {
  56300. front: {
  56301. height: math.unit(1.58, "meters"),
  56302. weight: math.unit(47, "kg"),
  56303. name: "Front",
  56304. image: {
  56305. source: "./media/characters/wireshark/front.svg",
  56306. extra: 883/838,
  56307. bottom: 66/949
  56308. }
  56309. },
  56310. },
  56311. [
  56312. {
  56313. name: "Normal",
  56314. height: math.unit(1.58, "meters"),
  56315. default: true
  56316. },
  56317. ]
  56318. ))
  56319. characterMakers.push(() => makeCharacter(
  56320. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56321. {
  56322. front: {
  56323. height: math.unit(6, "meters"),
  56324. weight: math.unit(15000, "kg"),
  56325. name: "Front",
  56326. image: {
  56327. source: "./media/characters/gallagher/front.svg",
  56328. extra: 532/493,
  56329. bottom: 0/532
  56330. }
  56331. },
  56332. },
  56333. [
  56334. {
  56335. name: "Normal",
  56336. height: math.unit(6, "meters"),
  56337. default: true
  56338. },
  56339. ]
  56340. ))
  56341. characterMakers.push(() => makeCharacter(
  56342. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56343. {
  56344. front: {
  56345. height: math.unit(2.4, "meters"),
  56346. weight: math.unit(270, "kg"),
  56347. name: "Front",
  56348. image: {
  56349. source: "./media/characters/alice/front.svg",
  56350. extra: 950/900,
  56351. bottom: 36/986
  56352. }
  56353. },
  56354. side: {
  56355. height: math.unit(2.4, "meters"),
  56356. weight: math.unit(270, "kg"),
  56357. name: "Side",
  56358. image: {
  56359. source: "./media/characters/alice/side.svg",
  56360. extra: 921/876,
  56361. bottom: 19/940
  56362. }
  56363. },
  56364. dressed: {
  56365. height: math.unit(2.4, "meters"),
  56366. weight: math.unit(270, "kg"),
  56367. name: "Dressed",
  56368. image: {
  56369. source: "./media/characters/alice/dressed.svg",
  56370. extra: 905/850,
  56371. bottom: 81/986
  56372. }
  56373. },
  56374. fishnet: {
  56375. height: math.unit(2.4, "meters"),
  56376. weight: math.unit(270, "kg"),
  56377. name: "Fishnet",
  56378. image: {
  56379. source: "./media/characters/alice/fishnet.svg",
  56380. extra: 905/850,
  56381. bottom: 81/986
  56382. }
  56383. },
  56384. },
  56385. [
  56386. {
  56387. name: "Normal",
  56388. height: math.unit(2.4, "meters"),
  56389. default: true
  56390. },
  56391. ]
  56392. ))
  56393. characterMakers.push(() => makeCharacter(
  56394. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56395. {
  56396. front: {
  56397. height: math.unit(175.25, "feet"),
  56398. name: "Front",
  56399. image: {
  56400. source: "./media/characters/fio/front.svg",
  56401. extra: 1883/1591,
  56402. bottom: 34/1917
  56403. }
  56404. },
  56405. },
  56406. [
  56407. {
  56408. name: "Normal",
  56409. height: math.unit(175.25, "cm"),
  56410. default: true
  56411. },
  56412. ]
  56413. ))
  56414. characterMakers.push(() => makeCharacter(
  56415. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56416. {
  56417. side: {
  56418. height: math.unit(6, "meters"),
  56419. weight: math.unit(3400, "kg"),
  56420. preyCapacity: math.unit(1700, "liters"),
  56421. name: "Side",
  56422. image: {
  56423. source: "./media/characters/hass/side.svg",
  56424. extra: 1058/997,
  56425. bottom: 177/1235
  56426. }
  56427. },
  56428. feeding: {
  56429. height: math.unit(6*0.63, "meters"),
  56430. weight: math.unit(3400, "kg"),
  56431. preyCapacity: math.unit(1700, "liters"),
  56432. name: "Feeding",
  56433. image: {
  56434. source: "./media/characters/hass/feeding.svg",
  56435. extra: 689/579,
  56436. bottom: 146/835
  56437. }
  56438. },
  56439. guts: {
  56440. height: math.unit(6, "meters"),
  56441. weight: math.unit(3400, "kg"),
  56442. name: "Guts",
  56443. image: {
  56444. source: "./media/characters/hass/guts.svg",
  56445. extra: 1223/1198,
  56446. bottom: 182/1405
  56447. }
  56448. },
  56449. dickFront: {
  56450. height: math.unit(1.4, "meters"),
  56451. name: "Dick (Front)",
  56452. image: {
  56453. source: "./media/characters/hass/dick-front.svg"
  56454. }
  56455. },
  56456. dickSide: {
  56457. height: math.unit(1.3, "meters"),
  56458. name: "Dick (Side)",
  56459. image: {
  56460. source: "./media/characters/hass/dick-side.svg"
  56461. }
  56462. },
  56463. dickBack: {
  56464. height: math.unit(1.4, "meters"),
  56465. name: "Dick (Back)",
  56466. image: {
  56467. source: "./media/characters/hass/dick-back.svg"
  56468. }
  56469. },
  56470. },
  56471. [
  56472. {
  56473. name: "Normal",
  56474. height: math.unit(6, "meters"),
  56475. default: true
  56476. },
  56477. ]
  56478. ))
  56479. characterMakers.push(() => makeCharacter(
  56480. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56481. {
  56482. front: {
  56483. height: math.unit(4, "feet"),
  56484. weight: math.unit(60, "lb"),
  56485. name: "Front",
  56486. image: {
  56487. source: "./media/characters/hickory-finnegan/front.svg",
  56488. extra: 444/411,
  56489. bottom: 10/454
  56490. }
  56491. },
  56492. side: {
  56493. height: math.unit(4, "feet"),
  56494. weight: math.unit(60, "lb"),
  56495. name: "Side",
  56496. image: {
  56497. source: "./media/characters/hickory-finnegan/side.svg",
  56498. extra: 444/411,
  56499. bottom: 10/454
  56500. }
  56501. },
  56502. back: {
  56503. height: math.unit(4, "feet"),
  56504. weight: math.unit(60, "lb"),
  56505. name: "Back",
  56506. image: {
  56507. source: "./media/characters/hickory-finnegan/back.svg",
  56508. extra: 444/411,
  56509. bottom: 10/454
  56510. }
  56511. },
  56512. },
  56513. [
  56514. {
  56515. name: "Normal",
  56516. height: math.unit(4, "feet"),
  56517. default: true
  56518. },
  56519. ]
  56520. ))
  56521. characterMakers.push(() => makeCharacter(
  56522. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56523. {
  56524. snivy_front: {
  56525. height: math.unit(2, "feet"),
  56526. weight: math.unit(17.9, "lb"),
  56527. name: "Front",
  56528. image: {
  56529. source: "./media/characters/robin-phox/snivy-front.svg",
  56530. extra: 569/504,
  56531. bottom: 33/602
  56532. },
  56533. form: "snivy",
  56534. default: true
  56535. },
  56536. snivy_frontNsfw: {
  56537. height: math.unit(2, "feet"),
  56538. weight: math.unit(17.9, "lb"),
  56539. name: "Front (NSFW)",
  56540. image: {
  56541. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56542. extra: 569/504,
  56543. bottom: 33/602
  56544. },
  56545. form: "snivy",
  56546. },
  56547. snivy_back: {
  56548. height: math.unit(2, "feet"),
  56549. weight: math.unit(17.9, "lb"),
  56550. name: "Back",
  56551. image: {
  56552. source: "./media/characters/robin-phox/snivy-back.svg",
  56553. extra: 577/508,
  56554. bottom: 21/598
  56555. },
  56556. form: "snivy",
  56557. },
  56558. snivy_foot: {
  56559. height: math.unit(0.68, "feet"),
  56560. name: "Foot",
  56561. image: {
  56562. source: "./media/characters/robin-phox/snivy-foot.svg"
  56563. },
  56564. form: "snivy",
  56565. },
  56566. snivy_sole: {
  56567. height: math.unit(0.68, "feet"),
  56568. name: "Sole",
  56569. image: {
  56570. source: "./media/characters/robin-phox/snivy-sole.svg"
  56571. },
  56572. form: "snivy",
  56573. },
  56574. yoshi_front: {
  56575. height: math.unit(6, "feet"),
  56576. weight: math.unit(150, "lb"),
  56577. name: "Front",
  56578. image: {
  56579. source: "./media/characters/robin-phox/yoshi-front.svg",
  56580. extra: 890/792,
  56581. bottom: 29/919
  56582. },
  56583. form: "yoshi",
  56584. default: true
  56585. },
  56586. yoshi_frontNsfw: {
  56587. height: math.unit(6, "feet"),
  56588. weight: math.unit(150, "lb"),
  56589. name: "Front (NSFW)",
  56590. image: {
  56591. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56592. extra: 890/792,
  56593. bottom: 29/919
  56594. },
  56595. form: "yoshi",
  56596. },
  56597. yoshi_back: {
  56598. height: math.unit(6, "feet"),
  56599. weight: math.unit(150, "lb"),
  56600. name: "Back",
  56601. image: {
  56602. source: "./media/characters/robin-phox/yoshi-back.svg",
  56603. extra: 890/792,
  56604. bottom: 29/919
  56605. },
  56606. form: "yoshi",
  56607. },
  56608. yoshi_foot: {
  56609. height: math.unit(1.5, "feet"),
  56610. name: "Foot",
  56611. image: {
  56612. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56613. },
  56614. form: "yoshi",
  56615. },
  56616. delphox_front: {
  56617. height: math.unit(4 + 11/12, "feet"),
  56618. weight: math.unit(86, "lb"),
  56619. name: "Front",
  56620. image: {
  56621. source: "./media/characters/robin-phox/delphox-front.svg",
  56622. extra: 1266/1069,
  56623. bottom: 32/1298
  56624. },
  56625. form: "delphox",
  56626. default: true
  56627. },
  56628. delphox_frontNsfw: {
  56629. height: math.unit(4 + 11/12, "feet"),
  56630. weight: math.unit(86, "lb"),
  56631. name: "Front (NSFW)",
  56632. image: {
  56633. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56634. extra: 1266/1069,
  56635. bottom: 32/1298
  56636. },
  56637. form: "delphox",
  56638. },
  56639. delphox_back: {
  56640. height: math.unit(4 + 11/12, "feet"),
  56641. weight: math.unit(86, "lb"),
  56642. name: "Back",
  56643. image: {
  56644. source: "./media/characters/robin-phox/delphox-back.svg",
  56645. extra: 1269/1083,
  56646. bottom: 15/1284
  56647. },
  56648. form: "delphox",
  56649. },
  56650. mienshao_front: {
  56651. height: math.unit(4 + 7/12, "feet"),
  56652. weight: math.unit(78.3, "lb"),
  56653. name: "Front",
  56654. image: {
  56655. source: "./media/characters/robin-phox/mienshao-front.svg",
  56656. extra: 1052/970,
  56657. bottom: 108/1160
  56658. },
  56659. form: "mienshao",
  56660. default: true
  56661. },
  56662. mienshao_frontNsfw: {
  56663. height: math.unit(4 + 7/12, "feet"),
  56664. weight: math.unit(78.3, "lb"),
  56665. name: "Front (NSFW)",
  56666. image: {
  56667. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56668. extra: 1052/970,
  56669. bottom: 108/1160
  56670. },
  56671. form: "mienshao",
  56672. },
  56673. mienshao_back: {
  56674. height: math.unit(4 + 7/12, "feet"),
  56675. weight: math.unit(78.3, "lb"),
  56676. name: "Back",
  56677. image: {
  56678. source: "./media/characters/robin-phox/mienshao-back.svg",
  56679. extra: 1102/982,
  56680. bottom: 32/1134
  56681. },
  56682. form: "mienshao",
  56683. },
  56684. inteleon_front: {
  56685. height: math.unit(6 + 3/12, "feet"),
  56686. weight: math.unit(99.6, "lb"),
  56687. name: "Front",
  56688. image: {
  56689. source: "./media/characters/robin-phox/inteleon-front.svg",
  56690. extra: 910/799,
  56691. bottom: 76/986
  56692. },
  56693. form: "inteleon",
  56694. default: true
  56695. },
  56696. inteleon_frontNsfw: {
  56697. height: math.unit(6 + 3/12, "feet"),
  56698. weight: math.unit(99.6, "lb"),
  56699. name: "Front (NSFW)",
  56700. image: {
  56701. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56702. extra: 910/799,
  56703. bottom: 76/986
  56704. },
  56705. form: "inteleon",
  56706. },
  56707. inteleon_back: {
  56708. height: math.unit(6 + 3/12, "feet"),
  56709. weight: math.unit(99.6, "lb"),
  56710. name: "Back",
  56711. image: {
  56712. source: "./media/characters/robin-phox/inteleon-back.svg",
  56713. extra: 907/796,
  56714. bottom: 25/932
  56715. },
  56716. form: "inteleon",
  56717. },
  56718. reshiram_front: {
  56719. height: math.unit(10 + 6/12, "feet"),
  56720. weight: math.unit(727.5, "lb"),
  56721. name: "Front",
  56722. image: {
  56723. source: "./media/characters/robin-phox/reshiram-front.svg",
  56724. extra: 1198/940,
  56725. bottom: 123/1321
  56726. },
  56727. form: "reshiram",
  56728. },
  56729. reshiram_frontNsfw: {
  56730. height: math.unit(10 + 6/12, "feet"),
  56731. weight: math.unit(727.5, "lb"),
  56732. name: "Front-nsfw",
  56733. image: {
  56734. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56735. extra: 1198/940,
  56736. bottom: 123/1321
  56737. },
  56738. form: "reshiram",
  56739. },
  56740. reshiram_back: {
  56741. height: math.unit(10 + 6/12, "feet"),
  56742. weight: math.unit(727.5, "lb"),
  56743. name: "Back",
  56744. image: {
  56745. source: "./media/characters/robin-phox/reshiram-back.svg",
  56746. extra: 1024/904,
  56747. bottom: 85/1109
  56748. },
  56749. form: "reshiram",
  56750. },
  56751. samurott_front: {
  56752. height: math.unit(8, "feet"),
  56753. weight: math.unit(208.6, "lb"),
  56754. name: "Front",
  56755. image: {
  56756. source: "./media/characters/robin-phox/samurott-front.svg",
  56757. extra: 1048/984,
  56758. bottom: 100/1148
  56759. },
  56760. form: "samurott",
  56761. },
  56762. samurott_frontNsfw: {
  56763. height: math.unit(8, "feet"),
  56764. weight: math.unit(208.6, "lb"),
  56765. name: "Front-nsfw",
  56766. image: {
  56767. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56768. extra: 1048/984,
  56769. bottom: 100/1148
  56770. },
  56771. form: "samurott",
  56772. },
  56773. samurott_back: {
  56774. height: math.unit(8, "feet"),
  56775. weight: math.unit(208.6, "lb"),
  56776. name: "Back",
  56777. image: {
  56778. source: "./media/characters/robin-phox/samurott-back.svg",
  56779. extra: 1110/1042,
  56780. bottom: 12/1122
  56781. },
  56782. form: "samurott",
  56783. },
  56784. samurott_feral: {
  56785. height: math.unit(4 + 11/12, "feet"),
  56786. weight: math.unit(208.6, "lb"),
  56787. name: "Feral",
  56788. image: {
  56789. source: "./media/characters/robin-phox/samurott-feral.svg",
  56790. extra: 766/681,
  56791. bottom: 108/874
  56792. },
  56793. form: "samurott",
  56794. },
  56795. },
  56796. [
  56797. {
  56798. name: "Normal",
  56799. height: math.unit(2, "feet"),
  56800. default: true,
  56801. form: "snivy"
  56802. },
  56803. {
  56804. name: "Normal",
  56805. height: math.unit(6, "feet"),
  56806. default: true,
  56807. form: "yoshi"
  56808. },
  56809. {
  56810. name: "Normal",
  56811. height: math.unit(4 + 11/12, "feet"),
  56812. default: true,
  56813. form: "delphox"
  56814. },
  56815. {
  56816. name: "Normal",
  56817. height: math.unit(4 + 7/12, "feet"),
  56818. default: true,
  56819. form: "mienshao"
  56820. },
  56821. {
  56822. name: "Normal",
  56823. height: math.unit(6 + 3/12, "feet"),
  56824. default: true,
  56825. form: "inteleon"
  56826. },
  56827. {
  56828. name: "Normal",
  56829. height: math.unit(10 + 6/12, "feet"),
  56830. default: true,
  56831. form: "reshiram"
  56832. },
  56833. {
  56834. name: "Normal",
  56835. height: math.unit(8, "feet"),
  56836. default: true,
  56837. form: "samurott"
  56838. },
  56839. {
  56840. name: "Macro",
  56841. height: math.unit(500, "feet"),
  56842. allForms: true
  56843. },
  56844. {
  56845. name: "Mega Macro",
  56846. height: math.unit(10, "earths"),
  56847. allForms: true
  56848. },
  56849. {
  56850. name: "Giga Macro",
  56851. height: math.unit(1, "galaxy"),
  56852. allForms: true
  56853. },
  56854. {
  56855. name: "Godly Macro",
  56856. height: math.unit(1e10, "multiverses"),
  56857. allForms: true
  56858. },
  56859. ],
  56860. {
  56861. "snivy": {
  56862. name: "Snivy",
  56863. default: true
  56864. },
  56865. "yoshi": {
  56866. name: "Yoshi",
  56867. },
  56868. "delphox": {
  56869. name: "Delphox",
  56870. },
  56871. "mienshao": {
  56872. name: "Mienshao",
  56873. },
  56874. "inteleon": {
  56875. name: "Inteleon",
  56876. },
  56877. "reshiram": {
  56878. name: "Reshiram",
  56879. },
  56880. "samurott": {
  56881. name: "Samurott",
  56882. },
  56883. }
  56884. ))
  56885. characterMakers.push(() => makeCharacter(
  56886. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56887. {
  56888. front: {
  56889. height: math.unit(4, "feet"),
  56890. name: "Front",
  56891. image: {
  56892. source: "./media/characters/ash-leung/front.svg",
  56893. extra: 1916/1792,
  56894. bottom: 50/1966
  56895. }
  56896. },
  56897. },
  56898. [
  56899. {
  56900. name: "Atomic",
  56901. height: math.unit(1, "angstrom")
  56902. },
  56903. {
  56904. name: "Microscopic",
  56905. height: math.unit(4000, "angstroms")
  56906. },
  56907. {
  56908. name: "Speck",
  56909. height: math.unit(1, "mm")
  56910. },
  56911. {
  56912. name: "Small",
  56913. height: math.unit(1, "inch")
  56914. },
  56915. {
  56916. name: "Normal",
  56917. height: math.unit(4, "feet"),
  56918. default: true
  56919. },
  56920. ]
  56921. ))
  56922. characterMakers.push(() => makeCharacter(
  56923. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56924. {
  56925. frontDressed: {
  56926. height: math.unit(2.08, "meters"),
  56927. weight: math.unit(175, "lb"),
  56928. name: "Front (Dressed)",
  56929. image: {
  56930. source: "./media/characters/carie/front-dressed.svg",
  56931. extra: 456/417,
  56932. bottom: 7/463
  56933. }
  56934. },
  56935. backDressed: {
  56936. height: math.unit(2.08, "meters"),
  56937. weight: math.unit(175, "lb"),
  56938. name: "Back (Dressed)",
  56939. image: {
  56940. source: "./media/characters/carie/back-dressed.svg",
  56941. extra: 455/414,
  56942. bottom: 11/466
  56943. }
  56944. },
  56945. front: {
  56946. height: math.unit(2, "meters"),
  56947. weight: math.unit(175, "lb"),
  56948. name: "Front",
  56949. image: {
  56950. source: "./media/characters/carie/front.svg",
  56951. extra: 438/399,
  56952. bottom: 12/450
  56953. }
  56954. },
  56955. back: {
  56956. height: math.unit(2, "meters"),
  56957. weight: math.unit(175, "lb"),
  56958. name: "Back",
  56959. image: {
  56960. source: "./media/characters/carie/back.svg",
  56961. extra: 438/397,
  56962. bottom: 7/445
  56963. }
  56964. },
  56965. },
  56966. [
  56967. {
  56968. name: "Normal",
  56969. height: math.unit(2.08, "meters"),
  56970. default: true
  56971. },
  56972. {
  56973. name: "Macro",
  56974. height: math.unit(2.08e3, "meters")
  56975. },
  56976. {
  56977. name: "Mega Macro",
  56978. height: math.unit(2.08e6, "meters")
  56979. },
  56980. {
  56981. name: "Giga Macro",
  56982. height: math.unit(2.08e9, "meters")
  56983. },
  56984. {
  56985. name: "Tera Macro",
  56986. height: math.unit(2.08e12, "meters")
  56987. },
  56988. {
  56989. name: "Peta Macro",
  56990. height: math.unit(2.08e15, "meters")
  56991. },
  56992. {
  56993. name: "Exa Macro",
  56994. height: math.unit(2.08e18, "meters")
  56995. },
  56996. {
  56997. name: "Zetta Macro",
  56998. height: math.unit(2.08e21, "meters")
  56999. },
  57000. {
  57001. name: "Yotta Macro",
  57002. height: math.unit(2.08e24, "meters")
  57003. },
  57004. ]
  57005. ))
  57006. characterMakers.push(() => makeCharacter(
  57007. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57008. {
  57009. front: {
  57010. height: math.unit(5 + 2/12, "feet"),
  57011. weight: math.unit(120, "lb"),
  57012. name: "Front",
  57013. image: {
  57014. source: "./media/characters/sai-bree/front.svg",
  57015. extra: 1843/1702,
  57016. bottom: 91/1934
  57017. }
  57018. },
  57019. back: {
  57020. height: math.unit(5 + 2/12, "feet"),
  57021. weight: math.unit(120, "lb"),
  57022. name: "Back",
  57023. image: {
  57024. source: "./media/characters/sai-bree/back.svg",
  57025. extra: 1809/1637,
  57026. bottom: 56/1865
  57027. }
  57028. },
  57029. },
  57030. [
  57031. {
  57032. name: "Normal",
  57033. height: math.unit(5 + 2/12, "feet"),
  57034. default: true
  57035. },
  57036. {
  57037. name: "Macro",
  57038. height: math.unit(500, "feet")
  57039. },
  57040. ]
  57041. ))
  57042. characterMakers.push(() => makeCharacter(
  57043. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57044. {
  57045. side: {
  57046. height: math.unit(0.77, "meters"),
  57047. weight: math.unit(120, "lb"),
  57048. name: "Side",
  57049. image: {
  57050. source: "./media/characters/davwyn/side.svg",
  57051. extra: 1557/1225,
  57052. bottom: 131/1688
  57053. }
  57054. },
  57055. front: {
  57056. height: math.unit(0.835410, "meters"),
  57057. weight: math.unit(120, "lb"),
  57058. name: "Front",
  57059. image: {
  57060. source: "./media/characters/davwyn/front.svg",
  57061. extra: 870/843,
  57062. bottom: 175/1045
  57063. }
  57064. },
  57065. },
  57066. [
  57067. {
  57068. name: "Minidrake",
  57069. height: math.unit(0.77/4, "meters")
  57070. },
  57071. {
  57072. name: "Normal",
  57073. height: math.unit(0.77, "meters"),
  57074. default: true
  57075. },
  57076. ]
  57077. ))
  57078. characterMakers.push(() => makeCharacter(
  57079. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57080. {
  57081. front: {
  57082. height: math.unit(10 + 3/12, "feet"),
  57083. weight: math.unit(2857, "lb"),
  57084. name: "Front",
  57085. image: {
  57086. source: "./media/characters/balans/front.svg",
  57087. extra: 427/402,
  57088. bottom: 26/453
  57089. }
  57090. },
  57091. side: {
  57092. height: math.unit(10 + 3/12, "feet"),
  57093. weight: math.unit(2857, "lb"),
  57094. name: "Side",
  57095. image: {
  57096. source: "./media/characters/balans/side.svg",
  57097. extra: 397/371,
  57098. bottom: 17/414
  57099. }
  57100. },
  57101. back: {
  57102. height: math.unit(10 + 3/12, "feet"),
  57103. weight: math.unit(2857, "lb"),
  57104. name: "Back",
  57105. image: {
  57106. source: "./media/characters/balans/back.svg",
  57107. extra: 408/381,
  57108. bottom: 14/422
  57109. }
  57110. },
  57111. hand: {
  57112. height: math.unit(1.15, "feet"),
  57113. name: "Hand",
  57114. image: {
  57115. source: "./media/characters/balans/hand.svg"
  57116. }
  57117. },
  57118. footRest: {
  57119. height: math.unit(3.1, "feet"),
  57120. name: "Foot (Rest)",
  57121. image: {
  57122. source: "./media/characters/balans/foot-rest.svg"
  57123. }
  57124. },
  57125. footActive: {
  57126. height: math.unit(3.5, "feet"),
  57127. name: "Foot (Active)",
  57128. image: {
  57129. source: "./media/characters/balans/foot-active.svg"
  57130. }
  57131. },
  57132. },
  57133. [
  57134. {
  57135. name: "Normal",
  57136. height: math.unit(10 + 3/12, "feet"),
  57137. default: true
  57138. },
  57139. ]
  57140. ))
  57141. characterMakers.push(() => makeCharacter(
  57142. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57143. {
  57144. side: {
  57145. height: math.unit(9, "meters"),
  57146. weight: math.unit(114, "tonnes"),
  57147. name: "Side",
  57148. image: {
  57149. source: "./media/characters/eldkveikir/side.svg",
  57150. extra: 1927/338,
  57151. bottom: 42/1969
  57152. }
  57153. },
  57154. sitting: {
  57155. height: math.unit(13.4, "meters"),
  57156. weight: math.unit(114, "tonnes"),
  57157. name: "Sitting",
  57158. image: {
  57159. source: "./media/characters/eldkveikir/sitting.svg",
  57160. extra: 1108/963,
  57161. bottom: 610/1718
  57162. }
  57163. },
  57164. maw: {
  57165. height: math.unit(8.36, "meters"),
  57166. name: "Maw",
  57167. image: {
  57168. source: "./media/characters/eldkveikir/maw.svg"
  57169. }
  57170. },
  57171. hand: {
  57172. height: math.unit(4.84, "meters"),
  57173. name: "Hand",
  57174. image: {
  57175. source: "./media/characters/eldkveikir/hand.svg"
  57176. }
  57177. },
  57178. foot: {
  57179. height: math.unit(6.9, "meters"),
  57180. name: "Foot",
  57181. image: {
  57182. source: "./media/characters/eldkveikir/foot.svg"
  57183. }
  57184. },
  57185. genitals: {
  57186. height: math.unit(9.6, "meters"),
  57187. name: "Genitals",
  57188. image: {
  57189. source: "./media/characters/eldkveikir/genitals.svg"
  57190. }
  57191. },
  57192. },
  57193. [
  57194. {
  57195. name: "Normal",
  57196. height: math.unit(9, "meters"),
  57197. default: true
  57198. },
  57199. ]
  57200. ))
  57201. characterMakers.push(() => makeCharacter(
  57202. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57203. {
  57204. front: {
  57205. height: math.unit(14, "feet"),
  57206. weight: math.unit(4100, "lb"),
  57207. name: "Front",
  57208. image: {
  57209. source: "./media/characters/arrow/front.svg",
  57210. extra: 330/318,
  57211. bottom: 56/386
  57212. }
  57213. },
  57214. },
  57215. [
  57216. {
  57217. name: "Normal",
  57218. height: math.unit(14, "feet"),
  57219. default: true
  57220. },
  57221. {
  57222. name: "Minimacro",
  57223. height: math.unit(63, "feet")
  57224. },
  57225. {
  57226. name: "Macro",
  57227. height: math.unit(630, "feet")
  57228. },
  57229. {
  57230. name: "Megamacro",
  57231. height: math.unit(12600, "feet")
  57232. },
  57233. {
  57234. name: "Gigamacro",
  57235. height: math.unit(18000, "miles")
  57236. },
  57237. ]
  57238. ))
  57239. characterMakers.push(() => makeCharacter(
  57240. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57241. {
  57242. front: {
  57243. height: math.unit(10, "feet"),
  57244. weight: math.unit(2.4, "tons"),
  57245. name: "Front",
  57246. image: {
  57247. source: "./media/characters/3yk-k0-unit/front.svg",
  57248. extra: 573/561,
  57249. bottom: 33/606
  57250. }
  57251. },
  57252. back: {
  57253. height: math.unit(10, "feet"),
  57254. weight: math.unit(2.4, "tons"),
  57255. name: "Back",
  57256. image: {
  57257. source: "./media/characters/3yk-k0-unit/back.svg",
  57258. extra: 614/573,
  57259. bottom: 32/646
  57260. }
  57261. },
  57262. maw: {
  57263. height: math.unit(2.15, "feet"),
  57264. name: "Maw",
  57265. image: {
  57266. source: "./media/characters/3yk-k0-unit/maw.svg"
  57267. }
  57268. },
  57269. },
  57270. [
  57271. {
  57272. name: "Normal",
  57273. height: math.unit(10, "feet"),
  57274. default: true
  57275. },
  57276. ]
  57277. ))
  57278. characterMakers.push(() => makeCharacter(
  57279. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57280. {
  57281. front: {
  57282. height: math.unit(8 + 8/12, "feet"),
  57283. name: "Front",
  57284. image: {
  57285. source: "./media/characters/nemo/front.svg",
  57286. extra: 1308/1217,
  57287. bottom: 57/1365
  57288. }
  57289. },
  57290. },
  57291. [
  57292. {
  57293. name: "Normal",
  57294. height: math.unit(8 + 8/12, "feet"),
  57295. default: true
  57296. },
  57297. ]
  57298. ))
  57299. characterMakers.push(() => makeCharacter(
  57300. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57301. {
  57302. front: {
  57303. height: math.unit(8, "feet"),
  57304. weight: math.unit(760, "lb"),
  57305. name: "Front",
  57306. image: {
  57307. source: "./media/characters/rexx/front.svg",
  57308. extra: 786/750,
  57309. bottom: 17/803
  57310. },
  57311. extraAttributes: {
  57312. "pawLength": {
  57313. name: "Paw Length",
  57314. power: 1,
  57315. type: "length",
  57316. base: math.unit(27, "inches")
  57317. },
  57318. }
  57319. },
  57320. },
  57321. [
  57322. {
  57323. name: "Micro",
  57324. height: math.unit(2, "inches")
  57325. },
  57326. {
  57327. name: "Normal",
  57328. height: math.unit(8, "feet"),
  57329. default: true
  57330. },
  57331. {
  57332. name: "Macro",
  57333. height: math.unit(150, "feet")
  57334. },
  57335. ]
  57336. ))
  57337. characterMakers.push(() => makeCharacter(
  57338. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57339. {
  57340. front: {
  57341. height: math.unit(18, "feet"),
  57342. weight: math.unit(1975, "lb"),
  57343. name: "Front",
  57344. image: {
  57345. source: "./media/characters/draco/front.svg",
  57346. extra: 1325/1241,
  57347. bottom: 83/1408
  57348. }
  57349. },
  57350. back: {
  57351. height: math.unit(18, "feet"),
  57352. weight: math.unit(1975, "lb"),
  57353. name: "Back",
  57354. image: {
  57355. source: "./media/characters/draco/back.svg",
  57356. extra: 1332/1250,
  57357. bottom: 43/1375
  57358. }
  57359. },
  57360. dick: {
  57361. height: math.unit(7.5, "feet"),
  57362. name: "Dick",
  57363. image: {
  57364. source: "./media/characters/draco/dick.svg"
  57365. }
  57366. },
  57367. },
  57368. [
  57369. {
  57370. name: "Normal",
  57371. height: math.unit(18, "feet"),
  57372. default: true
  57373. },
  57374. ]
  57375. ))
  57376. characterMakers.push(() => makeCharacter(
  57377. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57378. {
  57379. front: {
  57380. height: math.unit(3.2, "meters"),
  57381. name: "Front",
  57382. image: {
  57383. source: "./media/characters/harriett/front.svg",
  57384. extra: 1966/1915,
  57385. bottom: 9/1975
  57386. }
  57387. },
  57388. },
  57389. [
  57390. {
  57391. name: "Normal",
  57392. height: math.unit(3.2, "meters"),
  57393. default: true
  57394. },
  57395. ]
  57396. ))
  57397. characterMakers.push(() => makeCharacter(
  57398. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57399. {
  57400. sitting: {
  57401. height: math.unit(0.8, "meter"),
  57402. name: "Sitting",
  57403. image: {
  57404. source: "./media/characters/serpentus/sitting.svg",
  57405. extra: 293/290,
  57406. bottom: 140/433
  57407. }
  57408. },
  57409. },
  57410. [
  57411. {
  57412. name: "Normal",
  57413. height: math.unit(0.8, "meter"),
  57414. default: true
  57415. },
  57416. ]
  57417. ))
  57418. characterMakers.push(() => makeCharacter(
  57419. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57420. {
  57421. front: {
  57422. height: math.unit(5.7174385736, "feet"),
  57423. name: "Front",
  57424. image: {
  57425. source: "./media/characters/nova-polecat/front.svg",
  57426. extra: 1317/1216,
  57427. bottom: 92/1409
  57428. }
  57429. },
  57430. },
  57431. [
  57432. {
  57433. name: "Normal",
  57434. height: math.unit(5.7174385736, "feet"),
  57435. default: true
  57436. },
  57437. ]
  57438. ))
  57439. characterMakers.push(() => makeCharacter(
  57440. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57441. {
  57442. front: {
  57443. height: math.unit(5 + 4/12, "feet"),
  57444. weight: math.unit(250, "lb"),
  57445. name: "Front",
  57446. image: {
  57447. source: "./media/characters/mook/front.svg",
  57448. extra: 1088/1037,
  57449. bottom: 132/1220
  57450. }
  57451. },
  57452. back: {
  57453. height: math.unit(5 + 1/12, "feet"),
  57454. weight: math.unit(250, "lb"),
  57455. name: "Back",
  57456. image: {
  57457. source: "./media/characters/mook/back.svg",
  57458. extra: 1184/905,
  57459. bottom: 96/1280
  57460. }
  57461. },
  57462. head: {
  57463. height: math.unit(1.85, "feet"),
  57464. name: "Head",
  57465. image: {
  57466. source: "./media/characters/mook/head.svg"
  57467. }
  57468. },
  57469. hand: {
  57470. height: math.unit(1.9, "feet"),
  57471. name: "Hand",
  57472. image: {
  57473. source: "./media/characters/mook/hand.svg"
  57474. }
  57475. },
  57476. palm: {
  57477. height: math.unit(1.84, "feet"),
  57478. name: "Palm",
  57479. image: {
  57480. source: "./media/characters/mook/palm.svg"
  57481. }
  57482. },
  57483. foot: {
  57484. height: math.unit(1.44, "feet"),
  57485. name: "Foot",
  57486. image: {
  57487. source: "./media/characters/mook/foot.svg"
  57488. }
  57489. },
  57490. sole: {
  57491. height: math.unit(1.44, "feet"),
  57492. name: "Sole",
  57493. image: {
  57494. source: "./media/characters/mook/sole.svg"
  57495. }
  57496. },
  57497. },
  57498. [
  57499. {
  57500. name: "Normal",
  57501. height: math.unit(5 + 4/12, "feet"),
  57502. default: true
  57503. },
  57504. {
  57505. name: "Big",
  57506. height: math.unit(12, "feet")
  57507. },
  57508. ]
  57509. ))
  57510. characterMakers.push(() => makeCharacter(
  57511. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57512. {
  57513. front: {
  57514. height: math.unit(6 + 10/12, "feet"),
  57515. weight: math.unit(233, "lb"),
  57516. name: "Front",
  57517. image: {
  57518. source: "./media/characters/kayla/front.svg",
  57519. extra: 1850/1775,
  57520. bottom: 65/1915
  57521. }
  57522. },
  57523. },
  57524. [
  57525. {
  57526. name: "Normal",
  57527. height: math.unit(6 + 10/12, "feet"),
  57528. default: true
  57529. },
  57530. {
  57531. name: "Amazonian",
  57532. height: math.unit(12 + 5/12, "feet")
  57533. },
  57534. {
  57535. name: "Mini Giantess",
  57536. height: math.unit(26, "feet")
  57537. },
  57538. {
  57539. name: "Giantess",
  57540. height: math.unit(200, "feet")
  57541. },
  57542. {
  57543. name: "Mega Giantess",
  57544. height: math.unit(2500, "feet")
  57545. },
  57546. {
  57547. name: "City Sized",
  57548. height: math.unit(50, "miles")
  57549. },
  57550. {
  57551. name: "Country Sized",
  57552. height: math.unit(500, "miles")
  57553. },
  57554. {
  57555. name: "Continent Sized",
  57556. height: math.unit(2500, "miles")
  57557. },
  57558. {
  57559. name: "Planet Sized",
  57560. height: math.unit(10000, "miles")
  57561. },
  57562. {
  57563. name: "Star Sized",
  57564. height: math.unit(5e6, "miles")
  57565. },
  57566. {
  57567. name: "Solar System Sized",
  57568. height: math.unit(125, "AU")
  57569. },
  57570. {
  57571. name: "Galaxy Sized",
  57572. height: math.unit(300e3, "lightyears")
  57573. },
  57574. {
  57575. name: "Universe Sized",
  57576. height: math.unit(200e9, "lightyears")
  57577. },
  57578. {
  57579. name: "Multiverse Sized",
  57580. height: math.unit(20, "exauniverses")
  57581. },
  57582. {
  57583. name: "Mother of Existence",
  57584. height: math.unit(1e6, "yottauniverses")
  57585. },
  57586. ]
  57587. ))
  57588. characterMakers.push(() => makeCharacter(
  57589. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57590. {
  57591. side: {
  57592. height: math.unit(9.5, "meters"),
  57593. name: "Side",
  57594. image: {
  57595. source: "./media/characters/kulve-ragnarok/side.svg",
  57596. extra: 364/326,
  57597. bottom: 50/414
  57598. }
  57599. },
  57600. },
  57601. [
  57602. {
  57603. name: "Normal",
  57604. height: math.unit(9.5, "meters"),
  57605. default: true
  57606. },
  57607. ]
  57608. ))
  57609. characterMakers.push(() => makeCharacter(
  57610. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57611. {
  57612. front: {
  57613. height: math.unit(8 + 9/12, "feet"),
  57614. name: "Front",
  57615. image: {
  57616. source: "./media/characters/atlas-goat/front.svg",
  57617. extra: 1462/1323,
  57618. bottom: 12/1474
  57619. }
  57620. },
  57621. },
  57622. [
  57623. {
  57624. name: "Normal",
  57625. height: math.unit(8 + 9/12, "feet"),
  57626. default: true
  57627. },
  57628. {
  57629. name: "Skyline",
  57630. height: math.unit(845, "feet")
  57631. },
  57632. {
  57633. name: "Orbital",
  57634. height: math.unit(93000, "miles")
  57635. },
  57636. {
  57637. name: "Constellation",
  57638. height: math.unit(27000, "lightyears")
  57639. },
  57640. ]
  57641. ))
  57642. characterMakers.push(() => makeCharacter(
  57643. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57644. {
  57645. side: {
  57646. height: math.unit(1.8, "meters"),
  57647. weight: math.unit(120, "kg"),
  57648. name: "Side",
  57649. image: {
  57650. source: "./media/characters/xie-ling/side.svg",
  57651. extra: 646/574,
  57652. bottom: 44/690
  57653. }
  57654. },
  57655. },
  57656. [
  57657. {
  57658. name: "Tiny",
  57659. height: math.unit(1.80, "meters")
  57660. },
  57661. {
  57662. name: "Small",
  57663. height: math.unit(6, "meters")
  57664. },
  57665. {
  57666. name: "Medium",
  57667. height: math.unit(15, "meters")
  57668. },
  57669. {
  57670. name: "Normal",
  57671. height: math.unit(30, "meters"),
  57672. default: true
  57673. },
  57674. {
  57675. name: "Above Normal",
  57676. height: math.unit(60, "meters")
  57677. },
  57678. {
  57679. name: "Big",
  57680. height: math.unit(220, "meters")
  57681. },
  57682. {
  57683. name: "Giant",
  57684. height: math.unit(2.2, "km")
  57685. },
  57686. {
  57687. name: "Macro",
  57688. height: math.unit(25, "km")
  57689. },
  57690. {
  57691. name: "Mega Macro",
  57692. height: math.unit(350, "km")
  57693. },
  57694. {
  57695. name: "Mega Macro+",
  57696. height: math.unit(5000, "km")
  57697. },
  57698. {
  57699. name: "Goddess",
  57700. height: math.unit(3, "multiverses")
  57701. },
  57702. ]
  57703. ))
  57704. characterMakers.push(() => makeCharacter(
  57705. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57706. {
  57707. frontSfw: {
  57708. height: math.unit(5 + 11/12, "feet"),
  57709. weight: math.unit(210, "lb"),
  57710. name: "Front",
  57711. image: {
  57712. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57713. extra: 1928/1821,
  57714. bottom: 45/1973
  57715. }
  57716. },
  57717. backSfw: {
  57718. height: math.unit(5 + 11/12, "feet"),
  57719. weight: math.unit(210, "lb"),
  57720. name: "Back",
  57721. image: {
  57722. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57723. extra: 1920/1813,
  57724. bottom: 34/1954
  57725. }
  57726. },
  57727. frontNsfw: {
  57728. height: math.unit(5 + 11/12, "feet"),
  57729. weight: math.unit(210, "lb"),
  57730. name: "Front (NSFW)",
  57731. image: {
  57732. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57733. extra: 1928/1821,
  57734. bottom: 45/1973
  57735. }
  57736. },
  57737. backNsfw: {
  57738. height: math.unit(5 + 11/12, "feet"),
  57739. weight: math.unit(210, "lb"),
  57740. name: "Back (NSFW)",
  57741. image: {
  57742. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57743. extra: 1920/1813,
  57744. bottom: 34/1954
  57745. }
  57746. },
  57747. },
  57748. [
  57749. {
  57750. name: "Normal",
  57751. height: math.unit(5 + 11/12, "feet"),
  57752. default: true
  57753. },
  57754. {
  57755. name: "Goddess",
  57756. height: math.unit(20 + 3/12, "feet")
  57757. },
  57758. {
  57759. name: "Breaker of Man",
  57760. height: math.unit(329 + 9/12, "feet")
  57761. },
  57762. {
  57763. name: "Solar Justice",
  57764. height: math.unit(0.6, "solarradii")
  57765. },
  57766. {
  57767. name: "She Who Judges",
  57768. height: math.unit(1, "universe")
  57769. },
  57770. ]
  57771. ))
  57772. characterMakers.push(() => makeCharacter(
  57773. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57774. {
  57775. casual_front: {
  57776. height: math.unit(6 + 1/12, "feet"),
  57777. weight: math.unit(190, "lb"),
  57778. preyCapacity: math.unit(1, "people"),
  57779. name: "Front",
  57780. image: {
  57781. source: "./media/characters/managarmr/casual-front.svg",
  57782. extra: 411/381,
  57783. bottom: 15/426
  57784. },
  57785. extraAttributes: {
  57786. "pawSize": {
  57787. name: "Paw Size",
  57788. power: 1,
  57789. type: "length",
  57790. base: math.unit(0.2, "meters")
  57791. },
  57792. },
  57793. form: "casual",
  57794. },
  57795. casual_back: {
  57796. height: math.unit(6 + 1/12, "feet"),
  57797. weight: math.unit(190, "lb"),
  57798. preyCapacity: math.unit(1, "people"),
  57799. name: "Back",
  57800. image: {
  57801. source: "./media/characters/managarmr/casual-back.svg",
  57802. extra: 413/383,
  57803. bottom: 13/426
  57804. },
  57805. extraAttributes: {
  57806. "pawSize": {
  57807. name: "Paw Size",
  57808. power: 1,
  57809. type: "length",
  57810. base: math.unit(0.2, "meters")
  57811. },
  57812. },
  57813. form: "casual",
  57814. },
  57815. base_front: {
  57816. height: math.unit(7, "feet"),
  57817. weight: math.unit(210, "lb"),
  57818. preyCapacity: math.unit(2, "people"),
  57819. name: "Front",
  57820. image: {
  57821. source: "./media/characters/managarmr/base-front.svg",
  57822. extra: 580/485,
  57823. bottom: 32/612
  57824. },
  57825. extraAttributes: {
  57826. "wingspan": {
  57827. name: "Wingspan",
  57828. power: 1,
  57829. type: "length",
  57830. base: math.unit(4, "meters")
  57831. },
  57832. "pawSize": {
  57833. name: "Paw Size",
  57834. power: 1,
  57835. type: "length",
  57836. base: math.unit(0.2, "meters")
  57837. },
  57838. },
  57839. form: "base",
  57840. },
  57841. "true-divine_front": {
  57842. height: math.unit(40, "feet"),
  57843. weight: math.unit(39000, "lb"),
  57844. preyCapacity: math.unit(375, "people"),
  57845. name: "Front",
  57846. image: {
  57847. source: "./media/characters/managarmr/true-divine-front.svg",
  57848. extra: 725/573,
  57849. bottom: 120/845
  57850. },
  57851. extraAttributes: {
  57852. "wingspan": {
  57853. name: "Wingspan",
  57854. power: 1,
  57855. type: "length",
  57856. base: math.unit(20, "meters")
  57857. },
  57858. "pawSize": {
  57859. name: "Paw Size",
  57860. power: 1,
  57861. type: "length",
  57862. base: math.unit(1.5, "meters")
  57863. },
  57864. },
  57865. form: "true-divine",
  57866. },
  57867. },
  57868. [
  57869. {
  57870. name: "Normal",
  57871. height: math.unit(6 + 1/12, "feet"),
  57872. form: "casual",
  57873. default: true
  57874. },
  57875. {
  57876. name: "Normal",
  57877. height: math.unit(7, "feet"),
  57878. form: "base",
  57879. default: true
  57880. },
  57881. ],
  57882. {
  57883. "casual": {
  57884. name: "Casual",
  57885. default: true
  57886. },
  57887. "base": {
  57888. name: "Base",
  57889. },
  57890. "true-divine": {
  57891. name: "True Divine",
  57892. },
  57893. }
  57894. ))
  57895. characterMakers.push(() => makeCharacter(
  57896. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  57897. {
  57898. front: {
  57899. height: math.unit(1.8, "meters"),
  57900. weight: math.unit(110, "kg"),
  57901. name: "Front",
  57902. image: {
  57903. source: "./media/characters/mystra/front.svg",
  57904. extra: 529/442,
  57905. bottom: 31/560
  57906. }
  57907. },
  57908. frontLewd: {
  57909. height: math.unit(1.8, "meters"),
  57910. weight: math.unit(110, "kg"),
  57911. name: "Front (Lewd)",
  57912. image: {
  57913. source: "./media/characters/mystra/front-lewd.svg",
  57914. extra: 529/442,
  57915. bottom: 31/560
  57916. }
  57917. },
  57918. head: {
  57919. height: math.unit(1.63, "feet"),
  57920. name: "Head",
  57921. image: {
  57922. source: "./media/characters/mystra/head.svg"
  57923. }
  57924. },
  57925. paw: {
  57926. height: math.unit(1.9, "feet"),
  57927. name: "Paw",
  57928. image: {
  57929. source: "./media/characters/mystra/paw.svg"
  57930. }
  57931. },
  57932. },
  57933. [
  57934. {
  57935. name: "Incognito",
  57936. height: math.unit(2.3, "meters")
  57937. },
  57938. {
  57939. name: "Small Macro",
  57940. height: math.unit(300, "meters")
  57941. },
  57942. {
  57943. name: "Small Mega",
  57944. height: math.unit(2, "km")
  57945. },
  57946. {
  57947. name: "Mega",
  57948. height: math.unit(30, "km")
  57949. },
  57950. {
  57951. name: "Small Giga",
  57952. height: math.unit(100, "km")
  57953. },
  57954. {
  57955. name: "Giga",
  57956. height: math.unit(1000, "km"),
  57957. default: true
  57958. },
  57959. {
  57960. name: "Continental",
  57961. height: math.unit(5000, "km")
  57962. },
  57963. {
  57964. name: "Terra",
  57965. height: math.unit(20000, "km")
  57966. },
  57967. {
  57968. name: "Solar",
  57969. height: math.unit(2e6, "km")
  57970. },
  57971. {
  57972. name: "Galactic",
  57973. height: math.unit(528502, "lightyears")
  57974. },
  57975. {
  57976. name: "Universal",
  57977. height: math.unit(20, "universes")
  57978. },
  57979. ]
  57980. ))
  57981. characterMakers.push(() => makeCharacter(
  57982. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  57983. {
  57984. front: {
  57985. height: math.unit(2, "meters"),
  57986. weight: math.unit(140, "kg"),
  57987. name: "Front",
  57988. image: {
  57989. source: "./media/characters/caleb/front.svg",
  57990. extra: 873/817,
  57991. bottom: 47/920
  57992. }
  57993. },
  57994. back: {
  57995. height: math.unit(2, "meters"),
  57996. weight: math.unit(140, "kg"),
  57997. name: "Back",
  57998. image: {
  57999. source: "./media/characters/caleb/back.svg",
  58000. extra: 877/828,
  58001. bottom: 24/901
  58002. }
  58003. },
  58004. snakeTail: {
  58005. height: math.unit(1.44, "feet"),
  58006. name: "Snake Tail",
  58007. image: {
  58008. source: "./media/characters/caleb/snake-tail.svg"
  58009. }
  58010. },
  58011. dick: {
  58012. height: math.unit(2.6, "feet"),
  58013. name: "Dick",
  58014. image: {
  58015. source: "./media/characters/caleb/dick.svg"
  58016. }
  58017. },
  58018. },
  58019. [
  58020. {
  58021. name: "Incognito",
  58022. height: math.unit(3, "meters")
  58023. },
  58024. {
  58025. name: "Home Size",
  58026. height: math.unit(200, "meters"),
  58027. default: true
  58028. },
  58029. {
  58030. name: "Macro",
  58031. height: math.unit(500, "meters")
  58032. },
  58033. {
  58034. name: "Big Macro",
  58035. height: math.unit(5, "km")
  58036. },
  58037. {
  58038. name: "Giga",
  58039. height: math.unit(250, "km")
  58040. },
  58041. {
  58042. name: "Giga+",
  58043. height: math.unit(5000, "km")
  58044. },
  58045. {
  58046. name: "Small Terra",
  58047. height: math.unit(35e3, "km")
  58048. },
  58049. {
  58050. name: "Terra",
  58051. height: math.unit(2e6, "km")
  58052. },
  58053. {
  58054. name: "Terra+",
  58055. height: math.unit(1.5e6, "km")
  58056. },
  58057. ]
  58058. ))
  58059. characterMakers.push(() => makeCharacter(
  58060. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58061. {
  58062. front: {
  58063. height: math.unit(2, "meters"),
  58064. weight: math.unit(120, "kg"),
  58065. name: "Front",
  58066. image: {
  58067. source: "./media/characters/gilirian/front.svg",
  58068. extra: 805/737,
  58069. bottom: 13/818
  58070. }
  58071. },
  58072. side: {
  58073. height: math.unit(2, "meters"),
  58074. weight: math.unit(120, "kg"),
  58075. name: "Side",
  58076. image: {
  58077. source: "./media/characters/gilirian/side.svg",
  58078. extra: 810/746,
  58079. bottom: 6/816
  58080. }
  58081. },
  58082. back: {
  58083. height: math.unit(2, "meters"),
  58084. weight: math.unit(120, "kg"),
  58085. name: "Back",
  58086. image: {
  58087. source: "./media/characters/gilirian/back.svg",
  58088. extra: 815/745,
  58089. bottom: 15/830
  58090. }
  58091. },
  58092. frontNsfw: {
  58093. height: math.unit(2, "meters"),
  58094. weight: math.unit(120, "kg"),
  58095. name: "Front (NSFW)",
  58096. image: {
  58097. source: "./media/characters/gilirian/front-nsfw.svg",
  58098. extra: 805/737,
  58099. bottom: 13/818
  58100. }
  58101. },
  58102. sideNsfw: {
  58103. height: math.unit(2, "meters"),
  58104. weight: math.unit(120, "kg"),
  58105. name: "Side (NSFW)",
  58106. image: {
  58107. source: "./media/characters/gilirian/side-nsfw.svg",
  58108. extra: 810/746,
  58109. bottom: 6/816
  58110. }
  58111. },
  58112. },
  58113. [
  58114. {
  58115. name: "Incognito",
  58116. height: math.unit(2, "meters"),
  58117. default: true
  58118. },
  58119. {
  58120. name: "Macro",
  58121. height: math.unit(250, "meters")
  58122. },
  58123. {
  58124. name: "Big Macro",
  58125. height: math.unit(1500, "meters")
  58126. },
  58127. {
  58128. name: "Mega",
  58129. height: math.unit(40, "km")
  58130. },
  58131. {
  58132. name: "Giga",
  58133. height: math.unit(300, "km")
  58134. },
  58135. {
  58136. name: "Extra Giga",
  58137. height: math.unit(5000, "km")
  58138. },
  58139. {
  58140. name: "Small Terra",
  58141. height: math.unit(10e3, "km")
  58142. },
  58143. {
  58144. name: "Terra",
  58145. height: math.unit(3e5, "km")
  58146. },
  58147. {
  58148. name: "Galactic",
  58149. height: math.unit(369950, "lightyears")
  58150. },
  58151. ]
  58152. ))
  58153. characterMakers.push(() => makeCharacter(
  58154. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58155. {
  58156. front: {
  58157. height: math.unit(2.5, "meters"),
  58158. weight: math.unit(230, "lb"),
  58159. name: "Front",
  58160. image: {
  58161. source: "./media/characters/tarken/front.svg",
  58162. extra: 764/720,
  58163. bottom: 49/813
  58164. }
  58165. },
  58166. back: {
  58167. height: math.unit(2.5, "meters"),
  58168. weight: math.unit(230, "lb"),
  58169. name: "Back",
  58170. image: {
  58171. source: "./media/characters/tarken/back.svg",
  58172. extra: 756/720,
  58173. bottom: 35/791
  58174. }
  58175. },
  58176. frontNsfw: {
  58177. height: math.unit(2.5, "meters"),
  58178. weight: math.unit(230, "lb"),
  58179. name: "Front (NSFW)",
  58180. image: {
  58181. source: "./media/characters/tarken/front-nsfw.svg",
  58182. extra: 764/720,
  58183. bottom: 49/813
  58184. }
  58185. },
  58186. backNsfw: {
  58187. height: math.unit(2.5, "meters"),
  58188. weight: math.unit(230, "lb"),
  58189. name: "Back (NSFW)",
  58190. image: {
  58191. source: "./media/characters/tarken/back-nsfw.svg",
  58192. extra: 756/720,
  58193. bottom: 35/791
  58194. }
  58195. },
  58196. head: {
  58197. height: math.unit(2.22, "feet"),
  58198. name: "Head",
  58199. image: {
  58200. source: "./media/characters/tarken/head.svg"
  58201. }
  58202. },
  58203. tail: {
  58204. height: math.unit(5.25, "feet"),
  58205. name: "Tail",
  58206. image: {
  58207. source: "./media/characters/tarken/tail.svg"
  58208. }
  58209. },
  58210. dick: {
  58211. height: math.unit(1.95, "feet"),
  58212. name: "Dick",
  58213. image: {
  58214. source: "./media/characters/tarken/dick.svg"
  58215. }
  58216. },
  58217. hand: {
  58218. height: math.unit(1.78, "feet"),
  58219. name: "Hand",
  58220. image: {
  58221. source: "./media/characters/tarken/hand.svg"
  58222. }
  58223. },
  58224. beam: {
  58225. height: math.unit(1.5, "feet"),
  58226. name: "Beam",
  58227. image: {
  58228. source: "./media/characters/tarken/beam.svg"
  58229. }
  58230. },
  58231. },
  58232. [
  58233. {
  58234. name: "Original Size",
  58235. height: math.unit(2.5, "meters")
  58236. },
  58237. {
  58238. name: "Macro",
  58239. height: math.unit(150, "meters"),
  58240. default: true
  58241. },
  58242. {
  58243. name: "Macro+",
  58244. height: math.unit(300, "meters")
  58245. },
  58246. {
  58247. name: "Mega",
  58248. height: math.unit(2, "km")
  58249. },
  58250. {
  58251. name: "Mega+",
  58252. height: math.unit(35, "km")
  58253. },
  58254.  {
  58255. name: "Mega++",
  58256. height: math.unit(60, "km")
  58257. },
  58258. {
  58259. name: "Giga",
  58260. height: math.unit(200, "km")
  58261. },
  58262. {
  58263. name: "Giga+",
  58264. height: math.unit(2500, "km")
  58265. },
  58266. {
  58267. name: "Giga++",
  58268. height: math.unit(6600, "km")
  58269. },
  58270. {
  58271. name: "Terra",
  58272. height: math.unit(20000, "km")
  58273. },
  58274. {
  58275. name: "Terra+",
  58276. height: math.unit(300000, "km")
  58277. },
  58278. ]
  58279. ))
  58280. characterMakers.push(() => makeCharacter(
  58281. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58282. {
  58283. magpie_dressed: {
  58284. height: math.unit(1.7, "meters"),
  58285. weight: math.unit(70, "kg"),
  58286. name: "Dressed",
  58287. image: {
  58288. source: "./media/characters/otreus/magpie-dressed.svg",
  58289. extra: 691/672,
  58290. bottom: 116/807
  58291. },
  58292. form: "magpie",
  58293. default: true
  58294. },
  58295. magpie_nude: {
  58296. height: math.unit(1.7, "meters"),
  58297. weight: math.unit(70, "kg"),
  58298. name: "Nude",
  58299. image: {
  58300. source: "./media/characters/otreus/magpie-nude.svg",
  58301. extra: 691/672,
  58302. bottom: 116/807
  58303. },
  58304. form: "magpie",
  58305. },
  58306. magpie_dressedLewd: {
  58307. height: math.unit(1.7, "meters"),
  58308. weight: math.unit(70, "kg"),
  58309. name: "Dressed (Lewd)",
  58310. image: {
  58311. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58312. extra: 691/672,
  58313. bottom: 116/807
  58314. },
  58315. form: "magpie",
  58316. },
  58317. magpie_nudeLewd: {
  58318. height: math.unit(1.7, "meters"),
  58319. weight: math.unit(70, "kg"),
  58320. name: "Nude (Lewd)",
  58321. image: {
  58322. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58323. extra: 691/672,
  58324. bottom: 116/807
  58325. },
  58326. form: "magpie",
  58327. },
  58328. magpie_leftFoot: {
  58329. height: math.unit(1.58, "feet"),
  58330. name: "Left Foot",
  58331. image: {
  58332. source: "./media/characters/otreus/magpie-left-foot.svg"
  58333. },
  58334. form: "magpie",
  58335. },
  58336. magpie_rightFoot: {
  58337. height: math.unit(1.58, "feet"),
  58338. name: "Right Foot",
  58339. image: {
  58340. source: "./media/characters/otreus/magpie-right-foot.svg"
  58341. },
  58342. form: "magpie",
  58343. },
  58344. magpie_wingspan: {
  58345. height: math.unit(2, "meters"),
  58346. weight: math.unit(70, "kg"),
  58347. name: "Wingspan",
  58348. image: {
  58349. source: "./media/characters/otreus/magpie-wingspan.svg"
  58350. },
  58351. extraAttributes: {
  58352. "wingspan": {
  58353. name: "Wingspan",
  58354. power: 1,
  58355. type: "length",
  58356. base: math.unit(3.35, "meters")
  58357. },
  58358. },
  58359. form: "magpie",
  58360. },
  58361. hippogriff_dressed: {
  58362. height: math.unit(1.7, "meters"),
  58363. weight: math.unit(70, "kg"),
  58364. name: "Dressed",
  58365. image: {
  58366. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58367. extra: 710/689,
  58368. bottom: 67/777
  58369. },
  58370. form: "hippogriff",
  58371. default: true
  58372. },
  58373. hippogriff_nude: {
  58374. height: math.unit(1.7, "meters"),
  58375. weight: math.unit(70, "kg"),
  58376. name: "Nude",
  58377. image: {
  58378. source: "./media/characters/otreus/hippogriff-nude.svg",
  58379. extra: 710/689,
  58380. bottom: 67/777
  58381. },
  58382. form: "hippogriff",
  58383. },
  58384. hippogriff_dressedLewd: {
  58385. height: math.unit(1.7, "meters"),
  58386. weight: math.unit(70, "kg"),
  58387. name: "Dressed (Lewd)",
  58388. image: {
  58389. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58390. extra: 710/689,
  58391. bottom: 67/777
  58392. },
  58393. form: "hippogriff",
  58394. },
  58395. hippogriff_nudeLewd: {
  58396. height: math.unit(1.7, "meters"),
  58397. weight: math.unit(70, "kg"),
  58398. name: "Nude (Lewd)",
  58399. image: {
  58400. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58401. extra: 710/689,
  58402. bottom: 67/777
  58403. },
  58404. form: "hippogriff",
  58405. },
  58406. },
  58407. [
  58408. {
  58409. name: "Original Size",
  58410. height: math.unit(1.7, "meters"),
  58411. allForms: true
  58412. },
  58413. {
  58414. name: "Incognito Size",
  58415. height: math.unit(2, "meters"),
  58416. allForms: true
  58417. },
  58418. {
  58419. name: "Mega",
  58420. height: math.unit(2, "km"),
  58421. allForms: true
  58422. },
  58423. {
  58424. name: "Mega+",
  58425. height: math.unit(40, "km"),
  58426. allForms: true
  58427. },
  58428. {
  58429. name: "Giga",
  58430. height: math.unit(250, "km"),
  58431. allForms: true
  58432. },
  58433. {
  58434. name: "Giga+",
  58435. height: math.unit(3000, "km"),
  58436. allForms: true
  58437. },
  58438. {
  58439. name: "Terra",
  58440. height: math.unit(20000, "km"),
  58441. allForms: true
  58442. },
  58443. {
  58444. name: "Solar (Home Size)",
  58445. height: math.unit(3e6, "km"),
  58446. allForms: true,
  58447. default: true
  58448. },
  58449. ],
  58450. {
  58451. "magpie": {
  58452. name: "Magpie",
  58453. default: true
  58454. },
  58455. "hippogriff": {
  58456. name: "Hippogriff",
  58457. },
  58458. }
  58459. ))
  58460. characterMakers.push(() => makeCharacter(
  58461. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58462. {
  58463. frontDressed: {
  58464. height: math.unit(1.8, "meters"),
  58465. weight: math.unit(90, "kg"),
  58466. name: "Front (Dressed)",
  58467. image: {
  58468. source: "./media/characters/thalia/front-dressed.svg",
  58469. extra: 478/402,
  58470. bottom: 55/533
  58471. }
  58472. },
  58473. backDressed: {
  58474. height: math.unit(1.8, "meters"),
  58475. weight: math.unit(90, "kg"),
  58476. name: "Back (Dressed)",
  58477. image: {
  58478. source: "./media/characters/thalia/back-dressed.svg",
  58479. extra: 500/424,
  58480. bottom: 15/515
  58481. }
  58482. },
  58483. frontNude: {
  58484. height: math.unit(1.8, "meters"),
  58485. weight: math.unit(90, "kg"),
  58486. name: "Front (Nude)",
  58487. image: {
  58488. source: "./media/characters/thalia/front-nude.svg",
  58489. extra: 478/402,
  58490. bottom: 55/533
  58491. }
  58492. },
  58493. backNude: {
  58494. height: math.unit(1.8, "meters"),
  58495. weight: math.unit(90, "kg"),
  58496. name: "Back (Nude)",
  58497. image: {
  58498. source: "./media/characters/thalia/back-nude.svg",
  58499. extra: 500/424,
  58500. bottom: 15/515
  58501. }
  58502. },
  58503. },
  58504. [
  58505. {
  58506. name: "Incognito",
  58507. height: math.unit(3, "meters")
  58508. },
  58509. {
  58510. name: "Macro",
  58511. height: math.unit(500, "meters")
  58512. },
  58513. {
  58514. name: "Mega",
  58515. height: math.unit(5, "km")
  58516. },
  58517. {
  58518. name: "Mega+",
  58519. height: math.unit(30, "km")
  58520. },
  58521. {
  58522. name: "Giga",
  58523. height: math.unit(350, "km")
  58524. },
  58525. {
  58526. name: "Giga+",
  58527. height: math.unit(4000, "km")
  58528. },
  58529. {
  58530. name: "Terra",
  58531. height: math.unit(35000, "km")
  58532. },
  58533. {
  58534. name: "Original Size",
  58535. height: math.unit(130000, "km")
  58536. },
  58537. {
  58538. name: "Solar (Home Size)",
  58539. height: math.unit(4e6, "km"),
  58540. default: true
  58541. },
  58542. ]
  58543. ))
  58544. characterMakers.push(() => makeCharacter(
  58545. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58546. {
  58547. front: {
  58548. height: math.unit(1.8, "meters"),
  58549. weight: math.unit(95, "kg"),
  58550. name: "Front",
  58551. image: {
  58552. source: "./media/characters/shango/front.svg",
  58553. extra: 1925/1774,
  58554. bottom: 67/1992
  58555. }
  58556. },
  58557. back: {
  58558. height: math.unit(1.8, "meters"),
  58559. weight: math.unit(95, "kg"),
  58560. name: "Back",
  58561. image: {
  58562. source: "./media/characters/shango/back.svg",
  58563. extra: 1915/1766,
  58564. bottom: 52/1967
  58565. }
  58566. },
  58567. frontLewd: {
  58568. height: math.unit(1.8, "meters"),
  58569. weight: math.unit(95, "kg"),
  58570. name: "Front (Lewd)",
  58571. image: {
  58572. source: "./media/characters/shango/front-lewd.svg",
  58573. extra: 1925/1774,
  58574. bottom: 67/1992
  58575. }
  58576. },
  58577. backLewd: {
  58578. height: math.unit(1.8, "meters"),
  58579. weight: math.unit(95, "kg"),
  58580. name: "Back (Lewd)",
  58581. image: {
  58582. source: "./media/characters/shango/back-lewd.svg",
  58583. extra: 1915/1766,
  58584. bottom: 52/1967
  58585. }
  58586. },
  58587. maw: {
  58588. height: math.unit(1.64, "feet"),
  58589. name: "Maw",
  58590. image: {
  58591. source: "./media/characters/shango/maw.svg"
  58592. }
  58593. },
  58594. dick: {
  58595. height: math.unit(2.14, "feet"),
  58596. name: "Dick",
  58597. image: {
  58598. source: "./media/characters/shango/dick.svg"
  58599. }
  58600. },
  58601. },
  58602. [
  58603. {
  58604. name: "Incognito",
  58605. height: math.unit(1.8, "meters")
  58606. },
  58607. {
  58608. name: "Home Size",
  58609. height: math.unit(60, "meters"),
  58610. default: true
  58611. },
  58612. {
  58613. name: "Macro",
  58614. height: math.unit(450, "meters")
  58615. },
  58616. {
  58617. name: "Mega",
  58618. height: math.unit(6, "km")
  58619. },
  58620. {
  58621. name: "Mega+",
  58622. height: math.unit(35, "km")
  58623. },
  58624. {
  58625. name: "Giga",
  58626. height: math.unit(500, "km")
  58627. },
  58628. {
  58629. name: "Giga+",
  58630. height: math.unit(5000, "km")
  58631. },
  58632. {
  58633. name: "Terra",
  58634. height: math.unit(60000, "km")
  58635. },
  58636. {
  58637. name: "Terra+",
  58638. height: math.unit(400000, "km")
  58639. },
  58640. ]
  58641. ))
  58642. characterMakers.push(() => makeCharacter(
  58643. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58644. {
  58645. front: {
  58646. height: math.unit(2, "meters"),
  58647. weight: math.unit(95, "kg"),
  58648. name: "Front",
  58649. image: {
  58650. source: "./media/characters/osiris-gryphon/front.svg",
  58651. extra: 1508/1313,
  58652. bottom: 87/1595
  58653. }
  58654. },
  58655. back: {
  58656. height: math.unit(2, "meters"),
  58657. weight: math.unit(95, "kg"),
  58658. name: "Back",
  58659. image: {
  58660. source: "./media/characters/osiris-gryphon/back.svg",
  58661. extra: 1436/1309,
  58662. bottom: 64/1500
  58663. }
  58664. },
  58665. frontLewd: {
  58666. height: math.unit(2, "meters"),
  58667. weight: math.unit(95, "kg"),
  58668. name: "Front-lewd",
  58669. image: {
  58670. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58671. extra: 1508/1313,
  58672. bottom: 87/1595
  58673. }
  58674. },
  58675. wing: {
  58676. height: math.unit(6.3333, "feet"),
  58677. name: "Wing",
  58678. image: {
  58679. source: "./media/characters/osiris-gryphon/wing.svg"
  58680. }
  58681. },
  58682. },
  58683. [
  58684. {
  58685. name: "Incognito",
  58686. height: math.unit(2, "meters")
  58687. },
  58688. {
  58689. name: "Home Size",
  58690. height: math.unit(30, "meters"),
  58691. default: true
  58692. },
  58693. {
  58694. name: "Macro",
  58695. height: math.unit(100, "meters")
  58696. },
  58697. {
  58698. name: "Macro+",
  58699. height: math.unit(350, "meters")
  58700. },
  58701. {
  58702. name: "Mega",
  58703. height: math.unit(40, "km")
  58704. },
  58705. {
  58706. name: "Giga",
  58707. height: math.unit(300, "km")
  58708. },
  58709. {
  58710. name: "Giga+",
  58711. height: math.unit(2000, "km")
  58712. },
  58713. {
  58714. name: "Terra",
  58715. height: math.unit(30000, "km")
  58716. },
  58717. ]
  58718. ))
  58719. characterMakers.push(() => makeCharacter(
  58720. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58721. {
  58722. front: {
  58723. height: math.unit(2.5, "meters"),
  58724. weight: math.unit(200, "kg"),
  58725. name: "Front",
  58726. image: {
  58727. source: "./media/characters/atlas-dragon/front.svg",
  58728. extra: 745/462,
  58729. bottom: 36/781
  58730. }
  58731. },
  58732. back: {
  58733. height: math.unit(2.5, "meters"),
  58734. weight: math.unit(200, "kg"),
  58735. name: "Back",
  58736. image: {
  58737. source: "./media/characters/atlas-dragon/back.svg",
  58738. extra: 848/822,
  58739. bottom: 57/905
  58740. }
  58741. },
  58742. frontLewd: {
  58743. height: math.unit(2.5, "meters"),
  58744. weight: math.unit(200, "kg"),
  58745. name: "Front (Lewd)",
  58746. image: {
  58747. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58748. extra: 745/462,
  58749. bottom: 36/781
  58750. }
  58751. },
  58752. backLewd: {
  58753. height: math.unit(2.5, "meters"),
  58754. weight: math.unit(200, "kg"),
  58755. name: "Back (Lewd)",
  58756. image: {
  58757. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58758. extra: 848/822,
  58759. bottom: 57/905
  58760. }
  58761. },
  58762. },
  58763. [
  58764. {
  58765. name: "Incognito",
  58766. height: math.unit(2.5, "meters")
  58767. },
  58768. {
  58769. name: "Small Macro",
  58770. height: math.unit(50, "meters")
  58771. },
  58772. {
  58773. name: "Macro",
  58774. height: math.unit(350, "meters")
  58775. },
  58776. {
  58777. name: "Mega",
  58778. height: math.unit(5.5, "kilometers")
  58779. },
  58780. {
  58781. name: "Mega+",
  58782. height: math.unit(50, "km")
  58783. },
  58784. {
  58785. name: "Giga",
  58786. height: math.unit(350, "km")
  58787. },
  58788. {
  58789. name: "Giga+",
  58790. height: math.unit(2000, "km")
  58791. },
  58792. {
  58793. name: "Giga++",
  58794. height: math.unit(6500, "km")
  58795. },
  58796. {
  58797. name: "Terra",
  58798. height: math.unit(30000, "km")
  58799. },
  58800. {
  58801. name: "Terra+",
  58802. height: math.unit(250000, "km")
  58803. },
  58804. {
  58805. name: "True Size",
  58806. height: math.unit(100, "multiverses"),
  58807. default: true
  58808. },
  58809. ]
  58810. ))
  58811. characterMakers.push(() => makeCharacter(
  58812. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58813. {
  58814. front: {
  58815. height: math.unit(1.8, "m"),
  58816. weight: math.unit(120, "kg"),
  58817. name: "Front",
  58818. image: {
  58819. source: "./media/characters/chey/front.svg",
  58820. extra: 1359/1270,
  58821. bottom: 18/1377
  58822. }
  58823. },
  58824. arm: {
  58825. height: math.unit(2.05, "feet"),
  58826. name: "Arm",
  58827. image: {
  58828. source: "./media/characters/chey/arm.svg"
  58829. }
  58830. },
  58831. head: {
  58832. height: math.unit(1.89, "feet"),
  58833. name: "Head",
  58834. image: {
  58835. source: "./media/characters/chey/head.svg"
  58836. }
  58837. },
  58838. },
  58839. [
  58840. {
  58841. name: "Original Size",
  58842. height: math.unit(5, "cm")
  58843. },
  58844. {
  58845. name: "Incognito Size",
  58846. height: math.unit(2.4, "m")
  58847. },
  58848. {
  58849. name: "Home Size",
  58850. height: math.unit(200, "meters"),
  58851. default: true
  58852. },
  58853. {
  58854. name: "Mega",
  58855. height: math.unit(2, "km")
  58856. },
  58857. {
  58858. name: "Giga (Preferred Size)",
  58859. height: math.unit(2000, "km")
  58860. },
  58861. {
  58862. name: "Giga+",
  58863. height: math.unit(6000, "km")
  58864. },
  58865. {
  58866. name: "Terra",
  58867. height: math.unit(17000, "km")
  58868. },
  58869. {
  58870. name: "Terra+",
  58871. height: math.unit(75000, "km")
  58872. },
  58873. {
  58874. name: "Terra++",
  58875. height: math.unit(225000, "km")
  58876. },
  58877. ]
  58878. ))
  58879. characterMakers.push(() => makeCharacter(
  58880. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  58881. {
  58882. side: {
  58883. height: math.unit(7.8, "meters"),
  58884. name: "Side",
  58885. image: {
  58886. source: "./media/characters/ragnarok/side.svg",
  58887. extra: 725/621,
  58888. bottom: 72/797
  58889. }
  58890. },
  58891. },
  58892. [
  58893. {
  58894. name: "Normal",
  58895. height: math.unit(7.8, "meters"),
  58896. default: true
  58897. },
  58898. ]
  58899. ))
  58900. characterMakers.push(() => makeCharacter(
  58901. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  58902. {
  58903. hyena_front: {
  58904. height: math.unit(2.1, "meters"),
  58905. weight: math.unit(110, "kg"),
  58906. name: "Front",
  58907. image: {
  58908. source: "./media/characters/nima/hyena-front.svg",
  58909. extra: 1904/1796,
  58910. bottom: 67/1971
  58911. },
  58912. form: "hyena",
  58913. },
  58914. hyena_back: {
  58915. height: math.unit(2.1, "meters"),
  58916. weight: math.unit(110, "kg"),
  58917. name: "Back",
  58918. image: {
  58919. source: "./media/characters/nima/hyena-back.svg",
  58920. extra: 1964/1884,
  58921. bottom: 35/1999
  58922. },
  58923. form: "hyena",
  58924. },
  58925. shark_front: {
  58926. height: math.unit(1.95, "meters"),
  58927. weight: math.unit(110, "kg"),
  58928. name: "Front",
  58929. image: {
  58930. source: "./media/characters/nima/shark-front.svg",
  58931. extra: 2238/2013,
  58932. bottom: 0/223
  58933. },
  58934. form: "shark",
  58935. },
  58936. paw: {
  58937. height: math.unit(1, "feet"),
  58938. name: "Paw",
  58939. image: {
  58940. source: "./media/characters/nima/paw.svg"
  58941. }
  58942. },
  58943. circlet: {
  58944. height: math.unit(0.3, "feet"),
  58945. name: "Circlet",
  58946. image: {
  58947. source: "./media/characters/nima/circlet.svg"
  58948. }
  58949. },
  58950. necklace: {
  58951. height: math.unit(1.2, "feet"),
  58952. name: "Necklace",
  58953. image: {
  58954. source: "./media/characters/nima/necklace.svg"
  58955. }
  58956. },
  58957. bracelet: {
  58958. height: math.unit(0.51, "feet"),
  58959. name: "Bracelet",
  58960. image: {
  58961. source: "./media/characters/nima/bracelet.svg"
  58962. }
  58963. },
  58964. armband: {
  58965. height: math.unit(1.3, "feet"),
  58966. name: "Armband",
  58967. image: {
  58968. source: "./media/characters/nima/armband.svg"
  58969. }
  58970. },
  58971. },
  58972. [
  58973. {
  58974. name: "Incognito",
  58975. height: math.unit(2.1, "meters"),
  58976. allForms: true
  58977. },
  58978. {
  58979. name: "Small Macro",
  58980. height: math.unit(50, "meters"),
  58981. allForms: true
  58982. },
  58983. {
  58984. name: "Macro",
  58985. height: math.unit(200, "meters"),
  58986. allForms: true
  58987. },
  58988. {
  58989. name: "Mega",
  58990. height: math.unit(2.5, "km"),
  58991. allForms: true
  58992. },
  58993. {
  58994. name: "Mega+",
  58995. height: math.unit(30, "km"),
  58996. allForms: true
  58997. },
  58998. {
  58999. name: "Giga (Home Size)",
  59000. height: math.unit(400, "km"),
  59001. allForms: true,
  59002. default: true
  59003. },
  59004. {
  59005. name: "Giga+",
  59006. height: math.unit(2500, "km"),
  59007. allForms: true
  59008. },
  59009. {
  59010. name: "Giga++",
  59011. height: math.unit(8000, "km"),
  59012. allForms: true
  59013. },
  59014. {
  59015. name: "Terra",
  59016. height: math.unit(20000, "km"),
  59017. allForms: true
  59018. },
  59019. {
  59020. name: "Terra+",
  59021. height: math.unit(70000, "km"),
  59022. allForms: true
  59023. },
  59024. {
  59025. name: "Terra++",
  59026. height: math.unit(600000, "km"),
  59027. allForms: true
  59028. },
  59029. {
  59030. name: "Galactic",
  59031. height: math.unit(40, "galaxies"),
  59032. allForms: true
  59033. },
  59034. {
  59035. name: "Universal",
  59036. height: math.unit(40, "universes"),
  59037. allForms: true
  59038. },
  59039. ],
  59040. {
  59041. "hyena": {
  59042. name: "Hyena",
  59043. default: true
  59044. },
  59045. "shark": {
  59046. name: "Shark",
  59047. },
  59048. }
  59049. ))
  59050. characterMakers.push(() => makeCharacter(
  59051. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59052. {
  59053. anthro_front: {
  59054. height: math.unit(1.5, "meters"),
  59055. name: "Front",
  59056. image: {
  59057. source: "./media/characters/adelaide/anthro-front.svg",
  59058. extra: 860/783,
  59059. bottom: 60/920
  59060. },
  59061. form: "anthro",
  59062. default: true
  59063. },
  59064. hand: {
  59065. height: math.unit(0.65, "feet"),
  59066. name: "Hand",
  59067. image: {
  59068. source: "./media/characters/adelaide/hand.svg"
  59069. },
  59070. form: "anthro"
  59071. },
  59072. foot: {
  59073. height: math.unit(1.38 * 259 / 314, "feet"),
  59074. name: "Foot",
  59075. image: {
  59076. source: "./media/characters/adelaide/foot.svg",
  59077. extra: 259/259,
  59078. bottom: 55/314
  59079. },
  59080. form: "anthro"
  59081. },
  59082. feather: {
  59083. height: math.unit(0.85, "feet"),
  59084. name: "Feather",
  59085. image: {
  59086. source: "./media/characters/adelaide/feather.svg"
  59087. },
  59088. form: "anthro"
  59089. },
  59090. feral_side: {
  59091. height: math.unit(1, "meters"),
  59092. name: "Side",
  59093. image: {
  59094. source: "./media/characters/adelaide/feral-side.svg",
  59095. extra: 550/467,
  59096. bottom: 37/587
  59097. },
  59098. form: "feral",
  59099. default: true
  59100. },
  59101. feral_hand: {
  59102. height: math.unit(0.58, "feet"),
  59103. name: "Hand",
  59104. image: {
  59105. source: "./media/characters/adelaide/hand.svg"
  59106. },
  59107. form: "feral"
  59108. },
  59109. feral_foot: {
  59110. height: math.unit(1.2 * 259 / 314, "feet"),
  59111. name: "Foot",
  59112. image: {
  59113. source: "./media/characters/adelaide/foot.svg",
  59114. extra: 259/259,
  59115. bottom: 55/314
  59116. },
  59117. form: "feral"
  59118. },
  59119. feral_feather: {
  59120. height: math.unit(0.63, "feet"),
  59121. name: "Feather",
  59122. image: {
  59123. source: "./media/characters/adelaide/feather.svg"
  59124. },
  59125. form: "feral"
  59126. },
  59127. },
  59128. [
  59129. {
  59130. name: "Normal",
  59131. height: math.unit(1.5, "meters"),
  59132. form: "anthro",
  59133. default: true
  59134. },
  59135. {
  59136. name: "Normal",
  59137. height: math.unit(1, "meters"),
  59138. form: "feral",
  59139. default: true
  59140. },
  59141. ],
  59142. {
  59143. "anthro": {
  59144. name: "Anthro",
  59145. default: true
  59146. },
  59147. "feral": {
  59148. name: "Feral",
  59149. },
  59150. }
  59151. ))
  59152. characterMakers.push(() => makeCharacter(
  59153. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59154. {
  59155. front: {
  59156. height: math.unit(2.5, "meters"),
  59157. name: "Front",
  59158. image: {
  59159. source: "./media/characters/goa/front.svg",
  59160. extra: 1109/1013,
  59161. bottom: 150/1259
  59162. }
  59163. },
  59164. },
  59165. [
  59166. {
  59167. name: "Normal",
  59168. height: math.unit(2.5, "meters"),
  59169. default: true
  59170. },
  59171. ]
  59172. ))
  59173. //characters
  59174. function makeCharacters() {
  59175. const results = [];
  59176. characterMakers.forEach(character => {
  59177. results.push(character());
  59178. });
  59179. return results;
  59180. }