less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

55628 строки
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. }
  2103. //species
  2104. function getSpeciesInfo(speciesList) {
  2105. let result = new Set();
  2106. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2107. result.add(entry)
  2108. });
  2109. return Array.from(result);
  2110. };
  2111. function getSpeciesInfoHelper(species) {
  2112. if (!speciesData[species]) {
  2113. console.warn(species + " doesn't exist");
  2114. return [];
  2115. }
  2116. if (speciesData[species].parents) {
  2117. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2118. } else {
  2119. return [species];
  2120. }
  2121. }
  2122. characterMakers.push(() => makeCharacter(
  2123. {
  2124. name: "Fen",
  2125. species: ["crux"],
  2126. description: {
  2127. title: "Bio",
  2128. text: "Very furry. Sheds on everything."
  2129. },
  2130. tags: [
  2131. "anthro",
  2132. "goo"
  2133. ]
  2134. },
  2135. {
  2136. front: {
  2137. height: math.unit(12, "feet"),
  2138. weight: math.unit(2400, "lb"),
  2139. preyCapacity: math.unit(1, "people"),
  2140. name: "Front",
  2141. image: {
  2142. source: "./media/characters/fen/front.svg",
  2143. extra: 1804/1562,
  2144. bottom: 205/2009
  2145. },
  2146. extraAttributes: {
  2147. pawSize: {
  2148. name: "Paw Size",
  2149. power: 2,
  2150. type: "area",
  2151. base: math.unit(0.35, "m^2")
  2152. }
  2153. }
  2154. },
  2155. diving: {
  2156. height: math.unit(4.9, "meters"),
  2157. weight: math.unit(2400, "lb"),
  2158. name: "Diving",
  2159. image: {
  2160. source: "./media/characters/fen/diving.svg"
  2161. }
  2162. },
  2163. sleeby: {
  2164. height: math.unit(3.45, "meters"),
  2165. weight: math.unit(2400, "lb"),
  2166. name: "Sleeby",
  2167. image: {
  2168. source: "./media/characters/fen/sleeby.svg"
  2169. }
  2170. },
  2171. goo: {
  2172. height: math.unit(12, "feet"),
  2173. weight: math.unit(3600, "lb"),
  2174. volume: math.unit(1000, "liters"),
  2175. preyCapacity: math.unit(6, "people"),
  2176. name: "Goo",
  2177. image: {
  2178. source: "./media/characters/fen/goo.svg",
  2179. extra: 1307/1071,
  2180. bottom: 134/1441
  2181. }
  2182. },
  2183. gooNsfw: {
  2184. height: math.unit(12, "feet"),
  2185. weight: math.unit(3750, "lb"),
  2186. volume: math.unit(1000, "liters"),
  2187. preyCapacity: math.unit(6, "people"),
  2188. name: "Goo (NSFW)",
  2189. image: {
  2190. source: "./media/characters/fen/goo-nsfw.svg",
  2191. extra: 1875/1734,
  2192. bottom: 122/1997
  2193. }
  2194. },
  2195. maw: {
  2196. height: math.unit(5.03, "feet"),
  2197. name: "Maw",
  2198. image: {
  2199. source: "./media/characters/fen/maw.svg"
  2200. }
  2201. },
  2202. gooCeiling: {
  2203. height: math.unit(6.6, "feet"),
  2204. weight: math.unit(3000, "lb"),
  2205. volume: math.unit(1000, "liters"),
  2206. preyCapacity: math.unit(6, "people"),
  2207. name: "Goo (Ceiling)",
  2208. image: {
  2209. source: "./media/characters/fen/goo-ceiling.svg"
  2210. }
  2211. },
  2212. paw: {
  2213. height: math.unit(3.77, "feet"),
  2214. name: "Paw",
  2215. image: {
  2216. source: "./media/characters/fen/paw.svg"
  2217. },
  2218. extraAttributes: {
  2219. "toeSize": {
  2220. name: "Toe Size",
  2221. power: 2,
  2222. type: "area",
  2223. base: math.unit(0.02875, "m^2")
  2224. },
  2225. "pawSize": {
  2226. name: "Paw Size",
  2227. power: 2,
  2228. type: "area",
  2229. base: math.unit(0.378, "m^2")
  2230. },
  2231. }
  2232. },
  2233. tail: {
  2234. height: math.unit(12.1, "feet"),
  2235. name: "Tail",
  2236. image: {
  2237. source: "./media/characters/fen/tail.svg"
  2238. }
  2239. },
  2240. tailFull: {
  2241. height: math.unit(12.1, "feet"),
  2242. name: "Full Tail",
  2243. image: {
  2244. source: "./media/characters/fen/tail-full.svg"
  2245. }
  2246. },
  2247. back: {
  2248. height: math.unit(12, "feet"),
  2249. weight: math.unit(2400, "lb"),
  2250. name: "Back",
  2251. image: {
  2252. source: "./media/characters/fen/back.svg",
  2253. },
  2254. info: {
  2255. description: {
  2256. mode: "append",
  2257. text: "\n\nHe is not currently looking at you."
  2258. }
  2259. }
  2260. },
  2261. full: {
  2262. height: math.unit(1.85, "meter"),
  2263. weight: math.unit(3200, "lb"),
  2264. name: "Full",
  2265. image: {
  2266. source: "./media/characters/fen/full.svg",
  2267. extra: 1133/859,
  2268. bottom: 145/1278
  2269. },
  2270. info: {
  2271. description: {
  2272. mode: "append",
  2273. text: "\n\nMunch."
  2274. }
  2275. }
  2276. },
  2277. gooLounging: {
  2278. height: math.unit(4.53, "feet"),
  2279. weight: math.unit(3000, "lb"),
  2280. preyCapacity: math.unit(6, "people"),
  2281. name: "Goo (Lounging)",
  2282. image: {
  2283. source: "./media/characters/fen/goo-lounging.svg",
  2284. bottom: 116 / 613
  2285. }
  2286. },
  2287. lounging: {
  2288. height: math.unit(10.52, "feet"),
  2289. weight: math.unit(2400, "lb"),
  2290. name: "Lounging",
  2291. image: {
  2292. source: "./media/characters/fen/lounging.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Small",
  2299. height: math.unit(2.2428, "meter")
  2300. },
  2301. {
  2302. name: "Normal",
  2303. height: math.unit(12, "feet"),
  2304. default: true,
  2305. },
  2306. {
  2307. name: "Big",
  2308. height: math.unit(20, "feet")
  2309. },
  2310. {
  2311. name: "Minimacro",
  2312. height: math.unit(40, "feet"),
  2313. info: {
  2314. description: {
  2315. mode: "append",
  2316. text: "\n\nTOO DAMN BIG"
  2317. }
  2318. }
  2319. },
  2320. {
  2321. name: "Macro",
  2322. height: math.unit(100, "feet"),
  2323. info: {
  2324. description: {
  2325. mode: "append",
  2326. text: "\n\nTOO DAMN BIG"
  2327. }
  2328. }
  2329. },
  2330. {
  2331. name: "Megamacro",
  2332. height: math.unit(2, "miles")
  2333. },
  2334. {
  2335. name: "Gigamacro",
  2336. height: math.unit(10, "earths")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(183, "cm"),
  2345. weight: math.unit(80, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/sofia-fluttertail/front.svg",
  2349. bottom: 0.01,
  2350. extra: 2154 / 2081
  2351. }
  2352. },
  2353. frontAlt: {
  2354. height: math.unit(183, "cm"),
  2355. weight: math.unit(80, "kg"),
  2356. name: "Front (alt)",
  2357. image: {
  2358. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2359. }
  2360. },
  2361. back: {
  2362. height: math.unit(183, "cm"),
  2363. weight: math.unit(80, "kg"),
  2364. name: "Back",
  2365. image: {
  2366. source: "./media/characters/sofia-fluttertail/back.svg"
  2367. }
  2368. },
  2369. kneeling: {
  2370. height: math.unit(125, "cm"),
  2371. weight: math.unit(80, "kg"),
  2372. name: "Kneeling",
  2373. image: {
  2374. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2375. extra: 1033 / 977,
  2376. bottom: 23.7 / 1057
  2377. }
  2378. },
  2379. maw: {
  2380. height: math.unit(183 / 5, "cm"),
  2381. name: "Maw",
  2382. image: {
  2383. source: "./media/characters/sofia-fluttertail/maw.svg"
  2384. }
  2385. },
  2386. mawcloseup: {
  2387. height: math.unit(183 / 5 * 0.41, "cm"),
  2388. name: "Maw (Closeup)",
  2389. image: {
  2390. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2391. }
  2392. },
  2393. paws: {
  2394. height: math.unit(1.17, "feet"),
  2395. name: "Paws",
  2396. image: {
  2397. source: "./media/characters/sofia-fluttertail/paws.svg",
  2398. extra: 851 / 851,
  2399. bottom: 17 / 868
  2400. }
  2401. },
  2402. },
  2403. [
  2404. {
  2405. name: "Normal",
  2406. height: math.unit(1.83, "meter")
  2407. },
  2408. {
  2409. name: "Size Thief",
  2410. height: math.unit(18, "feet")
  2411. },
  2412. {
  2413. name: "50 Foot Collie",
  2414. height: math.unit(50, "feet")
  2415. },
  2416. {
  2417. name: "Macro",
  2418. height: math.unit(96, "feet"),
  2419. default: true
  2420. },
  2421. {
  2422. name: "Megamerger",
  2423. height: math.unit(650, "feet")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2429. {
  2430. front: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(100, "kg"),
  2433. name: "Front",
  2434. image: {
  2435. source: "./media/characters/march/front.svg",
  2436. extra: 1992/1851,
  2437. bottom: 39/2031
  2438. }
  2439. },
  2440. foot: {
  2441. height: math.unit(0.9, "feet"),
  2442. name: "Foot",
  2443. image: {
  2444. source: "./media/characters/march/foot.svg"
  2445. }
  2446. },
  2447. },
  2448. [
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(7.9, "feet")
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(220, "meters")
  2456. },
  2457. {
  2458. name: "Megamacro",
  2459. height: math.unit(2.98, "km"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Gigamacro",
  2464. height: math.unit(15963, "km")
  2465. },
  2466. {
  2467. name: "Teramacro",
  2468. height: math.unit(2980000000, "km")
  2469. },
  2470. {
  2471. name: "Examacro",
  2472. height: math.unit(250, "parsecs")
  2473. },
  2474. ]
  2475. ))
  2476. characterMakers.push(() => makeCharacter(
  2477. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2478. {
  2479. front: {
  2480. height: math.unit(6, "feet"),
  2481. weight: math.unit(60, "kg"),
  2482. name: "Front",
  2483. image: {
  2484. source: "./media/characters/noir/front.svg",
  2485. extra: 1,
  2486. bottom: 0.032
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(6.6, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(500, "feet")
  2498. },
  2499. {
  2500. name: "Megamacro",
  2501. height: math.unit(2.5, "km"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Gigamacro",
  2506. height: math.unit(22500, "km")
  2507. },
  2508. {
  2509. name: "Teramacro",
  2510. height: math.unit(2500000000, "km")
  2511. },
  2512. {
  2513. name: "Examacro",
  2514. height: math.unit(200, "parsecs")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(7, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/okuri/front.svg",
  2527. extra: 739/665,
  2528. bottom: 39/778
  2529. }
  2530. },
  2531. back: {
  2532. height: math.unit(7, "feet"),
  2533. weight: math.unit(100, "kg"),
  2534. name: "Back",
  2535. image: {
  2536. source: "./media/characters/okuri/back.svg",
  2537. extra: 734/653,
  2538. bottom: 13/747
  2539. }
  2540. },
  2541. sitting: {
  2542. height: math.unit(2.95, "feet"),
  2543. weight: math.unit(100, "kg"),
  2544. name: "Sitting",
  2545. image: {
  2546. source: "./media/characters/okuri/sitting.svg",
  2547. extra: 370/318,
  2548. bottom: 99/469
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Smallest",
  2555. height: math.unit(5 + 2/12, "feet")
  2556. },
  2557. {
  2558. name: "Smaller",
  2559. height: math.unit(300, "feet")
  2560. },
  2561. {
  2562. name: "Small",
  2563. height: math.unit(1000, "feet")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(1, "mile")
  2568. },
  2569. {
  2570. name: "Mega Macro (Small)",
  2571. height: math.unit(20, "km")
  2572. },
  2573. {
  2574. name: "Mega Macro (Large)",
  2575. height: math.unit(600, "km")
  2576. },
  2577. {
  2578. name: "Giga Macro",
  2579. height: math.unit(10000, "km")
  2580. },
  2581. {
  2582. name: "Normal",
  2583. height: math.unit(577560, "km"),
  2584. default: true
  2585. },
  2586. {
  2587. name: "Large",
  2588. height: math.unit(4, "galaxies")
  2589. },
  2590. {
  2591. name: "Largest",
  2592. height: math.unit(15, "multiverses")
  2593. },
  2594. ]
  2595. ))
  2596. characterMakers.push(() => makeCharacter(
  2597. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2598. {
  2599. front: {
  2600. height: math.unit(7, "feet"),
  2601. weight: math.unit(100, "kg"),
  2602. name: "Front",
  2603. image: {
  2604. source: "./media/characters/manny/front.svg",
  2605. extra: 1,
  2606. bottom: 0.06
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(7, "feet"),
  2611. weight: math.unit(100, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/manny/back.svg",
  2615. extra: 1,
  2616. bottom: 0.014
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(7, "feet"),
  2624. },
  2625. {
  2626. name: "Macro",
  2627. height: math.unit(78, "feet"),
  2628. default: true
  2629. },
  2630. {
  2631. name: "Macro+",
  2632. height: math.unit(300, "meters")
  2633. },
  2634. {
  2635. name: "Macro++",
  2636. height: math.unit(2400, "meters")
  2637. },
  2638. {
  2639. name: "Megamacro",
  2640. height: math.unit(5167, "meters")
  2641. },
  2642. {
  2643. name: "Gigamacro",
  2644. height: math.unit(41769, "miles")
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2650. {
  2651. front: {
  2652. height: math.unit(7, "feet"),
  2653. weight: math.unit(100, "kg"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/adake/front-1.svg"
  2657. }
  2658. },
  2659. frontAlt: {
  2660. height: math.unit(7, "feet"),
  2661. weight: math.unit(100, "kg"),
  2662. name: "Front (Alt)",
  2663. image: {
  2664. source: "./media/characters/adake/front-2.svg",
  2665. extra: 1,
  2666. bottom: 0.01
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(7, "feet"),
  2671. weight: math.unit(100, "kg"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/adake/back.svg",
  2675. }
  2676. },
  2677. kneel: {
  2678. height: math.unit(5.385, "feet"),
  2679. weight: math.unit(100, "kg"),
  2680. name: "Kneeling",
  2681. image: {
  2682. source: "./media/characters/adake/kneel.svg",
  2683. bottom: 0.052
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(7, "feet"),
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(78, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Macro+",
  2699. height: math.unit(300, "meters")
  2700. },
  2701. {
  2702. name: "Macro++",
  2703. height: math.unit(2400, "meters")
  2704. },
  2705. {
  2706. name: "Megamacro",
  2707. height: math.unit(5167, "meters")
  2708. },
  2709. {
  2710. name: "Gigamacro",
  2711. height: math.unit(41769, "miles")
  2712. },
  2713. ]
  2714. ))
  2715. characterMakers.push(() => makeCharacter(
  2716. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2717. {
  2718. front: {
  2719. height: math.unit(1.65, "meters"),
  2720. weight: math.unit(50, "kg"),
  2721. name: "Front",
  2722. image: {
  2723. source: "./media/characters/elijah/front.svg",
  2724. extra: 858 / 830,
  2725. bottom: 95.5 / 953.8559
  2726. }
  2727. },
  2728. back: {
  2729. height: math.unit(1.65, "meters"),
  2730. weight: math.unit(50, "kg"),
  2731. name: "Back",
  2732. image: {
  2733. source: "./media/characters/elijah/back.svg",
  2734. extra: 895 / 850,
  2735. bottom: 5.3 / 897.956
  2736. }
  2737. },
  2738. frontNsfw: {
  2739. height: math.unit(1.65, "meters"),
  2740. weight: math.unit(50, "kg"),
  2741. name: "Front (NSFW)",
  2742. image: {
  2743. source: "./media/characters/elijah/front-nsfw.svg",
  2744. extra: 858 / 830,
  2745. bottom: 95.5 / 953.8559
  2746. }
  2747. },
  2748. backNsfw: {
  2749. height: math.unit(1.65, "meters"),
  2750. weight: math.unit(50, "kg"),
  2751. name: "Back (NSFW)",
  2752. image: {
  2753. source: "./media/characters/elijah/back-nsfw.svg",
  2754. extra: 895 / 850,
  2755. bottom: 5.3 / 897.956
  2756. }
  2757. },
  2758. dick: {
  2759. height: math.unit(1, "feet"),
  2760. name: "Dick",
  2761. image: {
  2762. source: "./media/characters/elijah/dick.svg"
  2763. }
  2764. },
  2765. beakOpen: {
  2766. height: math.unit(1.25, "feet"),
  2767. name: "Beak (Open)",
  2768. image: {
  2769. source: "./media/characters/elijah/beak-open.svg"
  2770. }
  2771. },
  2772. beakShut: {
  2773. height: math.unit(1.25, "feet"),
  2774. name: "Beak (Shut)",
  2775. image: {
  2776. source: "./media/characters/elijah/beak-shut.svg"
  2777. }
  2778. },
  2779. footFlexing: {
  2780. height: math.unit(1.61, "feet"),
  2781. name: "Foot (Flexing)",
  2782. image: {
  2783. source: "./media/characters/elijah/foot-flexing.svg"
  2784. }
  2785. },
  2786. footStepping: {
  2787. height: math.unit(1.44, "feet"),
  2788. name: "Foot (Stepping)",
  2789. image: {
  2790. source: "./media/characters/elijah/foot-stepping.svg"
  2791. }
  2792. },
  2793. plantigradeLeg: {
  2794. height: math.unit(2.34, "feet"),
  2795. name: "Plantigrade Leg",
  2796. image: {
  2797. source: "./media/characters/elijah/plantigrade-leg.svg"
  2798. }
  2799. },
  2800. plantigradeFootLeft: {
  2801. height: math.unit(0.9, "feet"),
  2802. name: "Plantigrade Foot (Left)",
  2803. image: {
  2804. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2805. }
  2806. },
  2807. plantigradeFootRight: {
  2808. height: math.unit(0.9, "feet"),
  2809. name: "Plantigrade Foot (Right)",
  2810. image: {
  2811. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(1.65, "meters")
  2819. },
  2820. {
  2821. name: "Macro",
  2822. height: math.unit(55, "meters"),
  2823. default: true
  2824. },
  2825. {
  2826. name: "Macro+",
  2827. height: math.unit(105, "meters")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(7 + 2/12, "feet"),
  2836. weight: math.unit(320, "kg"),
  2837. preyCapacity: math.unit(0.276549935, "people"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/rai/front.svg",
  2841. extra: 1802/1696,
  2842. bottom: 68/1870
  2843. },
  2844. form: "anthro",
  2845. default: true
  2846. },
  2847. frontDressed: {
  2848. height: math.unit(7 + 2/12, "feet"),
  2849. weight: math.unit(320, "kg"),
  2850. preyCapacity: math.unit(0.276549935, "people"),
  2851. name: "Front (Dressed)",
  2852. image: {
  2853. source: "./media/characters/rai/front-dressed.svg",
  2854. extra: 1802/1696,
  2855. bottom: 68/1870
  2856. },
  2857. form: "anthro"
  2858. },
  2859. side: {
  2860. height: math.unit(7 + 2/12, "feet"),
  2861. weight: math.unit(320, "kg"),
  2862. preyCapacity: math.unit(0.276549935, "people"),
  2863. name: "Side",
  2864. image: {
  2865. source: "./media/characters/rai/side.svg",
  2866. extra: 1789/1710,
  2867. bottom: 115/1904
  2868. },
  2869. form: "anthro"
  2870. },
  2871. back: {
  2872. height: math.unit(7 + 2/12, "feet"),
  2873. weight: math.unit(320, "kg"),
  2874. preyCapacity: math.unit(0.276549935, "people"),
  2875. name: "Back",
  2876. image: {
  2877. source: "./media/characters/rai/back.svg",
  2878. extra: 1770/1707,
  2879. bottom: 28/1798
  2880. },
  2881. form: "anthro"
  2882. },
  2883. feral: {
  2884. height: math.unit(9.5, "feet"),
  2885. weight: math.unit(640, "kg"),
  2886. preyCapacity: math.unit(4, "people"),
  2887. name: "Feral",
  2888. image: {
  2889. source: "./media/characters/rai/feral.svg",
  2890. extra: 945/553,
  2891. bottom: 176/1121
  2892. },
  2893. form: "feral",
  2894. default: true
  2895. },
  2896. dragon: {
  2897. height: math.unit(23, "feet"),
  2898. weight: math.unit(50000, "lb"),
  2899. name: "Dragon",
  2900. image: {
  2901. source: "./media/characters/rai/dragon.svg",
  2902. extra: 2498 / 2030,
  2903. bottom: 85.2 / 2584
  2904. },
  2905. form: "dragon",
  2906. default: true
  2907. },
  2908. maw: {
  2909. height: math.unit(1.69, "feet"),
  2910. name: "Maw",
  2911. image: {
  2912. source: "./media/characters/rai/maw.svg"
  2913. },
  2914. form: "anthro"
  2915. },
  2916. },
  2917. [
  2918. {
  2919. name: "Normal",
  2920. height: math.unit(7 + 2/12, "feet"),
  2921. form: "anthro"
  2922. },
  2923. {
  2924. name: "Big",
  2925. height: math.unit(11, "feet"),
  2926. form: "anthro"
  2927. },
  2928. {
  2929. name: "Minimacro",
  2930. height: math.unit(77, "feet"),
  2931. form: "anthro"
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(302, "feet"),
  2936. default: true,
  2937. form: "anthro"
  2938. },
  2939. {
  2940. name: "Normal",
  2941. height: math.unit(9.5, "feet"),
  2942. form: "feral",
  2943. default: true
  2944. },
  2945. {
  2946. name: "Normal",
  2947. height: math.unit(23, "feet"),
  2948. form: "dragon",
  2949. default: true
  2950. }
  2951. ],
  2952. {
  2953. "anthro": {
  2954. name: "Anthro",
  2955. default: true
  2956. },
  2957. "feral": {
  2958. name: "Feral",
  2959. },
  2960. "dragon": {
  2961. name: "Dragon",
  2962. },
  2963. }
  2964. ))
  2965. characterMakers.push(() => makeCharacter(
  2966. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2967. {
  2968. frontDressed: {
  2969. height: math.unit(216, "feet"),
  2970. weight: math.unit(7000000, "lb"),
  2971. preyCapacity: math.unit(1321, "people"),
  2972. name: "Front (Dressed)",
  2973. image: {
  2974. source: "./media/characters/jazzy/front-dressed.svg",
  2975. extra: 2738 / 2651,
  2976. bottom: 41.8 / 2786
  2977. }
  2978. },
  2979. backDressed: {
  2980. height: math.unit(216, "feet"),
  2981. weight: math.unit(7000000, "lb"),
  2982. preyCapacity: math.unit(1321, "people"),
  2983. name: "Back (Dressed)",
  2984. image: {
  2985. source: "./media/characters/jazzy/back-dressed.svg",
  2986. extra: 2775 / 2673,
  2987. bottom: 36.8 / 2817
  2988. }
  2989. },
  2990. front: {
  2991. height: math.unit(216, "feet"),
  2992. weight: math.unit(7000000, "lb"),
  2993. preyCapacity: math.unit(1321, "people"),
  2994. name: "Front",
  2995. image: {
  2996. source: "./media/characters/jazzy/front.svg",
  2997. extra: 2738 / 2651,
  2998. bottom: 41.8 / 2786
  2999. }
  3000. },
  3001. back: {
  3002. height: math.unit(216, "feet"),
  3003. weight: math.unit(7000000, "lb"),
  3004. preyCapacity: math.unit(1321, "people"),
  3005. name: "Back",
  3006. image: {
  3007. source: "./media/characters/jazzy/back.svg",
  3008. extra: 2775 / 2673,
  3009. bottom: 36.8 / 2817
  3010. }
  3011. },
  3012. maw: {
  3013. height: math.unit(20, "feet"),
  3014. name: "Maw",
  3015. image: {
  3016. source: "./media/characters/jazzy/maw.svg"
  3017. }
  3018. },
  3019. paws: {
  3020. height: math.unit(27.5, "feet"),
  3021. name: "Paws",
  3022. image: {
  3023. source: "./media/characters/jazzy/paws.svg"
  3024. }
  3025. },
  3026. eye: {
  3027. height: math.unit(4.4, "feet"),
  3028. name: "Eye",
  3029. image: {
  3030. source: "./media/characters/jazzy/eye.svg"
  3031. }
  3032. },
  3033. droneOffense: {
  3034. height: math.unit(9.5, "inches"),
  3035. name: "Drone (Offense)",
  3036. image: {
  3037. source: "./media/characters/jazzy/drone-offense.svg"
  3038. }
  3039. },
  3040. droneRecon: {
  3041. height: math.unit(9.5, "inches"),
  3042. name: "Drone (Recon)",
  3043. image: {
  3044. source: "./media/characters/jazzy/drone-recon.svg"
  3045. }
  3046. },
  3047. droneDefense: {
  3048. height: math.unit(9.5, "inches"),
  3049. name: "Drone (Defense)",
  3050. image: {
  3051. source: "./media/characters/jazzy/drone-defense.svg"
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(216, "feet"),
  3059. default: true
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(9 + 6/12, "feet"),
  3068. weight: math.unit(700, "lb"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/flamm/front.svg",
  3072. extra: 1751/1632,
  3073. bottom: 46/1797
  3074. }
  3075. },
  3076. buff: {
  3077. height: math.unit(9 + 6/12, "feet"),
  3078. weight: math.unit(950, "lb"),
  3079. name: "Buff",
  3080. image: {
  3081. source: "./media/characters/flamm/buff.svg",
  3082. extra: 3018/2874,
  3083. bottom: 221/3239
  3084. }
  3085. },
  3086. },
  3087. [
  3088. {
  3089. name: "Normal",
  3090. height: math.unit(9.5, "feet")
  3091. },
  3092. {
  3093. name: "Macro",
  3094. height: math.unit(200, "feet"),
  3095. default: true
  3096. },
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3101. {
  3102. front: {
  3103. height: math.unit(5 + 3/12, "feet"),
  3104. weight: math.unit(60, "kg"),
  3105. name: "Front",
  3106. image: {
  3107. source: "./media/characters/zephiro/front.svg",
  3108. extra: 1873/1761,
  3109. bottom: 147/2020
  3110. }
  3111. },
  3112. side: {
  3113. height: math.unit(5 + 3/12, "feet"),
  3114. weight: math.unit(60, "kg"),
  3115. name: "Side",
  3116. image: {
  3117. source: "./media/characters/zephiro/side.svg",
  3118. extra: 1929/1827,
  3119. bottom: 65/1994
  3120. }
  3121. },
  3122. back: {
  3123. height: math.unit(5 + 3/12, "feet"),
  3124. weight: math.unit(60, "kg"),
  3125. name: "Back",
  3126. image: {
  3127. source: "./media/characters/zephiro/back.svg",
  3128. extra: 1926/1816,
  3129. bottom: 41/1967
  3130. }
  3131. },
  3132. hand: {
  3133. height: math.unit(0.68, "feet"),
  3134. name: "Hand",
  3135. image: {
  3136. source: "./media/characters/zephiro/hand.svg"
  3137. }
  3138. },
  3139. paw: {
  3140. height: math.unit(1, "feet"),
  3141. name: "Paw",
  3142. image: {
  3143. source: "./media/characters/zephiro/paw.svg"
  3144. }
  3145. },
  3146. beans: {
  3147. height: math.unit(0.93, "feet"),
  3148. name: "Beans",
  3149. image: {
  3150. source: "./media/characters/zephiro/beans.svg"
  3151. }
  3152. },
  3153. },
  3154. [
  3155. {
  3156. name: "Micro",
  3157. height: math.unit(3, "inches")
  3158. },
  3159. {
  3160. name: "Normal",
  3161. height: math.unit(5 + 3 / 12, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Macro",
  3166. height: math.unit(118, "feet")
  3167. },
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(5, "feet"),
  3175. weight: math.unit(90, "kg"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/fory/front.svg",
  3179. extra: 2862 / 2674,
  3180. bottom: 180 / 3043.8
  3181. }
  3182. },
  3183. back: {
  3184. height: math.unit(5, "feet"),
  3185. weight: math.unit(90, "kg"),
  3186. name: "Back",
  3187. image: {
  3188. source: "./media/characters/fory/back.svg",
  3189. extra: 1790/1672,
  3190. bottom: 84/1874
  3191. }
  3192. },
  3193. paw: {
  3194. height: math.unit(2.14, "feet"),
  3195. name: "Paw",
  3196. image: {
  3197. source: "./media/characters/fory/paw.svg"
  3198. }
  3199. },
  3200. },
  3201. [
  3202. {
  3203. name: "Normal",
  3204. height: math.unit(5, "feet")
  3205. },
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(50, "feet"),
  3209. default: true
  3210. },
  3211. {
  3212. name: "Megamacro",
  3213. height: math.unit(10, "miles")
  3214. },
  3215. {
  3216. name: "Gigamacro",
  3217. height: math.unit(5, "earths")
  3218. },
  3219. ]
  3220. ))
  3221. characterMakers.push(() => makeCharacter(
  3222. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3223. {
  3224. front: {
  3225. height: math.unit(7, "feet"),
  3226. weight: math.unit(90, "kg"),
  3227. name: "Front",
  3228. image: {
  3229. source: "./media/characters/kurrikage/front.svg",
  3230. extra: 1845/1733,
  3231. bottom: 119/1964
  3232. }
  3233. },
  3234. back: {
  3235. height: math.unit(7, "feet"),
  3236. weight: math.unit(90, "kg"),
  3237. name: "Back",
  3238. image: {
  3239. source: "./media/characters/kurrikage/back.svg",
  3240. extra: 1790/1677,
  3241. bottom: 61/1851
  3242. }
  3243. },
  3244. dressed: {
  3245. height: math.unit(7, "feet"),
  3246. weight: math.unit(90, "kg"),
  3247. name: "Dressed",
  3248. image: {
  3249. source: "./media/characters/kurrikage/dressed.svg",
  3250. extra: 1845/1733,
  3251. bottom: 119/1964
  3252. }
  3253. },
  3254. foot: {
  3255. height: math.unit(1.5, "feet"),
  3256. name: "Foot",
  3257. image: {
  3258. source: "./media/characters/kurrikage/foot.svg"
  3259. }
  3260. },
  3261. staff: {
  3262. height: math.unit(6.7, "feet"),
  3263. name: "Staff",
  3264. image: {
  3265. source: "./media/characters/kurrikage/staff.svg"
  3266. }
  3267. },
  3268. peek: {
  3269. height: math.unit(1.05, "feet"),
  3270. name: "Peeking",
  3271. image: {
  3272. source: "./media/characters/kurrikage/peek.svg",
  3273. bottom: 0.08
  3274. }
  3275. },
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(12, "feet"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Big",
  3285. height: math.unit(20, "feet")
  3286. },
  3287. {
  3288. name: "Macro",
  3289. height: math.unit(500, "feet")
  3290. },
  3291. {
  3292. name: "Megamacro",
  3293. height: math.unit(20, "miles")
  3294. },
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(6, "feet"),
  3302. weight: math.unit(75, "kg"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/shingo/front.svg",
  3306. extra: 1900/1825,
  3307. bottom: 82/1982
  3308. }
  3309. },
  3310. side: {
  3311. height: math.unit(6, "feet"),
  3312. weight: math.unit(75, "kg"),
  3313. name: "Side",
  3314. image: {
  3315. source: "./media/characters/shingo/side.svg",
  3316. extra: 1930/1865,
  3317. bottom: 16/1946
  3318. }
  3319. },
  3320. back: {
  3321. height: math.unit(6, "feet"),
  3322. weight: math.unit(75, "kg"),
  3323. name: "Back",
  3324. image: {
  3325. source: "./media/characters/shingo/back.svg",
  3326. extra: 1922/1852,
  3327. bottom: 16/1938
  3328. }
  3329. },
  3330. frontDressed: {
  3331. height: math.unit(6, "feet"),
  3332. weight: math.unit(150, "lb"),
  3333. name: "Front-dressed",
  3334. image: {
  3335. source: "./media/characters/shingo/front-dressed.svg",
  3336. extra: 1900/1825,
  3337. bottom: 82/1982
  3338. }
  3339. },
  3340. paw: {
  3341. height: math.unit(1.29, "feet"),
  3342. name: "Paw",
  3343. image: {
  3344. source: "./media/characters/shingo/paw.svg"
  3345. }
  3346. },
  3347. hand: {
  3348. height: math.unit(1.07, "feet"),
  3349. name: "Hand",
  3350. image: {
  3351. source: "./media/characters/shingo/hand.svg"
  3352. }
  3353. },
  3354. frontAlt: {
  3355. height: math.unit(6, "feet"),
  3356. weight: math.unit(75, "kg"),
  3357. name: "Front (Alt)",
  3358. image: {
  3359. source: "./media/characters/shingo/front-alt.svg",
  3360. extra: 3511 / 3338,
  3361. bottom: 0.005
  3362. }
  3363. },
  3364. frontAlt2: {
  3365. height: math.unit(6, "feet"),
  3366. weight: math.unit(75, "kg"),
  3367. name: "Front (Alt 2)",
  3368. image: {
  3369. source: "./media/characters/shingo/front-alt-2.svg",
  3370. extra: 706/681,
  3371. bottom: 11/717
  3372. }
  3373. },
  3374. pawAlt: {
  3375. height: math.unit(1, "feet"),
  3376. name: "Paw (Alt)",
  3377. image: {
  3378. source: "./media/characters/shingo/paw-alt.svg"
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Micro",
  3385. height: math.unit(4, "inches")
  3386. },
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(6, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(108, "feet")
  3395. },
  3396. {
  3397. name: "Macro+",
  3398. height: math.unit(1500, "feet")
  3399. },
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3404. {
  3405. side: {
  3406. height: math.unit(6, "feet"),
  3407. weight: math.unit(75, "kg"),
  3408. name: "Side",
  3409. image: {
  3410. source: "./media/characters/aigey/side.svg"
  3411. }
  3412. },
  3413. },
  3414. [
  3415. {
  3416. name: "Macro",
  3417. height: math.unit(200, "feet"),
  3418. default: true
  3419. },
  3420. {
  3421. name: "Megamacro",
  3422. height: math.unit(100, "miles")
  3423. },
  3424. ]
  3425. )
  3426. )
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(5 + 5 / 12, "feet"),
  3432. weight: math.unit(75, "kg"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/natasha/front.svg",
  3436. extra: 859 / 824,
  3437. bottom: 23 / 879.6
  3438. }
  3439. },
  3440. frontNsfw: {
  3441. height: math.unit(5 + 5 / 12, "feet"),
  3442. weight: math.unit(75, "kg"),
  3443. name: "Front (NSFW)",
  3444. image: {
  3445. source: "./media/characters/natasha/front-nsfw.svg",
  3446. extra: 859 / 824,
  3447. bottom: 23 / 879.6
  3448. }
  3449. },
  3450. frontErect: {
  3451. height: math.unit(5 + 5 / 12, "feet"),
  3452. weight: math.unit(75, "kg"),
  3453. name: "Front (Erect)",
  3454. image: {
  3455. source: "./media/characters/natasha/front-erect.svg",
  3456. extra: 859 / 824,
  3457. bottom: 23 / 879.6
  3458. }
  3459. },
  3460. back: {
  3461. height: math.unit(5 + 5 / 12, "feet"),
  3462. weight: math.unit(75, "kg"),
  3463. name: "Back",
  3464. image: {
  3465. source: "./media/characters/natasha/back.svg",
  3466. extra: 887.9 / 852.6,
  3467. bottom: 9.7 / 896.4
  3468. }
  3469. },
  3470. backAlt: {
  3471. height: math.unit(5 + 5 / 12, "feet"),
  3472. weight: math.unit(75, "kg"),
  3473. name: "Back (Alt)",
  3474. image: {
  3475. source: "./media/characters/natasha/back-alt.svg",
  3476. extra: 1236.7 / 1192,
  3477. bottom: 22.3 / 1258.2
  3478. }
  3479. },
  3480. dick: {
  3481. height: math.unit(1.772, "feet"),
  3482. name: "Dick",
  3483. image: {
  3484. source: "./media/characters/natasha/dick.svg"
  3485. }
  3486. },
  3487. paw: {
  3488. height: math.unit(0.250, "meters"),
  3489. name: "Paw",
  3490. image: {
  3491. source: "./media/characters/natasha/paw.svg"
  3492. },
  3493. extraAttributes: {
  3494. "toeSize": {
  3495. name: "Toe Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.0024, "m^2")
  3499. },
  3500. "padSize": {
  3501. name: "Pad Size",
  3502. power: 2,
  3503. type: "area",
  3504. base: math.unit(0.00889, "m^2")
  3505. },
  3506. "pawSize": {
  3507. name: "Paw Size",
  3508. power: 2,
  3509. type: "area",
  3510. base: math.unit(0.023667, "m^2")
  3511. },
  3512. }
  3513. },
  3514. },
  3515. [
  3516. {
  3517. name: "Shortstack",
  3518. height: math.unit(3, "feet"),
  3519. default: true
  3520. },
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(5 + 5 / 12, "feet")
  3524. },
  3525. {
  3526. name: "Large",
  3527. height: math.unit(12, "feet")
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(100, "feet")
  3532. },
  3533. {
  3534. name: "Macro+",
  3535. height: math.unit(260, "feet")
  3536. },
  3537. {
  3538. name: "Macro++",
  3539. height: math.unit(1, "mile")
  3540. },
  3541. ]
  3542. ))
  3543. characterMakers.push(() => makeCharacter(
  3544. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3545. {
  3546. front: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Front",
  3550. image: {
  3551. source: "./media/characters/malik/front.svg",
  3552. extra: 1750/1561,
  3553. bottom: 80/1830
  3554. },
  3555. extraAttributes: {
  3556. "toeSize": {
  3557. name: "Toe Size",
  3558. power: 2,
  3559. type: "area",
  3560. base: math.unit(0.0159, "m^2")
  3561. },
  3562. "pawSize": {
  3563. name: "Paw Size",
  3564. power: 2,
  3565. type: "area",
  3566. base: math.unit(0.09834, "m^2")
  3567. },
  3568. }
  3569. },
  3570. side: {
  3571. height: math.unit(6, "feet"),
  3572. weight: math.unit(75, "kg"),
  3573. name: "Side",
  3574. image: {
  3575. source: "./media/characters/malik/side.svg",
  3576. extra: 1802/1685,
  3577. bottom: 42/1844
  3578. },
  3579. extraAttributes: {
  3580. "toeSize": {
  3581. name: "Toe Size",
  3582. power: 2,
  3583. type: "area",
  3584. base: math.unit(0.0159, "m^2")
  3585. },
  3586. "pawSize": {
  3587. name: "Paw Size",
  3588. power: 2,
  3589. type: "area",
  3590. base: math.unit(0.09834, "m^2")
  3591. },
  3592. }
  3593. },
  3594. back: {
  3595. height: math.unit(6, "feet"),
  3596. weight: math.unit(75, "kg"),
  3597. name: "Back",
  3598. image: {
  3599. source: "./media/characters/malik/back.svg",
  3600. extra: 1803/1607,
  3601. bottom: 33/1836
  3602. },
  3603. extraAttributes: {
  3604. "toeSize": {
  3605. name: "Toe Size",
  3606. power: 2,
  3607. type: "area",
  3608. base: math.unit(0.0159, "m^2")
  3609. },
  3610. "pawSize": {
  3611. name: "Paw Size",
  3612. power: 2,
  3613. type: "area",
  3614. base: math.unit(0.09834, "m^2")
  3615. },
  3616. }
  3617. },
  3618. },
  3619. [
  3620. {
  3621. name: "Macro",
  3622. height: math.unit(156, "feet"),
  3623. default: true
  3624. },
  3625. {
  3626. name: "Macro+",
  3627. height: math.unit(1188, "feet")
  3628. },
  3629. ]
  3630. ))
  3631. characterMakers.push(() => makeCharacter(
  3632. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3633. {
  3634. front: {
  3635. height: math.unit(6, "feet"),
  3636. weight: math.unit(75, "kg"),
  3637. name: "Front",
  3638. image: {
  3639. source: "./media/characters/sefer/front.svg",
  3640. extra: 848 / 659,
  3641. bottom: 28.3 / 876.442
  3642. }
  3643. },
  3644. back: {
  3645. height: math.unit(6, "feet"),
  3646. weight: math.unit(75, "kg"),
  3647. name: "Back",
  3648. image: {
  3649. source: "./media/characters/sefer/back.svg",
  3650. extra: 864 / 695,
  3651. bottom: 10 / 871
  3652. }
  3653. },
  3654. frontDressed: {
  3655. height: math.unit(6, "feet"),
  3656. weight: math.unit(75, "kg"),
  3657. name: "Dressed",
  3658. image: {
  3659. source: "./media/characters/sefer/dressed.svg",
  3660. extra: 839 / 653,
  3661. bottom: 37.6 / 878
  3662. }
  3663. },
  3664. },
  3665. [
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(6, "feet"),
  3669. default: true
  3670. },
  3671. {
  3672. name: "Big",
  3673. height: math.unit(8, "meters")
  3674. },
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3679. {
  3680. body: {
  3681. height: math.unit(2.2428, "meter"),
  3682. weight: math.unit(124.738, "kg"),
  3683. name: "Body",
  3684. image: {
  3685. extra: 1225 / 1050,
  3686. source: "./media/characters/north/front.svg"
  3687. }
  3688. }
  3689. },
  3690. [
  3691. {
  3692. name: "Micro",
  3693. height: math.unit(4, "inches")
  3694. },
  3695. {
  3696. name: "Macro",
  3697. height: math.unit(63, "meters")
  3698. },
  3699. {
  3700. name: "Megamacro",
  3701. height: math.unit(101, "miles"),
  3702. default: true
  3703. }
  3704. ]
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3708. {
  3709. angled: {
  3710. height: math.unit(4, "meter"),
  3711. weight: math.unit(150, "kg"),
  3712. name: "Angled",
  3713. image: {
  3714. source: "./media/characters/talan/angled-sfw.svg",
  3715. bottom: 29 / 3734
  3716. }
  3717. },
  3718. angledNsfw: {
  3719. height: math.unit(4, "meter"),
  3720. weight: math.unit(150, "kg"),
  3721. name: "Angled (NSFW)",
  3722. image: {
  3723. source: "./media/characters/talan/angled-nsfw.svg",
  3724. bottom: 29 / 3734
  3725. }
  3726. },
  3727. frontNsfw: {
  3728. height: math.unit(4, "meter"),
  3729. weight: math.unit(150, "kg"),
  3730. name: "Front (NSFW)",
  3731. image: {
  3732. source: "./media/characters/talan/front-nsfw.svg",
  3733. bottom: 29 / 3734
  3734. }
  3735. },
  3736. sideNsfw: {
  3737. height: math.unit(4, "meter"),
  3738. weight: math.unit(150, "kg"),
  3739. name: "Side (NSFW)",
  3740. image: {
  3741. source: "./media/characters/talan/side-nsfw.svg",
  3742. bottom: 29 / 3734
  3743. }
  3744. },
  3745. back: {
  3746. height: math.unit(4, "meter"),
  3747. weight: math.unit(150, "kg"),
  3748. name: "Back",
  3749. image: {
  3750. source: "./media/characters/talan/back.svg"
  3751. }
  3752. },
  3753. dickBottom: {
  3754. height: math.unit(0.621, "meter"),
  3755. name: "Dick (Bottom)",
  3756. image: {
  3757. source: "./media/characters/talan/dick-bottom.svg"
  3758. }
  3759. },
  3760. dickTop: {
  3761. height: math.unit(0.621, "meter"),
  3762. name: "Dick (Top)",
  3763. image: {
  3764. source: "./media/characters/talan/dick-top.svg"
  3765. }
  3766. },
  3767. dickSide: {
  3768. height: math.unit(0.305, "meter"),
  3769. name: "Dick (Side)",
  3770. image: {
  3771. source: "./media/characters/talan/dick-side.svg"
  3772. }
  3773. },
  3774. dickFront: {
  3775. height: math.unit(0.305, "meter"),
  3776. name: "Dick (Front)",
  3777. image: {
  3778. source: "./media/characters/talan/dick-front.svg"
  3779. }
  3780. },
  3781. },
  3782. [
  3783. {
  3784. name: "Normal",
  3785. height: math.unit(4, "meters")
  3786. },
  3787. {
  3788. name: "Macro",
  3789. height: math.unit(100, "meters")
  3790. },
  3791. {
  3792. name: "Megamacro",
  3793. height: math.unit(2, "miles"),
  3794. default: true
  3795. },
  3796. {
  3797. name: "Gigamacro",
  3798. height: math.unit(5000, "miles")
  3799. },
  3800. {
  3801. name: "Teramacro",
  3802. height: math.unit(100, "parsecs")
  3803. }
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(2, "meter"),
  3811. weight: math.unit(90, "kg"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/gael'rathus/front.svg"
  3815. }
  3816. },
  3817. frontAlt: {
  3818. height: math.unit(2, "meter"),
  3819. weight: math.unit(90, "kg"),
  3820. name: "Front (alt)",
  3821. image: {
  3822. source: "./media/characters/gael'rathus/front-alt.svg"
  3823. }
  3824. },
  3825. frontAlt2: {
  3826. height: math.unit(2, "meter"),
  3827. weight: math.unit(90, "kg"),
  3828. name: "Front (alt 2)",
  3829. image: {
  3830. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3831. }
  3832. }
  3833. },
  3834. [
  3835. {
  3836. name: "Normal",
  3837. height: math.unit(9, "feet"),
  3838. default: true
  3839. },
  3840. {
  3841. name: "Large",
  3842. height: math.unit(25, "feet")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(0.25, "miles")
  3847. },
  3848. {
  3849. name: "Megamacro",
  3850. height: math.unit(10, "miles")
  3851. }
  3852. ]
  3853. ))
  3854. characterMakers.push(() => makeCharacter(
  3855. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3856. {
  3857. side: {
  3858. height: math.unit(2, "meter"),
  3859. weight: math.unit(140, "kg"),
  3860. name: "Side",
  3861. image: {
  3862. source: "./media/characters/sosha/side.svg",
  3863. extra: 1170/1006,
  3864. bottom: 94/1264
  3865. }
  3866. },
  3867. maw: {
  3868. height: math.unit(2.87, "feet"),
  3869. name: "Maw",
  3870. image: {
  3871. source: "./media/characters/sosha/maw.svg",
  3872. extra: 966/865,
  3873. bottom: 0/966
  3874. }
  3875. },
  3876. cooch: {
  3877. height: math.unit(5.6, "feet"),
  3878. name: "Cooch",
  3879. image: {
  3880. source: "./media/characters/sosha/cooch.svg"
  3881. }
  3882. },
  3883. },
  3884. [
  3885. {
  3886. name: "Normal",
  3887. height: math.unit(12, "feet"),
  3888. default: true
  3889. }
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3894. {
  3895. side: {
  3896. height: math.unit(5 + 5 / 12, "feet"),
  3897. weight: math.unit(170, "kg"),
  3898. name: "Side",
  3899. image: {
  3900. source: "./media/characters/runnola/side.svg",
  3901. extra: 741 / 448,
  3902. bottom: 0.05
  3903. }
  3904. },
  3905. },
  3906. [
  3907. {
  3908. name: "Small",
  3909. height: math.unit(3, "feet")
  3910. },
  3911. {
  3912. name: "Normal",
  3913. height: math.unit(5 + 5 / 12, "feet"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "Big",
  3918. height: math.unit(10, "feet")
  3919. },
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(2, "meter"),
  3927. weight: math.unit(50, "kg"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/kurribird/front.svg",
  3931. bottom: 0.015
  3932. }
  3933. },
  3934. frontAlt: {
  3935. height: math.unit(1.5, "meter"),
  3936. weight: math.unit(50, "kg"),
  3937. name: "Front (Alt)",
  3938. image: {
  3939. source: "./media/characters/kurribird/front-alt.svg",
  3940. extra: 1.45
  3941. }
  3942. },
  3943. },
  3944. [
  3945. {
  3946. name: "Normal",
  3947. height: math.unit(7, "feet")
  3948. },
  3949. {
  3950. name: "Big",
  3951. height: math.unit(12, "feet"),
  3952. default: true
  3953. },
  3954. {
  3955. name: "Macro",
  3956. height: math.unit(1500, "feet")
  3957. },
  3958. {
  3959. name: "Megamacro",
  3960. height: math.unit(2, "miles")
  3961. }
  3962. ]
  3963. ))
  3964. characterMakers.push(() => makeCharacter(
  3965. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3966. {
  3967. front: {
  3968. height: math.unit(2, "meter"),
  3969. weight: math.unit(80, "kg"),
  3970. name: "Front",
  3971. image: {
  3972. source: "./media/characters/elbial/front.svg",
  3973. extra: 1643 / 1556,
  3974. bottom: 60.2 / 1696
  3975. }
  3976. },
  3977. side: {
  3978. height: math.unit(2, "meter"),
  3979. weight: math.unit(80, "kg"),
  3980. name: "Side",
  3981. image: {
  3982. source: "./media/characters/elbial/side.svg",
  3983. extra: 1601/1528,
  3984. bottom: 97/1698
  3985. }
  3986. },
  3987. back: {
  3988. height: math.unit(2, "meter"),
  3989. weight: math.unit(80, "kg"),
  3990. name: "Back",
  3991. image: {
  3992. source: "./media/characters/elbial/back.svg",
  3993. extra: 1653/1569,
  3994. bottom: 20/1673
  3995. }
  3996. },
  3997. frontDressed: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(80, "kg"),
  4000. name: "Front (Dressed)",
  4001. image: {
  4002. source: "./media/characters/elbial/front-dressed.svg",
  4003. extra: 1638/1569,
  4004. bottom: 70/1708
  4005. }
  4006. },
  4007. genitals: {
  4008. height: math.unit(2 / 3.367, "meter"),
  4009. name: "Genitals",
  4010. image: {
  4011. source: "./media/characters/elbial/genitals.svg"
  4012. }
  4013. },
  4014. },
  4015. [
  4016. {
  4017. name: "Large",
  4018. height: math.unit(100, "feet")
  4019. },
  4020. {
  4021. name: "Macro",
  4022. height: math.unit(500, "feet"),
  4023. default: true
  4024. },
  4025. {
  4026. name: "Megamacro",
  4027. height: math.unit(10, "miles")
  4028. },
  4029. {
  4030. name: "Gigamacro",
  4031. height: math.unit(25000, "miles")
  4032. },
  4033. {
  4034. name: "Full-Size",
  4035. height: math.unit(8000000, "gigaparsecs")
  4036. }
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4041. {
  4042. front: {
  4043. height: math.unit(2, "meter"),
  4044. weight: math.unit(60, "kg"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/noah/front.svg"
  4048. }
  4049. },
  4050. talons: {
  4051. height: math.unit(0.315, "meter"),
  4052. name: "Talons",
  4053. image: {
  4054. source: "./media/characters/noah/talons.svg"
  4055. }
  4056. }
  4057. },
  4058. [
  4059. {
  4060. name: "Large",
  4061. height: math.unit(50, "feet")
  4062. },
  4063. {
  4064. name: "Macro",
  4065. height: math.unit(750, "feet"),
  4066. default: true
  4067. },
  4068. {
  4069. name: "Megamacro",
  4070. height: math.unit(50, "miles")
  4071. },
  4072. {
  4073. name: "Gigamacro",
  4074. height: math.unit(100000, "miles")
  4075. },
  4076. {
  4077. name: "Full-Size",
  4078. height: math.unit(3000000000, "miles")
  4079. }
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(2, "meter"),
  4087. weight: math.unit(80, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/natalya/front.svg"
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(2, "meter"),
  4095. weight: math.unit(80, "kg"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/natalya/back.svg"
  4099. }
  4100. }
  4101. },
  4102. [
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(150, "feet"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Megamacro",
  4110. height: math.unit(5, "miles")
  4111. },
  4112. {
  4113. name: "Full-Size",
  4114. height: math.unit(600, "kiloparsecs")
  4115. }
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4120. {
  4121. front: {
  4122. height: math.unit(2, "meter"),
  4123. weight: math.unit(50, "kg"),
  4124. name: "Front",
  4125. image: {
  4126. source: "./media/characters/erestrebah/front.svg",
  4127. extra: 1262/1162,
  4128. bottom: 96/1358
  4129. }
  4130. },
  4131. back: {
  4132. height: math.unit(2, "meter"),
  4133. weight: math.unit(50, "kg"),
  4134. name: "Back",
  4135. image: {
  4136. source: "./media/characters/erestrebah/back.svg",
  4137. extra: 1257/1139,
  4138. bottom: 13/1270
  4139. }
  4140. },
  4141. wing: {
  4142. height: math.unit(2, "meter"),
  4143. weight: math.unit(50, "kg"),
  4144. name: "Wing",
  4145. image: {
  4146. source: "./media/characters/erestrebah/wing.svg",
  4147. extra: 1262/1162,
  4148. bottom: 96/1358
  4149. }
  4150. },
  4151. mouth: {
  4152. height: math.unit(0.39, "feet"),
  4153. name: "Mouth",
  4154. image: {
  4155. source: "./media/characters/erestrebah/mouth.svg"
  4156. }
  4157. }
  4158. },
  4159. [
  4160. {
  4161. name: "Normal",
  4162. height: math.unit(10, "feet")
  4163. },
  4164. {
  4165. name: "Large",
  4166. height: math.unit(50, "feet"),
  4167. default: true
  4168. },
  4169. {
  4170. name: "Macro",
  4171. height: math.unit(300, "feet")
  4172. },
  4173. {
  4174. name: "Macro+",
  4175. height: math.unit(750, "feet")
  4176. },
  4177. {
  4178. name: "Megamacro",
  4179. height: math.unit(3, "miles")
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4185. {
  4186. front: {
  4187. height: math.unit(2, "meter"),
  4188. weight: math.unit(80, "kg"),
  4189. name: "Front",
  4190. image: {
  4191. source: "./media/characters/jennifer/front.svg",
  4192. bottom: 0.11,
  4193. extra: 1.16
  4194. }
  4195. },
  4196. frontAlt: {
  4197. height: math.unit(2, "meter"),
  4198. weight: math.unit(80, "kg"),
  4199. name: "Front (Alt)",
  4200. image: {
  4201. source: "./media/characters/jennifer/front-alt.svg"
  4202. }
  4203. }
  4204. },
  4205. [
  4206. {
  4207. name: "Canon Height",
  4208. height: math.unit(120, "feet"),
  4209. default: true
  4210. },
  4211. {
  4212. name: "Macro+",
  4213. height: math.unit(300, "feet")
  4214. },
  4215. {
  4216. name: "Megamacro",
  4217. height: math.unit(20000, "feet")
  4218. }
  4219. ]
  4220. ))
  4221. characterMakers.push(() => makeCharacter(
  4222. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4223. {
  4224. front: {
  4225. height: math.unit(2, "meter"),
  4226. weight: math.unit(50, "kg"),
  4227. name: "Front",
  4228. image: {
  4229. source: "./media/characters/kalista/front.svg",
  4230. extra: 1314/1145,
  4231. bottom: 101/1415
  4232. }
  4233. },
  4234. back: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(50, "kg"),
  4237. name: "Back",
  4238. image: {
  4239. source: "./media/characters/kalista/back.svg",
  4240. extra: 1366 / 1156,
  4241. bottom: 33.9 / 1362.78
  4242. }
  4243. }
  4244. },
  4245. [
  4246. {
  4247. name: "Uncomfortably Small",
  4248. height: math.unit(10, "feet")
  4249. },
  4250. {
  4251. name: "Small",
  4252. height: math.unit(30, "feet")
  4253. },
  4254. {
  4255. name: "Macro",
  4256. height: math.unit(100, "feet"),
  4257. default: true
  4258. },
  4259. {
  4260. name: "Macro+",
  4261. height: math.unit(2000, "feet")
  4262. },
  4263. {
  4264. name: "True Form",
  4265. height: math.unit(8924, "miles")
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4271. {
  4272. front: {
  4273. height: math.unit(2, "meter"),
  4274. weight: math.unit(120, "kg"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/ggv/front.svg"
  4278. }
  4279. },
  4280. side: {
  4281. height: math.unit(2, "meter"),
  4282. weight: math.unit(120, "kg"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/ggv/side.svg"
  4286. }
  4287. }
  4288. },
  4289. [
  4290. {
  4291. name: "Extremely Puny",
  4292. height: math.unit(9 + 5 / 12, "feet")
  4293. },
  4294. {
  4295. name: "Horribly Small",
  4296. height: math.unit(47.7, "miles"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Reasonably Sized",
  4301. height: math.unit(25000, "parsecs")
  4302. },
  4303. {
  4304. name: "Slightly Uncompressed",
  4305. height: math.unit(7.77e31, "parsecs")
  4306. },
  4307. {
  4308. name: "Omniversal",
  4309. height: math.unit(1e300, "meters")
  4310. },
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4315. {
  4316. front: {
  4317. height: math.unit(2, "meter"),
  4318. weight: math.unit(75, "lb"),
  4319. name: "Front",
  4320. image: {
  4321. source: "./media/characters/napalm/front.svg"
  4322. }
  4323. },
  4324. back: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(75, "lb"),
  4327. name: "Back",
  4328. image: {
  4329. source: "./media/characters/napalm/back.svg"
  4330. }
  4331. }
  4332. },
  4333. [
  4334. {
  4335. name: "Standard",
  4336. height: math.unit(55, "feet"),
  4337. default: true
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(7 + 5 / 6, "feet"),
  4346. weight: math.unit(325, "lb"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/asana/front.svg",
  4350. extra: 1133 / 1060,
  4351. bottom: 15.2 / 1148.6
  4352. }
  4353. },
  4354. back: {
  4355. height: math.unit(7 + 5 / 6, "feet"),
  4356. weight: math.unit(325, "lb"),
  4357. name: "Back",
  4358. image: {
  4359. source: "./media/characters/asana/back.svg",
  4360. extra: 1114 / 1043,
  4361. bottom: 5 / 1120
  4362. }
  4363. },
  4364. dressedDark: {
  4365. height: math.unit(7 + 5 / 6, "feet"),
  4366. weight: math.unit(325, "lb"),
  4367. name: "Dressed (Dark)",
  4368. image: {
  4369. source: "./media/characters/asana/dressed-dark.svg",
  4370. extra: 1133 / 1060,
  4371. bottom: 15.2 / 1148.6
  4372. }
  4373. },
  4374. dressedLight: {
  4375. height: math.unit(7 + 5 / 6, "feet"),
  4376. weight: math.unit(325, "lb"),
  4377. name: "Dressed (Light)",
  4378. image: {
  4379. source: "./media/characters/asana/dressed-light.svg",
  4380. extra: 1133 / 1060,
  4381. bottom: 15.2 / 1148.6
  4382. }
  4383. },
  4384. },
  4385. [
  4386. {
  4387. name: "Standard",
  4388. height: math.unit(7 + 5 / 6, "feet"),
  4389. default: true
  4390. },
  4391. {
  4392. name: "Large",
  4393. height: math.unit(10, "meters")
  4394. },
  4395. {
  4396. name: "Macro",
  4397. height: math.unit(2500, "meters")
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(5e6, "meters")
  4402. },
  4403. {
  4404. name: "Examacro",
  4405. height: math.unit(5e12, "lightyears")
  4406. },
  4407. {
  4408. name: "Max Size",
  4409. height: math.unit(1e31, "lightyears")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(2, "meter"),
  4418. weight: math.unit(60, "kg"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/ebony/front.svg",
  4422. bottom: 0.03,
  4423. extra: 1045 / 810 + 0.03
  4424. }
  4425. },
  4426. side: {
  4427. height: math.unit(2, "meter"),
  4428. weight: math.unit(60, "kg"),
  4429. name: "Side",
  4430. image: {
  4431. source: "./media/characters/ebony/side.svg",
  4432. bottom: 0.03,
  4433. extra: 1045 / 810 + 0.03
  4434. }
  4435. },
  4436. back: {
  4437. height: math.unit(2, "meter"),
  4438. weight: math.unit(60, "kg"),
  4439. name: "Back",
  4440. image: {
  4441. source: "./media/characters/ebony/back.svg",
  4442. bottom: 0.01,
  4443. extra: 1045 / 810 + 0.01
  4444. }
  4445. },
  4446. },
  4447. [
  4448. // TODO check why I did this lol
  4449. {
  4450. name: "Standard",
  4451. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(200, "feet")
  4457. },
  4458. {
  4459. name: "Gigamacro",
  4460. height: math.unit(13000, "km")
  4461. }
  4462. ]
  4463. ))
  4464. characterMakers.push(() => makeCharacter(
  4465. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4466. {
  4467. front: {
  4468. height: math.unit(6, "feet"),
  4469. weight: math.unit(175, "lb"),
  4470. name: "Front",
  4471. image: {
  4472. source: "./media/characters/mountain/front.svg",
  4473. extra: 972 / 955,
  4474. bottom: 64 / 1036.6
  4475. }
  4476. },
  4477. back: {
  4478. height: math.unit(6, "feet"),
  4479. weight: math.unit(175, "lb"),
  4480. name: "Back",
  4481. image: {
  4482. source: "./media/characters/mountain/back.svg",
  4483. extra: 970 / 950,
  4484. bottom: 28.25 / 999
  4485. }
  4486. },
  4487. },
  4488. [
  4489. {
  4490. name: "Large",
  4491. height: math.unit(20, "meters")
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(300, "meters")
  4496. },
  4497. {
  4498. name: "Gigamacro",
  4499. height: math.unit(10000, "km"),
  4500. default: true
  4501. },
  4502. {
  4503. name: "Examacro",
  4504. height: math.unit(10e9, "lightyears")
  4505. }
  4506. ]
  4507. ))
  4508. characterMakers.push(() => makeCharacter(
  4509. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4510. {
  4511. front: {
  4512. height: math.unit(8, "feet"),
  4513. weight: math.unit(500, "lb"),
  4514. name: "Front",
  4515. image: {
  4516. source: "./media/characters/rick/front.svg"
  4517. }
  4518. }
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(8, "feet"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Macro",
  4528. height: math.unit(5, "km")
  4529. }
  4530. ]
  4531. ))
  4532. characterMakers.push(() => makeCharacter(
  4533. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4534. {
  4535. front: {
  4536. height: math.unit(8, "feet"),
  4537. weight: math.unit(120, "lb"),
  4538. name: "Front",
  4539. image: {
  4540. source: "./media/characters/ona/front.svg"
  4541. }
  4542. },
  4543. frontAlt: {
  4544. height: math.unit(8, "feet"),
  4545. weight: math.unit(120, "lb"),
  4546. name: "Front (Alt)",
  4547. image: {
  4548. source: "./media/characters/ona/front-alt.svg"
  4549. }
  4550. },
  4551. back: {
  4552. height: math.unit(8, "feet"),
  4553. weight: math.unit(120, "lb"),
  4554. name: "Back",
  4555. image: {
  4556. source: "./media/characters/ona/back.svg"
  4557. }
  4558. },
  4559. foot: {
  4560. height: math.unit(1.1, "feet"),
  4561. name: "Foot",
  4562. image: {
  4563. source: "./media/characters/ona/foot.svg"
  4564. }
  4565. }
  4566. },
  4567. [
  4568. {
  4569. name: "Megamacro",
  4570. height: math.unit(70, "km"),
  4571. default: true
  4572. },
  4573. {
  4574. name: "Gigamacro",
  4575. height: math.unit(681818, "miles")
  4576. },
  4577. {
  4578. name: "Examacro",
  4579. height: math.unit(3800000, "lightyears")
  4580. },
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4585. {
  4586. front: {
  4587. height: math.unit(12, "feet"),
  4588. weight: math.unit(3000, "lb"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/mech/front.svg",
  4592. extra: 2900 / 2770,
  4593. bottom: 110 / 3010
  4594. }
  4595. },
  4596. back: {
  4597. height: math.unit(12, "feet"),
  4598. weight: math.unit(3000, "lb"),
  4599. name: "Back",
  4600. image: {
  4601. source: "./media/characters/mech/back.svg",
  4602. extra: 3011 / 2890,
  4603. bottom: 94 / 3105
  4604. }
  4605. },
  4606. maw: {
  4607. height: math.unit(3.07, "feet"),
  4608. name: "Maw",
  4609. image: {
  4610. source: "./media/characters/mech/maw.svg"
  4611. }
  4612. },
  4613. head: {
  4614. height: math.unit(3.07, "feet"),
  4615. name: "Head",
  4616. image: {
  4617. source: "./media/characters/mech/head.svg"
  4618. }
  4619. },
  4620. dick: {
  4621. height: math.unit(1.43, "feet"),
  4622. name: "Dick",
  4623. image: {
  4624. source: "./media/characters/mech/dick.svg"
  4625. }
  4626. },
  4627. },
  4628. [
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(12, "feet")
  4632. },
  4633. {
  4634. name: "Macro",
  4635. height: math.unit(300, "feet"),
  4636. default: true
  4637. },
  4638. {
  4639. name: "Macro+",
  4640. height: math.unit(1500, "feet")
  4641. },
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4646. {
  4647. front: {
  4648. height: math.unit(1.3, "meter"),
  4649. weight: math.unit(30, "kg"),
  4650. name: "Front",
  4651. image: {
  4652. source: "./media/characters/gregory/front.svg",
  4653. }
  4654. }
  4655. },
  4656. [
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(1.3, "meter"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "Macro",
  4664. height: math.unit(20, "meter")
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(2.8, "meter"),
  4673. weight: math.unit(200, "kg"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/elory/front.svg",
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(2.8, "meter"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(38, "meter")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(470, "feet"),
  4697. weight: math.unit(924, "tons"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/angelpatamon/front.svg",
  4701. }
  4702. }
  4703. },
  4704. [
  4705. {
  4706. name: "Normal",
  4707. height: math.unit(470, "feet"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Deity Size I",
  4712. height: math.unit(28651.2, "km")
  4713. },
  4714. {
  4715. name: "Deity Size II",
  4716. height: math.unit(171907.2, "km")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4722. {
  4723. side: {
  4724. height: math.unit(7.2, "meter"),
  4725. weight: math.unit(8.2, "tons"),
  4726. name: "Side",
  4727. image: {
  4728. source: "./media/characters/cryae/side.svg",
  4729. extra: 3500 / 1500
  4730. }
  4731. }
  4732. },
  4733. [
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(7.2, "meter"),
  4737. default: true
  4738. }
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4743. {
  4744. front: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(175, "lb"),
  4747. name: "Front",
  4748. image: {
  4749. source: "./media/characters/xera/front.svg",
  4750. extra: 2377 / 1972,
  4751. bottom: 75.5 / 2452
  4752. }
  4753. },
  4754. side: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(175, "lb"),
  4757. name: "Side",
  4758. image: {
  4759. source: "./media/characters/xera/side.svg",
  4760. extra: 2345 / 2019,
  4761. bottom: 39.7 / 2384
  4762. }
  4763. },
  4764. back: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(175, "lb"),
  4767. name: "Back",
  4768. image: {
  4769. source: "./media/characters/xera/back.svg",
  4770. extra: 2095 / 1984,
  4771. bottom: 67 / 2166
  4772. }
  4773. },
  4774. },
  4775. [
  4776. {
  4777. name: "Small",
  4778. height: math.unit(10, "feet")
  4779. },
  4780. {
  4781. name: "Macro",
  4782. height: math.unit(500, "meters"),
  4783. default: true
  4784. },
  4785. {
  4786. name: "Macro+",
  4787. height: math.unit(10, "km")
  4788. },
  4789. {
  4790. name: "Gigamacro",
  4791. height: math.unit(25000, "km")
  4792. },
  4793. {
  4794. name: "Teramacro",
  4795. height: math.unit(3e6, "km")
  4796. }
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4801. {
  4802. front: {
  4803. height: math.unit(6, "feet"),
  4804. weight: math.unit(175, "lb"),
  4805. name: "Front",
  4806. image: {
  4807. source: "./media/characters/nebula/front.svg",
  4808. extra: 2566 / 2362,
  4809. bottom: 81 / 2644
  4810. }
  4811. }
  4812. },
  4813. [
  4814. {
  4815. name: "Small",
  4816. height: math.unit(4.5, "meters")
  4817. },
  4818. {
  4819. name: "Macro",
  4820. height: math.unit(1500, "meters"),
  4821. default: true
  4822. },
  4823. {
  4824. name: "Megamacro",
  4825. height: math.unit(150, "km")
  4826. },
  4827. {
  4828. name: "Gigamacro",
  4829. height: math.unit(27000, "km")
  4830. }
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4835. {
  4836. front: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(225, "lb"),
  4839. name: "Front",
  4840. image: {
  4841. source: "./media/characters/abysgar/front.svg",
  4842. extra: 1739/1614,
  4843. bottom: 71/1810
  4844. }
  4845. },
  4846. frontNsfw: {
  4847. height: math.unit(6, "feet"),
  4848. weight: math.unit(225, "lb"),
  4849. name: "Front (NSFW)",
  4850. image: {
  4851. source: "./media/characters/abysgar/front-nsfw.svg",
  4852. extra: 1739/1614,
  4853. bottom: 71/1810
  4854. }
  4855. },
  4856. back: {
  4857. height: math.unit(4.6, "feet"),
  4858. weight: math.unit(225, "lb"),
  4859. name: "Back",
  4860. image: {
  4861. source: "./media/characters/abysgar/back.svg",
  4862. extra: 1384/1327,
  4863. bottom: 0/1384
  4864. }
  4865. },
  4866. head: {
  4867. height: math.unit(1.25, "feet"),
  4868. name: "Head",
  4869. image: {
  4870. source: "./media/characters/abysgar/head.svg",
  4871. extra: 669/569,
  4872. bottom: 0/669
  4873. }
  4874. },
  4875. },
  4876. [
  4877. {
  4878. name: "Small",
  4879. height: math.unit(4.5, "meters")
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(1250, "meters"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Megamacro",
  4888. height: math.unit(125, "km")
  4889. },
  4890. {
  4891. name: "Gigamacro",
  4892. height: math.unit(26000, "km")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(180, "lb"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/yakuz/front.svg"
  4905. }
  4906. }
  4907. },
  4908. [
  4909. {
  4910. name: "Small",
  4911. height: math.unit(5, "meters")
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(1500, "meters"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Megamacro",
  4920. height: math.unit(200, "km")
  4921. },
  4922. {
  4923. name: "Gigamacro",
  4924. height: math.unit(100000, "km")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4930. {
  4931. front: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(175, "lb"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/mirova/front.svg",
  4937. extra: 3334 / 3071,
  4938. bottom: 42 / 3375.6
  4939. }
  4940. }
  4941. },
  4942. [
  4943. {
  4944. name: "Small",
  4945. height: math.unit(5, "meters")
  4946. },
  4947. {
  4948. name: "Macro",
  4949. height: math.unit(900, "meters"),
  4950. default: true
  4951. },
  4952. {
  4953. name: "Megamacro",
  4954. height: math.unit(135, "km")
  4955. },
  4956. {
  4957. name: "Gigamacro",
  4958. height: math.unit(20000, "km")
  4959. }
  4960. ]
  4961. ))
  4962. characterMakers.push(() => makeCharacter(
  4963. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4964. {
  4965. side: {
  4966. height: math.unit(28.35, "feet"),
  4967. weight: math.unit(99.75, "tons"),
  4968. name: "Side",
  4969. image: {
  4970. source: "./media/characters/asana-mech/side.svg",
  4971. extra: 923 / 699,
  4972. bottom: 50 / 975
  4973. }
  4974. },
  4975. chaingun: {
  4976. height: math.unit(7, "feet"),
  4977. weight: math.unit(2400, "lb"),
  4978. name: "Chaingun",
  4979. image: {
  4980. source: "./media/characters/asana-mech/chaingun.svg"
  4981. }
  4982. },
  4983. laser: {
  4984. height: math.unit(7.12, "feet"),
  4985. weight: math.unit(2000, "lb"),
  4986. name: "Laser",
  4987. image: {
  4988. source: "./media/characters/asana-mech/laser.svg"
  4989. }
  4990. },
  4991. },
  4992. [
  4993. {
  4994. name: "Normal",
  4995. height: math.unit(28.35, "feet"),
  4996. default: true
  4997. },
  4998. {
  4999. name: "Macro",
  5000. height: math.unit(2500, "feet")
  5001. },
  5002. {
  5003. name: "Megamacro",
  5004. height: math.unit(25, "miles")
  5005. },
  5006. {
  5007. name: "Examacro",
  5008. height: math.unit(6e8, "lightyears")
  5009. },
  5010. ]
  5011. ))
  5012. characterMakers.push(() => makeCharacter(
  5013. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5014. {
  5015. front: {
  5016. height: math.unit(5, "meters"),
  5017. weight: math.unit(1000, "kg"),
  5018. name: "Front",
  5019. image: {
  5020. source: "./media/characters/asche/front.svg",
  5021. extra: 1258 / 1190,
  5022. bottom: 47 / 1305
  5023. }
  5024. },
  5025. frontUnderwear: {
  5026. height: math.unit(5, "meters"),
  5027. weight: math.unit(1000, "kg"),
  5028. name: "Front (Underwear)",
  5029. image: {
  5030. source: "./media/characters/asche/front-underwear.svg",
  5031. extra: 1258 / 1190,
  5032. bottom: 47 / 1305
  5033. }
  5034. },
  5035. frontDressed: {
  5036. height: math.unit(5, "meters"),
  5037. weight: math.unit(1000, "kg"),
  5038. name: "Front (Dressed)",
  5039. image: {
  5040. source: "./media/characters/asche/front-dressed.svg",
  5041. extra: 1258 / 1190,
  5042. bottom: 47 / 1305
  5043. }
  5044. },
  5045. frontArmor: {
  5046. height: math.unit(5, "meters"),
  5047. weight: math.unit(1000, "kg"),
  5048. name: "Front (Armored)",
  5049. image: {
  5050. source: "./media/characters/asche/front-armored.svg",
  5051. extra: 1374 / 1308,
  5052. bottom: 23 / 1397
  5053. }
  5054. },
  5055. mp724: {
  5056. height: math.unit(0.96, "meters"),
  5057. weight: math.unit(38, "kg"),
  5058. name: "H&K MP724",
  5059. image: {
  5060. source: "./media/characters/asche/h&k-mp724.svg"
  5061. }
  5062. },
  5063. side: {
  5064. height: math.unit(5, "meters"),
  5065. weight: math.unit(1000, "kg"),
  5066. name: "Side",
  5067. image: {
  5068. source: "./media/characters/asche/side.svg",
  5069. extra: 1717 / 1609,
  5070. bottom: 0.005
  5071. }
  5072. },
  5073. back: {
  5074. height: math.unit(5, "meters"),
  5075. weight: math.unit(1000, "kg"),
  5076. name: "Back",
  5077. image: {
  5078. source: "./media/characters/asche/back.svg",
  5079. extra: 1570 / 1501
  5080. }
  5081. },
  5082. },
  5083. [
  5084. {
  5085. name: "DEFCON 5",
  5086. height: math.unit(5, "meters")
  5087. },
  5088. {
  5089. name: "DEFCON 4",
  5090. height: math.unit(500, "meters"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "DEFCON 3",
  5095. height: math.unit(5, "km")
  5096. },
  5097. {
  5098. name: "DEFCON 2",
  5099. height: math.unit(500, "km")
  5100. },
  5101. {
  5102. name: "DEFCON 1",
  5103. height: math.unit(500000, "km")
  5104. },
  5105. {
  5106. name: "DEFCON 0",
  5107. height: math.unit(3, "gigaparsecs")
  5108. },
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5113. {
  5114. front: {
  5115. height: math.unit(2, "meters"),
  5116. weight: math.unit(76, "kg"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/gale/front.svg"
  5120. }
  5121. },
  5122. frontAlt1: {
  5123. height: math.unit(2, "meters"),
  5124. weight: math.unit(76, "kg"),
  5125. name: "Front (Alt 1)",
  5126. image: {
  5127. source: "./media/characters/gale/front-alt-1.svg"
  5128. }
  5129. },
  5130. frontAlt2: {
  5131. height: math.unit(2, "meters"),
  5132. weight: math.unit(76, "kg"),
  5133. name: "Front (Alt 2)",
  5134. image: {
  5135. source: "./media/characters/gale/front-alt-2.svg"
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(7, "feet")
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(150, "feet"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Macro+",
  5151. height: math.unit(300, "feet")
  5152. },
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(5 + 10/12, "feet"),
  5160. weight: math.unit(67, "kg"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/draylen/front.svg",
  5164. extra: 832/777,
  5165. bottom: 85/917
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(5 + 10/12, "feet")
  5173. },
  5174. {
  5175. name: "Macro",
  5176. height: math.unit(150, "feet"),
  5177. default: true
  5178. }
  5179. ]
  5180. ))
  5181. characterMakers.push(() => makeCharacter(
  5182. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5183. {
  5184. front: {
  5185. height: math.unit(7 + 9 / 12, "feet"),
  5186. weight: math.unit(379, "lbs"),
  5187. name: "Front",
  5188. image: {
  5189. source: "./media/characters/chez/front.svg"
  5190. }
  5191. },
  5192. side: {
  5193. height: math.unit(7 + 9 / 12, "feet"),
  5194. weight: math.unit(379, "lbs"),
  5195. name: "Side",
  5196. image: {
  5197. source: "./media/characters/chez/side.svg"
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(7 + 9 / 12, "feet"),
  5205. default: true
  5206. },
  5207. {
  5208. name: "God King",
  5209. height: math.unit(9750000, "meters")
  5210. }
  5211. ]
  5212. ))
  5213. characterMakers.push(() => makeCharacter(
  5214. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5215. {
  5216. front: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(275, "lbs"),
  5219. name: "Front",
  5220. image: {
  5221. source: "./media/characters/kaylum/front.svg",
  5222. bottom: 0.01,
  5223. extra: 1166 / 1031
  5224. }
  5225. },
  5226. frontWingless: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(275, "lbs"),
  5229. name: "Front (Wingless)",
  5230. image: {
  5231. source: "./media/characters/kaylum/front-wingless.svg",
  5232. bottom: 0.01,
  5233. extra: 1117 / 1031
  5234. }
  5235. }
  5236. },
  5237. [
  5238. {
  5239. name: "Normal",
  5240. height: math.unit(3.05, "meters")
  5241. },
  5242. {
  5243. name: "Master",
  5244. height: math.unit(5.5, "meters")
  5245. },
  5246. {
  5247. name: "Rampage",
  5248. height: math.unit(19, "meters")
  5249. },
  5250. {
  5251. name: "Macro Lite",
  5252. height: math.unit(37, "meters")
  5253. },
  5254. {
  5255. name: "Hyper Predator",
  5256. height: math.unit(61, "meters")
  5257. },
  5258. {
  5259. name: "Macro",
  5260. height: math.unit(138, "meters"),
  5261. default: true
  5262. }
  5263. ]
  5264. ))
  5265. characterMakers.push(() => makeCharacter(
  5266. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5267. {
  5268. front: {
  5269. height: math.unit(5 + 5 / 12, "feet"),
  5270. weight: math.unit(120, "lbs"),
  5271. name: "Front",
  5272. image: {
  5273. source: "./media/characters/geta/front.svg",
  5274. extra: 1003/933,
  5275. bottom: 21/1024
  5276. }
  5277. },
  5278. paw: {
  5279. height: math.unit(0.35, "feet"),
  5280. name: "Paw",
  5281. image: {
  5282. source: "./media/characters/geta/paw.svg"
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Micro",
  5289. height: math.unit(3, "inches"),
  5290. default: true
  5291. },
  5292. {
  5293. name: "Normal",
  5294. height: math.unit(5 + 5 / 12, "feet")
  5295. }
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(300, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/tyrnn/front.svg"
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Main Height",
  5313. height: math.unit(355, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Fave. Height",
  5318. height: math.unit(2400, "feet")
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(300, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/appledectomy/front.svg"
  5331. }
  5332. }
  5333. },
  5334. [
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(2500, "feet")
  5338. },
  5339. {
  5340. name: "Megamacro",
  5341. height: math.unit(50, "miles"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Gigamacro",
  5346. height: math.unit(5000, "miles")
  5347. },
  5348. {
  5349. name: "Teramacro",
  5350. height: math.unit(250000, "miles")
  5351. },
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(200, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/vulpes/front.svg",
  5363. extra: 573 / 543,
  5364. bottom: 0.033
  5365. }
  5366. },
  5367. side: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(200, "lbs"),
  5370. name: "Side",
  5371. image: {
  5372. source: "./media/characters/vulpes/side.svg",
  5373. extra: 577 / 549,
  5374. bottom: 11 / 588
  5375. }
  5376. },
  5377. back: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(200, "lbs"),
  5380. name: "Back",
  5381. image: {
  5382. source: "./media/characters/vulpes/back.svg",
  5383. extra: 573 / 549,
  5384. bottom: 20 / 593
  5385. }
  5386. },
  5387. feet: {
  5388. height: math.unit(1.276, "feet"),
  5389. name: "Feet",
  5390. image: {
  5391. source: "./media/characters/vulpes/feet.svg"
  5392. }
  5393. },
  5394. maw: {
  5395. height: math.unit(1.18, "feet"),
  5396. name: "Maw",
  5397. image: {
  5398. source: "./media/characters/vulpes/maw.svg"
  5399. }
  5400. },
  5401. },
  5402. [
  5403. {
  5404. name: "Micro",
  5405. height: math.unit(2, "inches")
  5406. },
  5407. {
  5408. name: "Normal",
  5409. height: math.unit(6.3, "feet")
  5410. },
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(850, "feet")
  5414. },
  5415. {
  5416. name: "Megamacro",
  5417. height: math.unit(7500, "feet"),
  5418. default: true
  5419. },
  5420. {
  5421. name: "Gigamacro",
  5422. height: math.unit(570000, "miles")
  5423. }
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5428. {
  5429. front: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(210, "lbs"),
  5432. name: "Front",
  5433. image: {
  5434. source: "./media/characters/rain-fallen/front.svg"
  5435. }
  5436. },
  5437. side: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(210, "lbs"),
  5440. name: "Side",
  5441. image: {
  5442. source: "./media/characters/rain-fallen/side.svg"
  5443. }
  5444. },
  5445. back: {
  5446. height: math.unit(6, "feet"),
  5447. weight: math.unit(210, "lbs"),
  5448. name: "Back",
  5449. image: {
  5450. source: "./media/characters/rain-fallen/back.svg"
  5451. }
  5452. },
  5453. feral: {
  5454. height: math.unit(9, "feet"),
  5455. weight: math.unit(700, "lbs"),
  5456. name: "Feral",
  5457. image: {
  5458. source: "./media/characters/rain-fallen/feral.svg"
  5459. }
  5460. },
  5461. },
  5462. [
  5463. {
  5464. name: "Meddling with Mortals",
  5465. height: math.unit(8 + 8/12, "feet")
  5466. },
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(5, "meter")
  5470. },
  5471. {
  5472. name: "Macro",
  5473. height: math.unit(150, "meter"),
  5474. default: true
  5475. },
  5476. {
  5477. name: "Megamacro",
  5478. height: math.unit(278e6, "meter")
  5479. },
  5480. {
  5481. name: "Gigamacro",
  5482. height: math.unit(2e9, "meter")
  5483. },
  5484. {
  5485. name: "Teramacro",
  5486. height: math.unit(8e12, "meter")
  5487. },
  5488. {
  5489. name: "Devourer",
  5490. height: math.unit(14, "zettameters")
  5491. },
  5492. {
  5493. name: "Scarlet King",
  5494. height: math.unit(18, "yottameters")
  5495. },
  5496. {
  5497. name: "Void",
  5498. height: math.unit(1e88, "yottameters")
  5499. }
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5504. {
  5505. standing: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(180, "lbs"),
  5508. name: "Standing",
  5509. image: {
  5510. source: "./media/characters/zaakira/standing.svg",
  5511. extra: 1599/1504,
  5512. bottom: 39/1638
  5513. }
  5514. },
  5515. laying: {
  5516. height: math.unit(3.3, "feet"),
  5517. weight: math.unit(180, "lbs"),
  5518. name: "Laying",
  5519. image: {
  5520. source: "./media/characters/zaakira/laying.svg"
  5521. }
  5522. },
  5523. },
  5524. [
  5525. {
  5526. name: "Normal",
  5527. height: math.unit(12, "feet")
  5528. },
  5529. {
  5530. name: "Macro",
  5531. height: math.unit(279, "feet"),
  5532. default: true
  5533. }
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5538. {
  5539. femSfw: {
  5540. height: math.unit(8, "feet"),
  5541. weight: math.unit(350, "lb"),
  5542. name: "Fem",
  5543. image: {
  5544. source: "./media/characters/sigvald/fem-sfw.svg",
  5545. extra: 182 / 164,
  5546. bottom: 8.7 / 190.5
  5547. }
  5548. },
  5549. femNsfw: {
  5550. height: math.unit(8, "feet"),
  5551. weight: math.unit(350, "lb"),
  5552. name: "Fem (NSFW)",
  5553. image: {
  5554. source: "./media/characters/sigvald/fem-nsfw.svg",
  5555. extra: 182 / 164,
  5556. bottom: 8.7 / 190.5
  5557. }
  5558. },
  5559. maleNsfw: {
  5560. height: math.unit(8, "feet"),
  5561. weight: math.unit(350, "lb"),
  5562. name: "Male (NSFW)",
  5563. image: {
  5564. source: "./media/characters/sigvald/male-nsfw.svg",
  5565. extra: 182 / 164,
  5566. bottom: 8.7 / 190.5
  5567. }
  5568. },
  5569. hermNsfw: {
  5570. height: math.unit(8, "feet"),
  5571. weight: math.unit(350, "lb"),
  5572. name: "Herm (NSFW)",
  5573. image: {
  5574. source: "./media/characters/sigvald/herm-nsfw.svg",
  5575. extra: 182 / 164,
  5576. bottom: 8.7 / 190.5
  5577. }
  5578. },
  5579. dick: {
  5580. height: math.unit(2.36, "feet"),
  5581. name: "Dick",
  5582. image: {
  5583. source: "./media/characters/sigvald/dick.svg"
  5584. }
  5585. },
  5586. eye: {
  5587. height: math.unit(0.31, "feet"),
  5588. name: "Eye",
  5589. image: {
  5590. source: "./media/characters/sigvald/eye.svg"
  5591. }
  5592. },
  5593. mouth: {
  5594. height: math.unit(0.92, "feet"),
  5595. name: "Mouth",
  5596. image: {
  5597. source: "./media/characters/sigvald/mouth.svg"
  5598. }
  5599. },
  5600. paws: {
  5601. height: math.unit(2.2, "feet"),
  5602. name: "Paws",
  5603. image: {
  5604. source: "./media/characters/sigvald/paws.svg"
  5605. }
  5606. }
  5607. },
  5608. [
  5609. {
  5610. name: "Normal",
  5611. height: math.unit(8, "feet")
  5612. },
  5613. {
  5614. name: "Large",
  5615. height: math.unit(12, "feet")
  5616. },
  5617. {
  5618. name: "Larger",
  5619. height: math.unit(20, "feet")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(150, "feet")
  5624. },
  5625. {
  5626. name: "Macro+",
  5627. height: math.unit(200, "feet"),
  5628. default: true
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5634. {
  5635. side: {
  5636. height: math.unit(12, "feet"),
  5637. weight: math.unit(2000, "kg"),
  5638. name: "Side",
  5639. image: {
  5640. source: "./media/characters/scott/side.svg",
  5641. extra: 754 / 724,
  5642. bottom: 0.069
  5643. }
  5644. },
  5645. upright: {
  5646. height: math.unit(12, "feet"),
  5647. weight: math.unit(2000, "kg"),
  5648. name: "Upright",
  5649. image: {
  5650. source: "./media/characters/scott/upright.svg",
  5651. extra: 3881 / 3722,
  5652. bottom: 0.05
  5653. }
  5654. },
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(12, "feet"),
  5660. default: true
  5661. },
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5666. {
  5667. side: {
  5668. height: math.unit(8, "meters"),
  5669. weight: math.unit(84755, "lbs"),
  5670. name: "Side",
  5671. image: {
  5672. source: "./media/characters/tobias/side.svg",
  5673. extra: 1474 / 1096,
  5674. bottom: 38.9 / 1513.1235
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(8, "meters"),
  5682. default: true
  5683. },
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5688. {
  5689. front: {
  5690. height: math.unit(5.5, "feet"),
  5691. weight: math.unit(400, "lbs"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/kieran/front.svg",
  5695. extra: 2694 / 2364,
  5696. bottom: 217 / 2908
  5697. }
  5698. },
  5699. side: {
  5700. height: math.unit(5.5, "feet"),
  5701. weight: math.unit(400, "lbs"),
  5702. name: "Side",
  5703. image: {
  5704. source: "./media/characters/kieran/side.svg",
  5705. extra: 875 / 777,
  5706. bottom: 84.6 / 959
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(5.5, "feet"),
  5714. default: true
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5720. {
  5721. side: {
  5722. height: math.unit(2, "meters"),
  5723. weight: math.unit(70, "kg"),
  5724. name: "Side",
  5725. image: {
  5726. source: "./media/characters/sanya/side.svg",
  5727. bottom: 0.02,
  5728. extra: 1.02
  5729. }
  5730. },
  5731. },
  5732. [
  5733. {
  5734. name: "Small",
  5735. height: math.unit(2, "meters")
  5736. },
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(3, "meters")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(16, "meters"),
  5744. default: true
  5745. },
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(2, "meters"),
  5753. weight: math.unit(120, "kg"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/miranda/front.svg",
  5757. extra: 195 / 185,
  5758. bottom: 10.9 / 206.5
  5759. }
  5760. },
  5761. back: {
  5762. height: math.unit(2, "meters"),
  5763. weight: math.unit(120, "kg"),
  5764. name: "Back",
  5765. image: {
  5766. source: "./media/characters/miranda/back.svg",
  5767. extra: 201 / 193,
  5768. bottom: 2.3 / 203.7
  5769. }
  5770. },
  5771. },
  5772. [
  5773. {
  5774. name: "Normal",
  5775. height: math.unit(10, "feet"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "James", species: ["deer"], tags: ["anthro"] },
  5782. {
  5783. side: {
  5784. height: math.unit(2, "meters"),
  5785. weight: math.unit(100, "kg"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/james/front.svg",
  5789. extra: 10 / 8.5
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(8.5, "feet"),
  5797. default: true
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5803. {
  5804. side: {
  5805. height: math.unit(9.5, "feet"),
  5806. weight: math.unit(2500, "lbs"),
  5807. name: "Side",
  5808. image: {
  5809. source: "./media/characters/heather/side.svg"
  5810. }
  5811. },
  5812. },
  5813. [
  5814. {
  5815. name: "Normal",
  5816. height: math.unit(9.5, "feet"),
  5817. default: true
  5818. }
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5823. {
  5824. side: {
  5825. height: math.unit(6.5, "feet"),
  5826. weight: math.unit(400, "lbs"),
  5827. name: "Side",
  5828. image: {
  5829. source: "./media/characters/lukas/side.svg",
  5830. extra: 7.25 / 6.5
  5831. }
  5832. },
  5833. },
  5834. [
  5835. {
  5836. name: "Normal",
  5837. height: math.unit(6.5, "feet"),
  5838. default: true
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5844. {
  5845. side: {
  5846. height: math.unit(5, "feet"),
  5847. weight: math.unit(3000, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/louise/side.svg"
  5851. }
  5852. },
  5853. },
  5854. [
  5855. {
  5856. name: "Normal",
  5857. height: math.unit(5, "feet"),
  5858. default: true
  5859. }
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5864. {
  5865. side: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(150, "lbs"),
  5868. name: "Side",
  5869. image: {
  5870. source: "./media/characters/ramona/side.svg",
  5871. extra: 871/854,
  5872. bottom: 41/912
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Normal",
  5879. height: math.unit(6 + 4/12, "feet")
  5880. },
  5881. {
  5882. name: "Minimacro",
  5883. height: math.unit(5.3, "meters"),
  5884. default: true
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(20, "stories")
  5889. },
  5890. {
  5891. name: "Macro+",
  5892. height: math.unit(50, "stories")
  5893. },
  5894. ]
  5895. ))
  5896. characterMakers.push(() => makeCharacter(
  5897. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5898. {
  5899. standing: {
  5900. height: math.unit(5.75, "feet"),
  5901. weight: math.unit(160, "lbs"),
  5902. name: "Standing",
  5903. image: {
  5904. source: "./media/characters/deerpuff/standing.svg",
  5905. extra: 682 / 624
  5906. }
  5907. },
  5908. sitting: {
  5909. height: math.unit(5.75 / 1.79, "feet"),
  5910. weight: math.unit(160, "lbs"),
  5911. name: "Sitting",
  5912. image: {
  5913. source: "./media/characters/deerpuff/sitting.svg",
  5914. bottom: 44 / 400,
  5915. extra: 1
  5916. }
  5917. },
  5918. taurLaying: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(400, "lbs"),
  5921. name: "Taur (Laying)",
  5922. image: {
  5923. source: "./media/characters/deerpuff/taur-laying.svg"
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Puffball",
  5930. height: math.unit(6, "inches")
  5931. },
  5932. {
  5933. name: "Normalpuff",
  5934. height: math.unit(5.75, "feet")
  5935. },
  5936. {
  5937. name: "Macropuff",
  5938. height: math.unit(1500, "feet"),
  5939. default: true
  5940. },
  5941. {
  5942. name: "Megapuff",
  5943. height: math.unit(500, "miles")
  5944. },
  5945. {
  5946. name: "Gigapuff",
  5947. height: math.unit(250000, "miles")
  5948. },
  5949. {
  5950. name: "Omegapuff",
  5951. height: math.unit(1000, "lightyears")
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5957. {
  5958. stomping: {
  5959. height: math.unit(6, "feet"),
  5960. weight: math.unit(170, "lbs"),
  5961. name: "Stomping",
  5962. image: {
  5963. source: "./media/characters/vivian/stomping.svg"
  5964. }
  5965. },
  5966. sitting: {
  5967. height: math.unit(6 / 1.75, "feet"),
  5968. weight: math.unit(170, "lbs"),
  5969. name: "Sitting",
  5970. image: {
  5971. source: "./media/characters/vivian/sitting.svg",
  5972. bottom: 1 / 6.4,
  5973. extra: 1,
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(7, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(10, "stories")
  5986. },
  5987. {
  5988. name: "Macro+",
  5989. height: math.unit(30, "stories")
  5990. },
  5991. {
  5992. name: "Megamacro",
  5993. height: math.unit(10, "miles")
  5994. },
  5995. {
  5996. name: "Megamacro+",
  5997. height: math.unit(2750000, "meters")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(160, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/prince/front.svg",
  6010. extra: 3400 / 3000
  6011. }
  6012. },
  6013. jumping: {
  6014. height: math.unit(6, "feet"),
  6015. weight: math.unit(160, "lbs"),
  6016. name: "Jumping",
  6017. image: {
  6018. source: "./media/characters/prince/jump.svg",
  6019. extra: 2555 / 2134
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(7.75, "feet"),
  6027. default: true
  6028. },
  6029. {
  6030. name: "Not cute",
  6031. height: math.unit(17, "feet")
  6032. },
  6033. {
  6034. name: "I said NOT",
  6035. height: math.unit(91, "feet")
  6036. },
  6037. {
  6038. name: "Please stop",
  6039. height: math.unit(560, "feet")
  6040. },
  6041. {
  6042. name: "What have you done",
  6043. height: math.unit(2200, "feet")
  6044. },
  6045. {
  6046. name: "Deer God",
  6047. height: math.unit(3.6, "miles")
  6048. },
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6053. {
  6054. standing: {
  6055. height: math.unit(6, "feet"),
  6056. weight: math.unit(300, "lbs"),
  6057. name: "Standing",
  6058. image: {
  6059. source: "./media/characters/psymon/standing.svg",
  6060. extra: 1888 / 1810,
  6061. bottom: 0.05
  6062. }
  6063. },
  6064. slithering: {
  6065. height: math.unit(6, "feet"),
  6066. weight: math.unit(300, "lbs"),
  6067. name: "Slithering",
  6068. image: {
  6069. source: "./media/characters/psymon/slithering.svg",
  6070. extra: 1330 / 1224
  6071. }
  6072. },
  6073. slitheringAlt: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(300, "lbs"),
  6076. name: "Slithering (Alt)",
  6077. image: {
  6078. source: "./media/characters/psymon/slithering-alt.svg",
  6079. extra: 1330 / 1224
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(11.25, "feet"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Large",
  6091. height: math.unit(27, "feet")
  6092. },
  6093. {
  6094. name: "Giant",
  6095. height: math.unit(87, "feet")
  6096. },
  6097. {
  6098. name: "Macro",
  6099. height: math.unit(365, "feet")
  6100. },
  6101. {
  6102. name: "Megamacro",
  6103. height: math.unit(3, "miles")
  6104. },
  6105. {
  6106. name: "World Serpent",
  6107. height: math.unit(8000, "miles")
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(6, "feet"),
  6116. weight: math.unit(180, "lbs"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/daimos/front.svg",
  6120. extra: 4160 / 3897,
  6121. bottom: 0.021
  6122. }
  6123. }
  6124. },
  6125. [
  6126. {
  6127. name: "Normal",
  6128. height: math.unit(8, "feet"),
  6129. default: true
  6130. },
  6131. {
  6132. name: "Big Dog",
  6133. height: math.unit(22, "feet")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(127, "feet")
  6138. },
  6139. {
  6140. name: "Megamacro",
  6141. height: math.unit(3600, "feet")
  6142. },
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6147. {
  6148. side: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(180, "lbs"),
  6151. name: "Side",
  6152. image: {
  6153. source: "./media/characters/blake/side.svg",
  6154. extra: 1212 / 1120,
  6155. bottom: 0.05
  6156. }
  6157. },
  6158. crouched: {
  6159. height: math.unit(6 * 0.57, "feet"),
  6160. weight: math.unit(180, "lbs"),
  6161. name: "Crouched",
  6162. image: {
  6163. source: "./media/characters/blake/crouched.svg",
  6164. extra: 840 / 587,
  6165. bottom: 0.04
  6166. }
  6167. },
  6168. bent: {
  6169. height: math.unit(6 * 0.75, "feet"),
  6170. weight: math.unit(180, "lbs"),
  6171. name: "Bent",
  6172. image: {
  6173. source: "./media/characters/blake/bent.svg",
  6174. extra: 592 / 544,
  6175. bottom: 0.035
  6176. }
  6177. },
  6178. },
  6179. [
  6180. {
  6181. name: "Normal",
  6182. height: math.unit(8 + 1 / 6, "feet"),
  6183. default: true
  6184. },
  6185. {
  6186. name: "Big Backside",
  6187. height: math.unit(37, "feet")
  6188. },
  6189. {
  6190. name: "Subway Shredder",
  6191. height: math.unit(72, "feet")
  6192. },
  6193. {
  6194. name: "City Carver",
  6195. height: math.unit(1675, "feet")
  6196. },
  6197. {
  6198. name: "Tectonic Tweaker",
  6199. height: math.unit(2300, "miles")
  6200. },
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6205. {
  6206. front: {
  6207. height: math.unit(6, "feet"),
  6208. weight: math.unit(180, "lbs"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/guisetto/front.svg",
  6212. extra: 856 / 817,
  6213. bottom: 0.06
  6214. }
  6215. },
  6216. airborne: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(180, "lbs"),
  6219. name: "Airborne",
  6220. image: {
  6221. source: "./media/characters/guisetto/airborne.svg",
  6222. extra: 584 / 525
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(10 + 11 / 12, "feet"),
  6230. default: true
  6231. },
  6232. {
  6233. name: "Large",
  6234. height: math.unit(35, "feet")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(475, "feet")
  6239. },
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(180, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/luxor/front.svg",
  6251. extra: 2940 / 2152
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(180, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/luxor/back.svg",
  6260. extra: 1083 / 960
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(5 + 5 / 6, "feet"),
  6268. default: true
  6269. },
  6270. {
  6271. name: "Lamp",
  6272. height: math.unit(50, "feet")
  6273. },
  6274. {
  6275. name: "Lämp",
  6276. height: math.unit(300, "feet")
  6277. },
  6278. {
  6279. name: "The sun is a lamp",
  6280. height: math.unit(250000, "miles")
  6281. },
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6286. {
  6287. front: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(50, "lbs"),
  6290. name: "Front",
  6291. image: {
  6292. source: "./media/characters/huoyan/front.svg"
  6293. }
  6294. },
  6295. side: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(180, "lbs"),
  6298. name: "Side",
  6299. image: {
  6300. source: "./media/characters/huoyan/side.svg"
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Chef",
  6307. height: math.unit(9, "feet")
  6308. },
  6309. {
  6310. name: "Normal",
  6311. height: math.unit(65, "feet"),
  6312. default: true
  6313. },
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(780, "feet")
  6317. },
  6318. {
  6319. name: "Flaming Mountain",
  6320. height: math.unit(4.8, "miles")
  6321. },
  6322. {
  6323. name: "Celestial",
  6324. height: math.unit(765000, "miles")
  6325. },
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6330. {
  6331. front: {
  6332. height: math.unit(5 + 3 / 4, "feet"),
  6333. weight: math.unit(120, "lbs"),
  6334. name: "Front",
  6335. image: {
  6336. source: "./media/characters/tails/front.svg"
  6337. }
  6338. }
  6339. },
  6340. [
  6341. {
  6342. name: "Normal",
  6343. height: math.unit(5 + 3 / 4, "feet"),
  6344. default: true
  6345. }
  6346. ]
  6347. ))
  6348. characterMakers.push(() => makeCharacter(
  6349. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6350. {
  6351. front: {
  6352. height: math.unit(4, "feet"),
  6353. weight: math.unit(50, "lbs"),
  6354. name: "Front",
  6355. image: {
  6356. source: "./media/characters/rainy/front.svg"
  6357. }
  6358. }
  6359. },
  6360. [
  6361. {
  6362. name: "Macro",
  6363. height: math.unit(800, "feet"),
  6364. default: true
  6365. }
  6366. ]
  6367. ))
  6368. characterMakers.push(() => makeCharacter(
  6369. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6370. {
  6371. front: {
  6372. height: math.unit(6, "feet"),
  6373. weight: math.unit(150, "lbs"),
  6374. name: "Front",
  6375. image: {
  6376. source: "./media/characters/rainier/front.svg"
  6377. }
  6378. }
  6379. },
  6380. [
  6381. {
  6382. name: "Micro",
  6383. height: math.unit(2, "mm"),
  6384. default: true
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(8 + 4/12, "feet"),
  6393. weight: math.unit(450, "kilograms"),
  6394. volume: math.unit(5, "cups"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/andy-renard/front.svg",
  6398. extra: 1839/1726,
  6399. bottom: 134/1973
  6400. }
  6401. },
  6402. back: {
  6403. height: math.unit(8 + 4/12, "feet"),
  6404. weight: math.unit(450, "kilograms"),
  6405. volume: math.unit(5, "cups"),
  6406. name: "Back",
  6407. image: {
  6408. source: "./media/characters/andy-renard/back.svg",
  6409. extra: 1838/1710,
  6410. bottom: 105/1943
  6411. }
  6412. },
  6413. },
  6414. [
  6415. {
  6416. name: "Tall",
  6417. height: math.unit(8 + 4/12, "feet")
  6418. },
  6419. {
  6420. name: "Mini Macro",
  6421. height: math.unit(15, "feet"),
  6422. default: true
  6423. },
  6424. {
  6425. name: "Macro",
  6426. height: math.unit(100, "feet")
  6427. },
  6428. {
  6429. name: "Mega Macro",
  6430. height: math.unit(1000, "feet")
  6431. },
  6432. {
  6433. name: "Giga Macro",
  6434. height: math.unit(10, "miles")
  6435. },
  6436. {
  6437. name: "God Macro",
  6438. height: math.unit(1, "multiverse")
  6439. },
  6440. ]
  6441. ))
  6442. characterMakers.push(() => makeCharacter(
  6443. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6444. {
  6445. front: {
  6446. height: math.unit(6, "feet"),
  6447. weight: math.unit(210, "lbs"),
  6448. name: "Front",
  6449. image: {
  6450. source: "./media/characters/cimmaron/front-sfw.svg",
  6451. extra: 701 / 676,
  6452. bottom: 0.046
  6453. }
  6454. },
  6455. back: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(210, "lbs"),
  6458. name: "Back",
  6459. image: {
  6460. source: "./media/characters/cimmaron/back-sfw.svg",
  6461. extra: 701 / 676,
  6462. bottom: 0.046
  6463. }
  6464. },
  6465. frontNsfw: {
  6466. height: math.unit(6, "feet"),
  6467. weight: math.unit(210, "lbs"),
  6468. name: "Front (NSFW)",
  6469. image: {
  6470. source: "./media/characters/cimmaron/front-nsfw.svg",
  6471. extra: 701 / 676,
  6472. bottom: 0.046
  6473. }
  6474. },
  6475. backNsfw: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(210, "lbs"),
  6478. name: "Back (NSFW)",
  6479. image: {
  6480. source: "./media/characters/cimmaron/back-nsfw.svg",
  6481. extra: 701 / 676,
  6482. bottom: 0.046
  6483. }
  6484. },
  6485. dick: {
  6486. height: math.unit(1.714, "feet"),
  6487. name: "Dick",
  6488. image: {
  6489. source: "./media/characters/cimmaron/dick.svg"
  6490. }
  6491. },
  6492. },
  6493. [
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(6, "feet"),
  6497. default: true
  6498. },
  6499. {
  6500. name: "Macro Mayor",
  6501. height: math.unit(350, "meters")
  6502. },
  6503. ]
  6504. ))
  6505. characterMakers.push(() => makeCharacter(
  6506. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6507. {
  6508. front: {
  6509. height: math.unit(6, "feet"),
  6510. weight: math.unit(200, "lbs"),
  6511. name: "Front",
  6512. image: {
  6513. source: "./media/characters/akari/front.svg",
  6514. extra: 962 / 901,
  6515. bottom: 0.04
  6516. }
  6517. }
  6518. },
  6519. [
  6520. {
  6521. name: "Micro",
  6522. height: math.unit(5, "inches"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Normal",
  6527. height: math.unit(7, "feet")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6533. {
  6534. front: {
  6535. height: math.unit(6, "feet"),
  6536. weight: math.unit(140, "lbs"),
  6537. name: "Front",
  6538. image: {
  6539. source: "./media/characters/cynosura/front.svg",
  6540. extra: 437/410,
  6541. bottom: 9/446
  6542. }
  6543. },
  6544. back: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(140, "lbs"),
  6547. name: "Back",
  6548. image: {
  6549. source: "./media/characters/cynosura/back.svg",
  6550. extra: 1304/1160,
  6551. bottom: 71/1375
  6552. }
  6553. },
  6554. },
  6555. [
  6556. {
  6557. name: "Micro",
  6558. height: math.unit(4, "inches")
  6559. },
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(5.75, "feet"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Tall",
  6567. height: math.unit(10, "feet")
  6568. },
  6569. {
  6570. name: "Big",
  6571. height: math.unit(20, "feet")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(50, "feet")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(13 + 2/12, "feet"),
  6584. weight: math.unit(800, "kg"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/gin/front.svg",
  6588. extra: 1312/1191,
  6589. bottom: 45/1357
  6590. }
  6591. },
  6592. mouth: {
  6593. height: math.unit(2.39 * 1.8, "feet"),
  6594. name: "Mouth",
  6595. image: {
  6596. source: "./media/characters/gin/mouth.svg"
  6597. }
  6598. },
  6599. hand: {
  6600. height: math.unit(1.57 * 2.19, "feet"),
  6601. name: "Hand",
  6602. image: {
  6603. source: "./media/characters/gin/hand.svg"
  6604. }
  6605. },
  6606. foot: {
  6607. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6608. name: "Foot",
  6609. image: {
  6610. source: "./media/characters/gin/foot.svg"
  6611. }
  6612. },
  6613. sole: {
  6614. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6615. name: "Sole",
  6616. image: {
  6617. source: "./media/characters/gin/sole.svg"
  6618. }
  6619. },
  6620. },
  6621. [
  6622. {
  6623. name: "Very Small",
  6624. height: math.unit(13 + 2 / 12, "feet")
  6625. },
  6626. {
  6627. name: "Micro",
  6628. height: math.unit(600, "miles")
  6629. },
  6630. {
  6631. name: "Regular",
  6632. height: math.unit(20, "earths"),
  6633. default: true
  6634. },
  6635. {
  6636. name: "Macro",
  6637. height: math.unit(2.2, "solarradii")
  6638. },
  6639. {
  6640. name: "Teramacro",
  6641. height: math.unit(1.2, "galaxies")
  6642. },
  6643. {
  6644. name: "Omegamacro",
  6645. height: math.unit(200, "universes")
  6646. },
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6651. {
  6652. front: {
  6653. height: math.unit(6 + 1 / 6, "feet"),
  6654. weight: math.unit(178, "lbs"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/guy/front.svg"
  6658. }
  6659. }
  6660. },
  6661. [
  6662. {
  6663. name: "Normal",
  6664. height: math.unit(6 + 1 / 6, "feet"),
  6665. default: true
  6666. },
  6667. {
  6668. name: "Large",
  6669. height: math.unit(25 + 7 / 12, "feet")
  6670. },
  6671. {
  6672. name: "Macro",
  6673. height: math.unit(60 + 9 / 12, "feet")
  6674. },
  6675. {
  6676. name: "Macro+",
  6677. height: math.unit(246, "feet")
  6678. },
  6679. {
  6680. name: "Macro++",
  6681. height: math.unit(878, "feet")
  6682. }
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6687. {
  6688. front: {
  6689. height: math.unit(9, "feet"),
  6690. weight: math.unit(800, "lbs"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/tiberius/front.svg",
  6694. extra: 2295 / 2071
  6695. }
  6696. },
  6697. back: {
  6698. height: math.unit(9, "feet"),
  6699. weight: math.unit(800, "lbs"),
  6700. name: "Back",
  6701. image: {
  6702. source: "./media/characters/tiberius/back.svg",
  6703. extra: 2373 / 2160
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(9, "feet"),
  6711. default: true
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6717. {
  6718. front: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(600, "lbs"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/surgo/front.svg",
  6724. extra: 3591 / 2227
  6725. }
  6726. },
  6727. back: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(600, "lbs"),
  6730. name: "Back",
  6731. image: {
  6732. source: "./media/characters/surgo/back.svg",
  6733. extra: 3557 / 2228
  6734. }
  6735. },
  6736. laying: {
  6737. height: math.unit(6 * 0.85, "feet"),
  6738. weight: math.unit(600, "lbs"),
  6739. name: "Laying",
  6740. image: {
  6741. source: "./media/characters/surgo/laying.svg"
  6742. }
  6743. },
  6744. },
  6745. [
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(6, "feet"),
  6749. default: true
  6750. }
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6755. {
  6756. side: {
  6757. height: math.unit(6, "feet"),
  6758. weight: math.unit(150, "lbs"),
  6759. name: "Side",
  6760. image: {
  6761. source: "./media/characters/cibus/side.svg",
  6762. extra: 800 / 400
  6763. }
  6764. },
  6765. },
  6766. [
  6767. {
  6768. name: "Normal",
  6769. height: math.unit(6, "feet"),
  6770. default: true
  6771. }
  6772. ]
  6773. ))
  6774. characterMakers.push(() => makeCharacter(
  6775. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6776. {
  6777. front: {
  6778. height: math.unit(6, "feet"),
  6779. weight: math.unit(240, "lbs"),
  6780. name: "Front",
  6781. image: {
  6782. source: "./media/characters/nibbles/front.svg"
  6783. }
  6784. },
  6785. side: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(240, "lbs"),
  6788. name: "Side",
  6789. image: {
  6790. source: "./media/characters/nibbles/side.svg"
  6791. }
  6792. },
  6793. },
  6794. [
  6795. {
  6796. name: "Normal",
  6797. height: math.unit(9, "feet"),
  6798. default: true
  6799. }
  6800. ]
  6801. ))
  6802. characterMakers.push(() => makeCharacter(
  6803. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6804. {
  6805. side: {
  6806. height: math.unit(5 + 1 / 6, "feet"),
  6807. weight: math.unit(130, "lbs"),
  6808. name: "Side",
  6809. image: {
  6810. source: "./media/characters/rikky/side.svg",
  6811. extra: 851 / 801
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(5 + 1 / 6, "feet")
  6819. },
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(152, "feet"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Megamacro",
  6827. height: math.unit(7, "miles")
  6828. }
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6833. {
  6834. side: {
  6835. height: math.unit(370, "cm"),
  6836. weight: math.unit(350, "lbs"),
  6837. name: "Side",
  6838. image: {
  6839. source: "./media/characters/malfressa/side.svg"
  6840. }
  6841. },
  6842. walking: {
  6843. height: math.unit(370, "cm"),
  6844. weight: math.unit(350, "lbs"),
  6845. name: "Walking",
  6846. image: {
  6847. source: "./media/characters/malfressa/walking.svg"
  6848. }
  6849. },
  6850. feral: {
  6851. height: math.unit(2500, "cm"),
  6852. weight: math.unit(100000, "lbs"),
  6853. name: "Feral",
  6854. image: {
  6855. source: "./media/characters/malfressa/feral.svg",
  6856. extra: 2108 / 837,
  6857. bottom: 0.02
  6858. }
  6859. },
  6860. },
  6861. [
  6862. {
  6863. name: "Normal",
  6864. height: math.unit(370, "cm")
  6865. },
  6866. {
  6867. name: "Macro",
  6868. height: math.unit(300, "meters"),
  6869. default: true
  6870. }
  6871. ]
  6872. ))
  6873. characterMakers.push(() => makeCharacter(
  6874. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6875. {
  6876. front: {
  6877. height: math.unit(6, "feet"),
  6878. weight: math.unit(60, "kg"),
  6879. name: "Front",
  6880. image: {
  6881. source: "./media/characters/jaro/front.svg",
  6882. extra: 845/817,
  6883. bottom: 45/890
  6884. }
  6885. },
  6886. back: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(60, "kg"),
  6889. name: "Back",
  6890. image: {
  6891. source: "./media/characters/jaro/back.svg",
  6892. extra: 847/817,
  6893. bottom: 34/881
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Micro",
  6900. height: math.unit(7, "inches")
  6901. },
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(5.5, "feet"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Minimacro",
  6909. height: math.unit(20, "feet")
  6910. },
  6911. {
  6912. name: "Macro",
  6913. height: math.unit(200, "meters")
  6914. }
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(6, "feet"),
  6922. weight: math.unit(195, "lb"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/rogue/front.svg"
  6926. }
  6927. },
  6928. },
  6929. [
  6930. {
  6931. name: "Macro",
  6932. height: math.unit(90, "feet"),
  6933. default: true
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6939. {
  6940. standing: {
  6941. height: math.unit(5 + 8 / 12, "feet"),
  6942. weight: math.unit(140, "lb"),
  6943. name: "Standing",
  6944. image: {
  6945. source: "./media/characters/piper/standing.svg",
  6946. extra: 1440/1284,
  6947. bottom: 66/1506
  6948. }
  6949. },
  6950. running: {
  6951. height: math.unit(5 + 8 / 12, "feet"),
  6952. weight: math.unit(140, "lb"),
  6953. name: "Running",
  6954. image: {
  6955. source: "./media/characters/piper/running.svg",
  6956. extra: 3948/3655,
  6957. bottom: 0/3948
  6958. }
  6959. },
  6960. sole: {
  6961. height: math.unit(0.81, "feet"),
  6962. weight: math.unit(2, "kg"),
  6963. name: "Sole",
  6964. image: {
  6965. source: "./media/characters/piper/sole.svg"
  6966. }
  6967. },
  6968. nipple: {
  6969. height: math.unit(0.25, "feet"),
  6970. weight: math.unit(1.5, "lb"),
  6971. name: "Nipple",
  6972. image: {
  6973. source: "./media/characters/piper/nipple.svg"
  6974. }
  6975. },
  6976. head: {
  6977. height: math.unit(1.1, "feet"),
  6978. name: "Head",
  6979. image: {
  6980. source: "./media/characters/piper/head.svg"
  6981. }
  6982. },
  6983. },
  6984. [
  6985. {
  6986. name: "Micro",
  6987. height: math.unit(2, "inches")
  6988. },
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(5 + 8 / 12, "feet")
  6992. },
  6993. {
  6994. name: "Macro",
  6995. height: math.unit(250, "feet"),
  6996. default: true
  6997. },
  6998. {
  6999. name: "Megamacro",
  7000. height: math.unit(7, "miles")
  7001. },
  7002. ]
  7003. ))
  7004. characterMakers.push(() => makeCharacter(
  7005. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7006. {
  7007. front: {
  7008. height: math.unit(6, "feet"),
  7009. weight: math.unit(220, "lb"),
  7010. name: "Front",
  7011. image: {
  7012. source: "./media/characters/gemini/front.svg"
  7013. }
  7014. },
  7015. back: {
  7016. height: math.unit(6, "feet"),
  7017. weight: math.unit(220, "lb"),
  7018. name: "Back",
  7019. image: {
  7020. source: "./media/characters/gemini/back.svg"
  7021. }
  7022. },
  7023. kneeling: {
  7024. height: math.unit(6 / 1.5, "feet"),
  7025. weight: math.unit(220, "lb"),
  7026. name: "Kneeling",
  7027. image: {
  7028. source: "./media/characters/gemini/kneeling.svg",
  7029. bottom: 0.02
  7030. }
  7031. },
  7032. },
  7033. [
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(300, "meters"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Megamacro",
  7041. height: math.unit(6900, "meters")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7047. {
  7048. anthro: {
  7049. height: math.unit(2.35, "meters"),
  7050. weight: math.unit(73, "kg"),
  7051. name: "Anthro",
  7052. image: {
  7053. source: "./media/characters/alicia/anthro.svg",
  7054. extra: 2571 / 2385,
  7055. bottom: 75 / 2648
  7056. }
  7057. },
  7058. paw: {
  7059. height: math.unit(1.32, "feet"),
  7060. name: "Paw",
  7061. image: {
  7062. source: "./media/characters/alicia/paw.svg"
  7063. }
  7064. },
  7065. feral: {
  7066. height: math.unit(1.69, "meters"),
  7067. weight: math.unit(73, "kg"),
  7068. name: "Feral",
  7069. image: {
  7070. source: "./media/characters/alicia/feral.svg",
  7071. extra: 2123 / 1715,
  7072. bottom: 222 / 2349
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Normal",
  7079. height: math.unit(2.35, "meters")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(60, "meters"),
  7084. default: true
  7085. },
  7086. {
  7087. name: "Megamacro",
  7088. height: math.unit(10000, "kilometers")
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7094. {
  7095. front: {
  7096. height: math.unit(7, "feet"),
  7097. weight: math.unit(250, "lbs"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/archy/front.svg"
  7101. }
  7102. }
  7103. },
  7104. [
  7105. {
  7106. name: "Micro",
  7107. height: math.unit(1, "inch")
  7108. },
  7109. {
  7110. name: "Shorty",
  7111. height: math.unit(5, "feet")
  7112. },
  7113. {
  7114. name: "Normal",
  7115. height: math.unit(7, "feet")
  7116. },
  7117. {
  7118. name: "Macro",
  7119. height: math.unit(600, "meters"),
  7120. default: true
  7121. },
  7122. {
  7123. name: "Megamacro",
  7124. height: math.unit(1, "mile")
  7125. },
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7130. {
  7131. front: {
  7132. height: math.unit(1.65, "meters"),
  7133. weight: math.unit(74, "kg"),
  7134. name: "Front",
  7135. image: {
  7136. source: "./media/characters/berri/front.svg",
  7137. extra: 857 / 837,
  7138. bottom: 18 / 877
  7139. }
  7140. },
  7141. bum: {
  7142. height: math.unit(1.46, "feet"),
  7143. name: "Bum",
  7144. image: {
  7145. source: "./media/characters/berri/bum.svg"
  7146. }
  7147. },
  7148. mouth: {
  7149. height: math.unit(0.44, "feet"),
  7150. name: "Mouth",
  7151. image: {
  7152. source: "./media/characters/berri/mouth.svg"
  7153. }
  7154. },
  7155. paw: {
  7156. height: math.unit(0.826, "feet"),
  7157. name: "Paw",
  7158. image: {
  7159. source: "./media/characters/berri/paw.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(1.65, "meters")
  7167. },
  7168. {
  7169. name: "Macro",
  7170. height: math.unit(60, "m"),
  7171. default: true
  7172. },
  7173. {
  7174. name: "Megamacro",
  7175. height: math.unit(9.213, "km")
  7176. },
  7177. {
  7178. name: "Planet Eater",
  7179. height: math.unit(489, "megameters")
  7180. },
  7181. {
  7182. name: "Teramacro",
  7183. height: math.unit(2471635000000, "meters")
  7184. },
  7185. {
  7186. name: "Examacro",
  7187. height: math.unit(8.0624e+26, "meters")
  7188. }
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(1.72, "meters"),
  7196. weight: math.unit(68, "kg"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/lexi/front.svg"
  7200. }
  7201. }
  7202. },
  7203. [
  7204. {
  7205. name: "Very Smol",
  7206. height: math.unit(10, "mm")
  7207. },
  7208. {
  7209. name: "Micro",
  7210. height: math.unit(6.8, "cm"),
  7211. default: true
  7212. },
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(1.72, "m")
  7216. }
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(1.69, "meters"),
  7224. weight: math.unit(68, "kg"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/martin/front.svg",
  7228. extra: 596 / 581
  7229. }
  7230. }
  7231. },
  7232. [
  7233. {
  7234. name: "Micro",
  7235. height: math.unit(6.85, "cm"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(1.69, "m")
  7241. }
  7242. ]
  7243. ))
  7244. characterMakers.push(() => makeCharacter(
  7245. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7246. {
  7247. front: {
  7248. height: math.unit(1.69, "meters"),
  7249. weight: math.unit(68, "kg"),
  7250. name: "Front",
  7251. image: {
  7252. source: "./media/characters/juno/front.svg"
  7253. }
  7254. }
  7255. },
  7256. [
  7257. {
  7258. name: "Micro",
  7259. height: math.unit(7, "cm")
  7260. },
  7261. {
  7262. name: "Normal",
  7263. height: math.unit(1.89, "m")
  7264. },
  7265. {
  7266. name: "Macro",
  7267. height: math.unit(353, "meters"),
  7268. default: true
  7269. }
  7270. ]
  7271. ))
  7272. characterMakers.push(() => makeCharacter(
  7273. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7274. {
  7275. front: {
  7276. height: math.unit(1.93, "meters"),
  7277. weight: math.unit(83, "kg"),
  7278. name: "Front",
  7279. image: {
  7280. source: "./media/characters/samantha/front.svg"
  7281. }
  7282. },
  7283. frontClothed: {
  7284. height: math.unit(1.93, "meters"),
  7285. weight: math.unit(83, "kg"),
  7286. name: "Front (Clothed)",
  7287. image: {
  7288. source: "./media/characters/samantha/front-clothed.svg"
  7289. }
  7290. },
  7291. back: {
  7292. height: math.unit(1.93, "meters"),
  7293. weight: math.unit(83, "kg"),
  7294. name: "Back",
  7295. image: {
  7296. source: "./media/characters/samantha/back.svg"
  7297. }
  7298. },
  7299. },
  7300. [
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(1.93, "m")
  7304. },
  7305. {
  7306. name: "Macro",
  7307. height: math.unit(74, "meters"),
  7308. default: true
  7309. },
  7310. {
  7311. name: "Macro+",
  7312. height: math.unit(223, "meters"),
  7313. },
  7314. {
  7315. name: "Megamacro",
  7316. height: math.unit(8381, "meters"),
  7317. },
  7318. {
  7319. name: "Megamacro+",
  7320. height: math.unit(12000, "kilometers")
  7321. },
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7326. {
  7327. front: {
  7328. height: math.unit(1.92, "meters"),
  7329. weight: math.unit(80, "kg"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/dr-clay/front.svg"
  7333. }
  7334. },
  7335. frontClothed: {
  7336. height: math.unit(1.92, "meters"),
  7337. weight: math.unit(80, "kg"),
  7338. name: "Front (Clothed)",
  7339. image: {
  7340. source: "./media/characters/dr-clay/front-clothed.svg"
  7341. }
  7342. }
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(1.92, "m")
  7348. },
  7349. {
  7350. name: "Macro",
  7351. height: math.unit(214, "meters"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Macro+",
  7356. height: math.unit(12.237, "meters"),
  7357. },
  7358. {
  7359. name: "Megamacro",
  7360. height: math.unit(557, "megameters"),
  7361. },
  7362. {
  7363. name: "Unimaginable",
  7364. height: math.unit(120e9, "lightyears")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(2, "meters"),
  7373. weight: math.unit(80, "kg"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7377. }
  7378. }
  7379. },
  7380. [
  7381. {
  7382. name: "Teramacro",
  7383. height: math.unit(500000, "lightyears"),
  7384. default: true
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7390. {
  7391. crux: {
  7392. height: math.unit(2, "meters"),
  7393. weight: math.unit(150, "kg"),
  7394. name: "Crux",
  7395. image: {
  7396. source: "./media/characters/vemus/crux.svg",
  7397. extra: 1074/936,
  7398. bottom: 23/1097
  7399. }
  7400. },
  7401. skunkTanuki: {
  7402. height: math.unit(2, "meters"),
  7403. weight: math.unit(150, "kg"),
  7404. name: "Skunk-Tanuki",
  7405. image: {
  7406. source: "./media/characters/vemus/skunk-tanuki.svg",
  7407. extra: 926/893,
  7408. bottom: 20/946
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Normal",
  7415. height: math.unit(4, "meters"),
  7416. default: true
  7417. },
  7418. {
  7419. name: "Big",
  7420. height: math.unit(8, "meters")
  7421. },
  7422. {
  7423. name: "Macro",
  7424. height: math.unit(100, "meters")
  7425. },
  7426. {
  7427. name: "Macro+",
  7428. height: math.unit(1500, "meters")
  7429. },
  7430. {
  7431. name: "Stellar",
  7432. height: math.unit(14e8, "meters")
  7433. },
  7434. ]
  7435. ))
  7436. characterMakers.push(() => makeCharacter(
  7437. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7438. {
  7439. front: {
  7440. height: math.unit(2, "meters"),
  7441. weight: math.unit(70, "kg"),
  7442. name: "Front",
  7443. image: {
  7444. source: "./media/characters/beherit/front.svg",
  7445. extra: 1234/1109,
  7446. bottom: 55/1289
  7447. }
  7448. }
  7449. },
  7450. [
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(6, "feet")
  7454. },
  7455. {
  7456. name: "Lorg",
  7457. height: math.unit(25, "feet"),
  7458. default: true
  7459. },
  7460. {
  7461. name: "Lorger",
  7462. height: math.unit(75, "feet")
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(200, "meters")
  7467. },
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(2, "meters"),
  7475. weight: math.unit(150, "kg"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/everett/front.svg",
  7479. extra: 1017/866,
  7480. bottom: 86/1103
  7481. }
  7482. },
  7483. paw: {
  7484. height: math.unit(2 / 3.6, "meters"),
  7485. name: "Paw",
  7486. image: {
  7487. source: "./media/characters/everett/paw.svg"
  7488. }
  7489. },
  7490. },
  7491. [
  7492. {
  7493. name: "Normal",
  7494. height: math.unit(15, "feet"),
  7495. default: true
  7496. },
  7497. {
  7498. name: "Lorg",
  7499. height: math.unit(70, "feet"),
  7500. default: true
  7501. },
  7502. {
  7503. name: "Lorger",
  7504. height: math.unit(250, "feet")
  7505. },
  7506. {
  7507. name: "Macro",
  7508. height: math.unit(500, "meters")
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(2, "meters"),
  7517. weight: math.unit(86, "kg"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/rose/front.svg",
  7521. extra: 1785/1636,
  7522. bottom: 30/1815
  7523. },
  7524. form: "liom",
  7525. default: true
  7526. },
  7527. frontSporty: {
  7528. height: math.unit(2, "meters"),
  7529. weight: math.unit(86, "kg"),
  7530. name: "Front (Sporty)",
  7531. image: {
  7532. source: "./media/characters/rose/front-sporty.svg",
  7533. extra: 350/335,
  7534. bottom: 10/360
  7535. },
  7536. form: "liom"
  7537. },
  7538. frontAlt: {
  7539. height: math.unit(1.6, "meters"),
  7540. weight: math.unit(86, "kg"),
  7541. name: "Front (Alt)",
  7542. image: {
  7543. source: "./media/characters/rose/front-alt.svg",
  7544. extra: 299/283,
  7545. bottom: 3/302
  7546. },
  7547. form: "liom"
  7548. },
  7549. plush: {
  7550. height: math.unit(2, "meters"),
  7551. weight: math.unit(86/3, "kg"),
  7552. name: "Plush",
  7553. image: {
  7554. source: "./media/characters/rose/plush.svg",
  7555. extra: 361/337,
  7556. bottom: 11/372
  7557. },
  7558. form: "plush",
  7559. default: true
  7560. },
  7561. faeStanding: {
  7562. height: math.unit(10, "cm"),
  7563. weight: math.unit(10, "grams"),
  7564. name: "Standing",
  7565. image: {
  7566. source: "./media/characters/rose/fae-standing.svg",
  7567. extra: 1189/1060,
  7568. bottom: 27/1216
  7569. },
  7570. form: "fae",
  7571. default: true
  7572. },
  7573. faeSitting: {
  7574. height: math.unit(5, "cm"),
  7575. weight: math.unit(10, "grams"),
  7576. name: "Sitting",
  7577. image: {
  7578. source: "./media/characters/rose/fae-sitting.svg",
  7579. extra: 737/577,
  7580. bottom: 356/1093
  7581. },
  7582. form: "fae"
  7583. },
  7584. faePaw: {
  7585. height: math.unit(1.35, "cm"),
  7586. name: "Paw",
  7587. image: {
  7588. source: "./media/characters/rose/fae-paw.svg"
  7589. },
  7590. form: "fae"
  7591. },
  7592. },
  7593. [
  7594. {
  7595. name: "True Micro",
  7596. height: math.unit(9, "cm"),
  7597. form: "liom"
  7598. },
  7599. {
  7600. name: "Micro",
  7601. height: math.unit(16, "cm"),
  7602. form: "liom"
  7603. },
  7604. {
  7605. name: "Normal",
  7606. height: math.unit(1.85, "meters"),
  7607. default: true,
  7608. form: "liom"
  7609. },
  7610. {
  7611. name: "Mini-Macro",
  7612. height: math.unit(5, "meters"),
  7613. form: "liom"
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(15, "meters"),
  7618. form: "liom"
  7619. },
  7620. {
  7621. name: "True Macro",
  7622. height: math.unit(40, "meters"),
  7623. form: "liom"
  7624. },
  7625. {
  7626. name: "City Scale",
  7627. height: math.unit(1, "km"),
  7628. form: "liom"
  7629. },
  7630. {
  7631. name: "Plushie",
  7632. height: math.unit(9, "cm"),
  7633. form: "plush",
  7634. default: true
  7635. },
  7636. {
  7637. name: "Fae",
  7638. height: math.unit(10, "cm"),
  7639. form: "fae",
  7640. default: true
  7641. },
  7642. ],
  7643. {
  7644. "liom": {
  7645. name: "Liom"
  7646. },
  7647. "plush": {
  7648. name: "Plush"
  7649. },
  7650. "fae": {
  7651. name: "Fae Fox",
  7652. default: true
  7653. }
  7654. }
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(2, "meters"),
  7661. weight: math.unit(350, "lbs"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/regal/front.svg"
  7665. }
  7666. },
  7667. back: {
  7668. height: math.unit(2, "meters"),
  7669. weight: math.unit(350, "lbs"),
  7670. name: "Back",
  7671. image: {
  7672. source: "./media/characters/regal/back.svg"
  7673. }
  7674. },
  7675. },
  7676. [
  7677. {
  7678. name: "Macro",
  7679. height: math.unit(350, "feet"),
  7680. default: true
  7681. }
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(4 + 11 / 12, "feet"),
  7689. weight: math.unit(100, "lbs"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/opal/front.svg"
  7693. }
  7694. },
  7695. frontAlt: {
  7696. height: math.unit(4 + 11 / 12, "feet"),
  7697. weight: math.unit(100, "lbs"),
  7698. name: "Front (Alt)",
  7699. image: {
  7700. source: "./media/characters/opal/front-alt.svg"
  7701. }
  7702. },
  7703. },
  7704. [
  7705. {
  7706. name: "Small",
  7707. height: math.unit(4 + 11 / 12, "feet")
  7708. },
  7709. {
  7710. name: "Normal",
  7711. height: math.unit(20, "feet"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(120, "feet")
  7717. },
  7718. {
  7719. name: "Megamacro",
  7720. height: math.unit(80, "miles")
  7721. },
  7722. {
  7723. name: "True Size",
  7724. height: math.unit(100000, "lightyears")
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7730. {
  7731. front: {
  7732. height: math.unit(6, "feet"),
  7733. weight: math.unit(200, "lbs"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/vector-wuff/front.svg"
  7737. }
  7738. }
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(2.8, "meters")
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(450, "meters"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(15, "kilometers")
  7753. }
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(256, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/dannik/front.svg"
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Macro",
  7771. height: math.unit(69.57, "meters"),
  7772. default: true
  7773. },
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(6, "feet"),
  7781. weight: math.unit(120, "lbs"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/azura-saharah/front.svg"
  7785. }
  7786. },
  7787. back: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(120, "lbs"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/azura-saharah/back.svg"
  7793. }
  7794. },
  7795. },
  7796. [
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(100, "feet"),
  7800. default: true
  7801. },
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7806. {
  7807. side: {
  7808. height: math.unit(5 + 4 / 12, "feet"),
  7809. weight: math.unit(163, "lbs"),
  7810. name: "Side",
  7811. image: {
  7812. source: "./media/characters/kennedy/side.svg"
  7813. }
  7814. }
  7815. },
  7816. [
  7817. {
  7818. name: "Standard Doggo",
  7819. height: math.unit(5 + 4 / 12, "feet")
  7820. },
  7821. {
  7822. name: "Big Doggo",
  7823. height: math.unit(25 + 3 / 12, "feet"),
  7824. default: true
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(5 + 5/12, "feet"),
  7833. weight: math.unit(100, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/odios-de-lunar/front.svg",
  7837. extra: 1468/1323,
  7838. bottom: 22/1490
  7839. }
  7840. }
  7841. },
  7842. [
  7843. {
  7844. name: "Micro",
  7845. height: math.unit(3, "inches")
  7846. },
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(5.5, "feet"),
  7850. default: true
  7851. },
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(100, "feet")
  7855. },
  7856. ]
  7857. ))
  7858. characterMakers.push(() => makeCharacter(
  7859. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7860. {
  7861. back: {
  7862. height: math.unit(6, "feet"),
  7863. weight: math.unit(220, "lbs"),
  7864. name: "Back",
  7865. image: {
  7866. source: "./media/characters/mandake/back.svg"
  7867. }
  7868. }
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(7, "feet"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Macro",
  7878. height: math.unit(78, "feet")
  7879. },
  7880. {
  7881. name: "Macro+",
  7882. height: math.unit(300, "meters")
  7883. },
  7884. {
  7885. name: "Macro++",
  7886. height: math.unit(2400, "feet")
  7887. },
  7888. {
  7889. name: "Megamacro",
  7890. height: math.unit(5167, "meters")
  7891. },
  7892. {
  7893. name: "Gigamacro",
  7894. height: math.unit(41769, "miles")
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(6, "feet"),
  7903. weight: math.unit(120, "lbs"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/yozey/front.svg"
  7907. }
  7908. },
  7909. frontAlt: {
  7910. height: math.unit(6, "feet"),
  7911. weight: math.unit(120, "lbs"),
  7912. name: "Front (Alt)",
  7913. image: {
  7914. source: "./media/characters/yozey/front-alt.svg"
  7915. }
  7916. },
  7917. side: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(120, "lbs"),
  7920. name: "Side",
  7921. image: {
  7922. source: "./media/characters/yozey/side.svg"
  7923. }
  7924. },
  7925. },
  7926. [
  7927. {
  7928. name: "Micro",
  7929. height: math.unit(3, "inches"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(6, "feet")
  7935. }
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(103, "lbs"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/valeska-voss/front.svg"
  7947. }
  7948. }
  7949. },
  7950. [
  7951. {
  7952. name: "Mini-Sized Sub",
  7953. height: math.unit(3.1, "inches")
  7954. },
  7955. {
  7956. name: "Mid-Sized Sub",
  7957. height: math.unit(6.2, "inches")
  7958. },
  7959. {
  7960. name: "Full-Sized Sub",
  7961. height: math.unit(9.3, "inches")
  7962. },
  7963. {
  7964. name: "Normal",
  7965. height: math.unit(5 + 2 / 12, "foot"),
  7966. default: true
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(160, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/gene-zeta/front.svg",
  7979. extra: 3006 / 2826,
  7980. bottom: 182 / 3188
  7981. }
  7982. }
  7983. },
  7984. [
  7985. {
  7986. name: "Micro",
  7987. height: math.unit(6, "inches")
  7988. },
  7989. {
  7990. name: "Normal",
  7991. height: math.unit(5 + 11 / 12, "foot"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(140, "feet")
  7997. },
  7998. {
  7999. name: "Supercharged",
  8000. height: math.unit(2500, "feet")
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8006. {
  8007. front: {
  8008. height: math.unit(6, "feet"),
  8009. weight: math.unit(350, "lbs"),
  8010. name: "Front",
  8011. image: {
  8012. source: "./media/characters/razinox/front.svg",
  8013. extra: 1686 / 1548,
  8014. bottom: 28.2 / 1868
  8015. }
  8016. },
  8017. back: {
  8018. height: math.unit(6, "feet"),
  8019. weight: math.unit(350, "lbs"),
  8020. name: "Back",
  8021. image: {
  8022. source: "./media/characters/razinox/back.svg",
  8023. extra: 1660 / 1590,
  8024. bottom: 15 / 1665
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(10 + 8 / 12, "foot")
  8032. },
  8033. {
  8034. name: "Minimacro",
  8035. height: math.unit(15, "foot")
  8036. },
  8037. {
  8038. name: "Macro",
  8039. height: math.unit(60, "foot"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Megamacro",
  8044. height: math.unit(5, "miles")
  8045. },
  8046. {
  8047. name: "Gigamacro",
  8048. height: math.unit(6000, "miles")
  8049. },
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(6, "feet"),
  8057. weight: math.unit(150, "lbs"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/cobalt/front.svg"
  8061. }
  8062. }
  8063. },
  8064. [
  8065. {
  8066. name: "Normal",
  8067. height: math.unit(8 + 1 / 12, "foot")
  8068. },
  8069. {
  8070. name: "Macro",
  8071. height: math.unit(111, "foot"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Supracosmic",
  8076. height: math.unit(1e42, "feet")
  8077. },
  8078. ]
  8079. ))
  8080. characterMakers.push(() => makeCharacter(
  8081. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8082. {
  8083. front: {
  8084. height: math.unit(5, "inches"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/amanda/front.svg",
  8088. extra: 926/791,
  8089. bottom: 38/964
  8090. }
  8091. },
  8092. back: {
  8093. height: math.unit(5, "inches"),
  8094. name: "Back",
  8095. image: {
  8096. source: "./media/characters/amanda/back.svg",
  8097. extra: 909/805,
  8098. bottom: 43/952
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(5, "inches"),
  8106. default: true
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(2.75, "meters"),
  8115. weight: math.unit(1200, "lb"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/teal/front.svg",
  8119. extra: 2463 / 2320,
  8120. bottom: 166 / 2629
  8121. }
  8122. },
  8123. back: {
  8124. height: math.unit(2.75, "meters"),
  8125. weight: math.unit(1200, "lb"),
  8126. name: "Back",
  8127. image: {
  8128. source: "./media/characters/teal/back.svg",
  8129. extra: 2580 / 2489,
  8130. bottom: 151 / 2731
  8131. }
  8132. },
  8133. sitting: {
  8134. height: math.unit(1.9, "meters"),
  8135. weight: math.unit(1200, "lb"),
  8136. name: "Sitting",
  8137. image: {
  8138. source: "./media/characters/teal/sitting.svg",
  8139. extra: 623 / 590,
  8140. bottom: 121 / 744
  8141. }
  8142. },
  8143. standing: {
  8144. height: math.unit(2.75, "meters"),
  8145. weight: math.unit(1200, "lb"),
  8146. name: "Standing",
  8147. image: {
  8148. source: "./media/characters/teal/standing.svg",
  8149. extra: 923 / 893,
  8150. bottom: 60 / 983
  8151. }
  8152. },
  8153. stretching: {
  8154. height: math.unit(3.65, "meters"),
  8155. weight: math.unit(1200, "lb"),
  8156. name: "Stretching",
  8157. image: {
  8158. source: "./media/characters/teal/stretching.svg",
  8159. extra: 1276 / 1244,
  8160. bottom: 0 / 1276
  8161. }
  8162. },
  8163. legged: {
  8164. height: math.unit(1.3, "meters"),
  8165. weight: math.unit(100, "lb"),
  8166. name: "Legged",
  8167. image: {
  8168. source: "./media/characters/teal/legged.svg",
  8169. extra: 462 / 437,
  8170. bottom: 24 / 486
  8171. }
  8172. },
  8173. naga: {
  8174. height: math.unit(5.4, "meters"),
  8175. weight: math.unit(4000, "lb"),
  8176. name: "Naga",
  8177. image: {
  8178. source: "./media/characters/teal/naga.svg",
  8179. extra: 1902 / 1858,
  8180. bottom: 0 / 1902
  8181. }
  8182. },
  8183. hand: {
  8184. height: math.unit(0.52, "meters"),
  8185. name: "Hand",
  8186. image: {
  8187. source: "./media/characters/teal/hand.svg"
  8188. }
  8189. },
  8190. maw: {
  8191. height: math.unit(0.43, "meters"),
  8192. name: "Maw",
  8193. image: {
  8194. source: "./media/characters/teal/maw.svg"
  8195. }
  8196. },
  8197. slit: {
  8198. height: math.unit(0.25, "meters"),
  8199. name: "Slit",
  8200. image: {
  8201. source: "./media/characters/teal/slit.svg"
  8202. }
  8203. },
  8204. },
  8205. [
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(2.75, "meters"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(300, "feet")
  8214. },
  8215. {
  8216. name: "Macro+",
  8217. height: math.unit(2000, "feet")
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8223. {
  8224. frontCat: {
  8225. height: math.unit(6, "feet"),
  8226. weight: math.unit(180, "lbs"),
  8227. name: "Front (Cat)",
  8228. image: {
  8229. source: "./media/characters/ravin-amulet/front-cat.svg"
  8230. }
  8231. },
  8232. frontCatAlt: {
  8233. height: math.unit(6, "feet"),
  8234. weight: math.unit(180, "lbs"),
  8235. name: "Front (Alt, Cat)",
  8236. image: {
  8237. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8238. }
  8239. },
  8240. frontWerewolf: {
  8241. height: math.unit(6 * 1.2, "feet"),
  8242. weight: math.unit(225, "lbs"),
  8243. name: "Front (Werewolf)",
  8244. image: {
  8245. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8246. }
  8247. },
  8248. backWerewolf: {
  8249. height: math.unit(6 * 1.2, "feet"),
  8250. weight: math.unit(225, "lbs"),
  8251. name: "Back (Werewolf)",
  8252. image: {
  8253. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Nano",
  8260. height: math.unit(1, "micrometer")
  8261. },
  8262. {
  8263. name: "Micro",
  8264. height: math.unit(1, "inch")
  8265. },
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(6, "feet"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "Macro",
  8273. height: math.unit(60, "feet")
  8274. }
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8279. {
  8280. front: {
  8281. height: math.unit(6, "feet"),
  8282. weight: math.unit(165, "lbs"),
  8283. name: "Front",
  8284. image: {
  8285. source: "./media/characters/fluoresce/front.svg"
  8286. }
  8287. }
  8288. },
  8289. [
  8290. {
  8291. name: "Micro",
  8292. height: math.unit(6, "cm")
  8293. },
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(5 + 7 / 12, "feet"),
  8297. default: true
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(56, "feet")
  8302. },
  8303. {
  8304. name: "Megamacro",
  8305. height: math.unit(1.9, "miles")
  8306. },
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(9 + 6 / 12, "feet"),
  8314. weight: math.unit(523, "lbs"),
  8315. name: "Side",
  8316. image: {
  8317. source: "./media/characters/aurora/side.svg",
  8318. extra: 474/393,
  8319. bottom: 5/479
  8320. }
  8321. }
  8322. },
  8323. [
  8324. {
  8325. name: "Normal",
  8326. height: math.unit(9 + 6 / 12, "feet")
  8327. },
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(96, "feet"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Macro+",
  8335. height: math.unit(243, "feet")
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(194, "cm"),
  8344. weight: math.unit(90, "kg"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/ranek/front.svg",
  8348. extra: 1862/1791,
  8349. bottom: 80/1942
  8350. }
  8351. },
  8352. back: {
  8353. height: math.unit(194, "cm"),
  8354. weight: math.unit(90, "kg"),
  8355. name: "Back",
  8356. image: {
  8357. source: "./media/characters/ranek/back.svg",
  8358. extra: 1853/1787,
  8359. bottom: 74/1927
  8360. }
  8361. },
  8362. feral: {
  8363. height: math.unit(30, "cm"),
  8364. weight: math.unit(1.6, "lbs"),
  8365. name: "Feral",
  8366. image: {
  8367. source: "./media/characters/ranek/feral.svg",
  8368. extra: 990/631,
  8369. bottom: 29/1019
  8370. }
  8371. },
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(194, "cm"),
  8377. default: true
  8378. },
  8379. {
  8380. name: "Macro",
  8381. height: math.unit(100, "meters")
  8382. },
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8387. {
  8388. front: {
  8389. height: math.unit(5 + 6 / 12, "feet"),
  8390. weight: math.unit(153, "lbs"),
  8391. name: "Front",
  8392. image: {
  8393. source: "./media/characters/andrew-cooper/front.svg"
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Nano",
  8400. height: math.unit(1, "mm")
  8401. },
  8402. {
  8403. name: "Micro",
  8404. height: math.unit(2, "inches")
  8405. },
  8406. {
  8407. name: "Normal",
  8408. height: math.unit(5 + 6 / 12, "feet"),
  8409. default: true
  8410. }
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(180, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/akane-sato/front.svg",
  8422. extra: 1219 / 1140
  8423. }
  8424. },
  8425. back: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(180, "lbs"),
  8428. name: "Back",
  8429. image: {
  8430. source: "./media/characters/akane-sato/back.svg",
  8431. extra: 1219 / 1170
  8432. }
  8433. },
  8434. },
  8435. [
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(2.5, "meters")
  8439. },
  8440. {
  8441. name: "Macro",
  8442. height: math.unit(250, "meters"),
  8443. default: true
  8444. },
  8445. {
  8446. name: "Megamacro",
  8447. height: math.unit(25, "km")
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(65, "kg"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/rook/front.svg",
  8460. extra: 960 / 950
  8461. }
  8462. }
  8463. },
  8464. [
  8465. {
  8466. name: "Normal",
  8467. height: math.unit(8.8, "feet")
  8468. },
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(88, "feet"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Megamacro",
  8476. height: math.unit(8, "miles")
  8477. },
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8482. {
  8483. front: {
  8484. height: math.unit(12 + 2 / 12, "feet"),
  8485. weight: math.unit(808, "lbs"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/prodigy/front.svg"
  8489. }
  8490. }
  8491. },
  8492. [
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(12 + 2 / 12, "feet"),
  8496. default: true
  8497. },
  8498. {
  8499. name: "Macro",
  8500. height: math.unit(143, "feet")
  8501. },
  8502. {
  8503. name: "Macro+",
  8504. height: math.unit(400, "feet")
  8505. },
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(6, "feet"),
  8513. weight: math.unit(225, "lbs"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/daniel/front.svg"
  8517. }
  8518. },
  8519. leaning: {
  8520. height: math.unit(6, "feet"),
  8521. weight: math.unit(225, "lbs"),
  8522. name: "Leaning",
  8523. image: {
  8524. source: "./media/characters/daniel/leaning.svg"
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(1000, "feet"),
  8532. default: true
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(88, "lbs"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/chiros/front.svg",
  8545. extra: 306 / 226
  8546. }
  8547. },
  8548. side: {
  8549. height: math.unit(6, "feet"),
  8550. weight: math.unit(88, "lbs"),
  8551. name: "Side",
  8552. image: {
  8553. source: "./media/characters/chiros/side.svg",
  8554. extra: 306 / 226
  8555. }
  8556. },
  8557. },
  8558. [
  8559. {
  8560. name: "Normal",
  8561. height: math.unit(6, "cm"),
  8562. default: true
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8568. {
  8569. front: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(100, "lbs"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/selka/front.svg",
  8575. extra: 947 / 887
  8576. }
  8577. }
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(5, "cm"),
  8583. default: true
  8584. },
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(8 + 3 / 12, "feet"),
  8592. weight: math.unit(424, "lbs"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/verin/front.svg",
  8596. extra: 1845 / 1550
  8597. }
  8598. },
  8599. frontArmored: {
  8600. height: math.unit(8 + 3 / 12, "feet"),
  8601. weight: math.unit(424, "lbs"),
  8602. name: "Front (Armored)",
  8603. image: {
  8604. source: "./media/characters/verin/front-armor.svg",
  8605. extra: 1845 / 1550,
  8606. bottom: 0.01
  8607. }
  8608. },
  8609. back: {
  8610. height: math.unit(8 + 3 / 12, "feet"),
  8611. weight: math.unit(424, "lbs"),
  8612. name: "Back",
  8613. image: {
  8614. source: "./media/characters/verin/back.svg",
  8615. bottom: 0.1,
  8616. extra: 1
  8617. }
  8618. },
  8619. foot: {
  8620. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8621. name: "Foot",
  8622. image: {
  8623. source: "./media/characters/verin/foot.svg"
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(8 + 3 / 12, "feet")
  8631. },
  8632. {
  8633. name: "Minimacro",
  8634. height: math.unit(21, "feet"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "Macro",
  8639. height: math.unit(626, "feet")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(2.718, "meters"),
  8648. weight: math.unit(150, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/sovrim-terraquian/front.svg",
  8652. extra: 1752/1689,
  8653. bottom: 36/1788
  8654. }
  8655. },
  8656. back: {
  8657. height: math.unit(2.718, "meters"),
  8658. weight: math.unit(150, "lbs"),
  8659. name: "Back",
  8660. image: {
  8661. source: "./media/characters/sovrim-terraquian/back.svg",
  8662. extra: 1698/1657,
  8663. bottom: 58/1756
  8664. }
  8665. },
  8666. tongue: {
  8667. height: math.unit(2.865, "feet"),
  8668. name: "Tongue",
  8669. image: {
  8670. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8671. }
  8672. },
  8673. hand: {
  8674. height: math.unit(1.61, "feet"),
  8675. name: "Hand",
  8676. image: {
  8677. source: "./media/characters/sovrim-terraquian/hand.svg"
  8678. }
  8679. },
  8680. foot: {
  8681. height: math.unit(1.05, "feet"),
  8682. name: "Foot",
  8683. image: {
  8684. source: "./media/characters/sovrim-terraquian/foot.svg"
  8685. }
  8686. },
  8687. footAlt: {
  8688. height: math.unit(0.88, "feet"),
  8689. name: "Foot (Alt)",
  8690. image: {
  8691. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Micro",
  8698. height: math.unit(2, "inches")
  8699. },
  8700. {
  8701. name: "Small",
  8702. height: math.unit(1, "meter")
  8703. },
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(Math.E, "meters"),
  8707. default: true
  8708. },
  8709. {
  8710. name: "Macro",
  8711. height: math.unit(20, "meters")
  8712. },
  8713. {
  8714. name: "Macro+",
  8715. height: math.unit(400, "meters")
  8716. },
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(7, "feet"),
  8724. weight: math.unit(489, "lbs"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/reece-silvermane/front.svg",
  8728. bottom: 0.02,
  8729. extra: 1
  8730. }
  8731. },
  8732. },
  8733. [
  8734. {
  8735. name: "Macro",
  8736. height: math.unit(1.5, "miles"),
  8737. default: true
  8738. },
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8743. {
  8744. front: {
  8745. height: math.unit(6, "feet"),
  8746. weight: math.unit(78, "kg"),
  8747. name: "Front",
  8748. image: {
  8749. source: "./media/characters/kane/front.svg",
  8750. extra: 978 / 899
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(2.1, "m"),
  8758. },
  8759. {
  8760. name: "Macro",
  8761. height: math.unit(1, "km"),
  8762. default: true
  8763. },
  8764. ]
  8765. ))
  8766. characterMakers.push(() => makeCharacter(
  8767. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8768. {
  8769. front: {
  8770. height: math.unit(6, "feet"),
  8771. weight: math.unit(200, "kg"),
  8772. name: "Front",
  8773. image: {
  8774. source: "./media/characters/tegon/front.svg",
  8775. bottom: 0.01,
  8776. extra: 1
  8777. }
  8778. },
  8779. },
  8780. [
  8781. {
  8782. name: "Micro",
  8783. height: math.unit(1, "inch")
  8784. },
  8785. {
  8786. name: "Normal",
  8787. height: math.unit(6 + 3 / 12, "feet"),
  8788. default: true
  8789. },
  8790. {
  8791. name: "Macro",
  8792. height: math.unit(300, "feet")
  8793. },
  8794. {
  8795. name: "Megamacro",
  8796. height: math.unit(69, "miles")
  8797. },
  8798. ]
  8799. ))
  8800. characterMakers.push(() => makeCharacter(
  8801. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8802. {
  8803. side: {
  8804. height: math.unit(6, "feet"),
  8805. weight: math.unit(2304, "lbs"),
  8806. name: "Side",
  8807. image: {
  8808. source: "./media/characters/arcturax/side.svg",
  8809. extra: 790 / 376,
  8810. bottom: 0.01
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(2, "inch")
  8818. },
  8819. {
  8820. name: "Normal",
  8821. height: math.unit(6, "feet")
  8822. },
  8823. {
  8824. name: "Macro",
  8825. height: math.unit(39, "feet"),
  8826. default: true
  8827. },
  8828. {
  8829. name: "Megamacro",
  8830. height: math.unit(7, "miles")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(6, "feet"),
  8839. weight: math.unit(50, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/sentri/front.svg",
  8843. extra: 1750 / 1570,
  8844. bottom: 0.025
  8845. }
  8846. },
  8847. frontAlt: {
  8848. height: math.unit(6, "feet"),
  8849. weight: math.unit(50, "lbs"),
  8850. name: "Front (Alt)",
  8851. image: {
  8852. source: "./media/characters/sentri/front-alt.svg",
  8853. extra: 1750 / 1570,
  8854. bottom: 0.025
  8855. }
  8856. },
  8857. },
  8858. [
  8859. {
  8860. name: "Normal",
  8861. height: math.unit(15, "feet"),
  8862. default: true
  8863. },
  8864. {
  8865. name: "Macro",
  8866. height: math.unit(2500, "feet")
  8867. }
  8868. ]
  8869. ))
  8870. characterMakers.push(() => makeCharacter(
  8871. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8872. {
  8873. front: {
  8874. height: math.unit(5 + 8 / 12, "feet"),
  8875. weight: math.unit(130, "lbs"),
  8876. name: "Front",
  8877. image: {
  8878. source: "./media/characters/corvin/front.svg",
  8879. extra: 1803 / 1629
  8880. }
  8881. },
  8882. frontShirt: {
  8883. height: math.unit(5 + 8 / 12, "feet"),
  8884. weight: math.unit(130, "lbs"),
  8885. name: "Front (Shirt)",
  8886. image: {
  8887. source: "./media/characters/corvin/front-shirt.svg",
  8888. extra: 1803 / 1629
  8889. }
  8890. },
  8891. frontPoncho: {
  8892. height: math.unit(5 + 8 / 12, "feet"),
  8893. weight: math.unit(130, "lbs"),
  8894. name: "Front (Poncho)",
  8895. image: {
  8896. source: "./media/characters/corvin/front-poncho.svg",
  8897. extra: 1803 / 1629
  8898. }
  8899. },
  8900. side: {
  8901. height: math.unit(5 + 8 / 12, "feet"),
  8902. weight: math.unit(130, "lbs"),
  8903. name: "Side",
  8904. image: {
  8905. source: "./media/characters/corvin/side.svg",
  8906. extra: 1012 / 945
  8907. }
  8908. },
  8909. back: {
  8910. height: math.unit(5 + 8 / 12, "feet"),
  8911. weight: math.unit(130, "lbs"),
  8912. name: "Back",
  8913. image: {
  8914. source: "./media/characters/corvin/back.svg",
  8915. extra: 1803 / 1629
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Micro",
  8922. height: math.unit(3, "inches")
  8923. },
  8924. {
  8925. name: "Normal",
  8926. height: math.unit(5 + 8 / 12, "feet")
  8927. },
  8928. {
  8929. name: "Macro",
  8930. height: math.unit(300, "feet"),
  8931. default: true
  8932. },
  8933. {
  8934. name: "Megamacro",
  8935. height: math.unit(500, "miles")
  8936. }
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(6, "feet"),
  8944. weight: math.unit(135, "lbs"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/q/front.svg",
  8948. extra: 854 / 752,
  8949. bottom: 0.005
  8950. }
  8951. },
  8952. back: {
  8953. height: math.unit(6, "feet"),
  8954. weight: math.unit(130, "lbs"),
  8955. name: "Back",
  8956. image: {
  8957. source: "./media/characters/q/back.svg",
  8958. extra: 854 / 752
  8959. }
  8960. },
  8961. },
  8962. [
  8963. {
  8964. name: "Macro",
  8965. height: math.unit(90, "feet"),
  8966. default: true
  8967. },
  8968. {
  8969. name: "Extra Macro",
  8970. height: math.unit(300, "feet"),
  8971. },
  8972. {
  8973. name: "BIG WALF",
  8974. height: math.unit(750, "feet"),
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(3, "feet"),
  8983. weight: math.unit(28, "lbs"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/citrine/front.svg"
  8987. }
  8988. }
  8989. },
  8990. [
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(3, "feet"),
  8994. default: true
  8995. }
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9000. {
  9001. front: {
  9002. height: math.unit(14, "feet"),
  9003. weight: math.unit(1450, "kg"),
  9004. preyCapacity: math.unit(15, "people"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/aura-starwind/front.svg",
  9008. extra: 1440/1327,
  9009. bottom: 11/1451
  9010. }
  9011. },
  9012. side: {
  9013. height: math.unit(14, "feet"),
  9014. weight: math.unit(1450, "kg"),
  9015. preyCapacity: math.unit(15, "people"),
  9016. name: "Side",
  9017. image: {
  9018. source: "./media/characters/aura-starwind/side.svg",
  9019. extra: 1654 / 1497
  9020. }
  9021. },
  9022. taur: {
  9023. height: math.unit(18, "feet"),
  9024. weight: math.unit(5500, "kg"),
  9025. preyCapacity: math.unit(50, "people"),
  9026. name: "Taur",
  9027. image: {
  9028. source: "./media/characters/aura-starwind/taur.svg",
  9029. extra: 1760 / 1650
  9030. }
  9031. },
  9032. feral: {
  9033. height: math.unit(46, "feet"),
  9034. weight: math.unit(25000, "kg"),
  9035. preyCapacity: math.unit(120, "people"),
  9036. name: "Feral",
  9037. image: {
  9038. source: "./media/characters/aura-starwind/feral.svg"
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Normal",
  9045. height: math.unit(14, "feet"),
  9046. default: true
  9047. },
  9048. {
  9049. name: "Macro",
  9050. height: math.unit(50, "meters")
  9051. },
  9052. {
  9053. name: "Megamacro",
  9054. height: math.unit(5000, "meters")
  9055. },
  9056. {
  9057. name: "Gigamacro",
  9058. height: math.unit(100000, "kilometers")
  9059. },
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9064. {
  9065. front: {
  9066. height: math.unit(2 + 7 / 12, "feet"),
  9067. weight: math.unit(32, "lbs"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/rivet/front.svg",
  9071. extra: 1716 / 1658,
  9072. bottom: 0.03
  9073. }
  9074. },
  9075. foot: {
  9076. height: math.unit(0.551, "feet"),
  9077. name: "Rivet's Foot",
  9078. image: {
  9079. source: "./media/characters/rivet/foot.svg"
  9080. },
  9081. rename: true
  9082. }
  9083. },
  9084. [
  9085. {
  9086. name: "Micro",
  9087. height: math.unit(1.5, "inches"),
  9088. },
  9089. {
  9090. name: "Normal",
  9091. height: math.unit(2 + 7 / 12, "feet"),
  9092. default: true
  9093. },
  9094. {
  9095. name: "Macro",
  9096. height: math.unit(85, "feet")
  9097. },
  9098. {
  9099. name: "Megamacro",
  9100. height: math.unit(2.2, "km")
  9101. }
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(5 + 9 / 12, "feet"),
  9109. weight: math.unit(150, "lbs"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/coffee/front.svg",
  9113. extra: 946/880,
  9114. bottom: 66/1012
  9115. }
  9116. },
  9117. foot: {
  9118. height: math.unit(1.29, "feet"),
  9119. name: "Foot",
  9120. image: {
  9121. source: "./media/characters/coffee/foot.svg"
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Micro",
  9128. height: math.unit(2, "inches"),
  9129. },
  9130. {
  9131. name: "Normal",
  9132. height: math.unit(5 + 9 / 12, "feet"),
  9133. default: true
  9134. },
  9135. {
  9136. name: "Macro",
  9137. height: math.unit(800, "feet")
  9138. },
  9139. {
  9140. name: "Megamacro",
  9141. height: math.unit(25, "miles")
  9142. }
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(200, "lbs"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/chari-gal/front.svg",
  9154. extra: 1568 / 1385,
  9155. bottom: 0.047
  9156. }
  9157. },
  9158. gigantamax: {
  9159. height: math.unit(6 * 16, "feet"),
  9160. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9161. name: "Gigantamax",
  9162. image: {
  9163. source: "./media/characters/chari-gal/gigantamax.svg",
  9164. extra: 1124 / 888,
  9165. bottom: 0.03
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(5 + 7 / 12, "feet")
  9173. },
  9174. {
  9175. name: "Macro",
  9176. height: math.unit(200, "feet"),
  9177. default: true
  9178. }
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(150, "lbs"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/nova/front.svg",
  9190. extra: 5000 / 4722,
  9191. bottom: 0.02
  9192. }
  9193. }
  9194. },
  9195. [
  9196. {
  9197. name: "Micro-",
  9198. height: math.unit(0.8, "inches")
  9199. },
  9200. {
  9201. name: "Micro",
  9202. height: math.unit(2, "inches"),
  9203. default: true
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9209. {
  9210. koboldFront: {
  9211. height: math.unit(3 + 1 / 12, "feet"),
  9212. weight: math.unit(21.7, "lbs"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/argent/kobold-front.svg",
  9216. extra: 1471 / 1331,
  9217. bottom: 100.8 / 1575.5
  9218. },
  9219. form: "kobold",
  9220. default: true
  9221. },
  9222. dragonFront: {
  9223. height: math.unit(75, "inches"),
  9224. name: "Front",
  9225. image: {
  9226. source: "./media/characters/argent/dragon-front.svg",
  9227. extra: 1389/1248,
  9228. bottom: 54/1443
  9229. },
  9230. form: "dragon",
  9231. },
  9232. dragonBack: {
  9233. height: math.unit(75, "inches"),
  9234. name: "Back",
  9235. image: {
  9236. source: "./media/characters/argent/dragon-back.svg",
  9237. extra: 1399/1271,
  9238. bottom: 23/1422
  9239. },
  9240. form: "dragon",
  9241. },
  9242. dragonDressed: {
  9243. height: math.unit(75, "inches"),
  9244. name: "Dressed",
  9245. image: {
  9246. source: "./media/characters/argent/dragon-dressed.svg",
  9247. extra: 1350/1215,
  9248. bottom: 26/1376
  9249. },
  9250. form: "dragon"
  9251. },
  9252. dragonHead: {
  9253. height: math.unit(23.5, "inches"),
  9254. name: "Head",
  9255. image: {
  9256. source: "./media/characters/argent/dragon-head.svg"
  9257. },
  9258. form: "dragon",
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Micro",
  9264. height: math.unit(2, "inches"),
  9265. form: "kobold",
  9266. },
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(3 + 1 / 12, "feet"),
  9270. form: "kobold",
  9271. default: true
  9272. },
  9273. {
  9274. name: "Macro",
  9275. height: math.unit(120, "feet"),
  9276. form: "kobold",
  9277. },
  9278. {
  9279. name: "Speck",
  9280. height: math.unit(1, "mm"),
  9281. form: "dragon",
  9282. },
  9283. {
  9284. name: "Tiny",
  9285. height: math.unit(1, "cm"),
  9286. form: "dragon",
  9287. },
  9288. {
  9289. name: "Micro",
  9290. height: math.unit(5, "cm"),
  9291. form: "dragon",
  9292. },
  9293. {
  9294. name: "Normal",
  9295. height: math.unit(75, "inches"),
  9296. form: "dragon",
  9297. default: true
  9298. },
  9299. {
  9300. name: "Extra Tall",
  9301. height: math.unit(9, "feet"),
  9302. form: "dragon",
  9303. },
  9304. {
  9305. name: "Inconvenient",
  9306. height: math.unit(5, "meters"),
  9307. form: "dragon",
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(70, "meters"),
  9312. form: "dragon",
  9313. },
  9314. {
  9315. name: "Macro+",
  9316. height: math.unit(250, "meters"),
  9317. form: "dragon",
  9318. },
  9319. {
  9320. name: "Megamacro",
  9321. height: math.unit(20, "km"),
  9322. form: "dragon",
  9323. },
  9324. {
  9325. name: "Mountainous",
  9326. height: math.unit(100, "km"),
  9327. form: "dragon",
  9328. },
  9329. {
  9330. name: "Continental",
  9331. height: math.unit(2, "megameters"),
  9332. form: "dragon",
  9333. },
  9334. {
  9335. name: "Too Big",
  9336. height: math.unit(900, "megameters"),
  9337. form: "dragon",
  9338. },
  9339. ],
  9340. {
  9341. "kobold": {
  9342. name: "Kobold",
  9343. default: true
  9344. },
  9345. "dragon": {
  9346. name: "Dragon",
  9347. },
  9348. }
  9349. ))
  9350. characterMakers.push(() => makeCharacter(
  9351. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9352. {
  9353. lamp: {
  9354. height: math.unit(7 * 1559 / 989, "feet"),
  9355. name: "Magic Lamp",
  9356. image: {
  9357. source: "./media/characters/mira-al-cul/lamp.svg",
  9358. extra: 1617 / 1559
  9359. }
  9360. },
  9361. front: {
  9362. height: math.unit(7, "feet"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/mira-al-cul/front.svg",
  9366. extra: 1044 / 990
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Heavily Restricted",
  9373. height: math.unit(7 * 1559 / 989, "feet")
  9374. },
  9375. {
  9376. name: "Freshly Freed",
  9377. height: math.unit(50 * 1559 / 989, "feet")
  9378. },
  9379. {
  9380. name: "World Encompassing",
  9381. height: math.unit(10000 * 1559 / 989, "miles")
  9382. },
  9383. {
  9384. name: "Galactic",
  9385. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9386. },
  9387. {
  9388. name: "Palmed Universe",
  9389. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Multiversal Matriarch",
  9394. height: math.unit(8.87e10, "yottameters")
  9395. },
  9396. {
  9397. name: "Void Mother",
  9398. height: math.unit(3.14e110, "yottaparsecs")
  9399. },
  9400. {
  9401. name: "Toying with Transcendence",
  9402. height: math.unit(1e307, "meters")
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9408. {
  9409. front: {
  9410. height: math.unit(17 + 1 / 12, "feet"),
  9411. weight: math.unit(476.2 * 5, "lbs"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/kuro-shi-uchū/front.svg",
  9415. extra: 2329 / 1835,
  9416. bottom: 0.02
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Micro",
  9423. height: math.unit(2, "inches")
  9424. },
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(12, "meters")
  9428. },
  9429. {
  9430. name: "Planetary",
  9431. height: math.unit(0.00929, "AU"),
  9432. default: true
  9433. },
  9434. {
  9435. name: "Universal",
  9436. height: math.unit(20, "gigaparsecs")
  9437. },
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9442. {
  9443. front: {
  9444. height: math.unit(5 + 2 / 12, "feet"),
  9445. weight: math.unit(120, "lbs"),
  9446. name: "Front",
  9447. image: {
  9448. source: "./media/characters/katherine/front.svg",
  9449. extra: 2075 / 1969
  9450. }
  9451. },
  9452. dress: {
  9453. height: math.unit(5 + 2 / 12, "feet"),
  9454. weight: math.unit(120, "lbs"),
  9455. name: "Dress",
  9456. image: {
  9457. source: "./media/characters/katherine/dress.svg",
  9458. extra: 2258 / 2064
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Micro",
  9465. height: math.unit(1, "inches"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(5 + 2 / 12, "feet")
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(100, "meters")
  9475. },
  9476. {
  9477. name: "Megamacro",
  9478. height: math.unit(80, "miles")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(7 + 8 / 12, "feet"),
  9487. weight: math.unit(250, "lbs"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/yevis/front.svg",
  9491. extra: 1938 / 1755
  9492. }
  9493. }
  9494. },
  9495. [
  9496. {
  9497. name: "Mortal",
  9498. height: math.unit(7 + 8 / 12, "feet")
  9499. },
  9500. {
  9501. name: "Battle",
  9502. height: math.unit(25 + 11 / 12, "feet")
  9503. },
  9504. {
  9505. name: "Wrath",
  9506. height: math.unit(1654 + 11 / 12, "feet")
  9507. },
  9508. {
  9509. name: "Planet Destroyer",
  9510. height: math.unit(12000, "miles")
  9511. },
  9512. {
  9513. name: "Galaxy Conqueror",
  9514. height: math.unit(1.45, "zettameters"),
  9515. default: true
  9516. },
  9517. {
  9518. name: "Universal War",
  9519. height: math.unit(184, "gigaparsecs")
  9520. },
  9521. {
  9522. name: "Eternity War",
  9523. height: math.unit(1.98e55, "yottaparsecs")
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9529. {
  9530. front: {
  9531. height: math.unit(5 + 8 / 12, "feet"),
  9532. weight: math.unit(63, "kg"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/xavier/front.svg",
  9536. extra: 944 / 883
  9537. }
  9538. },
  9539. frontStretch: {
  9540. height: math.unit(5 + 8 / 12, "feet"),
  9541. weight: math.unit(63, "kg"),
  9542. name: "Stretching",
  9543. image: {
  9544. source: "./media/characters/xavier/front-stretch.svg",
  9545. extra: 962 / 820
  9546. }
  9547. },
  9548. },
  9549. [
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(5 + 8 / 12, "feet")
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(100, "meters"),
  9557. default: true
  9558. },
  9559. {
  9560. name: "McLargeHuge",
  9561. height: math.unit(10, "miles")
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9567. {
  9568. front: {
  9569. height: math.unit(5 + 5 / 12, "feet"),
  9570. weight: math.unit(150, "lb"),
  9571. name: "Front",
  9572. image: {
  9573. source: "./media/characters/joshii/front.svg",
  9574. extra: 765 / 653,
  9575. bottom: 51 / 816
  9576. }
  9577. },
  9578. foot: {
  9579. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9580. name: "Foot",
  9581. image: {
  9582. source: "./media/characters/joshii/foot.svg"
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Micro",
  9589. height: math.unit(2, "inches")
  9590. },
  9591. {
  9592. name: "Normal",
  9593. height: math.unit(5 + 5 / 12, "feet")
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(785, "feet"),
  9598. default: true
  9599. },
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(24.5, "miles")
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(6, "feet"),
  9611. weight: math.unit(150, "lb"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/goddess-elizabeth/front.svg",
  9615. extra: 1800 / 1525,
  9616. bottom: 0.005
  9617. }
  9618. },
  9619. foot: {
  9620. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9621. name: "Foot",
  9622. image: {
  9623. source: "./media/characters/goddess-elizabeth/foot.svg"
  9624. }
  9625. },
  9626. mouth: {
  9627. height: math.unit(6, "feet"),
  9628. name: "Mouth",
  9629. image: {
  9630. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Micro",
  9637. height: math.unit(12, "feet")
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(80, "miles"),
  9642. default: true
  9643. },
  9644. {
  9645. name: "Macro",
  9646. height: math.unit(15000, "parsecs")
  9647. },
  9648. ]
  9649. ))
  9650. characterMakers.push(() => makeCharacter(
  9651. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9652. {
  9653. front: {
  9654. height: math.unit(5 + 9 / 12, "feet"),
  9655. weight: math.unit(144, "lb"),
  9656. name: "Front",
  9657. image: {
  9658. source: "./media/characters/kara/front.svg"
  9659. }
  9660. },
  9661. feet: {
  9662. height: math.unit(6 / 6.765, "feet"),
  9663. name: "Kara's Feet",
  9664. rename: true,
  9665. image: {
  9666. source: "./media/characters/kara/feet.svg"
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(5 + 9 / 12, "feet")
  9674. },
  9675. {
  9676. name: "Macro",
  9677. height: math.unit(174, "feet"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(18, "feet"),
  9687. weight: math.unit(4050, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/tyrone/front.svg",
  9691. extra: 2405 / 2270,
  9692. bottom: 182 / 2587
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(18, "feet"),
  9700. default: true
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(300, "feet")
  9705. },
  9706. {
  9707. name: "Megamacro",
  9708. height: math.unit(15, "km")
  9709. },
  9710. {
  9711. name: "Gigamacro",
  9712. height: math.unit(500, "km")
  9713. },
  9714. {
  9715. name: "Teramacro",
  9716. height: math.unit(0.5, "gigameters")
  9717. },
  9718. {
  9719. name: "Omnimacro",
  9720. height: math.unit(1e252, "yottauniverse")
  9721. },
  9722. ]
  9723. ))
  9724. characterMakers.push(() => makeCharacter(
  9725. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9726. {
  9727. front: {
  9728. height: math.unit(7 + 8 / 12, "feet"),
  9729. weight: math.unit(120, "lb"),
  9730. name: "Front",
  9731. image: {
  9732. source: "./media/characters/danny/front.svg",
  9733. extra: 1490 / 1350
  9734. }
  9735. },
  9736. back: {
  9737. height: math.unit(7 + 8 / 12, "feet"),
  9738. weight: math.unit(120, "lb"),
  9739. name: "Back",
  9740. image: {
  9741. source: "./media/characters/danny/back.svg",
  9742. extra: 1490 / 1350
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(7 + 8 / 12, "feet"),
  9750. default: true
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(3.5, "inches"),
  9759. weight: math.unit(19, "grams"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/mallow/front.svg",
  9763. extra: 471 / 431
  9764. }
  9765. },
  9766. back: {
  9767. height: math.unit(3.5, "inches"),
  9768. weight: math.unit(19, "grams"),
  9769. name: "Back",
  9770. image: {
  9771. source: "./media/characters/mallow/back.svg",
  9772. extra: 471 / 431
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(3.5, "inches"),
  9780. default: true
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9786. {
  9787. front: {
  9788. height: math.unit(9, "feet"),
  9789. weight: math.unit(230, "kg"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/starry-aqua/front.svg"
  9793. }
  9794. },
  9795. back: {
  9796. height: math.unit(9, "feet"),
  9797. weight: math.unit(230, "kg"),
  9798. name: "Back",
  9799. image: {
  9800. source: "./media/characters/starry-aqua/back.svg"
  9801. }
  9802. },
  9803. hand: {
  9804. height: math.unit(9 * 0.1168, "feet"),
  9805. name: "Hand",
  9806. image: {
  9807. source: "./media/characters/starry-aqua/hand.svg"
  9808. }
  9809. },
  9810. foot: {
  9811. height: math.unit(9 * 0.18, "feet"),
  9812. name: "Foot",
  9813. image: {
  9814. source: "./media/characters/starry-aqua/foot.svg"
  9815. }
  9816. }
  9817. },
  9818. [
  9819. {
  9820. name: "Micro",
  9821. height: math.unit(3, "inches")
  9822. },
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(9, "feet")
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(300, "feet"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "Megamacro",
  9834. height: math.unit(3200, "feet")
  9835. }
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(15, "feet"),
  9843. weight: math.unit(5026, "lb"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/luka-towers/front.svg",
  9847. extra: 1269/1133,
  9848. bottom: 51/1320
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(15, "feet"),
  9856. default: true
  9857. },
  9858. {
  9859. name: "Minimacro",
  9860. height: math.unit(25, "feet")
  9861. },
  9862. {
  9863. name: "Macro",
  9864. height: math.unit(320, "feet")
  9865. },
  9866. {
  9867. name: "Megamacro",
  9868. height: math.unit(35000, "feet")
  9869. },
  9870. {
  9871. name: "Gigamacro",
  9872. height: math.unit(4000, "miles")
  9873. },
  9874. {
  9875. name: "Teramacro",
  9876. height: math.unit(15000, "miles")
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9882. {
  9883. front: {
  9884. height: math.unit(6, "feet"),
  9885. weight: math.unit(150, "lb"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/natalie-nightring/front.svg",
  9889. extra: 1,
  9890. bottom: 0.06
  9891. }
  9892. },
  9893. },
  9894. [
  9895. {
  9896. name: "Uh Oh",
  9897. height: math.unit(0.1, "mm")
  9898. },
  9899. {
  9900. name: "Small",
  9901. height: math.unit(3, "inches")
  9902. },
  9903. {
  9904. name: "Human Scale",
  9905. height: math.unit(6, "feet")
  9906. },
  9907. {
  9908. name: "Librarian",
  9909. height: math.unit(50, "feet"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Immense",
  9914. height: math.unit(200, "miles")
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6, "feet"),
  9923. weight: math.unit(180, "lbs"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/danni-rosie/front.svg",
  9927. extra: 1260 / 1128,
  9928. bottom: 0.022
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(2, "inches"),
  9936. default: true
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(5 + 9 / 12, "feet"),
  9945. weight: math.unit(220, "lb"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/samantha-kruse/front.svg",
  9949. extra: (985 / 935),
  9950. bottom: 0.03
  9951. }
  9952. },
  9953. frontUndressed: {
  9954. height: math.unit(5 + 9 / 12, "feet"),
  9955. weight: math.unit(220, "lb"),
  9956. name: "Front (Undressed)",
  9957. image: {
  9958. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9959. extra: (973 / 923),
  9960. bottom: 0.025
  9961. }
  9962. },
  9963. fat: {
  9964. height: math.unit(5 + 9 / 12, "feet"),
  9965. weight: math.unit(900, "lb"),
  9966. name: "Front (Fat)",
  9967. image: {
  9968. source: "./media/characters/samantha-kruse/fat.svg",
  9969. extra: 2688 / 2561
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(5 + 9 / 12, "feet"),
  9977. default: true
  9978. }
  9979. ]
  9980. ))
  9981. characterMakers.push(() => makeCharacter(
  9982. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9983. {
  9984. back: {
  9985. height: math.unit(5 + 4 / 12, "feet"),
  9986. weight: math.unit(4963, "lb"),
  9987. name: "Back",
  9988. image: {
  9989. source: "./media/characters/amelia-rosie/back.svg",
  9990. extra: 1113 / 963,
  9991. bottom: 0.01
  9992. }
  9993. },
  9994. },
  9995. [
  9996. {
  9997. name: "Level 0",
  9998. height: math.unit(5 + 4 / 12, "feet")
  9999. },
  10000. {
  10001. name: "Level 1",
  10002. height: math.unit(164597, "feet"),
  10003. default: true
  10004. },
  10005. {
  10006. name: "Level 2",
  10007. height: math.unit(956243, "miles")
  10008. },
  10009. {
  10010. name: "Level 3",
  10011. height: math.unit(29421709423, "miles")
  10012. },
  10013. {
  10014. name: "Level 4",
  10015. height: math.unit(154, "lightyears")
  10016. },
  10017. {
  10018. name: "Level 5",
  10019. height: math.unit(4738272, "lightyears")
  10020. },
  10021. {
  10022. name: "Level 6",
  10023. height: math.unit(145787152896, "lightyears")
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(5 + 11 / 12, "feet"),
  10032. weight: math.unit(65, "kg"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/rook-kitara/front.svg",
  10036. extra: 1347 / 1274,
  10037. bottom: 0.005
  10038. }
  10039. },
  10040. },
  10041. [
  10042. {
  10043. name: "Totally Unfair",
  10044. height: math.unit(1.8, "mm")
  10045. },
  10046. {
  10047. name: "Lap Rookie",
  10048. height: math.unit(1.4, "feet")
  10049. },
  10050. {
  10051. name: "Normal",
  10052. height: math.unit(5 + 11 / 12, "feet"),
  10053. default: true
  10054. },
  10055. {
  10056. name: "How Did This Happen",
  10057. height: math.unit(80, "miles")
  10058. }
  10059. ]
  10060. ))
  10061. characterMakers.push(() => makeCharacter(
  10062. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10063. {
  10064. front: {
  10065. height: math.unit(7, "feet"),
  10066. weight: math.unit(300, "lb"),
  10067. name: "Front",
  10068. image: {
  10069. source: "./media/characters/pisces/front.svg",
  10070. extra: 2255 / 2115,
  10071. bottom: 0.03
  10072. }
  10073. },
  10074. back: {
  10075. height: math.unit(7, "feet"),
  10076. weight: math.unit(300, "lb"),
  10077. name: "Back",
  10078. image: {
  10079. source: "./media/characters/pisces/back.svg",
  10080. extra: 2146 / 2055,
  10081. bottom: 0.04
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(7, "feet"),
  10089. default: true
  10090. },
  10091. {
  10092. name: "Swimming Pool",
  10093. height: math.unit(12.2, "meters")
  10094. },
  10095. {
  10096. name: "Olympic Swimming Pool",
  10097. height: math.unit(56.3, "meters")
  10098. },
  10099. {
  10100. name: "Lake Superior",
  10101. height: math.unit(93900, "meters")
  10102. },
  10103. {
  10104. name: "Mediterranean Sea",
  10105. height: math.unit(644457, "meters")
  10106. },
  10107. {
  10108. name: "World's Oceans",
  10109. height: math.unit(4567491, "meters")
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(2.3, "meters"),
  10118. weight: math.unit(120, "kg"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/zelas/front.svg"
  10122. }
  10123. },
  10124. side: {
  10125. height: math.unit(2.3, "meters"),
  10126. weight: math.unit(120, "kg"),
  10127. name: "Side",
  10128. image: {
  10129. source: "./media/characters/zelas/side.svg"
  10130. }
  10131. },
  10132. back: {
  10133. height: math.unit(2.3, "meters"),
  10134. weight: math.unit(120, "kg"),
  10135. name: "Back",
  10136. image: {
  10137. source: "./media/characters/zelas/back.svg"
  10138. }
  10139. },
  10140. foot: {
  10141. height: math.unit(1.116, "feet"),
  10142. name: "Foot",
  10143. image: {
  10144. source: "./media/characters/zelas/foot.svg"
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(2.3, "meters")
  10152. },
  10153. {
  10154. name: "Macro",
  10155. height: math.unit(30, "meters"),
  10156. default: true
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(1, "inch"),
  10165. weight: math.unit(0.21, "grams"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/talbot/front.svg",
  10169. extra: 594 / 544
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Micro",
  10176. height: math.unit(1, "inch"),
  10177. default: true
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10183. {
  10184. front: {
  10185. height: math.unit(3 + 3 / 12, "feet"),
  10186. weight: math.unit(51.8, "lb"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/fliss/front.svg",
  10190. extra: 840 / 640
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Teeny Tiny",
  10197. height: math.unit(1, "mm")
  10198. },
  10199. {
  10200. name: "Small",
  10201. height: math.unit(1, "inch"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Standard Sylveon",
  10206. height: math.unit(3 + 3 / 12, "feet")
  10207. },
  10208. {
  10209. name: "Large Nuisance",
  10210. height: math.unit(33, "feet")
  10211. },
  10212. {
  10213. name: "City Filler",
  10214. height: math.unit(3000, "feet")
  10215. },
  10216. {
  10217. name: "New Horizon",
  10218. height: math.unit(6000, "miles")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(5, "cm"),
  10227. weight: math.unit(1.94, "g"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/fleta/front.svg",
  10231. extra: 835 / 803
  10232. }
  10233. },
  10234. back: {
  10235. height: math.unit(5, "cm"),
  10236. weight: math.unit(1.94, "g"),
  10237. name: "Back",
  10238. image: {
  10239. source: "./media/characters/fleta/back.svg",
  10240. extra: 835 / 803
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Micro",
  10247. height: math.unit(5, "cm"),
  10248. default: true
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(225, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/dominic/front.svg",
  10261. extra: 1770 / 1620,
  10262. bottom: 0.025
  10263. }
  10264. },
  10265. back: {
  10266. height: math.unit(6, "feet"),
  10267. weight: math.unit(225, "lb"),
  10268. name: "Back",
  10269. image: {
  10270. source: "./media/characters/dominic/back.svg",
  10271. extra: 1745 / 1620,
  10272. bottom: 0.065
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Nano",
  10279. height: math.unit(0.1, "mm")
  10280. },
  10281. {
  10282. name: "Micro-",
  10283. height: math.unit(1, "mm")
  10284. },
  10285. {
  10286. name: "Micro",
  10287. height: math.unit(4, "inches")
  10288. },
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(6 + 4 / 12, "feet"),
  10292. default: true
  10293. },
  10294. {
  10295. name: "Macro",
  10296. height: math.unit(115, "feet")
  10297. },
  10298. {
  10299. name: "Macro+",
  10300. height: math.unit(955, "feet")
  10301. },
  10302. {
  10303. name: "Megamacro",
  10304. height: math.unit(8990, "feet")
  10305. },
  10306. {
  10307. name: "Gigmacro",
  10308. height: math.unit(9310, "miles")
  10309. },
  10310. {
  10311. name: "Teramacro",
  10312. height: math.unit(1567005010, "miles")
  10313. },
  10314. {
  10315. name: "Examacro",
  10316. height: math.unit(1425, "parsecs")
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(400, "feet"),
  10325. weight: math.unit(44444444, "lb"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/major-colonel/front.svg"
  10329. }
  10330. },
  10331. back: {
  10332. height: math.unit(400, "feet"),
  10333. weight: math.unit(44444444, "lb"),
  10334. name: "Back",
  10335. image: {
  10336. source: "./media/characters/major-colonel/back.svg"
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Macro",
  10343. height: math.unit(400, "feet"),
  10344. default: true
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10350. {
  10351. catFront: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(120, "lb"),
  10354. name: "Front (Cat Side)",
  10355. image: {
  10356. source: "./media/characters/axel-lycan/cat-front.svg",
  10357. extra: 430 / 402,
  10358. bottom: 43 / 472.35
  10359. }
  10360. },
  10361. catBack: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(120, "lb"),
  10364. name: "Back (Cat Side)",
  10365. image: {
  10366. source: "./media/characters/axel-lycan/cat-back.svg",
  10367. extra: 447 / 419,
  10368. bottom: 23.3 / 469
  10369. }
  10370. },
  10371. wolfFront: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(120, "lb"),
  10374. name: "Front (Wolf Side)",
  10375. image: {
  10376. source: "./media/characters/axel-lycan/wolf-front.svg",
  10377. extra: 485 / 456,
  10378. bottom: 19 / 504
  10379. }
  10380. },
  10381. wolfBack: {
  10382. height: math.unit(6, "feet"),
  10383. weight: math.unit(120, "lb"),
  10384. name: "Back (Wolf Side)",
  10385. image: {
  10386. source: "./media/characters/axel-lycan/wolf-back.svg",
  10387. extra: 475 / 438,
  10388. bottom: 39.2 / 514
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Macro",
  10395. height: math.unit(1, "km"),
  10396. default: true
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(5 + 9 / 12, "feet"),
  10405. weight: math.unit(175, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/vanrel-hyena/front.svg",
  10409. extra: 1086 / 1010,
  10410. bottom: 0.04
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(5 + 9 / 12, "feet"),
  10418. default: true
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(103, "lb"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/abbott-absol/front.svg",
  10431. extra: 2010 / 1842
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Megamicro",
  10438. height: math.unit(0.1, "mm")
  10439. },
  10440. {
  10441. name: "Micro",
  10442. height: math.unit(1, "inch")
  10443. },
  10444. {
  10445. name: "Normal",
  10446. height: math.unit(6, "feet"),
  10447. default: true
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(6, "feet"),
  10456. weight: math.unit(264, "lb"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/hector/front.svg",
  10460. extra: 2280 / 2130,
  10461. bottom: 0.07
  10462. }
  10463. },
  10464. },
  10465. [
  10466. {
  10467. name: "Normal",
  10468. height: math.unit(12.25, "foot"),
  10469. default: true
  10470. },
  10471. {
  10472. name: "Macro",
  10473. height: math.unit(160, "feet")
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(6, "feet"),
  10482. weight: math.unit(150, "lb"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/sal/front.svg",
  10486. extra: 1846 / 1699,
  10487. bottom: 0.04
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Megamacro",
  10494. height: math.unit(10, "miles"),
  10495. default: true
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10501. {
  10502. front: {
  10503. height: math.unit(3, "meters"),
  10504. weight: math.unit(450, "kg"),
  10505. name: "front",
  10506. image: {
  10507. source: "./media/characters/ranger/front.svg",
  10508. extra: 2401 / 2243,
  10509. bottom: 0.05
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(3, "meters"),
  10517. default: true
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(14, "feet"),
  10526. weight: math.unit(800, "kg"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/theresa/front.svg",
  10530. extra: 3575 / 3346,
  10531. bottom: 0.03
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(14, "feet"),
  10539. default: true
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10545. {
  10546. front: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(3, "kg"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/ine/front.svg",
  10552. extra: 678 / 539,
  10553. bottom: 0.023
  10554. }
  10555. },
  10556. },
  10557. [
  10558. {
  10559. name: "Normal",
  10560. height: math.unit(2.265, "feet"),
  10561. default: true
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(5, "feet"),
  10570. weight: math.unit(30, "kg"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/vial/front.svg",
  10574. extra: 1365 / 1277,
  10575. bottom: 0.04
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Normal",
  10582. height: math.unit(5, "feet"),
  10583. default: true
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10589. {
  10590. side: {
  10591. height: math.unit(3.4, "meters"),
  10592. weight: math.unit(1000, "lb"),
  10593. name: "Side",
  10594. image: {
  10595. source: "./media/characters/rovoska/side.svg",
  10596. extra: 4403 / 1515
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(3.4, "meters"),
  10604. default: true
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(8, "feet"),
  10613. weight: math.unit(315, "lb"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/gunner-rotthbauer/front.svg"
  10617. }
  10618. },
  10619. back: {
  10620. height: math.unit(8, "feet"),
  10621. weight: math.unit(315, "lb"),
  10622. name: "Back",
  10623. image: {
  10624. source: "./media/characters/gunner-rotthbauer/back.svg"
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Micro",
  10631. height: math.unit(3.5, "inches")
  10632. },
  10633. {
  10634. name: "Normal",
  10635. height: math.unit(8, "feet"),
  10636. default: true
  10637. },
  10638. {
  10639. name: "Macro",
  10640. height: math.unit(250, "feet")
  10641. },
  10642. {
  10643. name: "Megamacro",
  10644. height: math.unit(1, "AU")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10650. {
  10651. front: {
  10652. height: math.unit(5 + 5 / 12, "feet"),
  10653. weight: math.unit(140, "lb"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/allatia/front.svg",
  10657. extra: 1227 / 1180,
  10658. bottom: 0.027
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Normal",
  10665. height: math.unit(5 + 5 / 12, "feet")
  10666. },
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(250, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(8, "miles")
  10675. }
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(120, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/tene/front.svg",
  10687. extra: 814/750,
  10688. bottom: 36/850
  10689. }
  10690. },
  10691. stomping: {
  10692. height: math.unit(2.025, "meters"),
  10693. weight: math.unit(120, "lb"),
  10694. name: "Stomping",
  10695. image: {
  10696. source: "./media/characters/tene/stomping.svg",
  10697. extra: 885/821,
  10698. bottom: 15/900
  10699. }
  10700. },
  10701. sitting: {
  10702. height: math.unit(1, "meter"),
  10703. weight: math.unit(120, "lb"),
  10704. name: "Sitting",
  10705. image: {
  10706. source: "./media/characters/tene/sitting.svg",
  10707. extra: 396/366,
  10708. bottom: 79/475
  10709. }
  10710. },
  10711. smiling: {
  10712. height: math.unit(1.2, "feet"),
  10713. name: "Smiling",
  10714. image: {
  10715. source: "./media/characters/tene/smiling.svg",
  10716. extra: 1364/1071,
  10717. bottom: 0/1364
  10718. }
  10719. },
  10720. smug: {
  10721. height: math.unit(1.3, "feet"),
  10722. name: "Smug",
  10723. image: {
  10724. source: "./media/characters/tene/smug.svg",
  10725. extra: 1323/1082,
  10726. bottom: 0/1323
  10727. }
  10728. },
  10729. feral: {
  10730. height: math.unit(3.9, "feet"),
  10731. weight: math.unit(250, "lb"),
  10732. name: "Feral",
  10733. image: {
  10734. source: "./media/characters/tene/feral.svg",
  10735. extra: 717 / 458,
  10736. bottom: 0.179
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(6, "feet")
  10744. },
  10745. {
  10746. name: "Macro",
  10747. height: math.unit(300, "feet"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Megamacro",
  10752. height: math.unit(5, "miles")
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10758. {
  10759. side: {
  10760. height: math.unit(6, "feet"),
  10761. name: "Side",
  10762. image: {
  10763. source: "./media/characters/evander/side.svg",
  10764. extra: 877 / 477
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(0.83, "meters"),
  10772. default: true
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10778. {
  10779. front: {
  10780. height: math.unit(12, "feet"),
  10781. weight: math.unit(1000, "lb"),
  10782. name: "Front",
  10783. image: {
  10784. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10785. extra: 1762 / 1611
  10786. }
  10787. },
  10788. back: {
  10789. height: math.unit(12, "feet"),
  10790. weight: math.unit(1000, "lb"),
  10791. name: "Back",
  10792. image: {
  10793. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10794. extra: 1762 / 1611
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(12, "feet"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Kaiju",
  10806. height: math.unit(150, "feet")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10812. {
  10813. front: {
  10814. height: math.unit(6, "feet"),
  10815. weight: math.unit(150, "lb"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/zero-alurus/front.svg"
  10819. }
  10820. },
  10821. back: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(150, "lb"),
  10824. name: "Back",
  10825. image: {
  10826. source: "./media/characters/zero-alurus/back.svg"
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(5 + 10 / 12, "feet")
  10834. },
  10835. {
  10836. name: "Macro",
  10837. height: math.unit(60, "feet"),
  10838. default: true
  10839. },
  10840. {
  10841. name: "Macro+",
  10842. height: math.unit(450, "feet")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(200, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/mega-shi/front.svg",
  10855. extra: 1279 / 1250,
  10856. bottom: 0.02
  10857. }
  10858. },
  10859. back: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(200, "lb"),
  10862. name: "Back",
  10863. image: {
  10864. source: "./media/characters/mega-shi/back.svg",
  10865. extra: 1279 / 1250,
  10866. bottom: 0.02
  10867. }
  10868. },
  10869. },
  10870. [
  10871. {
  10872. name: "Micro",
  10873. height: math.unit(16 + 6 / 12, "feet")
  10874. },
  10875. {
  10876. name: "Third Dimension",
  10877. height: math.unit(40, "meters")
  10878. },
  10879. {
  10880. name: "Normal",
  10881. height: math.unit(660, "feet"),
  10882. default: true
  10883. },
  10884. {
  10885. name: "Megamacro",
  10886. height: math.unit(10, "miles")
  10887. },
  10888. {
  10889. name: "Planetary Launch",
  10890. height: math.unit(500, "miles")
  10891. },
  10892. {
  10893. name: "Interstellar",
  10894. height: math.unit(1e9, "miles")
  10895. },
  10896. {
  10897. name: "Leaving the Universe",
  10898. height: math.unit(1, "gigaparsec")
  10899. },
  10900. {
  10901. name: "Travelling Universes",
  10902. height: math.unit(30e15, "parsecs")
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(5 + 4/12, "feet"),
  10911. weight: math.unit(120, "lb"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/odyssey/front.svg",
  10915. extra: 1747/1571,
  10916. bottom: 47/1794
  10917. }
  10918. },
  10919. side: {
  10920. height: math.unit(5.1, "feet"),
  10921. weight: math.unit(120, "lb"),
  10922. name: "Side",
  10923. image: {
  10924. source: "./media/characters/odyssey/side.svg",
  10925. extra: 1847/1619,
  10926. bottom: 47/1894
  10927. }
  10928. },
  10929. lounging: {
  10930. height: math.unit(1.464, "feet"),
  10931. weight: math.unit(120, "lb"),
  10932. name: "Lounging",
  10933. image: {
  10934. source: "./media/characters/odyssey/lounging.svg",
  10935. extra: 1235/837,
  10936. bottom: 551/1786
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(5 + 4 / 12, "feet")
  10944. },
  10945. {
  10946. name: "Macro",
  10947. height: math.unit(1, "km")
  10948. },
  10949. {
  10950. name: "Megamacro",
  10951. height: math.unit(3000, "km")
  10952. },
  10953. {
  10954. name: "Gigamacro",
  10955. height: math.unit(1, "AU"),
  10956. default: true
  10957. },
  10958. {
  10959. name: "Omniversal",
  10960. height: math.unit(100e14, "lightyears")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(300, "lb"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/mekuto/front.svg",
  10973. extra: 921 / 832,
  10974. bottom: 0.03
  10975. }
  10976. },
  10977. hand: {
  10978. height: math.unit(6 / 10.24, "feet"),
  10979. name: "Hand",
  10980. image: {
  10981. source: "./media/characters/mekuto/hand.svg"
  10982. }
  10983. },
  10984. foot: {
  10985. height: math.unit(6 / 5.05, "feet"),
  10986. name: "Foot",
  10987. image: {
  10988. source: "./media/characters/mekuto/foot.svg"
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Minimicro",
  10995. height: math.unit(0.2, "inches")
  10996. },
  10997. {
  10998. name: "Micro",
  10999. height: math.unit(1.5, "inches")
  11000. },
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(5 + 11 / 12, "feet"),
  11004. default: true
  11005. },
  11006. {
  11007. name: "Minimacro",
  11008. height: math.unit(17 + 9 / 12, "feet")
  11009. },
  11010. {
  11011. name: "Macro",
  11012. height: math.unit(177.5, "feet")
  11013. },
  11014. {
  11015. name: "Megamacro",
  11016. height: math.unit(152, "miles")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(6.5, "inches"),
  11025. weight: math.unit(13, "oz"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/dafydd-tomos/front.svg",
  11029. extra: 2990 / 2603,
  11030. bottom: 0.03
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Micro",
  11037. height: math.unit(6.5, "inches"),
  11038. default: true
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(6, "feet"),
  11047. weight: math.unit(150, "lb"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/splinter/front.svg",
  11051. extra: 2990 / 2882,
  11052. bottom: 0.04
  11053. }
  11054. },
  11055. back: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(150, "lb"),
  11058. name: "Back",
  11059. image: {
  11060. source: "./media/characters/splinter/back.svg",
  11061. extra: 2990 / 2882,
  11062. bottom: 0.04
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(6, "feet")
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(230, "meters"),
  11074. default: true
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(4 + 10 / 12, "feet"),
  11083. weight: math.unit(480, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/snow-gabumon/front.svg",
  11087. extra: 1140 / 963,
  11088. bottom: 0.058
  11089. }
  11090. },
  11091. back: {
  11092. height: math.unit(4 + 10 / 12, "feet"),
  11093. weight: math.unit(480, "lb"),
  11094. name: "Back",
  11095. image: {
  11096. source: "./media/characters/snow-gabumon/back.svg",
  11097. extra: 1115 / 962,
  11098. bottom: 0.041
  11099. }
  11100. },
  11101. frontUndresed: {
  11102. height: math.unit(4 + 10 / 12, "feet"),
  11103. weight: math.unit(480, "lb"),
  11104. name: "Front (Undressed)",
  11105. image: {
  11106. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11107. extra: 1061 / 960,
  11108. bottom: 0.045
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Micro",
  11115. height: math.unit(1, "inch")
  11116. },
  11117. {
  11118. name: "Normal",
  11119. height: math.unit(4 + 10 / 12, "feet"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Macro",
  11124. height: math.unit(200, "feet")
  11125. },
  11126. {
  11127. name: "Megamacro",
  11128. height: math.unit(120, "miles")
  11129. },
  11130. {
  11131. name: "Gigamacro",
  11132. height: math.unit(9800, "miles")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(1.7, "meters"),
  11141. weight: math.unit(140, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/moody/front.svg",
  11145. extra: 3226 / 3007,
  11146. bottom: 0.087
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Micro",
  11153. height: math.unit(1, "mm")
  11154. },
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(1.7, "meters"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(80, "meters")
  11163. },
  11164. {
  11165. name: "Macro+",
  11166. height: math.unit(500, "meters")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11172. {
  11173. front: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(150, "lb"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/zyas/front.svg",
  11179. extra: 1180 / 1120,
  11180. bottom: 0.045
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Normal",
  11187. height: math.unit(10, "feet"),
  11188. default: true
  11189. },
  11190. {
  11191. name: "Macro",
  11192. height: math.unit(500, "feet")
  11193. },
  11194. {
  11195. name: "Megamacro",
  11196. height: math.unit(5, "miles")
  11197. },
  11198. {
  11199. name: "Teramacro",
  11200. height: math.unit(150000, "miles")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(150, "lb"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/cuon/front.svg",
  11213. extra: 1390 / 1320,
  11214. bottom: 0.008
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Micro",
  11221. height: math.unit(3, "inches")
  11222. },
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(18 + 9 / 12, "feet"),
  11226. default: true
  11227. },
  11228. {
  11229. name: "Macro",
  11230. height: math.unit(360, "feet")
  11231. },
  11232. {
  11233. name: "Megamacro",
  11234. height: math.unit(360, "miles")
  11235. },
  11236. ]
  11237. ))
  11238. characterMakers.push(() => makeCharacter(
  11239. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11240. {
  11241. front: {
  11242. height: math.unit(2.4, "meters"),
  11243. weight: math.unit(70, "kg"),
  11244. name: "Front",
  11245. image: {
  11246. source: "./media/characters/nyanuxk/front.svg",
  11247. extra: 1172 / 1084,
  11248. bottom: 0.065
  11249. }
  11250. },
  11251. side: {
  11252. height: math.unit(2.4, "meters"),
  11253. weight: math.unit(70, "kg"),
  11254. name: "Side",
  11255. image: {
  11256. source: "./media/characters/nyanuxk/side.svg",
  11257. extra: 1190 / 1132,
  11258. bottom: 0.007
  11259. }
  11260. },
  11261. back: {
  11262. height: math.unit(2.4, "meters"),
  11263. weight: math.unit(70, "kg"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/nyanuxk/back.svg",
  11267. extra: 1200 / 1141,
  11268. bottom: 0.015
  11269. }
  11270. },
  11271. foot: {
  11272. height: math.unit(0.52, "meters"),
  11273. name: "Foot",
  11274. image: {
  11275. source: "./media/characters/nyanuxk/foot.svg"
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Micro",
  11282. height: math.unit(2, "cm")
  11283. },
  11284. {
  11285. name: "Normal",
  11286. height: math.unit(2.4, "meters"),
  11287. default: true
  11288. },
  11289. {
  11290. name: "Smaller Macro",
  11291. height: math.unit(120, "meters")
  11292. },
  11293. {
  11294. name: "Bigger Macro",
  11295. height: math.unit(1.2, "km")
  11296. },
  11297. {
  11298. name: "Megamacro",
  11299. height: math.unit(15, "kilometers")
  11300. },
  11301. {
  11302. name: "Gigamacro",
  11303. height: math.unit(2000, "km")
  11304. },
  11305. {
  11306. name: "Teramacro",
  11307. height: math.unit(500000, "km")
  11308. },
  11309. ]
  11310. ))
  11311. characterMakers.push(() => makeCharacter(
  11312. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11313. {
  11314. side: {
  11315. height: math.unit(6, "feet"),
  11316. name: "Side",
  11317. image: {
  11318. source: "./media/characters/ailbhe/side.svg",
  11319. extra: 757 / 464,
  11320. bottom: 0.041
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(1.07, "meters"),
  11328. default: true
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(6, "feet"),
  11337. weight: math.unit(120, "kg"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/zevulfius/front.svg",
  11341. extra: 965 / 903
  11342. }
  11343. },
  11344. side: {
  11345. height: math.unit(6, "feet"),
  11346. weight: math.unit(120, "kg"),
  11347. name: "Side",
  11348. image: {
  11349. source: "./media/characters/zevulfius/side.svg",
  11350. extra: 939 / 900
  11351. }
  11352. },
  11353. back: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(120, "kg"),
  11356. name: "Back",
  11357. image: {
  11358. source: "./media/characters/zevulfius/back.svg",
  11359. extra: 918 / 854,
  11360. bottom: 0.005
  11361. }
  11362. },
  11363. foot: {
  11364. height: math.unit(6 / 3.72, "feet"),
  11365. name: "Foot",
  11366. image: {
  11367. source: "./media/characters/zevulfius/foot.svg"
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(750, "meters")
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(20, "km"),
  11379. default: true
  11380. },
  11381. {
  11382. name: "Gigamacro",
  11383. height: math.unit(2000, "km")
  11384. },
  11385. {
  11386. name: "Teramacro",
  11387. height: math.unit(250000, "km")
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11393. {
  11394. front: {
  11395. height: math.unit(100, "feet"),
  11396. weight: math.unit(350, "kg"),
  11397. name: "Front",
  11398. image: {
  11399. source: "./media/characters/rikes/front.svg",
  11400. extra: 1565 / 1483,
  11401. bottom: 0.017
  11402. }
  11403. },
  11404. },
  11405. [
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(100, "feet"),
  11409. default: true
  11410. },
  11411. ]
  11412. ))
  11413. characterMakers.push(() => makeCharacter(
  11414. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11415. {
  11416. front: {
  11417. height: math.unit(8, "feet"),
  11418. weight: math.unit(356, "lb"),
  11419. name: "Front",
  11420. image: {
  11421. source: "./media/characters/adam-silver-mane/front.svg",
  11422. extra: 1036/937,
  11423. bottom: 63/1099
  11424. }
  11425. },
  11426. side: {
  11427. height: math.unit(8, "feet"),
  11428. weight: math.unit(356, "lb"),
  11429. name: "Side",
  11430. image: {
  11431. source: "./media/characters/adam-silver-mane/side.svg",
  11432. extra: 997/901,
  11433. bottom: 59/1056
  11434. }
  11435. },
  11436. frontNsfw: {
  11437. height: math.unit(8, "feet"),
  11438. weight: math.unit(356, "lb"),
  11439. name: "Front (NSFW)",
  11440. image: {
  11441. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11442. extra: 1036/937,
  11443. bottom: 63/1099
  11444. }
  11445. },
  11446. sideNsfw: {
  11447. height: math.unit(8, "feet"),
  11448. weight: math.unit(356, "lb"),
  11449. name: "Side (NSFW)",
  11450. image: {
  11451. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11452. extra: 997/901,
  11453. bottom: 59/1056
  11454. }
  11455. },
  11456. dick: {
  11457. height: math.unit(2.1, "feet"),
  11458. name: "Dick",
  11459. image: {
  11460. source: "./media/characters/adam-silver-mane/dick.svg"
  11461. }
  11462. },
  11463. taur: {
  11464. height: math.unit(16, "feet"),
  11465. weight: math.unit(1500, "kg"),
  11466. name: "Taur",
  11467. image: {
  11468. source: "./media/characters/adam-silver-mane/taur.svg",
  11469. extra: 1713 / 1571,
  11470. bottom: 0.01
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(8, "feet")
  11478. },
  11479. {
  11480. name: "Minimacro",
  11481. height: math.unit(80, "feet")
  11482. },
  11483. {
  11484. name: "MDA",
  11485. height: math.unit(80, "meters")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(800, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(8000, "feet")
  11495. },
  11496. {
  11497. name: "Gigamacro",
  11498. height: math.unit(800, "miles")
  11499. },
  11500. {
  11501. name: "Teramacro",
  11502. height: math.unit(80000, "miles")
  11503. },
  11504. {
  11505. name: "Celestial",
  11506. height: math.unit(8e6, "miles")
  11507. },
  11508. {
  11509. name: "Star Dragon",
  11510. height: math.unit(800000, "parsecs")
  11511. },
  11512. {
  11513. name: "Godly",
  11514. height: math.unit(800, "teraparsecs")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/ky'owin/front.svg",
  11527. extra: 3888 / 3068,
  11528. bottom: 0.015
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(6 + 8 / 12, "feet")
  11536. },
  11537. {
  11538. name: "Large",
  11539. height: math.unit(68, "feet")
  11540. },
  11541. {
  11542. name: "Macro",
  11543. height: math.unit(132, "feet")
  11544. },
  11545. {
  11546. name: "Macro+",
  11547. height: math.unit(340, "feet")
  11548. },
  11549. {
  11550. name: "Macro++",
  11551. height: math.unit(680, "feet"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(1, "mile")
  11557. },
  11558. {
  11559. name: "Megamacro+",
  11560. height: math.unit(10, "miles")
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(4, "feet"),
  11569. weight: math.unit(50, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/mal/front.svg",
  11573. extra: 785 / 724,
  11574. bottom: 0.07
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Micro",
  11581. height: math.unit(4, "inches")
  11582. },
  11583. {
  11584. name: "Normal",
  11585. height: math.unit(4, "feet"),
  11586. default: true
  11587. },
  11588. {
  11589. name: "Macro",
  11590. height: math.unit(200, "feet")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(150, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/jordan-deware/front.svg",
  11603. extra: 1191 / 1012
  11604. }
  11605. },
  11606. },
  11607. [
  11608. {
  11609. name: "Nano",
  11610. height: math.unit(0.01, "mm")
  11611. },
  11612. {
  11613. name: "Minimicro",
  11614. height: math.unit(1, "mm")
  11615. },
  11616. {
  11617. name: "Micro",
  11618. height: math.unit(0.5, "inches")
  11619. },
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(4, "feet"),
  11623. default: true
  11624. },
  11625. {
  11626. name: "Minimacro",
  11627. height: math.unit(40, "meters")
  11628. },
  11629. {
  11630. name: "Small Macro",
  11631. height: math.unit(400, "meters")
  11632. },
  11633. {
  11634. name: "Macro",
  11635. height: math.unit(4, "miles")
  11636. },
  11637. {
  11638. name: "Megamacro",
  11639. height: math.unit(40, "miles")
  11640. },
  11641. {
  11642. name: "Megamacro+",
  11643. height: math.unit(400, "miles")
  11644. },
  11645. {
  11646. name: "Gigamacro",
  11647. height: math.unit(400000, "miles")
  11648. },
  11649. ]
  11650. ))
  11651. characterMakers.push(() => makeCharacter(
  11652. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11653. {
  11654. side: {
  11655. height: math.unit(6, "feet"),
  11656. weight: math.unit(150, "lb"),
  11657. name: "Side",
  11658. image: {
  11659. source: "./media/characters/kimiko/side.svg",
  11660. extra: 600 / 358
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(15, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(220, "feet")
  11673. },
  11674. {
  11675. name: "Macro+",
  11676. height: math.unit(1450, "feet")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(11500, "feet")
  11681. },
  11682. {
  11683. name: "Gigamacro",
  11684. height: math.unit(9500, "miles")
  11685. },
  11686. {
  11687. name: "Teramacro",
  11688. height: math.unit(2208005005, "miles")
  11689. },
  11690. {
  11691. name: "Examacro",
  11692. height: math.unit(2750, "parsecs")
  11693. },
  11694. {
  11695. name: "Zettamacro",
  11696. height: math.unit(101500, "parsecs")
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11702. {
  11703. front: {
  11704. height: math.unit(6, "feet"),
  11705. weight: math.unit(70, "kg"),
  11706. name: "Front",
  11707. image: {
  11708. source: "./media/characters/andrew-sleepy/front.svg"
  11709. }
  11710. },
  11711. side: {
  11712. height: math.unit(6, "feet"),
  11713. weight: math.unit(70, "kg"),
  11714. name: "Side",
  11715. image: {
  11716. source: "./media/characters/andrew-sleepy/side.svg"
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Micro",
  11723. height: math.unit(1, "mm"),
  11724. default: true
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11730. {
  11731. front: {
  11732. height: math.unit(6, "feet"),
  11733. weight: math.unit(150, "lb"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/judio/front.svg",
  11737. extra: 1258 / 1110
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Normal",
  11744. height: math.unit(5 + 6 / 12, "feet")
  11745. },
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(1000, "feet"),
  11749. default: true
  11750. },
  11751. {
  11752. name: "Megamacro",
  11753. height: math.unit(10, "miles")
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11759. {
  11760. frontDressed: {
  11761. height: math.unit(6, "feet"),
  11762. weight: math.unit(68, "kg"),
  11763. name: "Front (Dressed)",
  11764. image: {
  11765. source: "./media/characters/nomaxice/front-dressed.svg",
  11766. extra: 1137/824,
  11767. bottom: 74/1211
  11768. }
  11769. },
  11770. frontShorts: {
  11771. height: math.unit(6, "feet"),
  11772. weight: math.unit(68, "kg"),
  11773. name: "Front (Shorts)",
  11774. image: {
  11775. source: "./media/characters/nomaxice/front-shorts.svg",
  11776. extra: 1137/824,
  11777. bottom: 74/1211
  11778. }
  11779. },
  11780. back: {
  11781. height: math.unit(6, "feet"),
  11782. weight: math.unit(68, "kg"),
  11783. name: "Back",
  11784. image: {
  11785. source: "./media/characters/nomaxice/back.svg",
  11786. extra: 822/786,
  11787. bottom: 39/861
  11788. }
  11789. },
  11790. hand: {
  11791. height: math.unit(0.565, "feet"),
  11792. name: "Hand",
  11793. image: {
  11794. source: "./media/characters/nomaxice/hand.svg"
  11795. }
  11796. },
  11797. foot: {
  11798. height: math.unit(1, "feet"),
  11799. name: "Foot",
  11800. image: {
  11801. source: "./media/characters/nomaxice/foot.svg"
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Micro",
  11808. height: math.unit(8, "cm")
  11809. },
  11810. {
  11811. name: "Norm",
  11812. height: math.unit(1.82, "m")
  11813. },
  11814. {
  11815. name: "Norm+",
  11816. height: math.unit(8.8, "feet"),
  11817. default: true
  11818. },
  11819. {
  11820. name: "Big",
  11821. height: math.unit(8, "meters")
  11822. },
  11823. {
  11824. name: "Macro",
  11825. height: math.unit(18, "meters")
  11826. },
  11827. {
  11828. name: "Macro+",
  11829. height: math.unit(88, "meters")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(12, "feet"),
  11838. weight: math.unit(1.5, "tons"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/dydros/front.svg",
  11842. extra: 863 / 800,
  11843. bottom: 0.015
  11844. }
  11845. },
  11846. back: {
  11847. height: math.unit(12, "feet"),
  11848. weight: math.unit(1.5, "tons"),
  11849. name: "Back",
  11850. image: {
  11851. source: "./media/characters/dydros/back.svg",
  11852. extra: 900 / 843,
  11853. bottom: 0.005
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Normal",
  11860. height: math.unit(12, "feet"),
  11861. default: true
  11862. },
  11863. ]
  11864. ))
  11865. characterMakers.push(() => makeCharacter(
  11866. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11867. {
  11868. front: {
  11869. height: math.unit(6, "feet"),
  11870. weight: math.unit(100, "kg"),
  11871. name: "Front",
  11872. image: {
  11873. source: "./media/characters/riggi/front.svg",
  11874. extra: 5787 / 5303
  11875. }
  11876. },
  11877. hyper: {
  11878. height: math.unit(6 * 5 / 3, "feet"),
  11879. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11880. name: "Hyper",
  11881. image: {
  11882. source: "./media/characters/riggi/hyper.svg",
  11883. extra: 3595 / 3485
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Small Macro",
  11890. height: math.unit(50, "feet")
  11891. },
  11892. {
  11893. name: "Default",
  11894. height: math.unit(200, "feet"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Loom",
  11899. height: math.unit(10000, "feet")
  11900. },
  11901. {
  11902. name: "Cruising Altitude",
  11903. height: math.unit(30000, "feet")
  11904. },
  11905. {
  11906. name: "Megamacro",
  11907. height: math.unit(100, "miles")
  11908. },
  11909. {
  11910. name: "Continent Sized",
  11911. height: math.unit(2800, "miles")
  11912. },
  11913. {
  11914. name: "Earth Sized",
  11915. height: math.unit(8000, "miles")
  11916. },
  11917. ]
  11918. ))
  11919. characterMakers.push(() => makeCharacter(
  11920. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11921. {
  11922. front: {
  11923. height: math.unit(6, "feet"),
  11924. weight: math.unit(250, "lb"),
  11925. name: "Front",
  11926. image: {
  11927. source: "./media/characters/alexi/front.svg",
  11928. extra: 3483 / 3291,
  11929. bottom: 0.04
  11930. }
  11931. },
  11932. back: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(250, "lb"),
  11935. name: "Back",
  11936. image: {
  11937. source: "./media/characters/alexi/back.svg",
  11938. extra: 3533 / 3356,
  11939. bottom: 0.021
  11940. }
  11941. },
  11942. frontTransforming: {
  11943. height: math.unit(8.58, "feet"),
  11944. weight: math.unit(1300, "lb"),
  11945. name: "Transforming",
  11946. image: {
  11947. source: "./media/characters/alexi/front-transforming.svg",
  11948. extra: 437 / 409,
  11949. bottom: 19 / 458.66
  11950. }
  11951. },
  11952. frontTransformed: {
  11953. height: math.unit(12.5, "feet"),
  11954. weight: math.unit(4000, "lb"),
  11955. name: "Transformed",
  11956. image: {
  11957. source: "./media/characters/alexi/front-transformed.svg",
  11958. extra: 639 / 614,
  11959. bottom: 30.55 / 671
  11960. }
  11961. },
  11962. },
  11963. [
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(14, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Minimacro",
  11971. height: math.unit(30, "meters")
  11972. },
  11973. {
  11974. name: "Macro",
  11975. height: math.unit(500, "meters")
  11976. },
  11977. {
  11978. name: "Megamacro",
  11979. height: math.unit(9000, "km")
  11980. },
  11981. {
  11982. name: "Teramacro",
  11983. height: math.unit(384000, "km")
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/kayroo/front.svg",
  11996. extra: 1153 / 1038,
  11997. bottom: 0.06
  11998. }
  11999. },
  12000. foot: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(150, "lb"),
  12003. name: "Foot",
  12004. image: {
  12005. source: "./media/characters/kayroo/foot.svg"
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(8, "feet"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Minimacro",
  12017. height: math.unit(250, "feet")
  12018. },
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(2800, "feet")
  12022. },
  12023. {
  12024. name: "Megamacro",
  12025. height: math.unit(5200, "feet")
  12026. },
  12027. {
  12028. name: "Gigamacro",
  12029. height: math.unit(27000, "feet")
  12030. },
  12031. {
  12032. name: "Omega",
  12033. height: math.unit(45000, "feet")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(18, "feet"),
  12042. weight: math.unit(5800, "lb"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/rhys/front.svg",
  12046. extra: 3386 / 3090,
  12047. bottom: 0.07
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Normal",
  12054. height: math.unit(18, "feet"),
  12055. default: true
  12056. },
  12057. {
  12058. name: "Working Size",
  12059. height: math.unit(200, "feet")
  12060. },
  12061. {
  12062. name: "Demolition Size",
  12063. height: math.unit(2000, "feet")
  12064. },
  12065. {
  12066. name: "Maximum Licensed Size",
  12067. height: math.unit(5, "miles")
  12068. },
  12069. {
  12070. name: "Maximum Observed Size",
  12071. height: math.unit(10, "yottameters")
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12077. {
  12078. front: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(250, "lb"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/toto/front.svg",
  12084. extra: 527 / 479,
  12085. bottom: 0.05
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Micro",
  12092. height: math.unit(3, "feet")
  12093. },
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(10, "feet")
  12097. },
  12098. {
  12099. name: "Macro",
  12100. height: math.unit(150, "feet"),
  12101. default: true
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(1200, "feet")
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "King", species: ["lion"], tags: ["anthro"] },
  12111. {
  12112. back: {
  12113. height: math.unit(6, "feet"),
  12114. weight: math.unit(150, "lb"),
  12115. name: "Back",
  12116. image: {
  12117. source: "./media/characters/king/back.svg"
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Micro",
  12124. height: math.unit(2, "inches")
  12125. },
  12126. {
  12127. name: "Normal",
  12128. height: math.unit(8, "feet")
  12129. },
  12130. {
  12131. name: "Macro",
  12132. height: math.unit(200, "feet"),
  12133. default: true
  12134. },
  12135. {
  12136. name: "Megamacro",
  12137. height: math.unit(50, "miles")
  12138. },
  12139. ]
  12140. ))
  12141. characterMakers.push(() => makeCharacter(
  12142. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12143. {
  12144. front: {
  12145. height: math.unit(11, "feet"),
  12146. weight: math.unit(1400, "lb"),
  12147. name: "Front",
  12148. image: {
  12149. source: "./media/characters/cordite/front.svg",
  12150. extra: 1919/1827,
  12151. bottom: 40/1959
  12152. }
  12153. },
  12154. side: {
  12155. height: math.unit(11, "feet"),
  12156. weight: math.unit(1400, "lb"),
  12157. name: "Side",
  12158. image: {
  12159. source: "./media/characters/cordite/side.svg",
  12160. extra: 1908/1793,
  12161. bottom: 38/1946
  12162. }
  12163. },
  12164. back: {
  12165. height: math.unit(11, "feet"),
  12166. weight: math.unit(1400, "lb"),
  12167. name: "Back",
  12168. image: {
  12169. source: "./media/characters/cordite/back.svg",
  12170. extra: 1938/1837,
  12171. bottom: 10/1948
  12172. }
  12173. },
  12174. feral: {
  12175. height: math.unit(2, "feet"),
  12176. weight: math.unit(90, "lb"),
  12177. name: "Feral",
  12178. image: {
  12179. source: "./media/characters/cordite/feral.svg",
  12180. extra: 1260 / 755,
  12181. bottom: 0.05
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(11, "feet"),
  12189. default: true
  12190. },
  12191. ]
  12192. ))
  12193. characterMakers.push(() => makeCharacter(
  12194. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12195. {
  12196. front: {
  12197. height: math.unit(6, "feet"),
  12198. weight: math.unit(150, "lb"),
  12199. name: "Front",
  12200. image: {
  12201. source: "./media/characters/pianostrong/front.svg",
  12202. extra: 6577 / 6254,
  12203. bottom: 0.02
  12204. }
  12205. },
  12206. side: {
  12207. height: math.unit(6, "feet"),
  12208. weight: math.unit(150, "lb"),
  12209. name: "Side",
  12210. image: {
  12211. source: "./media/characters/pianostrong/side.svg",
  12212. extra: 6106 / 5730
  12213. }
  12214. },
  12215. back: {
  12216. height: math.unit(6, "feet"),
  12217. weight: math.unit(150, "lb"),
  12218. name: "Back",
  12219. image: {
  12220. source: "./media/characters/pianostrong/back.svg",
  12221. extra: 6085 / 5733,
  12222. bottom: 0.01
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Macro",
  12229. height: math.unit(100, "feet")
  12230. },
  12231. {
  12232. name: "Macro+",
  12233. height: math.unit(300, "feet"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Macro++",
  12238. height: math.unit(1000, "feet")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(6, "feet"),
  12247. weight: math.unit(150, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/kona/front.svg",
  12251. extra: 2960 / 2629,
  12252. bottom: 0.005
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(11 + 8 / 12, "feet")
  12260. },
  12261. {
  12262. name: "Macro",
  12263. height: math.unit(850, "feet"),
  12264. default: true
  12265. },
  12266. {
  12267. name: "Macro+",
  12268. height: math.unit(1.5, "km"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Megamacro",
  12273. height: math.unit(80, "miles")
  12274. },
  12275. {
  12276. name: "Gigamacro",
  12277. height: math.unit(3500, "miles")
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12283. {
  12284. side: {
  12285. height: math.unit(1.9, "meters"),
  12286. weight: math.unit(326, "kg"),
  12287. name: "Side",
  12288. image: {
  12289. source: "./media/characters/levi/side.svg",
  12290. extra: 1704 / 1334,
  12291. bottom: 0.02
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Normal",
  12298. height: math.unit(1.9, "meters"),
  12299. default: true
  12300. },
  12301. {
  12302. name: "Macro",
  12303. height: math.unit(20, "meters")
  12304. },
  12305. {
  12306. name: "Macro+",
  12307. height: math.unit(200, "meters")
  12308. },
  12309. {
  12310. name: "Megamacro",
  12311. height: math.unit(2, "km")
  12312. },
  12313. {
  12314. name: "Megamacro+",
  12315. height: math.unit(20, "km")
  12316. },
  12317. {
  12318. name: "Gigamacro",
  12319. height: math.unit(2500, "km")
  12320. },
  12321. {
  12322. name: "Gigamacro+",
  12323. height: math.unit(120000, "km")
  12324. },
  12325. {
  12326. name: "Teramacro",
  12327. height: math.unit(7.77e6, "km")
  12328. },
  12329. ]
  12330. ))
  12331. characterMakers.push(() => makeCharacter(
  12332. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12333. {
  12334. front: {
  12335. height: math.unit(6 + 4/12, "feet"),
  12336. weight: math.unit(190, "lb"),
  12337. name: "Front",
  12338. image: {
  12339. source: "./media/characters/bmc/front.svg",
  12340. extra: 1626/1472,
  12341. bottom: 79/1705
  12342. }
  12343. },
  12344. back: {
  12345. height: math.unit(6 + 4/12, "feet"),
  12346. weight: math.unit(190, "lb"),
  12347. name: "Back",
  12348. image: {
  12349. source: "./media/characters/bmc/back.svg",
  12350. extra: 1640/1479,
  12351. bottom: 45/1685
  12352. }
  12353. },
  12354. frontArmor: {
  12355. height: math.unit(6 + 4/12, "feet"),
  12356. weight: math.unit(190, "lb"),
  12357. name: "Front-armor",
  12358. image: {
  12359. source: "./media/characters/bmc/front-armor.svg",
  12360. extra: 1538/1468,
  12361. bottom: 79/1617
  12362. }
  12363. },
  12364. },
  12365. [
  12366. {
  12367. name: "Human-sized",
  12368. height: math.unit(6 + 4 / 12, "feet")
  12369. },
  12370. {
  12371. name: "Interactive Size",
  12372. height: math.unit(25, "feet")
  12373. },
  12374. {
  12375. name: "Small",
  12376. height: math.unit(250, "feet")
  12377. },
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(1250, "feet"),
  12381. default: true
  12382. },
  12383. {
  12384. name: "Good Day",
  12385. height: math.unit(88, "miles")
  12386. },
  12387. {
  12388. name: "Largest Measured Size",
  12389. height: math.unit(105.960, "galaxies")
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12395. {
  12396. front: {
  12397. height: math.unit(20, "feet"),
  12398. weight: math.unit(2016, "kg"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/sven-the-kaiju/front.svg",
  12402. extra: 1277/1250,
  12403. bottom: 35/1312
  12404. }
  12405. },
  12406. mouth: {
  12407. height: math.unit(1.85, "feet"),
  12408. name: "Mouth",
  12409. image: {
  12410. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Fairy",
  12417. height: math.unit(6, "inches")
  12418. },
  12419. {
  12420. name: "Normal",
  12421. height: math.unit(20, "feet"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Rampage",
  12426. height: math.unit(200, "feet")
  12427. },
  12428. {
  12429. name: "Archfey Forest Guardian",
  12430. height: math.unit(1, "mile")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12436. {
  12437. front: {
  12438. height: math.unit(4, "meters"),
  12439. weight: math.unit(2, "tons"),
  12440. name: "Front",
  12441. image: {
  12442. source: "./media/characters/marik/front.svg",
  12443. extra: 1057 / 1003,
  12444. bottom: 0.08
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(4, "meters"),
  12452. default: true
  12453. },
  12454. {
  12455. name: "Macro",
  12456. height: math.unit(20, "meters")
  12457. },
  12458. {
  12459. name: "Megamacro",
  12460. height: math.unit(50, "km")
  12461. },
  12462. {
  12463. name: "Gigamacro",
  12464. height: math.unit(100, "km")
  12465. },
  12466. {
  12467. name: "Alpha Macro",
  12468. height: math.unit(7.88e7, "yottameters")
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(6, "feet"),
  12477. weight: math.unit(110, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/mel/front.svg",
  12481. extra: 736 / 617,
  12482. bottom: 0.017
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Pico",
  12489. height: math.unit(3, "pm")
  12490. },
  12491. {
  12492. name: "Nano",
  12493. height: math.unit(3, "nm")
  12494. },
  12495. {
  12496. name: "Micro",
  12497. height: math.unit(0.3, "mm"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Micro+",
  12502. height: math.unit(3, "mm")
  12503. },
  12504. {
  12505. name: "Normal",
  12506. height: math.unit(5 + 10.5 / 12, "feet")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12512. {
  12513. kaiju: {
  12514. height: math.unit(1.75, "meters"),
  12515. weight: math.unit(55, "kg"),
  12516. name: "Kaiju",
  12517. image: {
  12518. source: "./media/characters/lykonous/kaiju.svg",
  12519. extra: 1055 / 946,
  12520. bottom: 0.135
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(2.5, "meters"),
  12528. default: true
  12529. },
  12530. {
  12531. name: "Kaiju Dragon",
  12532. height: math.unit(60, "meters")
  12533. },
  12534. {
  12535. name: "Mega Kaiju",
  12536. height: math.unit(120, "km")
  12537. },
  12538. {
  12539. name: "Giga Kaiju",
  12540. height: math.unit(200, "megameters")
  12541. },
  12542. {
  12543. name: "Terra Kaiju",
  12544. height: math.unit(400, "gigameters")
  12545. },
  12546. {
  12547. name: "Kaiju Dragon God",
  12548. height: math.unit(13000, "exaparsecs")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/blü/front.svg",
  12561. extra: 1883 / 1564,
  12562. bottom: 0.031
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Normal",
  12569. height: math.unit(13, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Big Boi",
  12574. height: math.unit(150, "meters")
  12575. },
  12576. {
  12577. name: "Mini Stomper",
  12578. height: math.unit(300, "meters")
  12579. },
  12580. {
  12581. name: "Macro",
  12582. height: math.unit(1000, "meters")
  12583. },
  12584. {
  12585. name: "Megamacro",
  12586. height: math.unit(11000, "meters")
  12587. },
  12588. {
  12589. name: "Gigamacro",
  12590. height: math.unit(11000, "km")
  12591. },
  12592. {
  12593. name: "Teramacro",
  12594. height: math.unit(420000, "km")
  12595. },
  12596. {
  12597. name: "Examacro",
  12598. height: math.unit(120, "parsecs")
  12599. },
  12600. {
  12601. name: "God Tho",
  12602. height: math.unit(98000000000, "parsecs")
  12603. },
  12604. ]
  12605. ))
  12606. characterMakers.push(() => makeCharacter(
  12607. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12608. {
  12609. taurFront: {
  12610. height: math.unit(6, "feet"),
  12611. weight: math.unit(200, "lb"),
  12612. name: "Taur (Front)",
  12613. image: {
  12614. source: "./media/characters/scales/taur-front.svg",
  12615. extra: 1,
  12616. bottom: 0.05
  12617. }
  12618. },
  12619. taurBack: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(200, "lb"),
  12622. name: "Taur (Back)",
  12623. image: {
  12624. source: "./media/characters/scales/taur-back.svg",
  12625. extra: 1,
  12626. bottom: 0.08
  12627. }
  12628. },
  12629. anthro: {
  12630. height: math.unit(6 * 7 / 12, "feet"),
  12631. weight: math.unit(100, "lb"),
  12632. name: "Anthro",
  12633. image: {
  12634. source: "./media/characters/scales/anthro.svg",
  12635. extra: 1,
  12636. bottom: 0.06
  12637. }
  12638. },
  12639. },
  12640. [
  12641. {
  12642. name: "Normal",
  12643. height: math.unit(12, "feet"),
  12644. default: true
  12645. },
  12646. ]
  12647. ))
  12648. characterMakers.push(() => makeCharacter(
  12649. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12650. {
  12651. front: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(150, "lb"),
  12654. name: "Front",
  12655. image: {
  12656. source: "./media/characters/koragos/front.svg",
  12657. extra: 841 / 794,
  12658. bottom: 0.035
  12659. }
  12660. },
  12661. back: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(150, "lb"),
  12664. name: "Back",
  12665. image: {
  12666. source: "./media/characters/koragos/back.svg",
  12667. extra: 841 / 810,
  12668. bottom: 0.022
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(6 + 11 / 12, "feet"),
  12676. default: true
  12677. },
  12678. {
  12679. name: "Macro",
  12680. height: math.unit(490, "feet")
  12681. },
  12682. {
  12683. name: "Megamacro",
  12684. height: math.unit(10, "miles")
  12685. },
  12686. {
  12687. name: "Gigamacro",
  12688. height: math.unit(50, "miles")
  12689. },
  12690. ]
  12691. ))
  12692. characterMakers.push(() => makeCharacter(
  12693. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12694. {
  12695. front: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(250, "lb"),
  12698. name: "Front",
  12699. image: {
  12700. source: "./media/characters/xylrem/front.svg",
  12701. extra: 3323 / 3050,
  12702. bottom: 0.065
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Micro",
  12709. height: math.unit(4, "feet")
  12710. },
  12711. {
  12712. name: "Normal",
  12713. height: math.unit(16, "feet"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Macro",
  12718. height: math.unit(2720, "feet")
  12719. },
  12720. {
  12721. name: "Megamacro",
  12722. height: math.unit(25000, "miles")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(8, "feet"),
  12731. weight: math.unit(250, "kg"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/ikideru/front.svg",
  12735. extra: 930 / 870,
  12736. bottom: 0.087
  12737. }
  12738. },
  12739. back: {
  12740. height: math.unit(8, "feet"),
  12741. weight: math.unit(250, "kg"),
  12742. name: "Back",
  12743. image: {
  12744. source: "./media/characters/ikideru/back.svg",
  12745. extra: 919 / 852,
  12746. bottom: 0.055
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Rare",
  12753. height: math.unit(8, "feet"),
  12754. default: true
  12755. },
  12756. {
  12757. name: "Playful Loom",
  12758. height: math.unit(80, "feet")
  12759. },
  12760. {
  12761. name: "City Leaner",
  12762. height: math.unit(230, "feet")
  12763. },
  12764. {
  12765. name: "Megamacro",
  12766. height: math.unit(2500, "feet")
  12767. },
  12768. {
  12769. name: "Gigamacro",
  12770. height: math.unit(26400, "feet")
  12771. },
  12772. {
  12773. name: "Tectonic Shifter",
  12774. height: math.unit(1.7, "megameters")
  12775. },
  12776. {
  12777. name: "Planet Carer",
  12778. height: math.unit(21, "megameters")
  12779. },
  12780. {
  12781. name: "God",
  12782. height: math.unit(11157.22, "parsecs")
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(6, "feet"),
  12791. weight: math.unit(120, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/neo/front.svg"
  12795. }
  12796. },
  12797. },
  12798. [
  12799. {
  12800. name: "Micro",
  12801. height: math.unit(2, "inches"),
  12802. default: true
  12803. },
  12804. {
  12805. name: "Human Size",
  12806. height: math.unit(5 + 8 / 12, "feet")
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(13 + 10 / 12, "feet"),
  12815. weight: math.unit(5320, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/chauncey-chantz/front.svg",
  12819. extra: 1587 / 1435,
  12820. bottom: 0.02
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Normal",
  12827. height: math.unit(13 + 10 / 12, "feet"),
  12828. default: true
  12829. },
  12830. {
  12831. name: "Macro",
  12832. height: math.unit(45, "feet")
  12833. },
  12834. {
  12835. name: "Megamacro",
  12836. height: math.unit(250, "miles")
  12837. },
  12838. {
  12839. name: "Planetary",
  12840. height: math.unit(10000, "miles")
  12841. },
  12842. {
  12843. name: "Galactic",
  12844. height: math.unit(40000, "parsecs")
  12845. },
  12846. {
  12847. name: "Universal",
  12848. height: math.unit(1, "yottameter")
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12854. {
  12855. front: {
  12856. height: math.unit(6, "feet"),
  12857. weight: math.unit(150, "lb"),
  12858. name: "Front",
  12859. image: {
  12860. source: "./media/characters/epifox/front.svg",
  12861. extra: 1,
  12862. bottom: 0.075
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Micro",
  12869. height: math.unit(6, "inches")
  12870. },
  12871. {
  12872. name: "Normal",
  12873. height: math.unit(12, "feet"),
  12874. default: true
  12875. },
  12876. {
  12877. name: "Macro",
  12878. height: math.unit(3810, "feet")
  12879. },
  12880. {
  12881. name: "Megamacro",
  12882. height: math.unit(500, "miles")
  12883. },
  12884. ]
  12885. ))
  12886. characterMakers.push(() => makeCharacter(
  12887. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12888. {
  12889. front: {
  12890. height: math.unit(1.8796, "m"),
  12891. weight: math.unit(230, "lb"),
  12892. name: "Front",
  12893. image: {
  12894. source: "./media/characters/colin-t/front.svg",
  12895. extra: 1272 / 1193,
  12896. bottom: 0.07
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Micro",
  12903. height: math.unit(0.571, "meters")
  12904. },
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(1.8796, "meters"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Tall",
  12912. height: math.unit(4, "meters")
  12913. },
  12914. {
  12915. name: "Macro",
  12916. height: math.unit(67.241, "meters")
  12917. },
  12918. {
  12919. name: "Megamacro",
  12920. height: math.unit(371.856, "meters")
  12921. },
  12922. {
  12923. name: "Planetary",
  12924. height: math.unit(12631.5689, "km")
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(1.85, "meters"),
  12933. weight: math.unit(80, "kg"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/matvei/front.svg",
  12937. extra: 614 / 594,
  12938. bottom: 0.01
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(1.85, "meters"),
  12946. default: true
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(5 + 9 / 12, "feet"),
  12955. weight: math.unit(70, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/quincy/front.svg",
  12959. extra: 3041 / 2751
  12960. }
  12961. },
  12962. back: {
  12963. height: math.unit(5 + 9 / 12, "feet"),
  12964. weight: math.unit(70, "lb"),
  12965. name: "Back",
  12966. image: {
  12967. source: "./media/characters/quincy/back.svg",
  12968. extra: 3041 / 2751
  12969. }
  12970. },
  12971. flying: {
  12972. height: math.unit(5 + 4 / 12, "feet"),
  12973. weight: math.unit(70, "lb"),
  12974. name: "Flying",
  12975. image: {
  12976. source: "./media/characters/quincy/flying.svg",
  12977. extra: 1044 / 930
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Micro",
  12984. height: math.unit(3, "cm")
  12985. },
  12986. {
  12987. name: "Normal",
  12988. height: math.unit(5 + 9 / 12, "feet")
  12989. },
  12990. {
  12991. name: "Macro",
  12992. height: math.unit(200, "meters"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(1000, "meters")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(3 + 11/12, "feet"),
  13006. weight: math.unit(50, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/vanrel/front.svg",
  13010. extra: 1104/949,
  13011. bottom: 52/1156
  13012. }
  13013. },
  13014. back: {
  13015. height: math.unit(3 + 11/12, "feet"),
  13016. weight: math.unit(50, "lb"),
  13017. name: "Back",
  13018. image: {
  13019. source: "./media/characters/vanrel/back.svg",
  13020. extra: 1119/976,
  13021. bottom: 37/1156
  13022. }
  13023. },
  13024. tome: {
  13025. height: math.unit(1.35, "feet"),
  13026. weight: math.unit(10, "lb"),
  13027. name: "Vanrel's Tome",
  13028. rename: true,
  13029. image: {
  13030. source: "./media/characters/vanrel/tome.svg"
  13031. }
  13032. },
  13033. beans: {
  13034. height: math.unit(0.89, "feet"),
  13035. name: "Beans",
  13036. image: {
  13037. source: "./media/characters/vanrel/beans.svg"
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(3 + 11/12, "feet"),
  13045. default: true
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(7 + 5 / 12, "feet"),
  13054. name: "Front",
  13055. image: {
  13056. source: "./media/characters/kuiper-vanrel/front.svg",
  13057. extra: 1219/1169,
  13058. bottom: 69/1288
  13059. }
  13060. },
  13061. back: {
  13062. height: math.unit(7 + 5 / 12, "feet"),
  13063. name: "Back",
  13064. image: {
  13065. source: "./media/characters/kuiper-vanrel/back.svg",
  13066. extra: 1236/1193,
  13067. bottom: 27/1263
  13068. }
  13069. },
  13070. foot: {
  13071. height: math.unit(0.55, "meters"),
  13072. name: "Foot",
  13073. image: {
  13074. source: "./media/characters/kuiper-vanrel/foot.svg",
  13075. }
  13076. },
  13077. battle: {
  13078. height: math.unit(6.824, "feet"),
  13079. name: "Battle",
  13080. image: {
  13081. source: "./media/characters/kuiper-vanrel/battle.svg",
  13082. extra: 1466 / 1327,
  13083. bottom: 29 / 1492.5
  13084. }
  13085. },
  13086. meerkui: {
  13087. height: math.unit(18, "inches"),
  13088. name: "Meerkui",
  13089. image: {
  13090. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13091. extra: 1354/1289,
  13092. bottom: 69/1423
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Normal",
  13099. height: math.unit(7 + 5 / 12, "feet"),
  13100. default: true
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(8 + 5 / 12, "feet"),
  13109. name: "Front",
  13110. image: {
  13111. source: "./media/characters/keset-vanrel/front.svg",
  13112. extra: 1231/1148,
  13113. bottom: 82/1313
  13114. }
  13115. },
  13116. back: {
  13117. height: math.unit(8 + 5 / 12, "feet"),
  13118. name: "Back",
  13119. image: {
  13120. source: "./media/characters/keset-vanrel/back.svg",
  13121. extra: 1240/1174,
  13122. bottom: 33/1273
  13123. }
  13124. },
  13125. hand: {
  13126. height: math.unit(0.6, "meters"),
  13127. name: "Hand",
  13128. image: {
  13129. source: "./media/characters/keset-vanrel/hand.svg"
  13130. }
  13131. },
  13132. foot: {
  13133. height: math.unit(0.94978, "meters"),
  13134. name: "Foot",
  13135. image: {
  13136. source: "./media/characters/keset-vanrel/foot.svg"
  13137. }
  13138. },
  13139. battle: {
  13140. height: math.unit(7.408, "feet"),
  13141. name: "Battle",
  13142. image: {
  13143. source: "./media/characters/keset-vanrel/battle.svg",
  13144. extra: 1890 / 1386,
  13145. bottom: 73.28 / 1970
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Normal",
  13152. height: math.unit(8 + 5 / 12, "feet"),
  13153. default: true
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/neos/front.svg",
  13166. extra: 1696 / 992,
  13167. bottom: 0.14
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Normal",
  13174. height: math.unit(54, "cm"),
  13175. default: true
  13176. },
  13177. {
  13178. name: "Macro",
  13179. height: math.unit(100, "m")
  13180. },
  13181. {
  13182. name: "Megamacro",
  13183. height: math.unit(10, "km")
  13184. },
  13185. {
  13186. name: "Megamacro+",
  13187. height: math.unit(100, "km")
  13188. },
  13189. {
  13190. name: "Gigamacro",
  13191. height: math.unit(100, "Mm")
  13192. },
  13193. {
  13194. name: "Teramacro",
  13195. height: math.unit(100, "Gm")
  13196. },
  13197. {
  13198. name: "Examacro",
  13199. height: math.unit(100, "Em")
  13200. },
  13201. {
  13202. name: "Godly",
  13203. height: math.unit(10000, "Ym")
  13204. },
  13205. {
  13206. name: "Beyond Godly",
  13207. height: math.unit(25, "multiverses")
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13213. {
  13214. feminine: {
  13215. height: math.unit(5, "feet"),
  13216. weight: math.unit(100, "lb"),
  13217. name: "Feminine",
  13218. image: {
  13219. source: "./media/characters/sammy-mouse/feminine.svg",
  13220. extra: 2526 / 2425,
  13221. bottom: 0.123
  13222. }
  13223. },
  13224. masculine: {
  13225. height: math.unit(5, "feet"),
  13226. weight: math.unit(100, "lb"),
  13227. name: "Masculine",
  13228. image: {
  13229. source: "./media/characters/sammy-mouse/masculine.svg",
  13230. extra: 2526 / 2425,
  13231. bottom: 0.123
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Micro",
  13238. height: math.unit(5, "inches")
  13239. },
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(5, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(60, "feet")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(4, "feet"),
  13256. weight: math.unit(50, "lb"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/kole/front.svg",
  13260. extra: 1423 / 1303,
  13261. bottom: 0.025
  13262. }
  13263. },
  13264. back: {
  13265. height: math.unit(4, "feet"),
  13266. weight: math.unit(50, "lb"),
  13267. name: "Back",
  13268. image: {
  13269. source: "./media/characters/kole/back.svg",
  13270. extra: 1426 / 1280,
  13271. bottom: 0.02
  13272. }
  13273. },
  13274. },
  13275. [
  13276. {
  13277. name: "Normal",
  13278. height: math.unit(4, "feet"),
  13279. default: true
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(2.5, "feet"),
  13288. weight: math.unit(32, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/rufran/front.svg",
  13292. extra: 1313/885,
  13293. bottom: 94/1407
  13294. }
  13295. },
  13296. side: {
  13297. height: math.unit(2.5, "feet"),
  13298. weight: math.unit(32, "lb"),
  13299. name: "Side",
  13300. image: {
  13301. source: "./media/characters/rufran/side.svg",
  13302. extra: 1109/852,
  13303. bottom: 118/1227
  13304. }
  13305. },
  13306. back: {
  13307. height: math.unit(2.5, "feet"),
  13308. weight: math.unit(32, "lb"),
  13309. name: "Back",
  13310. image: {
  13311. source: "./media/characters/rufran/back.svg",
  13312. extra: 1280/878,
  13313. bottom: 131/1411
  13314. }
  13315. },
  13316. mouth: {
  13317. height: math.unit(1.13, "feet"),
  13318. name: "Mouth",
  13319. image: {
  13320. source: "./media/characters/rufran/mouth.svg"
  13321. }
  13322. },
  13323. foot: {
  13324. height: math.unit(1.33, "feet"),
  13325. name: "Foot",
  13326. image: {
  13327. source: "./media/characters/rufran/foot.svg"
  13328. }
  13329. },
  13330. koboldFront: {
  13331. height: math.unit(2 + 6 / 12, "feet"),
  13332. weight: math.unit(20, "lb"),
  13333. name: "Front (Kobold)",
  13334. image: {
  13335. source: "./media/characters/rufran/kobold-front.svg",
  13336. extra: 2041 / 1839,
  13337. bottom: 0.055
  13338. }
  13339. },
  13340. koboldBack: {
  13341. height: math.unit(2 + 6 / 12, "feet"),
  13342. weight: math.unit(20, "lb"),
  13343. name: "Back (Kobold)",
  13344. image: {
  13345. source: "./media/characters/rufran/kobold-back.svg",
  13346. extra: 2054 / 1839,
  13347. bottom: 0.01
  13348. }
  13349. },
  13350. koboldHand: {
  13351. height: math.unit(0.2166, "meters"),
  13352. name: "Hand (Kobold)",
  13353. image: {
  13354. source: "./media/characters/rufran/kobold-hand.svg"
  13355. }
  13356. },
  13357. koboldFoot: {
  13358. height: math.unit(0.185, "meters"),
  13359. name: "Foot (Kobold)",
  13360. image: {
  13361. source: "./media/characters/rufran/kobold-foot.svg"
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Micro",
  13368. height: math.unit(1, "inch")
  13369. },
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(2 + 6 / 12, "feet"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Big",
  13377. height: math.unit(60, "feet")
  13378. },
  13379. {
  13380. name: "Macro",
  13381. height: math.unit(325, "feet")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(0.3, "meters"),
  13390. weight: math.unit(3.5, "kg"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/chip/front.svg",
  13394. extra: 748 / 674
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Micro",
  13401. height: math.unit(1, "inch"),
  13402. default: true
  13403. },
  13404. ]
  13405. ))
  13406. characterMakers.push(() => makeCharacter(
  13407. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13408. {
  13409. side: {
  13410. height: math.unit(2.3, "meters"),
  13411. weight: math.unit(3500, "lb"),
  13412. name: "Side",
  13413. image: {
  13414. source: "./media/characters/torvid/side.svg",
  13415. extra: 1972 / 722,
  13416. bottom: 0.035
  13417. }
  13418. },
  13419. },
  13420. [
  13421. {
  13422. name: "Normal",
  13423. height: math.unit(2.3, "meters"),
  13424. default: true
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(2, "meters"),
  13433. weight: math.unit(150.5, "kg"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/susan/front.svg",
  13437. extra: 693 / 635,
  13438. bottom: 0.05
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Megamacro",
  13445. height: math.unit(505, "miles"),
  13446. default: true
  13447. },
  13448. ]
  13449. ))
  13450. characterMakers.push(() => makeCharacter(
  13451. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13452. {
  13453. front: {
  13454. height: math.unit(6, "feet"),
  13455. weight: math.unit(150, "lb"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/raindrops/front.svg",
  13459. extra: 2655 / 2461,
  13460. bottom: 49 / 2705
  13461. }
  13462. },
  13463. back: {
  13464. height: math.unit(6, "feet"),
  13465. weight: math.unit(150, "lb"),
  13466. name: "Back",
  13467. image: {
  13468. source: "./media/characters/raindrops/back.svg",
  13469. extra: 2574 / 2400,
  13470. bottom: 65 / 2634
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Micro",
  13477. height: math.unit(6, "inches")
  13478. },
  13479. {
  13480. name: "Normal",
  13481. height: math.unit(6 + 2 / 12, "feet")
  13482. },
  13483. {
  13484. name: "Macro",
  13485. height: math.unit(131, "feet"),
  13486. default: true
  13487. },
  13488. {
  13489. name: "Megamacro",
  13490. height: math.unit(15, "miles")
  13491. },
  13492. {
  13493. name: "Gigamacro",
  13494. height: math.unit(4000, "miles")
  13495. },
  13496. {
  13497. name: "Teramacro",
  13498. height: math.unit(315000, "miles")
  13499. },
  13500. ]
  13501. ))
  13502. characterMakers.push(() => makeCharacter(
  13503. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13504. {
  13505. front: {
  13506. height: math.unit(2.794, "meters"),
  13507. weight: math.unit(325, "kg"),
  13508. name: "Front",
  13509. image: {
  13510. source: "./media/characters/tezwa/front.svg",
  13511. extra: 2083 / 1906,
  13512. bottom: 0.031
  13513. }
  13514. },
  13515. foot: {
  13516. height: math.unit(0.687, "meters"),
  13517. name: "Foot",
  13518. image: {
  13519. source: "./media/characters/tezwa/foot.svg"
  13520. }
  13521. },
  13522. },
  13523. [
  13524. {
  13525. name: "Normal",
  13526. height: math.unit(9 + 2 / 12, "feet"),
  13527. default: true
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(58, "feet"),
  13536. weight: math.unit(89000, "lb"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/typhus/front.svg",
  13540. extra: 816 / 800,
  13541. bottom: 0.065
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(58, "feet"),
  13549. default: true
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13555. {
  13556. front: {
  13557. height: math.unit(12, "feet"),
  13558. weight: math.unit(6, "tonnes"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/lyra-von-wulf/front.svg",
  13562. extra: 1,
  13563. bottom: 0.10
  13564. }
  13565. },
  13566. frontMecha: {
  13567. height: math.unit(12, "feet"),
  13568. weight: math.unit(12, "tonnes"),
  13569. name: "Front (Mecha)",
  13570. image: {
  13571. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13572. extra: 1,
  13573. bottom: 0.042
  13574. }
  13575. },
  13576. maw: {
  13577. height: math.unit(2.2, "feet"),
  13578. name: "Maw",
  13579. image: {
  13580. source: "./media/characters/lyra-von-wulf/maw.svg"
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(12, "feet"),
  13588. default: true
  13589. },
  13590. {
  13591. name: "Classic",
  13592. height: math.unit(50, "feet")
  13593. },
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(500, "feet")
  13597. },
  13598. {
  13599. name: "Megamacro",
  13600. height: math.unit(1, "mile")
  13601. },
  13602. {
  13603. name: "Gigamacro",
  13604. height: math.unit(400, "miles")
  13605. },
  13606. {
  13607. name: "Teramacro",
  13608. height: math.unit(22000, "miles")
  13609. },
  13610. {
  13611. name: "Solarmacro",
  13612. height: math.unit(8600000, "miles")
  13613. },
  13614. {
  13615. name: "Galactic",
  13616. height: math.unit(1057000, "lightyears")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6 + 10 / 12, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/dixon/front.svg",
  13629. extra: 3361 / 3209,
  13630. bottom: 0.01
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(6 + 10 / 12, "feet"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Big",
  13642. height: math.unit(12, "meters")
  13643. },
  13644. {
  13645. name: "Macro",
  13646. height: math.unit(500, "meters")
  13647. },
  13648. {
  13649. name: "Megamacro",
  13650. height: math.unit(2, "km")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13656. {
  13657. front: {
  13658. height: math.unit(185, "cm"),
  13659. weight: math.unit(68, "kg"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/kauko/front.svg",
  13663. extra: 1455 / 1421,
  13664. bottom: 0.03
  13665. }
  13666. },
  13667. back: {
  13668. height: math.unit(185, "cm"),
  13669. weight: math.unit(68, "kg"),
  13670. name: "Back",
  13671. image: {
  13672. source: "./media/characters/kauko/back.svg",
  13673. extra: 1455 / 1421,
  13674. bottom: 0.004
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(185, "cm"),
  13682. default: true
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(150, "kg"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/varg/front.svg",
  13695. extra: 1108 / 1018,
  13696. bottom: 0.0375
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Normal",
  13703. height: math.unit(5, "meters")
  13704. },
  13705. {
  13706. name: "Macro",
  13707. height: math.unit(200, "meters")
  13708. },
  13709. {
  13710. name: "Megamacro",
  13711. height: math.unit(20, "kilometers")
  13712. },
  13713. {
  13714. name: "True Size",
  13715. height: math.unit(211, "km"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Gigamacro",
  13720. height: math.unit(1000, "km")
  13721. },
  13722. {
  13723. name: "Gigamacro+",
  13724. height: math.unit(8000, "km")
  13725. },
  13726. {
  13727. name: "Teramacro",
  13728. height: math.unit(1000000, "km")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(7 + 7 / 12, "feet"),
  13737. weight: math.unit(267, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/dayza/front.svg",
  13741. extra: 1262 / 1200,
  13742. bottom: 0.035
  13743. }
  13744. },
  13745. side: {
  13746. height: math.unit(7 + 7 / 12, "feet"),
  13747. weight: math.unit(267, "lb"),
  13748. name: "Side",
  13749. image: {
  13750. source: "./media/characters/dayza/side.svg",
  13751. extra: 1295 / 1245,
  13752. bottom: 0.05
  13753. }
  13754. },
  13755. back: {
  13756. height: math.unit(7 + 7 / 12, "feet"),
  13757. weight: math.unit(267, "lb"),
  13758. name: "Back",
  13759. image: {
  13760. source: "./media/characters/dayza/back.svg",
  13761. extra: 1241 / 1170
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Normal",
  13768. height: math.unit(7 + 7 / 12, "feet"),
  13769. default: true
  13770. },
  13771. {
  13772. name: "Macro",
  13773. height: math.unit(155, "feet")
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(6 + 5 / 12, "feet"),
  13782. weight: math.unit(160, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/xanthos/front.svg",
  13786. extra: 1,
  13787. bottom: 0.04
  13788. }
  13789. },
  13790. back: {
  13791. height: math.unit(6 + 5 / 12, "feet"),
  13792. weight: math.unit(160, "lb"),
  13793. name: "Back",
  13794. image: {
  13795. source: "./media/characters/xanthos/back.svg",
  13796. extra: 1,
  13797. bottom: 0.03
  13798. }
  13799. },
  13800. hand: {
  13801. height: math.unit(0.928, "feet"),
  13802. name: "Hand",
  13803. image: {
  13804. source: "./media/characters/xanthos/hand.svg"
  13805. }
  13806. },
  13807. foot: {
  13808. height: math.unit(1.286, "feet"),
  13809. name: "Foot",
  13810. image: {
  13811. source: "./media/characters/xanthos/foot.svg"
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(6 + 5 / 12, "feet"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Normal+",
  13823. height: math.unit(6, "meters")
  13824. },
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(40, "feet")
  13828. },
  13829. {
  13830. name: "Macro+",
  13831. height: math.unit(200, "meters")
  13832. },
  13833. {
  13834. name: "Megamacro",
  13835. height: math.unit(20, "km")
  13836. },
  13837. {
  13838. name: "Megamacro+",
  13839. height: math.unit(100, "km")
  13840. },
  13841. {
  13842. name: "Gigamacro",
  13843. height: math.unit(200, "megameters")
  13844. },
  13845. {
  13846. name: "Gigamacro+",
  13847. height: math.unit(1.5, "gigameters")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(6 + 3 / 12, "feet"),
  13856. weight: math.unit(215, "lb"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/grynn/front.svg",
  13860. extra: 4627 / 4209,
  13861. bottom: 0.047
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Micro",
  13868. height: math.unit(6, "inches")
  13869. },
  13870. {
  13871. name: "Normal",
  13872. height: math.unit(6 + 3 / 12, "feet"),
  13873. default: true
  13874. },
  13875. {
  13876. name: "Big",
  13877. height: math.unit(104, "feet")
  13878. },
  13879. {
  13880. name: "Macro",
  13881. height: math.unit(944, "feet")
  13882. },
  13883. {
  13884. name: "Macro+",
  13885. height: math.unit(9480, "feet")
  13886. },
  13887. {
  13888. name: "Megamacro",
  13889. height: math.unit(78752, "feet")
  13890. },
  13891. {
  13892. name: "Megamacro+",
  13893. height: math.unit(630128, "feet")
  13894. },
  13895. {
  13896. name: "Megamacro++",
  13897. height: math.unit(3150695, "feet")
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(7 + 5 / 12, "feet"),
  13906. weight: math.unit(450, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/mocha-aura/front.svg",
  13910. extra: 1907 / 1817,
  13911. bottom: 0.04
  13912. }
  13913. },
  13914. back: {
  13915. height: math.unit(7 + 5 / 12, "feet"),
  13916. weight: math.unit(450, "lb"),
  13917. name: "Back",
  13918. image: {
  13919. source: "./media/characters/mocha-aura/back.svg",
  13920. extra: 1900 / 1825,
  13921. bottom: 0.045
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Nano",
  13928. height: math.unit(1, "nm")
  13929. },
  13930. {
  13931. name: "Megamicro",
  13932. height: math.unit(1, "mm")
  13933. },
  13934. {
  13935. name: "Micro",
  13936. height: math.unit(3, "inches")
  13937. },
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(7 + 5 / 12, "feet"),
  13941. default: true
  13942. },
  13943. {
  13944. name: "Macro",
  13945. height: math.unit(30, "feet")
  13946. },
  13947. {
  13948. name: "Megamacro",
  13949. height: math.unit(3500, "feet")
  13950. },
  13951. {
  13952. name: "Teramacro",
  13953. height: math.unit(500000, "miles")
  13954. },
  13955. {
  13956. name: "Petamacro",
  13957. height: math.unit(50000000000000000, "parsecs")
  13958. },
  13959. ]
  13960. ))
  13961. characterMakers.push(() => makeCharacter(
  13962. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13963. {
  13964. front: {
  13965. height: math.unit(6, "feet"),
  13966. weight: math.unit(150, "lb"),
  13967. name: "Front",
  13968. image: {
  13969. source: "./media/characters/ilisha-devya/front.svg",
  13970. extra: 1053/1049,
  13971. bottom: 270/1323
  13972. }
  13973. },
  13974. back: {
  13975. height: math.unit(6, "feet"),
  13976. weight: math.unit(150, "lb"),
  13977. name: "Back",
  13978. image: {
  13979. source: "./media/characters/ilisha-devya/back.svg",
  13980. extra: 1131/1128,
  13981. bottom: 39/1170
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Macro",
  13988. height: math.unit(500, "feet"),
  13989. default: true
  13990. },
  13991. {
  13992. name: "Megamacro",
  13993. height: math.unit(10, "miles")
  13994. },
  13995. {
  13996. name: "Gigamacro",
  13997. height: math.unit(100000, "miles")
  13998. },
  13999. {
  14000. name: "Examacro",
  14001. height: math.unit(1e9, "lightyears")
  14002. },
  14003. {
  14004. name: "Omniversal",
  14005. height: math.unit(1e33, "lightyears")
  14006. },
  14007. {
  14008. name: "Beyond Infinite",
  14009. height: math.unit(1e100, "lightyears")
  14010. },
  14011. ]
  14012. ))
  14013. characterMakers.push(() => makeCharacter(
  14014. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14015. {
  14016. Side: {
  14017. height: math.unit(6, "feet"),
  14018. weight: math.unit(150, "lb"),
  14019. name: "Side",
  14020. image: {
  14021. source: "./media/characters/mira/side.svg",
  14022. extra: 900 / 799,
  14023. bottom: 0.02
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Human Size",
  14030. height: math.unit(6, "feet")
  14031. },
  14032. {
  14033. name: "Macro",
  14034. height: math.unit(100, "feet"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(10, "miles")
  14040. },
  14041. {
  14042. name: "Gigamacro",
  14043. height: math.unit(25000, "miles")
  14044. },
  14045. {
  14046. name: "Teramacro",
  14047. height: math.unit(300, "AU")
  14048. },
  14049. {
  14050. name: "Full Size",
  14051. height: math.unit(4.5e10, "lightyears")
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(150, "lb"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/holly/front.svg",
  14064. extra: 639 / 606
  14065. }
  14066. },
  14067. back: {
  14068. height: math.unit(6, "feet"),
  14069. weight: math.unit(150, "lb"),
  14070. name: "Back",
  14071. image: {
  14072. source: "./media/characters/holly/back.svg",
  14073. extra: 623 / 598
  14074. }
  14075. },
  14076. frontWorking: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(150, "lb"),
  14079. name: "Front (Working)",
  14080. image: {
  14081. source: "./media/characters/holly/front-working.svg",
  14082. extra: 607 / 577,
  14083. bottom: 0.048
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Normal",
  14090. height: math.unit(12 + 3 / 12, "feet"),
  14091. default: true
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(150, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/porter/front.svg",
  14104. extra: 1,
  14105. bottom: 0.01
  14106. }
  14107. },
  14108. frontRobes: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(150, "lb"),
  14111. name: "Front (Robes)",
  14112. image: {
  14113. source: "./media/characters/porter/front-robes.svg",
  14114. extra: 1.01,
  14115. bottom: 0.01
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Normal",
  14122. height: math.unit(11 + 9 / 12, "feet"),
  14123. default: true
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14129. {
  14130. legendary: {
  14131. height: math.unit(6, "feet"),
  14132. weight: math.unit(150, "lb"),
  14133. name: "Legendary",
  14134. image: {
  14135. source: "./media/characters/lucy/legendary.svg",
  14136. extra: 1355 / 1100,
  14137. bottom: 0.045
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Legendary",
  14144. height: math.unit(86882 * 2, "miles"),
  14145. default: true
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14151. {
  14152. front: {
  14153. height: math.unit(6, "feet"),
  14154. weight: math.unit(150, "lb"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/drusilla/front.svg",
  14158. extra: 678 / 635,
  14159. bottom: 0.03
  14160. }
  14161. },
  14162. back: {
  14163. height: math.unit(6, "feet"),
  14164. weight: math.unit(150, "lb"),
  14165. name: "Back",
  14166. image: {
  14167. source: "./media/characters/drusilla/back.svg",
  14168. extra: 678 / 635,
  14169. bottom: 0.005
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Macro",
  14176. height: math.unit(100, "feet")
  14177. },
  14178. {
  14179. name: "Canon Height",
  14180. height: math.unit(2000, "feet"),
  14181. default: true
  14182. },
  14183. ]
  14184. ))
  14185. characterMakers.push(() => makeCharacter(
  14186. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14187. {
  14188. front: {
  14189. height: math.unit(6, "feet"),
  14190. weight: math.unit(180, "lb"),
  14191. name: "Front",
  14192. image: {
  14193. source: "./media/characters/renard-thatch/front.svg",
  14194. extra: 2411 / 2275,
  14195. bottom: 0.01
  14196. }
  14197. },
  14198. frontPosing: {
  14199. height: math.unit(6, "feet"),
  14200. weight: math.unit(180, "lb"),
  14201. name: "Front (Posing)",
  14202. image: {
  14203. source: "./media/characters/renard-thatch/front-posing.svg",
  14204. extra: 2381 / 2261,
  14205. bottom: 0.01
  14206. }
  14207. },
  14208. back: {
  14209. height: math.unit(6, "feet"),
  14210. weight: math.unit(180, "lb"),
  14211. name: "Back",
  14212. image: {
  14213. source: "./media/characters/renard-thatch/back.svg",
  14214. extra: 2428 / 2288
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(3, "inches")
  14222. },
  14223. {
  14224. name: "Default",
  14225. height: math.unit(6, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(75, "feet")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(1450, "feet"),
  14239. weight: math.unit(1.21e6, "tons"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/sekvra/front.svg",
  14243. extra: 1193/1190,
  14244. bottom: 78/1271
  14245. }
  14246. },
  14247. side: {
  14248. height: math.unit(1450, "feet"),
  14249. weight: math.unit(1.21e6, "tons"),
  14250. name: "Side",
  14251. image: {
  14252. source: "./media/characters/sekvra/side.svg",
  14253. extra: 1193/1190,
  14254. bottom: 52/1245
  14255. }
  14256. },
  14257. back: {
  14258. height: math.unit(1450, "feet"),
  14259. weight: math.unit(1.21e6, "tons"),
  14260. name: "Back",
  14261. image: {
  14262. source: "./media/characters/sekvra/back.svg",
  14263. extra: 1219/1216,
  14264. bottom: 21/1240
  14265. }
  14266. },
  14267. frontClothed: {
  14268. height: math.unit(1450, "feet"),
  14269. weight: math.unit(1.21e6, "tons"),
  14270. name: "Front (Clothed)",
  14271. image: {
  14272. source: "./media/characters/sekvra/front-clothed.svg",
  14273. extra: 1192/1189,
  14274. bottom: 79/1271
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(1450, "feet"),
  14282. default: true
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(15000, "feet")
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14292. {
  14293. front: {
  14294. height: math.unit(6, "feet"),
  14295. weight: math.unit(150, "lb"),
  14296. name: "Front",
  14297. image: {
  14298. source: "./media/characters/carmine/front.svg",
  14299. extra: 1,
  14300. bottom: 0.035
  14301. }
  14302. },
  14303. frontArmor: {
  14304. height: math.unit(6, "feet"),
  14305. weight: math.unit(150, "lb"),
  14306. name: "Front (Armor)",
  14307. image: {
  14308. source: "./media/characters/carmine/front-armor.svg",
  14309. extra: 1,
  14310. bottom: 0.035
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Large",
  14317. height: math.unit(1, "mile")
  14318. },
  14319. {
  14320. name: "Huge",
  14321. height: math.unit(40, "miles"),
  14322. default: true
  14323. },
  14324. {
  14325. name: "Colossal",
  14326. height: math.unit(2500, "miles")
  14327. },
  14328. ]
  14329. ))
  14330. characterMakers.push(() => makeCharacter(
  14331. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14332. {
  14333. front: {
  14334. height: math.unit(6, "feet"),
  14335. weight: math.unit(150, "lb"),
  14336. name: "Front",
  14337. image: {
  14338. source: "./media/characters/elyssia/front.svg",
  14339. extra: 2201 / 2035,
  14340. bottom: 0.05
  14341. }
  14342. },
  14343. frontClothed: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front (Clothed)",
  14347. image: {
  14348. source: "./media/characters/elyssia/front-clothed.svg",
  14349. extra: 2201 / 2035,
  14350. bottom: 0.05
  14351. }
  14352. },
  14353. back: {
  14354. height: math.unit(6, "feet"),
  14355. weight: math.unit(150, "lb"),
  14356. name: "Back",
  14357. image: {
  14358. source: "./media/characters/elyssia/back.svg",
  14359. extra: 2201 / 2035,
  14360. bottom: 0.013
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Smaller",
  14367. height: math.unit(150, "feet")
  14368. },
  14369. {
  14370. name: "Standard",
  14371. height: math.unit(1400, "feet"),
  14372. default: true
  14373. },
  14374. {
  14375. name: "Distracted",
  14376. height: math.unit(15000, "feet")
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(7 + 4/12, "feet"),
  14385. weight: math.unit(690, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/geno-maxwell/front.svg",
  14389. extra: 984/856,
  14390. bottom: 87/1071
  14391. }
  14392. },
  14393. back: {
  14394. height: math.unit(7 + 4/12, "feet"),
  14395. weight: math.unit(690, "lb"),
  14396. name: "Back",
  14397. image: {
  14398. source: "./media/characters/geno-maxwell/back.svg",
  14399. extra: 981/854,
  14400. bottom: 57/1038
  14401. }
  14402. },
  14403. frontCostume: {
  14404. height: math.unit(7 + 4/12, "feet"),
  14405. weight: math.unit(690, "lb"),
  14406. name: "Front (Costume)",
  14407. image: {
  14408. source: "./media/characters/geno-maxwell/front-costume.svg",
  14409. extra: 984/856,
  14410. bottom: 87/1071
  14411. }
  14412. },
  14413. backcostume: {
  14414. height: math.unit(7 + 4/12, "feet"),
  14415. weight: math.unit(690, "lb"),
  14416. name: "Back (Costume)",
  14417. image: {
  14418. source: "./media/characters/geno-maxwell/back-costume.svg",
  14419. extra: 981/854,
  14420. bottom: 57/1038
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Micro",
  14427. height: math.unit(3, "inches")
  14428. },
  14429. {
  14430. name: "Normal",
  14431. height: math.unit(7 + 4 / 12, "feet"),
  14432. default: true
  14433. },
  14434. {
  14435. name: "Macro",
  14436. height: math.unit(220, "feet")
  14437. },
  14438. {
  14439. name: "Megamacro",
  14440. height: math.unit(11, "miles")
  14441. },
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(7 + 4/12, "feet"),
  14449. weight: math.unit(750, "lb"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/regena-maxwell/front.svg",
  14453. extra: 984/856,
  14454. bottom: 87/1071
  14455. }
  14456. },
  14457. back: {
  14458. height: math.unit(7 + 4/12, "feet"),
  14459. weight: math.unit(750, "lb"),
  14460. name: "Back",
  14461. image: {
  14462. source: "./media/characters/regena-maxwell/back.svg",
  14463. extra: 981/854,
  14464. bottom: 57/1038
  14465. }
  14466. },
  14467. frontCostume: {
  14468. height: math.unit(7 + 4/12, "feet"),
  14469. weight: math.unit(750, "lb"),
  14470. name: "Front (Costume)",
  14471. image: {
  14472. source: "./media/characters/regena-maxwell/front-costume.svg",
  14473. extra: 984/856,
  14474. bottom: 87/1071
  14475. }
  14476. },
  14477. backcostume: {
  14478. height: math.unit(7 + 4/12, "feet"),
  14479. weight: math.unit(750, "lb"),
  14480. name: "Back (Costume)",
  14481. image: {
  14482. source: "./media/characters/regena-maxwell/back-costume.svg",
  14483. extra: 981/854,
  14484. bottom: 57/1038
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Normal",
  14491. height: math.unit(7 + 4 / 12, "feet"),
  14492. default: true
  14493. },
  14494. {
  14495. name: "Macro",
  14496. height: math.unit(220, "feet")
  14497. },
  14498. {
  14499. name: "Megamacro",
  14500. height: math.unit(11, "miles")
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(150, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14513. extra: 860 / 690,
  14514. bottom: 0.03
  14515. }
  14516. },
  14517. },
  14518. [
  14519. {
  14520. name: "Normal",
  14521. height: math.unit(1.7, "meters"),
  14522. default: true
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14528. {
  14529. front: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(150, "lb"),
  14532. name: "Front",
  14533. image: {
  14534. source: "./media/characters/quilly/front.svg",
  14535. extra: 890 / 776
  14536. }
  14537. },
  14538. },
  14539. [
  14540. {
  14541. name: "Gigamacro",
  14542. height: math.unit(404090, "miles"),
  14543. default: true
  14544. },
  14545. ]
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14549. {
  14550. front: {
  14551. height: math.unit(7 + 8 / 12, "feet"),
  14552. weight: math.unit(350, "lb"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/tempest/front.svg",
  14556. extra: 1175 / 1086,
  14557. bottom: 0.02
  14558. }
  14559. },
  14560. },
  14561. [
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(7 + 8 / 12, "feet"),
  14565. default: true
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14571. {
  14572. side: {
  14573. height: math.unit(4 + 5 / 12, "feet"),
  14574. weight: math.unit(80, "lb"),
  14575. name: "Side",
  14576. image: {
  14577. source: "./media/characters/rodger/side.svg",
  14578. extra: 1235 / 1118
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Micro",
  14585. height: math.unit(1, "inch")
  14586. },
  14587. {
  14588. name: "Normal",
  14589. height: math.unit(4 + 5 / 12, "feet"),
  14590. default: true
  14591. },
  14592. {
  14593. name: "Macro",
  14594. height: math.unit(120, "feet")
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(150, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/danyel/front.svg",
  14607. extra: 1185 / 1123,
  14608. bottom: 0.05
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Shrunken",
  14615. height: math.unit(0.5, "mm")
  14616. },
  14617. {
  14618. name: "Micro",
  14619. height: math.unit(1, "mm"),
  14620. default: true
  14621. },
  14622. {
  14623. name: "Upsized",
  14624. height: math.unit(5 + 5 / 12, "feet")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(5 + 6 / 12, "feet"),
  14633. weight: math.unit(200, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/vivian-bijoux/front.svg",
  14637. extra: 1217/1209,
  14638. bottom: 76/1293
  14639. }
  14640. },
  14641. back: {
  14642. height: math.unit(5 + 6 / 12, "feet"),
  14643. weight: math.unit(200, "lb"),
  14644. name: "Back",
  14645. image: {
  14646. source: "./media/characters/vivian-bijoux/back.svg",
  14647. extra: 1214/1208,
  14648. bottom: 51/1265
  14649. }
  14650. },
  14651. dressed: {
  14652. height: math.unit(5 + 6 / 12, "feet"),
  14653. weight: math.unit(200, "lb"),
  14654. name: "Dressed",
  14655. image: {
  14656. source: "./media/characters/vivian-bijoux/dressed.svg",
  14657. extra: 1217/1209,
  14658. bottom: 76/1293
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Normal",
  14665. height: math.unit(5 + 6 / 12, "feet"),
  14666. default: true
  14667. },
  14668. {
  14669. name: "Bad Dream",
  14670. height: math.unit(500, "feet")
  14671. },
  14672. {
  14673. name: "Nightmare",
  14674. height: math.unit(500, "miles")
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14680. {
  14681. front: {
  14682. height: math.unit(6 + 1 / 12, "feet"),
  14683. weight: math.unit(260, "lb"),
  14684. name: "Front",
  14685. image: {
  14686. source: "./media/characters/zeta/front.svg",
  14687. extra: 1968 / 1889,
  14688. bottom: 0.06
  14689. }
  14690. },
  14691. back: {
  14692. height: math.unit(6 + 1 / 12, "feet"),
  14693. weight: math.unit(260, "lb"),
  14694. name: "Back",
  14695. image: {
  14696. source: "./media/characters/zeta/back.svg",
  14697. extra: 1944 / 1858,
  14698. bottom: 0.03
  14699. }
  14700. },
  14701. hand: {
  14702. height: math.unit(1.112, "feet"),
  14703. name: "Hand",
  14704. image: {
  14705. source: "./media/characters/zeta/hand.svg"
  14706. }
  14707. },
  14708. foot: {
  14709. height: math.unit(1.48, "feet"),
  14710. name: "Foot",
  14711. image: {
  14712. source: "./media/characters/zeta/foot.svg"
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Micro",
  14719. height: math.unit(6, "inches")
  14720. },
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(6 + 1 / 12, "feet"),
  14724. default: true
  14725. },
  14726. {
  14727. name: "Macro",
  14728. height: math.unit(20, "feet")
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(6, "feet"),
  14737. weight: math.unit(150, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/jamie-larsen/front.svg",
  14741. extra: 962 / 933,
  14742. bottom: 0.02
  14743. }
  14744. },
  14745. back: {
  14746. height: math.unit(6, "feet"),
  14747. weight: math.unit(150, "lb"),
  14748. name: "Back",
  14749. image: {
  14750. source: "./media/characters/jamie-larsen/back.svg",
  14751. extra: 997 / 946
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Macro",
  14758. height: math.unit(28 + 7 / 12, "feet"),
  14759. default: true
  14760. },
  14761. {
  14762. name: "Macro+",
  14763. height: math.unit(180, "feet")
  14764. },
  14765. {
  14766. name: "Megamacro",
  14767. height: math.unit(10, "miles")
  14768. },
  14769. {
  14770. name: "Gigamacro",
  14771. height: math.unit(200000, "miles")
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(6, "feet"),
  14780. weight: math.unit(120, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/vance/front.svg",
  14784. extra: 1980 / 1890,
  14785. bottom: 0.09
  14786. }
  14787. },
  14788. back: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(120, "lb"),
  14791. name: "Back",
  14792. image: {
  14793. source: "./media/characters/vance/back.svg",
  14794. extra: 2081 / 1994,
  14795. bottom: 0.014
  14796. }
  14797. },
  14798. hand: {
  14799. height: math.unit(0.88, "feet"),
  14800. name: "Hand",
  14801. image: {
  14802. source: "./media/characters/vance/hand.svg"
  14803. }
  14804. },
  14805. foot: {
  14806. height: math.unit(0.64, "feet"),
  14807. name: "Foot",
  14808. image: {
  14809. source: "./media/characters/vance/foot.svg"
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Small",
  14816. height: math.unit(90, "feet"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Macro",
  14821. height: math.unit(100, "meters")
  14822. },
  14823. {
  14824. name: "Megamacro",
  14825. height: math.unit(15, "miles")
  14826. },
  14827. ]
  14828. ))
  14829. characterMakers.push(() => makeCharacter(
  14830. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14831. {
  14832. front: {
  14833. height: math.unit(6, "feet"),
  14834. weight: math.unit(180, "lb"),
  14835. name: "Front",
  14836. image: {
  14837. source: "./media/characters/xochitl/front.svg",
  14838. extra: 2297 / 2261,
  14839. bottom: 0.065
  14840. }
  14841. },
  14842. back: {
  14843. height: math.unit(6, "feet"),
  14844. weight: math.unit(180, "lb"),
  14845. name: "Back",
  14846. image: {
  14847. source: "./media/characters/xochitl/back.svg",
  14848. extra: 2386 / 2354,
  14849. bottom: 0.01
  14850. }
  14851. },
  14852. foot: {
  14853. height: math.unit(6 / 5 * 1.15, "feet"),
  14854. weight: math.unit(150, "lb"),
  14855. name: "Foot",
  14856. image: {
  14857. source: "./media/characters/xochitl/foot.svg"
  14858. }
  14859. },
  14860. },
  14861. [
  14862. {
  14863. name: "Macro",
  14864. height: math.unit(80, "feet")
  14865. },
  14866. {
  14867. name: "Macro+",
  14868. height: math.unit(400, "feet"),
  14869. default: true
  14870. },
  14871. {
  14872. name: "Gigamacro",
  14873. height: math.unit(80000, "miles")
  14874. },
  14875. {
  14876. name: "Gigamacro+",
  14877. height: math.unit(400000, "miles")
  14878. },
  14879. {
  14880. name: "Teramacro",
  14881. height: math.unit(300, "AU")
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(6, "feet"),
  14890. weight: math.unit(150, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/vincent/front.svg",
  14894. extra: 1130 / 1080,
  14895. bottom: 0.055
  14896. }
  14897. },
  14898. beak: {
  14899. height: math.unit(6 * 0.1, "feet"),
  14900. name: "Beak",
  14901. image: {
  14902. source: "./media/characters/vincent/beak.svg"
  14903. }
  14904. },
  14905. hand: {
  14906. height: math.unit(6 * 0.85, "feet"),
  14907. weight: math.unit(150, "lb"),
  14908. name: "Hand",
  14909. image: {
  14910. source: "./media/characters/vincent/hand.svg"
  14911. }
  14912. },
  14913. foot: {
  14914. height: math.unit(6 * 0.19, "feet"),
  14915. weight: math.unit(150, "lb"),
  14916. name: "Foot",
  14917. image: {
  14918. source: "./media/characters/vincent/foot.svg"
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Base",
  14925. height: math.unit(6 + 5 / 12, "feet"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Macro",
  14930. height: math.unit(300, "feet")
  14931. },
  14932. {
  14933. name: "Megamacro",
  14934. height: math.unit(2, "miles")
  14935. },
  14936. {
  14937. name: "Gigamacro",
  14938. height: math.unit(1000, "miles")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(2, "meters"),
  14947. weight: math.unit(500, "kg"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/coatl/front.svg",
  14951. extra: 3948 / 3500,
  14952. bottom: 0.082
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(4, "meters")
  14960. },
  14961. {
  14962. name: "Macro",
  14963. height: math.unit(100, "meters"),
  14964. default: true
  14965. },
  14966. {
  14967. name: "Macro+",
  14968. height: math.unit(300, "meters")
  14969. },
  14970. {
  14971. name: "Megamacro",
  14972. height: math.unit(3, "gigameters")
  14973. },
  14974. {
  14975. name: "Megamacro+",
  14976. height: math.unit(300, "terameters")
  14977. },
  14978. {
  14979. name: "Megamacro++",
  14980. height: math.unit(3, "lightyears")
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(6, "feet"),
  14989. weight: math.unit(50, "kg"),
  14990. name: "front",
  14991. image: {
  14992. source: "./media/characters/shiroryu/front.svg",
  14993. extra: 1990 / 1935
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Mortal Mingling",
  15000. height: math.unit(3, "meters")
  15001. },
  15002. {
  15003. name: "Kaiju-ish",
  15004. height: math.unit(250, "meters")
  15005. },
  15006. {
  15007. name: "Somewhat Godly",
  15008. height: math.unit(400, "km"),
  15009. default: true
  15010. },
  15011. {
  15012. name: "Planetary",
  15013. height: math.unit(300, "megameters")
  15014. },
  15015. {
  15016. name: "Galaxy-dwarfing",
  15017. height: math.unit(450, "kiloparsecs")
  15018. },
  15019. {
  15020. name: "Universe Eater",
  15021. height: math.unit(150, "gigaparsecs")
  15022. },
  15023. {
  15024. name: "Almost Immeasurable",
  15025. height: math.unit(1.3e266, "yottaparsecs")
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(6, "feet"),
  15034. weight: math.unit(150, "lb"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/umeko/front.svg",
  15038. extra: 1,
  15039. bottom: 0.019
  15040. }
  15041. },
  15042. frontArmored: {
  15043. height: math.unit(6, "feet"),
  15044. weight: math.unit(150, "lb"),
  15045. name: "Front (Armored)",
  15046. image: {
  15047. source: "./media/characters/umeko/front-armored.svg",
  15048. extra: 1,
  15049. bottom: 0.021
  15050. }
  15051. },
  15052. },
  15053. [
  15054. {
  15055. name: "Macro",
  15056. height: math.unit(220, "feet"),
  15057. default: true
  15058. },
  15059. {
  15060. name: "Guardian Dragon",
  15061. height: math.unit(50, "miles")
  15062. },
  15063. {
  15064. name: "Cosmic",
  15065. height: math.unit(800000, "miles")
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15071. {
  15072. front: {
  15073. height: math.unit(6, "feet"),
  15074. weight: math.unit(150, "lb"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/cassidy/front.svg",
  15078. extra: 810/808,
  15079. bottom: 41/851
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Canon Height",
  15086. height: math.unit(120, "feet"),
  15087. default: true
  15088. },
  15089. {
  15090. name: "Macro+",
  15091. height: math.unit(400, "feet")
  15092. },
  15093. {
  15094. name: "Macro++",
  15095. height: math.unit(4000, "feet")
  15096. },
  15097. {
  15098. name: "Megamacro",
  15099. height: math.unit(3, "miles")
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(6, "feet"),
  15108. weight: math.unit(150, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/isaac/front.svg",
  15112. extra: 896 / 815,
  15113. bottom: 0.11
  15114. }
  15115. },
  15116. },
  15117. [
  15118. {
  15119. name: "Human Size",
  15120. height: math.unit(8, "feet"),
  15121. default: true
  15122. },
  15123. {
  15124. name: "Macro",
  15125. height: math.unit(400, "feet")
  15126. },
  15127. {
  15128. name: "Megamacro",
  15129. height: math.unit(50, "miles")
  15130. },
  15131. {
  15132. name: "Canon Height",
  15133. height: math.unit(200, "AU")
  15134. },
  15135. ]
  15136. ))
  15137. characterMakers.push(() => makeCharacter(
  15138. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15139. {
  15140. front: {
  15141. height: math.unit(6, "feet"),
  15142. weight: math.unit(72, "kg"),
  15143. name: "Front",
  15144. image: {
  15145. source: "./media/characters/sleekit/front.svg",
  15146. extra: 4693 / 4487,
  15147. bottom: 0.012
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Minimum Height",
  15154. height: math.unit(10, "meters")
  15155. },
  15156. {
  15157. name: "Smaller",
  15158. height: math.unit(25, "meters")
  15159. },
  15160. {
  15161. name: "Larger",
  15162. height: math.unit(38, "meters"),
  15163. default: true
  15164. },
  15165. {
  15166. name: "Maximum height",
  15167. height: math.unit(100, "meters")
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(6, "feet"),
  15176. weight: math.unit(150, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/nillia/front.svg",
  15180. extra: 2195 / 2037,
  15181. bottom: 0.005
  15182. }
  15183. },
  15184. back: {
  15185. height: math.unit(6, "feet"),
  15186. weight: math.unit(150, "lb"),
  15187. name: "Back",
  15188. image: {
  15189. source: "./media/characters/nillia/back.svg",
  15190. extra: 2195 / 2037,
  15191. bottom: 0.005
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Canon Height",
  15198. height: math.unit(489, "feet"),
  15199. default: true
  15200. }
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15205. {
  15206. front: {
  15207. height: math.unit(6, "feet"),
  15208. weight: math.unit(150, "lb"),
  15209. name: "Front",
  15210. image: {
  15211. source: "./media/characters/mesmyriza/front.svg",
  15212. extra: 2067 / 1784,
  15213. bottom: 0.035
  15214. }
  15215. },
  15216. foot: {
  15217. height: math.unit(6 / (250 / 35), "feet"),
  15218. name: "Foot",
  15219. image: {
  15220. source: "./media/characters/mesmyriza/foot.svg"
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Macro",
  15227. height: math.unit(457, "meters"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Megamacro",
  15232. height: math.unit(8, "megameters")
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(250, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/saudade/front.svg",
  15245. extra: 1172 / 1139,
  15246. bottom: 0.035
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Micro",
  15253. height: math.unit(3, "inches")
  15254. },
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(6, "feet"),
  15258. default: true
  15259. },
  15260. {
  15261. name: "Macro",
  15262. height: math.unit(50, "feet")
  15263. },
  15264. {
  15265. name: "Megamacro",
  15266. height: math.unit(2800, "feet")
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(5 + 4 / 12, "feet"),
  15275. weight: math.unit(100, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/keireer/front.svg",
  15279. extra: 716 / 666,
  15280. bottom: 0.05
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(5 + 4 / 12, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(5.5, "feet"),
  15297. weight: math.unit(90, "kg"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/mirja/front.svg",
  15301. extra: 1452/1262,
  15302. bottom: 67/1519
  15303. }
  15304. },
  15305. frontDressed: {
  15306. height: math.unit(5.5, "feet"),
  15307. weight: math.unit(90, "lb"),
  15308. name: "Front (Dressed)",
  15309. image: {
  15310. source: "./media/characters/mirja/dressed.svg",
  15311. extra: 1452/1262,
  15312. bottom: 67/1519
  15313. }
  15314. },
  15315. back: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(90, "lb"),
  15318. name: "Back",
  15319. image: {
  15320. source: "./media/characters/mirja/back.svg",
  15321. extra: 1892/1795,
  15322. bottom: 48/1940
  15323. }
  15324. },
  15325. maw: {
  15326. height: math.unit(1.312, "feet"),
  15327. name: "Maw",
  15328. image: {
  15329. source: "./media/characters/mirja/maw.svg"
  15330. }
  15331. },
  15332. paw: {
  15333. height: math.unit(1.15, "feet"),
  15334. name: "Paw",
  15335. image: {
  15336. source: "./media/characters/mirja/paw.svg"
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "\"Incognito\"",
  15343. height: math.unit(3, "meters")
  15344. },
  15345. {
  15346. name: "Strolling Size",
  15347. height: math.unit(15, "km")
  15348. },
  15349. {
  15350. name: "Larger Strolling Size",
  15351. height: math.unit(400, "km")
  15352. },
  15353. {
  15354. name: "Preferred Size",
  15355. height: math.unit(5000, "km"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "True Size",
  15360. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(15, "feet"),
  15369. weight: math.unit(880, "kg"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/nightraver/front.svg",
  15373. extra: 2444 / 2160,
  15374. bottom: 0.027
  15375. }
  15376. },
  15377. back: {
  15378. height: math.unit(15, "feet"),
  15379. weight: math.unit(880, "kg"),
  15380. name: "Back",
  15381. image: {
  15382. source: "./media/characters/nightraver/back.svg",
  15383. extra: 2309 / 2180,
  15384. bottom: 0.005
  15385. }
  15386. },
  15387. sole: {
  15388. height: math.unit(2.878, "feet"),
  15389. name: "Sole",
  15390. image: {
  15391. source: "./media/characters/nightraver/sole.svg"
  15392. }
  15393. },
  15394. foot: {
  15395. height: math.unit(2.285, "feet"),
  15396. name: "Foot",
  15397. image: {
  15398. source: "./media/characters/nightraver/foot.svg"
  15399. }
  15400. },
  15401. maw: {
  15402. height: math.unit(2.67, "feet"),
  15403. name: "Maw",
  15404. image: {
  15405. source: "./media/characters/nightraver/maw.svg"
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Micro",
  15412. height: math.unit(1, "cm")
  15413. },
  15414. {
  15415. name: "Normal",
  15416. height: math.unit(15, "feet"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Macro",
  15421. height: math.unit(300, "feet")
  15422. },
  15423. {
  15424. name: "Megamacro",
  15425. height: math.unit(300, "miles")
  15426. },
  15427. {
  15428. name: "Gigamacro",
  15429. height: math.unit(10000, "miles")
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15435. {
  15436. side: {
  15437. height: math.unit(2, "inches"),
  15438. weight: math.unit(5, "grams"),
  15439. name: "Side",
  15440. image: {
  15441. source: "./media/characters/arc/side.svg"
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Micro",
  15448. height: math.unit(2, "inches"),
  15449. default: true
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15455. {
  15456. front: {
  15457. height: math.unit(1.1938, "meters"),
  15458. weight: math.unit(54, "kg"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/nebula-shahar/front.svg",
  15462. extra: 1642 / 1436,
  15463. bottom: 0.06
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Megamicro",
  15470. height: math.unit(0.3, "mm")
  15471. },
  15472. {
  15473. name: "Micro",
  15474. height: math.unit(3, "cm")
  15475. },
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(138, "cm"),
  15479. default: true
  15480. },
  15481. {
  15482. name: "Macro",
  15483. height: math.unit(30, "m")
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(5.24, "feet"),
  15492. weight: math.unit(150, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/shayla/front.svg",
  15496. extra: 1512 / 1414,
  15497. bottom: 0.01
  15498. }
  15499. },
  15500. back: {
  15501. height: math.unit(5.24, "feet"),
  15502. weight: math.unit(150, "lb"),
  15503. name: "Back",
  15504. image: {
  15505. source: "./media/characters/shayla/back.svg",
  15506. extra: 1512 / 1414
  15507. }
  15508. },
  15509. hand: {
  15510. height: math.unit(0.7781496062992126, "feet"),
  15511. name: "Hand",
  15512. image: {
  15513. source: "./media/characters/shayla/hand.svg"
  15514. }
  15515. },
  15516. foot: {
  15517. height: math.unit(1.4206036745406823, "feet"),
  15518. name: "Foot",
  15519. image: {
  15520. source: "./media/characters/shayla/foot.svg"
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Micro",
  15527. height: math.unit(0.32, "feet")
  15528. },
  15529. {
  15530. name: "Normal",
  15531. height: math.unit(5.24, "feet"),
  15532. default: true
  15533. },
  15534. {
  15535. name: "Macro",
  15536. height: math.unit(492.12, "feet")
  15537. },
  15538. {
  15539. name: "Megamacro",
  15540. height: math.unit(186.41, "miles")
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(2.2, "m"),
  15549. weight: math.unit(120, "kg"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/pia-jr/front.svg",
  15553. extra: 1000 / 970,
  15554. bottom: 0.035
  15555. }
  15556. },
  15557. hand: {
  15558. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15559. name: "Hand",
  15560. image: {
  15561. source: "./media/characters/pia-jr/hand.svg"
  15562. }
  15563. },
  15564. paw: {
  15565. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15566. name: "Paw",
  15567. image: {
  15568. source: "./media/characters/pia-jr/paw.svg"
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Micro",
  15575. height: math.unit(1.2, "cm")
  15576. },
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(2.2, "m"),
  15580. default: true
  15581. },
  15582. {
  15583. name: "Macro",
  15584. height: math.unit(180, "m")
  15585. },
  15586. {
  15587. name: "Megamacro",
  15588. height: math.unit(420, "km")
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(2, "m"),
  15597. weight: math.unit(115, "kg"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/pia-sr/front.svg",
  15601. extra: 760 / 730,
  15602. bottom: 0.015
  15603. }
  15604. },
  15605. back: {
  15606. height: math.unit(2, "m"),
  15607. weight: math.unit(115, "kg"),
  15608. name: "Back",
  15609. image: {
  15610. source: "./media/characters/pia-sr/back.svg",
  15611. extra: 760 / 730,
  15612. bottom: 0.01
  15613. }
  15614. },
  15615. hand: {
  15616. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15617. name: "Hand",
  15618. image: {
  15619. source: "./media/characters/pia-sr/hand.svg"
  15620. }
  15621. },
  15622. foot: {
  15623. height: math.unit(1.83, "feet"),
  15624. name: "Foot",
  15625. image: {
  15626. source: "./media/characters/pia-sr/foot.svg"
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Micro",
  15633. height: math.unit(88, "mm")
  15634. },
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(2, "m"),
  15638. default: true
  15639. },
  15640. {
  15641. name: "Macro",
  15642. height: math.unit(200, "m")
  15643. },
  15644. {
  15645. name: "Megamacro",
  15646. height: math.unit(420, "km")
  15647. },
  15648. ]
  15649. ))
  15650. characterMakers.push(() => makeCharacter(
  15651. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15652. {
  15653. front: {
  15654. height: math.unit(8 + 2 / 12, "feet"),
  15655. weight: math.unit(300, "lb"),
  15656. name: "Front",
  15657. image: {
  15658. source: "./media/characters/kibibyte/front.svg",
  15659. extra: 2221 / 2098,
  15660. bottom: 0.04
  15661. }
  15662. },
  15663. },
  15664. [
  15665. {
  15666. name: "Normal",
  15667. height: math.unit(8 + 2 / 12, "feet"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Socialable Macro",
  15672. height: math.unit(50, "feet")
  15673. },
  15674. {
  15675. name: "Macro",
  15676. height: math.unit(300, "feet")
  15677. },
  15678. {
  15679. name: "Megamacro",
  15680. height: math.unit(500, "miles")
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6, "feet"),
  15689. weight: math.unit(150, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/felix/front.svg",
  15693. extra: 762 / 722,
  15694. bottom: 0.02
  15695. }
  15696. },
  15697. frontClothed: {
  15698. height: math.unit(6, "feet"),
  15699. weight: math.unit(150, "lb"),
  15700. name: "Front (Clothed)",
  15701. image: {
  15702. source: "./media/characters/felix/front-clothed.svg",
  15703. extra: 762 / 722,
  15704. bottom: 0.02
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(6 + 8 / 12, "feet"),
  15712. default: true
  15713. },
  15714. {
  15715. name: "Macro",
  15716. height: math.unit(2600, "feet")
  15717. },
  15718. {
  15719. name: "Megamacro",
  15720. height: math.unit(450, "miles")
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(6 + 1 / 12, "feet"),
  15729. weight: math.unit(250, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/tobo/front.svg",
  15733. extra: 608 / 586,
  15734. bottom: 0.023
  15735. }
  15736. },
  15737. back: {
  15738. height: math.unit(6 + 1 / 12, "feet"),
  15739. weight: math.unit(250, "lb"),
  15740. name: "Back",
  15741. image: {
  15742. source: "./media/characters/tobo/back.svg",
  15743. extra: 608 / 586
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Nano",
  15750. height: math.unit(2, "nm")
  15751. },
  15752. {
  15753. name: "Megamicro",
  15754. height: math.unit(0.1, "mm")
  15755. },
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(1, "inch"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "Human-sized",
  15763. height: math.unit(6 + 1 / 12, "feet")
  15764. },
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(250, "feet")
  15768. },
  15769. {
  15770. name: "Megamacro",
  15771. height: math.unit(75, "miles")
  15772. },
  15773. {
  15774. name: "Texas-sized",
  15775. height: math.unit(750, "miles")
  15776. },
  15777. {
  15778. name: "Teramacro",
  15779. height: math.unit(50000, "miles")
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15785. {
  15786. front: {
  15787. height: math.unit(6, "feet"),
  15788. weight: math.unit(269, "lb"),
  15789. name: "Front",
  15790. image: {
  15791. source: "./media/characters/danny-kapowsky/front.svg",
  15792. extra: 766 / 736,
  15793. bottom: 0.044
  15794. }
  15795. },
  15796. back: {
  15797. height: math.unit(6, "feet"),
  15798. weight: math.unit(269, "lb"),
  15799. name: "Back",
  15800. image: {
  15801. source: "./media/characters/danny-kapowsky/back.svg",
  15802. extra: 797 / 760,
  15803. bottom: 0.025
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Macro",
  15810. height: math.unit(150, "feet"),
  15811. default: true
  15812. },
  15813. {
  15814. name: "Macro+",
  15815. height: math.unit(200, "feet")
  15816. },
  15817. {
  15818. name: "Macro++",
  15819. height: math.unit(300, "feet")
  15820. },
  15821. {
  15822. name: "Macro+++",
  15823. height: math.unit(400, "feet")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15829. {
  15830. side: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(170, "lb"),
  15833. name: "Side",
  15834. image: {
  15835. source: "./media/characters/finn/side.svg",
  15836. extra: 1953 / 1807,
  15837. bottom: 0.057
  15838. }
  15839. },
  15840. },
  15841. [
  15842. {
  15843. name: "Megamacro",
  15844. height: math.unit(14445, "feet"),
  15845. default: true
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(5 + 6 / 12, "feet"),
  15854. weight: math.unit(125, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/roy/front.svg",
  15858. extra: 1,
  15859. bottom: 0.11
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Micro",
  15866. height: math.unit(3, "inches"),
  15867. default: true
  15868. },
  15869. {
  15870. name: "Normal",
  15871. height: math.unit(5 + 6 / 12, "feet")
  15872. },
  15873. {
  15874. name: "Lesser Macro",
  15875. height: math.unit(60, "feet")
  15876. },
  15877. {
  15878. name: "Greater Macro",
  15879. height: math.unit(120, "feet")
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15885. {
  15886. front: {
  15887. height: math.unit(6, "feet"),
  15888. weight: math.unit(100, "lb"),
  15889. name: "Front",
  15890. image: {
  15891. source: "./media/characters/aevsivs/front.svg",
  15892. extra: 1,
  15893. bottom: 0.03
  15894. }
  15895. },
  15896. back: {
  15897. height: math.unit(6, "feet"),
  15898. weight: math.unit(100, "lb"),
  15899. name: "Back",
  15900. image: {
  15901. source: "./media/characters/aevsivs/back.svg"
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Micro",
  15908. height: math.unit(2, "inches"),
  15909. default: true
  15910. },
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(5, "feet")
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15919. {
  15920. front: {
  15921. height: math.unit(5 + 7 / 12, "feet"),
  15922. weight: math.unit(159, "lb"),
  15923. name: "Front",
  15924. image: {
  15925. source: "./media/characters/hildegard/front.svg",
  15926. extra: 289 / 269,
  15927. bottom: 7.63 / 297.8
  15928. }
  15929. },
  15930. back: {
  15931. height: math.unit(5 + 7 / 12, "feet"),
  15932. weight: math.unit(159, "lb"),
  15933. name: "Back",
  15934. image: {
  15935. source: "./media/characters/hildegard/back.svg",
  15936. extra: 280 / 260,
  15937. bottom: 2.3 / 282
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Normal",
  15944. height: math.unit(5 + 7 / 12, "feet"),
  15945. default: true
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15951. {
  15952. bernard: {
  15953. height: math.unit(2 + 7 / 12, "feet"),
  15954. weight: math.unit(66, "lb"),
  15955. name: "Bernard",
  15956. rename: true,
  15957. image: {
  15958. source: "./media/characters/bernard-wilder/bernard.svg",
  15959. extra: 192 / 128,
  15960. bottom: 0.05
  15961. }
  15962. },
  15963. wilder: {
  15964. height: math.unit(5 + 8 / 12, "feet"),
  15965. weight: math.unit(143, "lb"),
  15966. name: "Wilder",
  15967. rename: true,
  15968. image: {
  15969. source: "./media/characters/bernard-wilder/wilder.svg",
  15970. extra: 361 / 312,
  15971. bottom: 0.02
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(2 + 7 / 12, "feet"),
  15979. default: true
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15985. {
  15986. anthro: {
  15987. height: math.unit(6 + 1 / 12, "feet"),
  15988. weight: math.unit(155, "lb"),
  15989. name: "Anthro",
  15990. image: {
  15991. source: "./media/characters/hearth/anthro.svg",
  15992. extra: 1178/1136,
  15993. bottom: 28/1206
  15994. }
  15995. },
  15996. feral: {
  15997. height: math.unit(3.78, "feet"),
  15998. weight: math.unit(35, "kg"),
  15999. name: "Feral",
  16000. image: {
  16001. source: "./media/characters/hearth/feral.svg",
  16002. extra: 153 / 135,
  16003. bottom: 0.03
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Normal",
  16010. height: math.unit(6 + 1 / 12, "feet"),
  16011. default: true
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16017. {
  16018. front: {
  16019. height: math.unit(6, "feet"),
  16020. weight: math.unit(182, "lb"),
  16021. name: "Front",
  16022. image: {
  16023. source: "./media/characters/ingrid/front.svg",
  16024. extra: 294 / 268,
  16025. bottom: 0.027
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(6, "feet"),
  16033. default: true
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16039. {
  16040. eevee: {
  16041. height: math.unit(2 + 10 / 12, "feet"),
  16042. weight: math.unit(86, "lb"),
  16043. name: "Malgam",
  16044. image: {
  16045. source: "./media/characters/malgam/eevee.svg",
  16046. extra: 952/784,
  16047. bottom: 38/990
  16048. }
  16049. },
  16050. sylveon: {
  16051. height: math.unit(4, "feet"),
  16052. weight: math.unit(101, "lb"),
  16053. name: "Future Malgam",
  16054. rename: true,
  16055. image: {
  16056. source: "./media/characters/malgam/sylveon.svg",
  16057. extra: 371 / 325,
  16058. bottom: 0.015
  16059. }
  16060. },
  16061. gigantamax: {
  16062. height: math.unit(50, "feet"),
  16063. name: "Gigantamax Malgam",
  16064. rename: true,
  16065. image: {
  16066. source: "./media/characters/malgam/gigantamax.svg"
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Normal",
  16073. height: math.unit(2 + 10 / 12, "feet"),
  16074. default: true
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16080. {
  16081. front: {
  16082. height: math.unit(5 + 11 / 12, "feet"),
  16083. weight: math.unit(188, "lb"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/fleur/front.svg",
  16087. extra: 309 / 283,
  16088. bottom: 0.007
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Normal",
  16095. height: math.unit(5 + 11 / 12, "feet"),
  16096. default: true
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16102. {
  16103. front: {
  16104. height: math.unit(5 + 4 / 12, "feet"),
  16105. weight: math.unit(122, "lb"),
  16106. name: "Front",
  16107. image: {
  16108. source: "./media/characters/jude/front.svg",
  16109. extra: 288 / 273,
  16110. bottom: 0.03
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(5 + 4 / 12, "feet"),
  16118. default: true
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16124. {
  16125. front: {
  16126. height: math.unit(5 + 11 / 12, "feet"),
  16127. weight: math.unit(190, "lb"),
  16128. name: "Front",
  16129. image: {
  16130. source: "./media/characters/seara/front.svg",
  16131. extra: 1,
  16132. bottom: 0.05
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Normal",
  16139. height: math.unit(5 + 11 / 12, "feet"),
  16140. default: true
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(16 + 5 / 12, "feet"),
  16149. weight: math.unit(524, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/caspian-lugia/front.svg",
  16153. extra: 1,
  16154. bottom: 0.04
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(16 + 5 / 12, "feet"),
  16162. default: true
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(5 + 7 / 12, "feet"),
  16171. weight: math.unit(170, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/mika/front.svg",
  16175. extra: 1,
  16176. bottom: 0.016
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Normal",
  16183. height: math.unit(5 + 7 / 12, "feet"),
  16184. default: true
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6 + 2 / 12, "feet"),
  16193. weight: math.unit(268, "lb"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/sol/front.svg",
  16197. extra: 247 / 231,
  16198. bottom: 0.05
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(6 + 2 / 12, "feet"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16212. {
  16213. buizel: {
  16214. height: math.unit(2 + 5 / 12, "feet"),
  16215. weight: math.unit(87, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/umiko/buizel.svg",
  16219. extra: 172 / 157,
  16220. bottom: 0.01
  16221. },
  16222. form: "buizel",
  16223. default: true
  16224. },
  16225. floatzel: {
  16226. height: math.unit(5 + 9 / 12, "feet"),
  16227. weight: math.unit(250, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/umiko/floatzel.svg",
  16231. extra: 1076/1006,
  16232. bottom: 15/1091
  16233. },
  16234. form: "floatzel",
  16235. default: true
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(2 + 5 / 12, "feet"),
  16242. form: "buizel",
  16243. default: true
  16244. },
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(5 + 9 / 12, "feet"),
  16248. form: "floatzel",
  16249. default: true
  16250. },
  16251. ],
  16252. {
  16253. "buizel": {
  16254. name: "Buizel"
  16255. },
  16256. "floatzel": {
  16257. name: "Floatzel",
  16258. default: true
  16259. }
  16260. }
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6 + 2 / 12, "feet"),
  16267. weight: math.unit(146, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/iliac/front.svg",
  16271. extra: 389 / 365,
  16272. bottom: 0.035
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Normal",
  16279. height: math.unit(6 + 2 / 12, "feet"),
  16280. default: true
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16286. {
  16287. front: {
  16288. height: math.unit(6, "feet"),
  16289. weight: math.unit(170, "lb"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/topaz/front.svg",
  16293. extra: 317 / 303,
  16294. bottom: 0.055
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(6, "feet"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(5 + 11 / 12, "feet"),
  16311. weight: math.unit(144, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/gabriel/front.svg",
  16315. extra: 285 / 262,
  16316. bottom: 0.004
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(5 + 11 / 12, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16330. {
  16331. side: {
  16332. height: math.unit(6 + 5 / 12, "feet"),
  16333. weight: math.unit(300, "lb"),
  16334. name: "Side",
  16335. image: {
  16336. source: "./media/characters/tempest-suicune/side.svg",
  16337. extra: 195 / 154,
  16338. bottom: 0.04
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(6 + 5 / 12, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(7 + 2 / 12, "feet"),
  16355. weight: math.unit(322, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/vulcan/front.svg",
  16359. extra: 154 / 147,
  16360. bottom: 0.04
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(7 + 2 / 12, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(5 + 10 / 12, "feet"),
  16377. weight: math.unit(264, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/gault/front.svg",
  16381. extra: 161 / 140,
  16382. bottom: 0.028
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(5 + 10 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(6, "feet"),
  16399. weight: math.unit(150, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/shard/front.svg",
  16403. extra: 273 / 238,
  16404. bottom: 0.02
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(3 + 6 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(5 + 11 / 12, "feet"),
  16421. weight: math.unit(146, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/ashe/front.svg",
  16425. extra: 400 / 373,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(5 + 11 / 12, "feet"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(5 + 5 / 12, "feet"),
  16443. weight: math.unit(135, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/beatrix/front.svg",
  16447. extra: 392 / 379,
  16448. bottom: 0.01
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(6, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(6 + 2/12, "feet"),
  16465. weight: math.unit(135, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/ignatius/front.svg",
  16469. extra: 1380/1259,
  16470. bottom: 27/1407
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(6 + 2/12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6 + 2 / 12, "feet"),
  16487. weight: math.unit(138, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/mei-li/front.svg",
  16491. extra: 237 / 229,
  16492. bottom: 0.03
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(6 + 2 / 12, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(2 + 4 / 12, "feet"),
  16509. weight: math.unit(62, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/puru/front.svg",
  16513. extra: 206 / 149,
  16514. bottom: 0.06
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(2 + 4 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16528. {
  16529. anthro: {
  16530. height: math.unit(5 + 8/12, "feet"),
  16531. weight: math.unit(200, "lb"),
  16532. energyNeed: math.unit(2000, "kcal"),
  16533. name: "Anthro",
  16534. image: {
  16535. source: "./media/characters/kee/anthro.svg",
  16536. extra: 3251/3184,
  16537. bottom: 250/3501
  16538. }
  16539. },
  16540. taur: {
  16541. height: math.unit(11, "feet"),
  16542. weight: math.unit(500, "lb"),
  16543. energyNeed: math.unit(5000, "kcal"),
  16544. name: "Taur",
  16545. image: {
  16546. source: "./media/characters/kee/taur.svg",
  16547. extra: 1362/1320,
  16548. bottom: 83/1445
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(5 + 8/12, "feet"),
  16556. default: true
  16557. },
  16558. {
  16559. name: "Macro",
  16560. height: math.unit(35, "feet")
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16566. {
  16567. anthro: {
  16568. height: math.unit(7, "feet"),
  16569. weight: math.unit(190, "lb"),
  16570. name: "Anthro",
  16571. image: {
  16572. source: "./media/characters/cobalt-dracha/anthro.svg",
  16573. extra: 231 / 225,
  16574. bottom: 0.04
  16575. }
  16576. },
  16577. feral: {
  16578. height: math.unit(9 + 7 / 12, "feet"),
  16579. weight: math.unit(294, "lb"),
  16580. name: "Feral",
  16581. image: {
  16582. source: "./media/characters/cobalt-dracha/feral.svg",
  16583. extra: 692 / 633,
  16584. bottom: 0.05
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(7, "feet"),
  16592. default: true
  16593. },
  16594. ]
  16595. ))
  16596. characterMakers.push(() => makeCharacter(
  16597. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16598. {
  16599. fallen: {
  16600. height: math.unit(11 + 8 / 12, "feet"),
  16601. weight: math.unit(485, "lb"),
  16602. name: "Java (Fallen)",
  16603. rename: true,
  16604. image: {
  16605. source: "./media/characters/java/fallen.svg",
  16606. extra: 226 / 208,
  16607. bottom: 0.005
  16608. }
  16609. },
  16610. godkin: {
  16611. height: math.unit(10 + 6 / 12, "feet"),
  16612. weight: math.unit(328, "lb"),
  16613. name: "Java (Godkin)",
  16614. rename: true,
  16615. image: {
  16616. source: "./media/characters/java/godkin.svg",
  16617. extra: 1104/1068,
  16618. bottom: 36/1140
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(11 + 8 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(5 + 9 / 12, "feet"),
  16635. weight: math.unit(170, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/purna/front.svg",
  16639. extra: 239 / 229,
  16640. bottom: 0.01
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(5 + 9 / 12, "feet"),
  16648. default: true
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16654. {
  16655. front: {
  16656. height: math.unit(5 + 9 / 12, "feet"),
  16657. weight: math.unit(142, "lb"),
  16658. name: "Front",
  16659. image: {
  16660. source: "./media/characters/kuva/front.svg",
  16661. extra: 281 / 271,
  16662. bottom: 0.006
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(5 + 9 / 12, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16676. {
  16677. anthro: {
  16678. height: math.unit(9 + 2 / 12, "feet"),
  16679. weight: math.unit(270, "lb"),
  16680. name: "Anthro",
  16681. image: {
  16682. source: "./media/characters/embra/anthro.svg",
  16683. extra: 200 / 187,
  16684. bottom: 0.02
  16685. }
  16686. },
  16687. feral: {
  16688. height: math.unit(18 + 8 / 12, "feet"),
  16689. weight: math.unit(576, "lb"),
  16690. name: "Feral",
  16691. image: {
  16692. source: "./media/characters/embra/feral.svg",
  16693. extra: 152 / 137,
  16694. bottom: 0.037
  16695. }
  16696. },
  16697. },
  16698. [
  16699. {
  16700. name: "Normal",
  16701. height: math.unit(9 + 2 / 12, "feet"),
  16702. default: true
  16703. },
  16704. ]
  16705. ))
  16706. characterMakers.push(() => makeCharacter(
  16707. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16708. {
  16709. anthro: {
  16710. height: math.unit(10 + 9 / 12, "feet"),
  16711. weight: math.unit(224, "lb"),
  16712. name: "Anthro",
  16713. image: {
  16714. source: "./media/characters/grottos/anthro.svg",
  16715. extra: 350 / 332,
  16716. bottom: 0.045
  16717. }
  16718. },
  16719. feral: {
  16720. height: math.unit(20 + 7 / 12, "feet"),
  16721. weight: math.unit(629, "lb"),
  16722. name: "Feral",
  16723. image: {
  16724. source: "./media/characters/grottos/feral.svg",
  16725. extra: 207 / 190,
  16726. bottom: 0.05
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(10 + 9 / 12, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16740. {
  16741. anthro: {
  16742. height: math.unit(9 + 6 / 12, "feet"),
  16743. weight: math.unit(298, "lb"),
  16744. name: "Anthro",
  16745. image: {
  16746. source: "./media/characters/frifna/anthro.svg",
  16747. extra: 282 / 269,
  16748. bottom: 0.015
  16749. }
  16750. },
  16751. feral: {
  16752. height: math.unit(16 + 2 / 12, "feet"),
  16753. weight: math.unit(624, "lb"),
  16754. name: "Feral",
  16755. image: {
  16756. source: "./media/characters/frifna/feral.svg"
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(9 + 6 / 12, "feet"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(6 + 2 / 12, "feet"),
  16773. weight: math.unit(168, "lb"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/elise/front.svg",
  16777. extra: 276 / 271
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(6 + 2 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(5 + 10 / 12, "feet"),
  16794. weight: math.unit(210, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/glade/front.svg",
  16798. extra: 258 / 247,
  16799. bottom: 0.008
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(5 + 10 / 12, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(5 + 10 / 12, "feet"),
  16816. weight: math.unit(129, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/rina/front.svg",
  16820. extra: 266 / 255,
  16821. bottom: 0.005
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(5 + 10 / 12, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(6 + 1 / 12, "feet"),
  16838. weight: math.unit(192, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/veronica/front.svg",
  16842. extra: 319 / 309,
  16843. bottom: 0.005
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(6 + 1 / 12, "feet"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16857. {
  16858. front: {
  16859. height: math.unit(9 + 3 / 12, "feet"),
  16860. weight: math.unit(1100, "lb"),
  16861. name: "Front",
  16862. image: {
  16863. source: "./media/characters/braxton/front.svg",
  16864. extra: 1057 / 984,
  16865. bottom: 0.05
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(9 + 3 / 12, "feet")
  16873. },
  16874. {
  16875. name: "Giant",
  16876. height: math.unit(300, "feet"),
  16877. default: true
  16878. },
  16879. {
  16880. name: "Macro",
  16881. height: math.unit(700, "feet")
  16882. },
  16883. {
  16884. name: "Megamacro",
  16885. height: math.unit(6000, "feet")
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16891. {
  16892. front: {
  16893. height: math.unit(6 + 7 / 12, "feet"),
  16894. weight: math.unit(150, "lb"),
  16895. name: "Front",
  16896. image: {
  16897. source: "./media/characters/blue-feyonics/front.svg",
  16898. extra: 1403 / 1306,
  16899. bottom: 0.047
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(6 + 7 / 12, "feet"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16913. {
  16914. front: {
  16915. height: math.unit(1.8, "meters"),
  16916. weight: math.unit(60, "kg"),
  16917. name: "Front",
  16918. image: {
  16919. source: "./media/characters/maxwell/front.svg",
  16920. extra: 2060 / 1873
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Micro",
  16927. height: math.unit(1, "mm")
  16928. },
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(1.8, "meter"),
  16932. default: true
  16933. },
  16934. {
  16935. name: "Macro",
  16936. height: math.unit(30, "meters")
  16937. },
  16938. {
  16939. name: "Megamacro",
  16940. height: math.unit(10, "km")
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/jack/front.svg",
  16953. extra: 1754 / 1640,
  16954. bottom: 0.01
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(80000, "feet"),
  16962. default: true
  16963. },
  16964. {
  16965. name: "Max size",
  16966. height: math.unit(10, "lightyears")
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16972. {
  16973. urban: {
  16974. height: math.unit(5, "feet"),
  16975. weight: math.unit(240, "lb"),
  16976. name: "Urban",
  16977. image: {
  16978. source: "./media/characters/cafat/urban.svg",
  16979. extra: 1223/1126,
  16980. bottom: 205/1428
  16981. }
  16982. },
  16983. summer: {
  16984. height: math.unit(5, "feet"),
  16985. weight: math.unit(240, "lb"),
  16986. name: "Summer",
  16987. image: {
  16988. source: "./media/characters/cafat/summer.svg",
  16989. extra: 1223/1126,
  16990. bottom: 205/1428
  16991. }
  16992. },
  16993. winter: {
  16994. height: math.unit(5, "feet"),
  16995. weight: math.unit(240, "lb"),
  16996. name: "Winter",
  16997. image: {
  16998. source: "./media/characters/cafat/winter.svg",
  16999. extra: 1223/1126,
  17000. bottom: 205/1428
  17001. }
  17002. },
  17003. lingerie: {
  17004. height: math.unit(5, "feet"),
  17005. weight: math.unit(240, "lb"),
  17006. name: "Lingerie",
  17007. image: {
  17008. source: "./media/characters/cafat/lingerie.svg",
  17009. extra: 1223/1126,
  17010. bottom: 205/1428
  17011. }
  17012. },
  17013. upright: {
  17014. height: math.unit(6.3, "feet"),
  17015. weight: math.unit(240, "lb"),
  17016. name: "Upright",
  17017. image: {
  17018. source: "./media/characters/cafat/upright.svg",
  17019. bottom: 0.01
  17020. }
  17021. },
  17022. uprightFull: {
  17023. height: math.unit(6.3, "feet"),
  17024. weight: math.unit(240, "lb"),
  17025. name: "Upright (Full)",
  17026. image: {
  17027. source: "./media/characters/cafat/upright-full.svg",
  17028. bottom: 0.01
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Small",
  17035. height: math.unit(5, "feet"),
  17036. default: true
  17037. },
  17038. {
  17039. name: "Large",
  17040. height: math.unit(13, "feet")
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(6, "feet"),
  17049. weight: math.unit(150, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/verin-raharra/front.svg",
  17053. extra: 5019 / 4835,
  17054. bottom: 0.023
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(7 + 5 / 12, "feet"),
  17062. default: true
  17063. },
  17064. {
  17065. name: "Upsized",
  17066. height: math.unit(20, "feet")
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(7, "feet"),
  17075. weight: math.unit(230, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/nakata/front.svg",
  17079. extra: 1.005,
  17080. bottom: 0.01
  17081. }
  17082. },
  17083. },
  17084. [
  17085. {
  17086. name: "Normal",
  17087. height: math.unit(7, "feet"),
  17088. default: true
  17089. },
  17090. {
  17091. name: "Big",
  17092. height: math.unit(14, "feet")
  17093. },
  17094. {
  17095. name: "Macro",
  17096. height: math.unit(400, "feet")
  17097. },
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17102. {
  17103. front: {
  17104. height: math.unit(4.91, "feet"),
  17105. weight: math.unit(100, "lb"),
  17106. name: "Front",
  17107. image: {
  17108. source: "./media/characters/lily/front.svg",
  17109. extra: 1585 / 1415,
  17110. bottom: 0.02
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(4.91, "feet"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17124. {
  17125. laying: {
  17126. height: math.unit(4 + 4 / 12, "feet"),
  17127. weight: math.unit(600, "lb"),
  17128. name: "Laying",
  17129. image: {
  17130. source: "./media/characters/sheila/laying.svg",
  17131. extra: 1333 / 1265,
  17132. bottom: 0.16
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(4 + 4 / 12, "feet"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(6, "feet"),
  17149. weight: math.unit(190, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/sax/front.svg",
  17153. extra: 1187 / 973,
  17154. bottom: 0.042
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Micro",
  17161. height: math.unit(4, "inches"),
  17162. default: true
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17168. {
  17169. front: {
  17170. height: math.unit(6, "feet"),
  17171. weight: math.unit(150, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/pandora/front.svg",
  17175. extra: 2720 / 2556,
  17176. bottom: 0.015
  17177. }
  17178. },
  17179. back: {
  17180. height: math.unit(6, "feet"),
  17181. weight: math.unit(150, "lb"),
  17182. name: "Back",
  17183. image: {
  17184. source: "./media/characters/pandora/back.svg",
  17185. extra: 2720 / 2556,
  17186. bottom: 0.01
  17187. }
  17188. },
  17189. beans: {
  17190. height: math.unit(6 / 8, "feet"),
  17191. name: "Beans",
  17192. image: {
  17193. source: "./media/characters/pandora/beans.svg"
  17194. }
  17195. },
  17196. collar: {
  17197. height: math.unit(0.31, "feet"),
  17198. name: "Collar",
  17199. image: {
  17200. source: "./media/characters/pandora/collar.svg"
  17201. }
  17202. },
  17203. skirt: {
  17204. height: math.unit(6, "feet"),
  17205. weight: math.unit(150, "lb"),
  17206. name: "Skirt",
  17207. image: {
  17208. source: "./media/characters/pandora/skirt.svg",
  17209. extra: 1622 / 1525,
  17210. bottom: 0.015
  17211. }
  17212. },
  17213. hoodie: {
  17214. height: math.unit(6, "feet"),
  17215. weight: math.unit(150, "lb"),
  17216. name: "Hoodie",
  17217. image: {
  17218. source: "./media/characters/pandora/hoodie.svg",
  17219. extra: 1622 / 1525,
  17220. bottom: 0.015
  17221. }
  17222. },
  17223. casual: {
  17224. height: math.unit(6, "feet"),
  17225. weight: math.unit(150, "lb"),
  17226. name: "Casual",
  17227. image: {
  17228. source: "./media/characters/pandora/casual.svg",
  17229. extra: 1622 / 1525,
  17230. bottom: 0.015
  17231. }
  17232. },
  17233. },
  17234. [
  17235. {
  17236. name: "Normal",
  17237. height: math.unit(6, "feet")
  17238. },
  17239. {
  17240. name: "Big Steppy",
  17241. height: math.unit(1, "km"),
  17242. default: true
  17243. },
  17244. {
  17245. name: "Galactic Steppy",
  17246. height: math.unit(2, "gigameters")
  17247. },
  17248. ]
  17249. ))
  17250. characterMakers.push(() => makeCharacter(
  17251. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17252. {
  17253. side: {
  17254. height: math.unit(10, "feet"),
  17255. weight: math.unit(800, "kg"),
  17256. name: "Side",
  17257. image: {
  17258. source: "./media/characters/venio-darcony/side.svg",
  17259. extra: 1373 / 1003,
  17260. bottom: 0.037
  17261. }
  17262. },
  17263. front: {
  17264. height: math.unit(19, "feet"),
  17265. weight: math.unit(800, "kg"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/venio-darcony/front.svg"
  17269. }
  17270. },
  17271. back: {
  17272. height: math.unit(19, "feet"),
  17273. weight: math.unit(800, "kg"),
  17274. name: "Back",
  17275. image: {
  17276. source: "./media/characters/venio-darcony/back.svg"
  17277. }
  17278. },
  17279. sideNsfw: {
  17280. height: math.unit(10, "feet"),
  17281. weight: math.unit(800, "kg"),
  17282. name: "Side (NSFW)",
  17283. image: {
  17284. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17285. extra: 1373 / 1003,
  17286. bottom: 0.037
  17287. }
  17288. },
  17289. frontNsfw: {
  17290. height: math.unit(19, "feet"),
  17291. weight: math.unit(800, "kg"),
  17292. name: "Front (NSFW)",
  17293. image: {
  17294. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17295. }
  17296. },
  17297. backNsfw: {
  17298. height: math.unit(19, "feet"),
  17299. weight: math.unit(800, "kg"),
  17300. name: "Back (NSFW)",
  17301. image: {
  17302. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17303. }
  17304. },
  17305. sideArmored: {
  17306. height: math.unit(10, "feet"),
  17307. weight: math.unit(800, "kg"),
  17308. name: "Side (Armored)",
  17309. image: {
  17310. source: "./media/characters/venio-darcony/side-armored.svg",
  17311. extra: 1373 / 1003,
  17312. bottom: 0.037
  17313. }
  17314. },
  17315. frontArmored: {
  17316. height: math.unit(19, "feet"),
  17317. weight: math.unit(900, "kg"),
  17318. name: "Front (Armored)",
  17319. image: {
  17320. source: "./media/characters/venio-darcony/front-armored.svg"
  17321. }
  17322. },
  17323. backArmored: {
  17324. height: math.unit(19, "feet"),
  17325. weight: math.unit(900, "kg"),
  17326. name: "Back (Armored)",
  17327. image: {
  17328. source: "./media/characters/venio-darcony/back-armored.svg"
  17329. }
  17330. },
  17331. sword: {
  17332. height: math.unit(10, "feet"),
  17333. weight: math.unit(50, "lb"),
  17334. name: "Sword",
  17335. image: {
  17336. source: "./media/characters/venio-darcony/sword.svg"
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(10, "feet")
  17344. },
  17345. {
  17346. name: "Macro",
  17347. height: math.unit(130, "feet"),
  17348. default: true
  17349. },
  17350. {
  17351. name: "Macro+",
  17352. height: math.unit(240, "feet")
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17358. {
  17359. front: {
  17360. height: math.unit(6, "feet"),
  17361. weight: math.unit(150, "lb"),
  17362. name: "Front",
  17363. image: {
  17364. source: "./media/characters/veski/front.svg",
  17365. extra: 1299 / 1225,
  17366. bottom: 0.04
  17367. }
  17368. },
  17369. back: {
  17370. height: math.unit(6, "feet"),
  17371. weight: math.unit(150, "lb"),
  17372. name: "Back",
  17373. image: {
  17374. source: "./media/characters/veski/back.svg",
  17375. extra: 1299 / 1225,
  17376. bottom: 0.008
  17377. }
  17378. },
  17379. maw: {
  17380. height: math.unit(1.5 * 1.21, "feet"),
  17381. name: "Maw",
  17382. image: {
  17383. source: "./media/characters/veski/maw.svg"
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Macro",
  17390. height: math.unit(2, "km"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(5 + 7 / 12, "feet"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/isabelle/front.svg",
  17403. extra: 2130 / 1976,
  17404. bottom: 0.05
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Supermicro",
  17411. height: math.unit(10, "micrometers")
  17412. },
  17413. {
  17414. name: "Micro",
  17415. height: math.unit(1, "inch")
  17416. },
  17417. {
  17418. name: "Tiny",
  17419. height: math.unit(5, "inches")
  17420. },
  17421. {
  17422. name: "Standard",
  17423. height: math.unit(5 + 7 / 12, "inches")
  17424. },
  17425. {
  17426. name: "Macro",
  17427. height: math.unit(80, "meters"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Megamacro",
  17432. height: math.unit(250, "meters")
  17433. },
  17434. {
  17435. name: "Gigamacro",
  17436. height: math.unit(5, "km")
  17437. },
  17438. {
  17439. name: "Cosmic",
  17440. height: math.unit(2.5e6, "miles")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(6, "feet"),
  17449. weight: math.unit(150, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/hanzo/front.svg",
  17453. extra: 374 / 344,
  17454. bottom: 0.02
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(8, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(7, "feet"),
  17471. weight: math.unit(130, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/anna/front.svg",
  17475. extra: 169 / 145,
  17476. bottom: 0.06
  17477. }
  17478. },
  17479. full: {
  17480. height: math.unit(4.96, "feet"),
  17481. weight: math.unit(220, "lb"),
  17482. name: "Full",
  17483. image: {
  17484. source: "./media/characters/anna/full.svg",
  17485. extra: 138 / 114,
  17486. bottom: 0.15
  17487. }
  17488. },
  17489. tongue: {
  17490. height: math.unit(2.53, "feet"),
  17491. name: "Tongue",
  17492. image: {
  17493. source: "./media/characters/anna/tongue.svg"
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(7, "feet"),
  17501. default: true
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17507. {
  17508. front: {
  17509. height: math.unit(7, "feet"),
  17510. weight: math.unit(150, "lb"),
  17511. name: "Front",
  17512. image: {
  17513. source: "./media/characters/ian-corvid/front.svg",
  17514. extra: 150 / 142,
  17515. bottom: 0.02
  17516. }
  17517. },
  17518. back: {
  17519. height: math.unit(7, "feet"),
  17520. weight: math.unit(150, "lb"),
  17521. name: "Back",
  17522. image: {
  17523. source: "./media/characters/ian-corvid/back.svg",
  17524. extra: 150 / 143,
  17525. bottom: 0.01
  17526. }
  17527. },
  17528. stomping: {
  17529. height: math.unit(7, "feet"),
  17530. weight: math.unit(150, "lb"),
  17531. name: "Stomping",
  17532. image: {
  17533. source: "./media/characters/ian-corvid/stomping.svg",
  17534. extra: 76 / 72
  17535. }
  17536. },
  17537. sitting: {
  17538. height: math.unit(7 / 1.8, "feet"),
  17539. weight: math.unit(150, "lb"),
  17540. name: "Sitting",
  17541. image: {
  17542. source: "./media/characters/ian-corvid/sitting.svg",
  17543. extra: 1400 / 1269,
  17544. bottom: 0.15
  17545. }
  17546. },
  17547. },
  17548. [
  17549. {
  17550. name: "Tiny Microw",
  17551. height: math.unit(1, "inch")
  17552. },
  17553. {
  17554. name: "Microw",
  17555. height: math.unit(6, "inches")
  17556. },
  17557. {
  17558. name: "Crow",
  17559. height: math.unit(7 + 1 / 12, "feet"),
  17560. default: true
  17561. },
  17562. {
  17563. name: "Macrow",
  17564. height: math.unit(176, "feet")
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17570. {
  17571. front: {
  17572. height: math.unit(5 + 7 / 12, "feet"),
  17573. weight: math.unit(147, "lb"),
  17574. name: "Front",
  17575. image: {
  17576. source: "./media/characters/natalie-kellon/front.svg",
  17577. extra: 1214 / 1141,
  17578. bottom: 0.02
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Micro",
  17585. height: math.unit(1 / 16, "inch")
  17586. },
  17587. {
  17588. name: "Tiny",
  17589. height: math.unit(4, "inches")
  17590. },
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(5 + 7 / 12, "feet"),
  17594. default: true
  17595. },
  17596. {
  17597. name: "Amazon",
  17598. height: math.unit(12, "feet")
  17599. },
  17600. {
  17601. name: "Giantess",
  17602. height: math.unit(160, "meters")
  17603. },
  17604. {
  17605. name: "Titaness",
  17606. height: math.unit(800, "meters")
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17612. {
  17613. front: {
  17614. height: math.unit(6, "feet"),
  17615. weight: math.unit(150, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/alluria/front.svg",
  17619. extra: 806 / 738,
  17620. bottom: 0.01
  17621. }
  17622. },
  17623. side: {
  17624. height: math.unit(6, "feet"),
  17625. weight: math.unit(150, "lb"),
  17626. name: "Side",
  17627. image: {
  17628. source: "./media/characters/alluria/side.svg",
  17629. extra: 800 / 750,
  17630. }
  17631. },
  17632. back: {
  17633. height: math.unit(6, "feet"),
  17634. weight: math.unit(150, "lb"),
  17635. name: "Back",
  17636. image: {
  17637. source: "./media/characters/alluria/back.svg",
  17638. extra: 806 / 738,
  17639. }
  17640. },
  17641. frontMaid: {
  17642. height: math.unit(6, "feet"),
  17643. weight: math.unit(150, "lb"),
  17644. name: "Front (Maid)",
  17645. image: {
  17646. source: "./media/characters/alluria/front-maid.svg",
  17647. extra: 806 / 738,
  17648. bottom: 0.01
  17649. }
  17650. },
  17651. sideMaid: {
  17652. height: math.unit(6, "feet"),
  17653. weight: math.unit(150, "lb"),
  17654. name: "Side (Maid)",
  17655. image: {
  17656. source: "./media/characters/alluria/side-maid.svg",
  17657. extra: 800 / 750,
  17658. bottom: 0.005
  17659. }
  17660. },
  17661. backMaid: {
  17662. height: math.unit(6, "feet"),
  17663. weight: math.unit(150, "lb"),
  17664. name: "Back (Maid)",
  17665. image: {
  17666. source: "./media/characters/alluria/back-maid.svg",
  17667. extra: 806 / 738,
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Micro",
  17674. height: math.unit(6, "inches"),
  17675. default: true
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17681. {
  17682. front: {
  17683. height: math.unit(6, "feet"),
  17684. weight: math.unit(150, "lb"),
  17685. name: "Front",
  17686. image: {
  17687. source: "./media/characters/kyle/front.svg",
  17688. extra: 1069 / 962,
  17689. bottom: 77.228 / 1727.45
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Macro",
  17696. height: math.unit(150, "feet"),
  17697. default: true
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(6, "feet"),
  17706. weight: math.unit(300, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/duncan/front.svg",
  17710. extra: 1650 / 1482,
  17711. bottom: 0.05
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Macro",
  17718. height: math.unit(100, "feet"),
  17719. default: true
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(5 + 4 / 12, "feet"),
  17728. weight: math.unit(220, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/memory/front.svg",
  17732. extra: 3641 / 3545,
  17733. bottom: 0.03
  17734. }
  17735. },
  17736. back: {
  17737. height: math.unit(5 + 4 / 12, "feet"),
  17738. weight: math.unit(220, "lb"),
  17739. name: "Back",
  17740. image: {
  17741. source: "./media/characters/memory/back.svg",
  17742. extra: 3641 / 3545,
  17743. bottom: 0.025
  17744. }
  17745. },
  17746. frontSkirt: {
  17747. height: math.unit(5 + 4 / 12, "feet"),
  17748. weight: math.unit(220, "lb"),
  17749. name: "Front (Skirt)",
  17750. image: {
  17751. source: "./media/characters/memory/front-skirt.svg",
  17752. extra: 3641 / 3545,
  17753. bottom: 0.03
  17754. }
  17755. },
  17756. frontDress: {
  17757. height: math.unit(5 + 4 / 12, "feet"),
  17758. weight: math.unit(220, "lb"),
  17759. name: "Front (Dress)",
  17760. image: {
  17761. source: "./media/characters/memory/front-dress.svg",
  17762. extra: 3641 / 3545,
  17763. bottom: 0.03
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Micro",
  17770. height: math.unit(6, "inches"),
  17771. default: true
  17772. },
  17773. {
  17774. name: "Normal",
  17775. height: math.unit(5 + 4 / 12, "feet")
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17781. {
  17782. front: {
  17783. height: math.unit(4 + 11 / 12, "feet"),
  17784. weight: math.unit(100, "lb"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/luno/front.svg",
  17788. extra: 1535 / 1487,
  17789. bottom: 0.03
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Micro",
  17796. height: math.unit(3, "inches")
  17797. },
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(4 + 11 / 12, "feet"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Macro",
  17805. height: math.unit(300, "feet")
  17806. },
  17807. {
  17808. name: "Megamacro",
  17809. height: math.unit(700, "miles")
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(6 + 2 / 12, "feet"),
  17818. weight: math.unit(170, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/jamesy/front.svg",
  17822. extra: 440 / 382,
  17823. bottom: 0.005
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Micro",
  17830. height: math.unit(3, "inches")
  17831. },
  17832. {
  17833. name: "Normal",
  17834. height: math.unit(6 + 2 / 12, "feet"),
  17835. default: true
  17836. },
  17837. {
  17838. name: "Macro",
  17839. height: math.unit(300, "feet")
  17840. },
  17841. {
  17842. name: "Megamacro",
  17843. height: math.unit(700, "miles")
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17849. {
  17850. front: {
  17851. height: math.unit(6, "feet"),
  17852. weight: math.unit(160, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/mark/front.svg",
  17856. extra: 3300 / 3100,
  17857. bottom: 136.42 / 3440.47
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Macro",
  17864. height: math.unit(120, "meters")
  17865. },
  17866. {
  17867. name: "Bigger Macro",
  17868. height: math.unit(350, "meters")
  17869. },
  17870. {
  17871. name: "Megamacro",
  17872. height: math.unit(8, "km"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Continental",
  17877. height: math.unit(4550, "km")
  17878. },
  17879. {
  17880. name: "Planetary",
  17881. height: math.unit(65000, "km")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(6, "feet"),
  17890. weight: math.unit(400, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/mac/front.svg",
  17894. extra: 1048 / 987.7,
  17895. bottom: 60 / 1107.6,
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Macro",
  17902. height: math.unit(500, "feet"),
  17903. default: true
  17904. },
  17905. ]
  17906. ))
  17907. characterMakers.push(() => makeCharacter(
  17908. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17909. {
  17910. front: {
  17911. height: math.unit(5 + 2 / 12, "feet"),
  17912. weight: math.unit(190, "lb"),
  17913. name: "Front",
  17914. image: {
  17915. source: "./media/characters/bari/front.svg",
  17916. extra: 3156 / 2880,
  17917. bottom: 0.03
  17918. }
  17919. },
  17920. back: {
  17921. height: math.unit(5 + 2 / 12, "feet"),
  17922. weight: math.unit(190, "lb"),
  17923. name: "Back",
  17924. image: {
  17925. source: "./media/characters/bari/back.svg",
  17926. extra: 3260 / 2834,
  17927. bottom: 0.025
  17928. }
  17929. },
  17930. frontPlush: {
  17931. height: math.unit(5 + 2 / 12, "feet"),
  17932. weight: math.unit(190, "lb"),
  17933. name: "Front (Plush)",
  17934. image: {
  17935. source: "./media/characters/bari/front-plush.svg",
  17936. extra: 1112 / 1061,
  17937. bottom: 0.002
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Micro",
  17944. height: math.unit(3, "inches")
  17945. },
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(5 + 2 / 12, "feet"),
  17949. default: true
  17950. },
  17951. {
  17952. name: "Macro",
  17953. height: math.unit(20, "feet")
  17954. },
  17955. ]
  17956. ))
  17957. characterMakers.push(() => makeCharacter(
  17958. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17959. {
  17960. front: {
  17961. height: math.unit(6 + 1 / 12, "feet"),
  17962. weight: math.unit(275, "lb"),
  17963. name: "Front",
  17964. image: {
  17965. source: "./media/characters/hunter-misha-raven/front.svg"
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Mortal",
  17972. height: math.unit(6 + 1 / 12, "feet")
  17973. },
  17974. {
  17975. name: "Divine",
  17976. height: math.unit(1.12134e34, "parsecs"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17983. {
  17984. front: {
  17985. height: math.unit(6 + 3 / 12, "feet"),
  17986. weight: math.unit(220, "lb"),
  17987. name: "Front",
  17988. image: {
  17989. source: "./media/characters/max-calore/front.svg",
  17990. extra: 1700 / 1648,
  17991. bottom: 0.01
  17992. }
  17993. },
  17994. back: {
  17995. height: math.unit(6 + 3 / 12, "feet"),
  17996. weight: math.unit(220, "lb"),
  17997. name: "Back",
  17998. image: {
  17999. source: "./media/characters/max-calore/back.svg",
  18000. extra: 1700 / 1648,
  18001. bottom: 0.01
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Normal",
  18008. height: math.unit(6 + 3 / 12, "feet"),
  18009. default: true
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18015. {
  18016. side: {
  18017. height: math.unit(2 + 8 / 12, "feet"),
  18018. weight: math.unit(99, "lb"),
  18019. name: "Side",
  18020. image: {
  18021. source: "./media/characters/aspen/side.svg",
  18022. extra: 152 / 138,
  18023. bottom: 0.032
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(2 + 8 / 12, "feet"),
  18031. default: true
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18037. {
  18038. side: {
  18039. height: math.unit(3 + 2 / 12, "feet"),
  18040. weight: math.unit(224, "lb"),
  18041. name: "Side",
  18042. image: {
  18043. source: "./media/characters/sheila-feral-wolf/side.svg",
  18044. extra: 179 / 166,
  18045. bottom: 0.03
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(3 + 2 / 12, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18059. {
  18060. side: {
  18061. height: math.unit(1 + 9 / 12, "feet"),
  18062. weight: math.unit(38, "lb"),
  18063. name: "Side",
  18064. image: {
  18065. source: "./media/characters/michelle/side.svg",
  18066. extra: 147 / 136.7,
  18067. bottom: 0.03
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(1 + 9 / 12, "feet"),
  18075. default: true
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(1.54, "feet"),
  18084. weight: math.unit(50, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/nino/front.svg"
  18088. }
  18089. },
  18090. },
  18091. [
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(1.54, "feet"),
  18095. default: true
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(1.49, "feet"),
  18104. weight: math.unit(45, "lb"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/viola/front.svg"
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(1.49, "feet"),
  18115. default: true
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(6 + 5 / 12, "feet"),
  18124. weight: math.unit(580, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/atlas/front.svg",
  18128. extra: 298.5 / 290,
  18129. bottom: 0.015
  18130. }
  18131. },
  18132. },
  18133. [
  18134. {
  18135. name: "Normal",
  18136. height: math.unit(6 + 5 / 12, "feet"),
  18137. default: true
  18138. },
  18139. ]
  18140. ))
  18141. characterMakers.push(() => makeCharacter(
  18142. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18143. {
  18144. side: {
  18145. height: math.unit(15.6, "inches"),
  18146. weight: math.unit(10, "lb"),
  18147. name: "Side",
  18148. image: {
  18149. source: "./media/characters/davy/side.svg",
  18150. extra: 200 / 170,
  18151. bottom: 0.01
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(15.6, "inches"),
  18159. default: true
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18165. {
  18166. side: {
  18167. height: math.unit(4 + 8 / 12, "feet"),
  18168. weight: math.unit(166, "lb"),
  18169. name: "Side",
  18170. image: {
  18171. source: "./media/characters/fiona/side.svg",
  18172. extra: 232 / 220,
  18173. bottom: 0.03
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(4 + 8 / 12, "feet"),
  18181. default: true
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18187. {
  18188. front: {
  18189. height: math.unit(26, "inches"),
  18190. weight: math.unit(35, "lb"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/lyla/front.svg",
  18194. bottom: 0.1
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(3, "feet"),
  18202. default: true
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18208. {
  18209. side: {
  18210. height: math.unit(1.8, "feet"),
  18211. weight: math.unit(44, "lb"),
  18212. name: "Side",
  18213. image: {
  18214. source: "./media/characters/perseus/side.svg",
  18215. bottom: 0.21
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(1.8, "feet"),
  18223. default: true
  18224. },
  18225. ]
  18226. ))
  18227. characterMakers.push(() => makeCharacter(
  18228. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18229. {
  18230. side: {
  18231. height: math.unit(4 + 2 / 12, "feet"),
  18232. weight: math.unit(20, "lb"),
  18233. name: "Side",
  18234. image: {
  18235. source: "./media/characters/remus/side.svg"
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(4 + 2 / 12, "feet"),
  18243. default: true
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(4 + 11 / 12, "feet"),
  18252. weight: math.unit(114, "lb"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/raf/front.svg",
  18256. extra: 1504/1339,
  18257. bottom: 26/1530
  18258. }
  18259. },
  18260. side: {
  18261. height: math.unit(4 + 11 / 12, "feet"),
  18262. weight: math.unit(114, "lb"),
  18263. name: "Side",
  18264. image: {
  18265. source: "./media/characters/raf/side.svg",
  18266. extra: 1466/1316,
  18267. bottom: 29/1495
  18268. }
  18269. },
  18270. paw: {
  18271. height: math.unit(1.45, "feet"),
  18272. name: "Paw",
  18273. image: {
  18274. source: "./media/characters/raf/paw.svg"
  18275. },
  18276. extraAttributes: {
  18277. "toeSize": {
  18278. name: "Toe Size",
  18279. power: 2,
  18280. type: "area",
  18281. base: math.unit(0.004, "m^2")
  18282. },
  18283. "padSize": {
  18284. name: "Pad Size",
  18285. power: 2,
  18286. type: "area",
  18287. base: math.unit(0.04, "m^2")
  18288. },
  18289. "footSize": {
  18290. name: "Foot Size",
  18291. power: 2,
  18292. type: "area",
  18293. base: math.unit(0.08, "m^2")
  18294. },
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Micro",
  18301. height: math.unit(2, "inches")
  18302. },
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(4 + 11 / 12, "feet"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Macro",
  18310. height: math.unit(70, "feet")
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(1.5, "meters"),
  18319. weight: math.unit(68, "kg"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/liam-einarr/front.svg",
  18323. extra: 2822 / 2666
  18324. }
  18325. },
  18326. back: {
  18327. height: math.unit(1.5, "meters"),
  18328. weight: math.unit(68, "kg"),
  18329. name: "Back",
  18330. image: {
  18331. source: "./media/characters/liam-einarr/back.svg",
  18332. extra: 2822 / 2666,
  18333. bottom: 0.015
  18334. }
  18335. },
  18336. },
  18337. [
  18338. {
  18339. name: "Normal",
  18340. height: math.unit(1.5, "meters"),
  18341. default: true
  18342. },
  18343. {
  18344. name: "Macro",
  18345. height: math.unit(150, "meters")
  18346. },
  18347. {
  18348. name: "Megamacro",
  18349. height: math.unit(35, "km")
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18355. {
  18356. front: {
  18357. height: math.unit(6, "feet"),
  18358. weight: math.unit(75, "kg"),
  18359. name: "Front",
  18360. image: {
  18361. source: "./media/characters/linda/front.svg",
  18362. extra: 930 / 874,
  18363. bottom: 0.004
  18364. }
  18365. },
  18366. },
  18367. [
  18368. {
  18369. name: "Normal",
  18370. height: math.unit(6, "feet"),
  18371. default: true
  18372. },
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(6 + 8 / 12, "feet"),
  18380. weight: math.unit(220, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/caylex/front.svg",
  18384. extra: 821 / 772,
  18385. bottom: 0.07
  18386. }
  18387. },
  18388. back: {
  18389. height: math.unit(6 + 8 / 12, "feet"),
  18390. weight: math.unit(220, "lb"),
  18391. name: "Back",
  18392. image: {
  18393. source: "./media/characters/caylex/back.svg",
  18394. extra: 821 / 772,
  18395. bottom: 0.022
  18396. }
  18397. },
  18398. hand: {
  18399. height: math.unit(1.25, "feet"),
  18400. name: "Hand",
  18401. image: {
  18402. source: "./media/characters/caylex/hand.svg"
  18403. }
  18404. },
  18405. foot: {
  18406. height: math.unit(1.6, "feet"),
  18407. name: "Foot",
  18408. image: {
  18409. source: "./media/characters/caylex/foot.svg"
  18410. }
  18411. },
  18412. armored: {
  18413. height: math.unit(6 + 8 / 12, "feet"),
  18414. weight: math.unit(250, "lb"),
  18415. name: "Armored",
  18416. image: {
  18417. source: "./media/characters/caylex/armored.svg",
  18418. extra: 1420 / 1310,
  18419. bottom: 0.045
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(6 + 8 / 12, "feet"),
  18427. default: true
  18428. },
  18429. {
  18430. name: "Normal+",
  18431. height: math.unit(12, "feet")
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(7 + 6 / 12, "feet"),
  18440. weight: math.unit(288, "lb"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/alana/front.svg",
  18444. extra: 679 / 653,
  18445. bottom: 22.5 / 701
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(7 + 6 / 12, "feet")
  18453. },
  18454. {
  18455. name: "Large",
  18456. height: math.unit(50, "feet")
  18457. },
  18458. {
  18459. name: "Macro",
  18460. height: math.unit(100, "feet"),
  18461. default: true
  18462. },
  18463. {
  18464. name: "Macro+",
  18465. height: math.unit(200, "feet")
  18466. },
  18467. ]
  18468. ))
  18469. characterMakers.push(() => makeCharacter(
  18470. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18471. {
  18472. front: {
  18473. height: math.unit(6 + 1 / 12, "feet"),
  18474. weight: math.unit(210, "lb"),
  18475. name: "Front",
  18476. image: {
  18477. source: "./media/characters/hasani/front.svg",
  18478. extra: 244 / 232,
  18479. bottom: 0.01
  18480. }
  18481. },
  18482. back: {
  18483. height: math.unit(6 + 1 / 12, "feet"),
  18484. weight: math.unit(210, "lb"),
  18485. name: "Back",
  18486. image: {
  18487. source: "./media/characters/hasani/back.svg",
  18488. extra: 244 / 232,
  18489. bottom: 0.01
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(6 + 1 / 12, "feet")
  18497. },
  18498. {
  18499. name: "Macro",
  18500. height: math.unit(175, "feet"),
  18501. default: true
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(1.82, "meters"),
  18510. weight: math.unit(140, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/nita/front.svg",
  18514. extra: 2473 / 2363,
  18515. bottom: 0.01
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(1.82, "m")
  18523. },
  18524. {
  18525. name: "Macro",
  18526. height: math.unit(300, "m")
  18527. },
  18528. {
  18529. name: "Mistake Canon",
  18530. height: math.unit(0.5, "miles"),
  18531. default: true
  18532. },
  18533. {
  18534. name: "Big Mistake",
  18535. height: math.unit(13, "miles")
  18536. },
  18537. {
  18538. name: "Playing God",
  18539. height: math.unit(2450, "miles")
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(4, "feet"),
  18548. weight: math.unit(120, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/shiriko/front.svg",
  18552. extra: 970/934,
  18553. bottom: 5/975
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(4, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(6, "feet"),
  18570. name: "front",
  18571. image: {
  18572. source: "./media/characters/deja/front.svg",
  18573. extra: 926 / 840,
  18574. bottom: 0.07
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Planck Length",
  18581. height: math.unit(1.6e-35, "meters")
  18582. },
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(30.48, "meters"),
  18586. default: true
  18587. },
  18588. {
  18589. name: "Universal",
  18590. height: math.unit(8.8e26, "meters")
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18596. {
  18597. side: {
  18598. height: math.unit(8, "feet"),
  18599. weight: math.unit(6300, "lb"),
  18600. name: "Side",
  18601. image: {
  18602. source: "./media/characters/anima/side.svg",
  18603. bottom: 0.035
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(8, "feet"),
  18611. default: true
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(8, "feet"),
  18620. weight: math.unit(350, "lb"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/bianca/front.svg",
  18624. extra: 234 / 225,
  18625. bottom: 0.03
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(8, "feet"),
  18633. default: true
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18639. {
  18640. front: {
  18641. height: math.unit(11 + 5/12, "feet"),
  18642. weight: math.unit(1200, "lb"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/adinia/front.svg",
  18646. extra: 1767/1641,
  18647. bottom: 44/1811
  18648. },
  18649. extraAttributes: {
  18650. "energyIntake": {
  18651. name: "Energy Intake",
  18652. power: 3,
  18653. type: "energy",
  18654. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18655. },
  18656. }
  18657. },
  18658. back: {
  18659. height: math.unit(11 + 5/12, "feet"),
  18660. weight: math.unit(1200, "lb"),
  18661. name: "Back",
  18662. image: {
  18663. source: "./media/characters/adinia/back.svg",
  18664. extra: 1834/1684,
  18665. bottom: 14/1848
  18666. },
  18667. extraAttributes: {
  18668. "energyIntake": {
  18669. name: "Energy Intake",
  18670. power: 3,
  18671. type: "energy",
  18672. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18673. },
  18674. }
  18675. },
  18676. maw: {
  18677. height: math.unit(3.79, "feet"),
  18678. name: "Maw",
  18679. image: {
  18680. source: "./media/characters/adinia/maw.svg"
  18681. }
  18682. },
  18683. rump: {
  18684. height: math.unit(4.6, "feet"),
  18685. name: "Rump",
  18686. image: {
  18687. source: "./media/characters/adinia/rump.svg"
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(11 + 5 / 12, "feet"),
  18695. default: true
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(3, "meters"),
  18704. weight: math.unit(200, "kg"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/lykasa/front.svg",
  18708. extra: 1076 / 976,
  18709. bottom: 0.06
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(3, "meters")
  18717. },
  18718. {
  18719. name: "Kaiju",
  18720. height: math.unit(120, "meters"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Mega Kaiju",
  18725. height: math.unit(240, "km")
  18726. },
  18727. {
  18728. name: "Giga Kaiju",
  18729. height: math.unit(400, "megameters")
  18730. },
  18731. {
  18732. name: "Tera Kaiju",
  18733. height: math.unit(800, "gigameters")
  18734. },
  18735. {
  18736. name: "Kaiju Dragon Goddess",
  18737. height: math.unit(26, "zettaparsecs")
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18743. {
  18744. side: {
  18745. height: math.unit(283 / 124 * 6, "feet"),
  18746. weight: math.unit(35000, "lb"),
  18747. name: "Side",
  18748. image: {
  18749. source: "./media/characters/malfaren/side.svg",
  18750. extra: 1310/529,
  18751. bottom: 24/1334
  18752. }
  18753. },
  18754. front: {
  18755. height: math.unit(22.36, "feet"),
  18756. weight: math.unit(35000, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/malfaren/front.svg",
  18760. extra: 1237/1115,
  18761. bottom: 32/1269
  18762. }
  18763. },
  18764. maw: {
  18765. height: math.unit(6.9, "feet"),
  18766. name: "Maw",
  18767. image: {
  18768. source: "./media/characters/malfaren/maw.svg"
  18769. }
  18770. },
  18771. dick: {
  18772. height: math.unit(6.19, "feet"),
  18773. name: "Dick",
  18774. image: {
  18775. source: "./media/characters/malfaren/dick.svg"
  18776. }
  18777. },
  18778. eye: {
  18779. height: math.unit(0.69, "feet"),
  18780. name: "Eye",
  18781. image: {
  18782. source: "./media/characters/malfaren/eye.svg"
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Big",
  18789. height: math.unit(283 / 162 * 6, "feet"),
  18790. },
  18791. {
  18792. name: "Bigger",
  18793. height: math.unit(283 / 124 * 6, "feet")
  18794. },
  18795. {
  18796. name: "Massive",
  18797. height: math.unit(283 / 92 * 6, "feet"),
  18798. default: true
  18799. },
  18800. {
  18801. name: "👀💦",
  18802. height: math.unit(283 / 73 * 6, "feet"),
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18808. {
  18809. front: {
  18810. height: math.unit(1.7, "m"),
  18811. weight: math.unit(70, "kg"),
  18812. name: "Front",
  18813. image: {
  18814. source: "./media/characters/kernel/front.svg",
  18815. extra: 222 / 210,
  18816. bottom: 0.007
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Nano",
  18823. height: math.unit(17, "micrometers")
  18824. },
  18825. {
  18826. name: "Micro",
  18827. height: math.unit(1.7, "mm")
  18828. },
  18829. {
  18830. name: "Small",
  18831. height: math.unit(1.7, "cm")
  18832. },
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(1.7, "m"),
  18836. default: true
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(1.75, "meters"),
  18845. weight: math.unit(65, "kg"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/jayne-folest/front.svg",
  18849. extra: 2115 / 2007,
  18850. bottom: 0.02
  18851. }
  18852. },
  18853. back: {
  18854. height: math.unit(1.75, "meters"),
  18855. weight: math.unit(65, "kg"),
  18856. name: "Back",
  18857. image: {
  18858. source: "./media/characters/jayne-folest/back.svg",
  18859. extra: 2115 / 2007,
  18860. bottom: 0.005
  18861. }
  18862. },
  18863. frontClothed: {
  18864. height: math.unit(1.75, "meters"),
  18865. weight: math.unit(65, "kg"),
  18866. name: "Front (Clothed)",
  18867. image: {
  18868. source: "./media/characters/jayne-folest/front-clothed.svg",
  18869. extra: 2115 / 2007,
  18870. bottom: 0.035
  18871. }
  18872. },
  18873. hand: {
  18874. height: math.unit(1 / 1.260, "feet"),
  18875. name: "Hand",
  18876. image: {
  18877. source: "./media/characters/jayne-folest/hand.svg"
  18878. }
  18879. },
  18880. foot: {
  18881. height: math.unit(1 / 0.918, "feet"),
  18882. name: "Foot",
  18883. image: {
  18884. source: "./media/characters/jayne-folest/foot.svg"
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Micro",
  18891. height: math.unit(4, "cm")
  18892. },
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(1.75, "meters")
  18896. },
  18897. {
  18898. name: "Macro",
  18899. height: math.unit(47.5, "meters"),
  18900. default: true
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18906. {
  18907. front: {
  18908. height: math.unit(180, "cm"),
  18909. weight: math.unit(70, "kg"),
  18910. name: "Front",
  18911. image: {
  18912. source: "./media/characters/algier/front.svg",
  18913. extra: 596 / 572,
  18914. bottom: 0.04
  18915. }
  18916. },
  18917. back: {
  18918. height: math.unit(180, "cm"),
  18919. weight: math.unit(70, "kg"),
  18920. name: "Back",
  18921. image: {
  18922. source: "./media/characters/algier/back.svg",
  18923. extra: 596 / 572,
  18924. bottom: 0.025
  18925. }
  18926. },
  18927. frontdressed: {
  18928. height: math.unit(180, "cm"),
  18929. weight: math.unit(150, "kg"),
  18930. name: "Front-dressed",
  18931. image: {
  18932. source: "./media/characters/algier/front-dressed.svg",
  18933. extra: 596 / 572,
  18934. bottom: 0.038
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Micro",
  18941. height: math.unit(5, "cm")
  18942. },
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(180, "cm"),
  18946. default: true
  18947. },
  18948. {
  18949. name: "Macro",
  18950. height: math.unit(64, "m")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18956. {
  18957. upright: {
  18958. height: math.unit(7, "feet"),
  18959. weight: math.unit(300, "lb"),
  18960. name: "Upright",
  18961. image: {
  18962. source: "./media/characters/pretzel/upright.svg",
  18963. extra: 534 / 522,
  18964. bottom: 0.065
  18965. }
  18966. },
  18967. sprawling: {
  18968. height: math.unit(3.75, "feet"),
  18969. weight: math.unit(300, "lb"),
  18970. name: "Sprawling",
  18971. image: {
  18972. source: "./media/characters/pretzel/sprawling.svg",
  18973. extra: 314 / 281,
  18974. bottom: 0.1
  18975. }
  18976. },
  18977. tongue: {
  18978. height: math.unit(2, "feet"),
  18979. name: "Tongue",
  18980. image: {
  18981. source: "./media/characters/pretzel/tongue.svg"
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(7, "feet"),
  18989. default: true
  18990. },
  18991. {
  18992. name: "Oversized",
  18993. height: math.unit(15, "feet")
  18994. },
  18995. {
  18996. name: "Huge",
  18997. height: math.unit(30, "feet")
  18998. },
  18999. {
  19000. name: "Macro",
  19001. height: math.unit(250, "feet")
  19002. },
  19003. ]
  19004. ))
  19005. characterMakers.push(() => makeCharacter(
  19006. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19007. {
  19008. sideFront: {
  19009. height: math.unit(5 + 2 / 12, "feet"),
  19010. weight: math.unit(120, "lb"),
  19011. name: "Front Side",
  19012. image: {
  19013. source: "./media/characters/roxi/side-front.svg",
  19014. extra: 2924 / 2717,
  19015. bottom: 0.08
  19016. }
  19017. },
  19018. sideBack: {
  19019. height: math.unit(5 + 2 / 12, "feet"),
  19020. weight: math.unit(120, "lb"),
  19021. name: "Back Side",
  19022. image: {
  19023. source: "./media/characters/roxi/side-back.svg",
  19024. extra: 2904 / 2693,
  19025. bottom: 0.06
  19026. }
  19027. },
  19028. front: {
  19029. height: math.unit(5 + 2 / 12, "feet"),
  19030. weight: math.unit(120, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/roxi/front.svg",
  19034. extra: 2028 / 1907,
  19035. bottom: 0.01
  19036. }
  19037. },
  19038. frontAlt: {
  19039. height: math.unit(5 + 2 / 12, "feet"),
  19040. weight: math.unit(120, "lb"),
  19041. name: "Front (Alt)",
  19042. image: {
  19043. source: "./media/characters/roxi/front-alt.svg",
  19044. extra: 1828 / 1798,
  19045. bottom: 0.01
  19046. }
  19047. },
  19048. sitting: {
  19049. height: math.unit(2.8, "feet"),
  19050. weight: math.unit(120, "lb"),
  19051. name: "Sitting",
  19052. image: {
  19053. source: "./media/characters/roxi/sitting.svg",
  19054. extra: 2660 / 2462,
  19055. bottom: 0.1
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(5 + 2 / 12, "feet"),
  19063. default: true
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19069. {
  19070. side: {
  19071. height: math.unit(55, "feet"),
  19072. weight: math.unit(153, "tons"),
  19073. name: "Side",
  19074. image: {
  19075. source: "./media/characters/shadow/side.svg",
  19076. extra: 701 / 628,
  19077. bottom: 0.02
  19078. }
  19079. },
  19080. flying: {
  19081. height: math.unit(145, "feet"),
  19082. weight: math.unit(153, "tons"),
  19083. name: "Flying",
  19084. image: {
  19085. source: "./media/characters/shadow/flying.svg"
  19086. }
  19087. },
  19088. },
  19089. [
  19090. {
  19091. name: "Normal",
  19092. height: math.unit(55, "feet"),
  19093. default: true
  19094. },
  19095. ]
  19096. ))
  19097. characterMakers.push(() => makeCharacter(
  19098. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19099. {
  19100. front: {
  19101. height: math.unit(6, "feet"),
  19102. weight: math.unit(200, "lb"),
  19103. name: "Front",
  19104. image: {
  19105. source: "./media/characters/marcie/front.svg",
  19106. extra: 960 / 876,
  19107. bottom: 58 / 1017.87
  19108. }
  19109. },
  19110. },
  19111. [
  19112. {
  19113. name: "Macro",
  19114. height: math.unit(1, "mile"),
  19115. default: true
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19121. {
  19122. front: {
  19123. height: math.unit(7, "feet"),
  19124. weight: math.unit(200, "lb"),
  19125. name: "Front",
  19126. image: {
  19127. source: "./media/characters/kachina/front.svg",
  19128. extra: 1290.68 / 1119,
  19129. bottom: 36.5 / 1327.18
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(7, "feet"),
  19137. default: true
  19138. },
  19139. ]
  19140. ))
  19141. characterMakers.push(() => makeCharacter(
  19142. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19143. {
  19144. looking: {
  19145. height: math.unit(2, "meters"),
  19146. weight: math.unit(300, "kg"),
  19147. name: "Looking",
  19148. image: {
  19149. source: "./media/characters/kash/looking.svg",
  19150. extra: 474 / 344,
  19151. bottom: 0.03
  19152. }
  19153. },
  19154. side: {
  19155. height: math.unit(2, "meters"),
  19156. weight: math.unit(300, "kg"),
  19157. name: "Side",
  19158. image: {
  19159. source: "./media/characters/kash/side.svg",
  19160. extra: 302 / 251,
  19161. bottom: 0.03
  19162. }
  19163. },
  19164. front: {
  19165. height: math.unit(2, "meters"),
  19166. weight: math.unit(300, "kg"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/kash/front.svg",
  19170. extra: 495 / 360,
  19171. bottom: 0.015
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(2, "meters"),
  19179. default: true
  19180. },
  19181. {
  19182. name: "Big",
  19183. height: math.unit(3, "meters")
  19184. },
  19185. {
  19186. name: "Large",
  19187. height: math.unit(5, "meters")
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19193. {
  19194. feeding: {
  19195. height: math.unit(6.7, "feet"),
  19196. weight: math.unit(350, "lb"),
  19197. name: "Feeding",
  19198. image: {
  19199. source: "./media/characters/lalim/feeding.svg",
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(6.7, "feet"),
  19207. default: true
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(9.5, "feet"),
  19216. weight: math.unit(600, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/de'vout/front.svg",
  19220. extra: 1443 / 1328,
  19221. bottom: 0.025
  19222. }
  19223. },
  19224. back: {
  19225. height: math.unit(9.5, "feet"),
  19226. weight: math.unit(600, "lb"),
  19227. name: "Back",
  19228. image: {
  19229. source: "./media/characters/de'vout/back.svg",
  19230. extra: 1443 / 1328
  19231. }
  19232. },
  19233. frontDressed: {
  19234. height: math.unit(9.5, "feet"),
  19235. weight: math.unit(600, "lb"),
  19236. name: "Front (Dressed",
  19237. image: {
  19238. source: "./media/characters/de'vout/front-dressed.svg",
  19239. extra: 1443 / 1328,
  19240. bottom: 0.025
  19241. }
  19242. },
  19243. backDressed: {
  19244. height: math.unit(9.5, "feet"),
  19245. weight: math.unit(600, "lb"),
  19246. name: "Back (Dressed",
  19247. image: {
  19248. source: "./media/characters/de'vout/back-dressed.svg",
  19249. extra: 1443 / 1328
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(9.5, "feet"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(8, "feet"),
  19266. weight: math.unit(225, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/talana/front.svg",
  19270. extra: 1410 / 1300,
  19271. bottom: 0.015
  19272. }
  19273. },
  19274. frontDressed: {
  19275. height: math.unit(8, "feet"),
  19276. weight: math.unit(225, "lb"),
  19277. name: "Front (Dressed",
  19278. image: {
  19279. source: "./media/characters/talana/front-dressed.svg",
  19280. extra: 1410 / 1300,
  19281. bottom: 0.015
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Normal",
  19288. height: math.unit(8, "feet"),
  19289. default: true
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19295. {
  19296. side: {
  19297. height: math.unit(7.2, "feet"),
  19298. weight: math.unit(150, "lb"),
  19299. name: "Side",
  19300. image: {
  19301. source: "./media/characters/xeauvok/side.svg",
  19302. extra: 1975 / 1523,
  19303. bottom: 0.07
  19304. }
  19305. },
  19306. },
  19307. [
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(7.2, "feet"),
  19311. default: true
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19317. {
  19318. side: {
  19319. height: math.unit(4, "meters"),
  19320. weight: math.unit(2200, "kg"),
  19321. name: "Side",
  19322. image: {
  19323. source: "./media/characters/zara/side.svg",
  19324. extra: 765/744,
  19325. bottom: 156/921
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(4, "meters"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19339. {
  19340. side: {
  19341. height: math.unit(6, "feet"),
  19342. weight: math.unit(150, "lb"),
  19343. name: "Side",
  19344. image: {
  19345. source: "./media/characters/richard-dragon/side.svg",
  19346. extra: 845 / 340,
  19347. bottom: 0.017
  19348. }
  19349. },
  19350. maw: {
  19351. height: math.unit(2.97, "feet"),
  19352. name: "Maw",
  19353. image: {
  19354. source: "./media/characters/richard-dragon/maw.svg"
  19355. }
  19356. },
  19357. },
  19358. [
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(4, "feet"),
  19366. weight: math.unit(100, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/richard-smeargle/front.svg",
  19370. extra: 2952 / 2820,
  19371. bottom: 0.028
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Normal",
  19378. height: math.unit(4, "feet"),
  19379. default: true
  19380. },
  19381. {
  19382. name: "Dynamax",
  19383. height: math.unit(20, "meters")
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19389. {
  19390. front: {
  19391. height: math.unit(6, "feet"),
  19392. weight: math.unit(110, "lb"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/klay/front.svg",
  19396. extra: 962 / 883,
  19397. bottom: 0.04
  19398. }
  19399. },
  19400. back: {
  19401. height: math.unit(6, "feet"),
  19402. weight: math.unit(110, "lb"),
  19403. name: "Back",
  19404. image: {
  19405. source: "./media/characters/klay/back.svg",
  19406. extra: 962 / 883
  19407. }
  19408. },
  19409. beans: {
  19410. height: math.unit(1.15, "feet"),
  19411. name: "Beans",
  19412. image: {
  19413. source: "./media/characters/klay/beans.svg"
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Micro",
  19420. height: math.unit(6, "inches")
  19421. },
  19422. {
  19423. name: "Mini",
  19424. height: math.unit(3, "feet")
  19425. },
  19426. {
  19427. name: "Normal",
  19428. height: math.unit(6, "feet"),
  19429. default: true
  19430. },
  19431. {
  19432. name: "Big",
  19433. height: math.unit(25, "feet")
  19434. },
  19435. {
  19436. name: "Macro",
  19437. height: math.unit(100, "feet")
  19438. },
  19439. {
  19440. name: "Megamacro",
  19441. height: math.unit(400, "feet")
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19447. {
  19448. front: {
  19449. height: math.unit(6, "feet"),
  19450. weight: math.unit(160, "lb"),
  19451. name: "Front",
  19452. image: {
  19453. source: "./media/characters/marcus/front.svg",
  19454. extra: 734 / 676,
  19455. bottom: 0.03
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Little",
  19462. height: math.unit(6, "feet")
  19463. },
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(110, "feet"),
  19467. default: true
  19468. },
  19469. {
  19470. name: "Macro",
  19471. height: math.unit(250, "feet")
  19472. },
  19473. {
  19474. name: "Megamacro",
  19475. height: math.unit(1000, "feet")
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(7, "feet"),
  19484. weight: math.unit(275, "lb"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/claude-delroute/front.svg",
  19488. extra: 902/827,
  19489. bottom: 26/928
  19490. }
  19491. },
  19492. side: {
  19493. height: math.unit(7, "feet"),
  19494. weight: math.unit(275, "lb"),
  19495. name: "Side",
  19496. image: {
  19497. source: "./media/characters/claude-delroute/side.svg",
  19498. extra: 908/853,
  19499. bottom: 16/924
  19500. }
  19501. },
  19502. back: {
  19503. height: math.unit(7, "feet"),
  19504. weight: math.unit(275, "lb"),
  19505. name: "Back",
  19506. image: {
  19507. source: "./media/characters/claude-delroute/back.svg",
  19508. extra: 911/829,
  19509. bottom: 18/929
  19510. }
  19511. },
  19512. maw: {
  19513. height: math.unit(0.6407, "meters"),
  19514. name: "Maw",
  19515. image: {
  19516. source: "./media/characters/claude-delroute/maw.svg"
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(7, "feet"),
  19524. default: true
  19525. },
  19526. {
  19527. name: "Lorge",
  19528. height: math.unit(20, "feet")
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19534. {
  19535. front: {
  19536. height: math.unit(8 + 4 / 12, "feet"),
  19537. weight: math.unit(600, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/dragonien/front.svg",
  19541. extra: 100 / 94,
  19542. bottom: 3.3 / 103.3445
  19543. }
  19544. },
  19545. back: {
  19546. height: math.unit(8 + 4 / 12, "feet"),
  19547. weight: math.unit(600, "lb"),
  19548. name: "Back",
  19549. image: {
  19550. source: "./media/characters/dragonien/back.svg",
  19551. extra: 776 / 746,
  19552. bottom: 6.4 / 782.0616
  19553. }
  19554. },
  19555. foot: {
  19556. height: math.unit(1.54, "feet"),
  19557. name: "Foot",
  19558. image: {
  19559. source: "./media/characters/dragonien/foot.svg",
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Normal",
  19566. height: math.unit(8 + 4 / 12, "feet"),
  19567. default: true
  19568. },
  19569. {
  19570. name: "Macro",
  19571. height: math.unit(200, "feet")
  19572. },
  19573. {
  19574. name: "Megamacro",
  19575. height: math.unit(1, "mile")
  19576. },
  19577. {
  19578. name: "Gigamacro",
  19579. height: math.unit(1000, "miles")
  19580. },
  19581. ]
  19582. ))
  19583. characterMakers.push(() => makeCharacter(
  19584. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19585. {
  19586. front: {
  19587. height: math.unit(5 + 2 / 12, "feet"),
  19588. weight: math.unit(110, "lb"),
  19589. name: "Front",
  19590. image: {
  19591. source: "./media/characters/desta/front.svg",
  19592. extra: 767 / 726,
  19593. bottom: 11.7 / 779
  19594. }
  19595. },
  19596. back: {
  19597. height: math.unit(5 + 2 / 12, "feet"),
  19598. weight: math.unit(110, "lb"),
  19599. name: "Back",
  19600. image: {
  19601. source: "./media/characters/desta/back.svg",
  19602. extra: 777 / 728,
  19603. bottom: 6 / 784
  19604. }
  19605. },
  19606. frontAlt: {
  19607. height: math.unit(5 + 2 / 12, "feet"),
  19608. weight: math.unit(110, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/desta/front-alt.svg",
  19612. extra: 1482 / 1417
  19613. }
  19614. },
  19615. side: {
  19616. height: math.unit(5 + 2 / 12, "feet"),
  19617. weight: math.unit(110, "lb"),
  19618. name: "Side",
  19619. image: {
  19620. source: "./media/characters/desta/side.svg",
  19621. extra: 2579 / 2491,
  19622. bottom: 0.053
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Micro",
  19629. height: math.unit(6, "inches")
  19630. },
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(5 + 2 / 12, "feet"),
  19634. default: true
  19635. },
  19636. {
  19637. name: "Macro",
  19638. height: math.unit(62, "feet")
  19639. },
  19640. {
  19641. name: "Megamacro",
  19642. height: math.unit(1800, "feet")
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19648. {
  19649. front: {
  19650. height: math.unit(10, "feet"),
  19651. weight: math.unit(700, "lb"),
  19652. name: "Front",
  19653. image: {
  19654. source: "./media/characters/storm-alystar/front.svg",
  19655. extra: 2112 / 1898,
  19656. bottom: 0.034
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Micro",
  19663. height: math.unit(3.5, "inches")
  19664. },
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(10, "feet"),
  19668. default: true
  19669. },
  19670. {
  19671. name: "Macro",
  19672. height: math.unit(400, "feet")
  19673. },
  19674. {
  19675. name: "Deific",
  19676. height: math.unit(60, "miles")
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19682. {
  19683. front: {
  19684. height: math.unit(2.35, "meters"),
  19685. weight: math.unit(119, "kg"),
  19686. name: "Front",
  19687. image: {
  19688. source: "./media/characters/ilia/front.svg",
  19689. extra: 1285 / 1255,
  19690. bottom: 0.06
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(2.35, "meters")
  19698. },
  19699. {
  19700. name: "Macro",
  19701. height: math.unit(140, "meters"),
  19702. default: true
  19703. },
  19704. {
  19705. name: "Megamacro",
  19706. height: math.unit(100, "miles")
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19712. {
  19713. front: {
  19714. height: math.unit(6 + 5 / 12, "feet"),
  19715. weight: math.unit(190, "lb"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/kingdead/front.svg",
  19719. extra: 1228 / 1177
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Micro",
  19726. height: math.unit(7, "inches")
  19727. },
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(6 + 5 / 12, "feet")
  19731. },
  19732. {
  19733. name: "Macro",
  19734. height: math.unit(150, "feet"),
  19735. default: true
  19736. },
  19737. {
  19738. name: "Megamacro",
  19739. height: math.unit(200, "miles")
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(8, "feet"),
  19748. weight: math.unit(600, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/kyrehx/front.svg",
  19752. extra: 1195 / 1095,
  19753. bottom: 0.034
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Micro",
  19760. height: math.unit(2, "inches")
  19761. },
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(8, "feet"),
  19765. default: true
  19766. },
  19767. {
  19768. name: "Macro",
  19769. height: math.unit(255, "feet")
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19778. weight: math.unit(184, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/xang/front.svg",
  19782. extra: 845 / 755
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19790. default: true
  19791. },
  19792. {
  19793. name: "Macro",
  19794. height: math.unit(0.935 * 146, "feet")
  19795. },
  19796. {
  19797. name: "Megamacro",
  19798. height: math.unit(0.935 * 3, "miles")
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19804. {
  19805. frontDressed: {
  19806. height: math.unit(5 + 7 / 12, "feet"),
  19807. weight: math.unit(140, "lb"),
  19808. name: "Front (Dressed)",
  19809. image: {
  19810. source: "./media/characters/doc-weardno/front-dressed.svg",
  19811. extra: 263 / 234
  19812. }
  19813. },
  19814. backDressed: {
  19815. height: math.unit(5 + 7 / 12, "feet"),
  19816. weight: math.unit(140, "lb"),
  19817. name: "Back (Dressed)",
  19818. image: {
  19819. source: "./media/characters/doc-weardno/back-dressed.svg",
  19820. extra: 266 / 238
  19821. }
  19822. },
  19823. front: {
  19824. height: math.unit(5 + 7 / 12, "feet"),
  19825. weight: math.unit(140, "lb"),
  19826. name: "Front",
  19827. image: {
  19828. source: "./media/characters/doc-weardno/front.svg",
  19829. extra: 254 / 233
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Micro",
  19836. height: math.unit(3, "inches")
  19837. },
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(5 + 7 / 12, "feet"),
  19841. default: true
  19842. },
  19843. {
  19844. name: "Macro",
  19845. height: math.unit(25, "feet")
  19846. },
  19847. {
  19848. name: "Megamacro",
  19849. height: math.unit(2, "miles")
  19850. },
  19851. ]
  19852. ))
  19853. characterMakers.push(() => makeCharacter(
  19854. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19855. {
  19856. front: {
  19857. height: math.unit(6 + 2 / 12, "feet"),
  19858. weight: math.unit(153, "lb"),
  19859. name: "Front",
  19860. image: {
  19861. source: "./media/characters/seth-whilst/front.svg",
  19862. bottom: 0.07
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Micro",
  19869. height: math.unit(5, "inches")
  19870. },
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(6 + 2 / 12, "feet"),
  19874. default: true
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19880. {
  19881. front: {
  19882. height: math.unit(3, "inches"),
  19883. weight: math.unit(8, "grams"),
  19884. name: "Front",
  19885. image: {
  19886. source: "./media/characters/pocket-jabari/front.svg",
  19887. extra: 1024 / 974,
  19888. bottom: 0.039
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Minimicro",
  19895. height: math.unit(8, "mm")
  19896. },
  19897. {
  19898. name: "Micro",
  19899. height: math.unit(3, "inches"),
  19900. default: true
  19901. },
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(3, "feet")
  19905. },
  19906. ]
  19907. ))
  19908. characterMakers.push(() => makeCharacter(
  19909. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19910. {
  19911. frontDressed: {
  19912. height: math.unit(15, "feet"),
  19913. weight: math.unit(3280, "lb"),
  19914. name: "Front (Dressed)",
  19915. image: {
  19916. source: "./media/characters/sapphy/front-dressed.svg",
  19917. extra: 1951/1654,
  19918. bottom: 194/2145
  19919. },
  19920. form: "anthro",
  19921. default: true
  19922. },
  19923. backDressed: {
  19924. height: math.unit(15, "feet"),
  19925. weight: math.unit(3280, "lb"),
  19926. name: "Back (Dressed)",
  19927. image: {
  19928. source: "./media/characters/sapphy/back-dressed.svg",
  19929. extra: 2058/1918,
  19930. bottom: 125/2183
  19931. },
  19932. form: "anthro"
  19933. },
  19934. frontNude: {
  19935. height: math.unit(15, "feet"),
  19936. weight: math.unit(3280, "lb"),
  19937. name: "Front (Nude)",
  19938. image: {
  19939. source: "./media/characters/sapphy/front-nude.svg",
  19940. extra: 1951/1654,
  19941. bottom: 194/2145
  19942. },
  19943. form: "anthro"
  19944. },
  19945. backNude: {
  19946. height: math.unit(15, "feet"),
  19947. weight: math.unit(3280, "lb"),
  19948. name: "Back (Nude)",
  19949. image: {
  19950. source: "./media/characters/sapphy/back-nude.svg",
  19951. extra: 2058/1918,
  19952. bottom: 125/2183
  19953. },
  19954. form: "anthro"
  19955. },
  19956. full: {
  19957. height: math.unit(15, "feet"),
  19958. weight: math.unit(3280, "lb"),
  19959. name: "Full",
  19960. image: {
  19961. source: "./media/characters/sapphy/full.svg",
  19962. extra: 1396/1317,
  19963. bottom: 44/1440
  19964. },
  19965. form: "anthro"
  19966. },
  19967. dick: {
  19968. height: math.unit(3.8, "feet"),
  19969. name: "Dick",
  19970. image: {
  19971. source: "./media/characters/sapphy/dick.svg"
  19972. },
  19973. form: "anthro"
  19974. },
  19975. feral: {
  19976. height: math.unit(35, "feet"),
  19977. weight: math.unit(160, "tons"),
  19978. name: "Feral",
  19979. image: {
  19980. source: "./media/characters/sapphy/feral.svg",
  19981. extra: 1050/573,
  19982. bottom: 60/1110
  19983. },
  19984. form: "feral",
  19985. default: true
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Normal",
  19991. height: math.unit(15, "feet"),
  19992. form: "anthro"
  19993. },
  19994. {
  19995. name: "Casual Macro",
  19996. height: math.unit(120, "feet"),
  19997. form: "anthro"
  19998. },
  19999. {
  20000. name: "Macro",
  20001. height: math.unit(2150, "feet"),
  20002. default: true,
  20003. form: "anthro"
  20004. },
  20005. {
  20006. name: "Megamacro",
  20007. height: math.unit(8, "miles"),
  20008. form: "anthro"
  20009. },
  20010. {
  20011. name: "Galaxy Mom",
  20012. height: math.unit(6, "megalightyears"),
  20013. form: "anthro"
  20014. },
  20015. {
  20016. name: "Normal",
  20017. height: math.unit(35, "feet"),
  20018. form: "feral",
  20019. default: true
  20020. },
  20021. {
  20022. name: "Macro",
  20023. height: math.unit(300, "feet"),
  20024. form: "feral"
  20025. },
  20026. {
  20027. name: "Galaxy Mom",
  20028. height: math.unit(10, "megalightyears"),
  20029. form: "feral"
  20030. },
  20031. ],
  20032. {
  20033. "anthro": {
  20034. name: "Anthro",
  20035. default: true
  20036. },
  20037. "feral": {
  20038. name: "Feral"
  20039. }
  20040. }
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20044. {
  20045. hyenaFront: {
  20046. height: math.unit(6, "feet"),
  20047. weight: math.unit(190, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/kiro/hyena-front.svg",
  20051. extra: 927/839,
  20052. bottom: 91/1018
  20053. },
  20054. form: "hyena",
  20055. default: true
  20056. },
  20057. front: {
  20058. height: math.unit(6, "feet"),
  20059. weight: math.unit(170, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/kiro/front.svg",
  20063. extra: 1064 / 1012,
  20064. bottom: 0.052
  20065. },
  20066. form: "folf",
  20067. default: true
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Micro",
  20073. height: math.unit(6, "inches"),
  20074. form: "folf"
  20075. },
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(6, "feet"),
  20079. form: "folf",
  20080. default: true
  20081. },
  20082. {
  20083. name: "Macro",
  20084. height: math.unit(72, "feet"),
  20085. form: "folf"
  20086. },
  20087. {
  20088. name: "Micro",
  20089. height: math.unit(6, "inches"),
  20090. form: "hyena"
  20091. },
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(6, "feet"),
  20095. form: "hyena",
  20096. default: true
  20097. },
  20098. {
  20099. name: "Macro",
  20100. height: math.unit(72, "feet"),
  20101. form: "hyena"
  20102. },
  20103. ],
  20104. {
  20105. "hyena": {
  20106. name: "Hyena",
  20107. default: true
  20108. },
  20109. "folf": {
  20110. name: "Folf",
  20111. },
  20112. }
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(5 + 9 / 12, "feet"),
  20119. weight: math.unit(175, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/irishfox/front.svg",
  20123. extra: 1912 / 1680,
  20124. bottom: 0.02
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Nano",
  20131. height: math.unit(1, "mm")
  20132. },
  20133. {
  20134. name: "Micro",
  20135. height: math.unit(2, "inches")
  20136. },
  20137. {
  20138. name: "Normal",
  20139. height: math.unit(5 + 9 / 12, "feet"),
  20140. default: true
  20141. },
  20142. {
  20143. name: "Macro",
  20144. height: math.unit(45, "feet")
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20150. {
  20151. front: {
  20152. height: math.unit(6 + 1 / 12, "feet"),
  20153. weight: math.unit(75, "lb"),
  20154. name: "Front",
  20155. image: {
  20156. source: "./media/characters/aronai-sieyes/front.svg",
  20157. extra: 1532/1450,
  20158. bottom: 42/1574
  20159. }
  20160. },
  20161. side: {
  20162. height: math.unit(6 + 1 / 12, "feet"),
  20163. weight: math.unit(75, "lb"),
  20164. name: "Side",
  20165. image: {
  20166. source: "./media/characters/aronai-sieyes/side.svg",
  20167. extra: 1422/1365,
  20168. bottom: 148/1570
  20169. }
  20170. },
  20171. back: {
  20172. height: math.unit(6 + 1 / 12, "feet"),
  20173. weight: math.unit(75, "lb"),
  20174. name: "Back",
  20175. image: {
  20176. source: "./media/characters/aronai-sieyes/back.svg",
  20177. extra: 1526/1464,
  20178. bottom: 51/1577
  20179. }
  20180. },
  20181. dressed: {
  20182. height: math.unit(6 + 1 / 12, "feet"),
  20183. weight: math.unit(75, "lb"),
  20184. name: "Dressed",
  20185. image: {
  20186. source: "./media/characters/aronai-sieyes/dressed.svg",
  20187. extra: 1559/1483,
  20188. bottom: 39/1598
  20189. }
  20190. },
  20191. slit: {
  20192. height: math.unit(1.3, "feet"),
  20193. name: "Slit",
  20194. image: {
  20195. source: "./media/characters/aronai-sieyes/slit.svg"
  20196. }
  20197. },
  20198. slitSpread: {
  20199. height: math.unit(0.9, "feet"),
  20200. name: "Slit (Spread)",
  20201. image: {
  20202. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20203. }
  20204. },
  20205. rump: {
  20206. height: math.unit(1.3, "feet"),
  20207. name: "Rump",
  20208. image: {
  20209. source: "./media/characters/aronai-sieyes/rump.svg"
  20210. }
  20211. },
  20212. maw: {
  20213. height: math.unit(1.25, "feet"),
  20214. name: "Maw",
  20215. image: {
  20216. source: "./media/characters/aronai-sieyes/maw.svg"
  20217. }
  20218. },
  20219. feral: {
  20220. height: math.unit(18, "feet"),
  20221. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20222. name: "Feral",
  20223. image: {
  20224. source: "./media/characters/aronai-sieyes/feral.svg",
  20225. extra: 1530 / 1240,
  20226. bottom: 0.035
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Micro",
  20233. height: math.unit(2, "inches")
  20234. },
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(6 + 1 / 12, "feet"),
  20238. default: true
  20239. }
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(12, "feet"),
  20247. weight: math.unit(410, "kg"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/xuna/front.svg",
  20251. extra: 2184 / 1980
  20252. }
  20253. },
  20254. side: {
  20255. height: math.unit(12, "feet"),
  20256. weight: math.unit(410, "kg"),
  20257. name: "Side",
  20258. image: {
  20259. source: "./media/characters/xuna/side.svg",
  20260. extra: 2184 / 1980
  20261. }
  20262. },
  20263. back: {
  20264. height: math.unit(12, "feet"),
  20265. weight: math.unit(410, "kg"),
  20266. name: "Back",
  20267. image: {
  20268. source: "./media/characters/xuna/back.svg",
  20269. extra: 2184 / 1980
  20270. }
  20271. },
  20272. },
  20273. [
  20274. {
  20275. name: "Nano glow",
  20276. height: math.unit(10, "nm")
  20277. },
  20278. {
  20279. name: "Micro floof",
  20280. height: math.unit(0.3, "m")
  20281. },
  20282. {
  20283. name: "Huggable softy boi",
  20284. height: math.unit(3.6576, "m"),
  20285. default: true
  20286. },
  20287. {
  20288. name: "Admirable floof",
  20289. height: math.unit(80, "meters")
  20290. },
  20291. {
  20292. name: "Gentle macro",
  20293. height: math.unit(300, "meters")
  20294. },
  20295. {
  20296. name: "Very careful floof",
  20297. height: math.unit(3200, "meters")
  20298. },
  20299. {
  20300. name: "The mega floof",
  20301. height: math.unit(36000, "meters")
  20302. },
  20303. {
  20304. name: "Giga-fur-Wicker",
  20305. height: math.unit(4800000, "meters")
  20306. },
  20307. {
  20308. name: "Licky world",
  20309. height: math.unit(20000000, "meters")
  20310. },
  20311. {
  20312. name: "Floofy cyan sun",
  20313. height: math.unit(1500000000, "meters")
  20314. },
  20315. {
  20316. name: "Milky Wicker",
  20317. height: math.unit(1000000000000000000000, "meters")
  20318. },
  20319. {
  20320. name: "The observing Wicker",
  20321. height: math.unit(999999999999999999999999999, "meters")
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(5 + 9 / 12, "feet"),
  20330. weight: math.unit(150, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/arokha-sieyes/front.svg",
  20334. extra: 1425 / 1284,
  20335. bottom: 0.05
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Normal",
  20342. height: math.unit(5 + 9 / 12, "feet")
  20343. },
  20344. {
  20345. name: "Macro",
  20346. height: math.unit(30, "meters"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(6, "feet"),
  20356. weight: math.unit(180, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/arokh-sieyes/front.svg",
  20360. extra: 1830 / 1769,
  20361. bottom: 0.01
  20362. }
  20363. },
  20364. },
  20365. [
  20366. {
  20367. name: "Normal",
  20368. height: math.unit(6, "feet")
  20369. },
  20370. {
  20371. name: "Macro",
  20372. height: math.unit(30, "meters"),
  20373. default: true
  20374. },
  20375. ]
  20376. ))
  20377. characterMakers.push(() => makeCharacter(
  20378. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20379. {
  20380. side: {
  20381. height: math.unit(13 + 1 / 12, "feet"),
  20382. weight: math.unit(8.5, "tonnes"),
  20383. preyCapacity: math.unit(36, "people"),
  20384. name: "Side",
  20385. image: {
  20386. source: "./media/characters/goldeneye/side.svg",
  20387. extra: 1139/741,
  20388. bottom: 98/1237
  20389. }
  20390. },
  20391. front: {
  20392. height: math.unit(5.1, "feet"),
  20393. weight: math.unit(8.5, "tonnes"),
  20394. preyCapacity: math.unit(36, "people"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/goldeneye/front.svg",
  20398. extra: 635/365,
  20399. bottom: 598/1233
  20400. }
  20401. },
  20402. maw: {
  20403. height: math.unit(6.6, "feet"),
  20404. name: "Maw",
  20405. image: {
  20406. source: "./media/characters/goldeneye/maw.svg"
  20407. }
  20408. },
  20409. headFront: {
  20410. height: math.unit(8, "feet"),
  20411. name: "Head (Front)",
  20412. image: {
  20413. source: "./media/characters/goldeneye/head-front.svg"
  20414. }
  20415. },
  20416. headSide: {
  20417. height: math.unit(6, "feet"),
  20418. name: "Head (Side)",
  20419. image: {
  20420. source: "./media/characters/goldeneye/head-side.svg"
  20421. }
  20422. },
  20423. headBack: {
  20424. height: math.unit(8, "feet"),
  20425. name: "Head (Back)",
  20426. image: {
  20427. source: "./media/characters/goldeneye/head-back.svg"
  20428. }
  20429. },
  20430. paw: {
  20431. height: math.unit(3.4, "feet"),
  20432. name: "Paw",
  20433. image: {
  20434. source: "./media/characters/goldeneye/paw.svg"
  20435. }
  20436. },
  20437. toering: {
  20438. height: math.unit(0.45, "feet"),
  20439. name: "Toering",
  20440. image: {
  20441. source: "./media/characters/goldeneye/toering.svg"
  20442. }
  20443. },
  20444. eyes: {
  20445. height: math.unit(0.5, "feet"),
  20446. name: "Eyes",
  20447. image: {
  20448. source: "./media/characters/goldeneye/eyes.svg"
  20449. }
  20450. },
  20451. },
  20452. [
  20453. {
  20454. name: "Normal",
  20455. height: math.unit(13 + 1 / 12, "feet"),
  20456. default: true
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20462. {
  20463. front: {
  20464. height: math.unit(6 + 1 / 12, "feet"),
  20465. weight: math.unit(210, "lb"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/leonardo-lycheborne/front.svg",
  20469. extra: 776/723,
  20470. bottom: 34/810
  20471. }
  20472. },
  20473. side: {
  20474. height: math.unit(6 + 1 / 12, "feet"),
  20475. weight: math.unit(210, "lb"),
  20476. name: "Side",
  20477. image: {
  20478. source: "./media/characters/leonardo-lycheborne/side.svg",
  20479. extra: 780/728,
  20480. bottom: 12/792
  20481. }
  20482. },
  20483. back: {
  20484. height: math.unit(6 + 1 / 12, "feet"),
  20485. weight: math.unit(210, "lb"),
  20486. name: "Back",
  20487. image: {
  20488. source: "./media/characters/leonardo-lycheborne/back.svg",
  20489. extra: 775/721,
  20490. bottom: 17/792
  20491. }
  20492. },
  20493. hand: {
  20494. height: math.unit(1.08, "feet"),
  20495. name: "Hand",
  20496. image: {
  20497. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20498. }
  20499. },
  20500. foot: {
  20501. height: math.unit(1.32, "feet"),
  20502. name: "Foot",
  20503. image: {
  20504. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20505. }
  20506. },
  20507. maw: {
  20508. height: math.unit(1, "feet"),
  20509. name: "Maw",
  20510. image: {
  20511. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20512. }
  20513. },
  20514. were: {
  20515. height: math.unit(20, "feet"),
  20516. weight: math.unit(7800, "lb"),
  20517. name: "Were",
  20518. image: {
  20519. source: "./media/characters/leonardo-lycheborne/were.svg",
  20520. extra: 1224/1165,
  20521. bottom: 72/1296
  20522. }
  20523. },
  20524. feral: {
  20525. height: math.unit(7.5, "feet"),
  20526. weight: math.unit(600, "lb"),
  20527. name: "Feral",
  20528. image: {
  20529. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20530. extra: 797/702,
  20531. bottom: 139/936
  20532. }
  20533. },
  20534. taur: {
  20535. height: math.unit(11, "feet"),
  20536. weight: math.unit(3300, "lb"),
  20537. name: "Taur",
  20538. image: {
  20539. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20540. extra: 1271/1197,
  20541. bottom: 47/1318
  20542. }
  20543. },
  20544. barghest: {
  20545. height: math.unit(11, "feet"),
  20546. weight: math.unit(1300, "lb"),
  20547. name: "Barghest",
  20548. image: {
  20549. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20550. extra: 1291/1204,
  20551. bottom: 37/1328
  20552. }
  20553. },
  20554. dick: {
  20555. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20556. name: "Dick",
  20557. image: {
  20558. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20559. }
  20560. },
  20561. dickWere: {
  20562. height: math.unit((20) / 3.8, "feet"),
  20563. name: "Dick (Were)",
  20564. image: {
  20565. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(6 + 1 / 12, "feet"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20579. {
  20580. front: {
  20581. height: math.unit(10, "feet"),
  20582. weight: math.unit(350, "lb"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/jet/front.svg",
  20586. extra: 2050 / 1980,
  20587. bottom: 0.013
  20588. }
  20589. },
  20590. back: {
  20591. height: math.unit(10, "feet"),
  20592. weight: math.unit(350, "lb"),
  20593. name: "Back",
  20594. image: {
  20595. source: "./media/characters/jet/back.svg",
  20596. extra: 2050 / 1980,
  20597. bottom: 0.013
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Micro",
  20604. height: math.unit(6, "inches")
  20605. },
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(10, "feet"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Macro",
  20613. height: math.unit(100, "feet")
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20619. {
  20620. front: {
  20621. height: math.unit(15, "feet"),
  20622. weight: math.unit(2800, "lb"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/tanarath/front.svg",
  20626. extra: 2392 / 2220,
  20627. bottom: 0.03
  20628. }
  20629. },
  20630. back: {
  20631. height: math.unit(15, "feet"),
  20632. weight: math.unit(2800, "lb"),
  20633. name: "Back",
  20634. image: {
  20635. source: "./media/characters/tanarath/back.svg",
  20636. extra: 2392 / 2220,
  20637. bottom: 0.03
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(15, "feet"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(7 + 1 / 12, "feet"),
  20654. weight: math.unit(175, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/patty-cattybatty/front.svg",
  20658. extra: 908 / 874,
  20659. bottom: 0.025
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Micro",
  20666. height: math.unit(1, "inch")
  20667. },
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(7 + 1 / 12, "feet")
  20671. },
  20672. {
  20673. name: "Mini Macro",
  20674. height: math.unit(155, "feet")
  20675. },
  20676. {
  20677. name: "Macro",
  20678. height: math.unit(1077, "feet")
  20679. },
  20680. {
  20681. name: "Mega Macro",
  20682. height: math.unit(47650, "feet"),
  20683. default: true
  20684. },
  20685. {
  20686. name: "Giga Macro",
  20687. height: math.unit(440, "miles")
  20688. },
  20689. {
  20690. name: "Tera Macro",
  20691. height: math.unit(8700, "miles")
  20692. },
  20693. {
  20694. name: "Planetary Macro",
  20695. height: math.unit(32700, "miles")
  20696. },
  20697. {
  20698. name: "Solar Macro",
  20699. height: math.unit(550000, "miles")
  20700. },
  20701. {
  20702. name: "Celestial Macro",
  20703. height: math.unit(2.5, "AU")
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(4 + 5 / 12, "feet"),
  20712. weight: math.unit(90, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/cappu/front.svg",
  20716. extra: 1247 / 1152,
  20717. bottom: 0.012
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(4 + 5 / 12, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20731. {
  20732. frontDressed: {
  20733. height: math.unit(70, "cm"),
  20734. weight: math.unit(6, "kg"),
  20735. name: "Front (Dressed)",
  20736. image: {
  20737. source: "./media/characters/sebi/front-dressed.svg",
  20738. extra: 713.5 / 686.5,
  20739. bottom: 0.003
  20740. }
  20741. },
  20742. front: {
  20743. height: math.unit(70, "cm"),
  20744. weight: math.unit(5, "kg"),
  20745. name: "Front",
  20746. image: {
  20747. source: "./media/characters/sebi/front.svg",
  20748. extra: 713.5 / 686.5,
  20749. bottom: 0.003
  20750. }
  20751. }
  20752. },
  20753. [
  20754. {
  20755. name: "Normal",
  20756. height: math.unit(70, "cm"),
  20757. default: true
  20758. },
  20759. {
  20760. name: "Macro",
  20761. height: math.unit(8, "meters")
  20762. },
  20763. ]
  20764. ))
  20765. characterMakers.push(() => makeCharacter(
  20766. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20767. {
  20768. front: {
  20769. height: math.unit(6, "feet"),
  20770. weight: math.unit(150, "lb"),
  20771. name: "Front",
  20772. image: {
  20773. source: "./media/characters/typhek/front.svg",
  20774. extra: 1948 / 1929,
  20775. bottom: 0.025
  20776. }
  20777. },
  20778. side: {
  20779. height: math.unit(6, "feet"),
  20780. weight: math.unit(150, "lb"),
  20781. name: "Side",
  20782. image: {
  20783. source: "./media/characters/typhek/side.svg",
  20784. extra: 2034 / 2010,
  20785. bottom: 0.003
  20786. }
  20787. },
  20788. back: {
  20789. height: math.unit(6, "feet"),
  20790. weight: math.unit(150, "lb"),
  20791. name: "Back",
  20792. image: {
  20793. source: "./media/characters/typhek/back.svg",
  20794. extra: 2005 / 1978,
  20795. bottom: 0.004
  20796. }
  20797. },
  20798. palm: {
  20799. height: math.unit(1.2, "feet"),
  20800. name: "Palm",
  20801. image: {
  20802. source: "./media/characters/typhek/palm.svg"
  20803. }
  20804. },
  20805. fist: {
  20806. height: math.unit(1.1, "feet"),
  20807. name: "Fist",
  20808. image: {
  20809. source: "./media/characters/typhek/fist.svg"
  20810. }
  20811. },
  20812. foot: {
  20813. height: math.unit(1.57, "feet"),
  20814. name: "Foot",
  20815. image: {
  20816. source: "./media/characters/typhek/foot.svg"
  20817. }
  20818. },
  20819. sole: {
  20820. height: math.unit(2.05, "feet"),
  20821. name: "Sole",
  20822. image: {
  20823. source: "./media/characters/typhek/sole.svg"
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Macro",
  20830. height: math.unit(40, "stories"),
  20831. default: true
  20832. },
  20833. {
  20834. name: "Megamacro",
  20835. height: math.unit(1, "mile")
  20836. },
  20837. {
  20838. name: "Gigamacro",
  20839. height: math.unit(4000, "solarradii")
  20840. },
  20841. {
  20842. name: "Universal",
  20843. height: math.unit(1.1, "universes")
  20844. }
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20849. {
  20850. side: {
  20851. height: math.unit(5 + 7 / 12, "feet"),
  20852. weight: math.unit(150, "lb"),
  20853. name: "Side",
  20854. image: {
  20855. source: "./media/characters/kassy/side.svg",
  20856. extra: 1280 / 1225,
  20857. bottom: 0.002
  20858. }
  20859. },
  20860. front: {
  20861. height: math.unit(5 + 7 / 12, "feet"),
  20862. weight: math.unit(150, "lb"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/kassy/front.svg",
  20866. extra: 1280 / 1225,
  20867. bottom: 0.025
  20868. }
  20869. },
  20870. back: {
  20871. height: math.unit(5 + 7 / 12, "feet"),
  20872. weight: math.unit(150, "lb"),
  20873. name: "Back",
  20874. image: {
  20875. source: "./media/characters/kassy/back.svg",
  20876. extra: 1280 / 1225,
  20877. bottom: 0.002
  20878. }
  20879. },
  20880. foot: {
  20881. height: math.unit(1.266, "feet"),
  20882. name: "Foot",
  20883. image: {
  20884. source: "./media/characters/kassy/foot.svg"
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(5 + 7 / 12, "feet")
  20892. },
  20893. {
  20894. name: "Macro",
  20895. height: math.unit(137, "feet"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Megamacro",
  20900. height: math.unit(1, "mile")
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(6 + 1 / 12, "feet"),
  20909. weight: math.unit(200, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/neil/front.svg",
  20913. extra: 1326 / 1250,
  20914. bottom: 0.023
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(6 + 1 / 12, "feet"),
  20922. default: true
  20923. },
  20924. {
  20925. name: "Macro",
  20926. height: math.unit(200, "feet")
  20927. },
  20928. ]
  20929. ))
  20930. characterMakers.push(() => makeCharacter(
  20931. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20932. {
  20933. front: {
  20934. height: math.unit(5 + 9 / 12, "feet"),
  20935. weight: math.unit(190, "lb"),
  20936. name: "Front",
  20937. image: {
  20938. source: "./media/characters/atticus/front.svg",
  20939. extra: 2934 / 2785,
  20940. bottom: 0.025
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "Normal",
  20947. height: math.unit(5 + 9 / 12, "feet"),
  20948. default: true
  20949. },
  20950. {
  20951. name: "Macro",
  20952. height: math.unit(180, "feet")
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20958. {
  20959. side: {
  20960. height: math.unit(9, "feet"),
  20961. weight: math.unit(650, "lb"),
  20962. name: "Side",
  20963. image: {
  20964. source: "./media/characters/milo/side.svg",
  20965. extra: 2644 / 2310,
  20966. bottom: 0.032
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(9, "feet"),
  20974. default: true
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(300, "feet")
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20984. {
  20985. side: {
  20986. height: math.unit(8, "meters"),
  20987. weight: math.unit(90000, "kg"),
  20988. name: "Side",
  20989. image: {
  20990. source: "./media/characters/ijzer/side.svg",
  20991. extra: 2756 / 1600,
  20992. bottom: 0.01
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Small",
  20999. height: math.unit(3, "meters")
  21000. },
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(8, "meters"),
  21004. default: true
  21005. },
  21006. {
  21007. name: "Normal+",
  21008. height: math.unit(10, "meters")
  21009. },
  21010. {
  21011. name: "Bigger",
  21012. height: math.unit(24, "meters")
  21013. },
  21014. {
  21015. name: "Huge",
  21016. height: math.unit(80, "meters")
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21022. {
  21023. front: {
  21024. height: math.unit(6 + 2 / 12, "feet"),
  21025. weight: math.unit(153, "lb"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/luca-cervicum/front.svg",
  21029. extra: 370 / 327,
  21030. bottom: 0.015
  21031. }
  21032. },
  21033. back: {
  21034. height: math.unit(6 + 2 / 12, "feet"),
  21035. weight: math.unit(153, "lb"),
  21036. name: "Back",
  21037. image: {
  21038. source: "./media/characters/luca-cervicum/back.svg",
  21039. extra: 367 / 333,
  21040. bottom: 0.005
  21041. }
  21042. },
  21043. frontGear: {
  21044. height: math.unit(6 + 2 / 12, "feet"),
  21045. weight: math.unit(173, "lb"),
  21046. name: "Front (Gear)",
  21047. image: {
  21048. source: "./media/characters/luca-cervicum/front-gear.svg",
  21049. extra: 377 / 333,
  21050. bottom: 0.006
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(6 + 2 / 12, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21064. {
  21065. front: {
  21066. height: math.unit(6 + 1 / 12, "feet"),
  21067. weight: math.unit(304, "lb"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/oliver/front.svg",
  21071. extra: 157 / 143,
  21072. bottom: 0.08
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(6 + 1 / 12, "feet"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(5 + 7 / 12, "feet"),
  21089. weight: math.unit(140, "lb"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/shane/front.svg",
  21093. extra: 304 / 289,
  21094. bottom: 0.005
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(5 + 7 / 12, "feet"),
  21102. default: true
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21108. {
  21109. front: {
  21110. height: math.unit(5 + 9 / 12, "feet"),
  21111. weight: math.unit(178, "lb"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/shin/front.svg",
  21115. extra: 159 / 151,
  21116. bottom: 0.015
  21117. }
  21118. },
  21119. },
  21120. [
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(5 + 9 / 12, "feet"),
  21124. default: true
  21125. },
  21126. ]
  21127. ))
  21128. characterMakers.push(() => makeCharacter(
  21129. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21130. {
  21131. front: {
  21132. height: math.unit(5 + 10 / 12, "feet"),
  21133. weight: math.unit(168, "lb"),
  21134. name: "Front",
  21135. image: {
  21136. source: "./media/characters/xerxes/front.svg",
  21137. extra: 282 / 260,
  21138. bottom: 0.045
  21139. }
  21140. },
  21141. },
  21142. [
  21143. {
  21144. name: "Normal",
  21145. height: math.unit(5 + 10 / 12, "feet"),
  21146. default: true
  21147. },
  21148. ]
  21149. ))
  21150. characterMakers.push(() => makeCharacter(
  21151. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21152. {
  21153. front: {
  21154. height: math.unit(6 + 7 / 12, "feet"),
  21155. weight: math.unit(208, "lb"),
  21156. name: "Front",
  21157. image: {
  21158. source: "./media/characters/chaska/front.svg",
  21159. extra: 332 / 319,
  21160. bottom: 0.015
  21161. }
  21162. },
  21163. },
  21164. [
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(6 + 7 / 12, "feet"),
  21168. default: true
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(5 + 8 / 12, "feet"),
  21177. weight: math.unit(208, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/enuk/front.svg",
  21181. extra: 437 / 406,
  21182. bottom: 0.02
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(5 + 8 / 12, "feet"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(5 + 10 / 12, "feet"),
  21199. weight: math.unit(252, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/bruun/front.svg",
  21203. extra: 197 / 187,
  21204. bottom: 0.012
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(5 + 10 / 12, "feet"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(6 + 10 / 12, "feet"),
  21221. weight: math.unit(255, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/alexeev/front.svg",
  21225. extra: 213 / 200,
  21226. bottom: 0.05
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(6 + 10 / 12, "feet"),
  21234. default: true
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21240. {
  21241. front: {
  21242. height: math.unit(2 + 8 / 12, "feet"),
  21243. weight: math.unit(22, "lb"),
  21244. name: "Front",
  21245. image: {
  21246. source: "./media/characters/evelyn/front.svg",
  21247. extra: 208 / 180
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Normal",
  21254. height: math.unit(2 + 8 / 12, "feet"),
  21255. default: true
  21256. },
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21261. {
  21262. front: {
  21263. height: math.unit(5 + 9 / 12, "feet"),
  21264. weight: math.unit(139, "lb"),
  21265. name: "Front",
  21266. image: {
  21267. source: "./media/characters/inca/front.svg",
  21268. extra: 294 / 291,
  21269. bottom: 0.03
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(5 + 9 / 12, "feet"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(6 + 3 / 12, "feet"),
  21286. weight: math.unit(185, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/mera/front.svg",
  21290. extra: 291 / 277,
  21291. bottom: 0.03
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(6 + 3 / 12, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21305. {
  21306. front: {
  21307. height: math.unit(6 + 7 / 12, "feet"),
  21308. weight: math.unit(160, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/ceres/front.svg",
  21312. extra: 1023 / 950,
  21313. bottom: 0.027
  21314. }
  21315. },
  21316. back: {
  21317. height: math.unit(6 + 7 / 12, "feet"),
  21318. weight: math.unit(160, "lb"),
  21319. name: "Back",
  21320. image: {
  21321. source: "./media/characters/ceres/back.svg",
  21322. extra: 1023 / 950
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(6 + 7 / 12, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(5 + 10 / 12, "feet"),
  21339. weight: math.unit(150, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/kris/front.svg",
  21343. extra: 885 / 803,
  21344. bottom: 0.03
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(5 + 10 / 12, "feet"),
  21352. default: true
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21358. {
  21359. front: {
  21360. height: math.unit(7, "feet"),
  21361. weight: math.unit(120, "kg"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/taluthus/front.svg",
  21365. extra: 903 / 833,
  21366. bottom: 0.015
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(7, "feet"),
  21374. default: true
  21375. },
  21376. {
  21377. name: "Macro",
  21378. height: math.unit(300, "feet")
  21379. },
  21380. ]
  21381. ))
  21382. characterMakers.push(() => makeCharacter(
  21383. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21384. {
  21385. front: {
  21386. height: math.unit(5 + 9 / 12, "feet"),
  21387. weight: math.unit(145, "lb"),
  21388. name: "Front",
  21389. image: {
  21390. source: "./media/characters/dawn/front.svg",
  21391. extra: 2094 / 2016,
  21392. bottom: 0.025
  21393. }
  21394. },
  21395. back: {
  21396. height: math.unit(5 + 9 / 12, "feet"),
  21397. weight: math.unit(160, "lb"),
  21398. name: "Back",
  21399. image: {
  21400. source: "./media/characters/dawn/back.svg",
  21401. extra: 2112 / 2080,
  21402. bottom: 0.005
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Normal",
  21409. height: math.unit(6 + 7 / 12, "feet"),
  21410. default: true
  21411. },
  21412. ]
  21413. ))
  21414. characterMakers.push(() => makeCharacter(
  21415. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21416. {
  21417. anthro: {
  21418. height: math.unit(8 + 3 / 12, "feet"),
  21419. weight: math.unit(450, "lb"),
  21420. name: "Anthro",
  21421. image: {
  21422. source: "./media/characters/arador/anthro.svg",
  21423. extra: 1835 / 1718,
  21424. bottom: 0.025
  21425. }
  21426. },
  21427. feral: {
  21428. height: math.unit(4, "feet"),
  21429. weight: math.unit(200, "lb"),
  21430. name: "Feral",
  21431. image: {
  21432. source: "./media/characters/arador/feral.svg",
  21433. extra: 1683 / 1514,
  21434. bottom: 0.07
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Normal",
  21441. height: math.unit(8 + 3 / 12, "feet")
  21442. },
  21443. {
  21444. name: "Macro",
  21445. height: math.unit(82.5, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(5 + 10 / 12, "feet"),
  21455. weight: math.unit(125, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/dharsi/front.svg",
  21459. extra: 716 / 630,
  21460. bottom: 0.035
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Nano",
  21467. height: math.unit(100, "nm")
  21468. },
  21469. {
  21470. name: "Micro",
  21471. height: math.unit(2, "inches")
  21472. },
  21473. {
  21474. name: "Normal",
  21475. height: math.unit(5 + 10 / 12, "feet"),
  21476. default: true
  21477. },
  21478. {
  21479. name: "Macro",
  21480. height: math.unit(1000, "feet")
  21481. },
  21482. {
  21483. name: "Megamacro",
  21484. height: math.unit(10, "miles")
  21485. },
  21486. {
  21487. name: "Gigamacro",
  21488. height: math.unit(3000, "miles")
  21489. },
  21490. {
  21491. name: "Teramacro",
  21492. height: math.unit(500000, "miles")
  21493. },
  21494. {
  21495. name: "Teramacro+",
  21496. height: math.unit(30, "galaxies")
  21497. },
  21498. ]
  21499. ))
  21500. characterMakers.push(() => makeCharacter(
  21501. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21502. {
  21503. front: {
  21504. height: math.unit(6, "feet"),
  21505. weight: math.unit(150, "lb"),
  21506. name: "Front",
  21507. image: {
  21508. source: "./media/characters/deathy/front.svg",
  21509. extra: 1552 / 1463,
  21510. bottom: 0.025
  21511. }
  21512. },
  21513. side: {
  21514. height: math.unit(6, "feet"),
  21515. weight: math.unit(150, "lb"),
  21516. name: "Side",
  21517. image: {
  21518. source: "./media/characters/deathy/side.svg",
  21519. extra: 1604 / 1455,
  21520. bottom: 0.025
  21521. }
  21522. },
  21523. back: {
  21524. height: math.unit(6, "feet"),
  21525. weight: math.unit(150, "lb"),
  21526. name: "Back",
  21527. image: {
  21528. source: "./media/characters/deathy/back.svg",
  21529. extra: 1580 / 1463,
  21530. bottom: 0.005
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Micro",
  21537. height: math.unit(5, "millimeters")
  21538. },
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(6 + 5 / 12, "feet"),
  21542. default: true
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21548. {
  21549. front: {
  21550. height: math.unit(16, "feet"),
  21551. weight: math.unit(4000, "lb"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/juniper/front.svg",
  21555. bottom: 0.04
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Normal",
  21562. height: math.unit(16, "feet"),
  21563. default: true
  21564. },
  21565. ]
  21566. ))
  21567. characterMakers.push(() => makeCharacter(
  21568. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21569. {
  21570. front: {
  21571. height: math.unit(6, "feet"),
  21572. weight: math.unit(150, "lb"),
  21573. name: "Front",
  21574. image: {
  21575. source: "./media/characters/hipster/front.svg",
  21576. extra: 1312 / 1209,
  21577. bottom: 0.025
  21578. }
  21579. },
  21580. back: {
  21581. height: math.unit(6, "feet"),
  21582. weight: math.unit(150, "lb"),
  21583. name: "Back",
  21584. image: {
  21585. source: "./media/characters/hipster/back.svg",
  21586. extra: 1281 / 1196,
  21587. bottom: 0.01
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Micro",
  21594. height: math.unit(1, "mm")
  21595. },
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(4, "inches"),
  21599. default: true
  21600. },
  21601. {
  21602. name: "Macro",
  21603. height: math.unit(500, "feet")
  21604. },
  21605. {
  21606. name: "Megamacro",
  21607. height: math.unit(1000, "miles")
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21613. {
  21614. front: {
  21615. height: math.unit(6, "feet"),
  21616. weight: math.unit(150, "lb"),
  21617. name: "Front",
  21618. image: {
  21619. source: "./media/characters/tendirmuldr/front.svg",
  21620. extra: 1878 / 1772,
  21621. bottom: 0.015
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Megamacro",
  21628. height: math.unit(1500, "miles"),
  21629. default: true
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21635. {
  21636. front: {
  21637. height: math.unit(14, "feet"),
  21638. weight: math.unit(12000, "lb"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/mort/front.svg",
  21642. extra: 365 / 318,
  21643. bottom: 0.01
  21644. }
  21645. },
  21646. side: {
  21647. height: math.unit(14, "feet"),
  21648. weight: math.unit(12000, "lb"),
  21649. name: "Side",
  21650. image: {
  21651. source: "./media/characters/mort/side.svg",
  21652. extra: 365 / 318,
  21653. bottom: 0.052
  21654. },
  21655. default: true
  21656. },
  21657. back: {
  21658. height: math.unit(14, "feet"),
  21659. weight: math.unit(12000, "lb"),
  21660. name: "Back",
  21661. image: {
  21662. source: "./media/characters/mort/back.svg",
  21663. extra: 371 / 332,
  21664. bottom: 0.18
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(14, "feet"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21678. {
  21679. front: {
  21680. height: math.unit(8, "feet"),
  21681. weight: math.unit(1, "ton"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/lycoa/front.svg",
  21685. extra: 1836/1728,
  21686. bottom: 81/1917
  21687. }
  21688. },
  21689. back: {
  21690. height: math.unit(8, "feet"),
  21691. weight: math.unit(1, "ton"),
  21692. name: "Back",
  21693. image: {
  21694. source: "./media/characters/lycoa/back.svg",
  21695. extra: 1785/1720,
  21696. bottom: 91/1876
  21697. }
  21698. },
  21699. head: {
  21700. height: math.unit(1.6243, "feet"),
  21701. name: "Head",
  21702. image: {
  21703. source: "./media/characters/lycoa/head.svg",
  21704. extra: 1011/782,
  21705. bottom: 0/1011
  21706. }
  21707. },
  21708. tailmaw: {
  21709. height: math.unit(1.9, "feet"),
  21710. name: "Tailmaw",
  21711. image: {
  21712. source: "./media/characters/lycoa/tailmaw.svg"
  21713. }
  21714. },
  21715. tentacles: {
  21716. height: math.unit(2.1, "feet"),
  21717. name: "Tentacles",
  21718. image: {
  21719. source: "./media/characters/lycoa/tentacles.svg"
  21720. }
  21721. },
  21722. dick: {
  21723. height: math.unit(1.73, "feet"),
  21724. name: "Dick",
  21725. image: {
  21726. source: "./media/characters/lycoa/dick.svg"
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(8, "feet"),
  21734. default: true
  21735. },
  21736. {
  21737. name: "Macro",
  21738. height: math.unit(30, "feet")
  21739. },
  21740. ]
  21741. ))
  21742. characterMakers.push(() => makeCharacter(
  21743. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21744. {
  21745. front: {
  21746. height: math.unit(4 + 2 / 12, "feet"),
  21747. weight: math.unit(70, "lb"),
  21748. name: "Front",
  21749. image: {
  21750. source: "./media/characters/naldara/front.svg",
  21751. extra: 1664/1387,
  21752. bottom: 81/1745
  21753. },
  21754. form: "anthro",
  21755. default: true
  21756. },
  21757. naga: {
  21758. height: math.unit(20, "feet"),
  21759. weight: math.unit(15000, "kg"),
  21760. name: "Front",
  21761. image: {
  21762. source: "./media/characters/naldara/naga.svg",
  21763. extra: 1590/1396,
  21764. bottom: 285/1875
  21765. },
  21766. form: "naga",
  21767. default: true
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Normal",
  21773. height: math.unit(4 + 2 / 12, "feet"),
  21774. form: "anthro",
  21775. default: true
  21776. },
  21777. {
  21778. name: "Normal",
  21779. height: math.unit(20, "feet"),
  21780. form: "naga",
  21781. default: true
  21782. },
  21783. ],
  21784. {
  21785. "anthro": {
  21786. name: "Anthro",
  21787. default: true
  21788. },
  21789. "naga": {
  21790. name: "Naga"
  21791. }
  21792. }
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(13 + 7 / 12, "feet"),
  21799. weight: math.unit(1500, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/briar/front.svg",
  21803. extra: 1223/1157,
  21804. bottom: 123/1346
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(13 + 7 / 12, "feet"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21818. {
  21819. side: {
  21820. height: math.unit(16, "feet"),
  21821. weight: math.unit(500, "lb"),
  21822. name: "Side",
  21823. image: {
  21824. source: "./media/characters/vanguard/side.svg",
  21825. extra: 1022/914,
  21826. bottom: 30/1052
  21827. }
  21828. },
  21829. sideAlt: {
  21830. height: math.unit(10, "feet"),
  21831. weight: math.unit(500, "lb"),
  21832. name: "Side (Alt)",
  21833. image: {
  21834. source: "./media/characters/vanguard/side-alt.svg",
  21835. extra: 502 / 425,
  21836. bottom: 0.087
  21837. }
  21838. },
  21839. },
  21840. [
  21841. {
  21842. name: "Normal",
  21843. height: math.unit(17.71, "feet"),
  21844. default: true
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21850. {
  21851. front: {
  21852. height: math.unit(7.5, "feet"),
  21853. weight: math.unit(2, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/artemis/work-safe-front.svg",
  21857. extra: 1192 / 1075,
  21858. bottom: 0.07
  21859. },
  21860. form: "work-safe",
  21861. default: true
  21862. },
  21863. frontNsfw: {
  21864. height: math.unit(7.5, "feet"),
  21865. weight: math.unit(2, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/artemis/calibrating-front.svg",
  21869. extra: 1192 / 1075,
  21870. bottom: 0.07
  21871. },
  21872. form: "calibrating",
  21873. default: true
  21874. },
  21875. frontNsfwer: {
  21876. height: math.unit(7.5, "feet"),
  21877. weight: math.unit(2, "lb"),
  21878. name: "Front",
  21879. image: {
  21880. source: "./media/characters/artemis/oversize-load-front.svg",
  21881. extra: 1192 / 1075,
  21882. bottom: 0.07
  21883. },
  21884. form: "oversize-load",
  21885. default: true
  21886. },
  21887. side: {
  21888. height: math.unit(7.5, "feet"),
  21889. weight: math.unit(2, "lb"),
  21890. name: "Side",
  21891. image: {
  21892. source: "./media/characters/artemis/work-safe-side.svg",
  21893. extra: 1192 / 1075,
  21894. bottom: 0.07
  21895. },
  21896. form: "work-safe"
  21897. },
  21898. sideNsfw: {
  21899. height: math.unit(7.5, "feet"),
  21900. weight: math.unit(2, "lb"),
  21901. name: "Side",
  21902. image: {
  21903. source: "./media/characters/artemis/calibrating-side.svg",
  21904. extra: 1192 / 1075,
  21905. bottom: 0.07
  21906. },
  21907. form: "calibrating"
  21908. },
  21909. sideNsfwer: {
  21910. height: math.unit(7.5, "feet"),
  21911. weight: math.unit(2, "lb"),
  21912. name: "Side",
  21913. image: {
  21914. source: "./media/characters/artemis/oversize-load-side.svg",
  21915. extra: 1192 / 1075,
  21916. bottom: 0.07
  21917. },
  21918. form: "oversize-load"
  21919. },
  21920. maw: {
  21921. height: math.unit(1.1, "feet"),
  21922. name: "Maw",
  21923. image: {
  21924. source: "./media/characters/artemis/maw.svg"
  21925. },
  21926. form: "work-safe"
  21927. },
  21928. stomach: {
  21929. height: math.unit(0.95, "feet"),
  21930. name: "Stomach",
  21931. image: {
  21932. source: "./media/characters/artemis/stomach.svg"
  21933. },
  21934. form: "work-safe"
  21935. },
  21936. dickCanine: {
  21937. height: math.unit(1, "feet"),
  21938. name: "Dick (Canine)",
  21939. image: {
  21940. source: "./media/characters/artemis/dick-canine.svg"
  21941. },
  21942. form: "calibrating"
  21943. },
  21944. dickEquine: {
  21945. height: math.unit(0.85, "feet"),
  21946. name: "Dick (Equine)",
  21947. image: {
  21948. source: "./media/characters/artemis/dick-equine.svg"
  21949. },
  21950. form: "calibrating"
  21951. },
  21952. dickExotic: {
  21953. height: math.unit(0.85, "feet"),
  21954. name: "Dick (Exotic)",
  21955. image: {
  21956. source: "./media/characters/artemis/dick-exotic.svg"
  21957. },
  21958. form: "calibrating"
  21959. },
  21960. dickCanineBigger: {
  21961. height: math.unit(1 * 1.33, "feet"),
  21962. name: "Dick (Canine)",
  21963. image: {
  21964. source: "./media/characters/artemis/dick-canine.svg"
  21965. },
  21966. form: "oversize-load"
  21967. },
  21968. dickEquineBigger: {
  21969. height: math.unit(0.85 * 1.33, "feet"),
  21970. name: "Dick (Equine)",
  21971. image: {
  21972. source: "./media/characters/artemis/dick-equine.svg"
  21973. },
  21974. form: "oversize-load"
  21975. },
  21976. dickExoticBigger: {
  21977. height: math.unit(0.85 * 1.33, "feet"),
  21978. name: "Dick (Exotic)",
  21979. image: {
  21980. source: "./media/characters/artemis/dick-exotic.svg"
  21981. },
  21982. form: "oversize-load"
  21983. },
  21984. },
  21985. [
  21986. {
  21987. name: "Normal",
  21988. height: math.unit(7.5, "feet"),
  21989. form: "work-safe",
  21990. default: true
  21991. },
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(7.5, "feet"),
  21995. form: "calibrating",
  21996. default: true
  21997. },
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(7.5, "feet"),
  22001. form: "oversize-load",
  22002. default: true
  22003. },
  22004. {
  22005. name: "Enlarged",
  22006. height: math.unit(12, "feet"),
  22007. form: "work-safe",
  22008. },
  22009. {
  22010. name: "Enlarged",
  22011. height: math.unit(12, "feet"),
  22012. form: "calibrating",
  22013. },
  22014. {
  22015. name: "Enlarged",
  22016. height: math.unit(12, "feet"),
  22017. form: "oversize-load",
  22018. },
  22019. ],
  22020. {
  22021. "work-safe": {
  22022. name: "Work-Safe",
  22023. default: true
  22024. },
  22025. "calibrating": {
  22026. name: "Calibrating"
  22027. },
  22028. "oversize-load": {
  22029. name: "Oversize Load"
  22030. }
  22031. }
  22032. ))
  22033. characterMakers.push(() => makeCharacter(
  22034. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22035. {
  22036. front: {
  22037. height: math.unit(5 + 3 / 12, "feet"),
  22038. weight: math.unit(160, "lb"),
  22039. name: "Front",
  22040. image: {
  22041. source: "./media/characters/kira/front.svg",
  22042. extra: 906 / 786,
  22043. bottom: 0.01
  22044. }
  22045. },
  22046. back: {
  22047. height: math.unit(5 + 3 / 12, "feet"),
  22048. weight: math.unit(160, "lb"),
  22049. name: "Back",
  22050. image: {
  22051. source: "./media/characters/kira/back.svg",
  22052. extra: 882 / 757,
  22053. bottom: 0.005
  22054. }
  22055. },
  22056. frontDressed: {
  22057. height: math.unit(5 + 3 / 12, "feet"),
  22058. weight: math.unit(160, "lb"),
  22059. name: "Front (Dressed)",
  22060. image: {
  22061. source: "./media/characters/kira/front-dressed.svg",
  22062. extra: 906 / 786,
  22063. bottom: 0.01
  22064. }
  22065. },
  22066. beans: {
  22067. height: math.unit(0.92, "feet"),
  22068. name: "Beans",
  22069. image: {
  22070. source: "./media/characters/kira/beans.svg"
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(5 + 3 / 12, "feet"),
  22078. default: true
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(5 + 4 / 12, "feet"),
  22087. weight: math.unit(145, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/scramble/front.svg",
  22091. extra: 763 / 727,
  22092. bottom: 0.05
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(5 + 4 / 12, "feet"),
  22097. weight: math.unit(145, "lb"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/scramble/back.svg",
  22101. extra: 826 / 737,
  22102. bottom: 0.002
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(5 + 4 / 12, "feet"),
  22110. default: true
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22116. {
  22117. side: {
  22118. height: math.unit(6 + 2 / 12, "feet"),
  22119. weight: math.unit(190, "lb"),
  22120. name: "Side",
  22121. image: {
  22122. source: "./media/characters/biscuit/side.svg",
  22123. extra: 858 / 791,
  22124. bottom: 0.044
  22125. }
  22126. },
  22127. },
  22128. [
  22129. {
  22130. name: "Normal",
  22131. height: math.unit(6 + 2 / 12, "feet"),
  22132. default: true
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(5 + 2 / 12, "feet"),
  22141. weight: math.unit(120, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/poffin/front.svg",
  22145. extra: 786 / 680,
  22146. bottom: 0.005
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(5 + 2 / 12, "feet"),
  22154. default: true
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(6 + 3 / 12, "feet"),
  22163. weight: math.unit(519, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/dhari/front.svg",
  22167. extra: 1048 / 946,
  22168. bottom: 0.015
  22169. }
  22170. },
  22171. back: {
  22172. height: math.unit(6 + 3 / 12, "feet"),
  22173. weight: math.unit(519, "lb"),
  22174. name: "Back",
  22175. image: {
  22176. source: "./media/characters/dhari/back.svg",
  22177. extra: 1048 / 931,
  22178. bottom: 0.005
  22179. }
  22180. },
  22181. frontDressed: {
  22182. height: math.unit(6 + 3 / 12, "feet"),
  22183. weight: math.unit(519, "lb"),
  22184. name: "Front (Dressed)",
  22185. image: {
  22186. source: "./media/characters/dhari/front-dressed.svg",
  22187. extra: 1713 / 1546,
  22188. bottom: 0.02
  22189. }
  22190. },
  22191. backDressed: {
  22192. height: math.unit(6 + 3 / 12, "feet"),
  22193. weight: math.unit(519, "lb"),
  22194. name: "Back (Dressed)",
  22195. image: {
  22196. source: "./media/characters/dhari/back-dressed.svg",
  22197. extra: 1699 / 1537,
  22198. bottom: 0.01
  22199. }
  22200. },
  22201. maw: {
  22202. height: math.unit(0.95, "feet"),
  22203. name: "Maw",
  22204. image: {
  22205. source: "./media/characters/dhari/maw.svg"
  22206. }
  22207. },
  22208. wereFront: {
  22209. height: math.unit(12 + 8 / 12, "feet"),
  22210. weight: math.unit(4000, "lb"),
  22211. name: "Front (Were)",
  22212. image: {
  22213. source: "./media/characters/dhari/were-front.svg",
  22214. extra: 1065 / 969,
  22215. bottom: 0.015
  22216. }
  22217. },
  22218. wereBack: {
  22219. height: math.unit(12 + 8 / 12, "feet"),
  22220. weight: math.unit(4000, "lb"),
  22221. name: "Back (Were)",
  22222. image: {
  22223. source: "./media/characters/dhari/were-back.svg",
  22224. extra: 1065 / 969,
  22225. bottom: 0.012
  22226. }
  22227. },
  22228. wereMaw: {
  22229. height: math.unit(0.625, "meters"),
  22230. name: "Maw (Were)",
  22231. image: {
  22232. source: "./media/characters/dhari/were-maw.svg"
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(6 + 3 / 12, "feet"),
  22240. default: true
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22246. {
  22247. anthro: {
  22248. height: math.unit(5 + 7 / 12, "feet"),
  22249. weight: math.unit(175, "lb"),
  22250. name: "Anthro",
  22251. image: {
  22252. source: "./media/characters/rena-dyne/anthro.svg",
  22253. extra: 1849 / 1785,
  22254. bottom: 0.005
  22255. }
  22256. },
  22257. taur: {
  22258. height: math.unit(15 + 6 / 12, "feet"),
  22259. weight: math.unit(8000, "lb"),
  22260. name: "Taur",
  22261. image: {
  22262. source: "./media/characters/rena-dyne/taur.svg",
  22263. extra: 2315 / 2234,
  22264. bottom: 0.033
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(5 + 7 / 12, "feet"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(8, "feet"),
  22281. weight: math.unit(600, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/weremeep/front.svg",
  22285. extra: 970/849,
  22286. bottom: 7/977
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(8, "feet"),
  22294. default: true
  22295. },
  22296. {
  22297. name: "Lorg",
  22298. height: math.unit(12, "feet")
  22299. },
  22300. {
  22301. name: "Oh Lawd She Comin'",
  22302. height: math.unit(20, "feet")
  22303. },
  22304. ]
  22305. ))
  22306. characterMakers.push(() => makeCharacter(
  22307. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22308. {
  22309. front: {
  22310. height: math.unit(4, "feet"),
  22311. weight: math.unit(90, "lb"),
  22312. name: "Front",
  22313. image: {
  22314. source: "./media/characters/reza/front.svg",
  22315. extra: 1183 / 1111,
  22316. bottom: 0.017
  22317. }
  22318. },
  22319. back: {
  22320. height: math.unit(4, "feet"),
  22321. weight: math.unit(90, "lb"),
  22322. name: "Back",
  22323. image: {
  22324. source: "./media/characters/reza/back.svg",
  22325. extra: 1183 / 1111,
  22326. bottom: 0.01
  22327. }
  22328. },
  22329. drake: {
  22330. height: math.unit(30, "feet"),
  22331. weight: math.unit(246960, "lb"),
  22332. name: "Drake",
  22333. image: {
  22334. source: "./media/characters/reza/drake.svg",
  22335. extra: 2350 / 2024,
  22336. bottom: 60.7 / 2403
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(4, "feet"),
  22344. default: true
  22345. },
  22346. ]
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22350. {
  22351. side: {
  22352. height: math.unit(15, "feet"),
  22353. weight: math.unit(14, "tons"),
  22354. name: "Side",
  22355. image: {
  22356. source: "./media/characters/athea/side.svg",
  22357. extra: 960 / 540,
  22358. bottom: 0.003
  22359. }
  22360. },
  22361. sitting: {
  22362. height: math.unit(6 * 2.85, "feet"),
  22363. weight: math.unit(14, "tons"),
  22364. name: "Sitting",
  22365. image: {
  22366. source: "./media/characters/athea/sitting.svg",
  22367. extra: 621 / 581,
  22368. bottom: 0.075
  22369. }
  22370. },
  22371. maw: {
  22372. height: math.unit(7.59498031496063, "feet"),
  22373. name: "Maw",
  22374. image: {
  22375. source: "./media/characters/athea/maw.svg"
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Lap Cat",
  22382. height: math.unit(2.5, "feet")
  22383. },
  22384. {
  22385. name: "Minimacro",
  22386. height: math.unit(15, "feet"),
  22387. default: true
  22388. },
  22389. {
  22390. name: "Macro",
  22391. height: math.unit(120, "feet")
  22392. },
  22393. {
  22394. name: "Macro+",
  22395. height: math.unit(640, "feet")
  22396. },
  22397. {
  22398. name: "Colossus",
  22399. height: math.unit(2.2, "miles")
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(8 + 8 / 12, "feet"),
  22408. weight: math.unit(130, "kg"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/seroko/front.svg",
  22412. extra: 1385 / 1280,
  22413. bottom: 0.025
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(8 + 8 / 12, "feet"),
  22418. weight: math.unit(130, "kg"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/seroko/back.svg",
  22422. extra: 1369 / 1238,
  22423. bottom: 0.018
  22424. }
  22425. },
  22426. frontDressed: {
  22427. height: math.unit(8 + 8 / 12, "feet"),
  22428. weight: math.unit(130, "kg"),
  22429. name: "Front (Dressed)",
  22430. image: {
  22431. source: "./media/characters/seroko/front-dressed.svg",
  22432. extra: 1366 / 1275,
  22433. bottom: 0.03
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(8 + 8 / 12, "feet"),
  22441. default: true
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22447. {
  22448. front: {
  22449. height: math.unit(5.5, "feet"),
  22450. weight: math.unit(160, "lb"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/quatzi/front.svg",
  22454. extra: 2346 / 2242,
  22455. bottom: 0.015
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Normal",
  22462. height: math.unit(5.5, "feet"),
  22463. default: true
  22464. },
  22465. {
  22466. name: "Big",
  22467. height: math.unit(7.7, "feet")
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(5 + 11 / 12, "feet"),
  22476. weight: math.unit(180, "lb"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/sen/front.svg",
  22480. extra: 1321 / 1254,
  22481. bottom: 0.015
  22482. }
  22483. },
  22484. side: {
  22485. height: math.unit(5 + 11 / 12, "feet"),
  22486. weight: math.unit(180, "lb"),
  22487. name: "Side",
  22488. image: {
  22489. source: "./media/characters/sen/side.svg",
  22490. extra: 1321 / 1254,
  22491. bottom: 0.007
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(5 + 11 / 12, "feet"),
  22496. weight: math.unit(180, "lb"),
  22497. name: "Back",
  22498. image: {
  22499. source: "./media/characters/sen/back.svg",
  22500. extra: 1321 / 1254
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(5 + 11 / 12, "feet"),
  22508. default: true
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(166.6, "cm"),
  22517. weight: math.unit(66.6, "kg"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/fruity/front.svg",
  22521. extra: 1510 / 1386,
  22522. bottom: 0.04
  22523. }
  22524. },
  22525. back: {
  22526. height: math.unit(166.6, "cm"),
  22527. weight: math.unit(66.6, "lb"),
  22528. name: "Back",
  22529. image: {
  22530. source: "./media/characters/fruity/back.svg",
  22531. extra: 1563 / 1435,
  22532. bottom: 0.005
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Normal",
  22539. height: math.unit(166.6, "cm"),
  22540. default: true
  22541. },
  22542. {
  22543. name: "Demonic",
  22544. height: math.unit(166.6, "feet")
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22550. {
  22551. side: {
  22552. height: math.unit(10, "feet"),
  22553. weight: math.unit(500, "lb"),
  22554. name: "Side",
  22555. image: {
  22556. source: "./media/characters/zost/side.svg",
  22557. extra: 2870/2533,
  22558. bottom: 252/3122
  22559. }
  22560. },
  22561. mawFront: {
  22562. height: math.unit(1.08, "meters"),
  22563. name: "Maw (Front)",
  22564. image: {
  22565. source: "./media/characters/zost/maw-front.svg"
  22566. }
  22567. },
  22568. mawSide: {
  22569. height: math.unit(2.66, "feet"),
  22570. name: "Maw (Side)",
  22571. image: {
  22572. source: "./media/characters/zost/maw-side.svg"
  22573. }
  22574. },
  22575. wingspan: {
  22576. height: math.unit(7.4, "feet"),
  22577. name: "Wingspan",
  22578. image: {
  22579. source: "./media/characters/zost/wingspan.svg"
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(10, "feet"),
  22587. default: true
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22593. {
  22594. front: {
  22595. height: math.unit(5 + 4 / 12, "feet"),
  22596. weight: math.unit(120, "lb"),
  22597. name: "Front",
  22598. image: {
  22599. source: "./media/characters/luci/front.svg",
  22600. extra: 1985 / 1884,
  22601. bottom: 0.04
  22602. }
  22603. },
  22604. back: {
  22605. height: math.unit(5 + 4 / 12, "feet"),
  22606. weight: math.unit(120, "lb"),
  22607. name: "Back",
  22608. image: {
  22609. source: "./media/characters/luci/back.svg",
  22610. extra: 1892 / 1791,
  22611. bottom: 0.002
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(5 + 4 / 12, "feet"),
  22619. default: true
  22620. },
  22621. ]
  22622. ))
  22623. characterMakers.push(() => makeCharacter(
  22624. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22625. {
  22626. front: {
  22627. height: math.unit(1500, "feet"),
  22628. weight: math.unit(3.8e6, "tons"),
  22629. name: "Front",
  22630. image: {
  22631. source: "./media/characters/2th/front.svg",
  22632. extra: 3489 / 3350,
  22633. bottom: 0.1
  22634. }
  22635. },
  22636. foot: {
  22637. height: math.unit(461, "feet"),
  22638. name: "Foot",
  22639. image: {
  22640. source: "./media/characters/2th/foot.svg"
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "\"Micro\"",
  22647. height: math.unit(15 + 7 / 12, "feet")
  22648. },
  22649. {
  22650. name: "Normal",
  22651. height: math.unit(1500, "feet"),
  22652. default: true
  22653. },
  22654. {
  22655. name: "Macro",
  22656. height: math.unit(5000, "feet")
  22657. },
  22658. {
  22659. name: "Megamacro",
  22660. height: math.unit(15, "miles")
  22661. },
  22662. {
  22663. name: "Gigamacro",
  22664. height: math.unit(4000, "miles")
  22665. },
  22666. {
  22667. name: "Galactic",
  22668. height: math.unit(50, "AU")
  22669. },
  22670. ]
  22671. ))
  22672. characterMakers.push(() => makeCharacter(
  22673. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22674. {
  22675. front: {
  22676. height: math.unit(5 + 6 / 12, "feet"),
  22677. weight: math.unit(220, "lb"),
  22678. name: "Front",
  22679. image: {
  22680. source: "./media/characters/amethyst/front.svg",
  22681. extra: 2078 / 2040,
  22682. bottom: 0.045
  22683. }
  22684. },
  22685. back: {
  22686. height: math.unit(5 + 6 / 12, "feet"),
  22687. weight: math.unit(220, "lb"),
  22688. name: "Back",
  22689. image: {
  22690. source: "./media/characters/amethyst/back.svg",
  22691. extra: 2021 / 1989,
  22692. bottom: 0.02
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(5 + 6 / 12, "feet"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(4 + 11 / 12, "feet"),
  22709. weight: math.unit(120, "lb"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/yumi-akiyama/front.svg",
  22713. extra: 1327 / 1235,
  22714. bottom: 0.02
  22715. }
  22716. },
  22717. back: {
  22718. height: math.unit(4 + 11 / 12, "feet"),
  22719. weight: math.unit(120, "lb"),
  22720. name: "Back",
  22721. image: {
  22722. source: "./media/characters/yumi-akiyama/back.svg",
  22723. extra: 1287 / 1245,
  22724. bottom: 0.002
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Galactic",
  22731. height: math.unit(50, "galaxies"),
  22732. default: true
  22733. },
  22734. {
  22735. name: "Universal",
  22736. height: math.unit(100, "universes")
  22737. },
  22738. ]
  22739. ))
  22740. characterMakers.push(() => makeCharacter(
  22741. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22742. {
  22743. front: {
  22744. height: math.unit(8, "feet"),
  22745. weight: math.unit(500, "lb"),
  22746. name: "Front",
  22747. image: {
  22748. source: "./media/characters/rifter-yrmori/front.svg",
  22749. extra: 1180 / 1125,
  22750. bottom: 0.02
  22751. }
  22752. },
  22753. back: {
  22754. height: math.unit(8, "feet"),
  22755. weight: math.unit(500, "lb"),
  22756. name: "Back",
  22757. image: {
  22758. source: "./media/characters/rifter-yrmori/back.svg",
  22759. extra: 1190 / 1145,
  22760. bottom: 0.001
  22761. }
  22762. },
  22763. wings: {
  22764. height: math.unit(7.75, "feet"),
  22765. weight: math.unit(500, "lb"),
  22766. name: "Wings",
  22767. image: {
  22768. source: "./media/characters/rifter-yrmori/wings.svg",
  22769. extra: 1357 / 1285
  22770. }
  22771. },
  22772. maw: {
  22773. height: math.unit(0.8, "feet"),
  22774. name: "Maw",
  22775. image: {
  22776. source: "./media/characters/rifter-yrmori/maw.svg"
  22777. }
  22778. },
  22779. mawfront: {
  22780. height: math.unit(1.45, "feet"),
  22781. name: "Maw (Front)",
  22782. image: {
  22783. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Normal",
  22790. height: math.unit(8, "feet"),
  22791. default: true
  22792. },
  22793. {
  22794. name: "Macro",
  22795. height: math.unit(42, "meters")
  22796. },
  22797. ]
  22798. ))
  22799. characterMakers.push(() => makeCharacter(
  22800. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22801. {
  22802. were: {
  22803. height: math.unit(25 + 6 / 12, "feet"),
  22804. weight: math.unit(10000, "lb"),
  22805. name: "Were",
  22806. image: {
  22807. source: "./media/characters/tahajin/were.svg",
  22808. extra: 801 / 770,
  22809. bottom: 0.042
  22810. }
  22811. },
  22812. aquatic: {
  22813. height: math.unit(6 + 4 / 12, "feet"),
  22814. weight: math.unit(160, "lb"),
  22815. name: "Aquatic",
  22816. image: {
  22817. source: "./media/characters/tahajin/aquatic.svg",
  22818. extra: 572 / 542,
  22819. bottom: 0.04
  22820. }
  22821. },
  22822. chow: {
  22823. height: math.unit(8 + 11 / 12, "feet"),
  22824. weight: math.unit(450, "lb"),
  22825. name: "Chow",
  22826. image: {
  22827. source: "./media/characters/tahajin/chow.svg",
  22828. extra: 660 / 640,
  22829. bottom: 0.015
  22830. }
  22831. },
  22832. demiNaga: {
  22833. height: math.unit(6 + 8 / 12, "feet"),
  22834. weight: math.unit(300, "lb"),
  22835. name: "Demi Naga",
  22836. image: {
  22837. source: "./media/characters/tahajin/demi-naga.svg",
  22838. extra: 643 / 615,
  22839. bottom: 0.1
  22840. }
  22841. },
  22842. data: {
  22843. height: math.unit(5, "inches"),
  22844. weight: math.unit(0.1, "lb"),
  22845. name: "Data",
  22846. image: {
  22847. source: "./media/characters/tahajin/data.svg"
  22848. }
  22849. },
  22850. fluu: {
  22851. height: math.unit(5 + 7 / 12, "feet"),
  22852. weight: math.unit(140, "lb"),
  22853. name: "Fluu",
  22854. image: {
  22855. source: "./media/characters/tahajin/fluu.svg",
  22856. extra: 628 / 592,
  22857. bottom: 0.02
  22858. }
  22859. },
  22860. starWarrior: {
  22861. height: math.unit(4 + 5 / 12, "feet"),
  22862. weight: math.unit(50, "lb"),
  22863. name: "Star Warrior",
  22864. image: {
  22865. source: "./media/characters/tahajin/star-warrior.svg"
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Normal",
  22872. height: math.unit(25 + 6 / 12, "feet"),
  22873. default: true
  22874. },
  22875. ]
  22876. ))
  22877. characterMakers.push(() => makeCharacter(
  22878. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22879. {
  22880. front: {
  22881. height: math.unit(8, "feet"),
  22882. weight: math.unit(350, "lb"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/gabira/front.svg",
  22886. extra: 1261/1154,
  22887. bottom: 51/1312
  22888. }
  22889. },
  22890. back: {
  22891. height: math.unit(8, "feet"),
  22892. weight: math.unit(350, "lb"),
  22893. name: "Back",
  22894. image: {
  22895. source: "./media/characters/gabira/back.svg",
  22896. extra: 1265/1163,
  22897. bottom: 46/1311
  22898. }
  22899. },
  22900. head: {
  22901. height: math.unit(2.85, "feet"),
  22902. name: "Head",
  22903. image: {
  22904. source: "./media/characters/gabira/head.svg"
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(8, "feet"),
  22912. default: true
  22913. },
  22914. ]
  22915. ))
  22916. characterMakers.push(() => makeCharacter(
  22917. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22918. {
  22919. front: {
  22920. height: math.unit(5 + 3 / 12, "feet"),
  22921. weight: math.unit(137, "lb"),
  22922. name: "Front",
  22923. image: {
  22924. source: "./media/characters/sasha-katraine/front.svg",
  22925. extra: 1745/1694,
  22926. bottom: 37/1782
  22927. }
  22928. },
  22929. back: {
  22930. height: math.unit(5 + 3 / 12, "feet"),
  22931. weight: math.unit(137, "lb"),
  22932. name: "Back",
  22933. image: {
  22934. source: "./media/characters/sasha-katraine/back.svg",
  22935. extra: 1776/1699,
  22936. bottom: 26/1802
  22937. }
  22938. },
  22939. },
  22940. [
  22941. {
  22942. name: "Micro",
  22943. height: math.unit(5, "inches")
  22944. },
  22945. {
  22946. name: "Normal",
  22947. height: math.unit(5 + 3 / 12, "feet"),
  22948. default: true
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22954. {
  22955. side: {
  22956. height: math.unit(4, "inches"),
  22957. weight: math.unit(200, "grams"),
  22958. name: "Side",
  22959. image: {
  22960. source: "./media/characters/der/side.svg",
  22961. extra: 719 / 400,
  22962. bottom: 30.6 / 749.9187
  22963. }
  22964. },
  22965. },
  22966. [
  22967. {
  22968. name: "Micro",
  22969. height: math.unit(4, "inches"),
  22970. default: true
  22971. },
  22972. ]
  22973. ))
  22974. characterMakers.push(() => makeCharacter(
  22975. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22976. {
  22977. side: {
  22978. height: math.unit(30, "meters"),
  22979. weight: math.unit(700, "tonnes"),
  22980. name: "Side",
  22981. image: {
  22982. source: "./media/characters/fixerdragon/side.svg",
  22983. extra: (1293.0514 - 116.03) / 1106.86,
  22984. bottom: 116.03 / 1293.0514
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Planck",
  22991. height: math.unit(1.6e-35, "meters")
  22992. },
  22993. {
  22994. name: "Micro",
  22995. height: math.unit(0.4, "meters")
  22996. },
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(30, "meters"),
  23000. default: true
  23001. },
  23002. {
  23003. name: "Megamacro",
  23004. height: math.unit(1.2, "megameters")
  23005. },
  23006. {
  23007. name: "Teramacro",
  23008. height: math.unit(130, "terameters")
  23009. },
  23010. {
  23011. name: "Yottamacro",
  23012. height: math.unit(6200, "yottameters")
  23013. },
  23014. ]
  23015. ));
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23018. {
  23019. front: {
  23020. height: math.unit(8, "feet"),
  23021. weight: math.unit(250, "lb"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/kite/front.svg",
  23025. extra: 2796 / 2659,
  23026. bottom: 0.002
  23027. }
  23028. },
  23029. },
  23030. [
  23031. {
  23032. name: "Normal",
  23033. height: math.unit(8, "feet"),
  23034. default: true
  23035. },
  23036. {
  23037. name: "Macro",
  23038. height: math.unit(360, "feet")
  23039. },
  23040. {
  23041. name: "Megamacro",
  23042. height: math.unit(1500, "feet")
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23048. {
  23049. front: {
  23050. height: math.unit(5 + 11/12, "feet"),
  23051. weight: math.unit(170, "lb"),
  23052. name: "Front",
  23053. image: {
  23054. source: "./media/characters/poojawa-vynar/front.svg",
  23055. extra: 1735/1585,
  23056. bottom: 96/1831
  23057. }
  23058. },
  23059. back: {
  23060. height: math.unit(5 + 11/12, "feet"),
  23061. weight: math.unit(170, "lb"),
  23062. name: "Back",
  23063. image: {
  23064. source: "./media/characters/poojawa-vynar/back.svg",
  23065. extra: 1749/1607,
  23066. bottom: 28/1777
  23067. }
  23068. },
  23069. male: {
  23070. height: math.unit(5 + 11/12, "feet"),
  23071. weight: math.unit(170, "lb"),
  23072. name: "Male",
  23073. image: {
  23074. source: "./media/characters/poojawa-vynar/male.svg",
  23075. extra: 1855/1713,
  23076. bottom: 63/1918
  23077. }
  23078. },
  23079. taur: {
  23080. height: math.unit(5 + 11/12, "feet"),
  23081. weight: math.unit(170, "lb"),
  23082. name: "Taur",
  23083. image: {
  23084. source: "./media/characters/poojawa-vynar/taur.svg",
  23085. extra: 1151/1059,
  23086. bottom: 356/1507
  23087. }
  23088. },
  23089. frontDressed: {
  23090. height: math.unit(5 + 11/12, "feet"),
  23091. weight: math.unit(170, "lb"),
  23092. name: "Front (Dressed)",
  23093. image: {
  23094. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23095. extra: 1735/1585,
  23096. bottom: 96/1831
  23097. }
  23098. },
  23099. backDressed: {
  23100. height: math.unit(5 + 11/12, "feet"),
  23101. weight: math.unit(170, "lb"),
  23102. name: "Back (Dressed)",
  23103. image: {
  23104. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23105. extra: 1749/1607,
  23106. bottom: 28/1777
  23107. }
  23108. },
  23109. maleDressed: {
  23110. height: math.unit(5 + 11/12, "feet"),
  23111. weight: math.unit(170, "lb"),
  23112. name: "Male (Dressed)",
  23113. image: {
  23114. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23115. extra: 1855/1713,
  23116. bottom: 63/1918
  23117. }
  23118. },
  23119. taurDressed: {
  23120. height: math.unit(5 + 11/12, "feet"),
  23121. weight: math.unit(170, "lb"),
  23122. name: "Taur (Dressed)",
  23123. image: {
  23124. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23125. extra: 1151/1059,
  23126. bottom: 356/1507
  23127. }
  23128. },
  23129. maw: {
  23130. height: math.unit(1.46, "feet"),
  23131. name: "Maw",
  23132. image: {
  23133. source: "./media/characters/poojawa-vynar/maw.svg"
  23134. }
  23135. },
  23136. head: {
  23137. height: math.unit(2.34, "feet"),
  23138. name: "Head",
  23139. image: {
  23140. source: "./media/characters/poojawa-vynar/head.svg"
  23141. }
  23142. },
  23143. paw: {
  23144. height: math.unit(1.61, "feet"),
  23145. name: "Paw",
  23146. image: {
  23147. source: "./media/characters/poojawa-vynar/paw.svg"
  23148. }
  23149. },
  23150. pawToering: {
  23151. height: math.unit(1.72, "feet"),
  23152. name: "Paw (Toering)",
  23153. image: {
  23154. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23155. }
  23156. },
  23157. toering: {
  23158. height: math.unit(2.9, "inches"),
  23159. name: "Toering",
  23160. image: {
  23161. source: "./media/characters/poojawa-vynar/toering.svg"
  23162. }
  23163. },
  23164. shaft: {
  23165. height: math.unit(0.625, "feet"),
  23166. name: "Shaft",
  23167. image: {
  23168. source: "./media/characters/poojawa-vynar/shaft.svg"
  23169. }
  23170. },
  23171. spade: {
  23172. height: math.unit(0.42, "feet"),
  23173. name: "Spade",
  23174. image: {
  23175. source: "./media/characters/poojawa-vynar/spade.svg"
  23176. }
  23177. },
  23178. },
  23179. [
  23180. {
  23181. name: "Shortstack",
  23182. height: math.unit(4, "feet")
  23183. },
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(5 + 11 / 12, "feet"),
  23187. default: true
  23188. },
  23189. {
  23190. name: "Tauric",
  23191. height: math.unit(4, "meters")
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23197. {
  23198. front: {
  23199. height: math.unit(293, "meters"),
  23200. weight: math.unit(70400, "tons"),
  23201. name: "Front",
  23202. image: {
  23203. source: "./media/characters/violette/front.svg",
  23204. extra: 1227 / 1180,
  23205. bottom: 0.005
  23206. }
  23207. },
  23208. back: {
  23209. height: math.unit(293, "meters"),
  23210. weight: math.unit(70400, "tons"),
  23211. name: "Back",
  23212. image: {
  23213. source: "./media/characters/violette/back.svg",
  23214. extra: 1227 / 1180,
  23215. bottom: 0.005
  23216. }
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Macro",
  23222. height: math.unit(293, "meters"),
  23223. default: true
  23224. },
  23225. ]
  23226. ))
  23227. characterMakers.push(() => makeCharacter(
  23228. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23229. {
  23230. front: {
  23231. height: math.unit(1050, "feet"),
  23232. weight: math.unit(200000, "tons"),
  23233. name: "Front",
  23234. image: {
  23235. source: "./media/characters/alessandra/front.svg",
  23236. extra: 960 / 912,
  23237. bottom: 0.06
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Macro",
  23244. height: math.unit(1050, "feet")
  23245. },
  23246. {
  23247. name: "Macro+",
  23248. height: math.unit(900, "meters"),
  23249. default: true
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23255. {
  23256. front: {
  23257. height: math.unit(5, "feet"),
  23258. weight: math.unit(187, "lb"),
  23259. name: "Front",
  23260. image: {
  23261. source: "./media/characters/person/front.svg",
  23262. extra: 3087 / 2945,
  23263. bottom: 91 / 3181
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Micro",
  23270. height: math.unit(3, "inches")
  23271. },
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(5, "feet"),
  23275. default: true
  23276. },
  23277. {
  23278. name: "Macro",
  23279. height: math.unit(90, "feet")
  23280. },
  23281. {
  23282. name: "Max Size",
  23283. height: math.unit(280, "feet")
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23289. {
  23290. front: {
  23291. height: math.unit(4.5, "meters"),
  23292. weight: math.unit(3200, "lb"),
  23293. name: "Front",
  23294. image: {
  23295. source: "./media/characters/ty/front.svg",
  23296. extra: 1038 / 960,
  23297. bottom: 31.156 / 1068
  23298. }
  23299. },
  23300. back: {
  23301. height: math.unit(4.5, "meters"),
  23302. weight: math.unit(3200, "lb"),
  23303. name: "Back",
  23304. image: {
  23305. source: "./media/characters/ty/back.svg",
  23306. extra: 1044 / 966,
  23307. bottom: 7.48 / 1049
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(4.5, "meters"),
  23315. default: true
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(5 + 4 / 12, "feet"),
  23324. weight: math.unit(115, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/rocky/front.svg",
  23328. extra: 1012 / 975,
  23329. bottom: 54 / 1066
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Normal",
  23336. height: math.unit(5 + 4 / 12, "feet"),
  23337. default: true
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23343. {
  23344. upright: {
  23345. height: math.unit(6, "meters"),
  23346. weight: math.unit(4000, "kg"),
  23347. name: "Upright",
  23348. image: {
  23349. source: "./media/characters/ruin/upright.svg",
  23350. extra: 668 / 661,
  23351. bottom: 42 / 799.8396
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Normal",
  23358. height: math.unit(6, "meters"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(5, "feet"),
  23368. weight: math.unit(106, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/robin/front.svg",
  23372. extra: 862 / 799,
  23373. bottom: 42.4 / 914.8856
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(5, "feet"),
  23381. default: true
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23387. {
  23388. side: {
  23389. height: math.unit(3, "feet"),
  23390. weight: math.unit(225, "lb"),
  23391. name: "Side",
  23392. image: {
  23393. source: "./media/characters/saian/side.svg",
  23394. extra: 566 / 356,
  23395. bottom: 79.7 / 643
  23396. }
  23397. },
  23398. maw: {
  23399. height: math.unit(2.85, "feet"),
  23400. name: "Maw",
  23401. image: {
  23402. source: "./media/characters/saian/maw.svg"
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Normal",
  23409. height: math.unit(3, "feet"),
  23410. default: true
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23416. {
  23417. side: {
  23418. height: math.unit(8, "feet"),
  23419. weight: math.unit(300, "lb"),
  23420. name: "Side",
  23421. image: {
  23422. source: "./media/characters/equus-silvermane/side.svg",
  23423. extra: 2176 / 2050,
  23424. bottom: 65.7 / 2245
  23425. }
  23426. },
  23427. front: {
  23428. height: math.unit(8, "feet"),
  23429. weight: math.unit(300, "lb"),
  23430. name: "Front",
  23431. image: {
  23432. source: "./media/characters/equus-silvermane/front.svg",
  23433. extra: 4633 / 4400,
  23434. bottom: 71.3 / 4706.915
  23435. }
  23436. },
  23437. sideStepping: {
  23438. height: math.unit(8, "feet"),
  23439. weight: math.unit(300, "lb"),
  23440. name: "Side (Stepping)",
  23441. image: {
  23442. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23443. extra: 1968 / 1860,
  23444. bottom: 16.4 / 1989
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Normal",
  23451. height: math.unit(8, "feet")
  23452. },
  23453. {
  23454. name: "Minimacro",
  23455. height: math.unit(75, "feet"),
  23456. default: true
  23457. },
  23458. {
  23459. name: "Macro",
  23460. height: math.unit(150, "feet")
  23461. },
  23462. {
  23463. name: "Macro+",
  23464. height: math.unit(1000, "feet")
  23465. },
  23466. {
  23467. name: "Megamacro",
  23468. height: math.unit(1, "mile")
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23474. {
  23475. side: {
  23476. height: math.unit(20, "feet"),
  23477. weight: math.unit(30000, "kg"),
  23478. name: "Side",
  23479. image: {
  23480. source: "./media/characters/windar/side.svg",
  23481. extra: 1491 / 1248,
  23482. bottom: 82.56 / 1568
  23483. }
  23484. },
  23485. },
  23486. [
  23487. {
  23488. name: "Normal",
  23489. height: math.unit(20, "feet"),
  23490. default: true
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23496. {
  23497. side: {
  23498. height: math.unit(15.66, "feet"),
  23499. weight: math.unit(150, "lb"),
  23500. name: "Side",
  23501. image: {
  23502. source: "./media/characters/melody/side.svg",
  23503. extra: 1097 / 944,
  23504. bottom: 11.8 / 1109
  23505. }
  23506. },
  23507. sideOutfit: {
  23508. height: math.unit(15.66, "feet"),
  23509. weight: math.unit(150, "lb"),
  23510. name: "Side (Outfit)",
  23511. image: {
  23512. source: "./media/characters/melody/side-outfit.svg",
  23513. extra: 1097 / 944,
  23514. bottom: 11.8 / 1109
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Normal",
  23521. height: math.unit(15.66, "feet"),
  23522. default: true
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23528. {
  23529. armoredFront: {
  23530. height: math.unit(8, "feet"),
  23531. weight: math.unit(325, "lb"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/windera/armored-front.svg",
  23535. extra: 1830/1598,
  23536. bottom: 151/1981
  23537. },
  23538. form: "armored",
  23539. default: true
  23540. },
  23541. macroFront: {
  23542. height: math.unit(70, "feet"),
  23543. weight: math.unit(315453, "lb"),
  23544. name: "Front",
  23545. image: {
  23546. source: "./media/characters/windera/macro-front.svg",
  23547. extra: 963/883,
  23548. bottom: 23/986
  23549. },
  23550. form: "macro",
  23551. default: true
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Normal",
  23557. height: math.unit(8, "feet"),
  23558. default: true,
  23559. form: "armored"
  23560. },
  23561. {
  23562. name: "Normal",
  23563. height: math.unit(70, "feet"),
  23564. default: true,
  23565. form: "macro"
  23566. },
  23567. ],
  23568. {
  23569. "armored": {
  23570. name: "Armored",
  23571. default: true
  23572. },
  23573. "macro": {
  23574. name: "Macro",
  23575. },
  23576. }
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23580. {
  23581. front: {
  23582. height: math.unit(28.75, "feet"),
  23583. weight: math.unit(2000, "kg"),
  23584. name: "Front",
  23585. image: {
  23586. source: "./media/characters/sonear/front.svg",
  23587. extra: 1041.1 / 964.9,
  23588. bottom: 53.7 / 1096.6
  23589. }
  23590. },
  23591. },
  23592. [
  23593. {
  23594. name: "Normal",
  23595. height: math.unit(28.75, "feet"),
  23596. default: true
  23597. },
  23598. ]
  23599. ))
  23600. characterMakers.push(() => makeCharacter(
  23601. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23602. {
  23603. side: {
  23604. height: math.unit(25.5, "feet"),
  23605. weight: math.unit(23000, "kg"),
  23606. name: "Side",
  23607. image: {
  23608. source: "./media/characters/kanara/side.svg"
  23609. }
  23610. },
  23611. },
  23612. [
  23613. {
  23614. name: "Normal",
  23615. height: math.unit(25.5, "feet"),
  23616. default: true
  23617. },
  23618. ]
  23619. ))
  23620. characterMakers.push(() => makeCharacter(
  23621. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23622. {
  23623. side: {
  23624. height: math.unit(10, "feet"),
  23625. weight: math.unit(1000, "kg"),
  23626. name: "Side",
  23627. image: {
  23628. source: "./media/characters/ereus/side.svg",
  23629. extra: 1157 / 959,
  23630. bottom: 153 / 1312.5
  23631. }
  23632. },
  23633. },
  23634. [
  23635. {
  23636. name: "Normal",
  23637. height: math.unit(10, "feet"),
  23638. default: true
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23644. {
  23645. side: {
  23646. height: math.unit(4.5, "feet"),
  23647. weight: math.unit(500, "lb"),
  23648. name: "Side",
  23649. image: {
  23650. source: "./media/characters/e-ter/side.svg",
  23651. extra: 1550 / 1248,
  23652. bottom: 146 / 1694
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Normal",
  23659. height: math.unit(4.5, "feet"),
  23660. default: true
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23666. {
  23667. side: {
  23668. height: math.unit(9.7, "feet"),
  23669. weight: math.unit(4000, "kg"),
  23670. name: "Side",
  23671. image: {
  23672. source: "./media/characters/yamie/side.svg"
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(9.7, "feet"),
  23680. default: true
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(50, "feet"),
  23689. weight: math.unit(50000, "kg"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/anders/front.svg",
  23693. extra: 570 / 539,
  23694. bottom: 14.7 / 586.7
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Large",
  23701. height: math.unit(50, "feet")
  23702. },
  23703. {
  23704. name: "Macro",
  23705. height: math.unit(2000, "feet"),
  23706. default: true
  23707. },
  23708. {
  23709. name: "Megamacro",
  23710. height: math.unit(12, "miles")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(7 + 2 / 12, "feet"),
  23719. weight: math.unit(300, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/reban/front.svg",
  23723. extra: 1287/1212,
  23724. bottom: 148/1435
  23725. }
  23726. },
  23727. head: {
  23728. height: math.unit(1.95, "feet"),
  23729. name: "Head",
  23730. image: {
  23731. source: "./media/characters/reban/head.svg"
  23732. }
  23733. },
  23734. maw: {
  23735. height: math.unit(0.95, "feet"),
  23736. name: "Maw",
  23737. image: {
  23738. source: "./media/characters/reban/maw.svg"
  23739. }
  23740. },
  23741. foot: {
  23742. height: math.unit(1.65, "feet"),
  23743. name: "Foot",
  23744. image: {
  23745. source: "./media/characters/reban/foot.svg"
  23746. }
  23747. },
  23748. dick: {
  23749. height: math.unit(7 / 5, "feet"),
  23750. name: "Dick",
  23751. image: {
  23752. source: "./media/characters/reban/dick.svg"
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Natural Height",
  23759. height: math.unit(7 + 2 / 12, "feet")
  23760. },
  23761. {
  23762. name: "Macro",
  23763. height: math.unit(500, "feet"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Canon Height",
  23768. height: math.unit(50, "AU")
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23774. {
  23775. front: {
  23776. height: math.unit(6, "feet"),
  23777. weight: math.unit(150, "lb"),
  23778. name: "Front",
  23779. image: {
  23780. source: "./media/characters/terrance-keayes/front.svg",
  23781. extra: 1.005,
  23782. bottom: 151 / 1615
  23783. }
  23784. },
  23785. side: {
  23786. height: math.unit(6, "feet"),
  23787. weight: math.unit(150, "lb"),
  23788. name: "Side",
  23789. image: {
  23790. source: "./media/characters/terrance-keayes/side.svg",
  23791. extra: 1.005,
  23792. bottom: 129.4 / 1544
  23793. }
  23794. },
  23795. back: {
  23796. height: math.unit(6, "feet"),
  23797. weight: math.unit(150, "lb"),
  23798. name: "Back",
  23799. image: {
  23800. source: "./media/characters/terrance-keayes/back.svg",
  23801. extra: 1.005,
  23802. bottom: 58.4 / 1557.3
  23803. }
  23804. },
  23805. dick: {
  23806. height: math.unit(6 * 0.208, "feet"),
  23807. name: "Dick",
  23808. image: {
  23809. source: "./media/characters/terrance-keayes/dick.svg"
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Canon Height",
  23816. height: math.unit(35, "miles"),
  23817. default: true
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23823. {
  23824. front: {
  23825. height: math.unit(6, "feet"),
  23826. weight: math.unit(150, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/ofelia/front.svg",
  23830. extra: 1130/1117,
  23831. bottom: 91/1221
  23832. }
  23833. },
  23834. back: {
  23835. height: math.unit(6, "feet"),
  23836. weight: math.unit(150, "lb"),
  23837. name: "Back",
  23838. image: {
  23839. source: "./media/characters/ofelia/back.svg",
  23840. extra: 1172/1159,
  23841. bottom: 28/1200
  23842. }
  23843. },
  23844. maw: {
  23845. height: math.unit(1, "feet"),
  23846. name: "Maw",
  23847. image: {
  23848. source: "./media/characters/ofelia/maw.svg"
  23849. }
  23850. },
  23851. foot: {
  23852. height: math.unit(1.949, "feet"),
  23853. name: "Foot",
  23854. image: {
  23855. source: "./media/characters/ofelia/foot.svg"
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Canon Height",
  23862. height: math.unit(2000, "miles"),
  23863. default: true
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(6, "feet"),
  23872. weight: math.unit(150, "lb"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/samuel/front.svg",
  23876. extra: 265 / 258,
  23877. bottom: 2 / 266.1566
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Macro",
  23884. height: math.unit(100, "feet"),
  23885. default: true
  23886. },
  23887. {
  23888. name: "Full Size",
  23889. height: math.unit(1000, "miles")
  23890. },
  23891. ]
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23895. {
  23896. front: {
  23897. height: math.unit(6, "feet"),
  23898. weight: math.unit(300, "lb"),
  23899. name: "Front",
  23900. image: {
  23901. source: "./media/characters/beishir-kiel/front.svg",
  23902. extra: 569 / 547,
  23903. bottom: 41.9 / 609
  23904. }
  23905. },
  23906. maw: {
  23907. height: math.unit(6 * 0.202, "feet"),
  23908. name: "Maw",
  23909. image: {
  23910. source: "./media/characters/beishir-kiel/maw.svg"
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Macro",
  23917. height: math.unit(300, "feet"),
  23918. default: true
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23924. {
  23925. front: {
  23926. height: math.unit(5 + 7/12, "feet"),
  23927. weight: math.unit(120, "lb"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/logan-grey/front.svg",
  23931. extra: 1836/1738,
  23932. bottom: 108/1944
  23933. }
  23934. },
  23935. back: {
  23936. height: math.unit(5 + 7/12, "feet"),
  23937. weight: math.unit(120, "lb"),
  23938. name: "Back",
  23939. image: {
  23940. source: "./media/characters/logan-grey/back.svg",
  23941. extra: 1880/1794,
  23942. bottom: 24/1904
  23943. }
  23944. },
  23945. frontSfw: {
  23946. height: math.unit(5 + 7/12, "feet"),
  23947. weight: math.unit(120, "lb"),
  23948. name: "Front (SFW)",
  23949. image: {
  23950. source: "./media/characters/logan-grey/front-sfw.svg",
  23951. extra: 1836/1738,
  23952. bottom: 108/1944
  23953. }
  23954. },
  23955. backSfw: {
  23956. height: math.unit(5 + 7/12, "feet"),
  23957. weight: math.unit(120, "lb"),
  23958. name: "Back (SFW)",
  23959. image: {
  23960. source: "./media/characters/logan-grey/back-sfw.svg",
  23961. extra: 1880/1794,
  23962. bottom: 24/1904
  23963. }
  23964. },
  23965. hands: {
  23966. height: math.unit(0.84, "feet"),
  23967. name: "Hands",
  23968. image: {
  23969. source: "./media/characters/logan-grey/hands.svg"
  23970. }
  23971. },
  23972. paws: {
  23973. height: math.unit(0.72, "feet"),
  23974. name: "Paws",
  23975. image: {
  23976. source: "./media/characters/logan-grey/paws.svg"
  23977. }
  23978. },
  23979. cock: {
  23980. height: math.unit(1.45, "feet"),
  23981. name: "Cock",
  23982. image: {
  23983. source: "./media/characters/logan-grey/cock.svg"
  23984. }
  23985. },
  23986. cockAlt: {
  23987. height: math.unit(1.437, "feet"),
  23988. name: "Cock (alt)",
  23989. image: {
  23990. source: "./media/characters/logan-grey/cock-alt.svg"
  23991. }
  23992. },
  23993. },
  23994. [
  23995. {
  23996. name: "Normal",
  23997. height: math.unit(5 + 8 / 12, "feet")
  23998. },
  23999. {
  24000. name: "The 500 Foot Femboy",
  24001. height: math.unit(500, "feet"),
  24002. default: true
  24003. },
  24004. {
  24005. name: "Megmacro",
  24006. height: math.unit(20, "miles")
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24012. {
  24013. front: {
  24014. height: math.unit(8 + 2 / 12, "feet"),
  24015. weight: math.unit(275, "lb"),
  24016. name: "Front",
  24017. image: {
  24018. source: "./media/characters/draganta/front.svg",
  24019. extra: 1177 / 1135,
  24020. bottom: 33.46 / 1212.1
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(8 + 6 / 12, "feet"),
  24028. default: true
  24029. },
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(150, "feet")
  24033. },
  24034. {
  24035. name: "Megamacro",
  24036. height: math.unit(1000, "miles")
  24037. },
  24038. ]
  24039. ))
  24040. characterMakers.push(() => makeCharacter(
  24041. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24042. {
  24043. front: {
  24044. height: math.unit(1.72, "m"),
  24045. weight: math.unit(80, "lb"),
  24046. name: "Front",
  24047. image: {
  24048. source: "./media/characters/voski/front.svg",
  24049. extra: 2076.22 / 2022.4,
  24050. bottom: 102.7 / 2177.3866
  24051. }
  24052. },
  24053. frontFlaccid: {
  24054. height: math.unit(1.72, "m"),
  24055. weight: math.unit(80, "lb"),
  24056. name: "Front (Flaccid)",
  24057. image: {
  24058. source: "./media/characters/voski/front-flaccid.svg",
  24059. extra: 2076.22 / 2022.4,
  24060. bottom: 102.7 / 2177.3866
  24061. }
  24062. },
  24063. frontErect: {
  24064. height: math.unit(1.72, "m"),
  24065. weight: math.unit(80, "lb"),
  24066. name: "Front (Erect)",
  24067. image: {
  24068. source: "./media/characters/voski/front-erect.svg",
  24069. extra: 2076.22 / 2022.4,
  24070. bottom: 102.7 / 2177.3866
  24071. }
  24072. },
  24073. back: {
  24074. height: math.unit(1.72, "m"),
  24075. weight: math.unit(80, "lb"),
  24076. name: "Back",
  24077. image: {
  24078. source: "./media/characters/voski/back.svg",
  24079. extra: 2104 / 2051,
  24080. bottom: 10.45 / 2113.63
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Normal",
  24087. height: math.unit(1.72, "m")
  24088. },
  24089. {
  24090. name: "Macro",
  24091. height: math.unit(55, "m"),
  24092. default: true
  24093. },
  24094. {
  24095. name: "Macro+",
  24096. height: math.unit(300, "m")
  24097. },
  24098. {
  24099. name: "Macro++",
  24100. height: math.unit(700, "m")
  24101. },
  24102. {
  24103. name: "Macro+++",
  24104. height: math.unit(4500, "m")
  24105. },
  24106. {
  24107. name: "Macro++++",
  24108. height: math.unit(45, "km")
  24109. },
  24110. {
  24111. name: "Macro+++++",
  24112. height: math.unit(1220, "km")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(2.3, "m"),
  24121. weight: math.unit(304, "kg"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/icowom-lee/front.svg",
  24125. extra: 985 / 955,
  24126. bottom: 25.4 / 1012
  24127. }
  24128. },
  24129. fronttentacles: {
  24130. height: math.unit(2.3, "m"),
  24131. weight: math.unit(304, "kg"),
  24132. name: "Front-tentacles",
  24133. image: {
  24134. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24135. extra: 985 / 955,
  24136. bottom: 25.4 / 1012
  24137. }
  24138. },
  24139. back: {
  24140. height: math.unit(2.3, "m"),
  24141. weight: math.unit(304, "kg"),
  24142. name: "Back",
  24143. image: {
  24144. source: "./media/characters/icowom-lee/back.svg",
  24145. extra: 975 / 954,
  24146. bottom: 9.5 / 985
  24147. }
  24148. },
  24149. backtentacles: {
  24150. height: math.unit(2.3, "m"),
  24151. weight: math.unit(304, "kg"),
  24152. name: "Back-tentacles",
  24153. image: {
  24154. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24155. extra: 975 / 954,
  24156. bottom: 9.5 / 985
  24157. }
  24158. },
  24159. frontDressed: {
  24160. height: math.unit(2.3, "m"),
  24161. weight: math.unit(304, "kg"),
  24162. name: "Front (Dressed)",
  24163. image: {
  24164. source: "./media/characters/icowom-lee/front-dressed.svg",
  24165. extra: 3076 / 2933,
  24166. bottom: 51.4 / 3125.1889
  24167. }
  24168. },
  24169. rump: {
  24170. height: math.unit(0.776, "meters"),
  24171. name: "Rump",
  24172. image: {
  24173. source: "./media/characters/icowom-lee/rump.svg"
  24174. }
  24175. },
  24176. genitals: {
  24177. height: math.unit(0.78, "meters"),
  24178. name: "Genitals",
  24179. image: {
  24180. source: "./media/characters/icowom-lee/genitals.svg"
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Normal",
  24187. height: math.unit(2.3, "meters"),
  24188. default: true
  24189. },
  24190. {
  24191. name: "Macro",
  24192. height: math.unit(94, "meters"),
  24193. default: true
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(22, "meters"),
  24202. weight: math.unit(21000, "kg"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/shock-diamond/front.svg",
  24206. extra: 2204 / 2053,
  24207. bottom: 65 / 2239.47
  24208. }
  24209. },
  24210. frontNude: {
  24211. height: math.unit(22, "meters"),
  24212. weight: math.unit(21000, "kg"),
  24213. name: "Front (Nude)",
  24214. image: {
  24215. source: "./media/characters/shock-diamond/front-nude.svg",
  24216. extra: 2514 / 2285,
  24217. bottom: 13 / 2527.56
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Normal",
  24224. height: math.unit(3, "meters")
  24225. },
  24226. {
  24227. name: "Macro",
  24228. height: math.unit(22, "meters"),
  24229. default: true
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24235. {
  24236. front: {
  24237. height: math.unit(5 + 4/12, "feet"),
  24238. weight: math.unit(125, "lb"),
  24239. name: "Front",
  24240. image: {
  24241. source: "./media/characters/rory/front.svg",
  24242. extra: 1790/1681,
  24243. bottom: 66/1856
  24244. }
  24245. },
  24246. back: {
  24247. height: math.unit(5 + 4/12, "feet"),
  24248. weight: math.unit(125, "lb"),
  24249. name: "Back",
  24250. image: {
  24251. source: "./media/characters/rory/back.svg",
  24252. extra: 1805/1690,
  24253. bottom: 56/1861
  24254. }
  24255. },
  24256. frontDressed: {
  24257. height: math.unit(5 + 4/12, "feet"),
  24258. weight: math.unit(125, "lb"),
  24259. name: "Front (Dressed)",
  24260. image: {
  24261. source: "./media/characters/rory/front-dressed.svg",
  24262. extra: 1790/1681,
  24263. bottom: 66/1856
  24264. }
  24265. },
  24266. backDressed: {
  24267. height: math.unit(5 + 4/12, "feet"),
  24268. weight: math.unit(125, "lb"),
  24269. name: "Back (Dressed)",
  24270. image: {
  24271. source: "./media/characters/rory/back-dressed.svg",
  24272. extra: 1805/1690,
  24273. bottom: 56/1861
  24274. }
  24275. },
  24276. frontNsfw: {
  24277. height: math.unit(5 + 4/12, "feet"),
  24278. weight: math.unit(125, "lb"),
  24279. name: "Front (NSFW)",
  24280. image: {
  24281. source: "./media/characters/rory/front-nsfw.svg",
  24282. extra: 1790/1681,
  24283. bottom: 66/1856
  24284. }
  24285. },
  24286. backNsfw: {
  24287. height: math.unit(5 + 4/12, "feet"),
  24288. weight: math.unit(125, "lb"),
  24289. name: "Back (NSFW)",
  24290. image: {
  24291. source: "./media/characters/rory/back-nsfw.svg",
  24292. extra: 1805/1690,
  24293. bottom: 56/1861
  24294. }
  24295. },
  24296. dick: {
  24297. height: math.unit(0.8, "feet"),
  24298. name: "Dick",
  24299. image: {
  24300. source: "./media/characters/rory/dick.svg"
  24301. }
  24302. },
  24303. },
  24304. [
  24305. {
  24306. name: "Micro",
  24307. height: math.unit(3, "inches")
  24308. },
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(5 + 4/12, "feet"),
  24312. default: true
  24313. },
  24314. {
  24315. name: "Macro",
  24316. height: math.unit(90, "feet")
  24317. },
  24318. {
  24319. name: "Supercharged",
  24320. height: math.unit(270, "feet")
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(5 + 9 / 12, "feet"),
  24329. weight: math.unit(190, "lb"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/sprisk/front.svg",
  24333. extra: 1225 / 1180,
  24334. bottom: 42.7 / 1266.4
  24335. }
  24336. },
  24337. frontNsfw: {
  24338. height: math.unit(5 + 9 / 12, "feet"),
  24339. weight: math.unit(190, "lb"),
  24340. name: "Front (NSFW)",
  24341. image: {
  24342. source: "./media/characters/sprisk/front-nsfw.svg",
  24343. extra: 1225 / 1180,
  24344. bottom: 42.7 / 1266.4
  24345. }
  24346. },
  24347. back: {
  24348. height: math.unit(5 + 9 / 12, "feet"),
  24349. weight: math.unit(190, "lb"),
  24350. name: "Back",
  24351. image: {
  24352. source: "./media/characters/sprisk/back.svg",
  24353. extra: 1247 / 1200,
  24354. bottom: 5.6 / 1253.04
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Tiny",
  24361. height: math.unit(2, "inches")
  24362. },
  24363. {
  24364. name: "Normal",
  24365. height: math.unit(5 + 9 / 12, "feet"),
  24366. default: true
  24367. },
  24368. {
  24369. name: "Mini Macro",
  24370. height: math.unit(18, "feet")
  24371. },
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(100, "feet")
  24375. },
  24376. {
  24377. name: "MACRO",
  24378. height: math.unit(50, "miles")
  24379. },
  24380. {
  24381. name: "M A C R O",
  24382. height: math.unit(300, "miles")
  24383. },
  24384. ]
  24385. ))
  24386. characterMakers.push(() => makeCharacter(
  24387. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24388. {
  24389. side: {
  24390. height: math.unit(15.6, "meters"),
  24391. weight: math.unit(700000, "kg"),
  24392. name: "Side",
  24393. image: {
  24394. source: "./media/characters/bunsen/side.svg",
  24395. extra: 1644 / 358
  24396. }
  24397. },
  24398. foot: {
  24399. height: math.unit(1.611 * 1644 / 358, "meter"),
  24400. name: "Foot",
  24401. image: {
  24402. source: "./media/characters/bunsen/foot.svg"
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Small",
  24409. height: math.unit(10, "feet")
  24410. },
  24411. {
  24412. name: "Normal",
  24413. height: math.unit(15.6, "meters"),
  24414. default: true
  24415. },
  24416. ]
  24417. ))
  24418. characterMakers.push(() => makeCharacter(
  24419. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24420. {
  24421. front: {
  24422. height: math.unit(4 + 11 / 12, "feet"),
  24423. weight: math.unit(140, "lb"),
  24424. name: "Front",
  24425. image: {
  24426. source: "./media/characters/sesh/front.svg",
  24427. extra: 3420 / 3231,
  24428. bottom: 72 / 3949.5
  24429. }
  24430. },
  24431. },
  24432. [
  24433. {
  24434. name: "Normal",
  24435. height: math.unit(4 + 11 / 12, "feet")
  24436. },
  24437. {
  24438. name: "Grown",
  24439. height: math.unit(15, "feet"),
  24440. default: true
  24441. },
  24442. {
  24443. name: "Macro",
  24444. height: math.unit(1500, "feet")
  24445. },
  24446. {
  24447. name: "Megamacro",
  24448. height: math.unit(30, "miles")
  24449. },
  24450. {
  24451. name: "Continental",
  24452. height: math.unit(3000, "miles")
  24453. },
  24454. {
  24455. name: "Gravity Mass",
  24456. height: math.unit(300000, "miles")
  24457. },
  24458. {
  24459. name: "Planet Buster",
  24460. height: math.unit(30000000, "miles")
  24461. },
  24462. {
  24463. name: "Big",
  24464. height: math.unit(3000000000, "miles")
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24470. {
  24471. front: {
  24472. height: math.unit(9, "feet"),
  24473. weight: math.unit(350, "lb"),
  24474. name: "Front",
  24475. image: {
  24476. source: "./media/characters/pepper/front.svg",
  24477. extra: 1448 / 1312,
  24478. bottom: 9.4 / 1457.88
  24479. }
  24480. },
  24481. back: {
  24482. height: math.unit(9, "feet"),
  24483. weight: math.unit(350, "lb"),
  24484. name: "Back",
  24485. image: {
  24486. source: "./media/characters/pepper/back.svg",
  24487. extra: 1423 / 1300,
  24488. bottom: 4.6 / 1429
  24489. }
  24490. },
  24491. maw: {
  24492. height: math.unit(0.932, "feet"),
  24493. name: "Maw",
  24494. image: {
  24495. source: "./media/characters/pepper/maw.svg"
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(9, "feet"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24509. {
  24510. front: {
  24511. height: math.unit(6, "feet"),
  24512. weight: math.unit(150, "lb"),
  24513. name: "Front",
  24514. image: {
  24515. source: "./media/characters/maelstrom/front.svg",
  24516. extra: 2100 / 1883,
  24517. bottom: 94 / 2196.7
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Less Kaiju",
  24524. height: math.unit(200, "feet")
  24525. },
  24526. {
  24527. name: "Kaiju",
  24528. height: math.unit(400, "feet"),
  24529. default: true
  24530. },
  24531. {
  24532. name: "Kaiju-er",
  24533. height: math.unit(600, "feet")
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24539. {
  24540. front: {
  24541. height: math.unit(6 + 5 / 12, "feet"),
  24542. weight: math.unit(180, "lb"),
  24543. name: "Front",
  24544. image: {
  24545. source: "./media/characters/lexir/front.svg",
  24546. extra: 180 / 172,
  24547. bottom: 12 / 192
  24548. }
  24549. },
  24550. back: {
  24551. height: math.unit(6 + 5 / 12, "feet"),
  24552. weight: math.unit(180, "lb"),
  24553. name: "Back",
  24554. image: {
  24555. source: "./media/characters/lexir/back.svg",
  24556. extra: 1273/1201,
  24557. bottom: 39/1312
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Very Smal",
  24564. height: math.unit(1, "nm")
  24565. },
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(6 + 5 / 12, "feet"),
  24569. default: true
  24570. },
  24571. {
  24572. name: "Macro",
  24573. height: math.unit(1, "mile")
  24574. },
  24575. {
  24576. name: "Megamacro",
  24577. height: math.unit(50, "miles")
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24583. {
  24584. front: {
  24585. height: math.unit(1.5, "meters"),
  24586. weight: math.unit(100, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/maksio/front.svg",
  24590. extra: 1549 / 1531,
  24591. bottom: 123.7 / 1674.5429
  24592. }
  24593. },
  24594. back: {
  24595. height: math.unit(1.5, "meters"),
  24596. weight: math.unit(100, "lb"),
  24597. name: "Back",
  24598. image: {
  24599. source: "./media/characters/maksio/back.svg",
  24600. extra: 1541 / 1509,
  24601. bottom: 97 / 1639
  24602. }
  24603. },
  24604. hand: {
  24605. height: math.unit(0.621, "feet"),
  24606. name: "Hand",
  24607. image: {
  24608. source: "./media/characters/maksio/hand.svg"
  24609. }
  24610. },
  24611. foot: {
  24612. height: math.unit(1.611, "feet"),
  24613. name: "Foot",
  24614. image: {
  24615. source: "./media/characters/maksio/foot.svg"
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Shrunken",
  24622. height: math.unit(10, "cm")
  24623. },
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(150, "cm"),
  24627. default: true
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(100, "feet"),
  24636. name: "Front",
  24637. image: {
  24638. source: "./media/characters/erza-bear/front.svg",
  24639. extra: 2449 / 2390,
  24640. bottom: 46 / 2494
  24641. }
  24642. },
  24643. back: {
  24644. height: math.unit(100, "feet"),
  24645. name: "Back",
  24646. image: {
  24647. source: "./media/characters/erza-bear/back.svg",
  24648. extra: 2489 / 2430,
  24649. bottom: 85.4 / 2480
  24650. }
  24651. },
  24652. tail: {
  24653. height: math.unit(42, "feet"),
  24654. name: "Tail",
  24655. image: {
  24656. source: "./media/characters/erza-bear/tail.svg"
  24657. }
  24658. },
  24659. tongue: {
  24660. height: math.unit(8, "feet"),
  24661. name: "Tongue",
  24662. image: {
  24663. source: "./media/characters/erza-bear/tongue.svg"
  24664. }
  24665. },
  24666. dick: {
  24667. height: math.unit(10.5, "feet"),
  24668. name: "Dick",
  24669. image: {
  24670. source: "./media/characters/erza-bear/dick.svg"
  24671. }
  24672. },
  24673. dickVertical: {
  24674. height: math.unit(16.9, "feet"),
  24675. name: "Dick (Vertical)",
  24676. image: {
  24677. source: "./media/characters/erza-bear/dick-vertical.svg"
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Macro",
  24684. height: math.unit(100, "feet"),
  24685. default: true
  24686. },
  24687. ]
  24688. ))
  24689. characterMakers.push(() => makeCharacter(
  24690. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24691. {
  24692. front: {
  24693. height: math.unit(172, "cm"),
  24694. weight: math.unit(73, "kg"),
  24695. name: "Front",
  24696. image: {
  24697. source: "./media/characters/violet-flor/front.svg",
  24698. extra: 1530 / 1442,
  24699. bottom: 61.9 / 1588.8
  24700. }
  24701. },
  24702. back: {
  24703. height: math.unit(180, "cm"),
  24704. weight: math.unit(73, "kg"),
  24705. name: "Back",
  24706. image: {
  24707. source: "./media/characters/violet-flor/back.svg",
  24708. extra: 1692 / 1630,
  24709. bottom: 20 / 1712
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Normal",
  24716. height: math.unit(172, "cm"),
  24717. default: true
  24718. },
  24719. ]
  24720. ))
  24721. characterMakers.push(() => makeCharacter(
  24722. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24723. {
  24724. front: {
  24725. height: math.unit(6, "feet"),
  24726. weight: math.unit(220, "lb"),
  24727. name: "Front",
  24728. image: {
  24729. source: "./media/characters/lynn-rhea/front.svg",
  24730. extra: 310 / 273
  24731. }
  24732. },
  24733. back: {
  24734. height: math.unit(6, "feet"),
  24735. weight: math.unit(220, "lb"),
  24736. name: "Back",
  24737. image: {
  24738. source: "./media/characters/lynn-rhea/back.svg",
  24739. extra: 310 / 273
  24740. }
  24741. },
  24742. dicks: {
  24743. height: math.unit(0.9, "feet"),
  24744. name: "Dicks",
  24745. image: {
  24746. source: "./media/characters/lynn-rhea/dicks.svg"
  24747. }
  24748. },
  24749. slit: {
  24750. height: math.unit(0.4, "feet"),
  24751. name: "Slit",
  24752. image: {
  24753. source: "./media/characters/lynn-rhea/slit.svg"
  24754. }
  24755. },
  24756. },
  24757. [
  24758. {
  24759. name: "Micro",
  24760. height: math.unit(1, "inch")
  24761. },
  24762. {
  24763. name: "Macro",
  24764. height: math.unit(60, "feet"),
  24765. default: true
  24766. },
  24767. {
  24768. name: "Megamacro",
  24769. height: math.unit(2, "miles")
  24770. },
  24771. {
  24772. name: "Gigamacro",
  24773. height: math.unit(3, "earths")
  24774. },
  24775. {
  24776. name: "Galactic",
  24777. height: math.unit(0.8, "galaxies")
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24783. {
  24784. front: {
  24785. height: math.unit(1600, "feet"),
  24786. weight: math.unit(85758785169, "kg"),
  24787. name: "Front",
  24788. image: {
  24789. source: "./media/characters/valathos/front.svg",
  24790. extra: 1451 / 1339
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(1600, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(7 + 5 / 12, "feet"),
  24807. weight: math.unit(300, "lb"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/azula/front.svg",
  24811. extra: 3208 / 2880,
  24812. bottom: 80.2 / 3277
  24813. }
  24814. },
  24815. back: {
  24816. height: math.unit(7 + 5 / 12, "feet"),
  24817. weight: math.unit(300, "lb"),
  24818. name: "Back",
  24819. image: {
  24820. source: "./media/characters/azula/back.svg",
  24821. extra: 3169 / 2822,
  24822. bottom: 150.6 / 3321
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(7 + 5 / 12, "feet"),
  24830. default: true
  24831. },
  24832. {
  24833. name: "Big",
  24834. height: math.unit(20, "feet")
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(5 + 1 / 12, "feet"),
  24843. weight: math.unit(110, "lb"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/rupert/front.svg",
  24847. extra: 1549 / 1495,
  24848. bottom: 54.2 / 1604.4
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(5 + 1 / 12, "feet"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24862. {
  24863. front: {
  24864. height: math.unit(8 + 4 / 12, "feet"),
  24865. weight: math.unit(350, "lb"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/sheera-castellar/front.svg",
  24869. extra: 1957 / 1894,
  24870. bottom: 26.97 / 1975.017
  24871. }
  24872. },
  24873. side: {
  24874. height: math.unit(8 + 4 / 12, "feet"),
  24875. weight: math.unit(350, "lb"),
  24876. name: "Side",
  24877. image: {
  24878. source: "./media/characters/sheera-castellar/side.svg",
  24879. extra: 1957 / 1894
  24880. }
  24881. },
  24882. back: {
  24883. height: math.unit(8 + 4 / 12, "feet"),
  24884. weight: math.unit(350, "lb"),
  24885. name: "Back",
  24886. image: {
  24887. source: "./media/characters/sheera-castellar/back.svg",
  24888. extra: 1957 / 1894
  24889. }
  24890. },
  24891. angled: {
  24892. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24893. weight: math.unit(350, "lb"),
  24894. name: "Angled",
  24895. image: {
  24896. source: "./media/characters/sheera-castellar/angled.svg",
  24897. extra: 1807 / 1707,
  24898. bottom: 68 / 1875
  24899. }
  24900. },
  24901. genitals: {
  24902. height: math.unit(2.2, "feet"),
  24903. name: "Genitals",
  24904. image: {
  24905. source: "./media/characters/sheera-castellar/genitals.svg"
  24906. }
  24907. },
  24908. taur: {
  24909. height: math.unit(10 + 6/12, "feet"),
  24910. name: "Taur",
  24911. image: {
  24912. source: "./media/characters/sheera-castellar/taur.svg",
  24913. extra: 2017/1909,
  24914. bottom: 185/2202
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Normal",
  24921. height: math.unit(8 + 4 / 12, "feet")
  24922. },
  24923. {
  24924. name: "Macro",
  24925. height: math.unit(150, "feet"),
  24926. default: true
  24927. },
  24928. {
  24929. name: "Macro+",
  24930. height: math.unit(800, "feet")
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24936. {
  24937. front: {
  24938. height: math.unit(6, "feet"),
  24939. weight: math.unit(150, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/jaipur/front.svg",
  24943. extra: 3860 / 3731,
  24944. bottom: 287 / 4140
  24945. }
  24946. },
  24947. back: {
  24948. height: math.unit(6, "feet"),
  24949. weight: math.unit(150, "lb"),
  24950. name: "Back",
  24951. image: {
  24952. source: "./media/characters/jaipur/back.svg",
  24953. extra: 1637/1561,
  24954. bottom: 154/1791
  24955. }
  24956. },
  24957. },
  24958. [
  24959. {
  24960. name: "Normal",
  24961. height: math.unit(1.85, "meters"),
  24962. default: true
  24963. },
  24964. {
  24965. name: "Macro",
  24966. height: math.unit(150, "meters")
  24967. },
  24968. {
  24969. name: "Macro+",
  24970. height: math.unit(0.5, "miles")
  24971. },
  24972. {
  24973. name: "Macro++",
  24974. height: math.unit(2.5, "miles")
  24975. },
  24976. {
  24977. name: "Macro+++",
  24978. height: math.unit(12, "miles")
  24979. },
  24980. {
  24981. name: "Macro++++",
  24982. height: math.unit(120, "miles")
  24983. },
  24984. {
  24985. name: "Macro+++++",
  24986. height: math.unit(1200, "miles")
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24992. {
  24993. front: {
  24994. height: math.unit(6, "feet"),
  24995. weight: math.unit(150, "lb"),
  24996. name: "Front",
  24997. image: {
  24998. source: "./media/characters/sheila-wolf/front.svg",
  24999. extra: 1931 / 1808,
  25000. bottom: 29.5 / 1960
  25001. }
  25002. },
  25003. dick: {
  25004. height: math.unit(1.464, "feet"),
  25005. name: "Dick",
  25006. image: {
  25007. source: "./media/characters/sheila-wolf/dick.svg"
  25008. }
  25009. },
  25010. muzzle: {
  25011. height: math.unit(0.513, "feet"),
  25012. name: "Muzzle",
  25013. image: {
  25014. source: "./media/characters/sheila-wolf/muzzle.svg"
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Macro",
  25021. height: math.unit(70, "feet"),
  25022. default: true
  25023. },
  25024. ]
  25025. ))
  25026. characterMakers.push(() => makeCharacter(
  25027. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25028. {
  25029. front: {
  25030. height: math.unit(32, "meters"),
  25031. weight: math.unit(300000, "kg"),
  25032. name: "Front",
  25033. image: {
  25034. source: "./media/characters/almor/front.svg",
  25035. extra: 1408 / 1322,
  25036. bottom: 94.6 / 1506.5
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Macro",
  25043. height: math.unit(32, "meters"),
  25044. default: true
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25050. {
  25051. front: {
  25052. height: math.unit(7, "feet"),
  25053. weight: math.unit(200, "lb"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/silver/front.svg",
  25057. extra: 472.1 / 450.5,
  25058. bottom: 26.5 / 499.424
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(7, "feet"),
  25066. default: true
  25067. },
  25068. {
  25069. name: "Macro",
  25070. height: math.unit(800, "feet")
  25071. },
  25072. {
  25073. name: "Megamacro",
  25074. height: math.unit(250, "miles")
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(6, "feet"),
  25083. weight: math.unit(150, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/pliskin/front.svg",
  25087. extra: 1469 / 1359,
  25088. bottom: 70 / 1540
  25089. }
  25090. },
  25091. },
  25092. [
  25093. {
  25094. name: "Micro",
  25095. height: math.unit(3, "inches")
  25096. },
  25097. {
  25098. name: "Normal",
  25099. height: math.unit(5 + 11 / 12, "feet"),
  25100. default: true
  25101. },
  25102. {
  25103. name: "Macro",
  25104. height: math.unit(120, "feet")
  25105. },
  25106. ]
  25107. ))
  25108. characterMakers.push(() => makeCharacter(
  25109. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25110. {
  25111. front: {
  25112. height: math.unit(6, "feet"),
  25113. weight: math.unit(150, "lb"),
  25114. name: "Front",
  25115. image: {
  25116. source: "./media/characters/sammy/front.svg",
  25117. extra: 1193 / 1089,
  25118. bottom: 30.5 / 1226
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Macro",
  25125. height: math.unit(1700, "feet"),
  25126. default: true
  25127. },
  25128. {
  25129. name: "Examacro",
  25130. height: math.unit(2.5e9, "lightyears")
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25136. {
  25137. front: {
  25138. height: math.unit(21, "meters"),
  25139. weight: math.unit(12, "tonnes"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/kuru/front.svg",
  25143. extra: 4301 / 3785,
  25144. bottom: 371.3 / 4691
  25145. }
  25146. },
  25147. },
  25148. [
  25149. {
  25150. name: "Macro",
  25151. height: math.unit(21, "meters"),
  25152. default: true
  25153. },
  25154. ]
  25155. ))
  25156. characterMakers.push(() => makeCharacter(
  25157. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25158. {
  25159. front: {
  25160. height: math.unit(23, "meters"),
  25161. weight: math.unit(12.2, "tonnes"),
  25162. name: "Front",
  25163. image: {
  25164. source: "./media/characters/rakka/front.svg",
  25165. extra: 4670 / 4169,
  25166. bottom: 301 / 4968.7
  25167. }
  25168. },
  25169. },
  25170. [
  25171. {
  25172. name: "Macro",
  25173. height: math.unit(23, "meters"),
  25174. default: true
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(6, "feet"),
  25183. weight: math.unit(150, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/rhys-feline/front.svg",
  25187. extra: 2488 / 2308,
  25188. bottom: 35.67 / 2519.19
  25189. }
  25190. },
  25191. },
  25192. [
  25193. {
  25194. name: "Really Small",
  25195. height: math.unit(1, "nm")
  25196. },
  25197. {
  25198. name: "Micro",
  25199. height: math.unit(4, "inches")
  25200. },
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(4 + 10 / 12, "feet"),
  25204. default: true
  25205. },
  25206. {
  25207. name: "Macro",
  25208. height: math.unit(100, "feet")
  25209. },
  25210. {
  25211. name: "Megamacto",
  25212. height: math.unit(50, "miles")
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25218. {
  25219. side: {
  25220. height: math.unit(30, "feet"),
  25221. weight: math.unit(35000, "kg"),
  25222. name: "Side",
  25223. image: {
  25224. source: "./media/characters/alydar/side.svg",
  25225. extra: 234 / 222,
  25226. bottom: 6.5 / 241
  25227. }
  25228. },
  25229. front: {
  25230. height: math.unit(30, "feet"),
  25231. weight: math.unit(35000, "kg"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/alydar/front.svg",
  25235. extra: 223.37 / 210.2,
  25236. bottom: 22.3 / 246.76
  25237. }
  25238. },
  25239. top: {
  25240. height: math.unit(64.54, "feet"),
  25241. weight: math.unit(35000, "kg"),
  25242. name: "Top",
  25243. image: {
  25244. source: "./media/characters/alydar/top.svg"
  25245. }
  25246. },
  25247. anthro: {
  25248. height: math.unit(30, "feet"),
  25249. weight: math.unit(9000, "kg"),
  25250. name: "Anthro",
  25251. image: {
  25252. source: "./media/characters/alydar/anthro.svg",
  25253. extra: 432 / 421,
  25254. bottom: 7.18 / 440
  25255. }
  25256. },
  25257. maw: {
  25258. height: math.unit(11.693, "feet"),
  25259. name: "Maw",
  25260. image: {
  25261. source: "./media/characters/alydar/maw.svg"
  25262. }
  25263. },
  25264. head: {
  25265. height: math.unit(11.693, "feet"),
  25266. name: "Head",
  25267. image: {
  25268. source: "./media/characters/alydar/head.svg"
  25269. }
  25270. },
  25271. headAlt: {
  25272. height: math.unit(12.861, "feet"),
  25273. name: "Head (Alt)",
  25274. image: {
  25275. source: "./media/characters/alydar/head-alt.svg"
  25276. }
  25277. },
  25278. wing: {
  25279. height: math.unit(20.712, "feet"),
  25280. name: "Wing",
  25281. image: {
  25282. source: "./media/characters/alydar/wing.svg"
  25283. }
  25284. },
  25285. wingFeather: {
  25286. height: math.unit(9.662, "feet"),
  25287. name: "Wing Feather",
  25288. image: {
  25289. source: "./media/characters/alydar/wing-feather.svg"
  25290. }
  25291. },
  25292. countourFeather: {
  25293. height: math.unit(4.154, "feet"),
  25294. name: "Contour Feather",
  25295. image: {
  25296. source: "./media/characters/alydar/contour-feather.svg"
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Diplomatic",
  25303. height: math.unit(13, "feet"),
  25304. default: true
  25305. },
  25306. {
  25307. name: "Small",
  25308. height: math.unit(30, "feet")
  25309. },
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(95, "feet"),
  25313. default: true
  25314. },
  25315. {
  25316. name: "Large",
  25317. height: math.unit(285, "feet")
  25318. },
  25319. {
  25320. name: "Incomprehensible",
  25321. height: math.unit(450, "megameters")
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25327. {
  25328. side: {
  25329. height: math.unit(11, "feet"),
  25330. weight: math.unit(1750, "kg"),
  25331. name: "Side",
  25332. image: {
  25333. source: "./media/characters/selicia/side.svg",
  25334. extra: 440 / 396,
  25335. bottom: 24.8 / 465.979
  25336. }
  25337. },
  25338. maw: {
  25339. height: math.unit(4.665, "feet"),
  25340. name: "Maw",
  25341. image: {
  25342. source: "./media/characters/selicia/maw.svg"
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(11, "feet"),
  25350. default: true
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25356. {
  25357. side: {
  25358. height: math.unit(2 + 6 / 12, "feet"),
  25359. weight: math.unit(30, "lb"),
  25360. name: "Side",
  25361. image: {
  25362. source: "./media/characters/layla/side.svg",
  25363. extra: 244 / 188,
  25364. bottom: 18.2 / 262.1
  25365. }
  25366. },
  25367. back: {
  25368. height: math.unit(2 + 6 / 12, "feet"),
  25369. weight: math.unit(30, "lb"),
  25370. name: "Back",
  25371. image: {
  25372. source: "./media/characters/layla/back.svg",
  25373. extra: 308 / 241.5,
  25374. bottom: 8.9 / 316.8
  25375. }
  25376. },
  25377. cumming: {
  25378. height: math.unit(2 + 6 / 12, "feet"),
  25379. weight: math.unit(30, "lb"),
  25380. name: "Cumming",
  25381. image: {
  25382. source: "./media/characters/layla/cumming.svg",
  25383. extra: 342 / 279,
  25384. bottom: 595 / 938
  25385. }
  25386. },
  25387. dickFlaccid: {
  25388. height: math.unit(2.595, "feet"),
  25389. name: "Flaccid Genitals",
  25390. image: {
  25391. source: "./media/characters/layla/dick-flaccid.svg"
  25392. }
  25393. },
  25394. dickErect: {
  25395. height: math.unit(2.359, "feet"),
  25396. name: "Erect Genitals",
  25397. image: {
  25398. source: "./media/characters/layla/dick-erect.svg"
  25399. }
  25400. },
  25401. dragon: {
  25402. height: math.unit(40, "feet"),
  25403. name: "Dragon",
  25404. image: {
  25405. source: "./media/characters/layla/dragon.svg",
  25406. extra: 610/535,
  25407. bottom: 367/977
  25408. }
  25409. },
  25410. taur: {
  25411. height: math.unit(30, "feet"),
  25412. name: "Taur",
  25413. image: {
  25414. source: "./media/characters/layla/taur.svg",
  25415. extra: 1268/1199,
  25416. bottom: 112/1380
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Micro",
  25423. height: math.unit(1, "inch")
  25424. },
  25425. {
  25426. name: "Small",
  25427. height: math.unit(1, "foot")
  25428. },
  25429. {
  25430. name: "Normal",
  25431. height: math.unit(2 + 6 / 12, "feet"),
  25432. default: true
  25433. },
  25434. {
  25435. name: "Macro",
  25436. height: math.unit(200, "feet")
  25437. },
  25438. {
  25439. name: "Megamacro",
  25440. height: math.unit(1000, "miles")
  25441. },
  25442. {
  25443. name: "Planetary",
  25444. height: math.unit(8000, "miles")
  25445. },
  25446. {
  25447. name: "True Layla",
  25448. height: math.unit(200000 * 7, "multiverses")
  25449. },
  25450. ]
  25451. ))
  25452. characterMakers.push(() => makeCharacter(
  25453. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25454. {
  25455. back: {
  25456. height: math.unit(10.5, "feet"),
  25457. weight: math.unit(800, "lb"),
  25458. name: "Back",
  25459. image: {
  25460. source: "./media/characters/knox/back.svg",
  25461. extra: 1486 / 1089,
  25462. bottom: 107 / 1601.4
  25463. }
  25464. },
  25465. side: {
  25466. height: math.unit(10.5, "feet"),
  25467. weight: math.unit(800, "lb"),
  25468. name: "Side",
  25469. image: {
  25470. source: "./media/characters/knox/side.svg",
  25471. extra: 244 / 218,
  25472. bottom: 14 / 260
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Compact",
  25479. height: math.unit(10.5, "feet"),
  25480. default: true
  25481. },
  25482. {
  25483. name: "Dynamax",
  25484. height: math.unit(210, "feet")
  25485. },
  25486. {
  25487. name: "Full Macro",
  25488. height: math.unit(850, "feet")
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(28, "feet"),
  25497. weight: math.unit(10500, "lb"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/kayda/front.svg",
  25501. extra: 1536 / 1428,
  25502. bottom: 68.7 / 1603
  25503. }
  25504. },
  25505. back: {
  25506. height: math.unit(28, "feet"),
  25507. weight: math.unit(10500, "lb"),
  25508. name: "Back",
  25509. image: {
  25510. source: "./media/characters/kayda/back.svg",
  25511. extra: 1557 / 1464,
  25512. bottom: 39.5 / 1597.49
  25513. }
  25514. },
  25515. dick: {
  25516. height: math.unit(3.858, "feet"),
  25517. name: "Dick",
  25518. image: {
  25519. source: "./media/characters/kayda/dick.svg"
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Macro",
  25526. height: math.unit(28, "feet"),
  25527. default: true
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(10 + 11 / 12, "feet"),
  25536. weight: math.unit(1400, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/brian/front.svg",
  25540. extra: 737 / 692,
  25541. bottom: 55.4 / 785
  25542. }
  25543. },
  25544. },
  25545. [
  25546. {
  25547. name: "Normal",
  25548. height: math.unit(10 + 11 / 12, "feet"),
  25549. default: true
  25550. },
  25551. ]
  25552. ))
  25553. characterMakers.push(() => makeCharacter(
  25554. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25555. {
  25556. front: {
  25557. height: math.unit(5 + 8 / 12, "feet"),
  25558. weight: math.unit(140, "lb"),
  25559. name: "Front",
  25560. image: {
  25561. source: "./media/characters/khemri/front.svg",
  25562. extra: 4780 / 4059,
  25563. bottom: 80.1 / 4859.25
  25564. }
  25565. },
  25566. },
  25567. [
  25568. {
  25569. name: "Micro",
  25570. height: math.unit(6, "inches")
  25571. },
  25572. {
  25573. name: "Normal",
  25574. height: math.unit(5 + 8 / 12, "feet"),
  25575. default: true
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25581. {
  25582. front: {
  25583. height: math.unit(13, "feet"),
  25584. weight: math.unit(1700, "lb"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/felix-braveheart/front.svg",
  25588. extra: 1222 / 1157,
  25589. bottom: 53.2 / 1280
  25590. }
  25591. },
  25592. back: {
  25593. height: math.unit(13, "feet"),
  25594. weight: math.unit(1700, "lb"),
  25595. name: "Back",
  25596. image: {
  25597. source: "./media/characters/felix-braveheart/back.svg",
  25598. extra: 1277 / 1203,
  25599. bottom: 50.2 / 1327
  25600. }
  25601. },
  25602. feral: {
  25603. height: math.unit(6, "feet"),
  25604. weight: math.unit(400, "lb"),
  25605. name: "Feral",
  25606. image: {
  25607. source: "./media/characters/felix-braveheart/feral.svg",
  25608. extra: 682 / 625,
  25609. bottom: 6.9 / 688
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(13, "feet"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25623. {
  25624. side: {
  25625. height: math.unit(5 + 11 / 12, "feet"),
  25626. weight: math.unit(1400, "lb"),
  25627. name: "Side",
  25628. image: {
  25629. source: "./media/characters/shadow-blade/side.svg",
  25630. extra: 1726 / 1267,
  25631. bottom: 58.4 / 1785
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(5 + 11 / 12, "feet"),
  25639. default: true
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25645. {
  25646. front: {
  25647. height: math.unit(1 + 6 / 12, "feet"),
  25648. weight: math.unit(25, "lb"),
  25649. name: "Front",
  25650. image: {
  25651. source: "./media/characters/karla-halldor/front.svg",
  25652. extra: 1459 / 1383,
  25653. bottom: 12 / 1472
  25654. }
  25655. },
  25656. },
  25657. [
  25658. {
  25659. name: "Normal",
  25660. height: math.unit(1 + 6 / 12, "feet"),
  25661. default: true
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25667. {
  25668. front: {
  25669. height: math.unit(6 + 2 / 12, "feet"),
  25670. weight: math.unit(160, "lb"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/ariam/front.svg",
  25674. extra: 1073/976,
  25675. bottom: 52/1125
  25676. }
  25677. },
  25678. back: {
  25679. height: math.unit(6 + 2/12, "feet"),
  25680. weight: math.unit(160, "lb"),
  25681. name: "Back",
  25682. image: {
  25683. source: "./media/characters/ariam/back.svg",
  25684. extra: 1103/1023,
  25685. bottom: 9/1112
  25686. }
  25687. },
  25688. dressed: {
  25689. height: math.unit(6 + 2/12, "feet"),
  25690. weight: math.unit(160, "lb"),
  25691. name: "Dressed",
  25692. image: {
  25693. source: "./media/characters/ariam/dressed.svg",
  25694. extra: 1099/1009,
  25695. bottom: 25/1124
  25696. }
  25697. },
  25698. squatting: {
  25699. height: math.unit(4.1, "feet"),
  25700. weight: math.unit(160, "lb"),
  25701. name: "Squatting",
  25702. image: {
  25703. source: "./media/characters/ariam/squatting.svg",
  25704. extra: 2617 / 2112,
  25705. bottom: 61.2 / 2681,
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Normal",
  25712. height: math.unit(6 + 2 / 12, "feet"),
  25713. default: true
  25714. },
  25715. {
  25716. name: "Normal+",
  25717. height: math.unit(4, "meters")
  25718. },
  25719. {
  25720. name: "Macro",
  25721. height: math.unit(50, "meters")
  25722. },
  25723. {
  25724. name: "Macro+",
  25725. height: math.unit(100, "meters")
  25726. },
  25727. {
  25728. name: "Megamacro",
  25729. height: math.unit(20, "km")
  25730. },
  25731. {
  25732. name: "Caretaker",
  25733. height: math.unit(444, "megameters")
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25739. {
  25740. front: {
  25741. height: math.unit(1.67, "meters"),
  25742. weight: math.unit(140, "lb"),
  25743. name: "Front",
  25744. image: {
  25745. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25746. extra: 438 / 410,
  25747. bottom: 0.75 / 439
  25748. }
  25749. },
  25750. },
  25751. [
  25752. {
  25753. name: "Shrunken",
  25754. height: math.unit(7.6, "cm")
  25755. },
  25756. {
  25757. name: "Human Scale",
  25758. height: math.unit(1.67, "meters")
  25759. },
  25760. {
  25761. name: "Wolxi Scale",
  25762. height: math.unit(36.7, "meters"),
  25763. default: true
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25769. {
  25770. front: {
  25771. height: math.unit(1.73, "meters"),
  25772. weight: math.unit(240, "lb"),
  25773. name: "Front",
  25774. image: {
  25775. source: "./media/characters/izue-two-mothers/front.svg",
  25776. extra: 469 / 437,
  25777. bottom: 1.24 / 470.6
  25778. }
  25779. },
  25780. },
  25781. [
  25782. {
  25783. name: "Shrunken",
  25784. height: math.unit(7.86, "cm")
  25785. },
  25786. {
  25787. name: "Human Scale",
  25788. height: math.unit(1.73, "meters")
  25789. },
  25790. {
  25791. name: "Wolxi Scale",
  25792. height: math.unit(38, "meters"),
  25793. default: true
  25794. },
  25795. ]
  25796. ))
  25797. characterMakers.push(() => makeCharacter(
  25798. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25799. {
  25800. front: {
  25801. height: math.unit(1.55, "meters"),
  25802. weight: math.unit(120, "lb"),
  25803. name: "Front",
  25804. image: {
  25805. source: "./media/characters/teeku-love-shack/front.svg",
  25806. extra: 387 / 362,
  25807. bottom: 1.51 / 388
  25808. }
  25809. },
  25810. },
  25811. [
  25812. {
  25813. name: "Shrunken",
  25814. height: math.unit(7, "cm")
  25815. },
  25816. {
  25817. name: "Human Scale",
  25818. height: math.unit(1.55, "meters")
  25819. },
  25820. {
  25821. name: "Wolxi Scale",
  25822. height: math.unit(34.1, "meters"),
  25823. default: true
  25824. },
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25829. {
  25830. front: {
  25831. height: math.unit(1.83, "meters"),
  25832. weight: math.unit(135, "lb"),
  25833. name: "Front",
  25834. image: {
  25835. source: "./media/characters/dejma-the-red/front.svg",
  25836. extra: 480 / 458,
  25837. bottom: 1.8 / 482
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Shrunken",
  25844. height: math.unit(8.3, "cm")
  25845. },
  25846. {
  25847. name: "Human Scale",
  25848. height: math.unit(1.83, "meters")
  25849. },
  25850. {
  25851. name: "Wolxi Scale",
  25852. height: math.unit(40, "meters"),
  25853. default: true
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(1.78, "meters"),
  25862. weight: math.unit(65, "kg"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/aki/front.svg",
  25866. extra: 452 / 415
  25867. }
  25868. },
  25869. frontNsfw: {
  25870. height: math.unit(1.78, "meters"),
  25871. weight: math.unit(65, "kg"),
  25872. name: "Front (NSFW)",
  25873. image: {
  25874. source: "./media/characters/aki/front-nsfw.svg",
  25875. extra: 452 / 415
  25876. }
  25877. },
  25878. back: {
  25879. height: math.unit(1.78, "meters"),
  25880. weight: math.unit(65, "kg"),
  25881. name: "Back",
  25882. image: {
  25883. source: "./media/characters/aki/back.svg",
  25884. extra: 452 / 415
  25885. }
  25886. },
  25887. rump: {
  25888. height: math.unit(2.05, "feet"),
  25889. name: "Rump",
  25890. image: {
  25891. source: "./media/characters/aki/rump.svg"
  25892. }
  25893. },
  25894. dick: {
  25895. height: math.unit(0.95, "feet"),
  25896. name: "Dick",
  25897. image: {
  25898. source: "./media/characters/aki/dick.svg"
  25899. }
  25900. },
  25901. },
  25902. [
  25903. {
  25904. name: "Micro",
  25905. height: math.unit(15, "cm")
  25906. },
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(178, "cm"),
  25910. default: true
  25911. },
  25912. {
  25913. name: "Macro",
  25914. height: math.unit(214, "m")
  25915. },
  25916. {
  25917. name: "Macro+",
  25918. height: math.unit(534, "m")
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25924. {
  25925. front: {
  25926. height: math.unit(5 + 5 / 12, "feet"),
  25927. weight: math.unit(120, "lb"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/ari/front.svg",
  25931. extra: 1550/1471,
  25932. bottom: 39/1589
  25933. }
  25934. },
  25935. },
  25936. [
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(5 + 5 / 12, "feet")
  25940. },
  25941. {
  25942. name: "Macro",
  25943. height: math.unit(100, "feet"),
  25944. default: true
  25945. },
  25946. {
  25947. name: "Megamacro",
  25948. height: math.unit(100, "miles")
  25949. },
  25950. {
  25951. name: "Gigamacro",
  25952. height: math.unit(80000, "miles")
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25958. {
  25959. side: {
  25960. height: math.unit(9, "feet"),
  25961. weight: math.unit(400, "kg"),
  25962. name: "Side",
  25963. image: {
  25964. source: "./media/characters/bolt/side.svg",
  25965. extra: 1126 / 896,
  25966. bottom: 60 / 1187.3,
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Micro",
  25973. height: math.unit(5, "inches")
  25974. },
  25975. {
  25976. name: "Normal",
  25977. height: math.unit(9, "feet"),
  25978. default: true
  25979. },
  25980. {
  25981. name: "Macro",
  25982. height: math.unit(700, "feet")
  25983. },
  25984. {
  25985. name: "Max Size",
  25986. height: math.unit(1.52e22, "yottameters")
  25987. },
  25988. ]
  25989. ))
  25990. characterMakers.push(() => makeCharacter(
  25991. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25992. {
  25993. front: {
  25994. height: math.unit(4.3, "meters"),
  25995. weight: math.unit(3, "tons"),
  25996. name: "Front",
  25997. image: {
  25998. source: "./media/characters/draekon-sylviar/front.svg",
  25999. extra: 2072/1512,
  26000. bottom: 74/2146
  26001. }
  26002. },
  26003. back: {
  26004. height: math.unit(4.3, "meters"),
  26005. weight: math.unit(3, "tons"),
  26006. name: "Back",
  26007. image: {
  26008. source: "./media/characters/draekon-sylviar/back.svg",
  26009. extra: 1639/1483,
  26010. bottom: 41/1680
  26011. }
  26012. },
  26013. feral: {
  26014. height: math.unit(1.15, "meters"),
  26015. weight: math.unit(3, "tons"),
  26016. name: "Feral",
  26017. image: {
  26018. source: "./media/characters/draekon-sylviar/feral.svg",
  26019. extra: 1033/395,
  26020. bottom: 130/1163
  26021. }
  26022. },
  26023. maw: {
  26024. height: math.unit(1.3, "meters"),
  26025. name: "Maw",
  26026. image: {
  26027. source: "./media/characters/draekon-sylviar/maw.svg"
  26028. }
  26029. },
  26030. mawSeparated: {
  26031. height: math.unit(1.53, "meters"),
  26032. name: "Separated Maw",
  26033. image: {
  26034. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26035. }
  26036. },
  26037. tail: {
  26038. height: math.unit(1.15, "meters"),
  26039. name: "Tail",
  26040. image: {
  26041. source: "./media/characters/draekon-sylviar/tail.svg"
  26042. }
  26043. },
  26044. tailDick: {
  26045. height: math.unit(1.15, "meters"),
  26046. name: "Tail (Dick)",
  26047. image: {
  26048. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26049. }
  26050. },
  26051. tailDickSeparated: {
  26052. height: math.unit(1.19, "meters"),
  26053. name: "Tail (Separated Dick)",
  26054. image: {
  26055. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26056. }
  26057. },
  26058. slit: {
  26059. height: math.unit(1, "meters"),
  26060. name: "Slit",
  26061. image: {
  26062. source: "./media/characters/draekon-sylviar/slit.svg"
  26063. }
  26064. },
  26065. dick: {
  26066. height: math.unit(1.15, "meters"),
  26067. name: "Dick",
  26068. image: {
  26069. source: "./media/characters/draekon-sylviar/dick.svg"
  26070. }
  26071. },
  26072. dickSeparated: {
  26073. height: math.unit(1.1, "meters"),
  26074. name: "Separated Dick",
  26075. image: {
  26076. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26077. }
  26078. },
  26079. sheath: {
  26080. height: math.unit(1.15, "meters"),
  26081. name: "Sheath",
  26082. image: {
  26083. source: "./media/characters/draekon-sylviar/sheath.svg"
  26084. }
  26085. },
  26086. },
  26087. [
  26088. {
  26089. name: "Small",
  26090. height: math.unit(4.53 / 2, "meters"),
  26091. default: true
  26092. },
  26093. {
  26094. name: "Normal",
  26095. height: math.unit(4.53, "meters"),
  26096. default: true
  26097. },
  26098. {
  26099. name: "Large",
  26100. height: math.unit(4.53 * 2, "meters"),
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(6 + 2 / 12, "feet"),
  26109. weight: math.unit(180, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/brawler/front.svg",
  26113. extra: 3301 / 3027,
  26114. bottom: 138 / 3439
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Normal",
  26121. height: math.unit(6 + 2 / 12, "feet"),
  26122. default: true
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26128. {
  26129. front: {
  26130. height: math.unit(11, "feet"),
  26131. weight: math.unit(1000, "lb"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/alex/front.svg",
  26135. bottom: 44.5 / 620
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Micro",
  26142. height: math.unit(5, "inches")
  26143. },
  26144. {
  26145. name: "Normal",
  26146. height: math.unit(11, "feet"),
  26147. default: true
  26148. },
  26149. {
  26150. name: "Macro",
  26151. height: math.unit(9.5e9, "feet")
  26152. },
  26153. {
  26154. name: "Max Size",
  26155. height: math.unit(1.4e283, "yottameters")
  26156. },
  26157. ]
  26158. ))
  26159. characterMakers.push(() => makeCharacter(
  26160. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26161. {
  26162. female: {
  26163. height: math.unit(29.9, "m"),
  26164. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26165. name: "Female",
  26166. image: {
  26167. source: "./media/characters/zenari/female.svg",
  26168. extra: 3281.6 / 3217,
  26169. bottom: 72.2 / 3353
  26170. }
  26171. },
  26172. male: {
  26173. height: math.unit(27.7, "m"),
  26174. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26175. name: "Male",
  26176. image: {
  26177. source: "./media/characters/zenari/male.svg",
  26178. extra: 3008 / 2991,
  26179. bottom: 54.6 / 3069
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Macro",
  26186. height: math.unit(29.7, "meters"),
  26187. default: true
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26193. {
  26194. female: {
  26195. height: math.unit(23.8, "m"),
  26196. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26197. name: "Female",
  26198. image: {
  26199. source: "./media/characters/mactarian/female.svg",
  26200. extra: 2662 / 2569,
  26201. bottom: 73 / 2736
  26202. }
  26203. },
  26204. male: {
  26205. height: math.unit(23.8, "m"),
  26206. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26207. name: "Male",
  26208. image: {
  26209. source: "./media/characters/mactarian/male.svg",
  26210. extra: 2673 / 2600,
  26211. bottom: 76 / 2750
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Macro",
  26218. height: math.unit(23.8, "meters"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26225. {
  26226. female: {
  26227. height: math.unit(19.3, "m"),
  26228. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26229. name: "Female",
  26230. image: {
  26231. source: "./media/characters/umok/female.svg",
  26232. extra: 2186 / 2078,
  26233. bottom: 87 / 2277
  26234. }
  26235. },
  26236. male: {
  26237. height: math.unit(19.5, "m"),
  26238. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26239. name: "Male",
  26240. image: {
  26241. source: "./media/characters/umok/male.svg",
  26242. extra: 2233 / 2140,
  26243. bottom: 24.4 / 2258
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Macro",
  26250. height: math.unit(19.3, "meters"),
  26251. default: true
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26257. {
  26258. female: {
  26259. height: math.unit(26.15, "m"),
  26260. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26261. name: "Female",
  26262. image: {
  26263. source: "./media/characters/joraxian/female.svg",
  26264. extra: 2912 / 2824,
  26265. bottom: 36 / 2956
  26266. }
  26267. },
  26268. male: {
  26269. height: math.unit(25.4, "m"),
  26270. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26271. name: "Male",
  26272. image: {
  26273. source: "./media/characters/joraxian/male.svg",
  26274. extra: 2877 / 2721,
  26275. bottom: 82 / 2967
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "Macro",
  26282. height: math.unit(26.15, "meters"),
  26283. default: true
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26289. {
  26290. female: {
  26291. height: math.unit(21.6, "m"),
  26292. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26293. name: "Female",
  26294. image: {
  26295. source: "./media/characters/sthara/female.svg",
  26296. extra: 2516 / 2347,
  26297. bottom: 21.5 / 2537
  26298. }
  26299. },
  26300. male: {
  26301. height: math.unit(24, "m"),
  26302. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26303. name: "Male",
  26304. image: {
  26305. source: "./media/characters/sthara/male.svg",
  26306. extra: 2732 / 2607,
  26307. bottom: 23 / 2732
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Macro",
  26314. height: math.unit(21.6, "meters"),
  26315. default: true
  26316. },
  26317. ]
  26318. ))
  26319. characterMakers.push(() => makeCharacter(
  26320. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26321. {
  26322. front: {
  26323. height: math.unit(6 + 4 / 12, "feet"),
  26324. weight: math.unit(175, "lb"),
  26325. name: "Front",
  26326. image: {
  26327. source: "./media/characters/luka-bryzant/front.svg",
  26328. extra: 311 / 289,
  26329. bottom: 4 / 315
  26330. }
  26331. },
  26332. back: {
  26333. height: math.unit(6 + 4 / 12, "feet"),
  26334. weight: math.unit(175, "lb"),
  26335. name: "Back",
  26336. image: {
  26337. source: "./media/characters/luka-bryzant/back.svg",
  26338. extra: 311 / 289,
  26339. bottom: 3.8 / 313.7
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Micro",
  26346. height: math.unit(10, "inches")
  26347. },
  26348. {
  26349. name: "Normal",
  26350. height: math.unit(6 + 4 / 12, "feet"),
  26351. default: true
  26352. },
  26353. {
  26354. name: "Large",
  26355. height: math.unit(12, "feet")
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(5 + 7 / 12, "feet"),
  26364. weight: math.unit(185, "lb"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/aman-aquila/front.svg",
  26368. extra: 1013 / 976,
  26369. bottom: 45.6 / 1057
  26370. }
  26371. },
  26372. side: {
  26373. height: math.unit(5 + 7 / 12, "feet"),
  26374. weight: math.unit(185, "lb"),
  26375. name: "Side",
  26376. image: {
  26377. source: "./media/characters/aman-aquila/side.svg",
  26378. extra: 1054 / 1011,
  26379. bottom: 15 / 1070
  26380. }
  26381. },
  26382. back: {
  26383. height: math.unit(5 + 7 / 12, "feet"),
  26384. weight: math.unit(185, "lb"),
  26385. name: "Back",
  26386. image: {
  26387. source: "./media/characters/aman-aquila/back.svg",
  26388. extra: 1026 / 970,
  26389. bottom: 12 / 1039
  26390. }
  26391. },
  26392. head: {
  26393. height: math.unit(1.211, "feet"),
  26394. name: "Head",
  26395. image: {
  26396. source: "./media/characters/aman-aquila/head.svg",
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Minimicro",
  26403. height: math.unit(0.057, "inches")
  26404. },
  26405. {
  26406. name: "Micro",
  26407. height: math.unit(7, "inches")
  26408. },
  26409. {
  26410. name: "Mini",
  26411. height: math.unit(3 + 7 / 12, "feet")
  26412. },
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(5 + 7 / 12, "feet"),
  26416. default: true
  26417. },
  26418. {
  26419. name: "Macro",
  26420. height: math.unit(157 + 7 / 12, "feet")
  26421. },
  26422. {
  26423. name: "Megamacro",
  26424. height: math.unit(1557 + 7 / 12, "feet")
  26425. },
  26426. {
  26427. name: "Gigamacro",
  26428. height: math.unit(15557 + 7 / 12, "feet")
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(3 + 2 / 12, "inches"),
  26437. weight: math.unit(0.3, "ounces"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/hiphae/front.svg",
  26441. extra: 1931 / 1683,
  26442. bottom: 24 / 1955
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(3 + 1 / 2, "inches"),
  26450. default: true
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(5 + 10 / 12, "feet"),
  26459. weight: math.unit(165, "lb"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/nicky/front.svg",
  26463. extra: 3144 / 2886,
  26464. bottom: 45.6 / 3192
  26465. }
  26466. },
  26467. back: {
  26468. height: math.unit(5 + 10 / 12, "feet"),
  26469. weight: math.unit(165, "lb"),
  26470. name: "Back",
  26471. image: {
  26472. source: "./media/characters/nicky/back.svg",
  26473. extra: 3055 / 2804,
  26474. bottom: 28.4 / 3087
  26475. }
  26476. },
  26477. frontclothed: {
  26478. height: math.unit(5 + 10 / 12, "feet"),
  26479. weight: math.unit(165, "lb"),
  26480. name: "Front-clothed",
  26481. image: {
  26482. source: "./media/characters/nicky/front-clothed.svg",
  26483. extra: 3184.9 / 2926.9,
  26484. bottom: 86.5 / 3239.9
  26485. }
  26486. },
  26487. foot: {
  26488. height: math.unit(1.16, "feet"),
  26489. name: "Foot",
  26490. image: {
  26491. source: "./media/characters/nicky/foot.svg"
  26492. }
  26493. },
  26494. feet: {
  26495. height: math.unit(1.34, "feet"),
  26496. name: "Feet",
  26497. image: {
  26498. source: "./media/characters/nicky/feet.svg"
  26499. }
  26500. },
  26501. maw: {
  26502. height: math.unit(0.9, "feet"),
  26503. name: "Maw",
  26504. image: {
  26505. source: "./media/characters/nicky/maw.svg"
  26506. }
  26507. },
  26508. },
  26509. [
  26510. {
  26511. name: "Normal",
  26512. height: math.unit(5 + 10 / 12, "feet"),
  26513. default: true
  26514. },
  26515. {
  26516. name: "Macro",
  26517. height: math.unit(60, "feet")
  26518. },
  26519. {
  26520. name: "Megamacro",
  26521. height: math.unit(1, "mile")
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26527. {
  26528. side: {
  26529. height: math.unit(10, "feet"),
  26530. weight: math.unit(600, "lb"),
  26531. name: "Side",
  26532. image: {
  26533. source: "./media/characters/blair/side.svg",
  26534. bottom: 16.6 / 475,
  26535. extra: 458 / 431
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Micro",
  26542. height: math.unit(8, "inches")
  26543. },
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(10, "feet"),
  26547. default: true
  26548. },
  26549. {
  26550. name: "Macro",
  26551. height: math.unit(180, "feet")
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26557. {
  26558. front: {
  26559. height: math.unit(5 + 4 / 12, "feet"),
  26560. weight: math.unit(125, "lb"),
  26561. name: "Front",
  26562. image: {
  26563. source: "./media/characters/fisher/front.svg",
  26564. extra: 444 / 390,
  26565. bottom: 2 / 444.8
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Micro",
  26572. height: math.unit(4, "inches")
  26573. },
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(5 + 4 / 12, "feet"),
  26577. default: true
  26578. },
  26579. {
  26580. name: "Macro",
  26581. height: math.unit(100, "feet")
  26582. },
  26583. ]
  26584. ))
  26585. characterMakers.push(() => makeCharacter(
  26586. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26587. {
  26588. front: {
  26589. height: math.unit(6.71, "feet"),
  26590. weight: math.unit(200, "lb"),
  26591. preyCapacity: math.unit(1000000, "people"),
  26592. name: "Front",
  26593. image: {
  26594. source: "./media/characters/gliss/front.svg",
  26595. extra: 2347 / 2231,
  26596. bottom: 113 / 2462
  26597. }
  26598. },
  26599. hammerspaceSize: {
  26600. height: math.unit(6.71 * 717, "feet"),
  26601. weight: math.unit(200, "lb"),
  26602. preyCapacity: math.unit(1000000, "people"),
  26603. name: "Hammerspace Size",
  26604. image: {
  26605. source: "./media/characters/gliss/front.svg",
  26606. extra: 2347 / 2231,
  26607. bottom: 113 / 2462
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(6.71, "feet"),
  26615. default: true
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26621. {
  26622. side: {
  26623. height: math.unit(1.44, "m"),
  26624. weight: math.unit(80, "kg"),
  26625. name: "Side",
  26626. image: {
  26627. source: "./media/characters/dune-anderson/side.svg",
  26628. bottom: 49 / 1426
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Wolf-sized",
  26635. height: math.unit(1.44, "meters")
  26636. },
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(5.05, "meters"),
  26640. default: true
  26641. },
  26642. {
  26643. name: "Big",
  26644. height: math.unit(14.4, "meters")
  26645. },
  26646. {
  26647. name: "Huge",
  26648. height: math.unit(144, "meters")
  26649. },
  26650. ]
  26651. ))
  26652. characterMakers.push(() => makeCharacter(
  26653. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26654. {
  26655. front: {
  26656. height: math.unit(7, "feet"),
  26657. weight: math.unit(425, "lb"),
  26658. name: "Front",
  26659. image: {
  26660. source: "./media/characters/hind/front.svg",
  26661. extra: 2091 / 1860,
  26662. bottom: 129 / 2220
  26663. }
  26664. },
  26665. back: {
  26666. height: math.unit(7, "feet"),
  26667. weight: math.unit(425, "lb"),
  26668. name: "Back",
  26669. image: {
  26670. source: "./media/characters/hind/back.svg",
  26671. extra: 2091 / 1860,
  26672. bottom: 24.6 / 2309
  26673. }
  26674. },
  26675. tail: {
  26676. height: math.unit(2.8, "feet"),
  26677. name: "Tail",
  26678. image: {
  26679. source: "./media/characters/hind/tail.svg"
  26680. }
  26681. },
  26682. head: {
  26683. height: math.unit(2.55, "feet"),
  26684. name: "Head",
  26685. image: {
  26686. source: "./media/characters/hind/head.svg"
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "XS",
  26693. height: math.unit(0.7, "feet")
  26694. },
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(7, "feet"),
  26698. default: true
  26699. },
  26700. {
  26701. name: "XL",
  26702. height: math.unit(70, "feet")
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26708. {
  26709. front: {
  26710. height: math.unit(2.1, "meters"),
  26711. weight: math.unit(150, "lb"),
  26712. name: "Front",
  26713. image: {
  26714. source: "./media/characters/tharquench-sizestealer/front.svg",
  26715. extra: 1605/1470,
  26716. bottom: 36/1641
  26717. }
  26718. },
  26719. frontAlt: {
  26720. height: math.unit(2.1, "meters"),
  26721. weight: math.unit(150, "lb"),
  26722. name: "Front (Alt)",
  26723. image: {
  26724. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26725. extra: 2318 / 2063,
  26726. bottom: 93.4 / 2410
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Nano",
  26733. height: math.unit(1, "mm")
  26734. },
  26735. {
  26736. name: "Micro",
  26737. height: math.unit(1, "cm")
  26738. },
  26739. {
  26740. name: "Normal",
  26741. height: math.unit(2.1, "meters"),
  26742. default: true
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(7 + 5 / 12, "feet"),
  26751. weight: math.unit(357, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/solex-draconov/front.svg",
  26755. extra: 1993 / 1865,
  26756. bottom: 117 / 2111
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Natural Height",
  26763. height: math.unit(7 + 5 / 12, "feet"),
  26764. default: true
  26765. },
  26766. {
  26767. name: "Macro",
  26768. height: math.unit(350, "feet")
  26769. },
  26770. {
  26771. name: "Macro+",
  26772. height: math.unit(1000, "feet")
  26773. },
  26774. {
  26775. name: "Megamacro",
  26776. height: math.unit(20, "km")
  26777. },
  26778. {
  26779. name: "Megamacro+",
  26780. height: math.unit(1000, "km")
  26781. },
  26782. {
  26783. name: "Gigamacro",
  26784. height: math.unit(2.5, "Gm")
  26785. },
  26786. {
  26787. name: "Teramacro",
  26788. height: math.unit(15, "Tm")
  26789. },
  26790. {
  26791. name: "Galactic",
  26792. height: math.unit(30, "Zm")
  26793. },
  26794. {
  26795. name: "Universal",
  26796. height: math.unit(21000, "Ym")
  26797. },
  26798. {
  26799. name: "Omniversal",
  26800. height: math.unit(9.861e50, "Ym")
  26801. },
  26802. {
  26803. name: "Existential",
  26804. height: math.unit(1e300, "meters")
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26810. {
  26811. side: {
  26812. height: math.unit(25, "feet"),
  26813. weight: math.unit(90000, "lb"),
  26814. name: "Side",
  26815. image: {
  26816. source: "./media/characters/mandarax/side.svg",
  26817. extra: 614 / 332,
  26818. bottom: 55 / 630
  26819. }
  26820. },
  26821. lounging: {
  26822. height: math.unit(15.4, "feet"),
  26823. weight: math.unit(90000, "lb"),
  26824. name: "Lounging",
  26825. image: {
  26826. source: "./media/characters/mandarax/lounging.svg",
  26827. extra: 817/609,
  26828. bottom: 685/1502
  26829. }
  26830. },
  26831. head: {
  26832. height: math.unit(11.4, "feet"),
  26833. name: "Head",
  26834. image: {
  26835. source: "./media/characters/mandarax/head.svg"
  26836. }
  26837. },
  26838. belly: {
  26839. height: math.unit(33, "feet"),
  26840. name: "Belly",
  26841. preyCapacity: math.unit(500, "people"),
  26842. image: {
  26843. source: "./media/characters/mandarax/belly.svg"
  26844. }
  26845. },
  26846. dick: {
  26847. height: math.unit(8.46, "feet"),
  26848. name: "Dick",
  26849. image: {
  26850. source: "./media/characters/mandarax/dick.svg"
  26851. }
  26852. },
  26853. top: {
  26854. height: math.unit(28, "meters"),
  26855. name: "Top",
  26856. image: {
  26857. source: "./media/characters/mandarax/top.svg"
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(25, "feet"),
  26865. default: true
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(5, "feet"),
  26874. weight: math.unit(90, "lb"),
  26875. name: "Front",
  26876. image: {
  26877. source: "./media/characters/pixil/front.svg",
  26878. extra: 2000 / 1618,
  26879. bottom: 12.3 / 2011
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(5, "feet"),
  26887. default: true
  26888. },
  26889. {
  26890. name: "Megamacro",
  26891. height: math.unit(10, "miles"),
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(7 + 2 / 12, "feet"),
  26900. weight: math.unit(200, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/angel/front.svg",
  26904. extra: 1830 / 1737,
  26905. bottom: 22.6 / 1854,
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Normal",
  26912. height: math.unit(7 + 2 / 12, "feet"),
  26913. default: true
  26914. },
  26915. {
  26916. name: "Macro",
  26917. height: math.unit(1000, "feet")
  26918. },
  26919. {
  26920. name: "Megamacro",
  26921. height: math.unit(2, "miles")
  26922. },
  26923. {
  26924. name: "Gigamacro",
  26925. height: math.unit(20, "earths")
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(5, "feet"),
  26934. weight: math.unit(180, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/mekana/front.svg",
  26938. extra: 1671 / 1605,
  26939. bottom: 3.5 / 1691
  26940. }
  26941. },
  26942. side: {
  26943. height: math.unit(5, "feet"),
  26944. weight: math.unit(180, "lb"),
  26945. name: "Side",
  26946. image: {
  26947. source: "./media/characters/mekana/side.svg",
  26948. extra: 1671 / 1605,
  26949. bottom: 3.5 / 1691
  26950. }
  26951. },
  26952. back: {
  26953. height: math.unit(5, "feet"),
  26954. weight: math.unit(180, "lb"),
  26955. name: "Back",
  26956. image: {
  26957. source: "./media/characters/mekana/back.svg",
  26958. extra: 1671 / 1605,
  26959. bottom: 3.5 / 1691
  26960. }
  26961. },
  26962. },
  26963. [
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(5, "feet"),
  26967. default: true
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(4 + 6 / 12, "feet"),
  26976. weight: math.unit(80, "lb"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/pixie/front.svg",
  26980. extra: 1924 / 1825,
  26981. bottom: 22.4 / 1946
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Normal",
  26988. height: math.unit(4 + 6 / 12, "feet"),
  26989. default: true
  26990. },
  26991. {
  26992. name: "Macro",
  26993. height: math.unit(40, "feet")
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26999. {
  27000. front: {
  27001. height: math.unit(2.1, "meters"),
  27002. weight: math.unit(200, "lb"),
  27003. name: "Front",
  27004. image: {
  27005. source: "./media/characters/the-lascivious/front.svg",
  27006. extra: 1 / 0.893,
  27007. bottom: 3.5 / 573.7
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Human Scale",
  27014. height: math.unit(2.1, "meters")
  27015. },
  27016. {
  27017. name: "Wolxi Scale",
  27018. height: math.unit(46.2, "m"),
  27019. default: true
  27020. },
  27021. {
  27022. name: "Boinker of Buildings",
  27023. height: math.unit(10, "km")
  27024. },
  27025. {
  27026. name: "Shagger of Skyscrapers",
  27027. height: math.unit(40, "km")
  27028. },
  27029. {
  27030. name: "Banger of Boroughs",
  27031. height: math.unit(4000, "km")
  27032. },
  27033. {
  27034. name: "Screwer of States",
  27035. height: math.unit(100000, "km")
  27036. },
  27037. {
  27038. name: "Pounder of Planets",
  27039. height: math.unit(2000000, "km")
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(6, "feet"),
  27048. weight: math.unit(150, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/aj/front.svg",
  27052. extra: 2039 / 1562,
  27053. bottom: 40 / 2079
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(11 + 6 / 12, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Megamacro",
  27065. height: math.unit(60, "megameters")
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27071. {
  27072. side: {
  27073. height: math.unit(31 + 8 / 12, "feet"),
  27074. weight: math.unit(75000, "kg"),
  27075. name: "Side",
  27076. image: {
  27077. source: "./media/characters/koros/side.svg",
  27078. extra: 1442 / 1297,
  27079. bottom: 122.7 / 1562
  27080. }
  27081. },
  27082. dicksKingsCrown: {
  27083. height: math.unit(6, "feet"),
  27084. name: "Dicks (King's Crown)",
  27085. image: {
  27086. source: "./media/characters/koros/dicks-kings-crown.svg"
  27087. }
  27088. },
  27089. dicksTailSet: {
  27090. height: math.unit(3, "feet"),
  27091. name: "Dicks (Tail Set)",
  27092. image: {
  27093. source: "./media/characters/koros/dicks-tail-set.svg"
  27094. }
  27095. },
  27096. dickCumming: {
  27097. height: math.unit(7.98, "feet"),
  27098. name: "Dick (Cumming)",
  27099. image: {
  27100. source: "./media/characters/koros/dick-cumming.svg"
  27101. }
  27102. },
  27103. dicksBack: {
  27104. height: math.unit(5.9, "feet"),
  27105. name: "Dicks (Back)",
  27106. image: {
  27107. source: "./media/characters/koros/dicks-back.svg"
  27108. }
  27109. },
  27110. dicksFront: {
  27111. height: math.unit(3.72, "feet"),
  27112. name: "Dicks (Front)",
  27113. image: {
  27114. source: "./media/characters/koros/dicks-front.svg"
  27115. }
  27116. },
  27117. dicksPeeking: {
  27118. height: math.unit(3.0, "feet"),
  27119. name: "Dicks (Peeking)",
  27120. image: {
  27121. source: "./media/characters/koros/dicks-peeking.svg"
  27122. }
  27123. },
  27124. eye: {
  27125. height: math.unit(1.7, "feet"),
  27126. name: "Eye",
  27127. image: {
  27128. source: "./media/characters/koros/eye.svg"
  27129. }
  27130. },
  27131. headFront: {
  27132. height: math.unit(11.69, "feet"),
  27133. name: "Head (Front)",
  27134. image: {
  27135. source: "./media/characters/koros/head-front.svg"
  27136. }
  27137. },
  27138. headSide: {
  27139. height: math.unit(14, "feet"),
  27140. name: "Head (Side)",
  27141. image: {
  27142. source: "./media/characters/koros/head-side.svg"
  27143. }
  27144. },
  27145. leg: {
  27146. height: math.unit(17, "feet"),
  27147. name: "Leg",
  27148. image: {
  27149. source: "./media/characters/koros/leg.svg"
  27150. }
  27151. },
  27152. mawSide: {
  27153. height: math.unit(12.8, "feet"),
  27154. name: "Maw (Side)",
  27155. image: {
  27156. source: "./media/characters/koros/maw-side.svg"
  27157. }
  27158. },
  27159. mawSpitting: {
  27160. height: math.unit(17, "feet"),
  27161. name: "Maw (Spitting)",
  27162. image: {
  27163. source: "./media/characters/koros/maw-spitting.svg"
  27164. }
  27165. },
  27166. slit: {
  27167. height: math.unit(2.8, "feet"),
  27168. name: "Slit",
  27169. image: {
  27170. source: "./media/characters/koros/slit.svg"
  27171. }
  27172. },
  27173. stomach: {
  27174. height: math.unit(6.8, "feet"),
  27175. preyCapacity: math.unit(20, "people"),
  27176. name: "Stomach",
  27177. image: {
  27178. source: "./media/characters/koros/stomach.svg"
  27179. }
  27180. },
  27181. wingspanBottom: {
  27182. height: math.unit(114, "feet"),
  27183. name: "Wingspan (Bottom)",
  27184. image: {
  27185. source: "./media/characters/koros/wingspan-bottom.svg"
  27186. }
  27187. },
  27188. wingspanTop: {
  27189. height: math.unit(104, "feet"),
  27190. name: "Wingspan (Top)",
  27191. image: {
  27192. source: "./media/characters/koros/wingspan-top.svg"
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(31 + 8 / 12, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(18 + 5 / 12, "feet"),
  27209. weight: math.unit(3750, "kg"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/vexx/front.svg",
  27213. extra: 426 / 396,
  27214. bottom: 31.5 / 458
  27215. }
  27216. },
  27217. maw: {
  27218. height: math.unit(6, "feet"),
  27219. name: "Maw",
  27220. image: {
  27221. source: "./media/characters/vexx/maw.svg"
  27222. }
  27223. },
  27224. },
  27225. [
  27226. {
  27227. name: "Normal",
  27228. height: math.unit(18 + 5 / 12, "feet"),
  27229. default: true
  27230. },
  27231. ]
  27232. ))
  27233. characterMakers.push(() => makeCharacter(
  27234. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27235. {
  27236. front: {
  27237. height: math.unit(17 + 6 / 12, "feet"),
  27238. weight: math.unit(150, "lb"),
  27239. name: "Front",
  27240. image: {
  27241. source: "./media/characters/baadra/front.svg",
  27242. extra: 1694/1553,
  27243. bottom: 179/1873
  27244. }
  27245. },
  27246. frontAlt: {
  27247. height: math.unit(17 + 6 / 12, "feet"),
  27248. weight: math.unit(150, "lb"),
  27249. name: "Front (Alt)",
  27250. image: {
  27251. source: "./media/characters/baadra/front-alt.svg",
  27252. extra: 3137 / 2890,
  27253. bottom: 168.4 / 3305
  27254. }
  27255. },
  27256. back: {
  27257. height: math.unit(17 + 6 / 12, "feet"),
  27258. weight: math.unit(150, "lb"),
  27259. name: "Back",
  27260. image: {
  27261. source: "./media/characters/baadra/back.svg",
  27262. extra: 3142 / 2890,
  27263. bottom: 220 / 3371
  27264. }
  27265. },
  27266. head: {
  27267. height: math.unit(5.45, "feet"),
  27268. name: "Head",
  27269. image: {
  27270. source: "./media/characters/baadra/head.svg"
  27271. }
  27272. },
  27273. headAngry: {
  27274. height: math.unit(4.95, "feet"),
  27275. name: "Head (Angry)",
  27276. image: {
  27277. source: "./media/characters/baadra/head-angry.svg"
  27278. }
  27279. },
  27280. headOpen: {
  27281. height: math.unit(6, "feet"),
  27282. name: "Head (Open)",
  27283. image: {
  27284. source: "./media/characters/baadra/head-open.svg"
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(17 + 6 / 12, "feet"),
  27292. default: true
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(7 + 3 / 12, "feet"),
  27301. weight: math.unit(180, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/juri/front.svg",
  27305. extra: 1401 / 1237,
  27306. bottom: 18.5 / 1418
  27307. }
  27308. },
  27309. side: {
  27310. height: math.unit(7 + 3 / 12, "feet"),
  27311. weight: math.unit(180, "lb"),
  27312. name: "Side",
  27313. image: {
  27314. source: "./media/characters/juri/side.svg",
  27315. extra: 1424 / 1242,
  27316. bottom: 18.5 / 1447
  27317. }
  27318. },
  27319. sitting: {
  27320. height: math.unit(6, "feet"),
  27321. weight: math.unit(180, "lb"),
  27322. name: "Sitting",
  27323. image: {
  27324. source: "./media/characters/juri/sitting.svg",
  27325. extra: 1270 / 1143,
  27326. bottom: 100 / 1343
  27327. }
  27328. },
  27329. back: {
  27330. height: math.unit(7 + 3 / 12, "feet"),
  27331. weight: math.unit(180, "lb"),
  27332. name: "Back",
  27333. image: {
  27334. source: "./media/characters/juri/back.svg",
  27335. extra: 1377 / 1240,
  27336. bottom: 23.7 / 1405
  27337. }
  27338. },
  27339. maw: {
  27340. height: math.unit(2.8, "feet"),
  27341. name: "Maw",
  27342. image: {
  27343. source: "./media/characters/juri/maw.svg"
  27344. }
  27345. },
  27346. stomach: {
  27347. height: math.unit(0.89, "feet"),
  27348. preyCapacity: math.unit(4, "liters"),
  27349. name: "Stomach",
  27350. image: {
  27351. source: "./media/characters/juri/stomach.svg"
  27352. }
  27353. },
  27354. },
  27355. [
  27356. {
  27357. name: "Normal",
  27358. height: math.unit(7 + 3 / 12, "feet"),
  27359. default: true
  27360. },
  27361. ]
  27362. ))
  27363. characterMakers.push(() => makeCharacter(
  27364. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27365. {
  27366. fox: {
  27367. height: math.unit(5 + 6 / 12, "feet"),
  27368. weight: math.unit(140, "lb"),
  27369. name: "Fox",
  27370. image: {
  27371. source: "./media/characters/maxene-sita/fox.svg",
  27372. extra: 146 / 138,
  27373. bottom: 2.1 / 148.19
  27374. }
  27375. },
  27376. foxLaying: {
  27377. height: math.unit(1.70, "feet"),
  27378. weight: math.unit(140, "lb"),
  27379. name: "Fox (Laying)",
  27380. image: {
  27381. source: "./media/characters/maxene-sita/fox-laying.svg",
  27382. extra: 910 / 572,
  27383. bottom: 71 / 981
  27384. }
  27385. },
  27386. kitsune: {
  27387. height: math.unit(10, "feet"),
  27388. weight: math.unit(800, "lb"),
  27389. name: "Kitsune",
  27390. image: {
  27391. source: "./media/characters/maxene-sita/kitsune.svg",
  27392. extra: 185 / 176,
  27393. bottom: 4.7 / 189.9
  27394. }
  27395. },
  27396. hellhound: {
  27397. height: math.unit(10, "feet"),
  27398. weight: math.unit(700, "lb"),
  27399. name: "Hellhound",
  27400. image: {
  27401. source: "./media/characters/maxene-sita/hellhound.svg",
  27402. extra: 1600 / 1545,
  27403. bottom: 81 / 1681
  27404. }
  27405. },
  27406. },
  27407. [
  27408. {
  27409. name: "Normal",
  27410. height: math.unit(5 + 6 / 12, "feet"),
  27411. default: true
  27412. },
  27413. ]
  27414. ))
  27415. characterMakers.push(() => makeCharacter(
  27416. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27417. {
  27418. front: {
  27419. height: math.unit(3 + 4 / 12, "feet"),
  27420. weight: math.unit(70, "lb"),
  27421. name: "Front",
  27422. image: {
  27423. source: "./media/characters/maia/front.svg",
  27424. extra: 227 / 219.5,
  27425. bottom: 40 / 267
  27426. }
  27427. },
  27428. back: {
  27429. height: math.unit(3 + 4 / 12, "feet"),
  27430. weight: math.unit(70, "lb"),
  27431. name: "Back",
  27432. image: {
  27433. source: "./media/characters/maia/back.svg",
  27434. extra: 237 / 225
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(3 + 4 / 12, "feet"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(5 + 10 / 12, "feet"),
  27451. weight: math.unit(197, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/jabaro/front.svg",
  27455. extra: 225 / 216,
  27456. bottom: 5.06 / 230
  27457. }
  27458. },
  27459. back: {
  27460. height: math.unit(5 + 10 / 12, "feet"),
  27461. weight: math.unit(197, "lb"),
  27462. name: "Back",
  27463. image: {
  27464. source: "./media/characters/jabaro/back.svg",
  27465. extra: 225 / 219,
  27466. bottom: 1.9 / 227
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Normal",
  27473. height: math.unit(5 + 10 / 12, "feet"),
  27474. default: true
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(5 + 8 / 12, "feet"),
  27483. weight: math.unit(139, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/risa/front.svg",
  27487. extra: 270 / 260,
  27488. bottom: 11.2 / 282
  27489. }
  27490. },
  27491. back: {
  27492. height: math.unit(5 + 8 / 12, "feet"),
  27493. weight: math.unit(139, "lb"),
  27494. name: "Back",
  27495. image: {
  27496. source: "./media/characters/risa/back.svg",
  27497. extra: 264 / 255,
  27498. bottom: 4 / 268
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(5 + 8 / 12, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(2 + 11 / 12, "feet"),
  27515. weight: math.unit(30, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/weatley/front.svg",
  27519. bottom: 10.7 / 414,
  27520. extra: 403.5 / 362
  27521. }
  27522. },
  27523. back: {
  27524. height: math.unit(2 + 11 / 12, "feet"),
  27525. weight: math.unit(30, "lb"),
  27526. name: "Back",
  27527. image: {
  27528. source: "./media/characters/weatley/back.svg",
  27529. bottom: 10.7 / 414,
  27530. extra: 403.5 / 362
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(2 + 11 / 12, "feet"),
  27538. default: true
  27539. },
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27544. {
  27545. front: {
  27546. height: math.unit(5 + 2 / 12, "feet"),
  27547. weight: math.unit(50, "kg"),
  27548. name: "Front",
  27549. image: {
  27550. source: "./media/characters/mercury-crescent/front.svg",
  27551. extra: 1088 / 1033,
  27552. bottom: 18.9 / 1109
  27553. }
  27554. },
  27555. },
  27556. [
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(5 + 2 / 12, "feet"),
  27560. default: true
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(2, "feet"),
  27569. weight: math.unit(15, "kg"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/diamond-jones/front.svg",
  27573. extra: 727/723,
  27574. bottom: 46/773
  27575. }
  27576. },
  27577. },
  27578. [
  27579. {
  27580. name: "Normal",
  27581. height: math.unit(2, "feet"),
  27582. default: true
  27583. },
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27588. {
  27589. front: {
  27590. height: math.unit(3, "feet"),
  27591. weight: math.unit(30, "kg"),
  27592. name: "Front",
  27593. image: {
  27594. source: "./media/characters/sweet-bit/front.svg",
  27595. extra: 675 / 567,
  27596. bottom: 27.7 / 703
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Normal",
  27603. height: math.unit(3, "feet"),
  27604. default: true
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27610. {
  27611. side: {
  27612. height: math.unit(9.178, "feet"),
  27613. weight: math.unit(500, "lb"),
  27614. name: "Side",
  27615. image: {
  27616. source: "./media/characters/umbrazen/side.svg",
  27617. extra: 1730 / 1473,
  27618. bottom: 34.6 / 1765
  27619. }
  27620. },
  27621. },
  27622. [
  27623. {
  27624. name: "Normal",
  27625. height: math.unit(9.178, "feet"),
  27626. default: true
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(10, "feet"),
  27635. weight: math.unit(750, "lb"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/arlist/front.svg",
  27639. extra: 961 / 778,
  27640. bottom: 6.2 / 986
  27641. }
  27642. },
  27643. },
  27644. [
  27645. {
  27646. name: "Normal",
  27647. height: math.unit(10, "feet"),
  27648. default: true
  27649. },
  27650. ]
  27651. ))
  27652. characterMakers.push(() => makeCharacter(
  27653. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27654. {
  27655. front: {
  27656. height: math.unit(5 + 1 / 12, "feet"),
  27657. weight: math.unit(110, "lb"),
  27658. name: "Front",
  27659. image: {
  27660. source: "./media/characters/aradel/front.svg",
  27661. extra: 324 / 303,
  27662. bottom: 3.6 / 329.4
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Normal",
  27669. height: math.unit(5 + 1 / 12, "feet"),
  27670. default: true
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27676. {
  27677. dressed: {
  27678. height: math.unit(3 + 8 / 12, "feet"),
  27679. weight: math.unit(50, "lb"),
  27680. name: "Dressed",
  27681. image: {
  27682. source: "./media/characters/serryn/dressed.svg",
  27683. extra: 1792 / 1656,
  27684. bottom: 43.5 / 1840
  27685. }
  27686. },
  27687. nude: {
  27688. height: math.unit(3 + 8 / 12, "feet"),
  27689. weight: math.unit(50, "lb"),
  27690. name: "Nude",
  27691. image: {
  27692. source: "./media/characters/serryn/nude.svg",
  27693. extra: 1792 / 1656,
  27694. bottom: 43.5 / 1840
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(3 + 8 / 12, "feet"),
  27702. default: true
  27703. },
  27704. ]
  27705. ))
  27706. characterMakers.push(() => makeCharacter(
  27707. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27708. {
  27709. front: {
  27710. height: math.unit(7 + 10 / 12, "feet"),
  27711. weight: math.unit(255, "lb"),
  27712. name: "Front",
  27713. image: {
  27714. source: "./media/characters/xavier-thyme/front.svg",
  27715. extra: 3733 / 3642,
  27716. bottom: 131 / 3869
  27717. }
  27718. },
  27719. frontRaven: {
  27720. height: math.unit(7 + 10 / 12, "feet"),
  27721. weight: math.unit(255, "lb"),
  27722. name: "Front (Raven)",
  27723. image: {
  27724. source: "./media/characters/xavier-thyme/front-raven.svg",
  27725. extra: 4385 / 3642,
  27726. bottom: 131 / 4517
  27727. }
  27728. },
  27729. },
  27730. [
  27731. {
  27732. name: "Normal",
  27733. height: math.unit(7 + 10 / 12, "feet"),
  27734. default: true
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(1.6, "m"),
  27743. weight: math.unit(50, "kg"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/kiki/front.svg",
  27747. extra: 4682 / 3610,
  27748. bottom: 115 / 4777
  27749. }
  27750. },
  27751. },
  27752. [
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(1.6, "meters"),
  27756. default: true
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(50, "m"),
  27765. weight: math.unit(500, "tonnes"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/ryoko/front.svg",
  27769. extra: 4632 / 3926,
  27770. bottom: 193 / 4823
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(50, "meters"),
  27778. default: true
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(30, "m"),
  27787. weight: math.unit(22, "tonnes"),
  27788. name: "Front",
  27789. image: {
  27790. source: "./media/characters/elio/front.svg",
  27791. extra: 4582 / 3720,
  27792. bottom: 236 / 4828
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(30, "meters"),
  27800. default: true
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27806. {
  27807. front: {
  27808. height: math.unit(6 + 3 / 12, "feet"),
  27809. weight: math.unit(120, "lb"),
  27810. name: "Front",
  27811. image: {
  27812. source: "./media/characters/azura/front.svg",
  27813. extra: 1149 / 1135,
  27814. bottom: 45 / 1194
  27815. }
  27816. },
  27817. frontClothed: {
  27818. height: math.unit(6 + 3 / 12, "feet"),
  27819. weight: math.unit(120, "lb"),
  27820. name: "Front (Clothed)",
  27821. image: {
  27822. source: "./media/characters/azura/front-clothed.svg",
  27823. extra: 1149 / 1135,
  27824. bottom: 45 / 1194
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(6 + 3 / 12, "feet"),
  27832. default: true
  27833. },
  27834. {
  27835. name: "Macro",
  27836. height: math.unit(20 + 6 / 12, "feet")
  27837. },
  27838. {
  27839. name: "Megamacro",
  27840. height: math.unit(12, "miles")
  27841. },
  27842. {
  27843. name: "Gigamacro",
  27844. height: math.unit(10000, "miles")
  27845. },
  27846. {
  27847. name: "Teramacro",
  27848. height: math.unit(900000, "miles")
  27849. },
  27850. ]
  27851. ))
  27852. characterMakers.push(() => makeCharacter(
  27853. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27854. {
  27855. front: {
  27856. height: math.unit(12, "feet"),
  27857. weight: math.unit(1, "ton"),
  27858. capacity: math.unit(660000, "gallons"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/zeus/front.svg",
  27862. extra: 5005 / 4717,
  27863. bottom: 363 / 5388
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(12, "feet")
  27871. },
  27872. {
  27873. name: "Preferred Size",
  27874. height: math.unit(0.5, "miles"),
  27875. default: true
  27876. },
  27877. {
  27878. name: "Giga Horse",
  27879. height: math.unit(300, "miles")
  27880. },
  27881. {
  27882. name: "Riding Planets",
  27883. height: math.unit(30, "megameters")
  27884. },
  27885. {
  27886. name: "Cosmic Giant",
  27887. height: math.unit(3, "zettameters")
  27888. },
  27889. {
  27890. name: "Breeding God",
  27891. height: math.unit(9.92e22, "yottameters")
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27897. {
  27898. side: {
  27899. height: math.unit(9, "feet"),
  27900. weight: math.unit(1500, "kg"),
  27901. name: "Side",
  27902. image: {
  27903. source: "./media/characters/fang/side.svg",
  27904. extra: 924 / 866,
  27905. bottom: 47.5 / 972.3
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Normal",
  27912. height: math.unit(9, "feet"),
  27913. default: true
  27914. },
  27915. {
  27916. name: "Macro",
  27917. height: math.unit(75 + 6 / 12, "feet")
  27918. },
  27919. {
  27920. name: "Teramacro",
  27921. height: math.unit(50000, "miles")
  27922. },
  27923. ]
  27924. ))
  27925. characterMakers.push(() => makeCharacter(
  27926. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27927. {
  27928. front: {
  27929. height: math.unit(10, "feet"),
  27930. weight: math.unit(2, "tons"),
  27931. name: "Front",
  27932. image: {
  27933. source: "./media/characters/rekhit/front.svg",
  27934. extra: 2796 / 2590,
  27935. bottom: 225 / 3022
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Normal",
  27942. height: math.unit(10, "feet"),
  27943. default: true
  27944. },
  27945. {
  27946. name: "Macro",
  27947. height: math.unit(500, "feet")
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(7 + 6.451 / 12, "feet"),
  27956. weight: math.unit(310, "lb"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/dahlia-verrick/front.svg",
  27960. extra: 1488 / 1365,
  27961. bottom: 6.2 / 1495
  27962. }
  27963. },
  27964. back: {
  27965. height: math.unit(7 + 6.451 / 12, "feet"),
  27966. weight: math.unit(310, "lb"),
  27967. name: "Back",
  27968. image: {
  27969. source: "./media/characters/dahlia-verrick/back.svg",
  27970. extra: 1472 / 1351,
  27971. bottom: 5.28 / 1477
  27972. }
  27973. },
  27974. frontBusiness: {
  27975. height: math.unit(7 + 6.451 / 12, "feet"),
  27976. weight: math.unit(200, "lb"),
  27977. name: "Front (Business)",
  27978. image: {
  27979. source: "./media/characters/dahlia-verrick/front-business.svg",
  27980. extra: 1478 / 1381,
  27981. bottom: 5.5 / 1484
  27982. }
  27983. },
  27984. frontCasual: {
  27985. height: math.unit(7 + 6.451 / 12, "feet"),
  27986. weight: math.unit(200, "lb"),
  27987. name: "Front (Casual)",
  27988. image: {
  27989. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27990. extra: 1478 / 1381,
  27991. bottom: 5.5 / 1484
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Travel-Sized",
  27998. height: math.unit(7.45, "inches")
  27999. },
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(7 + 6.451 / 12, "feet"),
  28003. default: true
  28004. },
  28005. {
  28006. name: "Hitting the Town",
  28007. height: math.unit(37 + 8 / 12, "feet")
  28008. },
  28009. {
  28010. name: "Stomp in the Suburbs",
  28011. height: math.unit(964 + 9.728 / 12, "feet")
  28012. },
  28013. {
  28014. name: "Sit on the City",
  28015. height: math.unit(61747 + 10.592 / 12, "feet")
  28016. },
  28017. {
  28018. name: "Glomp the Globe",
  28019. height: math.unit(252919327 + 4.832 / 12, "feet")
  28020. },
  28021. ]
  28022. ))
  28023. characterMakers.push(() => makeCharacter(
  28024. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28025. {
  28026. front: {
  28027. height: math.unit(6 + 4 / 12, "feet"),
  28028. weight: math.unit(320, "lb"),
  28029. name: "Front",
  28030. image: {
  28031. source: "./media/characters/balina-mahigan/front.svg",
  28032. extra: 447 / 428,
  28033. bottom: 18 / 466
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(6 + 4 / 12, "feet"),
  28038. weight: math.unit(320, "lb"),
  28039. name: "Back",
  28040. image: {
  28041. source: "./media/characters/balina-mahigan/back.svg",
  28042. extra: 445 / 428,
  28043. bottom: 4.07 / 448
  28044. }
  28045. },
  28046. arm: {
  28047. height: math.unit(1.88, "feet"),
  28048. name: "Arm",
  28049. image: {
  28050. source: "./media/characters/balina-mahigan/arm.svg"
  28051. }
  28052. },
  28053. backPort: {
  28054. height: math.unit(0.685, "feet"),
  28055. name: "Back Port",
  28056. image: {
  28057. source: "./media/characters/balina-mahigan/back-port.svg"
  28058. }
  28059. },
  28060. hoofpaw: {
  28061. height: math.unit(1.41, "feet"),
  28062. name: "Hoofpaw",
  28063. image: {
  28064. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28065. }
  28066. },
  28067. leftHandBack: {
  28068. height: math.unit(0.938, "feet"),
  28069. name: "Left Hand (Back)",
  28070. image: {
  28071. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28072. }
  28073. },
  28074. leftHandFront: {
  28075. height: math.unit(0.938, "feet"),
  28076. name: "Left Hand (Front)",
  28077. image: {
  28078. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28079. }
  28080. },
  28081. rightHandBack: {
  28082. height: math.unit(0.95, "feet"),
  28083. name: "Right Hand (Back)",
  28084. image: {
  28085. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28086. }
  28087. },
  28088. rightHandFront: {
  28089. height: math.unit(0.95, "feet"),
  28090. name: "Right Hand (Front)",
  28091. image: {
  28092. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28093. }
  28094. },
  28095. },
  28096. [
  28097. {
  28098. name: "Normal",
  28099. height: math.unit(6 + 4 / 12, "feet"),
  28100. default: true
  28101. },
  28102. ]
  28103. ))
  28104. characterMakers.push(() => makeCharacter(
  28105. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28106. {
  28107. front: {
  28108. height: math.unit(6, "feet"),
  28109. weight: math.unit(320, "lb"),
  28110. name: "Front",
  28111. image: {
  28112. source: "./media/characters/balina-mejeri/front.svg",
  28113. extra: 517 / 488,
  28114. bottom: 44.2 / 561
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(6 + 4 / 12, "feet")
  28122. },
  28123. {
  28124. name: "Business",
  28125. height: math.unit(155, "feet"),
  28126. default: true
  28127. },
  28128. ]
  28129. ))
  28130. characterMakers.push(() => makeCharacter(
  28131. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28132. {
  28133. kneeling: {
  28134. height: math.unit(6 + 4 / 12, "feet"),
  28135. weight: math.unit(300 * 20, "lb"),
  28136. name: "Kneeling",
  28137. image: {
  28138. source: "./media/characters/balbarian/kneeling.svg",
  28139. extra: 922 / 862,
  28140. bottom: 42.4 / 965
  28141. }
  28142. },
  28143. },
  28144. [
  28145. {
  28146. name: "Normal",
  28147. height: math.unit(6 + 4 / 12, "feet")
  28148. },
  28149. {
  28150. name: "Treasured",
  28151. height: math.unit(18 + 9 / 12, "feet"),
  28152. default: true
  28153. },
  28154. {
  28155. name: "Macro",
  28156. height: math.unit(900, "feet")
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28162. {
  28163. front: {
  28164. height: math.unit(6 + 4 / 12, "feet"),
  28165. weight: math.unit(325, "lb"),
  28166. name: "Front",
  28167. image: {
  28168. source: "./media/characters/balina-amarini/front.svg",
  28169. extra: 415 / 403,
  28170. bottom: 19 / 433.4
  28171. }
  28172. },
  28173. back: {
  28174. height: math.unit(6 + 4 / 12, "feet"),
  28175. weight: math.unit(325, "lb"),
  28176. name: "Back",
  28177. image: {
  28178. source: "./media/characters/balina-amarini/back.svg",
  28179. extra: 415 / 403,
  28180. bottom: 13.5 / 432
  28181. }
  28182. },
  28183. overdrive: {
  28184. height: math.unit(6 + 4 / 12, "feet"),
  28185. weight: math.unit(400, "lb"),
  28186. name: "Overdrive",
  28187. image: {
  28188. source: "./media/characters/balina-amarini/overdrive.svg",
  28189. extra: 269 / 259,
  28190. bottom: 12 / 282
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Boom",
  28197. height: math.unit(9 + 10 / 12, "feet"),
  28198. default: true
  28199. },
  28200. {
  28201. name: "Macro",
  28202. height: math.unit(280, "feet")
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28208. {
  28209. goddess: {
  28210. height: math.unit(600, "feet"),
  28211. weight: math.unit(2000000, "tons"),
  28212. name: "Goddess",
  28213. image: {
  28214. source: "./media/characters/lady-kubwa/goddess.svg",
  28215. extra: 1240.5 / 1223,
  28216. bottom: 22 / 1263
  28217. }
  28218. },
  28219. goddesser: {
  28220. height: math.unit(900, "feet"),
  28221. weight: math.unit(20000000, "lb"),
  28222. name: "Goddess-er",
  28223. image: {
  28224. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28225. extra: 899 / 888,
  28226. bottom: 12.6 / 912
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Macro",
  28233. height: math.unit(600, "feet"),
  28234. default: true
  28235. },
  28236. {
  28237. name: "Megamacro",
  28238. height: math.unit(250, "miles")
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(7 + 7 / 12, "feet"),
  28247. weight: math.unit(250, "lb"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/tala-grovehorn/front.svg",
  28251. extra: 2636 / 2525,
  28252. bottom: 147 / 2781
  28253. }
  28254. },
  28255. back: {
  28256. height: math.unit(7 + 7 / 12, "feet"),
  28257. weight: math.unit(250, "lb"),
  28258. name: "Back",
  28259. image: {
  28260. source: "./media/characters/tala-grovehorn/back.svg",
  28261. extra: 2635 / 2539,
  28262. bottom: 100 / 2732.8
  28263. }
  28264. },
  28265. mouth: {
  28266. height: math.unit(1.15, "feet"),
  28267. name: "Mouth",
  28268. image: {
  28269. source: "./media/characters/tala-grovehorn/mouth.svg"
  28270. }
  28271. },
  28272. dick: {
  28273. height: math.unit(2.36, "feet"),
  28274. name: "Dick",
  28275. image: {
  28276. source: "./media/characters/tala-grovehorn/dick.svg"
  28277. }
  28278. },
  28279. slit: {
  28280. height: math.unit(0.61, "feet"),
  28281. name: "Slit",
  28282. image: {
  28283. source: "./media/characters/tala-grovehorn/slit.svg"
  28284. }
  28285. },
  28286. },
  28287. [
  28288. ]
  28289. ))
  28290. characterMakers.push(() => makeCharacter(
  28291. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28292. {
  28293. front: {
  28294. height: math.unit(7 + 7 / 12, "feet"),
  28295. weight: math.unit(225, "lb"),
  28296. name: "Front",
  28297. image: {
  28298. source: "./media/characters/epona/front.svg",
  28299. extra: 2445 / 2290,
  28300. bottom: 251 / 2696
  28301. }
  28302. },
  28303. back: {
  28304. height: math.unit(7 + 7 / 12, "feet"),
  28305. weight: math.unit(225, "lb"),
  28306. name: "Back",
  28307. image: {
  28308. source: "./media/characters/epona/back.svg",
  28309. extra: 2546 / 2408,
  28310. bottom: 44 / 2589
  28311. }
  28312. },
  28313. genitals: {
  28314. height: math.unit(1.5, "feet"),
  28315. name: "Genitals",
  28316. image: {
  28317. source: "./media/characters/epona/genitals.svg"
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(7 + 7 / 12, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(7, "feet"),
  28334. weight: math.unit(518, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/avia-bloodbourn/front.svg",
  28338. extra: 1466 / 1350,
  28339. bottom: 65 / 1527
  28340. }
  28341. },
  28342. },
  28343. [
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28348. {
  28349. front: {
  28350. height: math.unit(9.35, "feet"),
  28351. weight: math.unit(600, "lb"),
  28352. name: "Front",
  28353. image: {
  28354. source: "./media/characters/amera/front.svg",
  28355. extra: 891 / 818,
  28356. bottom: 30 / 922.7
  28357. }
  28358. },
  28359. back: {
  28360. height: math.unit(9.35, "feet"),
  28361. weight: math.unit(600, "lb"),
  28362. name: "Back",
  28363. image: {
  28364. source: "./media/characters/amera/back.svg",
  28365. extra: 876 / 824,
  28366. bottom: 6.8 / 884
  28367. }
  28368. },
  28369. dick: {
  28370. height: math.unit(2.14, "feet"),
  28371. name: "Dick",
  28372. image: {
  28373. source: "./media/characters/amera/dick.svg"
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Normal",
  28380. height: math.unit(9.35, "feet"),
  28381. default: true
  28382. },
  28383. ]
  28384. ))
  28385. characterMakers.push(() => makeCharacter(
  28386. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28387. {
  28388. kneeling: {
  28389. height: math.unit(3 + 4 / 12, "feet"),
  28390. weight: math.unit(90, "lb"),
  28391. name: "Kneeling",
  28392. image: {
  28393. source: "./media/characters/rosewen/kneeling.svg",
  28394. extra: 1835 / 1571,
  28395. bottom: 27.7 / 1862
  28396. }
  28397. },
  28398. },
  28399. [
  28400. {
  28401. name: "Normal",
  28402. height: math.unit(3 + 4 / 12, "feet"),
  28403. default: true
  28404. },
  28405. ]
  28406. ))
  28407. characterMakers.push(() => makeCharacter(
  28408. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28409. {
  28410. front: {
  28411. height: math.unit(5 + 10 / 12, "feet"),
  28412. weight: math.unit(200, "lb"),
  28413. name: "Front",
  28414. image: {
  28415. source: "./media/characters/sabah/front.svg",
  28416. extra: 849 / 763,
  28417. bottom: 33.9 / 881
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(5 + 10 / 12, "feet"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28431. {
  28432. front: {
  28433. height: math.unit(3 + 5 / 12, "feet"),
  28434. weight: math.unit(40, "kg"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/purple-flame/front.svg",
  28438. extra: 1577 / 1412,
  28439. bottom: 97 / 1694
  28440. }
  28441. },
  28442. frontDressed: {
  28443. height: math.unit(3 + 5 / 12, "feet"),
  28444. weight: math.unit(40, "kg"),
  28445. name: "Front (Dressed)",
  28446. image: {
  28447. source: "./media/characters/purple-flame/front-dressed.svg",
  28448. extra: 1577 / 1412,
  28449. bottom: 97 / 1694
  28450. }
  28451. },
  28452. headphones: {
  28453. height: math.unit(0.85, "feet"),
  28454. name: "Headphones",
  28455. image: {
  28456. source: "./media/characters/purple-flame/headphones.svg"
  28457. }
  28458. },
  28459. },
  28460. [
  28461. {
  28462. name: "Really Small",
  28463. height: math.unit(5, "cm")
  28464. },
  28465. {
  28466. name: "Micro",
  28467. height: math.unit(1 + 5 / 12, "feet")
  28468. },
  28469. {
  28470. name: "Normal",
  28471. height: math.unit(3 + 5 / 12, "feet"),
  28472. default: true
  28473. },
  28474. {
  28475. name: "Minimacro",
  28476. height: math.unit(125, "feet")
  28477. },
  28478. {
  28479. name: "Macro",
  28480. height: math.unit(0.5, "miles")
  28481. },
  28482. {
  28483. name: "Megamacro",
  28484. height: math.unit(50, "miles")
  28485. },
  28486. {
  28487. name: "Gigantic",
  28488. height: math.unit(750, "miles")
  28489. },
  28490. {
  28491. name: "Planetary",
  28492. height: math.unit(15000, "miles")
  28493. },
  28494. ]
  28495. ))
  28496. characterMakers.push(() => makeCharacter(
  28497. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28498. {
  28499. front: {
  28500. height: math.unit(14, "feet"),
  28501. weight: math.unit(959, "lb"),
  28502. name: "Front",
  28503. image: {
  28504. source: "./media/characters/arsenal/front.svg",
  28505. extra: 2357 / 2157,
  28506. bottom: 93 / 2458
  28507. }
  28508. },
  28509. },
  28510. [
  28511. {
  28512. name: "Normal",
  28513. height: math.unit(14, "feet"),
  28514. default: true
  28515. },
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28520. {
  28521. front: {
  28522. height: math.unit(6, "feet"),
  28523. weight: math.unit(150, "lb"),
  28524. name: "Front",
  28525. image: {
  28526. source: "./media/characters/adira/front.svg",
  28527. extra: 1078 / 1029,
  28528. bottom: 87 / 1166
  28529. }
  28530. },
  28531. },
  28532. [
  28533. {
  28534. name: "Micro",
  28535. height: math.unit(4, "inches"),
  28536. default: true
  28537. },
  28538. {
  28539. name: "Macro",
  28540. height: math.unit(50, "feet")
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(16, "feet"),
  28549. weight: math.unit(1000, "lb"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/grim/front.svg",
  28553. extra: 622 / 614,
  28554. bottom: 18.1 / 642
  28555. }
  28556. },
  28557. back: {
  28558. height: math.unit(16, "feet"),
  28559. weight: math.unit(1000, "lb"),
  28560. name: "Back",
  28561. image: {
  28562. source: "./media/characters/grim/back.svg",
  28563. extra: 610.6 / 602,
  28564. bottom: 40.8 / 652
  28565. }
  28566. },
  28567. hunched: {
  28568. height: math.unit(9.75, "feet"),
  28569. weight: math.unit(1000, "lb"),
  28570. name: "Hunched",
  28571. image: {
  28572. source: "./media/characters/grim/hunched.svg",
  28573. extra: 304 / 297,
  28574. bottom: 35.4 / 394
  28575. }
  28576. },
  28577. },
  28578. [
  28579. {
  28580. name: "Normal",
  28581. height: math.unit(16, "feet"),
  28582. default: true
  28583. },
  28584. ]
  28585. ))
  28586. characterMakers.push(() => makeCharacter(
  28587. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28588. {
  28589. front: {
  28590. height: math.unit(2.3, "meters"),
  28591. weight: math.unit(300, "lb"),
  28592. name: "Front",
  28593. image: {
  28594. source: "./media/characters/sinja/front-sfw.svg",
  28595. extra: 1393 / 1294,
  28596. bottom: 70 / 1463
  28597. }
  28598. },
  28599. frontNsfw: {
  28600. height: math.unit(2.3, "meters"),
  28601. weight: math.unit(300, "lb"),
  28602. name: "Front (NSFW)",
  28603. image: {
  28604. source: "./media/characters/sinja/front-nsfw.svg",
  28605. extra: 1393 / 1294,
  28606. bottom: 70 / 1463
  28607. }
  28608. },
  28609. back: {
  28610. height: math.unit(2.3, "meters"),
  28611. weight: math.unit(300, "lb"),
  28612. name: "Back",
  28613. image: {
  28614. source: "./media/characters/sinja/back.svg",
  28615. extra: 1393 / 1294,
  28616. bottom: 70 / 1463
  28617. }
  28618. },
  28619. head: {
  28620. height: math.unit(1.771, "feet"),
  28621. name: "Head",
  28622. image: {
  28623. source: "./media/characters/sinja/head.svg"
  28624. }
  28625. },
  28626. slit: {
  28627. height: math.unit(0.8, "feet"),
  28628. name: "Slit",
  28629. image: {
  28630. source: "./media/characters/sinja/slit.svg"
  28631. }
  28632. },
  28633. },
  28634. [
  28635. {
  28636. name: "Normal",
  28637. height: math.unit(2.3, "meters")
  28638. },
  28639. {
  28640. name: "Macro",
  28641. height: math.unit(91, "meters"),
  28642. default: true
  28643. },
  28644. {
  28645. name: "Megamacro",
  28646. height: math.unit(91440, "meters")
  28647. },
  28648. {
  28649. name: "Gigamacro",
  28650. height: math.unit(60960000, "meters")
  28651. },
  28652. {
  28653. name: "Teramacro",
  28654. height: math.unit(9144000000, "meters")
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(1.7, "meters"),
  28663. weight: math.unit(130, "lb"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/kyu/front.svg",
  28667. extra: 415 / 395,
  28668. bottom: 5 / 420
  28669. }
  28670. },
  28671. head: {
  28672. height: math.unit(1.75, "feet"),
  28673. name: "Head",
  28674. image: {
  28675. source: "./media/characters/kyu/head.svg"
  28676. }
  28677. },
  28678. foot: {
  28679. height: math.unit(0.81, "feet"),
  28680. name: "Foot",
  28681. image: {
  28682. source: "./media/characters/kyu/foot.svg"
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Normal",
  28689. height: math.unit(1.7, "meters")
  28690. },
  28691. {
  28692. name: "Macro",
  28693. height: math.unit(131, "feet"),
  28694. default: true
  28695. },
  28696. {
  28697. name: "Megamacro",
  28698. height: math.unit(91440, "meters")
  28699. },
  28700. {
  28701. name: "Gigamacro",
  28702. height: math.unit(60960000, "meters")
  28703. },
  28704. {
  28705. name: "Teramacro",
  28706. height: math.unit(9144000000, "meters")
  28707. },
  28708. ]
  28709. ))
  28710. characterMakers.push(() => makeCharacter(
  28711. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28712. {
  28713. front: {
  28714. height: math.unit(7 + 1 / 12, "feet"),
  28715. weight: math.unit(250, "lb"),
  28716. name: "Front",
  28717. image: {
  28718. source: "./media/characters/joey/front.svg",
  28719. extra: 1791 / 1537,
  28720. bottom: 28 / 1816
  28721. }
  28722. },
  28723. },
  28724. [
  28725. {
  28726. name: "Micro",
  28727. height: math.unit(3, "inches")
  28728. },
  28729. {
  28730. name: "Normal",
  28731. height: math.unit(7 + 1 / 12, "feet"),
  28732. default: true
  28733. },
  28734. ]
  28735. ))
  28736. characterMakers.push(() => makeCharacter(
  28737. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28738. {
  28739. front: {
  28740. height: math.unit(165, "cm"),
  28741. weight: math.unit(140, "lb"),
  28742. name: "Front",
  28743. image: {
  28744. source: "./media/characters/sam-evans/front.svg",
  28745. extra: 3417 / 3230,
  28746. bottom: 41.3 / 3417
  28747. }
  28748. },
  28749. frontSixTails: {
  28750. height: math.unit(165, "cm"),
  28751. weight: math.unit(140, "lb"),
  28752. name: "Front-six-tails",
  28753. image: {
  28754. source: "./media/characters/sam-evans/front-six-tails.svg",
  28755. extra: 3417 / 3230,
  28756. bottom: 41.3 / 3417
  28757. }
  28758. },
  28759. back: {
  28760. height: math.unit(165, "cm"),
  28761. weight: math.unit(140, "lb"),
  28762. name: "Back",
  28763. image: {
  28764. source: "./media/characters/sam-evans/back.svg",
  28765. extra: 3227 / 3032,
  28766. bottom: 6.8 / 3234
  28767. }
  28768. },
  28769. face: {
  28770. height: math.unit(0.68, "feet"),
  28771. name: "Face",
  28772. image: {
  28773. source: "./media/characters/sam-evans/face.svg"
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(165, "cm"),
  28781. default: true
  28782. },
  28783. {
  28784. name: "Macro",
  28785. height: math.unit(100, "meters")
  28786. },
  28787. {
  28788. name: "Macro+",
  28789. height: math.unit(800, "meters")
  28790. },
  28791. {
  28792. name: "Macro++",
  28793. height: math.unit(3, "km")
  28794. },
  28795. {
  28796. name: "Macro+++",
  28797. height: math.unit(30, "km")
  28798. },
  28799. ]
  28800. ))
  28801. characterMakers.push(() => makeCharacter(
  28802. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28803. {
  28804. front: {
  28805. height: math.unit(10, "feet"),
  28806. weight: math.unit(750, "lb"),
  28807. name: "Front",
  28808. image: {
  28809. source: "./media/characters/juliet-a/front.svg",
  28810. extra: 1766 / 1720,
  28811. bottom: 43 / 1809
  28812. }
  28813. },
  28814. back: {
  28815. height: math.unit(10, "feet"),
  28816. weight: math.unit(750, "lb"),
  28817. name: "Back",
  28818. image: {
  28819. source: "./media/characters/juliet-a/back.svg",
  28820. extra: 1781 / 1734,
  28821. bottom: 35 / 1810,
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(10, "feet"),
  28829. default: true
  28830. },
  28831. {
  28832. name: "Dragon Form",
  28833. height: math.unit(250, "feet")
  28834. },
  28835. {
  28836. name: "Macro",
  28837. height: math.unit(1000, "feet")
  28838. },
  28839. {
  28840. name: "Megamacro",
  28841. height: math.unit(10000, "feet")
  28842. }
  28843. ]
  28844. ))
  28845. characterMakers.push(() => makeCharacter(
  28846. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28847. {
  28848. regular: {
  28849. height: math.unit(7 + 3 / 12, "feet"),
  28850. weight: math.unit(260, "lb"),
  28851. name: "Regular",
  28852. image: {
  28853. source: "./media/characters/wild/regular.svg",
  28854. extra: 97.45 / 92,
  28855. bottom: 6.8 / 104.3
  28856. }
  28857. },
  28858. biggums: {
  28859. height: math.unit(8 + 6 / 12, "feet"),
  28860. weight: math.unit(425, "lb"),
  28861. name: "Biggums",
  28862. image: {
  28863. source: "./media/characters/wild/biggums.svg",
  28864. extra: 97.45 / 92,
  28865. bottom: 7.5 / 132.34
  28866. }
  28867. },
  28868. mawRegular: {
  28869. height: math.unit(1.24, "feet"),
  28870. name: "Maw (Regular)",
  28871. image: {
  28872. source: "./media/characters/wild/maw.svg"
  28873. }
  28874. },
  28875. mawBiggums: {
  28876. height: math.unit(1.47, "feet"),
  28877. name: "Maw (Biggums)",
  28878. image: {
  28879. source: "./media/characters/wild/maw.svg"
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(7 + 3 / 12, "feet"),
  28887. default: true
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28893. {
  28894. front: {
  28895. height: math.unit(2.5, "meters"),
  28896. weight: math.unit(200, "kg"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/vidar/front.svg",
  28900. extra: 2994 / 2795,
  28901. bottom: 56 / 3061
  28902. }
  28903. },
  28904. back: {
  28905. height: math.unit(2.5, "meters"),
  28906. weight: math.unit(200, "kg"),
  28907. name: "Back",
  28908. image: {
  28909. source: "./media/characters/vidar/back.svg",
  28910. extra: 3131 / 2928,
  28911. bottom: 13.5 / 3141.5
  28912. }
  28913. },
  28914. feral: {
  28915. height: math.unit(2.5, "meters"),
  28916. weight: math.unit(2000, "kg"),
  28917. name: "Feral",
  28918. image: {
  28919. source: "./media/characters/vidar/feral.svg",
  28920. extra: 2790 / 1765,
  28921. bottom: 6 / 2796
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(2.5, "meters"),
  28929. default: true
  28930. },
  28931. {
  28932. name: "Macro",
  28933. height: math.unit(100, "meters")
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(5 + 9 / 12, "feet"),
  28942. weight: math.unit(120, "lb"),
  28943. name: "Front",
  28944. image: {
  28945. source: "./media/characters/ash/front.svg",
  28946. extra: 2189 / 1961,
  28947. bottom: 5.2 / 2194
  28948. }
  28949. },
  28950. },
  28951. [
  28952. {
  28953. name: "Normal",
  28954. height: math.unit(5 + 9 / 12, "feet"),
  28955. default: true
  28956. },
  28957. ]
  28958. ))
  28959. characterMakers.push(() => makeCharacter(
  28960. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28961. {
  28962. front: {
  28963. height: math.unit(9, "feet"),
  28964. weight: math.unit(10000, "lb"),
  28965. name: "Front",
  28966. image: {
  28967. source: "./media/characters/gygabite/front.svg",
  28968. bottom: 31.7 / 537.8,
  28969. extra: 505 / 370
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(9, "feet"),
  28977. default: true
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28983. {
  28984. front: {
  28985. height: math.unit(12, "feet"),
  28986. weight: math.unit(4000, "lb"),
  28987. name: "Front",
  28988. image: {
  28989. source: "./media/characters/p0tat0/front.svg",
  28990. extra: 1065 / 921,
  28991. bottom: 55.7 / 1121.25
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Normal",
  28998. height: math.unit(12, "feet"),
  28999. default: true
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29005. {
  29006. side: {
  29007. height: math.unit(6.5, "feet"),
  29008. weight: math.unit(800, "lb"),
  29009. name: "Side",
  29010. image: {
  29011. source: "./media/characters/dusk/side.svg",
  29012. extra: 615 / 373,
  29013. bottom: 53 / 664
  29014. }
  29015. },
  29016. sitting: {
  29017. height: math.unit(7, "feet"),
  29018. weight: math.unit(800, "lb"),
  29019. name: "Sitting",
  29020. image: {
  29021. source: "./media/characters/dusk/sitting.svg",
  29022. extra: 753 / 425,
  29023. bottom: 33 / 774
  29024. }
  29025. },
  29026. head: {
  29027. height: math.unit(6.1, "feet"),
  29028. name: "Head",
  29029. image: {
  29030. source: "./media/characters/dusk/head.svg"
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(7, "feet"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(15, "feet"),
  29047. weight: math.unit(7000, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/jay-direwolf/front.svg",
  29051. extra: 1810 / 1732,
  29052. bottom: 66 / 1892
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Normal",
  29059. height: math.unit(15, "feet"),
  29060. default: true
  29061. },
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29066. {
  29067. front: {
  29068. height: math.unit(4 + 9 / 12, "feet"),
  29069. weight: math.unit(130, "lb"),
  29070. name: "Front",
  29071. image: {
  29072. source: "./media/characters/anchovie/front.svg",
  29073. extra: 382 / 350,
  29074. bottom: 25 / 409
  29075. }
  29076. },
  29077. back: {
  29078. height: math.unit(4 + 9 / 12, "feet"),
  29079. weight: math.unit(130, "lb"),
  29080. name: "Back",
  29081. image: {
  29082. source: "./media/characters/anchovie/back.svg",
  29083. extra: 385 / 352,
  29084. bottom: 16.6 / 402
  29085. }
  29086. },
  29087. frontDressed: {
  29088. height: math.unit(4 + 9 / 12, "feet"),
  29089. weight: math.unit(130, "lb"),
  29090. name: "Front (Dressed)",
  29091. image: {
  29092. source: "./media/characters/anchovie/front-dressed.svg",
  29093. extra: 382 / 350,
  29094. bottom: 25 / 409
  29095. }
  29096. },
  29097. backDressed: {
  29098. height: math.unit(4 + 9 / 12, "feet"),
  29099. weight: math.unit(130, "lb"),
  29100. name: "Back (Dressed)",
  29101. image: {
  29102. source: "./media/characters/anchovie/back-dressed.svg",
  29103. extra: 385 / 352,
  29104. bottom: 16.6 / 402
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Micro",
  29111. height: math.unit(6.4, "inches")
  29112. },
  29113. {
  29114. name: "Normal",
  29115. height: math.unit(4 + 9 / 12, "feet"),
  29116. default: true
  29117. },
  29118. ]
  29119. ))
  29120. characterMakers.push(() => makeCharacter(
  29121. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29122. {
  29123. front: {
  29124. height: math.unit(2, "meters"),
  29125. weight: math.unit(180, "lb"),
  29126. name: "Front",
  29127. image: {
  29128. source: "./media/characters/acidrenamon/front.svg",
  29129. extra: 987 / 890,
  29130. bottom: 22.8 / 1009
  29131. }
  29132. },
  29133. back: {
  29134. height: math.unit(2, "meters"),
  29135. weight: math.unit(180, "lb"),
  29136. name: "Back",
  29137. image: {
  29138. source: "./media/characters/acidrenamon/back.svg",
  29139. extra: 983 / 891,
  29140. bottom: 8.4 / 992
  29141. }
  29142. },
  29143. head: {
  29144. height: math.unit(1.92, "feet"),
  29145. name: "Head",
  29146. image: {
  29147. source: "./media/characters/acidrenamon/head.svg"
  29148. }
  29149. },
  29150. rump: {
  29151. height: math.unit(1.72, "feet"),
  29152. name: "Rump",
  29153. image: {
  29154. source: "./media/characters/acidrenamon/rump.svg"
  29155. }
  29156. },
  29157. tail: {
  29158. height: math.unit(4.2, "feet"),
  29159. name: "Tail",
  29160. image: {
  29161. source: "./media/characters/acidrenamon/tail.svg"
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(2, "meters"),
  29169. default: true
  29170. },
  29171. {
  29172. name: "Minimacro",
  29173. height: math.unit(7, "meters")
  29174. },
  29175. {
  29176. name: "Macro",
  29177. height: math.unit(200, "meters")
  29178. },
  29179. {
  29180. name: "Gigamacro",
  29181. height: math.unit(0.2, "earths")
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(152, "feet"),
  29190. name: "Front",
  29191. image: {
  29192. source: "./media/characters/kenzie-lee/front.svg",
  29193. extra: 1869/1774,
  29194. bottom: 128/1997
  29195. }
  29196. },
  29197. side: {
  29198. height: math.unit(86, "feet"),
  29199. name: "Side",
  29200. image: {
  29201. source: "./media/characters/kenzie-lee/side.svg",
  29202. extra: 930/815,
  29203. bottom: 177/1107
  29204. }
  29205. },
  29206. paw: {
  29207. height: math.unit(15, "feet"),
  29208. name: "Paw",
  29209. image: {
  29210. source: "./media/characters/kenzie-lee/paw.svg"
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Kenzie Flea",
  29217. height: math.unit(2, "mm"),
  29218. default: true
  29219. },
  29220. {
  29221. name: "Micro",
  29222. height: math.unit(2, "inches")
  29223. },
  29224. {
  29225. name: "Normal",
  29226. height: math.unit(152, "feet")
  29227. },
  29228. {
  29229. name: "Megamacro",
  29230. height: math.unit(7, "miles")
  29231. },
  29232. {
  29233. name: "Gigamacro",
  29234. height: math.unit(8000, "miles")
  29235. },
  29236. ]
  29237. ))
  29238. characterMakers.push(() => makeCharacter(
  29239. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29240. {
  29241. front: {
  29242. height: math.unit(6, "feet"),
  29243. name: "Front",
  29244. image: {
  29245. source: "./media/characters/withers/front.svg",
  29246. extra: 1935/1760,
  29247. bottom: 72/2007
  29248. }
  29249. },
  29250. back: {
  29251. height: math.unit(6, "feet"),
  29252. name: "Back",
  29253. image: {
  29254. source: "./media/characters/withers/back.svg",
  29255. extra: 1944/1792,
  29256. bottom: 12/1956
  29257. }
  29258. },
  29259. dressed: {
  29260. height: math.unit(6, "feet"),
  29261. name: "Dressed",
  29262. image: {
  29263. source: "./media/characters/withers/dressed.svg",
  29264. extra: 1937/1765,
  29265. bottom: 73/2010
  29266. }
  29267. },
  29268. phase1: {
  29269. height: math.unit(1.1, "feet"),
  29270. name: "Phase 1",
  29271. image: {
  29272. source: "./media/characters/withers/phase-1.svg",
  29273. extra: 1885/1232,
  29274. bottom: 0/1885
  29275. }
  29276. },
  29277. phase2: {
  29278. height: math.unit(1.05, "feet"),
  29279. name: "Phase 2",
  29280. image: {
  29281. source: "./media/characters/withers/phase-2.svg",
  29282. extra: 1792/1090,
  29283. bottom: 0/1792
  29284. }
  29285. },
  29286. partyWipe: {
  29287. height: math.unit(1.1, "feet"),
  29288. name: "Party Wipe",
  29289. image: {
  29290. source: "./media/characters/withers/party-wipe.svg",
  29291. extra: 1864/1207,
  29292. bottom: 0/1864
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Macro",
  29299. height: math.unit(167, "feet"),
  29300. default: true
  29301. },
  29302. {
  29303. name: "Megamacro",
  29304. height: math.unit(15, "miles")
  29305. }
  29306. ]
  29307. ))
  29308. characterMakers.push(() => makeCharacter(
  29309. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29310. {
  29311. front: {
  29312. height: math.unit(6 + 7 / 12, "feet"),
  29313. weight: math.unit(250, "lb"),
  29314. name: "Front",
  29315. image: {
  29316. source: "./media/characters/nemoskii/front.svg",
  29317. extra: 2270 / 1734,
  29318. bottom: 86 / 2354
  29319. }
  29320. },
  29321. back: {
  29322. height: math.unit(6 + 7 / 12, "feet"),
  29323. weight: math.unit(250, "lb"),
  29324. name: "Back",
  29325. image: {
  29326. source: "./media/characters/nemoskii/back.svg",
  29327. extra: 1845 / 1788,
  29328. bottom: 10.5 / 1852
  29329. }
  29330. },
  29331. head: {
  29332. height: math.unit(1.31, "feet"),
  29333. name: "Head",
  29334. image: {
  29335. source: "./media/characters/nemoskii/head.svg"
  29336. }
  29337. },
  29338. },
  29339. [
  29340. {
  29341. name: "Micro",
  29342. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29343. },
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(6 + 7 / 12, "feet"),
  29347. default: true
  29348. },
  29349. {
  29350. name: "Macro",
  29351. height: math.unit((6 + 7 / 12) * 150, "feet")
  29352. },
  29353. {
  29354. name: "Macro+",
  29355. height: math.unit((6 + 7 / 12) * 500, "feet")
  29356. },
  29357. {
  29358. name: "Megamacro",
  29359. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29360. },
  29361. ]
  29362. ))
  29363. characterMakers.push(() => makeCharacter(
  29364. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29365. {
  29366. front: {
  29367. height: math.unit(1, "mile"),
  29368. weight: math.unit(265261.9, "lb"),
  29369. name: "Front",
  29370. image: {
  29371. source: "./media/characters/shui/front.svg",
  29372. extra: 1633 / 1564,
  29373. bottom: 91.5 / 1726
  29374. }
  29375. },
  29376. },
  29377. [
  29378. {
  29379. name: "Macro",
  29380. height: math.unit(1, "mile"),
  29381. default: true
  29382. },
  29383. ]
  29384. ))
  29385. characterMakers.push(() => makeCharacter(
  29386. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29387. {
  29388. front: {
  29389. height: math.unit(12 + 6 / 12, "feet"),
  29390. weight: math.unit(1342, "lb"),
  29391. name: "Front",
  29392. image: {
  29393. source: "./media/characters/arokh-takakura/front.svg",
  29394. extra: 1089 / 1043,
  29395. bottom: 77.4 / 1176.7
  29396. }
  29397. },
  29398. back: {
  29399. height: math.unit(12 + 6 / 12, "feet"),
  29400. weight: math.unit(1342, "lb"),
  29401. name: "Back",
  29402. image: {
  29403. source: "./media/characters/arokh-takakura/back.svg",
  29404. extra: 1046 / 1019,
  29405. bottom: 102 / 1150
  29406. }
  29407. },
  29408. },
  29409. [
  29410. {
  29411. name: "Big",
  29412. height: math.unit(12 + 6 / 12, "feet"),
  29413. default: true
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(5 + 6 / 12, "feet"),
  29422. weight: math.unit(150, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/theo/front.svg",
  29426. extra: 1184 / 1131,
  29427. bottom: 7.4 / 1191
  29428. }
  29429. },
  29430. },
  29431. [
  29432. {
  29433. name: "Micro",
  29434. height: math.unit(5, "inches")
  29435. },
  29436. {
  29437. name: "Normal",
  29438. height: math.unit(5 + 6 / 12, "feet"),
  29439. default: true
  29440. },
  29441. ]
  29442. ))
  29443. characterMakers.push(() => makeCharacter(
  29444. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29445. {
  29446. front: {
  29447. height: math.unit(5 + 9 / 12, "feet"),
  29448. weight: math.unit(130, "lb"),
  29449. name: "Front",
  29450. image: {
  29451. source: "./media/characters/cecelia-swift/front.svg",
  29452. extra: 502 / 484,
  29453. bottom: 23 / 523
  29454. }
  29455. },
  29456. back: {
  29457. height: math.unit(5 + 9 / 12, "feet"),
  29458. weight: math.unit(130, "lb"),
  29459. name: "Back",
  29460. image: {
  29461. source: "./media/characters/cecelia-swift/back.svg",
  29462. extra: 499 / 485,
  29463. bottom: 12 / 511
  29464. }
  29465. },
  29466. head: {
  29467. height: math.unit(0.90, "feet"),
  29468. name: "Head",
  29469. image: {
  29470. source: "./media/characters/cecelia-swift/head.svg"
  29471. }
  29472. },
  29473. rump: {
  29474. height: math.unit(1.75, "feet"),
  29475. name: "Rump",
  29476. image: {
  29477. source: "./media/characters/cecelia-swift/rump.svg"
  29478. }
  29479. },
  29480. },
  29481. [
  29482. {
  29483. name: "Normal",
  29484. height: math.unit(5 + 9 / 12, "feet"),
  29485. default: true
  29486. },
  29487. {
  29488. name: "Big",
  29489. height: math.unit(50, "feet")
  29490. },
  29491. {
  29492. name: "Macro",
  29493. height: math.unit(100, "feet")
  29494. },
  29495. {
  29496. name: "Macro+",
  29497. height: math.unit(500, "feet")
  29498. },
  29499. {
  29500. name: "Macro++",
  29501. height: math.unit(1000, "feet")
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29507. {
  29508. front: {
  29509. height: math.unit(6, "feet"),
  29510. weight: math.unit(150, "lb"),
  29511. name: "Front",
  29512. image: {
  29513. source: "./media/characters/kaunan/front.svg",
  29514. extra: 2890 / 2523,
  29515. bottom: 49 / 2939
  29516. }
  29517. },
  29518. },
  29519. [
  29520. {
  29521. name: "Macro",
  29522. height: math.unit(150, "feet"),
  29523. default: true
  29524. },
  29525. ]
  29526. ))
  29527. characterMakers.push(() => makeCharacter(
  29528. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29529. {
  29530. dressed: {
  29531. height: math.unit(175, "cm"),
  29532. weight: math.unit(60, "kg"),
  29533. name: "Dressed",
  29534. image: {
  29535. source: "./media/characters/fei/dressed.svg",
  29536. extra: 1402/1278,
  29537. bottom: 27/1429
  29538. }
  29539. },
  29540. nude: {
  29541. height: math.unit(175, "cm"),
  29542. weight: math.unit(60, "kg"),
  29543. name: "Nude",
  29544. image: {
  29545. source: "./media/characters/fei/nude.svg",
  29546. extra: 1402/1278,
  29547. bottom: 27/1429
  29548. }
  29549. },
  29550. heels: {
  29551. height: math.unit(0.466, "feet"),
  29552. name: "Heels",
  29553. image: {
  29554. source: "./media/characters/fei/heels.svg",
  29555. extra: 156/152,
  29556. bottom: 28/184
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Mortal",
  29563. height: math.unit(175, "cm")
  29564. },
  29565. {
  29566. name: "Normal",
  29567. height: math.unit(3500, "m")
  29568. },
  29569. {
  29570. name: "Stroll",
  29571. height: math.unit(18.4, "km"),
  29572. default: true
  29573. },
  29574. {
  29575. name: "Showoff",
  29576. height: math.unit(175, "km")
  29577. },
  29578. ]
  29579. ))
  29580. characterMakers.push(() => makeCharacter(
  29581. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29582. {
  29583. front: {
  29584. height: math.unit(7, "feet"),
  29585. weight: math.unit(1000, "kg"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/edrax/front.svg",
  29589. extra: 2838 / 2550,
  29590. bottom: 130 / 2968
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Small",
  29597. height: math.unit(7, "feet")
  29598. },
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(1500, "meters")
  29602. },
  29603. {
  29604. name: "Mega",
  29605. height: math.unit(12000000, "km"),
  29606. default: true
  29607. },
  29608. {
  29609. name: "Megamacro",
  29610. height: math.unit(10600000, "lightyears")
  29611. },
  29612. {
  29613. name: "Hypermacro",
  29614. height: math.unit(256, "yottameters")
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29620. {
  29621. front: {
  29622. height: math.unit(10, "feet"),
  29623. weight: math.unit(750, "lb"),
  29624. name: "Front",
  29625. image: {
  29626. source: "./media/characters/clove/front.svg",
  29627. extra: 1918/1751,
  29628. bottom: 52/1970
  29629. }
  29630. },
  29631. back: {
  29632. height: math.unit(10, "feet"),
  29633. weight: math.unit(750, "lb"),
  29634. name: "Back",
  29635. image: {
  29636. source: "./media/characters/clove/back.svg",
  29637. extra: 1912/1747,
  29638. bottom: 50/1962
  29639. }
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Normal",
  29645. height: math.unit(10, "feet"),
  29646. default: true
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(4, "feet"),
  29655. weight: math.unit(50, "lb"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/alex-rabbit/front.svg",
  29659. extra: 507 / 458,
  29660. bottom: 18.5 / 527
  29661. }
  29662. },
  29663. back: {
  29664. height: math.unit(4, "feet"),
  29665. weight: math.unit(50, "lb"),
  29666. name: "Back",
  29667. image: {
  29668. source: "./media/characters/alex-rabbit/back.svg",
  29669. extra: 502 / 460,
  29670. bottom: 18.9 / 521
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Normal",
  29677. height: math.unit(4, "feet"),
  29678. default: true
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(1 + 3 / 12, "feet"),
  29687. weight: math.unit(80, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/zander-rose/front.svg",
  29691. extra: 916 / 797,
  29692. bottom: 17 / 933
  29693. }
  29694. },
  29695. back: {
  29696. height: math.unit(1 + 3 / 12, "feet"),
  29697. weight: math.unit(80, "lb"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/zander-rose/back.svg",
  29701. extra: 903 / 779,
  29702. bottom: 31 / 934
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Normal",
  29709. height: math.unit(1 + 3 / 12, "feet"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29716. {
  29717. anthro: {
  29718. height: math.unit(6, "feet"),
  29719. weight: math.unit(150, "lb"),
  29720. name: "Anthro",
  29721. image: {
  29722. source: "./media/characters/razz/anthro.svg",
  29723. extra: 1437 / 1343,
  29724. bottom: 48 / 1485
  29725. }
  29726. },
  29727. feral: {
  29728. height: math.unit(6, "feet"),
  29729. weight: math.unit(150, "lb"),
  29730. name: "Feral",
  29731. image: {
  29732. source: "./media/characters/razz/feral.svg",
  29733. extra: 2569 / 1385,
  29734. bottom: 95 / 2664
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(6, "feet"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(9 + 4 / 12, "feet"),
  29751. weight: math.unit(500, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/morrigan/front.svg",
  29755. extra: 2707 / 2579,
  29756. bottom: 156 / 2863
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(9 + 4 / 12, "feet"),
  29764. default: true
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(5, "stories"),
  29773. weight: math.unit(4000, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/jenene/front.svg",
  29777. extra: 1780 / 1710,
  29778. bottom: 57 / 1837
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Normal",
  29785. height: math.unit(5, "stories"),
  29786. default: true
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29792. {
  29793. taurSfw: {
  29794. height: math.unit(10, "meters"),
  29795. weight: math.unit(17500, "kg"),
  29796. name: "Taur",
  29797. image: {
  29798. source: "./media/characters/faey/taur-sfw.svg",
  29799. extra: 1200 / 968,
  29800. bottom: 41 / 1241
  29801. }
  29802. },
  29803. chestmaw: {
  29804. height: math.unit(2.01, "meters"),
  29805. name: "Chestmaw",
  29806. image: {
  29807. source: "./media/characters/faey/chestmaw.svg"
  29808. }
  29809. },
  29810. foot: {
  29811. height: math.unit(2.43, "meters"),
  29812. name: "Foot",
  29813. image: {
  29814. source: "./media/characters/faey/foot.svg"
  29815. }
  29816. },
  29817. jaws: {
  29818. height: math.unit(1.66, "meters"),
  29819. name: "Jaws",
  29820. image: {
  29821. source: "./media/characters/faey/jaws.svg"
  29822. }
  29823. },
  29824. tongues: {
  29825. height: math.unit(2.01, "meters"),
  29826. name: "Tongues",
  29827. image: {
  29828. source: "./media/characters/faey/tongues.svg"
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Small",
  29835. height: math.unit(10, "meters"),
  29836. default: true
  29837. },
  29838. {
  29839. name: "Big",
  29840. height: math.unit(500000, "km")
  29841. },
  29842. ]
  29843. ))
  29844. characterMakers.push(() => makeCharacter(
  29845. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29846. {
  29847. front: {
  29848. height: math.unit(7, "feet"),
  29849. weight: math.unit(275, "lb"),
  29850. name: "Front",
  29851. image: {
  29852. source: "./media/characters/roku/front.svg",
  29853. extra: 903 / 878,
  29854. bottom: 37 / 940
  29855. }
  29856. },
  29857. },
  29858. [
  29859. {
  29860. name: "Normal",
  29861. height: math.unit(7, "feet"),
  29862. default: true
  29863. },
  29864. {
  29865. name: "Macro",
  29866. height: math.unit(500, "feet")
  29867. },
  29868. {
  29869. name: "Megamacro",
  29870. height: math.unit(200, "miles")
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29876. {
  29877. front: {
  29878. height: math.unit(6 + 2 / 12, "feet"),
  29879. weight: math.unit(150, "lb"),
  29880. name: "Front",
  29881. image: {
  29882. source: "./media/characters/lira/front.svg",
  29883. extra: 1727 / 1605,
  29884. bottom: 26 / 1753
  29885. }
  29886. },
  29887. back: {
  29888. height: math.unit(6 + 2 / 12, "feet"),
  29889. weight: math.unit(150, "lb"),
  29890. name: "Back",
  29891. image: {
  29892. source: "./media/characters/lira/back.svg",
  29893. extra: 1713/1621,
  29894. bottom: 20/1733
  29895. }
  29896. },
  29897. hand: {
  29898. height: math.unit(0.75, "feet"),
  29899. name: "Hand",
  29900. image: {
  29901. source: "./media/characters/lira/hand.svg"
  29902. }
  29903. },
  29904. maw: {
  29905. height: math.unit(0.65, "feet"),
  29906. name: "Maw",
  29907. image: {
  29908. source: "./media/characters/lira/maw.svg"
  29909. }
  29910. },
  29911. pawDigi: {
  29912. height: math.unit(1.6, "feet"),
  29913. name: "Paw Digi",
  29914. image: {
  29915. source: "./media/characters/lira/paw-digi.svg"
  29916. }
  29917. },
  29918. pawPlanti: {
  29919. height: math.unit(1.4, "feet"),
  29920. name: "Paw Planti",
  29921. image: {
  29922. source: "./media/characters/lira/paw-planti.svg"
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(6 + 2 / 12, "feet"),
  29930. default: true
  29931. },
  29932. {
  29933. name: "Macro",
  29934. height: math.unit(100, "feet")
  29935. },
  29936. {
  29937. name: "Macro²",
  29938. height: math.unit(1600, "feet")
  29939. },
  29940. {
  29941. name: "Planetary",
  29942. height: math.unit(20, "earths")
  29943. },
  29944. ]
  29945. ))
  29946. characterMakers.push(() => makeCharacter(
  29947. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29948. {
  29949. front: {
  29950. height: math.unit(6, "feet"),
  29951. weight: math.unit(150, "lb"),
  29952. name: "Front",
  29953. image: {
  29954. source: "./media/characters/hadjet/front.svg",
  29955. extra: 1480 / 1346,
  29956. bottom: 26 / 1506
  29957. }
  29958. },
  29959. frontNsfw: {
  29960. height: math.unit(6, "feet"),
  29961. weight: math.unit(150, "lb"),
  29962. name: "Front (NSFW)",
  29963. image: {
  29964. source: "./media/characters/hadjet/front-nsfw.svg",
  29965. extra: 1440 / 1358,
  29966. bottom: 52 / 1492
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Macro",
  29973. height: math.unit(10, "stories"),
  29974. default: true
  29975. },
  29976. {
  29977. name: "Megamacro",
  29978. height: math.unit(1.5, "miles")
  29979. },
  29980. {
  29981. name: "Megamacro+",
  29982. height: math.unit(5, "miles")
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29988. {
  29989. side: {
  29990. height: math.unit(106, "feet"),
  29991. weight: math.unit(500, "tonnes"),
  29992. name: "Side",
  29993. image: {
  29994. source: "./media/characters/kodran/side.svg",
  29995. extra: 553 / 480,
  29996. bottom: 33 / 586
  29997. }
  29998. },
  29999. front: {
  30000. height: math.unit(132, "feet"),
  30001. weight: math.unit(500, "tonnes"),
  30002. name: "Front",
  30003. image: {
  30004. source: "./media/characters/kodran/front.svg",
  30005. extra: 667 / 643,
  30006. bottom: 42 / 709
  30007. }
  30008. },
  30009. flying: {
  30010. height: math.unit(350, "feet"),
  30011. weight: math.unit(500, "tonnes"),
  30012. name: "Flying",
  30013. image: {
  30014. source: "./media/characters/kodran/flying.svg"
  30015. }
  30016. },
  30017. foot: {
  30018. height: math.unit(33, "feet"),
  30019. name: "Foot",
  30020. image: {
  30021. source: "./media/characters/kodran/foot.svg"
  30022. }
  30023. },
  30024. footFront: {
  30025. height: math.unit(19, "feet"),
  30026. name: "Foot (Front)",
  30027. image: {
  30028. source: "./media/characters/kodran/foot-front.svg",
  30029. extra: 261 / 261,
  30030. bottom: 91 / 352
  30031. }
  30032. },
  30033. headFront: {
  30034. height: math.unit(53, "feet"),
  30035. name: "Head (Front)",
  30036. image: {
  30037. source: "./media/characters/kodran/head-front.svg"
  30038. }
  30039. },
  30040. headSide: {
  30041. height: math.unit(65, "feet"),
  30042. name: "Head (Side)",
  30043. image: {
  30044. source: "./media/characters/kodran/head-side.svg"
  30045. }
  30046. },
  30047. throat: {
  30048. height: math.unit(79, "feet"),
  30049. name: "Throat",
  30050. image: {
  30051. source: "./media/characters/kodran/throat.svg"
  30052. }
  30053. },
  30054. },
  30055. [
  30056. {
  30057. name: "Large",
  30058. height: math.unit(106, "feet"),
  30059. default: true
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30065. {
  30066. side: {
  30067. height: math.unit(11, "feet"),
  30068. weight: math.unit(150, "lb"),
  30069. name: "Side",
  30070. image: {
  30071. source: "./media/characters/pyxaron/side.svg",
  30072. extra: 305 / 195,
  30073. bottom: 17 / 322
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Normal",
  30080. height: math.unit(11, "feet"),
  30081. default: true
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(6, "feet"),
  30090. weight: math.unit(150, "lb"),
  30091. name: "Front",
  30092. image: {
  30093. source: "./media/characters/meep/front.svg",
  30094. extra: 88 / 80,
  30095. bottom: 6 / 94
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Fun Sized",
  30102. height: math.unit(2, "inches"),
  30103. default: true
  30104. },
  30105. {
  30106. name: "Friend Sized",
  30107. height: math.unit(8, "inches")
  30108. },
  30109. ]
  30110. ))
  30111. characterMakers.push(() => makeCharacter(
  30112. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30113. {
  30114. front: {
  30115. height: math.unit(15, "feet"),
  30116. weight: math.unit(2500, "lb"),
  30117. name: "Front",
  30118. image: {
  30119. source: "./media/characters/holly-rabbit/front.svg",
  30120. extra: 1433 / 1233,
  30121. bottom: 125 / 1558
  30122. }
  30123. },
  30124. dick: {
  30125. height: math.unit(4.6, "feet"),
  30126. name: "Dick",
  30127. image: {
  30128. source: "./media/characters/holly-rabbit/dick.svg"
  30129. }
  30130. },
  30131. },
  30132. [
  30133. {
  30134. name: "Normal",
  30135. height: math.unit(15, "feet"),
  30136. default: true
  30137. },
  30138. {
  30139. name: "Macro",
  30140. height: math.unit(250, "feet")
  30141. },
  30142. {
  30143. name: "Macro+",
  30144. height: math.unit(2500, "feet")
  30145. },
  30146. ]
  30147. ))
  30148. characterMakers.push(() => makeCharacter(
  30149. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30150. {
  30151. front: {
  30152. height: math.unit(3.02, "meters"),
  30153. weight: math.unit(500, "kg"),
  30154. name: "Front",
  30155. image: {
  30156. source: "./media/characters/drena/front.svg",
  30157. extra: 282 / 243,
  30158. bottom: 8 / 290
  30159. }
  30160. },
  30161. side: {
  30162. height: math.unit(3.02, "meters"),
  30163. weight: math.unit(500, "kg"),
  30164. name: "Side",
  30165. image: {
  30166. source: "./media/characters/drena/side.svg",
  30167. extra: 280 / 245,
  30168. bottom: 10 / 290
  30169. }
  30170. },
  30171. back: {
  30172. height: math.unit(3.02, "meters"),
  30173. weight: math.unit(500, "kg"),
  30174. name: "Back",
  30175. image: {
  30176. source: "./media/characters/drena/back.svg",
  30177. extra: 278 / 243,
  30178. bottom: 2 / 280
  30179. }
  30180. },
  30181. foot: {
  30182. height: math.unit(0.75, "meters"),
  30183. name: "Foot",
  30184. image: {
  30185. source: "./media/characters/drena/foot.svg"
  30186. }
  30187. },
  30188. maw: {
  30189. height: math.unit(0.82, "meters"),
  30190. name: "Maw",
  30191. image: {
  30192. source: "./media/characters/drena/maw.svg"
  30193. }
  30194. },
  30195. eating: {
  30196. height: math.unit(0.75, "meters"),
  30197. name: "Eating",
  30198. image: {
  30199. source: "./media/characters/drena/eating.svg"
  30200. }
  30201. },
  30202. rump: {
  30203. height: math.unit(0.93, "meters"),
  30204. name: "Rump",
  30205. image: {
  30206. source: "./media/characters/drena/rump.svg"
  30207. }
  30208. },
  30209. },
  30210. [
  30211. {
  30212. name: "Normal",
  30213. height: math.unit(3.02, "meters"),
  30214. default: true
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30220. {
  30221. front: {
  30222. height: math.unit(6 + 4 / 12, "feet"),
  30223. weight: math.unit(250, "lb"),
  30224. name: "Front",
  30225. image: {
  30226. source: "./media/characters/remmyzilla/front.svg",
  30227. extra: 4033 / 3588,
  30228. bottom: 123 / 4156
  30229. }
  30230. },
  30231. back: {
  30232. height: math.unit(6 + 4 / 12, "feet"),
  30233. weight: math.unit(250, "lb"),
  30234. name: "Back",
  30235. image: {
  30236. source: "./media/characters/remmyzilla/back.svg",
  30237. extra: 2687 / 2555,
  30238. bottom: 48 / 2735
  30239. }
  30240. },
  30241. paw: {
  30242. height: math.unit(1.73, "feet"),
  30243. name: "Paw",
  30244. image: {
  30245. source: "./media/characters/remmyzilla/paw.svg"
  30246. },
  30247. extraAttributes: {
  30248. "toeSize": {
  30249. name: "Toe Size",
  30250. power: 2,
  30251. type: "area",
  30252. base: math.unit(0.0035, "m^2")
  30253. },
  30254. "padSize": {
  30255. name: "Pad Size",
  30256. power: 2,
  30257. type: "area",
  30258. base: math.unit(0.015, "m^2")
  30259. },
  30260. "pawsize": {
  30261. name: "Paw Size",
  30262. power: 2,
  30263. type: "area",
  30264. base: math.unit(0.072, "m^2")
  30265. },
  30266. }
  30267. },
  30268. maw: {
  30269. height: math.unit(1.73, "feet"),
  30270. name: "Maw",
  30271. image: {
  30272. source: "./media/characters/remmyzilla/maw.svg"
  30273. }
  30274. },
  30275. },
  30276. [
  30277. {
  30278. name: "Normal",
  30279. height: math.unit(6 + 4 / 12, "feet")
  30280. },
  30281. {
  30282. name: "Minimacro",
  30283. height: math.unit(12 + 8 / 12, "feet")
  30284. },
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(640, "feet"),
  30288. default: true
  30289. },
  30290. {
  30291. name: "Megamacro",
  30292. height: math.unit(6400, "feet")
  30293. },
  30294. {
  30295. name: "Gigamacro",
  30296. height: math.unit(64000, "miles")
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(2.5, "meters"),
  30305. weight: math.unit(300, "lb"),
  30306. name: "Front",
  30307. image: {
  30308. source: "./media/characters/lawrence/front.svg",
  30309. extra: 357 / 335,
  30310. bottom: 30 / 387
  30311. }
  30312. },
  30313. back: {
  30314. height: math.unit(2.5, "meters"),
  30315. weight: math.unit(300, "lb"),
  30316. name: "Back",
  30317. image: {
  30318. source: "./media/characters/lawrence/back.svg",
  30319. extra: 357 / 338,
  30320. bottom: 16 / 373
  30321. }
  30322. },
  30323. head: {
  30324. height: math.unit(0.9, "meter"),
  30325. name: "Head",
  30326. image: {
  30327. source: "./media/characters/lawrence/head.svg"
  30328. }
  30329. },
  30330. maw: {
  30331. height: math.unit(0.7, "meter"),
  30332. name: "Maw",
  30333. image: {
  30334. source: "./media/characters/lawrence/maw.svg"
  30335. }
  30336. },
  30337. footBottom: {
  30338. height: math.unit(0.5, "meter"),
  30339. name: "Foot (Bottom)",
  30340. image: {
  30341. source: "./media/characters/lawrence/foot-bottom.svg"
  30342. }
  30343. },
  30344. footTop: {
  30345. height: math.unit(0.5, "meter"),
  30346. name: "Foot (Top)",
  30347. image: {
  30348. source: "./media/characters/lawrence/foot-top.svg"
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Normal",
  30355. height: math.unit(2.5, "meters"),
  30356. default: true
  30357. },
  30358. {
  30359. name: "Macro",
  30360. height: math.unit(95, "meters")
  30361. },
  30362. {
  30363. name: "Megamacro",
  30364. height: math.unit(150, "km")
  30365. },
  30366. ]
  30367. ))
  30368. characterMakers.push(() => makeCharacter(
  30369. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30370. {
  30371. front: {
  30372. height: math.unit(4.2, "meters"),
  30373. name: "Front",
  30374. image: {
  30375. source: "./media/characters/sydney/front.svg",
  30376. extra: 1323 / 1277,
  30377. bottom: 111 / 1434
  30378. }
  30379. },
  30380. },
  30381. [
  30382. {
  30383. name: "Normal",
  30384. height: math.unit(4.2, "meters"),
  30385. default: true
  30386. },
  30387. ]
  30388. ))
  30389. characterMakers.push(() => makeCharacter(
  30390. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30391. {
  30392. back: {
  30393. height: math.unit(201, "feet"),
  30394. name: "Back",
  30395. image: {
  30396. source: "./media/characters/jessica/back.svg",
  30397. extra: 273 / 259,
  30398. bottom: 7 / 280
  30399. }
  30400. },
  30401. },
  30402. [
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(201, "feet"),
  30406. default: true
  30407. },
  30408. {
  30409. name: "Megamacro",
  30410. height: math.unit(8, "miles")
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30416. {
  30417. side: {
  30418. height: math.unit(5.6, "m"),
  30419. weight: math.unit(8000, "kg"),
  30420. name: "Side",
  30421. image: {
  30422. source: "./media/characters/victoria/side.svg",
  30423. extra: 1542/1229,
  30424. bottom: 124/1666
  30425. }
  30426. },
  30427. maw: {
  30428. height: math.unit(7.14, "feet"),
  30429. name: "Maw",
  30430. image: {
  30431. source: "./media/characters/victoria/maw.svg"
  30432. }
  30433. },
  30434. },
  30435. [
  30436. {
  30437. name: "Normal",
  30438. height: math.unit(5.6, "m"),
  30439. default: true
  30440. },
  30441. ]
  30442. ))
  30443. characterMakers.push(() => makeCharacter(
  30444. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30445. {
  30446. front: {
  30447. height: math.unit(5 + 6 / 12, "feet"),
  30448. name: "Front",
  30449. image: {
  30450. source: "./media/characters/cat/front.svg",
  30451. extra: 1449/1295,
  30452. bottom: 34/1483
  30453. },
  30454. form: "cat",
  30455. default: true
  30456. },
  30457. back: {
  30458. height: math.unit(5 + 6 / 12, "feet"),
  30459. name: "Back",
  30460. image: {
  30461. source: "./media/characters/cat/back.svg",
  30462. extra: 1466/1301,
  30463. bottom: 19/1485
  30464. },
  30465. form: "cat"
  30466. },
  30467. taur: {
  30468. height: math.unit(7, "feet"),
  30469. name: "Taur",
  30470. image: {
  30471. source: "./media/characters/cat/taur.svg",
  30472. extra: 1389/1233,
  30473. bottom: 83/1472
  30474. },
  30475. form: "taur",
  30476. default: true
  30477. },
  30478. lucarioFront: {
  30479. height: math.unit(4, "feet"),
  30480. name: "Lucario (Front)",
  30481. image: {
  30482. source: "./media/characters/cat/lucario-front.svg",
  30483. extra: 1149/1019,
  30484. bottom: 84/1233
  30485. },
  30486. form: "lucario",
  30487. default: true
  30488. },
  30489. lucarioBack: {
  30490. height: math.unit(4, "feet"),
  30491. name: "Lucario (Back)",
  30492. image: {
  30493. source: "./media/characters/cat/lucario-back.svg",
  30494. extra: 1190/1059,
  30495. bottom: 33/1223
  30496. },
  30497. form: "lucario"
  30498. },
  30499. megaLucario: {
  30500. height: math.unit(4, "feet"),
  30501. name: "Mega Lucario",
  30502. image: {
  30503. source: "./media/characters/cat/mega-lucario.svg",
  30504. extra: 1515 / 1319,
  30505. bottom: 63 / 1578
  30506. },
  30507. form: "lucario"
  30508. },
  30509. nickit: {
  30510. height: math.unit(2, "feet"),
  30511. name: "Nickit",
  30512. image: {
  30513. source: "./media/characters/cat/nickit.svg",
  30514. extra: 1980 / 1585,
  30515. bottom: 102 / 2082
  30516. },
  30517. form: "nickit",
  30518. default: true
  30519. },
  30520. lopunnyFront: {
  30521. height: math.unit(5, "feet"),
  30522. name: "Lopunny (Front)",
  30523. image: {
  30524. source: "./media/characters/cat/lopunny-front.svg",
  30525. extra: 1782 / 1469,
  30526. bottom: 38 / 1820
  30527. },
  30528. form: "lopunny",
  30529. default: true
  30530. },
  30531. lopunnyBack: {
  30532. height: math.unit(5, "feet"),
  30533. name: "Lopunny (Back)",
  30534. image: {
  30535. source: "./media/characters/cat/lopunny-back.svg",
  30536. extra: 1660 / 1490,
  30537. bottom: 25 / 1685
  30538. },
  30539. form: "lopunny"
  30540. },
  30541. },
  30542. [
  30543. {
  30544. name: "Really small",
  30545. height: math.unit(1, "nm")
  30546. },
  30547. {
  30548. name: "Micro",
  30549. height: math.unit(5, "inches")
  30550. },
  30551. {
  30552. name: "Normal",
  30553. height: math.unit(5 + 6 / 12, "feet"),
  30554. default: true
  30555. },
  30556. {
  30557. name: "Macro",
  30558. height: math.unit(50, "feet")
  30559. },
  30560. {
  30561. name: "Macro+",
  30562. height: math.unit(150, "feet")
  30563. },
  30564. {
  30565. name: "Megamacro",
  30566. height: math.unit(100, "miles")
  30567. },
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30572. {
  30573. front: {
  30574. height: math.unit(63.4, "meters"),
  30575. weight: math.unit(3.28349e+6, "kilograms"),
  30576. name: "Front",
  30577. image: {
  30578. source: "./media/characters/kirina-violet/front.svg",
  30579. extra: 2812 / 2725,
  30580. bottom: 0 / 2812
  30581. }
  30582. },
  30583. back: {
  30584. height: math.unit(63.4, "meters"),
  30585. weight: math.unit(3.28349e+6, "kilograms"),
  30586. name: "Back",
  30587. image: {
  30588. source: "./media/characters/kirina-violet/back.svg",
  30589. extra: 2812 / 2725,
  30590. bottom: 0 / 2812
  30591. }
  30592. },
  30593. mouth: {
  30594. height: math.unit(4.35, "meters"),
  30595. name: "Mouth",
  30596. image: {
  30597. source: "./media/characters/kirina-violet/mouth.svg"
  30598. }
  30599. },
  30600. paw: {
  30601. height: math.unit(5.6, "meters"),
  30602. name: "Paw",
  30603. image: {
  30604. source: "./media/characters/kirina-violet/paw.svg"
  30605. }
  30606. },
  30607. tail: {
  30608. height: math.unit(18, "meters"),
  30609. name: "Tail",
  30610. image: {
  30611. source: "./media/characters/kirina-violet/tail.svg"
  30612. }
  30613. },
  30614. },
  30615. [
  30616. {
  30617. name: "Macro",
  30618. height: math.unit(63.4, "meters"),
  30619. default: true
  30620. },
  30621. ]
  30622. ))
  30623. characterMakers.push(() => makeCharacter(
  30624. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30625. {
  30626. front: {
  30627. height: math.unit(75, "feet"),
  30628. name: "Front",
  30629. image: {
  30630. source: "./media/characters/cat-gigachu/front.svg",
  30631. extra: 1239/1027,
  30632. bottom: 32/1271
  30633. }
  30634. },
  30635. back: {
  30636. height: math.unit(75, "feet"),
  30637. name: "Back",
  30638. image: {
  30639. source: "./media/characters/cat-gigachu/back.svg",
  30640. extra: 1229/1030,
  30641. bottom: 9/1238
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Dynamax",
  30648. height: math.unit(75, "feet"),
  30649. default: true
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30655. {
  30656. front: {
  30657. height: math.unit(6, "feet"),
  30658. weight: math.unit(150, "lb"),
  30659. name: "Front",
  30660. image: {
  30661. source: "./media/characters/sfaiyan/front.svg",
  30662. extra: 999 / 978,
  30663. bottom: 5 / 1004
  30664. }
  30665. },
  30666. },
  30667. [
  30668. {
  30669. name: "Normal",
  30670. height: math.unit(1.82, "meters")
  30671. },
  30672. {
  30673. name: "Giant",
  30674. height: math.unit(2.27, "km"),
  30675. default: true
  30676. },
  30677. ]
  30678. ))
  30679. characterMakers.push(() => makeCharacter(
  30680. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30681. {
  30682. front: {
  30683. height: math.unit(179, "cm"),
  30684. weight: math.unit(100, "kg"),
  30685. name: "Front",
  30686. image: {
  30687. source: "./media/characters/raunehkeli/front.svg",
  30688. extra: 1934 / 1926,
  30689. bottom: 0 / 1934
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Normal",
  30696. height: math.unit(179, "cm")
  30697. },
  30698. {
  30699. name: "Maximum",
  30700. height: math.unit(575, "meters"),
  30701. default: true
  30702. },
  30703. ]
  30704. ))
  30705. characterMakers.push(() => makeCharacter(
  30706. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30707. {
  30708. front: {
  30709. height: math.unit(6, "feet"),
  30710. weight: math.unit(150, "lb"),
  30711. name: "Front",
  30712. image: {
  30713. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30714. extra: 2625 / 2518,
  30715. bottom: 60 / 2685
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(6 + 2 / 12, "feet")
  30723. },
  30724. {
  30725. name: "Macro",
  30726. height: math.unit(1180, "feet"),
  30727. default: true
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30733. {
  30734. front: {
  30735. height: math.unit(5 + 6 / 12, "feet"),
  30736. weight: math.unit(108, "lb"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/lilith-zott/front.svg",
  30740. extra: 2510 / 2238,
  30741. bottom: 100 / 2610
  30742. }
  30743. },
  30744. frontDressed: {
  30745. height: math.unit(5 + 6 / 12, "feet"),
  30746. weight: math.unit(108, "lb"),
  30747. name: "Front (Dressed)",
  30748. image: {
  30749. source: "./media/characters/lilith-zott/front-dressed.svg",
  30750. extra: 2510 / 2238,
  30751. bottom: 100 / 2610
  30752. }
  30753. },
  30754. },
  30755. [
  30756. {
  30757. name: "Normal",
  30758. height: math.unit(5 + 6 / 12, "feet")
  30759. },
  30760. {
  30761. name: "Macro",
  30762. height: math.unit(1030, "feet"),
  30763. default: true
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30769. {
  30770. front: {
  30771. height: math.unit(6, "feet"),
  30772. weight: math.unit(150, "lb"),
  30773. name: "Front",
  30774. image: {
  30775. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30776. extra: 2567 / 2435,
  30777. bottom: 39 / 2606
  30778. }
  30779. },
  30780. frontSuper: {
  30781. height: math.unit(6, "feet"),
  30782. name: "Front (Super)",
  30783. image: {
  30784. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30785. extra: 2567 / 2435,
  30786. bottom: 39 / 2606
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Normal",
  30793. height: math.unit(5 + 10 / 12, "feet")
  30794. },
  30795. {
  30796. name: "Macro",
  30797. height: math.unit(1100, "feet"),
  30798. default: true
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30804. {
  30805. front: {
  30806. height: math.unit(100, "miles"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/sona/front.svg",
  30810. extra: 2433 / 2201,
  30811. bottom: 53 / 2486
  30812. }
  30813. },
  30814. foot: {
  30815. height: math.unit(16.1, "miles"),
  30816. name: "Foot",
  30817. image: {
  30818. source: "./media/characters/sona/foot.svg"
  30819. }
  30820. },
  30821. },
  30822. [
  30823. {
  30824. name: "Macro",
  30825. height: math.unit(100, "miles"),
  30826. default: true
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30832. {
  30833. front: {
  30834. height: math.unit(6, "feet"),
  30835. weight: math.unit(150, "lb"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/bailey/front.svg",
  30839. extra: 1778 / 1724,
  30840. bottom: 30 / 1808
  30841. }
  30842. },
  30843. },
  30844. [
  30845. {
  30846. name: "Micro",
  30847. height: math.unit(4, "inches")
  30848. },
  30849. {
  30850. name: "Normal",
  30851. height: math.unit(5 + 5 / 12, "feet"),
  30852. default: true
  30853. },
  30854. {
  30855. name: "Macro",
  30856. height: math.unit(250, "feet")
  30857. },
  30858. {
  30859. name: "Megamacro",
  30860. height: math.unit(100, "miles")
  30861. },
  30862. ]
  30863. ))
  30864. characterMakers.push(() => makeCharacter(
  30865. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30866. {
  30867. front: {
  30868. height: math.unit(5 + 2 / 12, "feet"),
  30869. weight: math.unit(120, "lb"),
  30870. name: "Front",
  30871. image: {
  30872. source: "./media/characters/snaps/front.svg",
  30873. extra: 2370 / 2177,
  30874. bottom: 48 / 2418
  30875. }
  30876. },
  30877. back: {
  30878. height: math.unit(5 + 2 / 12, "feet"),
  30879. weight: math.unit(120, "lb"),
  30880. name: "Back",
  30881. image: {
  30882. source: "./media/characters/snaps/back.svg",
  30883. extra: 2408 / 2258,
  30884. bottom: 15 / 2423
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Micro",
  30891. height: math.unit(9, "inches")
  30892. },
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(5 + 2 / 12, "feet"),
  30896. default: true
  30897. },
  30898. {
  30899. name: "Mini Macro",
  30900. height: math.unit(10, "feet")
  30901. },
  30902. ]
  30903. ))
  30904. characterMakers.push(() => makeCharacter(
  30905. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30906. {
  30907. front: {
  30908. height: math.unit(1.8, "meters"),
  30909. weight: math.unit(85, "kg"),
  30910. name: "Front",
  30911. image: {
  30912. source: "./media/characters/azteck/front.svg",
  30913. extra: 2815 / 2625,
  30914. bottom: 89 / 2904
  30915. }
  30916. },
  30917. back: {
  30918. height: math.unit(1.8, "meters"),
  30919. weight: math.unit(85, "kg"),
  30920. name: "Back",
  30921. image: {
  30922. source: "./media/characters/azteck/back.svg",
  30923. extra: 2856 / 2648,
  30924. bottom: 85 / 2941
  30925. }
  30926. },
  30927. frontDressed: {
  30928. height: math.unit(1.8, "meters"),
  30929. weight: math.unit(85, "kg"),
  30930. name: "Front (Dressed)",
  30931. image: {
  30932. source: "./media/characters/azteck/front-dressed.svg",
  30933. extra: 2147 / 2003,
  30934. bottom: 68 / 2215
  30935. }
  30936. },
  30937. head: {
  30938. height: math.unit(0.47, "meters"),
  30939. weight: math.unit(85, "kg"),
  30940. name: "Head",
  30941. image: {
  30942. source: "./media/characters/azteck/head.svg"
  30943. }
  30944. },
  30945. },
  30946. [
  30947. {
  30948. name: "Bite sized",
  30949. height: math.unit(16, "cm")
  30950. },
  30951. {
  30952. name: "Normal",
  30953. height: math.unit(1.8, "meters"),
  30954. default: true
  30955. },
  30956. ]
  30957. ))
  30958. characterMakers.push(() => makeCharacter(
  30959. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30960. {
  30961. front: {
  30962. height: math.unit(6, "feet"),
  30963. weight: math.unit(150, "lb"),
  30964. name: "Front",
  30965. image: {
  30966. source: "./media/characters/pidge/front.svg",
  30967. extra: 1936/1820,
  30968. bottom: 0/1936
  30969. }
  30970. },
  30971. back: {
  30972. height: math.unit(6, "feet"),
  30973. weight: math.unit(150, "lb"),
  30974. name: "Back",
  30975. image: {
  30976. source: "./media/characters/pidge/back.svg",
  30977. extra: 1938/1843,
  30978. bottom: 0/1938
  30979. }
  30980. },
  30981. casual: {
  30982. height: math.unit(6, "feet"),
  30983. weight: math.unit(150, "lb"),
  30984. name: "Casual",
  30985. image: {
  30986. source: "./media/characters/pidge/casual.svg",
  30987. extra: 1936/1820,
  30988. bottom: 0/1936
  30989. }
  30990. },
  30991. tech: {
  30992. height: math.unit(6, "feet"),
  30993. weight: math.unit(150, "lb"),
  30994. name: "Tech",
  30995. image: {
  30996. source: "./media/characters/pidge/tech.svg",
  30997. extra: 1802/1682,
  30998. bottom: 0/1802
  30999. }
  31000. },
  31001. head: {
  31002. height: math.unit(1.61, "feet"),
  31003. name: "Head",
  31004. image: {
  31005. source: "./media/characters/pidge/head.svg"
  31006. }
  31007. },
  31008. collar: {
  31009. height: math.unit(0.82, "feet"),
  31010. name: "Collar",
  31011. image: {
  31012. source: "./media/characters/pidge/collar.svg"
  31013. }
  31014. },
  31015. },
  31016. [
  31017. {
  31018. name: "Macro",
  31019. height: math.unit(2, "mile"),
  31020. default: true
  31021. },
  31022. {
  31023. name: "PUPPY",
  31024. height: math.unit(20, "miles")
  31025. },
  31026. ]
  31027. ))
  31028. characterMakers.push(() => makeCharacter(
  31029. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31030. {
  31031. front: {
  31032. height: math.unit(6, "feet"),
  31033. weight: math.unit(150, "lb"),
  31034. name: "Front",
  31035. image: {
  31036. source: "./media/characters/en/front.svg",
  31037. extra: 1697 / 1563,
  31038. bottom: 103 / 1800
  31039. }
  31040. },
  31041. back: {
  31042. height: math.unit(6, "feet"),
  31043. weight: math.unit(150, "lb"),
  31044. name: "Back",
  31045. image: {
  31046. source: "./media/characters/en/back.svg",
  31047. extra: 1700 / 1570,
  31048. bottom: 51 / 1751
  31049. }
  31050. },
  31051. frontDressed: {
  31052. height: math.unit(6, "feet"),
  31053. weight: math.unit(150, "lb"),
  31054. name: "Front (Dressed)",
  31055. image: {
  31056. source: "./media/characters/en/front-dressed.svg",
  31057. extra: 1697 / 1563,
  31058. bottom: 103 / 1800
  31059. }
  31060. },
  31061. backDressed: {
  31062. height: math.unit(6, "feet"),
  31063. weight: math.unit(150, "lb"),
  31064. name: "Back (Dressed)",
  31065. image: {
  31066. source: "./media/characters/en/back-dressed.svg",
  31067. extra: 1700 / 1570,
  31068. bottom: 51 / 1751
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Macro",
  31075. height: math.unit(210, "feet"),
  31076. default: true
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31082. {
  31083. front: {
  31084. height: math.unit(6, "feet"),
  31085. weight: math.unit(150, "lb"),
  31086. name: "Front",
  31087. image: {
  31088. source: "./media/characters/haze-orris/front.svg",
  31089. extra: 3975 / 3525,
  31090. bottom: 137 / 4112
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Micro",
  31097. height: math.unit(150, "mm"),
  31098. default: true
  31099. },
  31100. ]
  31101. ))
  31102. characterMakers.push(() => makeCharacter(
  31103. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31104. {
  31105. front: {
  31106. height: math.unit(6, "feet"),
  31107. weight: math.unit(150, "lb"),
  31108. name: "Front",
  31109. image: {
  31110. source: "./media/characters/casselene-yaro/front.svg",
  31111. extra: 4721 / 4541,
  31112. bottom: 82 / 4803
  31113. }
  31114. },
  31115. back: {
  31116. height: math.unit(6, "feet"),
  31117. weight: math.unit(150, "lb"),
  31118. name: "Back",
  31119. image: {
  31120. source: "./media/characters/casselene-yaro/back.svg",
  31121. extra: 4569 / 4377,
  31122. bottom: 69 / 4638
  31123. }
  31124. },
  31125. dressed: {
  31126. height: math.unit(6, "feet"),
  31127. weight: math.unit(150, "lb"),
  31128. name: "Dressed",
  31129. image: {
  31130. source: "./media/characters/casselene-yaro/dressed.svg",
  31131. extra: 4721 / 4541,
  31132. bottom: 82 / 4803
  31133. }
  31134. },
  31135. maw: {
  31136. height: math.unit(1, "feet"),
  31137. name: "Maw",
  31138. image: {
  31139. source: "./media/characters/casselene-yaro/maw.svg"
  31140. }
  31141. },
  31142. },
  31143. [
  31144. {
  31145. name: "Macro",
  31146. height: math.unit(190, "feet"),
  31147. default: true
  31148. },
  31149. ]
  31150. ))
  31151. characterMakers.push(() => makeCharacter(
  31152. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31153. {
  31154. front: {
  31155. height: math.unit(10, "feet"),
  31156. weight: math.unit(15015, "lb"),
  31157. name: "Front",
  31158. image: {
  31159. source: "./media/characters/platine/front.svg",
  31160. extra: 1741/1650,
  31161. bottom: 84/1825
  31162. }
  31163. },
  31164. side: {
  31165. height: math.unit(10, "feet"),
  31166. weight: math.unit(15015, "lb"),
  31167. name: "Side",
  31168. image: {
  31169. source: "./media/characters/platine/side.svg",
  31170. extra: 1790/1705,
  31171. bottom: 29/1819
  31172. }
  31173. },
  31174. },
  31175. [
  31176. {
  31177. name: "Normal",
  31178. height: math.unit(10, "feet"),
  31179. default: true
  31180. },
  31181. {
  31182. name: "Macro",
  31183. height: math.unit(100, "feet")
  31184. },
  31185. {
  31186. name: "Megamacro",
  31187. height: math.unit(1000, "feet")
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(15 + 5 / 12, "feet"),
  31196. weight: math.unit(4600, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/neapolitan-ananassa/front.svg",
  31200. extra: 2903 / 2736,
  31201. bottom: 0 / 2903
  31202. }
  31203. },
  31204. side: {
  31205. height: math.unit(15 + 5 / 12, "feet"),
  31206. weight: math.unit(4600, "lb"),
  31207. name: "Side",
  31208. image: {
  31209. source: "./media/characters/neapolitan-ananassa/side.svg",
  31210. extra: 2925 / 2719,
  31211. bottom: 0 / 2925
  31212. }
  31213. },
  31214. back: {
  31215. height: math.unit(15 + 5 / 12, "feet"),
  31216. weight: math.unit(4600, "lb"),
  31217. name: "Back",
  31218. image: {
  31219. source: "./media/characters/neapolitan-ananassa/back.svg",
  31220. extra: 2903 / 2736,
  31221. bottom: 0 / 2903
  31222. }
  31223. },
  31224. },
  31225. [
  31226. {
  31227. name: "Normal",
  31228. height: math.unit(15 + 5 / 12, "feet"),
  31229. default: true
  31230. },
  31231. {
  31232. name: "Post-Millenium",
  31233. height: math.unit(35 + 5 / 12, "feet")
  31234. },
  31235. {
  31236. name: "Post-Era",
  31237. height: math.unit(450 + 5 / 12, "feet")
  31238. },
  31239. ]
  31240. ))
  31241. characterMakers.push(() => makeCharacter(
  31242. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31243. {
  31244. front: {
  31245. height: math.unit(300, "meters"),
  31246. weight: math.unit(125000, "tonnes"),
  31247. name: "Front",
  31248. image: {
  31249. source: "./media/characters/pazuzu/front.svg",
  31250. extra: 877 / 794,
  31251. bottom: 47 / 924
  31252. }
  31253. },
  31254. },
  31255. [
  31256. {
  31257. name: "Macro",
  31258. height: math.unit(300, "meters"),
  31259. default: true
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31265. {
  31266. side: {
  31267. height: math.unit(10 + 7 / 12, "feet"),
  31268. weight: math.unit(2.5, "tons"),
  31269. name: "Side",
  31270. image: {
  31271. source: "./media/characters/aasha/side.svg",
  31272. extra: 1345 / 1245,
  31273. bottom: 111 / 1456
  31274. }
  31275. },
  31276. back: {
  31277. height: math.unit(10 + 7 / 12, "feet"),
  31278. weight: math.unit(2.5, "tons"),
  31279. name: "Back",
  31280. image: {
  31281. source: "./media/characters/aasha/back.svg",
  31282. extra: 1133 / 1057,
  31283. bottom: 257 / 1390
  31284. }
  31285. },
  31286. },
  31287. [
  31288. {
  31289. name: "Normal",
  31290. height: math.unit(10 + 7 / 12, "feet"),
  31291. default: true
  31292. },
  31293. ]
  31294. ))
  31295. characterMakers.push(() => makeCharacter(
  31296. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31297. {
  31298. front: {
  31299. height: math.unit(6 + 3 / 12, "feet"),
  31300. name: "Front",
  31301. image: {
  31302. source: "./media/characters/nevan/front.svg",
  31303. extra: 704 / 704,
  31304. bottom: 28 / 732
  31305. }
  31306. },
  31307. back: {
  31308. height: math.unit(6 + 3 / 12, "feet"),
  31309. name: "Back",
  31310. image: {
  31311. source: "./media/characters/nevan/back.svg",
  31312. extra: 714 / 714,
  31313. bottom: 21 / 735
  31314. }
  31315. },
  31316. frontFlaccid: {
  31317. height: math.unit(6 + 3 / 12, "feet"),
  31318. name: "Front (Flaccid)",
  31319. image: {
  31320. source: "./media/characters/nevan/front-flaccid.svg",
  31321. extra: 704 / 704,
  31322. bottom: 28 / 732
  31323. }
  31324. },
  31325. frontErect: {
  31326. height: math.unit(6 + 3 / 12, "feet"),
  31327. name: "Front (Erect)",
  31328. image: {
  31329. source: "./media/characters/nevan/front-erect.svg",
  31330. extra: 704 / 704,
  31331. bottom: 28 / 732
  31332. }
  31333. },
  31334. backFlaccid: {
  31335. height: math.unit(6 + 3 / 12, "feet"),
  31336. name: "Back (Flaccid)",
  31337. image: {
  31338. source: "./media/characters/nevan/back-flaccid.svg",
  31339. extra: 714 / 714,
  31340. bottom: 21 / 735
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Normal",
  31347. height: math.unit(6 + 3 / 12, "feet"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(4, "feet"),
  31357. name: "Front",
  31358. image: {
  31359. source: "./media/characters/arhan/front.svg",
  31360. extra: 3368 / 3133,
  31361. bottom: 0 / 3368
  31362. }
  31363. },
  31364. side: {
  31365. height: math.unit(4, "feet"),
  31366. name: "Side",
  31367. image: {
  31368. source: "./media/characters/arhan/side.svg",
  31369. extra: 3347 / 3105,
  31370. bottom: 0 / 3347
  31371. }
  31372. },
  31373. tongue: {
  31374. height: math.unit(1.42, "feet"),
  31375. name: "Tongue",
  31376. image: {
  31377. source: "./media/characters/arhan/tongue.svg"
  31378. }
  31379. },
  31380. head: {
  31381. height: math.unit(0.85, "feet"),
  31382. name: "Head",
  31383. image: {
  31384. source: "./media/characters/arhan/head.svg"
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(4, "feet"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31398. {
  31399. front: {
  31400. height: math.unit(5 + 7.5 / 12, "feet"),
  31401. weight: math.unit(120, "lb"),
  31402. name: "Front",
  31403. image: {
  31404. source: "./media/characters/digi-duncan/front.svg",
  31405. extra: 330 / 326,
  31406. bottom: 16 / 346
  31407. }
  31408. },
  31409. side: {
  31410. height: math.unit(5 + 7.5 / 12, "feet"),
  31411. weight: math.unit(120, "lb"),
  31412. name: "Side",
  31413. image: {
  31414. source: "./media/characters/digi-duncan/side.svg",
  31415. extra: 341 / 337,
  31416. bottom: 1 / 342
  31417. }
  31418. },
  31419. back: {
  31420. height: math.unit(5 + 7.5 / 12, "feet"),
  31421. weight: math.unit(120, "lb"),
  31422. name: "Back",
  31423. image: {
  31424. source: "./media/characters/digi-duncan/back.svg",
  31425. extra: 330 / 326,
  31426. bottom: 12 / 342
  31427. }
  31428. },
  31429. },
  31430. [
  31431. {
  31432. name: "Speck",
  31433. height: math.unit(0.25, "mm")
  31434. },
  31435. {
  31436. name: "Micro",
  31437. height: math.unit(5, "mm")
  31438. },
  31439. {
  31440. name: "Tiny",
  31441. height: math.unit(0.5, "inches"),
  31442. default: true
  31443. },
  31444. {
  31445. name: "Human",
  31446. height: math.unit(5 + 7.5 / 12, "feet")
  31447. },
  31448. {
  31449. name: "Minigiant",
  31450. height: math.unit(8 + 5.25, "feet")
  31451. },
  31452. {
  31453. name: "Giant",
  31454. height: math.unit(2000, "feet")
  31455. },
  31456. {
  31457. name: "Mega",
  31458. height: math.unit(371.1, "miles")
  31459. },
  31460. ]
  31461. ))
  31462. characterMakers.push(() => makeCharacter(
  31463. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31464. {
  31465. front: {
  31466. height: math.unit(2, "meters"),
  31467. weight: math.unit(350, "kg"),
  31468. name: "Front",
  31469. image: {
  31470. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31471. extra: 898 / 838,
  31472. bottom: 9 / 907
  31473. }
  31474. },
  31475. },
  31476. [
  31477. {
  31478. name: "Micro",
  31479. height: math.unit(8, "meters")
  31480. },
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(50, "meters"),
  31484. default: true
  31485. },
  31486. {
  31487. name: "Macro",
  31488. height: math.unit(500, "meters")
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(6 + 6 / 12, "feet"),
  31497. name: "Front",
  31498. image: {
  31499. source: "./media/characters/khardesh/front.svg",
  31500. extra: 1788/1596,
  31501. bottom: 66/1854
  31502. }
  31503. },
  31504. back: {
  31505. height: math.unit(6 + 6 / 12, "feet"),
  31506. name: "Back",
  31507. image: {
  31508. source: "./media/characters/khardesh/back.svg",
  31509. extra: 1781/1584,
  31510. bottom: 68/1849
  31511. }
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Normal",
  31517. height: math.unit(6 + 6 / 12, "feet"),
  31518. default: true
  31519. },
  31520. {
  31521. name: "Normal+",
  31522. height: math.unit(4, "meters")
  31523. },
  31524. {
  31525. name: "Macro",
  31526. height: math.unit(50, "meters")
  31527. },
  31528. {
  31529. name: "Macro+",
  31530. height: math.unit(100, "meters")
  31531. },
  31532. {
  31533. name: "Megamacro",
  31534. height: math.unit(20, "km")
  31535. },
  31536. ]
  31537. ))
  31538. characterMakers.push(() => makeCharacter(
  31539. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31540. {
  31541. front: {
  31542. height: math.unit(6, "feet"),
  31543. weight: math.unit(150, "lb"),
  31544. name: "Front",
  31545. image: {
  31546. source: "./media/characters/kosho/front.svg",
  31547. extra: 1847 / 1847,
  31548. bottom: 86 / 1933
  31549. }
  31550. },
  31551. },
  31552. [
  31553. {
  31554. name: "Second-stage micro",
  31555. height: math.unit(0.5, "inches")
  31556. },
  31557. {
  31558. name: "First-stage micro",
  31559. height: math.unit(6, "inches")
  31560. },
  31561. {
  31562. name: "Normal",
  31563. height: math.unit(6, "feet"),
  31564. default: true
  31565. },
  31566. {
  31567. name: "First-stage macro",
  31568. height: math.unit(72, "feet")
  31569. },
  31570. {
  31571. name: "Second-stage macro",
  31572. height: math.unit(864, "feet")
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31578. {
  31579. normal: {
  31580. height: math.unit(4 + 6 / 12, "feet"),
  31581. name: "Normal",
  31582. image: {
  31583. source: "./media/characters/hydra/normal.svg",
  31584. extra: 2833 / 2634,
  31585. bottom: 68 / 2901
  31586. }
  31587. },
  31588. smol: {
  31589. height: math.unit(0.705, "inches"),
  31590. name: "Smol",
  31591. image: {
  31592. source: "./media/characters/hydra/smol.svg",
  31593. extra: 2715 / 2540,
  31594. bottom: 0 / 2715
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Normal",
  31601. height: math.unit(4 + 6 / 12, "feet"),
  31602. default: true
  31603. }
  31604. ]
  31605. ))
  31606. characterMakers.push(() => makeCharacter(
  31607. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31608. {
  31609. front: {
  31610. height: math.unit(0.6, "cm"),
  31611. name: "Front",
  31612. image: {
  31613. source: "./media/characters/daz/front.svg",
  31614. extra: 1682 / 1164,
  31615. bottom: 42 / 1724
  31616. }
  31617. },
  31618. },
  31619. [
  31620. {
  31621. name: "Normal",
  31622. height: math.unit(0.6, "cm"),
  31623. default: true
  31624. },
  31625. ]
  31626. ))
  31627. characterMakers.push(() => makeCharacter(
  31628. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31629. {
  31630. front: {
  31631. height: math.unit(6, "feet"),
  31632. weight: math.unit(235, "lb"),
  31633. name: "Front",
  31634. image: {
  31635. source: "./media/characters/theo-pangolin/front.svg",
  31636. extra: 1996 / 1969,
  31637. bottom: 115 / 2111
  31638. }
  31639. },
  31640. back: {
  31641. height: math.unit(6, "feet"),
  31642. weight: math.unit(235, "lb"),
  31643. name: "Back",
  31644. image: {
  31645. source: "./media/characters/theo-pangolin/back.svg",
  31646. extra: 1979 / 1979,
  31647. bottom: 40 / 2019
  31648. }
  31649. },
  31650. feral: {
  31651. height: math.unit(2, "feet"),
  31652. weight: math.unit(30, "lb"),
  31653. name: "Feral",
  31654. image: {
  31655. source: "./media/characters/theo-pangolin/feral.svg",
  31656. extra: 803 / 791,
  31657. bottom: 181 / 984
  31658. }
  31659. },
  31660. footFive: {
  31661. height: math.unit(1.43, "feet"),
  31662. name: "Foot (Five Toes)",
  31663. image: {
  31664. source: "./media/characters/theo-pangolin/foot-five.svg"
  31665. }
  31666. },
  31667. footFour: {
  31668. height: math.unit(1.43, "feet"),
  31669. name: "Foot (Four Toes)",
  31670. image: {
  31671. source: "./media/characters/theo-pangolin/foot-four.svg"
  31672. }
  31673. },
  31674. handFour: {
  31675. height: math.unit(0.81, "feet"),
  31676. name: "Hand (Four Fingers)",
  31677. image: {
  31678. source: "./media/characters/theo-pangolin/hand-four.svg"
  31679. }
  31680. },
  31681. handThree: {
  31682. height: math.unit(0.81, "feet"),
  31683. name: "Hand (Three Fingers)",
  31684. image: {
  31685. source: "./media/characters/theo-pangolin/hand-three.svg"
  31686. }
  31687. },
  31688. headFront: {
  31689. height: math.unit(1.37, "feet"),
  31690. name: "Head (Front)",
  31691. image: {
  31692. source: "./media/characters/theo-pangolin/head-front.svg"
  31693. }
  31694. },
  31695. headSide: {
  31696. height: math.unit(1.43, "feet"),
  31697. name: "Head (Side)",
  31698. image: {
  31699. source: "./media/characters/theo-pangolin/head-side.svg"
  31700. }
  31701. },
  31702. tongue: {
  31703. height: math.unit(2.29, "feet"),
  31704. name: "Tongue",
  31705. image: {
  31706. source: "./media/characters/theo-pangolin/tongue.svg"
  31707. }
  31708. },
  31709. },
  31710. [
  31711. {
  31712. name: "Normal",
  31713. height: math.unit(6, "feet")
  31714. },
  31715. {
  31716. name: "Macro",
  31717. height: math.unit(400, "feet"),
  31718. default: true
  31719. },
  31720. ]
  31721. ))
  31722. characterMakers.push(() => makeCharacter(
  31723. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31724. {
  31725. front: {
  31726. height: math.unit(6, "inches"),
  31727. weight: math.unit(0.036, "kg"),
  31728. name: "Front",
  31729. image: {
  31730. source: "./media/characters/renée/front.svg",
  31731. extra: 900 / 886,
  31732. bottom: 8 / 908
  31733. }
  31734. },
  31735. },
  31736. [
  31737. {
  31738. name: "Nano",
  31739. height: math.unit(1, "nm")
  31740. },
  31741. {
  31742. name: "Micro",
  31743. height: math.unit(1, "mm")
  31744. },
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(6, "inches")
  31748. },
  31749. {
  31750. name: "Macro",
  31751. height: math.unit(2000, "feet"),
  31752. default: true
  31753. },
  31754. {
  31755. name: "Megamacro",
  31756. height: math.unit(2, "km")
  31757. },
  31758. {
  31759. name: "Gigamacro",
  31760. height: math.unit(2000, "km")
  31761. },
  31762. {
  31763. name: "Teramacro",
  31764. height: math.unit(250000, "km")
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31770. {
  31771. front: {
  31772. height: math.unit(4, "meters"),
  31773. weight: math.unit(150, "kg"),
  31774. name: "Front",
  31775. image: {
  31776. source: "./media/characters/caledvwlch/front.svg",
  31777. extra: 1760 / 1551,
  31778. bottom: 28 / 1788
  31779. }
  31780. },
  31781. side: {
  31782. height: math.unit(4, "meters"),
  31783. weight: math.unit(150, "kg"),
  31784. name: "Side",
  31785. image: {
  31786. source: "./media/characters/caledvwlch/side.svg",
  31787. extra: 1605 / 1536,
  31788. bottom: 31 / 1636
  31789. }
  31790. },
  31791. back: {
  31792. height: math.unit(4, "meters"),
  31793. weight: math.unit(150, "kg"),
  31794. name: "Back",
  31795. image: {
  31796. source: "./media/characters/caledvwlch/back.svg",
  31797. extra: 1635 / 1565,
  31798. bottom: 27 / 1662
  31799. }
  31800. },
  31801. },
  31802. [
  31803. {
  31804. name: "\"Incognito\"",
  31805. height: math.unit(4, "meters")
  31806. },
  31807. {
  31808. name: "Small rampage",
  31809. height: math.unit(600, "meters")
  31810. },
  31811. {
  31812. name: "Mega",
  31813. height: math.unit(30, "km")
  31814. },
  31815. {
  31816. name: "Home-size",
  31817. height: math.unit(50, "km"),
  31818. default: true
  31819. },
  31820. {
  31821. name: "Giga",
  31822. height: math.unit(300, "km")
  31823. },
  31824. {
  31825. name: "Lounging",
  31826. height: math.unit(11000, "km")
  31827. },
  31828. {
  31829. name: "Planet snacking",
  31830. height: math.unit(2000000, "km")
  31831. },
  31832. ]
  31833. ))
  31834. characterMakers.push(() => makeCharacter(
  31835. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31836. {
  31837. front: {
  31838. height: math.unit(6, "feet"),
  31839. weight: math.unit(215, "lb"),
  31840. name: "Front",
  31841. image: {
  31842. source: "./media/characters/sapphire-svell/front.svg",
  31843. extra: 495 / 455,
  31844. bottom: 20 / 515
  31845. }
  31846. },
  31847. back: {
  31848. height: math.unit(6, "feet"),
  31849. weight: math.unit(216, "lb"),
  31850. name: "Back",
  31851. image: {
  31852. source: "./media/characters/sapphire-svell/back.svg",
  31853. extra: 497 / 477,
  31854. bottom: 7 / 504
  31855. }
  31856. },
  31857. maw: {
  31858. height: math.unit(1.57, "feet"),
  31859. name: "Maw",
  31860. image: {
  31861. source: "./media/characters/sapphire-svell/maw.svg"
  31862. }
  31863. },
  31864. foot: {
  31865. height: math.unit(1.07, "feet"),
  31866. name: "Foot",
  31867. image: {
  31868. source: "./media/characters/sapphire-svell/foot.svg"
  31869. }
  31870. },
  31871. toering: {
  31872. height: math.unit(1.7, "inch"),
  31873. name: "Toering",
  31874. image: {
  31875. source: "./media/characters/sapphire-svell/toering.svg"
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Normal",
  31882. height: math.unit(300, "feet"),
  31883. default: true
  31884. },
  31885. {
  31886. name: "Augmented",
  31887. height: math.unit(1250, "feet")
  31888. },
  31889. {
  31890. name: "Unleashed",
  31891. height: math.unit(3000, "feet")
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31897. {
  31898. side: {
  31899. height: math.unit(2 + 3 / 12, "feet"),
  31900. weight: math.unit(110, "lb"),
  31901. name: "Side",
  31902. image: {
  31903. source: "./media/characters/glitch-flux/side.svg",
  31904. extra: 997 / 805,
  31905. bottom: 20 / 1017
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Normal",
  31912. height: math.unit(2 + 3 / 12, "feet"),
  31913. default: true
  31914. },
  31915. ]
  31916. ))
  31917. characterMakers.push(() => makeCharacter(
  31918. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31919. {
  31920. front: {
  31921. height: math.unit(4, "meters"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/mid/front.svg",
  31925. extra: 507 / 476,
  31926. bottom: 17 / 524
  31927. }
  31928. },
  31929. back: {
  31930. height: math.unit(4, "meters"),
  31931. name: "Back",
  31932. image: {
  31933. source: "./media/characters/mid/back.svg",
  31934. extra: 519 / 487,
  31935. bottom: 7 / 526
  31936. }
  31937. },
  31938. stuck: {
  31939. height: math.unit(2.2, "meters"),
  31940. name: "Stuck",
  31941. image: {
  31942. source: "./media/characters/mid/stuck.svg",
  31943. extra: 1951 / 1869,
  31944. bottom: 88 / 2039
  31945. }
  31946. }
  31947. },
  31948. [
  31949. {
  31950. name: "Normal",
  31951. height: math.unit(4, "meters"),
  31952. default: true
  31953. },
  31954. {
  31955. name: "Big",
  31956. height: math.unit(10, "meters")
  31957. },
  31958. {
  31959. name: "Macro",
  31960. height: math.unit(800, "meters")
  31961. },
  31962. {
  31963. name: "Megamacro",
  31964. height: math.unit(100, "km")
  31965. },
  31966. {
  31967. name: "Overgrown",
  31968. height: math.unit(1, "parsec")
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31974. {
  31975. front: {
  31976. height: math.unit(2.5, "meters"),
  31977. weight: math.unit(225, "kg"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/iris/front.svg",
  31981. extra: 3348 / 3251,
  31982. bottom: 205 / 3553
  31983. }
  31984. },
  31985. maw: {
  31986. height: math.unit(0.56, "meter"),
  31987. name: "Maw",
  31988. image: {
  31989. source: "./media/characters/iris/maw.svg"
  31990. }
  31991. },
  31992. },
  31993. [
  31994. {
  31995. name: "Mewter cat",
  31996. height: math.unit(1.2, "meters")
  31997. },
  31998. {
  31999. name: "Normal",
  32000. height: math.unit(2.5, "meters"),
  32001. default: true
  32002. },
  32003. {
  32004. name: "Minimacro",
  32005. height: math.unit(18, "feet")
  32006. },
  32007. {
  32008. name: "Macro",
  32009. height: math.unit(140, "feet")
  32010. },
  32011. {
  32012. name: "Macro+",
  32013. height: math.unit(180, "meters")
  32014. },
  32015. {
  32016. name: "Megamacro",
  32017. height: math.unit(2746, "meters")
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32023. {
  32024. front: {
  32025. height: math.unit(6, "feet"),
  32026. weight: math.unit(135, "lb"),
  32027. name: "Front",
  32028. image: {
  32029. source: "./media/characters/axel/front.svg",
  32030. extra: 908 / 908,
  32031. bottom: 58 / 966
  32032. }
  32033. },
  32034. side: {
  32035. height: math.unit(6, "feet"),
  32036. weight: math.unit(135, "lb"),
  32037. name: "Side",
  32038. image: {
  32039. source: "./media/characters/axel/side.svg",
  32040. extra: 958 / 958,
  32041. bottom: 11 / 969
  32042. }
  32043. },
  32044. back: {
  32045. height: math.unit(6, "feet"),
  32046. weight: math.unit(135, "lb"),
  32047. name: "Back",
  32048. image: {
  32049. source: "./media/characters/axel/back.svg",
  32050. extra: 887 / 887,
  32051. bottom: 34 / 921
  32052. }
  32053. },
  32054. head: {
  32055. height: math.unit(1.07, "feet"),
  32056. name: "Head",
  32057. image: {
  32058. source: "./media/characters/axel/head.svg"
  32059. }
  32060. },
  32061. beak: {
  32062. height: math.unit(1.4, "feet"),
  32063. name: "Beak",
  32064. image: {
  32065. source: "./media/characters/axel/beak.svg"
  32066. }
  32067. },
  32068. beakSide: {
  32069. height: math.unit(1.4, "feet"),
  32070. name: "Beak Side",
  32071. image: {
  32072. source: "./media/characters/axel/beak-side.svg"
  32073. }
  32074. },
  32075. sheath: {
  32076. height: math.unit(0.5, "feet"),
  32077. name: "Sheath",
  32078. image: {
  32079. source: "./media/characters/axel/sheath.svg"
  32080. }
  32081. },
  32082. dick: {
  32083. height: math.unit(0.98, "feet"),
  32084. name: "Dick",
  32085. image: {
  32086. source: "./media/characters/axel/dick.svg"
  32087. }
  32088. },
  32089. },
  32090. [
  32091. {
  32092. name: "Macro",
  32093. height: math.unit(68, "meters"),
  32094. default: true
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32100. {
  32101. front: {
  32102. height: math.unit(3.5, "meters"),
  32103. weight: math.unit(1200, "kg"),
  32104. name: "Front",
  32105. image: {
  32106. source: "./media/characters/joanna/front.svg",
  32107. extra: 1596 / 1488,
  32108. bottom: 29 / 1625
  32109. }
  32110. },
  32111. back: {
  32112. height: math.unit(3.5, "meters"),
  32113. weight: math.unit(1200, "kg"),
  32114. name: "Back",
  32115. image: {
  32116. source: "./media/characters/joanna/back.svg",
  32117. extra: 1594 / 1495,
  32118. bottom: 26 / 1620
  32119. }
  32120. },
  32121. frontShorts: {
  32122. height: math.unit(3.5, "meters"),
  32123. weight: math.unit(1200, "kg"),
  32124. name: "Front (Shorts)",
  32125. image: {
  32126. source: "./media/characters/joanna/front-shorts.svg",
  32127. extra: 1596 / 1488,
  32128. bottom: 29 / 1625
  32129. }
  32130. },
  32131. frontBiker: {
  32132. height: math.unit(3.5, "meters"),
  32133. weight: math.unit(1200, "kg"),
  32134. name: "Front (Biker)",
  32135. image: {
  32136. source: "./media/characters/joanna/front-biker.svg",
  32137. extra: 1596 / 1488,
  32138. bottom: 29 / 1625
  32139. }
  32140. },
  32141. backBiker: {
  32142. height: math.unit(3.5, "meters"),
  32143. weight: math.unit(1200, "kg"),
  32144. name: "Back (Biker)",
  32145. image: {
  32146. source: "./media/characters/joanna/back-biker.svg",
  32147. extra: 1594 / 1495,
  32148. bottom: 88 / 1682
  32149. }
  32150. },
  32151. bikeLeft: {
  32152. height: math.unit(2.4, "meters"),
  32153. weight: math.unit(1600, "kg"),
  32154. name: "Bike (Left)",
  32155. image: {
  32156. source: "./media/characters/joanna/bike-left.svg",
  32157. extra: 720 / 720,
  32158. bottom: 8 / 728
  32159. }
  32160. },
  32161. bikeRight: {
  32162. height: math.unit(2.4, "meters"),
  32163. weight: math.unit(1600, "kg"),
  32164. name: "Bike (Right)",
  32165. image: {
  32166. source: "./media/characters/joanna/bike-right.svg",
  32167. extra: 720 / 720,
  32168. bottom: 8 / 728
  32169. }
  32170. },
  32171. },
  32172. [
  32173. {
  32174. name: "Incognito",
  32175. height: math.unit(3.5, "meters")
  32176. },
  32177. {
  32178. name: "Casual Big",
  32179. height: math.unit(200, "meters")
  32180. },
  32181. {
  32182. name: "Macro",
  32183. height: math.unit(600, "meters")
  32184. },
  32185. {
  32186. name: "Original",
  32187. height: math.unit(20, "km"),
  32188. default: true
  32189. },
  32190. {
  32191. name: "Giga",
  32192. height: math.unit(400, "km")
  32193. },
  32194. {
  32195. name: "Lounging",
  32196. height: math.unit(1500, "km")
  32197. },
  32198. {
  32199. name: "Planetary",
  32200. height: math.unit(200000, "km")
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32206. {
  32207. front: {
  32208. height: math.unit(6, "feet"),
  32209. weight: math.unit(150, "lb"),
  32210. name: "Front",
  32211. image: {
  32212. source: "./media/characters/hugo-sigil/front.svg",
  32213. extra: 522 / 500,
  32214. bottom: 2 / 524
  32215. }
  32216. },
  32217. back: {
  32218. height: math.unit(6, "feet"),
  32219. weight: math.unit(150, "lb"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/hugo-sigil/back.svg",
  32223. extra: 519 / 495,
  32224. bottom: 5 / 524
  32225. }
  32226. },
  32227. maw: {
  32228. height: math.unit(1.4, "feet"),
  32229. weight: math.unit(150, "lb"),
  32230. name: "Maw",
  32231. image: {
  32232. source: "./media/characters/hugo-sigil/maw.svg"
  32233. }
  32234. },
  32235. feet: {
  32236. height: math.unit(1.56, "feet"),
  32237. weight: math.unit(150, "lb"),
  32238. name: "Feet",
  32239. image: {
  32240. source: "./media/characters/hugo-sigil/feet.svg",
  32241. extra: 177 / 177,
  32242. bottom: 12 / 189
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Normal",
  32249. height: math.unit(6, "feet")
  32250. },
  32251. {
  32252. name: "Macro",
  32253. height: math.unit(200, "feet"),
  32254. default: true
  32255. },
  32256. ]
  32257. ))
  32258. characterMakers.push(() => makeCharacter(
  32259. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32260. {
  32261. front: {
  32262. height: math.unit(6, "feet"),
  32263. weight: math.unit(150, "lb"),
  32264. name: "Front",
  32265. image: {
  32266. source: "./media/characters/peri/front.svg",
  32267. extra: 2354 / 2233,
  32268. bottom: 49 / 2403
  32269. }
  32270. },
  32271. },
  32272. [
  32273. {
  32274. name: "Really Small",
  32275. height: math.unit(1, "nm")
  32276. },
  32277. {
  32278. name: "Micro",
  32279. height: math.unit(4, "inches")
  32280. },
  32281. {
  32282. name: "Normal",
  32283. height: math.unit(7, "inches"),
  32284. default: true
  32285. },
  32286. {
  32287. name: "Macro",
  32288. height: math.unit(400, "feet")
  32289. },
  32290. {
  32291. name: "Megamacro",
  32292. height: math.unit(100, "miles")
  32293. },
  32294. ]
  32295. ))
  32296. characterMakers.push(() => makeCharacter(
  32297. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32298. {
  32299. frontSlim: {
  32300. height: math.unit(7, "feet"),
  32301. name: "Front (Slim)",
  32302. image: {
  32303. source: "./media/characters/issilora/front-slim.svg",
  32304. extra: 529 / 449,
  32305. bottom: 53 / 582
  32306. }
  32307. },
  32308. sideSlim: {
  32309. height: math.unit(7, "feet"),
  32310. name: "Side (Slim)",
  32311. image: {
  32312. source: "./media/characters/issilora/side-slim.svg",
  32313. extra: 570 / 480,
  32314. bottom: 30 / 600
  32315. }
  32316. },
  32317. backSlim: {
  32318. height: math.unit(7, "feet"),
  32319. name: "Back (Slim)",
  32320. image: {
  32321. source: "./media/characters/issilora/back-slim.svg",
  32322. extra: 537 / 455,
  32323. bottom: 46 / 583
  32324. }
  32325. },
  32326. frontBuff: {
  32327. height: math.unit(7, "feet"),
  32328. name: "Front (Buff)",
  32329. image: {
  32330. source: "./media/characters/issilora/front-buff.svg",
  32331. extra: 2310 / 2035,
  32332. bottom: 335 / 2645
  32333. }
  32334. },
  32335. head: {
  32336. height: math.unit(1.94, "feet"),
  32337. name: "Head",
  32338. image: {
  32339. source: "./media/characters/issilora/head.svg"
  32340. }
  32341. },
  32342. },
  32343. [
  32344. {
  32345. name: "Minimum",
  32346. height: math.unit(7, "feet")
  32347. },
  32348. {
  32349. name: "Comfortable",
  32350. height: math.unit(17, "feet")
  32351. },
  32352. {
  32353. name: "Fun Size",
  32354. height: math.unit(47, "feet")
  32355. },
  32356. {
  32357. name: "Natural Macro",
  32358. height: math.unit(137, "feet"),
  32359. default: true
  32360. },
  32361. {
  32362. name: "Maximum Kaiju",
  32363. height: math.unit(397, "feet")
  32364. },
  32365. ]
  32366. ))
  32367. characterMakers.push(() => makeCharacter(
  32368. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32369. {
  32370. front: {
  32371. height: math.unit(50 + 9/12, "feet"),
  32372. weight: math.unit(32.8, "tons"),
  32373. name: "Front",
  32374. image: {
  32375. source: "./media/characters/irb'iiritaahn/front.svg",
  32376. extra: 1878/1826,
  32377. bottom: 326/2204
  32378. }
  32379. },
  32380. back: {
  32381. height: math.unit(50 + 9/12, "feet"),
  32382. weight: math.unit(32.8, "tons"),
  32383. name: "Back",
  32384. image: {
  32385. source: "./media/characters/irb'iiritaahn/back.svg",
  32386. extra: 2052/2018,
  32387. bottom: 152/2204
  32388. }
  32389. },
  32390. head: {
  32391. height: math.unit(12.86, "feet"),
  32392. name: "Head",
  32393. image: {
  32394. source: "./media/characters/irb'iiritaahn/head.svg"
  32395. }
  32396. },
  32397. maw: {
  32398. height: math.unit(9.66, "feet"),
  32399. name: "Maw",
  32400. image: {
  32401. source: "./media/characters/irb'iiritaahn/maw.svg"
  32402. }
  32403. },
  32404. frontDick: {
  32405. height: math.unit(8.78461, "feet"),
  32406. name: "Front Dick",
  32407. image: {
  32408. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32409. }
  32410. },
  32411. rearDick: {
  32412. height: math.unit(8.78461, "feet"),
  32413. name: "Rear Dick",
  32414. image: {
  32415. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32416. }
  32417. },
  32418. rearDickUnfolded: {
  32419. height: math.unit(8.78, "feet"),
  32420. name: "Rear Dick (Unfolded)",
  32421. image: {
  32422. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32423. }
  32424. },
  32425. wings: {
  32426. height: math.unit(43, "feet"),
  32427. name: "Wings",
  32428. image: {
  32429. source: "./media/characters/irb'iiritaahn/wings.svg"
  32430. }
  32431. },
  32432. },
  32433. [
  32434. {
  32435. name: "Macro",
  32436. height: math.unit(50 + 9/12, "feet"),
  32437. default: true
  32438. },
  32439. ]
  32440. ))
  32441. characterMakers.push(() => makeCharacter(
  32442. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32443. {
  32444. front: {
  32445. height: math.unit(205, "cm"),
  32446. weight: math.unit(102, "kg"),
  32447. name: "Front",
  32448. image: {
  32449. source: "./media/characters/irbisgreif/front.svg",
  32450. extra: 785/706,
  32451. bottom: 13/798
  32452. }
  32453. },
  32454. back: {
  32455. height: math.unit(205, "cm"),
  32456. weight: math.unit(102, "kg"),
  32457. name: "Back",
  32458. image: {
  32459. source: "./media/characters/irbisgreif/back.svg",
  32460. extra: 713/701,
  32461. bottom: 26/739
  32462. }
  32463. },
  32464. frontDressed: {
  32465. height: math.unit(216, "cm"),
  32466. weight: math.unit(102, "kg"),
  32467. name: "Front-dressed",
  32468. image: {
  32469. source: "./media/characters/irbisgreif/front-dressed.svg",
  32470. extra: 902/776,
  32471. bottom: 14/916
  32472. }
  32473. },
  32474. sideDressed: {
  32475. height: math.unit(195, "cm"),
  32476. weight: math.unit(102, "kg"),
  32477. name: "Side-dressed",
  32478. image: {
  32479. source: "./media/characters/irbisgreif/side-dressed.svg",
  32480. extra: 788/688,
  32481. bottom: 21/809
  32482. }
  32483. },
  32484. backDressed: {
  32485. height: math.unit(216, "cm"),
  32486. weight: math.unit(102, "kg"),
  32487. name: "Back-dressed",
  32488. image: {
  32489. source: "./media/characters/irbisgreif/back-dressed.svg",
  32490. extra: 901/783,
  32491. bottom: 10/911
  32492. }
  32493. },
  32494. dick: {
  32495. height: math.unit(0.49, "feet"),
  32496. name: "Dick",
  32497. image: {
  32498. source: "./media/characters/irbisgreif/dick.svg"
  32499. }
  32500. },
  32501. wingTop: {
  32502. height: math.unit(1.93 , "feet"),
  32503. name: "Wing-top",
  32504. image: {
  32505. source: "./media/characters/irbisgreif/wing-top.svg"
  32506. }
  32507. },
  32508. wingBottom: {
  32509. height: math.unit(1.93 , "feet"),
  32510. name: "Wing-bottom",
  32511. image: {
  32512. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32513. }
  32514. },
  32515. },
  32516. [
  32517. {
  32518. name: "Normal",
  32519. height: math.unit(216, "cm"),
  32520. default: true
  32521. },
  32522. ]
  32523. ))
  32524. characterMakers.push(() => makeCharacter(
  32525. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32526. {
  32527. front: {
  32528. height: math.unit(6, "feet"),
  32529. weight: math.unit(150, "lb"),
  32530. name: "Front",
  32531. image: {
  32532. source: "./media/characters/pride/front.svg",
  32533. extra: 1299/1230,
  32534. bottom: 18/1317
  32535. }
  32536. },
  32537. },
  32538. [
  32539. {
  32540. name: "Normal",
  32541. height: math.unit(7, "feet")
  32542. },
  32543. {
  32544. name: "Mini-macro",
  32545. height: math.unit(11, "feet")
  32546. },
  32547. {
  32548. name: "Macro",
  32549. height: math.unit(15, "meters"),
  32550. default: true
  32551. },
  32552. {
  32553. name: "Macro+",
  32554. height: math.unit(40, "meters")
  32555. },
  32556. ]
  32557. ))
  32558. characterMakers.push(() => makeCharacter(
  32559. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32560. {
  32561. front: {
  32562. height: math.unit(4 + 2 / 12, "feet"),
  32563. weight: math.unit(95, "lb"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/vaelophis-nyx/front.svg",
  32567. extra: 2532/2330,
  32568. bottom: 0/2532
  32569. }
  32570. },
  32571. back: {
  32572. height: math.unit(4 + 2 / 12, "feet"),
  32573. weight: math.unit(95, "lb"),
  32574. name: "Back",
  32575. image: {
  32576. source: "./media/characters/vaelophis-nyx/back.svg",
  32577. extra: 2484/2361,
  32578. bottom: 0/2484
  32579. }
  32580. },
  32581. feralSide: {
  32582. height: math.unit(2 + 1/12, "feet"),
  32583. weight: math.unit(20, "lb"),
  32584. name: "Feral (Side)",
  32585. image: {
  32586. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32587. extra: 1721/1581,
  32588. bottom: 70/1791
  32589. }
  32590. },
  32591. feralLazing: {
  32592. height: math.unit(1.08, "feet"),
  32593. weight: math.unit(20, "lb"),
  32594. name: "Feral (Lazing)",
  32595. image: {
  32596. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32597. extra: 822/822,
  32598. bottom: 248/1070
  32599. }
  32600. },
  32601. ear: {
  32602. height: math.unit(0.416, "feet"),
  32603. name: "Ear",
  32604. image: {
  32605. source: "./media/characters/vaelophis-nyx/ear.svg"
  32606. }
  32607. },
  32608. eye: {
  32609. height: math.unit(0.0748, "feet"),
  32610. name: "Eye",
  32611. image: {
  32612. source: "./media/characters/vaelophis-nyx/eye.svg"
  32613. }
  32614. },
  32615. mouth: {
  32616. height: math.unit(0.378, "feet"),
  32617. name: "Mouth",
  32618. image: {
  32619. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32620. }
  32621. },
  32622. spade: {
  32623. height: math.unit(0.55, "feet"),
  32624. name: "Spade",
  32625. image: {
  32626. source: "./media/characters/vaelophis-nyx/spade.svg"
  32627. }
  32628. },
  32629. },
  32630. [
  32631. {
  32632. name: "Normal",
  32633. height: math.unit(4 + 2/12, "feet"),
  32634. default: true
  32635. },
  32636. ]
  32637. ))
  32638. characterMakers.push(() => makeCharacter(
  32639. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32640. {
  32641. front: {
  32642. height: math.unit(7, "feet"),
  32643. weight: math.unit(231, "lb"),
  32644. name: "Front",
  32645. image: {
  32646. source: "./media/characters/flux/front.svg",
  32647. extra: 919/871,
  32648. bottom: 0/919
  32649. }
  32650. },
  32651. back: {
  32652. height: math.unit(7, "feet"),
  32653. weight: math.unit(231, "lb"),
  32654. name: "Back",
  32655. image: {
  32656. source: "./media/characters/flux/back.svg",
  32657. extra: 1040/992,
  32658. bottom: 0/1040
  32659. }
  32660. },
  32661. frontDressed: {
  32662. height: math.unit(7, "feet"),
  32663. weight: math.unit(231, "lb"),
  32664. name: "Front (Dressed)",
  32665. image: {
  32666. source: "./media/characters/flux/front-dressed.svg",
  32667. extra: 919/871,
  32668. bottom: 0/919
  32669. }
  32670. },
  32671. feralSide: {
  32672. height: math.unit(5, "feet"),
  32673. weight: math.unit(150, "lb"),
  32674. name: "Feral (Side)",
  32675. image: {
  32676. source: "./media/characters/flux/feral-side.svg",
  32677. extra: 598/528,
  32678. bottom: 28/626
  32679. }
  32680. },
  32681. head: {
  32682. height: math.unit(1.585, "feet"),
  32683. name: "Head",
  32684. image: {
  32685. source: "./media/characters/flux/head.svg"
  32686. }
  32687. },
  32688. headSide: {
  32689. height: math.unit(1.74, "feet"),
  32690. name: "Head (Side)",
  32691. image: {
  32692. source: "./media/characters/flux/head-side.svg"
  32693. }
  32694. },
  32695. headSideFire: {
  32696. height: math.unit(1.76, "feet"),
  32697. name: "Head (Side, Fire)",
  32698. image: {
  32699. source: "./media/characters/flux/head-side-fire.svg"
  32700. }
  32701. },
  32702. },
  32703. [
  32704. {
  32705. name: "Normal",
  32706. height: math.unit(7, "feet"),
  32707. default: true
  32708. },
  32709. ]
  32710. ))
  32711. characterMakers.push(() => makeCharacter(
  32712. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32713. {
  32714. front: {
  32715. height: math.unit(9, "feet"),
  32716. weight: math.unit(1012, "lb"),
  32717. name: "Front",
  32718. image: {
  32719. source: "./media/characters/ulfra-lupae/front.svg",
  32720. extra: 1083/1011,
  32721. bottom: 67/1150
  32722. }
  32723. },
  32724. },
  32725. [
  32726. {
  32727. name: "Micro",
  32728. height: math.unit(6, "inches")
  32729. },
  32730. {
  32731. name: "Socializing",
  32732. height: math.unit(6 + 5/12, "feet")
  32733. },
  32734. {
  32735. name: "Normal",
  32736. height: math.unit(9, "feet"),
  32737. default: true
  32738. },
  32739. {
  32740. name: "Macro",
  32741. height: math.unit(150, "feet")
  32742. },
  32743. ]
  32744. ))
  32745. characterMakers.push(() => makeCharacter(
  32746. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32747. {
  32748. front: {
  32749. height: math.unit(5 + 2/12, "feet"),
  32750. weight: math.unit(120, "lb"),
  32751. name: "Front",
  32752. image: {
  32753. source: "./media/characters/timber/front.svg",
  32754. extra: 2814/2705,
  32755. bottom: 181/2995
  32756. }
  32757. },
  32758. },
  32759. [
  32760. {
  32761. name: "Normal",
  32762. height: math.unit(5 + 2/12, "feet"),
  32763. default: true
  32764. },
  32765. ]
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32769. {
  32770. front: {
  32771. height: math.unit(9, "feet"),
  32772. name: "Front",
  32773. image: {
  32774. source: "./media/characters/nicki/front.svg",
  32775. extra: 1240/990,
  32776. bottom: 45/1285
  32777. },
  32778. form: "anthro",
  32779. default: true
  32780. },
  32781. side: {
  32782. height: math.unit(9, "feet"),
  32783. name: "Side",
  32784. image: {
  32785. source: "./media/characters/nicki/side.svg",
  32786. extra: 1047/973,
  32787. bottom: 61/1108
  32788. },
  32789. form: "anthro"
  32790. },
  32791. back: {
  32792. height: math.unit(9, "feet"),
  32793. name: "Back",
  32794. image: {
  32795. source: "./media/characters/nicki/back.svg",
  32796. extra: 1006/965,
  32797. bottom: 39/1045
  32798. },
  32799. form: "anthro"
  32800. },
  32801. taur: {
  32802. height: math.unit(15, "feet"),
  32803. name: "Taur",
  32804. image: {
  32805. source: "./media/characters/nicki/taur.svg",
  32806. extra: 1592/1347,
  32807. bottom: 0/1592
  32808. },
  32809. form: "taur",
  32810. default: true
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Normal",
  32816. height: math.unit(9, "feet"),
  32817. form: "anthro",
  32818. default: true
  32819. },
  32820. {
  32821. name: "Normal",
  32822. height: math.unit(15, "feet"),
  32823. form: "taur",
  32824. default: true
  32825. }
  32826. ],
  32827. {
  32828. "anthro": {
  32829. name: "Anthro",
  32830. default: true
  32831. },
  32832. "taur": {
  32833. name: "Taur"
  32834. }
  32835. }
  32836. ))
  32837. characterMakers.push(() => makeCharacter(
  32838. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32839. {
  32840. front: {
  32841. height: math.unit(7 + 10/12, "feet"),
  32842. weight: math.unit(3.5, "tons"),
  32843. name: "Front",
  32844. image: {
  32845. source: "./media/characters/lee/front.svg",
  32846. extra: 1773/1615,
  32847. bottom: 86/1859
  32848. }
  32849. },
  32850. hand: {
  32851. height: math.unit(1.78, "feet"),
  32852. name: "Hand",
  32853. image: {
  32854. source: "./media/characters/lee/hand.svg"
  32855. }
  32856. },
  32857. maw: {
  32858. height: math.unit(1.18, "feet"),
  32859. name: "Maw",
  32860. image: {
  32861. source: "./media/characters/lee/maw.svg"
  32862. }
  32863. },
  32864. },
  32865. [
  32866. {
  32867. name: "Normal",
  32868. height: math.unit(7 + 10/12, "feet"),
  32869. default: true
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32875. {
  32876. front: {
  32877. height: math.unit(9, "feet"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/guti/front.svg",
  32881. extra: 4551/4355,
  32882. bottom: 123/4674
  32883. }
  32884. },
  32885. tongue: {
  32886. height: math.unit(1, "feet"),
  32887. name: "Tongue",
  32888. image: {
  32889. source: "./media/characters/guti/tongue.svg"
  32890. }
  32891. },
  32892. paw: {
  32893. height: math.unit(1.18, "feet"),
  32894. name: "Paw",
  32895. image: {
  32896. source: "./media/characters/guti/paw.svg"
  32897. }
  32898. },
  32899. },
  32900. [
  32901. {
  32902. name: "Normal",
  32903. height: math.unit(9, "feet"),
  32904. default: true
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32910. {
  32911. side: {
  32912. height: math.unit(5, "meters"),
  32913. name: "Side",
  32914. image: {
  32915. source: "./media/characters/vesper/side.svg",
  32916. extra: 1605/1518,
  32917. bottom: 0/1605
  32918. }
  32919. },
  32920. },
  32921. [
  32922. {
  32923. name: "Small",
  32924. height: math.unit(5, "meters")
  32925. },
  32926. {
  32927. name: "Sage",
  32928. height: math.unit(100, "meters"),
  32929. default: true
  32930. },
  32931. {
  32932. name: "Fun Size",
  32933. height: math.unit(600, "meters")
  32934. },
  32935. {
  32936. name: "Goddess",
  32937. height: math.unit(20000, "km")
  32938. },
  32939. {
  32940. name: "Maximum",
  32941. height: math.unit(5, "galaxies")
  32942. },
  32943. ]
  32944. ))
  32945. characterMakers.push(() => makeCharacter(
  32946. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32947. {
  32948. front: {
  32949. height: math.unit(6 + 3/12, "feet"),
  32950. weight: math.unit(190, "lb"),
  32951. name: "Front",
  32952. image: {
  32953. source: "./media/characters/gawain/front.svg",
  32954. extra: 2222/2139,
  32955. bottom: 90/2312
  32956. }
  32957. },
  32958. back: {
  32959. height: math.unit(6 + 3/12, "feet"),
  32960. weight: math.unit(190, "lb"),
  32961. name: "Back",
  32962. image: {
  32963. source: "./media/characters/gawain/back.svg",
  32964. extra: 2199/2111,
  32965. bottom: 73/2272
  32966. }
  32967. },
  32968. },
  32969. [
  32970. {
  32971. name: "Normal",
  32972. height: math.unit(6 + 3/12, "feet"),
  32973. default: true
  32974. },
  32975. ]
  32976. ))
  32977. characterMakers.push(() => makeCharacter(
  32978. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32979. {
  32980. side: {
  32981. height: math.unit(3.5, "meters"),
  32982. weight: math.unit(16000, "lb"),
  32983. name: "Side",
  32984. image: {
  32985. source: "./media/characters/dascalti/side.svg",
  32986. extra: 392/273,
  32987. bottom: 47/439
  32988. }
  32989. },
  32990. breath: {
  32991. height: math.unit(7.4, "feet"),
  32992. name: "Breath",
  32993. image: {
  32994. source: "./media/characters/dascalti/breath.svg"
  32995. }
  32996. },
  32997. fed: {
  32998. height: math.unit(3.6, "meters"),
  32999. weight: math.unit(16000, "lb"),
  33000. name: "Fed",
  33001. image: {
  33002. source: "./media/characters/dascalti/fed.svg",
  33003. extra: 1419/820,
  33004. bottom: 95/1514
  33005. }
  33006. },
  33007. },
  33008. [
  33009. {
  33010. name: "Normal",
  33011. height: math.unit(3.5, "meters"),
  33012. default: true
  33013. },
  33014. ]
  33015. ))
  33016. characterMakers.push(() => makeCharacter(
  33017. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33018. {
  33019. front: {
  33020. height: math.unit(3 + 5/12, "feet"),
  33021. name: "Front",
  33022. image: {
  33023. source: "./media/characters/mauve/front.svg",
  33024. extra: 1126/1033,
  33025. bottom: 65/1191
  33026. }
  33027. },
  33028. side: {
  33029. height: math.unit(3 + 5/12, "feet"),
  33030. name: "Side",
  33031. image: {
  33032. source: "./media/characters/mauve/side.svg",
  33033. extra: 1089/1001,
  33034. bottom: 29/1118
  33035. }
  33036. },
  33037. back: {
  33038. height: math.unit(3 + 5/12, "feet"),
  33039. name: "Back",
  33040. image: {
  33041. source: "./media/characters/mauve/back.svg",
  33042. extra: 1173/1053,
  33043. bottom: 109/1282
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Normal",
  33050. height: math.unit(3 + 5/12, "feet"),
  33051. default: true
  33052. },
  33053. ]
  33054. ))
  33055. characterMakers.push(() => makeCharacter(
  33056. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33057. {
  33058. front: {
  33059. height: math.unit(6 + 3/12, "feet"),
  33060. weight: math.unit(430, "lb"),
  33061. name: "Front",
  33062. image: {
  33063. source: "./media/characters/carlos/front.svg",
  33064. extra: 1964/1913,
  33065. bottom: 70/2034
  33066. }
  33067. },
  33068. },
  33069. [
  33070. {
  33071. name: "Normal",
  33072. height: math.unit(6 + 3/12, "feet"),
  33073. default: true
  33074. },
  33075. ]
  33076. ))
  33077. characterMakers.push(() => makeCharacter(
  33078. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33079. {
  33080. back: {
  33081. height: math.unit(5 + 10/12, "feet"),
  33082. weight: math.unit(200, "lb"),
  33083. name: "Back",
  33084. image: {
  33085. source: "./media/characters/jax/back.svg",
  33086. extra: 764/739,
  33087. bottom: 25/789
  33088. }
  33089. },
  33090. },
  33091. [
  33092. {
  33093. name: "Normal",
  33094. height: math.unit(5 + 10/12, "feet"),
  33095. default: true
  33096. },
  33097. ]
  33098. ))
  33099. characterMakers.push(() => makeCharacter(
  33100. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33101. {
  33102. front: {
  33103. height: math.unit(8, "feet"),
  33104. weight: math.unit(250, "lb"),
  33105. name: "Front",
  33106. image: {
  33107. source: "./media/characters/eikthynir/front.svg",
  33108. extra: 1332/1166,
  33109. bottom: 82/1414
  33110. }
  33111. },
  33112. back: {
  33113. height: math.unit(8, "feet"),
  33114. weight: math.unit(250, "lb"),
  33115. name: "Back",
  33116. image: {
  33117. source: "./media/characters/eikthynir/back.svg",
  33118. extra: 1342/1190,
  33119. bottom: 19/1361
  33120. }
  33121. },
  33122. dick: {
  33123. height: math.unit(2.35, "feet"),
  33124. name: "Dick",
  33125. image: {
  33126. source: "./media/characters/eikthynir/dick.svg"
  33127. }
  33128. },
  33129. },
  33130. [
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(8, "feet"),
  33134. default: true
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33140. {
  33141. front: {
  33142. height: math.unit(99, "meters"),
  33143. weight: math.unit(13000, "tons"),
  33144. name: "Front",
  33145. image: {
  33146. source: "./media/characters/zlmos/front.svg",
  33147. extra: 2202/1992,
  33148. bottom: 315/2517
  33149. }
  33150. },
  33151. },
  33152. [
  33153. {
  33154. name: "Macro",
  33155. height: math.unit(99, "meters"),
  33156. default: true
  33157. },
  33158. ]
  33159. ))
  33160. characterMakers.push(() => makeCharacter(
  33161. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33162. {
  33163. front: {
  33164. height: math.unit(6 + 5/12, "feet"),
  33165. name: "Front",
  33166. image: {
  33167. source: "./media/characters/purri/front.svg",
  33168. extra: 1698/1610,
  33169. bottom: 32/1730
  33170. }
  33171. },
  33172. frontAlt: {
  33173. height: math.unit(6 + 5/12, "feet"),
  33174. name: "Front (Alt)",
  33175. image: {
  33176. source: "./media/characters/purri/front-alt.svg",
  33177. extra: 450/420,
  33178. bottom: 26/476
  33179. }
  33180. },
  33181. boots: {
  33182. height: math.unit(5.5, "feet"),
  33183. name: "Boots",
  33184. image: {
  33185. source: "./media/characters/purri/boots.svg",
  33186. extra: 905/853,
  33187. bottom: 18/923
  33188. }
  33189. },
  33190. lying: {
  33191. height: math.unit(2, "feet"),
  33192. name: "Lying",
  33193. image: {
  33194. source: "./media/characters/purri/lying.svg",
  33195. extra: 940/843,
  33196. bottom: 146/1086
  33197. }
  33198. },
  33199. devious: {
  33200. height: math.unit(1.77, "feet"),
  33201. name: "Devious",
  33202. image: {
  33203. source: "./media/characters/purri/devious.svg",
  33204. extra: 1440/1155,
  33205. bottom: 147/1587
  33206. }
  33207. },
  33208. bean: {
  33209. height: math.unit(1.94, "feet"),
  33210. name: "Bean",
  33211. image: {
  33212. source: "./media/characters/purri/bean.svg"
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Micro",
  33219. height: math.unit(1, "mm")
  33220. },
  33221. {
  33222. name: "Normal",
  33223. height: math.unit(6 + 5/12, "feet"),
  33224. default: true
  33225. },
  33226. {
  33227. name: "Macro :3c",
  33228. height: math.unit(2, "miles")
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33234. {
  33235. front: {
  33236. height: math.unit(6 + 2/12, "feet"),
  33237. weight: math.unit(250, "lb"),
  33238. name: "Front",
  33239. image: {
  33240. source: "./media/characters/moonlight/front.svg",
  33241. extra: 1044/908,
  33242. bottom: 56/1100
  33243. }
  33244. },
  33245. feral: {
  33246. height: math.unit(3 + 1/12, "feet"),
  33247. weight: math.unit(50, "kg"),
  33248. name: "Feral",
  33249. image: {
  33250. source: "./media/characters/moonlight/feral.svg",
  33251. extra: 3705/2791,
  33252. bottom: 145/3850
  33253. }
  33254. },
  33255. paw: {
  33256. height: math.unit(1, "feet"),
  33257. name: "Paw",
  33258. image: {
  33259. source: "./media/characters/moonlight/paw.svg"
  33260. }
  33261. },
  33262. paws: {
  33263. height: math.unit(0.98, "feet"),
  33264. name: "Paws",
  33265. image: {
  33266. source: "./media/characters/moonlight/paws.svg",
  33267. extra: 939/939,
  33268. bottom: 50/989
  33269. }
  33270. },
  33271. mouth: {
  33272. height: math.unit(0.48, "feet"),
  33273. name: "Mouth",
  33274. image: {
  33275. source: "./media/characters/moonlight/mouth.svg"
  33276. }
  33277. },
  33278. dick: {
  33279. height: math.unit(1.46, "feet"),
  33280. name: "Dick",
  33281. image: {
  33282. source: "./media/characters/moonlight/dick.svg"
  33283. }
  33284. },
  33285. },
  33286. [
  33287. {
  33288. name: "Normal",
  33289. height: math.unit(6 + 2/12, "feet"),
  33290. default: true
  33291. },
  33292. {
  33293. name: "Macro",
  33294. height: math.unit(300, "feet")
  33295. },
  33296. {
  33297. name: "Macro+",
  33298. height: math.unit(1, "mile")
  33299. },
  33300. {
  33301. name: "Mt. Moon",
  33302. height: math.unit(5, "miles")
  33303. },
  33304. {
  33305. name: "Megamacro",
  33306. height: math.unit(15, "miles")
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33312. {
  33313. back: {
  33314. height: math.unit(6, "feet"),
  33315. weight: math.unit(150, "lb"),
  33316. name: "Back",
  33317. image: {
  33318. source: "./media/characters/sylen/back.svg",
  33319. extra: 1335/1273,
  33320. bottom: 107/1442
  33321. }
  33322. },
  33323. },
  33324. [
  33325. {
  33326. name: "Normal",
  33327. height: math.unit(5 + 5/12, "feet")
  33328. },
  33329. {
  33330. name: "Megamacro",
  33331. height: math.unit(3, "miles"),
  33332. default: true
  33333. },
  33334. ]
  33335. ))
  33336. characterMakers.push(() => makeCharacter(
  33337. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33338. {
  33339. front: {
  33340. height: math.unit(6, "feet"),
  33341. weight: math.unit(190, "lb"),
  33342. name: "Front",
  33343. image: {
  33344. source: "./media/characters/huttser/front.svg",
  33345. extra: 1152/1058,
  33346. bottom: 23/1175
  33347. }
  33348. },
  33349. side: {
  33350. height: math.unit(6, "feet"),
  33351. weight: math.unit(190, "lb"),
  33352. name: "Side",
  33353. image: {
  33354. source: "./media/characters/huttser/side.svg",
  33355. extra: 1174/1065,
  33356. bottom: 18/1192
  33357. }
  33358. },
  33359. back: {
  33360. height: math.unit(6, "feet"),
  33361. weight: math.unit(190, "lb"),
  33362. name: "Back",
  33363. image: {
  33364. source: "./media/characters/huttser/back.svg",
  33365. extra: 1158/1056,
  33366. bottom: 12/1170
  33367. }
  33368. },
  33369. },
  33370. [
  33371. ]
  33372. ))
  33373. characterMakers.push(() => makeCharacter(
  33374. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33375. {
  33376. side: {
  33377. height: math.unit(12 + 9/12, "feet"),
  33378. weight: math.unit(15000, "lb"),
  33379. name: "Side",
  33380. image: {
  33381. source: "./media/characters/faan/side.svg",
  33382. extra: 2747/2697,
  33383. bottom: 0/2747
  33384. }
  33385. },
  33386. front: {
  33387. height: math.unit(12 + 9/12, "feet"),
  33388. weight: math.unit(15000, "lb"),
  33389. name: "Front",
  33390. image: {
  33391. source: "./media/characters/faan/front.svg",
  33392. extra: 607/571,
  33393. bottom: 24/631
  33394. }
  33395. },
  33396. head: {
  33397. height: math.unit(2.85, "feet"),
  33398. name: "Head",
  33399. image: {
  33400. source: "./media/characters/faan/head.svg"
  33401. }
  33402. },
  33403. headAlt: {
  33404. height: math.unit(3.13, "feet"),
  33405. name: "Head-alt",
  33406. image: {
  33407. source: "./media/characters/faan/head-alt.svg"
  33408. }
  33409. },
  33410. },
  33411. [
  33412. {
  33413. name: "Normal",
  33414. height: math.unit(12 + 9/12, "feet"),
  33415. default: true
  33416. },
  33417. ]
  33418. ))
  33419. characterMakers.push(() => makeCharacter(
  33420. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33421. {
  33422. front: {
  33423. height: math.unit(6, "feet"),
  33424. weight: math.unit(300, "lb"),
  33425. name: "Front",
  33426. image: {
  33427. source: "./media/characters/tanio/front.svg",
  33428. extra: 711/673,
  33429. bottom: 25/736
  33430. }
  33431. },
  33432. },
  33433. [
  33434. {
  33435. name: "Normal",
  33436. height: math.unit(6, "feet"),
  33437. default: true
  33438. },
  33439. ]
  33440. ))
  33441. characterMakers.push(() => makeCharacter(
  33442. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33443. {
  33444. front: {
  33445. height: math.unit(3, "inches"),
  33446. name: "Front",
  33447. image: {
  33448. source: "./media/characters/noboru/front.svg",
  33449. extra: 1039/932,
  33450. bottom: 18/1057
  33451. }
  33452. },
  33453. },
  33454. [
  33455. {
  33456. name: "Micro",
  33457. height: math.unit(3, "inches"),
  33458. default: true
  33459. },
  33460. ]
  33461. ))
  33462. characterMakers.push(() => makeCharacter(
  33463. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33464. {
  33465. front: {
  33466. height: math.unit(1.85, "meters"),
  33467. weight: math.unit(80, "kg"),
  33468. name: "Front",
  33469. image: {
  33470. source: "./media/characters/daniel-barrett/front.svg",
  33471. extra: 355/337,
  33472. bottom: 9/364
  33473. }
  33474. },
  33475. },
  33476. [
  33477. {
  33478. name: "Pico",
  33479. height: math.unit(0.0433, "mm")
  33480. },
  33481. {
  33482. name: "Nano",
  33483. height: math.unit(1.5, "mm")
  33484. },
  33485. {
  33486. name: "Micro",
  33487. height: math.unit(5.3, "cm"),
  33488. default: true
  33489. },
  33490. {
  33491. name: "Normal",
  33492. height: math.unit(1.85, "meters")
  33493. },
  33494. {
  33495. name: "Macro",
  33496. height: math.unit(64.7, "meters")
  33497. },
  33498. {
  33499. name: "Megamacro",
  33500. height: math.unit(2.26, "km")
  33501. },
  33502. {
  33503. name: "Gigamacro",
  33504. height: math.unit(79, "km")
  33505. },
  33506. {
  33507. name: "Teramacro",
  33508. height: math.unit(2765, "km")
  33509. },
  33510. {
  33511. name: "Petamacro",
  33512. height: math.unit(96678, "km")
  33513. },
  33514. ]
  33515. ))
  33516. characterMakers.push(() => makeCharacter(
  33517. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33518. {
  33519. front: {
  33520. height: math.unit(30, "meters"),
  33521. weight: math.unit(400, "tons"),
  33522. name: "Front",
  33523. image: {
  33524. source: "./media/characters/zeel/front.svg",
  33525. extra: 2599/2599,
  33526. bottom: 226/2825
  33527. }
  33528. },
  33529. },
  33530. [
  33531. {
  33532. name: "Macro",
  33533. height: math.unit(30, "meters"),
  33534. default: true
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33540. {
  33541. front: {
  33542. height: math.unit(6 + 7/12, "feet"),
  33543. weight: math.unit(210, "lb"),
  33544. name: "Front",
  33545. image: {
  33546. source: "./media/characters/tarn/front.svg",
  33547. extra: 3517/3220,
  33548. bottom: 91/3608
  33549. }
  33550. },
  33551. back: {
  33552. height: math.unit(6 + 7/12, "feet"),
  33553. weight: math.unit(210, "lb"),
  33554. name: "Back",
  33555. image: {
  33556. source: "./media/characters/tarn/back.svg",
  33557. extra: 3566/3241,
  33558. bottom: 34/3600
  33559. }
  33560. },
  33561. dick: {
  33562. height: math.unit(1.65, "feet"),
  33563. name: "Dick",
  33564. image: {
  33565. source: "./media/characters/tarn/dick.svg"
  33566. }
  33567. },
  33568. paw: {
  33569. height: math.unit(1.80, "feet"),
  33570. name: "Paw",
  33571. image: {
  33572. source: "./media/characters/tarn/paw.svg"
  33573. }
  33574. },
  33575. tongue: {
  33576. height: math.unit(0.97, "feet"),
  33577. name: "Tongue",
  33578. image: {
  33579. source: "./media/characters/tarn/tongue.svg"
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Micro",
  33586. height: math.unit(4, "inches")
  33587. },
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(6 + 7/12, "feet"),
  33591. default: true
  33592. },
  33593. {
  33594. name: "Macro",
  33595. height: math.unit(300, "feet")
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33601. {
  33602. front: {
  33603. height: math.unit(5 + 7/12, "feet"),
  33604. weight: math.unit(80, "kg"),
  33605. name: "Front",
  33606. image: {
  33607. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33608. extra: 3023/2865,
  33609. bottom: 33/3056
  33610. }
  33611. },
  33612. back: {
  33613. height: math.unit(5 + 7/12, "feet"),
  33614. weight: math.unit(80, "kg"),
  33615. name: "Back",
  33616. image: {
  33617. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33618. extra: 3020/2886,
  33619. bottom: 30/3050
  33620. }
  33621. },
  33622. dick: {
  33623. height: math.unit(0.98, "feet"),
  33624. name: "Dick",
  33625. image: {
  33626. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33627. }
  33628. },
  33629. anatomy: {
  33630. height: math.unit(2.86, "feet"),
  33631. name: "Anatomy",
  33632. image: {
  33633. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Really Small",
  33640. height: math.unit(2, "inches")
  33641. },
  33642. {
  33643. name: "Micro",
  33644. height: math.unit(5.583, "inches")
  33645. },
  33646. {
  33647. name: "Normal",
  33648. height: math.unit(5 + 7/12, "feet"),
  33649. default: true
  33650. },
  33651. {
  33652. name: "Macro",
  33653. height: math.unit(67, "feet")
  33654. },
  33655. {
  33656. name: "Megamacro",
  33657. height: math.unit(134, "feet")
  33658. },
  33659. ]
  33660. ))
  33661. characterMakers.push(() => makeCharacter(
  33662. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33663. {
  33664. front: {
  33665. height: math.unit(9, "feet"),
  33666. weight: math.unit(120, "lb"),
  33667. name: "Front",
  33668. image: {
  33669. source: "./media/characters/sally/front.svg",
  33670. extra: 1506/1349,
  33671. bottom: 66/1572
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Normal",
  33678. height: math.unit(9, "feet"),
  33679. default: true
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33685. {
  33686. front: {
  33687. height: math.unit(8, "feet"),
  33688. weight: math.unit(900, "lb"),
  33689. name: "Front",
  33690. image: {
  33691. source: "./media/characters/owen/front.svg",
  33692. extra: 1761/1657,
  33693. bottom: 74/1835
  33694. }
  33695. },
  33696. side: {
  33697. height: math.unit(8, "feet"),
  33698. weight: math.unit(900, "lb"),
  33699. name: "Side",
  33700. image: {
  33701. source: "./media/characters/owen/side.svg",
  33702. extra: 1797/1734,
  33703. bottom: 30/1827
  33704. }
  33705. },
  33706. back: {
  33707. height: math.unit(8, "feet"),
  33708. weight: math.unit(900, "lb"),
  33709. name: "Back",
  33710. image: {
  33711. source: "./media/characters/owen/back.svg",
  33712. extra: 1796/1706,
  33713. bottom: 59/1855
  33714. }
  33715. },
  33716. maw: {
  33717. height: math.unit(1.76, "feet"),
  33718. name: "Maw",
  33719. image: {
  33720. source: "./media/characters/owen/maw.svg"
  33721. }
  33722. },
  33723. },
  33724. [
  33725. {
  33726. name: "Normal",
  33727. height: math.unit(8, "feet"),
  33728. default: true
  33729. },
  33730. ]
  33731. ))
  33732. characterMakers.push(() => makeCharacter(
  33733. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33734. {
  33735. front: {
  33736. height: math.unit(4, "feet"),
  33737. weight: math.unit(400, "lb"),
  33738. name: "Front",
  33739. image: {
  33740. source: "./media/characters/ryth/front.svg",
  33741. extra: 1920/1748,
  33742. bottom: 42/1962
  33743. }
  33744. },
  33745. back: {
  33746. height: math.unit(4, "feet"),
  33747. weight: math.unit(400, "lb"),
  33748. name: "Back",
  33749. image: {
  33750. source: "./media/characters/ryth/back.svg",
  33751. extra: 1897/1690,
  33752. bottom: 89/1986
  33753. }
  33754. },
  33755. mouth: {
  33756. height: math.unit(1.39, "feet"),
  33757. name: "Mouth",
  33758. image: {
  33759. source: "./media/characters/ryth/mouth.svg"
  33760. }
  33761. },
  33762. tailmaw: {
  33763. height: math.unit(1.23, "feet"),
  33764. name: "Tailmaw",
  33765. image: {
  33766. source: "./media/characters/ryth/tailmaw.svg"
  33767. }
  33768. },
  33769. goia: {
  33770. height: math.unit(4, "meters"),
  33771. weight: math.unit(10800, "lb"),
  33772. name: "Goia",
  33773. image: {
  33774. source: "./media/characters/ryth/goia.svg",
  33775. extra: 745/640,
  33776. bottom: 107/852
  33777. }
  33778. },
  33779. goiaFront: {
  33780. height: math.unit(4, "meters"),
  33781. weight: math.unit(10800, "lb"),
  33782. name: "Goia (Front)",
  33783. image: {
  33784. source: "./media/characters/ryth/goia-front.svg",
  33785. extra: 750/586,
  33786. bottom: 114/864
  33787. }
  33788. },
  33789. goiaMaw: {
  33790. height: math.unit(5.55, "feet"),
  33791. name: "Goia Maw",
  33792. image: {
  33793. source: "./media/characters/ryth/goia-maw.svg"
  33794. }
  33795. },
  33796. goiaForepaw: {
  33797. height: math.unit(3.5, "feet"),
  33798. name: "Goia Forepaw",
  33799. image: {
  33800. source: "./media/characters/ryth/goia-forepaw.svg"
  33801. }
  33802. },
  33803. goiaHindpaw: {
  33804. height: math.unit(5.55, "feet"),
  33805. name: "Goia Hindpaw",
  33806. image: {
  33807. source: "./media/characters/ryth/goia-hindpaw.svg"
  33808. }
  33809. },
  33810. },
  33811. [
  33812. {
  33813. name: "Normal",
  33814. height: math.unit(4, "feet"),
  33815. default: true
  33816. },
  33817. ]
  33818. ))
  33819. characterMakers.push(() => makeCharacter(
  33820. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33821. {
  33822. front: {
  33823. height: math.unit(7, "feet"),
  33824. weight: math.unit(180, "lb"),
  33825. name: "Front",
  33826. image: {
  33827. source: "./media/characters/necrolance/front.svg",
  33828. extra: 1062/947,
  33829. bottom: 41/1103
  33830. }
  33831. },
  33832. back: {
  33833. height: math.unit(7, "feet"),
  33834. weight: math.unit(180, "lb"),
  33835. name: "Back",
  33836. image: {
  33837. source: "./media/characters/necrolance/back.svg",
  33838. extra: 1045/984,
  33839. bottom: 14/1059
  33840. }
  33841. },
  33842. wing: {
  33843. height: math.unit(2.67, "feet"),
  33844. name: "Wing",
  33845. image: {
  33846. source: "./media/characters/necrolance/wing.svg"
  33847. }
  33848. },
  33849. },
  33850. [
  33851. {
  33852. name: "Normal",
  33853. height: math.unit(7, "feet"),
  33854. default: true
  33855. },
  33856. ]
  33857. ))
  33858. characterMakers.push(() => makeCharacter(
  33859. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33860. {
  33861. front: {
  33862. height: math.unit(76, "meters"),
  33863. weight: math.unit(30000, "tons"),
  33864. name: "Front",
  33865. image: {
  33866. source: "./media/characters/tyler/front.svg",
  33867. extra: 1640/1640,
  33868. bottom: 114/1754
  33869. }
  33870. },
  33871. },
  33872. [
  33873. {
  33874. name: "Macro",
  33875. height: math.unit(76, "meters"),
  33876. default: true
  33877. },
  33878. ]
  33879. ))
  33880. characterMakers.push(() => makeCharacter(
  33881. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33882. {
  33883. front: {
  33884. height: math.unit(4 + 11/12, "feet"),
  33885. weight: math.unit(132, "lb"),
  33886. name: "Front",
  33887. image: {
  33888. source: "./media/characters/icey/front.svg",
  33889. extra: 2750/2550,
  33890. bottom: 33/2783
  33891. }
  33892. },
  33893. back: {
  33894. height: math.unit(4 + 11/12, "feet"),
  33895. weight: math.unit(132, "lb"),
  33896. name: "Back",
  33897. image: {
  33898. source: "./media/characters/icey/back.svg",
  33899. extra: 2624/2481,
  33900. bottom: 35/2659
  33901. }
  33902. },
  33903. },
  33904. [
  33905. {
  33906. name: "Normal",
  33907. height: math.unit(4 + 11/12, "feet"),
  33908. default: true
  33909. },
  33910. ]
  33911. ))
  33912. characterMakers.push(() => makeCharacter(
  33913. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33914. {
  33915. front: {
  33916. height: math.unit(100, "feet"),
  33917. weight: math.unit(0, "lb"),
  33918. name: "Front",
  33919. image: {
  33920. source: "./media/characters/smile/front.svg",
  33921. extra: 2983/2912,
  33922. bottom: 162/3145
  33923. }
  33924. },
  33925. back: {
  33926. height: math.unit(100, "feet"),
  33927. weight: math.unit(0, "lb"),
  33928. name: "Back",
  33929. image: {
  33930. source: "./media/characters/smile/back.svg",
  33931. extra: 3143/3031,
  33932. bottom: 91/3234
  33933. }
  33934. },
  33935. head: {
  33936. height: math.unit(26.3, "feet"),
  33937. weight: math.unit(0, "lb"),
  33938. name: "Head",
  33939. image: {
  33940. source: "./media/characters/smile/head.svg"
  33941. }
  33942. },
  33943. collar: {
  33944. height: math.unit(5.3, "feet"),
  33945. weight: math.unit(0, "lb"),
  33946. name: "Collar",
  33947. image: {
  33948. source: "./media/characters/smile/collar.svg"
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Macro",
  33955. height: math.unit(100, "feet"),
  33956. default: true
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33962. {
  33963. dragon: {
  33964. height: math.unit(26, "feet"),
  33965. weight: math.unit(36, "tons"),
  33966. name: "Dragon",
  33967. image: {
  33968. source: "./media/characters/arimphae/dragon.svg",
  33969. extra: 1574/983,
  33970. bottom: 357/1931
  33971. }
  33972. },
  33973. drake: {
  33974. height: math.unit(9, "feet"),
  33975. weight: math.unit(1.5, "tons"),
  33976. name: "Drake",
  33977. image: {
  33978. source: "./media/characters/arimphae/drake.svg",
  33979. extra: 1120/925,
  33980. bottom: 435/1555
  33981. }
  33982. },
  33983. },
  33984. [
  33985. {
  33986. name: "Small",
  33987. height: math.unit(26*5/9, "feet")
  33988. },
  33989. {
  33990. name: "Normal",
  33991. height: math.unit(26, "feet"),
  33992. default: true
  33993. },
  33994. ]
  33995. ))
  33996. characterMakers.push(() => makeCharacter(
  33997. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33998. {
  33999. front: {
  34000. height: math.unit(8 + 9/12, "feet"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/xander/front.svg",
  34004. extra: 1237/974,
  34005. bottom: 94/1331
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(8 + 9/12, "feet"),
  34013. default: true
  34014. },
  34015. {
  34016. name: "Gaze Grabber",
  34017. height: math.unit(13 + 8/12, "feet")
  34018. },
  34019. {
  34020. name: "Jaw Dropper",
  34021. height: math.unit(27, "feet")
  34022. },
  34023. {
  34024. name: "Show Stopper",
  34025. height: math.unit(136, "feet")
  34026. },
  34027. {
  34028. name: "Superstar",
  34029. height: math.unit(1.9e6, "miles")
  34030. },
  34031. ]
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34035. {
  34036. side: {
  34037. height: math.unit(2100, "feet"),
  34038. name: "Side",
  34039. image: {
  34040. source: "./media/characters/osiris/side.svg",
  34041. extra: 1105/939,
  34042. bottom: 167/1272
  34043. }
  34044. },
  34045. },
  34046. [
  34047. {
  34048. name: "Macro",
  34049. height: math.unit(2100, "feet"),
  34050. default: true
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(6 + 8/12, "feet"),
  34059. weight: math.unit(225, "lb"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/rhys-londe/front.svg",
  34063. extra: 2258/2141,
  34064. bottom: 188/2446
  34065. }
  34066. },
  34067. back: {
  34068. height: math.unit(6 + 8/12, "feet"),
  34069. weight: math.unit(225, "lb"),
  34070. name: "Back",
  34071. image: {
  34072. source: "./media/characters/rhys-londe/back.svg",
  34073. extra: 2237/2137,
  34074. bottom: 63/2300
  34075. }
  34076. },
  34077. frontNsfw: {
  34078. height: math.unit(6 + 8/12, "feet"),
  34079. weight: math.unit(225, "lb"),
  34080. name: "Front (NSFW)",
  34081. image: {
  34082. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34083. extra: 2258/2141,
  34084. bottom: 188/2446
  34085. }
  34086. },
  34087. backNsfw: {
  34088. height: math.unit(6 + 8/12, "feet"),
  34089. weight: math.unit(225, "lb"),
  34090. name: "Back (NSFW)",
  34091. image: {
  34092. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34093. extra: 2237/2137,
  34094. bottom: 63/2300
  34095. }
  34096. },
  34097. dick: {
  34098. height: math.unit(30, "inches"),
  34099. name: "Dick",
  34100. image: {
  34101. source: "./media/characters/rhys-londe/dick.svg"
  34102. }
  34103. },
  34104. maw: {
  34105. height: math.unit(1.6, "feet"),
  34106. name: "Maw",
  34107. image: {
  34108. source: "./media/characters/rhys-londe/maw.svg"
  34109. }
  34110. },
  34111. },
  34112. [
  34113. {
  34114. name: "Normal",
  34115. height: math.unit(6 + 8/12, "feet"),
  34116. default: true
  34117. },
  34118. ]
  34119. ))
  34120. characterMakers.push(() => makeCharacter(
  34121. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34122. {
  34123. front: {
  34124. height: math.unit(3 + 10/12, "feet"),
  34125. weight: math.unit(90, "lb"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/taivas-ensim/front.svg",
  34129. extra: 1327/1216,
  34130. bottom: 96/1423
  34131. }
  34132. },
  34133. back: {
  34134. height: math.unit(3 + 10/12, "feet"),
  34135. weight: math.unit(90, "lb"),
  34136. name: "Back",
  34137. image: {
  34138. source: "./media/characters/taivas-ensim/back.svg",
  34139. extra: 1355/1247,
  34140. bottom: 11/1366
  34141. }
  34142. },
  34143. frontNsfw: {
  34144. height: math.unit(3 + 10/12, "feet"),
  34145. weight: math.unit(90, "lb"),
  34146. name: "Front (NSFW)",
  34147. image: {
  34148. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34149. extra: 1327/1216,
  34150. bottom: 96/1423
  34151. }
  34152. },
  34153. backNsfw: {
  34154. height: math.unit(3 + 10/12, "feet"),
  34155. weight: math.unit(90, "lb"),
  34156. name: "Back (NSFW)",
  34157. image: {
  34158. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34159. extra: 1355/1247,
  34160. bottom: 11/1366
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(3 + 10/12, "feet"),
  34168. default: true
  34169. },
  34170. ]
  34171. ))
  34172. characterMakers.push(() => makeCharacter(
  34173. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34174. {
  34175. front: {
  34176. height: math.unit(9 + 6/12, "feet"),
  34177. weight: math.unit(940, "lb"),
  34178. name: "Front",
  34179. image: {
  34180. source: "./media/characters/byliss/front.svg",
  34181. extra: 1327/1290,
  34182. bottom: 82/1409
  34183. }
  34184. },
  34185. back: {
  34186. height: math.unit(9 + 6/12, "feet"),
  34187. weight: math.unit(940, "lb"),
  34188. name: "Back",
  34189. image: {
  34190. source: "./media/characters/byliss/back.svg",
  34191. extra: 1376/1349,
  34192. bottom: 9/1385
  34193. }
  34194. },
  34195. frontNsfw: {
  34196. height: math.unit(9 + 6/12, "feet"),
  34197. weight: math.unit(940, "lb"),
  34198. name: "Front (NSFW)",
  34199. image: {
  34200. source: "./media/characters/byliss/front-nsfw.svg",
  34201. extra: 1327/1290,
  34202. bottom: 82/1409
  34203. }
  34204. },
  34205. backNsfw: {
  34206. height: math.unit(9 + 6/12, "feet"),
  34207. weight: math.unit(940, "lb"),
  34208. name: "Back (NSFW)",
  34209. image: {
  34210. source: "./media/characters/byliss/back-nsfw.svg",
  34211. extra: 1376/1349,
  34212. bottom: 9/1385
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(9 + 6/12, "feet"),
  34220. default: true
  34221. },
  34222. ]
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34226. {
  34227. front: {
  34228. height: math.unit(5 + 2/12, "feet"),
  34229. weight: math.unit(200, "lb"),
  34230. name: "Front",
  34231. image: {
  34232. source: "./media/characters/noraly/front.svg",
  34233. extra: 4985/4773,
  34234. bottom: 150/5135
  34235. }
  34236. },
  34237. full: {
  34238. height: math.unit(5 + 2/12, "feet"),
  34239. weight: math.unit(164, "lb"),
  34240. name: "Full",
  34241. image: {
  34242. source: "./media/characters/noraly/full.svg",
  34243. extra: 1114/1059,
  34244. bottom: 35/1149
  34245. }
  34246. },
  34247. fuller: {
  34248. height: math.unit(5 + 2/12, "feet"),
  34249. weight: math.unit(230, "lb"),
  34250. name: "Fuller",
  34251. image: {
  34252. source: "./media/characters/noraly/fuller.svg",
  34253. extra: 1114/1059,
  34254. bottom: 35/1149
  34255. }
  34256. },
  34257. fullest: {
  34258. height: math.unit(5 + 2/12, "feet"),
  34259. weight: math.unit(300, "lb"),
  34260. name: "Fullest",
  34261. image: {
  34262. source: "./media/characters/noraly/fullest.svg",
  34263. extra: 1114/1059,
  34264. bottom: 35/1149
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(5 + 2/12, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34278. {
  34279. front: {
  34280. height: math.unit(5 + 2/12, "feet"),
  34281. weight: math.unit(210, "lb"),
  34282. name: "Front",
  34283. image: {
  34284. source: "./media/characters/pera/front.svg",
  34285. extra: 1560/1531,
  34286. bottom: 165/1725
  34287. }
  34288. },
  34289. back: {
  34290. height: math.unit(5 + 2/12, "feet"),
  34291. weight: math.unit(210, "lb"),
  34292. name: "Back",
  34293. image: {
  34294. source: "./media/characters/pera/back.svg",
  34295. extra: 1523/1493,
  34296. bottom: 152/1675
  34297. }
  34298. },
  34299. dick: {
  34300. height: math.unit(2.4, "feet"),
  34301. name: "Dick",
  34302. image: {
  34303. source: "./media/characters/pera/dick.svg"
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(5 + 2/12, "feet"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34317. {
  34318. front: {
  34319. height: math.unit(12, "feet"),
  34320. weight: math.unit(3200, "lb"),
  34321. name: "Front",
  34322. image: {
  34323. source: "./media/characters/julian/front.svg",
  34324. extra: 2962/2701,
  34325. bottom: 184/3146
  34326. }
  34327. },
  34328. maw: {
  34329. height: math.unit(5.35, "feet"),
  34330. name: "Maw",
  34331. image: {
  34332. source: "./media/characters/julian/maw.svg"
  34333. }
  34334. },
  34335. paw: {
  34336. height: math.unit(3.07, "feet"),
  34337. name: "Paw",
  34338. image: {
  34339. source: "./media/characters/julian/paw.svg"
  34340. }
  34341. },
  34342. },
  34343. [
  34344. {
  34345. name: "Default",
  34346. height: math.unit(12, "feet"),
  34347. default: true
  34348. },
  34349. {
  34350. name: "Big",
  34351. height: math.unit(50, "feet")
  34352. },
  34353. {
  34354. name: "Really Big",
  34355. height: math.unit(1, "mile")
  34356. },
  34357. {
  34358. name: "Extremely Big",
  34359. height: math.unit(100, "miles")
  34360. },
  34361. {
  34362. name: "Planet Hugger",
  34363. height: math.unit(200, "megameters")
  34364. },
  34365. {
  34366. name: "Unreasonably Big",
  34367. height: math.unit(1e300, "meters")
  34368. },
  34369. ]
  34370. ))
  34371. characterMakers.push(() => makeCharacter(
  34372. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34373. {
  34374. solgooleo: {
  34375. height: math.unit(4, "meters"),
  34376. weight: math.unit(6000*1.5, "kg"),
  34377. volume: math.unit(6000, "liters"),
  34378. name: "Solgooleo",
  34379. image: {
  34380. source: "./media/characters/pi/solgooleo.svg",
  34381. extra: 388/331,
  34382. bottom: 29/417
  34383. }
  34384. },
  34385. },
  34386. [
  34387. {
  34388. name: "Normal",
  34389. height: math.unit(4, "meters"),
  34390. default: true
  34391. },
  34392. ]
  34393. ))
  34394. characterMakers.push(() => makeCharacter(
  34395. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34396. {
  34397. front: {
  34398. height: math.unit(8, "feet"),
  34399. weight: math.unit(4, "tons"),
  34400. name: "Front",
  34401. image: {
  34402. source: "./media/characters/shaun/front.svg",
  34403. extra: 503/495,
  34404. bottom: 20/523
  34405. }
  34406. },
  34407. back: {
  34408. height: math.unit(8, "feet"),
  34409. weight: math.unit(4, "tons"),
  34410. name: "Back",
  34411. image: {
  34412. source: "./media/characters/shaun/back.svg",
  34413. extra: 487/480,
  34414. bottom: 20/507
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Lorg",
  34421. height: math.unit(8, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34428. {
  34429. frontAnthro: {
  34430. height: math.unit(7, "feet"),
  34431. name: "Front",
  34432. image: {
  34433. source: "./media/characters/sini/front-anthro.svg",
  34434. extra: 726/678,
  34435. bottom: 35/761
  34436. },
  34437. form: "anthro",
  34438. default: true
  34439. },
  34440. backAnthro: {
  34441. height: math.unit(7, "feet"),
  34442. name: "Back",
  34443. image: {
  34444. source: "./media/characters/sini/back-anthro.svg",
  34445. extra: 743/701,
  34446. bottom: 12/755
  34447. },
  34448. form: "anthro",
  34449. },
  34450. frontAnthroNsfw: {
  34451. height: math.unit(7, "feet"),
  34452. name: "Front (NSFW)",
  34453. image: {
  34454. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34455. extra: 726/678,
  34456. bottom: 35/761
  34457. },
  34458. form: "anthro"
  34459. },
  34460. backAnthroNsfw: {
  34461. height: math.unit(7, "feet"),
  34462. name: "Back (NSFW)",
  34463. image: {
  34464. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34465. extra: 743/701,
  34466. bottom: 12/755
  34467. },
  34468. form: "anthro",
  34469. },
  34470. mawAnthro: {
  34471. height: math.unit(2.14, "feet"),
  34472. name: "Maw",
  34473. image: {
  34474. source: "./media/characters/sini/maw-anthro.svg"
  34475. },
  34476. form: "anthro"
  34477. },
  34478. dick: {
  34479. height: math.unit(1.45, "feet"),
  34480. name: "Dick",
  34481. image: {
  34482. source: "./media/characters/sini/dick-anthro.svg"
  34483. },
  34484. form: "anthro"
  34485. },
  34486. feral: {
  34487. height: math.unit(16, "feet"),
  34488. name: "Feral",
  34489. image: {
  34490. source: "./media/characters/sini/feral.svg",
  34491. extra: 814/605,
  34492. bottom: 11/825
  34493. },
  34494. form: "feral",
  34495. default: true
  34496. },
  34497. feralNsfw: {
  34498. height: math.unit(16, "feet"),
  34499. name: "Feral (NSFW)",
  34500. image: {
  34501. source: "./media/characters/sini/feral-nsfw.svg",
  34502. extra: 814/605,
  34503. bottom: 11/825
  34504. },
  34505. form: "feral"
  34506. },
  34507. mawFeral: {
  34508. height: math.unit(5.66, "feet"),
  34509. name: "Maw",
  34510. image: {
  34511. source: "./media/characters/sini/maw-feral.svg"
  34512. },
  34513. form: "feral",
  34514. },
  34515. pawFeral: {
  34516. height: math.unit(5.17, "feet"),
  34517. name: "Paw",
  34518. image: {
  34519. source: "./media/characters/sini/paw-feral.svg"
  34520. },
  34521. form: "feral",
  34522. },
  34523. rumpFeral: {
  34524. height: math.unit(13.11, "feet"),
  34525. name: "Rump",
  34526. image: {
  34527. source: "./media/characters/sini/rump-feral.svg"
  34528. },
  34529. form: "feral",
  34530. },
  34531. dickFeral: {
  34532. height: math.unit(1, "feet"),
  34533. name: "Dick",
  34534. image: {
  34535. source: "./media/characters/sini/dick-feral.svg"
  34536. },
  34537. form: "feral",
  34538. },
  34539. eyeFeral: {
  34540. height: math.unit(1.23, "feet"),
  34541. name: "Eye",
  34542. image: {
  34543. source: "./media/characters/sini/eye-feral.svg"
  34544. },
  34545. form: "feral",
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "Normal",
  34551. height: math.unit(7, "feet"),
  34552. default: true,
  34553. form: "anthro"
  34554. },
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(16, "feet"),
  34558. default: true,
  34559. form: "feral"
  34560. },
  34561. ],
  34562. {
  34563. "anthro": {
  34564. name: "Anthro",
  34565. default: true
  34566. },
  34567. "feral": {
  34568. name: "Feral",
  34569. }
  34570. }
  34571. ))
  34572. characterMakers.push(() => makeCharacter(
  34573. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34574. {
  34575. side: {
  34576. height: math.unit(47.2, "meters"),
  34577. weight: math.unit(10000, "tons"),
  34578. name: "Side",
  34579. image: {
  34580. source: "./media/characters/raylldo/side.svg",
  34581. extra: 2363/642,
  34582. bottom: 221/2584
  34583. }
  34584. },
  34585. top: {
  34586. height: math.unit(240, "meters"),
  34587. weight: math.unit(10000, "tons"),
  34588. name: "Top",
  34589. image: {
  34590. source: "./media/characters/raylldo/top.svg"
  34591. }
  34592. },
  34593. bottom: {
  34594. height: math.unit(240, "meters"),
  34595. weight: math.unit(10000, "tons"),
  34596. name: "Bottom",
  34597. image: {
  34598. source: "./media/characters/raylldo/bottom.svg"
  34599. }
  34600. },
  34601. head: {
  34602. height: math.unit(38.6, "meters"),
  34603. name: "Head",
  34604. image: {
  34605. source: "./media/characters/raylldo/head.svg",
  34606. extra: 1335/1112,
  34607. bottom: 0/1335
  34608. }
  34609. },
  34610. maw: {
  34611. height: math.unit(16.37, "meters"),
  34612. name: "Maw",
  34613. image: {
  34614. source: "./media/characters/raylldo/maw.svg",
  34615. extra: 883/660,
  34616. bottom: 0/883
  34617. },
  34618. extraAttributes: {
  34619. preyCapacity: {
  34620. name: "Capacity",
  34621. power: 3,
  34622. type: "volume",
  34623. base: math.unit(1000, "people")
  34624. },
  34625. tongueSize: {
  34626. name: "Tongue Size",
  34627. power: 2,
  34628. type: "area",
  34629. base: math.unit(21, "m^2")
  34630. }
  34631. }
  34632. },
  34633. forepaw: {
  34634. height: math.unit(18, "meters"),
  34635. name: "Forepaw",
  34636. image: {
  34637. source: "./media/characters/raylldo/forepaw.svg"
  34638. }
  34639. },
  34640. hindpaw: {
  34641. height: math.unit(23, "meters"),
  34642. name: "Hindpaw",
  34643. image: {
  34644. source: "./media/characters/raylldo/hindpaw.svg"
  34645. }
  34646. },
  34647. genitals: {
  34648. height: math.unit(42, "meters"),
  34649. name: "Genitals",
  34650. image: {
  34651. source: "./media/characters/raylldo/genitals.svg"
  34652. }
  34653. },
  34654. },
  34655. [
  34656. {
  34657. name: "Normal",
  34658. height: math.unit(47.2, "meters"),
  34659. default: true
  34660. },
  34661. ]
  34662. ))
  34663. characterMakers.push(() => makeCharacter(
  34664. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34665. {
  34666. anthroFront: {
  34667. height: math.unit(9, "feet"),
  34668. weight: math.unit(600, "lb"),
  34669. name: "Anthro (Front)",
  34670. image: {
  34671. source: "./media/characters/glint/anthro-front.svg",
  34672. extra: 1097/1018,
  34673. bottom: 28/1125
  34674. }
  34675. },
  34676. anthroBack: {
  34677. height: math.unit(9, "feet"),
  34678. weight: math.unit(600, "lb"),
  34679. name: "Anthro (Back)",
  34680. image: {
  34681. source: "./media/characters/glint/anthro-back.svg",
  34682. extra: 1154/997,
  34683. bottom: 36/1190
  34684. }
  34685. },
  34686. feral: {
  34687. height: math.unit(11, "feet"),
  34688. weight: math.unit(50000, "lb"),
  34689. name: "Feral",
  34690. image: {
  34691. source: "./media/characters/glint/feral.svg",
  34692. extra: 3035/1585,
  34693. bottom: 1169/4204
  34694. }
  34695. },
  34696. dickAnthro: {
  34697. height: math.unit(0.7, "meters"),
  34698. name: "Dick (Anthro)",
  34699. image: {
  34700. source: "./media/characters/glint/dick-anthro.svg"
  34701. }
  34702. },
  34703. dickFeral: {
  34704. height: math.unit(2.65, "meters"),
  34705. name: "Dick (Feral)",
  34706. image: {
  34707. source: "./media/characters/glint/dick-feral.svg"
  34708. }
  34709. },
  34710. slitHidden: {
  34711. height: math.unit(5.85, "meters"),
  34712. name: "Slit (Hidden)",
  34713. image: {
  34714. source: "./media/characters/glint/slit-hidden.svg"
  34715. }
  34716. },
  34717. slitErect: {
  34718. height: math.unit(5.85, "meters"),
  34719. name: "Slit (Erect)",
  34720. image: {
  34721. source: "./media/characters/glint/slit-erect.svg"
  34722. }
  34723. },
  34724. mawAnthro: {
  34725. height: math.unit(0.63, "meters"),
  34726. name: "Maw (Anthro)",
  34727. image: {
  34728. source: "./media/characters/glint/maw.svg"
  34729. }
  34730. },
  34731. mawFeral: {
  34732. height: math.unit(2.89, "meters"),
  34733. name: "Maw (Feral)",
  34734. image: {
  34735. source: "./media/characters/glint/maw.svg"
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Normal",
  34742. height: math.unit(9, "feet"),
  34743. default: true
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34749. {
  34750. side: {
  34751. height: math.unit(15, "feet"),
  34752. weight: math.unit(5000, "kg"),
  34753. name: "Side",
  34754. image: {
  34755. source: "./media/characters/kairne/side.svg",
  34756. extra: 979/811,
  34757. bottom: 13/992
  34758. }
  34759. },
  34760. front: {
  34761. height: math.unit(15, "feet"),
  34762. weight: math.unit(5000, "kg"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/kairne/front.svg",
  34766. extra: 908/814,
  34767. bottom: 26/934
  34768. }
  34769. },
  34770. sideNsfw: {
  34771. height: math.unit(15, "feet"),
  34772. weight: math.unit(5000, "kg"),
  34773. name: "Side (NSFW)",
  34774. image: {
  34775. source: "./media/characters/kairne/side-nsfw.svg",
  34776. extra: 979/811,
  34777. bottom: 13/992
  34778. }
  34779. },
  34780. frontNsfw: {
  34781. height: math.unit(15, "feet"),
  34782. weight: math.unit(5000, "kg"),
  34783. name: "Front (NSFW)",
  34784. image: {
  34785. source: "./media/characters/kairne/front-nsfw.svg",
  34786. extra: 908/814,
  34787. bottom: 26/934
  34788. }
  34789. },
  34790. dickCaged: {
  34791. height: math.unit(0.65, "meters"),
  34792. name: "Dick-caged",
  34793. image: {
  34794. source: "./media/characters/kairne/dick-caged.svg"
  34795. }
  34796. },
  34797. dick: {
  34798. height: math.unit(0.79, "meters"),
  34799. name: "Dick",
  34800. image: {
  34801. source: "./media/characters/kairne/dick.svg"
  34802. }
  34803. },
  34804. genitals: {
  34805. height: math.unit(1.29, "meters"),
  34806. name: "Genitals",
  34807. image: {
  34808. source: "./media/characters/kairne/genitals.svg"
  34809. }
  34810. },
  34811. maw: {
  34812. height: math.unit(1.73, "meters"),
  34813. name: "Maw",
  34814. image: {
  34815. source: "./media/characters/kairne/maw.svg"
  34816. }
  34817. },
  34818. },
  34819. [
  34820. {
  34821. name: "Normal",
  34822. height: math.unit(15, "feet"),
  34823. default: true
  34824. },
  34825. ]
  34826. ))
  34827. characterMakers.push(() => makeCharacter(
  34828. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34829. {
  34830. front: {
  34831. height: math.unit(5 + 8/12, "feet"),
  34832. weight: math.unit(139, "lb"),
  34833. name: "Front",
  34834. image: {
  34835. source: "./media/characters/biscuit-jackal/front.svg",
  34836. extra: 2106/1961,
  34837. bottom: 58/2164
  34838. }
  34839. },
  34840. back: {
  34841. height: math.unit(5 + 8/12, "feet"),
  34842. weight: math.unit(139, "lb"),
  34843. name: "Back",
  34844. image: {
  34845. source: "./media/characters/biscuit-jackal/back.svg",
  34846. extra: 2132/1976,
  34847. bottom: 57/2189
  34848. }
  34849. },
  34850. werejackal: {
  34851. height: math.unit(6 + 3/12, "feet"),
  34852. weight: math.unit(188, "lb"),
  34853. name: "Werejackal",
  34854. image: {
  34855. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34856. extra: 2373/2178,
  34857. bottom: 53/2426
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(5 + 8/12, "feet"),
  34865. default: true
  34866. },
  34867. ]
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34871. {
  34872. front: {
  34873. height: math.unit(140, "cm"),
  34874. weight: math.unit(45, "kg"),
  34875. name: "Front",
  34876. image: {
  34877. source: "./media/characters/tayra-white/front.svg",
  34878. extra: 2229/2192,
  34879. bottom: 75/2304
  34880. }
  34881. },
  34882. },
  34883. [
  34884. {
  34885. name: "Normal",
  34886. height: math.unit(140, "cm"),
  34887. default: true
  34888. },
  34889. ]
  34890. ))
  34891. characterMakers.push(() => makeCharacter(
  34892. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34893. {
  34894. front: {
  34895. height: math.unit(4 + 5/12, "feet"),
  34896. name: "Front",
  34897. image: {
  34898. source: "./media/characters/scoop/front.svg",
  34899. extra: 1257/1136,
  34900. bottom: 69/1326
  34901. }
  34902. },
  34903. back: {
  34904. height: math.unit(4 + 5/12, "feet"),
  34905. name: "Back",
  34906. image: {
  34907. source: "./media/characters/scoop/back.svg",
  34908. extra: 1321/1152,
  34909. bottom: 32/1353
  34910. }
  34911. },
  34912. maw: {
  34913. height: math.unit(0.68, "feet"),
  34914. name: "Maw",
  34915. image: {
  34916. source: "./media/characters/scoop/maw.svg"
  34917. }
  34918. },
  34919. },
  34920. [
  34921. {
  34922. name: "Really Small",
  34923. height: math.unit(1, "mm")
  34924. },
  34925. {
  34926. name: "Micro",
  34927. height: math.unit(1, "inch")
  34928. },
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(4 + 5/12, "feet"),
  34932. default: true
  34933. },
  34934. {
  34935. name: "Macro",
  34936. height: math.unit(200, "feet")
  34937. },
  34938. {
  34939. name: "Megamacro",
  34940. height: math.unit(3240, "feet")
  34941. },
  34942. {
  34943. name: "Teramacro",
  34944. height: math.unit(2500, "miles")
  34945. },
  34946. ]
  34947. ))
  34948. characterMakers.push(() => makeCharacter(
  34949. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34950. {
  34951. front: {
  34952. height: math.unit(15 + 7/12, "feet"),
  34953. weight: math.unit(1150, "tons"),
  34954. name: "Front",
  34955. image: {
  34956. source: "./media/characters/saphinara/front.svg",
  34957. extra: 1837/1643,
  34958. bottom: 84/1921
  34959. },
  34960. form: "normal",
  34961. default: true
  34962. },
  34963. side: {
  34964. height: math.unit(15 + 7/12, "feet"),
  34965. weight: math.unit(1150, "tons"),
  34966. name: "Side",
  34967. image: {
  34968. source: "./media/characters/saphinara/side.svg",
  34969. extra: 605/547,
  34970. bottom: 6/611
  34971. },
  34972. form: "normal"
  34973. },
  34974. back: {
  34975. height: math.unit(15 + 7/12, "feet"),
  34976. weight: math.unit(1150, "tons"),
  34977. name: "Back",
  34978. image: {
  34979. source: "./media/characters/saphinara/back.svg",
  34980. extra: 591/531,
  34981. bottom: 13/604
  34982. },
  34983. form: "normal"
  34984. },
  34985. frontTail: {
  34986. height: math.unit(15 + 7/12, "feet"),
  34987. weight: math.unit(1150, "tons"),
  34988. name: "Front (Full Tail)",
  34989. image: {
  34990. source: "./media/characters/saphinara/front-tail.svg",
  34991. extra: 2256/1630,
  34992. bottom: 261/2517
  34993. },
  34994. form: "normal"
  34995. },
  34996. insides: {
  34997. height: math.unit(11.92, "feet"),
  34998. name: "Insides",
  34999. image: {
  35000. source: "./media/characters/saphinara/insides.svg"
  35001. },
  35002. form: "normal"
  35003. },
  35004. head: {
  35005. height: math.unit(4.17, "feet"),
  35006. name: "Head",
  35007. image: {
  35008. source: "./media/characters/saphinara/head.svg"
  35009. },
  35010. form: "normal"
  35011. },
  35012. tongue: {
  35013. height: math.unit(4.60, "feet"),
  35014. name: "Tongue",
  35015. image: {
  35016. source: "./media/characters/saphinara/tongue.svg"
  35017. },
  35018. form: "normal"
  35019. },
  35020. headEnraged: {
  35021. height: math.unit(5.55, "feet"),
  35022. name: "Head (Enraged)",
  35023. image: {
  35024. source: "./media/characters/saphinara/head-enraged.svg"
  35025. },
  35026. form: "normal"
  35027. },
  35028. wings: {
  35029. height: math.unit(11.95, "feet"),
  35030. name: "Wings",
  35031. image: {
  35032. source: "./media/characters/saphinara/wings.svg"
  35033. },
  35034. form: "normal"
  35035. },
  35036. feathers: {
  35037. height: math.unit(8.92, "feet"),
  35038. name: "Feathers",
  35039. image: {
  35040. source: "./media/characters/saphinara/feathers.svg"
  35041. },
  35042. form: "normal"
  35043. },
  35044. shackles: {
  35045. height: math.unit(2, "feet"),
  35046. name: "Shackles",
  35047. image: {
  35048. source: "./media/characters/saphinara/shackles.svg"
  35049. },
  35050. form: "normal"
  35051. },
  35052. eyes: {
  35053. height: math.unit(1.331, "feet"),
  35054. name: "Eyes",
  35055. image: {
  35056. source: "./media/characters/saphinara/eyes.svg"
  35057. },
  35058. form: "normal"
  35059. },
  35060. eyesEnraged: {
  35061. height: math.unit(1.331, "feet"),
  35062. name: "Eyes (Enraged)",
  35063. image: {
  35064. source: "./media/characters/saphinara/eyes-enraged.svg"
  35065. },
  35066. form: "normal"
  35067. },
  35068. trueFormSide: {
  35069. height: math.unit(200, "feet"),
  35070. weight: math.unit(1e7, "tons"),
  35071. name: "Side",
  35072. image: {
  35073. source: "./media/characters/saphinara/true-form-side.svg",
  35074. extra: 1399/770,
  35075. bottom: 97/1496
  35076. },
  35077. form: "true-form",
  35078. default: true
  35079. },
  35080. trueFormMaw: {
  35081. height: math.unit(71.5, "feet"),
  35082. name: "Maw",
  35083. image: {
  35084. source: "./media/characters/saphinara/true-form-maw.svg",
  35085. extra: 2302/1453,
  35086. bottom: 0/2302
  35087. },
  35088. form: "true-form"
  35089. },
  35090. meowberusSide: {
  35091. height: math.unit(75, "feet"),
  35092. weight: math.unit(180000, "kg"),
  35093. preyCapacity: math.unit(50000, "people"),
  35094. name: "Side",
  35095. image: {
  35096. source: "./media/characters/saphinara/meowberus-side.svg",
  35097. extra: 1400/711,
  35098. bottom: 126/1526
  35099. },
  35100. form: "meowberus",
  35101. extraAttributes: {
  35102. "pawArea": {
  35103. name: "Paw Size",
  35104. power: 2,
  35105. type: "area",
  35106. base: math.unit(35, "m^2")
  35107. }
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Normal",
  35114. height: math.unit(15 + 7/12, "feet"),
  35115. default: true,
  35116. form: "normal"
  35117. },
  35118. {
  35119. name: "Angry",
  35120. height: math.unit(30 + 6/12, "feet"),
  35121. form: "normal"
  35122. },
  35123. {
  35124. name: "Enraged",
  35125. height: math.unit(102 + 1/12, "feet"),
  35126. form: "normal"
  35127. },
  35128. {
  35129. name: "True",
  35130. height: math.unit(200, "feet"),
  35131. default: true,
  35132. form: "true-form"
  35133. },
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(75, "feet"),
  35137. default: true,
  35138. form: "meowberus"
  35139. },
  35140. ],
  35141. {
  35142. "normal": {
  35143. name: "Normal",
  35144. default: true
  35145. },
  35146. "true-form": {
  35147. name: "True Form"
  35148. },
  35149. "meowberus": {
  35150. name: "Meowberus",
  35151. },
  35152. }
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(6 + 8/12, "feet"),
  35159. weight: math.unit(300, "lb"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/jrain/front.svg",
  35163. extra: 3039/2865,
  35164. bottom: 399/3438
  35165. }
  35166. },
  35167. back: {
  35168. height: math.unit(6 + 8/12, "feet"),
  35169. weight: math.unit(300, "lb"),
  35170. name: "Back",
  35171. image: {
  35172. source: "./media/characters/jrain/back.svg",
  35173. extra: 3089/2938,
  35174. bottom: 172/3261
  35175. }
  35176. },
  35177. head: {
  35178. height: math.unit(2.14, "feet"),
  35179. name: "Head",
  35180. image: {
  35181. source: "./media/characters/jrain/head.svg"
  35182. }
  35183. },
  35184. maw: {
  35185. height: math.unit(1.77, "feet"),
  35186. name: "Maw",
  35187. image: {
  35188. source: "./media/characters/jrain/maw.svg"
  35189. }
  35190. },
  35191. leftHand: {
  35192. height: math.unit(1.1, "feet"),
  35193. name: "Left Hand",
  35194. image: {
  35195. source: "./media/characters/jrain/left-hand.svg"
  35196. }
  35197. },
  35198. rightHand: {
  35199. height: math.unit(1.1, "feet"),
  35200. name: "Right Hand",
  35201. image: {
  35202. source: "./media/characters/jrain/right-hand.svg"
  35203. }
  35204. },
  35205. eye: {
  35206. height: math.unit(0.35, "feet"),
  35207. name: "Eye",
  35208. image: {
  35209. source: "./media/characters/jrain/eye.svg"
  35210. }
  35211. },
  35212. },
  35213. [
  35214. {
  35215. name: "Normal",
  35216. height: math.unit(6 + 8/12, "feet"),
  35217. default: true
  35218. },
  35219. {
  35220. name: "Casually Large",
  35221. height: math.unit(25, "feet")
  35222. },
  35223. {
  35224. name: "Giant",
  35225. height: math.unit(100, "feet")
  35226. },
  35227. {
  35228. name: "Kaiju",
  35229. height: math.unit(300, "feet")
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35235. {
  35236. dragon: {
  35237. height: math.unit(5, "meters"),
  35238. name: "Dragon",
  35239. image: {
  35240. source: "./media/characters/sabrina/dragon.svg",
  35241. extra: 3670 / 2365,
  35242. bottom: 333 / 4003
  35243. }
  35244. },
  35245. gryphon: {
  35246. height: math.unit(3, "meters"),
  35247. name: "Gryphon",
  35248. image: {
  35249. source: "./media/characters/sabrina/gryphon.svg",
  35250. extra: 1576 / 945,
  35251. bottom: 71 / 1647
  35252. }
  35253. },
  35254. snake: {
  35255. height: math.unit(12, "meters"),
  35256. name: "Snake",
  35257. image: {
  35258. source: "./media/characters/sabrina/snake.svg",
  35259. extra: 1758 / 1320,
  35260. bottom: 186 / 1944
  35261. }
  35262. },
  35263. collar: {
  35264. height: math.unit(1.86, "meters"),
  35265. name: "Collar",
  35266. image: {
  35267. source: "./media/characters/sabrina/collar.svg"
  35268. }
  35269. },
  35270. eye: {
  35271. height: math.unit(0.53, "meters"),
  35272. name: "Eye",
  35273. image: {
  35274. source: "./media/characters/sabrina/eye.svg"
  35275. }
  35276. },
  35277. foot: {
  35278. height: math.unit(1.86, "meters"),
  35279. name: "Foot",
  35280. image: {
  35281. source: "./media/characters/sabrina/foot.svg"
  35282. }
  35283. },
  35284. hand: {
  35285. height: math.unit(1.32, "meters"),
  35286. name: "Hand",
  35287. image: {
  35288. source: "./media/characters/sabrina/hand.svg"
  35289. }
  35290. },
  35291. head: {
  35292. height: math.unit(2.44, "meters"),
  35293. name: "Head",
  35294. image: {
  35295. source: "./media/characters/sabrina/head.svg"
  35296. }
  35297. },
  35298. headAngry: {
  35299. height: math.unit(2.44, "meters"),
  35300. name: "Head (Angry))",
  35301. image: {
  35302. source: "./media/characters/sabrina/head-angry.svg"
  35303. }
  35304. },
  35305. maw: {
  35306. height: math.unit(1.65, "meters"),
  35307. name: "Maw",
  35308. image: {
  35309. source: "./media/characters/sabrina/maw.svg"
  35310. }
  35311. },
  35312. spikes: {
  35313. height: math.unit(1.69, "meters"),
  35314. name: "Spikes",
  35315. image: {
  35316. source: "./media/characters/sabrina/spikes.svg"
  35317. }
  35318. },
  35319. stomach: {
  35320. height: math.unit(1.15, "meters"),
  35321. name: "Stomach",
  35322. image: {
  35323. source: "./media/characters/sabrina/stomach.svg"
  35324. }
  35325. },
  35326. tongue: {
  35327. height: math.unit(1.27, "meters"),
  35328. name: "Tongue",
  35329. image: {
  35330. source: "./media/characters/sabrina/tongue.svg"
  35331. }
  35332. },
  35333. wingDorsal: {
  35334. height: math.unit(4.85, "meters"),
  35335. name: "Wing (Dorsal)",
  35336. image: {
  35337. source: "./media/characters/sabrina/wing-dorsal.svg"
  35338. }
  35339. },
  35340. wingVentral: {
  35341. height: math.unit(4.85, "meters"),
  35342. name: "Wing (Ventral)",
  35343. image: {
  35344. source: "./media/characters/sabrina/wing-ventral.svg"
  35345. }
  35346. },
  35347. },
  35348. [
  35349. {
  35350. name: "Normal",
  35351. height: math.unit(5, "meters"),
  35352. default: true
  35353. },
  35354. ]
  35355. ))
  35356. characterMakers.push(() => makeCharacter(
  35357. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35358. {
  35359. frontMaid: {
  35360. height: math.unit(5 + 5/12, "feet"),
  35361. weight: math.unit(130, "lb"),
  35362. name: "Front (Maid)",
  35363. image: {
  35364. source: "./media/characters/midnight-tales/front-maid.svg",
  35365. extra: 489/454,
  35366. bottom: 61/550
  35367. }
  35368. },
  35369. frontFormal: {
  35370. height: math.unit(5 + 5/12, "feet"),
  35371. weight: math.unit(130, "lb"),
  35372. name: "Front (Formal)",
  35373. image: {
  35374. source: "./media/characters/midnight-tales/front-formal.svg",
  35375. extra: 489/454,
  35376. bottom: 61/550
  35377. }
  35378. },
  35379. back: {
  35380. height: math.unit(5 + 5/12, "feet"),
  35381. weight: math.unit(130, "lb"),
  35382. name: "Back",
  35383. image: {
  35384. source: "./media/characters/midnight-tales/back.svg",
  35385. extra: 498/456,
  35386. bottom: 33/531
  35387. }
  35388. },
  35389. frontBeast: {
  35390. height: math.unit(40, "feet"),
  35391. weight: math.unit(64000, "lb"),
  35392. name: "Front (Beast)",
  35393. image: {
  35394. source: "./media/characters/midnight-tales/front-beast.svg",
  35395. extra: 927/860,
  35396. bottom: 53/980
  35397. }
  35398. },
  35399. backBeast: {
  35400. height: math.unit(40, "feet"),
  35401. weight: math.unit(64000, "lb"),
  35402. name: "Back (Beast)",
  35403. image: {
  35404. source: "./media/characters/midnight-tales/back-beast.svg",
  35405. extra: 929/855,
  35406. bottom: 16/945
  35407. }
  35408. },
  35409. footBeast: {
  35410. height: math.unit(6.7, "feet"),
  35411. name: "Foot (Beast)",
  35412. image: {
  35413. source: "./media/characters/midnight-tales/foot-beast.svg"
  35414. }
  35415. },
  35416. headBeast: {
  35417. height: math.unit(8, "feet"),
  35418. name: "Head (Beast)",
  35419. image: {
  35420. source: "./media/characters/midnight-tales/head-beast.svg"
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Normal",
  35427. height: math.unit(5 + 5 / 12, "feet"),
  35428. default: true
  35429. },
  35430. {
  35431. name: "Macro",
  35432. height: math.unit(25, "feet")
  35433. },
  35434. ]
  35435. ))
  35436. characterMakers.push(() => makeCharacter(
  35437. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35438. {
  35439. front: {
  35440. height: math.unit(5 + 10/12, "feet"),
  35441. name: "Front",
  35442. image: {
  35443. source: "./media/characters/argon/front.svg",
  35444. extra: 2009/1935,
  35445. bottom: 118/2127
  35446. }
  35447. },
  35448. back: {
  35449. height: math.unit(5 + 10/12, "feet"),
  35450. name: "Back",
  35451. image: {
  35452. source: "./media/characters/argon/back.svg",
  35453. extra: 2047/1992,
  35454. bottom: 20/2067
  35455. }
  35456. },
  35457. frontDressed: {
  35458. height: math.unit(5 + 10/12, "feet"),
  35459. name: "Front (Dressed)",
  35460. image: {
  35461. source: "./media/characters/argon/front-dressed.svg",
  35462. extra: 2009/1935,
  35463. bottom: 118/2127
  35464. }
  35465. },
  35466. },
  35467. [
  35468. {
  35469. name: "Normal",
  35470. height: math.unit(5 + 10/12, "feet"),
  35471. default: true
  35472. },
  35473. ]
  35474. ))
  35475. characterMakers.push(() => makeCharacter(
  35476. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35477. {
  35478. front: {
  35479. height: math.unit(8 + 6/12, "feet"),
  35480. weight: math.unit(1150, "lb"),
  35481. name: "Front",
  35482. image: {
  35483. source: "./media/characters/kichi/front.svg",
  35484. extra: 1267/1164,
  35485. bottom: 61/1328
  35486. }
  35487. },
  35488. back: {
  35489. height: math.unit(8 + 6/12, "feet"),
  35490. weight: math.unit(1150, "lb"),
  35491. name: "Back",
  35492. image: {
  35493. source: "./media/characters/kichi/back.svg",
  35494. extra: 1273/1166,
  35495. bottom: 33/1306
  35496. }
  35497. },
  35498. },
  35499. [
  35500. {
  35501. name: "Normal",
  35502. height: math.unit(8 + 6/12, "feet"),
  35503. default: true
  35504. },
  35505. ]
  35506. ))
  35507. characterMakers.push(() => makeCharacter(
  35508. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35509. {
  35510. front: {
  35511. height: math.unit(6, "feet"),
  35512. weight: math.unit(210, "lb"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/manetel-greyscale/front.svg",
  35516. extra: 350/312,
  35517. bottom: 8/358
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Micro",
  35524. height: math.unit(2, "inches")
  35525. },
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(6, "feet"),
  35529. default: true
  35530. },
  35531. {
  35532. name: "Minimacro",
  35533. height: math.unit(17, "feet")
  35534. },
  35535. {
  35536. name: "Macro",
  35537. height: math.unit(117, "feet")
  35538. },
  35539. ]
  35540. ))
  35541. characterMakers.push(() => makeCharacter(
  35542. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35543. {
  35544. side: {
  35545. height: math.unit(5 + 1/12, "feet"),
  35546. weight: math.unit(418, "lb"),
  35547. name: "Side",
  35548. image: {
  35549. source: "./media/characters/softpurr/side.svg",
  35550. extra: 1993/1945,
  35551. bottom: 134/2127
  35552. }
  35553. },
  35554. front: {
  35555. height: math.unit(5 + 1/12, "feet"),
  35556. weight: math.unit(418, "lb"),
  35557. name: "Front",
  35558. image: {
  35559. source: "./media/characters/softpurr/front.svg",
  35560. extra: 1950/1856,
  35561. bottom: 174/2124
  35562. }
  35563. },
  35564. paw: {
  35565. height: math.unit(1, "feet"),
  35566. name: "Paw",
  35567. image: {
  35568. source: "./media/characters/softpurr/paw.svg"
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(5 + 1/12, "feet"),
  35576. default: true
  35577. },
  35578. ]
  35579. ))
  35580. characterMakers.push(() => makeCharacter(
  35581. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35582. {
  35583. front: {
  35584. height: math.unit(260, "meters"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/anahita/front.svg",
  35588. extra: 665/635,
  35589. bottom: 89/754
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Macro",
  35596. height: math.unit(260, "meters"),
  35597. default: true
  35598. },
  35599. ]
  35600. ))
  35601. characterMakers.push(() => makeCharacter(
  35602. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35603. {
  35604. front: {
  35605. height: math.unit(4 + 10/12, "feet"),
  35606. weight: math.unit(160, "lb"),
  35607. name: "Front",
  35608. image: {
  35609. source: "./media/characters/chip-mouse/front.svg",
  35610. extra: 3528/3408,
  35611. bottom: 0/3528
  35612. }
  35613. },
  35614. frontNsfw: {
  35615. height: math.unit(4 + 10/12, "feet"),
  35616. weight: math.unit(160, "lb"),
  35617. name: "Front (NSFW)",
  35618. image: {
  35619. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35620. extra: 3528/3408,
  35621. bottom: 0/3528
  35622. }
  35623. },
  35624. },
  35625. [
  35626. {
  35627. name: "Normal",
  35628. height: math.unit(4 + 10/12, "feet"),
  35629. default: true
  35630. },
  35631. ]
  35632. ))
  35633. characterMakers.push(() => makeCharacter(
  35634. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35635. {
  35636. side: {
  35637. height: math.unit(10, "feet"),
  35638. weight: math.unit(14000, "lb"),
  35639. name: "Side",
  35640. image: {
  35641. source: "./media/characters/kremm/side.svg",
  35642. extra: 1390/1053,
  35643. bottom: 90/1480
  35644. }
  35645. },
  35646. gut: {
  35647. height: math.unit(5.8, "feet"),
  35648. name: "Gut",
  35649. image: {
  35650. source: "./media/characters/kremm/gut.svg"
  35651. }
  35652. },
  35653. ass: {
  35654. height: math.unit(6.1, "feet"),
  35655. name: "Ass",
  35656. image: {
  35657. source: "./media/characters/kremm/ass.svg"
  35658. }
  35659. },
  35660. jaws: {
  35661. height: math.unit(2.2, "feet"),
  35662. name: "Jaws",
  35663. image: {
  35664. source: "./media/characters/kremm/jaws.svg"
  35665. }
  35666. },
  35667. dick: {
  35668. height: math.unit(4.26, "feet"),
  35669. name: "Dick",
  35670. image: {
  35671. source: "./media/characters/kremm/dick.svg"
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Normal",
  35678. height: math.unit(10, "feet"),
  35679. default: true
  35680. },
  35681. ]
  35682. ))
  35683. characterMakers.push(() => makeCharacter(
  35684. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35685. {
  35686. front: {
  35687. height: math.unit(30, "stories"),
  35688. name: "Front",
  35689. image: {
  35690. source: "./media/characters/kai/front.svg",
  35691. extra: 1892/1718,
  35692. bottom: 162/2054
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Macro",
  35699. height: math.unit(30, "stories"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35706. {
  35707. front: {
  35708. height: math.unit(6 + 4/12, "feet"),
  35709. weight: math.unit(145, "lb"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/sykes/front.svg",
  35713. extra: 1321 / 1187,
  35714. bottom: 66 / 1387
  35715. }
  35716. },
  35717. back: {
  35718. height: math.unit(6 + 4/12, "feet"),
  35719. weight: math.unit(145, "lb"),
  35720. name: "Back",
  35721. image: {
  35722. source: "./media/characters/sykes/back.svg",
  35723. extra: 1326/1181,
  35724. bottom: 31/1357
  35725. }
  35726. },
  35727. traditionalOutfit: {
  35728. height: math.unit(6 + 4/12, "feet"),
  35729. weight: math.unit(145, "lb"),
  35730. name: "Traditional Outfit",
  35731. image: {
  35732. source: "./media/characters/sykes/traditional-outfit.svg",
  35733. extra: 1321 / 1187,
  35734. bottom: 66 / 1387
  35735. }
  35736. },
  35737. adventureOutfit: {
  35738. height: math.unit(6 + 4/12, "feet"),
  35739. weight: math.unit(145, "lb"),
  35740. name: "Adventure Outfit",
  35741. image: {
  35742. source: "./media/characters/sykes/adventure-outfit.svg",
  35743. extra: 1321 / 1187,
  35744. bottom: 66 / 1387
  35745. }
  35746. },
  35747. handLeft: {
  35748. height: math.unit(0.9, "feet"),
  35749. name: "Hand (Left)",
  35750. image: {
  35751. source: "./media/characters/sykes/hand-left.svg"
  35752. }
  35753. },
  35754. handRight: {
  35755. height: math.unit(0.839, "feet"),
  35756. name: "Hand (Right)",
  35757. image: {
  35758. source: "./media/characters/sykes/hand-right.svg"
  35759. }
  35760. },
  35761. leftFoot: {
  35762. height: math.unit(1.2, "feet"),
  35763. name: "Foot (Left)",
  35764. image: {
  35765. source: "./media/characters/sykes/foot-left.svg"
  35766. }
  35767. },
  35768. rightFoot: {
  35769. height: math.unit(1.2, "feet"),
  35770. name: "Foot (Right)",
  35771. image: {
  35772. source: "./media/characters/sykes/foot-right.svg"
  35773. }
  35774. },
  35775. maw: {
  35776. height: math.unit(1.93, "feet"),
  35777. name: "Maw",
  35778. image: {
  35779. source: "./media/characters/sykes/maw.svg"
  35780. }
  35781. },
  35782. teeth: {
  35783. height: math.unit(0.51, "feet"),
  35784. name: "Teeth",
  35785. image: {
  35786. source: "./media/characters/sykes/teeth.svg"
  35787. }
  35788. },
  35789. tongue: {
  35790. height: math.unit(2.13, "feet"),
  35791. name: "Tongue",
  35792. image: {
  35793. source: "./media/characters/sykes/tongue.svg"
  35794. }
  35795. },
  35796. uvula: {
  35797. height: math.unit(0.16, "feet"),
  35798. name: "Uvula",
  35799. image: {
  35800. source: "./media/characters/sykes/uvula.svg"
  35801. }
  35802. },
  35803. collar: {
  35804. height: math.unit(0.287, "feet"),
  35805. name: "Collar",
  35806. image: {
  35807. source: "./media/characters/sykes/collar.svg"
  35808. }
  35809. },
  35810. tail: {
  35811. height: math.unit(3.8, "feet"),
  35812. name: "Tail",
  35813. image: {
  35814. source: "./media/characters/sykes/tail.svg"
  35815. }
  35816. },
  35817. },
  35818. [
  35819. {
  35820. name: "Shrunken",
  35821. height: math.unit(5, "inches")
  35822. },
  35823. {
  35824. name: "Normal",
  35825. height: math.unit(6 + 4 / 12, "feet"),
  35826. default: true
  35827. },
  35828. {
  35829. name: "Big",
  35830. height: math.unit(15, "feet")
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(5 + 8/12, "feet"),
  35839. weight: math.unit(190, "lb"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/oven-otter/front.svg",
  35843. extra: 1809/1740,
  35844. bottom: 181/1990
  35845. }
  35846. },
  35847. back: {
  35848. height: math.unit(5 + 8/12, "feet"),
  35849. weight: math.unit(190, "lb"),
  35850. name: "Back",
  35851. image: {
  35852. source: "./media/characters/oven-otter/back.svg",
  35853. extra: 1709/1635,
  35854. bottom: 118/1827
  35855. }
  35856. },
  35857. hand: {
  35858. height: math.unit(1.07, "feet"),
  35859. name: "Hand",
  35860. image: {
  35861. source: "./media/characters/oven-otter/hand.svg"
  35862. }
  35863. },
  35864. beans: {
  35865. height: math.unit(1.74, "feet"),
  35866. name: "Beans",
  35867. image: {
  35868. source: "./media/characters/oven-otter/beans.svg"
  35869. }
  35870. },
  35871. },
  35872. [
  35873. {
  35874. name: "Micro",
  35875. height: math.unit(0.5, "inches")
  35876. },
  35877. {
  35878. name: "Normal",
  35879. height: math.unit(5 + 8/12, "feet"),
  35880. default: true
  35881. },
  35882. {
  35883. name: "Macro",
  35884. height: math.unit(250, "feet")
  35885. },
  35886. {
  35887. name: "Really High",
  35888. height: math.unit(420, "feet")
  35889. },
  35890. ]
  35891. ))
  35892. characterMakers.push(() => makeCharacter(
  35893. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35894. {
  35895. front: {
  35896. height: math.unit(5, "meters"),
  35897. weight: math.unit(292000000000000, "kg"),
  35898. name: "Front",
  35899. image: {
  35900. source: "./media/characters/devourer/front.svg",
  35901. extra: 1800/1733,
  35902. bottom: 211/2011
  35903. }
  35904. },
  35905. maw: {
  35906. height: math.unit(1.1, "meter"),
  35907. name: "Maw",
  35908. image: {
  35909. source: "./media/characters/devourer/maw.svg"
  35910. }
  35911. },
  35912. },
  35913. [
  35914. {
  35915. name: "Small",
  35916. height: math.unit(3, "meters")
  35917. },
  35918. {
  35919. name: "Large",
  35920. height: math.unit(5, "meters"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35927. {
  35928. front: {
  35929. height: math.unit(6, "feet"),
  35930. weight: math.unit(400, "lb"),
  35931. name: "Front",
  35932. image: {
  35933. source: "./media/characters/ellarby/front.svg",
  35934. extra: 1909/1763,
  35935. bottom: 80/1989
  35936. }
  35937. },
  35938. back: {
  35939. height: math.unit(6, "feet"),
  35940. weight: math.unit(400, "lb"),
  35941. name: "Back",
  35942. image: {
  35943. source: "./media/characters/ellarby/back.svg",
  35944. extra: 1914/1784,
  35945. bottom: 172/2086
  35946. }
  35947. },
  35948. },
  35949. [
  35950. {
  35951. name: "Mischief",
  35952. height: math.unit(18, "inches")
  35953. },
  35954. {
  35955. name: "Trouble",
  35956. height: math.unit(12, "feet")
  35957. },
  35958. {
  35959. name: "Havoc",
  35960. height: math.unit(200, "feet"),
  35961. default: true
  35962. },
  35963. {
  35964. name: "Pandemonium",
  35965. height: math.unit(1, "mile")
  35966. },
  35967. {
  35968. name: "Catastrophe",
  35969. height: math.unit(100, "miles")
  35970. },
  35971. ]
  35972. ))
  35973. characterMakers.push(() => makeCharacter(
  35974. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35975. {
  35976. front: {
  35977. height: math.unit(4.7, "meters"),
  35978. weight: math.unit(6500, "kg"),
  35979. name: "Front",
  35980. image: {
  35981. source: "./media/characters/vex/front.svg",
  35982. extra: 1288/1140,
  35983. bottom: 100/1388
  35984. }
  35985. },
  35986. },
  35987. [
  35988. {
  35989. name: "Normal",
  35990. height: math.unit(4.7, "meters"),
  35991. default: true
  35992. },
  35993. ]
  35994. ))
  35995. characterMakers.push(() => makeCharacter(
  35996. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35997. {
  35998. normal: {
  35999. height: math.unit(6, "feet"),
  36000. weight: math.unit(350, "lb"),
  36001. name: "Normal",
  36002. image: {
  36003. source: "./media/characters/teshy/normal.svg",
  36004. extra: 1795/1735,
  36005. bottom: 16/1811
  36006. }
  36007. },
  36008. monsterFront: {
  36009. height: math.unit(12, "feet"),
  36010. weight: math.unit(4700, "lb"),
  36011. name: "Monster (Front)",
  36012. image: {
  36013. source: "./media/characters/teshy/monster-front.svg",
  36014. extra: 2042/2034,
  36015. bottom: 128/2170
  36016. }
  36017. },
  36018. monsterSide: {
  36019. height: math.unit(12, "feet"),
  36020. weight: math.unit(4700, "lb"),
  36021. name: "Monster (Side)",
  36022. image: {
  36023. source: "./media/characters/teshy/monster-side.svg",
  36024. extra: 2067/2056,
  36025. bottom: 70/2137
  36026. }
  36027. },
  36028. monsterBack: {
  36029. height: math.unit(12, "feet"),
  36030. weight: math.unit(4700, "lb"),
  36031. name: "Monster (Back)",
  36032. image: {
  36033. source: "./media/characters/teshy/monster-back.svg",
  36034. extra: 1921/1914,
  36035. bottom: 171/2092
  36036. }
  36037. },
  36038. },
  36039. [
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(6, "feet"),
  36043. default: true
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36049. {
  36050. front: {
  36051. height: math.unit(6, "feet"),
  36052. name: "Front",
  36053. image: {
  36054. source: "./media/characters/ramey/front.svg",
  36055. extra: 790/787,
  36056. bottom: 27/817
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Normal",
  36063. height: math.unit(6, "feet"),
  36064. default: true
  36065. },
  36066. ]
  36067. ))
  36068. characterMakers.push(() => makeCharacter(
  36069. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36070. {
  36071. front: {
  36072. height: math.unit(5 + 5/12, "feet"),
  36073. weight: math.unit(120, "lb"),
  36074. name: "Front",
  36075. image: {
  36076. source: "./media/characters/phirae/front.svg",
  36077. extra: 2491/2436,
  36078. bottom: 38/2529
  36079. }
  36080. },
  36081. },
  36082. [
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(5 + 5/12, "feet"),
  36086. default: true
  36087. },
  36088. ]
  36089. ))
  36090. characterMakers.push(() => makeCharacter(
  36091. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36092. {
  36093. front: {
  36094. height: math.unit(5 + 3/12, "feet"),
  36095. name: "Front",
  36096. image: {
  36097. source: "./media/characters/stagglas/front.svg",
  36098. extra: 962/882,
  36099. bottom: 53/1015
  36100. }
  36101. },
  36102. feral: {
  36103. height: math.unit(335, "cm"),
  36104. name: "Feral",
  36105. image: {
  36106. source: "./media/characters/stagglas/feral.svg",
  36107. extra: 1732/1090,
  36108. bottom: 48/1780
  36109. }
  36110. },
  36111. },
  36112. [
  36113. {
  36114. name: "Normal",
  36115. height: math.unit(5 + 3/12, "feet"),
  36116. default: true
  36117. },
  36118. ]
  36119. ))
  36120. characterMakers.push(() => makeCharacter(
  36121. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36122. {
  36123. front: {
  36124. height: math.unit(5 + 4/12, "feet"),
  36125. weight: math.unit(145, "lb"),
  36126. name: "Front",
  36127. image: {
  36128. source: "./media/characters/starra/front.svg",
  36129. extra: 1790/1691,
  36130. bottom: 91/1881
  36131. }
  36132. },
  36133. },
  36134. [
  36135. {
  36136. name: "Normal",
  36137. height: math.unit(5 + 4/12, "feet"),
  36138. default: true
  36139. },
  36140. ]
  36141. ))
  36142. characterMakers.push(() => makeCharacter(
  36143. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36144. {
  36145. front: {
  36146. height: math.unit(2.2, "meters"),
  36147. name: "Front",
  36148. image: {
  36149. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36150. extra: 1248/972,
  36151. bottom: 38/1286
  36152. }
  36153. },
  36154. },
  36155. [
  36156. {
  36157. name: "Normal",
  36158. height: math.unit(2.2, "meters"),
  36159. default: true
  36160. },
  36161. ]
  36162. ))
  36163. characterMakers.push(() => makeCharacter(
  36164. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36165. {
  36166. side: {
  36167. height: math.unit(8 + 2/12, "feet"),
  36168. weight: math.unit(1240, "lb"),
  36169. name: "Side",
  36170. image: {
  36171. source: "./media/characters/mika-valentine/side.svg",
  36172. extra: 2670/2501,
  36173. bottom: 250/2920
  36174. }
  36175. },
  36176. },
  36177. [
  36178. {
  36179. name: "Normal",
  36180. height: math.unit(8 + 2/12, "feet"),
  36181. default: true
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(7 + 2/12, "feet"),
  36190. name: "Front",
  36191. image: {
  36192. source: "./media/characters/xoltol/front.svg",
  36193. extra: 2212/2124,
  36194. bottom: 84/2296
  36195. }
  36196. },
  36197. side: {
  36198. height: math.unit(7 + 2/12, "feet"),
  36199. name: "Side",
  36200. image: {
  36201. source: "./media/characters/xoltol/side.svg",
  36202. extra: 2273/2197,
  36203. bottom: 26/2299
  36204. }
  36205. },
  36206. hand: {
  36207. height: math.unit(2.5, "feet"),
  36208. name: "Hand",
  36209. image: {
  36210. source: "./media/characters/xoltol/hand.svg"
  36211. }
  36212. },
  36213. },
  36214. [
  36215. {
  36216. name: "Small-ish",
  36217. height: math.unit(5 + 11/12, "feet")
  36218. },
  36219. {
  36220. name: "Normal",
  36221. height: math.unit(7 + 2/12, "feet")
  36222. },
  36223. {
  36224. name: "\"Macro\"",
  36225. height: math.unit(14 + 9/12, "feet"),
  36226. default: true
  36227. },
  36228. {
  36229. name: "Alternate Height",
  36230. height: math.unit(20, "feet")
  36231. },
  36232. {
  36233. name: "Actually Macro",
  36234. height: math.unit(100, "feet")
  36235. },
  36236. ]
  36237. ))
  36238. characterMakers.push(() => makeCharacter(
  36239. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36240. {
  36241. front: {
  36242. height: math.unit(5 + 2/12, "feet"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/kotetsu-redwood/front.svg",
  36246. extra: 1053/942,
  36247. bottom: 60/1113
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(5 + 2/12, "feet"),
  36255. default: true
  36256. },
  36257. ]
  36258. ))
  36259. characterMakers.push(() => makeCharacter(
  36260. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36261. {
  36262. front: {
  36263. height: math.unit(2.4, "meters"),
  36264. weight: math.unit(125, "kg"),
  36265. name: "Front",
  36266. image: {
  36267. source: "./media/characters/lilith/front.svg",
  36268. extra: 1590/1513,
  36269. bottom: 203/1793
  36270. }
  36271. },
  36272. },
  36273. [
  36274. {
  36275. name: "Humanoid",
  36276. height: math.unit(2.4, "meters")
  36277. },
  36278. {
  36279. name: "Normal",
  36280. height: math.unit(6, "meters"),
  36281. default: true
  36282. },
  36283. {
  36284. name: "Largest",
  36285. height: math.unit(55, "meters")
  36286. },
  36287. ]
  36288. ))
  36289. characterMakers.push(() => makeCharacter(
  36290. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36291. {
  36292. front: {
  36293. height: math.unit(8 + 4/12, "feet"),
  36294. weight: math.unit(535, "lb"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/beh'kah-bolger/front.svg",
  36298. extra: 1660/1603,
  36299. bottom: 37/1697
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(8 + 4/12, "feet"),
  36307. default: true
  36308. },
  36309. {
  36310. name: "Kaiju",
  36311. height: math.unit(250, "feet")
  36312. },
  36313. {
  36314. name: "Still Growing",
  36315. height: math.unit(10, "miles")
  36316. },
  36317. {
  36318. name: "Continental",
  36319. height: math.unit(5000, "miles")
  36320. },
  36321. {
  36322. name: "Final Form",
  36323. height: math.unit(2500000, "miles")
  36324. },
  36325. ]
  36326. ))
  36327. characterMakers.push(() => makeCharacter(
  36328. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36329. {
  36330. front: {
  36331. height: math.unit(7 + 2/12, "feet"),
  36332. weight: math.unit(230, "kg"),
  36333. name: "Front",
  36334. image: {
  36335. source: "./media/characters/tatyana-milewska/front.svg",
  36336. extra: 1199/1150,
  36337. bottom: 86/1285
  36338. }
  36339. },
  36340. },
  36341. [
  36342. {
  36343. name: "Normal",
  36344. height: math.unit(7 + 2/12, "feet"),
  36345. default: true
  36346. },
  36347. {
  36348. name: "Big",
  36349. height: math.unit(12, "feet")
  36350. },
  36351. {
  36352. name: "Minimacro",
  36353. height: math.unit(20, "feet")
  36354. },
  36355. {
  36356. name: "Macro",
  36357. height: math.unit(120, "feet")
  36358. },
  36359. ]
  36360. ))
  36361. characterMakers.push(() => makeCharacter(
  36362. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36363. {
  36364. front: {
  36365. height: math.unit(7 + 8/12, "feet"),
  36366. weight: math.unit(152, "kg"),
  36367. name: "Front",
  36368. image: {
  36369. source: "./media/characters/helen-arri/front.svg",
  36370. extra: 440/423,
  36371. bottom: 14/454
  36372. }
  36373. },
  36374. back: {
  36375. height: math.unit(7 + 8/12, "feet"),
  36376. weight: math.unit(152, "kg"),
  36377. name: "Back",
  36378. image: {
  36379. source: "./media/characters/helen-arri/back.svg",
  36380. extra: 443/426,
  36381. bottom: 8/451
  36382. }
  36383. },
  36384. },
  36385. [
  36386. {
  36387. name: "Normal",
  36388. height: math.unit(7 + 8/12, "feet"),
  36389. default: true
  36390. },
  36391. {
  36392. name: "Big",
  36393. height: math.unit(14, "feet")
  36394. },
  36395. {
  36396. name: "Minimacro",
  36397. height: math.unit(24, "feet")
  36398. },
  36399. {
  36400. name: "Macro",
  36401. height: math.unit(140, "feet")
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36407. {
  36408. front: {
  36409. height: math.unit(6, "meters"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/ehanu-rehu/front.svg",
  36413. extra: 1800/1800,
  36414. bottom: 59/1859
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(6, "meters"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(7 + 3/12, "feet"),
  36431. name: "Front",
  36432. image: {
  36433. source: "./media/characters/renholder/front.svg",
  36434. extra: 3096/2960,
  36435. bottom: 250/3346
  36436. }
  36437. },
  36438. },
  36439. [
  36440. {
  36441. name: "Normal Bat",
  36442. height: math.unit(7 + 3/12, "feet"),
  36443. default: true
  36444. },
  36445. {
  36446. name: "Slightly Tall Bat",
  36447. height: math.unit(100, "feet")
  36448. },
  36449. {
  36450. name: "Big Bat",
  36451. height: math.unit(1000, "feet")
  36452. },
  36453. {
  36454. name: "City-Sized Bat",
  36455. height: math.unit(200000, "feet")
  36456. },
  36457. {
  36458. name: "Bigger Bat",
  36459. height: math.unit(10000, "miles")
  36460. },
  36461. {
  36462. name: "Solar Sized Bat",
  36463. height: math.unit(100, "AU")
  36464. },
  36465. {
  36466. name: "Galactic Bat",
  36467. height: math.unit(200000, "lightyears")
  36468. },
  36469. {
  36470. name: "Universally Known Bat",
  36471. height: math.unit(1, "universe")
  36472. },
  36473. ]
  36474. ))
  36475. characterMakers.push(() => makeCharacter(
  36476. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36477. {
  36478. front: {
  36479. height: math.unit(6 + 11/12, "feet"),
  36480. weight: math.unit(250, "lb"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/cookiecat/front.svg",
  36484. extra: 893/827,
  36485. bottom: 14/907
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Micro",
  36492. height: math.unit(3, "inches")
  36493. },
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(6 + 11/12, "feet"),
  36497. default: true
  36498. },
  36499. {
  36500. name: "Macro",
  36501. height: math.unit(100, "feet")
  36502. },
  36503. {
  36504. name: "Macro+",
  36505. height: math.unit(404, "feet")
  36506. },
  36507. {
  36508. name: "Megamacro",
  36509. height: math.unit(165, "miles")
  36510. },
  36511. {
  36512. name: "Planetary",
  36513. height: math.unit(4600, "miles")
  36514. },
  36515. ]
  36516. ))
  36517. characterMakers.push(() => makeCharacter(
  36518. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36519. {
  36520. front: {
  36521. height: math.unit(10 + 3/12, "feet"),
  36522. weight: math.unit(1500, "lb"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/tux-kusanagi/front.svg",
  36526. extra: 944/840,
  36527. bottom: 39/983
  36528. }
  36529. },
  36530. back: {
  36531. height: math.unit(10 + 3/12, "feet"),
  36532. weight: math.unit(1500, "lb"),
  36533. name: "Back",
  36534. image: {
  36535. source: "./media/characters/tux-kusanagi/back.svg",
  36536. extra: 941/842,
  36537. bottom: 28/969
  36538. }
  36539. },
  36540. rump: {
  36541. height: math.unit(5.25, "feet"),
  36542. name: "Rump",
  36543. image: {
  36544. source: "./media/characters/tux-kusanagi/rump.svg"
  36545. }
  36546. },
  36547. beak: {
  36548. height: math.unit(1.54, "feet"),
  36549. name: "Beak",
  36550. image: {
  36551. source: "./media/characters/tux-kusanagi/beak.svg"
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Normal",
  36558. height: math.unit(10 + 3/12, "feet"),
  36559. default: true
  36560. },
  36561. ]
  36562. ))
  36563. characterMakers.push(() => makeCharacter(
  36564. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36565. {
  36566. front: {
  36567. height: math.unit(58, "feet"),
  36568. weight: math.unit(200, "tons"),
  36569. name: "Front",
  36570. image: {
  36571. source: "./media/characters/uzarmazari/front.svg",
  36572. extra: 1575/1455,
  36573. bottom: 152/1727
  36574. }
  36575. },
  36576. back: {
  36577. height: math.unit(58, "feet"),
  36578. weight: math.unit(200, "tons"),
  36579. name: "Back",
  36580. image: {
  36581. source: "./media/characters/uzarmazari/back.svg",
  36582. extra: 1585/1510,
  36583. bottom: 157/1742
  36584. }
  36585. },
  36586. head: {
  36587. height: math.unit(26, "feet"),
  36588. name: "Head",
  36589. image: {
  36590. source: "./media/characters/uzarmazari/head.svg"
  36591. }
  36592. },
  36593. },
  36594. [
  36595. {
  36596. name: "Normal",
  36597. height: math.unit(58, "feet"),
  36598. default: true
  36599. },
  36600. ]
  36601. ))
  36602. characterMakers.push(() => makeCharacter(
  36603. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36604. {
  36605. side: {
  36606. height: math.unit(15, "feet"),
  36607. name: "Side",
  36608. image: {
  36609. source: "./media/characters/akitu/side.svg",
  36610. extra: 1421/1321,
  36611. bottom: 157/1578
  36612. }
  36613. },
  36614. front: {
  36615. height: math.unit(15, "feet"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/akitu/front.svg",
  36619. extra: 1435/1326,
  36620. bottom: 232/1667
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Normal",
  36627. height: math.unit(15, "feet"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36634. {
  36635. front: {
  36636. height: math.unit(10 + 8/12, "feet"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/azalie-croixland/front.svg",
  36640. extra: 1972/1856,
  36641. bottom: 31/2003
  36642. }
  36643. },
  36644. },
  36645. [
  36646. {
  36647. name: "Original Height",
  36648. height: math.unit(5 + 4/12, "feet")
  36649. },
  36650. {
  36651. name: "Normal Height",
  36652. height: math.unit(10 + 8/12, "feet"),
  36653. default: true
  36654. },
  36655. ]
  36656. ))
  36657. characterMakers.push(() => makeCharacter(
  36658. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36659. {
  36660. side: {
  36661. height: math.unit(7 + 1/12, "feet"),
  36662. weight: math.unit(245, "lb"),
  36663. name: "Side",
  36664. image: {
  36665. source: "./media/characters/kavus-kazian/side.svg",
  36666. extra: 349/342,
  36667. bottom: 15/364
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Normal",
  36674. height: math.unit(7 + 1/12, "feet"),
  36675. default: true
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36681. {
  36682. normalFront: {
  36683. height: math.unit(5 + 11/12, "feet"),
  36684. name: "Front",
  36685. image: {
  36686. source: "./media/characters/moonlight-rose/normal-front.svg",
  36687. extra: 1980/1825,
  36688. bottom: 18/1998
  36689. },
  36690. form: "normal",
  36691. default: true
  36692. },
  36693. normalBack: {
  36694. height: math.unit(5 + 11/12, "feet"),
  36695. name: "Back",
  36696. image: {
  36697. source: "./media/characters/moonlight-rose/normal-back.svg",
  36698. extra: 2010/1839,
  36699. bottom: 10/2020
  36700. },
  36701. form: "normal"
  36702. },
  36703. demonFront: {
  36704. height: math.unit(1.5, "earths"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/moonlight-rose/demon.svg",
  36708. extra: 1400/1294,
  36709. bottom: 45/1445
  36710. },
  36711. form: "demon",
  36712. default: true
  36713. },
  36714. terraFront: {
  36715. height: math.unit(1.5, "earths"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/moonlight-rose/terra.svg"
  36719. },
  36720. form: "terra",
  36721. default: true
  36722. },
  36723. jupiterFront: {
  36724. height: math.unit(69911*2, "km"),
  36725. name: "Front",
  36726. image: {
  36727. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36728. extra: 1367/1286,
  36729. bottom: 55/1422
  36730. },
  36731. form: "jupiter",
  36732. default: true
  36733. },
  36734. neptuneFront: {
  36735. height: math.unit(24622*2, "feet"),
  36736. name: "Front",
  36737. image: {
  36738. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36739. extra: 1851/1712,
  36740. bottom: 0/1851
  36741. },
  36742. form: "neptune",
  36743. default: true
  36744. },
  36745. },
  36746. [
  36747. {
  36748. name: "\"Natural\" Height",
  36749. height: math.unit(5 + 11/12, "feet"),
  36750. form: "normal"
  36751. },
  36752. {
  36753. name: "Smallest comfortable size",
  36754. height: math.unit(40, "meters"),
  36755. form: "normal"
  36756. },
  36757. {
  36758. name: "Common size",
  36759. height: math.unit(50, "km"),
  36760. form: "normal",
  36761. default: true
  36762. },
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(1.5, "earths"),
  36766. form: "demon",
  36767. default: true
  36768. },
  36769. {
  36770. name: "Universal",
  36771. height: math.unit(15, "universes"),
  36772. form: "demon"
  36773. },
  36774. {
  36775. name: "Earth",
  36776. height: math.unit(1.5, "earths"),
  36777. form: "terra",
  36778. default: true
  36779. },
  36780. {
  36781. name: "Super Earth",
  36782. height: math.unit(67.5, "earths"),
  36783. form: "terra"
  36784. },
  36785. {
  36786. name: "Doesn't fit in a solar system...",
  36787. height: math.unit(1, "galaxy"),
  36788. form: "terra"
  36789. },
  36790. {
  36791. name: "Saturn",
  36792. height: math.unit(58232*2, "km"),
  36793. form: "jupiter"
  36794. },
  36795. {
  36796. name: "Jupiter",
  36797. height: math.unit(69911*2, "km"),
  36798. form: "jupiter",
  36799. default: true
  36800. },
  36801. {
  36802. name: "HD 100546 b",
  36803. height: math.unit(482938, "km"),
  36804. form: "jupiter"
  36805. },
  36806. {
  36807. name: "Enceladus",
  36808. height: math.unit(513*2, "km"),
  36809. form: "neptune"
  36810. },
  36811. {
  36812. name: "Europe",
  36813. height: math.unit(1560*2, "km"),
  36814. form: "neptune"
  36815. },
  36816. {
  36817. name: "Neptune",
  36818. height: math.unit(24622*2, "km"),
  36819. form: "neptune",
  36820. default: true
  36821. },
  36822. {
  36823. name: "CoRoT-9b",
  36824. height: math.unit(75067*2, "km"),
  36825. form: "neptune"
  36826. },
  36827. ],
  36828. {
  36829. "normal": {
  36830. name: "Normal",
  36831. default: true
  36832. },
  36833. "demon": {
  36834. name: "Demon"
  36835. },
  36836. "terra": {
  36837. name: "Terra"
  36838. },
  36839. "jupiter": {
  36840. name: "Jupiter"
  36841. },
  36842. "neptune": {
  36843. name: "Neptune"
  36844. }
  36845. }
  36846. ))
  36847. characterMakers.push(() => makeCharacter(
  36848. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36849. {
  36850. front: {
  36851. height: math.unit(16, "feet"),
  36852. weight: math.unit(610, "kg"),
  36853. name: "Front",
  36854. image: {
  36855. source: "./media/characters/huckle/front.svg",
  36856. extra: 1731/1625,
  36857. bottom: 33/1764
  36858. }
  36859. },
  36860. back: {
  36861. height: math.unit(16, "feet"),
  36862. weight: math.unit(610, "kg"),
  36863. name: "Back",
  36864. image: {
  36865. source: "./media/characters/huckle/back.svg",
  36866. extra: 1738/1651,
  36867. bottom: 37/1775
  36868. }
  36869. },
  36870. laughing: {
  36871. height: math.unit(3.75, "feet"),
  36872. name: "Laughing",
  36873. image: {
  36874. source: "./media/characters/huckle/laughing.svg"
  36875. }
  36876. },
  36877. angry: {
  36878. height: math.unit(4.15, "feet"),
  36879. name: "Angry",
  36880. image: {
  36881. source: "./media/characters/huckle/angry.svg"
  36882. }
  36883. },
  36884. },
  36885. [
  36886. {
  36887. name: "Normal",
  36888. height: math.unit(16, "feet"),
  36889. default: true
  36890. },
  36891. {
  36892. name: "Mini Macro",
  36893. height: math.unit(463, "feet")
  36894. },
  36895. {
  36896. name: "Macro",
  36897. height: math.unit(1680, "meters")
  36898. },
  36899. {
  36900. name: "Mega Macro",
  36901. height: math.unit(175, "km")
  36902. },
  36903. {
  36904. name: "Terra Macro",
  36905. height: math.unit(32, "gigameters")
  36906. },
  36907. {
  36908. name: "Multiverse+",
  36909. height: math.unit(2.56e23, "yottameters")
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36915. {
  36916. front: {
  36917. height: math.unit(6 + 9/12, "feet"),
  36918. weight: math.unit(280, "lb"),
  36919. name: "Front",
  36920. image: {
  36921. source: "./media/characters/candy/front.svg",
  36922. extra: 234/217,
  36923. bottom: 11/245
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Really Small",
  36930. height: math.unit(0.1, "nm")
  36931. },
  36932. {
  36933. name: "Micro",
  36934. height: math.unit(2, "inches")
  36935. },
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(6 + 9/12, "feet"),
  36939. default: true
  36940. },
  36941. {
  36942. name: "Small Macro",
  36943. height: math.unit(69, "feet")
  36944. },
  36945. {
  36946. name: "Macro",
  36947. height: math.unit(160, "feet")
  36948. },
  36949. {
  36950. name: "Megamacro",
  36951. height: math.unit(22000, "miles")
  36952. },
  36953. {
  36954. name: "Gigamacro",
  36955. height: math.unit(50000, "miles")
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(4, "feet"),
  36964. weight: math.unit(90, "lb"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/joey-mcdonald/front.svg",
  36968. extra: 1059/852,
  36969. bottom: 33/1092
  36970. }
  36971. },
  36972. back: {
  36973. height: math.unit(4, "feet"),
  36974. weight: math.unit(90, "lb"),
  36975. name: "Back",
  36976. image: {
  36977. source: "./media/characters/joey-mcdonald/back.svg",
  36978. extra: 1077/879,
  36979. bottom: 5/1082
  36980. }
  36981. },
  36982. frontKobold: {
  36983. height: math.unit(4, "feet"),
  36984. weight: math.unit(100, "lb"),
  36985. name: "Front-kobold",
  36986. image: {
  36987. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36988. extra: 1480/1367,
  36989. bottom: 0/1480
  36990. }
  36991. },
  36992. backKobold: {
  36993. height: math.unit(4, "feet"),
  36994. weight: math.unit(100, "lb"),
  36995. name: "Back-kobold",
  36996. image: {
  36997. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36998. extra: 1449/1361,
  36999. bottom: 0/1449
  37000. }
  37001. },
  37002. },
  37003. [
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(4, "feet"),
  37007. default: true
  37008. },
  37009. ]
  37010. ))
  37011. characterMakers.push(() => makeCharacter(
  37012. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37013. {
  37014. front: {
  37015. height: math.unit(12 + 6/12, "feet"),
  37016. name: "Front",
  37017. image: {
  37018. source: "./media/characters/kass-lockheed/front.svg",
  37019. extra: 354/343,
  37020. bottom: 9/363
  37021. }
  37022. },
  37023. back: {
  37024. height: math.unit(12 + 6/12, "feet"),
  37025. name: "Back",
  37026. image: {
  37027. source: "./media/characters/kass-lockheed/back.svg",
  37028. extra: 364/352,
  37029. bottom: 3/367
  37030. }
  37031. },
  37032. dick: {
  37033. height: math.unit(3.12, "feet"),
  37034. name: "Dick",
  37035. image: {
  37036. source: "./media/characters/kass-lockheed/dick.svg"
  37037. }
  37038. },
  37039. head: {
  37040. height: math.unit(2.6, "feet"),
  37041. name: "Head",
  37042. image: {
  37043. source: "./media/characters/kass-lockheed/head.svg"
  37044. }
  37045. },
  37046. bleh: {
  37047. height: math.unit(2.85, "feet"),
  37048. name: "Bleh",
  37049. image: {
  37050. source: "./media/characters/kass-lockheed/bleh.svg"
  37051. }
  37052. },
  37053. smug: {
  37054. height: math.unit(2.85, "feet"),
  37055. name: "Smug",
  37056. image: {
  37057. source: "./media/characters/kass-lockheed/smug.svg"
  37058. }
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "Normal",
  37064. height: math.unit(12 + 6/12, "feet"),
  37065. default: true
  37066. },
  37067. ]
  37068. ))
  37069. characterMakers.push(() => makeCharacter(
  37070. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37071. {
  37072. front: {
  37073. height: math.unit(6 + 2/12, "feet"),
  37074. name: "Front",
  37075. image: {
  37076. source: "./media/characters/taylor/front.svg",
  37077. extra: 639/495,
  37078. bottom: 12/651
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Normal",
  37085. height: math.unit(6 + 2/12, "feet"),
  37086. default: true
  37087. },
  37088. {
  37089. name: "Big",
  37090. height: math.unit(15, "feet")
  37091. },
  37092. {
  37093. name: "Lorg",
  37094. height: math.unit(80, "feet")
  37095. },
  37096. {
  37097. name: "Too Lorg",
  37098. height: math.unit(120, "feet")
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(15, "feet"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/kaizer/front.svg",
  37110. extra: 1612/1436,
  37111. bottom: 43/1655
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(15, "feet"),
  37119. default: true
  37120. },
  37121. ]
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37125. {
  37126. front: {
  37127. height: math.unit(2, "feet"),
  37128. weight: math.unit(30, "lb"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/sandy/front.svg",
  37132. extra: 1439/1307,
  37133. bottom: 194/1633
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(2, "feet"),
  37141. default: true
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37147. {
  37148. front: {
  37149. height: math.unit(3, "feet"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/mellvi/front.svg",
  37153. extra: 1831/1630,
  37154. bottom: 58/1889
  37155. }
  37156. },
  37157. },
  37158. [
  37159. {
  37160. name: "Normal",
  37161. height: math.unit(3, "feet"),
  37162. default: true
  37163. },
  37164. ]
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37168. {
  37169. front: {
  37170. height: math.unit(5 + 11/12, "feet"),
  37171. weight: math.unit(200, "lb"),
  37172. name: "Front",
  37173. image: {
  37174. source: "./media/characters/shirou/front.svg",
  37175. extra: 2491/2383,
  37176. bottom: 189/2680
  37177. }
  37178. },
  37179. back: {
  37180. height: math.unit(5 + 11/12, "feet"),
  37181. weight: math.unit(200, "lb"),
  37182. name: "Back",
  37183. image: {
  37184. source: "./media/characters/shirou/back.svg",
  37185. extra: 2554/2450,
  37186. bottom: 76/2630
  37187. }
  37188. },
  37189. },
  37190. [
  37191. {
  37192. name: "Normal",
  37193. height: math.unit(5 + 11/12, "feet"),
  37194. default: true
  37195. },
  37196. ]
  37197. ))
  37198. characterMakers.push(() => makeCharacter(
  37199. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37200. {
  37201. front: {
  37202. height: math.unit(6 + 3/12, "feet"),
  37203. weight: math.unit(177, "lb"),
  37204. name: "Front",
  37205. image: {
  37206. source: "./media/characters/noryu/front.svg",
  37207. extra: 973/885,
  37208. bottom: 10/983
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(6 + 3/12, "feet"),
  37216. default: true
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(5 + 6/12, "feet"),
  37225. weight: math.unit(170, "lb"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/mevolas-rubenido/front.svg",
  37229. extra: 2109/1901,
  37230. bottom: 96/2205
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(5 + 6/12, "feet"),
  37238. default: true
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37244. {
  37245. front: {
  37246. height: math.unit(100, "feet"),
  37247. name: "Front",
  37248. image: {
  37249. source: "./media/characters/dee/front.svg",
  37250. extra: 2153/2036,
  37251. bottom: 59/2212
  37252. }
  37253. },
  37254. back: {
  37255. height: math.unit(100, "feet"),
  37256. name: "Back",
  37257. image: {
  37258. source: "./media/characters/dee/back.svg",
  37259. extra: 2183/2058,
  37260. bottom: 75/2258
  37261. }
  37262. },
  37263. foot: {
  37264. height: math.unit(19.43, "feet"),
  37265. name: "Foot",
  37266. image: {
  37267. source: "./media/characters/dee/foot.svg"
  37268. }
  37269. },
  37270. hoof: {
  37271. height: math.unit(20.6, "feet"),
  37272. name: "Hoof",
  37273. image: {
  37274. source: "./media/characters/dee/hoof.svg"
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Macro",
  37281. height: math.unit(100, "feet"),
  37282. default: true
  37283. },
  37284. ]
  37285. ))
  37286. characterMakers.push(() => makeCharacter(
  37287. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37288. {
  37289. front: {
  37290. height: math.unit(5 + 6/12, "feet"),
  37291. name: "Front",
  37292. image: {
  37293. source: "./media/characters/teh/front.svg",
  37294. extra: 1002/847,
  37295. bottom: 62/1064
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(5 + 6/12, "feet"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37309. {
  37310. side: {
  37311. height: math.unit(6 + 1/12, "feet"),
  37312. weight: math.unit(204, "lb"),
  37313. name: "Side",
  37314. image: {
  37315. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37316. extra: 974/775,
  37317. bottom: 169/1143
  37318. }
  37319. },
  37320. sitting: {
  37321. height: math.unit(6 + 2/12, "feet"),
  37322. weight: math.unit(204, "lb"),
  37323. name: "Sitting",
  37324. image: {
  37325. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37326. extra: 1175/964,
  37327. bottom: 378/1553
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(6 + 1/12, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(6, "inches"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/tululi/front.svg",
  37347. extra: 1997/1876,
  37348. bottom: 20/2017
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(6, "inches"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(4 + 1/12, "feet"),
  37365. name: "Front",
  37366. image: {
  37367. source: "./media/characters/star/front.svg",
  37368. extra: 1493/1189,
  37369. bottom: 48/1541
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(4 + 1/12, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37383. {
  37384. front: {
  37385. height: math.unit(6 + 3/12, "feet"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/comet/front.svg",
  37389. extra: 1681/1462,
  37390. bottom: 26/1707
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(6 + 3/12, "feet"),
  37398. default: true
  37399. },
  37400. ]
  37401. ))
  37402. characterMakers.push(() => makeCharacter(
  37403. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37404. {
  37405. front: {
  37406. height: math.unit(950, "feet"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/vortex/front.svg",
  37410. extra: 1497/1434,
  37411. bottom: 56/1553
  37412. }
  37413. },
  37414. maw: {
  37415. height: math.unit(285, "feet"),
  37416. name: "Maw",
  37417. image: {
  37418. source: "./media/characters/vortex/maw.svg"
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Macro",
  37425. height: math.unit(950, "feet"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37432. {
  37433. front: {
  37434. height: math.unit(600, "feet"),
  37435. weight: math.unit(0.02, "grams"),
  37436. name: "Front",
  37437. image: {
  37438. source: "./media/characters/doodle/front.svg",
  37439. extra: 1578/1413,
  37440. bottom: 37/1615
  37441. }
  37442. },
  37443. },
  37444. [
  37445. {
  37446. name: "Macro",
  37447. height: math.unit(600, "feet"),
  37448. default: true
  37449. },
  37450. ]
  37451. ))
  37452. characterMakers.push(() => makeCharacter(
  37453. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37454. {
  37455. front: {
  37456. height: math.unit(6 + 6/12, "feet"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/jai/front.svg",
  37460. extra: 1645/1534,
  37461. bottom: 115/1760
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(6 + 6/12, "feet"),
  37469. default: true
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37475. {
  37476. front: {
  37477. height: math.unit(6 + 8/12, "feet"),
  37478. name: "Front",
  37479. image: {
  37480. source: "./media/characters/pixel/front.svg",
  37481. extra: 1900/1735,
  37482. bottom: 63/1963
  37483. }
  37484. },
  37485. },
  37486. [
  37487. {
  37488. name: "Normal",
  37489. height: math.unit(6 + 8/12, "feet"),
  37490. default: true
  37491. },
  37492. ]
  37493. ))
  37494. characterMakers.push(() => makeCharacter(
  37495. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37496. {
  37497. back: {
  37498. height: math.unit(4 + 1/12, "feet"),
  37499. weight: math.unit(75, "lb"),
  37500. name: "Back",
  37501. image: {
  37502. source: "./media/characters/rhett/back.svg",
  37503. extra: 930/878,
  37504. bottom: 25/955
  37505. }
  37506. },
  37507. front: {
  37508. height: math.unit(4 + 1/12, "feet"),
  37509. weight: math.unit(75, "lb"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/rhett/front.svg",
  37513. extra: 1682/1586,
  37514. bottom: 92/1774
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Micro",
  37521. height: math.unit(8, "inches")
  37522. },
  37523. {
  37524. name: "Tiny",
  37525. height: math.unit(2, "feet")
  37526. },
  37527. {
  37528. name: "Normal",
  37529. height: math.unit(4 + 1/12, "feet"),
  37530. default: true
  37531. },
  37532. ]
  37533. ))
  37534. characterMakers.push(() => makeCharacter(
  37535. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37536. {
  37537. front: {
  37538. height: math.unit(3 + 3/12, "feet"),
  37539. name: "Front",
  37540. image: {
  37541. source: "./media/characters/penny/front.svg",
  37542. extra: 1406/1311,
  37543. bottom: 26/1432
  37544. }
  37545. },
  37546. },
  37547. [
  37548. {
  37549. name: "Normal",
  37550. height: math.unit(3 + 3/12, "feet"),
  37551. default: true
  37552. },
  37553. ]
  37554. ))
  37555. characterMakers.push(() => makeCharacter(
  37556. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37557. {
  37558. front: {
  37559. height: math.unit(4 + 11/12, "feet"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/monty/front.svg",
  37563. extra: 1479/1209,
  37564. bottom: 0/1479
  37565. }
  37566. },
  37567. },
  37568. [
  37569. {
  37570. name: "Normal",
  37571. height: math.unit(4 + 11/12, "feet"),
  37572. default: true
  37573. },
  37574. ]
  37575. ))
  37576. characterMakers.push(() => makeCharacter(
  37577. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37578. {
  37579. front: {
  37580. height: math.unit(8 + 4/12, "feet"),
  37581. name: "Front",
  37582. image: {
  37583. source: "./media/characters/sterling/front.svg",
  37584. extra: 1420/1236,
  37585. bottom: 27/1447
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Normal",
  37592. height: math.unit(8 + 4/12, "feet"),
  37593. default: true
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(15, "feet"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/marble/front.svg",
  37605. extra: 973/937,
  37606. bottom: 32/1005
  37607. }
  37608. },
  37609. },
  37610. [
  37611. {
  37612. name: "Normal",
  37613. height: math.unit(15, "feet"),
  37614. default: true
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37620. {
  37621. front: {
  37622. height: math.unit(3, "inches"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/powder/front.svg",
  37626. extra: 1504/1334,
  37627. bottom: 518/2022
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Normal",
  37634. height: math.unit(3, "inches"),
  37635. default: true
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37641. {
  37642. front: {
  37643. height: math.unit(4 + 5/12, "feet"),
  37644. name: "Front",
  37645. image: {
  37646. source: "./media/characters/joey-raccoon/front.svg",
  37647. extra: 1273/1197,
  37648. bottom: 0/1273
  37649. }
  37650. },
  37651. },
  37652. [
  37653. {
  37654. name: "Normal",
  37655. height: math.unit(4 + 5/12, "feet"),
  37656. default: true
  37657. },
  37658. ]
  37659. ))
  37660. characterMakers.push(() => makeCharacter(
  37661. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37662. {
  37663. front: {
  37664. height: math.unit(8 + 4/12, "feet"),
  37665. name: "Front",
  37666. image: {
  37667. source: "./media/characters/vick/front.svg",
  37668. extra: 2187/2118,
  37669. bottom: 47/2234
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(8 + 4/12, "feet"),
  37677. default: true
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(5 + 5/12, "feet"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/mitsy/front.svg",
  37689. extra: 1842/1695,
  37690. bottom: 0/1842
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(5 + 5/12, "feet"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(6 + 3/12, "feet"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/silvy/front.svg",
  37710. extra: 1995/1836,
  37711. bottom: 225/2220
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(6 + 3/12, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37725. {
  37726. front: {
  37727. height: math.unit(3 + 8/12, "feet"),
  37728. name: "Front",
  37729. image: {
  37730. source: "./media/characters/rodney/front.svg",
  37731. extra: 1956/1747,
  37732. bottom: 31/1987
  37733. }
  37734. },
  37735. frontDressed: {
  37736. height: math.unit(2.9, "feet"),
  37737. name: "Front (Dressed)",
  37738. image: {
  37739. source: "./media/characters/rodney/front-dressed.svg",
  37740. extra: 1382/1241,
  37741. bottom: 385/1767
  37742. }
  37743. },
  37744. },
  37745. [
  37746. {
  37747. name: "Normal",
  37748. height: math.unit(3 + 8/12, "feet"),
  37749. default: true
  37750. },
  37751. ]
  37752. ))
  37753. characterMakers.push(() => makeCharacter(
  37754. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37755. {
  37756. front: {
  37757. height: math.unit(5 + 9/12, "feet"),
  37758. weight: math.unit(194, "lbs"),
  37759. name: "Front",
  37760. image: {
  37761. source: "./media/characters/zakail-sudekai/front.svg",
  37762. extra: 2696/2533,
  37763. bottom: 248/2944
  37764. }
  37765. },
  37766. maw: {
  37767. height: math.unit(1.35, "feet"),
  37768. name: "Maw",
  37769. image: {
  37770. source: "./media/characters/zakail-sudekai/maw.svg"
  37771. }
  37772. },
  37773. },
  37774. [
  37775. {
  37776. name: "Normal",
  37777. height: math.unit(5 + 9/12, "feet"),
  37778. default: true
  37779. },
  37780. ]
  37781. ))
  37782. characterMakers.push(() => makeCharacter(
  37783. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37784. {
  37785. front: {
  37786. height: math.unit(8 + 4/12, "feet"),
  37787. weight: math.unit(1200, "lb"),
  37788. name: "Front",
  37789. image: {
  37790. source: "./media/characters/eleanor/front.svg",
  37791. extra: 1226/1192,
  37792. bottom: 52/1278
  37793. }
  37794. },
  37795. back: {
  37796. height: math.unit(8 + 4/12, "feet"),
  37797. weight: math.unit(1200, "lb"),
  37798. name: "Back",
  37799. image: {
  37800. source: "./media/characters/eleanor/back.svg",
  37801. extra: 1242/1184,
  37802. bottom: 60/1302
  37803. }
  37804. },
  37805. head: {
  37806. height: math.unit(2.62, "feet"),
  37807. name: "Head",
  37808. image: {
  37809. source: "./media/characters/eleanor/head.svg"
  37810. }
  37811. },
  37812. },
  37813. [
  37814. {
  37815. name: "Normal",
  37816. height: math.unit(8 + 4/12, "feet"),
  37817. default: true
  37818. },
  37819. ]
  37820. ))
  37821. characterMakers.push(() => makeCharacter(
  37822. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37823. {
  37824. front: {
  37825. height: math.unit(8 + 4/12, "feet"),
  37826. weight: math.unit(750, "lb"),
  37827. name: "Front",
  37828. image: {
  37829. source: "./media/characters/tanya/front.svg",
  37830. extra: 1749/1615,
  37831. bottom: 33/1782
  37832. }
  37833. },
  37834. },
  37835. [
  37836. {
  37837. name: "Normal",
  37838. height: math.unit(8 + 4/12, "feet"),
  37839. default: true
  37840. },
  37841. ]
  37842. ))
  37843. characterMakers.push(() => makeCharacter(
  37844. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37845. {
  37846. front: {
  37847. height: math.unit(5, "feet"),
  37848. weight: math.unit(225, "lb"),
  37849. name: "Front",
  37850. image: {
  37851. source: "./media/characters/cindy/front.svg",
  37852. extra: 1320/1250,
  37853. bottom: 42/1362
  37854. }
  37855. },
  37856. frontDressed: {
  37857. height: math.unit(5, "feet"),
  37858. weight: math.unit(225, "lb"),
  37859. name: "Front (Dressed)",
  37860. image: {
  37861. source: "./media/characters/cindy/front-dressed.svg",
  37862. extra: 1320/1250,
  37863. bottom: 42/1362
  37864. }
  37865. },
  37866. back: {
  37867. height: math.unit(5, "feet"),
  37868. weight: math.unit(225, "lb"),
  37869. name: "Back",
  37870. image: {
  37871. source: "./media/characters/cindy/back.svg",
  37872. extra: 1384/1346,
  37873. bottom: 14/1398
  37874. }
  37875. },
  37876. },
  37877. [
  37878. {
  37879. name: "Normal",
  37880. height: math.unit(5, "feet"),
  37881. default: true
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(6 + 9/12, "feet"),
  37890. weight: math.unit(440, "lb"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/wilbur-owen/front.svg",
  37894. extra: 1575/1448,
  37895. bottom: 72/1647
  37896. }
  37897. },
  37898. back: {
  37899. height: math.unit(6 + 9/12, "feet"),
  37900. weight: math.unit(440, "lb"),
  37901. name: "Back",
  37902. image: {
  37903. source: "./media/characters/wilbur-owen/back.svg",
  37904. extra: 1578/1445,
  37905. bottom: 36/1614
  37906. }
  37907. },
  37908. },
  37909. [
  37910. {
  37911. name: "Normal",
  37912. height: math.unit(6 + 9/12, "feet"),
  37913. default: true
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(6 + 5/12, "feet"),
  37922. weight: math.unit(650, "lb"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/keegan/front.svg",
  37926. extra: 2387/2198,
  37927. bottom: 33/2420
  37928. }
  37929. },
  37930. side: {
  37931. height: math.unit(6 + 5/12, "feet"),
  37932. weight: math.unit(650, "lb"),
  37933. name: "Side",
  37934. image: {
  37935. source: "./media/characters/keegan/side.svg",
  37936. extra: 2390/2202,
  37937. bottom: 47/2437
  37938. }
  37939. },
  37940. back: {
  37941. height: math.unit(6 + 5/12, "feet"),
  37942. weight: math.unit(650, "lb"),
  37943. name: "Back",
  37944. image: {
  37945. source: "./media/characters/keegan/back.svg",
  37946. extra: 2418/2268,
  37947. bottom: 15/2433
  37948. }
  37949. },
  37950. frontSfw: {
  37951. height: math.unit(6 + 5/12, "feet"),
  37952. weight: math.unit(650, "lb"),
  37953. name: "Front (SFW)",
  37954. image: {
  37955. source: "./media/characters/keegan/front-sfw.svg",
  37956. extra: 2387/2198,
  37957. bottom: 33/2420
  37958. }
  37959. },
  37960. beans: {
  37961. height: math.unit(1.85, "feet"),
  37962. name: "Beans",
  37963. image: {
  37964. source: "./media/characters/keegan/beans.svg"
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Normal",
  37971. height: math.unit(6 + 5/12, "feet"),
  37972. default: true
  37973. },
  37974. ]
  37975. ))
  37976. characterMakers.push(() => makeCharacter(
  37977. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37978. {
  37979. front: {
  37980. height: math.unit(9, "feet"),
  37981. name: "Front",
  37982. image: {
  37983. source: "./media/characters/colton/front.svg",
  37984. extra: 1589/1326,
  37985. bottom: 139/1728
  37986. }
  37987. },
  37988. },
  37989. [
  37990. {
  37991. name: "Normal",
  37992. height: math.unit(9, "feet"),
  37993. default: true
  37994. },
  37995. ]
  37996. ))
  37997. characterMakers.push(() => makeCharacter(
  37998. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37999. {
  38000. front: {
  38001. height: math.unit(2 + 9/12, "feet"),
  38002. name: "Front",
  38003. image: {
  38004. source: "./media/characters/bora/front.svg",
  38005. extra: 1265/1250,
  38006. bottom: 24/1289
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Normal",
  38013. height: math.unit(2 + 9/12, "feet"),
  38014. default: true
  38015. },
  38016. ]
  38017. ))
  38018. characterMakers.push(() => makeCharacter(
  38019. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38020. {
  38021. front: {
  38022. height: math.unit(8, "feet"),
  38023. name: "Front",
  38024. image: {
  38025. source: "./media/characters/myu-myu/front.svg",
  38026. extra: 1949/1857,
  38027. bottom: 90/2039
  38028. }
  38029. },
  38030. },
  38031. [
  38032. {
  38033. name: "Normal",
  38034. height: math.unit(8, "feet"),
  38035. default: true
  38036. },
  38037. {
  38038. name: "Big",
  38039. height: math.unit(15, "feet")
  38040. },
  38041. {
  38042. name: "BIG",
  38043. height: math.unit(25, "feet")
  38044. },
  38045. ]
  38046. ))
  38047. characterMakers.push(() => makeCharacter(
  38048. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38049. {
  38050. side: {
  38051. height: math.unit(7 + 5/12, "feet"),
  38052. weight: math.unit(2800, "lb"),
  38053. name: "Side",
  38054. image: {
  38055. source: "./media/characters/haloren/side.svg",
  38056. extra: 1793/409,
  38057. bottom: 59/1852
  38058. }
  38059. },
  38060. frontPaw: {
  38061. height: math.unit(2.36, "feet"),
  38062. name: "Front paw",
  38063. image: {
  38064. source: "./media/characters/haloren/front-paw.svg"
  38065. }
  38066. },
  38067. hindPaw: {
  38068. height: math.unit(3.18, "feet"),
  38069. name: "Hind paw",
  38070. image: {
  38071. source: "./media/characters/haloren/hind-paw.svg"
  38072. }
  38073. },
  38074. maw: {
  38075. height: math.unit(5.05, "feet"),
  38076. name: "Maw",
  38077. image: {
  38078. source: "./media/characters/haloren/maw.svg"
  38079. }
  38080. },
  38081. dick: {
  38082. height: math.unit(2.90, "feet"),
  38083. name: "Dick",
  38084. image: {
  38085. source: "./media/characters/haloren/dick.svg"
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(7 + 5/12, "feet"),
  38093. default: true
  38094. },
  38095. {
  38096. name: "Enhanced",
  38097. height: math.unit(14 + 3/12, "feet")
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(171, "cm"),
  38106. name: "Front",
  38107. image: {
  38108. source: "./media/characters/kimmy/front.svg",
  38109. extra: 1491/1435,
  38110. bottom: 53/1544
  38111. }
  38112. },
  38113. },
  38114. [
  38115. {
  38116. name: "Small",
  38117. height: math.unit(9, "cm")
  38118. },
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(171, "cm"),
  38122. default: true
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38128. {
  38129. front: {
  38130. height: math.unit(8, "feet"),
  38131. weight: math.unit(300, "lb"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/galeboomer/front.svg",
  38135. extra: 4651/4415,
  38136. bottom: 162/4813
  38137. }
  38138. },
  38139. back: {
  38140. height: math.unit(8, "feet"),
  38141. weight: math.unit(300, "lb"),
  38142. name: "Back",
  38143. image: {
  38144. source: "./media/characters/galeboomer/back.svg",
  38145. extra: 4544/4314,
  38146. bottom: 16/4560
  38147. }
  38148. },
  38149. frontAlt: {
  38150. height: math.unit(8, "feet"),
  38151. weight: math.unit(300, "lb"),
  38152. name: "Front (Alt)",
  38153. image: {
  38154. source: "./media/characters/galeboomer/front-alt.svg",
  38155. extra: 4458/4228,
  38156. bottom: 68/4526
  38157. }
  38158. },
  38159. maw: {
  38160. height: math.unit(1.2, "feet"),
  38161. name: "Maw",
  38162. image: {
  38163. source: "./media/characters/galeboomer/maw.svg"
  38164. }
  38165. },
  38166. },
  38167. [
  38168. {
  38169. name: "Normal",
  38170. height: math.unit(8, "feet"),
  38171. default: true
  38172. },
  38173. ]
  38174. ))
  38175. characterMakers.push(() => makeCharacter(
  38176. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38177. {
  38178. front: {
  38179. height: math.unit(5 + 9/12, "feet"),
  38180. weight: math.unit(120, "lb"),
  38181. name: "Front",
  38182. image: {
  38183. source: "./media/characters/chyr/front.svg",
  38184. extra: 1323/1254,
  38185. bottom: 63/1386
  38186. }
  38187. },
  38188. back: {
  38189. height: math.unit(5 + 9/12, "feet"),
  38190. weight: math.unit(120, "lb"),
  38191. name: "Back",
  38192. image: {
  38193. source: "./media/characters/chyr/back.svg",
  38194. extra: 1323/1252,
  38195. bottom: 48/1371
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Normal",
  38202. height: math.unit(5 + 9/12, "feet"),
  38203. default: true
  38204. },
  38205. ]
  38206. ))
  38207. characterMakers.push(() => makeCharacter(
  38208. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38209. {
  38210. front: {
  38211. height: math.unit(7, "feet"),
  38212. weight: math.unit(310, "lb"),
  38213. name: "Front",
  38214. image: {
  38215. source: "./media/characters/solarus/front.svg",
  38216. extra: 2415/2021,
  38217. bottom: 103/2518
  38218. }
  38219. },
  38220. back: {
  38221. height: math.unit(7, "feet"),
  38222. weight: math.unit(310, "lb"),
  38223. name: "Back",
  38224. image: {
  38225. source: "./media/characters/solarus/back.svg",
  38226. extra: 2463/2089,
  38227. bottom: 79/2542
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(7, "feet"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38241. {
  38242. front: {
  38243. height: math.unit(16, "feet"),
  38244. name: "Front",
  38245. image: {
  38246. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38247. extra: 1844/1780,
  38248. bottom: 58/1902
  38249. }
  38250. },
  38251. winterCoat: {
  38252. height: math.unit(16, "feet"),
  38253. name: "Winter Coat",
  38254. image: {
  38255. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38256. extra: 1807/1775,
  38257. bottom: 69/1876
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(16, "feet"),
  38265. default: true
  38266. },
  38267. {
  38268. name: "Chicago Size",
  38269. height: math.unit(560, "feet")
  38270. },
  38271. ]
  38272. ))
  38273. characterMakers.push(() => makeCharacter(
  38274. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38275. {
  38276. front: {
  38277. height: math.unit(11 + 6/12, "feet"),
  38278. weight: math.unit(1366, "lb"),
  38279. name: "Front",
  38280. image: {
  38281. source: "./media/characters/lexor/front.svg",
  38282. extra: 1560/1481,
  38283. bottom: 211/1771
  38284. }
  38285. },
  38286. back: {
  38287. height: math.unit(11 + 6/12, "feet"),
  38288. weight: math.unit(1366, "lb"),
  38289. name: "Back",
  38290. image: {
  38291. source: "./media/characters/lexor/back.svg",
  38292. extra: 1614/1533,
  38293. bottom: 76/1690
  38294. }
  38295. },
  38296. maw: {
  38297. height: math.unit(3, "feet"),
  38298. name: "Maw",
  38299. image: {
  38300. source: "./media/characters/lexor/maw.svg"
  38301. }
  38302. },
  38303. dick: {
  38304. height: math.unit(2.59, "feet"),
  38305. name: "Dick",
  38306. image: {
  38307. source: "./media/characters/lexor/dick.svg"
  38308. }
  38309. },
  38310. },
  38311. [
  38312. {
  38313. name: "Normal",
  38314. height: math.unit(11 + 6/12, "feet"),
  38315. default: true
  38316. },
  38317. ]
  38318. ))
  38319. characterMakers.push(() => makeCharacter(
  38320. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38321. {
  38322. front: {
  38323. height: math.unit(5 + 8/12, "feet"),
  38324. name: "Front",
  38325. image: {
  38326. source: "./media/characters/magnum/front.svg",
  38327. extra: 942/855,
  38328. bottom: 26/968
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Normal",
  38335. height: math.unit(5 + 8/12, "feet"),
  38336. default: true
  38337. },
  38338. ]
  38339. ))
  38340. characterMakers.push(() => makeCharacter(
  38341. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38342. {
  38343. front: {
  38344. height: math.unit(18 + 4/12, "feet"),
  38345. weight: math.unit(1500, "kg"),
  38346. name: "Front",
  38347. image: {
  38348. source: "./media/characters/solas-sharpsman/front.svg",
  38349. extra: 1698/1589,
  38350. bottom: 0/1698
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(18 + 4/12, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(5 + 5/12, "feet"),
  38367. weight: math.unit(180, "lb"),
  38368. name: "Front",
  38369. image: {
  38370. source: "./media/characters/october/front.svg",
  38371. extra: 1800/1650,
  38372. bottom: 0/1800
  38373. }
  38374. },
  38375. frontNsfw: {
  38376. height: math.unit(5 + 5/12, "feet"),
  38377. weight: math.unit(180, "lb"),
  38378. name: "Front (NSFW)",
  38379. image: {
  38380. source: "./media/characters/october/front-nsfw.svg",
  38381. extra: 1392/1307,
  38382. bottom: 42/1434
  38383. }
  38384. },
  38385. },
  38386. [
  38387. {
  38388. name: "Normal",
  38389. height: math.unit(5 + 5/12, "feet"),
  38390. default: true
  38391. },
  38392. ]
  38393. ))
  38394. characterMakers.push(() => makeCharacter(
  38395. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38396. {
  38397. front: {
  38398. height: math.unit(8 + 6/12, "feet"),
  38399. name: "Front",
  38400. image: {
  38401. source: "./media/characters/essynkardi/front.svg",
  38402. extra: 1914/1846,
  38403. bottom: 22/1936
  38404. }
  38405. },
  38406. },
  38407. [
  38408. {
  38409. name: "Normal",
  38410. height: math.unit(8 + 6/12, "feet"),
  38411. default: true
  38412. },
  38413. ]
  38414. ))
  38415. characterMakers.push(() => makeCharacter(
  38416. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38417. {
  38418. front: {
  38419. height: math.unit(6 + 6/12, "feet"),
  38420. weight: math.unit(7, "lb"),
  38421. name: "Front",
  38422. image: {
  38423. source: "./media/characters/icky/front.svg",
  38424. extra: 813/782,
  38425. bottom: 66/879
  38426. }
  38427. },
  38428. back: {
  38429. height: math.unit(6 + 6/12, "feet"),
  38430. weight: math.unit(7, "lb"),
  38431. name: "Back",
  38432. image: {
  38433. source: "./media/characters/icky/back.svg",
  38434. extra: 754/735,
  38435. bottom: 56/810
  38436. }
  38437. },
  38438. },
  38439. [
  38440. {
  38441. name: "Normal",
  38442. height: math.unit(6 + 6/12, "feet"),
  38443. default: true
  38444. },
  38445. ]
  38446. ))
  38447. characterMakers.push(() => makeCharacter(
  38448. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38449. {
  38450. front: {
  38451. height: math.unit(15, "feet"),
  38452. name: "Front",
  38453. image: {
  38454. source: "./media/characters/rojas/front.svg",
  38455. extra: 1462/1408,
  38456. bottom: 95/1557
  38457. }
  38458. },
  38459. back: {
  38460. height: math.unit(15, "feet"),
  38461. name: "Back",
  38462. image: {
  38463. source: "./media/characters/rojas/back.svg",
  38464. extra: 1023/954,
  38465. bottom: 28/1051
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Normal",
  38472. height: math.unit(15, "feet"),
  38473. default: true
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38479. {
  38480. frontHuman: {
  38481. height: math.unit(5 + 7/12, "feet"),
  38482. name: "Front (Human)",
  38483. image: {
  38484. source: "./media/characters/alek-dryagan/front-human.svg",
  38485. extra: 1687/1667,
  38486. bottom: 69/1756
  38487. }
  38488. },
  38489. backHuman: {
  38490. height: math.unit(5 + 7/12, "feet"),
  38491. name: "Back (Human)",
  38492. image: {
  38493. source: "./media/characters/alek-dryagan/back-human.svg",
  38494. extra: 1670/1649,
  38495. bottom: 65/1735
  38496. }
  38497. },
  38498. frontDemi: {
  38499. height: math.unit(65, "feet"),
  38500. name: "Front (Demi)",
  38501. image: {
  38502. source: "./media/characters/alek-dryagan/front-demi.svg",
  38503. extra: 1669/1642,
  38504. bottom: 49/1718
  38505. }
  38506. },
  38507. backDemi: {
  38508. height: math.unit(65, "feet"),
  38509. name: "Back (Demi)",
  38510. image: {
  38511. source: "./media/characters/alek-dryagan/back-demi.svg",
  38512. extra: 1658/1637,
  38513. bottom: 40/1698
  38514. }
  38515. },
  38516. mawHuman: {
  38517. height: math.unit(0.3, "feet"),
  38518. name: "Maw (Human)",
  38519. image: {
  38520. source: "./media/characters/alek-dryagan/maw-human.svg"
  38521. }
  38522. },
  38523. mawDemi: {
  38524. height: math.unit(3.8, "feet"),
  38525. name: "Maw (Demi)",
  38526. image: {
  38527. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38528. }
  38529. },
  38530. },
  38531. [
  38532. {
  38533. name: "Normal",
  38534. height: math.unit(5 + 7/12, "feet"),
  38535. default: true
  38536. },
  38537. ]
  38538. ))
  38539. characterMakers.push(() => makeCharacter(
  38540. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38541. {
  38542. frontHuman: {
  38543. height: math.unit(5 + 2/12, "feet"),
  38544. name: "Front (Human)",
  38545. image: {
  38546. source: "./media/characters/gen/front-human.svg",
  38547. extra: 1627/1538,
  38548. bottom: 71/1698
  38549. }
  38550. },
  38551. backHuman: {
  38552. height: math.unit(5 + 2/12, "feet"),
  38553. name: "Back (Human)",
  38554. image: {
  38555. source: "./media/characters/gen/back-human.svg",
  38556. extra: 1638/1548,
  38557. bottom: 69/1707
  38558. }
  38559. },
  38560. frontDemi: {
  38561. height: math.unit(5 + 2/12, "feet"),
  38562. name: "Front (Demi)",
  38563. image: {
  38564. source: "./media/characters/gen/front-demi.svg",
  38565. extra: 1627/1538,
  38566. bottom: 71/1698
  38567. }
  38568. },
  38569. backDemi: {
  38570. height: math.unit(5 + 2/12, "feet"),
  38571. name: "Back (Demi)",
  38572. image: {
  38573. source: "./media/characters/gen/back-demi.svg",
  38574. extra: 1638/1548,
  38575. bottom: 69/1707
  38576. }
  38577. },
  38578. },
  38579. [
  38580. {
  38581. name: "Normal",
  38582. height: math.unit(5 + 2/12, "feet"),
  38583. default: true
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38589. {
  38590. frontImp: {
  38591. height: math.unit(1 + 11/12, "feet"),
  38592. name: "Front (Imp)",
  38593. image: {
  38594. source: "./media/characters/max-kobold/front-imp.svg",
  38595. extra: 1238/1134,
  38596. bottom: 81/1319
  38597. }
  38598. },
  38599. backImp: {
  38600. height: math.unit(1 + 11/12, "feet"),
  38601. name: "Back (Imp)",
  38602. image: {
  38603. source: "./media/characters/max-kobold/back-imp.svg",
  38604. extra: 1334/1175,
  38605. bottom: 34/1368
  38606. }
  38607. },
  38608. frontDemi: {
  38609. height: math.unit(5 + 9/12, "feet"),
  38610. name: "Front (Demi)",
  38611. image: {
  38612. source: "./media/characters/max-kobold/front-demi.svg",
  38613. extra: 1715/1685,
  38614. bottom: 54/1769
  38615. }
  38616. },
  38617. backDemi: {
  38618. height: math.unit(5 + 9/12, "feet"),
  38619. name: "Back (Demi)",
  38620. image: {
  38621. source: "./media/characters/max-kobold/back-demi.svg",
  38622. extra: 1752/1729,
  38623. bottom: 41/1793
  38624. }
  38625. },
  38626. handImp: {
  38627. height: math.unit(0.45, "feet"),
  38628. name: "Hand (Imp)",
  38629. image: {
  38630. source: "./media/characters/max-kobold/hand.svg"
  38631. }
  38632. },
  38633. pawImp: {
  38634. height: math.unit(0.46, "feet"),
  38635. name: "Paw (Imp)",
  38636. image: {
  38637. source: "./media/characters/max-kobold/paw.svg"
  38638. }
  38639. },
  38640. handDemi: {
  38641. height: math.unit(0.80, "feet"),
  38642. name: "Hand (Demi)",
  38643. image: {
  38644. source: "./media/characters/max-kobold/hand.svg"
  38645. }
  38646. },
  38647. pawDemi: {
  38648. height: math.unit(1.1, "feet"),
  38649. name: "Paw (Demi)",
  38650. image: {
  38651. source: "./media/characters/max-kobold/paw.svg"
  38652. }
  38653. },
  38654. headImp: {
  38655. height: math.unit(1.33, "feet"),
  38656. name: "Head (Imp)",
  38657. image: {
  38658. source: "./media/characters/max-kobold/head-imp.svg"
  38659. }
  38660. },
  38661. mawImp: {
  38662. height: math.unit(0.75, "feet"),
  38663. name: "Maw (Imp)",
  38664. image: {
  38665. source: "./media/characters/max-kobold/maw-imp.svg"
  38666. }
  38667. },
  38668. mawDemi: {
  38669. height: math.unit(0.42, "feet"),
  38670. name: "Maw (Demi)",
  38671. image: {
  38672. source: "./media/characters/max-kobold/maw-demi.svg"
  38673. }
  38674. },
  38675. },
  38676. [
  38677. {
  38678. name: "Normal",
  38679. height: math.unit(1 + 11/12, "feet"),
  38680. default: true
  38681. },
  38682. ]
  38683. ))
  38684. characterMakers.push(() => makeCharacter(
  38685. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38686. {
  38687. front: {
  38688. height: math.unit(7 + 5/12, "feet"),
  38689. name: "Front",
  38690. image: {
  38691. source: "./media/characters/carbon/front.svg",
  38692. extra: 1754/1689,
  38693. bottom: 65/1819
  38694. }
  38695. },
  38696. back: {
  38697. height: math.unit(7 + 5/12, "feet"),
  38698. name: "Back",
  38699. image: {
  38700. source: "./media/characters/carbon/back.svg",
  38701. extra: 1762/1695,
  38702. bottom: 24/1786
  38703. }
  38704. },
  38705. frontGigantamax: {
  38706. height: math.unit(150, "feet"),
  38707. name: "Front (Gigantamax)",
  38708. image: {
  38709. source: "./media/characters/carbon/front-gigantamax.svg",
  38710. extra: 1826/1669,
  38711. bottom: 59/1885
  38712. }
  38713. },
  38714. backGigantamax: {
  38715. height: math.unit(150, "feet"),
  38716. name: "Back (Gigantamax)",
  38717. image: {
  38718. source: "./media/characters/carbon/back-gigantamax.svg",
  38719. extra: 1796/1653,
  38720. bottom: 53/1849
  38721. }
  38722. },
  38723. maw: {
  38724. height: math.unit(0.48, "feet"),
  38725. name: "Maw",
  38726. image: {
  38727. source: "./media/characters/carbon/maw.svg"
  38728. }
  38729. },
  38730. mawGigantamax: {
  38731. height: math.unit(7.5, "feet"),
  38732. name: "Maw (Gigantamax)",
  38733. image: {
  38734. source: "./media/characters/carbon/maw-gigantamax.svg"
  38735. }
  38736. },
  38737. },
  38738. [
  38739. {
  38740. name: "Normal",
  38741. height: math.unit(7 + 5/12, "feet"),
  38742. default: true
  38743. },
  38744. ]
  38745. ))
  38746. characterMakers.push(() => makeCharacter(
  38747. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38748. {
  38749. front: {
  38750. height: math.unit(6, "feet"),
  38751. name: "Front",
  38752. image: {
  38753. source: "./media/characters/maverick/front.svg",
  38754. extra: 1672/1661,
  38755. bottom: 85/1757
  38756. }
  38757. },
  38758. back: {
  38759. height: math.unit(6, "feet"),
  38760. name: "Back",
  38761. image: {
  38762. source: "./media/characters/maverick/back.svg",
  38763. extra: 1642/1631,
  38764. bottom: 38/1680
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Normal",
  38771. height: math.unit(6, "feet"),
  38772. default: true
  38773. },
  38774. ]
  38775. ))
  38776. characterMakers.push(() => makeCharacter(
  38777. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38778. {
  38779. front: {
  38780. height: math.unit(15, "feet"),
  38781. weight: math.unit(615, "lb"),
  38782. name: "Front",
  38783. image: {
  38784. source: "./media/characters/grockle/front.svg",
  38785. extra: 1535/1427,
  38786. bottom: 56/1591
  38787. }
  38788. },
  38789. },
  38790. [
  38791. {
  38792. name: "Normal",
  38793. height: math.unit(15, "feet"),
  38794. default: true
  38795. },
  38796. {
  38797. name: "Large",
  38798. height: math.unit(150, "feet")
  38799. },
  38800. {
  38801. name: "Macro",
  38802. height: math.unit(1876, "feet")
  38803. },
  38804. {
  38805. name: "Mega Macro",
  38806. height: math.unit(121940, "feet")
  38807. },
  38808. {
  38809. name: "Giga Macro",
  38810. height: math.unit(750, "km")
  38811. },
  38812. {
  38813. name: "Tera Macro",
  38814. height: math.unit(750000, "km")
  38815. },
  38816. {
  38817. name: "Galactic",
  38818. height: math.unit(1.4e5, "km")
  38819. },
  38820. {
  38821. name: "Godlike",
  38822. height: math.unit(9.8e280, "galaxies")
  38823. },
  38824. ]
  38825. ))
  38826. characterMakers.push(() => makeCharacter(
  38827. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38828. {
  38829. front: {
  38830. height: math.unit(11, "meters"),
  38831. weight: math.unit(20, "tonnes"),
  38832. name: "Front",
  38833. image: {
  38834. source: "./media/characters/alistair/front.svg",
  38835. extra: 1265/1009,
  38836. bottom: 93/1358
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Normal",
  38843. height: math.unit(11, "meters"),
  38844. default: true
  38845. },
  38846. ]
  38847. ))
  38848. characterMakers.push(() => makeCharacter(
  38849. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38850. {
  38851. front: {
  38852. height: math.unit(5 + 8/12, "feet"),
  38853. name: "Front",
  38854. image: {
  38855. source: "./media/characters/haruka/front.svg",
  38856. extra: 2012/1952,
  38857. bottom: 0/2012
  38858. }
  38859. },
  38860. },
  38861. [
  38862. {
  38863. name: "Normal",
  38864. height: math.unit(5 + 8/12, "feet"),
  38865. default: true
  38866. },
  38867. ]
  38868. ))
  38869. characterMakers.push(() => makeCharacter(
  38870. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38871. {
  38872. back: {
  38873. height: math.unit(9, "feet"),
  38874. name: "Back",
  38875. image: {
  38876. source: "./media/characters/vivian-sylveon/back.svg",
  38877. extra: 1853/1714,
  38878. bottom: 0/1853
  38879. }
  38880. },
  38881. },
  38882. [
  38883. {
  38884. name: "Normal",
  38885. height: math.unit(9, "feet"),
  38886. default: true
  38887. },
  38888. {
  38889. name: "Macro",
  38890. height: math.unit(500, "feet")
  38891. },
  38892. {
  38893. name: "Megamacro",
  38894. height: math.unit(600, "miles")
  38895. },
  38896. {
  38897. name: "Gigamacro",
  38898. height: math.unit(30000, "miles")
  38899. },
  38900. ]
  38901. ))
  38902. characterMakers.push(() => makeCharacter(
  38903. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38904. {
  38905. anthro: {
  38906. height: math.unit(5 + 10/12, "feet"),
  38907. weight: math.unit(100, "lb"),
  38908. name: "Anthro",
  38909. image: {
  38910. source: "./media/characters/daiki/anthro.svg",
  38911. extra: 1115/1027,
  38912. bottom: 69/1184
  38913. }
  38914. },
  38915. feral: {
  38916. height: math.unit(200, "feet"),
  38917. name: "Feral",
  38918. image: {
  38919. source: "./media/characters/daiki/feral.svg",
  38920. extra: 1256/313,
  38921. bottom: 39/1295
  38922. }
  38923. },
  38924. feralHead: {
  38925. height: math.unit(171, "feet"),
  38926. name: "Feral Head",
  38927. image: {
  38928. source: "./media/characters/daiki/feral-head.svg"
  38929. }
  38930. },
  38931. manaDragon: {
  38932. height: math.unit(170, "meters"),
  38933. name: "Mana-dragon",
  38934. image: {
  38935. source: "./media/characters/daiki/mana-dragon.svg",
  38936. extra: 763/420,
  38937. bottom: 97/860
  38938. }
  38939. },
  38940. },
  38941. [
  38942. {
  38943. name: "Normal",
  38944. height: math.unit(5 + 10/12, "feet"),
  38945. default: true
  38946. },
  38947. ]
  38948. ))
  38949. characterMakers.push(() => makeCharacter(
  38950. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38951. {
  38952. fullyEquippedFront: {
  38953. height: math.unit(3 + 1/12, "feet"),
  38954. weight: math.unit(24, "lb"),
  38955. name: "Fully Equipped (Front)",
  38956. image: {
  38957. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38958. extra: 687/605,
  38959. bottom: 18/705
  38960. }
  38961. },
  38962. fullyEquippedBack: {
  38963. height: math.unit(3 + 1/12, "feet"),
  38964. weight: math.unit(24, "lb"),
  38965. name: "Fully Equipped (Back)",
  38966. image: {
  38967. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38968. extra: 689/590,
  38969. bottom: 18/707
  38970. }
  38971. },
  38972. dailyWear: {
  38973. height: math.unit(3 + 1/12, "feet"),
  38974. weight: math.unit(24, "lb"),
  38975. name: "Daily Wear",
  38976. image: {
  38977. source: "./media/characters/tea-spot/daily-wear.svg",
  38978. extra: 701/620,
  38979. bottom: 21/722
  38980. }
  38981. },
  38982. maidWork: {
  38983. height: math.unit(3 + 1/12, "feet"),
  38984. weight: math.unit(24, "lb"),
  38985. name: "Maid Work",
  38986. image: {
  38987. source: "./media/characters/tea-spot/maid-work.svg",
  38988. extra: 693/609,
  38989. bottom: 15/708
  38990. }
  38991. },
  38992. },
  38993. [
  38994. {
  38995. name: "Normal",
  38996. height: math.unit(3 + 1/12, "feet"),
  38997. default: true
  38998. },
  38999. ]
  39000. ))
  39001. characterMakers.push(() => makeCharacter(
  39002. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39003. {
  39004. front: {
  39005. height: math.unit(175, "cm"),
  39006. weight: math.unit(75, "kg"),
  39007. name: "Front",
  39008. image: {
  39009. source: "./media/characters/chee/front.svg",
  39010. extra: 1796/1740,
  39011. bottom: 40/1836
  39012. }
  39013. },
  39014. },
  39015. [
  39016. {
  39017. name: "Micro-Micro",
  39018. height: math.unit(1, "nm")
  39019. },
  39020. {
  39021. name: "Micro-erst",
  39022. height: math.unit(1, "micrometer")
  39023. },
  39024. {
  39025. name: "Micro-er",
  39026. height: math.unit(1, "cm")
  39027. },
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(175, "cm"),
  39031. default: true
  39032. },
  39033. {
  39034. name: "Macro",
  39035. height: math.unit(100, "m")
  39036. },
  39037. {
  39038. name: "Macro-er",
  39039. height: math.unit(1, "km")
  39040. },
  39041. {
  39042. name: "Macro-erst",
  39043. height: math.unit(10, "km")
  39044. },
  39045. {
  39046. name: "Macro-Macro",
  39047. height: math.unit(100, "km")
  39048. },
  39049. ]
  39050. ))
  39051. characterMakers.push(() => makeCharacter(
  39052. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39053. {
  39054. front: {
  39055. height: math.unit(11 + 9/12, "feet"),
  39056. weight: math.unit(935, "lb"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/kingsley/front.svg",
  39060. extra: 1803/1674,
  39061. bottom: 127/1930
  39062. }
  39063. },
  39064. frontNude: {
  39065. height: math.unit(11 + 9/12, "feet"),
  39066. weight: math.unit(935, "lb"),
  39067. name: "Front (Nude)",
  39068. image: {
  39069. source: "./media/characters/kingsley/front-nude.svg",
  39070. extra: 1803/1674,
  39071. bottom: 127/1930
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(11 + 9/12, "feet"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39085. {
  39086. side: {
  39087. height: math.unit(9, "feet"),
  39088. name: "Side",
  39089. image: {
  39090. source: "./media/characters/rymel/side.svg",
  39091. extra: 792/469,
  39092. bottom: 121/913
  39093. }
  39094. },
  39095. maw: {
  39096. height: math.unit(2.4, "meters"),
  39097. name: "Maw",
  39098. image: {
  39099. source: "./media/characters/rymel/maw.svg"
  39100. }
  39101. },
  39102. },
  39103. [
  39104. {
  39105. name: "House Drake",
  39106. height: math.unit(2, "feet")
  39107. },
  39108. {
  39109. name: "Reduced",
  39110. height: math.unit(4.5, "feet")
  39111. },
  39112. {
  39113. name: "Normal",
  39114. height: math.unit(9, "feet"),
  39115. default: true
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39121. {
  39122. front: {
  39123. height: math.unit(1.74, "meters"),
  39124. weight: math.unit(55, "kg"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/rubus/front.svg",
  39128. extra: 1894/1742,
  39129. bottom: 44/1938
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Normal",
  39136. height: math.unit(1.74, "meters"),
  39137. default: true
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(5 + 2/12, "feet"),
  39146. weight: math.unit(112, "lb"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/cassie-kingston/front.svg",
  39150. extra: 1438/1390,
  39151. bottom: 47/1485
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Normal",
  39158. height: math.unit(5 + 2/12, "feet"),
  39159. default: true
  39160. },
  39161. {
  39162. name: "Macro",
  39163. height: math.unit(128, "feet")
  39164. },
  39165. {
  39166. name: "Megamacro",
  39167. height: math.unit(2.56, "miles")
  39168. },
  39169. ]
  39170. ))
  39171. characterMakers.push(() => makeCharacter(
  39172. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39173. {
  39174. front: {
  39175. height: math.unit(7, "feet"),
  39176. name: "Front",
  39177. image: {
  39178. source: "./media/characters/fox/front.svg",
  39179. extra: 1798/1703,
  39180. bottom: 55/1853
  39181. }
  39182. },
  39183. back: {
  39184. height: math.unit(7, "feet"),
  39185. name: "Back",
  39186. image: {
  39187. source: "./media/characters/fox/back.svg",
  39188. extra: 1748/1649,
  39189. bottom: 32/1780
  39190. }
  39191. },
  39192. head: {
  39193. height: math.unit(1.95, "feet"),
  39194. name: "Head",
  39195. image: {
  39196. source: "./media/characters/fox/head.svg"
  39197. }
  39198. },
  39199. dick: {
  39200. height: math.unit(1.33, "feet"),
  39201. name: "Dick",
  39202. image: {
  39203. source: "./media/characters/fox/dick.svg"
  39204. }
  39205. },
  39206. foot: {
  39207. height: math.unit(1, "feet"),
  39208. name: "Foot",
  39209. image: {
  39210. source: "./media/characters/fox/foot.svg"
  39211. }
  39212. },
  39213. paw: {
  39214. height: math.unit(0.92, "feet"),
  39215. name: "Paw",
  39216. image: {
  39217. source: "./media/characters/fox/paw.svg"
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Small",
  39224. height: math.unit(3, "inches")
  39225. },
  39226. {
  39227. name: "\"Realistic\"",
  39228. height: math.unit(7, "feet")
  39229. },
  39230. {
  39231. name: "Normal",
  39232. height: math.unit(150, "feet"),
  39233. default: true
  39234. },
  39235. {
  39236. name: "BIG",
  39237. height: math.unit(1200, "feet")
  39238. },
  39239. {
  39240. name: "👀",
  39241. height: math.unit(5, "miles")
  39242. },
  39243. {
  39244. name: "👀👀👀",
  39245. height: math.unit(64, "miles")
  39246. },
  39247. ]
  39248. ))
  39249. characterMakers.push(() => makeCharacter(
  39250. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39251. {
  39252. front: {
  39253. height: math.unit(625, "feet"),
  39254. name: "Front",
  39255. image: {
  39256. source: "./media/characters/asonja-rossa/front.svg",
  39257. extra: 1833/1686,
  39258. bottom: 24/1857
  39259. }
  39260. },
  39261. back: {
  39262. height: math.unit(625, "feet"),
  39263. name: "Back",
  39264. image: {
  39265. source: "./media/characters/asonja-rossa/back.svg",
  39266. extra: 1852/1753,
  39267. bottom: 26/1878
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Macro",
  39274. height: math.unit(625, "feet"),
  39275. default: true
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39281. {
  39282. side: {
  39283. height: math.unit(8, "feet"),
  39284. name: "Side",
  39285. image: {
  39286. source: "./media/characters/rezukii/side.svg",
  39287. extra: 979/542,
  39288. bottom: 87/1066
  39289. }
  39290. },
  39291. sitting: {
  39292. height: math.unit(14.6, "feet"),
  39293. name: "Sitting",
  39294. image: {
  39295. source: "./media/characters/rezukii/sitting.svg",
  39296. extra: 1023/813,
  39297. bottom: 45/1068
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Tiny",
  39304. height: math.unit(2, "feet")
  39305. },
  39306. {
  39307. name: "Smol",
  39308. height: math.unit(4, "feet")
  39309. },
  39310. {
  39311. name: "Normal",
  39312. height: math.unit(8, "feet"),
  39313. default: true
  39314. },
  39315. {
  39316. name: "Big",
  39317. height: math.unit(12, "feet")
  39318. },
  39319. {
  39320. name: "Macro",
  39321. height: math.unit(30, "feet")
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39327. {
  39328. front: {
  39329. height: math.unit(14, "feet"),
  39330. weight: math.unit(9.5, "tonnes"),
  39331. name: "Front",
  39332. image: {
  39333. source: "./media/characters/dawnheart/front.svg",
  39334. extra: 2792/2675,
  39335. bottom: 64/2856
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(14, "feet"),
  39343. default: true
  39344. },
  39345. ]
  39346. ))
  39347. characterMakers.push(() => makeCharacter(
  39348. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39349. {
  39350. front: {
  39351. height: math.unit(1.7, "m"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/gladi/front.svg",
  39355. extra: 1460/1362,
  39356. bottom: 19/1479
  39357. }
  39358. },
  39359. back: {
  39360. height: math.unit(1.7, "m"),
  39361. name: "Back",
  39362. image: {
  39363. source: "./media/characters/gladi/back.svg",
  39364. extra: 1459/1357,
  39365. bottom: 12/1471
  39366. }
  39367. },
  39368. feral: {
  39369. height: math.unit(2.05, "m"),
  39370. name: "Feral",
  39371. image: {
  39372. source: "./media/characters/gladi/feral.svg",
  39373. extra: 821/557,
  39374. bottom: 91/912
  39375. }
  39376. },
  39377. },
  39378. [
  39379. {
  39380. name: "Shortest",
  39381. height: math.unit(70, "cm")
  39382. },
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(1.7, "m")
  39386. },
  39387. {
  39388. name: "Macro",
  39389. height: math.unit(10, "m"),
  39390. default: true
  39391. },
  39392. {
  39393. name: "Tallest",
  39394. height: math.unit(200, "m")
  39395. },
  39396. ]
  39397. ))
  39398. characterMakers.push(() => makeCharacter(
  39399. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39400. {
  39401. front: {
  39402. height: math.unit(5 + 7/12, "feet"),
  39403. weight: math.unit(2, "tons"),
  39404. name: "Front",
  39405. image: {
  39406. source: "./media/characters/erdno/front.svg",
  39407. extra: 1234/1129,
  39408. bottom: 35/1269
  39409. }
  39410. },
  39411. angled: {
  39412. height: math.unit(5 + 7/12, "feet"),
  39413. weight: math.unit(2, "tons"),
  39414. name: "Angled",
  39415. image: {
  39416. source: "./media/characters/erdno/angled.svg",
  39417. extra: 1185/1139,
  39418. bottom: 36/1221
  39419. }
  39420. },
  39421. side: {
  39422. height: math.unit(5 + 7/12, "feet"),
  39423. weight: math.unit(2, "tons"),
  39424. name: "Side",
  39425. image: {
  39426. source: "./media/characters/erdno/side.svg",
  39427. extra: 1191/1144,
  39428. bottom: 40/1231
  39429. }
  39430. },
  39431. back: {
  39432. height: math.unit(5 + 7/12, "feet"),
  39433. weight: math.unit(2, "tons"),
  39434. name: "Back",
  39435. image: {
  39436. source: "./media/characters/erdno/back.svg",
  39437. extra: 1202/1146,
  39438. bottom: 17/1219
  39439. }
  39440. },
  39441. frontNsfw: {
  39442. height: math.unit(5 + 7/12, "feet"),
  39443. weight: math.unit(2, "tons"),
  39444. name: "Front (NSFW)",
  39445. image: {
  39446. source: "./media/characters/erdno/front-nsfw.svg",
  39447. extra: 1234/1129,
  39448. bottom: 35/1269
  39449. }
  39450. },
  39451. angledNsfw: {
  39452. height: math.unit(5 + 7/12, "feet"),
  39453. weight: math.unit(2, "tons"),
  39454. name: "Angled (NSFW)",
  39455. image: {
  39456. source: "./media/characters/erdno/angled-nsfw.svg",
  39457. extra: 1185/1139,
  39458. bottom: 36/1221
  39459. }
  39460. },
  39461. sideNsfw: {
  39462. height: math.unit(5 + 7/12, "feet"),
  39463. weight: math.unit(2, "tons"),
  39464. name: "Side (NSFW)",
  39465. image: {
  39466. source: "./media/characters/erdno/side-nsfw.svg",
  39467. extra: 1191/1144,
  39468. bottom: 40/1231
  39469. }
  39470. },
  39471. backNsfw: {
  39472. height: math.unit(5 + 7/12, "feet"),
  39473. weight: math.unit(2, "tons"),
  39474. name: "Back (NSFW)",
  39475. image: {
  39476. source: "./media/characters/erdno/back-nsfw.svg",
  39477. extra: 1202/1146,
  39478. bottom: 17/1219
  39479. }
  39480. },
  39481. frontHyper: {
  39482. height: math.unit(5 + 7/12, "feet"),
  39483. weight: math.unit(2, "tons"),
  39484. name: "Front (Hyper)",
  39485. image: {
  39486. source: "./media/characters/erdno/front-hyper.svg",
  39487. extra: 1298/1136,
  39488. bottom: 35/1333
  39489. }
  39490. },
  39491. },
  39492. [
  39493. {
  39494. name: "Normal",
  39495. height: math.unit(5 + 7/12, "feet"),
  39496. default: true
  39497. },
  39498. {
  39499. name: "Big",
  39500. height: math.unit(5.7, "meters")
  39501. },
  39502. {
  39503. name: "Macro",
  39504. height: math.unit(5.7, "kilometers")
  39505. },
  39506. {
  39507. name: "Megamacro",
  39508. height: math.unit(5.7, "earths")
  39509. },
  39510. ]
  39511. ))
  39512. characterMakers.push(() => makeCharacter(
  39513. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39514. {
  39515. front: {
  39516. height: math.unit(5 + 10/12, "feet"),
  39517. weight: math.unit(150, "lb"),
  39518. name: "Front",
  39519. image: {
  39520. source: "./media/characters/jamie/front.svg",
  39521. extra: 1908/1768,
  39522. bottom: 19/1927
  39523. }
  39524. },
  39525. },
  39526. [
  39527. {
  39528. name: "Minimum",
  39529. height: math.unit(2, "cm")
  39530. },
  39531. {
  39532. name: "Micro",
  39533. height: math.unit(3, "inches")
  39534. },
  39535. {
  39536. name: "Normal",
  39537. height: math.unit(5 + 10/12, "feet"),
  39538. default: true
  39539. },
  39540. {
  39541. name: "Macro",
  39542. height: math.unit(150, "feet")
  39543. },
  39544. {
  39545. name: "Megamacro",
  39546. height: math.unit(10000, "m")
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(2, "meters"),
  39555. weight: math.unit(100, "kg"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/shiron/front.svg",
  39559. extra: 2103/1985,
  39560. bottom: 98/2201
  39561. }
  39562. },
  39563. back: {
  39564. height: math.unit(2, "meters"),
  39565. weight: math.unit(100, "kg"),
  39566. name: "Back",
  39567. image: {
  39568. source: "./media/characters/shiron/back.svg",
  39569. extra: 2110/2015,
  39570. bottom: 89/2199
  39571. }
  39572. },
  39573. hand: {
  39574. height: math.unit(0.96, "feet"),
  39575. name: "Hand",
  39576. image: {
  39577. source: "./media/characters/shiron/hand.svg"
  39578. }
  39579. },
  39580. foot: {
  39581. height: math.unit(1.464, "feet"),
  39582. name: "Foot",
  39583. image: {
  39584. source: "./media/characters/shiron/foot.svg"
  39585. }
  39586. },
  39587. },
  39588. [
  39589. {
  39590. name: "Normal",
  39591. height: math.unit(2, "meters")
  39592. },
  39593. {
  39594. name: "Macro",
  39595. height: math.unit(500, "meters"),
  39596. default: true
  39597. },
  39598. {
  39599. name: "Megamacro",
  39600. height: math.unit(20, "km")
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(6, "feet"),
  39609. name: "Front",
  39610. image: {
  39611. source: "./media/characters/sam/front.svg",
  39612. extra: 849/826,
  39613. bottom: 19/868
  39614. }
  39615. },
  39616. },
  39617. [
  39618. {
  39619. name: "Normal",
  39620. height: math.unit(6, "feet"),
  39621. default: true
  39622. },
  39623. ]
  39624. ))
  39625. characterMakers.push(() => makeCharacter(
  39626. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39627. {
  39628. front: {
  39629. height: math.unit(8 + 4/12, "feet"),
  39630. weight: math.unit(122, "kg"),
  39631. name: "Front",
  39632. image: {
  39633. source: "./media/characters/namori-kurogawa/front.svg",
  39634. extra: 1894/1576,
  39635. bottom: 34/1928
  39636. }
  39637. },
  39638. },
  39639. [
  39640. {
  39641. name: "Normal",
  39642. height: math.unit(8 + 4/12, "feet"),
  39643. default: true
  39644. },
  39645. ]
  39646. ))
  39647. characterMakers.push(() => makeCharacter(
  39648. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39649. {
  39650. front: {
  39651. height: math.unit(9, "feet"),
  39652. weight: math.unit(621, "lb"),
  39653. name: "Front",
  39654. image: {
  39655. source: "./media/characters/unmru/front.svg",
  39656. extra: 1853/1747,
  39657. bottom: 73/1926
  39658. }
  39659. },
  39660. side: {
  39661. height: math.unit(9, "feet"),
  39662. weight: math.unit(621, "lb"),
  39663. name: "Side",
  39664. image: {
  39665. source: "./media/characters/unmru/side.svg",
  39666. extra: 1781/1671,
  39667. bottom: 127/1908
  39668. }
  39669. },
  39670. back: {
  39671. height: math.unit(9, "feet"),
  39672. weight: math.unit(621, "lb"),
  39673. name: "Back",
  39674. image: {
  39675. source: "./media/characters/unmru/back.svg",
  39676. extra: 1894/1765,
  39677. bottom: 75/1969
  39678. }
  39679. },
  39680. dick: {
  39681. height: math.unit(3, "feet"),
  39682. weight: math.unit(35, "lb"),
  39683. name: "Dick",
  39684. image: {
  39685. source: "./media/characters/unmru/dick.svg"
  39686. }
  39687. },
  39688. },
  39689. [
  39690. {
  39691. name: "Normal",
  39692. height: math.unit(9, "feet")
  39693. },
  39694. {
  39695. name: "Natural",
  39696. height: math.unit(27, "feet"),
  39697. default: true
  39698. },
  39699. {
  39700. name: "Giant",
  39701. height: math.unit(90, "feet")
  39702. },
  39703. {
  39704. name: "Kaiju",
  39705. height: math.unit(270, "feet")
  39706. },
  39707. {
  39708. name: "Macro",
  39709. height: math.unit(900, "feet")
  39710. },
  39711. {
  39712. name: "Macro+",
  39713. height: math.unit(2700, "feet")
  39714. },
  39715. {
  39716. name: "Megamacro",
  39717. height: math.unit(9000, "feet")
  39718. },
  39719. {
  39720. name: "City-Crushing",
  39721. height: math.unit(27000, "feet")
  39722. },
  39723. {
  39724. name: "Mountain-Mashing",
  39725. height: math.unit(90000, "feet")
  39726. },
  39727. {
  39728. name: "Earth-Eclipsing",
  39729. height: math.unit(2.7e8, "feet")
  39730. },
  39731. {
  39732. name: "Sol-Swallowing",
  39733. height: math.unit(9e10, "feet")
  39734. },
  39735. {
  39736. name: "Majoris-Munching",
  39737. height: math.unit(2.7e13, "feet")
  39738. },
  39739. ]
  39740. ))
  39741. characterMakers.push(() => makeCharacter(
  39742. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39743. {
  39744. front: {
  39745. height: math.unit(1, "inch"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/squeaks-mouse/front.svg",
  39749. extra: 352/308,
  39750. bottom: 25/377
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Micro",
  39757. height: math.unit(1, "inch"),
  39758. default: true
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39764. {
  39765. side: {
  39766. height: math.unit(35, "feet"),
  39767. name: "Side",
  39768. image: {
  39769. source: "./media/characters/sayko/side.svg",
  39770. extra: 1697/1021,
  39771. bottom: 82/1779
  39772. }
  39773. },
  39774. head: {
  39775. height: math.unit(16, "feet"),
  39776. name: "Head",
  39777. image: {
  39778. source: "./media/characters/sayko/head.svg"
  39779. }
  39780. },
  39781. forepaw: {
  39782. height: math.unit(7.85, "feet"),
  39783. name: "Forepaw",
  39784. image: {
  39785. source: "./media/characters/sayko/forepaw.svg"
  39786. }
  39787. },
  39788. hindpaw: {
  39789. height: math.unit(8.8, "feet"),
  39790. name: "Hindpaw",
  39791. image: {
  39792. source: "./media/characters/sayko/hindpaw.svg"
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Normal",
  39799. height: math.unit(35, "feet"),
  39800. default: true
  39801. },
  39802. {
  39803. name: "Colossus",
  39804. height: math.unit(100, "meters")
  39805. },
  39806. {
  39807. name: "\"Small\" Deity",
  39808. height: math.unit(1, "km")
  39809. },
  39810. {
  39811. name: "\"Large\" Deity",
  39812. height: math.unit(15, "km")
  39813. },
  39814. ]
  39815. ))
  39816. characterMakers.push(() => makeCharacter(
  39817. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39818. {
  39819. front: {
  39820. height: math.unit(6, "feet"),
  39821. weight: math.unit(250, "lb"),
  39822. name: "Front",
  39823. image: {
  39824. source: "./media/characters/mukiro/front.svg",
  39825. extra: 1368/1310,
  39826. bottom: 34/1402
  39827. }
  39828. },
  39829. },
  39830. [
  39831. {
  39832. name: "Normal",
  39833. height: math.unit(6, "feet"),
  39834. default: true
  39835. },
  39836. ]
  39837. ))
  39838. characterMakers.push(() => makeCharacter(
  39839. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39840. {
  39841. front: {
  39842. height: math.unit(12 + 4/12, "feet"),
  39843. name: "Front",
  39844. image: {
  39845. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39846. extra: 1346/1311,
  39847. bottom: 65/1411
  39848. }
  39849. },
  39850. },
  39851. [
  39852. {
  39853. name: "Base",
  39854. height: math.unit(12 + 4/12, "feet"),
  39855. default: true
  39856. },
  39857. {
  39858. name: "Macro",
  39859. height: math.unit(150, "feet")
  39860. },
  39861. {
  39862. name: "Mega",
  39863. height: math.unit(2, "miles")
  39864. },
  39865. {
  39866. name: "Demi God",
  39867. height: math.unit(4, "AU")
  39868. },
  39869. {
  39870. name: "God Size",
  39871. height: math.unit(1, "universe")
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39877. {
  39878. front: {
  39879. height: math.unit(3 + 3/12, "feet"),
  39880. weight: math.unit(88, "lb"),
  39881. name: "Front",
  39882. image: {
  39883. source: "./media/characters/trey/front.svg",
  39884. extra: 1815/1509,
  39885. bottom: 60/1875
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(3 + 3/12, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39899. {
  39900. front: {
  39901. height: math.unit(4, "meters"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/adelonda/front.svg",
  39905. extra: 1077/982,
  39906. bottom: 39/1116
  39907. }
  39908. },
  39909. back: {
  39910. height: math.unit(4, "meters"),
  39911. name: "Back",
  39912. image: {
  39913. source: "./media/characters/adelonda/back.svg",
  39914. extra: 1105/1003,
  39915. bottom: 25/1130
  39916. }
  39917. },
  39918. feral: {
  39919. height: math.unit(40/1.5, "meters"),
  39920. name: "Feral",
  39921. image: {
  39922. source: "./media/characters/adelonda/feral.svg",
  39923. extra: 597/271,
  39924. bottom: 387/984
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Normal",
  39931. height: math.unit(4, "meters"),
  39932. default: true
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(8 + 4/12, "feet"),
  39941. weight: math.unit(670, "lb"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/acadiel/front.svg",
  39945. extra: 1901/1595,
  39946. bottom: 142/2043
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Normal",
  39953. height: math.unit(8 + 4/12, "feet"),
  39954. default: true
  39955. },
  39956. {
  39957. name: "Macro",
  39958. height: math.unit(200, "feet")
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(6 + 2/12, "feet"),
  39967. weight: math.unit(185, "lb"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/kayne-ein/front.svg",
  39971. extra: 1780/1560,
  39972. bottom: 81/1861
  39973. }
  39974. },
  39975. },
  39976. [
  39977. {
  39978. name: "Normal",
  39979. height: math.unit(6 + 2/12, "feet"),
  39980. default: true
  39981. },
  39982. {
  39983. name: "Transformation Stage",
  39984. height: math.unit(15, "feet")
  39985. },
  39986. {
  39987. name: "Macro",
  39988. height: math.unit(150, "feet")
  39989. },
  39990. {
  39991. name: "Earth's Shadow",
  39992. height: math.unit(6200, "miles")
  39993. },
  39994. {
  39995. name: "Universal Demon",
  39996. height: math.unit(28e9, "parsecs")
  39997. },
  39998. {
  39999. name: "Multiverse God",
  40000. height: math.unit(3, "multiverses")
  40001. },
  40002. ]
  40003. ))
  40004. characterMakers.push(() => makeCharacter(
  40005. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40006. {
  40007. front: {
  40008. height: math.unit(5 + 5/12, "feet"),
  40009. name: "Front",
  40010. image: {
  40011. source: "./media/characters/fawn/front.svg",
  40012. extra: 1873/1731,
  40013. bottom: 95/1968
  40014. }
  40015. },
  40016. back: {
  40017. height: math.unit(5 + 5/12, "feet"),
  40018. name: "Back",
  40019. image: {
  40020. source: "./media/characters/fawn/back.svg",
  40021. extra: 1813/1700,
  40022. bottom: 14/1827
  40023. }
  40024. },
  40025. hoof: {
  40026. height: math.unit(1.45, "feet"),
  40027. name: "Hoof",
  40028. image: {
  40029. source: "./media/characters/fawn/hoof.svg"
  40030. }
  40031. },
  40032. },
  40033. [
  40034. {
  40035. name: "Normal",
  40036. height: math.unit(5 + 5/12, "feet"),
  40037. default: true
  40038. },
  40039. ]
  40040. ))
  40041. characterMakers.push(() => makeCharacter(
  40042. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40043. {
  40044. front: {
  40045. height: math.unit(2 + 5/12, "feet"),
  40046. name: "Front",
  40047. image: {
  40048. source: "./media/characters/orion/front.svg",
  40049. extra: 1366/1304,
  40050. bottom: 43/1409
  40051. }
  40052. },
  40053. paw: {
  40054. height: math.unit(0.52, "feet"),
  40055. name: "Paw",
  40056. image: {
  40057. source: "./media/characters/orion/paw.svg"
  40058. }
  40059. },
  40060. },
  40061. [
  40062. {
  40063. name: "Normal",
  40064. height: math.unit(2 + 5/12, "feet"),
  40065. default: true
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40071. {
  40072. front: {
  40073. height: math.unit(5 + 10/12, "feet"),
  40074. name: "Front",
  40075. image: {
  40076. source: "./media/characters/vera/front.svg",
  40077. extra: 1680/1575,
  40078. bottom: 49/1729
  40079. }
  40080. },
  40081. back: {
  40082. height: math.unit(5 + 10/12, "feet"),
  40083. name: "Back",
  40084. image: {
  40085. source: "./media/characters/vera/back.svg",
  40086. extra: 1700/1588,
  40087. bottom: 18/1718
  40088. }
  40089. },
  40090. arcanine: {
  40091. height: math.unit(6 + 8/12, "feet"),
  40092. name: "Arcanine",
  40093. image: {
  40094. source: "./media/characters/vera/arcanine.svg",
  40095. extra: 1590/1511,
  40096. bottom: 71/1661
  40097. }
  40098. },
  40099. maw: {
  40100. height: math.unit(0.82, "feet"),
  40101. name: "Maw",
  40102. image: {
  40103. source: "./media/characters/vera/maw.svg"
  40104. }
  40105. },
  40106. mawArcanine: {
  40107. height: math.unit(0.97, "feet"),
  40108. name: "Maw (Arcanine)",
  40109. image: {
  40110. source: "./media/characters/vera/maw-arcanine.svg"
  40111. }
  40112. },
  40113. paw: {
  40114. height: math.unit(0.75, "feet"),
  40115. name: "Paw",
  40116. image: {
  40117. source: "./media/characters/vera/paw.svg"
  40118. }
  40119. },
  40120. pawprint: {
  40121. height: math.unit(0.52, "feet"),
  40122. name: "Pawprint",
  40123. image: {
  40124. source: "./media/characters/vera/pawprint.svg"
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Normal",
  40131. height: math.unit(5 + 10/12, "feet"),
  40132. default: true
  40133. },
  40134. {
  40135. name: "Macro",
  40136. height: math.unit(75, "feet")
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(4, "feet"),
  40145. weight: math.unit(40, "lb"),
  40146. name: "Front",
  40147. image: {
  40148. source: "./media/characters/orvan-rabbit/front.svg",
  40149. extra: 1896/1642,
  40150. bottom: 29/1925
  40151. }
  40152. },
  40153. },
  40154. [
  40155. {
  40156. name: "Normal",
  40157. height: math.unit(4, "feet"),
  40158. default: true
  40159. },
  40160. ]
  40161. ))
  40162. characterMakers.push(() => makeCharacter(
  40163. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40164. {
  40165. front: {
  40166. height: math.unit(6, "feet"),
  40167. weight: math.unit(168, "lb"),
  40168. name: "Front",
  40169. image: {
  40170. source: "./media/characters/lisa/front.svg",
  40171. extra: 2065/1867,
  40172. bottom: 46/2111
  40173. }
  40174. },
  40175. back: {
  40176. height: math.unit(6, "feet"),
  40177. weight: math.unit(168, "lb"),
  40178. name: "Back",
  40179. image: {
  40180. source: "./media/characters/lisa/back.svg",
  40181. extra: 1982/1838,
  40182. bottom: 29/2011
  40183. }
  40184. },
  40185. maw: {
  40186. height: math.unit(0.81, "feet"),
  40187. name: "Maw",
  40188. image: {
  40189. source: "./media/characters/lisa/maw.svg"
  40190. }
  40191. },
  40192. paw: {
  40193. height: math.unit(0.9, "feet"),
  40194. name: "Paw",
  40195. image: {
  40196. source: "./media/characters/lisa/paw.svg"
  40197. }
  40198. },
  40199. caribousune: {
  40200. height: math.unit(7 + 2/12, "feet"),
  40201. weight: math.unit(268, "lb"),
  40202. name: "Caribousune",
  40203. image: {
  40204. source: "./media/characters/lisa/caribousune.svg",
  40205. extra: 1843/1633,
  40206. bottom: 29/1872
  40207. }
  40208. },
  40209. frontCaribousune: {
  40210. height: math.unit(7 + 2/12, "feet"),
  40211. weight: math.unit(268, "lb"),
  40212. name: "Front (Caribousune)",
  40213. image: {
  40214. source: "./media/characters/lisa/front-caribousune.svg",
  40215. extra: 1818/1638,
  40216. bottom: 52/1870
  40217. }
  40218. },
  40219. sideCaribousune: {
  40220. height: math.unit(7 + 2/12, "feet"),
  40221. weight: math.unit(268, "lb"),
  40222. name: "Side (Caribousune)",
  40223. image: {
  40224. source: "./media/characters/lisa/side-caribousune.svg",
  40225. extra: 1851/1635,
  40226. bottom: 16/1867
  40227. }
  40228. },
  40229. backCaribousune: {
  40230. height: math.unit(7 + 2/12, "feet"),
  40231. weight: math.unit(268, "lb"),
  40232. name: "Back (Caribousune)",
  40233. image: {
  40234. source: "./media/characters/lisa/back-caribousune.svg",
  40235. extra: 1801/1604,
  40236. bottom: 44/1845
  40237. }
  40238. },
  40239. caribou: {
  40240. height: math.unit(7 + 2/12, "feet"),
  40241. weight: math.unit(268, "lb"),
  40242. name: "Caribou",
  40243. image: {
  40244. source: "./media/characters/lisa/caribou.svg",
  40245. extra: 1843/1633,
  40246. bottom: 29/1872
  40247. }
  40248. },
  40249. frontCaribou: {
  40250. height: math.unit(7 + 2/12, "feet"),
  40251. weight: math.unit(268, "lb"),
  40252. name: "Front (Caribou)",
  40253. image: {
  40254. source: "./media/characters/lisa/front-caribou.svg",
  40255. extra: 1818/1638,
  40256. bottom: 52/1870
  40257. }
  40258. },
  40259. sideCaribou: {
  40260. height: math.unit(7 + 2/12, "feet"),
  40261. weight: math.unit(268, "lb"),
  40262. name: "Side (Caribou)",
  40263. image: {
  40264. source: "./media/characters/lisa/side-caribou.svg",
  40265. extra: 1851/1635,
  40266. bottom: 16/1867
  40267. }
  40268. },
  40269. backCaribou: {
  40270. height: math.unit(7 + 2/12, "feet"),
  40271. weight: math.unit(268, "lb"),
  40272. name: "Back (Caribou)",
  40273. image: {
  40274. source: "./media/characters/lisa/back-caribou.svg",
  40275. extra: 1801/1604,
  40276. bottom: 44/1845
  40277. }
  40278. },
  40279. mawCaribou: {
  40280. height: math.unit(1.45, "feet"),
  40281. name: "Maw (Caribou)",
  40282. image: {
  40283. source: "./media/characters/lisa/maw-caribou.svg"
  40284. }
  40285. },
  40286. mawCaribousune: {
  40287. height: math.unit(1.45, "feet"),
  40288. name: "Maw (Caribousune)",
  40289. image: {
  40290. source: "./media/characters/lisa/maw-caribousune.svg"
  40291. }
  40292. },
  40293. pawCaribousune: {
  40294. height: math.unit(1.61, "feet"),
  40295. name: "Paw (Caribou)",
  40296. image: {
  40297. source: "./media/characters/lisa/paw-caribousune.svg"
  40298. }
  40299. },
  40300. },
  40301. [
  40302. {
  40303. name: "Normal",
  40304. height: math.unit(6, "feet")
  40305. },
  40306. {
  40307. name: "God Size",
  40308. height: math.unit(72, "feet"),
  40309. default: true
  40310. },
  40311. {
  40312. name: "Towering",
  40313. height: math.unit(288, "feet")
  40314. },
  40315. {
  40316. name: "City Size",
  40317. height: math.unit(48384, "feet")
  40318. },
  40319. {
  40320. name: "Continental",
  40321. height: math.unit(4200, "miles")
  40322. },
  40323. {
  40324. name: "Planet Eater",
  40325. height: math.unit(42, "earths")
  40326. },
  40327. {
  40328. name: "Star Swallower",
  40329. height: math.unit(42, "solarradii")
  40330. },
  40331. {
  40332. name: "System Swallower",
  40333. height: math.unit(84000, "AU")
  40334. },
  40335. {
  40336. name: "Galaxy Gobbler",
  40337. height: math.unit(42, "galaxies")
  40338. },
  40339. {
  40340. name: "Universe Devourer",
  40341. height: math.unit(42, "universes")
  40342. },
  40343. {
  40344. name: "Multiverse Muncher",
  40345. height: math.unit(42, "multiverses")
  40346. },
  40347. ]
  40348. ))
  40349. characterMakers.push(() => makeCharacter(
  40350. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40351. {
  40352. front: {
  40353. height: math.unit(36, "feet"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/shadow-rat/front.svg",
  40357. extra: 1845/1758,
  40358. bottom: 83/1928
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Macro",
  40365. height: math.unit(36, "feet"),
  40366. default: true
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40372. {
  40373. side: {
  40374. height: math.unit(8, "feet"),
  40375. weight: math.unit(2630, "lb"),
  40376. name: "Side",
  40377. image: {
  40378. source: "./media/characters/torallia/side.svg",
  40379. extra: 2164/2021,
  40380. bottom: 371/2535
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Mortal Interaction",
  40387. height: math.unit(8, "feet")
  40388. },
  40389. {
  40390. name: "Natural",
  40391. height: math.unit(24, "feet"),
  40392. default: true
  40393. },
  40394. {
  40395. name: "Giant",
  40396. height: math.unit(80, "feet")
  40397. },
  40398. {
  40399. name: "Kaiju",
  40400. height: math.unit(240, "feet")
  40401. },
  40402. {
  40403. name: "Macro",
  40404. height: math.unit(800, "feet")
  40405. },
  40406. {
  40407. name: "Macro+",
  40408. height: math.unit(2400, "feet")
  40409. },
  40410. {
  40411. name: "Macro++",
  40412. height: math.unit(8000, "feet")
  40413. },
  40414. {
  40415. name: "City-Crushing",
  40416. height: math.unit(24000, "feet")
  40417. },
  40418. {
  40419. name: "Mountain-Mashing",
  40420. height: math.unit(80000, "feet")
  40421. },
  40422. {
  40423. name: "District Demolisher",
  40424. height: math.unit(240000, "feet")
  40425. },
  40426. {
  40427. name: "Tri-County Terror",
  40428. height: math.unit(800000, "feet")
  40429. },
  40430. {
  40431. name: "State Smasher",
  40432. height: math.unit(2.4e6, "feet")
  40433. },
  40434. {
  40435. name: "Nation Nemesis",
  40436. height: math.unit(8e6, "feet")
  40437. },
  40438. {
  40439. name: "Continent Cracker",
  40440. height: math.unit(2.4e7, "feet")
  40441. },
  40442. {
  40443. name: "Planet-Pillaging",
  40444. height: math.unit(8e7, "feet")
  40445. },
  40446. {
  40447. name: "Earth-Eclipsing",
  40448. height: math.unit(2.4e8, "feet")
  40449. },
  40450. {
  40451. name: "Jovian-Jostling",
  40452. height: math.unit(8e8, "feet")
  40453. },
  40454. {
  40455. name: "Gas Giant Gulper",
  40456. height: math.unit(2.4e9, "feet")
  40457. },
  40458. {
  40459. name: "Astral Annihilator",
  40460. height: math.unit(8e9, "feet")
  40461. },
  40462. {
  40463. name: "Celestial Conqueror",
  40464. height: math.unit(2.4e10, "feet")
  40465. },
  40466. {
  40467. name: "Sol-Swallowing",
  40468. height: math.unit(8e10, "feet")
  40469. },
  40470. {
  40471. name: "Hunter of the Heavens",
  40472. height: math.unit(2.4e13, "feet")
  40473. },
  40474. ]
  40475. ))
  40476. characterMakers.push(() => makeCharacter(
  40477. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40478. {
  40479. front: {
  40480. height: math.unit(6 + 8/12, "feet"),
  40481. weight: math.unit(250, "kilograms"),
  40482. volume: math.unit(28, "liters"),
  40483. name: "Front",
  40484. image: {
  40485. source: "./media/characters/rebecca-pawlson/front.svg",
  40486. extra: 1737/1596,
  40487. bottom: 107/1844
  40488. }
  40489. },
  40490. back: {
  40491. height: math.unit(6 + 8/12, "feet"),
  40492. weight: math.unit(250, "kilograms"),
  40493. volume: math.unit(28, "liters"),
  40494. name: "Back",
  40495. image: {
  40496. source: "./media/characters/rebecca-pawlson/back.svg",
  40497. extra: 1702/1523,
  40498. bottom: 86/1788
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Normal",
  40505. height: math.unit(6 + 8/12, "feet")
  40506. },
  40507. {
  40508. name: "Mini Macro",
  40509. height: math.unit(10, "feet"),
  40510. default: true
  40511. },
  40512. {
  40513. name: "Macro",
  40514. height: math.unit(100, "feet")
  40515. },
  40516. {
  40517. name: "Mega Macro",
  40518. height: math.unit(2500, "feet")
  40519. },
  40520. {
  40521. name: "Giga Macro",
  40522. height: math.unit(50, "miles")
  40523. },
  40524. ]
  40525. ))
  40526. characterMakers.push(() => makeCharacter(
  40527. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40528. {
  40529. front: {
  40530. height: math.unit(7 + 6/12, "feet"),
  40531. weight: math.unit(600, "lb"),
  40532. name: "Front",
  40533. image: {
  40534. source: "./media/characters/moxie-nova/front.svg",
  40535. extra: 1734/1652,
  40536. bottom: 41/1775
  40537. }
  40538. },
  40539. },
  40540. [
  40541. {
  40542. name: "Normal",
  40543. height: math.unit(7 + 6/12, "feet"),
  40544. default: true
  40545. },
  40546. ]
  40547. ))
  40548. characterMakers.push(() => makeCharacter(
  40549. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40550. {
  40551. goat: {
  40552. height: math.unit(4, "feet"),
  40553. weight: math.unit(180, "lb"),
  40554. name: "Goat",
  40555. image: {
  40556. source: "./media/characters/tiffany/goat.svg",
  40557. extra: 1845/1595,
  40558. bottom: 106/1951
  40559. }
  40560. },
  40561. front: {
  40562. height: math.unit(5, "feet"),
  40563. weight: math.unit(150, "lb"),
  40564. name: "Foxcoon",
  40565. image: {
  40566. source: "./media/characters/tiffany/foxcoon.svg",
  40567. extra: 1941/1845,
  40568. bottom: 58/1999
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Normal",
  40575. height: math.unit(5, "feet"),
  40576. default: true
  40577. },
  40578. ]
  40579. ))
  40580. characterMakers.push(() => makeCharacter(
  40581. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40582. {
  40583. front: {
  40584. height: math.unit(8, "feet"),
  40585. weight: math.unit(300, "lb"),
  40586. name: "Front",
  40587. image: {
  40588. source: "./media/characters/raxinath/front.svg",
  40589. extra: 1407/1309,
  40590. bottom: 39/1446
  40591. }
  40592. },
  40593. back: {
  40594. height: math.unit(8, "feet"),
  40595. weight: math.unit(300, "lb"),
  40596. name: "Back",
  40597. image: {
  40598. source: "./media/characters/raxinath/back.svg",
  40599. extra: 1405/1315,
  40600. bottom: 9/1414
  40601. }
  40602. },
  40603. },
  40604. [
  40605. {
  40606. name: "Speck",
  40607. height: math.unit(0.5, "nm")
  40608. },
  40609. {
  40610. name: "Micro",
  40611. height: math.unit(3, "inches")
  40612. },
  40613. {
  40614. name: "Kobold",
  40615. height: math.unit(3, "feet")
  40616. },
  40617. {
  40618. name: "Normal",
  40619. height: math.unit(8, "feet"),
  40620. default: true
  40621. },
  40622. {
  40623. name: "Giant",
  40624. height: math.unit(50, "feet")
  40625. },
  40626. {
  40627. name: "Macro",
  40628. height: math.unit(1000, "feet")
  40629. },
  40630. {
  40631. name: "Megamacro",
  40632. height: math.unit(1, "mile")
  40633. },
  40634. ]
  40635. ))
  40636. characterMakers.push(() => makeCharacter(
  40637. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40638. {
  40639. front: {
  40640. height: math.unit(10, "feet"),
  40641. weight: math.unit(1442, "lb"),
  40642. name: "Front",
  40643. image: {
  40644. source: "./media/characters/mal-dragon/front.svg",
  40645. extra: 1515/1444,
  40646. bottom: 113/1628
  40647. }
  40648. },
  40649. back: {
  40650. height: math.unit(10, "feet"),
  40651. weight: math.unit(1442, "lb"),
  40652. name: "Back",
  40653. image: {
  40654. source: "./media/characters/mal-dragon/back.svg",
  40655. extra: 1527/1434,
  40656. bottom: 25/1552
  40657. }
  40658. },
  40659. },
  40660. [
  40661. {
  40662. name: "Mortal Interaction",
  40663. height: math.unit(10, "feet"),
  40664. default: true
  40665. },
  40666. {
  40667. name: "Large",
  40668. height: math.unit(30, "feet")
  40669. },
  40670. {
  40671. name: "Kaiju",
  40672. height: math.unit(300, "feet")
  40673. },
  40674. {
  40675. name: "Megamacro",
  40676. height: math.unit(10000, "feet")
  40677. },
  40678. {
  40679. name: "Continent Cracker",
  40680. height: math.unit(30000000, "feet")
  40681. },
  40682. {
  40683. name: "Sol-Swallowing",
  40684. height: math.unit(1e11, "feet")
  40685. },
  40686. {
  40687. name: "Light Universal",
  40688. height: math.unit(5, "universes")
  40689. },
  40690. {
  40691. name: "Universe Atoms",
  40692. height: math.unit(1.829e9, "universes")
  40693. },
  40694. {
  40695. name: "Light Multiversal",
  40696. height: math.unit(5, "multiverses")
  40697. },
  40698. {
  40699. name: "Multiverse Atoms",
  40700. height: math.unit(1.829e9, "multiverses")
  40701. },
  40702. {
  40703. name: "Fabric of Time",
  40704. height: math.unit(1e262, "multiverses")
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(9, "feet"),
  40713. weight: math.unit(1050, "lb"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/tabitha/front.svg",
  40717. extra: 2083/1994,
  40718. bottom: 68/2151
  40719. }
  40720. },
  40721. },
  40722. [
  40723. {
  40724. name: "Baseline",
  40725. height: math.unit(9, "feet"),
  40726. default: true
  40727. },
  40728. {
  40729. name: "Giant",
  40730. height: math.unit(90, "feet")
  40731. },
  40732. {
  40733. name: "Macro",
  40734. height: math.unit(900, "feet")
  40735. },
  40736. {
  40737. name: "Megamacro",
  40738. height: math.unit(9000, "feet")
  40739. },
  40740. {
  40741. name: "City-Crushing",
  40742. height: math.unit(27000, "feet")
  40743. },
  40744. {
  40745. name: "Mountain-Mashing",
  40746. height: math.unit(90000, "feet")
  40747. },
  40748. {
  40749. name: "Nation Nemesis",
  40750. height: math.unit(9e6, "feet")
  40751. },
  40752. {
  40753. name: "Continent Cracker",
  40754. height: math.unit(27e6, "feet")
  40755. },
  40756. {
  40757. name: "Earth-Eclipsing",
  40758. height: math.unit(2.7e8, "feet")
  40759. },
  40760. {
  40761. name: "Gas Giant Gulper",
  40762. height: math.unit(2.7e9, "feet")
  40763. },
  40764. {
  40765. name: "Sol-Swallowing",
  40766. height: math.unit(9e10, "feet")
  40767. },
  40768. {
  40769. name: "Galaxy Gulper",
  40770. height: math.unit(9, "galaxies")
  40771. },
  40772. {
  40773. name: "Cosmos Churner",
  40774. height: math.unit(9, "universes")
  40775. },
  40776. ]
  40777. ))
  40778. characterMakers.push(() => makeCharacter(
  40779. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40780. {
  40781. front: {
  40782. height: math.unit(160, "cm"),
  40783. weight: math.unit(55, "kg"),
  40784. name: "Front",
  40785. image: {
  40786. source: "./media/characters/tow/front.svg",
  40787. extra: 1751/1722,
  40788. bottom: 74/1825
  40789. }
  40790. },
  40791. },
  40792. [
  40793. {
  40794. name: "Norm",
  40795. height: math.unit(160, "cm")
  40796. },
  40797. {
  40798. name: "Casual",
  40799. height: math.unit(3200, "m"),
  40800. default: true
  40801. },
  40802. {
  40803. name: "Show-Off",
  40804. height: math.unit(160, "km")
  40805. },
  40806. ]
  40807. ))
  40808. characterMakers.push(() => makeCharacter(
  40809. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40810. {
  40811. front: {
  40812. height: math.unit(7 + 11/12, "feet"),
  40813. weight: math.unit(342.8, "lb"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/vivian-orca-dragon/front.svg",
  40817. extra: 1890/1865,
  40818. bottom: 28/1918
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Micro",
  40825. height: math.unit(5, "inches")
  40826. },
  40827. {
  40828. name: "Normal",
  40829. height: math.unit(7 + 11/12, "feet"),
  40830. default: true
  40831. },
  40832. {
  40833. name: "Macro",
  40834. height: math.unit(395 + 7/12, "feet")
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40840. {
  40841. side: {
  40842. height: math.unit(10, "feet"),
  40843. weight: math.unit(1442, "lb"),
  40844. name: "Side",
  40845. image: {
  40846. source: "./media/characters/lotherakon/side.svg",
  40847. extra: 1604/1497,
  40848. bottom: 89/1693
  40849. }
  40850. },
  40851. },
  40852. [
  40853. {
  40854. name: "Mortal Interaction",
  40855. height: math.unit(10, "feet")
  40856. },
  40857. {
  40858. name: "Large",
  40859. height: math.unit(30, "feet"),
  40860. default: true
  40861. },
  40862. {
  40863. name: "Giant",
  40864. height: math.unit(100, "feet")
  40865. },
  40866. {
  40867. name: "Kaiju",
  40868. height: math.unit(300, "feet")
  40869. },
  40870. {
  40871. name: "Macro",
  40872. height: math.unit(1000, "feet")
  40873. },
  40874. {
  40875. name: "Macro+",
  40876. height: math.unit(3000, "feet")
  40877. },
  40878. {
  40879. name: "Megamacro",
  40880. height: math.unit(10000, "feet")
  40881. },
  40882. {
  40883. name: "City-Crushing",
  40884. height: math.unit(30000, "feet")
  40885. },
  40886. {
  40887. name: "Continent Cracker",
  40888. height: math.unit(30e6, "feet")
  40889. },
  40890. {
  40891. name: "Earth Eclipsing",
  40892. height: math.unit(3e8, "feet")
  40893. },
  40894. {
  40895. name: "Gas Giant Gulper",
  40896. height: math.unit(3e9, "feet")
  40897. },
  40898. {
  40899. name: "Sol-Swallowing",
  40900. height: math.unit(1e11, "feet")
  40901. },
  40902. {
  40903. name: "System Swallower",
  40904. height: math.unit(3e14, "feet")
  40905. },
  40906. {
  40907. name: "Galaxy Gulper",
  40908. height: math.unit(10, "galaxies")
  40909. },
  40910. {
  40911. name: "Light Universal",
  40912. height: math.unit(5, "universes")
  40913. },
  40914. {
  40915. name: "Universe Palm",
  40916. height: math.unit(20, "universes")
  40917. },
  40918. {
  40919. name: "Light Multiversal",
  40920. height: math.unit(5, "multiverses")
  40921. },
  40922. {
  40923. name: "Multiverse Palm",
  40924. height: math.unit(20, "multiverses")
  40925. },
  40926. {
  40927. name: "Inferno Incarnate",
  40928. height: math.unit(1e7, "multiverses")
  40929. },
  40930. ]
  40931. ))
  40932. characterMakers.push(() => makeCharacter(
  40933. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40934. {
  40935. front: {
  40936. height: math.unit(8, "feet"),
  40937. weight: math.unit(1200, "lb"),
  40938. name: "Front",
  40939. image: {
  40940. source: "./media/characters/malithee/front.svg",
  40941. extra: 1675/1640,
  40942. bottom: 162/1837
  40943. }
  40944. },
  40945. },
  40946. [
  40947. {
  40948. name: "Mortal Interaction",
  40949. height: math.unit(8, "feet"),
  40950. default: true
  40951. },
  40952. {
  40953. name: "Large",
  40954. height: math.unit(24, "feet")
  40955. },
  40956. {
  40957. name: "Kaiju",
  40958. height: math.unit(240, "feet")
  40959. },
  40960. {
  40961. name: "Megamacro",
  40962. height: math.unit(8000, "feet")
  40963. },
  40964. {
  40965. name: "Continent Cracker",
  40966. height: math.unit(24e6, "feet")
  40967. },
  40968. {
  40969. name: "Earth-Eclipsing",
  40970. height: math.unit(2.4e8, "feet")
  40971. },
  40972. {
  40973. name: "Sol-Swallowing",
  40974. height: math.unit(8e10, "feet")
  40975. },
  40976. {
  40977. name: "Galaxy Gulper",
  40978. height: math.unit(8, "galaxies")
  40979. },
  40980. {
  40981. name: "Light Universal",
  40982. height: math.unit(4, "universes")
  40983. },
  40984. {
  40985. name: "Universe Atoms",
  40986. height: math.unit(1.829e9, "universes")
  40987. },
  40988. {
  40989. name: "Light Multiversal",
  40990. height: math.unit(4, "multiverses")
  40991. },
  40992. {
  40993. name: "Multiverse Atoms",
  40994. height: math.unit(1.829e9, "multiverses")
  40995. },
  40996. {
  40997. name: "Nigh-Omnipresence",
  40998. height: math.unit(8e261, "multiverses")
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(10, "feet"),
  41007. weight: math.unit(1500, "lb"),
  41008. name: "Front",
  41009. image: {
  41010. source: "./media/characters/miles-thestia/front.svg",
  41011. extra: 1812/1727,
  41012. bottom: 86/1898
  41013. }
  41014. },
  41015. back: {
  41016. height: math.unit(10, "feet"),
  41017. weight: math.unit(1500, "lb"),
  41018. name: "Back",
  41019. image: {
  41020. source: "./media/characters/miles-thestia/back.svg",
  41021. extra: 1799/1690,
  41022. bottom: 47/1846
  41023. }
  41024. },
  41025. frontNsfw: {
  41026. height: math.unit(10, "feet"),
  41027. weight: math.unit(1500, "lb"),
  41028. name: "Front (NSFW)",
  41029. image: {
  41030. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41031. extra: 1812/1727,
  41032. bottom: 86/1898
  41033. }
  41034. },
  41035. },
  41036. [
  41037. {
  41038. name: "Mini-Macro",
  41039. height: math.unit(10, "feet"),
  41040. default: true
  41041. },
  41042. ]
  41043. ))
  41044. characterMakers.push(() => makeCharacter(
  41045. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41046. {
  41047. front: {
  41048. height: math.unit(25, "feet"),
  41049. name: "Front",
  41050. image: {
  41051. source: "./media/characters/titan-s-wulf/front.svg",
  41052. extra: 1560/1484,
  41053. bottom: 76/1636
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Smallest",
  41060. height: math.unit(25, "feet"),
  41061. default: true
  41062. },
  41063. {
  41064. name: "Normal",
  41065. height: math.unit(200, "feet")
  41066. },
  41067. {
  41068. name: "Macro",
  41069. height: math.unit(200000, "feet")
  41070. },
  41071. {
  41072. name: "Multiversal Original",
  41073. height: math.unit(10000, "multiverses")
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41079. {
  41080. front: {
  41081. height: math.unit(8, "feet"),
  41082. weight: math.unit(553, "lb"),
  41083. name: "Front",
  41084. image: {
  41085. source: "./media/characters/tawendeh/front.svg",
  41086. extra: 2365/2268,
  41087. bottom: 83/2448
  41088. }
  41089. },
  41090. frontClothed: {
  41091. height: math.unit(8, "feet"),
  41092. weight: math.unit(553, "lb"),
  41093. name: "Front (Clothed)",
  41094. image: {
  41095. source: "./media/characters/tawendeh/front-clothed.svg",
  41096. extra: 2365/2268,
  41097. bottom: 83/2448
  41098. }
  41099. },
  41100. back: {
  41101. height: math.unit(8, "feet"),
  41102. weight: math.unit(553, "lb"),
  41103. name: "Back",
  41104. image: {
  41105. source: "./media/characters/tawendeh/back.svg",
  41106. extra: 2397/2294,
  41107. bottom: 42/2439
  41108. }
  41109. },
  41110. },
  41111. [
  41112. {
  41113. name: "Mortal Interaction",
  41114. height: math.unit(8, "feet"),
  41115. default: true
  41116. },
  41117. {
  41118. name: "Giant",
  41119. height: math.unit(80, "feet")
  41120. },
  41121. {
  41122. name: "Macro",
  41123. height: math.unit(800, "feet")
  41124. },
  41125. {
  41126. name: "Megamacro",
  41127. height: math.unit(8000, "feet")
  41128. },
  41129. {
  41130. name: "City-Crushing",
  41131. height: math.unit(24000, "feet")
  41132. },
  41133. {
  41134. name: "Mountain-Mashing",
  41135. height: math.unit(80000, "feet")
  41136. },
  41137. {
  41138. name: "Nation Nemesis",
  41139. height: math.unit(8e6, "feet")
  41140. },
  41141. {
  41142. name: "Continent Cracker",
  41143. height: math.unit(24e6, "feet")
  41144. },
  41145. {
  41146. name: "Earth-Eclipsing",
  41147. height: math.unit(2.4e8, "feet")
  41148. },
  41149. {
  41150. name: "Gas Giant Gulper",
  41151. height: math.unit(2.4e9, "feet")
  41152. },
  41153. {
  41154. name: "Sol-Swallowing",
  41155. height: math.unit(8e10, "feet")
  41156. },
  41157. {
  41158. name: "Galaxy Gulper",
  41159. height: math.unit(8, "galaxies")
  41160. },
  41161. {
  41162. name: "Cosmos Churner",
  41163. height: math.unit(8, "universes")
  41164. },
  41165. {
  41166. name: "Omnipotent Otter",
  41167. height: math.unit(80, "universes")
  41168. },
  41169. ]
  41170. ))
  41171. characterMakers.push(() => makeCharacter(
  41172. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41173. {
  41174. front: {
  41175. height: math.unit(2.6, "meters"),
  41176. weight: math.unit(900, "kg"),
  41177. name: "Front",
  41178. image: {
  41179. source: "./media/characters/neesha/front.svg",
  41180. extra: 1803/1653,
  41181. bottom: 128/1931
  41182. }
  41183. },
  41184. },
  41185. [
  41186. {
  41187. name: "Normal",
  41188. height: math.unit(2.6, "meters"),
  41189. default: true
  41190. },
  41191. {
  41192. name: "Macro",
  41193. height: math.unit(50, "meters")
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(5, "feet"),
  41202. weight: math.unit(185, "lb"),
  41203. name: "Front",
  41204. image: {
  41205. source: "./media/characters/kyera/front.svg",
  41206. extra: 1875/1790,
  41207. bottom: 96/1971
  41208. }
  41209. },
  41210. },
  41211. [
  41212. {
  41213. name: "Normal",
  41214. height: math.unit(5, "feet"),
  41215. default: true
  41216. },
  41217. ]
  41218. ))
  41219. characterMakers.push(() => makeCharacter(
  41220. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41221. {
  41222. front: {
  41223. height: math.unit(7 + 6/12, "feet"),
  41224. weight: math.unit(540, "lb"),
  41225. name: "Front",
  41226. image: {
  41227. source: "./media/characters/yuko/front.svg",
  41228. extra: 1282/1222,
  41229. bottom: 101/1383
  41230. }
  41231. },
  41232. frontClothed: {
  41233. height: math.unit(7 + 6/12, "feet"),
  41234. weight: math.unit(540, "lb"),
  41235. name: "Front (Clothed)",
  41236. image: {
  41237. source: "./media/characters/yuko/front-clothed.svg",
  41238. extra: 1282/1222,
  41239. bottom: 101/1383
  41240. }
  41241. },
  41242. },
  41243. [
  41244. {
  41245. name: "Normal",
  41246. height: math.unit(7 + 6/12, "feet"),
  41247. default: true
  41248. },
  41249. {
  41250. name: "Macro",
  41251. height: math.unit(26 + 9/12, "feet")
  41252. },
  41253. {
  41254. name: "Megamacro",
  41255. height: math.unit(300, "feet")
  41256. },
  41257. {
  41258. name: "Gigamacro",
  41259. height: math.unit(5000, "feet")
  41260. },
  41261. {
  41262. name: "Planetary",
  41263. height: math.unit(10000, "miles")
  41264. },
  41265. ]
  41266. ))
  41267. characterMakers.push(() => makeCharacter(
  41268. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41269. {
  41270. front: {
  41271. height: math.unit(8 + 2/12, "feet"),
  41272. weight: math.unit(600, "lb"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/deam-nitrel/front.svg",
  41276. extra: 1308/1234,
  41277. bottom: 125/1433
  41278. }
  41279. },
  41280. },
  41281. [
  41282. {
  41283. name: "Normal",
  41284. height: math.unit(8 + 2/12, "feet"),
  41285. default: true
  41286. },
  41287. ]
  41288. ))
  41289. characterMakers.push(() => makeCharacter(
  41290. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41291. {
  41292. front: {
  41293. height: math.unit(6.1, "feet"),
  41294. weight: math.unit(180, "lb"),
  41295. name: "Front",
  41296. image: {
  41297. source: "./media/characters/skyress/front.svg",
  41298. extra: 1045/915,
  41299. bottom: 28/1073
  41300. }
  41301. },
  41302. maw: {
  41303. height: math.unit(1, "feet"),
  41304. name: "Maw",
  41305. image: {
  41306. source: "./media/characters/skyress/maw.svg"
  41307. }
  41308. },
  41309. },
  41310. [
  41311. {
  41312. name: "Normal",
  41313. height: math.unit(6.1, "feet"),
  41314. default: true
  41315. },
  41316. {
  41317. name: "Macro",
  41318. height: math.unit(200, "feet")
  41319. },
  41320. ]
  41321. ))
  41322. characterMakers.push(() => makeCharacter(
  41323. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41324. {
  41325. front: {
  41326. height: math.unit(4 + 2/12, "feet"),
  41327. weight: math.unit(40, "kg"),
  41328. name: "Front",
  41329. image: {
  41330. source: "./media/characters/amethyst-jones/front.svg",
  41331. extra: 1220/1150,
  41332. bottom: 101/1321
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(4 + 2/12, "feet"),
  41340. default: true
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(1.7, "m"),
  41349. weight: math.unit(135, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/jade/front.svg",
  41353. extra: 1818/1767,
  41354. bottom: 32/1850
  41355. }
  41356. },
  41357. back: {
  41358. height: math.unit(1.7, "m"),
  41359. weight: math.unit(135, "lb"),
  41360. name: "Back",
  41361. image: {
  41362. source: "./media/characters/jade/back.svg",
  41363. extra: 1869/1809,
  41364. bottom: 35/1904
  41365. }
  41366. },
  41367. hand: {
  41368. height: math.unit(0.24, "m"),
  41369. name: "Hand",
  41370. image: {
  41371. source: "./media/characters/jade/hand.svg"
  41372. }
  41373. },
  41374. foot: {
  41375. height: math.unit(0.263, "m"),
  41376. name: "Foot",
  41377. image: {
  41378. source: "./media/characters/jade/foot.svg"
  41379. }
  41380. },
  41381. dick: {
  41382. height: math.unit(0.47, "m"),
  41383. name: "Dick",
  41384. image: {
  41385. source: "./media/characters/jade/dick.svg"
  41386. }
  41387. },
  41388. },
  41389. [
  41390. {
  41391. name: "Micro",
  41392. height: math.unit(22, "cm")
  41393. },
  41394. {
  41395. name: "Normal",
  41396. height: math.unit(1.7, "m"),
  41397. default: true
  41398. },
  41399. {
  41400. name: "Macro",
  41401. height: math.unit(152, "m")
  41402. },
  41403. ]
  41404. ))
  41405. characterMakers.push(() => makeCharacter(
  41406. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41407. {
  41408. front: {
  41409. height: math.unit(100, "miles"),
  41410. weight: math.unit(20000, "tons"),
  41411. name: "Front",
  41412. image: {
  41413. source: "./media/characters/cookie/front.svg",
  41414. extra: 1125/1070,
  41415. bottom: 30/1155
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Big",
  41422. height: math.unit(50, "feet")
  41423. },
  41424. {
  41425. name: "Macro",
  41426. height: math.unit(100, "miles"),
  41427. default: true
  41428. },
  41429. {
  41430. name: "Megamacro",
  41431. height: math.unit(90000, "miles")
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(6, "feet"),
  41440. weight: math.unit(145, "lb"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/farzian/front.svg",
  41444. extra: 1902/1693,
  41445. bottom: 108/2010
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Macro",
  41452. height: math.unit(500, "feet"),
  41453. default: true
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41459. {
  41460. front: {
  41461. height: math.unit(3 + 6/12, "feet"),
  41462. weight: math.unit(50, "lb"),
  41463. name: "Front",
  41464. image: {
  41465. source: "./media/characters/kimberly-tilson/front.svg",
  41466. extra: 1400/1322,
  41467. bottom: 36/1436
  41468. }
  41469. },
  41470. back: {
  41471. height: math.unit(3 + 6/12, "feet"),
  41472. weight: math.unit(50, "lb"),
  41473. name: "Back",
  41474. image: {
  41475. source: "./media/characters/kimberly-tilson/back.svg",
  41476. extra: 1370/1307,
  41477. bottom: 20/1390
  41478. }
  41479. },
  41480. },
  41481. [
  41482. {
  41483. name: "Normal",
  41484. height: math.unit(3 + 6/12, "feet"),
  41485. default: true
  41486. },
  41487. ]
  41488. ))
  41489. characterMakers.push(() => makeCharacter(
  41490. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41491. {
  41492. front: {
  41493. height: math.unit(1148, "feet"),
  41494. weight: math.unit(34057, "lb"),
  41495. name: "Front",
  41496. image: {
  41497. source: "./media/characters/harthos/front.svg",
  41498. extra: 1391/1339,
  41499. bottom: 13/1404
  41500. }
  41501. },
  41502. },
  41503. [
  41504. {
  41505. name: "Macro",
  41506. height: math.unit(1148, "feet"),
  41507. default: true
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41513. {
  41514. front: {
  41515. height: math.unit(15, "feet"),
  41516. name: "Front",
  41517. image: {
  41518. source: "./media/characters/hypatia/front.svg",
  41519. extra: 1653/1591,
  41520. bottom: 79/1732
  41521. }
  41522. },
  41523. },
  41524. [
  41525. {
  41526. name: "Normal",
  41527. height: math.unit(15, "feet")
  41528. },
  41529. {
  41530. name: "Small",
  41531. height: math.unit(300, "feet")
  41532. },
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(2500, "feet"),
  41536. default: true
  41537. },
  41538. {
  41539. name: "Mega Macro",
  41540. height: math.unit(1500, "miles")
  41541. },
  41542. {
  41543. name: "Giga Macro",
  41544. height: math.unit(1.5e6, "miles")
  41545. },
  41546. ]
  41547. ))
  41548. characterMakers.push(() => makeCharacter(
  41549. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41550. {
  41551. front: {
  41552. height: math.unit(6, "feet"),
  41553. weight: math.unit(200, "lb"),
  41554. name: "Front",
  41555. image: {
  41556. source: "./media/characters/wulver/front.svg",
  41557. extra: 1724/1632,
  41558. bottom: 130/1854
  41559. }
  41560. },
  41561. frontNsfw: {
  41562. height: math.unit(6, "feet"),
  41563. weight: math.unit(200, "lb"),
  41564. name: "Front (NSFW)",
  41565. image: {
  41566. source: "./media/characters/wulver/front-nsfw.svg",
  41567. extra: 1724/1632,
  41568. bottom: 130/1854
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Human-Sized",
  41575. height: math.unit(6, "feet")
  41576. },
  41577. {
  41578. name: "Normal",
  41579. height: math.unit(4, "meters"),
  41580. default: true
  41581. },
  41582. {
  41583. name: "Large",
  41584. height: math.unit(6, "m")
  41585. },
  41586. ]
  41587. ))
  41588. characterMakers.push(() => makeCharacter(
  41589. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41590. {
  41591. front: {
  41592. height: math.unit(7, "feet"),
  41593. name: "Front",
  41594. image: {
  41595. source: "./media/characters/maru/front.svg",
  41596. extra: 1595/1570,
  41597. bottom: 0/1595
  41598. }
  41599. },
  41600. },
  41601. [
  41602. {
  41603. name: "Normal",
  41604. height: math.unit(7, "feet"),
  41605. default: true
  41606. },
  41607. {
  41608. name: "Macro",
  41609. height: math.unit(700, "feet")
  41610. },
  41611. {
  41612. name: "Mega Macro",
  41613. height: math.unit(25, "miles")
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41619. {
  41620. front: {
  41621. height: math.unit(6, "feet"),
  41622. weight: math.unit(170, "lb"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/xenon/front.svg",
  41626. extra: 1376/1305,
  41627. bottom: 56/1432
  41628. }
  41629. },
  41630. back: {
  41631. height: math.unit(6, "feet"),
  41632. weight: math.unit(170, "lb"),
  41633. name: "Back",
  41634. image: {
  41635. source: "./media/characters/xenon/back.svg",
  41636. extra: 1328/1259,
  41637. bottom: 95/1423
  41638. }
  41639. },
  41640. maw: {
  41641. height: math.unit(0.52, "feet"),
  41642. name: "Maw",
  41643. image: {
  41644. source: "./media/characters/xenon/maw.svg"
  41645. }
  41646. },
  41647. handLeft: {
  41648. height: math.unit(0.82 * 169 / 153, "feet"),
  41649. name: "Hand (Left)",
  41650. image: {
  41651. source: "./media/characters/xenon/hand-left.svg"
  41652. }
  41653. },
  41654. handRight: {
  41655. height: math.unit(0.82, "feet"),
  41656. name: "Hand (Right)",
  41657. image: {
  41658. source: "./media/characters/xenon/hand-right.svg"
  41659. }
  41660. },
  41661. footLeft: {
  41662. height: math.unit(1.13, "feet"),
  41663. name: "Foot (Left)",
  41664. image: {
  41665. source: "./media/characters/xenon/foot-left.svg"
  41666. }
  41667. },
  41668. footRight: {
  41669. height: math.unit(1.13 * 194 / 196, "feet"),
  41670. name: "Foot (Right)",
  41671. image: {
  41672. source: "./media/characters/xenon/foot-right.svg"
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Micro",
  41679. height: math.unit(0.8, "inches")
  41680. },
  41681. {
  41682. name: "Normal",
  41683. height: math.unit(6, "feet")
  41684. },
  41685. {
  41686. name: "Macro",
  41687. height: math.unit(50, "feet"),
  41688. default: true
  41689. },
  41690. {
  41691. name: "Macro+",
  41692. height: math.unit(250, "feet")
  41693. },
  41694. {
  41695. name: "Megamacro",
  41696. height: math.unit(1500, "feet")
  41697. },
  41698. ]
  41699. ))
  41700. characterMakers.push(() => makeCharacter(
  41701. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41702. {
  41703. front: {
  41704. height: math.unit(7 + 5/12, "feet"),
  41705. name: "Front",
  41706. image: {
  41707. source: "./media/characters/zane/front.svg",
  41708. extra: 1260/1203,
  41709. bottom: 94/1354
  41710. }
  41711. },
  41712. back: {
  41713. height: math.unit(5.05, "feet"),
  41714. name: "Back",
  41715. image: {
  41716. source: "./media/characters/zane/back.svg",
  41717. extra: 893/829,
  41718. bottom: 30/923
  41719. }
  41720. },
  41721. werewolf: {
  41722. height: math.unit(11, "feet"),
  41723. name: "Werewolf",
  41724. image: {
  41725. source: "./media/characters/zane/werewolf.svg",
  41726. extra: 1383/1323,
  41727. bottom: 89/1472
  41728. }
  41729. },
  41730. foot: {
  41731. height: math.unit(1.46, "feet"),
  41732. name: "Foot",
  41733. image: {
  41734. source: "./media/characters/zane/foot.svg"
  41735. }
  41736. },
  41737. footFront: {
  41738. height: math.unit(0.784, "feet"),
  41739. name: "Foot (Front)",
  41740. image: {
  41741. source: "./media/characters/zane/foot-front.svg"
  41742. }
  41743. },
  41744. dick: {
  41745. height: math.unit(1.95, "feet"),
  41746. name: "Dick",
  41747. image: {
  41748. source: "./media/characters/zane/dick.svg"
  41749. }
  41750. },
  41751. dickWerewolf: {
  41752. height: math.unit(3.77, "feet"),
  41753. name: "Dick (Werewolf)",
  41754. image: {
  41755. source: "./media/characters/zane/dick.svg"
  41756. }
  41757. },
  41758. },
  41759. [
  41760. {
  41761. name: "Normal",
  41762. height: math.unit(7 + 5/12, "feet"),
  41763. default: true
  41764. },
  41765. ]
  41766. ))
  41767. characterMakers.push(() => makeCharacter(
  41768. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41769. {
  41770. front: {
  41771. height: math.unit(6 + 2/12, "feet"),
  41772. weight: math.unit(284, "lb"),
  41773. name: "Front",
  41774. image: {
  41775. source: "./media/characters/benni-desparque/front.svg",
  41776. extra: 1353/1126,
  41777. bottom: 69/1422
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Civilian",
  41784. height: math.unit(6 + 2/12, "feet")
  41785. },
  41786. {
  41787. name: "Normal",
  41788. height: math.unit(98, "feet"),
  41789. default: true
  41790. },
  41791. {
  41792. name: "Kaiju Fighter",
  41793. height: math.unit(268, "feet")
  41794. },
  41795. ]
  41796. ))
  41797. characterMakers.push(() => makeCharacter(
  41798. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41799. {
  41800. front: {
  41801. height: math.unit(5, "feet"),
  41802. weight: math.unit(105, "lb"),
  41803. name: "Front",
  41804. image: {
  41805. source: "./media/characters/maxine/front.svg",
  41806. extra: 1386/1250,
  41807. bottom: 71/1457
  41808. }
  41809. },
  41810. },
  41811. [
  41812. {
  41813. name: "Normal",
  41814. height: math.unit(5, "feet"),
  41815. default: true
  41816. },
  41817. ]
  41818. ))
  41819. characterMakers.push(() => makeCharacter(
  41820. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41821. {
  41822. front: {
  41823. height: math.unit(11 + 7/12, "feet"),
  41824. weight: math.unit(9576, "lb"),
  41825. name: "Front",
  41826. image: {
  41827. source: "./media/characters/scaly/front.svg",
  41828. extra: 888/867,
  41829. bottom: 36/924
  41830. }
  41831. },
  41832. },
  41833. [
  41834. {
  41835. name: "Normal",
  41836. height: math.unit(11 + 7/12, "feet"),
  41837. default: true
  41838. },
  41839. ]
  41840. ))
  41841. characterMakers.push(() => makeCharacter(
  41842. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41843. {
  41844. front: {
  41845. height: math.unit(6 + 3/12, "feet"),
  41846. name: "Front",
  41847. image: {
  41848. source: "./media/characters/saelria/front.svg",
  41849. extra: 1243/1138,
  41850. bottom: 46/1289
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Micro",
  41857. height: math.unit(6, "inches"),
  41858. },
  41859. {
  41860. name: "Normal",
  41861. height: math.unit(6 + 3/12, "feet"),
  41862. default: true
  41863. },
  41864. {
  41865. name: "Macro",
  41866. height: math.unit(25, "feet")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(80, "meters"),
  41875. weight: math.unit(7000, "tonnes"),
  41876. name: "Front",
  41877. image: {
  41878. source: "./media/characters/tef/front.svg",
  41879. extra: 2036/1991,
  41880. bottom: 54/2090
  41881. }
  41882. },
  41883. back: {
  41884. height: math.unit(80, "meters"),
  41885. weight: math.unit(7000, "tonnes"),
  41886. name: "Back",
  41887. image: {
  41888. source: "./media/characters/tef/back.svg",
  41889. extra: 2036/1991,
  41890. bottom: 54/2090
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Macro",
  41897. height: math.unit(80, "meters"),
  41898. default: true
  41899. },
  41900. ]
  41901. ))
  41902. characterMakers.push(() => makeCharacter(
  41903. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41904. {
  41905. front: {
  41906. height: math.unit(13, "feet"),
  41907. weight: math.unit(6, "tons"),
  41908. name: "Front",
  41909. image: {
  41910. source: "./media/characters/rover/front.svg",
  41911. extra: 1233/1156,
  41912. bottom: 50/1283
  41913. }
  41914. },
  41915. back: {
  41916. height: math.unit(13, "feet"),
  41917. weight: math.unit(6, "tons"),
  41918. name: "Back",
  41919. image: {
  41920. source: "./media/characters/rover/back.svg",
  41921. extra: 1327/1258,
  41922. bottom: 39/1366
  41923. }
  41924. },
  41925. },
  41926. [
  41927. {
  41928. name: "Normal",
  41929. height: math.unit(13, "feet"),
  41930. default: true
  41931. },
  41932. {
  41933. name: "Macro",
  41934. height: math.unit(1300, "feet")
  41935. },
  41936. {
  41937. name: "Megamacro",
  41938. height: math.unit(1300, "miles")
  41939. },
  41940. {
  41941. name: "Gigamacro",
  41942. height: math.unit(1300000, "miles")
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41948. {
  41949. front: {
  41950. height: math.unit(6, "feet"),
  41951. weight: math.unit(150, "lb"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/ariz/front.svg",
  41955. extra: 1401/1346,
  41956. bottom: 5/1406
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Normal",
  41963. height: math.unit(10, "feet"),
  41964. default: true
  41965. },
  41966. ]
  41967. ))
  41968. characterMakers.push(() => makeCharacter(
  41969. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41970. {
  41971. front: {
  41972. height: math.unit(6, "feet"),
  41973. weight: math.unit(140, "lb"),
  41974. name: "Front",
  41975. image: {
  41976. source: "./media/characters/sigrun/front.svg",
  41977. extra: 1418/1359,
  41978. bottom: 27/1445
  41979. }
  41980. },
  41981. },
  41982. [
  41983. {
  41984. name: "Macro",
  41985. height: math.unit(35, "feet"),
  41986. default: true
  41987. },
  41988. ]
  41989. ))
  41990. characterMakers.push(() => makeCharacter(
  41991. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41992. {
  41993. front: {
  41994. height: math.unit(6, "feet"),
  41995. weight: math.unit(150, "lb"),
  41996. name: "Front",
  41997. image: {
  41998. source: "./media/characters/numin/front.svg",
  41999. extra: 1433/1388,
  42000. bottom: 12/1445
  42001. }
  42002. },
  42003. },
  42004. [
  42005. {
  42006. name: "Macro",
  42007. height: math.unit(21.5, "km"),
  42008. default: true
  42009. },
  42010. ]
  42011. ))
  42012. characterMakers.push(() => makeCharacter(
  42013. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42014. {
  42015. front: {
  42016. height: math.unit(6, "feet"),
  42017. weight: math.unit(463, "lb"),
  42018. name: "Front",
  42019. image: {
  42020. source: "./media/characters/melwa/front.svg",
  42021. extra: 1307/1248,
  42022. bottom: 93/1400
  42023. }
  42024. },
  42025. },
  42026. [
  42027. {
  42028. name: "Macro",
  42029. height: math.unit(50, "meters"),
  42030. default: true
  42031. },
  42032. ]
  42033. ))
  42034. characterMakers.push(() => makeCharacter(
  42035. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42036. {
  42037. front: {
  42038. height: math.unit(325, "feet"),
  42039. name: "Front",
  42040. image: {
  42041. source: "./media/characters/zorkaiju/front.svg",
  42042. extra: 1955/1814,
  42043. bottom: 40/1995
  42044. }
  42045. },
  42046. frontExtended: {
  42047. height: math.unit(325, "feet"),
  42048. name: "Front (Extended)",
  42049. image: {
  42050. source: "./media/characters/zorkaiju/front-extended.svg",
  42051. extra: 1955/1814,
  42052. bottom: 40/1995
  42053. }
  42054. },
  42055. side: {
  42056. height: math.unit(325, "feet"),
  42057. name: "Side",
  42058. image: {
  42059. source: "./media/characters/zorkaiju/side.svg",
  42060. extra: 1495/1396,
  42061. bottom: 17/1512
  42062. }
  42063. },
  42064. sideExtended: {
  42065. height: math.unit(325, "feet"),
  42066. name: "Side (Extended)",
  42067. image: {
  42068. source: "./media/characters/zorkaiju/side-extended.svg",
  42069. extra: 1495/1396,
  42070. bottom: 17/1512
  42071. }
  42072. },
  42073. back: {
  42074. height: math.unit(325, "feet"),
  42075. name: "Back",
  42076. image: {
  42077. source: "./media/characters/zorkaiju/back.svg",
  42078. extra: 1959/1821,
  42079. bottom: 31/1990
  42080. }
  42081. },
  42082. backExtended: {
  42083. height: math.unit(325, "feet"),
  42084. name: "Back (Extended)",
  42085. image: {
  42086. source: "./media/characters/zorkaiju/back-extended.svg",
  42087. extra: 1959/1821,
  42088. bottom: 31/1990
  42089. }
  42090. },
  42091. hand: {
  42092. height: math.unit(58.4, "feet"),
  42093. name: "Hand",
  42094. image: {
  42095. source: "./media/characters/zorkaiju/hand.svg"
  42096. }
  42097. },
  42098. handExtended: {
  42099. height: math.unit(61.4, "feet"),
  42100. name: "Hand (Extended)",
  42101. image: {
  42102. source: "./media/characters/zorkaiju/hand-extended.svg"
  42103. }
  42104. },
  42105. foot: {
  42106. height: math.unit(95, "feet"),
  42107. name: "Foot",
  42108. image: {
  42109. source: "./media/characters/zorkaiju/foot.svg"
  42110. }
  42111. },
  42112. leftArm: {
  42113. height: math.unit(59, "feet"),
  42114. name: "Left Arm",
  42115. image: {
  42116. source: "./media/characters/zorkaiju/left-arm.svg"
  42117. }
  42118. },
  42119. rightArm: {
  42120. height: math.unit(59, "feet"),
  42121. name: "Right Arm",
  42122. image: {
  42123. source: "./media/characters/zorkaiju/right-arm.svg"
  42124. }
  42125. },
  42126. leftArmExtended: {
  42127. height: math.unit(59 * 1.033546, "feet"),
  42128. name: "Left Arm (Extended)",
  42129. image: {
  42130. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42131. }
  42132. },
  42133. rightArmExtended: {
  42134. height: math.unit(59 * 1.0496, "feet"),
  42135. name: "Right Arm (Extended)",
  42136. image: {
  42137. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42138. }
  42139. },
  42140. tail: {
  42141. height: math.unit(104, "feet"),
  42142. name: "Tail",
  42143. image: {
  42144. source: "./media/characters/zorkaiju/tail.svg"
  42145. }
  42146. },
  42147. tailExtended: {
  42148. height: math.unit(104, "feet"),
  42149. name: "Tail (Extended)",
  42150. image: {
  42151. source: "./media/characters/zorkaiju/tail-extended.svg"
  42152. }
  42153. },
  42154. tailBottom: {
  42155. height: math.unit(104, "feet"),
  42156. name: "Tail Bottom",
  42157. image: {
  42158. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42159. }
  42160. },
  42161. crystal: {
  42162. height: math.unit(27.54, "feet"),
  42163. name: "Crystal",
  42164. image: {
  42165. source: "./media/characters/zorkaiju/crystal.svg"
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Kaiju",
  42172. height: math.unit(325, "feet"),
  42173. default: true
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(6 + 1/12, "feet"),
  42182. weight: math.unit(115, "lb"),
  42183. name: "Front",
  42184. image: {
  42185. source: "./media/characters/bailey-belfry/front.svg",
  42186. extra: 1240/1121,
  42187. bottom: 101/1341
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Normal",
  42194. height: math.unit(6 + 1/12, "feet"),
  42195. default: true
  42196. },
  42197. ]
  42198. ))
  42199. characterMakers.push(() => makeCharacter(
  42200. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42201. {
  42202. side: {
  42203. height: math.unit(4, "meters"),
  42204. weight: math.unit(250, "kg"),
  42205. name: "Side",
  42206. image: {
  42207. source: "./media/characters/blacky/side.svg",
  42208. extra: 1027/919,
  42209. bottom: 43/1070
  42210. }
  42211. },
  42212. maw: {
  42213. height: math.unit(1, "meters"),
  42214. name: "Maw",
  42215. image: {
  42216. source: "./media/characters/blacky/maw.svg"
  42217. }
  42218. },
  42219. paw: {
  42220. height: math.unit(1, "meters"),
  42221. name: "Paw",
  42222. image: {
  42223. source: "./media/characters/blacky/paw.svg"
  42224. }
  42225. },
  42226. },
  42227. [
  42228. {
  42229. name: "Normal",
  42230. height: math.unit(4, "meters"),
  42231. default: true
  42232. },
  42233. ]
  42234. ))
  42235. characterMakers.push(() => makeCharacter(
  42236. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42237. {
  42238. front: {
  42239. height: math.unit(170, "cm"),
  42240. weight: math.unit(66, "kg"),
  42241. name: "Front",
  42242. image: {
  42243. source: "./media/characters/thux-ei/front.svg",
  42244. extra: 1109/1011,
  42245. bottom: 8/1117
  42246. }
  42247. },
  42248. },
  42249. [
  42250. {
  42251. name: "Normal",
  42252. height: math.unit(170, "cm"),
  42253. default: true
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42259. {
  42260. front: {
  42261. height: math.unit(5, "feet"),
  42262. weight: math.unit(120, "lb"),
  42263. name: "Front",
  42264. image: {
  42265. source: "./media/characters/roxanne-voltaire/front.svg",
  42266. extra: 1901/1779,
  42267. bottom: 53/1954
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(5, "feet"),
  42275. default: true
  42276. },
  42277. {
  42278. name: "Giant",
  42279. height: math.unit(50, "feet")
  42280. },
  42281. {
  42282. name: "Titan",
  42283. height: math.unit(500, "feet")
  42284. },
  42285. {
  42286. name: "Macro",
  42287. height: math.unit(5000, "feet")
  42288. },
  42289. {
  42290. name: "Megamacro",
  42291. height: math.unit(50000, "feet")
  42292. },
  42293. {
  42294. name: "Gigamacro",
  42295. height: math.unit(500000, "feet")
  42296. },
  42297. {
  42298. name: "Teramacro",
  42299. height: math.unit(5e6, "feet")
  42300. },
  42301. ]
  42302. ))
  42303. characterMakers.push(() => makeCharacter(
  42304. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42305. {
  42306. front: {
  42307. height: math.unit(6 + 2/12, "feet"),
  42308. name: "Front",
  42309. image: {
  42310. source: "./media/characters/squeaks/front.svg",
  42311. extra: 1823/1768,
  42312. bottom: 138/1961
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Micro",
  42319. height: math.unit(0.5, "inches")
  42320. },
  42321. {
  42322. name: "Normal",
  42323. height: math.unit(6 + 2/12, "feet"),
  42324. default: true
  42325. },
  42326. {
  42327. name: "Macro",
  42328. height: math.unit(600, "feet")
  42329. },
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42334. {
  42335. front: {
  42336. height: math.unit(1.72, "meters"),
  42337. name: "Front",
  42338. image: {
  42339. source: "./media/characters/archinger/front.svg",
  42340. extra: 1861/1675,
  42341. bottom: 125/1986
  42342. }
  42343. },
  42344. back: {
  42345. height: math.unit(1.72, "meters"),
  42346. name: "Back",
  42347. image: {
  42348. source: "./media/characters/archinger/back.svg",
  42349. extra: 1844/1701,
  42350. bottom: 104/1948
  42351. }
  42352. },
  42353. cock: {
  42354. height: math.unit(0.59, "feet"),
  42355. name: "Cock",
  42356. image: {
  42357. source: "./media/characters/archinger/cock.svg"
  42358. }
  42359. },
  42360. },
  42361. [
  42362. {
  42363. name: "Normal",
  42364. height: math.unit(1.72, "meters"),
  42365. default: true
  42366. },
  42367. {
  42368. name: "Macro",
  42369. height: math.unit(84, "meters")
  42370. },
  42371. {
  42372. name: "Macro+",
  42373. height: math.unit(112, "meters")
  42374. },
  42375. {
  42376. name: "Macro++",
  42377. height: math.unit(960, "meters")
  42378. },
  42379. {
  42380. name: "Macro+++",
  42381. height: math.unit(4, "km")
  42382. },
  42383. {
  42384. name: "Macro++++",
  42385. height: math.unit(48, "km")
  42386. },
  42387. {
  42388. name: "Macro+++++",
  42389. height: math.unit(4500, "km")
  42390. },
  42391. ]
  42392. ))
  42393. characterMakers.push(() => makeCharacter(
  42394. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42395. {
  42396. front: {
  42397. height: math.unit(5 + 5/12, "feet"),
  42398. name: "Front",
  42399. image: {
  42400. source: "./media/characters/alsnapz/front.svg",
  42401. extra: 1157/1065,
  42402. bottom: 42/1199
  42403. }
  42404. },
  42405. },
  42406. [
  42407. {
  42408. name: "Normal",
  42409. height: math.unit(5 + 5/12, "feet"),
  42410. default: true
  42411. },
  42412. ]
  42413. ))
  42414. characterMakers.push(() => makeCharacter(
  42415. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42416. {
  42417. side: {
  42418. height: math.unit(3.2, "earths"),
  42419. name: "Side",
  42420. image: {
  42421. source: "./media/characters/mag/side.svg",
  42422. extra: 1331/1008,
  42423. bottom: 52/1383
  42424. }
  42425. },
  42426. wing: {
  42427. height: math.unit(1.94, "earths"),
  42428. name: "Wing",
  42429. image: {
  42430. source: "./media/characters/mag/wing.svg"
  42431. }
  42432. },
  42433. dick: {
  42434. height: math.unit(1.8, "earths"),
  42435. name: "Dick",
  42436. image: {
  42437. source: "./media/characters/mag/dick.svg"
  42438. }
  42439. },
  42440. ass: {
  42441. height: math.unit(1.33, "earths"),
  42442. name: "Ass",
  42443. image: {
  42444. source: "./media/characters/mag/ass.svg"
  42445. }
  42446. },
  42447. head: {
  42448. height: math.unit(1.1, "earths"),
  42449. name: "Head",
  42450. image: {
  42451. source: "./media/characters/mag/head.svg"
  42452. }
  42453. },
  42454. maw: {
  42455. height: math.unit(1.62, "earths"),
  42456. name: "Maw",
  42457. image: {
  42458. source: "./media/characters/mag/maw.svg"
  42459. }
  42460. },
  42461. },
  42462. [
  42463. {
  42464. name: "Small",
  42465. height: math.unit(162, "feet")
  42466. },
  42467. {
  42468. name: "Normal",
  42469. height: math.unit(3.2, "earths"),
  42470. default: true
  42471. },
  42472. ]
  42473. ))
  42474. characterMakers.push(() => makeCharacter(
  42475. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42476. {
  42477. front: {
  42478. height: math.unit(512, "feet"),
  42479. weight: math.unit(63509, "tonnes"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/vorrel-harroc/front.svg",
  42483. extra: 1075/1063,
  42484. bottom: 62/1137
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Normal",
  42491. height: math.unit(10, "feet")
  42492. },
  42493. {
  42494. name: "Macro",
  42495. height: math.unit(512, "feet"),
  42496. default: true
  42497. },
  42498. {
  42499. name: "Megamacro",
  42500. height: math.unit(256, "miles")
  42501. },
  42502. {
  42503. name: "Gigamacro",
  42504. height: math.unit(4096, "miles")
  42505. },
  42506. ]
  42507. ))
  42508. characterMakers.push(() => makeCharacter(
  42509. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42510. {
  42511. side: {
  42512. height: math.unit(50, "feet"),
  42513. name: "Side",
  42514. image: {
  42515. source: "./media/characters/froimar/side.svg",
  42516. extra: 855/638,
  42517. bottom: 99/954
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Macro",
  42524. height: math.unit(50, "feet"),
  42525. default: true
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42531. {
  42532. front: {
  42533. height: math.unit(210, "miles"),
  42534. name: "Front",
  42535. image: {
  42536. source: "./media/characters/timothy/front.svg",
  42537. extra: 1007/943,
  42538. bottom: 62/1069
  42539. }
  42540. },
  42541. frontSkirt: {
  42542. height: math.unit(210, "miles"),
  42543. name: "Front (Skirt)",
  42544. image: {
  42545. source: "./media/characters/timothy/front-skirt.svg",
  42546. extra: 1007/943,
  42547. bottom: 62/1069
  42548. }
  42549. },
  42550. frontCoat: {
  42551. height: math.unit(210, "miles"),
  42552. name: "Front (Coat)",
  42553. image: {
  42554. source: "./media/characters/timothy/front-coat.svg",
  42555. extra: 1007/943,
  42556. bottom: 62/1069
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Macro",
  42563. height: math.unit(210, "miles"),
  42564. default: true
  42565. },
  42566. {
  42567. name: "Megamacro",
  42568. height: math.unit(210000, "miles")
  42569. },
  42570. ]
  42571. ))
  42572. characterMakers.push(() => makeCharacter(
  42573. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42574. {
  42575. front: {
  42576. height: math.unit(188, "feet"),
  42577. name: "Front",
  42578. image: {
  42579. source: "./media/characters/pyotr/front.svg",
  42580. extra: 1912/1826,
  42581. bottom: 18/1930
  42582. }
  42583. },
  42584. },
  42585. [
  42586. {
  42587. name: "Macro",
  42588. height: math.unit(188, "feet"),
  42589. default: true
  42590. },
  42591. {
  42592. name: "Megamacro",
  42593. height: math.unit(8, "miles")
  42594. },
  42595. ]
  42596. ))
  42597. characterMakers.push(() => makeCharacter(
  42598. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42599. {
  42600. side: {
  42601. height: math.unit(10, "feet"),
  42602. weight: math.unit(4500, "lb"),
  42603. name: "Side",
  42604. image: {
  42605. source: "./media/characters/ackart/side.svg",
  42606. extra: 1776/1668,
  42607. bottom: 116/1892
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Normal",
  42614. height: math.unit(10, "feet"),
  42615. default: true
  42616. },
  42617. ]
  42618. ))
  42619. characterMakers.push(() => makeCharacter(
  42620. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42621. {
  42622. side: {
  42623. height: math.unit(21, "feet"),
  42624. name: "Side",
  42625. image: {
  42626. source: "./media/characters/nolow/side.svg",
  42627. extra: 1484/1434,
  42628. bottom: 85/1569
  42629. }
  42630. },
  42631. sideErect: {
  42632. height: math.unit(21, "feet"),
  42633. name: "Side-erect",
  42634. image: {
  42635. source: "./media/characters/nolow/side-erect.svg",
  42636. extra: 1484/1434,
  42637. bottom: 85/1569
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Regular",
  42644. height: math.unit(12, "feet")
  42645. },
  42646. {
  42647. name: "Big Chee",
  42648. height: math.unit(21, "feet"),
  42649. default: true
  42650. },
  42651. ]
  42652. ))
  42653. characterMakers.push(() => makeCharacter(
  42654. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42655. {
  42656. front: {
  42657. height: math.unit(7, "feet"),
  42658. weight: math.unit(250, "lb"),
  42659. name: "Front",
  42660. image: {
  42661. source: "./media/characters/nines/front.svg",
  42662. extra: 1741/1607,
  42663. bottom: 41/1782
  42664. }
  42665. },
  42666. side: {
  42667. height: math.unit(7, "feet"),
  42668. weight: math.unit(250, "lb"),
  42669. name: "Side",
  42670. image: {
  42671. source: "./media/characters/nines/side.svg",
  42672. extra: 1854/1735,
  42673. bottom: 93/1947
  42674. }
  42675. },
  42676. back: {
  42677. height: math.unit(7, "feet"),
  42678. weight: math.unit(250, "lb"),
  42679. name: "Back",
  42680. image: {
  42681. source: "./media/characters/nines/back.svg",
  42682. extra: 1748/1615,
  42683. bottom: 20/1768
  42684. }
  42685. },
  42686. },
  42687. [
  42688. {
  42689. name: "Megamacro",
  42690. height: math.unit(99, "km"),
  42691. default: true
  42692. },
  42693. ]
  42694. ))
  42695. characterMakers.push(() => makeCharacter(
  42696. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42697. {
  42698. front: {
  42699. height: math.unit(5 + 10/12, "feet"),
  42700. weight: math.unit(210, "lb"),
  42701. name: "Front",
  42702. image: {
  42703. source: "./media/characters/zenith/front.svg",
  42704. extra: 1531/1452,
  42705. bottom: 198/1729
  42706. }
  42707. },
  42708. back: {
  42709. height: math.unit(5 + 10/12, "feet"),
  42710. weight: math.unit(210, "lb"),
  42711. name: "Back",
  42712. image: {
  42713. source: "./media/characters/zenith/back.svg",
  42714. extra: 1571/1487,
  42715. bottom: 75/1646
  42716. }
  42717. },
  42718. },
  42719. [
  42720. {
  42721. name: "Normal",
  42722. height: math.unit(5 + 10/12, "feet"),
  42723. default: true
  42724. }
  42725. ]
  42726. ))
  42727. characterMakers.push(() => makeCharacter(
  42728. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42729. {
  42730. front: {
  42731. height: math.unit(4, "feet"),
  42732. weight: math.unit(60, "lb"),
  42733. name: "Front",
  42734. image: {
  42735. source: "./media/characters/jasper/front.svg",
  42736. extra: 1450/1379,
  42737. bottom: 19/1469
  42738. }
  42739. },
  42740. },
  42741. [
  42742. {
  42743. name: "Normal",
  42744. height: math.unit(4, "feet"),
  42745. default: true
  42746. },
  42747. ]
  42748. ))
  42749. characterMakers.push(() => makeCharacter(
  42750. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42751. {
  42752. front: {
  42753. height: math.unit(6 + 5/12, "feet"),
  42754. weight: math.unit(290, "lb"),
  42755. name: "Front",
  42756. image: {
  42757. source: "./media/characters/tiberius-thyben/front.svg",
  42758. extra: 757/739,
  42759. bottom: 39/796
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Micro",
  42766. height: math.unit(1.5, "inches")
  42767. },
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(6 + 5/12, "feet"),
  42771. default: true
  42772. },
  42773. {
  42774. name: "Macro",
  42775. height: math.unit(300, "feet")
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42781. {
  42782. front: {
  42783. height: math.unit(5 + 6/12, "feet"),
  42784. weight: math.unit(60, "kg"),
  42785. name: "Front",
  42786. image: {
  42787. source: "./media/characters/sabre/front.svg",
  42788. extra: 738/671,
  42789. bottom: 27/765
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Teeny",
  42796. height: math.unit(2, "inches")
  42797. },
  42798. {
  42799. name: "Smol",
  42800. height: math.unit(8, "inches")
  42801. },
  42802. {
  42803. name: "Normal",
  42804. height: math.unit(5 + 6/12, "feet"),
  42805. default: true
  42806. },
  42807. {
  42808. name: "Mini-Macro",
  42809. height: math.unit(15, "feet")
  42810. },
  42811. {
  42812. name: "Macro",
  42813. height: math.unit(50, "feet")
  42814. },
  42815. ]
  42816. ))
  42817. characterMakers.push(() => makeCharacter(
  42818. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42819. {
  42820. front: {
  42821. height: math.unit(6 + 4/12, "feet"),
  42822. weight: math.unit(170, "lb"),
  42823. name: "Front",
  42824. image: {
  42825. source: "./media/characters/charlie/front.svg",
  42826. extra: 1348/1228,
  42827. bottom: 15/1363
  42828. }
  42829. },
  42830. },
  42831. [
  42832. {
  42833. name: "Macro",
  42834. height: math.unit(1700, "meters"),
  42835. default: true
  42836. },
  42837. {
  42838. name: "MegaMacro",
  42839. height: math.unit(20400, "meters")
  42840. },
  42841. ]
  42842. ))
  42843. characterMakers.push(() => makeCharacter(
  42844. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42845. {
  42846. front: {
  42847. height: math.unit(6 + 3/12, "feet"),
  42848. weight: math.unit(185, "lb"),
  42849. name: "Front",
  42850. image: {
  42851. source: "./media/characters/susan-grant/front.svg",
  42852. extra: 1351/1327,
  42853. bottom: 26/1377
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Normal",
  42860. height: math.unit(6 + 3/12, "feet"),
  42861. default: true
  42862. },
  42863. {
  42864. name: "Macro",
  42865. height: math.unit(225, "feet")
  42866. },
  42867. {
  42868. name: "Macro+",
  42869. height: math.unit(900, "feet")
  42870. },
  42871. {
  42872. name: "MegaMacro",
  42873. height: math.unit(14400, "feet")
  42874. },
  42875. ]
  42876. ))
  42877. characterMakers.push(() => makeCharacter(
  42878. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42879. {
  42880. front: {
  42881. height: math.unit(5 + 4/12, "feet"),
  42882. weight: math.unit(110, "lb"),
  42883. name: "Front",
  42884. image: {
  42885. source: "./media/characters/axel-isanov/front.svg",
  42886. extra: 1096/1065,
  42887. bottom: 13/1109
  42888. }
  42889. },
  42890. },
  42891. [
  42892. {
  42893. name: "Normal",
  42894. height: math.unit(5 + 4/12, "feet"),
  42895. default: true
  42896. },
  42897. ]
  42898. ))
  42899. characterMakers.push(() => makeCharacter(
  42900. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42901. {
  42902. front: {
  42903. height: math.unit(9, "feet"),
  42904. weight: math.unit(467, "lb"),
  42905. name: "Front",
  42906. image: {
  42907. source: "./media/characters/necahual/front.svg",
  42908. extra: 920/873,
  42909. bottom: 26/946
  42910. }
  42911. },
  42912. back: {
  42913. height: math.unit(9, "feet"),
  42914. weight: math.unit(467, "lb"),
  42915. name: "Back",
  42916. image: {
  42917. source: "./media/characters/necahual/back.svg",
  42918. extra: 930/884,
  42919. bottom: 16/946
  42920. }
  42921. },
  42922. frontUnderwear: {
  42923. height: math.unit(9, "feet"),
  42924. weight: math.unit(467, "lb"),
  42925. name: "Front (Underwear)",
  42926. image: {
  42927. source: "./media/characters/necahual/front-underwear.svg",
  42928. extra: 920/873,
  42929. bottom: 26/946
  42930. }
  42931. },
  42932. frontDressed: {
  42933. height: math.unit(9, "feet"),
  42934. weight: math.unit(467, "lb"),
  42935. name: "Front (Dressed)",
  42936. image: {
  42937. source: "./media/characters/necahual/front-dressed.svg",
  42938. extra: 920/873,
  42939. bottom: 26/946
  42940. }
  42941. },
  42942. },
  42943. [
  42944. {
  42945. name: "Comprsesed",
  42946. height: math.unit(9, "feet")
  42947. },
  42948. {
  42949. name: "Natural",
  42950. height: math.unit(15, "feet"),
  42951. default: true
  42952. },
  42953. {
  42954. name: "Boosted",
  42955. height: math.unit(50, "feet")
  42956. },
  42957. {
  42958. name: "Boosted+",
  42959. height: math.unit(150, "feet")
  42960. },
  42961. {
  42962. name: "Max",
  42963. height: math.unit(500, "feet")
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42969. {
  42970. front: {
  42971. height: math.unit(22 + 1/12, "feet"),
  42972. weight: math.unit(3200, "lb"),
  42973. name: "Front",
  42974. image: {
  42975. source: "./media/characters/theo-acacia/front.svg",
  42976. extra: 1796/1741,
  42977. bottom: 83/1879
  42978. }
  42979. },
  42980. frontUnderwear: {
  42981. height: math.unit(22 + 1/12, "feet"),
  42982. weight: math.unit(3200, "lb"),
  42983. name: "Front (Underwear)",
  42984. image: {
  42985. source: "./media/characters/theo-acacia/front-underwear.svg",
  42986. extra: 1796/1741,
  42987. bottom: 83/1879
  42988. }
  42989. },
  42990. frontNude: {
  42991. height: math.unit(22 + 1/12, "feet"),
  42992. weight: math.unit(3200, "lb"),
  42993. name: "Front (Nude)",
  42994. image: {
  42995. source: "./media/characters/theo-acacia/front-nude.svg",
  42996. extra: 1796/1741,
  42997. bottom: 83/1879
  42998. }
  42999. },
  43000. },
  43001. [
  43002. {
  43003. name: "Normal",
  43004. height: math.unit(22 + 1/12, "feet"),
  43005. default: true
  43006. },
  43007. ]
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43011. {
  43012. front: {
  43013. height: math.unit(20, "feet"),
  43014. name: "Front",
  43015. image: {
  43016. source: "./media/characters/astra/front.svg",
  43017. extra: 1850/1714,
  43018. bottom: 106/1956
  43019. }
  43020. },
  43021. frontUndressed: {
  43022. height: math.unit(20, "feet"),
  43023. name: "Front (Undressed)",
  43024. image: {
  43025. source: "./media/characters/astra/front-undressed.svg",
  43026. extra: 1926/1749,
  43027. bottom: 0/1926
  43028. }
  43029. },
  43030. hand: {
  43031. height: math.unit(1.53, "feet"),
  43032. name: "Hand",
  43033. image: {
  43034. source: "./media/characters/astra/hand.svg"
  43035. }
  43036. },
  43037. paw: {
  43038. height: math.unit(1.53, "feet"),
  43039. name: "Paw",
  43040. image: {
  43041. source: "./media/characters/astra/paw.svg"
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Smallest",
  43048. height: math.unit(20, "feet")
  43049. },
  43050. {
  43051. name: "Normal",
  43052. height: math.unit(1e9, "miles"),
  43053. default: true
  43054. },
  43055. {
  43056. name: "Larger",
  43057. height: math.unit(5, "multiverses")
  43058. },
  43059. {
  43060. name: "Largest",
  43061. height: math.unit(1e9, "multiverses")
  43062. },
  43063. ]
  43064. ))
  43065. characterMakers.push(() => makeCharacter(
  43066. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43067. {
  43068. front: {
  43069. height: math.unit(8, "feet"),
  43070. name: "Front",
  43071. image: {
  43072. source: "./media/characters/breanna/front.svg",
  43073. extra: 1912/1632,
  43074. bottom: 33/1945
  43075. }
  43076. },
  43077. },
  43078. [
  43079. {
  43080. name: "Smallest",
  43081. height: math.unit(8, "feet")
  43082. },
  43083. {
  43084. name: "Normal",
  43085. height: math.unit(1, "mile"),
  43086. default: true
  43087. },
  43088. {
  43089. name: "Maximum",
  43090. height: math.unit(1500000000000, "lightyears")
  43091. },
  43092. ]
  43093. ))
  43094. characterMakers.push(() => makeCharacter(
  43095. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43096. {
  43097. front: {
  43098. height: math.unit(5 + 11/12, "feet"),
  43099. weight: math.unit(155, "lb"),
  43100. name: "Front",
  43101. image: {
  43102. source: "./media/characters/cai/front.svg",
  43103. extra: 1823/1702,
  43104. bottom: 32/1855
  43105. }
  43106. },
  43107. back: {
  43108. height: math.unit(5 + 11/12, "feet"),
  43109. weight: math.unit(155, "lb"),
  43110. name: "Back",
  43111. image: {
  43112. source: "./media/characters/cai/back.svg",
  43113. extra: 1809/1708,
  43114. bottom: 31/1840
  43115. }
  43116. },
  43117. },
  43118. [
  43119. {
  43120. name: "Normal",
  43121. height: math.unit(5 + 11/12, "feet"),
  43122. default: true
  43123. },
  43124. {
  43125. name: "Big",
  43126. height: math.unit(15, "feet")
  43127. },
  43128. {
  43129. name: "Macro",
  43130. height: math.unit(200, "feet")
  43131. },
  43132. ]
  43133. ))
  43134. characterMakers.push(() => makeCharacter(
  43135. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43136. {
  43137. front: {
  43138. height: math.unit(5 + 6/12, "feet"),
  43139. weight: math.unit(160, "lb"),
  43140. name: "Front",
  43141. image: {
  43142. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43143. extra: 1227/1174,
  43144. bottom: 37/1264
  43145. }
  43146. },
  43147. },
  43148. [
  43149. {
  43150. name: "Macro",
  43151. height: math.unit(444, "meters"),
  43152. default: true
  43153. },
  43154. ]
  43155. ))
  43156. characterMakers.push(() => makeCharacter(
  43157. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43158. {
  43159. front: {
  43160. height: math.unit(18 + 7/12, "feet"),
  43161. name: "Front",
  43162. image: {
  43163. source: "./media/characters/rex/front.svg",
  43164. extra: 1941/1807,
  43165. bottom: 66/2007
  43166. }
  43167. },
  43168. back: {
  43169. height: math.unit(18 + 7/12, "feet"),
  43170. name: "Back",
  43171. image: {
  43172. source: "./media/characters/rex/back.svg",
  43173. extra: 1937/1822,
  43174. bottom: 42/1979
  43175. }
  43176. },
  43177. boot: {
  43178. height: math.unit(3.45, "feet"),
  43179. name: "Boot",
  43180. image: {
  43181. source: "./media/characters/rex/boot.svg"
  43182. }
  43183. },
  43184. paw: {
  43185. height: math.unit(4.17, "feet"),
  43186. name: "Paw",
  43187. image: {
  43188. source: "./media/characters/rex/paw.svg"
  43189. }
  43190. },
  43191. head: {
  43192. height: math.unit(6.728, "feet"),
  43193. name: "Head",
  43194. image: {
  43195. source: "./media/characters/rex/head.svg"
  43196. }
  43197. },
  43198. },
  43199. [
  43200. {
  43201. name: "Nano",
  43202. height: math.unit(18 + 7/12, "feet")
  43203. },
  43204. {
  43205. name: "Micro",
  43206. height: math.unit(1.5, "megameters")
  43207. },
  43208. {
  43209. name: "Normal",
  43210. height: math.unit(440, "megameters"),
  43211. default: true
  43212. },
  43213. {
  43214. name: "Macro",
  43215. height: math.unit(2.5, "gigameters")
  43216. },
  43217. {
  43218. name: "Gigamacro",
  43219. height: math.unit(2, "galaxies")
  43220. },
  43221. ]
  43222. ))
  43223. characterMakers.push(() => makeCharacter(
  43224. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43225. {
  43226. side: {
  43227. height: math.unit(32, "feet"),
  43228. weight: math.unit(250000, "lb"),
  43229. name: "Side",
  43230. image: {
  43231. source: "./media/characters/silverwing/side.svg",
  43232. extra: 1100/1019,
  43233. bottom: 204/1304
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Normal",
  43240. height: math.unit(32, "feet"),
  43241. default: true
  43242. },
  43243. ]
  43244. ))
  43245. characterMakers.push(() => makeCharacter(
  43246. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43247. {
  43248. front: {
  43249. height: math.unit(6 + 6/12, "feet"),
  43250. weight: math.unit(350, "lb"),
  43251. name: "Front",
  43252. image: {
  43253. source: "./media/characters/tristan-hawthorne/front.svg",
  43254. extra: 1159/1124,
  43255. bottom: 37/1196
  43256. },
  43257. form: "labrador",
  43258. default: true
  43259. },
  43260. skunkFront: {
  43261. height: math.unit(4 + 6/12, "feet"),
  43262. weight: math.unit(120, "lb"),
  43263. name: "Front",
  43264. image: {
  43265. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43266. extra: 1609/1551,
  43267. bottom: 169/1778
  43268. },
  43269. form: "skunk",
  43270. default: true
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Normal",
  43276. height: math.unit(6 + 6/12, "feet"),
  43277. form: "labrador",
  43278. default: true
  43279. },
  43280. {
  43281. name: "Normal",
  43282. height: math.unit(4 + 6/12, "feet"),
  43283. form: "skunk",
  43284. default: true
  43285. },
  43286. ],
  43287. {
  43288. "labrador": {
  43289. name: "Labrador",
  43290. default: true
  43291. },
  43292. "skunk": {
  43293. name: "Skunk"
  43294. }
  43295. }
  43296. ))
  43297. characterMakers.push(() => makeCharacter(
  43298. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43299. {
  43300. front: {
  43301. height: math.unit(5 + 11/12, "feet"),
  43302. weight: math.unit(190, "lb"),
  43303. name: "Front",
  43304. image: {
  43305. source: "./media/characters/mizu/front.svg",
  43306. extra: 1988/1788,
  43307. bottom: 14/2002
  43308. }
  43309. },
  43310. },
  43311. [
  43312. {
  43313. name: "Normal",
  43314. height: math.unit(5 + 11/12, "feet"),
  43315. default: true
  43316. },
  43317. ]
  43318. ))
  43319. characterMakers.push(() => makeCharacter(
  43320. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43321. {
  43322. front: {
  43323. height: math.unit(1.7, "feet"),
  43324. weight: math.unit(50, "lb"),
  43325. name: "Front",
  43326. image: {
  43327. source: "./media/characters/dechroma/front.svg",
  43328. extra: 1095/859,
  43329. bottom: 64/1159
  43330. }
  43331. },
  43332. },
  43333. [
  43334. {
  43335. name: "Normal",
  43336. height: math.unit(1.7, "feet"),
  43337. default: true
  43338. },
  43339. ]
  43340. ))
  43341. characterMakers.push(() => makeCharacter(
  43342. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43343. {
  43344. side: {
  43345. height: math.unit(30, "feet"),
  43346. name: "Side",
  43347. image: {
  43348. source: "./media/characters/veluren-thanazel/side.svg",
  43349. extra: 1611/633,
  43350. bottom: 118/1729
  43351. }
  43352. },
  43353. front: {
  43354. height: math.unit(30, "feet"),
  43355. name: "Front",
  43356. image: {
  43357. source: "./media/characters/veluren-thanazel/front.svg",
  43358. extra: 1486/636,
  43359. bottom: 238/1724
  43360. }
  43361. },
  43362. head: {
  43363. height: math.unit(21.4, "feet"),
  43364. name: "Head",
  43365. image: {
  43366. source: "./media/characters/veluren-thanazel/head.svg"
  43367. }
  43368. },
  43369. genitals: {
  43370. height: math.unit(19.4, "feet"),
  43371. name: "Genitals",
  43372. image: {
  43373. source: "./media/characters/veluren-thanazel/genitals.svg"
  43374. }
  43375. },
  43376. },
  43377. [
  43378. {
  43379. name: "Social",
  43380. height: math.unit(6, "feet")
  43381. },
  43382. {
  43383. name: "Play",
  43384. height: math.unit(12, "feet")
  43385. },
  43386. {
  43387. name: "True",
  43388. height: math.unit(30, "feet"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(7 + 6/12, "feet"),
  43398. weight: math.unit(500, "kg"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/arcturas/front.svg",
  43402. extra: 1700/1500,
  43403. bottom: 145/1845
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(7 + 6/12, "feet"),
  43411. default: true
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43417. {
  43418. side: {
  43419. height: math.unit(6, "feet"),
  43420. weight: math.unit(2, "tons"),
  43421. name: "Side",
  43422. image: {
  43423. source: "./media/characters/vitaen/side.svg",
  43424. extra: 1157/617,
  43425. bottom: 122/1279
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(6, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(19, "feet"),
  43442. name: "Front",
  43443. image: {
  43444. source: "./media/characters/fia-dreamweaver/front.svg",
  43445. extra: 1630/1504,
  43446. bottom: 25/1655
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Normal",
  43453. height: math.unit(19, "feet"),
  43454. default: true
  43455. },
  43456. ]
  43457. ))
  43458. characterMakers.push(() => makeCharacter(
  43459. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43460. {
  43461. front: {
  43462. height: math.unit(5 + 4/12, "feet"),
  43463. name: "Front",
  43464. image: {
  43465. source: "./media/characters/artan/front.svg",
  43466. extra: 1618/1535,
  43467. bottom: 46/1664
  43468. }
  43469. },
  43470. back: {
  43471. height: math.unit(5 + 4/12, "feet"),
  43472. name: "Back",
  43473. image: {
  43474. source: "./media/characters/artan/back.svg",
  43475. extra: 1618/1543,
  43476. bottom: 31/1649
  43477. }
  43478. },
  43479. },
  43480. [
  43481. {
  43482. name: "Normal",
  43483. height: math.unit(5 + 4/12, "feet"),
  43484. default: true
  43485. },
  43486. ]
  43487. ))
  43488. characterMakers.push(() => makeCharacter(
  43489. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43490. {
  43491. side: {
  43492. height: math.unit(182, "cm"),
  43493. weight: math.unit(1000, "lb"),
  43494. name: "Side",
  43495. image: {
  43496. source: "./media/characters/silver-dragon/side.svg",
  43497. extra: 710/287,
  43498. bottom: 88/798
  43499. }
  43500. },
  43501. },
  43502. [
  43503. {
  43504. name: "Normal",
  43505. height: math.unit(182, "cm"),
  43506. default: true
  43507. },
  43508. ]
  43509. ))
  43510. characterMakers.push(() => makeCharacter(
  43511. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43512. {
  43513. side: {
  43514. height: math.unit(6 + 6/12, "feet"),
  43515. weight: math.unit(1.5, "tons"),
  43516. name: "Side",
  43517. image: {
  43518. source: "./media/characters/zephyr/side.svg",
  43519. extra: 1433/586,
  43520. bottom: 109/1542
  43521. }
  43522. },
  43523. },
  43524. [
  43525. {
  43526. name: "Normal",
  43527. height: math.unit(6 + 6/12, "feet"),
  43528. default: true
  43529. },
  43530. ]
  43531. ))
  43532. characterMakers.push(() => makeCharacter(
  43533. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43534. {
  43535. side: {
  43536. height: math.unit(1, "feet"),
  43537. name: "Side",
  43538. image: {
  43539. source: "./media/characters/vixye/side.svg",
  43540. extra: 632/541,
  43541. bottom: 0/632
  43542. }
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Normal",
  43548. height: math.unit(1, "feet"),
  43549. default: true
  43550. },
  43551. {
  43552. name: "True",
  43553. height: math.unit(1e15, "multiverses")
  43554. },
  43555. ]
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43559. {
  43560. front: {
  43561. height: math.unit(8 + 2/12, "feet"),
  43562. weight: math.unit(650, "lb"),
  43563. name: "Front",
  43564. image: {
  43565. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43566. extra: 1174/1137,
  43567. bottom: 82/1256
  43568. }
  43569. },
  43570. back: {
  43571. height: math.unit(8 + 2/12, "feet"),
  43572. weight: math.unit(650, "lb"),
  43573. name: "Back",
  43574. image: {
  43575. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43576. extra: 1204/1157,
  43577. bottom: 46/1250
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Wildform",
  43584. height: math.unit(8 + 2/12, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43591. {
  43592. front: {
  43593. height: math.unit(18, "feet"),
  43594. name: "Front",
  43595. image: {
  43596. source: "./media/characters/cyphin/front.svg",
  43597. extra: 970/886,
  43598. bottom: 42/1012
  43599. }
  43600. },
  43601. back: {
  43602. height: math.unit(18, "feet"),
  43603. name: "Back",
  43604. image: {
  43605. source: "./media/characters/cyphin/back.svg",
  43606. extra: 1009/894,
  43607. bottom: 24/1033
  43608. }
  43609. },
  43610. head: {
  43611. height: math.unit(5.05, "feet"),
  43612. name: "Head",
  43613. image: {
  43614. source: "./media/characters/cyphin/head.svg"
  43615. }
  43616. },
  43617. tailbud: {
  43618. height: math.unit(5, "feet"),
  43619. name: "Tailbud",
  43620. image: {
  43621. source: "./media/characters/cyphin/tailbud.svg"
  43622. }
  43623. },
  43624. },
  43625. [
  43626. ]
  43627. ))
  43628. characterMakers.push(() => makeCharacter(
  43629. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43630. {
  43631. side: {
  43632. height: math.unit(10, "feet"),
  43633. weight: math.unit(6, "tons"),
  43634. name: "Side",
  43635. image: {
  43636. source: "./media/characters/raijin/side.svg",
  43637. extra: 1529/613,
  43638. bottom: 337/1866
  43639. }
  43640. },
  43641. },
  43642. [
  43643. {
  43644. name: "Normal",
  43645. height: math.unit(10, "feet"),
  43646. default: true
  43647. },
  43648. ]
  43649. ))
  43650. characterMakers.push(() => makeCharacter(
  43651. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43652. {
  43653. side: {
  43654. height: math.unit(9, "feet"),
  43655. name: "Side",
  43656. image: {
  43657. source: "./media/characters/nilghais/side.svg",
  43658. extra: 1047/744,
  43659. bottom: 91/1138
  43660. }
  43661. },
  43662. head: {
  43663. height: math.unit(3.14, "feet"),
  43664. name: "Head",
  43665. image: {
  43666. source: "./media/characters/nilghais/head.svg"
  43667. }
  43668. },
  43669. mouth: {
  43670. height: math.unit(4.6, "feet"),
  43671. name: "Mouth",
  43672. image: {
  43673. source: "./media/characters/nilghais/mouth.svg"
  43674. }
  43675. },
  43676. wings: {
  43677. height: math.unit(24, "feet"),
  43678. name: "Wings",
  43679. image: {
  43680. source: "./media/characters/nilghais/wings.svg"
  43681. }
  43682. },
  43683. ass: {
  43684. height: math.unit(6.12, "feet"),
  43685. name: "Ass",
  43686. image: {
  43687. source: "./media/characters/nilghais/ass.svg"
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(9, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43701. {
  43702. regular: {
  43703. height: math.unit(16 + 2/12, "feet"),
  43704. weight: math.unit(2300, "lb"),
  43705. name: "Regular",
  43706. image: {
  43707. source: "./media/characters/zolgar/regular.svg",
  43708. extra: 1246/1004,
  43709. bottom: 124/1370
  43710. }
  43711. },
  43712. boxers: {
  43713. height: math.unit(16 + 2/12, "feet"),
  43714. weight: math.unit(2300, "lb"),
  43715. name: "Boxers",
  43716. image: {
  43717. source: "./media/characters/zolgar/boxers.svg",
  43718. extra: 1246/1004,
  43719. bottom: 124/1370
  43720. }
  43721. },
  43722. armored: {
  43723. height: math.unit(16 + 2/12, "feet"),
  43724. weight: math.unit(2300, "lb"),
  43725. name: "Armored",
  43726. image: {
  43727. source: "./media/characters/zolgar/armored.svg",
  43728. extra: 1246/1004,
  43729. bottom: 124/1370
  43730. }
  43731. },
  43732. goth: {
  43733. height: math.unit(16 + 2/12, "feet"),
  43734. weight: math.unit(2300, "lb"),
  43735. name: "Goth",
  43736. image: {
  43737. source: "./media/characters/zolgar/goth.svg",
  43738. extra: 1246/1004,
  43739. bottom: 124/1370
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Shrunken Down",
  43746. height: math.unit(9 + 2/12, "feet")
  43747. },
  43748. {
  43749. name: "Normal",
  43750. height: math.unit(16 + 2/12, "feet"),
  43751. default: true
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(6, "feet"),
  43760. weight: math.unit(168, "lb"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/luca/front.svg",
  43764. extra: 841/667,
  43765. bottom: 102/943
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(6, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43779. {
  43780. side: {
  43781. height: math.unit(7 + 3/12, "feet"),
  43782. weight: math.unit(312, "lb"),
  43783. name: "Side",
  43784. image: {
  43785. source: "./media/characters/zezo/side.svg",
  43786. extra: 1192/1067,
  43787. bottom: 63/1255
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(7 + 3/12, "feet"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43801. {
  43802. front: {
  43803. height: math.unit(5 + 5/12, "feet"),
  43804. weight: math.unit(170, "lb"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/mayso/front.svg",
  43808. extra: 1215/1108,
  43809. bottom: 16/1231
  43810. }
  43811. },
  43812. },
  43813. [
  43814. {
  43815. name: "Normal",
  43816. height: math.unit(5 + 5/12, "feet"),
  43817. default: true
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43823. {
  43824. front: {
  43825. height: math.unit(4 + 3/12, "feet"),
  43826. weight: math.unit(80, "lb"),
  43827. name: "Front",
  43828. image: {
  43829. source: "./media/characters/hess/front.svg",
  43830. extra: 1200/1123,
  43831. bottom: 16/1216
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Normal",
  43838. height: math.unit(4 + 3/12, "feet"),
  43839. default: true
  43840. },
  43841. ]
  43842. ))
  43843. characterMakers.push(() => makeCharacter(
  43844. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43845. {
  43846. front: {
  43847. height: math.unit(1.9, "meters"),
  43848. name: "Front",
  43849. image: {
  43850. source: "./media/characters/ashgar/front.svg",
  43851. extra: 1177/1146,
  43852. bottom: 99/1276
  43853. }
  43854. },
  43855. back: {
  43856. height: math.unit(1.9, "meters"),
  43857. name: "Back",
  43858. image: {
  43859. source: "./media/characters/ashgar/back.svg",
  43860. extra: 1201/1183,
  43861. bottom: 53/1254
  43862. }
  43863. },
  43864. feral: {
  43865. height: math.unit(1.4, "meters"),
  43866. name: "Feral",
  43867. image: {
  43868. source: "./media/characters/ashgar/feral.svg",
  43869. extra: 370/345,
  43870. bottom: 45/415
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Normal",
  43877. height: math.unit(1.9, "meters"),
  43878. default: true
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43884. {
  43885. regular: {
  43886. height: math.unit(6, "feet"),
  43887. weight: math.unit(220, "lb"),
  43888. name: "Regular",
  43889. image: {
  43890. source: "./media/characters/phillip/regular.svg",
  43891. extra: 1373/1277,
  43892. bottom: 75/1448
  43893. }
  43894. },
  43895. dressed: {
  43896. height: math.unit(6, "feet"),
  43897. weight: math.unit(220, "lb"),
  43898. name: "Dressed",
  43899. image: {
  43900. source: "./media/characters/phillip/dressed.svg",
  43901. extra: 1373/1277,
  43902. bottom: 75/1448
  43903. }
  43904. },
  43905. paw: {
  43906. height: math.unit(1.44, "feet"),
  43907. name: "Paw",
  43908. image: {
  43909. source: "./media/characters/phillip/paw.svg"
  43910. }
  43911. },
  43912. },
  43913. [
  43914. {
  43915. name: "Normal",
  43916. height: math.unit(6, "feet"),
  43917. default: true
  43918. },
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43923. {
  43924. side: {
  43925. height: math.unit(42, "feet"),
  43926. name: "Side",
  43927. image: {
  43928. source: "./media/characters/uvula/side.svg",
  43929. extra: 683/586,
  43930. bottom: 60/743
  43931. }
  43932. },
  43933. front: {
  43934. height: math.unit(42, "feet"),
  43935. name: "Front",
  43936. image: {
  43937. source: "./media/characters/uvula/front.svg",
  43938. extra: 705/613,
  43939. bottom: 54/759
  43940. }
  43941. },
  43942. maw: {
  43943. height: math.unit(23.5, "feet"),
  43944. name: "Maw",
  43945. image: {
  43946. source: "./media/characters/uvula/maw.svg"
  43947. }
  43948. },
  43949. },
  43950. [
  43951. {
  43952. name: "Original Size",
  43953. height: math.unit(14, "inches")
  43954. },
  43955. {
  43956. name: "Human Size",
  43957. height: math.unit(6, "feet")
  43958. },
  43959. {
  43960. name: "Big",
  43961. height: math.unit(42, "feet"),
  43962. default: true
  43963. },
  43964. {
  43965. name: "Bigger",
  43966. height: math.unit(100, "feet")
  43967. },
  43968. ]
  43969. ))
  43970. characterMakers.push(() => makeCharacter(
  43971. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43972. {
  43973. front: {
  43974. height: math.unit(5 + 11/12, "feet"),
  43975. name: "Front",
  43976. image: {
  43977. source: "./media/characters/lannah/front.svg",
  43978. extra: 1208/1113,
  43979. bottom: 97/1305
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "Normal",
  43986. height: math.unit(5 + 11/12, "feet"),
  43987. default: true
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43993. {
  43994. front: {
  43995. height: math.unit(6 + 3/12, "feet"),
  43996. weight: math.unit(3.5, "tons"),
  43997. name: "Front",
  43998. image: {
  43999. source: "./media/characters/emberflame/front.svg",
  44000. extra: 1198/672,
  44001. bottom: 82/1280
  44002. }
  44003. },
  44004. side: {
  44005. height: math.unit(6 + 3/12, "feet"),
  44006. weight: math.unit(3.5, "tons"),
  44007. name: "Side",
  44008. image: {
  44009. source: "./media/characters/emberflame/side.svg",
  44010. extra: 938/527,
  44011. bottom: 56/994
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Normal",
  44018. height: math.unit(6 + 3/12, "feet"),
  44019. default: true
  44020. },
  44021. ]
  44022. ))
  44023. characterMakers.push(() => makeCharacter(
  44024. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44025. {
  44026. side: {
  44027. height: math.unit(17.5, "feet"),
  44028. weight: math.unit(35, "tons"),
  44029. name: "Side",
  44030. image: {
  44031. source: "./media/characters/sophie-ambrose/side.svg",
  44032. extra: 1573/1242,
  44033. bottom: 71/1644
  44034. }
  44035. },
  44036. maw: {
  44037. height: math.unit(7.4, "feet"),
  44038. name: "Maw",
  44039. image: {
  44040. source: "./media/characters/sophie-ambrose/maw.svg"
  44041. }
  44042. },
  44043. },
  44044. [
  44045. {
  44046. name: "Normal",
  44047. height: math.unit(17.5, "feet"),
  44048. default: true
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44054. {
  44055. front: {
  44056. height: math.unit(280, "feet"),
  44057. weight: math.unit(550, "tons"),
  44058. name: "Front",
  44059. image: {
  44060. source: "./media/characters/king-mugi/front.svg",
  44061. extra: 1102/947,
  44062. bottom: 104/1206
  44063. }
  44064. },
  44065. },
  44066. [
  44067. {
  44068. name: "King Mugi",
  44069. height: math.unit(280, "feet"),
  44070. default: true
  44071. },
  44072. ]
  44073. ))
  44074. characterMakers.push(() => makeCharacter(
  44075. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44076. {
  44077. front: {
  44078. height: math.unit(64, "meters"),
  44079. name: "Front",
  44080. image: {
  44081. source: "./media/characters/nova-fox/front.svg",
  44082. extra: 1310/1246,
  44083. bottom: 65/1375
  44084. }
  44085. },
  44086. },
  44087. [
  44088. {
  44089. name: "Macro",
  44090. height: math.unit(64, "meters"),
  44091. default: true
  44092. },
  44093. ]
  44094. ))
  44095. characterMakers.push(() => makeCharacter(
  44096. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44097. {
  44098. front: {
  44099. height: math.unit(6 + 3/12, "feet"),
  44100. weight: math.unit(170, "lb"),
  44101. name: "Front",
  44102. image: {
  44103. source: "./media/characters/sam-bat/front.svg",
  44104. extra: 1601/1411,
  44105. bottom: 125/1726
  44106. }
  44107. },
  44108. back: {
  44109. height: math.unit(6 + 3/12, "feet"),
  44110. weight: math.unit(170, "lb"),
  44111. name: "Back",
  44112. image: {
  44113. source: "./media/characters/sam-bat/back.svg",
  44114. extra: 1577/1405,
  44115. bottom: 58/1635
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(6 + 3/12, "feet"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44129. {
  44130. front: {
  44131. height: math.unit(59, "feet"),
  44132. weight: math.unit(40000, "lb"),
  44133. name: "Front",
  44134. image: {
  44135. source: "./media/characters/inari/front.svg",
  44136. extra: 1884/1350,
  44137. bottom: 95/1979
  44138. }
  44139. },
  44140. },
  44141. [
  44142. {
  44143. name: "Gigantamax",
  44144. height: math.unit(59, "feet"),
  44145. default: true
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44151. {
  44152. front: {
  44153. height: math.unit(5 + 8/12, "feet"),
  44154. name: "Front",
  44155. image: {
  44156. source: "./media/characters/elizabeth/front.svg",
  44157. extra: 1395/1298,
  44158. bottom: 54/1449
  44159. }
  44160. },
  44161. mouth: {
  44162. height: math.unit(1.97, "feet"),
  44163. name: "Mouth",
  44164. image: {
  44165. source: "./media/characters/elizabeth/mouth.svg"
  44166. }
  44167. },
  44168. foot: {
  44169. height: math.unit(1.17, "feet"),
  44170. name: "Foot",
  44171. image: {
  44172. source: "./media/characters/elizabeth/foot.svg"
  44173. }
  44174. },
  44175. },
  44176. [
  44177. {
  44178. name: "Normal",
  44179. height: math.unit(5 + 8/12, "feet"),
  44180. default: true
  44181. },
  44182. {
  44183. name: "Minimacro",
  44184. height: math.unit(18, "feet")
  44185. },
  44186. {
  44187. name: "Macro",
  44188. height: math.unit(180, "feet")
  44189. },
  44190. ]
  44191. ))
  44192. characterMakers.push(() => makeCharacter(
  44193. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44194. {
  44195. front: {
  44196. height: math.unit(5 + 2/12, "feet"),
  44197. name: "Front",
  44198. image: {
  44199. source: "./media/characters/october-gossamer/front.svg",
  44200. extra: 505/454,
  44201. bottom: 7/512
  44202. }
  44203. },
  44204. back: {
  44205. height: math.unit(5 + 2/12, "feet"),
  44206. name: "Back",
  44207. image: {
  44208. source: "./media/characters/october-gossamer/back.svg",
  44209. extra: 501/454,
  44210. bottom: 11/512
  44211. }
  44212. },
  44213. },
  44214. [
  44215. {
  44216. name: "Normal",
  44217. height: math.unit(5 + 2/12, "feet"),
  44218. default: true
  44219. },
  44220. ]
  44221. ))
  44222. characterMakers.push(() => makeCharacter(
  44223. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44224. {
  44225. front: {
  44226. height: math.unit(5, "feet"),
  44227. name: "Front",
  44228. image: {
  44229. source: "./media/characters/epiglottis/front.svg",
  44230. extra: 923/849,
  44231. bottom: 17/940
  44232. }
  44233. },
  44234. },
  44235. [
  44236. {
  44237. name: "Original Size",
  44238. height: math.unit(10, "inches")
  44239. },
  44240. {
  44241. name: "Human Size",
  44242. height: math.unit(5, "feet"),
  44243. default: true
  44244. },
  44245. {
  44246. name: "Big",
  44247. height: math.unit(25, "feet")
  44248. },
  44249. {
  44250. name: "Bigger",
  44251. height: math.unit(50, "feet")
  44252. },
  44253. {
  44254. name: "oh lawd",
  44255. height: math.unit(75, "feet")
  44256. },
  44257. ]
  44258. ))
  44259. characterMakers.push(() => makeCharacter(
  44260. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44261. {
  44262. front: {
  44263. height: math.unit(2 + 4/12, "feet"),
  44264. weight: math.unit(60, "lb"),
  44265. name: "Front",
  44266. image: {
  44267. source: "./media/characters/lerm/front.svg",
  44268. extra: 796/790,
  44269. bottom: 79/875
  44270. }
  44271. },
  44272. },
  44273. [
  44274. {
  44275. name: "Normal",
  44276. height: math.unit(2 + 4/12, "feet"),
  44277. default: true
  44278. },
  44279. ]
  44280. ))
  44281. characterMakers.push(() => makeCharacter(
  44282. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44283. {
  44284. front: {
  44285. height: math.unit(5.5, "feet"),
  44286. weight: math.unit(130, "lb"),
  44287. name: "Front",
  44288. image: {
  44289. source: "./media/characters/xena-nebadon/front.svg",
  44290. extra: 1828/1730,
  44291. bottom: 79/1907
  44292. }
  44293. },
  44294. },
  44295. [
  44296. {
  44297. name: "Tiny Puppy",
  44298. height: math.unit(3, "inches")
  44299. },
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(5.5, "feet"),
  44303. default: true
  44304. },
  44305. {
  44306. name: "Lotta Lady",
  44307. height: math.unit(12, "feet")
  44308. },
  44309. {
  44310. name: "Pretty Big",
  44311. height: math.unit(100, "feet")
  44312. },
  44313. {
  44314. name: "Big",
  44315. height: math.unit(500, "feet")
  44316. },
  44317. {
  44318. name: "Skyscraper Toys",
  44319. height: math.unit(2500, "feet")
  44320. },
  44321. {
  44322. name: "Plane Catcher",
  44323. height: math.unit(8, "miles")
  44324. },
  44325. {
  44326. name: "Planet Toys",
  44327. height: math.unit(15, "earths")
  44328. },
  44329. {
  44330. name: "Stardust",
  44331. height: math.unit(0.25, "galaxies")
  44332. },
  44333. {
  44334. name: "Snacks",
  44335. height: math.unit(70, "universes")
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(1.6, "meters"),
  44344. weight: math.unit(60, "kg"),
  44345. name: "Front",
  44346. image: {
  44347. source: "./media/characters/bounty/front.svg",
  44348. extra: 1426/1308,
  44349. bottom: 15/1441
  44350. }
  44351. },
  44352. back: {
  44353. height: math.unit(1.6, "meters"),
  44354. weight: math.unit(60, "kg"),
  44355. name: "Back",
  44356. image: {
  44357. source: "./media/characters/bounty/back.svg",
  44358. extra: 1417/1307,
  44359. bottom: 8/1425
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(1.6, "meters"),
  44367. default: true
  44368. },
  44369. {
  44370. name: "Macro",
  44371. height: math.unit(300, "meters")
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44377. {
  44378. front: {
  44379. height: math.unit(2 + 8/12, "feet"),
  44380. weight: math.unit(15, "lb"),
  44381. name: "Front",
  44382. image: {
  44383. source: "./media/characters/mochi/front.svg",
  44384. extra: 1022/852,
  44385. bottom: 435/1457
  44386. }
  44387. },
  44388. back: {
  44389. height: math.unit(2 + 8/12, "feet"),
  44390. weight: math.unit(15, "lb"),
  44391. name: "Back",
  44392. image: {
  44393. source: "./media/characters/mochi/back.svg",
  44394. extra: 1335/1119,
  44395. bottom: 39/1374
  44396. }
  44397. },
  44398. bird: {
  44399. height: math.unit(2 + 8/12, "feet"),
  44400. weight: math.unit(15, "lb"),
  44401. name: "Bird",
  44402. image: {
  44403. source: "./media/characters/mochi/bird.svg",
  44404. extra: 1251/1113,
  44405. bottom: 178/1429
  44406. }
  44407. },
  44408. kaiju: {
  44409. height: math.unit(154, "feet"),
  44410. weight: math.unit(1e7, "lb"),
  44411. name: "Kaiju",
  44412. image: {
  44413. source: "./media/characters/mochi/kaiju.svg",
  44414. extra: 460/324,
  44415. bottom: 40/500
  44416. }
  44417. },
  44418. head: {
  44419. height: math.unit(1.21, "feet"),
  44420. name: "Head",
  44421. image: {
  44422. source: "./media/characters/mochi/head.svg"
  44423. }
  44424. },
  44425. alternateTail: {
  44426. height: math.unit(2 + 8/12, "feet"),
  44427. weight: math.unit(45, "lb"),
  44428. name: "Alternate Tail",
  44429. image: {
  44430. source: "./media/characters/mochi/alternate-tail.svg",
  44431. extra: 139/76,
  44432. bottom: 45/184
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Micro",
  44439. height: math.unit(2, "inches")
  44440. },
  44441. {
  44442. name: "Normal",
  44443. height: math.unit(2 + 8/12, "feet"),
  44444. default: true
  44445. },
  44446. {
  44447. name: "Macro",
  44448. height: math.unit(106, "feet")
  44449. },
  44450. ]
  44451. ))
  44452. characterMakers.push(() => makeCharacter(
  44453. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44454. {
  44455. front: {
  44456. height: math.unit(5.67, "feet"),
  44457. weight: math.unit(135, "lb"),
  44458. name: "Front",
  44459. image: {
  44460. source: "./media/characters/sarel/front.svg",
  44461. extra: 865/788,
  44462. bottom: 97/962
  44463. }
  44464. },
  44465. back: {
  44466. height: math.unit(5.67, "feet"),
  44467. weight: math.unit(135, "lb"),
  44468. name: "Back",
  44469. image: {
  44470. source: "./media/characters/sarel/back.svg",
  44471. extra: 857/777,
  44472. bottom: 32/889
  44473. }
  44474. },
  44475. chozoan: {
  44476. height: math.unit(5.67, "feet"),
  44477. weight: math.unit(135, "lb"),
  44478. name: "Chozoan",
  44479. image: {
  44480. source: "./media/characters/sarel/chozoan.svg",
  44481. extra: 865/788,
  44482. bottom: 97/962
  44483. }
  44484. },
  44485. current: {
  44486. height: math.unit(5.67, "feet"),
  44487. weight: math.unit(135, "lb"),
  44488. name: "Current",
  44489. image: {
  44490. source: "./media/characters/sarel/current.svg",
  44491. extra: 865/788,
  44492. bottom: 97/962
  44493. }
  44494. },
  44495. head: {
  44496. height: math.unit(1.77, "feet"),
  44497. name: "Head",
  44498. image: {
  44499. source: "./media/characters/sarel/head.svg"
  44500. }
  44501. },
  44502. claws: {
  44503. height: math.unit(1.8, "feet"),
  44504. name: "Claws",
  44505. image: {
  44506. source: "./media/characters/sarel/claws.svg"
  44507. }
  44508. },
  44509. clawsAlt: {
  44510. height: math.unit(1.8, "feet"),
  44511. name: "Claws-alt",
  44512. image: {
  44513. source: "./media/characters/sarel/claws-alt.svg"
  44514. }
  44515. },
  44516. },
  44517. [
  44518. {
  44519. name: "Normal",
  44520. height: math.unit(5.67, "feet"),
  44521. default: true
  44522. },
  44523. ]
  44524. ))
  44525. characterMakers.push(() => makeCharacter(
  44526. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44527. {
  44528. front: {
  44529. height: math.unit(5500, "feet"),
  44530. name: "Front",
  44531. image: {
  44532. source: "./media/characters/alyonia/front.svg",
  44533. extra: 1200/1135,
  44534. bottom: 29/1229
  44535. }
  44536. },
  44537. back: {
  44538. height: math.unit(5500, "feet"),
  44539. name: "Back",
  44540. image: {
  44541. source: "./media/characters/alyonia/back.svg",
  44542. extra: 1205/1138,
  44543. bottom: 10/1215
  44544. }
  44545. },
  44546. },
  44547. [
  44548. {
  44549. name: "Small",
  44550. height: math.unit(10, "feet")
  44551. },
  44552. {
  44553. name: "Macro",
  44554. height: math.unit(500, "feet")
  44555. },
  44556. {
  44557. name: "Mega Macro",
  44558. height: math.unit(5500, "feet"),
  44559. default: true
  44560. },
  44561. {
  44562. name: "Mega Macro+",
  44563. height: math.unit(500000, "feet")
  44564. },
  44565. {
  44566. name: "Giga Macro",
  44567. height: math.unit(3000, "miles")
  44568. },
  44569. {
  44570. name: "Tera Macro",
  44571. height: math.unit(2.8e6, "miles")
  44572. },
  44573. {
  44574. name: "Galactic",
  44575. height: math.unit(120000, "lightyears")
  44576. },
  44577. ]
  44578. ))
  44579. characterMakers.push(() => makeCharacter(
  44580. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44581. {
  44582. werewolf: {
  44583. height: math.unit(8, "feet"),
  44584. weight: math.unit(425, "lb"),
  44585. name: "Werewolf",
  44586. image: {
  44587. source: "./media/characters/autumn/werewolf.svg",
  44588. extra: 2154/2031,
  44589. bottom: 160/2314
  44590. }
  44591. },
  44592. human: {
  44593. height: math.unit(5 + 8/12, "feet"),
  44594. weight: math.unit(150, "lb"),
  44595. name: "Human",
  44596. image: {
  44597. source: "./media/characters/autumn/human.svg",
  44598. extra: 1200/1149,
  44599. bottom: 30/1230
  44600. }
  44601. },
  44602. },
  44603. [
  44604. {
  44605. name: "Normal",
  44606. height: math.unit(8, "feet"),
  44607. default: true
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(8 + 5/12, "feet"),
  44616. weight: math.unit(825, "lb"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/cobalt-charizard/front.svg",
  44620. extra: 1268/1155,
  44621. bottom: 122/1390
  44622. }
  44623. },
  44624. side: {
  44625. height: math.unit(8 + 5/12, "feet"),
  44626. weight: math.unit(825, "lb"),
  44627. name: "Side",
  44628. image: {
  44629. source: "./media/characters/cobalt-charizard/side.svg",
  44630. extra: 1348/1257,
  44631. bottom: 58/1406
  44632. }
  44633. },
  44634. gMax: {
  44635. height: math.unit(134 + 11/12, "feet"),
  44636. name: "G-Max",
  44637. image: {
  44638. source: "./media/characters/cobalt-charizard/g-max.svg",
  44639. extra: 1835/1541,
  44640. bottom: 151/1986
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Normal",
  44647. height: math.unit(8 + 5/12, "feet"),
  44648. default: true
  44649. },
  44650. ]
  44651. ))
  44652. characterMakers.push(() => makeCharacter(
  44653. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44654. {
  44655. front: {
  44656. height: math.unit(6 + 3/12, "feet"),
  44657. weight: math.unit(210, "lb"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/stella/front.svg",
  44661. extra: 3549/3335,
  44662. bottom: 51/3600
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(6 + 3/12, "feet"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44676. {
  44677. front: {
  44678. height: math.unit(5, "feet"),
  44679. weight: math.unit(90, "lb"),
  44680. name: "Front",
  44681. image: {
  44682. source: "./media/characters/riley-bishop/front.svg",
  44683. extra: 1450/1428,
  44684. bottom: 152/1602
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Normal",
  44691. height: math.unit(5, "feet"),
  44692. default: true
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44698. {
  44699. side: {
  44700. height: math.unit(8 + 2/12, "feet"),
  44701. weight: math.unit(500, "kg"),
  44702. name: "Side",
  44703. image: {
  44704. source: "./media/characters/theo-arcanine/side.svg",
  44705. extra: 1342/1074,
  44706. bottom: 111/1453
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Normal",
  44713. height: math.unit(8 + 2/12, "feet"),
  44714. default: true
  44715. },
  44716. ]
  44717. ))
  44718. characterMakers.push(() => makeCharacter(
  44719. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44720. {
  44721. front: {
  44722. height: math.unit(4, "feet"),
  44723. name: "Front",
  44724. image: {
  44725. source: "./media/characters/kali/front.svg",
  44726. extra: 1921/1357,
  44727. bottom: 70/1991
  44728. }
  44729. },
  44730. },
  44731. [
  44732. {
  44733. name: "Normal",
  44734. height: math.unit(4, "feet"),
  44735. default: true
  44736. },
  44737. {
  44738. name: "Macro",
  44739. height: math.unit(32, "meters")
  44740. },
  44741. {
  44742. name: "Macro+",
  44743. height: math.unit(150, "meters")
  44744. },
  44745. {
  44746. name: "Megamacro",
  44747. height: math.unit(7500, "meters")
  44748. },
  44749. {
  44750. name: "Megamacro+",
  44751. height: math.unit(80, "kilometers")
  44752. },
  44753. ]
  44754. ))
  44755. characterMakers.push(() => makeCharacter(
  44756. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44757. {
  44758. side: {
  44759. height: math.unit(5 + 11/12, "feet"),
  44760. weight: math.unit(236, "lb"),
  44761. name: "Side",
  44762. image: {
  44763. source: "./media/characters/gapp/side.svg",
  44764. extra: 775/340,
  44765. bottom: 58/833
  44766. }
  44767. },
  44768. mouth: {
  44769. height: math.unit(2.98, "feet"),
  44770. name: "Mouth",
  44771. image: {
  44772. source: "./media/characters/gapp/mouth.svg"
  44773. }
  44774. },
  44775. },
  44776. [
  44777. {
  44778. name: "Normal",
  44779. height: math.unit(5 + 1/12, "feet"),
  44780. default: true
  44781. },
  44782. ]
  44783. ))
  44784. characterMakers.push(() => makeCharacter(
  44785. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44786. {
  44787. front: {
  44788. height: math.unit(6, "feet"),
  44789. name: "Front",
  44790. image: {
  44791. source: "./media/characters/persephone/front.svg",
  44792. extra: 1895/1717,
  44793. bottom: 96/1991
  44794. }
  44795. },
  44796. back: {
  44797. height: math.unit(6, "feet"),
  44798. name: "Back",
  44799. image: {
  44800. source: "./media/characters/persephone/back.svg",
  44801. extra: 1868/1679,
  44802. bottom: 26/1894
  44803. }
  44804. },
  44805. casual: {
  44806. height: math.unit(6, "feet"),
  44807. name: "Casual",
  44808. image: {
  44809. source: "./media/characters/persephone/casual.svg",
  44810. extra: 1713/1541,
  44811. bottom: 76/1789
  44812. }
  44813. },
  44814. },
  44815. [
  44816. {
  44817. name: "Human Size",
  44818. height: math.unit(6, "feet")
  44819. },
  44820. {
  44821. name: "Big Steppy",
  44822. height: math.unit(600, "meters"),
  44823. default: true
  44824. },
  44825. {
  44826. name: "Galaxy Brain",
  44827. height: math.unit(1, "zettameter")
  44828. },
  44829. ]
  44830. ))
  44831. characterMakers.push(() => makeCharacter(
  44832. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44833. {
  44834. front: {
  44835. height: math.unit(1.85, "meters"),
  44836. name: "Front",
  44837. image: {
  44838. source: "./media/characters/riley-foxthing/front.svg",
  44839. extra: 1495/1354,
  44840. bottom: 122/1617
  44841. }
  44842. },
  44843. frontAlt: {
  44844. height: math.unit(1.85, "meters"),
  44845. name: "Front (Alt)",
  44846. image: {
  44847. source: "./media/characters/riley-foxthing/front-alt.svg",
  44848. extra: 1572/1389,
  44849. bottom: 116/1688
  44850. }
  44851. },
  44852. },
  44853. [
  44854. {
  44855. name: "Normal Sized",
  44856. height: math.unit(1.85, "meters"),
  44857. default: true
  44858. },
  44859. {
  44860. name: "Quite Sizable",
  44861. height: math.unit(5, "meters")
  44862. },
  44863. {
  44864. name: "Rather Large",
  44865. height: math.unit(20, "meters")
  44866. },
  44867. {
  44868. name: "Macro",
  44869. height: math.unit(450, "meters")
  44870. },
  44871. {
  44872. name: "Giga",
  44873. height: math.unit(5, "km")
  44874. },
  44875. ]
  44876. ))
  44877. characterMakers.push(() => makeCharacter(
  44878. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44879. {
  44880. front: {
  44881. height: math.unit(6, "feet"),
  44882. weight: math.unit(200, "lb"),
  44883. name: "Front",
  44884. image: {
  44885. source: "./media/characters/blizzard/front.svg",
  44886. extra: 1136/990,
  44887. bottom: 136/1272
  44888. }
  44889. },
  44890. back: {
  44891. height: math.unit(6, "feet"),
  44892. weight: math.unit(200, "lb"),
  44893. name: "Back",
  44894. image: {
  44895. source: "./media/characters/blizzard/back.svg",
  44896. extra: 1175/1034,
  44897. bottom: 97/1272
  44898. }
  44899. },
  44900. sitting: {
  44901. height: math.unit(3.725, "feet"),
  44902. weight: math.unit(200, "lb"),
  44903. name: "Sitting",
  44904. image: {
  44905. source: "./media/characters/blizzard/sitting.svg",
  44906. extra: 581/485,
  44907. bottom: 90/671
  44908. }
  44909. },
  44910. frontWizard: {
  44911. height: math.unit(7.9, "feet"),
  44912. weight: math.unit(200, "lb"),
  44913. name: "Front (Wizard)",
  44914. image: {
  44915. source: "./media/characters/blizzard/front-wizard.svg"
  44916. }
  44917. },
  44918. backWizard: {
  44919. height: math.unit(7.9, "feet"),
  44920. weight: math.unit(200, "lb"),
  44921. name: "Back (Wizard)",
  44922. image: {
  44923. source: "./media/characters/blizzard/back-wizard.svg"
  44924. }
  44925. },
  44926. frontNsfw: {
  44927. height: math.unit(6, "feet"),
  44928. weight: math.unit(200, "lb"),
  44929. name: "Front (NSFW)",
  44930. image: {
  44931. source: "./media/characters/blizzard/front-nsfw.svg",
  44932. extra: 1136/990,
  44933. bottom: 136/1272
  44934. }
  44935. },
  44936. backNsfw: {
  44937. height: math.unit(6, "feet"),
  44938. weight: math.unit(200, "lb"),
  44939. name: "Back (NSFW)",
  44940. image: {
  44941. source: "./media/characters/blizzard/back-nsfw.svg",
  44942. extra: 1175/1034,
  44943. bottom: 97/1272
  44944. }
  44945. },
  44946. sittingNsfw: {
  44947. height: math.unit(3.725, "feet"),
  44948. weight: math.unit(200, "lb"),
  44949. name: "Sitting (NSFW)",
  44950. image: {
  44951. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44952. extra: 581/485,
  44953. bottom: 90/671
  44954. }
  44955. },
  44956. wizardFrontNsfw: {
  44957. height: math.unit(7.9, "feet"),
  44958. weight: math.unit(200, "lb"),
  44959. name: "Wizard (Front, NSFW)",
  44960. image: {
  44961. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44962. }
  44963. },
  44964. },
  44965. [
  44966. {
  44967. name: "Normal",
  44968. height: math.unit(6, "feet"),
  44969. default: true
  44970. },
  44971. ]
  44972. ))
  44973. characterMakers.push(() => makeCharacter(
  44974. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44975. {
  44976. front: {
  44977. height: math.unit(5 + 2/12, "feet"),
  44978. name: "Front",
  44979. image: {
  44980. source: "./media/characters/lumi/front.svg",
  44981. extra: 1328/1268,
  44982. bottom: 103/1431
  44983. }
  44984. },
  44985. back: {
  44986. height: math.unit(5 + 2/12, "feet"),
  44987. name: "Back",
  44988. image: {
  44989. source: "./media/characters/lumi/back.svg",
  44990. extra: 1381/1327,
  44991. bottom: 43/1424
  44992. }
  44993. },
  44994. },
  44995. [
  44996. {
  44997. name: "Normal",
  44998. height: math.unit(5 + 2/12, "feet"),
  44999. default: true
  45000. },
  45001. ]
  45002. ))
  45003. characterMakers.push(() => makeCharacter(
  45004. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45005. {
  45006. front: {
  45007. height: math.unit(5 + 9/12, "feet"),
  45008. name: "Front",
  45009. image: {
  45010. source: "./media/characters/aliya-cotton/front.svg",
  45011. extra: 577/564,
  45012. bottom: 29/606
  45013. }
  45014. },
  45015. },
  45016. [
  45017. {
  45018. name: "Normal",
  45019. height: math.unit(5 + 9/12, "feet"),
  45020. default: true
  45021. },
  45022. ]
  45023. ))
  45024. characterMakers.push(() => makeCharacter(
  45025. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45026. {
  45027. front: {
  45028. height: math.unit(2.7, "meters"),
  45029. weight: math.unit(25000, "lb"),
  45030. name: "Front",
  45031. image: {
  45032. source: "./media/characters/noah-luxray/front.svg",
  45033. extra: 1644/825,
  45034. bottom: 339/1983
  45035. }
  45036. },
  45037. side: {
  45038. height: math.unit(2.97, "meters"),
  45039. weight: math.unit(25000, "lb"),
  45040. name: "Side",
  45041. image: {
  45042. source: "./media/characters/noah-luxray/side.svg",
  45043. extra: 1319/650,
  45044. bottom: 163/1482
  45045. }
  45046. },
  45047. dick: {
  45048. height: math.unit(7.4, "feet"),
  45049. weight: math.unit(2500, "lb"),
  45050. name: "Dick",
  45051. image: {
  45052. source: "./media/characters/noah-luxray/dick.svg"
  45053. }
  45054. },
  45055. dickAlt: {
  45056. height: math.unit(10.83, "feet"),
  45057. weight: math.unit(2500, "lb"),
  45058. name: "Dick-alt",
  45059. image: {
  45060. source: "./media/characters/noah-luxray/dick-alt.svg"
  45061. }
  45062. },
  45063. },
  45064. [
  45065. {
  45066. name: "BIG",
  45067. height: math.unit(2.7, "meters"),
  45068. default: true
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45074. {
  45075. standing: {
  45076. height: math.unit(183, "cm"),
  45077. weight: math.unit(68, "kg"),
  45078. name: "Standing",
  45079. image: {
  45080. source: "./media/characters/arion/standing.svg",
  45081. extra: 1869/1807,
  45082. bottom: 93/1962
  45083. }
  45084. },
  45085. reclining: {
  45086. height: math.unit(70.5, "cm"),
  45087. weight: math.unit(68, "lb"),
  45088. name: "Reclining",
  45089. image: {
  45090. source: "./media/characters/arion/reclining.svg",
  45091. extra: 937/870,
  45092. bottom: 63/1000
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Colossus Size, Low",
  45099. height: math.unit(33, "meters"),
  45100. default: true
  45101. },
  45102. {
  45103. name: "Colossus Size, Mid",
  45104. height: math.unit(52, "meters")
  45105. },
  45106. {
  45107. name: "Colossus Size, High",
  45108. height: math.unit(60, "meters")
  45109. },
  45110. {
  45111. name: "Titan Size, Low",
  45112. height: math.unit(91, "meters"),
  45113. },
  45114. {
  45115. name: "Titan Size, Mid",
  45116. height: math.unit(122, "meters")
  45117. },
  45118. {
  45119. name: "Titan Size, High",
  45120. height: math.unit(162, "meters")
  45121. },
  45122. ]
  45123. ))
  45124. characterMakers.push(() => makeCharacter(
  45125. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45126. {
  45127. front: {
  45128. height: math.unit(53, "meters"),
  45129. name: "Front",
  45130. image: {
  45131. source: "./media/characters/stellar-marbey/front.svg",
  45132. extra: 1913/1805,
  45133. bottom: 92/2005
  45134. }
  45135. },
  45136. back: {
  45137. height: math.unit(53, "meters"),
  45138. name: "Back",
  45139. image: {
  45140. source: "./media/characters/stellar-marbey/back.svg",
  45141. extra: 1960/1851,
  45142. bottom: 28/1988
  45143. }
  45144. },
  45145. mouth: {
  45146. height: math.unit(3.5, "meters"),
  45147. name: "Mouth",
  45148. image: {
  45149. source: "./media/characters/stellar-marbey/mouth.svg"
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Macro",
  45156. height: math.unit(53, "meters"),
  45157. default: true
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(8 + 1/12, "feet"),
  45166. weight: math.unit(233, "lb"),
  45167. name: "Front",
  45168. image: {
  45169. source: "./media/characters/matsu/front.svg",
  45170. extra: 832/772,
  45171. bottom: 40/872
  45172. }
  45173. },
  45174. back: {
  45175. height: math.unit(8 + 1/12, "feet"),
  45176. weight: math.unit(233, "lb"),
  45177. name: "Back",
  45178. image: {
  45179. source: "./media/characters/matsu/back.svg",
  45180. extra: 839/780,
  45181. bottom: 47/886
  45182. }
  45183. },
  45184. },
  45185. [
  45186. {
  45187. name: "Normal",
  45188. height: math.unit(8 + 1/12, "feet"),
  45189. default: true
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45195. {
  45196. front: {
  45197. height: math.unit(4, "feet"),
  45198. weight: math.unit(148, "lb"),
  45199. name: "Front",
  45200. image: {
  45201. source: "./media/characters/thiz/front.svg",
  45202. extra: 1913/1748,
  45203. bottom: 62/1975
  45204. }
  45205. },
  45206. },
  45207. [
  45208. {
  45209. name: "Normal",
  45210. height: math.unit(4, "feet"),
  45211. default: true
  45212. },
  45213. ]
  45214. ))
  45215. characterMakers.push(() => makeCharacter(
  45216. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45217. {
  45218. front: {
  45219. height: math.unit(7 + 6/12, "feet"),
  45220. weight: math.unit(267, "lb"),
  45221. name: "Front",
  45222. image: {
  45223. source: "./media/characters/marcel/front.svg",
  45224. extra: 1221/1096,
  45225. bottom: 76/1297
  45226. }
  45227. },
  45228. },
  45229. [
  45230. {
  45231. name: "Normal",
  45232. height: math.unit(7 + 6/12, "feet"),
  45233. default: true
  45234. },
  45235. ]
  45236. ))
  45237. characterMakers.push(() => makeCharacter(
  45238. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45239. {
  45240. side: {
  45241. height: math.unit(42, "meters"),
  45242. name: "Side",
  45243. image: {
  45244. source: "./media/characters/flake/side.svg",
  45245. extra: 1525/1306,
  45246. bottom: 209/1734
  45247. }
  45248. },
  45249. },
  45250. [
  45251. {
  45252. name: "Normal",
  45253. height: math.unit(42, "meters"),
  45254. default: true
  45255. },
  45256. ]
  45257. ))
  45258. characterMakers.push(() => makeCharacter(
  45259. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45260. {
  45261. dressed: {
  45262. height: math.unit(6 + 4/12, "feet"),
  45263. weight: math.unit(520, "lb"),
  45264. name: "Dressed",
  45265. image: {
  45266. source: "./media/characters/someonne/dressed.svg",
  45267. extra: 1020/1010,
  45268. bottom: 178/1198
  45269. }
  45270. },
  45271. undressed: {
  45272. height: math.unit(6 + 4/12, "feet"),
  45273. weight: math.unit(520, "lb"),
  45274. name: "Undressed",
  45275. image: {
  45276. source: "./media/characters/someonne/undressed.svg",
  45277. extra: 1019/1014,
  45278. bottom: 169/1188
  45279. }
  45280. },
  45281. },
  45282. [
  45283. {
  45284. name: "Normal",
  45285. height: math.unit(6 + 4/12, "feet"),
  45286. default: true
  45287. },
  45288. ]
  45289. ))
  45290. characterMakers.push(() => makeCharacter(
  45291. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45292. {
  45293. front: {
  45294. height: math.unit(3, "feet"),
  45295. weight: math.unit(30, "lb"),
  45296. name: "Front",
  45297. image: {
  45298. source: "./media/characters/till/front.svg",
  45299. extra: 892/823,
  45300. bottom: 55/947
  45301. }
  45302. },
  45303. },
  45304. [
  45305. {
  45306. name: "Normal",
  45307. height: math.unit(3, "feet"),
  45308. default: true
  45309. },
  45310. ]
  45311. ))
  45312. characterMakers.push(() => makeCharacter(
  45313. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45314. {
  45315. front: {
  45316. height: math.unit(9 + 8/12, "feet"),
  45317. weight: math.unit(800, "lb"),
  45318. name: "Front",
  45319. image: {
  45320. source: "./media/characters/sydney-heki/front.svg",
  45321. extra: 1360/1300,
  45322. bottom: 22/1382
  45323. }
  45324. },
  45325. back: {
  45326. height: math.unit(9 + 8/12, "feet"),
  45327. weight: math.unit(800, "lb"),
  45328. name: "Back",
  45329. image: {
  45330. source: "./media/characters/sydney-heki/back.svg",
  45331. extra: 1356/1293,
  45332. bottom: 12/1368
  45333. }
  45334. },
  45335. frontDressed: {
  45336. height: math.unit(9 + 8/12, "feet"),
  45337. weight: math.unit(800, "lb"),
  45338. name: "Front-dressed",
  45339. image: {
  45340. source: "./media/characters/sydney-heki/front-dressed.svg",
  45341. extra: 1360/1300,
  45342. bottom: 22/1382
  45343. }
  45344. },
  45345. },
  45346. [
  45347. {
  45348. name: "Normal",
  45349. height: math.unit(9 + 8/12, "feet"),
  45350. default: true
  45351. },
  45352. {
  45353. name: "Macro",
  45354. height: math.unit(500, "feet")
  45355. },
  45356. {
  45357. name: "Megamacro",
  45358. height: math.unit(3.6, "miles")
  45359. },
  45360. ]
  45361. ))
  45362. characterMakers.push(() => makeCharacter(
  45363. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45364. {
  45365. front: {
  45366. height: math.unit(200, "cm"),
  45367. weight: math.unit(250, "lb"),
  45368. name: "Front",
  45369. image: {
  45370. source: "./media/characters/fowler-karlsson/front.svg",
  45371. extra: 897/845,
  45372. bottom: 123/1020
  45373. }
  45374. },
  45375. back: {
  45376. height: math.unit(200, "cm"),
  45377. weight: math.unit(250, "lb"),
  45378. name: "Back",
  45379. image: {
  45380. source: "./media/characters/fowler-karlsson/back.svg",
  45381. extra: 999/944,
  45382. bottom: 26/1025
  45383. }
  45384. },
  45385. dick: {
  45386. height: math.unit(1.92, "feet"),
  45387. weight: math.unit(150, "lb"),
  45388. name: "Dick",
  45389. image: {
  45390. source: "./media/characters/fowler-karlsson/dick.svg"
  45391. }
  45392. },
  45393. },
  45394. [
  45395. {
  45396. name: "Normal",
  45397. height: math.unit(200, "cm"),
  45398. default: true
  45399. },
  45400. {
  45401. name: "Smaller Macro",
  45402. height: math.unit(90, "m")
  45403. },
  45404. {
  45405. name: "Macro",
  45406. height: math.unit(150, "m")
  45407. },
  45408. {
  45409. name: "Bigger Macro",
  45410. height: math.unit(300, "m")
  45411. },
  45412. ]
  45413. ))
  45414. characterMakers.push(() => makeCharacter(
  45415. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45416. {
  45417. side: {
  45418. height: math.unit(8 + 2/12, "feet"),
  45419. weight: math.unit(1, "tonne"),
  45420. name: "Side",
  45421. image: {
  45422. source: "./media/characters/rylide/side.svg",
  45423. extra: 1318/1034,
  45424. bottom: 106/1424
  45425. }
  45426. },
  45427. sitting: {
  45428. height: math.unit(303, "cm"),
  45429. weight: math.unit(1, "tonne"),
  45430. name: "Sitting",
  45431. image: {
  45432. source: "./media/characters/rylide/sitting.svg",
  45433. extra: 1303/1103,
  45434. bottom: 36/1339
  45435. }
  45436. },
  45437. },
  45438. [
  45439. {
  45440. name: "Normal",
  45441. height: math.unit(8 + 2/12, "feet"),
  45442. default: true
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(5 + 10/12, "feet"),
  45451. weight: math.unit(160, "lb"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/pudask/front.svg",
  45455. extra: 1616/1590,
  45456. bottom: 161/1777
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Ferret Height",
  45463. height: math.unit(2 + 5/12, "feet")
  45464. },
  45465. {
  45466. name: "Canon Height",
  45467. height: math.unit(5 + 10/12, "feet"),
  45468. default: true
  45469. },
  45470. ]
  45471. ))
  45472. characterMakers.push(() => makeCharacter(
  45473. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45474. {
  45475. front: {
  45476. height: math.unit(3 + 6/12, "feet"),
  45477. weight: math.unit(60, "lb"),
  45478. name: "Front",
  45479. image: {
  45480. source: "./media/characters/ramita/front.svg",
  45481. extra: 1402/1232,
  45482. bottom: 62/1464
  45483. }
  45484. },
  45485. dressed: {
  45486. height: math.unit(3 + 6/12, "feet"),
  45487. weight: math.unit(60, "lb"),
  45488. name: "Dressed",
  45489. image: {
  45490. source: "./media/characters/ramita/dressed.svg",
  45491. extra: 1534/1249,
  45492. bottom: 50/1584
  45493. }
  45494. },
  45495. },
  45496. [
  45497. {
  45498. name: "Normal",
  45499. height: math.unit(3 + 6/12, "feet"),
  45500. default: true
  45501. },
  45502. ]
  45503. ))
  45504. characterMakers.push(() => makeCharacter(
  45505. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45506. {
  45507. front: {
  45508. height: math.unit(8, "feet"),
  45509. name: "Front",
  45510. image: {
  45511. source: "./media/characters/ark/front.svg",
  45512. extra: 772/693,
  45513. bottom: 45/817
  45514. }
  45515. },
  45516. },
  45517. [
  45518. {
  45519. name: "Normal",
  45520. height: math.unit(8, "feet"),
  45521. default: true
  45522. },
  45523. ]
  45524. ))
  45525. characterMakers.push(() => makeCharacter(
  45526. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45527. {
  45528. front: {
  45529. height: math.unit(6, "feet"),
  45530. weight: math.unit(250, "lb"),
  45531. volume: math.unit(5/8, "gallons"),
  45532. name: "Front",
  45533. image: {
  45534. source: "./media/characters/ludwig-horn/front.svg",
  45535. extra: 1782/1635,
  45536. bottom: 96/1878
  45537. }
  45538. },
  45539. back: {
  45540. height: math.unit(6, "feet"),
  45541. weight: math.unit(250, "lb"),
  45542. volume: math.unit(5/8, "gallons"),
  45543. name: "Back",
  45544. image: {
  45545. source: "./media/characters/ludwig-horn/back.svg",
  45546. extra: 1874/1729,
  45547. bottom: 27/1901
  45548. }
  45549. },
  45550. dick: {
  45551. height: math.unit(1.05, "feet"),
  45552. weight: math.unit(15, "lb"),
  45553. volume: math.unit(5/8, "gallons"),
  45554. name: "Dick",
  45555. image: {
  45556. source: "./media/characters/ludwig-horn/dick.svg"
  45557. }
  45558. },
  45559. },
  45560. [
  45561. {
  45562. name: "Small",
  45563. height: math.unit(6, "feet")
  45564. },
  45565. {
  45566. name: "Typical",
  45567. height: math.unit(12, "feet"),
  45568. default: true
  45569. },
  45570. {
  45571. name: "Building",
  45572. height: math.unit(80, "feet")
  45573. },
  45574. {
  45575. name: "Town",
  45576. height: math.unit(800, "feet")
  45577. },
  45578. {
  45579. name: "Kingdom",
  45580. height: math.unit(80000, "feet")
  45581. },
  45582. {
  45583. name: "Planet",
  45584. height: math.unit(8000000, "feet")
  45585. },
  45586. {
  45587. name: "Universe",
  45588. height: math.unit(8000000000, "feet")
  45589. },
  45590. {
  45591. name: "Transcended",
  45592. height: math.unit(8e27, "feet")
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45598. {
  45599. front: {
  45600. height: math.unit(5, "feet"),
  45601. weight: math.unit(50, "kg"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/biot-avery/front.svg",
  45605. extra: 1295/1232,
  45606. bottom: 86/1381
  45607. }
  45608. },
  45609. },
  45610. [
  45611. {
  45612. name: "Normal",
  45613. height: math.unit(5, "feet"),
  45614. default: true
  45615. },
  45616. ]
  45617. ))
  45618. characterMakers.push(() => makeCharacter(
  45619. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45620. {
  45621. front: {
  45622. height: math.unit(6, "feet"),
  45623. name: "Front",
  45624. image: {
  45625. source: "./media/characters/kitsune-kiro/front.svg",
  45626. extra: 1270/1158,
  45627. bottom: 42/1312
  45628. }
  45629. },
  45630. frontAlt: {
  45631. height: math.unit(6, "feet"),
  45632. name: "Front-alt",
  45633. image: {
  45634. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45635. extra: 1130/1081,
  45636. bottom: 36/1166
  45637. }
  45638. },
  45639. },
  45640. [
  45641. {
  45642. name: "Smol",
  45643. height: math.unit(3, "feet")
  45644. },
  45645. {
  45646. name: "Normal",
  45647. height: math.unit(6, "feet"),
  45648. default: true
  45649. },
  45650. ]
  45651. ))
  45652. characterMakers.push(() => makeCharacter(
  45653. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45654. {
  45655. front: {
  45656. height: math.unit(6, "feet"),
  45657. weight: math.unit(125, "lb"),
  45658. name: "Front",
  45659. image: {
  45660. source: "./media/characters/jack-thatcher/front.svg",
  45661. extra: 1474/1370,
  45662. bottom: 26/1500
  45663. }
  45664. },
  45665. back: {
  45666. height: math.unit(6, "feet"),
  45667. weight: math.unit(125, "lb"),
  45668. name: "Back",
  45669. image: {
  45670. source: "./media/characters/jack-thatcher/back.svg",
  45671. extra: 1489/1384,
  45672. bottom: 18/1507
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Normal",
  45679. height: math.unit(6, "feet"),
  45680. default: true
  45681. },
  45682. {
  45683. name: "Macro",
  45684. height: math.unit(75, "feet")
  45685. },
  45686. {
  45687. name: "Macro-er",
  45688. height: math.unit(250, "feet")
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(7, "feet"),
  45697. weight: math.unit(110, "kg"),
  45698. name: "Front",
  45699. image: {
  45700. source: "./media/characters/max-hyper/front.svg",
  45701. extra: 1969/1881,
  45702. bottom: 49/2018
  45703. }
  45704. },
  45705. },
  45706. [
  45707. {
  45708. name: "Normal",
  45709. height: math.unit(7, "feet"),
  45710. default: true
  45711. },
  45712. ]
  45713. ))
  45714. characterMakers.push(() => makeCharacter(
  45715. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45716. {
  45717. front: {
  45718. height: math.unit(5 + 5/12, "feet"),
  45719. weight: math.unit(160, "lb"),
  45720. name: "Front",
  45721. image: {
  45722. source: "./media/characters/spook/front.svg",
  45723. extra: 794/791,
  45724. bottom: 54/848
  45725. }
  45726. },
  45727. back: {
  45728. height: math.unit(5 + 5/12, "feet"),
  45729. weight: math.unit(160, "lb"),
  45730. name: "Back",
  45731. image: {
  45732. source: "./media/characters/spook/back.svg",
  45733. extra: 812/798,
  45734. bottom: 32/844
  45735. }
  45736. },
  45737. },
  45738. [
  45739. {
  45740. name: "Normal",
  45741. height: math.unit(5 + 5/12, "feet"),
  45742. default: true
  45743. },
  45744. ]
  45745. ))
  45746. characterMakers.push(() => makeCharacter(
  45747. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45748. {
  45749. front: {
  45750. height: math.unit(18, "feet"),
  45751. name: "Front",
  45752. image: {
  45753. source: "./media/characters/xeaduulix/front.svg",
  45754. extra: 1380/1166,
  45755. bottom: 110/1490
  45756. }
  45757. },
  45758. back: {
  45759. height: math.unit(18, "feet"),
  45760. name: "Back",
  45761. image: {
  45762. source: "./media/characters/xeaduulix/back.svg",
  45763. extra: 1592/1170,
  45764. bottom: 128/1720
  45765. }
  45766. },
  45767. frontNsfw: {
  45768. height: math.unit(18, "feet"),
  45769. name: "Front (NSFW)",
  45770. image: {
  45771. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45772. extra: 1380/1166,
  45773. bottom: 110/1490
  45774. }
  45775. },
  45776. backNsfw: {
  45777. height: math.unit(18, "feet"),
  45778. name: "Back (NSFW)",
  45779. image: {
  45780. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45781. extra: 1592/1170,
  45782. bottom: 128/1720
  45783. }
  45784. },
  45785. },
  45786. [
  45787. {
  45788. name: "Normal",
  45789. height: math.unit(18, "feet"),
  45790. default: true
  45791. },
  45792. ]
  45793. ))
  45794. characterMakers.push(() => makeCharacter(
  45795. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45796. {
  45797. spreadWings: {
  45798. height: math.unit(20, "feet"),
  45799. name: "Spread Wings",
  45800. image: {
  45801. source: "./media/characters/fledge/spread-wings.svg",
  45802. extra: 693/635,
  45803. bottom: 26/719
  45804. }
  45805. },
  45806. front: {
  45807. height: math.unit(20, "feet"),
  45808. name: "Front",
  45809. image: {
  45810. source: "./media/characters/fledge/front.svg",
  45811. extra: 684/637,
  45812. bottom: 18/702
  45813. }
  45814. },
  45815. frontAlt: {
  45816. height: math.unit(20, "feet"),
  45817. name: "Front (Alt)",
  45818. image: {
  45819. source: "./media/characters/fledge/front-alt.svg",
  45820. extra: 708/664,
  45821. bottom: 13/721
  45822. }
  45823. },
  45824. back: {
  45825. height: math.unit(20, "feet"),
  45826. name: "Back",
  45827. image: {
  45828. source: "./media/characters/fledge/back.svg",
  45829. extra: 718/634,
  45830. bottom: 22/740
  45831. }
  45832. },
  45833. head: {
  45834. height: math.unit(5.55, "feet"),
  45835. name: "Head",
  45836. image: {
  45837. source: "./media/characters/fledge/head.svg"
  45838. }
  45839. },
  45840. headAlt: {
  45841. height: math.unit(5.1, "feet"),
  45842. name: "Head (Alt)",
  45843. image: {
  45844. source: "./media/characters/fledge/head-alt.svg"
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Small",
  45851. height: math.unit(6 + 2/12, "feet")
  45852. },
  45853. {
  45854. name: "Big",
  45855. height: math.unit(20, "feet"),
  45856. default: true
  45857. },
  45858. {
  45859. name: "Giant",
  45860. height: math.unit(100, "feet")
  45861. },
  45862. {
  45863. name: "Macro",
  45864. height: math.unit(200, "feet")
  45865. },
  45866. ]
  45867. ))
  45868. characterMakers.push(() => makeCharacter(
  45869. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45870. {
  45871. front: {
  45872. height: math.unit(1, "meter"),
  45873. name: "Front",
  45874. image: {
  45875. source: "./media/characters/atlas-morenai/front.svg",
  45876. extra: 1275/1043,
  45877. bottom: 19/1294
  45878. }
  45879. },
  45880. back: {
  45881. height: math.unit(1, "meter"),
  45882. name: "Back",
  45883. image: {
  45884. source: "./media/characters/atlas-morenai/back.svg",
  45885. extra: 1141/1001,
  45886. bottom: 25/1166
  45887. }
  45888. },
  45889. },
  45890. [
  45891. {
  45892. name: "Normal",
  45893. height: math.unit(1, "meter"),
  45894. default: true
  45895. },
  45896. {
  45897. name: "Magic-Infused",
  45898. height: math.unit(5, "meters")
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45904. {
  45905. front: {
  45906. height: math.unit(5, "meters"),
  45907. name: "Front",
  45908. image: {
  45909. source: "./media/characters/cintia/front.svg",
  45910. extra: 1312/1228,
  45911. bottom: 38/1350
  45912. }
  45913. },
  45914. back: {
  45915. height: math.unit(5, "meters"),
  45916. name: "Back",
  45917. image: {
  45918. source: "./media/characters/cintia/back.svg",
  45919. extra: 1260/1166,
  45920. bottom: 98/1358
  45921. }
  45922. },
  45923. frontDick: {
  45924. height: math.unit(5, "meters"),
  45925. name: "Front (Dick)",
  45926. image: {
  45927. source: "./media/characters/cintia/front-dick.svg",
  45928. extra: 1312/1228,
  45929. bottom: 38/1350
  45930. }
  45931. },
  45932. backDick: {
  45933. height: math.unit(5, "meters"),
  45934. name: "Back (Dick)",
  45935. image: {
  45936. source: "./media/characters/cintia/back-dick.svg",
  45937. extra: 1260/1166,
  45938. bottom: 98/1358
  45939. }
  45940. },
  45941. bust: {
  45942. height: math.unit(1.97, "meters"),
  45943. name: "Bust",
  45944. image: {
  45945. source: "./media/characters/cintia/bust.svg",
  45946. extra: 617/565,
  45947. bottom: 0/617
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(5, "meters"),
  45955. default: true
  45956. },
  45957. ]
  45958. ))
  45959. characterMakers.push(() => makeCharacter(
  45960. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45961. {
  45962. side: {
  45963. height: math.unit(100, "feet"),
  45964. name: "Side",
  45965. image: {
  45966. source: "./media/characters/denora/side.svg",
  45967. extra: 875/803,
  45968. bottom: 9/884
  45969. }
  45970. },
  45971. },
  45972. [
  45973. {
  45974. name: "Standard",
  45975. height: math.unit(100, "feet"),
  45976. default: true
  45977. },
  45978. {
  45979. name: "Grand",
  45980. height: math.unit(1000, "feet")
  45981. },
  45982. {
  45983. name: "Conquering",
  45984. height: math.unit(10000, "feet")
  45985. },
  45986. ]
  45987. ))
  45988. characterMakers.push(() => makeCharacter(
  45989. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45990. {
  45991. dressed: {
  45992. height: math.unit(8 + 5/12, "feet"),
  45993. weight: math.unit(700, "lb"),
  45994. name: "Dressed",
  45995. image: {
  45996. source: "./media/characters/kiva/dressed.svg",
  45997. extra: 1102/1055,
  45998. bottom: 60/1162
  45999. }
  46000. },
  46001. nude: {
  46002. height: math.unit(8 + 5/12, "feet"),
  46003. weight: math.unit(700, "lb"),
  46004. name: "Nude",
  46005. image: {
  46006. source: "./media/characters/kiva/nude.svg",
  46007. extra: 1102/1055,
  46008. bottom: 60/1162
  46009. }
  46010. },
  46011. },
  46012. [
  46013. {
  46014. name: "Base Height",
  46015. height: math.unit(8 + 5/12, "feet"),
  46016. default: true
  46017. },
  46018. {
  46019. name: "Macro",
  46020. height: math.unit(100, "feet")
  46021. },
  46022. {
  46023. name: "Max",
  46024. height: math.unit(3280, "feet")
  46025. },
  46026. ]
  46027. ))
  46028. characterMakers.push(() => makeCharacter(
  46029. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46030. {
  46031. front: {
  46032. height: math.unit(6 + 8/12, "feet"),
  46033. weight: math.unit(250, "lb"),
  46034. name: "Front",
  46035. image: {
  46036. source: "./media/characters/ztragon/front.svg",
  46037. extra: 1825/1684,
  46038. bottom: 98/1923
  46039. }
  46040. },
  46041. },
  46042. [
  46043. {
  46044. name: "Normal",
  46045. height: math.unit(6 + 8/12, "feet"),
  46046. default: true
  46047. },
  46048. {
  46049. name: "Macro",
  46050. height: math.unit(80, "feet")
  46051. },
  46052. ]
  46053. ))
  46054. characterMakers.push(() => makeCharacter(
  46055. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46056. {
  46057. front: {
  46058. height: math.unit(10.4, "feet"),
  46059. weight: math.unit(2, "tons"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/yesenia/front.svg",
  46063. extra: 1479/1474,
  46064. bottom: 233/1712
  46065. }
  46066. },
  46067. },
  46068. [
  46069. {
  46070. name: "Normal",
  46071. height: math.unit(10.4, "feet"),
  46072. default: true
  46073. },
  46074. ]
  46075. ))
  46076. characterMakers.push(() => makeCharacter(
  46077. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46078. {
  46079. normal: {
  46080. height: math.unit(6 + 1/12, "feet"),
  46081. weight: math.unit(180, "lb"),
  46082. name: "Normal",
  46083. image: {
  46084. source: "./media/characters/leanne-lycheborne/normal.svg",
  46085. extra: 1748/1660,
  46086. bottom: 98/1846
  46087. }
  46088. },
  46089. were: {
  46090. height: math.unit(12, "feet"),
  46091. weight: math.unit(1600, "lb"),
  46092. name: "Were",
  46093. image: {
  46094. source: "./media/characters/leanne-lycheborne/were.svg",
  46095. extra: 1485/1432,
  46096. bottom: 66/1551
  46097. }
  46098. },
  46099. },
  46100. [
  46101. {
  46102. name: "Normal",
  46103. height: math.unit(6 + 1/12, "feet"),
  46104. default: true
  46105. },
  46106. ]
  46107. ))
  46108. characterMakers.push(() => makeCharacter(
  46109. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46110. {
  46111. side: {
  46112. height: math.unit(13, "feet"),
  46113. name: "Side",
  46114. image: {
  46115. source: "./media/characters/kira-tyler/side.svg",
  46116. extra: 693/393,
  46117. bottom: 58/751
  46118. }
  46119. },
  46120. },
  46121. [
  46122. {
  46123. name: "Normal",
  46124. height: math.unit(13, "feet"),
  46125. default: true
  46126. },
  46127. ]
  46128. ))
  46129. characterMakers.push(() => makeCharacter(
  46130. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46131. {
  46132. front: {
  46133. height: math.unit(10.3, "feet"),
  46134. weight: math.unit(150, "lb"),
  46135. name: "Front",
  46136. image: {
  46137. source: "./media/characters/blaze/front.svg",
  46138. extra: 1378/1286,
  46139. bottom: 172/1550
  46140. }
  46141. },
  46142. },
  46143. [
  46144. {
  46145. name: "Normal",
  46146. height: math.unit(10.3, "feet"),
  46147. default: true
  46148. },
  46149. ]
  46150. ))
  46151. characterMakers.push(() => makeCharacter(
  46152. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46153. {
  46154. side: {
  46155. height: math.unit(2, "meters"),
  46156. weight: math.unit(400, "kg"),
  46157. name: "Side",
  46158. image: {
  46159. source: "./media/characters/anu/side.svg",
  46160. extra: 506/394,
  46161. bottom: 18/524
  46162. }
  46163. },
  46164. },
  46165. [
  46166. {
  46167. name: "Humanoid",
  46168. height: math.unit(2, "meters")
  46169. },
  46170. {
  46171. name: "Normal",
  46172. height: math.unit(5, "meters"),
  46173. default: true
  46174. },
  46175. ]
  46176. ))
  46177. characterMakers.push(() => makeCharacter(
  46178. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46179. {
  46180. front: {
  46181. height: math.unit(5 + 5/12, "feet"),
  46182. weight: math.unit(170, "lb"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/synx-the-lynx/front.svg",
  46186. extra: 1893/1745,
  46187. bottom: 17/1910
  46188. }
  46189. },
  46190. side: {
  46191. height: math.unit(5 + 5/12, "feet"),
  46192. weight: math.unit(170, "lb"),
  46193. name: "Side",
  46194. image: {
  46195. source: "./media/characters/synx-the-lynx/side.svg",
  46196. extra: 1884/1740,
  46197. bottom: 39/1923
  46198. }
  46199. },
  46200. back: {
  46201. height: math.unit(5 + 5/12, "feet"),
  46202. weight: math.unit(170, "lb"),
  46203. name: "Back",
  46204. image: {
  46205. source: "./media/characters/synx-the-lynx/back.svg",
  46206. extra: 1903/1755,
  46207. bottom: 14/1917
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Normal",
  46214. height: math.unit(5 + 5/12, "feet"),
  46215. default: true
  46216. },
  46217. ]
  46218. ))
  46219. characterMakers.push(() => makeCharacter(
  46220. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46221. {
  46222. back: {
  46223. height: math.unit(15, "feet"),
  46224. name: "Back",
  46225. image: {
  46226. source: "./media/characters/nadezda-fex/back.svg",
  46227. extra: 1695/1481,
  46228. bottom: 25/1720
  46229. }
  46230. },
  46231. },
  46232. [
  46233. {
  46234. name: "Normal",
  46235. height: math.unit(15, "feet"),
  46236. default: true
  46237. },
  46238. {
  46239. name: "Macro",
  46240. height: math.unit(2.5, "miles")
  46241. },
  46242. {
  46243. name: "Goddess",
  46244. height: math.unit(2, "multiverses")
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46250. {
  46251. front: {
  46252. height: math.unit(216, "cm"),
  46253. name: "Front",
  46254. image: {
  46255. source: "./media/characters/lev/front.svg",
  46256. extra: 1728/1670,
  46257. bottom: 82/1810
  46258. }
  46259. },
  46260. back: {
  46261. height: math.unit(216, "cm"),
  46262. name: "Back",
  46263. image: {
  46264. source: "./media/characters/lev/back.svg",
  46265. extra: 1738/1675,
  46266. bottom: 24/1762
  46267. }
  46268. },
  46269. dressed: {
  46270. height: math.unit(216, "cm"),
  46271. name: "Dressed",
  46272. image: {
  46273. source: "./media/characters/lev/dressed.svg",
  46274. extra: 1397/1351,
  46275. bottom: 73/1470
  46276. }
  46277. },
  46278. head: {
  46279. height: math.unit(0.51, "meter"),
  46280. name: "Head",
  46281. image: {
  46282. source: "./media/characters/lev/head.svg"
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(216, "cm"),
  46290. default: true
  46291. },
  46292. {
  46293. name: "Relatively Macro",
  46294. height: math.unit(80, "meters")
  46295. },
  46296. {
  46297. name: "Megamacro",
  46298. height: math.unit(21600, "meters")
  46299. },
  46300. {
  46301. name: "Megamacro+",
  46302. height: math.unit(64800, "meters")
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46308. {
  46309. front: {
  46310. height: math.unit(2, "meters"),
  46311. weight: math.unit(80, "kg"),
  46312. name: "Front",
  46313. image: {
  46314. source: "./media/characters/moka/front.svg",
  46315. extra: 1337/1255,
  46316. bottom: 58/1395
  46317. }
  46318. },
  46319. },
  46320. [
  46321. {
  46322. name: "Micro",
  46323. height: math.unit(15, "cm")
  46324. },
  46325. {
  46326. name: "Normal",
  46327. height: math.unit(2, "meters"),
  46328. default: true
  46329. },
  46330. {
  46331. name: "Macro",
  46332. height: math.unit(20, "meters"),
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46338. {
  46339. front: {
  46340. height: math.unit(9, "feet"),
  46341. weight: math.unit(240, "lb"),
  46342. name: "Front",
  46343. image: {
  46344. source: "./media/characters/kuzco/front.svg",
  46345. extra: 1593/1487,
  46346. bottom: 32/1625
  46347. }
  46348. },
  46349. side: {
  46350. height: math.unit(9, "feet"),
  46351. weight: math.unit(240, "lb"),
  46352. name: "Side",
  46353. image: {
  46354. source: "./media/characters/kuzco/side.svg",
  46355. extra: 1575/1485,
  46356. bottom: 30/1605
  46357. }
  46358. },
  46359. back: {
  46360. height: math.unit(9, "feet"),
  46361. weight: math.unit(240, "lb"),
  46362. name: "Back",
  46363. image: {
  46364. source: "./media/characters/kuzco/back.svg",
  46365. extra: 1603/1514,
  46366. bottom: 14/1617
  46367. }
  46368. },
  46369. },
  46370. [
  46371. {
  46372. name: "Normal",
  46373. height: math.unit(9, "feet"),
  46374. default: true
  46375. },
  46376. ]
  46377. ))
  46378. characterMakers.push(() => makeCharacter(
  46379. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46380. {
  46381. side: {
  46382. height: math.unit(2, "meters"),
  46383. weight: math.unit(300, "kg"),
  46384. name: "Side",
  46385. image: {
  46386. source: "./media/characters/ceruleus/side.svg",
  46387. extra: 1068/974,
  46388. bottom: 126/1194
  46389. }
  46390. },
  46391. },
  46392. [
  46393. {
  46394. name: "Normal",
  46395. height: math.unit(16, "meters"),
  46396. default: true
  46397. },
  46398. ]
  46399. ))
  46400. characterMakers.push(() => makeCharacter(
  46401. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46402. {
  46403. front: {
  46404. height: math.unit(9, "feet"),
  46405. weight: math.unit(500, "kg"),
  46406. name: "Front",
  46407. image: {
  46408. source: "./media/characters/acouya/front.svg",
  46409. extra: 1660/1473,
  46410. bottom: 28/1688
  46411. }
  46412. },
  46413. },
  46414. [
  46415. {
  46416. name: "Normal",
  46417. height: math.unit(9, "feet"),
  46418. default: true
  46419. },
  46420. ]
  46421. ))
  46422. characterMakers.push(() => makeCharacter(
  46423. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46424. {
  46425. front: {
  46426. height: math.unit(5 + 6/12, "feet"),
  46427. weight: math.unit(195, "lb"),
  46428. name: "Front",
  46429. image: {
  46430. source: "./media/characters/vant/front.svg",
  46431. extra: 1396/1320,
  46432. bottom: 20/1416
  46433. }
  46434. },
  46435. back: {
  46436. height: math.unit(5 + 6/12, "feet"),
  46437. weight: math.unit(195, "lb"),
  46438. name: "Back",
  46439. image: {
  46440. source: "./media/characters/vant/back.svg",
  46441. extra: 1396/1320,
  46442. bottom: 20/1416
  46443. }
  46444. },
  46445. maw: {
  46446. height: math.unit(0.75, "feet"),
  46447. name: "Maw",
  46448. image: {
  46449. source: "./media/characters/vant/maw.svg"
  46450. }
  46451. },
  46452. paw: {
  46453. height: math.unit(1.07, "feet"),
  46454. name: "Paw",
  46455. image: {
  46456. source: "./media/characters/vant/paw.svg"
  46457. }
  46458. },
  46459. },
  46460. [
  46461. {
  46462. name: "Micro",
  46463. height: math.unit(0.25, "inches")
  46464. },
  46465. {
  46466. name: "Normal",
  46467. height: math.unit(5 + 6/12, "feet"),
  46468. default: true
  46469. },
  46470. {
  46471. name: "Macro",
  46472. height: math.unit(75, "feet")
  46473. },
  46474. ]
  46475. ))
  46476. characterMakers.push(() => makeCharacter(
  46477. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46478. {
  46479. front: {
  46480. height: math.unit(30, "meters"),
  46481. weight: math.unit(363, "tons"),
  46482. name: "Front",
  46483. image: {
  46484. source: "./media/characters/ahra/front.svg",
  46485. extra: 1914/1814,
  46486. bottom: 46/1960
  46487. }
  46488. },
  46489. },
  46490. [
  46491. {
  46492. name: "Macro",
  46493. height: math.unit(30, "meters"),
  46494. default: true
  46495. },
  46496. ]
  46497. ))
  46498. characterMakers.push(() => makeCharacter(
  46499. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46500. {
  46501. undressed: {
  46502. height: math.unit(2, "m"),
  46503. weight: math.unit(250, "kg"),
  46504. name: "Undressed",
  46505. image: {
  46506. source: "./media/characters/coriander/undressed.svg",
  46507. extra: 1757/1606,
  46508. bottom: 107/1864
  46509. }
  46510. },
  46511. dressed: {
  46512. height: math.unit(2, "m"),
  46513. weight: math.unit(250, "kg"),
  46514. name: "Dressed",
  46515. image: {
  46516. source: "./media/characters/coriander/dressed.svg",
  46517. extra: 1757/1606,
  46518. bottom: 107/1864
  46519. }
  46520. },
  46521. },
  46522. [
  46523. {
  46524. name: "Normal",
  46525. height: math.unit(4, "meters"),
  46526. default: true
  46527. },
  46528. {
  46529. name: "XL",
  46530. height: math.unit(6, "meters")
  46531. },
  46532. {
  46533. name: "XXL",
  46534. height: math.unit(8, "meters")
  46535. },
  46536. ]
  46537. ))
  46538. characterMakers.push(() => makeCharacter(
  46539. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46540. {
  46541. front: {
  46542. height: math.unit(6, "feet"),
  46543. name: "Front",
  46544. image: {
  46545. source: "./media/characters/syrinx/front.svg",
  46546. extra: 1557/1259,
  46547. bottom: 171/1728
  46548. }
  46549. },
  46550. },
  46551. [
  46552. {
  46553. name: "Normal",
  46554. height: math.unit(6 + 3/12, "feet"),
  46555. default: true
  46556. },
  46557. ]
  46558. ))
  46559. characterMakers.push(() => makeCharacter(
  46560. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46561. {
  46562. front: {
  46563. height: math.unit(11 + 6/12, "feet"),
  46564. weight: math.unit(1.5, "tons"),
  46565. name: "Front",
  46566. image: {
  46567. source: "./media/characters/bor/front.svg",
  46568. extra: 1189/1109,
  46569. bottom: 170/1359
  46570. }
  46571. },
  46572. },
  46573. [
  46574. {
  46575. name: "Normal",
  46576. height: math.unit(11 + 6/12, "feet"),
  46577. default: true
  46578. },
  46579. {
  46580. name: "Macro",
  46581. height: math.unit(32 + 9/12, "feet")
  46582. },
  46583. ]
  46584. ))
  46585. characterMakers.push(() => makeCharacter(
  46586. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46587. {
  46588. anthro: {
  46589. height: math.unit(9, "feet"),
  46590. weight: math.unit(2076, "lb"),
  46591. name: "Anthro",
  46592. image: {
  46593. source: "./media/characters/abacus/anthro.svg",
  46594. extra: 1540/1494,
  46595. bottom: 233/1773
  46596. }
  46597. },
  46598. pigeon: {
  46599. height: math.unit(1, "feet"),
  46600. name: "Pigeon",
  46601. image: {
  46602. source: "./media/characters/abacus/pigeon.svg",
  46603. extra: 528/525,
  46604. bottom: 46/574
  46605. }
  46606. },
  46607. },
  46608. [
  46609. {
  46610. name: "Normal",
  46611. height: math.unit(9, "feet"),
  46612. default: true
  46613. },
  46614. ]
  46615. ))
  46616. characterMakers.push(() => makeCharacter(
  46617. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46618. {
  46619. side: {
  46620. height: math.unit(6, "feet"),
  46621. name: "Side",
  46622. image: {
  46623. source: "./media/characters/delkhan/side.svg",
  46624. extra: 1884/1786,
  46625. bottom: 308/2192
  46626. }
  46627. },
  46628. head: {
  46629. height: math.unit(3.38, "feet"),
  46630. name: "Head",
  46631. image: {
  46632. source: "./media/characters/delkhan/head.svg"
  46633. }
  46634. },
  46635. },
  46636. [
  46637. {
  46638. name: "Normal",
  46639. height: math.unit(72, "feet"),
  46640. default: true
  46641. },
  46642. {
  46643. name: "Giant",
  46644. height: math.unit(172, "feet")
  46645. },
  46646. ]
  46647. ))
  46648. characterMakers.push(() => makeCharacter(
  46649. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46650. {
  46651. standing: {
  46652. height: math.unit(6, "feet"),
  46653. name: "Standing",
  46654. image: {
  46655. source: "./media/characters/euchidat/standing.svg",
  46656. extra: 1612/1553,
  46657. bottom: 116/1728
  46658. }
  46659. },
  46660. leaning: {
  46661. height: math.unit(6, "feet"),
  46662. name: "Leaning",
  46663. image: {
  46664. source: "./media/characters/euchidat/leaning.svg",
  46665. extra: 1719/1674,
  46666. bottom: 27/1746
  46667. }
  46668. },
  46669. },
  46670. [
  46671. {
  46672. name: "Normal",
  46673. height: math.unit(175, "feet"),
  46674. default: true
  46675. },
  46676. {
  46677. name: "Megamacro",
  46678. height: math.unit(190, "miles")
  46679. },
  46680. {
  46681. name: "Gigamacro",
  46682. height: math.unit(190000, "miles")
  46683. },
  46684. ]
  46685. ))
  46686. characterMakers.push(() => makeCharacter(
  46687. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46688. {
  46689. front: {
  46690. height: math.unit(6, "feet"),
  46691. weight: math.unit(150, "lb"),
  46692. name: "Front",
  46693. image: {
  46694. source: "./media/characters/rebecca-stack/front.svg",
  46695. extra: 1256/1201,
  46696. bottom: 18/1274
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(5 + 8/12, "feet"),
  46704. default: true
  46705. },
  46706. {
  46707. name: "Demolitionist",
  46708. height: math.unit(200, "feet")
  46709. },
  46710. {
  46711. name: "Out of Control",
  46712. height: math.unit(2, "miles")
  46713. },
  46714. {
  46715. name: "Giga",
  46716. height: math.unit(7200, "miles")
  46717. },
  46718. ]
  46719. ))
  46720. characterMakers.push(() => makeCharacter(
  46721. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46722. {
  46723. front: {
  46724. height: math.unit(6, "feet"),
  46725. weight: math.unit(150, "lb"),
  46726. name: "Front",
  46727. image: {
  46728. source: "./media/characters/jenny-cartwright/front.svg",
  46729. extra: 1384/1376,
  46730. bottom: 58/1442
  46731. }
  46732. },
  46733. },
  46734. [
  46735. {
  46736. name: "Normal",
  46737. height: math.unit(6 + 7/12, "feet"),
  46738. default: true
  46739. },
  46740. {
  46741. name: "Librarian",
  46742. height: math.unit(55, "feet")
  46743. },
  46744. {
  46745. name: "Sightseer",
  46746. height: math.unit(50, "miles")
  46747. },
  46748. {
  46749. name: "Giga",
  46750. height: math.unit(30000, "miles")
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46756. {
  46757. nude: {
  46758. height: math.unit(8, "feet"),
  46759. weight: math.unit(225, "lb"),
  46760. name: "Nude",
  46761. image: {
  46762. source: "./media/characters/marvy/nude.svg",
  46763. extra: 1900/1683,
  46764. bottom: 89/1989
  46765. }
  46766. },
  46767. dressed: {
  46768. height: math.unit(8, "feet"),
  46769. weight: math.unit(225, "lb"),
  46770. name: "Dressed",
  46771. image: {
  46772. source: "./media/characters/marvy/dressed.svg",
  46773. extra: 1900/1683,
  46774. bottom: 89/1989
  46775. }
  46776. },
  46777. head: {
  46778. height: math.unit(2.85, "feet"),
  46779. name: "Head",
  46780. image: {
  46781. source: "./media/characters/marvy/head.svg"
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Normal",
  46788. height: math.unit(8, "feet"),
  46789. default: true
  46790. },
  46791. ]
  46792. ))
  46793. characterMakers.push(() => makeCharacter(
  46794. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46795. {
  46796. front: {
  46797. height: math.unit(8, "feet"),
  46798. weight: math.unit(250, "lb"),
  46799. name: "Front",
  46800. image: {
  46801. source: "./media/characters/leah/front.svg",
  46802. extra: 1257/1149,
  46803. bottom: 109/1366
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Normal",
  46810. height: math.unit(8, "feet"),
  46811. default: true
  46812. },
  46813. {
  46814. name: "Minimacro",
  46815. height: math.unit(40, "feet")
  46816. },
  46817. {
  46818. name: "Macro",
  46819. height: math.unit(124, "feet")
  46820. },
  46821. {
  46822. name: "Megamacro",
  46823. height: math.unit(850, "feet")
  46824. },
  46825. ]
  46826. ))
  46827. characterMakers.push(() => makeCharacter(
  46828. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46829. {
  46830. side: {
  46831. height: math.unit(13 + 6/12, "feet"),
  46832. weight: math.unit(3200, "lb"),
  46833. name: "Side",
  46834. image: {
  46835. source: "./media/characters/alvir/side.svg",
  46836. extra: 896/589,
  46837. bottom: 26/922
  46838. }
  46839. },
  46840. },
  46841. [
  46842. {
  46843. name: "Normal",
  46844. height: math.unit(13 + 6/12, "feet"),
  46845. default: true
  46846. },
  46847. ]
  46848. ))
  46849. characterMakers.push(() => makeCharacter(
  46850. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46851. {
  46852. front: {
  46853. height: math.unit(5 + 4/12, "feet"),
  46854. weight: math.unit(236, "lb"),
  46855. name: "Front",
  46856. image: {
  46857. source: "./media/characters/zaina-khalil/front.svg",
  46858. extra: 1533/1485,
  46859. bottom: 94/1627
  46860. }
  46861. },
  46862. side: {
  46863. height: math.unit(5 + 4/12, "feet"),
  46864. weight: math.unit(236, "lb"),
  46865. name: "Side",
  46866. image: {
  46867. source: "./media/characters/zaina-khalil/side.svg",
  46868. extra: 1537/1498,
  46869. bottom: 66/1603
  46870. }
  46871. },
  46872. back: {
  46873. height: math.unit(5 + 4/12, "feet"),
  46874. weight: math.unit(236, "lb"),
  46875. name: "Back",
  46876. image: {
  46877. source: "./media/characters/zaina-khalil/back.svg",
  46878. extra: 1546/1494,
  46879. bottom: 89/1635
  46880. }
  46881. },
  46882. },
  46883. [
  46884. {
  46885. name: "Normal",
  46886. height: math.unit(5 + 4/12, "feet"),
  46887. default: true
  46888. },
  46889. ]
  46890. ))
  46891. characterMakers.push(() => makeCharacter(
  46892. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46893. {
  46894. side: {
  46895. height: math.unit(12, "feet"),
  46896. weight: math.unit(4000, "lb"),
  46897. name: "Side",
  46898. image: {
  46899. source: "./media/characters/terry/side.svg",
  46900. extra: 1518/1439,
  46901. bottom: 149/1667
  46902. }
  46903. },
  46904. },
  46905. [
  46906. {
  46907. name: "Normal",
  46908. height: math.unit(12, "feet"),
  46909. default: true
  46910. },
  46911. ]
  46912. ))
  46913. characterMakers.push(() => makeCharacter(
  46914. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46915. {
  46916. front: {
  46917. height: math.unit(12, "feet"),
  46918. weight: math.unit(1500, "lb"),
  46919. name: "Front",
  46920. image: {
  46921. source: "./media/characters/kahea/front.svg",
  46922. extra: 1722/1617,
  46923. bottom: 179/1901
  46924. }
  46925. },
  46926. },
  46927. [
  46928. {
  46929. name: "Normal",
  46930. height: math.unit(12, "feet"),
  46931. default: true
  46932. },
  46933. ]
  46934. ))
  46935. characterMakers.push(() => makeCharacter(
  46936. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46937. {
  46938. demonFront: {
  46939. height: math.unit(36, "feet"),
  46940. name: "Front",
  46941. image: {
  46942. source: "./media/characters/alex-xuria/demon-front.svg",
  46943. extra: 1705/1673,
  46944. bottom: 198/1903
  46945. },
  46946. form: "demon",
  46947. default: true
  46948. },
  46949. demonBack: {
  46950. height: math.unit(36, "feet"),
  46951. name: "Back",
  46952. image: {
  46953. source: "./media/characters/alex-xuria/demon-back.svg",
  46954. extra: 1725/1693,
  46955. bottom: 70/1795
  46956. },
  46957. form: "demon"
  46958. },
  46959. demonHead: {
  46960. height: math.unit(2.14, "meters"),
  46961. name: "Head",
  46962. image: {
  46963. source: "./media/characters/alex-xuria/demon-head.svg"
  46964. },
  46965. form: "demon"
  46966. },
  46967. demonHand: {
  46968. height: math.unit(1.61, "meters"),
  46969. name: "Hand",
  46970. image: {
  46971. source: "./media/characters/alex-xuria/demon-hand.svg"
  46972. },
  46973. form: "demon"
  46974. },
  46975. demonPaw: {
  46976. height: math.unit(1.35, "meters"),
  46977. name: "Paw",
  46978. image: {
  46979. source: "./media/characters/alex-xuria/demon-paw.svg"
  46980. },
  46981. form: "demon"
  46982. },
  46983. demonFoot: {
  46984. height: math.unit(2.2, "meters"),
  46985. name: "Foot",
  46986. image: {
  46987. source: "./media/characters/alex-xuria/demon-foot.svg"
  46988. },
  46989. form: "demon"
  46990. },
  46991. demonCock: {
  46992. height: math.unit(1.74, "meters"),
  46993. name: "Cock",
  46994. image: {
  46995. source: "./media/characters/alex-xuria/demon-cock.svg"
  46996. },
  46997. form: "demon"
  46998. },
  46999. demonTailClosed: {
  47000. height: math.unit(1.47, "meters"),
  47001. name: "Tail (Closed)",
  47002. image: {
  47003. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47004. },
  47005. form: "demon"
  47006. },
  47007. demonTailOpen: {
  47008. height: math.unit(2.85, "meters"),
  47009. name: "Tail (Open)",
  47010. image: {
  47011. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47012. },
  47013. form: "demon"
  47014. },
  47015. incubusFront: {
  47016. height: math.unit(12, "feet"),
  47017. name: "Front",
  47018. image: {
  47019. source: "./media/characters/alex-xuria/incubus-front.svg",
  47020. extra: 1754/1677,
  47021. bottom: 125/1879
  47022. },
  47023. form: "incubus",
  47024. default: true
  47025. },
  47026. incubusBack: {
  47027. height: math.unit(12, "feet"),
  47028. name: "Back",
  47029. image: {
  47030. source: "./media/characters/alex-xuria/incubus-back.svg",
  47031. extra: 1702/1647,
  47032. bottom: 30/1732
  47033. },
  47034. form: "incubus"
  47035. },
  47036. incubusHead: {
  47037. height: math.unit(3.45, "feet"),
  47038. name: "Head",
  47039. image: {
  47040. source: "./media/characters/alex-xuria/incubus-head.svg"
  47041. },
  47042. form: "incubus"
  47043. },
  47044. rabbitFront: {
  47045. height: math.unit(6, "feet"),
  47046. name: "Front",
  47047. image: {
  47048. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47049. extra: 1369/1349,
  47050. bottom: 45/1414
  47051. },
  47052. form: "rabbit",
  47053. default: true
  47054. },
  47055. rabbitSide: {
  47056. height: math.unit(6, "feet"),
  47057. name: "Side",
  47058. image: {
  47059. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47060. extra: 1370/1356,
  47061. bottom: 37/1407
  47062. },
  47063. form: "rabbit"
  47064. },
  47065. rabbitBack: {
  47066. height: math.unit(6, "feet"),
  47067. name: "Back",
  47068. image: {
  47069. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47070. extra: 1375/1358,
  47071. bottom: 43/1418
  47072. },
  47073. form: "rabbit"
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(6, "feet"),
  47080. default: true,
  47081. form: "rabbit"
  47082. },
  47083. {
  47084. name: "Incubus",
  47085. height: math.unit(12, "feet"),
  47086. default: true,
  47087. form: "incubus"
  47088. },
  47089. {
  47090. name: "Demon",
  47091. height: math.unit(36, "feet"),
  47092. default: true,
  47093. form: "demon"
  47094. }
  47095. ],
  47096. {
  47097. "demon": {
  47098. name: "Demon",
  47099. default: true
  47100. },
  47101. "incubus": {
  47102. name: "Incubus",
  47103. },
  47104. "rabbit": {
  47105. name: "Rabbit"
  47106. }
  47107. }
  47108. ))
  47109. characterMakers.push(() => makeCharacter(
  47110. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47111. {
  47112. front: {
  47113. height: math.unit(7 + 5/12, "feet"),
  47114. weight: math.unit(510, "lb"),
  47115. name: "Front",
  47116. image: {
  47117. source: "./media/characters/syrup/front.svg",
  47118. extra: 932/916,
  47119. bottom: 26/958
  47120. }
  47121. },
  47122. },
  47123. [
  47124. {
  47125. name: "Normal",
  47126. height: math.unit(7 + 5/12, "feet"),
  47127. default: true
  47128. },
  47129. {
  47130. name: "Big",
  47131. height: math.unit(50, "feet")
  47132. },
  47133. {
  47134. name: "Macro",
  47135. height: math.unit(300, "feet")
  47136. },
  47137. {
  47138. name: "Megamacro",
  47139. height: math.unit(1, "mile")
  47140. },
  47141. ]
  47142. ))
  47143. characterMakers.push(() => makeCharacter(
  47144. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47145. {
  47146. front: {
  47147. height: math.unit(6 + 9/12, "feet"),
  47148. name: "Front",
  47149. image: {
  47150. source: "./media/characters/zeimne/front.svg",
  47151. extra: 1969/1806,
  47152. bottom: 53/2022
  47153. }
  47154. },
  47155. },
  47156. [
  47157. {
  47158. name: "Normal",
  47159. height: math.unit(6 + 9/12, "feet"),
  47160. default: true
  47161. },
  47162. {
  47163. name: "Giant",
  47164. height: math.unit(550, "feet")
  47165. },
  47166. {
  47167. name: "Mega",
  47168. height: math.unit(3, "miles")
  47169. },
  47170. {
  47171. name: "Giga",
  47172. height: math.unit(250, "miles")
  47173. },
  47174. {
  47175. name: "Tera",
  47176. height: math.unit(1, "AU")
  47177. },
  47178. ]
  47179. ))
  47180. characterMakers.push(() => makeCharacter(
  47181. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47182. {
  47183. front: {
  47184. height: math.unit(5 + 2/12, "feet"),
  47185. name: "Front",
  47186. image: {
  47187. source: "./media/characters/grar/front.svg",
  47188. extra: 1331/1119,
  47189. bottom: 60/1391
  47190. }
  47191. },
  47192. back: {
  47193. height: math.unit(5 + 2/12, "feet"),
  47194. name: "Back",
  47195. image: {
  47196. source: "./media/characters/grar/back.svg",
  47197. extra: 1385/1169,
  47198. bottom: 23/1408
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(5 + 2/12, "feet"),
  47206. default: true
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47212. {
  47213. front: {
  47214. height: math.unit(13 + 7/12, "feet"),
  47215. weight: math.unit(2200, "lb"),
  47216. name: "Front",
  47217. image: {
  47218. source: "./media/characters/endraya/front.svg",
  47219. extra: 1289/1215,
  47220. bottom: 50/1339
  47221. }
  47222. },
  47223. nude: {
  47224. height: math.unit(13 + 7/12, "feet"),
  47225. weight: math.unit(2200, "lb"),
  47226. name: "Nude",
  47227. image: {
  47228. source: "./media/characters/endraya/nude.svg",
  47229. extra: 1247/1171,
  47230. bottom: 40/1287
  47231. }
  47232. },
  47233. head: {
  47234. height: math.unit(2.6, "feet"),
  47235. name: "Head",
  47236. image: {
  47237. source: "./media/characters/endraya/head.svg"
  47238. }
  47239. },
  47240. slit: {
  47241. height: math.unit(3.4, "feet"),
  47242. name: "Slit",
  47243. image: {
  47244. source: "./media/characters/endraya/slit.svg"
  47245. }
  47246. },
  47247. },
  47248. [
  47249. {
  47250. name: "Normal",
  47251. height: math.unit(13 + 7/12, "feet"),
  47252. default: true
  47253. },
  47254. {
  47255. name: "Macro",
  47256. height: math.unit(200, "feet")
  47257. },
  47258. ]
  47259. ))
  47260. characterMakers.push(() => makeCharacter(
  47261. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47262. {
  47263. front: {
  47264. height: math.unit(1.81, "meters"),
  47265. weight: math.unit(69, "kg"),
  47266. name: "Front",
  47267. image: {
  47268. source: "./media/characters/rodryana/front.svg",
  47269. extra: 2002/1921,
  47270. bottom: 53/2055
  47271. }
  47272. },
  47273. back: {
  47274. height: math.unit(1.81, "meters"),
  47275. weight: math.unit(69, "kg"),
  47276. name: "Back",
  47277. image: {
  47278. source: "./media/characters/rodryana/back.svg",
  47279. extra: 1993/1926,
  47280. bottom: 48/2041
  47281. }
  47282. },
  47283. maw: {
  47284. height: math.unit(0.19769417475, "meters"),
  47285. name: "Maw",
  47286. image: {
  47287. source: "./media/characters/rodryana/maw.svg"
  47288. }
  47289. },
  47290. slit: {
  47291. height: math.unit(0.31631067961, "meters"),
  47292. name: "Slit",
  47293. image: {
  47294. source: "./media/characters/rodryana/slit.svg"
  47295. }
  47296. },
  47297. },
  47298. [
  47299. {
  47300. name: "Normal",
  47301. height: math.unit(1.81, "meters")
  47302. },
  47303. {
  47304. name: "Mini Macro",
  47305. height: math.unit(181, "meters")
  47306. },
  47307. {
  47308. name: "Macro",
  47309. height: math.unit(452, "meters"),
  47310. default: true
  47311. },
  47312. {
  47313. name: "Mega Macro",
  47314. height: math.unit(1.375, "km")
  47315. },
  47316. {
  47317. name: "Giga Macro",
  47318. height: math.unit(13.575, "km")
  47319. },
  47320. ]
  47321. ))
  47322. characterMakers.push(() => makeCharacter(
  47323. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47324. {
  47325. front: {
  47326. height: math.unit(6, "feet"),
  47327. weight: math.unit(1000, "lb"),
  47328. name: "Front",
  47329. image: {
  47330. source: "./media/characters/asaya/front.svg",
  47331. extra: 1460/1200,
  47332. bottom: 71/1531
  47333. }
  47334. },
  47335. },
  47336. [
  47337. {
  47338. name: "Normal",
  47339. height: math.unit(8, "km"),
  47340. default: true
  47341. },
  47342. ]
  47343. ))
  47344. characterMakers.push(() => makeCharacter(
  47345. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47346. {
  47347. front: {
  47348. height: math.unit(3.5, "meters"),
  47349. name: "Front",
  47350. image: {
  47351. source: "./media/characters/sarzu-and-israz/front.svg",
  47352. extra: 1570/1558,
  47353. bottom: 150/1720
  47354. },
  47355. },
  47356. back: {
  47357. height: math.unit(3.5, "meters"),
  47358. name: "Back",
  47359. image: {
  47360. source: "./media/characters/sarzu-and-israz/back.svg",
  47361. extra: 1523/1509,
  47362. bottom: 132/1655
  47363. },
  47364. },
  47365. frontFemale: {
  47366. height: math.unit(3.5, "meters"),
  47367. name: "Front (Female)",
  47368. image: {
  47369. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47370. extra: 1570/1558,
  47371. bottom: 150/1720
  47372. },
  47373. },
  47374. frontHerm: {
  47375. height: math.unit(3.5, "meters"),
  47376. name: "Front (Herm)",
  47377. image: {
  47378. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47379. extra: 1570/1558,
  47380. bottom: 150/1720
  47381. },
  47382. },
  47383. },
  47384. [
  47385. {
  47386. name: "Normal",
  47387. height: math.unit(3.5, "meters"),
  47388. default: true,
  47389. },
  47390. {
  47391. name: "Macro",
  47392. height: math.unit(65.5, "meters"),
  47393. },
  47394. ],
  47395. ))
  47396. characterMakers.push(() => makeCharacter(
  47397. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47398. {
  47399. front: {
  47400. height: math.unit(6, "feet"),
  47401. weight: math.unit(250, "lb"),
  47402. name: "Front",
  47403. image: {
  47404. source: "./media/characters/zenimma/front.svg",
  47405. extra: 1346/1320,
  47406. bottom: 58/1404
  47407. }
  47408. },
  47409. back: {
  47410. height: math.unit(6, "feet"),
  47411. weight: math.unit(250, "lb"),
  47412. name: "Back",
  47413. image: {
  47414. source: "./media/characters/zenimma/back.svg",
  47415. extra: 1324/1308,
  47416. bottom: 44/1368
  47417. }
  47418. },
  47419. dick: {
  47420. height: math.unit(1.44, "feet"),
  47421. name: "Dick",
  47422. image: {
  47423. source: "./media/characters/zenimma/dick.svg"
  47424. }
  47425. },
  47426. },
  47427. [
  47428. {
  47429. name: "Canon Height",
  47430. height: math.unit(66, "miles"),
  47431. default: true
  47432. },
  47433. ]
  47434. ))
  47435. characterMakers.push(() => makeCharacter(
  47436. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47437. {
  47438. nude: {
  47439. height: math.unit(6, "feet"),
  47440. weight: math.unit(150, "lb"),
  47441. name: "Nude",
  47442. image: {
  47443. source: "./media/characters/shavon/nude.svg",
  47444. extra: 1242/1096,
  47445. bottom: 98/1340
  47446. }
  47447. },
  47448. dressed: {
  47449. height: math.unit(6, "feet"),
  47450. weight: math.unit(150, "lb"),
  47451. name: "Dressed",
  47452. image: {
  47453. source: "./media/characters/shavon/dressed.svg",
  47454. extra: 1242/1096,
  47455. bottom: 98/1340
  47456. }
  47457. },
  47458. },
  47459. [
  47460. {
  47461. name: "Macro",
  47462. height: math.unit(255, "feet"),
  47463. default: true
  47464. },
  47465. ]
  47466. ))
  47467. characterMakers.push(() => makeCharacter(
  47468. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47469. {
  47470. front: {
  47471. height: math.unit(6, "feet"),
  47472. name: "Front",
  47473. image: {
  47474. source: "./media/characters/steph/front.svg",
  47475. extra: 1430/1330,
  47476. bottom: 54/1484
  47477. }
  47478. },
  47479. },
  47480. [
  47481. {
  47482. name: "Normal",
  47483. height: math.unit(6, "feet"),
  47484. default: true
  47485. },
  47486. ]
  47487. ))
  47488. characterMakers.push(() => makeCharacter(
  47489. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47490. {
  47491. front: {
  47492. height: math.unit(9, "feet"),
  47493. weight: math.unit(400, "lb"),
  47494. name: "Front",
  47495. image: {
  47496. source: "./media/characters/kil'aman/front.svg",
  47497. extra: 1210/1159,
  47498. bottom: 109/1319
  47499. }
  47500. },
  47501. head: {
  47502. height: math.unit(2.14, "feet"),
  47503. name: "Head",
  47504. image: {
  47505. source: "./media/characters/kil'aman/head.svg"
  47506. }
  47507. },
  47508. maw: {
  47509. height: math.unit(1.21, "feet"),
  47510. name: "Maw",
  47511. image: {
  47512. source: "./media/characters/kil'aman/maw.svg"
  47513. }
  47514. },
  47515. foot: {
  47516. height: math.unit(1.7, "feet"),
  47517. name: "Foot",
  47518. image: {
  47519. source: "./media/characters/kil'aman/foot.svg"
  47520. }
  47521. },
  47522. dick: {
  47523. height: math.unit(2.1, "feet"),
  47524. name: "Dick",
  47525. image: {
  47526. source: "./media/characters/kil'aman/dick.svg"
  47527. }
  47528. },
  47529. },
  47530. [
  47531. {
  47532. name: "Normal",
  47533. height: math.unit(9, "feet")
  47534. },
  47535. {
  47536. name: "Canon Height",
  47537. height: math.unit(10, "miles"),
  47538. default: true
  47539. },
  47540. {
  47541. name: "Maximum",
  47542. height: math.unit(6e9, "miles")
  47543. },
  47544. ]
  47545. ))
  47546. characterMakers.push(() => makeCharacter(
  47547. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47548. {
  47549. front: {
  47550. height: math.unit(90, "feet"),
  47551. weight: math.unit(675000, "lb"),
  47552. name: "Front",
  47553. image: {
  47554. source: "./media/characters/qadan/front.svg",
  47555. extra: 1012/1004,
  47556. bottom: 78/1090
  47557. }
  47558. },
  47559. back: {
  47560. height: math.unit(90, "feet"),
  47561. weight: math.unit(675000, "lb"),
  47562. name: "Back",
  47563. image: {
  47564. source: "./media/characters/qadan/back.svg",
  47565. extra: 1042/1031,
  47566. bottom: 55/1097
  47567. }
  47568. },
  47569. armored: {
  47570. height: math.unit(90, "feet"),
  47571. weight: math.unit(675000, "lb"),
  47572. name: "Armored",
  47573. image: {
  47574. source: "./media/characters/qadan/armored.svg",
  47575. extra: 1047/1037,
  47576. bottom: 48/1095
  47577. }
  47578. },
  47579. },
  47580. [
  47581. {
  47582. name: "Normal",
  47583. height: math.unit(90, "feet"),
  47584. default: true
  47585. },
  47586. ]
  47587. ))
  47588. characterMakers.push(() => makeCharacter(
  47589. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47590. {
  47591. front: {
  47592. height: math.unit(6, "feet"),
  47593. weight: math.unit(225, "lb"),
  47594. name: "Front",
  47595. image: {
  47596. source: "./media/characters/brooke/front.svg",
  47597. extra: 1050/1010,
  47598. bottom: 66/1116
  47599. }
  47600. },
  47601. back: {
  47602. height: math.unit(6, "feet"),
  47603. weight: math.unit(225, "lb"),
  47604. name: "Back",
  47605. image: {
  47606. source: "./media/characters/brooke/back.svg",
  47607. extra: 1053/1013,
  47608. bottom: 41/1094
  47609. }
  47610. },
  47611. dressed: {
  47612. height: math.unit(6, "feet"),
  47613. weight: math.unit(225, "lb"),
  47614. name: "Dressed",
  47615. image: {
  47616. source: "./media/characters/brooke/dressed.svg",
  47617. extra: 1050/1010,
  47618. bottom: 66/1116
  47619. }
  47620. },
  47621. },
  47622. [
  47623. {
  47624. name: "Canon Height",
  47625. height: math.unit(500, "miles"),
  47626. default: true
  47627. },
  47628. ]
  47629. ))
  47630. characterMakers.push(() => makeCharacter(
  47631. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47632. {
  47633. front: {
  47634. height: math.unit(6 + 2/12, "feet"),
  47635. weight: math.unit(210, "lb"),
  47636. name: "Front",
  47637. image: {
  47638. source: "./media/characters/wubs/front.svg",
  47639. extra: 1345/1325,
  47640. bottom: 70/1415
  47641. }
  47642. },
  47643. back: {
  47644. height: math.unit(6 + 2/12, "feet"),
  47645. weight: math.unit(210, "lb"),
  47646. name: "Back",
  47647. image: {
  47648. source: "./media/characters/wubs/back.svg",
  47649. extra: 1296/1275,
  47650. bottom: 58/1354
  47651. }
  47652. },
  47653. },
  47654. [
  47655. {
  47656. name: "Normal",
  47657. height: math.unit(6 + 2/12, "feet"),
  47658. default: true
  47659. },
  47660. {
  47661. name: "Macro",
  47662. height: math.unit(1000, "feet")
  47663. },
  47664. {
  47665. name: "Megamacro",
  47666. height: math.unit(1, "mile")
  47667. },
  47668. ]
  47669. ))
  47670. characterMakers.push(() => makeCharacter(
  47671. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47672. {
  47673. front: {
  47674. height: math.unit(4, "feet"),
  47675. weight: math.unit(120, "lb"),
  47676. name: "Front",
  47677. image: {
  47678. source: "./media/characters/blue/front.svg",
  47679. extra: 1636/1525,
  47680. bottom: 43/1679
  47681. }
  47682. },
  47683. back: {
  47684. height: math.unit(4, "feet"),
  47685. weight: math.unit(120, "lb"),
  47686. name: "Back",
  47687. image: {
  47688. source: "./media/characters/blue/back.svg",
  47689. extra: 1660/1560,
  47690. bottom: 57/1717
  47691. }
  47692. },
  47693. paws: {
  47694. height: math.unit(0.826, "feet"),
  47695. name: "Paws",
  47696. image: {
  47697. source: "./media/characters/blue/paws.svg"
  47698. }
  47699. },
  47700. },
  47701. [
  47702. {
  47703. name: "Micro",
  47704. height: math.unit(3, "inches")
  47705. },
  47706. {
  47707. name: "Normal",
  47708. height: math.unit(4, "feet"),
  47709. default: true
  47710. },
  47711. {
  47712. name: "Femenine Form",
  47713. height: math.unit(14, "feet")
  47714. },
  47715. {
  47716. name: "Werebat Form",
  47717. height: math.unit(18, "feet")
  47718. },
  47719. ]
  47720. ))
  47721. characterMakers.push(() => makeCharacter(
  47722. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47723. {
  47724. female: {
  47725. height: math.unit(7 + 4/12, "feet"),
  47726. weight: math.unit(243, "lb"),
  47727. name: "Female",
  47728. image: {
  47729. source: "./media/characters/kaya/female.svg",
  47730. extra: 975/898,
  47731. bottom: 34/1009
  47732. }
  47733. },
  47734. herm: {
  47735. height: math.unit(7 + 4/12, "feet"),
  47736. weight: math.unit(243, "lb"),
  47737. name: "Herm",
  47738. image: {
  47739. source: "./media/characters/kaya/herm.svg",
  47740. extra: 975/898,
  47741. bottom: 34/1009
  47742. }
  47743. },
  47744. },
  47745. [
  47746. {
  47747. name: "Normal",
  47748. height: math.unit(7 + 4/12, "feet"),
  47749. default: true
  47750. },
  47751. ]
  47752. ))
  47753. characterMakers.push(() => makeCharacter(
  47754. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47755. {
  47756. female: {
  47757. height: math.unit(9 + 4/12, "feet"),
  47758. weight: math.unit(398, "lb"),
  47759. name: "Female",
  47760. image: {
  47761. source: "./media/characters/kassandra/female.svg",
  47762. extra: 908/839,
  47763. bottom: 61/969
  47764. }
  47765. },
  47766. intersex: {
  47767. height: math.unit(9 + 4/12, "feet"),
  47768. weight: math.unit(398, "lb"),
  47769. name: "Intersex",
  47770. image: {
  47771. source: "./media/characters/kassandra/intersex.svg",
  47772. extra: 908/839,
  47773. bottom: 61/969
  47774. }
  47775. },
  47776. },
  47777. [
  47778. {
  47779. name: "Normal",
  47780. height: math.unit(9 + 4/12, "feet"),
  47781. default: true
  47782. },
  47783. ]
  47784. ))
  47785. characterMakers.push(() => makeCharacter(
  47786. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47787. {
  47788. front: {
  47789. height: math.unit(3, "meters"),
  47790. name: "Front",
  47791. image: {
  47792. source: "./media/characters/amy/front.svg",
  47793. extra: 1380/1343,
  47794. bottom: 70/1450
  47795. }
  47796. },
  47797. back: {
  47798. height: math.unit(3, "meters"),
  47799. name: "Back",
  47800. image: {
  47801. source: "./media/characters/amy/back.svg",
  47802. extra: 1380/1347,
  47803. bottom: 66/1446
  47804. }
  47805. },
  47806. },
  47807. [
  47808. {
  47809. name: "Normal",
  47810. height: math.unit(3, "meters"),
  47811. default: true
  47812. },
  47813. ]
  47814. ))
  47815. characterMakers.push(() => makeCharacter(
  47816. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47817. {
  47818. side: {
  47819. height: math.unit(47, "cm"),
  47820. weight: math.unit(10.8, "kg"),
  47821. name: "Side",
  47822. image: {
  47823. source: "./media/characters/alphaschakal/side.svg",
  47824. extra: 1058/568,
  47825. bottom: 62/1120
  47826. }
  47827. },
  47828. back: {
  47829. height: math.unit(78, "cm"),
  47830. weight: math.unit(10.8, "kg"),
  47831. name: "Back",
  47832. image: {
  47833. source: "./media/characters/alphaschakal/back.svg",
  47834. extra: 1102/942,
  47835. bottom: 185/1287
  47836. }
  47837. },
  47838. head: {
  47839. height: math.unit(28, "cm"),
  47840. name: "Head",
  47841. image: {
  47842. source: "./media/characters/alphaschakal/head.svg",
  47843. extra: 696/508,
  47844. bottom: 0/696
  47845. }
  47846. },
  47847. paw: {
  47848. height: math.unit(16, "cm"),
  47849. name: "Paw",
  47850. image: {
  47851. source: "./media/characters/alphaschakal/paw.svg"
  47852. }
  47853. },
  47854. },
  47855. [
  47856. {
  47857. name: "Normal",
  47858. height: math.unit(47, "cm"),
  47859. default: true
  47860. },
  47861. {
  47862. name: "Macro",
  47863. height: math.unit(340, "cm")
  47864. },
  47865. ]
  47866. ))
  47867. characterMakers.push(() => makeCharacter(
  47868. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47869. {
  47870. front: {
  47871. height: math.unit(36, "earths"),
  47872. name: "Front",
  47873. image: {
  47874. source: "./media/characters/ecobyss/front.svg",
  47875. extra: 1282/1215,
  47876. bottom: 11/1293
  47877. }
  47878. },
  47879. back: {
  47880. height: math.unit(36, "earths"),
  47881. name: "Back",
  47882. image: {
  47883. source: "./media/characters/ecobyss/back.svg",
  47884. extra: 1291/1222,
  47885. bottom: 8/1299
  47886. }
  47887. },
  47888. },
  47889. [
  47890. {
  47891. name: "Normal",
  47892. height: math.unit(36, "earths"),
  47893. default: true
  47894. },
  47895. ]
  47896. ))
  47897. characterMakers.push(() => makeCharacter(
  47898. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47899. {
  47900. front: {
  47901. height: math.unit(12, "feet"),
  47902. name: "Front",
  47903. image: {
  47904. source: "./media/characters/vasuk/front.svg",
  47905. extra: 1326/1207,
  47906. bottom: 64/1390
  47907. }
  47908. },
  47909. },
  47910. [
  47911. {
  47912. name: "Normal",
  47913. height: math.unit(12, "feet"),
  47914. default: true
  47915. },
  47916. ]
  47917. ))
  47918. characterMakers.push(() => makeCharacter(
  47919. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47920. {
  47921. side: {
  47922. height: math.unit(100, "feet"),
  47923. name: "Side",
  47924. image: {
  47925. source: "./media/characters/linneaus/side.svg",
  47926. extra: 987/807,
  47927. bottom: 47/1034
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Macro",
  47934. height: math.unit(100, "feet"),
  47935. default: true
  47936. },
  47937. ]
  47938. ))
  47939. characterMakers.push(() => makeCharacter(
  47940. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47941. {
  47942. front: {
  47943. height: math.unit(8, "feet"),
  47944. weight: math.unit(1200, "lb"),
  47945. name: "Front",
  47946. image: {
  47947. source: "./media/characters/nyterious-daligdig/front.svg",
  47948. extra: 1284/1094,
  47949. bottom: 84/1368
  47950. }
  47951. },
  47952. back: {
  47953. height: math.unit(8, "feet"),
  47954. weight: math.unit(1200, "lb"),
  47955. name: "Back",
  47956. image: {
  47957. source: "./media/characters/nyterious-daligdig/back.svg",
  47958. extra: 1301/1121,
  47959. bottom: 129/1430
  47960. }
  47961. },
  47962. mouth: {
  47963. height: math.unit(1.464, "feet"),
  47964. name: "Mouth",
  47965. image: {
  47966. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47967. }
  47968. },
  47969. },
  47970. [
  47971. {
  47972. name: "Small",
  47973. height: math.unit(8, "feet"),
  47974. default: true
  47975. },
  47976. {
  47977. name: "Normal",
  47978. height: math.unit(15, "feet")
  47979. },
  47980. {
  47981. name: "Macro",
  47982. height: math.unit(90, "feet")
  47983. },
  47984. ]
  47985. ))
  47986. characterMakers.push(() => makeCharacter(
  47987. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47988. {
  47989. front: {
  47990. height: math.unit(7 + 4/12, "feet"),
  47991. weight: math.unit(252, "lb"),
  47992. name: "Front",
  47993. image: {
  47994. source: "./media/characters/bandel/front.svg",
  47995. extra: 1946/1775,
  47996. bottom: 26/1972
  47997. }
  47998. },
  47999. back: {
  48000. height: math.unit(7 + 4/12, "feet"),
  48001. weight: math.unit(252, "lb"),
  48002. name: "Back",
  48003. image: {
  48004. source: "./media/characters/bandel/back.svg",
  48005. extra: 1940/1770,
  48006. bottom: 25/1965
  48007. }
  48008. },
  48009. maw: {
  48010. height: math.unit(2.15, "feet"),
  48011. name: "Maw",
  48012. image: {
  48013. source: "./media/characters/bandel/maw.svg"
  48014. }
  48015. },
  48016. stomach: {
  48017. height: math.unit(1.95, "feet"),
  48018. name: "Stomach",
  48019. image: {
  48020. source: "./media/characters/bandel/stomach.svg"
  48021. }
  48022. },
  48023. },
  48024. [
  48025. {
  48026. name: "Normal",
  48027. height: math.unit(7 + 4/12, "feet"),
  48028. default: true
  48029. },
  48030. ]
  48031. ))
  48032. characterMakers.push(() => makeCharacter(
  48033. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48034. {
  48035. front: {
  48036. height: math.unit(10 + 5/12, "feet"),
  48037. weight: math.unit(773.5, "kg"),
  48038. name: "Front",
  48039. image: {
  48040. source: "./media/characters/zed/front.svg",
  48041. extra: 987/941,
  48042. bottom: 52/1039
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Short",
  48049. height: math.unit(5 + 4/12, "feet")
  48050. },
  48051. {
  48052. name: "Average",
  48053. height: math.unit(10 + 5/12, "feet"),
  48054. default: true
  48055. },
  48056. {
  48057. name: "Mini-Macro",
  48058. height: math.unit(24 + 9/12, "feet")
  48059. },
  48060. {
  48061. name: "Macro",
  48062. height: math.unit(249, "feet")
  48063. },
  48064. {
  48065. name: "Mega-Macro",
  48066. height: math.unit(12490, "feet")
  48067. },
  48068. {
  48069. name: "Giga-Macro",
  48070. height: math.unit(24.9, "miles")
  48071. },
  48072. {
  48073. name: "Tera-Macro",
  48074. height: math.unit(24900, "miles")
  48075. },
  48076. {
  48077. name: "Cosmic Scale",
  48078. height: math.unit(38.9, "lightyears")
  48079. },
  48080. {
  48081. name: "Universal Scale",
  48082. height: math.unit(138e12, "lightyears")
  48083. },
  48084. ]
  48085. ))
  48086. characterMakers.push(() => makeCharacter(
  48087. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48088. {
  48089. front: {
  48090. height: math.unit(1561, "inches"),
  48091. name: "Front",
  48092. image: {
  48093. source: "./media/characters/ivan/front.svg",
  48094. extra: 1126/1071,
  48095. bottom: 26/1152
  48096. }
  48097. },
  48098. back: {
  48099. height: math.unit(1561, "inches"),
  48100. name: "Back",
  48101. image: {
  48102. source: "./media/characters/ivan/back.svg",
  48103. extra: 1134/1079,
  48104. bottom: 30/1164
  48105. }
  48106. },
  48107. },
  48108. [
  48109. {
  48110. name: "Normal",
  48111. height: math.unit(1561, "inches"),
  48112. default: true
  48113. },
  48114. ]
  48115. ))
  48116. characterMakers.push(() => makeCharacter(
  48117. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48118. {
  48119. front: {
  48120. height: math.unit(5 + 7/12, "feet"),
  48121. weight: math.unit(150, "lb"),
  48122. name: "Front",
  48123. image: {
  48124. source: "./media/characters/robin-arctic-hare/front.svg",
  48125. extra: 1148/974,
  48126. bottom: 20/1168
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Normal",
  48133. height: math.unit(5 + 7/12, "feet"),
  48134. default: true
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48140. {
  48141. side: {
  48142. height: math.unit(5, "feet"),
  48143. name: "Side",
  48144. image: {
  48145. source: "./media/characters/birch/side.svg",
  48146. extra: 985/796,
  48147. bottom: 111/1096
  48148. }
  48149. },
  48150. },
  48151. [
  48152. {
  48153. name: "Normal",
  48154. height: math.unit(5, "feet"),
  48155. default: true
  48156. },
  48157. ]
  48158. ))
  48159. characterMakers.push(() => makeCharacter(
  48160. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48161. {
  48162. front: {
  48163. height: math.unit(4, "feet"),
  48164. name: "Front",
  48165. image: {
  48166. source: "./media/characters/rasp/front.svg",
  48167. extra: 561/478,
  48168. bottom: 74/635
  48169. }
  48170. },
  48171. },
  48172. [
  48173. {
  48174. name: "Normal",
  48175. height: math.unit(4, "feet"),
  48176. default: true
  48177. },
  48178. ]
  48179. ))
  48180. characterMakers.push(() => makeCharacter(
  48181. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48182. {
  48183. front: {
  48184. height: math.unit(4 + 6/12, "feet"),
  48185. name: "Front",
  48186. image: {
  48187. source: "./media/characters/agatha/front.svg",
  48188. extra: 947/933,
  48189. bottom: 42/989
  48190. }
  48191. },
  48192. back: {
  48193. height: math.unit(4 + 6/12, "feet"),
  48194. name: "Back",
  48195. image: {
  48196. source: "./media/characters/agatha/back.svg",
  48197. extra: 935/922,
  48198. bottom: 48/983
  48199. }
  48200. },
  48201. },
  48202. [
  48203. {
  48204. name: "Normal",
  48205. height: math.unit(4 + 6 /12, "feet"),
  48206. default: true
  48207. },
  48208. {
  48209. name: "Max Size",
  48210. height: math.unit(500, "feet")
  48211. },
  48212. ]
  48213. ))
  48214. characterMakers.push(() => makeCharacter(
  48215. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48216. {
  48217. side: {
  48218. height: math.unit(30, "feet"),
  48219. name: "Side",
  48220. image: {
  48221. source: "./media/characters/roggy/side.svg",
  48222. extra: 909/643,
  48223. bottom: 63/972
  48224. }
  48225. },
  48226. lounging: {
  48227. height: math.unit(20, "feet"),
  48228. name: "Lounging",
  48229. image: {
  48230. source: "./media/characters/roggy/lounging.svg",
  48231. extra: 643/479,
  48232. bottom: 145/788
  48233. }
  48234. },
  48235. handpaw: {
  48236. height: math.unit(13.1, "feet"),
  48237. name: "Handpaw",
  48238. image: {
  48239. source: "./media/characters/roggy/handpaw.svg"
  48240. }
  48241. },
  48242. footpaw: {
  48243. height: math.unit(15.8, "feet"),
  48244. name: "Footpaw",
  48245. image: {
  48246. source: "./media/characters/roggy/footpaw.svg"
  48247. }
  48248. },
  48249. },
  48250. [
  48251. {
  48252. name: "Menacing",
  48253. height: math.unit(30, "feet"),
  48254. default: true
  48255. },
  48256. ]
  48257. ))
  48258. characterMakers.push(() => makeCharacter(
  48259. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48260. {
  48261. front: {
  48262. height: math.unit(5 + 7/12, "feet"),
  48263. weight: math.unit(135, "lb"),
  48264. name: "Front",
  48265. image: {
  48266. source: "./media/characters/naomi/front.svg",
  48267. extra: 1209/1154,
  48268. bottom: 129/1338
  48269. }
  48270. },
  48271. back: {
  48272. height: math.unit(5 + 7/12, "feet"),
  48273. weight: math.unit(135, "lb"),
  48274. name: "Back",
  48275. image: {
  48276. source: "./media/characters/naomi/back.svg",
  48277. extra: 1252/1190,
  48278. bottom: 23/1275
  48279. }
  48280. },
  48281. },
  48282. [
  48283. {
  48284. name: "Normal",
  48285. height: math.unit(5 + 7 /12, "feet"),
  48286. default: true
  48287. },
  48288. ]
  48289. ))
  48290. characterMakers.push(() => makeCharacter(
  48291. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48292. {
  48293. side: {
  48294. height: math.unit(35, "meters"),
  48295. name: "Side",
  48296. image: {
  48297. source: "./media/characters/kimpi/side.svg",
  48298. extra: 419/382,
  48299. bottom: 63/482
  48300. }
  48301. },
  48302. hand: {
  48303. height: math.unit(8.96, "meters"),
  48304. name: "Hand",
  48305. image: {
  48306. source: "./media/characters/kimpi/hand.svg"
  48307. }
  48308. },
  48309. },
  48310. [
  48311. {
  48312. name: "Normal",
  48313. height: math.unit(35, "meters"),
  48314. default: true
  48315. },
  48316. ]
  48317. ))
  48318. characterMakers.push(() => makeCharacter(
  48319. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48320. {
  48321. front: {
  48322. height: math.unit(4 + 4/12, "feet"),
  48323. name: "Front",
  48324. image: {
  48325. source: "./media/characters/pepper-purrloin/front.svg",
  48326. extra: 1141/1024,
  48327. bottom: 21/1162
  48328. }
  48329. },
  48330. },
  48331. [
  48332. {
  48333. name: "Normal",
  48334. height: math.unit(4 + 4/12, "feet"),
  48335. default: true
  48336. },
  48337. ]
  48338. ))
  48339. characterMakers.push(() => makeCharacter(
  48340. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48341. {
  48342. front: {
  48343. height: math.unit(6 + 2/12, "feet"),
  48344. name: "Front",
  48345. image: {
  48346. source: "./media/characters/raphael/front.svg",
  48347. extra: 1101/962,
  48348. bottom: 59/1160
  48349. }
  48350. },
  48351. },
  48352. [
  48353. {
  48354. name: "Normal",
  48355. height: math.unit(6 + 2/12, "feet"),
  48356. default: true
  48357. },
  48358. ]
  48359. ))
  48360. characterMakers.push(() => makeCharacter(
  48361. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48362. {
  48363. front: {
  48364. height: math.unit(6, "feet"),
  48365. weight: math.unit(150, "lb"),
  48366. name: "Front",
  48367. image: {
  48368. source: "./media/characters/victor-williams/front.svg",
  48369. extra: 1894/1825,
  48370. bottom: 67/1961
  48371. }
  48372. },
  48373. },
  48374. [
  48375. {
  48376. name: "Normal",
  48377. height: math.unit(6, "feet"),
  48378. default: true
  48379. },
  48380. ]
  48381. ))
  48382. characterMakers.push(() => makeCharacter(
  48383. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48384. {
  48385. front: {
  48386. height: math.unit(5 + 8/12, "feet"),
  48387. weight: math.unit(150, "lb"),
  48388. name: "Front",
  48389. image: {
  48390. source: "./media/characters/rachel/front.svg",
  48391. extra: 1902/1787,
  48392. bottom: 46/1948
  48393. }
  48394. },
  48395. },
  48396. [
  48397. {
  48398. name: "Base Height",
  48399. height: math.unit(5 + 8/12, "feet"),
  48400. default: true
  48401. },
  48402. {
  48403. name: "Macro",
  48404. height: math.unit(200, "feet")
  48405. },
  48406. {
  48407. name: "Mega Macro",
  48408. height: math.unit(1, "mile")
  48409. },
  48410. {
  48411. name: "Giga Macro",
  48412. height: math.unit(1500, "miles")
  48413. },
  48414. {
  48415. name: "Tera Macro",
  48416. height: math.unit(8000, "miles")
  48417. },
  48418. {
  48419. name: "Tera Macro+",
  48420. height: math.unit(2e5, "miles")
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48426. {
  48427. front: {
  48428. height: math.unit(6.5, "feet"),
  48429. name: "Front",
  48430. image: {
  48431. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48432. extra: 860/819,
  48433. bottom: 307/1167
  48434. }
  48435. },
  48436. back: {
  48437. height: math.unit(6.5, "feet"),
  48438. name: "Back",
  48439. image: {
  48440. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48441. extra: 880/837,
  48442. bottom: 395/1275
  48443. }
  48444. },
  48445. sleeping: {
  48446. height: math.unit(2.79, "feet"),
  48447. name: "Sleeping",
  48448. image: {
  48449. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48450. extra: 465/383,
  48451. bottom: 263/728
  48452. }
  48453. },
  48454. maw: {
  48455. height: math.unit(2.52, "feet"),
  48456. name: "Maw",
  48457. image: {
  48458. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48459. }
  48460. },
  48461. },
  48462. [
  48463. {
  48464. name: "Normal",
  48465. height: math.unit(6.5, "feet"),
  48466. default: true
  48467. },
  48468. ]
  48469. ))
  48470. characterMakers.push(() => makeCharacter(
  48471. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48472. {
  48473. front: {
  48474. height: math.unit(5, "feet"),
  48475. name: "Front",
  48476. image: {
  48477. source: "./media/characters/nova-nerium/front.svg",
  48478. extra: 1548/1392,
  48479. bottom: 374/1922
  48480. }
  48481. },
  48482. back: {
  48483. height: math.unit(5, "feet"),
  48484. name: "Back",
  48485. image: {
  48486. source: "./media/characters/nova-nerium/back.svg",
  48487. extra: 1658/1468,
  48488. bottom: 257/1915
  48489. }
  48490. },
  48491. },
  48492. [
  48493. {
  48494. name: "Normal",
  48495. height: math.unit(5, "feet"),
  48496. default: true
  48497. },
  48498. ]
  48499. ))
  48500. characterMakers.push(() => makeCharacter(
  48501. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48502. {
  48503. front: {
  48504. height: math.unit(5 + 4/12, "feet"),
  48505. name: "Front",
  48506. image: {
  48507. source: "./media/characters/ashe-pyriph/front.svg",
  48508. extra: 1935/1747,
  48509. bottom: 60/1995
  48510. }
  48511. },
  48512. },
  48513. [
  48514. {
  48515. name: "Normal",
  48516. height: math.unit(5 + 4/12, "feet"),
  48517. default: true
  48518. },
  48519. ]
  48520. ))
  48521. characterMakers.push(() => makeCharacter(
  48522. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48523. {
  48524. front: {
  48525. height: math.unit(8.7, "feet"),
  48526. name: "Front",
  48527. image: {
  48528. source: "./media/characters/flicker-wisp/front.svg",
  48529. extra: 1835/1613,
  48530. bottom: 449/2284
  48531. }
  48532. },
  48533. side: {
  48534. height: math.unit(8.7, "feet"),
  48535. name: "Side",
  48536. image: {
  48537. source: "./media/characters/flicker-wisp/side.svg",
  48538. extra: 1841/1642,
  48539. bottom: 336/2177
  48540. },
  48541. default: true
  48542. },
  48543. maw: {
  48544. height: math.unit(3.35, "feet"),
  48545. name: "Maw",
  48546. image: {
  48547. source: "./media/characters/flicker-wisp/maw.svg",
  48548. extra: 2338/1506,
  48549. bottom: 0/2338
  48550. }
  48551. },
  48552. ovipositor: {
  48553. height: math.unit(4.95, "feet"),
  48554. name: "Ovipositor",
  48555. image: {
  48556. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48557. }
  48558. },
  48559. egg: {
  48560. height: math.unit(0.385, "feet"),
  48561. weight: math.unit(2, "lb"),
  48562. name: "Egg",
  48563. image: {
  48564. source: "./media/characters/flicker-wisp/egg.svg"
  48565. }
  48566. },
  48567. },
  48568. [
  48569. {
  48570. name: "Normal",
  48571. height: math.unit(8.7, "feet"),
  48572. default: true
  48573. },
  48574. ]
  48575. ))
  48576. characterMakers.push(() => makeCharacter(
  48577. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48578. {
  48579. side: {
  48580. height: math.unit(11, "feet"),
  48581. name: "Side",
  48582. image: {
  48583. source: "./media/characters/faefnul/side.svg",
  48584. extra: 1100/1007,
  48585. bottom: 0/1100
  48586. }
  48587. },
  48588. },
  48589. [
  48590. {
  48591. name: "Normal",
  48592. height: math.unit(11, "feet"),
  48593. default: true
  48594. },
  48595. ]
  48596. ))
  48597. characterMakers.push(() => makeCharacter(
  48598. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48599. {
  48600. front: {
  48601. height: math.unit(6 + 2/12, "feet"),
  48602. name: "Front",
  48603. image: {
  48604. source: "./media/characters/shady/front.svg",
  48605. extra: 502/461,
  48606. bottom: 9/511
  48607. }
  48608. },
  48609. kneeling: {
  48610. height: math.unit(4.6, "feet"),
  48611. name: "Kneeling",
  48612. image: {
  48613. source: "./media/characters/shady/kneeling.svg",
  48614. extra: 1328/1219,
  48615. bottom: 117/1445
  48616. }
  48617. },
  48618. maw: {
  48619. height: math.unit(2, "feet"),
  48620. name: "Maw",
  48621. image: {
  48622. source: "./media/characters/shady/maw.svg"
  48623. }
  48624. },
  48625. },
  48626. [
  48627. {
  48628. name: "Nano",
  48629. height: math.unit(1, "mm")
  48630. },
  48631. {
  48632. name: "Micro",
  48633. height: math.unit(12, "mm")
  48634. },
  48635. {
  48636. name: "Tiny",
  48637. height: math.unit(3, "inches")
  48638. },
  48639. {
  48640. name: "Normal",
  48641. height: math.unit(6 + 2/12, "feet"),
  48642. default: true
  48643. },
  48644. {
  48645. name: "Big",
  48646. height: math.unit(15, "feet")
  48647. },
  48648. {
  48649. name: "Macro",
  48650. height: math.unit(150, "feet")
  48651. },
  48652. {
  48653. name: "Titanic",
  48654. height: math.unit(500, "feet")
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48660. {
  48661. front: {
  48662. height: math.unit(12, "feet"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/fenrir/front.svg",
  48666. extra: 968/875,
  48667. bottom: 22/990
  48668. }
  48669. },
  48670. },
  48671. [
  48672. {
  48673. name: "Big",
  48674. height: math.unit(12, "feet"),
  48675. default: true
  48676. },
  48677. ]
  48678. ))
  48679. characterMakers.push(() => makeCharacter(
  48680. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48681. {
  48682. front: {
  48683. height: math.unit(5 + 4/12, "feet"),
  48684. name: "Front",
  48685. image: {
  48686. source: "./media/characters/makar/front.svg",
  48687. extra: 1181/1112,
  48688. bottom: 78/1259
  48689. }
  48690. },
  48691. },
  48692. [
  48693. {
  48694. name: "Normal",
  48695. height: math.unit(5 + 4/12, "feet"),
  48696. default: true
  48697. },
  48698. ]
  48699. ))
  48700. characterMakers.push(() => makeCharacter(
  48701. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48702. {
  48703. front: {
  48704. height: math.unit(5 + 7/12, "feet"),
  48705. name: "Front",
  48706. image: {
  48707. source: "./media/characters/callow/front.svg",
  48708. extra: 1482/1304,
  48709. bottom: 23/1505
  48710. }
  48711. },
  48712. back: {
  48713. height: math.unit(5 + 7/12, "feet"),
  48714. name: "Back",
  48715. image: {
  48716. source: "./media/characters/callow/back.svg",
  48717. extra: 1484/1296,
  48718. bottom: 25/1509
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Micro",
  48725. height: math.unit(3, "inches"),
  48726. default: true
  48727. },
  48728. {
  48729. name: "Normal",
  48730. height: math.unit(5 + 7/12, "feet")
  48731. },
  48732. ]
  48733. ))
  48734. characterMakers.push(() => makeCharacter(
  48735. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48736. {
  48737. front: {
  48738. height: math.unit(6 + 2/12, "feet"),
  48739. name: "Front",
  48740. image: {
  48741. source: "./media/characters/natel/front.svg",
  48742. extra: 1833/1692,
  48743. bottom: 166/1999
  48744. }
  48745. },
  48746. },
  48747. [
  48748. {
  48749. name: "Normal",
  48750. height: math.unit(6 + 2/12, "feet"),
  48751. default: true
  48752. },
  48753. ]
  48754. ))
  48755. characterMakers.push(() => makeCharacter(
  48756. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48757. {
  48758. front: {
  48759. height: math.unit(1.75, "meters"),
  48760. name: "Front",
  48761. image: {
  48762. source: "./media/characters/misu/front.svg",
  48763. extra: 1690/1558,
  48764. bottom: 234/1924
  48765. }
  48766. },
  48767. back: {
  48768. height: math.unit(1.75, "meters"),
  48769. name: "Back",
  48770. image: {
  48771. source: "./media/characters/misu/back.svg",
  48772. extra: 1762/1618,
  48773. bottom: 146/1908
  48774. }
  48775. },
  48776. frontNude: {
  48777. height: math.unit(1.75, "meters"),
  48778. name: "Front (Nude)",
  48779. image: {
  48780. source: "./media/characters/misu/front-nude.svg",
  48781. extra: 1690/1558,
  48782. bottom: 234/1924
  48783. }
  48784. },
  48785. backNude: {
  48786. height: math.unit(1.75, "meters"),
  48787. name: "Back (Nude)",
  48788. image: {
  48789. source: "./media/characters/misu/back-nude.svg",
  48790. extra: 1762/1618,
  48791. bottom: 146/1908
  48792. }
  48793. },
  48794. frontErect: {
  48795. height: math.unit(1.75, "meters"),
  48796. name: "Front (Erect)",
  48797. image: {
  48798. source: "./media/characters/misu/front-erect.svg",
  48799. extra: 1690/1558,
  48800. bottom: 234/1924
  48801. }
  48802. },
  48803. maw: {
  48804. height: math.unit(0.47, "meters"),
  48805. name: "Maw",
  48806. image: {
  48807. source: "./media/characters/misu/maw.svg"
  48808. }
  48809. },
  48810. head: {
  48811. height: math.unit(0.35, "meters"),
  48812. name: "Head",
  48813. image: {
  48814. source: "./media/characters/misu/head.svg"
  48815. }
  48816. },
  48817. rear: {
  48818. height: math.unit(0.47, "meters"),
  48819. name: "Rear",
  48820. image: {
  48821. source: "./media/characters/misu/rear.svg"
  48822. }
  48823. },
  48824. },
  48825. [
  48826. {
  48827. name: "Normal",
  48828. height: math.unit(1.75, "meters")
  48829. },
  48830. {
  48831. name: "Not good for the people",
  48832. height: math.unit(42, "meters")
  48833. },
  48834. {
  48835. name: "Not good for the neighborhood",
  48836. height: math.unit(135, "meters")
  48837. },
  48838. {
  48839. name: "Bit bigger problem",
  48840. height: math.unit(380, "meters"),
  48841. default: true
  48842. },
  48843. {
  48844. name: "Not good for the city",
  48845. height: math.unit(1.5, "km")
  48846. },
  48847. {
  48848. name: "Not good for the county",
  48849. height: math.unit(5.5, "km")
  48850. },
  48851. {
  48852. name: "Not good for the state",
  48853. height: math.unit(25, "km")
  48854. },
  48855. {
  48856. name: "Not good for the country",
  48857. height: math.unit(125, "km")
  48858. },
  48859. {
  48860. name: "Not good for the continent",
  48861. height: math.unit(2100, "km")
  48862. },
  48863. {
  48864. name: "Not good for the planet",
  48865. height: math.unit(35000, "km")
  48866. },
  48867. {
  48868. name: "Just no",
  48869. height: math.unit(8.5e18, "km")
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48875. {
  48876. front: {
  48877. height: math.unit(6.5, "feet"),
  48878. name: "Front",
  48879. image: {
  48880. source: "./media/characters/poppy/front.svg",
  48881. extra: 1878/1812,
  48882. bottom: 43/1921
  48883. }
  48884. },
  48885. feet: {
  48886. height: math.unit(1.06, "feet"),
  48887. name: "Feet",
  48888. image: {
  48889. source: "./media/characters/poppy/feet.svg",
  48890. extra: 1083/1083,
  48891. bottom: 87/1170
  48892. }
  48893. },
  48894. },
  48895. [
  48896. {
  48897. name: "Human",
  48898. height: math.unit(6.5, "feet")
  48899. },
  48900. {
  48901. name: "Default",
  48902. height: math.unit(300, "feet"),
  48903. default: true
  48904. },
  48905. {
  48906. name: "Huge",
  48907. height: math.unit(850, "feet")
  48908. },
  48909. {
  48910. name: "Mega",
  48911. height: math.unit(8000, "feet")
  48912. },
  48913. {
  48914. name: "Giga",
  48915. height: math.unit(300, "miles")
  48916. },
  48917. ]
  48918. ))
  48919. characterMakers.push(() => makeCharacter(
  48920. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48921. {
  48922. bipedal: {
  48923. height: math.unit(7, "feet"),
  48924. name: "Bipedal",
  48925. image: {
  48926. source: "./media/characters/zener/bipedal.svg",
  48927. extra: 874/805,
  48928. bottom: 109/983
  48929. }
  48930. },
  48931. quadrupedal: {
  48932. height: math.unit(4.64, "feet"),
  48933. name: "Quadrupedal",
  48934. image: {
  48935. source: "./media/characters/zener/quadrupedal.svg",
  48936. extra: 638/507,
  48937. bottom: 190/828
  48938. }
  48939. },
  48940. cock: {
  48941. height: math.unit(18, "inches"),
  48942. name: "Cock",
  48943. image: {
  48944. source: "./media/characters/zener/cock.svg"
  48945. }
  48946. },
  48947. },
  48948. [
  48949. {
  48950. name: "Normal",
  48951. height: math.unit(7, "feet"),
  48952. default: true
  48953. },
  48954. ]
  48955. ))
  48956. characterMakers.push(() => makeCharacter(
  48957. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48958. {
  48959. nude: {
  48960. height: math.unit(5 + 6/12, "feet"),
  48961. name: "Nude",
  48962. image: {
  48963. source: "./media/characters/charlie-dog/nude.svg",
  48964. extra: 768/734,
  48965. bottom: 26/794
  48966. }
  48967. },
  48968. dressed: {
  48969. height: math.unit(5 + 6/12, "feet"),
  48970. name: "Dressed",
  48971. image: {
  48972. source: "./media/characters/charlie-dog/dressed.svg",
  48973. extra: 768/734,
  48974. bottom: 26/794
  48975. }
  48976. },
  48977. },
  48978. [
  48979. {
  48980. name: "Normal",
  48981. height: math.unit(5 + 6/12, "feet"),
  48982. default: true
  48983. },
  48984. ]
  48985. ))
  48986. characterMakers.push(() => makeCharacter(
  48987. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48988. {
  48989. front: {
  48990. height: math.unit(6 + 4/12, "feet"),
  48991. name: "Front",
  48992. image: {
  48993. source: "./media/characters/ir'istrasz/front.svg",
  48994. extra: 1014/977,
  48995. bottom: 65/1079
  48996. }
  48997. },
  48998. back: {
  48999. height: math.unit(6 + 4/12, "feet"),
  49000. name: "Back",
  49001. image: {
  49002. source: "./media/characters/ir'istrasz/back.svg",
  49003. extra: 1024/992,
  49004. bottom: 34/1058
  49005. }
  49006. },
  49007. },
  49008. [
  49009. {
  49010. name: "Normal",
  49011. height: math.unit(6 + 4/12, "feet"),
  49012. default: true
  49013. },
  49014. ]
  49015. ))
  49016. characterMakers.push(() => makeCharacter(
  49017. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49018. {
  49019. front: {
  49020. height: math.unit(5 + 8/12, "feet"),
  49021. name: "Front",
  49022. image: {
  49023. source: "./media/characters/dee-ditto/front.svg",
  49024. extra: 1874/1785,
  49025. bottom: 68/1942
  49026. }
  49027. },
  49028. back: {
  49029. height: math.unit(5 + 8/12, "feet"),
  49030. name: "Back",
  49031. image: {
  49032. source: "./media/characters/dee-ditto/back.svg",
  49033. extra: 1870/1783,
  49034. bottom: 77/1947
  49035. }
  49036. },
  49037. },
  49038. [
  49039. {
  49040. name: "Normal",
  49041. height: math.unit(5 + 8/12, "feet"),
  49042. default: true
  49043. },
  49044. ]
  49045. ))
  49046. characterMakers.push(() => makeCharacter(
  49047. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49048. {
  49049. front: {
  49050. height: math.unit(7 + 6/12, "feet"),
  49051. name: "Front",
  49052. image: {
  49053. source: "./media/characters/fey/front.svg",
  49054. extra: 995/979,
  49055. bottom: 30/1025
  49056. }
  49057. },
  49058. back: {
  49059. height: math.unit(7 + 6/12, "feet"),
  49060. name: "Back",
  49061. image: {
  49062. source: "./media/characters/fey/back.svg",
  49063. extra: 1079/1008,
  49064. bottom: 5/1084
  49065. }
  49066. },
  49067. dressed: {
  49068. height: math.unit(7 + 6/12, "feet"),
  49069. name: "Dressed",
  49070. image: {
  49071. source: "./media/characters/fey/dressed.svg",
  49072. extra: 995/979,
  49073. bottom: 30/1025
  49074. }
  49075. },
  49076. },
  49077. [
  49078. {
  49079. name: "Normal",
  49080. height: math.unit(7 + 6/12, "feet"),
  49081. default: true
  49082. },
  49083. ]
  49084. ))
  49085. characterMakers.push(() => makeCharacter(
  49086. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49087. {
  49088. standing: {
  49089. height: math.unit(17, "feet"),
  49090. name: "Standing",
  49091. image: {
  49092. source: "./media/characters/aster/standing.svg",
  49093. extra: 1798/1598,
  49094. bottom: 117/1915
  49095. }
  49096. },
  49097. },
  49098. [
  49099. {
  49100. name: "Normal",
  49101. height: math.unit(17, "feet"),
  49102. default: true
  49103. },
  49104. {
  49105. name: "Homewrecker",
  49106. height: math.unit(95, "feet")
  49107. },
  49108. {
  49109. name: "Planet Devourer",
  49110. height: math.unit(1008000, "miles")
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49116. {
  49117. front: {
  49118. height: math.unit(6 + 5/12, "feet"),
  49119. weight: math.unit(265, "lb"),
  49120. name: "Front",
  49121. image: {
  49122. source: "./media/characters/devon-childs/front.svg",
  49123. extra: 1795/1721,
  49124. bottom: 41/1836
  49125. }
  49126. },
  49127. side: {
  49128. height: math.unit(6 + 5/12, "feet"),
  49129. weight: math.unit(265, "lb"),
  49130. name: "Side",
  49131. image: {
  49132. source: "./media/characters/devon-childs/side.svg",
  49133. extra: 1812/1738,
  49134. bottom: 30/1842
  49135. }
  49136. },
  49137. back: {
  49138. height: math.unit(6 + 5/12, "feet"),
  49139. weight: math.unit(265, "lb"),
  49140. name: "Back",
  49141. image: {
  49142. source: "./media/characters/devon-childs/back.svg",
  49143. extra: 1808/1735,
  49144. bottom: 23/1831
  49145. }
  49146. },
  49147. hand: {
  49148. height: math.unit(1.464, "feet"),
  49149. name: "Hand",
  49150. image: {
  49151. source: "./media/characters/devon-childs/hand.svg"
  49152. }
  49153. },
  49154. foot: {
  49155. height: math.unit(1.6, "feet"),
  49156. name: "Foot",
  49157. image: {
  49158. source: "./media/characters/devon-childs/foot.svg"
  49159. }
  49160. },
  49161. },
  49162. [
  49163. {
  49164. name: "Micro",
  49165. height: math.unit(7, "cm")
  49166. },
  49167. {
  49168. name: "Normal",
  49169. height: math.unit(6 + 5/12, "feet"),
  49170. default: true
  49171. },
  49172. {
  49173. name: "Macro",
  49174. height: math.unit(154, "feet")
  49175. },
  49176. ]
  49177. ))
  49178. characterMakers.push(() => makeCharacter(
  49179. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49180. {
  49181. front: {
  49182. height: math.unit(6, "feet"),
  49183. weight: math.unit(180, "lb"),
  49184. name: "Front",
  49185. image: {
  49186. source: "./media/characters/lydemox-vir/front.svg",
  49187. extra: 1632/1435,
  49188. bottom: 58/1690
  49189. }
  49190. },
  49191. frontSFW: {
  49192. height: math.unit(6, "feet"),
  49193. weight: math.unit(180, "lb"),
  49194. name: "Front (SFW)",
  49195. image: {
  49196. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49197. extra: 1632/1435,
  49198. bottom: 58/1690
  49199. }
  49200. },
  49201. back: {
  49202. height: math.unit(6, "feet"),
  49203. weight: math.unit(180, "lb"),
  49204. name: "Back",
  49205. image: {
  49206. source: "./media/characters/lydemox-vir/back.svg",
  49207. extra: 1593/1408,
  49208. bottom: 31/1624
  49209. }
  49210. },
  49211. paw: {
  49212. height: math.unit(1.85, "feet"),
  49213. name: "Paw",
  49214. image: {
  49215. source: "./media/characters/lydemox-vir/paw.svg"
  49216. }
  49217. },
  49218. dick: {
  49219. height: math.unit(1.8, "feet"),
  49220. name: "Dick",
  49221. image: {
  49222. source: "./media/characters/lydemox-vir/dick.svg"
  49223. }
  49224. },
  49225. },
  49226. [
  49227. {
  49228. name: "Macro",
  49229. height: math.unit(100, "feet"),
  49230. default: true
  49231. },
  49232. {
  49233. name: "Teramacro",
  49234. height: math.unit(1, "earth")
  49235. },
  49236. {
  49237. name: "Planetary",
  49238. height: math.unit(20, "earths")
  49239. },
  49240. ]
  49241. ))
  49242. characterMakers.push(() => makeCharacter(
  49243. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49244. {
  49245. front: {
  49246. height: math.unit(15 + 8/12, "feet"),
  49247. weight: math.unit(1237, "kg"),
  49248. name: "Front",
  49249. image: {
  49250. source: "./media/characters/mia/front.svg",
  49251. extra: 1573/1446,
  49252. bottom: 58/1631
  49253. }
  49254. },
  49255. },
  49256. [
  49257. {
  49258. name: "Small",
  49259. height: math.unit(9 + 5/12, "feet")
  49260. },
  49261. {
  49262. name: "Normal",
  49263. height: math.unit(15 + 8/12, "feet"),
  49264. default: true
  49265. },
  49266. ]
  49267. ))
  49268. characterMakers.push(() => makeCharacter(
  49269. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49270. {
  49271. front: {
  49272. height: math.unit(10 + 6/12, "feet"),
  49273. weight: math.unit(1.3, "tons"),
  49274. name: "Front",
  49275. image: {
  49276. source: "./media/characters/mr-graves/front.svg",
  49277. extra: 1779/1695,
  49278. bottom: 198/1977
  49279. }
  49280. },
  49281. },
  49282. [
  49283. {
  49284. name: "Normal",
  49285. height: math.unit(10 + 6 /12, "feet"),
  49286. default: true
  49287. },
  49288. ]
  49289. ))
  49290. characterMakers.push(() => makeCharacter(
  49291. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49292. {
  49293. dressedFront: {
  49294. height: math.unit(5 + 8/12, "feet"),
  49295. weight: math.unit(125, "lb"),
  49296. name: "Dressed (Front)",
  49297. image: {
  49298. source: "./media/characters/jess/dressed-front.svg",
  49299. extra: 1176/1152,
  49300. bottom: 42/1218
  49301. }
  49302. },
  49303. dressedSide: {
  49304. height: math.unit(5 + 8/12, "feet"),
  49305. weight: math.unit(125, "lb"),
  49306. name: "Dressed (Side)",
  49307. image: {
  49308. source: "./media/characters/jess/dressed-side.svg",
  49309. extra: 1204/1190,
  49310. bottom: 6/1210
  49311. }
  49312. },
  49313. nudeFront: {
  49314. height: math.unit(5 + 8/12, "feet"),
  49315. weight: math.unit(125, "lb"),
  49316. name: "Nude (Front)",
  49317. image: {
  49318. source: "./media/characters/jess/nude-front.svg",
  49319. extra: 1176/1152,
  49320. bottom: 42/1218
  49321. }
  49322. },
  49323. nudeSide: {
  49324. height: math.unit(5 + 8/12, "feet"),
  49325. weight: math.unit(125, "lb"),
  49326. name: "Nude (Side)",
  49327. image: {
  49328. source: "./media/characters/jess/nude-side.svg",
  49329. extra: 1204/1190,
  49330. bottom: 6/1210
  49331. }
  49332. },
  49333. organsFront: {
  49334. height: math.unit(2.83799342105, "feet"),
  49335. name: "Organs (Front)",
  49336. image: {
  49337. source: "./media/characters/jess/organs-front.svg"
  49338. }
  49339. },
  49340. organsSide: {
  49341. height: math.unit(2.64225290474, "feet"),
  49342. name: "Organs (Side)",
  49343. image: {
  49344. source: "./media/characters/jess/organs-side.svg"
  49345. }
  49346. },
  49347. digestiveTractFront: {
  49348. height: math.unit(2.8106580871, "feet"),
  49349. name: "Digestive Tract (Front)",
  49350. image: {
  49351. source: "./media/characters/jess/digestive-tract-front.svg"
  49352. }
  49353. },
  49354. digestiveTractSide: {
  49355. height: math.unit(2.54365045014, "feet"),
  49356. name: "Digestive Tract (Side)",
  49357. image: {
  49358. source: "./media/characters/jess/digestive-tract-side.svg"
  49359. }
  49360. },
  49361. respiratorySystemFront: {
  49362. height: math.unit(1.11196233456, "feet"),
  49363. name: "Respiratory System (Front)",
  49364. image: {
  49365. source: "./media/characters/jess/respiratory-system-front.svg"
  49366. }
  49367. },
  49368. respiratorySystemSide: {
  49369. height: math.unit(0.89327966297, "feet"),
  49370. name: "Respiratory System (Side)",
  49371. image: {
  49372. source: "./media/characters/jess/respiratory-system-side.svg"
  49373. }
  49374. },
  49375. urinaryTractFront: {
  49376. height: math.unit(1.16126356186, "feet"),
  49377. name: "Urinary Tract (Front)",
  49378. image: {
  49379. source: "./media/characters/jess/urinary-tract-front.svg"
  49380. }
  49381. },
  49382. urinaryTractSide: {
  49383. height: math.unit(1.20910039627, "feet"),
  49384. name: "Urinary Tract (Side)",
  49385. image: {
  49386. source: "./media/characters/jess/urinary-tract-side.svg"
  49387. }
  49388. },
  49389. reproductiveOrgansFront: {
  49390. height: math.unit(0.48422591566, "feet"),
  49391. name: "Reproductive Organs (Front)",
  49392. image: {
  49393. source: "./media/characters/jess/reproductive-organs-front.svg"
  49394. }
  49395. },
  49396. reproductiveOrgansSide: {
  49397. height: math.unit(0.61553314481, "feet"),
  49398. name: "Reproductive Organs (Side)",
  49399. image: {
  49400. source: "./media/characters/jess/reproductive-organs-side.svg"
  49401. }
  49402. },
  49403. breastsFront: {
  49404. height: math.unit(0.47690395121, "feet"),
  49405. name: "Breasts (Front)",
  49406. image: {
  49407. source: "./media/characters/jess/breasts-front.svg"
  49408. }
  49409. },
  49410. breastsSide: {
  49411. height: math.unit(0.30556998307, "feet"),
  49412. name: "Breasts (Side)",
  49413. image: {
  49414. source: "./media/characters/jess/breasts-side.svg"
  49415. }
  49416. },
  49417. heartFront: {
  49418. height: math.unit(0.53011022622, "feet"),
  49419. name: "Heart (Front)",
  49420. image: {
  49421. source: "./media/characters/jess/heart-front.svg"
  49422. }
  49423. },
  49424. heartSide: {
  49425. height: math.unit(0.51790695213, "feet"),
  49426. name: "Heart (Side)",
  49427. image: {
  49428. source: "./media/characters/jess/heart-side.svg"
  49429. }
  49430. },
  49431. earsAndNoseFront: {
  49432. height: math.unit(0.29385483995, "feet"),
  49433. name: "Ears and Nose (Front)",
  49434. image: {
  49435. source: "./media/characters/jess/ears-and-nose-front.svg"
  49436. }
  49437. },
  49438. earsAndNoseSide: {
  49439. height: math.unit(0.18109658741, "feet"),
  49440. name: "Ears and Nose (Side)",
  49441. image: {
  49442. source: "./media/characters/jess/ears-and-nose-side.svg"
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Normal",
  49449. height: math.unit(5 + 8/12, "feet"),
  49450. default: true
  49451. },
  49452. ]
  49453. ))
  49454. characterMakers.push(() => makeCharacter(
  49455. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49456. {
  49457. front: {
  49458. height: math.unit(6, "feet"),
  49459. weight: math.unit(6.64467e-7, "grams"),
  49460. name: "Front",
  49461. image: {
  49462. source: "./media/characters/wimpering/front.svg",
  49463. extra: 597/587,
  49464. bottom: 34/631
  49465. }
  49466. },
  49467. },
  49468. [
  49469. {
  49470. name: "Micro",
  49471. height: math.unit(0.4, "mm"),
  49472. default: true
  49473. },
  49474. ]
  49475. ))
  49476. characterMakers.push(() => makeCharacter(
  49477. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49478. {
  49479. front: {
  49480. height: math.unit(5 + 2/12, "feet"),
  49481. weight: math.unit(110, "lb"),
  49482. name: "Front",
  49483. image: {
  49484. source: "./media/characters/keltre/front.svg",
  49485. extra: 1099/1057,
  49486. bottom: 22/1121
  49487. }
  49488. },
  49489. back: {
  49490. height: math.unit(5 + 2/12, "feet"),
  49491. weight: math.unit(110, "lb"),
  49492. name: "Back",
  49493. image: {
  49494. source: "./media/characters/keltre/back.svg",
  49495. extra: 1095/1053,
  49496. bottom: 17/1112
  49497. }
  49498. },
  49499. dressed: {
  49500. height: math.unit(5 + 2/12, "feet"),
  49501. weight: math.unit(110, "lb"),
  49502. name: "Dressed",
  49503. image: {
  49504. source: "./media/characters/keltre/dressed.svg",
  49505. extra: 1099/1057,
  49506. bottom: 22/1121
  49507. }
  49508. },
  49509. winter: {
  49510. height: math.unit(5 + 2/12, "feet"),
  49511. weight: math.unit(110, "lb"),
  49512. name: "Winter",
  49513. image: {
  49514. source: "./media/characters/keltre/winter.svg",
  49515. extra: 1099/1057,
  49516. bottom: 22/1121
  49517. }
  49518. },
  49519. head: {
  49520. height: math.unit(1.61 * 0.86, "feet"),
  49521. name: "Head",
  49522. image: {
  49523. source: "./media/characters/keltre/head.svg",
  49524. extra: 534/421,
  49525. bottom: 0/534
  49526. }
  49527. },
  49528. hand: {
  49529. height: math.unit(1.3 * 0.86, "feet"),
  49530. name: "Hand",
  49531. image: {
  49532. source: "./media/characters/keltre/hand.svg"
  49533. }
  49534. },
  49535. foot: {
  49536. height: math.unit(1.8 * 0.86, "feet"),
  49537. name: "Foot",
  49538. image: {
  49539. source: "./media/characters/keltre/foot.svg"
  49540. }
  49541. },
  49542. },
  49543. [
  49544. {
  49545. name: "Fine",
  49546. height: math.unit(1, "inch")
  49547. },
  49548. {
  49549. name: "Dimnutive",
  49550. height: math.unit(4, "inches")
  49551. },
  49552. {
  49553. name: "Tiny",
  49554. height: math.unit(1, "foot")
  49555. },
  49556. {
  49557. name: "Small",
  49558. height: math.unit(3, "feet")
  49559. },
  49560. {
  49561. name: "Normal",
  49562. height: math.unit(5 + 2/12, "feet"),
  49563. default: true
  49564. },
  49565. ]
  49566. ))
  49567. characterMakers.push(() => makeCharacter(
  49568. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49569. {
  49570. front: {
  49571. height: math.unit(6 + 2/12, "feet"),
  49572. name: "Front",
  49573. image: {
  49574. source: "./media/characters/nox/front.svg",
  49575. extra: 1917/1830,
  49576. bottom: 74/1991
  49577. }
  49578. },
  49579. back: {
  49580. height: math.unit(6 + 2/12, "feet"),
  49581. name: "Back",
  49582. image: {
  49583. source: "./media/characters/nox/back.svg",
  49584. extra: 1896/1815,
  49585. bottom: 21/1917
  49586. }
  49587. },
  49588. head: {
  49589. height: math.unit(1.1, "feet"),
  49590. name: "Head",
  49591. image: {
  49592. source: "./media/characters/nox/head.svg",
  49593. extra: 874/704,
  49594. bottom: 0/874
  49595. }
  49596. },
  49597. tattoo: {
  49598. height: math.unit(0.729, "feet"),
  49599. name: "Tattoo",
  49600. image: {
  49601. source: "./media/characters/nox/tattoo.svg"
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(6 + 2/12, "feet")
  49609. },
  49610. {
  49611. name: "Gigamacro",
  49612. height: math.unit(2, "earths"),
  49613. default: true
  49614. },
  49615. {
  49616. name: "Cosmic",
  49617. height: math.unit(867, "yottameters")
  49618. },
  49619. ]
  49620. ))
  49621. characterMakers.push(() => makeCharacter(
  49622. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49623. {
  49624. front: {
  49625. height: math.unit(6, "feet"),
  49626. weight: math.unit(150, "lb"),
  49627. name: "Front",
  49628. image: {
  49629. source: "./media/characters/caspian/front.svg",
  49630. extra: 1443/1359,
  49631. bottom: 0/1443
  49632. }
  49633. },
  49634. back: {
  49635. height: math.unit(6, "feet"),
  49636. weight: math.unit(150, "lb"),
  49637. name: "Back",
  49638. image: {
  49639. source: "./media/characters/caspian/back.svg",
  49640. extra: 1379/1309,
  49641. bottom: 0/1379
  49642. }
  49643. },
  49644. head: {
  49645. height: math.unit(0.9, "feet"),
  49646. name: "Head",
  49647. image: {
  49648. source: "./media/characters/caspian/head.svg",
  49649. extra: 692/492,
  49650. bottom: 0/692
  49651. }
  49652. },
  49653. headAlt: {
  49654. height: math.unit(0.95, "feet"),
  49655. name: "Head (Alt)",
  49656. image: {
  49657. source: "./media/characters/caspian/head-alt.svg",
  49658. extra: 668/508,
  49659. bottom: 0/668
  49660. }
  49661. },
  49662. hand: {
  49663. height: math.unit(0.8, "feet"),
  49664. name: "Hand",
  49665. image: {
  49666. source: "./media/characters/caspian/hand.svg"
  49667. }
  49668. },
  49669. paw: {
  49670. height: math.unit(0.95, "feet"),
  49671. name: "Paw",
  49672. image: {
  49673. source: "./media/characters/caspian/paw.svg"
  49674. }
  49675. },
  49676. },
  49677. [
  49678. {
  49679. name: "Normal",
  49680. height: math.unit(162, "feet"),
  49681. default: true
  49682. },
  49683. ]
  49684. ))
  49685. characterMakers.push(() => makeCharacter(
  49686. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49687. {
  49688. front: {
  49689. height: math.unit(6, "feet"),
  49690. name: "Front",
  49691. image: {
  49692. source: "./media/characters/myra-aisling/front.svg",
  49693. extra: 1268/1166,
  49694. bottom: 73/1341
  49695. }
  49696. },
  49697. back: {
  49698. height: math.unit(6, "feet"),
  49699. name: "Back",
  49700. image: {
  49701. source: "./media/characters/myra-aisling/back.svg",
  49702. extra: 1249/1149,
  49703. bottom: 79/1328
  49704. }
  49705. },
  49706. dressed: {
  49707. height: math.unit(6, "feet"),
  49708. name: "Dressed",
  49709. image: {
  49710. source: "./media/characters/myra-aisling/dressed.svg",
  49711. extra: 1290/1189,
  49712. bottom: 47/1337
  49713. }
  49714. },
  49715. hand: {
  49716. height: math.unit(1.1, "feet"),
  49717. name: "Hand",
  49718. image: {
  49719. source: "./media/characters/myra-aisling/hand.svg"
  49720. }
  49721. },
  49722. paw: {
  49723. height: math.unit(1.23, "feet"),
  49724. name: "Paw",
  49725. image: {
  49726. source: "./media/characters/myra-aisling/paw.svg"
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(160, "feet"),
  49734. default: true
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49740. {
  49741. front: {
  49742. height: math.unit(6, "feet"),
  49743. name: "Front",
  49744. image: {
  49745. source: "./media/characters/tenley-sidero/front.svg",
  49746. extra: 1365/1276,
  49747. bottom: 47/1412
  49748. }
  49749. },
  49750. back: {
  49751. height: math.unit(6, "feet"),
  49752. name: "Back",
  49753. image: {
  49754. source: "./media/characters/tenley-sidero/back.svg",
  49755. extra: 1383/1283,
  49756. bottom: 35/1418
  49757. }
  49758. },
  49759. dressed: {
  49760. height: math.unit(6, "feet"),
  49761. name: "Dressed",
  49762. image: {
  49763. source: "./media/characters/tenley-sidero/dressed.svg",
  49764. extra: 1364/1275,
  49765. bottom: 42/1406
  49766. }
  49767. },
  49768. head: {
  49769. height: math.unit(1.47, "feet"),
  49770. name: "Head",
  49771. image: {
  49772. source: "./media/characters/tenley-sidero/head.svg",
  49773. extra: 610/490,
  49774. bottom: 0/610
  49775. }
  49776. },
  49777. },
  49778. [
  49779. {
  49780. name: "Normal",
  49781. height: math.unit(154, "feet"),
  49782. default: true
  49783. },
  49784. ]
  49785. ))
  49786. characterMakers.push(() => makeCharacter(
  49787. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49788. {
  49789. front: {
  49790. height: math.unit(5, "inches"),
  49791. name: "Front",
  49792. image: {
  49793. source: "./media/characters/mallory/front.svg",
  49794. extra: 1919/1678,
  49795. bottom: 29/1948
  49796. }
  49797. },
  49798. hand: {
  49799. height: math.unit(0.73, "inches"),
  49800. name: "Hand",
  49801. image: {
  49802. source: "./media/characters/mallory/hand.svg"
  49803. }
  49804. },
  49805. paw: {
  49806. height: math.unit(0.68, "inches"),
  49807. name: "Paw",
  49808. image: {
  49809. source: "./media/characters/mallory/paw.svg"
  49810. }
  49811. },
  49812. },
  49813. [
  49814. {
  49815. name: "Small",
  49816. height: math.unit(5, "inches"),
  49817. default: true
  49818. },
  49819. ]
  49820. ))
  49821. characterMakers.push(() => makeCharacter(
  49822. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49823. {
  49824. naked: {
  49825. height: math.unit(6, "feet"),
  49826. name: "Naked",
  49827. image: {
  49828. source: "./media/characters/mab/naked.svg",
  49829. extra: 1855/1757,
  49830. bottom: 208/2063
  49831. }
  49832. },
  49833. outside: {
  49834. height: math.unit(6, "feet"),
  49835. name: "Outside",
  49836. image: {
  49837. source: "./media/characters/mab/outside.svg",
  49838. extra: 1855/1757,
  49839. bottom: 208/2063
  49840. }
  49841. },
  49842. party: {
  49843. height: math.unit(6, "feet"),
  49844. name: "Party",
  49845. image: {
  49846. source: "./media/characters/mab/party.svg",
  49847. extra: 1855/1757,
  49848. bottom: 208/2063
  49849. }
  49850. },
  49851. },
  49852. [
  49853. {
  49854. name: "Normal",
  49855. height: math.unit(165, "feet"),
  49856. default: true
  49857. },
  49858. ]
  49859. ))
  49860. characterMakers.push(() => makeCharacter(
  49861. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49862. {
  49863. feral: {
  49864. height: math.unit(12, "feet"),
  49865. weight: math.unit(20000, "lb"),
  49866. name: "Side",
  49867. image: {
  49868. source: "./media/characters/winter/feral.svg",
  49869. extra: 1286/943,
  49870. bottom: 112/1398
  49871. },
  49872. form: "feral",
  49873. default: true
  49874. },
  49875. feralNsfw: {
  49876. height: math.unit(12, "feet"),
  49877. weight: math.unit(20000, "lb"),
  49878. name: "Side (NSFW)",
  49879. image: {
  49880. source: "./media/characters/winter/feral-nsfw.svg",
  49881. extra: 1286/943,
  49882. bottom: 112/1398
  49883. },
  49884. form: "feral"
  49885. },
  49886. dick: {
  49887. height: math.unit(3.79, "feet"),
  49888. name: "Dick",
  49889. image: {
  49890. source: "./media/characters/winter/dick.svg"
  49891. },
  49892. form: "feral"
  49893. },
  49894. anthro: {
  49895. height: math.unit(12, "feet"),
  49896. weight: math.unit(10, "tons"),
  49897. name: "Anthro",
  49898. image: {
  49899. source: "./media/characters/winter/anthro.svg",
  49900. extra: 1701/1553,
  49901. bottom: 64/1765
  49902. },
  49903. form: "anthro",
  49904. default: true
  49905. },
  49906. },
  49907. [
  49908. {
  49909. name: "Big",
  49910. height: math.unit(12, "feet"),
  49911. default: true,
  49912. form: "feral"
  49913. },
  49914. {
  49915. name: "Big",
  49916. height: math.unit(12, "feet"),
  49917. default: true,
  49918. form: "anthro"
  49919. },
  49920. ],
  49921. {
  49922. "feral": {
  49923. name: "Feral",
  49924. default: true
  49925. },
  49926. "anthro": {
  49927. name: "Anthro"
  49928. }
  49929. }
  49930. ))
  49931. characterMakers.push(() => makeCharacter(
  49932. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49933. {
  49934. front: {
  49935. height: math.unit(4.1, "inches"),
  49936. name: "Front",
  49937. image: {
  49938. source: "./media/characters/alto/front.svg",
  49939. extra: 736/627,
  49940. bottom: 90/826
  49941. }
  49942. },
  49943. },
  49944. [
  49945. {
  49946. name: "Normal",
  49947. height: math.unit(4.1, "inches"),
  49948. default: true
  49949. },
  49950. ]
  49951. ))
  49952. characterMakers.push(() => makeCharacter(
  49953. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49954. {
  49955. sitting: {
  49956. height: math.unit(3, "feet"),
  49957. name: "Sitting",
  49958. image: {
  49959. source: "./media/characters/ratstrid-v/sitting.svg",
  49960. extra: 355/310,
  49961. bottom: 136/491
  49962. }
  49963. },
  49964. },
  49965. [
  49966. {
  49967. name: "Normal",
  49968. height: math.unit(3, "feet"),
  49969. default: true
  49970. },
  49971. ]
  49972. ))
  49973. characterMakers.push(() => makeCharacter(
  49974. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49975. {
  49976. back: {
  49977. height: math.unit(6, "feet"),
  49978. weight: math.unit(350, "lb"),
  49979. name: "Back",
  49980. image: {
  49981. source: "./media/characters/siz/back.svg",
  49982. extra: 1449/1274,
  49983. bottom: 13/1462
  49984. }
  49985. },
  49986. },
  49987. [
  49988. {
  49989. name: "Over-Overcompressed",
  49990. height: math.unit(8, "feet")
  49991. },
  49992. {
  49993. name: "Overcompressed",
  49994. height: math.unit(32, "feet")
  49995. },
  49996. {
  49997. name: "Compressed",
  49998. height: math.unit(128, "feet"),
  49999. default: true
  50000. },
  50001. {
  50002. name: "Half-Compressed",
  50003. height: math.unit(512, "feet")
  50004. },
  50005. {
  50006. name: "Quarter-Compressed",
  50007. height: math.unit(2048, "feet")
  50008. },
  50009. {
  50010. name: "Uncompressed?",
  50011. height: math.unit(8192, "feet")
  50012. },
  50013. ]
  50014. ))
  50015. characterMakers.push(() => makeCharacter(
  50016. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50017. {
  50018. front: {
  50019. height: math.unit(5 + 9/12, "feet"),
  50020. weight: math.unit(150, "lb"),
  50021. name: "Front",
  50022. image: {
  50023. source: "./media/characters/ven/front.svg",
  50024. extra: 1372/1320,
  50025. bottom: 73/1445
  50026. }
  50027. },
  50028. side: {
  50029. height: math.unit(5 + 9/12, "feet"),
  50030. weight: math.unit(1150, "lb"),
  50031. name: "Side",
  50032. image: {
  50033. source: "./media/characters/ven/side.svg",
  50034. extra: 1119/1070,
  50035. bottom: 42/1161
  50036. },
  50037. default: true
  50038. },
  50039. },
  50040. [
  50041. {
  50042. name: "Normal",
  50043. height: math.unit(5 + 9/12, "feet"),
  50044. default: true
  50045. },
  50046. ]
  50047. ))
  50048. characterMakers.push(() => makeCharacter(
  50049. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50050. {
  50051. front: {
  50052. height: math.unit(12, "feet"),
  50053. weight: math.unit(1000, "kg"),
  50054. name: "Front",
  50055. image: {
  50056. source: "./media/characters/maple/front.svg",
  50057. extra: 1193/1081,
  50058. bottom: 22/1215
  50059. }
  50060. },
  50061. },
  50062. [
  50063. {
  50064. name: "Compressed",
  50065. height: math.unit(7, "feet")
  50066. },
  50067. {
  50068. name: "Normal",
  50069. height: math.unit(12, "feet"),
  50070. default: true
  50071. },
  50072. ]
  50073. ))
  50074. characterMakers.push(() => makeCharacter(
  50075. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50076. {
  50077. front: {
  50078. height: math.unit(9, "feet"),
  50079. weight: math.unit(1500, "lb"),
  50080. name: "Front",
  50081. image: {
  50082. source: "./media/characters/nora/front.svg",
  50083. extra: 1348/1286,
  50084. bottom: 218/1566
  50085. }
  50086. },
  50087. erect: {
  50088. height: math.unit(9, "feet"),
  50089. weight: math.unit(11500, "lb"),
  50090. name: "Erect",
  50091. image: {
  50092. source: "./media/characters/nora/erect.svg",
  50093. extra: 1488/1433,
  50094. bottom: 133/1621
  50095. }
  50096. },
  50097. },
  50098. [
  50099. {
  50100. name: "Normal",
  50101. height: math.unit(9, "feet"),
  50102. default: true
  50103. },
  50104. ]
  50105. ))
  50106. characterMakers.push(() => makeCharacter(
  50107. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50108. {
  50109. front: {
  50110. height: math.unit(25, "feet"),
  50111. weight: math.unit(27500, "lb"),
  50112. name: "Front",
  50113. image: {
  50114. source: "./media/characters/north-caudin/front.svg",
  50115. extra: 1184/1082,
  50116. bottom: 23/1207
  50117. }
  50118. },
  50119. },
  50120. [
  50121. {
  50122. name: "Compressed",
  50123. height: math.unit(10, "feet")
  50124. },
  50125. {
  50126. name: "Normal",
  50127. height: math.unit(25, "feet"),
  50128. default: true
  50129. },
  50130. ]
  50131. ))
  50132. characterMakers.push(() => makeCharacter(
  50133. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50134. {
  50135. front: {
  50136. height: math.unit(9, "feet"),
  50137. weight: math.unit(1250, "lb"),
  50138. name: "Front",
  50139. image: {
  50140. source: "./media/characters/merrian/front.svg",
  50141. extra: 2393/2304,
  50142. bottom: 40/2433
  50143. }
  50144. },
  50145. },
  50146. [
  50147. {
  50148. name: "Normal",
  50149. height: math.unit(9, "feet"),
  50150. default: true
  50151. },
  50152. ]
  50153. ))
  50154. characterMakers.push(() => makeCharacter(
  50155. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50156. {
  50157. front: {
  50158. height: math.unit(9, "feet"),
  50159. weight: math.unit(1000, "lb"),
  50160. name: "Front",
  50161. image: {
  50162. source: "./media/characters/hazel/front.svg",
  50163. extra: 2351/2298,
  50164. bottom: 38/2389
  50165. }
  50166. },
  50167. },
  50168. [
  50169. {
  50170. name: "Normal",
  50171. height: math.unit(9, "feet"),
  50172. default: true
  50173. },
  50174. ]
  50175. ))
  50176. characterMakers.push(() => makeCharacter(
  50177. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50178. {
  50179. front: {
  50180. height: math.unit(13, "feet"),
  50181. weight: math.unit(3200, "lb"),
  50182. name: "Front",
  50183. image: {
  50184. source: "./media/characters/emma/front.svg",
  50185. extra: 2263/2029,
  50186. bottom: 68/2331
  50187. }
  50188. },
  50189. },
  50190. [
  50191. {
  50192. name: "Normal",
  50193. height: math.unit(13, "feet"),
  50194. default: true
  50195. },
  50196. ]
  50197. ))
  50198. characterMakers.push(() => makeCharacter(
  50199. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50200. {
  50201. front: {
  50202. height: math.unit(11 + 9/12, "feet"),
  50203. weight: math.unit(2500, "lb"),
  50204. name: "Front",
  50205. image: {
  50206. source: "./media/characters/ilumina/front.svg",
  50207. extra: 2248/2209,
  50208. bottom: 164/2412
  50209. }
  50210. },
  50211. },
  50212. [
  50213. {
  50214. name: "Normal",
  50215. height: math.unit(11 + 9/12, "feet"),
  50216. default: true
  50217. },
  50218. ]
  50219. ))
  50220. characterMakers.push(() => makeCharacter(
  50221. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50222. {
  50223. front: {
  50224. height: math.unit(8 + 10/12, "feet"),
  50225. weight: math.unit(1350, "lb"),
  50226. name: "Front",
  50227. image: {
  50228. source: "./media/characters/moonshine/front.svg",
  50229. extra: 2395/2288,
  50230. bottom: 40/2435
  50231. }
  50232. },
  50233. },
  50234. [
  50235. {
  50236. name: "Normal",
  50237. height: math.unit(8 + 10/12, "feet"),
  50238. default: true
  50239. },
  50240. ]
  50241. ))
  50242. characterMakers.push(() => makeCharacter(
  50243. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50244. {
  50245. front: {
  50246. height: math.unit(14, "feet"),
  50247. weight: math.unit(3400, "lb"),
  50248. name: "Front",
  50249. image: {
  50250. source: "./media/characters/aletia/front.svg",
  50251. extra: 1185/1052,
  50252. bottom: 21/1206
  50253. }
  50254. },
  50255. },
  50256. [
  50257. {
  50258. name: "Compressed",
  50259. height: math.unit(8, "feet")
  50260. },
  50261. {
  50262. name: "Normal",
  50263. height: math.unit(14, "feet"),
  50264. default: true
  50265. },
  50266. ]
  50267. ))
  50268. characterMakers.push(() => makeCharacter(
  50269. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50270. {
  50271. front: {
  50272. height: math.unit(17, "feet"),
  50273. weight: math.unit(6500, "lb"),
  50274. name: "Front",
  50275. image: {
  50276. source: "./media/characters/deidra/front.svg",
  50277. extra: 1201/1081,
  50278. bottom: 16/1217
  50279. }
  50280. },
  50281. },
  50282. [
  50283. {
  50284. name: "Compressed",
  50285. height: math.unit(9 + 6/12, "feet")
  50286. },
  50287. {
  50288. name: "Normal",
  50289. height: math.unit(17, "feet"),
  50290. default: true
  50291. },
  50292. ]
  50293. ))
  50294. characterMakers.push(() => makeCharacter(
  50295. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50296. {
  50297. front: {
  50298. height: math.unit(7 + 4/12, "feet"),
  50299. weight: math.unit(280, "lb"),
  50300. name: "Front",
  50301. image: {
  50302. source: "./media/characters/freki-yrmori/front.svg",
  50303. extra: 1286/1182,
  50304. bottom: 29/1315
  50305. }
  50306. },
  50307. maw: {
  50308. height: math.unit(0.9, "feet"),
  50309. name: "Maw",
  50310. image: {
  50311. source: "./media/characters/freki-yrmori/maw.svg"
  50312. }
  50313. },
  50314. },
  50315. [
  50316. {
  50317. name: "Normal",
  50318. height: math.unit(7 + 4/12, "feet"),
  50319. default: true
  50320. },
  50321. {
  50322. name: "Macro",
  50323. height: math.unit(38.5, "meters")
  50324. },
  50325. ]
  50326. ))
  50327. characterMakers.push(() => makeCharacter(
  50328. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50329. {
  50330. side: {
  50331. height: math.unit(47.2, "meters"),
  50332. weight: math.unit(10000, "tons"),
  50333. name: "Side",
  50334. image: {
  50335. source: "./media/characters/aetherios/side.svg",
  50336. extra: 2363/642,
  50337. bottom: 221/2584
  50338. }
  50339. },
  50340. top: {
  50341. height: math.unit(240, "meters"),
  50342. weight: math.unit(10000, "tons"),
  50343. name: "Top",
  50344. image: {
  50345. source: "./media/characters/aetherios/top.svg"
  50346. }
  50347. },
  50348. bottom: {
  50349. height: math.unit(240, "meters"),
  50350. weight: math.unit(10000, "tons"),
  50351. name: "Bottom",
  50352. image: {
  50353. source: "./media/characters/aetherios/bottom.svg"
  50354. }
  50355. },
  50356. head: {
  50357. height: math.unit(38.6, "meters"),
  50358. name: "Head",
  50359. image: {
  50360. source: "./media/characters/aetherios/head.svg",
  50361. extra: 1335/1112,
  50362. bottom: 0/1335
  50363. }
  50364. },
  50365. front: {
  50366. height: math.unit(29, "meters"),
  50367. name: "Front",
  50368. image: {
  50369. source: "./media/characters/aetherios/front.svg",
  50370. extra: 1266/953,
  50371. bottom: 158/1424
  50372. }
  50373. },
  50374. maw: {
  50375. height: math.unit(16.37, "meters"),
  50376. name: "Maw",
  50377. image: {
  50378. source: "./media/characters/aetherios/maw.svg",
  50379. extra: 748/637,
  50380. bottom: 0/748
  50381. },
  50382. extraAttributes: {
  50383. preyCapacity: {
  50384. name: "Capacity",
  50385. power: 3,
  50386. type: "volume",
  50387. base: math.unit(1000, "people")
  50388. },
  50389. tongueSize: {
  50390. name: "Tongue Size",
  50391. power: 2,
  50392. type: "area",
  50393. base: math.unit(21, "m^2")
  50394. }
  50395. }
  50396. },
  50397. forepaw: {
  50398. height: math.unit(18, "meters"),
  50399. name: "Forepaw",
  50400. image: {
  50401. source: "./media/characters/aetherios/forepaw.svg"
  50402. }
  50403. },
  50404. hindpaw: {
  50405. height: math.unit(23, "meters"),
  50406. name: "Hindpaw",
  50407. image: {
  50408. source: "./media/characters/aetherios/hindpaw.svg"
  50409. }
  50410. },
  50411. genitals: {
  50412. height: math.unit(42, "meters"),
  50413. name: "Genitals",
  50414. image: {
  50415. source: "./media/characters/aetherios/genitals.svg"
  50416. }
  50417. },
  50418. },
  50419. [
  50420. {
  50421. name: "Normal",
  50422. height: math.unit(47.2, "meters"),
  50423. default: true
  50424. },
  50425. {
  50426. name: "Macro",
  50427. height: math.unit(160, "meters")
  50428. },
  50429. {
  50430. name: "Mega",
  50431. height: math.unit(1.87, "km")
  50432. },
  50433. {
  50434. name: "Giga",
  50435. height: math.unit(40000, "km")
  50436. },
  50437. {
  50438. name: "Stellar",
  50439. height: math.unit(158000000, "km")
  50440. },
  50441. {
  50442. name: "Cosmic",
  50443. height: math.unit(9.46e12, "km")
  50444. },
  50445. ]
  50446. ))
  50447. characterMakers.push(() => makeCharacter(
  50448. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50449. {
  50450. front: {
  50451. height: math.unit(5 + 4/12, "feet"),
  50452. weight: math.unit(80, "lb"),
  50453. name: "Front",
  50454. image: {
  50455. source: "./media/characters/mizu-gieeg/front.svg",
  50456. extra: 850/709,
  50457. bottom: 52/902
  50458. }
  50459. },
  50460. back: {
  50461. height: math.unit(5 + 4/12, "feet"),
  50462. weight: math.unit(80, "lb"),
  50463. name: "Back",
  50464. image: {
  50465. source: "./media/characters/mizu-gieeg/back.svg",
  50466. extra: 882/745,
  50467. bottom: 25/907
  50468. }
  50469. },
  50470. },
  50471. [
  50472. {
  50473. name: "Normal",
  50474. height: math.unit(5 + 4/12, "feet"),
  50475. default: true
  50476. },
  50477. ]
  50478. ))
  50479. characterMakers.push(() => makeCharacter(
  50480. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50481. {
  50482. front: {
  50483. height: math.unit(6, "feet"),
  50484. name: "Front",
  50485. image: {
  50486. source: "./media/characters/roselle-st-papier/front.svg",
  50487. extra: 1430/1280,
  50488. bottom: 37/1467
  50489. }
  50490. },
  50491. back: {
  50492. height: math.unit(6, "feet"),
  50493. name: "Back",
  50494. image: {
  50495. source: "./media/characters/roselle-st-papier/back.svg",
  50496. extra: 1491/1296,
  50497. bottom: 23/1514
  50498. }
  50499. },
  50500. ear: {
  50501. height: math.unit(1.26, "feet"),
  50502. name: "Ear",
  50503. image: {
  50504. source: "./media/characters/roselle-st-papier/ear.svg"
  50505. }
  50506. },
  50507. },
  50508. [
  50509. {
  50510. name: "Normal",
  50511. height: math.unit(150, "feet"),
  50512. default: true
  50513. },
  50514. ]
  50515. ))
  50516. characterMakers.push(() => makeCharacter(
  50517. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50518. {
  50519. front: {
  50520. height: math.unit(1, "inches"),
  50521. name: "Front",
  50522. image: {
  50523. source: "./media/characters/valargent/front.svg",
  50524. extra: 1825/1694,
  50525. bottom: 62/1887
  50526. }
  50527. },
  50528. back: {
  50529. height: math.unit(1, "inches"),
  50530. name: "Back",
  50531. image: {
  50532. source: "./media/characters/valargent/back.svg",
  50533. extra: 1775/1682,
  50534. bottom: 88/1863
  50535. }
  50536. },
  50537. },
  50538. [
  50539. {
  50540. name: "Micro",
  50541. height: math.unit(1, "inch"),
  50542. default: true
  50543. },
  50544. ]
  50545. ))
  50546. characterMakers.push(() => makeCharacter(
  50547. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50548. {
  50549. front: {
  50550. height: math.unit(3.4, "meters"),
  50551. name: "Front",
  50552. image: {
  50553. source: "./media/characters/zarina/front.svg",
  50554. extra: 1733/1425,
  50555. bottom: 93/1826
  50556. }
  50557. },
  50558. squatting: {
  50559. height: math.unit(2.14, "meters"),
  50560. name: "Squatting",
  50561. image: {
  50562. source: "./media/characters/zarina/squatting.svg",
  50563. extra: 1073/788,
  50564. bottom: 63/1136
  50565. }
  50566. },
  50567. back: {
  50568. height: math.unit(2.14, "meters"),
  50569. name: "Back",
  50570. image: {
  50571. source: "./media/characters/zarina/back.svg",
  50572. extra: 1128/885,
  50573. bottom: 0/1128
  50574. }
  50575. },
  50576. },
  50577. [
  50578. {
  50579. name: "Normal",
  50580. height: math.unit(3.4, "meters"),
  50581. default: true
  50582. },
  50583. {
  50584. name: "Big",
  50585. height: math.unit(5, "meters")
  50586. },
  50587. {
  50588. name: "Macro",
  50589. height: math.unit(110, "meters")
  50590. },
  50591. ]
  50592. ))
  50593. characterMakers.push(() => makeCharacter(
  50594. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50595. {
  50596. front: {
  50597. height: math.unit(7, "feet"),
  50598. name: "Front",
  50599. image: {
  50600. source: "./media/characters/ventus-astro-fox/front.svg",
  50601. extra: 1792/1623,
  50602. bottom: 28/1820
  50603. }
  50604. },
  50605. back: {
  50606. height: math.unit(7, "feet"),
  50607. name: "Back",
  50608. image: {
  50609. source: "./media/characters/ventus-astro-fox/back.svg",
  50610. extra: 1789/1620,
  50611. bottom: 31/1820
  50612. }
  50613. },
  50614. outfit: {
  50615. height: math.unit(7, "feet"),
  50616. name: "Outfit",
  50617. image: {
  50618. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50619. extra: 1054/925,
  50620. bottom: 15/1069
  50621. }
  50622. },
  50623. head: {
  50624. height: math.unit(1.12, "feet"),
  50625. name: "Head",
  50626. image: {
  50627. source: "./media/characters/ventus-astro-fox/head.svg",
  50628. extra: 866/504,
  50629. bottom: 0/866
  50630. }
  50631. },
  50632. hand: {
  50633. height: math.unit(1, "feet"),
  50634. name: "Hand",
  50635. image: {
  50636. source: "./media/characters/ventus-astro-fox/hand.svg"
  50637. }
  50638. },
  50639. paw: {
  50640. height: math.unit(1.5, "feet"),
  50641. name: "Paw",
  50642. image: {
  50643. source: "./media/characters/ventus-astro-fox/paw.svg"
  50644. }
  50645. },
  50646. },
  50647. [
  50648. {
  50649. name: "Normal",
  50650. height: math.unit(7, "feet"),
  50651. default: true
  50652. },
  50653. {
  50654. name: "Macro",
  50655. height: math.unit(200, "feet")
  50656. },
  50657. {
  50658. name: "Cosmic",
  50659. height: math.unit(3, "universes")
  50660. },
  50661. ]
  50662. ))
  50663. characterMakers.push(() => makeCharacter(
  50664. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50665. {
  50666. front: {
  50667. height: math.unit(3, "meters"),
  50668. weight: math.unit(7000, "lb"),
  50669. name: "Front",
  50670. image: {
  50671. source: "./media/characters/core-t/front.svg",
  50672. extra: 5729/4941,
  50673. bottom: 1129/6858
  50674. }
  50675. },
  50676. },
  50677. [
  50678. {
  50679. name: "Big",
  50680. height: math.unit(3, "meters"),
  50681. default: true
  50682. },
  50683. ]
  50684. ))
  50685. characterMakers.push(() => makeCharacter(
  50686. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50687. {
  50688. normal: {
  50689. height: math.unit(6 + 6/12, "feet"),
  50690. weight: math.unit(275, "lb"),
  50691. name: "Front",
  50692. image: {
  50693. source: "./media/characters/cadbunny/normal.svg",
  50694. extra: 1129/947,
  50695. bottom: 93/1222
  50696. },
  50697. default: true,
  50698. form: "normal"
  50699. },
  50700. gigantamax: {
  50701. height: math.unit(26, "feet"),
  50702. weight: math.unit(16000, "lb"),
  50703. name: "Front",
  50704. image: {
  50705. source: "./media/characters/cadbunny/gigantamax.svg",
  50706. extra: 1133/944,
  50707. bottom: 90/1223
  50708. },
  50709. default: true,
  50710. form: "gigantamax"
  50711. },
  50712. },
  50713. [
  50714. {
  50715. name: "Normal",
  50716. height: math.unit(6 + 6/12, "feet"),
  50717. default: true,
  50718. form: "normal"
  50719. },
  50720. {
  50721. name: "Small",
  50722. height: math.unit(26, "feet"),
  50723. default: true,
  50724. form: "gigantamax"
  50725. },
  50726. {
  50727. name: "Large",
  50728. height: math.unit(78, "feet"),
  50729. form: "gigantamax"
  50730. },
  50731. ],
  50732. {
  50733. "normal": {
  50734. name: "Normal",
  50735. default: true
  50736. },
  50737. "gigantamax": {
  50738. name: "Gigantamax"
  50739. }
  50740. }
  50741. ))
  50742. characterMakers.push(() => makeCharacter(
  50743. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50744. {
  50745. anthroFront: {
  50746. height: math.unit(8, "feet"),
  50747. weight: math.unit(300, "lb"),
  50748. name: "Front",
  50749. image: {
  50750. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50751. extra: 1272/1176,
  50752. bottom: 53/1325
  50753. },
  50754. form: "anthro",
  50755. default: true
  50756. },
  50757. feralSide: {
  50758. height: math.unit(4, "feet"),
  50759. weight: math.unit(250, "lb"),
  50760. name: "Side",
  50761. image: {
  50762. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50763. extra: 731/621,
  50764. bottom: 0/731
  50765. },
  50766. form: "feral",
  50767. default: true
  50768. },
  50769. },
  50770. [
  50771. {
  50772. name: "Regular",
  50773. height: math.unit(8, "feet"),
  50774. form: "anthro"
  50775. },
  50776. {
  50777. name: "Macro",
  50778. height: math.unit(250, "feet"),
  50779. form: "anthro",
  50780. default: true
  50781. },
  50782. {
  50783. name: "Regular",
  50784. height: math.unit(4, "feet"),
  50785. form: "feral"
  50786. },
  50787. {
  50788. name: "Macro",
  50789. height: math.unit(125, "feet"),
  50790. form: "feral",
  50791. default: true
  50792. },
  50793. ],
  50794. {
  50795. "anthro": {
  50796. name: "Anthro",
  50797. default: true
  50798. },
  50799. "feral": {
  50800. name: "Feral",
  50801. },
  50802. }
  50803. ))
  50804. characterMakers.push(() => makeCharacter(
  50805. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50806. {
  50807. front: {
  50808. height: math.unit(11 + 10/12, "feet"),
  50809. weight: math.unit(1587, "kg"),
  50810. name: "Front",
  50811. image: {
  50812. source: "./media/characters/maple-javira-dragon/front.svg",
  50813. extra: 1136/744,
  50814. bottom: 73/1209
  50815. }
  50816. },
  50817. side: {
  50818. height: math.unit(11 + 10/12, "feet"),
  50819. weight: math.unit(1587, "kg"),
  50820. name: "Side",
  50821. image: {
  50822. source: "./media/characters/maple-javira-dragon/side.svg",
  50823. extra: 712/505,
  50824. bottom: 17/729
  50825. }
  50826. },
  50827. head: {
  50828. height: math.unit(8.05, "feet"),
  50829. name: "Head",
  50830. image: {
  50831. source: "./media/characters/maple-javira-dragon/head.svg",
  50832. extra: 1420/1344,
  50833. bottom: 0/1420
  50834. }
  50835. },
  50836. },
  50837. [
  50838. {
  50839. name: "Normal",
  50840. height: math.unit(11 + 10/12, "feet"),
  50841. default: true
  50842. },
  50843. ]
  50844. ))
  50845. characterMakers.push(() => makeCharacter(
  50846. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50847. {
  50848. front: {
  50849. height: math.unit(117, "cm"),
  50850. weight: math.unit(50, "kg"),
  50851. name: "Front",
  50852. image: {
  50853. source: "./media/characters/sonia-wyverntail/front.svg",
  50854. extra: 708/592,
  50855. bottom: 25/733
  50856. }
  50857. },
  50858. },
  50859. [
  50860. {
  50861. name: "Normal",
  50862. height: math.unit(117, "cm"),
  50863. default: true
  50864. },
  50865. ]
  50866. ))
  50867. characterMakers.push(() => makeCharacter(
  50868. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50869. {
  50870. front: {
  50871. height: math.unit(6 + 5/12, "feet"),
  50872. name: "Front",
  50873. image: {
  50874. source: "./media/characters/micah/front.svg",
  50875. extra: 1758/1546,
  50876. bottom: 214/1972
  50877. }
  50878. },
  50879. },
  50880. [
  50881. {
  50882. name: "Normal",
  50883. height: math.unit(6 + 5/12, "feet"),
  50884. default: true
  50885. },
  50886. ]
  50887. ))
  50888. characterMakers.push(() => makeCharacter(
  50889. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50890. {
  50891. front: {
  50892. height: math.unit(5 + 10/12, "feet"),
  50893. weight: math.unit(220, "lb"),
  50894. name: "Front",
  50895. image: {
  50896. source: "./media/characters/zarya/front.svg",
  50897. extra: 593/572,
  50898. bottom: 50/643
  50899. }
  50900. },
  50901. back: {
  50902. height: math.unit(5 + 10/12, "feet"),
  50903. weight: math.unit(220, "lb"),
  50904. name: "Back",
  50905. image: {
  50906. source: "./media/characters/zarya/back.svg",
  50907. extra: 603/582,
  50908. bottom: 38/641
  50909. }
  50910. },
  50911. },
  50912. [
  50913. {
  50914. name: "Normal",
  50915. height: math.unit(5 + 10/12, "feet"),
  50916. default: true
  50917. },
  50918. ]
  50919. ))
  50920. characterMakers.push(() => makeCharacter(
  50921. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50922. {
  50923. front: {
  50924. height: math.unit(7.5, "feet"),
  50925. name: "Front",
  50926. image: {
  50927. source: "./media/characters/sven-hatisson/front.svg",
  50928. extra: 917/857,
  50929. bottom: 42/959
  50930. }
  50931. },
  50932. back: {
  50933. height: math.unit(7.5, "feet"),
  50934. name: "Back",
  50935. image: {
  50936. source: "./media/characters/sven-hatisson/back.svg",
  50937. extra: 903/856,
  50938. bottom: 15/918
  50939. }
  50940. },
  50941. },
  50942. [
  50943. {
  50944. name: "Base Height",
  50945. height: math.unit(7.5, "feet")
  50946. },
  50947. {
  50948. name: "Usual Height",
  50949. height: math.unit(13.5, "feet"),
  50950. default: true
  50951. },
  50952. {
  50953. name: "Smaller Macro",
  50954. height: math.unit(85, "feet")
  50955. },
  50956. {
  50957. name: "Moderate Macro",
  50958. height: math.unit(320, "feet")
  50959. },
  50960. {
  50961. name: "Large Macro",
  50962. height: math.unit(1000, "feet")
  50963. },
  50964. {
  50965. name: "Largest Size",
  50966. height: math.unit(2, "miles")
  50967. },
  50968. ]
  50969. ))
  50970. characterMakers.push(() => makeCharacter(
  50971. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50972. {
  50973. side: {
  50974. height: math.unit(1.8, "meters"),
  50975. weight: math.unit(275, "kg"),
  50976. name: "Side",
  50977. image: {
  50978. source: "./media/characters/terra/side.svg",
  50979. extra: 1273/1147,
  50980. bottom: 0/1273
  50981. }
  50982. },
  50983. },
  50984. [
  50985. {
  50986. name: "Normal",
  50987. height: math.unit(16.2, "meters"),
  50988. default: true
  50989. },
  50990. ]
  50991. ))
  50992. characterMakers.push(() => makeCharacter(
  50993. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50994. {
  50995. borzoiFront: {
  50996. height: math.unit(6 + 9/12, "feet"),
  50997. name: "Front",
  50998. image: {
  50999. source: "./media/characters/rae/borzoi-front.svg",
  51000. extra: 1161/1098,
  51001. bottom: 31/1192
  51002. },
  51003. form: "borzoi",
  51004. default: true
  51005. },
  51006. werewolfFront: {
  51007. height: math.unit(8 + 7/12, "feet"),
  51008. name: "Front",
  51009. image: {
  51010. source: "./media/characters/rae/werewolf-front.svg",
  51011. extra: 1411/1334,
  51012. bottom: 127/1538
  51013. },
  51014. form: "werewolf",
  51015. default: true
  51016. },
  51017. },
  51018. [
  51019. {
  51020. name: "Normal",
  51021. height: math.unit(6 + 9/12, "feet"),
  51022. default: true,
  51023. form: "borzoi"
  51024. },
  51025. {
  51026. name: "Normal",
  51027. height: math.unit(8 + 7/12, "feet"),
  51028. default: true,
  51029. form: "werewolf"
  51030. },
  51031. ],
  51032. {
  51033. "borzoi": {
  51034. name: "Borzoi",
  51035. default: true
  51036. },
  51037. "werewolf": {
  51038. name: "Werewolf",
  51039. },
  51040. }
  51041. ))
  51042. characterMakers.push(() => makeCharacter(
  51043. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51044. {
  51045. front: {
  51046. height: math.unit(8 + 7/12, "feet"),
  51047. weight: math.unit(482, "lb"),
  51048. name: "Front",
  51049. image: {
  51050. source: "./media/characters/kit/front.svg",
  51051. extra: 1247/1103,
  51052. bottom: 41/1288
  51053. }
  51054. },
  51055. back: {
  51056. height: math.unit(8 + 7/12, "feet"),
  51057. weight: math.unit(482, "lb"),
  51058. name: "Back",
  51059. image: {
  51060. source: "./media/characters/kit/back.svg",
  51061. extra: 1252/1123,
  51062. bottom: 21/1273
  51063. }
  51064. },
  51065. paw: {
  51066. height: math.unit(1.46, "feet"),
  51067. name: "Paw",
  51068. image: {
  51069. source: "./media/characters/kit/paw.svg"
  51070. }
  51071. },
  51072. },
  51073. [
  51074. {
  51075. name: "Normal",
  51076. height: math.unit(2.61, "meters"),
  51077. default: true
  51078. },
  51079. {
  51080. name: "\"Tall\"",
  51081. height: math.unit(8.21, "meters")
  51082. },
  51083. {
  51084. name: "Tall",
  51085. height: math.unit(19.6, "meters")
  51086. },
  51087. {
  51088. name: "Very Tall",
  51089. height: math.unit(57.91, "meters")
  51090. },
  51091. {
  51092. name: "Semi-Macro",
  51093. height: math.unit(138.64, "meters")
  51094. },
  51095. {
  51096. name: "Macro",
  51097. height: math.unit(831.99, "meters")
  51098. },
  51099. {
  51100. name: "EX-Macro",
  51101. height: math.unit(96451121, "meters")
  51102. },
  51103. {
  51104. name: "S1-Omnipotent",
  51105. height: math.unit(4.42074e+9, "meters")
  51106. },
  51107. {
  51108. name: "S2-Omnipotent",
  51109. height: math.unit(9.42074e+17, "meters")
  51110. },
  51111. {
  51112. name: "Omnipotent",
  51113. height: math.unit(4.23112e+24, "meters")
  51114. },
  51115. {
  51116. name: "Hypergod",
  51117. height: math.unit(5.05176e+27, "meters")
  51118. },
  51119. {
  51120. name: "Hypergod-EX",
  51121. height: math.unit(9.45532e+49, "meters")
  51122. },
  51123. {
  51124. name: "Hypergod-SP",
  51125. height: math.unit(9.45532e+195, "meters")
  51126. },
  51127. ]
  51128. ))
  51129. characterMakers.push(() => makeCharacter(
  51130. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51131. {
  51132. side: {
  51133. height: math.unit(0.6, "meters"),
  51134. weight: math.unit(24, "kg"),
  51135. name: "Side",
  51136. image: {
  51137. source: "./media/characters/celeste/side.svg",
  51138. extra: 810/517,
  51139. bottom: 53/863
  51140. }
  51141. },
  51142. },
  51143. [
  51144. {
  51145. name: "Velociraptor",
  51146. height: math.unit(0.6, "meters"),
  51147. default: true
  51148. },
  51149. {
  51150. name: "Utahraptor",
  51151. height: math.unit(1.8, "meters")
  51152. },
  51153. {
  51154. name: "Gallimimus",
  51155. height: math.unit(4.0, "meters")
  51156. },
  51157. {
  51158. name: "Large",
  51159. height: math.unit(20, "meters")
  51160. },
  51161. {
  51162. name: "Planetary",
  51163. height: math.unit(50, "megameters")
  51164. },
  51165. {
  51166. name: "Stellar",
  51167. height: math.unit(1.5, "gigameters")
  51168. },
  51169. {
  51170. name: "Galactic",
  51171. height: math.unit(100, "exameters")
  51172. },
  51173. ]
  51174. ))
  51175. characterMakers.push(() => makeCharacter(
  51176. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51177. {
  51178. front: {
  51179. height: math.unit(6, "feet"),
  51180. weight: math.unit(210, "lb"),
  51181. name: "Front",
  51182. image: {
  51183. source: "./media/characters/glacia/front.svg",
  51184. extra: 958/901,
  51185. bottom: 45/1003
  51186. }
  51187. },
  51188. },
  51189. [
  51190. {
  51191. name: "Macro",
  51192. height: math.unit(1000, "meters"),
  51193. default: true
  51194. },
  51195. ]
  51196. ))
  51197. characterMakers.push(() => makeCharacter(
  51198. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51199. {
  51200. front: {
  51201. height: math.unit(4, "meters"),
  51202. name: "Front",
  51203. image: {
  51204. source: "./media/characters/giri/front.svg",
  51205. extra: 966/894,
  51206. bottom: 21/987
  51207. }
  51208. },
  51209. },
  51210. [
  51211. {
  51212. name: "Normal",
  51213. height: math.unit(4, "meters"),
  51214. default: true
  51215. },
  51216. ]
  51217. ))
  51218. characterMakers.push(() => makeCharacter(
  51219. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51220. {
  51221. back: {
  51222. height: math.unit(4, "feet"),
  51223. weight: math.unit(37, "lb"),
  51224. name: "Back",
  51225. image: {
  51226. source: "./media/characters/tin/back.svg",
  51227. extra: 845/780,
  51228. bottom: 28/873
  51229. }
  51230. },
  51231. },
  51232. [
  51233. {
  51234. name: "Normal",
  51235. height: math.unit(4, "feet"),
  51236. default: true
  51237. },
  51238. ]
  51239. ))
  51240. characterMakers.push(() => makeCharacter(
  51241. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51242. {
  51243. front: {
  51244. height: math.unit(25, "feet"),
  51245. name: "Front",
  51246. image: {
  51247. source: "./media/characters/cadenza-vivace/front.svg",
  51248. extra: 1842/1578,
  51249. bottom: 30/1872
  51250. }
  51251. },
  51252. },
  51253. [
  51254. {
  51255. name: "Macro",
  51256. height: math.unit(25, "feet"),
  51257. default: true
  51258. },
  51259. ]
  51260. ))
  51261. characterMakers.push(() => makeCharacter(
  51262. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51263. {
  51264. front: {
  51265. height: math.unit(10, "feet"),
  51266. weight: math.unit(625, "kg"),
  51267. name: "Front",
  51268. image: {
  51269. source: "./media/characters/zain/front.svg",
  51270. extra: 1682/1498,
  51271. bottom: 223/1905
  51272. }
  51273. },
  51274. back: {
  51275. height: math.unit(10, "feet"),
  51276. weight: math.unit(625, "kg"),
  51277. name: "Back",
  51278. image: {
  51279. source: "./media/characters/zain/back.svg",
  51280. extra: 1814/1657,
  51281. bottom: 152/1966
  51282. }
  51283. },
  51284. head: {
  51285. height: math.unit(10, "feet"),
  51286. weight: math.unit(625, "kg"),
  51287. name: "Head",
  51288. image: {
  51289. source: "./media/characters/zain/head.svg",
  51290. extra: 1059/762,
  51291. bottom: 0/1059
  51292. }
  51293. },
  51294. },
  51295. [
  51296. {
  51297. name: "Normal",
  51298. height: math.unit(10, "feet"),
  51299. default: true
  51300. },
  51301. ]
  51302. ))
  51303. characterMakers.push(() => makeCharacter(
  51304. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51305. {
  51306. front: {
  51307. height: math.unit(6 + 5/12, "feet"),
  51308. weight: math.unit(750, "lb"),
  51309. name: "Front",
  51310. image: {
  51311. source: "./media/characters/ruchex/front.svg",
  51312. extra: 877/820,
  51313. bottom: 17/894
  51314. },
  51315. extraAttributes: {
  51316. "width": {
  51317. name: "Width",
  51318. power: 1,
  51319. type: "length",
  51320. base: math.unit(4.757, "feet")
  51321. },
  51322. }
  51323. },
  51324. },
  51325. [
  51326. {
  51327. name: "Normal",
  51328. height: math.unit(6 + 5/12, "feet"),
  51329. default: true
  51330. },
  51331. ]
  51332. ))
  51333. characterMakers.push(() => makeCharacter(
  51334. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51335. {
  51336. dressedFront: {
  51337. height: math.unit(191, "cm"),
  51338. weight: math.unit(80, "kg"),
  51339. name: "Front",
  51340. image: {
  51341. source: "./media/characters/buster/dressed-front.svg",
  51342. extra: 1022/973,
  51343. bottom: 69/1091
  51344. }
  51345. },
  51346. dressedBack: {
  51347. height: math.unit(191, "cm"),
  51348. weight: math.unit(80, "kg"),
  51349. name: "Back",
  51350. image: {
  51351. source: "./media/characters/buster/dressed-back.svg",
  51352. extra: 1018/970,
  51353. bottom: 55/1073
  51354. }
  51355. },
  51356. nudeFront: {
  51357. height: math.unit(191, "cm"),
  51358. weight: math.unit(80, "kg"),
  51359. name: "Front (Nude)",
  51360. image: {
  51361. source: "./media/characters/buster/nude-front.svg",
  51362. extra: 1022/973,
  51363. bottom: 69/1091
  51364. }
  51365. },
  51366. nudeBack: {
  51367. height: math.unit(191, "cm"),
  51368. weight: math.unit(80, "kg"),
  51369. name: "Back (Nude)",
  51370. image: {
  51371. source: "./media/characters/buster/nude-back.svg",
  51372. extra: 1018/970,
  51373. bottom: 55/1073
  51374. }
  51375. },
  51376. dick: {
  51377. height: math.unit(2.59, "feet"),
  51378. name: "Dick",
  51379. image: {
  51380. source: "./media/characters/buster/dick.svg"
  51381. }
  51382. },
  51383. ass: {
  51384. height: math.unit(1.2, "feet"),
  51385. name: "Ass",
  51386. image: {
  51387. source: "./media/characters/buster/ass.svg"
  51388. }
  51389. },
  51390. },
  51391. [
  51392. {
  51393. name: "Normal",
  51394. height: math.unit(191, "cm"),
  51395. default: true
  51396. },
  51397. ]
  51398. ))
  51399. characterMakers.push(() => makeCharacter(
  51400. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51401. {
  51402. side: {
  51403. height: math.unit(8.1, "feet"),
  51404. weight: math.unit(3500, "lb"),
  51405. name: "Side",
  51406. image: {
  51407. source: "./media/characters/sonya/side.svg",
  51408. extra: 1730/1317,
  51409. bottom: 86/1816
  51410. }
  51411. },
  51412. },
  51413. [
  51414. {
  51415. name: "Normal",
  51416. height: math.unit(8.1, "feet"),
  51417. default: true
  51418. },
  51419. ]
  51420. ))
  51421. characterMakers.push(() => makeCharacter(
  51422. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51423. {
  51424. front: {
  51425. height: math.unit(6, "feet"),
  51426. weight: math.unit(150, "lb"),
  51427. name: "Front",
  51428. image: {
  51429. source: "./media/characters/cadence-andrysiak/front.svg",
  51430. extra: 1164/1121,
  51431. bottom: 60/1224
  51432. }
  51433. },
  51434. back: {
  51435. height: math.unit(6, "feet"),
  51436. weight: math.unit(150, "lb"),
  51437. name: "Back",
  51438. image: {
  51439. source: "./media/characters/cadence-andrysiak/back.svg",
  51440. extra: 1200/1165,
  51441. bottom: 9/1209
  51442. }
  51443. },
  51444. dressed: {
  51445. height: math.unit(6, "feet"),
  51446. weight: math.unit(150, "lb"),
  51447. name: "Dressed",
  51448. image: {
  51449. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51450. extra: 1164/1121,
  51451. bottom: 60/1224
  51452. }
  51453. },
  51454. },
  51455. [
  51456. {
  51457. name: "Micro",
  51458. height: math.unit(1, "mm")
  51459. },
  51460. {
  51461. name: "Normal",
  51462. height: math.unit(6, "feet"),
  51463. default: true
  51464. },
  51465. ]
  51466. ))
  51467. characterMakers.push(() => makeCharacter(
  51468. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51469. {
  51470. front: {
  51471. height: math.unit(60, "inches"),
  51472. weight: math.unit(16, "lb"),
  51473. preyCapacity: math.unit(80, "liters"),
  51474. name: "Front",
  51475. image: {
  51476. source: "./media/characters/penny-lynx/front.svg",
  51477. extra: 1959/1769,
  51478. bottom: 49/2008
  51479. }
  51480. },
  51481. },
  51482. [
  51483. {
  51484. name: "Nokia",
  51485. height: math.unit(2, "inches")
  51486. },
  51487. {
  51488. name: "Desktop",
  51489. height: math.unit(24, "inches")
  51490. },
  51491. {
  51492. name: "TV",
  51493. height: math.unit(60, "inches")
  51494. },
  51495. {
  51496. name: "Jumbotron",
  51497. height: math.unit(12, "feet")
  51498. },
  51499. {
  51500. name: "Billboard",
  51501. height: math.unit(48, "feet"),
  51502. default: true
  51503. },
  51504. {
  51505. name: "IMAX",
  51506. height: math.unit(96, "feet")
  51507. },
  51508. {
  51509. name: "SINGULARITY",
  51510. height: math.unit(864938, "miles")
  51511. },
  51512. ]
  51513. ))
  51514. characterMakers.push(() => makeCharacter(
  51515. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51516. {
  51517. front: {
  51518. height: math.unit(5 + 4/12, "feet"),
  51519. weight: math.unit(230, "lb"),
  51520. name: "Front",
  51521. image: {
  51522. source: "./media/characters/sukebe/front.svg",
  51523. extra: 2130/2038,
  51524. bottom: 90/2220
  51525. }
  51526. },
  51527. back: {
  51528. height: math.unit(3.48, "feet"),
  51529. weight: math.unit(230, "lb"),
  51530. name: "Back",
  51531. image: {
  51532. source: "./media/characters/sukebe/back.svg",
  51533. extra: 1670/1604,
  51534. bottom: 0/1670
  51535. }
  51536. },
  51537. },
  51538. [
  51539. {
  51540. name: "Normal",
  51541. height: math.unit(5 + 4/12, "feet"),
  51542. default: true
  51543. },
  51544. ]
  51545. ))
  51546. characterMakers.push(() => makeCharacter(
  51547. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51548. {
  51549. front: {
  51550. height: math.unit(6, "feet"),
  51551. name: "Front",
  51552. image: {
  51553. source: "./media/characters/nylla/front.svg",
  51554. extra: 1868/1699,
  51555. bottom: 97/1965
  51556. }
  51557. },
  51558. back: {
  51559. height: math.unit(6, "feet"),
  51560. name: "Back",
  51561. image: {
  51562. source: "./media/characters/nylla/back.svg",
  51563. extra: 1889/1712,
  51564. bottom: 93/1982
  51565. }
  51566. },
  51567. frontNsfw: {
  51568. height: math.unit(6, "feet"),
  51569. name: "Front (NSFW)",
  51570. image: {
  51571. source: "./media/characters/nylla/front-nsfw.svg",
  51572. extra: 1868/1699,
  51573. bottom: 97/1965
  51574. },
  51575. extraAttributes: {
  51576. "dickLength": {
  51577. name: "Dick Length",
  51578. power: 1,
  51579. type: "length",
  51580. base: math.unit(1.4, "feet")
  51581. },
  51582. "cumVolume": {
  51583. name: "Cum Volume",
  51584. power: 3,
  51585. type: "volume",
  51586. base: math.unit(100, "mL")
  51587. },
  51588. }
  51589. },
  51590. backNsfw: {
  51591. height: math.unit(6, "feet"),
  51592. name: "Back (NSFW)",
  51593. image: {
  51594. source: "./media/characters/nylla/back-nsfw.svg",
  51595. extra: 1889/1712,
  51596. bottom: 93/1982
  51597. }
  51598. },
  51599. maw: {
  51600. height: math.unit(2.10, "feet"),
  51601. name: "Maw",
  51602. image: {
  51603. source: "./media/characters/nylla/maw.svg"
  51604. }
  51605. },
  51606. paws: {
  51607. height: math.unit(2.06, "feet"),
  51608. name: "Paws",
  51609. image: {
  51610. source: "./media/characters/nylla/paws.svg"
  51611. }
  51612. },
  51613. muzzle: {
  51614. height: math.unit(0.61, "feet"),
  51615. name: "Muzzle",
  51616. image: {
  51617. source: "./media/characters/nylla/muzzle.svg"
  51618. }
  51619. },
  51620. sheath: {
  51621. height: math.unit(1.305, "feet"),
  51622. name: "Sheath",
  51623. image: {
  51624. source: "./media/characters/nylla/sheath.svg"
  51625. }
  51626. },
  51627. },
  51628. [
  51629. {
  51630. name: "Micro",
  51631. height: math.unit(7.5, "inches")
  51632. },
  51633. {
  51634. name: "Normal",
  51635. height: math.unit(7, "feet"),
  51636. default: true
  51637. },
  51638. {
  51639. name: "Macro",
  51640. height: math.unit(60, "feet")
  51641. },
  51642. {
  51643. name: "Mega",
  51644. height: math.unit(200, "feet")
  51645. },
  51646. ]
  51647. ))
  51648. characterMakers.push(() => makeCharacter(
  51649. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51650. {
  51651. front: {
  51652. height: math.unit(10, "feet"),
  51653. weight: math.unit(2300, "lb"),
  51654. name: "Front",
  51655. image: {
  51656. source: "./media/characters/hunt3r/front.svg",
  51657. extra: 1909/1742,
  51658. bottom: 46/1955
  51659. }
  51660. },
  51661. },
  51662. [
  51663. {
  51664. name: "Normal",
  51665. height: math.unit(10, "feet"),
  51666. default: true
  51667. },
  51668. ]
  51669. ))
  51670. characterMakers.push(() => makeCharacter(
  51671. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51672. {
  51673. dressed: {
  51674. height: math.unit(11, "feet"),
  51675. weight: math.unit(18500, "lb"),
  51676. preyCapacity: math.unit(9, "people"),
  51677. name: "Dressed",
  51678. image: {
  51679. source: "./media/characters/cylphis/dressed.svg",
  51680. extra: 1028/1003,
  51681. bottom: 75/1103
  51682. },
  51683. },
  51684. undressed: {
  51685. height: math.unit(11, "feet"),
  51686. weight: math.unit(18500, "lb"),
  51687. preyCapacity: math.unit(9, "people"),
  51688. name: "Undressed",
  51689. image: {
  51690. source: "./media/characters/cylphis/undressed.svg",
  51691. extra: 1028/1003,
  51692. bottom: 75/1103
  51693. }
  51694. },
  51695. full: {
  51696. height: math.unit(11, "feet"),
  51697. weight: math.unit(18500 + 150*9, "lb"),
  51698. preyCapacity: math.unit(9, "people"),
  51699. name: "Full",
  51700. image: {
  51701. source: "./media/characters/cylphis/full.svg",
  51702. extra: 1028/1003,
  51703. bottom: 75/1103
  51704. }
  51705. },
  51706. },
  51707. [
  51708. {
  51709. name: "Small",
  51710. height: math.unit(8, "feet")
  51711. },
  51712. {
  51713. name: "Normal",
  51714. height: math.unit(11, "feet"),
  51715. default: true
  51716. },
  51717. ]
  51718. ))
  51719. characterMakers.push(() => makeCharacter(
  51720. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51721. {
  51722. front: {
  51723. height: math.unit(2 + 7/12, "feet"),
  51724. name: "Front",
  51725. image: {
  51726. source: "./media/characters/orishan/front.svg",
  51727. extra: 1058/1023,
  51728. bottom: 23/1081
  51729. }
  51730. },
  51731. back: {
  51732. height: math.unit(2 + 7/12, "feet"),
  51733. name: "Back",
  51734. image: {
  51735. source: "./media/characters/orishan/back.svg",
  51736. extra: 1058/1023,
  51737. bottom: 23/1081
  51738. }
  51739. },
  51740. },
  51741. [
  51742. {
  51743. name: "Micro",
  51744. height: math.unit(2, "cm")
  51745. },
  51746. {
  51747. name: "Normal",
  51748. height: math.unit(2 + 7/12, "feet"),
  51749. default: true
  51750. },
  51751. ]
  51752. ))
  51753. characterMakers.push(() => makeCharacter(
  51754. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51755. {
  51756. front: {
  51757. height: math.unit(3, "meters"),
  51758. weight: math.unit(508, "kg"),
  51759. name: "Front",
  51760. image: {
  51761. source: "./media/characters/seranis/front.svg",
  51762. extra: 1478/1454,
  51763. bottom: 41/1519
  51764. }
  51765. },
  51766. },
  51767. [
  51768. {
  51769. name: "Normal",
  51770. height: math.unit(3, "meters"),
  51771. default: true
  51772. },
  51773. {
  51774. name: "Macro",
  51775. height: math.unit(108, "meters")
  51776. },
  51777. {
  51778. name: "Megamacro",
  51779. height: math.unit(1250, "meters")
  51780. },
  51781. ]
  51782. ))
  51783. characterMakers.push(() => makeCharacter(
  51784. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51785. {
  51786. undressed: {
  51787. height: math.unit(5 + 3/12, "feet"),
  51788. name: "Undressed",
  51789. image: {
  51790. source: "./media/characters/ankou/undressed.svg",
  51791. extra: 1301/1213,
  51792. bottom: 87/1388
  51793. }
  51794. },
  51795. dressed: {
  51796. height: math.unit(5 + 3/12, "feet"),
  51797. name: "Dressed",
  51798. image: {
  51799. source: "./media/characters/ankou/dressed.svg",
  51800. extra: 1301/1213,
  51801. bottom: 87/1388
  51802. }
  51803. },
  51804. head: {
  51805. height: math.unit(1.61, "feet"),
  51806. name: "Head",
  51807. image: {
  51808. source: "./media/characters/ankou/head.svg"
  51809. }
  51810. },
  51811. },
  51812. [
  51813. {
  51814. name: "Normal",
  51815. height: math.unit(5 + 3/12, "feet"),
  51816. default: true
  51817. },
  51818. ]
  51819. ))
  51820. characterMakers.push(() => makeCharacter(
  51821. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51822. {
  51823. side: {
  51824. height: math.unit(6 + 3/12, "feet"),
  51825. weight: math.unit(200, "kg"),
  51826. name: "Side",
  51827. image: {
  51828. source: "./media/characters/juniper-skunktaur/side.svg",
  51829. extra: 1574/1229,
  51830. bottom: 38/1612
  51831. }
  51832. },
  51833. front: {
  51834. height: math.unit(6 + 3/12, "feet"),
  51835. weight: math.unit(200, "kg"),
  51836. name: "Front",
  51837. image: {
  51838. source: "./media/characters/juniper-skunktaur/front.svg",
  51839. extra: 1337/1278,
  51840. bottom: 22/1359
  51841. }
  51842. },
  51843. back: {
  51844. height: math.unit(6 + 3/12, "feet"),
  51845. weight: math.unit(200, "kg"),
  51846. name: "Back",
  51847. image: {
  51848. source: "./media/characters/juniper-skunktaur/back.svg",
  51849. extra: 1618/1273,
  51850. bottom: 13/1631
  51851. }
  51852. },
  51853. top: {
  51854. height: math.unit(2.62, "feet"),
  51855. weight: math.unit(200, "kg"),
  51856. name: "Top",
  51857. image: {
  51858. source: "./media/characters/juniper-skunktaur/top.svg"
  51859. }
  51860. },
  51861. },
  51862. [
  51863. {
  51864. name: "Normal",
  51865. height: math.unit(6 + 3/12, "feet"),
  51866. default: true
  51867. },
  51868. ]
  51869. ))
  51870. characterMakers.push(() => makeCharacter(
  51871. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51872. {
  51873. front: {
  51874. height: math.unit(20.5, "feet"),
  51875. name: "Front",
  51876. image: {
  51877. source: "./media/characters/rei/front.svg",
  51878. extra: 1349/1195,
  51879. bottom: 31/1380
  51880. }
  51881. },
  51882. back: {
  51883. height: math.unit(20.5, "feet"),
  51884. name: "Back",
  51885. image: {
  51886. source: "./media/characters/rei/back.svg",
  51887. extra: 1358/1204,
  51888. bottom: 22/1380
  51889. }
  51890. },
  51891. pawsDigi: {
  51892. height: math.unit(3.45, "feet"),
  51893. name: "Paws (Digi)",
  51894. image: {
  51895. source: "./media/characters/rei/paws-digi.svg"
  51896. }
  51897. },
  51898. pawsPlanti: {
  51899. height: math.unit(3.45, "feet"),
  51900. name: "Paws (Planti)",
  51901. image: {
  51902. source: "./media/characters/rei/paws-planti.svg"
  51903. }
  51904. },
  51905. },
  51906. [
  51907. {
  51908. name: "Normal",
  51909. height: math.unit(20.5, "feet"),
  51910. default: true
  51911. },
  51912. ]
  51913. ))
  51914. characterMakers.push(() => makeCharacter(
  51915. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51916. {
  51917. front: {
  51918. height: math.unit(5 + 11/12, "feet"),
  51919. name: "Front",
  51920. image: {
  51921. source: "./media/characters/carina/front.svg",
  51922. extra: 1720/1449,
  51923. bottom: 14/1734
  51924. }
  51925. },
  51926. back: {
  51927. height: math.unit(5 + 11/12, "feet"),
  51928. name: "Back",
  51929. image: {
  51930. source: "./media/characters/carina/back.svg",
  51931. extra: 1493/1445,
  51932. bottom: 17/1510
  51933. }
  51934. },
  51935. paw: {
  51936. height: math.unit(0.92, "feet"),
  51937. name: "Paw",
  51938. image: {
  51939. source: "./media/characters/carina/paw.svg"
  51940. }
  51941. },
  51942. },
  51943. [
  51944. {
  51945. name: "Normal",
  51946. height: math.unit(5 + 11/12, "feet"),
  51947. default: true
  51948. },
  51949. ]
  51950. ))
  51951. characterMakers.push(() => makeCharacter(
  51952. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51953. {
  51954. front: {
  51955. height: math.unit(4.88, "meters"),
  51956. name: "Front",
  51957. image: {
  51958. source: "./media/characters/maya/front.svg",
  51959. extra: 1222/1145,
  51960. bottom: 57/1279
  51961. }
  51962. },
  51963. },
  51964. [
  51965. {
  51966. name: "Normal",
  51967. height: math.unit(4.88, "meters"),
  51968. default: true
  51969. },
  51970. {
  51971. name: "Macro",
  51972. height: math.unit(38.1, "meters")
  51973. },
  51974. {
  51975. name: "Macro+",
  51976. height: math.unit(152.4, "meters")
  51977. },
  51978. {
  51979. name: "Macro++",
  51980. height: math.unit(16.09, "km")
  51981. },
  51982. {
  51983. name: "Mega-macro",
  51984. height: math.unit(700, "megameters")
  51985. },
  51986. ]
  51987. ))
  51988. characterMakers.push(() => makeCharacter(
  51989. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51990. {
  51991. front: {
  51992. height: math.unit(6 + 2/12, "feet"),
  51993. weight: math.unit(500, "lb"),
  51994. preyCapacity: math.unit(4, "people"),
  51995. name: "Front",
  51996. image: {
  51997. source: "./media/characters/yepir/front.svg"
  51998. }
  51999. },
  52000. side: {
  52001. height: math.unit(6 + 2/12, "feet"),
  52002. weight: math.unit(500, "lb"),
  52003. preyCapacity: math.unit(4, "people"),
  52004. name: "Side",
  52005. image: {
  52006. source: "./media/characters/yepir/side.svg"
  52007. }
  52008. },
  52009. paw: {
  52010. height: math.unit(1.05, "feet"),
  52011. name: "Paw",
  52012. image: {
  52013. source: "./media/characters/yepir/paw.svg"
  52014. }
  52015. },
  52016. },
  52017. [
  52018. {
  52019. name: "Normal",
  52020. height: math.unit(6 + 2/12, "feet"),
  52021. default: true
  52022. },
  52023. ]
  52024. ))
  52025. characterMakers.push(() => makeCharacter(
  52026. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52027. {
  52028. front: {
  52029. height: math.unit(5 + 4/12, "feet"),
  52030. name: "Front",
  52031. image: {
  52032. source: "./media/characters/russec/front.svg",
  52033. extra: 1926/1626,
  52034. bottom: 72/1998
  52035. }
  52036. },
  52037. back: {
  52038. height: math.unit(5 + 4/12, "feet"),
  52039. name: "Back",
  52040. image: {
  52041. source: "./media/characters/russec/back.svg",
  52042. extra: 1910/1591,
  52043. bottom: 48/1958
  52044. }
  52045. },
  52046. },
  52047. [
  52048. {
  52049. name: "Small",
  52050. height: math.unit(5 + 4/12, "feet")
  52051. },
  52052. {
  52053. name: "Normal",
  52054. height: math.unit(72, "feet"),
  52055. default: true
  52056. },
  52057. ]
  52058. ))
  52059. characterMakers.push(() => makeCharacter(
  52060. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52061. {
  52062. side: {
  52063. height: math.unit(12, "feet"),
  52064. name: "Side",
  52065. image: {
  52066. source: "./media/characters/cianus/side.svg",
  52067. extra: 808/526,
  52068. bottom: 61/869
  52069. }
  52070. },
  52071. },
  52072. [
  52073. {
  52074. name: "Normal",
  52075. height: math.unit(12, "feet"),
  52076. default: true
  52077. },
  52078. ]
  52079. ))
  52080. characterMakers.push(() => makeCharacter(
  52081. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52082. {
  52083. front: {
  52084. height: math.unit(9 + 6/12, "feet"),
  52085. weight: math.unit(300, "lb"),
  52086. name: "Front",
  52087. image: {
  52088. source: "./media/characters/ahab/front.svg",
  52089. extra: 1897/1868,
  52090. bottom: 121/2018
  52091. }
  52092. },
  52093. frontNsfw: {
  52094. height: math.unit(9 + 6/12, "feet"),
  52095. weight: math.unit(300, "lb"),
  52096. name: "Front-nsfw",
  52097. image: {
  52098. source: "./media/characters/ahab/front-nsfw.svg",
  52099. extra: 1897/1868,
  52100. bottom: 121/2018
  52101. }
  52102. },
  52103. },
  52104. [
  52105. {
  52106. name: "Normal",
  52107. height: math.unit(9 + 6/12, "feet")
  52108. },
  52109. {
  52110. name: "Macro",
  52111. height: math.unit(657, "feet"),
  52112. default: true
  52113. },
  52114. ]
  52115. ))
  52116. characterMakers.push(() => makeCharacter(
  52117. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52118. {
  52119. front: {
  52120. height: math.unit(2.69, "meters"),
  52121. weight: math.unit(132, "kg"),
  52122. name: "Front",
  52123. image: {
  52124. source: "./media/characters/aarkus/front.svg",
  52125. extra: 1400/1231,
  52126. bottom: 34/1434
  52127. }
  52128. },
  52129. back: {
  52130. height: math.unit(2.69, "meters"),
  52131. weight: math.unit(132, "kg"),
  52132. name: "Back",
  52133. image: {
  52134. source: "./media/characters/aarkus/back.svg",
  52135. extra: 1381/1218,
  52136. bottom: 30/1411
  52137. }
  52138. },
  52139. frontNsfw: {
  52140. height: math.unit(2.69, "meters"),
  52141. weight: math.unit(132, "kg"),
  52142. name: "Front (NSFW)",
  52143. image: {
  52144. source: "./media/characters/aarkus/front-nsfw.svg",
  52145. extra: 1400/1231,
  52146. bottom: 34/1434
  52147. }
  52148. },
  52149. foot: {
  52150. height: math.unit(1.45, "feet"),
  52151. name: "Foot",
  52152. image: {
  52153. source: "./media/characters/aarkus/foot.svg"
  52154. }
  52155. },
  52156. head: {
  52157. height: math.unit(2.85, "feet"),
  52158. name: "Head",
  52159. image: {
  52160. source: "./media/characters/aarkus/head.svg"
  52161. }
  52162. },
  52163. headAlt: {
  52164. height: math.unit(3.07, "feet"),
  52165. name: "Head (Alt)",
  52166. image: {
  52167. source: "./media/characters/aarkus/head-alt.svg"
  52168. }
  52169. },
  52170. mouth: {
  52171. height: math.unit(1.25, "feet"),
  52172. name: "Mouth",
  52173. image: {
  52174. source: "./media/characters/aarkus/mouth.svg"
  52175. }
  52176. },
  52177. dick: {
  52178. height: math.unit(1.77, "feet"),
  52179. name: "Dick",
  52180. image: {
  52181. source: "./media/characters/aarkus/dick.svg"
  52182. }
  52183. },
  52184. },
  52185. [
  52186. {
  52187. name: "Normal",
  52188. height: math.unit(2.69, "meters"),
  52189. default: true
  52190. },
  52191. {
  52192. name: "Macro",
  52193. height: math.unit(269, "meters")
  52194. },
  52195. {
  52196. name: "Macro+",
  52197. height: math.unit(672.5, "meters")
  52198. },
  52199. {
  52200. name: "Megamacro",
  52201. height: math.unit(2.017, "km")
  52202. },
  52203. ]
  52204. ))
  52205. characterMakers.push(() => makeCharacter(
  52206. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52207. {
  52208. front: {
  52209. height: math.unit(23.47, "cm"),
  52210. weight: math.unit(600, "grams"),
  52211. name: "Front",
  52212. image: {
  52213. source: "./media/characters/diode/front.svg",
  52214. extra: 1778/1396,
  52215. bottom: 95/1873
  52216. }
  52217. },
  52218. side: {
  52219. height: math.unit(23.47, "cm"),
  52220. weight: math.unit(600, "grams"),
  52221. name: "Side",
  52222. image: {
  52223. source: "./media/characters/diode/side.svg",
  52224. extra: 1831/1404,
  52225. bottom: 86/1917
  52226. }
  52227. },
  52228. wings: {
  52229. height: math.unit(0.683, "feet"),
  52230. name: "Wings",
  52231. image: {
  52232. source: "./media/characters/diode/wings.svg"
  52233. }
  52234. },
  52235. },
  52236. [
  52237. {
  52238. name: "Normal",
  52239. height: math.unit(23.47, "cm"),
  52240. default: true
  52241. },
  52242. ]
  52243. ))
  52244. characterMakers.push(() => makeCharacter(
  52245. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52246. {
  52247. front: {
  52248. height: math.unit(6 + 3/12, "feet"),
  52249. weight: math.unit(250, "lb"),
  52250. name: "Front",
  52251. image: {
  52252. source: "./media/characters/reika/front.svg",
  52253. extra: 1120/1078,
  52254. bottom: 86/1206
  52255. }
  52256. },
  52257. },
  52258. [
  52259. {
  52260. name: "Normal",
  52261. height: math.unit(6 + 3/12, "feet"),
  52262. default: true
  52263. },
  52264. ]
  52265. ))
  52266. characterMakers.push(() => makeCharacter(
  52267. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52268. {
  52269. front: {
  52270. height: math.unit(16 + 8/12, "feet"),
  52271. weight: math.unit(9000, "lb"),
  52272. name: "Front",
  52273. image: {
  52274. source: "./media/characters/lokuto-takama/front.svg",
  52275. extra: 1774/1632,
  52276. bottom: 147/1921
  52277. },
  52278. extraAttributes: {
  52279. "bustWidth": {
  52280. name: "Bust Width",
  52281. power: 1,
  52282. type: "length",
  52283. base: math.unit(2.4, "meters")
  52284. },
  52285. "breastWeight": {
  52286. name: "Breast Weight",
  52287. power: 3,
  52288. type: "mass",
  52289. base: math.unit(1000, "kg")
  52290. },
  52291. }
  52292. },
  52293. },
  52294. [
  52295. {
  52296. name: "Normal",
  52297. height: math.unit(16 + 8/12, "feet"),
  52298. default: true
  52299. },
  52300. ]
  52301. ))
  52302. characterMakers.push(() => makeCharacter(
  52303. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52304. {
  52305. front: {
  52306. height: math.unit(10, "cm"),
  52307. weight: math.unit(850, "grams"),
  52308. name: "Front",
  52309. image: {
  52310. source: "./media/characters/owak-bone/front.svg",
  52311. extra: 1965/1801,
  52312. bottom: 31/1996
  52313. }
  52314. },
  52315. },
  52316. [
  52317. {
  52318. name: "Normal",
  52319. height: math.unit(10, "cm"),
  52320. default: true
  52321. },
  52322. ]
  52323. ))
  52324. characterMakers.push(() => makeCharacter(
  52325. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52326. {
  52327. front: {
  52328. height: math.unit(2 + 6/12, "feet"),
  52329. weight: math.unit(9, "lb"),
  52330. name: "Front",
  52331. image: {
  52332. source: "./media/characters/muffin/front.svg",
  52333. extra: 1220/1195,
  52334. bottom: 84/1304
  52335. }
  52336. },
  52337. },
  52338. [
  52339. {
  52340. name: "Normal",
  52341. height: math.unit(2 + 6/12, "feet"),
  52342. default: true
  52343. },
  52344. ]
  52345. ))
  52346. characterMakers.push(() => makeCharacter(
  52347. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52348. {
  52349. front: {
  52350. height: math.unit(7, "feet"),
  52351. name: "Front",
  52352. image: {
  52353. source: "./media/characters/chimera/front.svg",
  52354. extra: 1752/1614,
  52355. bottom: 68/1820
  52356. }
  52357. },
  52358. },
  52359. [
  52360. {
  52361. name: "Normal",
  52362. height: math.unit(7, "feet")
  52363. },
  52364. {
  52365. name: "Gigamacro",
  52366. height: math.unit(2.9, "gigameters"),
  52367. default: true
  52368. },
  52369. {
  52370. name: "Universal",
  52371. height: math.unit(1.56e26, "yottameters")
  52372. },
  52373. ]
  52374. ))
  52375. characterMakers.push(() => makeCharacter(
  52376. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52377. {
  52378. front: {
  52379. height: math.unit(3, "feet"),
  52380. weight: math.unit(20, "lb"),
  52381. name: "Front",
  52382. image: {
  52383. source: "./media/characters/kit-fennec-fox/front.svg",
  52384. extra: 1027/932,
  52385. bottom: 16/1043
  52386. }
  52387. },
  52388. back: {
  52389. height: math.unit(3, "feet"),
  52390. weight: math.unit(20, "lb"),
  52391. name: "Back",
  52392. image: {
  52393. source: "./media/characters/kit-fennec-fox/back.svg",
  52394. extra: 1027/932,
  52395. bottom: 16/1043
  52396. }
  52397. },
  52398. },
  52399. [
  52400. {
  52401. name: "Normal",
  52402. height: math.unit(3, "feet"),
  52403. default: true
  52404. },
  52405. ]
  52406. ))
  52407. characterMakers.push(() => makeCharacter(
  52408. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52409. {
  52410. front: {
  52411. height: math.unit(167, "cm"),
  52412. name: "Front",
  52413. image: {
  52414. source: "./media/characters/blue-otter/front.svg",
  52415. extra: 1951/1920,
  52416. bottom: 31/1982
  52417. }
  52418. },
  52419. },
  52420. [
  52421. {
  52422. name: "Otter-Sized",
  52423. height: math.unit(100, "cm")
  52424. },
  52425. {
  52426. name: "Normal",
  52427. height: math.unit(167, "cm"),
  52428. default: true
  52429. },
  52430. ]
  52431. ))
  52432. characterMakers.push(() => makeCharacter(
  52433. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52434. {
  52435. front: {
  52436. height: math.unit(4 + 4/12, "feet"),
  52437. name: "Front",
  52438. image: {
  52439. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52440. extra: 1072/1067,
  52441. bottom: 117/1189
  52442. }
  52443. },
  52444. back: {
  52445. height: math.unit(4 + 4/12, "feet"),
  52446. name: "Back",
  52447. image: {
  52448. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52449. extra: 1135/1129,
  52450. bottom: 57/1192
  52451. }
  52452. },
  52453. head: {
  52454. height: math.unit(1.77, "feet"),
  52455. name: "Head",
  52456. image: {
  52457. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52458. }
  52459. },
  52460. },
  52461. [
  52462. {
  52463. name: "Normal",
  52464. height: math.unit(4 + 4/12, "feet"),
  52465. default: true
  52466. },
  52467. ]
  52468. ))
  52469. characterMakers.push(() => makeCharacter(
  52470. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52471. {
  52472. front: {
  52473. height: math.unit(2, "inches"),
  52474. name: "Front",
  52475. image: {
  52476. source: "./media/characters/carley-hartford/front.svg",
  52477. extra: 1035/988,
  52478. bottom: 23/1058
  52479. }
  52480. },
  52481. back: {
  52482. height: math.unit(2, "inches"),
  52483. name: "Back",
  52484. image: {
  52485. source: "./media/characters/carley-hartford/back.svg",
  52486. extra: 1035/988,
  52487. bottom: 23/1058
  52488. }
  52489. },
  52490. dressed: {
  52491. height: math.unit(2, "inches"),
  52492. name: "Dressed",
  52493. image: {
  52494. source: "./media/characters/carley-hartford/dressed.svg",
  52495. extra: 651/620,
  52496. bottom: 0/651
  52497. }
  52498. },
  52499. },
  52500. [
  52501. {
  52502. name: "Micro",
  52503. height: math.unit(2, "inches"),
  52504. default: true
  52505. },
  52506. {
  52507. name: "Macro",
  52508. height: math.unit(6 + 3/12, "feet")
  52509. },
  52510. ]
  52511. ))
  52512. characterMakers.push(() => makeCharacter(
  52513. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52514. {
  52515. front: {
  52516. height: math.unit(2 + 3/12, "feet"),
  52517. weight: math.unit(15 + 7/16, "lb"),
  52518. name: "Front",
  52519. image: {
  52520. source: "./media/characters/duke/front.svg",
  52521. extra: 910/815,
  52522. bottom: 30/940
  52523. }
  52524. },
  52525. },
  52526. [
  52527. {
  52528. name: "Normal",
  52529. height: math.unit(2 + 3/12, "feet"),
  52530. default: true
  52531. },
  52532. ]
  52533. ))
  52534. characterMakers.push(() => makeCharacter(
  52535. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52536. {
  52537. front: {
  52538. height: math.unit(5 + 4/12, "feet"),
  52539. weight: math.unit(156, "lb"),
  52540. name: "Front",
  52541. image: {
  52542. source: "./media/characters/dein/front.svg",
  52543. extra: 855/815,
  52544. bottom: 48/903
  52545. }
  52546. },
  52547. side: {
  52548. height: math.unit(5 + 4/12, "feet"),
  52549. weight: math.unit(156, "lb"),
  52550. name: "side",
  52551. image: {
  52552. source: "./media/characters/dein/side.svg",
  52553. extra: 846/803,
  52554. bottom: 25/871
  52555. }
  52556. },
  52557. maw: {
  52558. height: math.unit(1.45, "feet"),
  52559. name: "Maw",
  52560. image: {
  52561. source: "./media/characters/dein/maw.svg"
  52562. }
  52563. },
  52564. },
  52565. [
  52566. {
  52567. name: "Ferret Sized",
  52568. height: math.unit(2 + 5/12, "feet")
  52569. },
  52570. {
  52571. name: "Normal",
  52572. height: math.unit(5 + 4/12, "feet"),
  52573. default: true
  52574. },
  52575. ]
  52576. ))
  52577. characterMakers.push(() => makeCharacter(
  52578. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52579. {
  52580. front: {
  52581. height: math.unit(84 + 8/12, "feet"),
  52582. weight: math.unit(942180, "lb"),
  52583. name: "Front",
  52584. image: {
  52585. source: "./media/characters/daurine-arima/front.svg",
  52586. extra: 1989/1782,
  52587. bottom: 37/2026
  52588. }
  52589. },
  52590. side: {
  52591. height: math.unit(84 + 8/12, "feet"),
  52592. weight: math.unit(942180, "lb"),
  52593. name: "Side",
  52594. image: {
  52595. source: "./media/characters/daurine-arima/side.svg",
  52596. extra: 1997/1790,
  52597. bottom: 21/2018
  52598. }
  52599. },
  52600. back: {
  52601. height: math.unit(84 + 8/12, "feet"),
  52602. weight: math.unit(942180, "lb"),
  52603. name: "Back",
  52604. image: {
  52605. source: "./media/characters/daurine-arima/back.svg",
  52606. extra: 1992/1800,
  52607. bottom: 12/2004
  52608. }
  52609. },
  52610. head: {
  52611. height: math.unit(15.5, "feet"),
  52612. name: "Head",
  52613. image: {
  52614. source: "./media/characters/daurine-arima/head.svg"
  52615. }
  52616. },
  52617. headAlt: {
  52618. height: math.unit(19.19, "feet"),
  52619. name: "Head (Alt)",
  52620. image: {
  52621. source: "./media/characters/daurine-arima/head-alt.svg"
  52622. }
  52623. },
  52624. },
  52625. [
  52626. {
  52627. name: "Minimum height",
  52628. height: math.unit(8 + 10/12, "feet")
  52629. },
  52630. {
  52631. name: "Comfort height",
  52632. height: math.unit(19 + 6 /12, "feet")
  52633. },
  52634. {
  52635. name: "\"Normal\" height",
  52636. height: math.unit(28 + 10/12, "feet")
  52637. },
  52638. {
  52639. name: "Base height",
  52640. height: math.unit(84 + 8/12, "feet"),
  52641. default: true
  52642. },
  52643. {
  52644. name: "Mini-macro",
  52645. height: math.unit(2360, "feet")
  52646. },
  52647. {
  52648. name: "Macro",
  52649. height: math.unit(10, "miles")
  52650. },
  52651. {
  52652. name: "Goddess",
  52653. height: math.unit(9.99e40, "yottameters")
  52654. },
  52655. ]
  52656. ))
  52657. characterMakers.push(() => makeCharacter(
  52658. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52659. {
  52660. front: {
  52661. height: math.unit(2.3, "meters"),
  52662. name: "Front",
  52663. image: {
  52664. source: "./media/characters/cilenomon/front.svg",
  52665. extra: 1963/1778,
  52666. bottom: 54/2017
  52667. }
  52668. },
  52669. },
  52670. [
  52671. {
  52672. name: "Normal",
  52673. height: math.unit(2.3, "meters"),
  52674. default: true
  52675. },
  52676. {
  52677. name: "Big",
  52678. height: math.unit(5, "meters")
  52679. },
  52680. {
  52681. name: "Macro",
  52682. height: math.unit(30, "meters")
  52683. },
  52684. {
  52685. name: "True",
  52686. height: math.unit(1, "universe")
  52687. },
  52688. ]
  52689. ))
  52690. characterMakers.push(() => makeCharacter(
  52691. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52692. {
  52693. front: {
  52694. height: math.unit(5, "feet"),
  52695. name: "Front",
  52696. image: {
  52697. source: "./media/characters/sen-mink/front.svg",
  52698. extra: 1727/1675,
  52699. bottom: 35/1762
  52700. }
  52701. },
  52702. },
  52703. [
  52704. {
  52705. name: "Normal",
  52706. height: math.unit(5, "feet"),
  52707. default: true
  52708. },
  52709. ]
  52710. ))
  52711. characterMakers.push(() => makeCharacter(
  52712. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52713. {
  52714. front: {
  52715. height: math.unit(5.42999, "feet"),
  52716. weight: math.unit(100, "lb"),
  52717. name: "Front",
  52718. image: {
  52719. source: "./media/characters/ophois/front.svg",
  52720. extra: 1429/1286,
  52721. bottom: 60/1489
  52722. }
  52723. },
  52724. },
  52725. [
  52726. {
  52727. name: "Normal",
  52728. height: math.unit(5.42999, "feet"),
  52729. default: true
  52730. },
  52731. ]
  52732. ))
  52733. characterMakers.push(() => makeCharacter(
  52734. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52735. {
  52736. front: {
  52737. height: math.unit(2, "meters"),
  52738. name: "Front",
  52739. image: {
  52740. source: "./media/characters/riley/front.svg",
  52741. extra: 1779/1754,
  52742. bottom: 139/1918
  52743. }
  52744. },
  52745. },
  52746. [
  52747. {
  52748. name: "Normal",
  52749. height: math.unit(2, "meters"),
  52750. default: true
  52751. },
  52752. ]
  52753. ))
  52754. characterMakers.push(() => makeCharacter(
  52755. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52756. {
  52757. front: {
  52758. height: math.unit(6 + 2/12, "feet"),
  52759. weight: math.unit(195, "lb"),
  52760. preyCapacity: math.unit(6, "people"),
  52761. name: "Front",
  52762. image: {
  52763. source: "./media/characters/shuken-flash/front.svg",
  52764. extra: 1905/1739,
  52765. bottom: 65/1970
  52766. }
  52767. },
  52768. back: {
  52769. height: math.unit(6 + 2/12, "feet"),
  52770. weight: math.unit(195, "lb"),
  52771. preyCapacity: math.unit(6, "people"),
  52772. name: "Back",
  52773. image: {
  52774. source: "./media/characters/shuken-flash/back.svg",
  52775. extra: 1912/1751,
  52776. bottom: 13/1925
  52777. }
  52778. },
  52779. },
  52780. [
  52781. {
  52782. name: "Normal",
  52783. height: math.unit(6 + 2/12, "feet"),
  52784. default: true
  52785. },
  52786. ]
  52787. ))
  52788. characterMakers.push(() => makeCharacter(
  52789. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52790. {
  52791. front: {
  52792. height: math.unit(5 + 9/12, "feet"),
  52793. weight: math.unit(150, "lb"),
  52794. name: "Front",
  52795. image: {
  52796. source: "./media/characters/plat/front.svg",
  52797. extra: 1816/1703,
  52798. bottom: 43/1859
  52799. }
  52800. },
  52801. side: {
  52802. height: math.unit(5 + 9/12, "feet"),
  52803. weight: math.unit(300, "lb"),
  52804. name: "Side",
  52805. image: {
  52806. source: "./media/characters/plat/side.svg",
  52807. extra: 1824/1699,
  52808. bottom: 18/1842
  52809. }
  52810. },
  52811. },
  52812. [
  52813. {
  52814. name: "Normal",
  52815. height: math.unit(5 + 9/12, "feet"),
  52816. default: true
  52817. },
  52818. ]
  52819. ))
  52820. characterMakers.push(() => makeCharacter(
  52821. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52822. {
  52823. front: {
  52824. height: math.unit(9, "feet"),
  52825. weight: math.unit(1800, "lb"),
  52826. name: "Front",
  52827. image: {
  52828. source: "./media/characters/elaine/front.svg",
  52829. extra: 1833/1354,
  52830. bottom: 25/1858
  52831. }
  52832. },
  52833. back: {
  52834. height: math.unit(8.8, "feet"),
  52835. weight: math.unit(1800, "lb"),
  52836. name: "Back",
  52837. image: {
  52838. source: "./media/characters/elaine/back.svg",
  52839. extra: 1641/1233,
  52840. bottom: 53/1694
  52841. }
  52842. },
  52843. },
  52844. [
  52845. {
  52846. name: "Normal",
  52847. height: math.unit(9, "feet"),
  52848. default: true
  52849. },
  52850. ]
  52851. ))
  52852. characterMakers.push(() => makeCharacter(
  52853. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52854. {
  52855. front: {
  52856. height: math.unit(17 + 9/12, "feet"),
  52857. weight: math.unit(8000, "lb"),
  52858. name: "Front",
  52859. image: {
  52860. source: "./media/characters/vera-raven/front.svg",
  52861. extra: 1457/1412,
  52862. bottom: 121/1578
  52863. }
  52864. },
  52865. side: {
  52866. height: math.unit(17 + 9/12, "feet"),
  52867. weight: math.unit(8000, "lb"),
  52868. name: "Side",
  52869. image: {
  52870. source: "./media/characters/vera-raven/side.svg",
  52871. extra: 1510/1464,
  52872. bottom: 54/1564
  52873. }
  52874. },
  52875. },
  52876. [
  52877. {
  52878. name: "Normal",
  52879. height: math.unit(17 + 9/12, "feet"),
  52880. default: true
  52881. },
  52882. ]
  52883. ))
  52884. characterMakers.push(() => makeCharacter(
  52885. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52886. {
  52887. dressed: {
  52888. height: math.unit(6 + 9/12, "feet"),
  52889. name: "Dressed",
  52890. image: {
  52891. source: "./media/characters/nakisha/dressed.svg",
  52892. extra: 1909/1757,
  52893. bottom: 48/1957
  52894. }
  52895. },
  52896. nude: {
  52897. height: math.unit(6 + 9/12, "feet"),
  52898. name: "Nude",
  52899. image: {
  52900. source: "./media/characters/nakisha/nude.svg",
  52901. extra: 1917/1765,
  52902. bottom: 34/1951
  52903. }
  52904. },
  52905. },
  52906. [
  52907. {
  52908. name: "Normal",
  52909. height: math.unit(6 + 9/12, "feet"),
  52910. default: true
  52911. },
  52912. ]
  52913. ))
  52914. characterMakers.push(() => makeCharacter(
  52915. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52916. {
  52917. front: {
  52918. height: math.unit(87, "meters"),
  52919. name: "Front",
  52920. image: {
  52921. source: "./media/characters/serafin/front.svg",
  52922. extra: 1919/1776,
  52923. bottom: 65/1984
  52924. }
  52925. },
  52926. },
  52927. [
  52928. {
  52929. name: "Normal",
  52930. height: math.unit(87, "meters"),
  52931. default: true
  52932. },
  52933. ]
  52934. ))
  52935. characterMakers.push(() => makeCharacter(
  52936. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52937. {
  52938. front: {
  52939. height: math.unit(6, "feet"),
  52940. weight: math.unit(200, "lb"),
  52941. name: "Front",
  52942. image: {
  52943. source: "./media/characters/poptart/front.svg",
  52944. extra: 615/583,
  52945. bottom: 23/638
  52946. }
  52947. },
  52948. back: {
  52949. height: math.unit(6, "feet"),
  52950. weight: math.unit(200, "lb"),
  52951. name: "Back",
  52952. image: {
  52953. source: "./media/characters/poptart/back.svg",
  52954. extra: 617/584,
  52955. bottom: 22/639
  52956. }
  52957. },
  52958. frontNsfw: {
  52959. height: math.unit(6, "feet"),
  52960. weight: math.unit(200, "lb"),
  52961. name: "Front (NSFW)",
  52962. image: {
  52963. source: "./media/characters/poptart/front-nsfw.svg",
  52964. extra: 615/583,
  52965. bottom: 23/638
  52966. }
  52967. },
  52968. backNsfw: {
  52969. height: math.unit(6, "feet"),
  52970. weight: math.unit(200, "lb"),
  52971. name: "Back (NSFW)",
  52972. image: {
  52973. source: "./media/characters/poptart/back-nsfw.svg",
  52974. extra: 617/584,
  52975. bottom: 22/639
  52976. }
  52977. },
  52978. hand: {
  52979. height: math.unit(1.14, "feet"),
  52980. name: "Hand",
  52981. image: {
  52982. source: "./media/characters/poptart/hand.svg"
  52983. }
  52984. },
  52985. foot: {
  52986. height: math.unit(1.5, "feet"),
  52987. name: "Foot",
  52988. image: {
  52989. source: "./media/characters/poptart/foot.svg"
  52990. }
  52991. },
  52992. },
  52993. [
  52994. {
  52995. name: "Normal",
  52996. height: math.unit(6, "feet"),
  52997. default: true
  52998. },
  52999. {
  53000. name: "Grande",
  53001. height: math.unit(350, "feet")
  53002. },
  53003. {
  53004. name: "Massif",
  53005. height: math.unit(967, "feet")
  53006. },
  53007. ]
  53008. ))
  53009. characterMakers.push(() => makeCharacter(
  53010. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53011. {
  53012. hyenaSide: {
  53013. height: math.unit(120, "cm"),
  53014. weight: math.unit(120, "lb"),
  53015. name: "Side",
  53016. image: {
  53017. source: "./media/characters/trance/hyena-side.svg",
  53018. extra: 998/904,
  53019. bottom: 76/1074
  53020. }
  53021. },
  53022. },
  53023. [
  53024. {
  53025. name: "Normal",
  53026. height: math.unit(120, "cm"),
  53027. default: true
  53028. },
  53029. {
  53030. name: "Dire",
  53031. height: math.unit(230, "cm")
  53032. },
  53033. {
  53034. name: "Macro",
  53035. height: math.unit(37, "feet")
  53036. },
  53037. ]
  53038. ))
  53039. characterMakers.push(() => makeCharacter(
  53040. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53041. {
  53042. front: {
  53043. height: math.unit(6 + 3/12, "feet"),
  53044. name: "Front",
  53045. image: {
  53046. source: "./media/characters/michael-berretta/front.svg",
  53047. extra: 515/494,
  53048. bottom: 20/535
  53049. }
  53050. },
  53051. back: {
  53052. height: math.unit(6 + 3/12, "feet"),
  53053. name: "Back",
  53054. image: {
  53055. source: "./media/characters/michael-berretta/back.svg",
  53056. extra: 520/497,
  53057. bottom: 21/541
  53058. }
  53059. },
  53060. frontNsfw: {
  53061. height: math.unit(6 + 3/12, "feet"),
  53062. name: "Front (NSFW)",
  53063. image: {
  53064. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53065. extra: 515/494,
  53066. bottom: 20/535
  53067. }
  53068. },
  53069. dick: {
  53070. height: math.unit(1, "feet"),
  53071. name: "Dick",
  53072. image: {
  53073. source: "./media/characters/michael-berretta/dick.svg"
  53074. }
  53075. },
  53076. },
  53077. [
  53078. {
  53079. name: "Normal",
  53080. height: math.unit(6 + 3/12, "feet"),
  53081. default: true
  53082. },
  53083. {
  53084. name: "Big",
  53085. height: math.unit(12, "feet")
  53086. },
  53087. {
  53088. name: "Macro",
  53089. height: math.unit(187.5, "feet")
  53090. },
  53091. ]
  53092. ))
  53093. characterMakers.push(() => makeCharacter(
  53094. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53095. {
  53096. front: {
  53097. height: math.unit(9 + 9/12, "feet"),
  53098. weight: math.unit(1244, "lb"),
  53099. name: "Front",
  53100. image: {
  53101. source: "./media/characters/stella-edgecomb/front.svg",
  53102. extra: 1835/1706,
  53103. bottom: 49/1884
  53104. }
  53105. },
  53106. pen: {
  53107. height: math.unit(0.95, "feet"),
  53108. name: "Pen",
  53109. image: {
  53110. source: "./media/characters/stella-edgecomb/pen.svg"
  53111. }
  53112. },
  53113. },
  53114. [
  53115. {
  53116. name: "Cozy Bear",
  53117. height: math.unit(0.5, "inches")
  53118. },
  53119. {
  53120. name: "Normal",
  53121. height: math.unit(9 + 9/12, "feet"),
  53122. default: true
  53123. },
  53124. {
  53125. name: "Giga Bear",
  53126. height: math.unit(1, "mile")
  53127. },
  53128. {
  53129. name: "Great Bear",
  53130. height: math.unit(53, "miles")
  53131. },
  53132. {
  53133. name: "Goddess Bear",
  53134. height: math.unit(40000, "miles")
  53135. },
  53136. {
  53137. name: "Sun Bear",
  53138. height: math.unit(900000, "miles")
  53139. },
  53140. ]
  53141. ))
  53142. characterMakers.push(() => makeCharacter(
  53143. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53144. {
  53145. anthroFront: {
  53146. height: math.unit(556, "cm"),
  53147. weight: math.unit(2650, "kg"),
  53148. preyCapacity: math.unit(3, "people"),
  53149. name: "Front",
  53150. image: {
  53151. source: "./media/characters/ash´iika/front.svg",
  53152. extra: 710/673,
  53153. bottom: 15/725
  53154. },
  53155. form: "anthro",
  53156. default: true
  53157. },
  53158. anthroSide: {
  53159. height: math.unit(556, "cm"),
  53160. weight: math.unit(2650, "kg"),
  53161. preyCapacity: math.unit(3, "people"),
  53162. name: "Side",
  53163. image: {
  53164. source: "./media/characters/ash´iika/side.svg",
  53165. extra: 696/676,
  53166. bottom: 13/709
  53167. },
  53168. form: "anthro"
  53169. },
  53170. anthroDressed: {
  53171. height: math.unit(556, "cm"),
  53172. weight: math.unit(2650, "kg"),
  53173. preyCapacity: math.unit(3, "people"),
  53174. name: "Dressed",
  53175. image: {
  53176. source: "./media/characters/ash´iika/dressed.svg",
  53177. extra: 710/673,
  53178. bottom: 15/725
  53179. },
  53180. form: "anthro"
  53181. },
  53182. anthroHead: {
  53183. height: math.unit(3.5, "feet"),
  53184. name: "Head",
  53185. image: {
  53186. source: "./media/characters/ash´iika/head.svg",
  53187. extra: 348/291,
  53188. bottom: 45/393
  53189. },
  53190. form: "anthro"
  53191. },
  53192. feralSide: {
  53193. height: math.unit(870, "cm"),
  53194. weight: math.unit(17500, "kg"),
  53195. preyCapacity: math.unit(15, "people"),
  53196. name: "Side",
  53197. image: {
  53198. source: "./media/characters/ash´iika/feral.svg",
  53199. extra: 595/199,
  53200. bottom: 7/602
  53201. },
  53202. form: "feral",
  53203. default: true,
  53204. },
  53205. },
  53206. [
  53207. {
  53208. name: "Normal",
  53209. height: math.unit(556, "cm"),
  53210. default: true,
  53211. form: "anthro"
  53212. },
  53213. {
  53214. name: "Macro",
  53215. height: math.unit(88, "meters"),
  53216. form: "anthro"
  53217. },
  53218. {
  53219. name: "Normal",
  53220. height: math.unit(870, "cm"),
  53221. default: true,
  53222. form: "feral"
  53223. },
  53224. {
  53225. name: "Large",
  53226. height: math.unit(25, "meters"),
  53227. form: "feral"
  53228. },
  53229. ],
  53230. {
  53231. "anthro": {
  53232. name: "Anthro",
  53233. default: true
  53234. },
  53235. "feral": {
  53236. name: "Feral",
  53237. },
  53238. }
  53239. ))
  53240. characterMakers.push(() => makeCharacter(
  53241. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53242. {
  53243. front: {
  53244. height: math.unit(10, "feet"),
  53245. weight: math.unit(800, "lb"),
  53246. name: "Front",
  53247. image: {
  53248. source: "./media/characters/yen/front.svg",
  53249. extra: 443/411,
  53250. bottom: 6/449
  53251. }
  53252. },
  53253. sleeping: {
  53254. height: math.unit(10, "feet"),
  53255. weight: math.unit(800, "lb"),
  53256. name: "Sleeping",
  53257. image: {
  53258. source: "./media/characters/yen/sleeping.svg",
  53259. extra: 470/422,
  53260. bottom: 0/470
  53261. }
  53262. },
  53263. head: {
  53264. height: math.unit(2.2, "feet"),
  53265. name: "Head",
  53266. image: {
  53267. source: "./media/characters/yen/head.svg"
  53268. }
  53269. },
  53270. headAlt: {
  53271. height: math.unit(2.1, "feet"),
  53272. name: "Head (Alt)",
  53273. image: {
  53274. source: "./media/characters/yen/head-alt.svg"
  53275. }
  53276. },
  53277. },
  53278. [
  53279. {
  53280. name: "Normal",
  53281. height: math.unit(10, "feet"),
  53282. default: true
  53283. },
  53284. ]
  53285. ))
  53286. characterMakers.push(() => makeCharacter(
  53287. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53288. {
  53289. front: {
  53290. height: math.unit(12, "feet"),
  53291. name: "Front",
  53292. image: {
  53293. source: "./media/characters/citra/front.svg",
  53294. extra: 1950/1710,
  53295. bottom: 47/1997
  53296. }
  53297. },
  53298. },
  53299. [
  53300. {
  53301. name: "Normal",
  53302. height: math.unit(12, "feet"),
  53303. default: true
  53304. },
  53305. ]
  53306. ))
  53307. characterMakers.push(() => makeCharacter(
  53308. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53309. {
  53310. side: {
  53311. height: math.unit(7 + 10/12, "feet"),
  53312. name: "Side",
  53313. image: {
  53314. source: "./media/characters/sholstim/side.svg",
  53315. extra: 786/682,
  53316. bottom: 40/826
  53317. }
  53318. },
  53319. },
  53320. [
  53321. {
  53322. name: "Normal",
  53323. height: math.unit(7 + 10/12, "feet"),
  53324. default: true
  53325. },
  53326. ]
  53327. ))
  53328. characterMakers.push(() => makeCharacter(
  53329. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53330. {
  53331. front: {
  53332. height: math.unit(3.10, "meters"),
  53333. name: "Front",
  53334. image: {
  53335. source: "./media/characters/aggyn/front.svg",
  53336. extra: 1188/963,
  53337. bottom: 24/1212
  53338. }
  53339. },
  53340. },
  53341. [
  53342. {
  53343. name: "Normal",
  53344. height: math.unit(3.10, "meters"),
  53345. default: true
  53346. },
  53347. ]
  53348. ))
  53349. characterMakers.push(() => makeCharacter(
  53350. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53351. {
  53352. front: {
  53353. height: math.unit(7 + 5/12, "feet"),
  53354. weight: math.unit(687, "lb"),
  53355. name: "Front",
  53356. image: {
  53357. source: "./media/characters/alsandair-hergenroether/front.svg",
  53358. extra: 1251/1186,
  53359. bottom: 75/1326
  53360. }
  53361. },
  53362. back: {
  53363. height: math.unit(7 + 5/12, "feet"),
  53364. weight: math.unit(687, "lb"),
  53365. name: "Back",
  53366. image: {
  53367. source: "./media/characters/alsandair-hergenroether/back.svg",
  53368. extra: 1290/1229,
  53369. bottom: 17/1307
  53370. }
  53371. },
  53372. },
  53373. [
  53374. {
  53375. name: "Max Compression",
  53376. height: math.unit(7 + 5/12, "feet"),
  53377. default: true
  53378. },
  53379. {
  53380. name: "\"Normal\"",
  53381. height: math.unit(2, "universes")
  53382. },
  53383. ]
  53384. ))
  53385. characterMakers.push(() => makeCharacter(
  53386. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53387. {
  53388. front: {
  53389. height: math.unit(4 + 1/12, "feet"),
  53390. weight: math.unit(92, "lb"),
  53391. name: "Front",
  53392. image: {
  53393. source: "./media/characters/ie/front.svg",
  53394. extra: 1585/1352,
  53395. bottom: 91/1676
  53396. }
  53397. },
  53398. },
  53399. [
  53400. {
  53401. name: "Normal",
  53402. height: math.unit(4 + 1/12, "feet"),
  53403. default: true
  53404. },
  53405. ]
  53406. ))
  53407. characterMakers.push(() => makeCharacter(
  53408. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53409. {
  53410. anthro: {
  53411. height: math.unit(6, "feet"),
  53412. weight: math.unit(150, "lb"),
  53413. name: "Front",
  53414. image: {
  53415. source: "./media/characters/willow/anthro.svg",
  53416. extra: 1073/986,
  53417. bottom: 34/1107
  53418. },
  53419. form: "anthro",
  53420. default: true
  53421. },
  53422. taur: {
  53423. height: math.unit(6, "feet"),
  53424. weight: math.unit(150, "lb"),
  53425. name: "Side",
  53426. image: {
  53427. source: "./media/characters/willow/taur.svg",
  53428. extra: 647/512,
  53429. bottom: 136/783
  53430. },
  53431. form: "taur",
  53432. default: true
  53433. },
  53434. },
  53435. [
  53436. {
  53437. name: "Humanoid",
  53438. height: math.unit(2.7, "meters"),
  53439. form: "anthro"
  53440. },
  53441. {
  53442. name: "Normal",
  53443. height: math.unit(9, "meters"),
  53444. form: "anthro",
  53445. default: true
  53446. },
  53447. {
  53448. name: "Humanoid",
  53449. height: math.unit(2.1, "meters"),
  53450. form: "taur"
  53451. },
  53452. {
  53453. name: "Normal",
  53454. height: math.unit(7, "meters"),
  53455. form: "taur",
  53456. default: true
  53457. },
  53458. ],
  53459. {
  53460. "anthro": {
  53461. name: "Anthro",
  53462. default: true
  53463. },
  53464. "taur": {
  53465. name: "Taur",
  53466. },
  53467. }
  53468. ))
  53469. characterMakers.push(() => makeCharacter(
  53470. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53471. {
  53472. front: {
  53473. height: math.unit(2 + 5/12, "feet"),
  53474. name: "Front",
  53475. image: {
  53476. source: "./media/characters/kyan/front.svg",
  53477. extra: 460/334,
  53478. bottom: 23/483
  53479. },
  53480. extraAttributes: {
  53481. "toeLength": {
  53482. name: "Toe Length",
  53483. power: 1,
  53484. type: "length",
  53485. base: math.unit(7, "cm")
  53486. },
  53487. "toeclawLength": {
  53488. name: "Toeclaw Length",
  53489. power: 1,
  53490. type: "length",
  53491. base: math.unit(4.7, "cm")
  53492. },
  53493. "earHeight": {
  53494. name: "Ear Height",
  53495. power: 1,
  53496. type: "length",
  53497. base: math.unit(14.1, "cm")
  53498. },
  53499. }
  53500. },
  53501. paws: {
  53502. height: math.unit(0.45, "feet"),
  53503. name: "Paws",
  53504. image: {
  53505. source: "./media/characters/kyan/paws.svg",
  53506. extra: 581/581,
  53507. bottom: 114/695
  53508. }
  53509. },
  53510. },
  53511. [
  53512. {
  53513. name: "Normal",
  53514. height: math.unit(2 + 5/12, "feet"),
  53515. default: true
  53516. },
  53517. ]
  53518. ))
  53519. characterMakers.push(() => makeCharacter(
  53520. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53521. {
  53522. front: {
  53523. height: math.unit(2 + 2/3, "feet"),
  53524. name: "Front",
  53525. image: {
  53526. source: "./media/characters/xazzon/front.svg",
  53527. extra: 1109/984,
  53528. bottom: 42/1151
  53529. }
  53530. },
  53531. back: {
  53532. height: math.unit(2 + 2/3, "feet"),
  53533. name: "Back",
  53534. image: {
  53535. source: "./media/characters/xazzon/back.svg",
  53536. extra: 1095/971,
  53537. bottom: 23/1118
  53538. }
  53539. },
  53540. },
  53541. [
  53542. {
  53543. name: "Normal",
  53544. height: math.unit(2 + 2/3, "feet"),
  53545. default: true
  53546. },
  53547. ]
  53548. ))
  53549. characterMakers.push(() => makeCharacter(
  53550. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53551. {
  53552. dressed: {
  53553. height: math.unit(5 + 7/12, "feet"),
  53554. weight: math.unit(173, "lb"),
  53555. name: "Dressed",
  53556. image: {
  53557. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53558. extra: 3262/2862,
  53559. bottom: 188/3450
  53560. }
  53561. },
  53562. undressed: {
  53563. height: math.unit(5 + 7/12, "feet"),
  53564. weight: math.unit(173, "lb"),
  53565. name: "Undressed",
  53566. image: {
  53567. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53568. extra: 3262/2862,
  53569. bottom: 188/3450
  53570. }
  53571. },
  53572. },
  53573. [
  53574. {
  53575. name: "The void",
  53576. height: math.unit(7.29193e-34, "angstroms")
  53577. },
  53578. {
  53579. name: "Uh-Oh.",
  53580. height: math.unit(5.734e-7, "angstroms")
  53581. },
  53582. {
  53583. name: "Pico",
  53584. height: math.unit(0.876, "angstroms")
  53585. },
  53586. {
  53587. name: "Nano",
  53588. height: math.unit(0.000134200, "mm")
  53589. },
  53590. {
  53591. name: "Micro",
  53592. height: math.unit(0.0673020, "mm")
  53593. },
  53594. {
  53595. name: "Tiny",
  53596. height: math.unit(2.4, "mm")
  53597. },
  53598. {
  53599. name: "Actual Normal",
  53600. height: math.unit(3, "inches"),
  53601. default: true
  53602. },
  53603. {
  53604. name: "Normal",
  53605. height: math.unit(5 + 8/12, "feet")
  53606. },
  53607. {
  53608. name: "Giant",
  53609. height: math.unit(12, "feet")
  53610. },
  53611. {
  53612. name: "City Ruler",
  53613. height: math.unit(270, "meters")
  53614. },
  53615. {
  53616. name: "Giga",
  53617. height: math.unit(1117.6, "km")
  53618. },
  53619. {
  53620. name: "All-Powerful Queen",
  53621. height: math.unit(70.8, "gigameters")
  53622. },
  53623. {
  53624. name: "'Goddess'",
  53625. height: math.unit(600, "yottameters")
  53626. },
  53627. {
  53628. name: "Biggest!",
  53629. height: math.unit(4.23e5, "yottameters")
  53630. },
  53631. ]
  53632. ))
  53633. characterMakers.push(() => makeCharacter(
  53634. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53635. {
  53636. front: {
  53637. height: math.unit(8, "feet"),
  53638. weight: math.unit(300, "lb"),
  53639. name: "Front",
  53640. image: {
  53641. source: "./media/characters/khyla-shadowsong/front.svg",
  53642. extra: 861/798,
  53643. bottom: 32/893
  53644. }
  53645. },
  53646. side: {
  53647. height: math.unit(8, "feet"),
  53648. weight: math.unit(300, "lb"),
  53649. name: "Side",
  53650. image: {
  53651. source: "./media/characters/khyla-shadowsong/side.svg",
  53652. extra: 790/750,
  53653. bottom: 87/877
  53654. }
  53655. },
  53656. back: {
  53657. height: math.unit(8, "feet"),
  53658. weight: math.unit(300, "lb"),
  53659. name: "Back",
  53660. image: {
  53661. source: "./media/characters/khyla-shadowsong/back.svg",
  53662. extra: 855/808,
  53663. bottom: 14/869
  53664. }
  53665. },
  53666. head: {
  53667. height: math.unit(2.7, "feet"),
  53668. name: "Head",
  53669. image: {
  53670. source: "./media/characters/khyla-shadowsong/head.svg"
  53671. }
  53672. },
  53673. },
  53674. [
  53675. {
  53676. name: "Micro",
  53677. height: math.unit(6, "inches")
  53678. },
  53679. {
  53680. name: "Normal",
  53681. height: math.unit(8, "feet"),
  53682. default: true
  53683. },
  53684. ]
  53685. ))
  53686. characterMakers.push(() => makeCharacter(
  53687. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53688. {
  53689. hyperFront: {
  53690. height: math.unit(9 + 4/12, "feet"),
  53691. weight: math.unit(2000, "lb"),
  53692. name: "Front",
  53693. image: {
  53694. source: "./media/characters/tiden/hyper-front.svg",
  53695. extra: 400/382,
  53696. bottom: 6/406
  53697. },
  53698. form: "hyper",
  53699. },
  53700. regularFront: {
  53701. height: math.unit(7 + 10/12, "feet"),
  53702. weight: math.unit(470, "lb"),
  53703. name: "Front",
  53704. image: {
  53705. source: "./media/characters/tiden/regular-front.svg",
  53706. extra: 468/442,
  53707. bottom: 6/474
  53708. },
  53709. form: "regular",
  53710. },
  53711. },
  53712. [
  53713. {
  53714. name: "Normal",
  53715. height: math.unit(9 + 4/12, "feet"),
  53716. default: true,
  53717. form: "hyper"
  53718. },
  53719. {
  53720. name: "Normal",
  53721. height: math.unit(7 + 10/12, "feet"),
  53722. default: true,
  53723. form: "regular"
  53724. },
  53725. ],
  53726. {
  53727. "hyper": {
  53728. name: "Hyper",
  53729. default: true
  53730. },
  53731. "regular": {
  53732. name: "Regular",
  53733. },
  53734. }
  53735. ))
  53736. characterMakers.push(() => makeCharacter(
  53737. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53738. {
  53739. side: {
  53740. height: math.unit(6, "feet"),
  53741. weight: math.unit(150, "lb"),
  53742. name: "Side",
  53743. image: {
  53744. source: "./media/characters/jason-crowe/side.svg",
  53745. extra: 1771/766,
  53746. bottom: 219/1990
  53747. }
  53748. },
  53749. },
  53750. [
  53751. {
  53752. name: "Pocket Gryphon",
  53753. height: math.unit(6, "cm")
  53754. },
  53755. {
  53756. name: "Raven",
  53757. height: math.unit(60, "cm")
  53758. },
  53759. {
  53760. name: "Normal",
  53761. height: math.unit(1, "meter"),
  53762. default: true
  53763. },
  53764. ]
  53765. ))
  53766. characterMakers.push(() => makeCharacter(
  53767. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53768. {
  53769. front: {
  53770. height: math.unit(9 + 6/12, "feet"),
  53771. weight: math.unit(1100, "lb"),
  53772. name: "Front",
  53773. image: {
  53774. source: "./media/characters/django/front.svg",
  53775. extra: 1231/1136,
  53776. bottom: 34/1265
  53777. }
  53778. },
  53779. side: {
  53780. height: math.unit(9 + 6/12, "feet"),
  53781. weight: math.unit(1100, "lb"),
  53782. name: "Side",
  53783. image: {
  53784. source: "./media/characters/django/side.svg",
  53785. extra: 1267/1174,
  53786. bottom: 9/1276
  53787. }
  53788. },
  53789. },
  53790. [
  53791. {
  53792. name: "Normal",
  53793. height: math.unit(9 + 6/12, "feet"),
  53794. default: true
  53795. },
  53796. {
  53797. name: "Macro 1",
  53798. height: math.unit(50, "feet")
  53799. },
  53800. {
  53801. name: "Macro 2",
  53802. height: math.unit(500, "feet")
  53803. },
  53804. {
  53805. name: "Mega Macro",
  53806. height: math.unit(5300, "feet")
  53807. },
  53808. ]
  53809. ))
  53810. characterMakers.push(() => makeCharacter(
  53811. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53812. {
  53813. frontSfw: {
  53814. height: math.unit(120, "cm"),
  53815. weight: math.unit(15, "kg"),
  53816. name: "Front (SFW)",
  53817. image: {
  53818. source: "./media/characters/eri/front-sfw.svg",
  53819. extra: 1014/939,
  53820. bottom: 37/1051
  53821. },
  53822. form: "moth",
  53823. },
  53824. frontNsfw: {
  53825. height: math.unit(120, "cm"),
  53826. weight: math.unit(15, "kg"),
  53827. name: "Front (NSFW)",
  53828. image: {
  53829. source: "./media/characters/eri/front-nsfw.svg",
  53830. extra: 1014/939,
  53831. bottom: 37/1051
  53832. },
  53833. form: "moth",
  53834. default: true
  53835. },
  53836. egg: {
  53837. height: math.unit(10, "cm"),
  53838. name: "Egg",
  53839. image: {
  53840. source: "./media/characters/eri/egg.svg"
  53841. },
  53842. form: "egg",
  53843. default: true
  53844. },
  53845. },
  53846. [
  53847. {
  53848. name: "Normal",
  53849. height: math.unit(120, "cm"),
  53850. default: true,
  53851. form: "moth"
  53852. },
  53853. {
  53854. name: "Normal",
  53855. height: math.unit(10, "cm"),
  53856. default: true,
  53857. form: "egg"
  53858. },
  53859. ],
  53860. {
  53861. "moth": {
  53862. name: "Moth",
  53863. default: true
  53864. },
  53865. "egg": {
  53866. name: "Egg",
  53867. },
  53868. }
  53869. ))
  53870. characterMakers.push(() => makeCharacter(
  53871. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53872. {
  53873. front: {
  53874. height: math.unit(200, "feet"),
  53875. name: "Front",
  53876. image: {
  53877. source: "./media/characters/bishop-dowser/front.svg",
  53878. extra: 933/868,
  53879. bottom: 106/1039
  53880. }
  53881. },
  53882. },
  53883. [
  53884. {
  53885. name: "Giant",
  53886. height: math.unit(200, "feet"),
  53887. default: true
  53888. },
  53889. ]
  53890. ))
  53891. characterMakers.push(() => makeCharacter(
  53892. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  53893. {
  53894. front: {
  53895. height: math.unit(2, "meters"),
  53896. preyCapacity: math.unit(3, "people"),
  53897. name: "Front",
  53898. image: {
  53899. source: "./media/characters/fryra/front.svg",
  53900. extra: 1025/948,
  53901. bottom: 30/1055
  53902. },
  53903. extraAttributes: {
  53904. "breastVolume": {
  53905. name: "Breast Volume",
  53906. power: 3,
  53907. type: "volume",
  53908. base: math.unit(8, "liters")
  53909. },
  53910. }
  53911. },
  53912. back: {
  53913. height: math.unit(2, "meters"),
  53914. preyCapacity: math.unit(3, "people"),
  53915. name: "Back",
  53916. image: {
  53917. source: "./media/characters/fryra/back.svg",
  53918. extra: 993/938,
  53919. bottom: 38/1031
  53920. },
  53921. extraAttributes: {
  53922. "breastVolume": {
  53923. name: "Breast Volume",
  53924. power: 3,
  53925. type: "volume",
  53926. base: math.unit(8, "liters")
  53927. },
  53928. }
  53929. },
  53930. head: {
  53931. height: math.unit(1.33, "feet"),
  53932. name: "Head",
  53933. image: {
  53934. source: "./media/characters/fryra/head.svg"
  53935. }
  53936. },
  53937. maw: {
  53938. height: math.unit(0.56, "feet"),
  53939. name: "Maw",
  53940. image: {
  53941. source: "./media/characters/fryra/maw.svg"
  53942. }
  53943. },
  53944. },
  53945. [
  53946. {
  53947. name: "Micro",
  53948. height: math.unit(5, "cm")
  53949. },
  53950. {
  53951. name: "Normal",
  53952. height: math.unit(2, "meters"),
  53953. default: true
  53954. },
  53955. {
  53956. name: "Small Macro",
  53957. height: math.unit(8, "meters")
  53958. },
  53959. {
  53960. name: "Macro",
  53961. height: math.unit(50, "meters")
  53962. },
  53963. {
  53964. name: "Megamacro",
  53965. height: math.unit(1, "km")
  53966. },
  53967. {
  53968. name: "Planetary",
  53969. height: math.unit(300000, "km")
  53970. },
  53971. {
  53972. name: "Universal",
  53973. height: math.unit(250, "lightyears")
  53974. },
  53975. {
  53976. name: "Fabric of Reality",
  53977. height: math.unit(1000, "multiverses")
  53978. },
  53979. ]
  53980. ))
  53981. characterMakers.push(() => makeCharacter(
  53982. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  53983. {
  53984. frontDressed: {
  53985. height: math.unit(6 + 2/12, "feet"),
  53986. name: "Front (Dressed)",
  53987. image: {
  53988. source: "./media/characters/fiera/front-dressed.svg",
  53989. extra: 1883/1793,
  53990. bottom: 70/1953
  53991. }
  53992. },
  53993. backDressed: {
  53994. height: math.unit(6 + 2/12, "feet"),
  53995. name: "Back (Dressed)",
  53996. image: {
  53997. source: "./media/characters/fiera/back-dressed.svg",
  53998. extra: 1847/1780,
  53999. bottom: 70/1917
  54000. }
  54001. },
  54002. frontNude: {
  54003. height: math.unit(6 + 2/12, "feet"),
  54004. name: "Front (Nude)",
  54005. image: {
  54006. source: "./media/characters/fiera/front-nude.svg",
  54007. extra: 1875/1785,
  54008. bottom: 66/1941
  54009. }
  54010. },
  54011. backNude: {
  54012. height: math.unit(6 + 2/12, "feet"),
  54013. name: "Back (Nude)",
  54014. image: {
  54015. source: "./media/characters/fiera/back-nude.svg",
  54016. extra: 1855/1788,
  54017. bottom: 44/1899
  54018. }
  54019. },
  54020. maw: {
  54021. height: math.unit(1.3, "feet"),
  54022. name: "Maw",
  54023. image: {
  54024. source: "./media/characters/fiera/maw.svg"
  54025. }
  54026. },
  54027. paw: {
  54028. height: math.unit(1, "feet"),
  54029. name: "Paw",
  54030. image: {
  54031. source: "./media/characters/fiera/paw.svg"
  54032. }
  54033. },
  54034. shoe: {
  54035. height: math.unit(1.05, "feet"),
  54036. name: "Shoe",
  54037. image: {
  54038. source: "./media/characters/fiera/shoe.svg"
  54039. }
  54040. },
  54041. },
  54042. [
  54043. {
  54044. name: "Normal",
  54045. height: math.unit(6 + 2/12, "feet"),
  54046. default: true
  54047. },
  54048. {
  54049. name: "Size Difference",
  54050. height: math.unit(13, "feet")
  54051. },
  54052. {
  54053. name: "Macro",
  54054. height: math.unit(60, "feet")
  54055. },
  54056. {
  54057. name: "Mega Macro",
  54058. height: math.unit(200, "feet")
  54059. },
  54060. ]
  54061. ))
  54062. characterMakers.push(() => makeCharacter(
  54063. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54064. {
  54065. back: {
  54066. height: math.unit(6, "feet"),
  54067. name: "Back",
  54068. image: {
  54069. source: "./media/characters/flare/back.svg",
  54070. extra: 1883/1765,
  54071. bottom: 32/1915
  54072. }
  54073. },
  54074. },
  54075. [
  54076. {
  54077. name: "Normal",
  54078. height: math.unit(6 + 2/12, "feet"),
  54079. default: true
  54080. },
  54081. {
  54082. name: "Size Difference",
  54083. height: math.unit(13, "feet")
  54084. },
  54085. {
  54086. name: "Macro",
  54087. height: math.unit(60, "feet")
  54088. },
  54089. {
  54090. name: "Macro 2",
  54091. height: math.unit(100, "feet")
  54092. },
  54093. {
  54094. name: "Mega Macro",
  54095. height: math.unit(200, "feet")
  54096. },
  54097. ]
  54098. ))
  54099. characterMakers.push(() => makeCharacter(
  54100. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54101. {
  54102. front: {
  54103. height: math.unit(2.2, "m"),
  54104. weight: math.unit(300, "kg"),
  54105. name: "Front",
  54106. image: {
  54107. source: "./media/characters/hanna/front.svg",
  54108. extra: 1696/1502,
  54109. bottom: 206/1902
  54110. }
  54111. },
  54112. },
  54113. [
  54114. {
  54115. name: "Humanoid",
  54116. height: math.unit(2.2, "meters")
  54117. },
  54118. {
  54119. name: "Normal",
  54120. height: math.unit(4.8, "meters"),
  54121. default: true
  54122. },
  54123. ]
  54124. ))
  54125. characterMakers.push(() => makeCharacter(
  54126. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54127. {
  54128. front: {
  54129. height: math.unit(2.8, "meters"),
  54130. name: "Front",
  54131. image: {
  54132. source: "./media/characters/argo/front.svg",
  54133. extra: 731/518,
  54134. bottom: 84/815
  54135. }
  54136. },
  54137. },
  54138. [
  54139. {
  54140. name: "Normal",
  54141. height: math.unit(3, "meters"),
  54142. default: true
  54143. },
  54144. ]
  54145. ))
  54146. characterMakers.push(() => makeCharacter(
  54147. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54148. {
  54149. side: {
  54150. height: math.unit(3.8, "meters"),
  54151. name: "Side",
  54152. image: {
  54153. source: "./media/characters/sybil/side.svg",
  54154. extra: 382/361,
  54155. bottom: 25/407
  54156. }
  54157. },
  54158. },
  54159. [
  54160. {
  54161. name: "Normal",
  54162. height: math.unit(3.8, "meters"),
  54163. default: true
  54164. },
  54165. ]
  54166. ))
  54167. characterMakers.push(() => makeCharacter(
  54168. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54169. {
  54170. side: {
  54171. height: math.unit(6, "meters"),
  54172. name: "Side",
  54173. image: {
  54174. source: "./media/characters/plum/side.svg",
  54175. extra: 858/755,
  54176. bottom: 45/903
  54177. },
  54178. form: "taur",
  54179. default: true
  54180. },
  54181. back: {
  54182. height: math.unit(6.3, "meters"),
  54183. name: "Back",
  54184. image: {
  54185. source: "./media/characters/plum/back.svg",
  54186. extra: 887/813,
  54187. bottom: 32/919
  54188. },
  54189. form: "taur",
  54190. },
  54191. feral: {
  54192. height: math.unit(3.13, "meter"),
  54193. name: "Front",
  54194. image: {
  54195. source: "./media/characters/plum/feral.svg",
  54196. extra: 568/403,
  54197. bottom: 51/619
  54198. },
  54199. form: "feral",
  54200. default: true
  54201. },
  54202. head: {
  54203. height: math.unit(1.46, "meter"),
  54204. name: "Head",
  54205. image: {
  54206. source: "./media/characters/plum/head.svg"
  54207. },
  54208. form: "taur"
  54209. },
  54210. tailTop: {
  54211. height: math.unit(5.6, "meter"),
  54212. name: "Tail (Top)",
  54213. image: {
  54214. source: "./media/characters/plum/tail-top.svg"
  54215. },
  54216. form: "taur",
  54217. },
  54218. tailBottom: {
  54219. height: math.unit(5.6, "meter"),
  54220. name: "Tail (Bottom)",
  54221. image: {
  54222. source: "./media/characters/plum/tail-bottom.svg"
  54223. },
  54224. form: "taur",
  54225. },
  54226. feralHead: {
  54227. height: math.unit(1.46, "meter"),
  54228. name: "Head",
  54229. image: {
  54230. source: "./media/characters/plum/head.svg"
  54231. },
  54232. form: "feral"
  54233. },
  54234. feralTailTop: {
  54235. height: math.unit(3.1, "meter"),
  54236. name: "Tail (Top)",
  54237. image: {
  54238. source: "./media/characters/plum/tail-top.svg"
  54239. },
  54240. form: "feral",
  54241. },
  54242. feralTailBottom: {
  54243. height: math.unit(3.1, "meter"),
  54244. name: "Tail (Bottom)",
  54245. image: {
  54246. source: "./media/characters/plum/tail-bottom.svg"
  54247. },
  54248. form: "feral",
  54249. },
  54250. },
  54251. [
  54252. {
  54253. name: "Normal",
  54254. height: math.unit(6, "meters"),
  54255. default: true,
  54256. form: "taur"
  54257. },
  54258. {
  54259. name: "Normal",
  54260. height: math.unit(3.13, "meters"),
  54261. default: true,
  54262. form: "feral"
  54263. },
  54264. ],
  54265. {
  54266. "taur": {
  54267. name: "Taur",
  54268. default: true
  54269. },
  54270. "feral": {
  54271. name: "Feral",
  54272. },
  54273. }
  54274. ))
  54275. characterMakers.push(() => makeCharacter(
  54276. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54277. {
  54278. front: {
  54279. height: math.unit(6, "feet"),
  54280. weight: math.unit(115, "lb"),
  54281. name: "Front",
  54282. image: {
  54283. source: "./media/characters/celeste-kitsune/front.svg",
  54284. extra: 393/366,
  54285. bottom: 7/400
  54286. }
  54287. },
  54288. side: {
  54289. height: math.unit(6, "feet"),
  54290. weight: math.unit(115, "lb"),
  54291. name: "Side",
  54292. image: {
  54293. source: "./media/characters/celeste-kitsune/side.svg",
  54294. extra: 818/765,
  54295. bottom: 40/858
  54296. }
  54297. },
  54298. },
  54299. [
  54300. {
  54301. name: "Megamacro",
  54302. height: math.unit(1500, "miles"),
  54303. default: true
  54304. },
  54305. ]
  54306. ))
  54307. //characters
  54308. function makeCharacters() {
  54309. const results = [];
  54310. characterMakers.forEach(character => {
  54311. results.push(character());
  54312. });
  54313. return results;
  54314. }